diff --git a/crates/wasm-bindings/wasm_parsers/tree-sitter-c-sharp.wasm b/crates/wasm-bindings/wasm_parsers/tree-sitter-c-sharp.wasm index 08cb2abe9..439365a10 100755 Binary files a/crates/wasm-bindings/wasm_parsers/tree-sitter-c-sharp.wasm and b/crates/wasm-bindings/wasm_parsers/tree-sitter-c-sharp.wasm differ diff --git a/resources/language-metavariables/tree-sitter-c-sharp/grammar.js b/resources/language-metavariables/tree-sitter-c-sharp/grammar.js index 9cfc567e8..6f6ebf9da 100644 --- a/resources/language-metavariables/tree-sitter-c-sharp/grammar.js +++ b/resources/language-metavariables/tree-sitter-c-sharp/grammar.js @@ -457,29 +457,29 @@ module.exports = grammar({ field( "operator", choice( - "!", - "~", - "++", - "--", - "true", - "false", - "+", - "-", - "*", - "/", - "%", - "^", - "|", - "&", - "<<", - ">>", - ">>>", - "==", - "!=", - ">", - "<", - ">=", - "<=", + $.op_not, + $.op_bitwise_not, + $.op_plus_plus, + $.op_minus_minus, + $.op_true, + $.op_false, + $.op_plus, + $.op_minus, + $.op_multiply, + $.op_divide, + $.op_modulo, + $.op_bitwise_xor, + $.op_bitwise_or, + $.op_bitwise_and, + $.op_left_shift, + $.op_right_shift, + $.op_unsigned_right_shift, + $.op_eq, + $.op_neq, + $.op_gt, + $.op_lt, + $.op_gte, + $.op_lte, ), ), field("parameters", $.parameter_list), @@ -1328,26 +1328,32 @@ module.exports = grammar({ field("right", $.expression), ), - op_lt: ($) => "<", - op_lte: ($) => "<=", - op_eq: ($) => "==", - op_neq: ($) => "!=", - op_gt: ($) => ">", - op_gte: ($) => ">=", - op_and: ($) => "&&", - op_or: ($) => "||", - op_bitwise_and: ($) => "&", - op_bitwise_or: ($) => "|", - op_bitwise_xor: ($) => "^", - op_left_shift: ($) => "<<", - op_right_shift: ($) => ">>", - op_unsigned_right_shift: ($) => ">>>", - op_plus: ($) => "+", - op_minus: ($) => "-", - op_multiply: ($) => "*", - op_divide: ($) => "/", - op_modulo: ($) => "%", - op_coalescing: ($) => "??", + op_lt: _ => "<", + op_lte: _ => "<=", + op_eq: _ => "==", + op_neq: _ => "!=", + op_gt: _ => ">", + op_gte: _ => ">=", + op_and: _ => "&&", + op_or: _ => "||", + op_bitwise_and: _ => "&", + op_bitwise_or: _ => "|", + op_bitwise_xor: _ => "^", + op_left_shift: _ => "<<", + op_right_shift: _ => ">>", + op_unsigned_right_shift: _ => ">>>", + op_plus: _ => "+", + op_minus: _ => "-", + op_multiply: _ => "*", + op_divide: _ => "/", + op_modulo: _ => "%", + op_coalescing: _ => "??", + op_not: _ => "!", + op_bitwise_not: _ => "~", + op_plus_plus: _ => "++", + op_minus_minus: _ => "--", + op_true: _ => "true", + op_false: _ => "false", binary_expression: ($) => choice( diff --git a/resources/language-metavariables/tree-sitter-c-sharp/src/grammar.json b/resources/language-metavariables/tree-sitter-c-sharp/src/grammar.json index 86d14706b..eb2e64784 100644 --- a/resources/language-metavariables/tree-sitter-c-sharp/src/grammar.json +++ b/resources/language-metavariables/tree-sitter-c-sharp/src/grammar.json @@ -1800,96 +1800,96 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "!" + "type": "SYMBOL", + "name": "op_not" }, { - "type": "STRING", - "value": "~" + "type": "SYMBOL", + "name": "op_bitwise_not" }, { - "type": "STRING", - "value": "++" + "type": "SYMBOL", + "name": "op_plus_plus" }, { - "type": "STRING", - "value": "--" + "type": "SYMBOL", + "name": "op_minus_minus" }, { - "type": "STRING", - "value": "true" + "type": "SYMBOL", + "name": "op_true" }, { - "type": "STRING", - "value": "false" + "type": "SYMBOL", + "name": "op_false" }, { - "type": "STRING", - "value": "+" + "type": "SYMBOL", + "name": "op_plus" }, { - "type": "STRING", - "value": "-" + "type": "SYMBOL", + "name": "op_minus" }, { - "type": "STRING", - "value": "*" + "type": "SYMBOL", + "name": "op_multiply" }, { - "type": "STRING", - "value": "/" + "type": "SYMBOL", + "name": "op_divide" }, { - "type": "STRING", - "value": "%" + "type": "SYMBOL", + "name": "op_modulo" }, { - "type": "STRING", - "value": "^" + "type": "SYMBOL", + "name": "op_bitwise_xor" }, { - "type": "STRING", - "value": "|" + "type": "SYMBOL", + "name": "op_bitwise_or" }, { - "type": "STRING", - "value": "&" + "type": "SYMBOL", + "name": "op_bitwise_and" }, { - "type": "STRING", - "value": "<<" + "type": "SYMBOL", + "name": "op_left_shift" }, { - "type": "STRING", - "value": ">>" + "type": "SYMBOL", + "name": "op_right_shift" }, { - "type": "STRING", - "value": ">>>" + "type": "SYMBOL", + "name": "op_unsigned_right_shift" }, { - "type": "STRING", - "value": "==" + "type": "SYMBOL", + "name": "op_eq" }, { - "type": "STRING", - "value": "!=" + "type": "SYMBOL", + "name": "op_neq" }, { - "type": "STRING", - "value": ">" + "type": "SYMBOL", + "name": "op_gt" }, { - "type": "STRING", - "value": "<" + "type": "SYMBOL", + "name": "op_lt" }, { - "type": "STRING", - "value": ">=" + "type": "SYMBOL", + "name": "op_gte" }, { - "type": "STRING", - "value": "<=" + "type": "SYMBOL", + "name": "op_lte" } ] } @@ -6904,6 +6904,30 @@ "type": "STRING", "value": "??" }, + "op_not": { + "type": "STRING", + "value": "!" + }, + "op_bitwise_not": { + "type": "STRING", + "value": "~" + }, + "op_plus_plus": { + "type": "STRING", + "value": "++" + }, + "op_minus_minus": { + "type": "STRING", + "value": "--" + }, + "op_true": { + "type": "STRING", + "value": "true" + }, + "op_false": { + "type": "STRING", + "value": "false" + }, "binary_expression": { "type": "CHOICE", "members": [ diff --git a/resources/language-metavariables/tree-sitter-c-sharp/src/node-types.json b/resources/language-metavariables/tree-sitter-c-sharp/src/node-types.json index 0d8bb1df6..b273ed085 100644 --- a/resources/language-metavariables/tree-sitter-c-sharp/src/node-types.json +++ b/resources/language-metavariables/tree-sitter-c-sharp/src/node-types.json @@ -4310,7 +4310,7 @@ "fields": {} }, { - "type": "op_bitwise_or", + "type": "op_bitwise_not", "named": true, "fields": {} }, @@ -4320,12 +4320,12 @@ "fields": {} }, { - "type": "op_divide", + "type": "op_eq", "named": true, "fields": {} }, { - "type": "op_eq", + "type": "op_false", "named": true, "fields": {} }, @@ -4339,11 +4339,6 @@ "named": true, "fields": {} }, - { - "type": "op_left_shift", - "named": true, - "fields": {} - }, { "type": "op_lt", "named": true, @@ -4360,7 +4355,7 @@ "fields": {} }, { - "type": "op_modulo", + "type": "op_minus_minus", "named": true, "fields": {} }, @@ -4374,6 +4369,11 @@ "named": true, "fields": {} }, + { + "type": "op_not", + "named": true, + "fields": {} + }, { "type": "op_or", "named": true, @@ -4385,12 +4385,12 @@ "fields": {} }, { - "type": "op_right_shift", + "type": "op_plus_plus", "named": true, "fields": {} }, { - "type": "op_unsigned_right_shift", + "type": "op_true", "named": true, "fields": {} }, @@ -4417,96 +4417,96 @@ "required": true, "types": [ { - "type": "!", - "named": false + "type": "op_bitwise_and", + "named": true }, { - "type": "!=", - "named": false + "type": "op_bitwise_not", + "named": true }, { - "type": "%", - "named": false + "type": "op_bitwise_or", + "named": true }, { - "type": "&", - "named": false + "type": "op_bitwise_xor", + "named": true }, { - "type": "*", - "named": false + "type": "op_divide", + "named": true }, { - "type": "+", - "named": false + "type": "op_eq", + "named": true }, { - "type": "++", - "named": false + "type": "op_false", + "named": true }, { - "type": "-", - "named": false + "type": "op_gt", + "named": true }, { - "type": "--", - "named": false + "type": "op_gte", + "named": true }, { - "type": "/", - "named": false + "type": "op_left_shift", + "named": true }, { - "type": "<", - "named": false + "type": "op_lt", + "named": true }, { - "type": "<<", - "named": false + "type": "op_lte", + "named": true }, { - "type": "<=", - "named": false + "type": "op_minus", + "named": true }, { - "type": "==", - "named": false + "type": "op_minus_minus", + "named": true }, { - "type": ">", - "named": false + "type": "op_modulo", + "named": true }, { - "type": ">=", - "named": false + "type": "op_multiply", + "named": true }, { - "type": ">>", - "named": false + "type": "op_neq", + "named": true }, { - "type": ">>>", - "named": false + "type": "op_not", + "named": true }, { - "type": "^", - "named": false + "type": "op_plus", + "named": true }, { - "type": "false", - "named": false + "type": "op_plus_plus", + "named": true }, { - "type": "true", - "named": false + "type": "op_right_shift", + "named": true }, { - "type": "|", - "named": false + "type": "op_true", + "named": true }, { - "type": "~", - "named": false + "type": "op_unsigned_right_shift", + "named": true } ] }, @@ -6942,10 +6942,6 @@ "type": "#warning", "named": false }, - { - "type": "%", - "named": false - }, { "type": "%=", "named": false @@ -7022,10 +7018,6 @@ "type": "..", "named": false }, - { - "type": "/", - "named": false - }, { "type": "/=", "named": false @@ -7046,10 +7038,6 @@ "type": "<", "named": false }, - { - "type": "<<", - "named": false - }, { "type": "<<=", "named": false @@ -7078,18 +7066,10 @@ "type": ">=", "named": false }, - { - "type": ">>", - "named": false - }, { "type": ">>=", "named": false }, - { - "type": ">>>", - "named": false - }, { "type": ">>>=", "named": false @@ -7450,10 +7430,34 @@ "type": "on", "named": false }, + { + "type": "op_bitwise_or", + "named": true + }, { "type": "op_coalescing", "named": true }, + { + "type": "op_divide", + "named": true + }, + { + "type": "op_left_shift", + "named": true + }, + { + "type": "op_modulo", + "named": true + }, + { + "type": "op_right_shift", + "named": true + }, + { + "type": "op_unsigned_right_shift", + "named": true + }, { "type": "operator", "named": false @@ -7682,10 +7686,6 @@ "type": "{", "named": false }, - { - "type": "|", - "named": false - }, { "type": "|=", "named": false diff --git a/resources/language-metavariables/tree-sitter-c-sharp/src/parser.c b/resources/language-metavariables/tree-sitter-c-sharp/src/parser.c index 39372eb43..35ba605b4 100644 --- a/resources/language-metavariables/tree-sitter-c-sharp/src/parser.c +++ b/resources/language-metavariables/tree-sitter-c-sharp/src/parser.c @@ -14,8 +14,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8161 -#define LARGE_STATE_COUNT 5460 +#define STATE_COUNT 8172 +#define LARGE_STATE_COUNT 5454 #define SYMBOL_COUNT 548 #define ALIAS_COUNT 3 #define TOKEN_COUNT 218 @@ -86,89 +86,89 @@ enum ts_symbol_identifiers { anon_sym_unmanaged = 59, anon_sym_operator = 60, anon_sym_checked = 61, - anon_sym_BANG = 62, - anon_sym_TILDE = 63, - anon_sym_PLUS_PLUS = 64, - anon_sym_DASH_DASH = 65, - anon_sym_true = 66, - anon_sym_false = 67, - anon_sym_PLUS = 68, - anon_sym_DASH = 69, - anon_sym_STAR = 70, - anon_sym_SLASH = 71, - anon_sym_PERCENT = 72, - anon_sym_CARET = 73, - anon_sym_PIPE = 74, - anon_sym_AMP = 75, - anon_sym_LT_LT = 76, - anon_sym_GT_GT = 77, - anon_sym_GT_GT_GT = 78, - anon_sym_EQ_EQ = 79, - anon_sym_BANG_EQ = 80, - anon_sym_GT_EQ = 81, - anon_sym_LT_EQ = 82, - anon_sym_implicit = 83, - anon_sym_explicit = 84, - sym_accessor_get = 85, - sym_accessor_set = 86, - sym_accessor_add = 87, - sym_accessor_remove = 88, - sym_accessor_init = 89, - anon_sym_this = 90, - anon_sym_DOT = 91, - anon_sym_scoped = 92, - anon_sym_params = 93, - anon_sym_base = 94, - anon_sym_EQ_GT = 95, - anon_sym_COLON_COLON = 96, - anon_sym_var = 97, - anon_sym_managed = 98, - anon_sym_Cdecl = 99, - anon_sym_Stdcall = 100, - anon_sym_Thiscall = 101, - anon_sym_Fastcall = 102, - sym_predefined_type = 103, - anon_sym_break = 104, - anon_sym_unchecked = 105, - anon_sym_continue = 106, - anon_sym_do = 107, - anon_sym_while = 108, - anon_sym_for = 109, - anon_sym_lock = 110, - anon_sym_yield = 111, - anon_sym_switch = 112, - anon_sym_case = 113, - anon_sym_default = 114, - anon_sym_throw = 115, - anon_sym_try = 116, - anon_sym_catch = 117, - anon_sym_when = 118, - anon_sym_finally = 119, - anon_sym_await = 120, - anon_sym_foreach = 121, - anon_sym_goto = 122, - anon_sym_if = 123, - anon_sym_else = 124, - sym_discard = 125, - anon_sym_DOT_DOT = 126, - anon_sym_not = 127, - anon_sym_and = 128, - anon_sym_or = 129, - anon_sym_PLUS_EQ = 130, - anon_sym_DASH_EQ = 131, - anon_sym_STAR_EQ = 132, - anon_sym_SLASH_EQ = 133, - anon_sym_PERCENT_EQ = 134, - anon_sym_AMP_EQ = 135, - anon_sym_CARET_EQ = 136, - anon_sym_PIPE_EQ = 137, - anon_sym_LT_LT_EQ = 138, - anon_sym_GT_GT_EQ = 139, - anon_sym_GT_GT_GT_EQ = 140, - anon_sym_QMARK_QMARK_EQ = 141, - anon_sym_AMP_AMP = 142, - anon_sym_PIPE_PIPE = 143, - sym_op_coalescing = 144, + anon_sym_implicit = 62, + anon_sym_explicit = 63, + anon_sym_TILDE = 64, + sym_accessor_get = 65, + sym_accessor_set = 66, + sym_accessor_add = 67, + sym_accessor_remove = 68, + sym_accessor_init = 69, + anon_sym_this = 70, + anon_sym_DOT = 71, + anon_sym_scoped = 72, + anon_sym_params = 73, + anon_sym_base = 74, + anon_sym_EQ_GT = 75, + anon_sym_COLON_COLON = 76, + anon_sym_var = 77, + anon_sym_STAR = 78, + anon_sym_managed = 79, + anon_sym_Cdecl = 80, + anon_sym_Stdcall = 81, + anon_sym_Thiscall = 82, + anon_sym_Fastcall = 83, + sym_predefined_type = 84, + anon_sym_break = 85, + anon_sym_unchecked = 86, + anon_sym_continue = 87, + anon_sym_do = 88, + anon_sym_while = 89, + anon_sym_for = 90, + anon_sym_lock = 91, + anon_sym_yield = 92, + anon_sym_switch = 93, + anon_sym_case = 94, + anon_sym_default = 95, + anon_sym_throw = 96, + anon_sym_try = 97, + anon_sym_catch = 98, + anon_sym_when = 99, + anon_sym_finally = 100, + anon_sym_await = 101, + anon_sym_foreach = 102, + anon_sym_goto = 103, + anon_sym_if = 104, + anon_sym_else = 105, + sym_discard = 106, + anon_sym_DOT_DOT = 107, + anon_sym_LT_EQ = 108, + anon_sym_GT_EQ = 109, + anon_sym_not = 110, + anon_sym_and = 111, + anon_sym_or = 112, + anon_sym_PLUS_EQ = 113, + anon_sym_DASH_EQ = 114, + anon_sym_STAR_EQ = 115, + anon_sym_SLASH_EQ = 116, + anon_sym_PERCENT_EQ = 117, + anon_sym_AMP_EQ = 118, + anon_sym_CARET_EQ = 119, + anon_sym_PIPE_EQ = 120, + anon_sym_LT_LT_EQ = 121, + anon_sym_GT_GT_EQ = 122, + anon_sym_GT_GT_GT_EQ = 123, + anon_sym_QMARK_QMARK_EQ = 124, + anon_sym_EQ_EQ = 125, + anon_sym_BANG_EQ = 126, + anon_sym_AMP_AMP = 127, + anon_sym_PIPE_PIPE = 128, + anon_sym_AMP = 129, + sym_op_bitwise_or = 130, + anon_sym_CARET = 131, + sym_op_left_shift = 132, + sym_op_right_shift = 133, + sym_op_unsigned_right_shift = 134, + anon_sym_PLUS = 135, + anon_sym_DASH = 136, + sym_op_divide = 137, + sym_op_modulo = 138, + sym_op_coalescing = 139, + anon_sym_BANG = 140, + anon_sym_PLUS_PLUS = 141, + anon_sym_DASH_DASH = 142, + anon_sym_true = 143, + anon_sym_false = 144, anon_sym_from = 145, anon_sym_into = 146, anon_sym_join = 147, @@ -398,16 +398,16 @@ enum ts_symbol_identifiers { sym_op_and = 371, sym_op_or = 372, sym_op_bitwise_and = 373, - sym_op_bitwise_or = 374, - sym_op_bitwise_xor = 375, - sym_op_left_shift = 376, - sym_op_right_shift = 377, - sym_op_unsigned_right_shift = 378, - sym_op_plus = 379, - sym_op_minus = 380, - sym_op_multiply = 381, - sym_op_divide = 382, - sym_op_modulo = 383, + sym_op_bitwise_xor = 374, + sym_op_plus = 375, + sym_op_minus = 376, + sym_op_multiply = 377, + sym_op_not = 378, + sym_op_bitwise_not = 379, + sym_op_plus_plus = 380, + sym_op_minus_minus = 381, + sym_op_true = 382, + sym_op_false = 383, sym_binary_expression = 384, sym_postfix_unary_expression = 385, sym_prefix_unary_expression = 386, @@ -640,29 +640,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_unmanaged] = "unmanaged", [anon_sym_operator] = "operator", [anon_sym_checked] = "checked", - [anon_sym_BANG] = "!", - [anon_sym_TILDE] = "~", - [anon_sym_PLUS_PLUS] = "++", - [anon_sym_DASH_DASH] = "--", - [anon_sym_true] = "true", - [anon_sym_false] = "false", - [anon_sym_PLUS] = "+", - [anon_sym_DASH] = "-", - [anon_sym_STAR] = "*", - [anon_sym_SLASH] = "/", - [anon_sym_PERCENT] = "%", - [anon_sym_CARET] = "^", - [anon_sym_PIPE] = "|", - [anon_sym_AMP] = "&", - [anon_sym_LT_LT] = "<<", - [anon_sym_GT_GT] = ">>", - [anon_sym_GT_GT_GT] = ">>>", - [anon_sym_EQ_EQ] = "==", - [anon_sym_BANG_EQ] = "!=", - [anon_sym_GT_EQ] = ">=", - [anon_sym_LT_EQ] = "<=", [anon_sym_implicit] = "implicit", [anon_sym_explicit] = "explicit", + [anon_sym_TILDE] = "~", [sym_accessor_get] = "accessor_get", [sym_accessor_set] = "accessor_set", [sym_accessor_add] = "accessor_add", @@ -676,6 +656,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_EQ_GT] = "=>", [anon_sym_COLON_COLON] = "::", [anon_sym_var] = "var", + [anon_sym_STAR] = "*", [anon_sym_managed] = "managed", [anon_sym_Cdecl] = "Cdecl", [anon_sym_Stdcall] = "Stdcall", @@ -705,6 +686,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_else] = "else", [sym_discard] = "discard", [anon_sym_DOT_DOT] = "..", + [anon_sym_LT_EQ] = "<=", + [anon_sym_GT_EQ] = ">=", [anon_sym_not] = "not", [anon_sym_and] = "and", [anon_sym_or] = "or", @@ -720,9 +703,26 @@ static const char * const ts_symbol_names[] = { [anon_sym_GT_GT_EQ] = ">>=", [anon_sym_GT_GT_GT_EQ] = ">>>=", [anon_sym_QMARK_QMARK_EQ] = "\?\?=", + [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", [anon_sym_AMP_AMP] = "&&", [anon_sym_PIPE_PIPE] = "||", + [anon_sym_AMP] = "&", + [sym_op_bitwise_or] = "op_bitwise_or", + [anon_sym_CARET] = "^", + [sym_op_left_shift] = "op_left_shift", + [sym_op_right_shift] = "op_right_shift", + [sym_op_unsigned_right_shift] = "op_unsigned_right_shift", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [sym_op_divide] = "op_divide", + [sym_op_modulo] = "op_modulo", [sym_op_coalescing] = "op_coalescing", + [anon_sym_BANG] = "!", + [anon_sym_PLUS_PLUS] = "++", + [anon_sym_DASH_DASH] = "--", + [anon_sym_true] = "true", + [anon_sym_false] = "false", [anon_sym_from] = "from", [anon_sym_into] = "into", [anon_sym_join] = "join", @@ -952,16 +952,16 @@ static const char * const ts_symbol_names[] = { [sym_op_and] = "op_and", [sym_op_or] = "op_or", [sym_op_bitwise_and] = "op_bitwise_and", - [sym_op_bitwise_or] = "op_bitwise_or", [sym_op_bitwise_xor] = "op_bitwise_xor", - [sym_op_left_shift] = "op_left_shift", - [sym_op_right_shift] = "op_right_shift", - [sym_op_unsigned_right_shift] = "op_unsigned_right_shift", [sym_op_plus] = "op_plus", [sym_op_minus] = "op_minus", [sym_op_multiply] = "op_multiply", - [sym_op_divide] = "op_divide", - [sym_op_modulo] = "op_modulo", + [sym_op_not] = "op_not", + [sym_op_bitwise_not] = "op_bitwise_not", + [sym_op_plus_plus] = "op_plus_plus", + [sym_op_minus_minus] = "op_minus_minus", + [sym_op_true] = "op_true", + [sym_op_false] = "op_false", [sym_binary_expression] = "binary_expression", [sym_postfix_unary_expression] = "postfix_unary_expression", [sym_prefix_unary_expression] = "prefix_unary_expression", @@ -1194,29 +1194,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_unmanaged] = anon_sym_unmanaged, [anon_sym_operator] = anon_sym_operator, [anon_sym_checked] = anon_sym_checked, - [anon_sym_BANG] = anon_sym_BANG, - [anon_sym_TILDE] = anon_sym_TILDE, - [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, - [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, - [anon_sym_true] = anon_sym_true, - [anon_sym_false] = anon_sym_false, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_PERCENT] = anon_sym_PERCENT, - [anon_sym_CARET] = anon_sym_CARET, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_AMP] = anon_sym_AMP, - [anon_sym_LT_LT] = anon_sym_LT_LT, - [anon_sym_GT_GT] = anon_sym_GT_GT, - [anon_sym_GT_GT_GT] = anon_sym_GT_GT_GT, - [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, - [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, - [anon_sym_GT_EQ] = anon_sym_GT_EQ, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, [anon_sym_implicit] = anon_sym_implicit, [anon_sym_explicit] = anon_sym_explicit, + [anon_sym_TILDE] = anon_sym_TILDE, [sym_accessor_get] = sym_accessor_get, [sym_accessor_set] = sym_accessor_set, [sym_accessor_add] = sym_accessor_add, @@ -1230,6 +1210,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_EQ_GT] = anon_sym_EQ_GT, [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, [anon_sym_var] = anon_sym_var, + [anon_sym_STAR] = anon_sym_STAR, [anon_sym_managed] = anon_sym_managed, [anon_sym_Cdecl] = anon_sym_Cdecl, [anon_sym_Stdcall] = anon_sym_Stdcall, @@ -1259,6 +1240,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_else] = anon_sym_else, [sym_discard] = sym_discard, [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, [anon_sym_not] = anon_sym_not, [anon_sym_and] = anon_sym_and, [anon_sym_or] = anon_sym_or, @@ -1274,9 +1257,26 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, [anon_sym_GT_GT_GT_EQ] = anon_sym_GT_GT_GT_EQ, [anon_sym_QMARK_QMARK_EQ] = anon_sym_QMARK_QMARK_EQ, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [anon_sym_AMP] = anon_sym_AMP, + [sym_op_bitwise_or] = sym_op_bitwise_or, + [anon_sym_CARET] = anon_sym_CARET, + [sym_op_left_shift] = sym_op_left_shift, + [sym_op_right_shift] = sym_op_right_shift, + [sym_op_unsigned_right_shift] = sym_op_unsigned_right_shift, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [sym_op_divide] = sym_op_divide, + [sym_op_modulo] = sym_op_modulo, [sym_op_coalescing] = sym_op_coalescing, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, + [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [anon_sym_true] = anon_sym_true, + [anon_sym_false] = anon_sym_false, [anon_sym_from] = anon_sym_from, [anon_sym_into] = anon_sym_into, [anon_sym_join] = anon_sym_join, @@ -1506,16 +1506,16 @@ static const TSSymbol ts_symbol_map[] = { [sym_op_and] = sym_op_and, [sym_op_or] = sym_op_or, [sym_op_bitwise_and] = sym_op_bitwise_and, - [sym_op_bitwise_or] = sym_op_bitwise_or, [sym_op_bitwise_xor] = sym_op_bitwise_xor, - [sym_op_left_shift] = sym_op_left_shift, - [sym_op_right_shift] = sym_op_right_shift, - [sym_op_unsigned_right_shift] = sym_op_unsigned_right_shift, [sym_op_plus] = sym_op_plus, [sym_op_minus] = sym_op_minus, [sym_op_multiply] = sym_op_multiply, - [sym_op_divide] = sym_op_divide, - [sym_op_modulo] = sym_op_modulo, + [sym_op_not] = sym_op_not, + [sym_op_bitwise_not] = sym_op_bitwise_not, + [sym_op_plus_plus] = sym_op_plus_plus, + [sym_op_minus_minus] = sym_op_minus_minus, + [sym_op_true] = sym_op_true, + [sym_op_false] = sym_op_false, [sym_binary_expression] = sym_binary_expression, [sym_postfix_unary_expression] = sym_postfix_unary_expression, [sym_prefix_unary_expression] = sym_prefix_unary_expression, @@ -1934,95 +1934,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_BANG] = { - .visible = true, - .named = false, - }, - [anon_sym_TILDE] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_true] = { - .visible = true, - .named = false, - }, - [anon_sym_false] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_EQ] = { + [anon_sym_implicit] = { .visible = true, .named = false, }, - [anon_sym_implicit] = { + [anon_sym_explicit] = { .visible = true, .named = false, }, - [anon_sym_explicit] = { + [anon_sym_TILDE] = { .visible = true, .named = false, }, @@ -2078,6 +1998,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, [anon_sym_managed] = { .visible = true, .named = false, @@ -2194,6 +2118,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_not] = { .visible = true, .named = false, @@ -2254,6 +2186,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_AMP_AMP] = { .visible = true, .named = false, @@ -2262,10 +2202,70 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [sym_op_bitwise_or] = { + .visible = true, + .named = true, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [sym_op_left_shift] = { + .visible = true, + .named = true, + }, + [sym_op_right_shift] = { + .visible = true, + .named = true, + }, + [sym_op_unsigned_right_shift] = { + .visible = true, + .named = true, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [sym_op_divide] = { + .visible = true, + .named = true, + }, + [sym_op_modulo] = { + .visible = true, + .named = true, + }, [sym_op_coalescing] = { .visible = true, .named = true, }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_true] = { + .visible = true, + .named = false, + }, + [anon_sym_false] = { + .visible = true, + .named = false, + }, [anon_sym_from] = { .visible = true, .named = false, @@ -3190,43 +3190,43 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_op_bitwise_or] = { + [sym_op_bitwise_xor] = { .visible = true, .named = true, }, - [sym_op_bitwise_xor] = { + [sym_op_plus] = { .visible = true, .named = true, }, - [sym_op_left_shift] = { + [sym_op_minus] = { .visible = true, .named = true, }, - [sym_op_right_shift] = { + [sym_op_multiply] = { .visible = true, .named = true, }, - [sym_op_unsigned_right_shift] = { + [sym_op_not] = { .visible = true, .named = true, }, - [sym_op_plus] = { + [sym_op_bitwise_not] = { .visible = true, .named = true, }, - [sym_op_minus] = { + [sym_op_plus_plus] = { .visible = true, .named = true, }, - [sym_op_multiply] = { + [sym_op_minus_minus] = { .visible = true, .named = true, }, - [sym_op_divide] = { + [sym_op_true] = { .visible = true, .named = true, }, - [sym_op_modulo] = { + [sym_op_false] = { .visible = true, .named = true, }, @@ -5862,14 +5862,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 2, - [4] = 2, - [5] = 5, + [4] = 4, + [5] = 2, [6] = 2, [7] = 2, [8] = 2, [9] = 9, - [10] = 9, - [11] = 11, + [10] = 10, + [11] = 9, [12] = 9, [13] = 9, [14] = 14, @@ -5882,96 +5882,96 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [21] = 21, [22] = 22, [23] = 23, - [24] = 23, + [24] = 24, [25] = 23, - [26] = 23, + [26] = 26, [27] = 23, - [28] = 28, - [29] = 29, + [28] = 23, + [29] = 23, [30] = 23, - [31] = 31, - [32] = 32, + [31] = 23, + [32] = 23, [33] = 33, - [34] = 23, + [34] = 34, [35] = 35, - [36] = 23, - [37] = 23, + [36] = 36, + [37] = 37, [38] = 23, [39] = 39, [40] = 40, - [41] = 41, + [41] = 23, [42] = 42, [43] = 43, - [44] = 43, + [44] = 42, [45] = 43, [46] = 42, - [47] = 43, + [47] = 42, [48] = 42, - [49] = 42, + [49] = 43, [50] = 43, - [51] = 42, + [51] = 43, [52] = 42, - [53] = 43, + [53] = 42, [54] = 43, - [55] = 43, - [56] = 43, + [55] = 42, + [56] = 42, [57] = 43, - [58] = 42, + [58] = 43, [59] = 43, - [60] = 42, + [60] = 60, [61] = 42, - [62] = 42, - [63] = 42, - [64] = 64, + [62] = 43, + [63] = 43, + [64] = 42, [65] = 65, [66] = 66, [67] = 67, - [68] = 67, + [68] = 68, [69] = 69, [70] = 70, - [71] = 71, - [72] = 66, - [73] = 73, - [74] = 74, + [71] = 65, + [72] = 72, + [73] = 67, + [74] = 68, [75] = 75, [76] = 76, - [77] = 65, - [78] = 78, - [79] = 71, - [80] = 67, - [81] = 78, - [82] = 70, - [83] = 76, - [84] = 75, - [85] = 69, - [86] = 70, - [87] = 66, - [88] = 78, - [89] = 65, - [90] = 71, - [91] = 67, - [92] = 73, - [93] = 74, - [94] = 75, - [95] = 76, - [96] = 65, - [97] = 78, - [98] = 73, - [99] = 69, - [100] = 70, - [101] = 74, - [102] = 71, - [103] = 66, - [104] = 73, - [105] = 69, - [106] = 74, - [107] = 75, - [108] = 76, + [77] = 75, + [78] = 66, + [79] = 79, + [80] = 80, + [81] = 79, + [82] = 69, + [83] = 70, + [84] = 72, + [85] = 80, + [86] = 75, + [87] = 75, + [88] = 66, + [89] = 66, + [90] = 67, + [91] = 80, + [92] = 72, + [93] = 76, + [94] = 68, + [95] = 70, + [96] = 69, + [97] = 72, + [98] = 79, + [99] = 65, + [100] = 76, + [101] = 70, + [102] = 69, + [103] = 68, + [104] = 80, + [105] = 67, + [106] = 76, + [107] = 79, + [108] = 65, [109] = 109, [110] = 110, - [111] = 110, - [112] = 110, - [113] = 110, + [111] = 109, + [112] = 109, + [113] = 109, [114] = 109, [115] = 110, [116] = 116, @@ -5981,8 +5981,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [120] = 116, [121] = 116, [122] = 116, - [123] = 123, - [124] = 124, + [123] = 116, + [124] = 116, [125] = 116, [126] = 116, [127] = 116, @@ -5995,319 +5995,319 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [134] = 116, [135] = 116, [136] = 116, - [137] = 116, + [137] = 137, [138] = 116, [139] = 116, [140] = 116, [141] = 116, [142] = 116, [143] = 116, - [144] = 116, + [144] = 144, [145] = 116, [146] = 116, [147] = 116, [148] = 148, [149] = 148, - [150] = 123, - [151] = 124, - [152] = 124, - [153] = 123, - [154] = 123, - [155] = 124, - [156] = 123, - [157] = 124, - [158] = 123, - [159] = 124, - [160] = 124, - [161] = 123, - [162] = 123, - [163] = 124, - [164] = 124, - [165] = 123, - [166] = 124, - [167] = 124, - [168] = 123, - [169] = 124, - [170] = 123, - [171] = 123, - [172] = 123, - [173] = 123, - [174] = 124, - [175] = 124, - [176] = 176, - [177] = 123, - [178] = 123, - [179] = 124, - [180] = 176, - [181] = 123, - [182] = 123, - [183] = 124, - [184] = 123, - [185] = 124, - [186] = 176, - [187] = 123, - [188] = 176, - [189] = 123, - [190] = 124, - [191] = 124, - [192] = 124, - [193] = 124, - [194] = 124, - [195] = 124, - [196] = 124, - [197] = 123, - [198] = 123, - [199] = 124, - [200] = 124, - [201] = 123, - [202] = 123, - [203] = 123, - [204] = 123, - [205] = 176, - [206] = 124, - [207] = 124, - [208] = 123, - [209] = 124, - [210] = 123, - [211] = 123, - [212] = 124, - [213] = 124, - [214] = 124, - [215] = 124, - [216] = 123, - [217] = 123, - [218] = 124, - [219] = 219, - [220] = 123, - [221] = 123, - [222] = 123, - [223] = 124, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 224, - [228] = 228, - [229] = 124, - [230] = 123, - [231] = 228, - [232] = 228, - [233] = 226, + [150] = 137, + [151] = 144, + [152] = 137, + [153] = 144, + [154] = 137, + [155] = 137, + [156] = 144, + [157] = 137, + [158] = 144, + [159] = 144, + [160] = 144, + [161] = 137, + [162] = 144, + [163] = 137, + [164] = 137, + [165] = 144, + [166] = 137, + [167] = 144, + [168] = 137, + [169] = 137, + [170] = 144, + [171] = 144, + [172] = 172, + [173] = 137, + [174] = 137, + [175] = 172, + [176] = 144, + [177] = 137, + [178] = 137, + [179] = 144, + [180] = 137, + [181] = 144, + [182] = 144, + [183] = 172, + [184] = 137, + [185] = 172, + [186] = 144, + [187] = 144, + [188] = 137, + [189] = 137, + [190] = 144, + [191] = 144, + [192] = 144, + [193] = 172, + [194] = 137, + [195] = 137, + [196] = 144, + [197] = 137, + [198] = 144, + [199] = 137, + [200] = 144, + [201] = 137, + [202] = 144, + [203] = 137, + [204] = 144, + [205] = 144, + [206] = 137, + [207] = 144, + [208] = 208, + [209] = 144, + [210] = 137, + [211] = 144, + [212] = 137, + [213] = 137, + [214] = 144, + [215] = 137, + [216] = 137, + [217] = 144, + [218] = 137, + [219] = 137, + [220] = 144, + [221] = 137, + [222] = 144, + [223] = 144, + [224] = 137, + [225] = 137, + [226] = 137, + [227] = 144, + [228] = 137, + [229] = 144, + [230] = 137, + [231] = 231, + [232] = 232, + [233] = 144, [234] = 234, - [235] = 124, - [236] = 123, - [237] = 124, - [238] = 234, - [239] = 123, - [240] = 124, - [241] = 124, - [242] = 123, - [243] = 124, - [244] = 123, - [245] = 224, - [246] = 228, - [247] = 226, - [248] = 228, - [249] = 226, - [250] = 224, - [251] = 123, - [252] = 123, - [253] = 124, - [254] = 228, + [235] = 144, + [236] = 236, + [237] = 144, + [238] = 144, + [239] = 236, + [240] = 231, + [241] = 236, + [242] = 144, + [243] = 137, + [244] = 234, + [245] = 137, + [246] = 231, + [247] = 231, + [248] = 231, + [249] = 236, + [250] = 234, + [251] = 234, + [252] = 231, + [253] = 253, + [254] = 253, [255] = 255, - [256] = 256, - [257] = 123, - [258] = 124, - [259] = 256, - [260] = 124, - [261] = 123, - [262] = 256, - [263] = 256, - [264] = 123, - [265] = 265, - [266] = 265, - [267] = 267, - [268] = 265, - [269] = 124, - [270] = 265, - [271] = 124, - [272] = 123, - [273] = 123, - [274] = 124, - [275] = 265, - [276] = 124, - [277] = 255, - [278] = 124, - [279] = 123, - [280] = 123, - [281] = 124, - [282] = 265, - [283] = 256, - [284] = 123, - [285] = 256, - [286] = 267, + [256] = 137, + [257] = 257, + [258] = 257, + [259] = 137, + [260] = 255, + [261] = 144, + [262] = 144, + [263] = 263, + [264] = 255, + [265] = 144, + [266] = 263, + [267] = 137, + [268] = 137, + [269] = 255, + [270] = 144, + [271] = 263, + [272] = 144, + [273] = 255, + [274] = 144, + [275] = 263, + [276] = 144, + [277] = 144, + [278] = 137, + [279] = 137, + [280] = 280, + [281] = 255, + [282] = 280, + [283] = 263, + [284] = 137, + [285] = 263, + [286] = 137, [287] = 287, - [288] = 288, + [288] = 287, [289] = 289, [290] = 290, - [291] = 290, + [291] = 287, [292] = 289, - [293] = 287, - [294] = 288, - [295] = 295, - [296] = 288, - [297] = 287, - [298] = 290, - [299] = 290, + [293] = 289, + [294] = 294, + [295] = 294, + [296] = 289, + [297] = 294, + [298] = 298, + [299] = 299, [300] = 287, [301] = 289, - [302] = 287, - [303] = 288, - [304] = 290, - [305] = 288, - [306] = 295, - [307] = 289, - [308] = 289, - [309] = 309, + [302] = 290, + [303] = 287, + [304] = 299, + [305] = 294, + [306] = 290, + [307] = 294, + [308] = 290, + [309] = 290, [310] = 310, [311] = 311, [312] = 312, - [313] = 313, - [314] = 310, - [315] = 315, - [316] = 313, - [317] = 311, - [318] = 315, - [319] = 315, - [320] = 310, - [321] = 315, - [322] = 315, - [323] = 313, + [313] = 312, + [314] = 312, + [315] = 312, + [316] = 310, + [317] = 312, + [318] = 310, + [319] = 319, + [320] = 311, + [321] = 311, + [322] = 322, + [323] = 312, [324] = 311, - [325] = 311, - [326] = 315, - [327] = 310, - [328] = 313, - [329] = 315, - [330] = 311, + [325] = 319, + [326] = 319, + [327] = 312, + [328] = 310, + [329] = 310, + [330] = 312, [331] = 311, - [332] = 313, - [333] = 310, + [332] = 312, + [333] = 312, [334] = 311, - [335] = 315, - [336] = 315, + [335] = 312, + [336] = 312, [337] = 311, - [338] = 338, - [339] = 315, - [340] = 313, - [341] = 313, - [342] = 313, - [343] = 310, - [344] = 315, + [338] = 312, + [339] = 319, + [340] = 311, + [341] = 312, + [342] = 319, + [343] = 312, + [344] = 312, [345] = 310, - [346] = 310, - [347] = 313, - [348] = 311, - [349] = 311, - [350] = 313, - [351] = 310, - [352] = 310, - [353] = 315, - [354] = 315, - [355] = 311, - [356] = 315, - [357] = 357, - [358] = 315, - [359] = 313, - [360] = 310, - [361] = 315, - [362] = 315, - [363] = 315, - [364] = 310, - [365] = 311, - [366] = 313, - [367] = 310, + [346] = 311, + [347] = 311, + [348] = 310, + [349] = 319, + [350] = 311, + [351] = 319, + [352] = 312, + [353] = 319, + [354] = 311, + [355] = 310, + [356] = 310, + [357] = 310, + [358] = 312, + [359] = 319, + [360] = 312, + [361] = 312, + [362] = 311, + [363] = 310, + [364] = 312, + [365] = 312, + [366] = 310, + [367] = 367, [368] = 311, - [369] = 313, - [370] = 313, - [371] = 315, - [372] = 310, - [373] = 310, - [374] = 311, - [375] = 311, + [369] = 310, + [370] = 319, + [371] = 310, + [372] = 311, + [373] = 319, + [374] = 312, + [375] = 319, [376] = 311, - [377] = 315, - [378] = 315, + [377] = 310, + [378] = 311, [379] = 311, - [380] = 313, - [381] = 315, - [382] = 315, - [383] = 313, - [384] = 310, - [385] = 315, - [386] = 310, - [387] = 311, - [388] = 313, - [389] = 310, - [390] = 310, - [391] = 315, - [392] = 313, - [393] = 313, - [394] = 311, - [395] = 313, - [396] = 311, - [397] = 313, - [398] = 310, - [399] = 311, - [400] = 315, - [401] = 310, - [402] = 311, + [380] = 319, + [381] = 319, + [382] = 319, + [383] = 310, + [384] = 312, + [385] = 310, + [386] = 312, + [387] = 310, + [388] = 310, + [389] = 319, + [390] = 312, + [391] = 311, + [392] = 319, + [393] = 312, + [394] = 310, + [395] = 312, + [396] = 312, + [397] = 311, + [398] = 312, + [399] = 319, + [400] = 311, + [401] = 311, + [402] = 319, [403] = 310, - [404] = 313, - [405] = 315, - [406] = 311, - [407] = 315, - [408] = 315, - [409] = 315, - [410] = 313, - [411] = 310, - [412] = 315, - [413] = 315, - [414] = 315, - [415] = 315, - [416] = 310, - [417] = 311, - [418] = 313, - [419] = 311, - [420] = 313, - [421] = 311, - [422] = 315, - [423] = 310, - [424] = 315, - [425] = 315, - [426] = 315, - [427] = 315, - [428] = 315, - [429] = 313, + [404] = 312, + [405] = 311, + [406] = 310, + [407] = 312, + [408] = 312, + [409] = 310, + [410] = 319, + [411] = 319, + [412] = 311, + [413] = 319, + [414] = 312, + [415] = 319, + [416] = 311, + [417] = 312, + [418] = 310, + [419] = 319, + [420] = 311, + [421] = 319, + [422] = 312, + [423] = 319, + [424] = 311, + [425] = 319, + [426] = 311, + [427] = 319, + [428] = 312, + [429] = 312, [430] = 310, - [431] = 315, - [432] = 315, - [433] = 313, - [434] = 315, - [435] = 310, - [436] = 311, - [437] = 338, - [438] = 315, + [431] = 367, + [432] = 312, + [433] = 312, + [434] = 310, + [435] = 312, + [436] = 319, + [437] = 311, + [438] = 319, [439] = 311, - [440] = 315, - [441] = 313, - [442] = 315, - [443] = 315, - [444] = 315, - [445] = 310, - [446] = 313, - [447] = 311, - [448] = 311, - [449] = 313, + [440] = 312, + [441] = 312, + [442] = 310, + [443] = 312, + [444] = 310, + [445] = 312, + [446] = 312, + [447] = 447, + [448] = 312, + [449] = 312, [450] = 310, [451] = 310, [452] = 452, @@ -6363,7 +6363,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [502] = 461, [503] = 461, [504] = 461, - [505] = 461, + [505] = 505, [506] = 461, [507] = 461, [508] = 461, @@ -6373,17 +6373,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [512] = 461, [513] = 461, [514] = 461, - [515] = 515, + [515] = 461, [516] = 461, [517] = 461, [518] = 461, [519] = 461, [520] = 520, [521] = 520, - [522] = 520, + [522] = 522, [523] = 520, [524] = 520, - [525] = 525, + [525] = 520, [526] = 520, [527] = 520, [528] = 520, @@ -6398,1383 +6398,1383 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [537] = 531, [538] = 538, [539] = 539, - [540] = 540, - [541] = 538, - [542] = 540, - [543] = 540, + [540] = 538, + [541] = 541, + [542] = 538, + [543] = 543, [544] = 538, - [545] = 539, - [546] = 546, - [547] = 539, + [545] = 541, + [546] = 539, + [547] = 541, [548] = 539, - [549] = 538, + [549] = 541, [550] = 539, - [551] = 540, - [552] = 538, - [553] = 540, - [554] = 540, - [555] = 539, + [551] = 538, + [552] = 541, + [553] = 541, + [554] = 539, + [555] = 538, [556] = 556, - [557] = 557, - [558] = 557, + [557] = 556, + [558] = 556, [559] = 559, - [560] = 557, - [561] = 556, - [562] = 557, + [560] = 559, + [561] = 561, + [562] = 556, [563] = 563, - [564] = 563, - [565] = 565, - [566] = 557, - [567] = 556, - [568] = 556, + [564] = 564, + [565] = 559, + [566] = 556, + [567] = 559, + [568] = 564, [569] = 569, [570] = 570, - [571] = 557, + [571] = 556, [572] = 572, [573] = 573, [574] = 573, [575] = 572, [576] = 573, [577] = 573, - [578] = 578, - [579] = 573, + [578] = 572, + [579] = 572, [580] = 572, - [581] = 572, + [581] = 573, [582] = 572, - [583] = 573, - [584] = 573, + [583] = 583, + [584] = 572, [585] = 572, [586] = 573, [587] = 587, [588] = 588, [589] = 589, - [590] = 590, + [590] = 588, [591] = 591, - [592] = 590, - [593] = 593, - [594] = 590, - [595] = 590, - [596] = 590, - [597] = 597, - [598] = 590, + [592] = 588, + [593] = 588, + [594] = 589, + [595] = 588, + [596] = 596, + [597] = 588, + [598] = 588, [599] = 599, - [600] = 590, - [601] = 589, - [602] = 590, - [603] = 590, - [604] = 590, - [605] = 590, - [606] = 606, - [607] = 590, - [608] = 590, - [609] = 590, - [610] = 610, - [611] = 606, - [612] = 590, - [613] = 590, - [614] = 591, - [615] = 593, - [616] = 590, - [617] = 590, - [618] = 590, - [619] = 590, - [620] = 589, - [621] = 590, - [622] = 590, - [623] = 590, - [624] = 606, - [625] = 590, - [626] = 626, - [627] = 590, - [628] = 591, - [629] = 590, - [630] = 590, - [631] = 590, - [632] = 590, - [633] = 590, - [634] = 610, - [635] = 591, - [636] = 610, - [637] = 590, - [638] = 590, - [639] = 590, - [640] = 640, - [641] = 590, - [642] = 590, - [643] = 590, - [644] = 590, - [645] = 610, - [646] = 590, - [647] = 597, - [648] = 648, - [649] = 591, - [650] = 590, - [651] = 590, - [652] = 610, + [600] = 589, + [601] = 588, + [602] = 588, + [603] = 603, + [604] = 604, + [605] = 588, + [606] = 588, + [607] = 607, + [608] = 608, + [609] = 607, + [610] = 588, + [611] = 588, + [612] = 604, + [613] = 599, + [614] = 599, + [615] = 588, + [616] = 589, + [617] = 607, + [618] = 604, + [619] = 591, + [620] = 588, + [621] = 599, + [622] = 588, + [623] = 623, + [624] = 589, + [625] = 608, + [626] = 588, + [627] = 588, + [628] = 588, + [629] = 588, + [630] = 607, + [631] = 588, + [632] = 588, + [633] = 588, + [634] = 634, + [635] = 599, + [636] = 607, + [637] = 604, + [638] = 588, + [639] = 608, + [640] = 588, + [641] = 588, + [642] = 588, + [643] = 588, + [644] = 588, + [645] = 588, + [646] = 588, + [647] = 591, + [648] = 588, + [649] = 588, + [650] = 588, + [651] = 588, + [652] = 588, [653] = 588, - [654] = 590, - [655] = 590, - [656] = 590, - [657] = 593, - [658] = 597, - [659] = 610, - [660] = 590, - [661] = 590, - [662] = 597, - [663] = 588, - [664] = 590, - [665] = 606, - [666] = 597, - [667] = 589, - [668] = 590, - [669] = 597, + [654] = 588, + [655] = 588, + [656] = 588, + [657] = 657, + [658] = 588, + [659] = 608, + [660] = 623, + [661] = 599, + [662] = 588, + [663] = 589, + [664] = 623, + [665] = 623, + [666] = 607, + [667] = 588, + [668] = 588, + [669] = 591, [670] = 588, - [671] = 590, - [672] = 590, - [673] = 673, - [674] = 591, - [675] = 593, - [676] = 590, + [671] = 671, + [672] = 588, + [673] = 588, + [674] = 588, + [675] = 588, + [676] = 588, [677] = 677, [678] = 678, - [679] = 677, - [680] = 680, + [679] = 678, + [680] = 677, [681] = 681, - [682] = 678, + [682] = 677, [683] = 678, [684] = 677, - [685] = 677, + [685] = 678, [686] = 678, - [687] = 678, + [687] = 677, [688] = 688, - [689] = 678, - [690] = 678, - [691] = 691, + [689] = 677, + [690] = 677, + [691] = 678, [692] = 677, [693] = 678, - [694] = 677, - [695] = 678, + [694] = 681, + [695] = 688, [696] = 677, - [697] = 678, + [697] = 677, [698] = 677, - [699] = 678, - [700] = 677, - [701] = 677, - [702] = 678, - [703] = 678, + [699] = 699, + [700] = 678, + [701] = 678, + [702] = 702, + [703] = 677, [704] = 677, - [705] = 678, - [706] = 678, - [707] = 677, - [708] = 678, - [709] = 709, - [710] = 678, + [705] = 705, + [706] = 706, + [707] = 678, + [708] = 677, + [709] = 677, + [710] = 677, [711] = 678, - [712] = 680, - [713] = 677, - [714] = 678, - [715] = 709, - [716] = 678, - [717] = 677, - [718] = 681, - [719] = 688, - [720] = 677, - [721] = 721, + [712] = 677, + [713] = 678, + [714] = 677, + [715] = 678, + [716] = 677, + [717] = 678, + [718] = 677, + [719] = 678, + [720] = 678, + [721] = 677, [722] = 678, [723] = 677, - [724] = 678, - [725] = 681, + [724] = 681, + [725] = 688, [726] = 677, - [727] = 678, - [728] = 678, - [729] = 677, - [730] = 678, - [731] = 677, - [732] = 678, - [733] = 678, - [734] = 678, + [727] = 677, + [728] = 699, + [729] = 678, + [730] = 702, + [731] = 678, + [732] = 705, + [733] = 677, + [734] = 699, [735] = 677, [736] = 678, - [737] = 678, + [737] = 677, [738] = 678, - [739] = 677, - [740] = 680, + [739] = 678, + [740] = 677, [741] = 677, [742] = 681, - [743] = 677, + [743] = 688, [744] = 677, - [745] = 681, + [745] = 699, [746] = 678, - [747] = 678, - [748] = 678, - [749] = 677, - [750] = 677, - [751] = 678, - [752] = 677, - [753] = 688, - [754] = 678, - [755] = 677, - [756] = 721, + [747] = 702, + [748] = 705, + [749] = 749, + [750] = 678, + [751] = 677, + [752] = 752, + [753] = 678, + [754] = 677, + [755] = 678, + [756] = 678, [757] = 677, - [758] = 721, - [759] = 677, + [758] = 677, + [759] = 688, [760] = 678, - [761] = 677, - [762] = 762, - [763] = 678, - [764] = 678, - [765] = 678, - [766] = 678, - [767] = 688, - [768] = 678, - [769] = 677, + [761] = 702, + [762] = 705, + [763] = 677, + [764] = 764, + [765] = 765, + [766] = 766, + [767] = 767, + [768] = 768, + [769] = 678, [770] = 677, - [771] = 771, + [771] = 678, [772] = 678, [773] = 677, - [774] = 678, - [775] = 721, - [776] = 678, + [774] = 677, + [775] = 702, + [776] = 677, [777] = 677, [778] = 678, - [779] = 678, - [780] = 677, - [781] = 678, - [782] = 782, + [779] = 702, + [780] = 705, + [781] = 677, + [782] = 678, [783] = 677, [784] = 678, [785] = 677, [786] = 678, [787] = 678, - [788] = 678, + [788] = 677, [789] = 677, - [790] = 678, - [791] = 677, - [792] = 688, + [790] = 677, + [791] = 791, + [792] = 792, [793] = 678, - [794] = 794, - [795] = 795, - [796] = 796, + [794] = 678, + [795] = 678, + [796] = 677, [797] = 797, - [798] = 678, - [799] = 677, - [800] = 677, + [798] = 798, + [799] = 799, + [800] = 800, [801] = 678, [802] = 677, - [803] = 803, - [804] = 681, - [805] = 680, - [806] = 678, - [807] = 807, - [808] = 677, - [809] = 677, - [810] = 678, - [811] = 678, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, + [803] = 678, + [804] = 678, + [805] = 677, + [806] = 677, + [807] = 677, + [808] = 808, + [809] = 809, + [810] = 677, + [811] = 677, + [812] = 705, + [813] = 677, + [814] = 678, + [815] = 678, [816] = 677, [817] = 817, - [818] = 688, - [819] = 677, - [820] = 820, - [821] = 821, + [818] = 678, + [819] = 678, + [820] = 677, + [821] = 677, [822] = 677, [823] = 678, - [824] = 709, + [824] = 677, [825] = 677, [826] = 678, [827] = 677, - [828] = 678, - [829] = 678, + [828] = 677, + [829] = 829, [830] = 830, - [831] = 709, - [832] = 678, - [833] = 721, - [834] = 678, + [831] = 678, + [832] = 677, + [833] = 677, + [834] = 677, [835] = 835, - [836] = 678, - [837] = 837, + [836] = 677, + [837] = 678, [838] = 838, [839] = 839, [840] = 840, [841] = 841, - [842] = 841, - [843] = 841, - [844] = 841, + [842] = 842, + [843] = 839, + [844] = 844, [845] = 845, [846] = 846, [847] = 847, [848] = 848, [849] = 849, - [850] = 850, - [851] = 839, - [852] = 848, - [853] = 847, - [854] = 846, - [855] = 845, + [850] = 848, + [851] = 851, + [852] = 852, + [853] = 853, + [854] = 854, + [855] = 838, [856] = 856, - [857] = 857, - [858] = 857, + [857] = 852, + [858] = 851, [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 838, - [864] = 838, - [865] = 860, + [860] = 839, + [861] = 838, + [862] = 842, + [863] = 840, + [864] = 864, + [865] = 854, [866] = 866, [867] = 867, - [868] = 868, + [868] = 859, [869] = 869, - [870] = 861, + [870] = 870, [871] = 871, - [872] = 869, - [873] = 873, + [872] = 839, + [873] = 842, [874] = 874, - [875] = 869, - [876] = 841, - [877] = 861, - [878] = 867, - [879] = 866, - [880] = 867, - [881] = 862, - [882] = 840, - [883] = 840, - [884] = 866, - [885] = 840, - [886] = 840, - [887] = 862, - [888] = 859, - [889] = 856, - [890] = 840, - [891] = 859, - [892] = 845, - [893] = 840, - [894] = 840, - [895] = 856, - [896] = 840, + [875] = 840, + [876] = 871, + [877] = 877, + [878] = 846, + [879] = 879, + [880] = 880, + [881] = 854, + [882] = 847, + [883] = 841, + [884] = 880, + [885] = 866, + [886] = 869, + [887] = 847, + [888] = 838, + [889] = 871, + [890] = 852, + [891] = 851, + [892] = 859, + [893] = 839, + [894] = 842, + [895] = 895, + [896] = 874, [897] = 840, - [898] = 898, - [899] = 846, - [900] = 845, - [901] = 846, - [902] = 840, - [903] = 903, - [904] = 847, - [905] = 848, - [906] = 849, - [907] = 850, - [908] = 869, - [909] = 867, - [910] = 847, - [911] = 866, - [912] = 840, - [913] = 848, - [914] = 849, - [915] = 840, - [916] = 850, - [917] = 850, - [918] = 862, - [919] = 838, - [920] = 859, - [921] = 861, - [922] = 860, - [923] = 923, - [924] = 840, - [925] = 839, - [926] = 840, - [927] = 869, - [928] = 860, - [929] = 840, - [930] = 838, - [931] = 871, - [932] = 932, - [933] = 850, - [934] = 840, - [935] = 849, + [898] = 880, + [899] = 838, + [900] = 900, + [901] = 866, + [902] = 869, + [903] = 871, + [904] = 874, + [905] = 852, + [906] = 851, + [907] = 874, + [908] = 849, + [909] = 848, + [910] = 854, + [911] = 845, + [912] = 880, + [913] = 879, + [914] = 846, + [915] = 880, + [916] = 848, + [917] = 849, + [918] = 846, + [919] = 847, + [920] = 869, + [921] = 874, + [922] = 849, + [923] = 848, + [924] = 871, + [925] = 853, + [926] = 854, + [927] = 838, + [928] = 852, + [929] = 851, + [930] = 859, + [931] = 839, + [932] = 869, + [933] = 846, + [934] = 842, + [935] = 840, [936] = 848, - [937] = 937, - [938] = 847, - [939] = 839, - [940] = 940, - [941] = 871, - [942] = 846, - [943] = 845, - [944] = 840, - [945] = 856, - [946] = 937, - [947] = 940, - [948] = 857, - [949] = 859, - [950] = 839, - [951] = 862, - [952] = 839, - [953] = 866, - [954] = 867, - [955] = 861, - [956] = 869, - [957] = 861, - [958] = 838, - [959] = 839, - [960] = 960, - [961] = 940, - [962] = 840, - [963] = 940, - [964] = 937, - [965] = 940, - [966] = 860, - [967] = 838, - [968] = 968, - [969] = 857, - [970] = 940, - [971] = 860, - [972] = 923, - [973] = 973, - [974] = 838, - [975] = 874, - [976] = 860, - [977] = 977, - [978] = 869, - [979] = 839, - [980] = 850, - [981] = 849, - [982] = 848, - [983] = 847, - [984] = 846, - [985] = 845, - [986] = 856, - [987] = 869, - [988] = 867, - [989] = 867, - [990] = 866, - [991] = 862, - [992] = 859, - [993] = 859, - [994] = 856, - [995] = 866, - [996] = 845, - [997] = 846, - [998] = 862, - [999] = 866, - [1000] = 847, - [1001] = 867, - [1002] = 861, - [1003] = 874, - [1004] = 848, + [937] = 866, + [938] = 869, + [939] = 871, + [940] = 874, + [941] = 853, + [942] = 877, + [943] = 846, + [944] = 879, + [945] = 849, + [946] = 866, + [947] = 854, + [948] = 866, + [949] = 841, + [950] = 847, + [951] = 838, + [952] = 840, + [953] = 852, + [954] = 851, + [955] = 859, + [956] = 839, + [957] = 842, + [958] = 840, + [959] = 842, + [960] = 866, + [961] = 869, + [962] = 962, + [963] = 871, + [964] = 874, + [965] = 839, + [966] = 859, + [967] = 967, + [968] = 851, + [969] = 845, + [970] = 849, + [971] = 848, + [972] = 847, + [973] = 846, + [974] = 845, + [975] = 869, + [976] = 841, + [977] = 871, + [978] = 846, + [979] = 854, + [980] = 846, + [981] = 877, + [982] = 847, + [983] = 852, + [984] = 838, + [985] = 852, + [986] = 851, + [987] = 859, + [988] = 839, + [989] = 989, + [990] = 842, + [991] = 840, + [992] = 866, + [993] = 869, + [994] = 871, + [995] = 874, + [996] = 848, + [997] = 849, + [998] = 848, + [999] = 849, + [1000] = 874, + [1001] = 838, + [1002] = 989, + [1003] = 871, + [1004] = 846, [1005] = 869, - [1006] = 849, - [1007] = 862, - [1008] = 839, - [1009] = 869, - [1010] = 857, - [1011] = 850, - [1012] = 839, - [1013] = 923, - [1014] = 859, - [1015] = 874, - [1016] = 861, - [1017] = 867, - [1018] = 866, - [1019] = 861, - [1020] = 1020, - [1021] = 838, - [1022] = 1022, - [1023] = 1023, - [1024] = 860, - [1025] = 923, - [1026] = 874, - [1027] = 923, - [1028] = 856, - [1029] = 862, - [1030] = 940, - [1031] = 859, - [1032] = 845, - [1033] = 856, - [1034] = 850, - [1035] = 845, - [1036] = 846, - [1037] = 839, - [1038] = 847, - [1039] = 848, - [1040] = 849, - [1041] = 849, - [1042] = 850, - [1043] = 839, - [1044] = 923, - [1045] = 1045, - [1046] = 850, - [1047] = 849, - [1048] = 848, - [1049] = 848, - [1050] = 847, - [1051] = 846, - [1052] = 869, - [1053] = 845, - [1054] = 861, - [1055] = 867, + [1006] = 866, + [1007] = 989, + [1008] = 874, + [1009] = 847, + [1010] = 840, + [1011] = 849, + [1012] = 848, + [1013] = 842, + [1014] = 1014, + [1015] = 879, + [1016] = 1016, + [1017] = 1017, + [1018] = 853, + [1019] = 853, + [1020] = 854, + [1021] = 877, + [1022] = 838, + [1023] = 852, + [1024] = 851, + [1025] = 859, + [1026] = 847, + [1027] = 839, + [1028] = 848, + [1029] = 842, + [1030] = 840, + [1031] = 839, + [1032] = 866, + [1033] = 869, + [1034] = 871, + [1035] = 874, + [1036] = 845, + [1037] = 877, + [1038] = 859, + [1039] = 851, + [1040] = 846, + [1041] = 852, + [1042] = 879, + [1043] = 838, + [1044] = 854, + [1045] = 854, + [1046] = 841, + [1047] = 847, + [1048] = 838, + [1049] = 852, + [1050] = 851, + [1051] = 859, + [1052] = 839, + [1053] = 842, + [1054] = 840, + [1055] = 847, [1056] = 866, - [1057] = 862, - [1058] = 859, - [1059] = 856, - [1060] = 856, - [1061] = 845, - [1062] = 846, - [1063] = 847, - [1064] = 848, - [1065] = 849, - [1066] = 850, - [1067] = 1067, - [1068] = 847, - [1069] = 838, - [1070] = 860, - [1071] = 846, - [1072] = 845, - [1073] = 856, - [1074] = 859, - [1075] = 862, - [1076] = 1076, - [1077] = 859, - [1078] = 866, - [1079] = 862, - [1080] = 867, - [1081] = 866, - [1082] = 869, - [1083] = 838, - [1084] = 860, - [1085] = 867, - [1086] = 860, - [1087] = 838, - [1088] = 861, - [1089] = 869, - [1090] = 857, - [1091] = 839, - [1092] = 850, - [1093] = 869, + [1057] = 869, + [1058] = 871, + [1059] = 874, + [1060] = 841, + [1061] = 1061, + [1062] = 854, + [1063] = 846, + [1064] = 989, + [1065] = 877, + [1066] = 879, + [1067] = 989, + [1068] = 849, + [1069] = 848, + [1070] = 1070, + [1071] = 989, + [1072] = 846, + [1073] = 989, + [1074] = 1074, + [1075] = 845, + [1076] = 853, + [1077] = 853, + [1078] = 879, + [1079] = 845, + [1080] = 848, + [1081] = 849, + [1082] = 874, + [1083] = 871, + [1084] = 869, + [1085] = 845, + [1086] = 866, + [1087] = 877, + [1088] = 1088, + [1089] = 846, + [1090] = 854, + [1091] = 841, + [1092] = 847, + [1093] = 838, [1094] = 1094, - [1095] = 849, - [1096] = 867, - [1097] = 937, - [1098] = 940, - [1099] = 866, - [1100] = 1100, - [1101] = 848, - [1102] = 862, - [1103] = 1103, - [1104] = 859, - [1105] = 856, - [1106] = 845, - [1107] = 846, - [1108] = 847, - [1109] = 848, - [1110] = 849, - [1111] = 850, - [1112] = 846, + [1095] = 852, + [1096] = 851, + [1097] = 1097, + [1098] = 859, + [1099] = 839, + [1100] = 842, + [1101] = 840, + [1102] = 866, + [1103] = 869, + [1104] = 871, + [1105] = 874, + [1106] = 840, + [1107] = 849, + [1108] = 848, + [1109] = 842, + [1110] = 846, + [1111] = 853, + [1112] = 1112, [1113] = 847, [1114] = 839, - [1115] = 847, - [1116] = 846, - [1117] = 848, - [1118] = 1118, - [1119] = 857, - [1120] = 849, - [1121] = 845, - [1122] = 1122, - [1123] = 856, - [1124] = 859, - [1125] = 1125, - [1126] = 861, - [1127] = 850, - [1128] = 838, - [1129] = 860, - [1130] = 839, - [1131] = 841, - [1132] = 923, - [1133] = 839, - [1134] = 862, - [1135] = 869, - [1136] = 861, - [1137] = 867, - [1138] = 866, - [1139] = 862, - [1140] = 859, - [1141] = 856, - [1142] = 923, - [1143] = 845, - [1144] = 846, - [1145] = 847, - [1146] = 860, - [1147] = 848, - [1148] = 849, - [1149] = 850, - [1150] = 874, - [1151] = 866, - [1152] = 838, - [1153] = 1153, - [1154] = 838, - [1155] = 860, - [1156] = 860, - [1157] = 867, - [1158] = 838, - [1159] = 861, - [1160] = 839, - [1161] = 869, - [1162] = 861, - [1163] = 838, - [1164] = 857, - [1165] = 860, - [1166] = 869, - [1167] = 869, - [1168] = 940, - [1169] = 850, - [1170] = 839, - [1171] = 923, - [1172] = 867, - [1173] = 839, - [1174] = 874, - [1175] = 871, - [1176] = 866, - [1177] = 1177, - [1178] = 849, - [1179] = 862, - [1180] = 859, - [1181] = 848, - [1182] = 856, - [1183] = 845, - [1184] = 1184, - [1185] = 1185, - [1186] = 846, - [1187] = 847, - [1188] = 940, - [1189] = 848, - [1190] = 849, - [1191] = 850, - [1192] = 839, - [1193] = 869, - [1194] = 874, - [1195] = 937, + [1115] = 859, + [1116] = 1116, + [1117] = 851, + [1118] = 849, + [1119] = 848, + [1120] = 848, + [1121] = 854, + [1122] = 838, + [1123] = 852, + [1124] = 851, + [1125] = 852, + [1126] = 859, + [1127] = 839, + [1128] = 842, + [1129] = 840, + [1130] = 866, + [1131] = 869, + [1132] = 871, + [1133] = 874, + [1134] = 846, + [1135] = 879, + [1136] = 853, + [1137] = 847, + [1138] = 1138, + [1139] = 849, + [1140] = 838, + [1141] = 848, + [1142] = 847, + [1143] = 853, + [1144] = 854, + [1145] = 838, + [1146] = 852, + [1147] = 849, + [1148] = 851, + [1149] = 859, + [1150] = 839, + [1151] = 842, + [1152] = 854, + [1153] = 854, + [1154] = 840, + [1155] = 845, + [1156] = 859, + [1157] = 846, + [1158] = 841, + [1159] = 866, + [1160] = 869, + [1161] = 989, + [1162] = 871, + [1163] = 849, + [1164] = 853, + [1165] = 874, + [1166] = 877, + [1167] = 847, + [1168] = 838, + [1169] = 877, + [1170] = 852, + [1171] = 1171, + [1172] = 851, + [1173] = 847, + [1174] = 859, + [1175] = 839, + [1176] = 846, + [1177] = 854, + [1178] = 1178, + [1179] = 1179, + [1180] = 879, + [1181] = 842, + [1182] = 840, + [1183] = 989, + [1184] = 854, + [1185] = 853, + [1186] = 841, + [1187] = 846, + [1188] = 847, + [1189] = 838, + [1190] = 852, + [1191] = 851, + [1192] = 859, + [1193] = 839, + [1194] = 845, + [1195] = 842, [1196] = 840, - [1197] = 867, - [1198] = 866, - [1199] = 847, - [1200] = 862, - [1201] = 859, - [1202] = 856, - [1203] = 846, - [1204] = 845, - [1205] = 856, - [1206] = 859, - [1207] = 845, - [1208] = 846, - [1209] = 847, - [1210] = 848, - [1211] = 849, - [1212] = 862, - [1213] = 850, - [1214] = 874, - [1215] = 857, - [1216] = 866, - [1217] = 861, - [1218] = 867, - [1219] = 838, - [1220] = 861, - [1221] = 923, - [1222] = 940, - [1223] = 860, - [1224] = 937, - [1225] = 861, - [1226] = 867, - [1227] = 869, - [1228] = 866, - [1229] = 1229, - [1230] = 874, - [1231] = 857, - [1232] = 1232, - [1233] = 860, - [1234] = 923, - [1235] = 862, - [1236] = 838, - [1237] = 1237, - [1238] = 861, - [1239] = 1239, + [1197] = 866, + [1198] = 869, + [1199] = 866, + [1200] = 871, + [1201] = 874, + [1202] = 869, + [1203] = 871, + [1204] = 871, + [1205] = 874, + [1206] = 874, + [1207] = 989, + [1208] = 869, + [1209] = 866, + [1210] = 841, + [1211] = 879, + [1212] = 849, + [1213] = 848, + [1214] = 846, + [1215] = 840, + [1216] = 842, + [1217] = 853, + [1218] = 845, + [1219] = 989, + [1220] = 877, + [1221] = 989, + [1222] = 839, + [1223] = 854, + [1224] = 839, + [1225] = 846, + [1226] = 859, + [1227] = 854, + [1228] = 849, + [1229] = 853, + [1230] = 847, + [1231] = 848, + [1232] = 838, + [1233] = 852, + [1234] = 851, + [1235] = 859, + [1236] = 839, + [1237] = 842, + [1238] = 840, + [1239] = 866, [1240] = 869, - [1241] = 867, - [1242] = 866, - [1243] = 862, - [1244] = 859, - [1245] = 856, - [1246] = 845, - [1247] = 846, - [1248] = 847, - [1249] = 848, - [1250] = 849, - [1251] = 850, - [1252] = 839, - [1253] = 940, - [1254] = 937, - [1255] = 860, - [1256] = 838, - [1257] = 850, - [1258] = 849, - [1259] = 848, - [1260] = 847, - [1261] = 846, - [1262] = 845, - [1263] = 856, - [1264] = 859, - [1265] = 862, - [1266] = 866, - [1267] = 867, - [1268] = 861, - [1269] = 869, - [1270] = 839, - [1271] = 940, - [1272] = 937, - [1273] = 874, - [1274] = 860, - [1275] = 859, + [1241] = 847, + [1242] = 871, + [1243] = 874, + [1244] = 851, + [1245] = 849, + [1246] = 848, + [1247] = 852, + [1248] = 846, + [1249] = 845, + [1250] = 847, + [1251] = 838, + [1252] = 1252, + [1253] = 849, + [1254] = 989, + [1255] = 848, + [1256] = 989, + [1257] = 854, + [1258] = 838, + [1259] = 852, + [1260] = 851, + [1261] = 859, + [1262] = 839, + [1263] = 842, + [1264] = 840, + [1265] = 866, + [1266] = 869, + [1267] = 871, + [1268] = 874, + [1269] = 846, + [1270] = 879, + [1271] = 853, + [1272] = 847, + [1273] = 854, + [1274] = 849, + [1275] = 989, [1276] = 1276, [1277] = 1277, - [1278] = 838, - [1279] = 923, - [1280] = 856, - [1281] = 850, - [1282] = 849, - [1283] = 848, - [1284] = 847, - [1285] = 846, - [1286] = 845, - [1287] = 856, - [1288] = 839, - [1289] = 859, - [1290] = 839, - [1291] = 923, - [1292] = 862, - [1293] = 940, - [1294] = 860, - [1295] = 866, - [1296] = 937, - [1297] = 867, - [1298] = 874, - [1299] = 861, - [1300] = 874, + [1278] = 848, + [1279] = 867, + [1280] = 989, + [1281] = 989, + [1282] = 853, + [1283] = 854, + [1284] = 838, + [1285] = 852, + [1286] = 851, + [1287] = 859, + [1288] = 989, + [1289] = 839, + [1290] = 848, + [1291] = 846, + [1292] = 849, + [1293] = 989, + [1294] = 842, + [1295] = 840, + [1296] = 853, + [1297] = 847, + [1298] = 867, + [1299] = 845, + [1300] = 866, [1301] = 869, - [1302] = 839, - [1303] = 845, - [1304] = 857, - [1305] = 923, - [1306] = 940, - [1307] = 937, + [1302] = 871, + [1303] = 879, + [1304] = 874, + [1305] = 854, + [1306] = 845, + [1307] = 853, [1308] = 846, [1309] = 874, - [1310] = 857, - [1311] = 839, - [1312] = 923, - [1313] = 874, - [1314] = 840, + [1310] = 871, + [1311] = 877, + [1312] = 869, + [1313] = 866, + [1314] = 846, [1315] = 1315, [1316] = 1316, - [1317] = 850, - [1318] = 849, - [1319] = 848, - [1320] = 869, - [1321] = 847, - [1322] = 846, - [1323] = 847, - [1324] = 845, - [1325] = 856, - [1326] = 859, - [1327] = 862, - [1328] = 923, - [1329] = 866, - [1330] = 867, - [1331] = 869, - [1332] = 874, - [1333] = 861, - [1334] = 867, - [1335] = 940, - [1336] = 866, - [1337] = 862, - [1338] = 859, - [1339] = 856, - [1340] = 845, - [1341] = 846, - [1342] = 847, - [1343] = 848, - [1344] = 849, - [1345] = 850, - [1346] = 937, + [1317] = 840, + [1318] = 845, + [1319] = 842, + [1320] = 847, + [1321] = 852, + [1322] = 879, + [1323] = 859, + [1324] = 851, + [1325] = 853, + [1326] = 854, + [1327] = 852, + [1328] = 847, + [1329] = 845, + [1330] = 841, + [1331] = 847, + [1332] = 838, + [1333] = 852, + [1334] = 851, + [1335] = 838, + [1336] = 859, + [1337] = 839, + [1338] = 842, + [1339] = 840, + [1340] = 838, + [1341] = 866, + [1342] = 869, + [1343] = 871, + [1344] = 874, + [1345] = 854, + [1346] = 1346, [1347] = 848, - [1348] = 860, - [1349] = 838, - [1350] = 861, - [1351] = 1351, - [1352] = 857, - [1353] = 839, - [1354] = 849, - [1355] = 850, - [1356] = 849, - [1357] = 850, - [1358] = 848, - [1359] = 860, - [1360] = 847, - [1361] = 846, - [1362] = 845, - [1363] = 874, - [1364] = 856, - [1365] = 1125, - [1366] = 977, - [1367] = 859, - [1368] = 862, - [1369] = 866, - [1370] = 867, - [1371] = 838, - [1372] = 1229, - [1373] = 869, - [1374] = 937, - [1375] = 923, - [1376] = 940, - [1377] = 937, - [1378] = 860, - [1379] = 838, - [1380] = 861, - [1381] = 867, - [1382] = 861, - [1383] = 866, - [1384] = 1384, - [1385] = 839, - [1386] = 862, + [1348] = 849, + [1349] = 852, + [1350] = 851, + [1351] = 845, + [1352] = 849, + [1353] = 848, + [1354] = 859, + [1355] = 839, + [1356] = 845, + [1357] = 853, + [1358] = 845, + [1359] = 845, + [1360] = 842, + [1361] = 853, + [1362] = 841, + [1363] = 840, + [1364] = 846, + [1365] = 877, + [1366] = 854, + [1367] = 845, + [1368] = 847, + [1369] = 838, + [1370] = 852, + [1371] = 845, + [1372] = 851, + [1373] = 859, + [1374] = 839, + [1375] = 842, + [1376] = 866, + [1377] = 840, + [1378] = 866, + [1379] = 869, + [1380] = 871, + [1381] = 869, + [1382] = 874, + [1383] = 845, + [1384] = 849, + [1385] = 848, + [1386] = 845, [1387] = 1387, - [1388] = 937, - [1389] = 940, - [1390] = 860, - [1391] = 860, - [1392] = 838, - [1393] = 940, - [1394] = 839, - [1395] = 850, - [1396] = 838, - [1397] = 859, - [1398] = 850, - [1399] = 1399, - [1400] = 849, - [1401] = 849, + [1388] = 846, + [1389] = 853, + [1390] = 847, + [1391] = 871, + [1392] = 845, + [1393] = 849, + [1394] = 848, + [1395] = 874, + [1396] = 854, + [1397] = 838, + [1398] = 852, + [1399] = 851, + [1400] = 859, + [1401] = 839, [1402] = 1402, - [1403] = 848, - [1404] = 848, - [1405] = 847, - [1406] = 846, - [1407] = 847, - [1408] = 845, - [1409] = 856, - [1410] = 1125, - [1411] = 977, - [1412] = 846, - [1413] = 839, - [1414] = 845, - [1415] = 940, - [1416] = 869, - [1417] = 937, - [1418] = 861, - [1419] = 856, - [1420] = 867, - [1421] = 1229, - [1422] = 859, - [1423] = 866, - [1424] = 862, - [1425] = 857, - [1426] = 859, - [1427] = 856, - [1428] = 845, - [1429] = 846, - [1430] = 862, + [1403] = 877, + [1404] = 842, + [1405] = 840, + [1406] = 866, + [1407] = 869, + [1408] = 871, + [1409] = 874, + [1410] = 846, + [1411] = 879, + [1412] = 853, + [1413] = 845, + [1414] = 847, + [1415] = 841, + [1416] = 845, + [1417] = 851, + [1418] = 849, + [1419] = 845, + [1420] = 848, + [1421] = 853, + [1422] = 853, + [1423] = 845, + [1424] = 845, + [1425] = 853, + [1426] = 853, + [1427] = 859, + [1428] = 854, + [1429] = 839, + [1430] = 854, [1431] = 1431, - [1432] = 847, - [1433] = 848, - [1434] = 849, - [1435] = 866, + [1432] = 838, + [1433] = 852, + [1434] = 851, + [1435] = 838, [1436] = 1436, - [1437] = 850, - [1438] = 859, - [1439] = 867, - [1440] = 862, - [1441] = 838, - [1442] = 860, - [1443] = 866, - [1444] = 867, - [1445] = 861, - [1446] = 856, - [1447] = 839, - [1448] = 869, - [1449] = 940, - [1450] = 869, - [1451] = 861, - [1452] = 867, - [1453] = 866, - [1454] = 862, - [1455] = 859, - [1456] = 856, - [1457] = 861, - [1458] = 937, - [1459] = 845, - [1460] = 869, - [1461] = 846, - [1462] = 847, - [1463] = 848, - [1464] = 849, - [1465] = 850, - [1466] = 845, - [1467] = 838, - [1468] = 860, - [1469] = 839, - [1470] = 857, - [1471] = 940, - [1472] = 857, - [1473] = 869, - [1474] = 937, - [1475] = 861, - [1476] = 867, - [1477] = 866, - [1478] = 862, - [1479] = 859, - [1480] = 856, - [1481] = 845, + [1437] = 859, + [1438] = 839, + [1439] = 848, + [1440] = 849, + [1441] = 842, + [1442] = 845, + [1443] = 840, + [1444] = 838, + [1445] = 866, + [1446] = 869, + [1447] = 871, + [1448] = 874, + [1449] = 849, + [1450] = 847, + [1451] = 854, + [1452] = 848, + [1453] = 851, + [1454] = 859, + [1455] = 839, + [1456] = 842, + [1457] = 842, + [1458] = 840, + [1459] = 1459, + [1460] = 866, + [1461] = 1461, + [1462] = 1462, + [1463] = 877, + [1464] = 1464, + [1465] = 869, + [1466] = 871, + [1467] = 846, + [1468] = 1468, + [1469] = 852, + [1470] = 1470, + [1471] = 846, + [1472] = 1472, + [1473] = 874, + [1474] = 871, + [1475] = 869, + [1476] = 879, + [1477] = 1459, + [1478] = 840, + [1479] = 866, + [1480] = 853, + [1481] = 847, [1482] = 1482, - [1483] = 846, - [1484] = 940, - [1485] = 847, - [1486] = 848, - [1487] = 849, - [1488] = 850, - [1489] = 839, - [1490] = 846, - [1491] = 838, - [1492] = 860, - [1493] = 847, - [1494] = 848, - [1495] = 839, - [1496] = 937, - [1497] = 839, - [1498] = 940, - [1499] = 937, - [1500] = 869, - [1501] = 1125, - [1502] = 977, - [1503] = 940, - [1504] = 932, - [1505] = 937, - [1506] = 869, - [1507] = 861, - [1508] = 940, - [1509] = 1232, - [1510] = 1237, - [1511] = 1239, - [1512] = 937, - [1513] = 860, - [1514] = 1229, - [1515] = 838, - [1516] = 867, - [1517] = 866, - [1518] = 862, - [1519] = 859, - [1520] = 940, - [1521] = 857, - [1522] = 937, - [1523] = 869, - [1524] = 856, - [1525] = 850, - [1526] = 849, - [1527] = 940, - [1528] = 861, - [1529] = 867, + [1483] = 840, + [1484] = 842, + [1485] = 839, + [1486] = 854, + [1487] = 859, + [1488] = 851, + [1489] = 845, + [1490] = 841, + [1491] = 847, + [1492] = 838, + [1493] = 852, + [1494] = 851, + [1495] = 859, + [1496] = 839, + [1497] = 842, + [1498] = 840, + [1499] = 852, + [1500] = 838, + [1501] = 866, + [1502] = 869, + [1503] = 871, + [1504] = 874, + [1505] = 847, + [1506] = 841, + [1507] = 866, + [1508] = 849, + [1509] = 854, + [1510] = 869, + [1511] = 848, + [1512] = 856, + [1513] = 844, + [1514] = 877, + [1515] = 849, + [1516] = 849, + [1517] = 848, + [1518] = 845, + [1519] = 841, + [1520] = 845, + [1521] = 871, + [1522] = 845, + [1523] = 853, + [1524] = 845, + [1525] = 879, + [1526] = 845, + [1527] = 874, + [1528] = 846, + [1529] = 849, [1530] = 1530, - [1531] = 866, - [1532] = 862, - [1533] = 860, - [1534] = 859, - [1535] = 856, - [1536] = 845, - [1537] = 846, - [1538] = 847, - [1539] = 848, - [1540] = 849, - [1541] = 849, - [1542] = 850, - [1543] = 861, - [1544] = 867, - [1545] = 866, - [1546] = 838, - [1547] = 862, - [1548] = 860, - [1549] = 940, - [1550] = 859, - [1551] = 856, - [1552] = 845, - [1553] = 846, - [1554] = 839, - [1555] = 847, - [1556] = 848, - [1557] = 838, - [1558] = 857, - [1559] = 849, + [1531] = 846, + [1532] = 1459, + [1533] = 1461, + [1534] = 854, + [1535] = 848, + [1536] = 1462, + [1537] = 847, + [1538] = 1464, + [1539] = 838, + [1540] = 852, + [1541] = 870, + [1542] = 851, + [1543] = 859, + [1544] = 854, + [1545] = 839, + [1546] = 842, + [1547] = 962, + [1548] = 1468, + [1549] = 840, + [1550] = 866, + [1551] = 869, + [1552] = 967, + [1553] = 871, + [1554] = 874, + [1555] = 1470, + [1556] = 849, + [1557] = 848, + [1558] = 846, + [1559] = 846, [1560] = 1560, - [1561] = 937, - [1562] = 848, - [1563] = 861, - [1564] = 860, - [1565] = 940, - [1566] = 937, - [1567] = 838, - [1568] = 838, - [1569] = 860, - [1570] = 850, - [1571] = 850, - [1572] = 847, - [1573] = 846, - [1574] = 869, - [1575] = 867, - [1576] = 845, - [1577] = 866, - [1578] = 862, - [1579] = 856, - [1580] = 859, - [1581] = 856, - [1582] = 845, - [1583] = 846, - [1584] = 847, - [1585] = 848, - [1586] = 940, - [1587] = 937, - [1588] = 859, - [1589] = 862, - [1590] = 866, - [1591] = 867, - [1592] = 1592, - [1593] = 849, - [1594] = 940, - [1595] = 850, - [1596] = 850, - [1597] = 861, + [1561] = 845, + [1562] = 847, + [1563] = 848, + [1564] = 849, + [1565] = 847, + [1566] = 849, + [1567] = 848, + [1568] = 1568, + [1569] = 854, + [1570] = 838, + [1571] = 852, + [1572] = 851, + [1573] = 859, + [1574] = 839, + [1575] = 842, + [1576] = 877, + [1577] = 840, + [1578] = 866, + [1579] = 869, + [1580] = 871, + [1581] = 874, + [1582] = 846, + [1583] = 1112, + [1584] = 838, + [1585] = 1276, + [1586] = 852, + [1587] = 851, + [1588] = 879, + [1589] = 859, + [1590] = 839, + [1591] = 842, + [1592] = 1402, + [1593] = 840, + [1594] = 845, + [1595] = 847, + [1596] = 866, + [1597] = 874, [1598] = 849, - [1599] = 937, + [1599] = 848, [1600] = 845, - [1601] = 848, - [1602] = 937, - [1603] = 940, - [1604] = 846, - [1605] = 847, - [1606] = 940, - [1607] = 846, - [1608] = 937, - [1609] = 940, - [1610] = 937, - [1611] = 869, - [1612] = 847, - [1613] = 940, - [1614] = 937, - [1615] = 845, - [1616] = 940, - [1617] = 937, - [1618] = 940, - [1619] = 856, - [1620] = 937, - [1621] = 859, - [1622] = 862, - [1623] = 1402, - [1624] = 866, - [1625] = 848, - [1626] = 1125, - [1627] = 977, - [1628] = 867, - [1629] = 861, - [1630] = 838, - [1631] = 860, - [1632] = 940, - [1633] = 874, - [1634] = 937, - [1635] = 932, - [1636] = 869, - [1637] = 940, - [1638] = 1232, - [1639] = 1237, - [1640] = 1239, - [1641] = 937, - [1642] = 940, - [1643] = 849, - [1644] = 940, - [1645] = 857, - [1646] = 850, - [1647] = 1229, - [1648] = 937, - [1649] = 838, - [1650] = 839, - [1651] = 860, - [1652] = 1229, - [1653] = 1276, - [1654] = 1118, - [1655] = 839, - [1656] = 1239, - [1657] = 1237, - [1658] = 1232, - [1659] = 932, - [1660] = 923, - [1661] = 850, - [1662] = 839, - [1663] = 977, - [1664] = 1125, + [1601] = 853, + [1602] = 879, + [1603] = 874, + [1604] = 871, + [1605] = 869, + [1606] = 877, + [1607] = 853, + [1608] = 866, + [1609] = 840, + [1610] = 842, + [1611] = 854, + [1612] = 871, + [1613] = 838, + [1614] = 874, + [1615] = 852, + [1616] = 839, + [1617] = 851, + [1618] = 859, + [1619] = 859, + [1620] = 851, + [1621] = 839, + [1622] = 852, + [1623] = 1470, + [1624] = 1472, + [1625] = 838, + [1626] = 854, + [1627] = 842, + [1628] = 840, + [1629] = 853, + [1630] = 849, + [1631] = 848, + [1632] = 849, + [1633] = 846, + [1634] = 866, + [1635] = 869, + [1636] = 871, + [1637] = 874, + [1638] = 846, + [1639] = 845, + [1640] = 1459, + [1641] = 1470, + [1642] = 848, + [1643] = 840, + [1644] = 847, + [1645] = 879, + [1646] = 846, + [1647] = 1472, + [1648] = 853, + [1649] = 854, + [1650] = 848, + [1651] = 849, + [1652] = 838, + [1653] = 845, + [1654] = 874, + [1655] = 841, + [1656] = 989, + [1657] = 877, + [1658] = 871, + [1659] = 1659, + [1660] = 869, + [1661] = 846, + [1662] = 866, + [1663] = 842, + [1664] = 847, [1665] = 1665, - [1666] = 923, - [1667] = 840, - [1668] = 849, - [1669] = 861, - [1670] = 940, - [1671] = 848, - [1672] = 847, - [1673] = 838, - [1674] = 857, - [1675] = 860, - [1676] = 940, - [1677] = 1677, - [1678] = 846, - [1679] = 845, - [1680] = 856, - [1681] = 857, - [1682] = 859, - [1683] = 862, - [1684] = 866, - [1685] = 867, - [1686] = 869, - [1687] = 860, - [1688] = 839, - [1689] = 940, - [1690] = 973, - [1691] = 968, - [1692] = 838, - [1693] = 923, - [1694] = 940, - [1695] = 923, - [1696] = 874, + [1666] = 852, + [1667] = 845, + [1668] = 840, + [1669] = 838, + [1670] = 852, + [1671] = 851, + [1672] = 842, + [1673] = 839, + [1674] = 859, + [1675] = 851, + [1676] = 879, + [1677] = 859, + [1678] = 852, + [1679] = 879, + [1680] = 842, + [1681] = 840, + [1682] = 838, + [1683] = 847, + [1684] = 851, + [1685] = 989, + [1686] = 845, + [1687] = 854, + [1688] = 854, + [1689] = 866, + [1690] = 879, + [1691] = 841, + [1692] = 847, + [1693] = 846, + [1694] = 838, + [1695] = 852, + [1696] = 851, [1697] = 1697, - [1698] = 860, - [1699] = 940, - [1700] = 873, - [1701] = 838, - [1702] = 850, - [1703] = 861, - [1704] = 849, - [1705] = 1705, - [1706] = 857, - [1707] = 839, - [1708] = 850, - [1709] = 848, - [1710] = 849, - [1711] = 848, - [1712] = 847, - [1713] = 847, - [1714] = 846, - [1715] = 845, - [1716] = 856, - [1717] = 859, - [1718] = 862, - [1719] = 846, - [1720] = 845, - [1721] = 866, - [1722] = 856, - [1723] = 859, - [1724] = 867, - [1725] = 869, - [1726] = 857, + [1698] = 848, + [1699] = 859, + [1700] = 849, + [1701] = 839, + [1702] = 839, + [1703] = 842, + [1704] = 840, + [1705] = 869, + [1706] = 866, + [1707] = 869, + [1708] = 871, + [1709] = 874, + [1710] = 859, + [1711] = 874, + [1712] = 871, + [1713] = 871, + [1714] = 869, + [1715] = 874, + [1716] = 866, + [1717] = 839, + [1718] = 840, + [1719] = 842, + [1720] = 839, + [1721] = 859, + [1722] = 842, + [1723] = 851, + [1724] = 879, + [1725] = 845, + [1726] = 849, [1727] = 1727, - [1728] = 869, - [1729] = 1705, - [1730] = 1677, - [1731] = 862, - [1732] = 866, - [1733] = 860, - [1734] = 838, - [1735] = 867, - [1736] = 839, - [1737] = 861, - [1738] = 861, - [1739] = 839, - [1740] = 869, - [1741] = 860, - [1742] = 838, - [1743] = 861, - [1744] = 867, - [1745] = 838, - [1746] = 860, - [1747] = 839, - [1748] = 860, - [1749] = 850, - [1750] = 849, - [1751] = 869, - [1752] = 848, - [1753] = 869, - [1754] = 867, - [1755] = 866, - [1756] = 862, - [1757] = 859, - [1758] = 856, - [1759] = 845, - [1760] = 846, - [1761] = 847, - [1762] = 838, - [1763] = 850, - [1764] = 849, - [1765] = 848, - [1766] = 848, - [1767] = 847, - [1768] = 849, - [1769] = 846, - [1770] = 850, - [1771] = 845, - [1772] = 847, - [1773] = 846, - [1774] = 856, - [1775] = 839, - [1776] = 845, - [1777] = 859, - [1778] = 861, - [1779] = 862, - [1780] = 856, - [1781] = 859, - [1782] = 862, - [1783] = 838, - [1784] = 860, - [1785] = 866, - [1786] = 867, - [1787] = 861, - [1788] = 857, - [1789] = 866, - [1790] = 867, + [1728] = 852, + [1729] = 848, + [1730] = 838, + [1731] = 847, + [1732] = 854, + [1733] = 879, + [1734] = 1470, + [1735] = 846, + [1736] = 869, + [1737] = 848, + [1738] = 849, + [1739] = 853, + [1740] = 859, + [1741] = 845, + [1742] = 866, + [1743] = 874, + [1744] = 838, + [1745] = 845, + [1746] = 871, + [1747] = 1747, + [1748] = 869, + [1749] = 846, + [1750] = 866, + [1751] = 840, + [1752] = 854, + [1753] = 842, + [1754] = 847, + [1755] = 838, + [1756] = 852, + [1757] = 851, + [1758] = 859, + [1759] = 839, + [1760] = 842, + [1761] = 840, + [1762] = 839, + [1763] = 859, + [1764] = 851, + [1765] = 866, + [1766] = 852, + [1767] = 838, + [1768] = 869, + [1769] = 847, + [1770] = 871, + [1771] = 1472, + [1772] = 874, + [1773] = 854, + [1774] = 846, + [1775] = 869, + [1776] = 849, + [1777] = 848, + [1778] = 871, + [1779] = 854, + [1780] = 846, + [1781] = 874, + [1782] = 848, + [1783] = 853, + [1784] = 847, + [1785] = 849, + [1786] = 1470, + [1787] = 849, + [1788] = 848, + [1789] = 874, + [1790] = 871, [1791] = 869, - [1792] = 861, - [1793] = 869, - [1794] = 869, - [1795] = 867, - [1796] = 839, - [1797] = 866, - [1798] = 862, - [1799] = 874, - [1800] = 861, - [1801] = 867, - [1802] = 866, - [1803] = 862, - [1804] = 866, - [1805] = 859, - [1806] = 862, - [1807] = 856, - [1808] = 859, - [1809] = 856, + [1792] = 854, + [1793] = 866, + [1794] = 838, + [1795] = 852, + [1796] = 851, + [1797] = 840, + [1798] = 842, + [1799] = 839, + [1800] = 859, + [1801] = 851, + [1802] = 1468, + [1803] = 859, + [1804] = 852, + [1805] = 838, + [1806] = 839, + [1807] = 847, + [1808] = 842, + [1809] = 840, [1810] = 1810, - [1811] = 845, - [1812] = 845, - [1813] = 846, - [1814] = 847, - [1815] = 846, - [1816] = 848, - [1817] = 849, - [1818] = 847, - [1819] = 940, - [1820] = 937, - [1821] = 848, - [1822] = 849, - [1823] = 850, - [1824] = 850, - [1825] = 839, - [1826] = 849, - [1827] = 869, - [1828] = 850, - [1829] = 849, - [1830] = 861, - [1831] = 838, - [1832] = 860, + [1811] = 854, + [1812] = 841, + [1813] = 847, + [1814] = 838, + [1815] = 866, + [1816] = 869, + [1817] = 852, + [1818] = 871, + [1819] = 851, + [1820] = 859, + [1821] = 874, + [1822] = 846, + [1823] = 879, + [1824] = 839, + [1825] = 842, + [1826] = 847, + [1827] = 840, + [1828] = 846, + [1829] = 866, + [1830] = 849, + [1831] = 848, + [1832] = 880, [1833] = 1833, - [1834] = 1834, - [1835] = 860, - [1836] = 838, - [1837] = 848, - [1838] = 847, - [1839] = 846, - [1840] = 857, - [1841] = 845, - [1842] = 850, + [1834] = 869, + [1835] = 846, + [1836] = 871, + [1837] = 874, + [1838] = 879, + [1839] = 1464, + [1840] = 1462, + [1841] = 847, + [1842] = 849, [1843] = 1843, - [1844] = 849, - [1845] = 848, - [1846] = 856, - [1847] = 859, - [1848] = 847, - [1849] = 846, - [1850] = 862, + [1844] = 848, + [1845] = 877, + [1846] = 1461, + [1847] = 841, + [1848] = 1459, + [1849] = 1472, + [1850] = 1459, [1851] = 845, - [1852] = 866, - [1853] = 867, - [1854] = 856, - [1855] = 859, - [1856] = 869, - [1857] = 874, - [1858] = 861, - [1859] = 867, - [1860] = 862, - [1861] = 866, - [1862] = 866, - [1863] = 862, - [1864] = 867, - [1865] = 861, - [1866] = 859, - [1867] = 874, - [1868] = 838, - [1869] = 860, - [1870] = 869, - [1871] = 856, - [1872] = 845, - [1873] = 857, - [1874] = 846, - [1875] = 839, - [1876] = 847, - [1877] = 923, - [1878] = 850, - [1879] = 849, - [1880] = 848, - [1881] = 848, - [1882] = 847, - [1883] = 846, - [1884] = 845, - [1885] = 937, - [1886] = 940, + [1852] = 853, + [1853] = 854, + [1854] = 866, + [1855] = 852, + [1856] = 853, + [1857] = 840, + [1858] = 848, + [1859] = 849, + [1860] = 851, + [1861] = 859, + [1862] = 845, + [1863] = 849, + [1864] = 848, + [1865] = 877, + [1866] = 1461, + [1867] = 839, + [1868] = 1462, + [1869] = 842, + [1870] = 1464, + [1871] = 846, + [1872] = 840, + [1873] = 867, + [1874] = 874, + [1875] = 871, + [1876] = 869, + [1877] = 866, + [1878] = 854, + [1879] = 840, + [1880] = 866, + [1881] = 842, + [1882] = 839, + [1883] = 869, + [1884] = 859, + [1885] = 871, + [1886] = 874, [1887] = 1887, - [1888] = 856, - [1889] = 849, - [1890] = 850, - [1891] = 860, - [1892] = 838, - [1893] = 859, - [1894] = 838, - [1895] = 860, - [1896] = 861, - [1897] = 839, - [1898] = 839, - [1899] = 860, - [1900] = 838, - [1901] = 850, - [1902] = 937, - [1903] = 849, - [1904] = 940, - [1905] = 848, - [1906] = 847, - [1907] = 846, - [1908] = 845, - [1909] = 856, - [1910] = 859, - [1911] = 862, - [1912] = 866, - [1913] = 867, - [1914] = 861, - [1915] = 869, - [1916] = 856, + [1888] = 851, + [1889] = 852, + [1890] = 852, + [1891] = 838, + [1892] = 847, + [1893] = 853, + [1894] = 841, + [1895] = 854, + [1896] = 845, + [1897] = 874, + [1898] = 871, + [1899] = 851, + [1900] = 841, + [1901] = 989, + [1902] = 869, + [1903] = 866, + [1904] = 840, + [1905] = 842, + [1906] = 1906, + [1907] = 877, + [1908] = 877, + [1909] = 1472, + [1910] = 838, + [1911] = 1468, + [1912] = 839, + [1913] = 852, + [1914] = 851, + [1915] = 859, + [1916] = 846, [1917] = 1917, [1918] = 1917, [1919] = 1917, @@ -7798,17 +7798,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1937] = 1937, [1938] = 1938, [1939] = 1939, - [1940] = 1933, - [1941] = 1932, - [1942] = 1942, + [1940] = 1932, + [1941] = 1933, + [1942] = 1935, [1943] = 1943, - [1944] = 1934, + [1944] = 1944, [1945] = 1945, [1946] = 1946, [1947] = 1947, [1948] = 1948, [1949] = 1949, - [1950] = 1947, + [1950] = 1950, [1951] = 1951, [1952] = 1952, [1953] = 1953, @@ -7819,7 +7819,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1958] = 1958, [1959] = 1959, [1960] = 1960, - [1961] = 1961, + [1961] = 1947, [1962] = 1962, [1963] = 1963, [1964] = 1964, @@ -7827,7 +7827,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1966] = 1966, [1967] = 1967, [1968] = 1968, - [1969] = 1969, + [1969] = 1943, [1970] = 1970, [1971] = 1971, [1972] = 1972, @@ -7837,19 +7837,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1976] = 1976, [1977] = 1977, [1978] = 1978, - [1979] = 1946, + [1979] = 1979, [1980] = 1980, [1981] = 1981, - [1982] = 1945, + [1982] = 1982, [1983] = 1983, [1984] = 1984, - [1985] = 1942, + [1985] = 1985, [1986] = 1986, [1987] = 1987, [1988] = 1988, - [1989] = 1989, - [1990] = 1943, - [1991] = 1991, + [1989] = 1945, + [1990] = 1990, + [1991] = 1944, [1992] = 1992, [1993] = 1993, [1994] = 1994, @@ -7858,7 +7858,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1997] = 1997, [1998] = 1998, [1999] = 1999, - [2000] = 2000, + [2000] = 1946, [2001] = 2001, [2002] = 2002, [2003] = 2003, @@ -7887,146 +7887,146 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2026] = 2026, [2027] = 2027, [2028] = 2028, - [2029] = 1957, - [2030] = 1995, - [2031] = 1972, - [2032] = 1988, - [2033] = 1981, - [2034] = 1960, + [2029] = 1978, + [2030] = 1962, + [2031] = 1984, + [2032] = 1995, + [2033] = 1966, + [2034] = 1975, [2035] = 1967, - [2036] = 1956, - [2037] = 2037, - [2038] = 1991, - [2039] = 1977, - [2040] = 1964, - [2041] = 1962, - [2042] = 1961, - [2043] = 1965, - [2044] = 1959, - [2045] = 1954, - [2046] = 1949, - [2047] = 1932, - [2048] = 1997, - [2049] = 1987, - [2050] = 1951, - [2051] = 1968, - [2052] = 1994, - [2053] = 1983, - [2054] = 1975, - [2055] = 1974, - [2056] = 1984, - [2057] = 1973, - [2058] = 1948, - [2059] = 1952, - [2060] = 1958, - [2061] = 1992, - [2062] = 1970, - [2063] = 1966, + [2036] = 2036, + [2037] = 1950, + [2038] = 1993, + [2039] = 1951, + [2040] = 1992, + [2041] = 1952, + [2042] = 1990, + [2043] = 1953, + [2044] = 1932, + [2045] = 1973, + [2046] = 1979, + [2047] = 1965, + [2048] = 1954, + [2049] = 1958, + [2050] = 1977, + [2051] = 1981, + [2052] = 1955, + [2053] = 1949, + [2054] = 1956, + [2055] = 1964, + [2056] = 1974, + [2057] = 1959, + [2058] = 1997, + [2059] = 1933, + [2060] = 1960, + [2061] = 1948, + [2062] = 1996, + [2063] = 1957, [2064] = 1963, - [2065] = 1953, - [2066] = 1980, - [2067] = 1978, - [2068] = 1955, - [2069] = 1996, - [2070] = 1989, - [2071] = 1993, - [2072] = 1986, - [2073] = 1933, + [2065] = 1982, + [2066] = 1968, + [2067] = 1994, + [2068] = 1980, + [2069] = 1999, + [2070] = 1985, + [2071] = 1972, + [2072] = 1988, + [2073] = 1976, [2074] = 1998, - [2075] = 1976, - [2076] = 2000, - [2077] = 1971, - [2078] = 1969, - [2079] = 1999, - [2080] = 2022, - [2081] = 2005, - [2082] = 2021, - [2083] = 2083, - [2084] = 2002, - [2085] = 2085, - [2086] = 2010, - [2087] = 2003, - [2088] = 2014, - [2089] = 2018, - [2090] = 2011, - [2091] = 2015, - [2092] = 2012, - [2093] = 2026, - [2094] = 1934, - [2095] = 2006, - [2096] = 2020, - [2097] = 2017, - [2098] = 2098, - [2099] = 2028, - [2100] = 2025, - [2101] = 2101, - [2102] = 2008, - [2103] = 2007, - [2104] = 2013, - [2105] = 2027, - [2106] = 2004, - [2107] = 2016, - [2108] = 2024, - [2109] = 2001, - [2110] = 2019, - [2111] = 1942, - [2112] = 1946, + [2075] = 1971, + [2076] = 1987, + [2077] = 1983, + [2078] = 1986, + [2079] = 1970, + [2080] = 2010, + [2081] = 2015, + [2082] = 2014, + [2083] = 2001, + [2084] = 2024, + [2085] = 2002, + [2086] = 2017, + [2087] = 2005, + [2088] = 2022, + [2089] = 2020, + [2090] = 2026, + [2091] = 2003, + [2092] = 2025, + [2093] = 2018, + [2094] = 2006, + [2095] = 2007, + [2096] = 2009, + [2097] = 2004, + [2098] = 2012, + [2099] = 2013, + [2100] = 2023, + [2101] = 1935, + [2102] = 2019, + [2103] = 2021, + [2104] = 2016, + [2105] = 2105, + [2106] = 2008, + [2107] = 2107, + [2108] = 2027, + [2109] = 2109, + [2110] = 2110, + [2111] = 1944, + [2112] = 1943, [2113] = 1945, - [2114] = 1947, - [2115] = 1943, + [2114] = 1946, + [2115] = 1947, [2116] = 2116, - [2117] = 1992, - [2118] = 1973, - [2119] = 1972, - [2120] = 1949, - [2121] = 1967, - [2122] = 1976, - [2123] = 1971, - [2124] = 1988, - [2125] = 1980, - [2126] = 1953, - [2127] = 1963, - [2128] = 1969, - [2129] = 1999, - [2130] = 1964, - [2131] = 1966, - [2132] = 1952, - [2133] = 1956, - [2134] = 1977, - [2135] = 1997, - [2136] = 1981, - [2137] = 1994, + [2117] = 1965, + [2118] = 1968, + [2119] = 1975, + [2120] = 1960, + [2121] = 1985, + [2122] = 1982, + [2123] = 1984, + [2124] = 1959, + [2125] = 1962, + [2126] = 1978, + [2127] = 1995, + [2128] = 1963, + [2129] = 1964, + [2130] = 1996, + [2131] = 1958, + [2132] = 1994, + [2133] = 1950, + [2134] = 1966, + [2135] = 1967, + [2136] = 1951, + [2137] = 1997, [2138] = 1983, - [2139] = 1975, - [2140] = 1996, - [2141] = 1974, - [2142] = 1986, - [2143] = 1965, - [2144] = 1948, - [2145] = 1984, - [2146] = 1991, - [2147] = 1957, - [2148] = 1962, - [2149] = 1995, - [2150] = 1961, - [2151] = 1987, - [2152] = 1959, - [2153] = 1954, - [2154] = 1951, - [2155] = 1955, - [2156] = 1968, - [2157] = 2000, - [2158] = 1960, - [2159] = 1989, - [2160] = 1993, - [2161] = 1998, - [2162] = 1978, - [2163] = 1958, - [2164] = 1970, - [2165] = 2116, - [2166] = 2166, - [2167] = 2037, - [2168] = 2168, + [2139] = 1952, + [2140] = 1972, + [2141] = 1970, + [2142] = 1953, + [2143] = 1998, + [2144] = 1981, + [2145] = 1954, + [2146] = 1955, + [2147] = 1993, + [2148] = 1971, + [2149] = 1987, + [2150] = 1956, + [2151] = 1948, + [2152] = 1990, + [2153] = 1999, + [2154] = 1986, + [2155] = 1992, + [2156] = 1988, + [2157] = 1979, + [2158] = 1976, + [2159] = 1957, + [2160] = 1977, + [2161] = 1949, + [2162] = 1974, + [2163] = 1980, + [2164] = 1973, + [2165] = 2165, + [2166] = 2116, + [2167] = 2167, + [2168] = 2036, [2169] = 2169, [2170] = 2170, [2171] = 2171, @@ -8057,4367 +8057,4367 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2196] = 2196, [2197] = 2197, [2198] = 2198, - [2199] = 2198, - [2200] = 2198, - [2201] = 2198, - [2202] = 2202, - [2203] = 2202, - [2204] = 2198, - [2205] = 2198, + [2199] = 2197, + [2200] = 2197, + [2201] = 2201, + [2202] = 2197, + [2203] = 2197, + [2204] = 2197, + [2205] = 2201, [2206] = 2206, [2207] = 2207, [2208] = 2208, - [2209] = 2209, - [2210] = 2198, + [2209] = 2197, + [2210] = 2210, [2211] = 2211, [2212] = 2212, [2213] = 2213, [2214] = 2214, - [2215] = 2215, - [2216] = 2198, + [2215] = 2197, + [2216] = 2216, [2217] = 2217, - [2218] = 2211, - [2219] = 2219, + [2218] = 2218, + [2219] = 2212, [2220] = 2220, [2221] = 2221, [2222] = 2221, - [2223] = 2220, - [2224] = 2202, - [2225] = 2221, - [2226] = 2221, - [2227] = 2227, - [2228] = 2217, + [2223] = 2221, + [2224] = 2220, + [2225] = 2201, + [2226] = 2226, + [2227] = 2221, + [2228] = 2218, [2229] = 2221, - [2230] = 2230, - [2231] = 2202, - [2232] = 2227, - [2233] = 2202, - [2234] = 2221, - [2235] = 1920, - [2236] = 2198, - [2237] = 2198, - [2238] = 2227, - [2239] = 2217, - [2240] = 2202, - [2241] = 2211, - [2242] = 2242, - [2243] = 2202, - [2244] = 2202, + [2230] = 2226, + [2231] = 2201, + [2232] = 2232, + [2233] = 2221, + [2234] = 2201, + [2235] = 1921, + [2236] = 2197, + [2237] = 2197, + [2238] = 2226, + [2239] = 2212, + [2240] = 2201, + [2241] = 2197, + [2242] = 2218, + [2243] = 2201, + [2244] = 2201, [2245] = 2245, - [2246] = 2198, - [2247] = 2242, - [2248] = 2221, - [2249] = 2202, - [2250] = 2202, - [2251] = 2202, - [2252] = 2217, - [2253] = 2202, - [2254] = 2202, - [2255] = 2227, - [2256] = 2256, + [2246] = 2245, + [2247] = 2247, + [2248] = 2218, + [2249] = 2249, + [2250] = 2201, + [2251] = 2251, + [2252] = 2201, + [2253] = 2201, + [2254] = 2197, + [2255] = 2255, + [2256] = 2212, [2257] = 2257, - [2258] = 2211, - [2259] = 2259, - [2260] = 2198, + [2258] = 2221, + [2259] = 2226, + [2260] = 2201, [2261] = 2261, - [2262] = 2262, - [2263] = 2220, + [2262] = 2201, + [2263] = 2197, [2264] = 2264, - [2265] = 2227, - [2266] = 2266, - [2267] = 2217, - [2268] = 2266, - [2269] = 2198, - [2270] = 2207, + [2265] = 2206, + [2266] = 2207, + [2267] = 2221, + [2268] = 2220, + [2269] = 2269, + [2270] = 2226, [2271] = 2220, - [2272] = 2221, - [2273] = 2206, - [2274] = 2211, - [2275] = 2266, - [2276] = 2227, - [2277] = 2211, - [2278] = 2207, - [2279] = 2219, - [2280] = 2264, - [2281] = 2206, - [2282] = 2266, - [2283] = 2283, - [2284] = 2214, - [2285] = 2217, - [2286] = 2221, - [2287] = 2209, - [2288] = 2221, - [2289] = 2207, - [2290] = 2290, - [2291] = 2213, - [2292] = 2283, - [2293] = 2221, - [2294] = 2227, - [2295] = 2211, - [2296] = 2220, - [2297] = 2297, - [2298] = 2208, - [2299] = 2227, - [2300] = 2220, - [2301] = 2221, - [2302] = 2221, - [2303] = 2212, - [2304] = 2227, - [2305] = 2305, - [2306] = 2306, - [2307] = 2215, - [2308] = 2206, - [2309] = 2211, - [2310] = 2221, - [2311] = 2290, - [2312] = 2312, - [2313] = 2220, - [2314] = 2217, + [2272] = 2218, + [2273] = 2264, + [2274] = 2264, + [2275] = 2212, + [2276] = 2276, + [2277] = 2207, + [2278] = 2212, + [2279] = 2226, + [2280] = 2269, + [2281] = 2264, + [2282] = 2206, + [2283] = 2217, + [2284] = 2212, + [2285] = 2220, + [2286] = 2286, + [2287] = 2221, + [2288] = 2226, + [2289] = 2289, + [2290] = 2221, + [2291] = 2207, + [2292] = 2221, + [2293] = 2214, + [2294] = 2221, + [2295] = 2221, + [2296] = 2276, + [2297] = 2226, + [2298] = 2298, + [2299] = 2226, + [2300] = 2206, + [2301] = 2301, + [2302] = 2218, + [2303] = 2211, + [2304] = 2213, + [2305] = 2220, + [2306] = 2212, + [2307] = 2208, + [2308] = 2216, + [2309] = 2210, + [2310] = 2310, + [2311] = 2289, + [2312] = 2298, + [2313] = 2313, + [2314] = 2301, [2315] = 2315, - [2316] = 2221, - [2317] = 2317, - [2318] = 2198, - [2319] = 2306, - [2320] = 2220, - [2321] = 2297, - [2322] = 2322, - [2323] = 2323, - [2324] = 2217, - [2325] = 2220, - [2326] = 2221, - [2327] = 2220, - [2328] = 2221, - [2329] = 2217, - [2330] = 2227, + [2316] = 2220, + [2317] = 2218, + [2318] = 2318, + [2319] = 2221, + [2320] = 2320, + [2321] = 2221, + [2322] = 2218, + [2323] = 2221, + [2324] = 2220, + [2325] = 2197, + [2326] = 2220, + [2327] = 2221, + [2328] = 2197, + [2329] = 2218, + [2330] = 2276, [2331] = 2221, - [2332] = 2227, - [2333] = 2220, - [2334] = 2221, - [2335] = 2283, - [2336] = 2336, - [2337] = 2283, - [2338] = 2227, - [2339] = 2221, + [2332] = 2221, + [2333] = 2226, + [2334] = 2334, + [2335] = 2220, + [2336] = 2276, + [2337] = 2221, + [2338] = 2338, + [2339] = 2226, [2340] = 2340, - [2341] = 2221, - [2342] = 1917, - [2343] = 2343, - [2344] = 2344, - [2345] = 2345, - [2346] = 2227, - [2347] = 2198, + [2341] = 2341, + [2342] = 2342, + [2343] = 2226, + [2344] = 1917, + [2345] = 2221, + [2346] = 2221, + [2347] = 2226, [2348] = 2220, - [2349] = 2221, - [2350] = 2221, - [2351] = 2227, - [2352] = 2221, - [2353] = 2345, - [2354] = 2354, - [2355] = 2221, - [2356] = 2356, - [2357] = 2220, - [2358] = 2221, - [2359] = 2221, - [2360] = 2220, - [2361] = 2227, - [2362] = 2198, - [2363] = 2220, + [2349] = 2220, + [2350] = 2350, + [2351] = 2351, + [2352] = 2220, + [2353] = 2221, + [2354] = 2221, + [2355] = 2220, + [2356] = 2221, + [2357] = 2197, + [2358] = 2220, + [2359] = 2359, + [2360] = 2221, + [2361] = 2221, + [2362] = 2226, + [2363] = 2197, [2364] = 2221, - [2365] = 2365, - [2366] = 2220, - [2367] = 2305, - [2368] = 2368, - [2369] = 2369, - [2370] = 2306, - [2371] = 2221, + [2365] = 2221, + [2366] = 2342, + [2367] = 2338, + [2368] = 2340, + [2369] = 2341, + [2370] = 2370, + [2371] = 2371, [2372] = 2220, - [2373] = 2340, - [2374] = 2344, - [2375] = 2306, + [2373] = 2220, + [2374] = 2374, + [2375] = 2375, [2376] = 2376, [2377] = 2221, - [2378] = 2378, - [2379] = 2220, - [2380] = 2380, + [2378] = 2220, + [2379] = 2221, + [2380] = 2226, [2381] = 2220, - [2382] = 2198, - [2383] = 2383, - [2384] = 2221, - [2385] = 2220, - [2386] = 2343, - [2387] = 2221, - [2388] = 2388, - [2389] = 2221, - [2390] = 2217, - [2391] = 2227, + [2382] = 2286, + [2383] = 2289, + [2384] = 2384, + [2385] = 2289, + [2386] = 2221, + [2387] = 2220, + [2388] = 2197, + [2389] = 2389, + [2390] = 2389, + [2391] = 2221, [2392] = 2392, - [2393] = 2219, - [2394] = 2198, - [2395] = 2206, - [2396] = 2396, - [2397] = 2207, - [2398] = 2221, - [2399] = 2198, - [2400] = 2396, - [2401] = 2198, - [2402] = 2227, + [2393] = 2197, + [2394] = 2217, + [2395] = 2218, + [2396] = 2221, + [2397] = 2197, + [2398] = 2226, + [2399] = 2206, + [2400] = 2400, + [2401] = 2226, + [2402] = 2207, [2403] = 2403, - [2404] = 2215, - [2405] = 2266, - [2406] = 2221, + [2404] = 2221, + [2405] = 2405, + [2406] = 2226, [2407] = 2407, - [2408] = 2208, + [2408] = 2226, [2409] = 2409, - [2410] = 2227, - [2411] = 2411, + [2410] = 2226, + [2411] = 2226, [2412] = 2221, - [2413] = 2227, - [2414] = 2414, - [2415] = 2227, - [2416] = 2407, - [2417] = 2417, - [2418] = 2221, - [2419] = 2419, - [2420] = 2221, - [2421] = 2421, - [2422] = 2266, - [2423] = 2198, - [2424] = 2264, + [2413] = 2413, + [2414] = 2226, + [2415] = 2210, + [2416] = 2416, + [2417] = 2214, + [2418] = 2418, + [2419] = 2269, + [2420] = 2197, + [2421] = 2226, + [2422] = 2269, + [2423] = 2264, + [2424] = 2211, [2425] = 2425, - [2426] = 2426, - [2427] = 2227, - [2428] = 2198, - [2429] = 2227, - [2430] = 2221, + [2426] = 2216, + [2427] = 2221, + [2428] = 2226, + [2429] = 2208, + [2430] = 2430, [2431] = 2431, - [2432] = 2432, - [2433] = 2433, - [2434] = 2227, - [2435] = 2435, - [2436] = 2227, - [2437] = 2214, - [2438] = 2264, - [2439] = 2212, + [2432] = 2221, + [2433] = 2221, + [2434] = 2213, + [2435] = 2264, + [2436] = 2264, + [2437] = 2197, + [2438] = 2438, + [2439] = 2438, [2440] = 2221, - [2441] = 2213, - [2442] = 2266, - [2443] = 2227, - [2444] = 2409, - [2445] = 2198, - [2446] = 2221, - [2447] = 2209, - [2448] = 2448, - [2449] = 2266, - [2450] = 2221, - [2451] = 2451, + [2441] = 2221, + [2442] = 2442, + [2443] = 2264, + [2444] = 2444, + [2445] = 2445, + [2446] = 2446, + [2447] = 2197, + [2448] = 2416, + [2449] = 2221, + [2450] = 2450, + [2451] = 2226, [2452] = 2452, - [2453] = 2453, - [2454] = 2198, - [2455] = 2219, - [2456] = 2198, + [2453] = 2197, + [2454] = 2454, + [2455] = 2197, + [2456] = 2197, [2457] = 2457, [2458] = 2458, [2459] = 2459, - [2460] = 2198, - [2461] = 2461, - [2462] = 2462, - [2463] = 2463, - [2464] = 2198, - [2465] = 2463, + [2460] = 2460, + [2461] = 2197, + [2462] = 2197, + [2463] = 2197, + [2464] = 2464, + [2465] = 2197, [2466] = 2466, - [2467] = 2467, - [2468] = 2468, - [2469] = 2198, - [2470] = 2198, - [2471] = 2198, - [2472] = 2463, - [2473] = 2198, - [2474] = 2474, - [2475] = 2266, - [2476] = 2266, - [2477] = 2264, - [2478] = 2266, - [2479] = 2208, - [2480] = 2266, - [2481] = 2481, - [2482] = 2209, - [2483] = 2266, - [2484] = 2213, - [2485] = 2212, - [2486] = 2215, - [2487] = 2266, - [2488] = 2266, - [2489] = 2214, + [2467] = 2464, + [2468] = 2217, + [2469] = 2469, + [2470] = 2197, + [2471] = 2471, + [2472] = 2472, + [2473] = 2464, + [2474] = 2210, + [2475] = 2475, + [2476] = 2269, + [2477] = 2477, + [2478] = 2264, + [2479] = 2269, + [2480] = 2264, + [2481] = 2264, + [2482] = 2482, + [2483] = 2269, + [2484] = 2484, + [2485] = 2264, + [2486] = 2269, + [2487] = 2264, + [2488] = 2269, + [2489] = 2489, [2490] = 2490, - [2491] = 2266, - [2492] = 2264, - [2493] = 2266, - [2494] = 2264, + [2491] = 2264, + [2492] = 2269, + [2493] = 2493, + [2494] = 2494, [2495] = 2264, - [2496] = 2264, - [2497] = 2266, - [2498] = 2498, + [2496] = 2214, + [2497] = 2264, + [2498] = 2264, [2499] = 2499, [2500] = 2264, - [2501] = 2501, + [2501] = 2269, [2502] = 2502, [2503] = 2264, - [2504] = 2266, - [2505] = 2264, - [2506] = 2506, - [2507] = 2507, - [2508] = 2266, - [2509] = 2206, - [2510] = 2264, - [2511] = 2511, - [2512] = 2207, - [2513] = 2513, - [2514] = 2266, - [2515] = 2515, - [2516] = 2266, - [2517] = 2507, + [2504] = 2504, + [2505] = 2505, + [2506] = 2207, + [2507] = 2213, + [2508] = 2206, + [2509] = 2269, + [2510] = 2208, + [2511] = 2216, + [2512] = 2264, + [2513] = 2264, + [2514] = 2211, + [2515] = 2269, + [2516] = 2264, + [2517] = 2197, [2518] = 2518, - [2519] = 2266, - [2520] = 2198, - [2521] = 2264, - [2522] = 2522, - [2523] = 2264, - [2524] = 2266, - [2525] = 2198, + [2519] = 2519, + [2520] = 2269, + [2521] = 2269, + [2522] = 2502, + [2523] = 2484, + [2524] = 2264, + [2525] = 2525, [2526] = 2526, - [2527] = 2498, - [2528] = 2266, - [2529] = 2529, - [2530] = 2198, - [2531] = 2515, - [2532] = 2532, + [2527] = 2489, + [2528] = 2264, + [2529] = 2264, + [2530] = 2269, + [2531] = 2301, + [2532] = 2264, [2533] = 2533, - [2534] = 2534, - [2535] = 2297, - [2536] = 2198, + [2534] = 2298, + [2535] = 2197, + [2536] = 2536, [2537] = 2264, - [2538] = 2266, - [2539] = 2539, - [2540] = 2540, + [2538] = 2264, + [2539] = 2269, + [2540] = 2197, [2541] = 2264, - [2542] = 2266, - [2543] = 2290, - [2544] = 2499, - [2545] = 2264, - [2546] = 2546, - [2547] = 2547, - [2548] = 2266, - [2549] = 2502, - [2550] = 2266, + [2542] = 2542, + [2543] = 2264, + [2544] = 2197, + [2545] = 2545, + [2546] = 2301, + [2547] = 2269, + [2548] = 2548, + [2549] = 2264, + [2550] = 2298, [2551] = 2551, - [2552] = 2552, - [2553] = 2266, - [2554] = 2266, - [2555] = 2518, - [2556] = 2266, - [2557] = 2490, - [2558] = 2558, - [2559] = 2264, + [2552] = 2493, + [2553] = 2264, + [2554] = 2264, + [2555] = 2269, + [2556] = 2264, + [2557] = 2482, + [2558] = 2269, + [2559] = 2197, [2560] = 2560, - [2561] = 2266, - [2562] = 2481, - [2563] = 2198, - [2564] = 2266, + [2561] = 2505, + [2562] = 2264, + [2563] = 2264, + [2564] = 2564, [2565] = 2565, - [2566] = 2297, - [2567] = 2567, - [2568] = 2290, - [2569] = 2569, - [2570] = 2266, - [2571] = 2474, - [2572] = 2264, - [2573] = 2264, - [2574] = 2511, - [2575] = 2575, - [2576] = 2266, - [2577] = 2266, - [2578] = 2266, - [2579] = 2198, - [2580] = 2580, - [2581] = 2513, - [2582] = 2582, - [2583] = 2583, - [2584] = 2584, - [2585] = 2585, + [2566] = 2197, + [2567] = 2269, + [2568] = 2499, + [2569] = 2490, + [2570] = 2264, + [2571] = 2571, + [2572] = 2504, + [2573] = 2494, + [2574] = 2574, + [2575] = 2264, + [2576] = 2564, + [2577] = 2577, + [2578] = 2578, + [2579] = 2579, + [2580] = 2578, + [2581] = 2579, + [2582] = 2579, + [2583] = 2315, + [2584] = 2298, + [2585] = 2577, [2586] = 2586, [2587] = 2587, - [2588] = 2587, - [2589] = 2589, - [2590] = 2589, - [2591] = 2591, - [2592] = 2592, - [2593] = 2593, - [2594] = 2594, - [2595] = 2595, - [2596] = 2587, - [2597] = 2597, - [2598] = 2598, - [2599] = 2599, - [2600] = 2290, - [2601] = 2593, - [2602] = 2297, - [2603] = 2388, - [2604] = 2604, - [2605] = 2605, - [2606] = 2587, - [2607] = 2592, - [2608] = 2592, - [2609] = 2593, - [2610] = 2610, - [2611] = 2611, - [2612] = 2388, - [2613] = 2592, - [2614] = 2585, - [2615] = 2615, - [2616] = 2616, - [2617] = 2617, - [2618] = 2618, - [2619] = 2619, - [2620] = 2620, - [2621] = 2621, - [2622] = 2622, - [2623] = 2315, - [2624] = 2585, - [2625] = 2290, - [2626] = 2585, - [2627] = 2589, - [2628] = 2628, - [2629] = 2593, - [2630] = 2297, - [2631] = 2589, - [2632] = 2632, - [2633] = 2633, - [2634] = 2256, - [2635] = 2618, - [2636] = 2620, - [2637] = 2615, - [2638] = 2617, - [2639] = 2343, - [2640] = 2392, - [2641] = 2345, - [2642] = 2344, - [2643] = 2633, - [2644] = 2622, - [2645] = 2604, - [2646] = 2290, - [2647] = 2583, - [2648] = 2595, - [2649] = 2598, - [2650] = 2591, - [2651] = 2297, - [2652] = 2584, + [2588] = 2586, + [2589] = 2301, + [2590] = 2249, + [2591] = 2577, + [2592] = 2301, + [2593] = 2577, + [2594] = 2298, + [2595] = 2579, + [2596] = 2586, + [2597] = 2400, + [2598] = 2587, + [2599] = 2586, + [2600] = 2400, + [2601] = 2578, + [2602] = 2587, + [2603] = 2578, + [2604] = 2587, + [2605] = 2298, + [2606] = 2342, + [2607] = 2298, + [2608] = 2608, + [2609] = 2340, + [2610] = 2341, + [2611] = 2338, + [2612] = 2338, + [2613] = 2340, + [2614] = 2341, + [2615] = 2342, + [2616] = 2301, + [2617] = 2301, + [2618] = 2298, + [2619] = 2392, + [2620] = 2301, + [2621] = 2298, + [2622] = 2340, + [2623] = 2298, + [2624] = 2298, + [2625] = 2457, + [2626] = 2298, + [2627] = 1974, + [2628] = 2301, + [2629] = 1977, + [2630] = 2342, + [2631] = 2338, + [2632] = 2341, + [2633] = 2301, + [2634] = 2341, + [2635] = 2301, + [2636] = 2298, + [2637] = 2340, + [2638] = 2301, + [2639] = 2338, + [2640] = 2454, + [2641] = 2342, + [2642] = 2298, + [2643] = 2298, + [2644] = 2301, + [2645] = 2249, + [2646] = 1985, + [2647] = 2392, + [2648] = 2301, + [2649] = 2298, + [2650] = 2301, + [2651] = 2301, + [2652] = 2207, [2653] = 2653, - [2654] = 2619, - [2655] = 2632, - [2656] = 2605, - [2657] = 2611, - [2658] = 2599, - [2659] = 2290, - [2660] = 2340, + [2654] = 2654, + [2655] = 2206, + [2656] = 2341, + [2657] = 2218, + [2658] = 2658, + [2659] = 2659, + [2660] = 2342, [2661] = 2340, - [2662] = 2628, - [2663] = 2343, - [2664] = 2597, - [2665] = 2345, - [2666] = 2344, - [2667] = 2297, - [2668] = 2290, - [2669] = 2586, - [2670] = 2594, - [2671] = 2297, - [2672] = 2621, - [2673] = 2467, - [2674] = 2297, - [2675] = 2611, - [2676] = 2297, - [2677] = 2604, - [2678] = 2599, - [2679] = 2594, - [2680] = 2297, - [2681] = 2583, - [2682] = 2297, - [2683] = 2591, - [2684] = 2616, - [2685] = 2297, - [2686] = 2586, - [2687] = 2597, - [2688] = 2620, - [2689] = 2598, - [2690] = 2619, - [2691] = 2297, - [2692] = 2632, - [2693] = 2290, - [2694] = 2610, - [2695] = 2290, - [2696] = 2256, - [2697] = 2605, - [2698] = 1989, - [2699] = 2621, - [2700] = 2392, - [2701] = 2290, - [2702] = 2459, - [2703] = 2595, - [2704] = 2290, - [2705] = 2344, - [2706] = 2290, - [2707] = 2617, - [2708] = 2297, - [2709] = 2615, - [2710] = 2633, - [2711] = 2628, - [2712] = 2290, - [2713] = 2340, - [2714] = 2290, - [2715] = 2343, - [2716] = 2297, - [2717] = 2345, - [2718] = 2618, - [2719] = 2345, - [2720] = 1949, - [2721] = 1992, - [2722] = 2290, - [2723] = 2344, - [2724] = 2584, - [2725] = 2340, - [2726] = 2343, - [2727] = 2431, - [2728] = 2632, - [2729] = 2621, - [2730] = 2611, - [2731] = 2731, - [2732] = 2219, - [2733] = 2604, - [2734] = 2599, - [2735] = 2583, - [2736] = 2605, - [2737] = 2206, - [2738] = 2463, - [2739] = 2344, - [2740] = 2207, - [2741] = 2618, - [2742] = 2340, - [2743] = 2594, - [2744] = 2595, - [2745] = 2622, - [2746] = 2598, - [2747] = 2207, - [2748] = 2591, - [2749] = 2619, - [2750] = 2584, - [2751] = 2620, - [2752] = 2206, - [2753] = 2345, - [2754] = 2597, - [2755] = 2755, - [2756] = 2219, - [2757] = 2343, - [2758] = 2617, - [2759] = 2615, - [2760] = 2340, - [2761] = 2343, - [2762] = 2345, - [2763] = 2633, - [2764] = 2618, - [2765] = 2344, - [2766] = 2463, - [2767] = 2217, - [2768] = 2340, - [2769] = 2586, - [2770] = 2343, - [2771] = 2628, - [2772] = 2457, - [2773] = 2628, + [2662] = 2662, + [2663] = 2413, + [2664] = 2464, + [2665] = 2340, + [2666] = 2217, + [2667] = 2341, + [2668] = 2341, + [2669] = 2338, + [2670] = 2670, + [2671] = 2458, + [2672] = 2342, + [2673] = 2206, + [2674] = 2674, + [2675] = 2340, + [2676] = 2338, + [2677] = 2338, + [2678] = 2207, + [2679] = 2464, + [2680] = 2342, + [2681] = 2206, + [2682] = 2207, + [2683] = 2405, + [2684] = 2471, + [2685] = 2464, + [2686] = 2686, + [2687] = 2687, + [2688] = 2217, + [2689] = 2689, + [2690] = 2338, + [2691] = 2691, + [2692] = 2692, + [2693] = 2438, + [2694] = 2213, + [2695] = 2407, + [2696] = 2211, + [2697] = 2342, + [2698] = 2208, + [2699] = 2699, + [2700] = 2216, + [2701] = 2701, + [2702] = 2444, + [2703] = 2445, + [2704] = 2446, + [2705] = 2705, + [2706] = 2706, + [2707] = 2707, + [2708] = 2359, + [2709] = 2709, + [2710] = 2214, + [2711] = 2711, + [2712] = 2450, + [2713] = 2210, + [2714] = 2464, + [2715] = 2116, + [2716] = 2716, + [2717] = 2717, + [2718] = 2718, + [2719] = 2719, + [2720] = 2720, + [2721] = 2721, + [2722] = 2722, + [2723] = 2008, + [2724] = 2724, + [2725] = 2725, + [2726] = 2726, + [2727] = 2341, + [2728] = 2728, + [2729] = 2729, + [2730] = 2730, + [2731] = 2340, + [2732] = 2732, + [2733] = 2338, + [2734] = 2471, + [2735] = 2384, + [2736] = 2376, + [2737] = 2737, + [2738] = 2370, + [2739] = 2739, + [2740] = 2458, + [2741] = 2741, + [2742] = 2742, + [2743] = 2743, + [2744] = 2744, + [2745] = 2745, + [2746] = 2217, + [2747] = 2747, + [2748] = 2374, + [2749] = 2475, + [2750] = 2750, + [2751] = 2350, + [2752] = 2342, + [2753] = 2026, + [2754] = 2754, + [2755] = 2002, + [2756] = 2015, + [2757] = 1947, + [2758] = 2758, + [2759] = 2759, + [2760] = 2477, + [2761] = 2761, + [2762] = 2762, + [2763] = 2763, + [2764] = 2764, + [2765] = 2765, + [2766] = 2766, + [2767] = 2767, + [2768] = 2025, + [2769] = 2013, + [2770] = 2430, + [2771] = 2351, + [2772] = 2341, + [2773] = 2773, [2774] = 2774, - [2775] = 2775, - [2776] = 2461, - [2777] = 2597, - [2778] = 2345, - [2779] = 2620, - [2780] = 2463, - [2781] = 2206, - [2782] = 2207, - [2783] = 2616, - [2784] = 2615, - [2785] = 2617, - [2786] = 2786, - [2787] = 2344, - [2788] = 2788, - [2789] = 2594, - [2790] = 2619, + [2775] = 2340, + [2776] = 2338, + [2777] = 2777, + [2778] = 2778, + [2779] = 2342, + [2780] = 2780, + [2781] = 2207, + [2782] = 2341, + [2783] = 2783, + [2784] = 2431, + [2785] = 2785, + [2786] = 2425, + [2787] = 2409, + [2788] = 1946, + [2789] = 2789, + [2790] = 2340, [2791] = 2791, - [2792] = 2792, - [2793] = 2793, - [2794] = 2586, - [2795] = 2633, - [2796] = 2432, - [2797] = 2598, - [2798] = 2798, - [2799] = 2583, - [2800] = 2599, - [2801] = 2604, - [2802] = 2611, - [2803] = 2621, - [2804] = 2632, - [2805] = 2605, - [2806] = 2595, - [2807] = 2591, - [2808] = 2584, - [2809] = 2610, + [2792] = 2338, + [2793] = 2206, + [2794] = 2794, + [2795] = 2795, + [2796] = 2207, + [2797] = 2371, + [2798] = 2338, + [2799] = 2475, + [2800] = 2484, + [2801] = 2801, + [2802] = 2438, + [2803] = 2803, + [2804] = 2804, + [2805] = 2003, + [2806] = 2005, + [2807] = 2210, + [2808] = 2001, + [2809] = 2418, [2810] = 2810, - [2811] = 2811, - [2812] = 2812, - [2813] = 2017, - [2814] = 2001, - [2815] = 2011, - [2816] = 2015, - [2817] = 2417, - [2818] = 2005, - [2819] = 2013, - [2820] = 2474, - [2821] = 2208, - [2822] = 2209, - [2823] = 2425, - [2824] = 2213, - [2825] = 2018, - [2826] = 2344, - [2827] = 1942, - [2828] = 2212, - [2829] = 2215, - [2830] = 2214, - [2831] = 2010, - [2832] = 2014, - [2833] = 2344, - [2834] = 2345, - [2835] = 2343, - [2836] = 2340, - [2837] = 2344, - [2838] = 2345, - [2839] = 2376, - [2840] = 2343, - [2841] = 2340, - [2842] = 2026, - [2843] = 2028, - [2844] = 2344, - [2845] = 2345, - [2846] = 2343, - [2847] = 2368, - [2848] = 2340, - [2849] = 2207, - [2850] = 2206, - [2851] = 2016, + [2811] = 2024, + [2812] = 2403, + [2813] = 2813, + [2814] = 2023, + [2815] = 2815, + [2816] = 2206, + [2817] = 2817, + [2818] = 2818, + [2819] = 2018, + [2820] = 2820, + [2821] = 2821, + [2822] = 2822, + [2823] = 2823, + [2824] = 2824, + [2825] = 2825, + [2826] = 2016, + [2827] = 2214, + [2828] = 2022, + [2829] = 2829, + [2830] = 2342, + [2831] = 2211, + [2832] = 2832, + [2833] = 2833, + [2834] = 2834, + [2835] = 2017, + [2836] = 2341, + [2837] = 2837, + [2838] = 2838, + [2839] = 2340, + [2840] = 2840, + [2841] = 2216, + [2842] = 2342, + [2843] = 2843, + [2844] = 2844, + [2845] = 2845, + [2846] = 2846, + [2847] = 2208, + [2848] = 2338, + [2849] = 2490, + [2850] = 2850, + [2851] = 2213, [2852] = 2340, - [2853] = 2208, - [2854] = 2209, - [2855] = 2498, - [2856] = 2343, - [2857] = 2344, - [2858] = 2213, - [2859] = 2008, - [2860] = 2345, - [2861] = 2345, - [2862] = 2862, + [2853] = 2853, + [2854] = 2338, + [2855] = 2341, + [2856] = 2452, + [2857] = 2375, + [2858] = 2442, + [2859] = 2494, + [2860] = 2340, + [2861] = 2341, + [2862] = 2493, [2863] = 2863, - [2864] = 2617, - [2865] = 2622, - [2866] = 2615, - [2867] = 2633, - [2868] = 2343, - [2869] = 2212, - [2870] = 2618, - [2871] = 2215, - [2872] = 2584, - [2873] = 2591, - [2874] = 2340, - [2875] = 2595, - [2876] = 2214, - [2877] = 2007, - [2878] = 2583, - [2879] = 2356, - [2880] = 2369, - [2881] = 2380, - [2882] = 2461, - [2883] = 2006, - [2884] = 2024, - [2885] = 2598, - [2886] = 2004, - [2887] = 2502, - [2888] = 2507, - [2889] = 2021, - [2890] = 2025, - [2891] = 2344, - [2892] = 2002, + [2864] = 2342, + [2865] = 2865, + [2866] = 2342, + [2867] = 2867, + [2868] = 2868, + [2869] = 2006, + [2870] = 2870, + [2871] = 2871, + [2872] = 2872, + [2873] = 2873, + [2874] = 2007, + [2875] = 2875, + [2876] = 2876, + [2877] = 2877, + [2878] = 2499, + [2879] = 2879, + [2880] = 2880, + [2881] = 2502, + [2882] = 2882, + [2883] = 2505, + [2884] = 2009, + [2885] = 2504, + [2886] = 2886, + [2887] = 2010, + [2888] = 2340, + [2889] = 2889, + [2890] = 2890, + [2891] = 2891, + [2892] = 2892, [2893] = 2893, - [2894] = 2345, - [2895] = 2344, - [2896] = 2343, - [2897] = 2340, - [2898] = 2463, + [2894] = 2338, + [2895] = 2895, + [2896] = 2896, + [2897] = 2897, + [2898] = 2898, [2899] = 2899, - [2900] = 2344, - [2901] = 2345, - [2902] = 2343, - [2903] = 2340, - [2904] = 2207, - [2905] = 2206, - [2906] = 2345, - [2907] = 2907, + [2900] = 2341, + [2901] = 2340, + [2902] = 2902, + [2903] = 2903, + [2904] = 2904, + [2905] = 2905, + [2906] = 2482, + [2907] = 2019, [2908] = 2908, [2909] = 2909, [2910] = 2910, - [2911] = 2343, - [2912] = 2912, - [2913] = 2511, - [2914] = 2914, - [2915] = 2513, - [2916] = 2916, - [2917] = 2917, - [2918] = 2918, - [2919] = 2919, - [2920] = 2920, + [2911] = 2464, + [2912] = 2341, + [2913] = 2342, + [2914] = 2464, + [2915] = 2489, + [2916] = 2489, + [2917] = 2504, + [2918] = 2472, + [2919] = 2213, + [2920] = 2214, [2921] = 2921, [2922] = 2922, - [2923] = 2923, - [2924] = 2924, - [2925] = 2925, - [2926] = 2354, - [2927] = 2515, - [2928] = 2928, - [2929] = 2929, - [2930] = 2930, - [2931] = 2931, - [2932] = 2932, - [2933] = 2933, - [2934] = 2934, - [2935] = 2365, - [2936] = 2936, + [2923] = 2493, + [2924] = 2494, + [2925] = 2502, + [2926] = 2505, + [2927] = 2927, + [2928] = 2460, + [2929] = 2210, + [2930] = 2216, + [2931] = 2457, + [2932] = 2484, + [2933] = 2499, + [2934] = 2477, + [2935] = 2454, + [2936] = 2211, [2937] = 2937, - [2938] = 2499, - [2939] = 2939, - [2940] = 2940, - [2941] = 2941, - [2942] = 2942, - [2943] = 2943, + [2938] = 2208, + [2939] = 2469, + [2940] = 2865, + [2941] = 2490, + [2942] = 2482, + [2943] = 2466, [2944] = 2944, [2945] = 2945, [2946] = 2946, [2947] = 2947, [2948] = 2948, - [2949] = 2949, + [2949] = 2464, [2950] = 2950, [2951] = 2951, - [2952] = 2490, + [2952] = 2464, [2953] = 2953, - [2954] = 2340, + [2954] = 2954, [2955] = 2955, - [2956] = 2407, + [2956] = 2464, [2957] = 2957, - [2958] = 2116, - [2959] = 2481, - [2960] = 2219, + [2958] = 2464, + [2959] = 2413, + [2960] = 2960, [2961] = 2961, - [2962] = 2962, + [2962] = 2464, [2963] = 2963, - [2964] = 2628, + [2964] = 2964, [2965] = 2965, - [2966] = 2616, - [2967] = 2378, + [2966] = 2966, + [2967] = 2967, [2968] = 2968, - [2969] = 2610, - [2970] = 2970, + [2969] = 2969, + [2970] = 2464, [2971] = 2971, - [2972] = 2972, + [2972] = 2438, [2973] = 2973, [2974] = 2974, [2975] = 2975, [2976] = 2976, - [2977] = 2977, + [2977] = 2405, [2978] = 2978, - [2979] = 2979, - [2980] = 2980, - [2981] = 2981, - [2982] = 2982, - [2983] = 2383, - [2984] = 2984, + [2979] = 2493, + [2980] = 2971, + [2981] = 2464, + [2982] = 2964, + [2983] = 2953, + [2984] = 2974, [2985] = 2985, - [2986] = 2986, + [2986] = 2973, [2987] = 2987, - [2988] = 2988, - [2989] = 2989, - [2990] = 2990, - [2991] = 2991, - [2992] = 2992, - [2993] = 2993, - [2994] = 2421, - [2995] = 2619, - [2996] = 2620, - [2997] = 2997, - [2998] = 2597, - [2999] = 2999, - [3000] = 2586, - [3001] = 2594, - [3002] = 2599, - [3003] = 2604, - [3004] = 2463, - [3005] = 2433, - [3006] = 2611, - [3007] = 2621, + [2988] = 2464, + [2989] = 2975, + [2990] = 2464, + [2991] = 2454, + [2992] = 2951, + [2993] = 2464, + [2994] = 2968, + [2995] = 2967, + [2996] = 2438, + [2997] = 2948, + [2998] = 2464, + [2999] = 2464, + [3000] = 2978, + [3001] = 3001, + [3002] = 2490, + [3003] = 2464, + [3004] = 2963, + [3005] = 2464, + [3006] = 3006, + [3007] = 2965, [3008] = 3008, - [3009] = 2435, - [3010] = 2452, - [3011] = 2451, - [3012] = 3012, + [3009] = 3009, + [3010] = 3010, + [3011] = 3011, + [3012] = 2976, [3013] = 3013, - [3014] = 2632, - [3015] = 2605, - [3016] = 3016, - [3017] = 3017, - [3018] = 3018, - [3019] = 3019, - [3020] = 3020, + [3014] = 3014, + [3015] = 3015, + [3016] = 2494, + [3017] = 2457, + [3018] = 2505, + [3019] = 2484, + [3020] = 2966, [3021] = 3021, - [3022] = 3022, + [3022] = 2960, [3023] = 3023, - [3024] = 2457, - [3025] = 3025, - [3026] = 3026, - [3027] = 2419, - [3028] = 3028, - [3029] = 3029, - [3030] = 3030, - [3031] = 3031, - [3032] = 3032, - [3033] = 3033, - [3034] = 3034, - [3035] = 3035, + [3024] = 2945, + [3025] = 2950, + [3026] = 2957, + [3027] = 2954, + [3028] = 2946, + [3029] = 2961, + [3030] = 2482, + [3031] = 2971, + [3032] = 2976, + [3033] = 2965, + [3034] = 2951, + [3035] = 2948, [3036] = 3036, - [3037] = 3037, - [3038] = 2414, - [3039] = 3039, - [3040] = 3040, - [3041] = 2403, - [3042] = 3042, - [3043] = 2501, - [3044] = 3044, - [3045] = 3045, - [3046] = 3046, - [3047] = 2411, - [3048] = 2501, - [3049] = 3049, - [3050] = 2426, - [3051] = 2448, - [3052] = 2463, - [3053] = 2506, - [3054] = 1943, - [3055] = 2407, - [3056] = 3056, - [3057] = 3057, - [3058] = 3058, - [3059] = 3059, - [3060] = 3060, - [3061] = 2604, - [3062] = 2453, - [3063] = 2212, - [3064] = 2598, - [3065] = 2610, - [3066] = 2490, - [3067] = 2605, - [3068] = 2632, - [3069] = 2621, - [3070] = 2611, - [3071] = 2513, - [3072] = 2604, - [3073] = 2599, - [3074] = 2511, - [3075] = 2594, - [3076] = 2215, - [3077] = 2468, - [3078] = 2474, - [3079] = 2584, - [3080] = 2628, - [3081] = 2498, - [3082] = 2591, - [3083] = 2462, - [3084] = 2595, - [3085] = 2583, - [3086] = 2586, - [3087] = 2618, - [3088] = 2597, - [3089] = 2620, - [3090] = 2633, - [3091] = 2615, - [3092] = 2599, - [3093] = 2617, - [3094] = 2467, - [3095] = 2499, - [3096] = 2618, - [3097] = 3097, - [3098] = 2594, - [3099] = 2213, - [3100] = 2208, - [3101] = 2481, - [3102] = 2628, - [3103] = 2597, - [3104] = 2633, - [3105] = 2583, - [3106] = 3106, - [3107] = 2616, - [3108] = 2619, - [3109] = 2893, - [3110] = 2459, - [3111] = 2620, - [3112] = 2214, - [3113] = 2619, - [3114] = 2598, - [3115] = 2458, - [3116] = 2611, - [3117] = 2621, - [3118] = 2632, - [3119] = 2605, - [3120] = 2595, - [3121] = 2591, - [3122] = 2584, - [3123] = 2209, - [3124] = 3124, - [3125] = 2586, - [3126] = 2502, - [3127] = 2615, - [3128] = 2617, - [3129] = 2507, - [3130] = 2506, - [3131] = 2622, - [3132] = 3132, - [3133] = 2515, - [3134] = 2463, - [3135] = 2617, - [3136] = 2610, - [3137] = 3137, - [3138] = 2616, - [3139] = 2604, - [3140] = 2463, - [3141] = 3141, - [3142] = 2463, - [3143] = 2628, - [3144] = 2463, - [3145] = 2633, - [3146] = 2619, - [3147] = 2615, - [3148] = 2598, - [3149] = 2597, - [3150] = 2431, - [3151] = 2620, - [3152] = 2586, - [3153] = 2407, - [3154] = 2594, - [3155] = 2583, - [3156] = 3156, - [3157] = 2599, - [3158] = 2611, - [3159] = 2621, - [3160] = 2632, - [3161] = 2584, - [3162] = 2432, - [3163] = 2618, - [3164] = 2591, - [3165] = 2605, - [3166] = 2463, - [3167] = 2595, - [3168] = 2463, - [3169] = 2619, - [3170] = 2619, - [3171] = 3171, - [3172] = 2598, - [3173] = 3173, - [3174] = 2610, - [3175] = 2622, - [3176] = 2616, - [3177] = 2459, - [3178] = 3178, - [3179] = 3179, - [3180] = 2633, - [3181] = 2620, - [3182] = 2597, - [3183] = 2513, - [3184] = 2586, - [3185] = 2628, - [3186] = 2619, - [3187] = 2633, - [3188] = 2594, - [3189] = 2463, - [3190] = 2463, - [3191] = 2598, - [3192] = 2618, - [3193] = 3193, - [3194] = 2583, - [3195] = 2598, - [3196] = 2620, - [3197] = 3197, - [3198] = 2597, - [3199] = 2599, - [3200] = 2604, - [3201] = 2611, - [3202] = 2621, - [3203] = 2632, - [3204] = 2605, - [3205] = 2595, - [3206] = 2591, - [3207] = 2584, - [3208] = 2620, - [3209] = 2597, - [3210] = 2586, - [3211] = 2628, - [3212] = 2463, + [3037] = 2964, + [3038] = 2953, + [3039] = 2961, + [3040] = 2946, + [3041] = 2950, + [3042] = 2960, + [3043] = 2966, + [3044] = 2499, + [3045] = 2504, + [3046] = 2489, + [3047] = 1946, + [3048] = 2502, + [3049] = 2477, + [3050] = 2947, + [3051] = 3051, + [3052] = 2967, + [3053] = 2978, + [3054] = 2957, + [3055] = 2954, + [3056] = 2475, + [3057] = 2945, + [3058] = 2968, + [3059] = 2973, + [3060] = 2974, + [3061] = 2975, + [3062] = 2944, + [3063] = 2865, + [3064] = 3064, + [3065] = 3065, + [3066] = 1947, + [3067] = 2921, + [3068] = 3068, + [3069] = 2206, + [3070] = 2950, + [3071] = 2207, + [3072] = 2946, + [3073] = 2975, + [3074] = 2961, + [3075] = 2953, + [3076] = 2964, + [3077] = 2967, + [3078] = 3078, + [3079] = 2947, + [3080] = 2978, + [3081] = 2973, + [3082] = 2218, + [3083] = 2968, + [3084] = 2948, + [3085] = 2960, + [3086] = 3065, + [3087] = 2951, + [3088] = 2217, + [3089] = 2945, + [3090] = 2954, + [3091] = 2957, + [3092] = 2966, + [3093] = 2975, + [3094] = 2974, + [3095] = 2974, + [3096] = 2963, + [3097] = 2976, + [3098] = 2971, + [3099] = 2976, + [3100] = 2971, + [3101] = 2966, + [3102] = 2948, + [3103] = 2965, + [3104] = 2954, + [3105] = 2957, + [3106] = 2960, + [3107] = 2978, + [3108] = 2950, + [3109] = 2946, + [3110] = 2961, + [3111] = 2953, + [3112] = 2964, + [3113] = 2967, + [3114] = 3114, + [3115] = 2973, + [3116] = 2968, + [3117] = 3117, + [3118] = 3118, + [3119] = 2965, + [3120] = 2951, + [3121] = 2944, + [3122] = 2945, + [3123] = 3065, + [3124] = 2961, + [3125] = 3118, + [3126] = 2211, + [3127] = 2216, + [3128] = 2208, + [3129] = 2213, + [3130] = 3130, + [3131] = 3078, + [3132] = 2965, + [3133] = 2944, + [3134] = 2947, + [3135] = 2374, + [3136] = 3136, + [3137] = 2351, + [3138] = 2442, + [3139] = 2218, + [3140] = 2375, + [3141] = 2964, + [3142] = 2963, + [3143] = 2403, + [3144] = 2214, + [3145] = 2210, + [3146] = 2206, + [3147] = 2217, + [3148] = 2207, + [3149] = 2418, + [3150] = 2409, + [3151] = 2431, + [3152] = 2946, + [3153] = 2950, + [3154] = 2960, + [3155] = 2966, + [3156] = 2974, + [3157] = 2954, + [3158] = 2945, + [3159] = 2968, + [3160] = 2973, + [3161] = 2975, + [3162] = 3162, + [3163] = 2430, + [3164] = 3164, + [3165] = 2957, + [3166] = 2978, + [3167] = 2967, + [3168] = 2951, + [3169] = 2371, + [3170] = 3170, + [3171] = 3068, + [3172] = 2425, + [3173] = 2350, + [3174] = 2407, + [3175] = 3175, + [3176] = 2370, + [3177] = 3177, + [3178] = 2376, + [3179] = 2384, + [3180] = 3180, + [3181] = 3181, + [3182] = 2948, + [3183] = 2971, + [3184] = 2976, + [3185] = 2116, + [3186] = 3186, + [3187] = 3187, + [3188] = 2444, + [3189] = 2445, + [3190] = 2446, + [3191] = 2359, + [3192] = 3192, + [3193] = 2450, + [3194] = 3194, + [3195] = 3195, + [3196] = 3196, + [3197] = 2953, + [3198] = 3198, + [3199] = 2392, + [3200] = 3200, + [3201] = 3201, + [3202] = 2960, + [3203] = 3203, + [3204] = 2974, + [3205] = 3205, + [3206] = 2971, + [3207] = 3207, + [3208] = 3208, + [3209] = 3209, + [3210] = 2213, + [3211] = 2951, + [3212] = 2208, [3213] = 3213, - [3214] = 2463, - [3215] = 2507, - [3216] = 2633, - [3217] = 2502, - [3218] = 2463, + [3214] = 2216, + [3215] = 3215, + [3216] = 3216, + [3217] = 2211, + [3218] = 3218, [3219] = 3219, - [3220] = 2618, + [3220] = 3220, [3221] = 3221, - [3222] = 3222, - [3223] = 2617, - [3224] = 2463, - [3225] = 2615, + [3222] = 2967, + [3223] = 2957, + [3224] = 2954, + [3225] = 2966, [3226] = 3226, - [3227] = 3227, - [3228] = 2407, - [3229] = 2617, - [3230] = 2628, - [3231] = 2467, - [3232] = 2463, - [3233] = 2463, - [3234] = 2584, - [3235] = 2591, - [3236] = 2595, - [3237] = 2618, - [3238] = 2605, - [3239] = 3239, - [3240] = 3240, + [3227] = 2978, + [3228] = 2948, + [3229] = 3229, + [3230] = 2957, + [3231] = 3231, + [3232] = 3232, + [3233] = 2971, + [3234] = 3234, + [3235] = 2450, + [3236] = 2359, + [3237] = 2446, + [3238] = 2445, + [3239] = 2444, + [3240] = 3065, [3241] = 3241, - [3242] = 2498, - [3243] = 2632, - [3244] = 3244, - [3245] = 2594, - [3246] = 2583, - [3247] = 2599, - [3248] = 2604, - [3249] = 2621, - [3250] = 2611, - [3251] = 2611, - [3252] = 3252, - [3253] = 2621, - [3254] = 2604, - [3255] = 2599, - [3256] = 2632, - [3257] = 2583, - [3258] = 2605, - [3259] = 2595, - [3260] = 2615, - [3261] = 2591, - [3262] = 2584, - [3263] = 2594, - [3264] = 2586, - [3265] = 2622, - [3266] = 2615, - [3267] = 2474, - [3268] = 2617, - [3269] = 2633, - [3270] = 2628, - [3271] = 2617, - [3272] = 2615, - [3273] = 2586, - [3274] = 2618, - [3275] = 2597, - [3276] = 2620, - [3277] = 2618, - [3278] = 2617, - [3279] = 2584, - [3280] = 2591, - [3281] = 2595, - [3282] = 2618, - [3283] = 2605, - [3284] = 2615, - [3285] = 2632, - [3286] = 2622, - [3287] = 2633, - [3288] = 2893, - [3289] = 2621, - [3290] = 2633, - [3291] = 2619, - [3292] = 2584, + [3242] = 2978, + [3243] = 2950, + [3244] = 2965, + [3245] = 2214, + [3246] = 2946, + [3247] = 2210, + [3248] = 3248, + [3249] = 2961, + [3250] = 2376, + [3251] = 3251, + [3252] = 2953, + [3253] = 3253, + [3254] = 2370, + [3255] = 3255, + [3256] = 3256, + [3257] = 3257, + [3258] = 2944, + [3259] = 3259, + [3260] = 3065, + [3261] = 2948, + [3262] = 2407, + [3263] = 2350, + [3264] = 2976, + [3265] = 3265, + [3266] = 3266, + [3267] = 3267, + [3268] = 2374, + [3269] = 2351, + [3270] = 3270, + [3271] = 2973, + [3272] = 2964, + [3273] = 3273, + [3274] = 2442, + [3275] = 2967, + [3276] = 3276, + [3277] = 2976, + [3278] = 3278, + [3279] = 3279, + [3280] = 2965, + [3281] = 3281, + [3282] = 2375, + [3283] = 2945, + [3284] = 2975, + [3285] = 3285, + [3286] = 2968, + [3287] = 3287, + [3288] = 3288, + [3289] = 3289, + [3290] = 2425, + [3291] = 2975, + [3292] = 3292, [3293] = 3293, - [3294] = 2611, - [3295] = 2604, - [3296] = 2599, - [3297] = 2598, - [3298] = 2583, - [3299] = 2583, - [3300] = 2628, - [3301] = 2481, - [3302] = 2594, + [3294] = 3294, + [3295] = 3295, + [3296] = 3296, + [3297] = 3297, + [3298] = 3298, + [3299] = 3299, + [3300] = 3300, + [3301] = 2954, + [3302] = 3302, [3303] = 3303, - [3304] = 2595, - [3305] = 2619, - [3306] = 2490, - [3307] = 2591, - [3308] = 2501, - [3309] = 3309, - [3310] = 2617, - [3311] = 2615, - [3312] = 2619, - [3313] = 2598, - [3314] = 2598, - [3315] = 2594, - [3316] = 1943, - [3317] = 2499, - [3318] = 2584, - [3319] = 2591, - [3320] = 2599, - [3321] = 2595, - [3322] = 2586, - [3323] = 2605, - [3324] = 2632, - [3325] = 2621, - [3326] = 2611, - [3327] = 2604, - [3328] = 3328, - [3329] = 2599, - [3330] = 2604, - [3331] = 2611, - [3332] = 2621, - [3333] = 2583, - [3334] = 2515, - [3335] = 2594, - [3336] = 1942, - [3337] = 2622, - [3338] = 2632, - [3339] = 2620, - [3340] = 2605, - [3341] = 2597, - [3342] = 2511, - [3343] = 2620, - [3344] = 2597, - [3345] = 2586, - [3346] = 2628, - [3347] = 2622, - [3348] = 2616, - [3349] = 2506, - [3350] = 2610, - [3351] = 2632, - [3352] = 2605, - [3353] = 2622, - [3354] = 2628, + [3304] = 3304, + [3305] = 3305, + [3306] = 3306, + [3307] = 3307, + [3308] = 3308, + [3309] = 2371, + [3310] = 2974, + [3311] = 2384, + [3312] = 3312, + [3313] = 3313, + [3314] = 2947, + [3315] = 2430, + [3316] = 3316, + [3317] = 3317, + [3318] = 3318, + [3319] = 3319, + [3320] = 1946, + [3321] = 3321, + [3322] = 3322, + [3323] = 2973, + [3324] = 3324, + [3325] = 3325, + [3326] = 1947, + [3327] = 2431, + [3328] = 1920, + [3329] = 2968, + [3330] = 2951, + [3331] = 2409, + [3332] = 2945, + [3333] = 2963, + [3334] = 2418, + [3335] = 2403, + [3336] = 3336, + [3337] = 2966, + [3338] = 2960, + [3339] = 2964, + [3340] = 3340, + [3341] = 2953, + [3342] = 2961, + [3343] = 3343, + [3344] = 2946, + [3345] = 2950, + [3346] = 3316, + [3347] = 2471, + [3348] = 3324, + [3349] = 3305, + [3350] = 3300, + [3351] = 3299, + [3352] = 2965, + [3353] = 3293, + [3354] = 3292, [3355] = 3355, - [3356] = 2621, - [3357] = 3106, - [3358] = 3355, - [3359] = 2617, - [3360] = 3360, - [3361] = 2619, - [3362] = 2615, - [3363] = 2598, - [3364] = 3355, - [3365] = 2611, - [3366] = 2604, - [3367] = 2628, - [3368] = 2633, - [3369] = 2617, - [3370] = 2599, - [3371] = 2594, - [3372] = 2598, - [3373] = 2615, - [3374] = 2217, - [3375] = 2599, - [3376] = 2604, - [3377] = 2618, - [3378] = 2628, - [3379] = 3379, - [3380] = 2611, - [3381] = 2586, - [3382] = 2617, - [3383] = 2597, - [3384] = 2620, - [3385] = 2621, - [3386] = 2584, - [3387] = 2632, - [3388] = 2591, - [3389] = 2595, - [3390] = 2584, - [3391] = 2591, - [3392] = 2583, - [3393] = 2615, - [3394] = 2207, - [3395] = 2595, - [3396] = 2605, - [3397] = 2605, - [3398] = 2206, - [3399] = 2598, - [3400] = 2594, - [3401] = 2632, - [3402] = 3355, - [3403] = 2621, - [3404] = 2598, - [3405] = 2219, - [3406] = 2611, - [3407] = 2604, - [3408] = 2615, - [3409] = 2599, - [3410] = 2617, - [3411] = 2583, - [3412] = 2594, - [3413] = 2619, - [3414] = 3414, - [3415] = 2622, - [3416] = 2616, - [3417] = 2633, - [3418] = 3293, - [3419] = 2586, - [3420] = 2610, - [3421] = 2597, - [3422] = 2620, - [3423] = 2628, - [3424] = 2619, - [3425] = 3355, - [3426] = 2583, - [3427] = 3427, - [3428] = 3355, - [3429] = 2618, - [3430] = 2595, - [3431] = 2610, - [3432] = 2591, - [3433] = 2584, - [3434] = 2616, - [3435] = 2586, - [3436] = 2586, - [3437] = 2610, - [3438] = 2597, - [3439] = 2620, - [3440] = 2605, - [3441] = 2632, - [3442] = 2621, - [3443] = 2611, - [3444] = 2604, - [3445] = 2599, - [3446] = 2583, - [3447] = 2594, - [3448] = 2616, - [3449] = 2619, - [3450] = 3450, - [3451] = 2633, - [3452] = 2595, - [3453] = 2591, - [3454] = 2618, - [3455] = 3455, - [3456] = 2618, - [3457] = 2597, - [3458] = 2622, - [3459] = 2633, - [3460] = 2584, - [3461] = 2620, - [3462] = 2598, - [3463] = 2392, - [3464] = 2617, - [3465] = 2217, - [3466] = 2615, - [3467] = 2618, - [3468] = 3379, - [3469] = 2633, - [3470] = 2618, - [3471] = 2615, - [3472] = 3450, - [3473] = 2618, - [3474] = 2616, - [3475] = 2633, - [3476] = 2617, - [3477] = 2622, - [3478] = 2597, - [3479] = 2610, - [3480] = 2584, - [3481] = 2591, - [3482] = 2595, - [3483] = 2605, - [3484] = 2632, - [3485] = 2628, - [3486] = 2621, - [3487] = 2611, - [3488] = 2604, - [3489] = 2599, - [3490] = 2633, - [3491] = 2615, - [3492] = 2583, - [3493] = 2617, - [3494] = 2594, - [3495] = 2598, - [3496] = 2633, - [3497] = 2617, - [3498] = 2615, - [3499] = 2633, - [3500] = 2628, - [3501] = 2617, - [3502] = 2615, - [3503] = 2618, - [3504] = 2633, - [3505] = 3505, - [3506] = 2633, - [3507] = 2616, - [3508] = 2610, - [3509] = 2207, - [3510] = 2206, - [3511] = 2586, - [3512] = 2598, - [3513] = 2617, - [3514] = 2615, - [3515] = 2618, - [3516] = 2616, - [3517] = 2219, - [3518] = 2622, - [3519] = 2610, - [3520] = 2615, - [3521] = 2617, - [3522] = 2586, - [3523] = 2597, - [3524] = 2620, - [3525] = 2605, - [3526] = 2632, - [3527] = 2621, - [3528] = 2611, - [3529] = 2604, - [3530] = 2599, - [3531] = 2594, - [3532] = 2619, - [3533] = 2622, - [3534] = 2618, - [3535] = 2116, - [3536] = 2616, - [3537] = 2628, - [3538] = 2586, - [3539] = 2628, - [3540] = 2586, - [3541] = 2597, - [3542] = 2620, - [3543] = 2619, - [3544] = 2605, - [3545] = 2632, - [3546] = 2621, - [3547] = 2611, - [3548] = 3548, - [3549] = 2604, - [3550] = 2599, - [3551] = 2597, - [3552] = 2620, - [3553] = 2584, - [3554] = 2591, - [3555] = 2595, - [3556] = 2618, - [3557] = 2598, - [3558] = 2619, - [3559] = 2583, - [3560] = 3560, - [3561] = 2594, - [3562] = 2620, - [3563] = 2619, - [3564] = 2618, - [3565] = 2633, - [3566] = 2598, - [3567] = 2616, - [3568] = 2622, - [3569] = 2610, - [3570] = 2583, - [3571] = 2616, - [3572] = 2586, - [3573] = 2595, - [3574] = 2597, - [3575] = 2610, - [3576] = 2620, - [3577] = 3577, - [3578] = 2594, - [3579] = 2598, - [3580] = 2619, - [3581] = 2583, - [3582] = 2599, - [3583] = 3583, - [3584] = 2604, - [3585] = 2611, - [3586] = 2621, - [3587] = 3587, - [3588] = 2591, - [3589] = 2584, - [3590] = 2632, - [3591] = 2615, - [3592] = 2605, - [3593] = 2622, - [3594] = 2595, - [3595] = 2591, - [3596] = 2584, - [3597] = 2618, - [3598] = 2628, - [3599] = 2586, - [3600] = 2597, - [3601] = 2620, - [3602] = 2605, - [3603] = 2632, - [3604] = 2621, - [3605] = 2620, - [3606] = 2611, - [3607] = 2604, - [3608] = 2599, - [3609] = 2594, - [3610] = 2619, - [3611] = 3611, - [3612] = 3612, - [3613] = 2615, - [3614] = 2617, - [3615] = 2622, - [3616] = 3616, - [3617] = 3617, - [3618] = 2208, - [3619] = 2622, - [3620] = 2617, - [3621] = 2209, - [3622] = 2598, - [3623] = 2594, - [3624] = 2619, - [3625] = 2598, - [3626] = 2594, - [3627] = 2599, - [3628] = 2411, - [3629] = 2604, - [3630] = 2583, - [3631] = 2611, - [3632] = 2213, - [3633] = 2586, - [3634] = 2599, - [3635] = 2604, - [3636] = 2611, - [3637] = 2621, - [3638] = 2632, - [3639] = 2212, - [3640] = 2215, - [3641] = 2605, - [3642] = 2595, - [3643] = 2214, - [3644] = 2591, - [3645] = 2584, - [3646] = 3293, - [3647] = 2597, - [3648] = 2621, - [3649] = 2632, - [3650] = 2619, - [3651] = 2605, - [3652] = 2586, - [3653] = 2620, - [3654] = 2597, - [3655] = 2586, - [3656] = 2628, - [3657] = 3657, - [3658] = 3658, - [3659] = 2628, - [3660] = 2586, - [3661] = 2597, - [3662] = 2620, - [3663] = 2618, - [3664] = 2594, - [3665] = 2619, - [3666] = 2599, - [3667] = 2604, - [3668] = 2597, - [3669] = 2611, - [3670] = 2584, - [3671] = 2591, - [3672] = 2595, - [3673] = 2605, - [3674] = 2632, - [3675] = 2621, - [3676] = 2611, - [3677] = 2604, - [3678] = 2599, - [3679] = 2583, - [3680] = 2621, - [3681] = 3681, - [3682] = 2632, - [3683] = 2583, - [3684] = 2595, - [3685] = 2591, - [3686] = 2605, - [3687] = 2594, - [3688] = 2598, - [3689] = 2584, - [3690] = 3690, - [3691] = 2620, - [3692] = 2628, - [3693] = 2383, - [3694] = 2628, - [3695] = 2617, - [3696] = 2633, - [3697] = 2615, - [3698] = 2583, - [3699] = 2595, - [3700] = 2591, - [3701] = 2584, - [3702] = 2584, - [3703] = 2615, - [3704] = 2617, - [3705] = 2591, - [3706] = 2595, - [3707] = 2605, - [3708] = 2632, - [3709] = 2621, - [3710] = 2378, - [3711] = 2611, - [3712] = 2604, - [3713] = 2599, - [3714] = 2583, - [3715] = 2594, - [3716] = 2633, - [3717] = 2421, - [3718] = 2433, - [3719] = 2610, - [3720] = 2365, - [3721] = 2435, - [3722] = 2452, - [3723] = 2354, - [3724] = 2451, - [3725] = 2619, - [3726] = 2619, - [3727] = 2598, - [3728] = 2594, - [3729] = 2583, - [3730] = 2633, - [3731] = 2599, - [3732] = 2604, - [3733] = 3733, - [3734] = 2611, - [3735] = 2369, - [3736] = 2621, - [3737] = 2356, - [3738] = 2632, - [3739] = 2419, - [3740] = 2414, - [3741] = 2368, - [3742] = 3742, - [3743] = 2628, - [3744] = 3744, - [3745] = 2448, - [3746] = 2376, - [3747] = 2620, - [3748] = 2584, - [3749] = 2583, - [3750] = 2591, - [3751] = 2403, - [3752] = 3360, - [3753] = 2591, - [3754] = 2618, - [3755] = 2425, - [3756] = 2605, - [3757] = 2595, - [3758] = 2595, - [3759] = 2628, - [3760] = 3760, - [3761] = 2426, - [3762] = 2380, - [3763] = 2584, - [3764] = 2598, - [3765] = 2586, - [3766] = 2597, - [3767] = 2376, - [3768] = 3768, - [3769] = 3769, - [3770] = 3770, - [3771] = 3771, - [3772] = 2632, - [3773] = 2586, - [3774] = 3774, - [3775] = 3775, - [3776] = 3776, - [3777] = 3777, - [3778] = 2628, - [3779] = 2621, - [3780] = 2611, - [3781] = 2633, - [3782] = 2604, - [3783] = 2383, - [3784] = 2617, - [3785] = 2584, - [3786] = 2615, - [3787] = 2591, - [3788] = 2595, - [3789] = 2425, - [3790] = 2628, - [3791] = 2605, - [3792] = 2632, - [3793] = 2621, - [3794] = 2611, - [3795] = 2368, - [3796] = 2414, - [3797] = 2604, - [3798] = 2599, - [3799] = 2583, - [3800] = 2633, - [3801] = 2628, - [3802] = 2628, - [3803] = 3803, - [3804] = 2633, - [3805] = 2208, - [3806] = 3806, - [3807] = 2356, - [3808] = 2369, - [3809] = 2380, - [3810] = 2618, - [3811] = 2586, - [3812] = 2605, - [3813] = 3777, - [3814] = 2586, - [3815] = 2594, - [3816] = 3816, - [3817] = 3817, - [3818] = 2421, - [3819] = 3819, - [3820] = 2597, - [3821] = 3777, - [3822] = 3822, - [3823] = 3823, - [3824] = 3824, - [3825] = 2615, - [3826] = 2595, - [3827] = 2617, - [3828] = 2628, - [3829] = 2604, - [3830] = 3293, - [3831] = 2611, - [3832] = 2451, - [3833] = 2452, - [3834] = 2435, - [3835] = 2620, - [3836] = 2365, - [3837] = 1943, - [3838] = 2433, - [3839] = 2621, - [3840] = 3840, - [3841] = 3841, - [3842] = 2594, - [3843] = 2583, - [3844] = 2599, - [3845] = 2620, + [3356] = 3321, + [3357] = 3289, + [3358] = 3302, + [3359] = 3318, + [3360] = 2944, + [3361] = 3276, + [3362] = 3319, + [3363] = 3253, + [3364] = 2978, + [3365] = 2975, + [3366] = 2951, + [3367] = 3213, + [3368] = 3207, + [3369] = 3285, + [3370] = 3226, + [3371] = 3218, + [3372] = 3255, + [3373] = 3281, + [3374] = 3312, + [3375] = 3256, + [3376] = 1920, + [3377] = 3266, + [3378] = 3267, + [3379] = 3317, + [3380] = 3065, + [3381] = 3298, + [3382] = 2947, + [3383] = 3265, + [3384] = 3288, + [3385] = 3306, + [3386] = 3296, + [3387] = 3216, + [3388] = 3229, + [3389] = 3248, + [3390] = 3209, + [3391] = 3234, + [3392] = 2458, + [3393] = 2948, + [3394] = 2971, + [3395] = 2976, + [3396] = 3278, + [3397] = 3279, + [3398] = 2116, + [3399] = 2974, + [3400] = 3201, + [3401] = 2865, + [3402] = 3402, + [3403] = 2973, + [3404] = 2968, + [3405] = 2945, + [3406] = 2966, + [3407] = 2954, + [3408] = 3304, + [3409] = 2957, + [3410] = 2960, + [3411] = 2950, + [3412] = 2946, + [3413] = 3203, + [3414] = 2961, + [3415] = 2953, + [3416] = 3336, + [3417] = 3241, + [3418] = 2964, + [3419] = 2967, + [3420] = 3420, + [3421] = 3273, + [3422] = 3208, + [3423] = 3221, + [3424] = 2974, + [3425] = 2954, + [3426] = 2957, + [3427] = 2971, + [3428] = 2960, + [3429] = 2965, + [3430] = 2971, + [3431] = 2976, + [3432] = 2945, + [3433] = 2978, + [3434] = 2950, + [3435] = 2946, + [3436] = 2961, + [3437] = 2953, + [3438] = 2964, + [3439] = 2967, + [3440] = 3440, + [3441] = 2976, + [3442] = 2966, + [3443] = 2965, + [3444] = 2966, + [3445] = 2954, + [3446] = 2957, + [3447] = 2960, + [3448] = 2978, + [3449] = 2950, + [3450] = 2946, + [3451] = 2961, + [3452] = 2953, + [3453] = 2964, + [3454] = 2967, + [3455] = 2948, + [3456] = 2951, + [3457] = 2968, + [3458] = 2973, + [3459] = 2971, + [3460] = 2976, + [3461] = 2865, + [3462] = 2974, + [3463] = 2975, + [3464] = 2951, + [3465] = 2973, + [3466] = 2968, + [3467] = 2945, + [3468] = 2975, + [3469] = 2965, + [3470] = 3065, + [3471] = 2975, + [3472] = 2966, + [3473] = 2954, + [3474] = 2957, + [3475] = 2960, + [3476] = 2978, + [3477] = 2950, + [3478] = 2946, + [3479] = 2961, + [3480] = 2953, + [3481] = 2964, + [3482] = 2967, + [3483] = 2973, + [3484] = 3484, + [3485] = 2968, + [3486] = 2945, + [3487] = 2948, + [3488] = 2948, + [3489] = 3065, + [3490] = 2974, + [3491] = 3491, + [3492] = 3492, + [3493] = 2951, + [3494] = 3494, + [3495] = 2963, + [3496] = 3496, + [3497] = 2947, + [3498] = 2963, + [3499] = 2944, + [3500] = 2944, + [3501] = 2976, + [3502] = 2951, + [3503] = 2948, + [3504] = 2965, + [3505] = 2963, + [3506] = 2965, + [3507] = 3051, + [3508] = 2947, + [3509] = 2975, + [3510] = 2484, + [3511] = 2963, + [3512] = 2963, + [3513] = 2951, + [3514] = 2966, + [3515] = 3065, + [3516] = 2954, + [3517] = 2976, + [3518] = 2971, + [3519] = 2948, + [3520] = 2957, + [3521] = 2969, + [3522] = 2948, + [3523] = 2960, + [3524] = 2978, + [3525] = 2950, + [3526] = 2946, + [3527] = 2961, + [3528] = 2945, + [3529] = 2953, + [3530] = 2964, + [3531] = 2967, + [3532] = 2951, + [3533] = 2967, + [3534] = 2978, + [3535] = 2957, + [3536] = 2954, + [3537] = 2974, + [3538] = 2971, + [3539] = 2968, + [3540] = 2973, + [3541] = 2976, + [3542] = 2975, + [3543] = 2973, + [3544] = 2968, + [3545] = 2945, + [3546] = 2975, + [3547] = 2974, + [3548] = 2974, + [3549] = 2966, + [3550] = 3550, + [3551] = 2960, + [3552] = 2950, + [3553] = 2946, + [3554] = 2961, + [3555] = 2953, + [3556] = 2968, + [3557] = 2957, + [3558] = 2971, + [3559] = 2954, + [3560] = 2392, + [3561] = 2973, + [3562] = 2967, + [3563] = 2964, + [3564] = 2953, + [3565] = 2961, + [3566] = 2946, + [3567] = 2950, + [3568] = 2964, + [3569] = 2978, + [3570] = 2965, + [3571] = 2966, + [3572] = 3550, + [3573] = 2960, + [3574] = 2945, + [3575] = 2974, + [3576] = 2947, + [3577] = 2973, + [3578] = 2968, + [3579] = 2963, + [3580] = 2968, + [3581] = 2945, + [3582] = 2865, + [3583] = 2976, + [3584] = 2971, + [3585] = 2945, + [3586] = 2974, + [3587] = 2966, + [3588] = 2954, + [3589] = 2957, + [3590] = 2960, + [3591] = 2954, + [3592] = 2957, + [3593] = 2978, + [3594] = 2967, + [3595] = 3595, + [3596] = 2953, + [3597] = 2961, + [3598] = 2946, + [3599] = 2950, + [3600] = 2973, + [3601] = 3065, + [3602] = 2217, + [3603] = 2217, + [3604] = 2975, + [3605] = 2954, + [3606] = 2957, + [3607] = 2978, + [3608] = 2967, + [3609] = 3068, + [3610] = 2963, + [3611] = 3595, + [3612] = 2966, + [3613] = 2960, + [3614] = 2950, + [3615] = 2946, + [3616] = 2961, + [3617] = 2951, + [3618] = 2953, + [3619] = 2964, + [3620] = 2948, + [3621] = 2965, + [3622] = 3595, + [3623] = 3623, + [3624] = 3130, + [3625] = 2978, + [3626] = 2950, + [3627] = 2946, + [3628] = 2961, + [3629] = 2969, + [3630] = 3595, + [3631] = 2953, + [3632] = 2964, + [3633] = 2967, + [3634] = 2964, + [3635] = 2944, + [3636] = 2948, + [3637] = 2974, + [3638] = 3065, + [3639] = 2966, + [3640] = 2207, + [3641] = 2206, + [3642] = 2960, + [3643] = 2950, + [3644] = 2946, + [3645] = 2961, + [3646] = 2953, + [3647] = 2963, + [3648] = 2964, + [3649] = 2218, + [3650] = 2951, + [3651] = 2976, + [3652] = 2971, + [3653] = 2948, + [3654] = 2965, + [3655] = 2974, + [3656] = 3065, + [3657] = 3078, + [3658] = 2976, + [3659] = 3118, + [3660] = 2947, + [3661] = 2944, + [3662] = 2947, + [3663] = 2116, + [3664] = 2971, + [3665] = 2960, + [3666] = 3666, + [3667] = 2966, + [3668] = 2957, + [3669] = 2954, + [3670] = 3595, + [3671] = 2975, + [3672] = 3595, + [3673] = 2951, + [3674] = 2965, + [3675] = 2976, + [3676] = 2945, + [3677] = 2968, + [3678] = 2973, + [3679] = 2945, + [3680] = 2967, + [3681] = 2951, + [3682] = 2968, + [3683] = 2973, + [3684] = 2944, + [3685] = 2971, + [3686] = 2975, + [3687] = 2948, + [3688] = 2975, + [3689] = 2965, + [3690] = 3051, + [3691] = 2978, + [3692] = 2950, + [3693] = 2966, + [3694] = 2950, + [3695] = 2954, + [3696] = 2957, + [3697] = 2978, + [3698] = 2967, + [3699] = 2978, + [3700] = 2960, + [3701] = 2964, + [3702] = 2953, + [3703] = 2957, + [3704] = 2954, + [3705] = 2961, + [3706] = 2966, + [3707] = 2946, + [3708] = 2974, + [3709] = 2975, + [3710] = 2950, + [3711] = 2960, + [3712] = 2966, + [3713] = 2965, + [3714] = 2951, + [3715] = 2945, + [3716] = 2968, + [3717] = 2973, + [3718] = 2964, + [3719] = 2953, + [3720] = 2961, + [3721] = 2946, + [3722] = 2950, + [3723] = 3065, + [3724] = 2490, + [3725] = 2960, + [3726] = 2966, + [3727] = 2974, + [3728] = 2975, + [3729] = 2210, + [3730] = 2214, + [3731] = 2217, + [3732] = 2211, + [3733] = 2976, + [3734] = 2971, + [3735] = 2216, + [3736] = 2208, + [3737] = 2213, + [3738] = 2967, + [3739] = 2964, + [3740] = 2953, + [3741] = 2961, + [3742] = 2946, + [3743] = 2950, + [3744] = 2978, + [3745] = 2960, + [3746] = 2957, + [3747] = 2954, + [3748] = 3118, + [3749] = 2966, + [3750] = 3170, + [3751] = 3170, + [3752] = 2945, + [3753] = 2948, + [3754] = 2951, + [3755] = 2951, + [3756] = 2951, + [3757] = 2968, + [3758] = 2967, + [3759] = 2964, + [3760] = 2953, + [3761] = 2961, + [3762] = 2946, + [3763] = 2946, + [3764] = 2978, + [3765] = 2960, + [3766] = 2957, + [3767] = 2475, + [3768] = 2206, + [3769] = 2494, + [3770] = 2493, + [3771] = 2207, + [3772] = 2954, + [3773] = 2966, + [3774] = 2974, + [3775] = 2965, + [3776] = 3136, + [3777] = 2957, + [3778] = 2948, + [3779] = 3779, + [3780] = 2971, + [3781] = 2944, + [3782] = 3782, + [3783] = 2971, + [3784] = 2976, + [3785] = 2975, + [3786] = 3786, + [3787] = 2973, + [3788] = 2947, + [3789] = 2948, + [3790] = 3790, + [3791] = 2965, + [3792] = 2948, + [3793] = 2971, + [3794] = 2976, + [3795] = 2973, + [3796] = 2945, + [3797] = 2968, + [3798] = 2973, + [3799] = 2964, + [3800] = 2218, + [3801] = 2953, + [3802] = 2961, + [3803] = 2946, + [3804] = 2950, + [3805] = 2960, + [3806] = 2966, + [3807] = 2975, + [3808] = 2961, + [3809] = 2963, + [3810] = 2953, + [3811] = 2967, + [3812] = 2865, + [3813] = 2978, + [3814] = 2964, + [3815] = 3136, + [3816] = 2957, + [3817] = 2967, + [3818] = 2973, + [3819] = 2954, + [3820] = 2968, + [3821] = 2206, + [3822] = 2974, + [3823] = 3196, + [3824] = 2207, + [3825] = 2967, + [3826] = 2945, + [3827] = 2965, + [3828] = 2945, + [3829] = 2484, + [3830] = 2968, + [3831] = 2978, + [3832] = 2967, + [3833] = 2957, + [3834] = 2477, + [3835] = 2964, + [3836] = 2954, + [3837] = 2953, + [3838] = 2961, + [3839] = 2951, + [3840] = 2976, + [3841] = 2971, + [3842] = 2946, + [3843] = 2951, + [3844] = 2965, + [3845] = 2948, [3846] = 3846, - [3847] = 2619, - [3848] = 2599, - [3849] = 3849, - [3850] = 2598, - [3851] = 3851, - [3852] = 2622, - [3853] = 2618, - [3854] = 3854, - [3855] = 3855, - [3856] = 3856, - [3857] = 2620, - [3858] = 2597, - [3859] = 2594, - [3860] = 2583, - [3861] = 2599, - [3862] = 2604, - [3863] = 2598, - [3864] = 2611, - [3865] = 2621, - [3866] = 2632, - [3867] = 2586, - [3868] = 3868, - [3869] = 2605, - [3870] = 2378, - [3871] = 2598, - [3872] = 2599, - [3873] = 2628, - [3874] = 1942, - [3875] = 3875, - [3876] = 3876, - [3877] = 3777, - [3878] = 2618, - [3879] = 3854, - [3880] = 2583, - [3881] = 3881, - [3882] = 3882, - [3883] = 2354, - [3884] = 2586, - [3885] = 2591, - [3886] = 3886, - [3887] = 3887, - [3888] = 2595, - [3889] = 2591, - [3890] = 2619, - [3891] = 2628, - [3892] = 2584, - [3893] = 3893, - [3894] = 3894, - [3895] = 3895, - [3896] = 3896, - [3897] = 2633, - [3898] = 3898, - [3899] = 3899, - [3900] = 2584, - [3901] = 2215, - [3902] = 2212, - [3903] = 2619, - [3904] = 2598, - [3905] = 2594, - [3906] = 2622, - [3907] = 3907, - [3908] = 1921, - [3909] = 3777, - [3910] = 2448, - [3911] = 2597, - [3912] = 2598, - [3913] = 3293, - [3914] = 3914, - [3915] = 2615, - [3916] = 2617, - [3917] = 3917, - [3918] = 3918, - [3919] = 2622, - [3920] = 3854, - [3921] = 2618, - [3922] = 3922, - [3923] = 3923, - [3924] = 2617, - [3925] = 2622, - [3926] = 2584, - [3927] = 2633, - [3928] = 3928, - [3929] = 3854, - [3930] = 2583, - [3931] = 2599, - [3932] = 3854, - [3933] = 2615, - [3934] = 2618, - [3935] = 2611, - [3936] = 3936, - [3937] = 3777, - [3938] = 2584, - [3939] = 2594, - [3940] = 3940, - [3941] = 2583, - [3942] = 3942, - [3943] = 3733, - [3944] = 2620, - [3945] = 3945, - [3946] = 2632, - [3947] = 2597, - [3948] = 2604, - [3949] = 2213, - [3950] = 2633, - [3951] = 2605, - [3952] = 2595, - [3953] = 2633, - [3954] = 2611, - [3955] = 3955, - [3956] = 2617, - [3957] = 3957, - [3958] = 2591, - [3959] = 2594, - [3960] = 2598, - [3961] = 2584, - [3962] = 2621, - [3963] = 3963, - [3964] = 2632, - [3965] = 2605, - [3966] = 2620, - [3967] = 2615, - [3968] = 2595, - [3969] = 2591, - [3970] = 3970, - [3971] = 2584, - [3972] = 3972, - [3973] = 2426, - [3974] = 3974, - [3975] = 2633, - [3976] = 3854, - [3977] = 3977, - [3978] = 3978, - [3979] = 3979, - [3980] = 3980, - [3981] = 2618, - [3982] = 2619, - [3983] = 2591, - [3984] = 2597, - [3985] = 3985, - [3986] = 2597, - [3987] = 2615, - [3988] = 2615, - [3989] = 2604, - [3990] = 2633, - [3991] = 3777, - [3992] = 2617, - [3993] = 2591, - [3994] = 2599, - [3995] = 3995, - [3996] = 3917, - [3997] = 2619, - [3998] = 2605, - [3999] = 2411, - [4000] = 4000, - [4001] = 4001, - [4002] = 4002, - [4003] = 4003, - [4004] = 4004, - [4005] = 2586, - [4006] = 4006, - [4007] = 2209, - [4008] = 2628, - [4009] = 2586, - [4010] = 2583, - [4011] = 2594, - [4012] = 4012, - [4013] = 2586, - [4014] = 2619, - [4015] = 2597, - [4016] = 4016, - [4017] = 2620, - [4018] = 2621, - [4019] = 2632, - [4020] = 4020, - [4021] = 2598, - [4022] = 2619, - [4023] = 2595, - [4024] = 2619, - [4025] = 4025, + [3847] = 2950, + [3848] = 2502, + [3849] = 2978, + [3850] = 2505, + [3851] = 2944, + [3852] = 2945, + [3853] = 2960, + [3854] = 2968, + [3855] = 2947, + [3856] = 2973, + [3857] = 3196, + [3858] = 2954, + [3859] = 2974, + [3860] = 2974, + [3861] = 2967, + [3862] = 2978, + [3863] = 2957, + [3864] = 2954, + [3865] = 2974, + [3866] = 2976, + [3867] = 2482, + [3868] = 2971, + [3869] = 2948, + [3870] = 2951, + [3871] = 2948, + [3872] = 2974, + [3873] = 2207, + [3874] = 3779, + [3875] = 2965, + [3876] = 2974, + [3877] = 2206, + [3878] = 2374, + [3879] = 2975, + [3880] = 2351, + [3881] = 2213, + [3882] = 2954, + [3883] = 2442, + [3884] = 2375, + [3885] = 2208, + [3886] = 3194, + [3887] = 2489, + [3888] = 2216, + [3889] = 2957, + [3890] = 3890, + [3891] = 2978, + [3892] = 2976, + [3893] = 2971, + [3894] = 2948, + [3895] = 2965, + [3896] = 2967, + [3897] = 2963, + [3898] = 2403, + [3899] = 3194, + [3900] = 2976, + [3901] = 2971, + [3902] = 2418, + [3903] = 2951, + [3904] = 2948, + [3905] = 2409, + [3906] = 2944, + [3907] = 2431, + [3908] = 2947, + [3909] = 2211, + [3910] = 2945, + [3911] = 2968, + [3912] = 2973, + [3913] = 2974, + [3914] = 2975, + [3915] = 2976, + [3916] = 2971, + [3917] = 2967, + [3918] = 2392, + [3919] = 2430, + [3920] = 2964, + [3921] = 2953, + [3922] = 2371, + [3923] = 3068, + [3924] = 3164, + [3925] = 2961, + [3926] = 2425, + [3927] = 2214, + [3928] = 2350, + [3929] = 2407, + [3930] = 3164, + [3931] = 2975, + [3932] = 2973, + [3933] = 3175, + [3934] = 2975, + [3935] = 2370, + [3936] = 2376, + [3937] = 2384, + [3938] = 2471, + [3939] = 3078, + [3940] = 2976, + [3941] = 2971, + [3942] = 2458, + [3943] = 2946, + [3944] = 2950, + [3945] = 2444, + [3946] = 2445, + [3947] = 2446, + [3948] = 2973, + [3949] = 2968, + [3950] = 2945, + [3951] = 2359, + [3952] = 2944, + [3953] = 2963, + [3954] = 2947, + [3955] = 2945, + [3956] = 2965, + [3957] = 2965, + [3958] = 2976, + [3959] = 2963, + [3960] = 2975, + [3961] = 2210, + [3962] = 3065, + [3963] = 2450, + [3964] = 2947, + [3965] = 2963, + [3966] = 2944, + [3967] = 2978, + [3968] = 2960, + [3969] = 2948, + [3970] = 2951, + [3971] = 2963, + [3972] = 2957, + [3973] = 2504, + [3974] = 2954, + [3975] = 2966, + [3976] = 2971, + [3977] = 2951, + [3978] = 2975, + [3979] = 2966, + [3980] = 2960, + [3981] = 2950, + [3982] = 2946, + [3983] = 2961, + [3984] = 2953, + [3985] = 2964, + [3986] = 2499, + [3987] = 2973, + [3988] = 2968, + [3989] = 2968, + [3990] = 2967, + [3991] = 2964, + [3992] = 2953, + [3993] = 2965, + [3994] = 2945, + [3995] = 2961, + [3996] = 2968, + [3997] = 2973, + [3998] = 2964, + [3999] = 2953, + [4000] = 2961, + [4001] = 2946, + [4002] = 2950, + [4003] = 2960, + [4004] = 2966, + [4005] = 2975, + [4006] = 2946, + [4007] = 2976, + [4008] = 4008, + [4009] = 2950, + [4010] = 2978, + [4011] = 2945, + [4012] = 2951, + [4013] = 2948, + [4014] = 2965, + [4015] = 3065, + [4016] = 2944, + [4017] = 2960, + [4018] = 2963, + [4019] = 2947, + [4020] = 2957, + [4021] = 2954, + [4022] = 2966, + [4023] = 2974, + [4024] = 3782, + [4025] = 3065, [4026] = 4026, - [4027] = 2598, - [4028] = 2604, + [4027] = 4026, + [4028] = 3065, [4029] = 4029, [4030] = 4030, - [4031] = 2620, - [4032] = 2597, + [4031] = 3219, + [4032] = 3130, [4033] = 4033, - [4034] = 2214, - [4035] = 2586, + [4034] = 2966, + [4035] = 4035, [4036] = 4036, - [4037] = 3777, - [4038] = 2618, - [4039] = 4039, - [4040] = 4040, - [4041] = 4041, - [4042] = 2618, - [4043] = 4043, - [4044] = 2419, - [4045] = 2632, + [4037] = 4037, + [4038] = 2954, + [4039] = 2957, + [4040] = 2960, + [4041] = 2375, + [4042] = 2442, + [4043] = 2978, + [4044] = 2351, + [4045] = 2374, [4046] = 4046, - [4047] = 2597, - [4048] = 2615, - [4049] = 2620, - [4050] = 2598, - [4051] = 4051, - [4052] = 2403, - [4053] = 4053, - [4054] = 2617, - [4055] = 4055, - [4056] = 2584, - [4057] = 2617, - [4058] = 2591, - [4059] = 2595, - [4060] = 2605, - [4061] = 2632, - [4062] = 2621, - [4063] = 4063, - [4064] = 2611, - [4065] = 2620, - [4066] = 4066, - [4067] = 2594, - [4068] = 2622, - [4069] = 2595, + [4047] = 2950, + [4048] = 2946, + [4049] = 2976, + [4050] = 4026, + [4051] = 2971, + [4052] = 3175, + [4053] = 2961, + [4054] = 2948, + [4055] = 1946, + [4056] = 2953, + [4057] = 1947, + [4058] = 2964, + [4059] = 2967, + [4060] = 2971, + [4061] = 2976, + [4062] = 2425, + [4063] = 2965, + [4064] = 2975, + [4065] = 4065, + [4066] = 3213, + [4067] = 4067, + [4068] = 4068, + [4069] = 2974, [4070] = 4070, - [4071] = 2605, - [4072] = 2628, - [4073] = 2611, + [4071] = 3065, + [4072] = 2975, + [4073] = 4073, [4074] = 4074, - [4075] = 2619, - [4076] = 4076, - [4077] = 2621, - [4078] = 2617, - [4079] = 2615, - [4080] = 2622, - [4081] = 4081, - [4082] = 2618, - [4083] = 4083, - [4084] = 2594, - [4085] = 2604, - [4086] = 2599, - [4087] = 2583, - [4088] = 4088, - [4089] = 2599, - [4090] = 2583, - [4091] = 4091, - [4092] = 2604, - [4093] = 2584, + [4075] = 4075, + [4076] = 2973, + [4077] = 2968, + [4078] = 2973, + [4079] = 2945, + [4080] = 2965, + [4081] = 4065, + [4082] = 2948, + [4083] = 4036, + [4084] = 4037, + [4085] = 2403, + [4086] = 3255, + [4087] = 2948, + [4088] = 3231, + [4089] = 3297, + [4090] = 2951, + [4091] = 4046, + [4092] = 1974, + [4093] = 1977, [4094] = 4094, - [4095] = 2591, - [4096] = 2611, - [4097] = 4097, - [4098] = 2595, - [4099] = 2605, - [4100] = 2632, - [4101] = 2621, - [4102] = 2584, - [4103] = 2610, - [4104] = 4046, - [4105] = 2618, - [4106] = 3846, - [4107] = 2610, - [4108] = 3855, - [4109] = 2598, - [4110] = 3936, - [4111] = 4088, - [4112] = 3985, - [4113] = 3923, - [4114] = 3896, - [4115] = 2616, - [4116] = 2628, - [4117] = 2633, - [4118] = 2610, - [4119] = 2615, + [4095] = 2965, + [4096] = 2945, + [4097] = 2968, + [4098] = 2973, + [4099] = 2974, + [4100] = 3256, + [4101] = 2975, + [4102] = 2976, + [4103] = 4103, + [4104] = 3303, + [4105] = 3205, + [4106] = 2971, + [4107] = 2967, + [4108] = 4037, + [4109] = 3248, + [4110] = 4036, + [4111] = 2963, + [4112] = 4035, + [4113] = 2964, + [4114] = 3253, + [4115] = 2953, + [4116] = 2961, + [4117] = 4117, + [4118] = 4073, + [4119] = 2946, [4120] = 4120, - [4121] = 3293, - [4122] = 2617, - [4123] = 3774, - [4124] = 1921, - [4125] = 4070, - [4126] = 2583, - [4127] = 2595, - [4128] = 2591, - [4129] = 2584, - [4130] = 2619, - [4131] = 4131, - [4132] = 4066, - [4133] = 4041, - [4134] = 4134, - [4135] = 2598, + [4121] = 3266, + [4122] = 3322, + [4123] = 3215, + [4124] = 2418, + [4125] = 4035, + [4126] = 1946, + [4127] = 4036, + [4128] = 4037, + [4129] = 4129, + [4130] = 2973, + [4131] = 2951, + [4132] = 2950, + [4133] = 4046, + [4134] = 2975, + [4135] = 2409, [4136] = 4136, - [4137] = 3940, - [4138] = 2620, - [4139] = 2597, - [4140] = 2586, - [4141] = 2621, - [4142] = 2584, - [4143] = 2597, - [4144] = 2586, - [4145] = 3840, + [4137] = 2971, + [4138] = 2948, + [4139] = 4139, + [4140] = 2978, + [4141] = 2431, + [4142] = 4142, + [4143] = 4143, + [4144] = 4065, + [4145] = 4145, [4146] = 4146, - [4147] = 2591, - [4148] = 3895, - [4149] = 3974, - [4150] = 3995, - [4151] = 2595, - [4152] = 2584, + [4147] = 4147, + [4148] = 2951, + [4149] = 2951, + [4150] = 4150, + [4151] = 4151, + [4152] = 2967, [4153] = 4153, - [4154] = 2605, - [4155] = 3816, - [4156] = 2632, - [4157] = 2591, - [4158] = 3922, - [4159] = 2594, - [4160] = 2599, - [4161] = 2597, - [4162] = 2620, - [4163] = 2583, - [4164] = 2594, - [4165] = 3894, - [4166] = 2595, - [4167] = 2605, + [4154] = 2960, + [4155] = 2976, + [4156] = 4156, + [4157] = 3267, + [4158] = 3790, + [4159] = 2957, + [4160] = 2954, + [4161] = 2966, + [4162] = 4067, + [4163] = 2198, + [4164] = 4067, + [4165] = 2965, + [4166] = 2430, + [4167] = 4167, [4168] = 4168, - [4169] = 2598, - [4170] = 2619, - [4171] = 2599, - [4172] = 2621, - [4173] = 2604, - [4174] = 4174, - [4175] = 4175, - [4176] = 2632, - [4177] = 2583, - [4178] = 2611, - [4179] = 2621, - [4180] = 2611, - [4181] = 2604, - [4182] = 2604, - [4183] = 2599, - [4184] = 4053, - [4185] = 3769, - [4186] = 2599, - [4187] = 3970, - [4188] = 3881, - [4189] = 2611, + [4169] = 2951, + [4170] = 4026, + [4171] = 4065, + [4172] = 4172, + [4173] = 2945, + [4174] = 2975, + [4175] = 2951, + [4176] = 3287, + [4177] = 2951, + [4178] = 2384, + [4179] = 4179, + [4180] = 4180, + [4181] = 4181, + [4182] = 2213, + [4183] = 2208, + [4184] = 3307, + [4185] = 3200, + [4186] = 2371, + [4187] = 3313, + [4188] = 2216, + [4189] = 4067, [4190] = 4190, - [4191] = 2632, - [4192] = 2605, - [4193] = 2618, - [4194] = 2595, - [4195] = 2583, + [4191] = 2965, + [4192] = 4192, + [4193] = 2376, + [4194] = 2948, + [4195] = 3295, [4196] = 4196, - [4197] = 2594, - [4198] = 3775, - [4199] = 2591, - [4200] = 2618, - [4201] = 4146, - [4202] = 2616, - [4203] = 3876, - [4204] = 4204, - [4205] = 4153, - [4206] = 4206, - [4207] = 2628, - [4208] = 3957, - [4209] = 4209, - [4210] = 4029, - [4211] = 2616, - [4212] = 4012, - [4213] = 2583, - [4214] = 2586, - [4215] = 2597, - [4216] = 2620, - [4217] = 3771, - [4218] = 2594, - [4219] = 2628, - [4220] = 2598, - [4221] = 2619, - [4222] = 2633, - [4223] = 2615, - [4224] = 3980, - [4225] = 2617, - [4226] = 2618, - [4227] = 4146, - [4228] = 4136, - [4229] = 2604, - [4230] = 3914, - [4231] = 3955, - [4232] = 4175, - [4233] = 4043, - [4234] = 2617, - [4235] = 2610, - [4236] = 4016, - [4237] = 2893, - [4238] = 4238, - [4239] = 2619, - [4240] = 3770, - [4241] = 2116, - [4242] = 3803, - [4243] = 2618, - [4244] = 3963, - [4245] = 2633, - [4246] = 2615, - [4247] = 2633, - [4248] = 4248, - [4249] = 4083, - [4250] = 2615, - [4251] = 3868, - [4252] = 3817, - [4253] = 4253, - [4254] = 2611, - [4255] = 2621, - [4256] = 2632, - [4257] = 2586, - [4258] = 2628, - [4259] = 2617, - [4260] = 2616, - [4261] = 2605, - [4262] = 2457, - [4263] = 2619, - [4264] = 2594, - [4265] = 2598, - [4266] = 4209, - [4267] = 2595, - [4268] = 4168, - [4269] = 4063, - [4270] = 2628, - [4271] = 2620, - [4272] = 2591, - [4273] = 3979, - [4274] = 4274, - [4275] = 2633, - [4276] = 2615, - [4277] = 3942, - [4278] = 4097, - [4279] = 2617, - [4280] = 2584, - [4281] = 4281, - [4282] = 3917, + [4197] = 3294, + [4198] = 4046, + [4199] = 2211, + [4200] = 4200, + [4201] = 4201, + [4202] = 4046, + [4203] = 1947, + [4204] = 2965, + [4205] = 2945, + [4206] = 2968, + [4207] = 2973, + [4208] = 2974, + [4209] = 2975, + [4210] = 4065, + [4211] = 2976, + [4212] = 2971, + [4213] = 2967, + [4214] = 4214, + [4215] = 4215, + [4216] = 2964, + [4217] = 2953, + [4218] = 2961, + [4219] = 3288, + [4220] = 4220, + [4221] = 3289, + [4222] = 3231, + [4223] = 3292, + [4224] = 3293, + [4225] = 4225, + [4226] = 3296, + [4227] = 3299, + [4228] = 3300, + [4229] = 3305, + [4230] = 3306, + [4231] = 3265, + [4232] = 3324, + [4233] = 3220, + [4234] = 3321, + [4235] = 4037, + [4236] = 2968, + [4237] = 3276, + [4238] = 2946, + [4239] = 2950, + [4240] = 4240, + [4241] = 2978, + [4242] = 4036, + [4243] = 1985, + [4244] = 2960, + [4245] = 4067, + [4246] = 4246, + [4247] = 2957, + [4248] = 2963, + [4249] = 2948, + [4250] = 4046, + [4251] = 2964, + [4252] = 2954, + [4253] = 2953, + [4254] = 2961, + [4255] = 2946, + [4256] = 4256, + [4257] = 2950, + [4258] = 2978, + [4259] = 3226, + [4260] = 4260, + [4261] = 4261, + [4262] = 2974, + [4263] = 2966, + [4264] = 2198, + [4265] = 2965, + [4266] = 2945, + [4267] = 2968, + [4268] = 2214, + [4269] = 4026, + [4270] = 2948, + [4271] = 4271, + [4272] = 4272, + [4273] = 2210, + [4274] = 2370, + [4275] = 2973, + [4276] = 4035, + [4277] = 2407, + [4278] = 2444, + [4279] = 2350, + [4280] = 4067, + [4281] = 2445, + [4282] = 4282, [4283] = 4283, - [4284] = 4146, - [4285] = 2461, - [4286] = 4020, - [4287] = 2605, - [4288] = 2610, - [4289] = 2632, - [4290] = 2621, - [4291] = 2611, - [4292] = 2604, - [4293] = 2599, - [4294] = 2620, - [4295] = 3887, - [4296] = 2597, - [4297] = 2616, - [4298] = 4036, - [4299] = 2586, - [4300] = 3886, - [4301] = 2584, - [4302] = 4302, - [4303] = 4303, - [4304] = 4304, - [4305] = 4303, - [4306] = 4306, - [4307] = 4307, - [4308] = 4303, - [4309] = 4306, - [4310] = 2597, - [4311] = 2628, - [4312] = 2605, - [4313] = 4306, - [4314] = 2597, - [4315] = 4315, - [4316] = 4316, - [4317] = 4303, - [4318] = 4303, - [4319] = 4319, - [4320] = 2619, - [4321] = 2605, - [4322] = 4303, - [4323] = 4304, - [4324] = 2584, - [4325] = 2628, - [4326] = 4326, - [4327] = 4327, - [4328] = 4306, - [4329] = 4306, - [4330] = 4306, - [4331] = 4331, - [4332] = 4306, - [4333] = 2591, - [4334] = 4303, - [4335] = 2598, - [4336] = 2595, - [4337] = 4337, - [4338] = 4338, - [4339] = 4339, - [4340] = 2594, - [4341] = 4341, - [4342] = 4342, - [4343] = 4343, - [4344] = 4303, - [4345] = 4345, - [4346] = 2598, - [4347] = 4306, - [4348] = 4302, - [4349] = 4349, - [4350] = 2583, - [4351] = 2595, - [4352] = 2591, - [4353] = 4306, - [4354] = 4354, - [4355] = 4303, - [4356] = 4306, - [4357] = 2618, - [4358] = 2583, - [4359] = 2599, - [4360] = 2604, - [4361] = 4338, - [4362] = 4362, - [4363] = 4303, - [4364] = 4303, - [4365] = 2611, - [4366] = 2632, - [4367] = 4304, - [4368] = 3293, - [4369] = 4303, - [4370] = 4306, - [4371] = 2621, - [4372] = 4303, - [4373] = 4315, - [4374] = 2605, - [4375] = 4375, - [4376] = 4376, - [4377] = 2632, - [4378] = 2583, - [4379] = 2621, - [4380] = 4380, - [4381] = 4303, - [4382] = 2632, - [4383] = 2598, - [4384] = 4303, - [4385] = 2594, - [4386] = 2586, - [4387] = 4303, - [4388] = 2617, - [4389] = 4345, + [4284] = 4037, + [4285] = 4285, + [4286] = 2951, + [4287] = 4287, + [4288] = 2965, + [4289] = 2974, + [4290] = 2945, + [4291] = 3218, + [4292] = 4292, + [4293] = 4293, + [4294] = 2966, + [4295] = 2954, + [4296] = 2960, + [4297] = 2957, + [4298] = 2957, + [4299] = 2960, + [4300] = 2954, + [4301] = 2966, + [4302] = 2975, + [4303] = 4036, + [4304] = 2978, + [4305] = 2950, + [4306] = 3203, + [4307] = 2968, + [4308] = 2946, + [4309] = 3241, + [4310] = 2961, + [4311] = 3336, + [4312] = 2973, + [4313] = 2953, + [4314] = 2964, + [4315] = 2967, + [4316] = 2974, + [4317] = 4035, + [4318] = 3251, + [4319] = 3259, + [4320] = 2948, + [4321] = 2945, + [4322] = 4046, + [4323] = 2975, + [4324] = 4324, + [4325] = 3201, + [4326] = 3251, + [4327] = 3229, + [4328] = 2446, + [4329] = 4037, + [4330] = 4036, + [4331] = 3340, + [4332] = 2968, + [4333] = 2963, + [4334] = 4035, + [4335] = 3343, + [4336] = 2971, + [4337] = 2976, + [4338] = 3325, + [4339] = 2966, + [4340] = 2954, + [4341] = 3270, + [4342] = 2971, + [4343] = 2957, + [4344] = 2960, + [4345] = 2978, + [4346] = 2976, + [4347] = 2950, + [4348] = 3207, + [4349] = 2946, + [4350] = 2945, + [4351] = 2961, + [4352] = 4046, + [4353] = 2953, + [4354] = 3317, + [4355] = 2964, + [4356] = 3065, + [4357] = 4037, + [4358] = 4036, + [4359] = 2967, + [4360] = 3285, + [4361] = 3312, + [4362] = 4035, + [4363] = 4035, + [4364] = 2976, + [4365] = 2971, + [4366] = 2976, + [4367] = 3216, + [4368] = 4368, + [4369] = 2359, + [4370] = 3316, + [4371] = 2971, + [4372] = 2450, + [4373] = 2975, + [4374] = 2974, + [4375] = 2973, + [4376] = 2968, + [4377] = 3304, + [4378] = 2945, + [4379] = 3319, + [4380] = 2965, + [4381] = 2967, + [4382] = 2964, + [4383] = 4065, + [4384] = 3257, + [4385] = 2953, + [4386] = 2961, + [4387] = 2946, + [4388] = 2948, + [4389] = 2963, [4390] = 4390, [4391] = 4391, - [4392] = 4392, - [4393] = 4303, - [4394] = 4303, - [4395] = 2893, - [4396] = 4326, - [4397] = 4345, - [4398] = 4398, - [4399] = 2615, - [4400] = 4337, - [4401] = 4401, - [4402] = 4303, - [4403] = 4345, - [4404] = 2618, - [4405] = 2633, - [4406] = 2595, - [4407] = 2628, - [4408] = 2633, - [4409] = 2619, - [4410] = 4410, - [4411] = 2598, - [4412] = 4345, - [4413] = 2591, - [4414] = 2584, - [4415] = 2597, - [4416] = 2628, - [4417] = 4304, - [4418] = 4418, - [4419] = 4303, - [4420] = 4306, - [4421] = 2615, - [4422] = 2617, - [4423] = 4307, - [4424] = 4303, - [4425] = 4345, - [4426] = 4303, - [4427] = 4303, - [4428] = 2617, - [4429] = 4341, - [4430] = 2615, - [4431] = 2611, - [4432] = 2604, - [4433] = 4339, - [4434] = 4303, - [4435] = 2599, - [4436] = 2620, - [4437] = 2594, - [4438] = 4303, - [4439] = 2617, - [4440] = 4303, - [4441] = 2619, - [4442] = 4307, - [4443] = 4306, - [4444] = 2621, - [4445] = 2611, - [4446] = 2633, - [4447] = 4303, - [4448] = 2628, - [4449] = 4303, - [4450] = 2618, - [4451] = 4306, - [4452] = 2633, - [4453] = 2604, - [4454] = 4303, - [4455] = 4319, - [4456] = 4337, - [4457] = 2618, - [4458] = 4303, - [4459] = 2583, - [4460] = 2594, - [4461] = 4307, - [4462] = 4306, - [4463] = 4463, - [4464] = 4306, - [4465] = 4338, - [4466] = 2620, - [4467] = 4467, - [4468] = 4303, - [4469] = 4303, - [4470] = 2599, - [4471] = 4341, - [4472] = 4339, - [4473] = 4319, - [4474] = 2583, - [4475] = 4303, - [4476] = 2586, - [4477] = 4342, - [4478] = 3733, - [4479] = 4354, - [4480] = 4338, - [4481] = 4481, - [4482] = 2633, - [4483] = 4339, - [4484] = 4316, - [4485] = 4485, - [4486] = 4303, - [4487] = 4341, - [4488] = 4306, - [4489] = 2620, - [4490] = 4490, - [4491] = 4303, - [4492] = 4303, - [4493] = 2619, + [4392] = 3318, + [4393] = 3302, + [4394] = 4026, + [4395] = 1920, + [4396] = 3298, + [4397] = 2950, + [4398] = 2967, + [4399] = 4399, + [4400] = 2951, + [4401] = 3281, + [4402] = 4402, + [4403] = 4026, + [4404] = 2978, + [4405] = 3209, + [4406] = 2968, + [4407] = 2967, + [4408] = 2964, + [4409] = 2953, + [4410] = 2961, + [4411] = 2946, + [4412] = 2950, + [4413] = 2978, + [4414] = 4414, + [4415] = 2960, + [4416] = 2957, + [4417] = 2974, + [4418] = 2954, + [4419] = 2966, + [4420] = 2966, + [4421] = 2954, + [4422] = 2392, + [4423] = 2974, + [4424] = 4026, + [4425] = 3234, + [4426] = 2963, + [4427] = 3278, + [4428] = 4428, + [4429] = 3273, + [4430] = 2966, + [4431] = 2954, + [4432] = 2957, + [4433] = 3279, + [4434] = 2957, + [4435] = 2973, + [4436] = 3221, + [4437] = 2960, + [4438] = 3208, + [4439] = 2116, + [4440] = 2960, + [4441] = 2978, + [4442] = 2950, + [4443] = 2946, + [4444] = 2963, + [4445] = 2961, + [4446] = 2953, + [4447] = 2964, + [4448] = 2967, + [4449] = 4261, + [4450] = 4260, + [4451] = 2965, + [4452] = 4452, + [4453] = 2951, + [4454] = 3276, + [4455] = 4368, + [4456] = 4200, + [4457] = 4457, + [4458] = 3226, + [4459] = 3285, + [4460] = 4073, + [4461] = 1947, + [4462] = 2951, + [4463] = 1946, + [4464] = 2961, + [4465] = 4150, + [4466] = 3317, + [4467] = 3288, + [4468] = 4468, + [4469] = 3292, + [4470] = 3065, + [4471] = 2974, + [4472] = 2967, + [4473] = 2964, + [4474] = 3065, + [4475] = 2953, + [4476] = 2961, + [4477] = 2946, + [4478] = 2950, + [4479] = 2978, + [4480] = 2960, + [4481] = 2957, + [4482] = 2954, + [4483] = 2966, + [4484] = 3232, + [4485] = 3256, + [4486] = 3177, + [4487] = 3065, + [4488] = 3065, + [4489] = 2976, + [4490] = 2971, + [4491] = 3321, + [4492] = 2945, + [4493] = 2948, [4494] = 4494, - [4495] = 4303, - [4496] = 2620, - [4497] = 4497, - [4498] = 2628, - [4499] = 2633, - [4500] = 4497, - [4501] = 2615, - [4502] = 2617, - [4503] = 4316, - [4504] = 4303, - [4505] = 4303, - [4506] = 4497, - [4507] = 4303, - [4508] = 4306, - [4509] = 4303, - [4510] = 4510, - [4511] = 2619, - [4512] = 2598, - [4513] = 3733, - [4514] = 3293, - [4515] = 4497, - [4516] = 2599, - [4517] = 4303, - [4518] = 2615, - [4519] = 4303, - [4520] = 3733, - [4521] = 2615, - [4522] = 4522, - [4523] = 4494, - [4524] = 4303, - [4525] = 2598, - [4526] = 2594, - [4527] = 4338, - [4528] = 2599, - [4529] = 2604, - [4530] = 2611, - [4531] = 2621, - [4532] = 2617, - [4533] = 4303, - [4534] = 2594, - [4535] = 2632, - [4536] = 2605, - [4537] = 2595, - [4538] = 2591, - [4539] = 2584, - [4540] = 2597, - [4541] = 4342, - [4542] = 2586, - [4543] = 2604, - [4544] = 2583, - [4545] = 2599, - [4546] = 2586, - [4547] = 4354, - [4548] = 2586, - [4549] = 4306, - [4550] = 4494, - [4551] = 4303, - [4552] = 2618, - [4553] = 2611, - [4554] = 4303, - [4555] = 2621, - [4556] = 4302, - [4557] = 2597, - [4558] = 4341, - [4559] = 4559, - [4560] = 4339, - [4561] = 2620, - [4562] = 4562, - [4563] = 4303, - [4564] = 4303, - [4565] = 4306, - [4566] = 2618, - [4567] = 4316, - [4568] = 2604, - [4569] = 2584, - [4570] = 2619, - [4571] = 4303, - [4572] = 2591, - [4573] = 2595, - [4574] = 4574, - [4575] = 2605, - [4576] = 2632, - [4577] = 2632, - [4578] = 4578, - [4579] = 4341, - [4580] = 4306, - [4581] = 4581, - [4582] = 4339, - [4583] = 2586, - [4584] = 2605, - [4585] = 2621, - [4586] = 2595, - [4587] = 4494, - [4588] = 2611, - [4589] = 4338, - [4590] = 4354, - [4591] = 4302, - [4592] = 4342, - [4593] = 2591, - [4594] = 4306, - [4595] = 2597, - [4596] = 2620, - [4597] = 2584, - [4598] = 4337, - [4599] = 4319, - [4600] = 4600, - [4601] = 4600, - [4602] = 4602, - [4603] = 4600, - [4604] = 3328, - [4605] = 4600, - [4606] = 4600, - [4607] = 4600, - [4608] = 4600, - [4609] = 3137, - [4610] = 4600, - [4611] = 4600, - [4612] = 4600, - [4613] = 4600, - [4614] = 4600, - [4615] = 4600, - [4616] = 4600, - [4617] = 2392, - [4618] = 4600, - [4619] = 2474, - [4620] = 4600, - [4621] = 4600, - [4622] = 4600, - [4623] = 4600, - [4624] = 4600, - [4625] = 4600, - [4626] = 4600, - [4627] = 4600, - [4628] = 4602, - [4629] = 4600, - [4630] = 4600, - [4631] = 4600, - [4632] = 4600, - [4633] = 4600, - [4634] = 4600, - [4635] = 4600, - [4636] = 4600, - [4637] = 3293, - [4638] = 4600, - [4639] = 4600, - [4640] = 3742, - [4641] = 3137, - [4642] = 3293, - [4643] = 3328, - [4644] = 2116, - [4645] = 3293, - [4646] = 2219, - [4647] = 3293, - [4648] = 3379, - [4649] = 3360, - [4650] = 3450, - [4651] = 2219, - [4652] = 2206, - [4653] = 2893, - [4654] = 2207, - [4655] = 2217, - [4656] = 4656, - [4657] = 2426, - [4658] = 3577, - [4659] = 2481, - [4660] = 2392, - [4661] = 3616, - [4662] = 2206, - [4663] = 2207, - [4664] = 2507, - [4665] = 2474, - [4666] = 2490, - [4667] = 2502, - [4668] = 3293, - [4669] = 2217, - [4670] = 2206, - [4671] = 2207, - [4672] = 3617, - [4673] = 2501, - [4674] = 2506, - [4675] = 3617, + [4495] = 2968, + [4496] = 3023, + [4497] = 3001, + [4498] = 2954, + [4499] = 3218, + [4500] = 2957, + [4501] = 2973, + [4502] = 4502, + [4503] = 2978, + [4504] = 2967, + [4505] = 4502, + [4506] = 4494, + [4507] = 3289, + [4508] = 4452, + [4509] = 2974, + [4510] = 3051, + [4511] = 2975, + [4512] = 3259, + [4513] = 2951, + [4514] = 3065, + [4515] = 3186, + [4516] = 4516, + [4517] = 4517, + [4518] = 2976, + [4519] = 2971, + [4520] = 4151, + [4521] = 2965, + [4522] = 2944, + [4523] = 2964, + [4524] = 2945, + [4525] = 3065, + [4526] = 3187, + [4527] = 3207, + [4528] = 4147, + [4529] = 4143, + [4530] = 4142, + [4531] = 4192, + [4532] = 4136, + [4533] = 2968, + [4534] = 2973, + [4535] = 2975, + [4536] = 3296, + [4537] = 2974, + [4538] = 3241, + [4539] = 4428, + [4540] = 2458, + [4541] = 2471, + [4542] = 4542, + [4543] = 2973, + [4544] = 3203, + [4545] = 3008, + [4546] = 2968, + [4547] = 3205, + [4548] = 3303, + [4549] = 2945, + [4550] = 3336, + [4551] = 2964, + [4552] = 2953, + [4553] = 3253, + [4554] = 3248, + [4555] = 2966, + [4556] = 3208, + [4557] = 2954, + [4558] = 2947, + [4559] = 3325, + [4560] = 4542, + [4561] = 3221, + [4562] = 2957, + [4563] = 2960, + [4564] = 2951, + [4565] = 3343, + [4566] = 2978, + [4567] = 2950, + [4568] = 3293, + [4569] = 4246, + [4570] = 3340, + [4571] = 2946, + [4572] = 3201, + [4573] = 3065, + [4574] = 3312, + [4575] = 3316, + [4576] = 2961, + [4577] = 4577, + [4578] = 4190, + [4579] = 4579, + [4580] = 4070, + [4581] = 4272, + [4582] = 3130, + [4583] = 4390, + [4584] = 4391, + [4585] = 4402, + [4586] = 4586, + [4587] = 3319, + [4588] = 3267, + [4589] = 4220, + [4590] = 2953, + [4591] = 4591, + [4592] = 4225, + [4593] = 3270, + [4594] = 4240, + [4595] = 3294, + [4596] = 3318, + [4597] = 2946, + [4598] = 3266, + [4599] = 2197, + [4600] = 2950, + [4601] = 4601, + [4602] = 4516, + [4603] = 2865, + [4604] = 4153, + [4605] = 3255, + [4606] = 4180, + [4607] = 2960, + [4608] = 4517, + [4609] = 2966, + [4610] = 3302, + [4611] = 2967, + [4612] = 3298, + [4613] = 2964, + [4614] = 2953, + [4615] = 3313, + [4616] = 2985, + [4617] = 2961, + [4618] = 2944, + [4619] = 2946, + [4620] = 2950, + [4621] = 3281, + [4622] = 2978, + [4623] = 4623, + [4624] = 2960, + [4625] = 2975, + [4626] = 2957, + [4627] = 2954, + [4628] = 2966, + [4629] = 4324, + [4630] = 4215, + [4631] = 2948, + [4632] = 2945, + [4633] = 3300, + [4634] = 4634, + [4635] = 3065, + [4636] = 4196, + [4637] = 1920, + [4638] = 2976, + [4639] = 3322, + [4640] = 2968, + [4641] = 4168, + [4642] = 2973, + [4643] = 2974, + [4644] = 3304, + [4645] = 4645, + [4646] = 4646, + [4647] = 3200, + [4648] = 4094, + [4649] = 4649, + [4650] = 4650, + [4651] = 4651, + [4652] = 3287, + [4653] = 4653, + [4654] = 3216, + [4655] = 2975, + [4656] = 2971, + [4657] = 4542, + [4658] = 2865, + [4659] = 2947, + [4660] = 2948, + [4661] = 2965, + [4662] = 2967, + [4663] = 2964, + [4664] = 2944, + [4665] = 2953, + [4666] = 3209, + [4667] = 2961, + [4668] = 2947, + [4669] = 2946, + [4670] = 3192, + [4671] = 3065, + [4672] = 3006, + [4673] = 2950, + [4674] = 3229, + [4675] = 3234, [4676] = 4676, - [4677] = 2214, - [4678] = 2215, - [4679] = 2212, - [4680] = 2433, - [4681] = 3681, - [4682] = 3681, - [4683] = 2213, - [4684] = 2219, - [4685] = 2208, - [4686] = 2365, - [4687] = 2435, - [4688] = 2452, - [4689] = 2209, - [4690] = 2208, - [4691] = 3293, - [4692] = 2451, - [4693] = 2457, - [4694] = 2461, - [4695] = 2380, - [4696] = 2369, - [4697] = 2356, - [4698] = 2414, - [4699] = 2368, - [4700] = 2511, - [4701] = 2893, - [4702] = 2513, - [4703] = 2209, - [4704] = 3450, - [4705] = 2425, - [4706] = 2411, - [4707] = 4707, - [4708] = 2403, - [4709] = 3587, - [4710] = 2376, - [4711] = 2419, - [4712] = 2515, - [4713] = 3587, - [4714] = 4714, - [4715] = 3616, - [4716] = 2212, - [4717] = 2215, - [4718] = 2354, - [4719] = 3560, - [4720] = 2421, - [4721] = 2448, - [4722] = 2214, - [4723] = 2499, - [4724] = 4714, - [4725] = 2378, - [4726] = 2383, - [4727] = 3379, - [4728] = 2498, - [4729] = 3293, - [4730] = 3360, - [4731] = 2213, - [4732] = 2207, + [4677] = 3195, + [4678] = 2978, + [4679] = 3278, + [4680] = 2965, + [4681] = 3279, + [4682] = 2960, + [4683] = 3180, + [4684] = 2957, + [4685] = 2954, + [4686] = 2966, + [4687] = 4181, + [4688] = 3299, + [4689] = 3306, + [4690] = 2944, + [4691] = 2945, + [4692] = 2968, + [4693] = 2973, + [4694] = 2947, + [4695] = 3013, + [4696] = 2974, + [4697] = 2975, + [4698] = 3065, + [4699] = 2951, + [4700] = 2965, + [4701] = 2948, + [4702] = 2976, + [4703] = 2971, + [4704] = 2948, + [4705] = 2971, + [4706] = 2976, + [4707] = 3215, + [4708] = 4542, + [4709] = 4709, + [4710] = 3010, + [4711] = 2947, + [4712] = 3324, + [4713] = 3265, + [4714] = 3213, + [4715] = 3051, + [4716] = 3297, + [4717] = 3014, + [4718] = 3065, + [4719] = 3273, + [4720] = 2944, + [4721] = 3305, + [4722] = 3295, + [4723] = 4723, + [4724] = 2976, + [4725] = 4725, + [4726] = 4726, + [4727] = 2945, + [4728] = 3550, + [4729] = 2966, + [4730] = 2974, + [4731] = 4731, + [4732] = 2973, [4733] = 4733, - [4734] = 2206, - [4735] = 4707, - [4736] = 3577, - [4737] = 2215, - [4738] = 3882, - [4739] = 3851, - [4740] = 1942, - [4741] = 4741, - [4742] = 3822, - [4743] = 3899, - [4744] = 1943, - [4745] = 3856, - [4746] = 4746, - [4747] = 4747, - [4748] = 3928, - [4749] = 4741, - [4750] = 3742, - [4751] = 2448, - [4752] = 2376, - [4753] = 2425, - [4754] = 3293, - [4755] = 4747, - [4756] = 1992, - [4757] = 1989, - [4758] = 4006, - [4759] = 4759, - [4760] = 3768, - [4761] = 4746, - [4762] = 4762, - [4763] = 4763, - [4764] = 4741, - [4765] = 4747, + [4734] = 2968, + [4735] = 2967, + [4736] = 2967, + [4737] = 2964, + [4738] = 2953, + [4739] = 2961, + [4740] = 2946, + [4741] = 2950, + [4742] = 4742, + [4743] = 2978, + [4744] = 2960, + [4745] = 2975, + [4746] = 2957, + [4747] = 2954, + [4748] = 2966, + [4749] = 2974, + [4750] = 2964, + [4751] = 4751, + [4752] = 4723, + [4753] = 2953, + [4754] = 4754, + [4755] = 4755, + [4756] = 2961, + [4757] = 2946, + [4758] = 4758, + [4759] = 2950, + [4760] = 2978, + [4761] = 4751, + [4762] = 4733, + [4763] = 2951, + [4764] = 4758, + [4765] = 4765, [4766] = 4766, - [4767] = 4074, - [4768] = 4763, - [4769] = 4091, - [4770] = 4094, - [4771] = 4762, - [4772] = 3823, - [4773] = 4746, - [4774] = 1921, - [4775] = 2414, - [4776] = 4076, - [4777] = 2356, - [4778] = 2369, - [4779] = 2380, - [4780] = 2392, - [4781] = 2208, - [4782] = 2209, - [4783] = 1942, - [4784] = 1943, - [4785] = 4785, - [4786] = 2213, - [4787] = 2451, - [4788] = 1949, - [4789] = 2452, - [4790] = 2212, - [4791] = 3868, - [4792] = 2435, - [4793] = 4793, - [4794] = 2214, - [4795] = 2365, - [4796] = 2433, - [4797] = 4763, - [4798] = 4762, - [4799] = 4762, - [4800] = 4746, - [4801] = 2116, - [4802] = 4802, - [4803] = 4746, - [4804] = 4762, - [4805] = 4763, - [4806] = 4763, - [4807] = 3819, - [4808] = 4083, - [4809] = 3824, - [4810] = 3979, - [4811] = 3922, - [4812] = 4741, - [4813] = 3841, - [4814] = 4741, - [4815] = 4763, - [4816] = 4762, - [4817] = 3895, - [4818] = 4741, - [4819] = 3846, - [4820] = 2368, - [4821] = 3817, - [4822] = 4822, - [4823] = 2383, - [4824] = 4747, - [4825] = 4016, - [4826] = 4746, - [4827] = 3776, - [4828] = 3803, - [4829] = 3875, - [4830] = 4830, - [4831] = 2378, - [4832] = 4741, - [4833] = 3770, - [4834] = 4066, - [4835] = 3923, - [4836] = 4763, - [4837] = 3936, - [4838] = 3940, - [4839] = 3957, - [4840] = 3963, - [4841] = 4841, - [4842] = 4762, + [4767] = 4767, + [4768] = 2945, + [4769] = 4733, + [4770] = 4770, + [4771] = 4771, + [4772] = 4772, + [4773] = 2968, + [4774] = 4723, + [4775] = 4775, + [4776] = 4758, + [4777] = 4723, + [4778] = 2960, + [4779] = 2957, + [4780] = 4780, + [4781] = 4733, + [4782] = 4782, + [4783] = 4783, + [4784] = 4784, + [4785] = 4758, + [4786] = 4733, + [4787] = 4787, + [4788] = 4788, + [4789] = 4789, + [4790] = 4723, + [4791] = 2967, + [4792] = 4758, + [4793] = 4765, + [4794] = 4733, + [4795] = 4733, + [4796] = 4755, + [4797] = 2951, + [4798] = 4733, + [4799] = 4754, + [4800] = 4800, + [4801] = 4758, + [4802] = 4733, + [4803] = 4723, + [4804] = 4733, + [4805] = 2951, + [4806] = 3065, + [4807] = 4807, + [4808] = 4723, + [4809] = 4733, + [4810] = 2978, + [4811] = 4811, + [4812] = 4811, + [4813] = 4723, + [4814] = 4733, + [4815] = 2951, + [4816] = 4758, + [4817] = 4723, + [4818] = 2960, + [4819] = 3790, + [4820] = 2973, + [4821] = 2951, + [4822] = 2954, + [4823] = 2974, + [4824] = 4824, + [4825] = 4825, + [4826] = 4826, + [4827] = 4827, + [4828] = 4789, + [4829] = 4723, + [4830] = 2965, + [4831] = 4733, + [4832] = 2948, + [4833] = 3550, + [4834] = 4723, + [4835] = 3014, + [4836] = 3013, + [4837] = 3010, + [4838] = 2971, + [4839] = 2976, + [4840] = 3008, + [4841] = 3001, + [4842] = 3023, [4843] = 4843, - [4844] = 4036, - [4845] = 3293, - [4846] = 4846, - [4847] = 4847, - [4848] = 4012, - [4849] = 4746, - [4850] = 4850, - [4851] = 4851, - [4852] = 4852, - [4853] = 4074, - [4854] = 3980, - [4855] = 3974, - [4856] = 4856, - [4857] = 4857, - [4858] = 3840, - [4859] = 3775, - [4860] = 3876, - [4861] = 3914, - [4862] = 3955, - [4863] = 4063, - [4864] = 4070, - [4865] = 4746, - [4866] = 3293, - [4867] = 2421, - [4868] = 3849, - [4869] = 4869, - [4870] = 3816, - [4871] = 4762, - [4872] = 3774, - [4873] = 4043, - [4874] = 4874, - [4875] = 4763, - [4876] = 3881, - [4877] = 4747, - [4878] = 3769, - [4879] = 4053, - [4880] = 4880, - [4881] = 3560, - [4882] = 4882, - [4883] = 4883, - [4884] = 2354, - [4885] = 4885, - [4886] = 4886, - [4887] = 4887, - [4888] = 4888, + [4844] = 2945, + [4845] = 4733, + [4846] = 3187, + [4847] = 2968, + [4848] = 2967, + [4849] = 3186, + [4850] = 2964, + [4851] = 2953, + [4852] = 4754, + [4853] = 2961, + [4854] = 2946, + [4855] = 2950, + [4856] = 2978, + [4857] = 4733, + [4858] = 2960, + [4859] = 2957, + [4860] = 2954, + [4861] = 2966, + [4862] = 2974, + [4863] = 4733, + [4864] = 4755, + [4865] = 4758, + [4866] = 4723, + [4867] = 4733, + [4868] = 4783, + [4869] = 4782, + [4870] = 4789, + [4871] = 4723, + [4872] = 4733, + [4873] = 4765, + [4874] = 3177, + [4875] = 4770, + [4876] = 3180, + [4877] = 4780, + [4878] = 4772, + [4879] = 4771, + [4880] = 4751, + [4881] = 4827, + [4882] = 4723, + [4883] = 4733, + [4884] = 4789, + [4885] = 4789, + [4886] = 4723, + [4887] = 4723, + [4888] = 4733, [4889] = 4889, - [4890] = 4741, - [4891] = 2197, - [4892] = 2419, - [4893] = 4893, - [4894] = 2197, - [4895] = 2403, - [4896] = 2411, - [4897] = 3899, - [4898] = 3898, - [4899] = 4088, - [4900] = 3293, - [4901] = 4020, - [4902] = 3887, - [4903] = 3886, - [4904] = 4904, - [4905] = 4905, - [4906] = 4906, - [4907] = 4907, - [4908] = 3771, - [4909] = 4909, - [4910] = 3894, - [4911] = 4041, - [4912] = 3995, - [4913] = 3896, - [4914] = 4914, - [4915] = 4915, - [4916] = 4916, - [4917] = 4039, - [4918] = 3855, - [4919] = 4919, - [4920] = 3942, - [4921] = 4097, - [4922] = 4046, - [4923] = 4923, - [4924] = 2426, - [4925] = 4747, - [4926] = 3887, - [4927] = 4914, - [4928] = 3328, - [4929] = 4091, - [4930] = 4883, - [4931] = 3293, - [4932] = 3293, - [4933] = 3293, - [4934] = 4885, - [4935] = 4886, - [4936] = 2461, - [4937] = 4094, - [4938] = 2457, - [4939] = 4793, - [4940] = 4882, - [4941] = 4887, - [4942] = 3293, - [4943] = 4869, - [4944] = 3293, - [4945] = 4923, - [4946] = 4066, - [4947] = 4097, - [4948] = 4083, - [4949] = 3293, - [4950] = 3293, - [4951] = 3293, - [4952] = 3928, - [4953] = 3979, - [4954] = 3922, - [4955] = 3548, - [4956] = 3898, - [4957] = 3856, - [4958] = 3895, - [4959] = 3846, - [4960] = 3855, - [4961] = 3690, - [4962] = 3657, - [4963] = 3505, - [4964] = 3942, - [4965] = 3817, - [4966] = 3776, - [4967] = 4857, - [4968] = 4856, - [4969] = 3770, - [4970] = 4016, - [4971] = 2893, - [4972] = 3611, - [4973] = 3803, - [4974] = 3771, - [4975] = 3328, - [4976] = 4046, - [4977] = 3875, - [4978] = 4841, - [4979] = 3882, - [4980] = 4980, - [4981] = 4852, - [4982] = 3876, - [4983] = 4851, - [4984] = 4850, - [4985] = 4847, - [4986] = 4916, - [4987] = 4987, - [4988] = 3868, - [4989] = 4006, - [4990] = 4915, - [4991] = 4991, - [4992] = 3612, - [4993] = 3896, - [4994] = 4846, - [4995] = 3293, - [4996] = 3923, - [4997] = 4905, - [4998] = 3936, - [4999] = 3940, - [5000] = 3171, - [5001] = 3178, - [5002] = 3179, - [5003] = 3957, - [5004] = 1921, - [5005] = 3963, - [5006] = 3824, - [5007] = 4906, - [5008] = 4907, - [5009] = 4909, - [5010] = 2893, - [5011] = 3841, - [5012] = 4041, - [5013] = 3219, - [5014] = 1942, - [5015] = 3213, - [5016] = 1943, - [5017] = 3995, - [5018] = 3894, - [5019] = 5019, - [5020] = 5020, - [5021] = 3768, - [5022] = 4012, - [5023] = 3980, - [5024] = 3974, - [5025] = 3840, - [5026] = 3907, - [5027] = 3775, - [5028] = 3886, - [5029] = 3914, - [5030] = 3955, - [5031] = 4063, - [5032] = 4070, - [5033] = 3173, - [5034] = 3293, - [5035] = 3222, - [5036] = 3241, - [5037] = 4904, - [5038] = 4036, - [5039] = 2198, - [5040] = 3816, - [5041] = 4893, - [5042] = 4076, - [5043] = 3742, - [5044] = 3774, - [5045] = 4043, - [5046] = 4874, - [5047] = 3293, - [5048] = 4785, - [5049] = 3819, - [5050] = 3881, - [5051] = 3769, - [5052] = 4053, - [5053] = 4088, - [5054] = 4039, - [5055] = 4020, + [4890] = 3065, + [4891] = 4733, + [4892] = 3065, + [4893] = 4723, + [4894] = 4733, + [4895] = 4733, + [4896] = 4733, + [4897] = 2976, + [4898] = 4733, + [4899] = 4723, + [4900] = 4900, + [4901] = 4733, + [4902] = 4733, + [4903] = 2973, + [4904] = 4723, + [4905] = 4733, + [4906] = 2975, + [4907] = 4733, + [4908] = 4733, + [4909] = 4811, + [4910] = 4824, + [4911] = 4825, + [4912] = 4733, + [4913] = 4723, + [4914] = 4733, + [4915] = 2965, + [4916] = 4733, + [4917] = 4733, + [4918] = 4918, + [4919] = 2948, + [4920] = 4758, + [4921] = 4824, + [4922] = 4824, + [4923] = 4733, + [4924] = 4723, + [4925] = 2971, + [4926] = 4889, + [4927] = 4927, + [4928] = 4824, + [4929] = 2965, + [4930] = 4789, + [4931] = 2976, + [4932] = 4723, + [4933] = 4825, + [4934] = 4789, + [4935] = 2957, + [4936] = 3550, + [4937] = 4758, + [4938] = 2975, + [4939] = 4723, + [4940] = 4733, + [4941] = 2966, + [4942] = 2975, + [4943] = 2945, + [4944] = 4827, + [4945] = 2968, + [4946] = 3232, + [4947] = 2967, + [4948] = 2964, + [4949] = 4827, + [4950] = 2953, + [4951] = 2961, + [4952] = 2946, + [4953] = 2950, + [4954] = 2978, + [4955] = 2960, + [4956] = 2957, + [4957] = 2954, + [4958] = 2966, + [4959] = 2974, + [4960] = 4733, + [4961] = 3790, + [4962] = 4758, + [4963] = 2950, + [4964] = 4723, + [4965] = 4733, + [4966] = 4789, + [4967] = 2946, + [4968] = 2961, + [4969] = 2953, + [4970] = 3192, + [4971] = 4789, + [4972] = 2964, + [4973] = 4789, + [4974] = 2968, + [4975] = 4733, + [4976] = 4825, + [4977] = 4751, + [4978] = 4758, + [4979] = 4771, + [4980] = 4772, + [4981] = 3118, + [4982] = 4723, + [4983] = 4770, + [4984] = 4780, + [4985] = 2945, + [4986] = 4986, + [4987] = 4811, + [4988] = 4988, + [4989] = 4782, + [4990] = 2975, + [4991] = 4751, + [4992] = 4789, + [4993] = 3078, + [4994] = 4789, + [4995] = 4789, + [4996] = 2973, + [4997] = 3006, + [4998] = 4755, + [4999] = 4754, + [5000] = 4789, + [5001] = 4783, + [5002] = 4789, + [5003] = 4789, + [5004] = 4789, + [5005] = 4733, + [5006] = 4751, + [5007] = 4771, + [5008] = 4772, + [5009] = 4780, + [5010] = 4733, + [5011] = 3065, + [5012] = 2974, + [5013] = 2966, + [5014] = 2954, + [5015] = 4782, + [5016] = 4783, + [5017] = 4723, + [5018] = 2458, + [5019] = 4770, + [5020] = 4755, + [5021] = 4754, + [5022] = 5022, + [5023] = 2471, + [5024] = 5024, + [5025] = 4789, + [5026] = 4733, + [5027] = 5027, + [5028] = 2957, + [5029] = 4733, + [5030] = 2960, + [5031] = 4758, + [5032] = 2954, + [5033] = 4789, + [5034] = 2975, + [5035] = 2951, + [5036] = 5036, + [5037] = 3195, + [5038] = 3790, + [5039] = 2978, + [5040] = 2950, + [5041] = 2946, + [5042] = 2971, + [5043] = 4733, + [5044] = 2961, + [5045] = 2953, + [5046] = 2964, + [5047] = 2973, + [5048] = 2948, + [5049] = 2967, + [5050] = 4900, + [5051] = 2973, + [5052] = 2968, + [5053] = 5053, + [5054] = 5054, + [5055] = 5055, [5056] = 5056, - [5057] = 3293, + [5057] = 2945, [5058] = 5058, - [5059] = 5056, - [5060] = 5056, - [5061] = 5058, - [5062] = 5058, - [5063] = 5058, - [5064] = 5058, - [5065] = 5058, - [5066] = 5058, - [5067] = 5056, - [5068] = 5058, - [5069] = 5069, - [5070] = 3293, - [5071] = 2457, - [5072] = 5058, - [5073] = 5058, - [5074] = 2461, - [5075] = 3179, - [5076] = 5056, - [5077] = 5058, - [5078] = 3178, - [5079] = 5079, - [5080] = 5058, - [5081] = 5058, - [5082] = 5058, - [5083] = 5056, - [5084] = 3171, - [5085] = 5058, - [5086] = 3690, - [5087] = 5056, - [5088] = 5058, - [5089] = 5058, - [5090] = 3657, - [5091] = 5058, - [5092] = 3293, - [5093] = 5058, - [5094] = 5058, - [5095] = 3293, + [5059] = 4986, + [5060] = 2971, + [5061] = 2948, + [5062] = 2965, + [5063] = 4733, + [5064] = 4733, + [5065] = 4755, + [5066] = 3130, + [5067] = 4789, + [5068] = 4765, + [5069] = 3065, + [5070] = 4789, + [5071] = 4723, + [5072] = 5072, + [5073] = 4733, + [5074] = 4754, + [5075] = 3065, + [5076] = 2976, + [5077] = 4733, + [5078] = 2971, + [5079] = 2948, + [5080] = 2965, + [5081] = 4824, + [5082] = 3065, + [5083] = 4758, + [5084] = 3550, + [5085] = 4733, + [5086] = 3065, + [5087] = 2965, + [5088] = 3068, + [5089] = 2948, + [5090] = 2971, + [5091] = 2976, + [5092] = 3065, + [5093] = 4733, + [5094] = 2985, + [5095] = 4789, [5096] = 5096, - [5097] = 3450, - [5098] = 3293, - [5099] = 4602, - [5100] = 3293, - [5101] = 5056, - [5102] = 3907, - [5103] = 5058, - [5104] = 3612, - [5105] = 3611, - [5106] = 5058, - [5107] = 3548, - [5108] = 5056, - [5109] = 5058, - [5110] = 5056, - [5111] = 3219, - [5112] = 5056, - [5113] = 3360, - [5114] = 4602, - [5115] = 5058, - [5116] = 3379, - [5117] = 5096, - [5118] = 3293, - [5119] = 3742, - [5120] = 5056, - [5121] = 3173, - [5122] = 5056, - [5123] = 4602, - [5124] = 3222, - [5125] = 3505, - [5126] = 3293, - [5127] = 5056, - [5128] = 5058, - [5129] = 3213, - [5130] = 3293, - [5131] = 3241, - [5132] = 5058, - [5133] = 4602, - [5134] = 5058, - [5135] = 2207, - [5136] = 2206, - [5137] = 3293, - [5138] = 5079, - [5139] = 3293, - [5140] = 3616, - [5141] = 5141, - [5142] = 5079, - [5143] = 5143, - [5144] = 5144, - [5145] = 3293, - [5146] = 3560, - [5147] = 3293, - [5148] = 5079, - [5149] = 3293, - [5150] = 3587, - [5151] = 3577, - [5152] = 4327, + [5097] = 3065, + [5098] = 5098, + [5099] = 3164, + [5100] = 5100, + [5101] = 5101, + [5102] = 5102, + [5103] = 5103, + [5104] = 5104, + [5105] = 5105, + [5106] = 5096, + [5107] = 5096, + [5108] = 5096, + [5109] = 5109, + [5110] = 5096, + [5111] = 5096, + [5112] = 5096, + [5113] = 3065, + [5114] = 5096, + [5115] = 5096, + [5116] = 5096, + [5117] = 4927, + [5118] = 5096, + [5119] = 2206, + [5120] = 3440, + [5121] = 5096, + [5122] = 5096, + [5123] = 3484, + [5124] = 5096, + [5125] = 5096, + [5126] = 5096, + [5127] = 4927, + [5128] = 3065, + [5129] = 5096, + [5130] = 5096, + [5131] = 5096, + [5132] = 5096, + [5133] = 5096, + [5134] = 3065, + [5135] = 5096, + [5136] = 5096, + [5137] = 5096, + [5138] = 3065, + [5139] = 5096, + [5140] = 5096, + [5141] = 5096, + [5142] = 4927, + [5143] = 5096, + [5144] = 5096, + [5145] = 5096, + [5146] = 3170, + [5147] = 5096, + [5148] = 4927, + [5149] = 2207, + [5150] = 3136, + [5151] = 5096, + [5152] = 3196, [5153] = 5153, - [5154] = 5079, - [5155] = 4841, - [5156] = 5156, - [5157] = 5157, - [5158] = 5079, - [5159] = 3617, + [5154] = 3175, + [5155] = 4927, + [5156] = 4070, + [5157] = 4927, + [5158] = 3194, + [5159] = 5096, [5160] = 5160, - [5161] = 5161, - [5162] = 4401, - [5163] = 5163, - [5164] = 5079, - [5165] = 5165, - [5166] = 3681, - [5167] = 4915, - [5168] = 3824, - [5169] = 5169, - [5170] = 5170, - [5171] = 5169, - [5172] = 5172, - [5173] = 5173, - [5174] = 3293, - [5175] = 5175, - [5176] = 5169, - [5177] = 4039, - [5178] = 3293, - [5179] = 5169, - [5180] = 5169, - [5181] = 5169, - [5182] = 5182, - [5183] = 4066, - [5184] = 5169, - [5185] = 3851, - [5186] = 5169, - [5187] = 4707, - [5188] = 4083, - [5189] = 5182, - [5190] = 3979, - [5191] = 5169, - [5192] = 3922, - [5193] = 3895, - [5194] = 5170, - [5195] = 5195, - [5196] = 5170, - [5197] = 3846, - [5198] = 3898, - [5199] = 5169, - [5200] = 5200, - [5201] = 5182, - [5202] = 2198, - [5203] = 3899, - [5204] = 5169, - [5205] = 4785, - [5206] = 4793, - [5207] = 5169, - [5208] = 3849, - [5209] = 3817, - [5210] = 5169, - [5211] = 3293, - [5212] = 3896, - [5213] = 1943, - [5214] = 4016, - [5215] = 5170, - [5216] = 5169, - [5217] = 3803, - [5218] = 5169, - [5219] = 5219, - [5220] = 3770, - [5221] = 5169, - [5222] = 1921, - [5223] = 5223, - [5224] = 5169, - [5225] = 5169, - [5226] = 3923, - [5227] = 3936, - [5228] = 5169, - [5229] = 5170, - [5230] = 3940, - [5231] = 4074, - [5232] = 5169, - [5233] = 5169, - [5234] = 4846, - [5235] = 5170, - [5236] = 4847, - [5237] = 4850, - [5238] = 3957, - [5239] = 4707, - [5240] = 1942, - [5241] = 4851, - [5242] = 4852, - [5243] = 3963, - [5244] = 5169, - [5245] = 5169, - [5246] = 5182, - [5247] = 5169, - [5248] = 5169, - [5249] = 5169, - [5250] = 3293, - [5251] = 4856, - [5252] = 4857, - [5253] = 5169, - [5254] = 5170, - [5255] = 4036, - [5256] = 4012, - [5257] = 5169, - [5258] = 5169, - [5259] = 3980, - [5260] = 5260, - [5261] = 5169, - [5262] = 3974, - [5263] = 3882, - [5264] = 5169, - [5265] = 5170, - [5266] = 3875, - [5267] = 3840, - [5268] = 3776, - [5269] = 3775, - [5270] = 3876, - [5271] = 3914, - [5272] = 5169, - [5273] = 4874, - [5274] = 4869, - [5275] = 3955, - [5276] = 4063, - [5277] = 4070, - [5278] = 4886, - [5279] = 4707, + [5161] = 3484, + [5162] = 3218, + [5163] = 3281, + [5164] = 3299, + [5165] = 3297, + [5166] = 5166, + [5167] = 3296, + [5168] = 4196, + [5169] = 3295, + [5170] = 5166, + [5171] = 4168, + [5172] = 4324, + [5173] = 4094, + [5174] = 3294, + [5175] = 3293, + [5176] = 5176, + [5177] = 3292, + [5178] = 3215, + [5179] = 3322, + [5180] = 3251, + [5181] = 5166, + [5182] = 5166, + [5183] = 3289, + [5184] = 3220, + [5185] = 3288, + [5186] = 5166, + [5187] = 3219, + [5188] = 5188, + [5189] = 3205, + [5190] = 1920, + [5191] = 3303, + [5192] = 4200, + [5193] = 4368, + [5194] = 3065, + [5195] = 4260, + [5196] = 3241, + [5197] = 5166, + [5198] = 3779, + [5199] = 5166, + [5200] = 5166, + [5201] = 3273, + [5202] = 3253, + [5203] = 5166, + [5204] = 3248, + [5205] = 5205, + [5206] = 5206, + [5207] = 3213, + [5208] = 5208, + [5209] = 5208, + [5210] = 5166, + [5211] = 3285, + [5212] = 3317, + [5213] = 3207, + [5214] = 3255, + [5215] = 3256, + [5216] = 5216, + [5217] = 3779, + [5218] = 3336, + [5219] = 5166, + [5220] = 3313, + [5221] = 5166, + [5222] = 3200, + [5223] = 3305, + [5224] = 5166, + [5225] = 3306, + [5226] = 3287, + [5227] = 5227, + [5228] = 5166, + [5229] = 3266, + [5230] = 5166, + [5231] = 3065, + [5232] = 3265, + [5233] = 5166, + [5234] = 3267, + [5235] = 4215, + [5236] = 3229, + [5237] = 5166, + [5238] = 4200, + [5239] = 1946, + [5240] = 4240, + [5241] = 4225, + [5242] = 4136, + [5243] = 4220, + [5244] = 5166, + [5245] = 3304, + [5246] = 2197, + [5247] = 4142, + [5248] = 3300, + [5249] = 4143, + [5250] = 4147, + [5251] = 1947, + [5252] = 5252, + [5253] = 3298, + [5254] = 5166, + [5255] = 5216, + [5256] = 5208, + [5257] = 4150, + [5258] = 4151, + [5259] = 3340, + [5260] = 4153, + [5261] = 3065, + [5262] = 3216, + [5263] = 3343, + [5264] = 3325, + [5265] = 3257, + [5266] = 5166, + [5267] = 3321, + [5268] = 5268, + [5269] = 3276, + [5270] = 3779, + [5271] = 3324, + [5272] = 3270, + [5273] = 5208, + [5274] = 5166, + [5275] = 5208, + [5276] = 4261, + [5277] = 3440, + [5278] = 3890, + [5279] = 3065, [5280] = 5280, - [5281] = 3293, - [5282] = 5282, - [5283] = 5283, - [5284] = 5169, - [5285] = 3841, - [5286] = 5169, - [5287] = 4733, - [5288] = 4401, - [5289] = 5169, - [5290] = 4916, - [5291] = 4914, - [5292] = 4909, - [5293] = 4907, - [5294] = 4707, - [5295] = 2198, - [5296] = 3855, - [5297] = 4923, - [5298] = 3856, - [5299] = 3928, - [5300] = 4906, - [5301] = 4905, - [5302] = 4904, - [5303] = 4327, - [5304] = 5169, - [5305] = 3942, - [5306] = 4097, - [5307] = 5169, - [5308] = 4046, - [5309] = 5169, - [5310] = 4006, - [5311] = 3768, - [5312] = 3868, - [5313] = 3823, - [5314] = 3822, - [5315] = 5169, - [5316] = 4091, - [5317] = 4094, - [5318] = 4041, - [5319] = 4076, - [5320] = 4893, - [5321] = 3995, - [5322] = 3894, - [5323] = 3771, - [5324] = 3886, - [5325] = 3887, - [5326] = 4020, - [5327] = 4088, - [5328] = 5328, - [5329] = 3293, - [5330] = 4887, - [5331] = 5169, - [5332] = 4885, - [5333] = 4053, - [5334] = 4883, - [5335] = 4785, - [5336] = 3769, - [5337] = 3881, - [5338] = 4882, - [5339] = 4043, - [5340] = 3774, - [5341] = 3816, - [5342] = 3819, - [5343] = 5343, - [5344] = 5344, - [5345] = 5345, - [5346] = 5346, - [5347] = 5345, + [5281] = 5281, + [5282] = 5166, + [5283] = 3065, + [5284] = 3208, + [5285] = 5285, + [5286] = 5166, + [5287] = 3065, + [5288] = 5166, + [5289] = 5166, + [5290] = 3302, + [5291] = 5166, + [5292] = 3234, + [5293] = 5208, + [5294] = 3278, + [5295] = 3279, + [5296] = 5216, + [5297] = 3221, + [5298] = 3307, + [5299] = 5166, + [5300] = 5208, + [5301] = 5166, + [5302] = 4190, + [5303] = 5216, + [5304] = 3226, + [5305] = 5166, + [5306] = 4246, + [5307] = 5307, + [5308] = 5166, + [5309] = 3209, + [5310] = 4272, + [5311] = 5166, + [5312] = 3318, + [5313] = 5166, + [5314] = 5166, + [5315] = 3319, + [5316] = 5166, + [5317] = 5166, + [5318] = 3316, + [5319] = 5166, + [5320] = 4390, + [5321] = 4391, + [5322] = 4402, + [5323] = 4428, + [5324] = 5166, + [5325] = 3259, + [5326] = 3312, + [5327] = 3231, + [5328] = 3201, + [5329] = 5208, + [5330] = 5330, + [5331] = 3779, + [5332] = 5166, + [5333] = 3203, + [5334] = 5166, + [5335] = 5166, + [5336] = 2197, + [5337] = 5337, + [5338] = 5102, + [5339] = 5337, + [5340] = 5340, + [5341] = 5341, + [5342] = 5342, + [5343] = 5337, + [5344] = 4200, + [5345] = 5337, + [5346] = 5101, + [5347] = 5337, [5348] = 5348, - [5349] = 5345, - [5350] = 5350, - [5351] = 2198, - [5352] = 5348, - [5353] = 5353, - [5354] = 5345, - [5355] = 5345, - [5356] = 5356, - [5357] = 5348, - [5358] = 5348, - [5359] = 5345, - [5360] = 5345, - [5361] = 5163, - [5362] = 5345, - [5363] = 5348, - [5364] = 5345, - [5365] = 5161, - [5366] = 5160, - [5367] = 5345, - [5368] = 5345, - [5369] = 5345, - [5370] = 5345, - [5371] = 5345, - [5372] = 2217, - [5373] = 5345, - [5374] = 5348, - [5375] = 5345, - [5376] = 5345, - [5377] = 5345, - [5378] = 5356, + [5349] = 5349, + [5350] = 5337, + [5351] = 5351, + [5352] = 5352, + [5353] = 5341, + [5354] = 5337, + [5355] = 5355, + [5356] = 2217, + [5357] = 5341, + [5358] = 5105, + [5359] = 5104, + [5360] = 5360, + [5361] = 5361, + [5362] = 5362, + [5363] = 5227, + [5364] = 5337, + [5365] = 5341, + [5366] = 5337, + [5367] = 5337, + [5368] = 5341, + [5369] = 5369, + [5370] = 5362, + [5371] = 5341, + [5372] = 5341, + [5373] = 5337, + [5374] = 5337, + [5375] = 5351, + [5376] = 5348, + [5377] = 5341, + [5378] = 5337, [5379] = 5379, - [5380] = 5348, - [5381] = 5353, - [5382] = 5382, - [5383] = 2392, - [5384] = 5348, - [5385] = 5348, - [5386] = 5353, - [5387] = 5345, - [5388] = 5346, - [5389] = 5345, - [5390] = 5390, - [5391] = 5391, - [5392] = 5348, - [5393] = 5348, - [5394] = 5345, - [5395] = 5395, - [5396] = 5346, - [5397] = 5395, - [5398] = 5391, - [5399] = 5356, - [5400] = 5345, + [5380] = 5337, + [5381] = 5337, + [5382] = 5337, + [5383] = 5340, + [5384] = 5337, + [5385] = 5337, + [5386] = 5362, + [5387] = 5369, + [5388] = 5340, + [5389] = 5360, + [5390] = 5341, + [5391] = 5337, + [5392] = 5342, + [5393] = 5337, + [5394] = 5341, + [5395] = 5362, + [5396] = 5351, + [5397] = 5337, + [5398] = 5341, + [5399] = 5337, + [5400] = 5337, [5401] = 5348, - [5402] = 2219, - [5403] = 5348, - [5404] = 5395, - [5405] = 5391, - [5406] = 5348, - [5407] = 5346, - [5408] = 5348, - [5409] = 5345, - [5410] = 5345, - [5411] = 5348, - [5412] = 5348, - [5413] = 5345, - [5414] = 5343, - [5415] = 5345, - [5416] = 5345, - [5417] = 5390, - [5418] = 5348, - [5419] = 5345, - [5420] = 4785, - [5421] = 5345, - [5422] = 5391, - [5423] = 5345, - [5424] = 5348, - [5425] = 5157, - [5426] = 5345, - [5427] = 5156, - [5428] = 5328, - [5429] = 5345, - [5430] = 5280, - [5431] = 5345, - [5432] = 5395, - [5433] = 5433, - [5434] = 5346, - [5435] = 5379, - [5436] = 5348, - [5437] = 5356, - [5438] = 5348, - [5439] = 5395, - [5440] = 5391, - [5441] = 5345, - [5442] = 5345, - [5443] = 5348, - [5444] = 5390, - [5445] = 5345, - [5446] = 5433, - [5447] = 5343, - [5448] = 5433, - [5449] = 5348, - [5450] = 5345, - [5451] = 5345, - [5452] = 5379, - [5453] = 5356, - [5454] = 5348, - [5455] = 5345, - [5456] = 5345, - [5457] = 5348, - [5458] = 5356, - [5459] = 5348, - [5460] = 2215, - [5461] = 2198, - [5462] = 3742, - [5463] = 2426, - [5464] = 2209, - [5465] = 5156, - [5466] = 2392, - [5467] = 2208, - [5468] = 2433, - [5469] = 5157, - [5470] = 2213, - [5471] = 2212, - [5472] = 5163, - [5473] = 2214, - [5474] = 5160, - [5475] = 5161, - [5476] = 3328, - [5477] = 2461, - [5478] = 2411, - [5479] = 5156, - [5480] = 5163, - [5481] = 5328, - [5482] = 2198, - [5483] = 5160, - [5484] = 5161, - [5485] = 4785, - [5486] = 4841, - [5487] = 2457, - [5488] = 5157, - [5489] = 5280, - [5490] = 2198, - [5491] = 4850, - [5492] = 4905, - [5493] = 5161, - [5494] = 4785, - [5495] = 4869, - [5496] = 4916, - [5497] = 2403, - [5498] = 5163, - [5499] = 2217, - [5500] = 4857, - [5501] = 4856, - [5502] = 5160, - [5503] = 4852, - [5504] = 4915, - [5505] = 4851, - [5506] = 4793, - [5507] = 4847, - [5508] = 4846, - [5509] = 4914, - [5510] = 5510, - [5511] = 5328, - [5512] = 4893, - [5513] = 4785, - [5514] = 4874, - [5515] = 4887, - [5516] = 4923, - [5517] = 4886, - [5518] = 4885, - [5519] = 5157, - [5520] = 4883, - [5521] = 4904, - [5522] = 4909, - [5523] = 5156, - [5524] = 4906, - [5525] = 4907, - [5526] = 4882, - [5527] = 5280, - [5528] = 4869, - [5529] = 2198, - [5530] = 2451, - [5531] = 2421, - [5532] = 2452, - [5533] = 5163, - [5534] = 5156, - [5535] = 5535, - [5536] = 5160, - [5537] = 3328, - [5538] = 2414, - [5539] = 4874, - [5540] = 2419, - [5541] = 5535, - [5542] = 5328, - [5543] = 5535, - [5544] = 2448, - [5545] = 5280, - [5546] = 4785, - [5547] = 5535, - [5548] = 5535, - [5549] = 2392, - [5550] = 5535, - [5551] = 5161, - [5552] = 5157, - [5553] = 2198, - [5554] = 5161, - [5555] = 3360, - [5556] = 2457, + [5402] = 5342, + [5403] = 5337, + [5404] = 5341, + [5405] = 5352, + [5406] = 5337, + [5407] = 5188, + [5408] = 5352, + [5409] = 5341, + [5410] = 5362, + [5411] = 5337, + [5412] = 5337, + [5413] = 2197, + [5414] = 5351, + [5415] = 5337, + [5416] = 5348, + [5417] = 5341, + [5418] = 5342, + [5419] = 5337, + [5420] = 2218, + [5421] = 5337, + [5422] = 5369, + [5423] = 5337, + [5424] = 5360, + [5425] = 5341, + [5426] = 5337, + [5427] = 5337, + [5428] = 5361, + [5429] = 2392, + [5430] = 5341, + [5431] = 5337, + [5432] = 5341, + [5433] = 5337, + [5434] = 5341, + [5435] = 5361, + [5436] = 5337, + [5437] = 5341, + [5438] = 5337, + [5439] = 5341, + [5440] = 5341, + [5441] = 5103, + [5442] = 5342, + [5443] = 5337, + [5444] = 5348, + [5445] = 5341, + [5446] = 5341, + [5447] = 5341, + [5448] = 5337, + [5449] = 5362, + [5450] = 5341, + [5451] = 5351, + [5452] = 5341, + [5453] = 5337, + [5454] = 5104, + [5455] = 5103, + [5456] = 2214, + [5457] = 2450, + [5458] = 2208, + [5459] = 5101, + [5460] = 3130, + [5461] = 2211, + [5462] = 2392, + [5463] = 2431, + [5464] = 5102, + [5465] = 3051, + [5466] = 2216, + [5467] = 5105, + [5468] = 2210, + [5469] = 2213, + [5470] = 2197, + [5471] = 5105, + [5472] = 4070, + [5473] = 5188, + [5474] = 5227, + [5475] = 2197, + [5476] = 4200, + [5477] = 5104, + [5478] = 2471, + [5479] = 2409, + [5480] = 5103, + [5481] = 2458, + [5482] = 5102, + [5483] = 5101, + [5484] = 2197, + [5485] = 5227, + [5486] = 4225, + [5487] = 4391, + [5488] = 4196, + [5489] = 4390, + [5490] = 5188, + [5491] = 4094, + [5492] = 5102, + [5493] = 5103, + [5494] = 4428, + [5495] = 5495, + [5496] = 5101, + [5497] = 4200, + [5498] = 5104, + [5499] = 4215, + [5500] = 4153, + [5501] = 4142, + [5502] = 4240, + [5503] = 4136, + [5504] = 4402, + [5505] = 4220, + [5506] = 4143, + [5507] = 2218, + [5508] = 4147, + [5509] = 4272, + [5510] = 4190, + [5511] = 4200, + [5512] = 4368, + [5513] = 4324, + [5514] = 4246, + [5515] = 4150, + [5516] = 4168, + [5517] = 5105, + [5518] = 2418, + [5519] = 4261, + [5520] = 4151, + [5521] = 4260, + [5522] = 5103, + [5523] = 2407, + [5524] = 2197, + [5525] = 2403, + [5526] = 5227, + [5527] = 2445, + [5528] = 5101, + [5529] = 5188, + [5530] = 5530, + [5531] = 5530, + [5532] = 2430, + [5533] = 4261, + [5534] = 5102, + [5535] = 3051, + [5536] = 5530, + [5537] = 2392, + [5538] = 5104, + [5539] = 5530, + [5540] = 5105, + [5541] = 2444, + [5542] = 2197, + [5543] = 5530, + [5544] = 2442, + [5545] = 4200, + [5546] = 4260, + [5547] = 5530, + [5548] = 2969, + [5549] = 5102, + [5550] = 5550, + [5551] = 5551, + [5552] = 3078, + [5553] = 3068, + [5554] = 2207, + [5555] = 2217, + [5556] = 2458, [5557] = 5557, - [5558] = 3742, - [5559] = 2198, - [5560] = 2264, - [5561] = 5561, - [5562] = 3450, - [5563] = 2219, - [5564] = 3137, - [5565] = 2207, - [5566] = 2206, - [5567] = 2392, - [5568] = 2198, - [5569] = 2435, - [5570] = 2206, - [5571] = 3379, - [5572] = 5156, - [5573] = 2207, - [5574] = 5157, - [5575] = 2217, - [5576] = 5163, - [5577] = 2219, - [5578] = 3742, - [5579] = 5160, - [5580] = 2425, - [5581] = 3222, - [5582] = 5280, - [5583] = 2380, - [5584] = 2369, - [5585] = 2356, - [5586] = 2452, - [5587] = 2461, - [5588] = 2368, - [5589] = 3617, - [5590] = 4785, - [5591] = 2451, - [5592] = 5163, - [5593] = 2457, - [5594] = 5594, - [5595] = 2208, - [5596] = 5596, - [5597] = 5161, - [5598] = 3560, - [5599] = 2425, - [5600] = 5596, - [5601] = 3681, - [5602] = 2354, - [5603] = 5160, - [5604] = 5157, - [5605] = 3577, - [5606] = 2365, - [5607] = 2376, - [5608] = 2414, - [5609] = 2433, - [5610] = 3616, - [5611] = 3173, - [5612] = 3587, - [5613] = 2435, - [5614] = 2383, - [5615] = 5156, - [5616] = 3241, - [5617] = 2448, - [5618] = 5618, - [5619] = 2426, - [5620] = 2392, - [5621] = 2214, - [5622] = 2215, - [5623] = 2212, - [5624] = 2213, - [5625] = 4874, - [5626] = 4869, - [5627] = 5280, - [5628] = 2411, - [5629] = 2403, - [5630] = 2209, - [5631] = 5596, - [5632] = 2378, - [5633] = 3213, - [5634] = 5596, - [5635] = 2419, - [5636] = 3179, - [5637] = 3178, - [5638] = 3171, - [5639] = 5328, - [5640] = 4841, - [5641] = 5596, - [5642] = 2407, - [5643] = 5328, - [5644] = 2421, - [5645] = 4785, - [5646] = 3219, - [5647] = 3771, + [5558] = 2197, + [5559] = 2269, + [5560] = 2446, + [5561] = 2217, + [5562] = 2207, + [5563] = 5563, + [5564] = 2206, + [5565] = 5565, + [5566] = 5566, + [5567] = 5567, + [5568] = 3130, + [5569] = 2197, + [5570] = 3130, + [5571] = 3118, + [5572] = 2206, + [5573] = 5101, + [5574] = 5574, + [5575] = 2218, + [5576] = 2392, + [5577] = 5104, + [5578] = 5105, + [5579] = 5103, + [5580] = 3175, + [5581] = 2208, + [5582] = 2213, + [5583] = 2351, + [5584] = 2985, + [5585] = 5104, + [5586] = 5586, + [5587] = 5587, + [5588] = 2376, + [5589] = 2375, + [5590] = 5590, + [5591] = 2450, + [5592] = 3023, + [5593] = 5593, + [5594] = 3001, + [5595] = 3006, + [5596] = 5103, + [5597] = 2425, + [5598] = 5593, + [5599] = 3008, + [5600] = 5102, + [5601] = 2359, + [5602] = 2425, + [5603] = 2418, + [5604] = 5604, + [5605] = 5101, + [5606] = 3136, + [5607] = 5593, + [5608] = 5608, + [5609] = 2407, + [5610] = 2350, + [5611] = 2442, + [5612] = 2370, + [5613] = 3196, + [5614] = 2392, + [5615] = 5593, + [5616] = 5616, + [5617] = 5105, + [5618] = 5188, + [5619] = 3170, + [5620] = 3010, + [5621] = 4200, + [5622] = 3013, + [5623] = 5593, + [5624] = 2409, + [5625] = 4070, + [5626] = 2444, + [5627] = 3194, + [5628] = 5188, + [5629] = 2445, + [5630] = 2384, + [5631] = 2471, + [5632] = 2210, + [5633] = 5227, + [5634] = 3014, + [5635] = 2374, + [5636] = 2371, + [5637] = 4260, + [5638] = 2446, + [5639] = 2211, + [5640] = 2458, + [5641] = 2431, + [5642] = 5227, + [5643] = 3164, + [5644] = 2403, + [5645] = 2216, + [5646] = 4261, + [5647] = 2214, [5648] = 5648, - [5649] = 4869, - [5650] = 5328, - [5651] = 5648, - [5652] = 4074, - [5653] = 4916, - [5654] = 4915, - [5655] = 4914, - [5656] = 5648, - [5657] = 4909, - [5658] = 5161, - [5659] = 4043, - [5660] = 5160, - [5661] = 4907, - [5662] = 4906, - [5663] = 3774, - [5664] = 4905, - [5665] = 4904, - [5666] = 4893, - [5667] = 3816, - [5668] = 3819, - [5669] = 3824, - [5670] = 4887, - [5671] = 3841, - [5672] = 4886, - [5673] = 4885, - [5674] = 4063, - [5675] = 3955, - [5676] = 4883, - [5677] = 4882, - [5678] = 3914, - [5679] = 3876, - [5680] = 5648, - [5681] = 3775, - [5682] = 4923, - [5683] = 5160, - [5684] = 3776, - [5685] = 4874, - [5686] = 5648, - [5687] = 5280, - [5688] = 5648, - [5689] = 5648, - [5690] = 5648, - [5691] = 3840, - [5692] = 3881, - [5693] = 5157, - [5694] = 3875, - [5695] = 3882, - [5696] = 5156, - [5697] = 4857, - [5698] = 4856, - [5699] = 3974, - [5700] = 5648, - [5701] = 3980, - [5702] = 3769, - [5703] = 4053, - [5704] = 4852, - [5705] = 4012, - [5706] = 4036, - [5707] = 5648, - [5708] = 4851, - [5709] = 4850, - [5710] = 4847, - [5711] = 4785, - [5712] = 4846, - [5713] = 5648, - [5714] = 1942, - [5715] = 5280, - [5716] = 1921, - [5717] = 5648, - [5718] = 4088, - [5719] = 1943, - [5720] = 5720, - [5721] = 5156, - [5722] = 5648, - [5723] = 4020, - [5724] = 5648, - [5725] = 5648, - [5726] = 4793, - [5727] = 5157, - [5728] = 3887, - [5729] = 3886, - [5730] = 3899, - [5731] = 5648, - [5732] = 3898, - [5733] = 3963, - [5734] = 3894, - [5735] = 3995, - [5736] = 3957, - [5737] = 5160, - [5738] = 5161, - [5739] = 3940, - [5740] = 2392, - [5741] = 4076, - [5742] = 5163, - [5743] = 5163, - [5744] = 5744, - [5745] = 4070, - [5746] = 5648, - [5747] = 4041, - [5748] = 4094, - [5749] = 4091, - [5750] = 3822, - [5751] = 3823, - [5752] = 3868, - [5753] = 5280, - [5754] = 3768, - [5755] = 5648, - [5756] = 4006, - [5757] = 3923, - [5758] = 3896, - [5759] = 5161, - [5760] = 5648, - [5761] = 5648, - [5762] = 5648, - [5763] = 5648, - [5764] = 4046, - [5765] = 4039, - [5766] = 3855, - [5767] = 3770, - [5768] = 4066, - [5769] = 5328, - [5770] = 4785, - [5771] = 5648, - [5772] = 3803, - [5773] = 3851, - [5774] = 3928, - [5775] = 4016, - [5776] = 4083, - [5777] = 3856, - [5778] = 3979, - [5779] = 5156, - [5780] = 4785, - [5781] = 5328, - [5782] = 3849, - [5783] = 5157, - [5784] = 4097, - [5785] = 5163, - [5786] = 5648, - [5787] = 3936, - [5788] = 3846, - [5789] = 3942, - [5790] = 5648, - [5791] = 5648, - [5792] = 3895, - [5793] = 4785, - [5794] = 3817, - [5795] = 3922, - [5796] = 5161, - [5797] = 5160, - [5798] = 5798, - [5799] = 5157, - [5800] = 5156, - [5801] = 5801, + [5649] = 4200, + [5650] = 2438, + [5651] = 2430, + [5652] = 5652, + [5653] = 4240, + [5654] = 3324, + [5655] = 5655, + [5656] = 5655, + [5657] = 3289, + [5658] = 5188, + [5659] = 5103, + [5660] = 3312, + [5661] = 3316, + [5662] = 2392, + [5663] = 3313, + [5664] = 5655, + [5665] = 4200, + [5666] = 1946, + [5667] = 3200, + [5668] = 5655, + [5669] = 5655, + [5670] = 5188, + [5671] = 3319, + [5672] = 1920, + [5673] = 3270, + [5674] = 4150, + [5675] = 4368, + [5676] = 5227, + [5677] = 3318, + [5678] = 5102, + [5679] = 3292, + [5680] = 3293, + [5681] = 5102, + [5682] = 3251, + [5683] = 3208, + [5684] = 5103, + [5685] = 1947, + [5686] = 4196, + [5687] = 5655, + [5688] = 5101, + [5689] = 3294, + [5690] = 3241, + [5691] = 3302, + [5692] = 3295, + [5693] = 5655, + [5694] = 3298, + [5695] = 5655, + [5696] = 5655, + [5697] = 3253, + [5698] = 5102, + [5699] = 3201, + [5700] = 5103, + [5701] = 5655, + [5702] = 3296, + [5703] = 5655, + [5704] = 3287, + [5705] = 5655, + [5706] = 3317, + [5707] = 3285, + [5708] = 5655, + [5709] = 3307, + [5710] = 3231, + [5711] = 5104, + [5712] = 5101, + [5713] = 4147, + [5714] = 3221, + [5715] = 5104, + [5716] = 5655, + [5717] = 5105, + [5718] = 5655, + [5719] = 5188, + [5720] = 5655, + [5721] = 3279, + [5722] = 5105, + [5723] = 3281, + [5724] = 3248, + [5725] = 3265, + [5726] = 4151, + [5727] = 3213, + [5728] = 5655, + [5729] = 5655, + [5730] = 3297, + [5731] = 3219, + [5732] = 3340, + [5733] = 4143, + [5734] = 5227, + [5735] = 4136, + [5736] = 4215, + [5737] = 5655, + [5738] = 3276, + [5739] = 3336, + [5740] = 3278, + [5741] = 5105, + [5742] = 3234, + [5743] = 4261, + [5744] = 3215, + [5745] = 3322, + [5746] = 3220, + [5747] = 5104, + [5748] = 3209, + [5749] = 5655, + [5750] = 3306, + [5751] = 4246, + [5752] = 4142, + [5753] = 3203, + [5754] = 4190, + [5755] = 3305, + [5756] = 5655, + [5757] = 3218, + [5758] = 3229, + [5759] = 4272, + [5760] = 5760, + [5761] = 3205, + [5762] = 3259, + [5763] = 4153, + [5764] = 4200, + [5765] = 4168, + [5766] = 5655, + [5767] = 3207, + [5768] = 5655, + [5769] = 3288, + [5770] = 5227, + [5771] = 3226, + [5772] = 4200, + [5773] = 4220, + [5774] = 3321, + [5775] = 3273, + [5776] = 3300, + [5777] = 3257, + [5778] = 3216, + [5779] = 4324, + [5780] = 4094, + [5781] = 3303, + [5782] = 5655, + [5783] = 3255, + [5784] = 3304, + [5785] = 3325, + [5786] = 3256, + [5787] = 4225, + [5788] = 3267, + [5789] = 5789, + [5790] = 4390, + [5791] = 5655, + [5792] = 4260, + [5793] = 3266, + [5794] = 4391, + [5795] = 4402, + [5796] = 3343, + [5797] = 4428, + [5798] = 5655, + [5799] = 4200, + [5800] = 5101, + [5801] = 3299, [5802] = 5802, [5803] = 5803, - [5804] = 5804, - [5805] = 5280, - [5806] = 5806, - [5807] = 5802, - [5808] = 5808, - [5809] = 5808, + [5804] = 5103, + [5805] = 5102, + [5806] = 5105, + [5807] = 5227, + [5808] = 5103, + [5809] = 5104, [5810] = 5810, - [5811] = 5808, - [5812] = 5163, - [5813] = 5801, - [5814] = 5808, - [5815] = 5280, - [5816] = 5816, - [5817] = 5280, - [5818] = 5163, - [5819] = 5801, - [5820] = 5157, - [5821] = 5328, + [5811] = 5811, + [5812] = 5803, + [5813] = 5227, + [5814] = 5814, + [5815] = 5815, + [5816] = 5102, + [5817] = 5817, + [5818] = 5803, + [5819] = 5101, + [5820] = 5105, + [5821] = 5105, [5822] = 5822, - [5823] = 5803, - [5824] = 5804, - [5825] = 5806, - [5826] = 2463, - [5827] = 5801, - [5828] = 5808, + [5823] = 5188, + [5824] = 5803, + [5825] = 2464, + [5826] = 5826, + [5827] = 5827, + [5828] = 5826, [5829] = 5829, - [5830] = 5802, - [5831] = 5831, - [5832] = 5156, - [5833] = 5802, - [5834] = 5157, - [5835] = 5160, - [5836] = 5836, - [5837] = 5837, + [5830] = 5830, + [5831] = 5810, + [5832] = 5101, + [5833] = 5104, + [5834] = 5834, + [5835] = 5104, + [5836] = 5103, + [5837] = 2298, [5838] = 5838, - [5839] = 5839, - [5840] = 5156, - [5841] = 5157, - [5842] = 5808, - [5843] = 5161, - [5844] = 2264, - [5845] = 5802, - [5846] = 4841, - [5847] = 4785, - [5848] = 2461, - [5849] = 5163, - [5850] = 5808, - [5851] = 5156, - [5852] = 5157, - [5853] = 2457, - [5854] = 5810, - [5855] = 5836, - [5856] = 5802, - [5857] = 5808, - [5858] = 5160, - [5859] = 3742, - [5860] = 5860, - [5861] = 5861, - [5862] = 5862, - [5863] = 2297, - [5864] = 5864, - [5865] = 5156, - [5866] = 2290, - [5867] = 2463, - [5868] = 5156, - [5869] = 5160, - [5870] = 5328, - [5871] = 5161, - [5872] = 5161, - [5873] = 5163, - [5874] = 5801, - [5875] = 5875, - [5876] = 2264, - [5877] = 5163, - [5878] = 5160, - [5879] = 5808, - [5880] = 5808, - [5881] = 5328, - [5882] = 5161, - [5883] = 5157, - [5884] = 2461, - [5885] = 5161, - [5886] = 5160, - [5887] = 5163, - [5888] = 3132, - [5889] = 5280, - [5890] = 3612, - [5891] = 3611, - [5892] = 4785, - [5893] = 5280, - [5894] = 2217, - [5895] = 5328, - [5896] = 2463, - [5897] = 5897, - [5898] = 3548, - [5899] = 5280, - [5900] = 5900, - [5901] = 2206, - [5902] = 2207, - [5903] = 2392, - [5904] = 5328, - [5905] = 3505, - [5906] = 5906, - [5907] = 5280, - [5908] = 5328, - [5909] = 4785, - [5910] = 4874, - [5911] = 4869, + [5839] = 5102, + [5840] = 5840, + [5841] = 5826, + [5842] = 2269, + [5843] = 3130, + [5844] = 5188, + [5845] = 4070, + [5846] = 5840, + [5847] = 2471, + [5848] = 5227, + [5849] = 5815, + [5850] = 5814, + [5851] = 4200, + [5852] = 5101, + [5853] = 5853, + [5854] = 2269, + [5855] = 5105, + [5856] = 2471, + [5857] = 2458, + [5858] = 5105, + [5859] = 5803, + [5860] = 5811, + [5861] = 5817, + [5862] = 5104, + [5863] = 5101, + [5864] = 5104, + [5865] = 5826, + [5866] = 5103, + [5867] = 5102, + [5868] = 5101, + [5869] = 5869, + [5870] = 5803, + [5871] = 2464, + [5872] = 5826, + [5873] = 5873, + [5874] = 5803, + [5875] = 5826, + [5876] = 5817, + [5877] = 5803, + [5878] = 5188, + [5879] = 5803, + [5880] = 5105, + [5881] = 5104, + [5882] = 5882, + [5883] = 5817, + [5884] = 2301, + [5885] = 5817, + [5886] = 5103, + [5887] = 5887, + [5888] = 5803, + [5889] = 5103, + [5890] = 5890, + [5891] = 5102, + [5892] = 5102, + [5893] = 5101, + [5894] = 3192, + [5895] = 4260, + [5896] = 5188, + [5897] = 4261, + [5898] = 5898, + [5899] = 4260, + [5900] = 5227, + [5901] = 4200, + [5902] = 5227, + [5903] = 5188, + [5904] = 5227, + [5905] = 2206, + [5906] = 4261, + [5907] = 3177, + [5908] = 2464, + [5909] = 5188, + [5910] = 5227, + [5911] = 5911, [5912] = 5912, - [5913] = 5913, - [5914] = 4785, - [5915] = 5280, - [5916] = 3657, - [5917] = 4785, - [5918] = 4785, - [5919] = 5919, - [5920] = 4874, - [5921] = 4869, - [5922] = 5280, - [5923] = 5328, - [5924] = 5328, - [5925] = 5328, - [5926] = 3106, - [5927] = 3690, - [5928] = 2461, - [5929] = 2457, - [5930] = 5280, - [5931] = 5328, - [5932] = 5163, - [5933] = 5280, - [5934] = 5280, - [5935] = 2297, - [5936] = 5328, - [5937] = 5156, - [5938] = 5157, - [5939] = 2463, - [5940] = 5156, - [5941] = 5161, - [5942] = 2345, - [5943] = 5280, - [5944] = 5156, - [5945] = 5160, - [5946] = 2343, - [5947] = 5328, - [5948] = 5161, - [5949] = 2463, - [5950] = 5280, - [5951] = 5157, - [5952] = 5160, - [5953] = 5163, - [5954] = 2463, - [5955] = 4785, - [5956] = 5956, - [5957] = 5957, - [5958] = 5328, - [5959] = 5161, - [5960] = 5960, - [5961] = 5960, - [5962] = 2463, - [5963] = 5963, - [5964] = 5160, - [5965] = 5157, - [5966] = 5328, - [5967] = 5156, - [5968] = 4785, - [5969] = 5161, - [5970] = 5160, - [5971] = 4785, - [5972] = 4785, - [5973] = 5960, - [5974] = 5960, - [5975] = 5280, - [5976] = 2344, - [5977] = 5161, - [5978] = 5328, - [5979] = 5157, - [5980] = 5156, - [5981] = 4785, - [5982] = 2340, - [5983] = 2290, - [5984] = 5163, - [5985] = 5328, - [5986] = 5160, - [5987] = 5280, - [5988] = 5163, - [5989] = 2463, - [5990] = 5897, - [5991] = 2463, - [5992] = 5960, - [5993] = 4785, - [5994] = 5163, - [5995] = 5157, - [5996] = 2463, - [5997] = 1921, - [5998] = 5998, - [5999] = 5999, - [6000] = 6000, - [6001] = 6001, - [6002] = 2463, + [5913] = 5227, + [5914] = 5914, + [5915] = 2921, + [5916] = 3186, + [5917] = 2218, + [5918] = 2458, + [5919] = 4200, + [5920] = 3187, + [5921] = 5188, + [5922] = 2471, + [5923] = 3180, + [5924] = 2392, + [5925] = 5188, + [5926] = 2922, + [5927] = 4200, + [5928] = 5227, + [5929] = 5188, + [5930] = 2207, + [5931] = 5931, + [5932] = 5188, + [5933] = 4200, + [5934] = 5934, + [5935] = 5227, + [5936] = 3195, + [5937] = 4200, + [5938] = 5227, + [5939] = 4200, + [5940] = 5101, + [5941] = 2464, + [5942] = 5942, + [5943] = 5101, + [5944] = 5944, + [5945] = 5105, + [5946] = 2342, + [5947] = 2464, + [5948] = 5104, + [5949] = 5103, + [5950] = 5105, + [5951] = 5104, + [5952] = 5102, + [5953] = 2464, + [5954] = 5944, + [5955] = 5188, + [5956] = 5103, + [5957] = 5102, + [5958] = 5102, + [5959] = 2341, + [5960] = 5931, + [5961] = 5103, + [5962] = 4200, + [5963] = 5104, + [5964] = 5105, + [5965] = 5227, + [5966] = 2340, + [5967] = 2301, + [5968] = 5968, + [5969] = 5101, + [5970] = 5944, + [5971] = 4200, + [5972] = 5188, + [5973] = 5227, + [5974] = 5227, + [5975] = 5105, + [5976] = 5104, + [5977] = 4200, + [5978] = 5103, + [5979] = 5102, + [5980] = 5188, + [5981] = 5101, + [5982] = 5105, + [5983] = 5227, + [5984] = 5188, + [5985] = 5104, + [5986] = 5101, + [5987] = 5188, + [5988] = 5227, + [5989] = 5989, + [5990] = 5103, + [5991] = 5944, + [5992] = 5102, + [5993] = 5188, + [5994] = 4200, + [5995] = 4200, + [5996] = 2464, + [5997] = 5944, + [5998] = 2464, + [5999] = 2464, + [6000] = 2298, + [6001] = 2338, + [6002] = 6002, [6003] = 6003, - [6004] = 6004, + [6004] = 1920, [6005] = 6005, - [6006] = 2463, + [6006] = 6006, [6007] = 6007, [6008] = 6008, - [6009] = 6009, + [6009] = 2464, [6010] = 6010, [6011] = 6011, [6012] = 6012, [6013] = 6013, [6014] = 6014, - [6015] = 6015, - [6016] = 6016, - [6017] = 2463, + [6015] = 2464, + [6016] = 2464, + [6017] = 6017, [6018] = 6018, - [6019] = 6019, + [6019] = 2464, [6020] = 6020, - [6021] = 2344, - [6022] = 2340, + [6021] = 6021, + [6022] = 6022, [6023] = 6023, [6024] = 6024, - [6025] = 5897, - [6026] = 2343, + [6025] = 2341, + [6026] = 2338, [6027] = 6027, [6028] = 6028, - [6029] = 5897, - [6030] = 6027, + [6029] = 6029, + [6030] = 6028, [6031] = 6031, - [6032] = 6028, - [6033] = 6023, - [6034] = 2345, - [6035] = 2305, - [6036] = 6018, - [6037] = 6037, - [6038] = 2392, - [6039] = 6039, - [6040] = 6024, - [6041] = 2457, - [6042] = 6023, - [6043] = 6043, + [6032] = 6032, + [6033] = 2392, + [6034] = 6029, + [6035] = 2458, + [6036] = 6031, + [6037] = 2342, + [6038] = 2340, + [6039] = 6028, + [6040] = 5931, + [6041] = 5931, + [6042] = 6032, + [6043] = 6014, [6044] = 6044, - [6045] = 6039, - [6046] = 6027, - [6047] = 6039, - [6048] = 6048, + [6045] = 6045, + [6046] = 2286, + [6047] = 6047, + [6048] = 6031, [6049] = 6049, - [6050] = 3427, - [6051] = 6051, - [6052] = 6051, - [6053] = 6048, + [6050] = 6032, + [6051] = 6047, + [6052] = 6052, + [6053] = 6053, [6054] = 6054, - [6055] = 6048, - [6056] = 6049, - [6057] = 6048, - [6058] = 6058, - [6059] = 5913, - [6060] = 6051, - [6061] = 6058, - [6062] = 6062, - [6063] = 6051, - [6064] = 6049, + [6055] = 6054, + [6056] = 6056, + [6057] = 6056, + [6058] = 6056, + [6059] = 6054, + [6060] = 6060, + [6061] = 2212, + [6062] = 3114, + [6063] = 6056, + [6064] = 6064, [6065] = 6065, - [6066] = 6048, - [6067] = 6051, - [6068] = 6049, - [6069] = 6058, - [6070] = 6054, - [6071] = 6058, - [6072] = 2211, - [6073] = 6058, - [6074] = 6065, - [6075] = 6049, - [6076] = 6076, - [6077] = 6077, - [6078] = 6078, - [6079] = 6076, - [6080] = 6080, - [6081] = 6080, - [6082] = 3137, + [6066] = 6056, + [6067] = 6060, + [6068] = 6054, + [6069] = 6054, + [6070] = 6060, + [6071] = 6071, + [6072] = 6064, + [6073] = 6073, + [6074] = 6073, + [6075] = 5914, + [6076] = 6073, + [6077] = 6060, + [6078] = 6060, + [6079] = 6073, + [6080] = 6071, + [6081] = 6073, + [6082] = 6082, [6083] = 6083, [6084] = 6084, [6085] = 6085, - [6086] = 6086, + [6086] = 2413, [6087] = 6087, - [6088] = 6080, - [6089] = 2432, - [6090] = 6086, - [6091] = 6080, - [6092] = 6080, - [6093] = 6093, - [6094] = 3132, - [6095] = 6095, - [6096] = 3173, - [6097] = 6093, - [6098] = 6093, + [6088] = 6088, + [6089] = 6089, + [6090] = 6085, + [6091] = 6085, + [6092] = 6082, + [6093] = 2969, + [6094] = 6094, + [6095] = 6083, + [6096] = 6096, + [6097] = 6085, + [6098] = 6085, [6099] = 6099, - [6100] = 6093, - [6101] = 6093, - [6102] = 6102, - [6103] = 6093, - [6104] = 6093, - [6105] = 6105, - [6106] = 3222, - [6107] = 6093, - [6108] = 6093, - [6109] = 6093, - [6110] = 6093, - [6111] = 3241, - [6112] = 6099, - [6113] = 6093, - [6114] = 6093, - [6115] = 6115, - [6116] = 6116, - [6117] = 6093, - [6118] = 3179, - [6119] = 6093, - [6120] = 6099, - [6121] = 6093, - [6122] = 3178, - [6123] = 3171, - [6124] = 6093, - [6125] = 6093, - [6126] = 6093, - [6127] = 6093, - [6128] = 6093, - [6129] = 6093, - [6130] = 6115, + [6100] = 6100, + [6101] = 6101, + [6102] = 6101, + [6103] = 6103, + [6104] = 6101, + [6105] = 6101, + [6106] = 6101, + [6107] = 6101, + [6108] = 3010, + [6109] = 6109, + [6110] = 6099, + [6111] = 6101, + [6112] = 6101, + [6113] = 6101, + [6114] = 6101, + [6115] = 6101, + [6116] = 6101, + [6117] = 6117, + [6118] = 6101, + [6119] = 6119, + [6120] = 6101, + [6121] = 6101, + [6122] = 6122, + [6123] = 6101, + [6124] = 6101, + [6125] = 3013, + [6126] = 6099, + [6127] = 6101, + [6128] = 6101, + [6129] = 6101, + [6130] = 6101, [6131] = 6131, - [6132] = 6093, - [6133] = 6093, - [6134] = 6093, - [6135] = 6099, - [6136] = 6136, - [6137] = 3106, - [6138] = 6093, - [6139] = 6093, - [6140] = 3219, - [6141] = 6093, - [6142] = 6142, - [6143] = 6093, - [6144] = 6093, - [6145] = 6093, - [6146] = 6093, - [6147] = 6093, - [6148] = 6093, - [6149] = 2461, - [6150] = 6093, - [6151] = 6099, - [6152] = 6093, - [6153] = 6093, - [6154] = 6093, - [6155] = 3213, - [6156] = 6093, - [6157] = 6093, - [6158] = 6093, - [6159] = 6093, - [6160] = 6093, - [6161] = 6161, - [6162] = 6093, - [6163] = 6093, - [6164] = 6093, - [6165] = 6093, - [6166] = 6093, - [6167] = 6093, - [6168] = 6093, - [6169] = 6169, - [6170] = 2463, - [6171] = 2463, - [6172] = 6169, - [6173] = 2463, - [6174] = 2463, + [6132] = 6101, + [6133] = 6101, + [6134] = 6134, + [6135] = 6101, + [6136] = 6101, + [6137] = 6101, + [6138] = 6101, + [6139] = 6101, + [6140] = 6101, + [6141] = 6101, + [6142] = 3014, + [6143] = 6099, + [6144] = 6101, + [6145] = 6101, + [6146] = 6101, + [6147] = 6147, + [6148] = 3023, + [6149] = 6099, + [6150] = 6101, + [6151] = 3001, + [6152] = 6101, + [6153] = 3008, + [6154] = 6101, + [6155] = 2922, + [6156] = 6101, + [6157] = 6101, + [6158] = 2985, + [6159] = 6101, + [6160] = 6101, + [6161] = 2471, + [6162] = 2921, + [6163] = 6101, + [6164] = 6101, + [6165] = 6101, + [6166] = 6101, + [6167] = 6131, + [6168] = 6101, + [6169] = 3006, + [6170] = 6101, + [6171] = 6101, + [6172] = 6101, + [6173] = 6101, + [6174] = 6101, [6175] = 6175, - [6176] = 2463, - [6177] = 2463, - [6178] = 2463, - [6179] = 2463, - [6180] = 2463, - [6181] = 6181, - [6182] = 2463, - [6183] = 6183, + [6176] = 2464, + [6177] = 2464, + [6178] = 2464, + [6179] = 2438, + [6180] = 6180, + [6181] = 2464, + [6182] = 2464, + [6183] = 2438, [6184] = 6184, - [6185] = 2407, - [6186] = 2463, + [6185] = 2464, + [6186] = 2464, [6187] = 6187, - [6188] = 2463, - [6189] = 2463, - [6190] = 2463, - [6191] = 6024, - [6192] = 2463, - [6193] = 6193, - [6194] = 2463, - [6195] = 6195, - [6196] = 2463, - [6197] = 2463, - [6198] = 2463, - [6199] = 2407, - [6200] = 2463, - [6201] = 6201, - [6202] = 2463, - [6203] = 2463, - [6204] = 6204, - [6205] = 2407, - [6206] = 2407, - [6207] = 2463, - [6208] = 2463, - [6209] = 2463, - [6210] = 6210, + [6188] = 2464, + [6189] = 2464, + [6190] = 2464, + [6191] = 2464, + [6192] = 6192, + [6193] = 2464, + [6194] = 2464, + [6195] = 2464, + [6196] = 2464, + [6197] = 2464, + [6198] = 6198, + [6199] = 2464, + [6200] = 2438, + [6201] = 2464, + [6202] = 2464, + [6203] = 2464, + [6204] = 2464, + [6205] = 2464, + [6206] = 6206, + [6207] = 2464, + [6208] = 6206, + [6209] = 2464, + [6210] = 2438, [6211] = 6211, [6212] = 6212, [6213] = 6213, - [6214] = 6214, - [6215] = 6211, - [6216] = 6210, + [6214] = 6029, + [6215] = 2464, + [6216] = 6216, [6217] = 6217, [6218] = 6218, [6219] = 6219, - [6220] = 6220, + [6220] = 6216, [6221] = 6221, [6222] = 6222, [6223] = 6223, - [6224] = 6224, + [6224] = 6218, [6225] = 6225, - [6226] = 6224, + [6226] = 6226, [6227] = 6227, - [6228] = 6227, + [6228] = 6228, [6229] = 6229, - [6230] = 6224, + [6230] = 6229, [6231] = 6231, - [6232] = 6224, - [6233] = 6227, - [6234] = 6224, - [6235] = 6224, - [6236] = 6224, + [6232] = 6232, + [6233] = 6233, + [6234] = 6234, + [6235] = 6234, + [6236] = 6233, [6237] = 6237, - [6238] = 6224, - [6239] = 6224, + [6238] = 6229, + [6239] = 6233, [6240] = 6240, - [6241] = 6224, - [6242] = 6224, - [6243] = 6240, - [6244] = 6224, - [6245] = 6245, - [6246] = 6224, - [6247] = 6224, - [6248] = 6248, - [6249] = 6224, - [6250] = 6224, - [6251] = 3612, - [6252] = 3611, - [6253] = 6224, - [6254] = 6224, - [6255] = 6224, - [6256] = 6224, - [6257] = 6223, - [6258] = 6227, - [6259] = 6240, - [6260] = 6237, - [6261] = 6224, - [6262] = 6224, - [6263] = 3505, - [6264] = 6237, - [6265] = 6224, - [6266] = 6224, - [6267] = 6224, - [6268] = 6268, - [6269] = 3548, - [6270] = 6237, - [6271] = 6224, - [6272] = 6272, - [6273] = 6224, - [6274] = 6237, - [6275] = 6275, - [6276] = 6240, - [6277] = 6224, - [6278] = 6278, - [6279] = 6240, - [6280] = 3657, - [6281] = 3690, - [6282] = 6223, - [6283] = 6283, - [6284] = 6278, - [6285] = 6224, - [6286] = 6237, - [6287] = 6224, - [6288] = 6237, - [6289] = 6224, - [6290] = 6240, - [6291] = 6223, - [6292] = 6237, - [6293] = 6240, - [6294] = 6224, - [6295] = 6224, - [6296] = 6240, - [6297] = 6240, - [6298] = 6237, - [6299] = 6224, - [6300] = 6300, - [6301] = 6237, - [6302] = 6224, - [6303] = 6240, - [6304] = 6240, - [6305] = 6223, - [6306] = 6306, - [6307] = 6224, - [6308] = 6224, - [6309] = 6237, - [6310] = 6240, - [6311] = 6224, - [6312] = 6312, - [6313] = 6224, - [6314] = 6237, - [6315] = 6227, - [6316] = 6224, - [6317] = 6224, - [6318] = 6237, - [6319] = 6224, - [6320] = 6224, - [6321] = 6224, - [6322] = 6223, - [6323] = 6224, - [6324] = 6223, - [6325] = 6306, - [6326] = 6237, - [6327] = 6240, - [6328] = 6224, - [6329] = 6306, - [6330] = 6306, - [6331] = 6224, - [6332] = 6223, - [6333] = 6224, - [6334] = 6224, - [6335] = 6224, + [6241] = 6232, + [6242] = 6234, + [6243] = 6234, + [6244] = 6229, + [6245] = 6233, + [6246] = 3186, + [6247] = 6247, + [6248] = 6233, + [6249] = 6249, + [6250] = 6249, + [6251] = 6234, + [6252] = 6252, + [6253] = 6253, + [6254] = 3187, + [6255] = 6255, + [6256] = 6253, + [6257] = 6229, + [6258] = 6234, + [6259] = 6253, + [6260] = 6234, + [6261] = 6234, + [6262] = 6233, + [6263] = 6234, + [6264] = 3177, + [6265] = 6234, + [6266] = 6234, + [6267] = 6267, + [6268] = 6234, + [6269] = 3180, + [6270] = 6234, + [6271] = 6271, + [6272] = 6249, + [6273] = 6234, + [6274] = 6229, + [6275] = 6233, + [6276] = 6234, + [6277] = 6234, + [6278] = 6234, + [6279] = 6229, + [6280] = 6233, + [6281] = 6253, + [6282] = 6232, + [6283] = 6234, + [6284] = 6234, + [6285] = 6232, + [6286] = 6232, + [6287] = 6229, + [6288] = 6234, + [6289] = 6229, + [6290] = 6233, + [6291] = 6229, + [6292] = 6233, + [6293] = 6234, + [6294] = 6234, + [6295] = 6234, + [6296] = 6229, + [6297] = 6234, + [6298] = 3192, + [6299] = 6234, + [6300] = 6229, + [6301] = 6234, + [6302] = 6234, + [6303] = 6233, + [6304] = 6232, + [6305] = 6234, + [6306] = 6233, + [6307] = 6229, + [6308] = 6234, + [6309] = 6234, + [6310] = 6310, + [6311] = 6311, + [6312] = 6234, + [6313] = 6229, + [6314] = 6234, + [6315] = 6315, + [6316] = 6234, + [6317] = 6234, + [6318] = 6234, + [6319] = 6234, + [6320] = 6234, + [6321] = 6249, + [6322] = 6234, + [6323] = 6229, + [6324] = 6234, + [6325] = 6234, + [6326] = 6253, + [6327] = 6234, + [6328] = 6233, + [6329] = 6232, + [6330] = 6234, + [6331] = 6232, + [6332] = 6234, + [6333] = 6234, + [6334] = 6249, + [6335] = 6335, [6336] = 6336, - [6337] = 6224, - [6338] = 6338, - [6339] = 6306, - [6340] = 6224, - [6341] = 6224, - [6342] = 6237, - [6343] = 6224, - [6344] = 6237, - [6345] = 6224, - [6346] = 6346, - [6347] = 6224, - [6348] = 6240, - [6349] = 6240, - [6350] = 6237, - [6351] = 6240, - [6352] = 6278, - [6353] = 6227, - [6354] = 6240, - [6355] = 6355, - [6356] = 6223, + [6337] = 6233, + [6338] = 6234, + [6339] = 6234, + [6340] = 6234, + [6341] = 6234, + [6342] = 6342, + [6343] = 6233, + [6344] = 3195, + [6345] = 6249, + [6346] = 6234, + [6347] = 6347, + [6348] = 6233, + [6349] = 6232, + [6350] = 6229, + [6351] = 6234, + [6352] = 6234, + [6353] = 6234, + [6354] = 6233, + [6355] = 6234, + [6356] = 6229, [6357] = 6357, - [6358] = 6358, - [6359] = 6359, - [6360] = 6360, - [6361] = 3427, - [6362] = 6362, + [6358] = 6234, + [6359] = 6336, + [6360] = 6234, + [6361] = 6234, + [6362] = 6336, [6363] = 6363, [6364] = 6364, [6365] = 6365, - [6366] = 6366, + [6366] = 3114, [6367] = 6367, [6368] = 6368, [6369] = 6369, [6370] = 6370, - [6371] = 6364, - [6372] = 6364, - [6373] = 6368, + [6371] = 6371, + [6372] = 6372, + [6373] = 6370, [6374] = 6374, - [6375] = 6364, - [6376] = 6376, - [6377] = 6364, - [6378] = 6364, + [6375] = 6375, + [6376] = 6370, + [6377] = 6377, + [6378] = 6370, [6379] = 6379, - [6380] = 6380, + [6380] = 6379, [6381] = 6381, - [6382] = 6382, - [6383] = 6383, - [6384] = 6384, - [6385] = 6364, - [6386] = 6368, - [6387] = 6364, - [6388] = 6388, + [6382] = 6370, + [6383] = 6370, + [6384] = 6370, + [6385] = 6370, + [6386] = 6370, + [6387] = 6387, + [6388] = 6370, [6389] = 6389, - [6390] = 6364, + [6390] = 6390, [6391] = 6391, [6392] = 6392, - [6393] = 6393, - [6394] = 6394, - [6395] = 6395, - [6396] = 6382, - [6397] = 6364, - [6398] = 6398, - [6399] = 6364, - [6400] = 6364, - [6401] = 6364, - [6402] = 6364, + [6393] = 6387, + [6394] = 6370, + [6395] = 6370, + [6396] = 6396, + [6397] = 6397, + [6398] = 6397, + [6399] = 6370, + [6400] = 6400, + [6401] = 6401, + [6402] = 6402, [6403] = 6403, - [6404] = 6404, + [6404] = 6370, [6405] = 6405, [6406] = 6406, - [6407] = 6365, + [6407] = 6407, [6408] = 6408, [6409] = 6409, - [6410] = 6410, - [6411] = 6411, + [6410] = 6370, + [6411] = 6370, [6412] = 6412, - [6413] = 6364, - [6414] = 6414, - [6415] = 6415, - [6416] = 6416, - [6417] = 6364, + [6413] = 6413, + [6414] = 6370, + [6415] = 6370, + [6416] = 6370, + [6417] = 6417, [6418] = 6418, - [6419] = 6365, - [6420] = 6364, - [6421] = 6364, + [6419] = 6419, + [6420] = 6402, + [6421] = 6421, [6422] = 6422, - [6423] = 6404, + [6423] = 6423, [6424] = 6424, - [6425] = 6382, - [6426] = 6364, - [6427] = 6364, + [6425] = 6425, + [6426] = 6426, + [6427] = 6427, [6428] = 6428, - [6429] = 6364, - [6430] = 6364, - [6431] = 6431, + [6429] = 6387, + [6430] = 6402, + [6431] = 6370, [6432] = 6432, [6433] = 6433, - [6434] = 6434, + [6434] = 6379, [6435] = 6435, - [6436] = 6436, + [6436] = 6370, [6437] = 6437, - [6438] = 6438, + [6438] = 6370, [6439] = 6439, [6440] = 6440, [6441] = 6441, - [6442] = 6442, - [6443] = 6443, - [6444] = 6444, - [6445] = 6445, - [6446] = 6446, - [6447] = 6447, - [6448] = 6447, - [6449] = 6447, - [6450] = 6447, - [6451] = 6447, - [6452] = 6447, - [6453] = 6447, - [6454] = 6447, - [6455] = 6447, - [6456] = 6447, - [6457] = 6447, - [6458] = 6447, - [6459] = 6447, - [6460] = 6447, - [6461] = 6447, - [6462] = 6447, - [6463] = 6447, - [6464] = 6447, - [6465] = 6447, - [6466] = 6447, - [6467] = 6447, - [6468] = 6447, - [6469] = 6447, - [6470] = 6447, - [6471] = 6447, - [6472] = 6447, - [6473] = 6447, - [6474] = 6447, - [6475] = 6447, - [6476] = 6447, - [6477] = 6447, - [6478] = 6447, - [6479] = 6447, - [6480] = 6447, - [6481] = 6447, - [6482] = 6447, - [6483] = 6447, - [6484] = 6447, - [6485] = 6447, - [6486] = 6447, - [6487] = 6487, - [6488] = 6488, - [6489] = 6487, - [6490] = 6487, - [6491] = 6491, - [6492] = 6491, - [6493] = 6491, - [6494] = 6491, - [6495] = 6488, - [6496] = 6487, - [6497] = 6491, - [6498] = 6491, - [6499] = 6488, - [6500] = 6487, - [6501] = 6487, - [6502] = 6488, - [6503] = 6488, - [6504] = 6488, - [6505] = 6488, - [6506] = 6487, - [6507] = 6487, - [6508] = 6487, - [6509] = 6491, - [6510] = 6487, - [6511] = 6491, - [6512] = 6487, - [6513] = 6488, - [6514] = 6487, - [6515] = 6491, - [6516] = 6491, - [6517] = 6491, - [6518] = 6488, - [6519] = 6487, - [6520] = 6487, - [6521] = 6491, - [6522] = 6491, - [6523] = 6491, - [6524] = 6487, - [6525] = 6488, - [6526] = 6488, - [6527] = 6487, - [6528] = 6487, - [6529] = 6491, - [6530] = 6487, - [6531] = 6488, - [6532] = 6488, - [6533] = 6487, - [6534] = 6491, - [6535] = 6488, - [6536] = 6488, - [6537] = 6488, - [6538] = 6491, - [6539] = 6491, - [6540] = 6488, - [6541] = 6488, - [6542] = 6491, - [6543] = 6488, - [6544] = 6487, - [6545] = 6488, - [6546] = 6487, - [6547] = 6491, - [6548] = 6491, - [6549] = 6491, - [6550] = 6488, - [6551] = 6487, - [6552] = 6488, + [6442] = 6441, + [6443] = 6441, + [6444] = 6441, + [6445] = 6441, + [6446] = 6441, + [6447] = 6441, + [6448] = 6441, + [6449] = 6441, + [6450] = 6441, + [6451] = 6441, + [6452] = 6441, + [6453] = 6441, + [6454] = 6441, + [6455] = 6441, + [6456] = 6441, + [6457] = 6441, + [6458] = 6441, + [6459] = 6441, + [6460] = 6441, + [6461] = 6441, + [6462] = 6441, + [6463] = 6441, + [6464] = 6441, + [6465] = 6441, + [6466] = 6441, + [6467] = 6441, + [6468] = 6441, + [6469] = 6441, + [6470] = 6441, + [6471] = 6441, + [6472] = 6441, + [6473] = 6441, + [6474] = 6441, + [6475] = 6441, + [6476] = 6441, + [6477] = 6441, + [6478] = 6441, + [6479] = 6441, + [6480] = 6441, + [6481] = 6481, + [6482] = 6482, + [6483] = 6483, + [6484] = 6483, + [6485] = 6482, + [6486] = 6483, + [6487] = 6482, + [6488] = 6482, + [6489] = 6481, + [6490] = 6483, + [6491] = 6482, + [6492] = 6481, + [6493] = 6482, + [6494] = 6482, + [6495] = 6483, + [6496] = 6481, + [6497] = 6483, + [6498] = 6483, + [6499] = 6482, + [6500] = 6482, + [6501] = 6482, + [6502] = 6481, + [6503] = 6481, + [6504] = 6481, + [6505] = 6482, + [6506] = 6483, + [6507] = 6483, + [6508] = 6481, + [6509] = 6483, + [6510] = 6483, + [6511] = 6481, + [6512] = 6482, + [6513] = 6482, + [6514] = 6482, + [6515] = 6481, + [6516] = 6481, + [6517] = 6481, + [6518] = 6481, + [6519] = 6483, + [6520] = 6481, + [6521] = 6482, + [6522] = 6481, + [6523] = 6483, + [6524] = 6482, + [6525] = 6483, + [6526] = 6481, + [6527] = 6483, + [6528] = 6482, + [6529] = 6481, + [6530] = 6481, + [6531] = 6481, + [6532] = 6483, + [6533] = 6481, + [6534] = 6483, + [6535] = 6483, + [6536] = 6483, + [6537] = 6482, + [6538] = 6482, + [6539] = 6483, + [6540] = 6481, + [6541] = 6483, + [6542] = 6482, + [6543] = 6483, + [6544] = 6482, + [6545] = 6481, + [6546] = 6482, + [6547] = 6547, + [6548] = 6548, + [6549] = 6549, + [6550] = 6550, + [6551] = 6551, + [6552] = 6552, [6553] = 6553, [6554] = 6554, - [6555] = 6555, + [6555] = 2392, [6556] = 6556, [6557] = 6557, [6558] = 6558, - [6559] = 2392, + [6559] = 6559, [6560] = 6560, [6561] = 6561, [6562] = 6562, @@ -12425,7 +12425,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6564] = 6564, [6565] = 6565, [6566] = 6566, - [6567] = 6567, + [6567] = 2217, [6568] = 6568, [6569] = 6569, [6570] = 6570, @@ -12433,21 +12433,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6572] = 6572, [6573] = 6573, [6574] = 6574, - [6575] = 6575, - [6576] = 2217, + [6575] = 2218, + [6576] = 6576, [6577] = 6577, [6578] = 6578, [6579] = 6579, [6580] = 6580, [6581] = 6581, - [6582] = 6582, + [6582] = 2458, [6583] = 6583, [6584] = 6584, [6585] = 6585, [6586] = 6586, - [6587] = 2219, + [6587] = 6587, [6588] = 6588, - [6589] = 2457, + [6589] = 6589, [6590] = 6590, [6591] = 6591, [6592] = 6592, @@ -12456,36 +12456,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6595] = 6595, [6596] = 6596, [6597] = 6597, - [6598] = 6594, - [6599] = 6599, + [6598] = 6598, + [6599] = 2392, [6600] = 6600, [6601] = 6601, [6602] = 6602, [6603] = 6603, [6604] = 6604, [6605] = 6605, - [6606] = 6606, + [6606] = 6589, [6607] = 6607, [6608] = 6608, - [6609] = 6594, - [6610] = 6594, - [6611] = 6611, - [6612] = 6602, - [6613] = 6613, + [6609] = 6609, + [6610] = 6610, + [6611] = 6589, + [6612] = 6612, + [6613] = 6588, [6614] = 6614, - [6615] = 6602, + [6615] = 6615, [6616] = 6616, - [6617] = 6617, + [6617] = 6588, [6618] = 6618, [6619] = 6619, [6620] = 6620, - [6621] = 6602, + [6621] = 6621, [6622] = 6622, [6623] = 6623, [6624] = 6624, [6625] = 6625, - [6626] = 6626, - [6627] = 6627, + [6626] = 6588, + [6627] = 6589, [6628] = 6628, [6629] = 6629, [6630] = 6630, @@ -12494,11 +12494,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6633] = 6633, [6634] = 6634, [6635] = 6635, - [6636] = 2392, + [6636] = 6636, [6637] = 6637, - [6638] = 6638, + [6638] = 2217, [6639] = 6639, - [6640] = 2219, + [6640] = 6640, [6641] = 6641, [6642] = 6642, [6643] = 6643, @@ -12510,375 +12510,375 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6649] = 6649, [6650] = 6650, [6651] = 6651, - [6652] = 2461, - [6653] = 6653, + [6652] = 6650, + [6653] = 6650, [6654] = 6654, - [6655] = 1933, - [6656] = 6656, + [6655] = 2471, + [6656] = 6645, [6657] = 6657, - [6658] = 1932, - [6659] = 6651, - [6660] = 6660, - [6661] = 6651, - [6662] = 6653, - [6663] = 6653, - [6664] = 6664, - [6665] = 6651, + [6658] = 6654, + [6659] = 6659, + [6660] = 1933, + [6661] = 6661, + [6662] = 6645, + [6663] = 6649, + [6664] = 6649, + [6665] = 1932, [6666] = 6666, - [6667] = 6656, - [6668] = 6656, - [6669] = 6651, - [6670] = 6670, - [6671] = 6671, - [6672] = 6670, - [6673] = 6651, + [6667] = 6667, + [6668] = 6666, + [6669] = 6669, + [6670] = 6645, + [6671] = 6648, + [6672] = 6669, + [6673] = 6673, [6674] = 6674, - [6675] = 6656, - [6676] = 6676, - [6677] = 6657, - [6678] = 6666, - [6679] = 6679, - [6680] = 6657, - [6681] = 6670, - [6682] = 6670, + [6675] = 6645, + [6676] = 6650, + [6677] = 6669, + [6678] = 6678, + [6679] = 6654, + [6680] = 6648, + [6681] = 6654, + [6682] = 6649, [6683] = 6666, - [6684] = 6657, + [6684] = 6684, [6685] = 6666, - [6686] = 6686, + [6686] = 6666, [6687] = 6687, - [6688] = 6657, - [6689] = 6660, - [6690] = 6660, - [6691] = 6653, - [6692] = 6692, + [6688] = 6650, + [6689] = 6689, + [6690] = 6690, + [6691] = 6669, + [6692] = 6649, [6693] = 6693, - [6694] = 6666, - [6695] = 6660, - [6696] = 6696, - [6697] = 6670, - [6698] = 6698, + [6694] = 6648, + [6695] = 6695, + [6696] = 6648, + [6697] = 6645, + [6698] = 6666, [6699] = 6699, - [6700] = 6656, + [6700] = 6700, [6701] = 6701, [6702] = 6702, [6703] = 6703, - [6704] = 6657, + [6704] = 6704, [6705] = 6705, [6706] = 6706, [6707] = 6707, [6708] = 6708, [6709] = 6709, [6710] = 6710, - [6711] = 6706, + [6711] = 6711, [6712] = 6712, - [6713] = 6709, + [6713] = 6713, [6714] = 6714, [6715] = 6715, - [6716] = 6709, + [6716] = 6716, [6717] = 6717, - [6718] = 6709, + [6718] = 6718, [6719] = 6719, - [6720] = 6720, + [6720] = 6709, [6721] = 6721, [6722] = 6722, - [6723] = 6723, + [6723] = 6709, [6724] = 6724, - [6725] = 6717, + [6725] = 6725, [6726] = 6726, - [6727] = 6717, - [6728] = 6728, - [6729] = 6646, - [6730] = 2457, + [6727] = 6727, + [6728] = 6711, + [6729] = 2458, + [6730] = 6730, [6731] = 6731, [6732] = 6732, - [6733] = 6708, + [6733] = 6733, [6734] = 6734, [6735] = 6735, [6736] = 6736, [6737] = 6737, [6738] = 6738, - [6739] = 6717, - [6740] = 6740, - [6741] = 6741, + [6739] = 6710, + [6740] = 6710, + [6741] = 6705, [6742] = 6742, - [6743] = 6710, - [6744] = 6744, + [6743] = 6743, + [6744] = 6710, [6745] = 6745, [6746] = 6746, [6747] = 6747, - [6748] = 6709, + [6748] = 6748, [6749] = 6749, [6750] = 6750, - [6751] = 6751, - [6752] = 6752, - [6753] = 6753, - [6754] = 6706, - [6755] = 6755, - [6756] = 6756, - [6757] = 6717, - [6758] = 6706, - [6759] = 6710, - [6760] = 6710, - [6761] = 6761, - [6762] = 2206, - [6763] = 6763, - [6764] = 6764, + [6751] = 6709, + [6752] = 6705, + [6753] = 1935, + [6754] = 6711, + [6755] = 2207, + [6756] = 2206, + [6757] = 6711, + [6758] = 6758, + [6759] = 6759, + [6760] = 6760, + [6761] = 6640, + [6762] = 6762, + [6763] = 6762, + [6764] = 6762, [6765] = 6765, - [6766] = 2207, + [6766] = 6705, [6767] = 6767, [6768] = 6768, - [6769] = 6028, - [6770] = 6770, - [6771] = 6771, - [6772] = 1934, - [6773] = 6708, - [6774] = 6774, + [6769] = 6769, + [6770] = 6710, + [6771] = 6711, + [6772] = 6047, + [6773] = 6705, + [6774] = 6709, [6775] = 6775, [6776] = 6776, [6777] = 6777, - [6778] = 6706, - [6779] = 6779, - [6780] = 6710, - [6781] = 6781, + [6778] = 6778, + [6779] = 6778, + [6780] = 6780, + [6781] = 6778, [6782] = 6782, [6783] = 6783, - [6784] = 2451, + [6784] = 6784, [6785] = 6785, [6786] = 6786, [6787] = 6787, [6788] = 6788, - [6789] = 6789, + [6789] = 6784, [6790] = 6790, [6791] = 6791, [6792] = 6792, - [6793] = 6793, + [6793] = 3270, [6794] = 6794, [6795] = 6795, - [6796] = 6788, - [6797] = 6797, + [6796] = 6796, + [6797] = 6790, [6798] = 6798, [6799] = 6799, [6800] = 6800, - [6801] = 6800, - [6802] = 6800, + [6801] = 6790, + [6802] = 6785, [6803] = 6803, - [6804] = 6792, + [6804] = 6640, [6805] = 6805, - [6806] = 6790, - [6807] = 6807, - [6808] = 6792, + [6806] = 6806, + [6807] = 6782, + [6808] = 6808, [6809] = 6809, [6810] = 6810, - [6811] = 6790, - [6812] = 6812, - [6813] = 6813, + [6811] = 6811, + [6812] = 6782, + [6813] = 6778, [6814] = 6814, - [6815] = 6815, - [6816] = 6816, - [6817] = 6817, - [6818] = 6818, + [6815] = 6790, + [6816] = 6790, + [6817] = 6784, + [6818] = 6795, [6819] = 6819, [6820] = 6820, [6821] = 6821, [6822] = 6822, [6823] = 6823, - [6824] = 6824, - [6825] = 6788, + [6824] = 6784, + [6825] = 6825, [6826] = 6826, - [6827] = 6827, + [6827] = 6784, [6828] = 6828, - [6829] = 6829, - [6830] = 6830, - [6831] = 6831, + [6829] = 6803, + [6830] = 6820, + [6831] = 6673, [6832] = 6832, [6833] = 6833, - [6834] = 6834, - [6835] = 6792, + [6834] = 6795, + [6835] = 6835, [6836] = 6836, [6837] = 6837, - [6838] = 6826, + [6838] = 6838, [6839] = 6839, - [6840] = 6646, + [6840] = 6785, [6841] = 6841, [6842] = 6842, - [6843] = 6819, - [6844] = 6837, + [6843] = 6843, + [6844] = 6810, [6845] = 6845, [6846] = 6846, [6847] = 6847, - [6848] = 6826, - [6849] = 6792, - [6850] = 6800, - [6851] = 6783, - [6852] = 6790, - [6853] = 6820, - [6854] = 6854, - [6855] = 6855, - [6856] = 6792, - [6857] = 6679, - [6858] = 3898, - [6859] = 6821, - [6860] = 6822, - [6861] = 6854, - [6862] = 6800, - [6863] = 5328, - [6864] = 6790, - [6865] = 6807, - [6866] = 6837, + [6848] = 6810, + [6849] = 6849, + [6850] = 6791, + [6851] = 6810, + [6852] = 6852, + [6853] = 6853, + [6854] = 6803, + [6855] = 6833, + [6856] = 6856, + [6857] = 6780, + [6858] = 6858, + [6859] = 6803, + [6860] = 6860, + [6861] = 6837, + [6862] = 6862, + [6863] = 6795, + [6864] = 6785, + [6865] = 6865, + [6866] = 6866, [6867] = 6867, - [6868] = 6868, + [6868] = 6803, [6869] = 6869, [6870] = 6870, - [6871] = 6792, - [6872] = 6826, - [6873] = 6873, - [6874] = 6874, - [6875] = 6807, + [6871] = 6820, + [6872] = 6872, + [6873] = 5227, + [6874] = 6784, + [6875] = 6790, [6876] = 6876, - [6877] = 6792, - [6878] = 6814, + [6877] = 6877, + [6878] = 6795, [6879] = 6879, [6880] = 6880, [6881] = 6881, - [6882] = 6826, - [6883] = 5280, + [6882] = 6882, + [6883] = 6883, [6884] = 6884, - [6885] = 6792, - [6886] = 6867, - [6887] = 6788, + [6885] = 6885, + [6886] = 6790, + [6887] = 6806, [6888] = 6888, - [6889] = 6854, - [6890] = 6788, - [6891] = 6788, - [6892] = 6854, - [6893] = 6837, - [6894] = 6894, - [6895] = 6895, + [6889] = 2444, + [6890] = 6866, + [6891] = 6891, + [6892] = 6790, + [6893] = 6893, + [6894] = 5188, + [6895] = 6785, [6896] = 6896, - [6897] = 6788, - [6898] = 6898, + [6897] = 6897, + [6898] = 6790, [6899] = 6899, - [6900] = 6900, - [6901] = 6901, - [6902] = 6902, - [6903] = 6903, - [6904] = 6904, - [6905] = 6815, - [6906] = 6906, + [6900] = 6790, + [6901] = 6803, + [6902] = 6782, + [6903] = 6803, + [6904] = 6820, + [6905] = 6905, + [6906] = 6881, [6907] = 6907, - [6908] = 6812, - [6909] = 6807, + [6908] = 6908, + [6909] = 6909, [6910] = 6910, - [6911] = 6790, + [6911] = 6862, [6912] = 6912, [6913] = 6913, [6914] = 6914, - [6915] = 6915, - [6916] = 6837, - [6917] = 6812, + [6915] = 6882, + [6916] = 6810, + [6917] = 6785, [6918] = 6918, - [6919] = 6919, - [6920] = 6807, - [6921] = 6792, + [6919] = 3259, + [6920] = 6782, + [6921] = 6921, [6922] = 6922, - [6923] = 4039, - [6924] = 6807, - [6925] = 6812, - [6926] = 6841, + [6923] = 6923, + [6924] = 1945, + [6925] = 6925, + [6926] = 6926, [6927] = 6927, - [6928] = 6928, + [6928] = 6926, [6929] = 6929, [6930] = 6930, - [6931] = 6931, + [6931] = 2350, [6932] = 6932, - [6933] = 2435, + [6933] = 6926, [6934] = 6934, [6935] = 6935, [6936] = 6936, [6937] = 6937, [6938] = 6938, - [6939] = 6939, - [6940] = 6931, + [6939] = 6926, + [6940] = 6940, [6941] = 6941, - [6942] = 6654, - [6943] = 6943, + [6942] = 2446, + [6943] = 6926, [6944] = 6944, [6945] = 6945, - [6946] = 6946, + [6946] = 5227, [6947] = 6947, - [6948] = 6948, + [6948] = 1944, [6949] = 6949, - [6950] = 6931, - [6951] = 6951, + [6950] = 6647, + [6951] = 6923, [6952] = 6952, - [6953] = 6931, + [6953] = 6689, [6954] = 6954, - [6955] = 1947, - [6956] = 6956, - [6957] = 6949, + [6955] = 5188, + [6956] = 6690, + [6957] = 6957, [6958] = 6958, - [6959] = 6959, + [6959] = 6944, [6960] = 6960, [6961] = 6961, - [6962] = 6936, + [6962] = 6962, [6963] = 6963, - [6964] = 6964, + [6964] = 6927, [6965] = 6965, [6966] = 6966, [6967] = 6967, [6968] = 6968, [6969] = 6969, - [6970] = 6970, + [6970] = 6926, [6971] = 6971, - [6972] = 2383, - [6973] = 6931, - [6974] = 2378, - [6975] = 5280, + [6972] = 6965, + [6973] = 6973, + [6974] = 6974, + [6975] = 6975, [6976] = 6976, - [6977] = 6927, + [6977] = 6651, [6978] = 6978, [6979] = 6979, - [6980] = 6931, + [6980] = 5227, [6981] = 6981, [6982] = 6982, [6983] = 6983, - [6984] = 6960, - [6985] = 2368, - [6986] = 2356, - [6987] = 5328, + [6984] = 6984, + [6985] = 6985, + [6986] = 2370, + [6987] = 6960, [6988] = 6988, [6989] = 6989, [6990] = 6990, - [6991] = 6931, + [6991] = 6991, [6992] = 6992, [6993] = 6993, [6994] = 6994, - [6995] = 6927, - [6996] = 6996, - [6997] = 6939, - [6998] = 1946, - [6999] = 6999, - [7000] = 6927, - [7001] = 7001, + [6995] = 6965, + [6996] = 1943, + [6997] = 6997, + [6998] = 5188, + [6999] = 6960, + [7000] = 7000, + [7001] = 6965, [7002] = 7002, [7003] = 7003, - [7004] = 6930, - [7005] = 6930, - [7006] = 7006, - [7007] = 7007, - [7008] = 5280, - [7009] = 6960, + [7004] = 7004, + [7005] = 6927, + [7006] = 2374, + [7007] = 2375, + [7008] = 6929, + [7009] = 7009, [7010] = 7010, - [7011] = 6949, - [7012] = 7012, - [7013] = 7013, + [7011] = 6997, + [7012] = 2351, + [7013] = 6965, [7014] = 7014, - [7015] = 6664, + [7015] = 6992, [7016] = 7016, - [7017] = 7017, + [7017] = 6935, [7018] = 7018, - [7019] = 6927, - [7020] = 5328, + [7019] = 6992, + [7020] = 6997, [7021] = 7021, [7022] = 7022, [7023] = 7023, @@ -12887,28 +12887,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7026] = 7026, [7027] = 7027, [7028] = 7028, - [7029] = 2354, - [7030] = 5280, - [7031] = 6979, + [7029] = 6926, + [7030] = 7030, + [7031] = 7031, [7032] = 7032, [7033] = 7033, - [7034] = 7034, - [7035] = 7035, + [7034] = 6926, + [7035] = 5227, [7036] = 7036, [7037] = 7037, - [7038] = 7038, - [7039] = 7021, - [7040] = 7021, - [7041] = 6931, - [7042] = 7042, - [7043] = 5328, + [7038] = 6929, + [7039] = 7039, + [7040] = 7040, + [7041] = 7041, + [7042] = 5188, + [7043] = 7043, [7044] = 7044, - [7045] = 6699, - [7046] = 1945, - [7047] = 6698, - [7048] = 6939, + [7045] = 7045, + [7046] = 7046, + [7047] = 7047, + [7048] = 7048, [7049] = 7049, - [7050] = 7037, + [7050] = 6689, [7051] = 7051, [7052] = 7052, [7053] = 7053, @@ -12916,8 +12916,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7055] = 7055, [7056] = 7056, [7057] = 7057, - [7058] = 7058, - [7059] = 7052, + [7058] = 6690, + [7059] = 7059, [7060] = 7060, [7061] = 7061, [7062] = 7062, @@ -12926,8 +12926,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7065] = 7065, [7066] = 7066, [7067] = 7067, - [7068] = 7068, - [7069] = 7069, + [7068] = 7060, + [7069] = 7046, [7070] = 7070, [7071] = 7071, [7072] = 7072, @@ -12935,308 +12935,308 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7074] = 7074, [7075] = 7075, [7076] = 7076, - [7077] = 7062, + [7077] = 7077, [7078] = 7078, - [7079] = 7079, + [7079] = 7057, [7080] = 7080, [7081] = 7081, - [7082] = 7082, - [7083] = 7083, - [7084] = 6654, - [7085] = 7085, - [7086] = 7086, - [7087] = 6664, - [7088] = 6954, + [7082] = 7076, + [7083] = 7074, + [7084] = 6651, + [7085] = 7073, + [7086] = 7070, + [7087] = 7067, + [7088] = 7049, [7089] = 7089, [7090] = 7090, - [7091] = 7052, - [7092] = 7072, - [7093] = 7062, - [7094] = 7064, - [7095] = 7089, + [7091] = 7091, + [7092] = 7092, + [7093] = 7093, + [7094] = 7094, + [7095] = 7095, [7096] = 7096, [7097] = 7097, [7098] = 7098, [7099] = 7099, - [7100] = 7053, + [7100] = 7100, [7101] = 7101, [7102] = 7102, [7103] = 7103, [7104] = 7104, [7105] = 7105, - [7106] = 7073, - [7107] = 7061, + [7106] = 7106, + [7107] = 7107, [7108] = 7108, - [7109] = 7064, + [7109] = 7109, [7110] = 7110, - [7111] = 6699, - [7112] = 7112, - [7113] = 6698, - [7114] = 7064, - [7115] = 7054, - [7116] = 7062, - [7117] = 7117, - [7118] = 7104, - [7119] = 7090, - [7120] = 7052, - [7121] = 7067, - [7122] = 7103, - [7123] = 7053, - [7124] = 7086, - [7125] = 7072, - [7126] = 7126, - [7127] = 7127, - [7128] = 7128, - [7129] = 7052, - [7130] = 7130, - [7131] = 7131, - [7132] = 7052, - [7133] = 7133, - [7134] = 7134, - [7135] = 7112, - [7136] = 7136, - [7137] = 7064, - [7138] = 7058, - [7139] = 7071, + [7111] = 7061, + [7112] = 6647, + [7113] = 7113, + [7114] = 7059, + [7115] = 7115, + [7116] = 7116, + [7117] = 7049, + [7118] = 7093, + [7119] = 7119, + [7120] = 7120, + [7121] = 7121, + [7122] = 7054, + [7123] = 7056, + [7124] = 7057, + [7125] = 7060, + [7126] = 7061, + [7127] = 7062, + [7128] = 7063, + [7129] = 7066, + [7130] = 7046, + [7131] = 7075, + [7132] = 7120, + [7133] = 7067, + [7134] = 7078, + [7135] = 7081, + [7136] = 7076, + [7137] = 7137, + [7138] = 7138, + [7139] = 7070, [7140] = 7140, - [7141] = 7141, - [7142] = 7062, - [7143] = 7061, - [7144] = 7060, - [7145] = 7096, - [7146] = 7062, - [7147] = 7147, - [7148] = 7052, - [7149] = 7089, + [7141] = 7071, + [7142] = 7056, + [7143] = 7091, + [7144] = 7072, + [7145] = 7145, + [7146] = 7073, + [7147] = 7064, + [7148] = 7148, + [7149] = 7106, [7150] = 7150, - [7151] = 7066, - [7152] = 7086, - [7153] = 7153, + [7151] = 7055, + [7152] = 7152, + [7153] = 7081, [7154] = 7154, [7155] = 7155, - [7156] = 7156, - [7157] = 7157, + [7156] = 7049, + [7157] = 7074, [7158] = 7158, - [7159] = 7159, - [7160] = 7096, - [7161] = 7097, - [7162] = 7058, - [7163] = 7163, - [7164] = 7103, - [7165] = 7057, - [7166] = 7064, - [7167] = 7167, - [7168] = 7168, + [7159] = 7076, + [7160] = 7160, + [7161] = 7062, + [7162] = 7063, + [7163] = 7067, + [7164] = 7078, + [7165] = 7067, + [7166] = 7073, + [7167] = 7074, + [7168] = 7115, [7169] = 7169, - [7170] = 7170, - [7171] = 7133, - [7172] = 7172, - [7173] = 7169, - [7174] = 7090, - [7175] = 7169, + [7170] = 7076, + [7171] = 7171, + [7172] = 7081, + [7173] = 7054, + [7174] = 7094, + [7175] = 7078, [7176] = 7176, - [7177] = 7177, + [7177] = 7093, [7178] = 7178, - [7179] = 7178, - [7180] = 7062, + [7179] = 7075, + [7180] = 7180, [7181] = 7181, - [7182] = 7079, - [7183] = 7098, - [7184] = 7134, - [7185] = 7157, + [7182] = 7046, + [7183] = 7053, + [7184] = 7094, + [7185] = 7093, [7186] = 7186, [7187] = 7187, [7188] = 7188, [7189] = 7189, - [7190] = 7190, - [7191] = 7167, - [7192] = 7167, - [7193] = 7086, - [7194] = 7066, - [7195] = 7195, - [7196] = 7178, - [7197] = 7197, - [7198] = 7086, - [7199] = 7199, - [7200] = 7061, - [7201] = 7065, - [7202] = 7052, - [7203] = 7157, - [7204] = 7062, - [7205] = 7064, + [7190] = 7109, + [7191] = 7191, + [7192] = 7105, + [7193] = 7180, + [7194] = 7070, + [7195] = 7052, + [7196] = 7056, + [7197] = 7061, + [7198] = 7066, + [7199] = 7065, + [7200] = 7063, + [7201] = 7201, + [7202] = 7062, + [7203] = 7062, + [7204] = 7063, + [7205] = 7046, [7206] = 7206, - [7207] = 7062, - [7208] = 7064, - [7209] = 7066, - [7210] = 7052, - [7211] = 7211, - [7212] = 7212, - [7213] = 7058, - [7214] = 7214, - [7215] = 7215, - [7216] = 7071, + [7207] = 7207, + [7208] = 7081, + [7209] = 7209, + [7210] = 7103, + [7211] = 7061, + [7212] = 7154, + [7213] = 7213, + [7214] = 7075, + [7215] = 7154, + [7216] = 7060, [7217] = 7217, - [7218] = 7057, - [7219] = 7062, - [7220] = 7064, + [7218] = 7059, + [7219] = 7046, + [7220] = 7057, [7221] = 7221, - [7222] = 2461, - [7223] = 7169, - [7224] = 7224, - [7225] = 7071, - [7226] = 7130, - [7227] = 7141, - [7228] = 7199, - [7229] = 7064, - [7230] = 7089, - [7231] = 7103, - [7232] = 7065, - [7233] = 7233, - [7234] = 7134, - [7235] = 7067, - [7236] = 7079, + [7222] = 7056, + [7223] = 7055, + [7224] = 7054, + [7225] = 7053, + [7226] = 7052, + [7227] = 7120, + [7228] = 7228, + [7229] = 7229, + [7230] = 7230, + [7231] = 7018, + [7232] = 7232, + [7233] = 7066, + [7234] = 7234, + [7235] = 7065, + [7236] = 7236, [7237] = 7237, - [7238] = 7133, - [7239] = 7239, + [7238] = 7238, + [7239] = 7064, [7240] = 7240, [7241] = 7241, - [7242] = 7090, - [7243] = 7243, + [7242] = 7242, + [7243] = 7137, [7244] = 7244, - [7245] = 7069, - [7246] = 7246, - [7247] = 7186, - [7248] = 7052, - [7249] = 7249, - [7250] = 7237, - [7251] = 7099, - [7252] = 7053, - [7253] = 7253, - [7254] = 7254, - [7255] = 7072, - [7256] = 7256, + [7245] = 7054, + [7246] = 2471, + [7247] = 7247, + [7248] = 7248, + [7249] = 7244, + [7250] = 7081, + [7251] = 7251, + [7252] = 7252, + [7253] = 7063, + [7254] = 7062, + [7255] = 7056, + [7256] = 7061, [7257] = 7257, - [7258] = 7112, - [7259] = 7104, - [7260] = 7104, - [7261] = 7261, - [7262] = 7199, + [7258] = 7258, + [7259] = 7064, + [7260] = 7260, + [7261] = 7062, + [7262] = 7248, [7263] = 7263, - [7264] = 7264, - [7265] = 7052, - [7266] = 7103, - [7267] = 7104, - [7268] = 7268, - [7269] = 7269, - [7270] = 7270, - [7271] = 7053, - [7272] = 7096, - [7273] = 7062, + [7264] = 7063, + [7265] = 7081, + [7266] = 7093, + [7267] = 7094, + [7268] = 7078, + [7269] = 7201, + [7270] = 7180, + [7271] = 7075, + [7272] = 7272, + [7273] = 7091, [7274] = 7274, - [7275] = 7057, - [7276] = 7069, - [7277] = 7064, - [7278] = 7278, - [7279] = 7072, - [7280] = 7099, - [7281] = 7061, - [7282] = 7127, - [7283] = 7090, - [7284] = 7089, - [7285] = 7112, - [7286] = 7065, - [7287] = 7112, - [7288] = 7052, - [7289] = 7199, - [7290] = 7069, - [7291] = 7071, - [7292] = 7292, - [7293] = 7293, - [7294] = 7104, - [7295] = 7066, + [7275] = 7275, + [7276] = 7054, + [7277] = 7046, + [7278] = 7052, + [7279] = 7181, + [7280] = 7053, + [7281] = 7281, + [7282] = 7282, + [7283] = 7283, + [7284] = 7284, + [7285] = 7285, + [7286] = 7055, + [7287] = 7287, + [7288] = 7288, + [7289] = 7289, + [7290] = 7056, + [7291] = 7062, + [7292] = 7154, + [7293] = 7063, + [7294] = 7294, + [7295] = 7081, [7296] = 7296, [7297] = 7297, - [7298] = 7298, - [7299] = 7086, - [7300] = 7057, - [7301] = 7169, - [7302] = 7302, - [7303] = 7178, + [7298] = 7057, + [7299] = 7299, + [7300] = 7300, + [7301] = 7301, + [7302] = 7061, + [7303] = 7303, [7304] = 7304, - [7305] = 7079, - [7306] = 7066, - [7307] = 7307, - [7308] = 7062, + [7305] = 7062, + [7306] = 7063, + [7307] = 7059, + [7308] = 7081, [7309] = 7309, - [7310] = 7071, - [7311] = 7199, - [7312] = 7064, + [7310] = 7310, + [7311] = 7060, + [7312] = 7180, [7313] = 7313, - [7314] = 7086, - [7315] = 7072, - [7316] = 7065, - [7317] = 7317, - [7318] = 7064, - [7319] = 7054, - [7320] = 7133, - [7321] = 7062, - [7322] = 7322, - [7323] = 7323, - [7324] = 7099, - [7325] = 7054, - [7326] = 7326, - [7327] = 7309, - [7328] = 7328, - [7329] = 7329, - [7330] = 7330, - [7331] = 7331, - [7332] = 7169, - [7333] = 7157, - [7334] = 7072, - [7335] = 7167, - [7336] = 7052, - [7337] = 7058, - [7338] = 7338, - [7339] = 7339, - [7340] = 7134, - [7341] = 7240, - [7342] = 7178, + [7314] = 7314, + [7315] = 7315, + [7316] = 7091, + [7317] = 7049, + [7318] = 7066, + [7319] = 7319, + [7320] = 7065, + [7321] = 7321, + [7322] = 7067, + [7323] = 7070, + [7324] = 7073, + [7325] = 7074, + [7326] = 7076, + [7327] = 7180, + [7328] = 7062, + [7329] = 7063, + [7330] = 7094, + [7331] = 7061, + [7332] = 7093, + [7333] = 7333, + [7334] = 7081, + [7335] = 7081, + [7336] = 7154, + [7337] = 7078, + [7338] = 7060, + [7339] = 7062, + [7340] = 7059, + [7341] = 7063, + [7342] = 7081, [7343] = 7057, [7344] = 7344, - [7345] = 7086, - [7346] = 7167, - [7347] = 7347, - [7348] = 7090, - [7349] = 7157, - [7350] = 7211, - [7351] = 7099, - [7352] = 7062, - [7353] = 7052, - [7354] = 7354, - [7355] = 7064, - [7356] = 7133, - [7357] = 7099, - [7358] = 6935, - [7359] = 7079, - [7360] = 7090, - [7361] = 7133, - [7362] = 7362, - [7363] = 7069, - [7364] = 7364, - [7365] = 7072, - [7366] = 7178, - [7367] = 7061, - [7368] = 7090, - [7369] = 7134, - [7370] = 7058, - [7371] = 7089, - [7372] = 7096, + [7345] = 7062, + [7346] = 7075, + [7347] = 7056, + [7348] = 7055, + [7349] = 7063, + [7350] = 7053, + [7351] = 7062, + [7352] = 7052, + [7353] = 7063, + [7354] = 7081, + [7355] = 7355, + [7356] = 7046, + [7357] = 7031, + [7358] = 7062, + [7359] = 7063, + [7360] = 7360, + [7361] = 7180, + [7362] = 7081, + [7363] = 7066, + [7364] = 7154, + [7365] = 7065, + [7366] = 7064, + [7367] = 7367, + [7368] = 7368, + [7369] = 7369, + [7370] = 7370, + [7371] = 7371, + [7372] = 7372, [7373] = 7373, - [7374] = 1969, + [7374] = 7374, [7375] = 7375, [7376] = 7376, - [7377] = 7377, - [7378] = 7378, + [7377] = 2371, + [7378] = 7373, [7379] = 7379, [7380] = 7380, [7381] = 7381, @@ -13246,772 +13246,772 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7385] = 7385, [7386] = 7386, [7387] = 7387, - [7388] = 7384, + [7388] = 7388, [7389] = 7389, - [7390] = 7390, + [7390] = 7385, [7391] = 7391, [7392] = 7392, [7393] = 7393, - [7394] = 7394, - [7395] = 7395, - [7396] = 7396, - [7397] = 7397, - [7398] = 7398, - [7399] = 7396, + [7394] = 7379, + [7395] = 1983, + [7396] = 7368, + [7397] = 7368, + [7398] = 3194, + [7399] = 7399, [7400] = 7400, [7401] = 7401, [7402] = 7402, [7403] = 7403, - [7404] = 7383, - [7405] = 7391, - [7406] = 7406, + [7404] = 7404, + [7405] = 7405, + [7406] = 7367, [7407] = 7407, [7408] = 7408, - [7409] = 7409, - [7410] = 7378, - [7411] = 7376, + [7409] = 7402, + [7410] = 1981, + [7411] = 7411, [7412] = 7412, - [7413] = 7392, + [7413] = 7413, [7414] = 7414, [7415] = 7415, [7416] = 7416, - [7417] = 7389, + [7417] = 7417, [7418] = 7418, - [7419] = 7381, - [7420] = 7373, - [7421] = 7385, - [7422] = 7384, + [7419] = 7419, + [7420] = 7381, + [7421] = 7421, + [7422] = 7422, [7423] = 7423, [7424] = 7424, [7425] = 7425, [7426] = 7426, - [7427] = 7387, + [7427] = 7427, [7428] = 7428, [7429] = 7429, - [7430] = 7386, + [7430] = 7416, [7431] = 7431, [7432] = 7432, [7433] = 7433, - [7434] = 7434, - [7435] = 7381, - [7436] = 7436, - [7437] = 7437, + [7434] = 7405, + [7435] = 7435, + [7436] = 7405, + [7437] = 1973, [7438] = 7438, - [7439] = 7439, - [7440] = 7440, - [7441] = 7396, + [7439] = 7402, + [7440] = 7380, + [7441] = 7441, [7442] = 7442, - [7443] = 7378, - [7444] = 7444, - [7445] = 7445, - [7446] = 7446, - [7447] = 7447, - [7448] = 7386, - [7449] = 7389, - [7450] = 7392, + [7443] = 7443, + [7444] = 7373, + [7445] = 7401, + [7446] = 7381, + [7447] = 7373, + [7448] = 7379, + [7449] = 7449, + [7450] = 7450, [7451] = 7451, - [7452] = 7452, - [7453] = 7383, - [7454] = 7396, - [7455] = 7455, - [7456] = 7391, - [7457] = 7384, - [7458] = 7458, - [7459] = 7459, + [7452] = 7416, + [7453] = 7381, + [7454] = 7391, + [7455] = 7380, + [7456] = 7385, + [7457] = 7432, + [7458] = 7433, + [7459] = 3136, [7460] = 7460, - [7461] = 7431, - [7462] = 7462, - [7463] = 7385, - [7464] = 7391, - [7465] = 7394, - [7466] = 7466, - [7467] = 7385, + [7461] = 7461, + [7462] = 7391, + [7463] = 1997, + [7464] = 7400, + [7465] = 7367, + [7466] = 1996, + [7467] = 7467, [7468] = 7468, - [7469] = 7384, - [7470] = 7470, - [7471] = 7378, - [7472] = 7376, - [7473] = 7446, + [7469] = 7469, + [7470] = 2359, + [7471] = 7416, + [7472] = 7472, + [7473] = 7473, [7474] = 7474, - [7475] = 7475, - [7476] = 7396, - [7477] = 7406, - [7478] = 7387, + [7475] = 7435, + [7476] = 7379, + [7477] = 7477, + [7478] = 7385, [7479] = 7479, - [7480] = 7480, - [7481] = 7381, - [7482] = 7373, - [7483] = 7389, - [7484] = 7426, + [7480] = 1988, + [7481] = 7386, + [7482] = 7482, + [7483] = 1986, + [7484] = 7484, [7485] = 7485, - [7486] = 7424, - [7487] = 7394, - [7488] = 7387, - [7489] = 7386, - [7490] = 7373, - [7491] = 7434, - [7492] = 7424, + [7486] = 7486, + [7487] = 7487, + [7488] = 7388, + [7489] = 7489, + [7490] = 7490, + [7491] = 7416, + [7492] = 7386, [7493] = 7493, - [7494] = 7391, - [7495] = 7495, + [7494] = 7494, + [7495] = 7389, [7496] = 7496, - [7497] = 7378, + [7497] = 7379, [7498] = 7498, - [7499] = 7386, - [7500] = 7392, + [7499] = 7405, + [7500] = 1984, [7501] = 7501, - [7502] = 7434, - [7503] = 7389, - [7504] = 7392, - [7505] = 7376, - [7506] = 7378, - [7507] = 7452, - [7508] = 7508, - [7509] = 7509, - [7510] = 7383, - [7511] = 7511, - [7512] = 7512, - [7513] = 7513, - [7514] = 7514, - [7515] = 7515, - [7516] = 7384, + [7502] = 7399, + [7503] = 1978, + [7504] = 7429, + [7505] = 7505, + [7506] = 7416, + [7507] = 7389, + [7508] = 7391, + [7509] = 1958, + [7510] = 7373, + [7511] = 7367, + [7512] = 7391, + [7513] = 7400, + [7514] = 1950, + [7515] = 1951, + [7516] = 7516, [7517] = 7517, - [7518] = 7381, + [7518] = 1952, [7519] = 7519, [7520] = 7520, - [7521] = 7460, + [7521] = 1953, [7522] = 7522, - [7523] = 7385, - [7524] = 7524, - [7525] = 7391, - [7526] = 7526, - [7527] = 7527, - [7528] = 7394, - [7529] = 7529, + [7523] = 1954, + [7524] = 1955, + [7525] = 1959, + [7526] = 1960, + [7527] = 1968, + [7528] = 7528, + [7529] = 1970, [7530] = 7530, - [7531] = 7396, - [7532] = 7406, - [7533] = 7392, - [7534] = 7378, - [7535] = 7535, - [7536] = 7386, - [7537] = 7537, + [7531] = 1971, + [7532] = 1956, + [7533] = 1972, + [7534] = 1979, + [7535] = 7388, + [7536] = 7380, + [7537] = 7399, [7538] = 7538, [7539] = 7539, - [7540] = 7540, - [7541] = 7541, - [7542] = 7389, - [7543] = 7543, - [7544] = 7544, - [7545] = 7545, + [7540] = 7385, + [7541] = 1957, + [7542] = 1975, + [7543] = 7380, + [7544] = 7416, + [7545] = 7391, [7546] = 7546, - [7547] = 7426, - [7548] = 7387, - [7549] = 7386, - [7550] = 7434, + [7547] = 7402, + [7548] = 1980, + [7549] = 7549, + [7550] = 7484, [7551] = 7551, [7552] = 7552, - [7553] = 7424, - [7554] = 3616, - [7555] = 7555, - [7556] = 7556, + [7553] = 7405, + [7554] = 7554, + [7555] = 7435, + [7556] = 1999, [7557] = 7557, - [7558] = 2376, - [7559] = 2369, - [7560] = 2380, + [7558] = 7368, + [7559] = 7559, + [7560] = 7560, [7561] = 7561, - [7562] = 2365, + [7562] = 1998, [7563] = 7563, [7564] = 7564, [7565] = 7565, - [7566] = 7566, - [7567] = 7385, - [7568] = 1993, - [7569] = 1998, - [7570] = 2000, - [7571] = 1999, - [7572] = 7572, - [7573] = 3577, - [7574] = 7574, - [7575] = 7575, - [7576] = 1958, - [7577] = 1957, - [7578] = 7578, - [7579] = 1948, - [7580] = 1973, + [7566] = 7391, + [7567] = 7567, + [7568] = 7379, + [7569] = 7386, + [7570] = 7389, + [7571] = 7373, + [7572] = 1962, + [7573] = 1963, + [7574] = 7412, + [7575] = 7391, + [7576] = 7576, + [7577] = 1964, + [7578] = 1995, + [7579] = 1994, + [7580] = 1993, [7581] = 7581, - [7582] = 7446, - [7583] = 7583, - [7584] = 7452, - [7585] = 1974, - [7586] = 7493, - [7587] = 1975, - [7588] = 7431, - [7589] = 1983, - [7590] = 7426, - [7591] = 7378, - [7592] = 7376, - [7593] = 7480, - [7594] = 1994, - [7595] = 1972, - [7596] = 1997, - [7597] = 7479, - [7598] = 7480, - [7599] = 7381, - [7600] = 1962, - [7601] = 1961, - [7602] = 1955, - [7603] = 7387, + [7582] = 1965, + [7583] = 1992, + [7584] = 7584, + [7585] = 7585, + [7586] = 7433, + [7587] = 7389, + [7588] = 1990, + [7589] = 7429, + [7590] = 7432, + [7591] = 7591, + [7592] = 1987, + [7593] = 1966, + [7594] = 7399, + [7595] = 1982, + [7596] = 7381, + [7597] = 7385, + [7598] = 7598, + [7599] = 7599, + [7600] = 7438, + [7601] = 7381, + [7602] = 7602, + [7603] = 7401, [7604] = 7604, - [7605] = 1970, - [7606] = 1954, - [7607] = 7479, - [7608] = 1951, - [7609] = 1986, - [7610] = 7610, - [7611] = 1980, - [7612] = 1968, - [7613] = 1956, - [7614] = 7614, - [7615] = 7615, - [7616] = 1960, - [7617] = 1953, - [7618] = 1995, - [7619] = 1963, - [7620] = 1966, - [7621] = 1991, - [7622] = 1977, - [7623] = 1981, - [7624] = 1967, + [7605] = 7401, + [7606] = 7606, + [7607] = 2376, + [7608] = 7400, + [7609] = 1948, + [7610] = 7487, + [7611] = 7368, + [7612] = 7612, + [7613] = 7613, + [7614] = 7402, + [7615] = 7438, + [7616] = 7616, + [7617] = 7380, + [7618] = 7618, + [7619] = 2384, + [7620] = 7620, + [7621] = 7412, + [7622] = 1949, + [7623] = 7623, + [7624] = 1976, [7625] = 7625, - [7626] = 1965, - [7627] = 1984, - [7628] = 1978, - [7629] = 7629, - [7630] = 1952, - [7631] = 1959, - [7632] = 7460, - [7633] = 7633, - [7634] = 1996, - [7635] = 7635, - [7636] = 1964, - [7637] = 1976, - [7638] = 1988, - [7639] = 7386, - [7640] = 1971, - [7641] = 1987, + [7626] = 7416, + [7627] = 7429, + [7628] = 7405, + [7629] = 1967, + [7630] = 7630, + [7631] = 7402, + [7632] = 7632, + [7633] = 7484, + [7634] = 7634, + [7635] = 7368, + [7636] = 7636, + [7637] = 7637, + [7638] = 7638, + [7639] = 7639, + [7640] = 7640, + [7641] = 7641, [7642] = 7642, [7643] = 7643, [7644] = 7644, [7645] = 7645, - [7646] = 7645, - [7647] = 7645, - [7648] = 7648, + [7646] = 7646, + [7647] = 7647, + [7648] = 7636, [7649] = 7649, - [7650] = 7645, + [7650] = 7650, [7651] = 7651, - [7652] = 7645, - [7653] = 7645, - [7654] = 7654, + [7652] = 7652, + [7653] = 7653, + [7654] = 7643, [7655] = 7655, [7656] = 7656, - [7657] = 7657, + [7657] = 7636, [7658] = 7658, [7659] = 7659, [7660] = 7660, - [7661] = 7661, - [7662] = 7645, - [7663] = 7645, + [7661] = 7636, + [7662] = 7662, + [7663] = 7663, [7664] = 7664, [7665] = 7665, - [7666] = 7645, + [7666] = 7666, [7667] = 7667, - [7668] = 7645, + [7668] = 7668, [7669] = 7669, - [7670] = 7645, + [7670] = 7670, [7671] = 7671, - [7672] = 7645, - [7673] = 7645, - [7674] = 7645, - [7675] = 7645, + [7672] = 7672, + [7673] = 7673, + [7674] = 7674, + [7675] = 7675, [7676] = 7676, - [7677] = 7645, + [7677] = 7677, [7678] = 7678, - [7679] = 7643, + [7679] = 7647, [7680] = 7680, - [7681] = 7643, - [7682] = 7682, + [7681] = 7681, + [7682] = 7636, [7683] = 7683, - [7684] = 7645, + [7684] = 7684, [7685] = 7685, [7686] = 7686, - [7687] = 7687, - [7688] = 7688, - [7689] = 7645, + [7687] = 7652, + [7688] = 7645, + [7689] = 7689, [7690] = 7690, - [7691] = 7645, - [7692] = 7692, - [7693] = 7645, - [7694] = 7694, - [7695] = 7695, - [7696] = 7645, - [7697] = 7697, + [7691] = 7638, + [7692] = 7660, + [7693] = 7693, + [7694] = 7685, + [7695] = 7653, + [7696] = 7636, + [7697] = 7684, [7698] = 7698, - [7699] = 7699, + [7699] = 7636, [7700] = 7700, [7701] = 7701, - [7702] = 7702, - [7703] = 7703, - [7704] = 4074, + [7702] = 7690, + [7703] = 7636, + [7704] = 7704, [7705] = 7705, - [7706] = 7706, - [7707] = 7645, - [7708] = 7645, - [7709] = 7664, - [7710] = 3899, + [7706] = 7642, + [7707] = 7707, + [7708] = 7708, + [7709] = 7636, + [7710] = 7710, [7711] = 7711, [7712] = 7712, [7713] = 7713, - [7714] = 7714, - [7715] = 7680, + [7714] = 7636, + [7715] = 7677, [7716] = 7716, - [7717] = 7716, + [7717] = 7717, [7718] = 7718, - [7719] = 7719, - [7720] = 7686, - [7721] = 7716, + [7719] = 7690, + [7720] = 7720, + [7721] = 7663, [7722] = 7722, - [7723] = 7723, - [7724] = 7724, + [7723] = 7636, + [7724] = 7636, [7725] = 7725, - [7726] = 7705, - [7727] = 7645, + [7726] = 7726, + [7727] = 7727, [7728] = 7728, [7729] = 7729, [7730] = 7730, - [7731] = 7645, + [7731] = 7731, [7732] = 7732, - [7733] = 7733, - [7734] = 7734, + [7733] = 7677, + [7734] = 7636, [7735] = 7735, [7736] = 7736, - [7737] = 7645, + [7737] = 7737, [7738] = 7738, [7739] = 7739, - [7740] = 7740, + [7740] = 7636, [7741] = 7741, [7742] = 7742, [7743] = 7743, [7744] = 7744, [7745] = 7745, - [7746] = 7746, + [7746] = 7720, [7747] = 7747, [7748] = 7748, [7749] = 7749, - [7750] = 7750, + [7750] = 7705, [7751] = 7751, - [7752] = 7746, - [7753] = 7703, + [7752] = 7752, + [7753] = 7636, [7754] = 7754, - [7755] = 7648, - [7756] = 7719, + [7755] = 7755, + [7756] = 7756, [7757] = 7757, - [7758] = 7644, - [7759] = 7645, + [7758] = 7743, + [7759] = 7759, [7760] = 7760, [7761] = 7761, - [7762] = 7712, - [7763] = 7763, - [7764] = 7713, - [7765] = 7676, - [7766] = 7766, - [7767] = 7767, - [7768] = 7768, - [7769] = 7769, - [7770] = 7732, - [7771] = 7738, - [7772] = 7729, - [7773] = 7773, - [7774] = 7748, - [7775] = 7749, - [7776] = 7776, - [7777] = 7645, - [7778] = 7778, - [7779] = 7644, + [7762] = 7639, + [7763] = 7726, + [7764] = 7764, + [7765] = 7636, + [7766] = 7693, + [7767] = 7650, + [7768] = 7698, + [7769] = 7642, + [7770] = 7770, + [7771] = 7741, + [7772] = 7772, + [7773] = 7643, + [7774] = 7636, + [7775] = 7729, + [7776] = 7642, + [7777] = 7777, + [7778] = 7731, + [7779] = 7659, [7780] = 7780, [7781] = 7781, - [7782] = 7782, - [7783] = 7740, + [7782] = 7636, + [7783] = 7783, [7784] = 7784, [7785] = 7785, [7786] = 7786, [7787] = 7787, - [7788] = 7788, - [7789] = 7789, + [7788] = 7651, + [7789] = 7663, [7790] = 7790, - [7791] = 7742, - [7792] = 7792, + [7791] = 7737, + [7792] = 7780, [7793] = 7793, - [7794] = 7645, - [7795] = 7795, - [7796] = 7796, - [7797] = 7797, + [7794] = 7794, + [7795] = 7731, + [7796] = 7729, + [7797] = 7728, [7798] = 7798, [7799] = 7799, [7800] = 7800, - [7801] = 7686, - [7802] = 7802, - [7803] = 7803, + [7801] = 7701, + [7802] = 7700, + [7803] = 7737, [7804] = 7804, [7805] = 7805, - [7806] = 7806, - [7807] = 7807, - [7808] = 7808, - [7809] = 7809, - [7810] = 7698, - [7811] = 7683, - [7812] = 7645, - [7813] = 7645, - [7814] = 7725, - [7815] = 7719, + [7806] = 7653, + [7807] = 7655, + [7808] = 7726, + [7809] = 7741, + [7810] = 7636, + [7811] = 7684, + [7812] = 7747, + [7813] = 7652, + [7814] = 7636, + [7815] = 7815, [7816] = 7816, - [7817] = 7817, + [7817] = 7636, [7818] = 7818, - [7819] = 7819, + [7819] = 7727, [7820] = 7820, [7821] = 7821, [7822] = 7822, - [7823] = 7823, + [7823] = 7757, [7824] = 7824, - [7825] = 7825, + [7825] = 7749, [7826] = 7826, - [7827] = 7827, - [7828] = 7716, - [7829] = 7829, - [7830] = 7825, + [7827] = 7678, + [7828] = 7705, + [7829] = 7659, + [7830] = 7755, [7831] = 7831, - [7832] = 7751, - [7833] = 7661, - [7834] = 7746, - [7835] = 7660, - [7836] = 7659, - [7837] = 7658, - [7838] = 7793, - [7839] = 7719, - [7840] = 7746, - [7841] = 7702, - [7842] = 7688, - [7843] = 7685, - [7844] = 7656, - [7845] = 7682, - [7846] = 7846, - [7847] = 7778, - [7848] = 7848, - [7849] = 7849, - [7850] = 7692, - [7851] = 7851, - [7852] = 7852, - [7853] = 7853, - [7854] = 7680, + [7832] = 7832, + [7833] = 7689, + [7834] = 7834, + [7835] = 7835, + [7836] = 7684, + [7837] = 7693, + [7838] = 7838, + [7839] = 7839, + [7840] = 7639, + [7841] = 7841, + [7842] = 7842, + [7843] = 7843, + [7844] = 7676, + [7845] = 7845, + [7846] = 7636, + [7847] = 7847, + [7848] = 7636, + [7849] = 7752, + [7850] = 7726, + [7851] = 7752, + [7852] = 7777, + [7853] = 7790, + [7854] = 7668, [7855] = 7855, - [7856] = 7856, - [7857] = 7857, - [7858] = 7645, - [7859] = 7645, - [7860] = 7644, - [7861] = 7645, - [7862] = 7751, - [7863] = 7863, - [7864] = 7864, - [7865] = 7808, - [7866] = 7829, - [7867] = 7645, - [7868] = 7807, - [7869] = 7869, - [7870] = 7742, - [7871] = 7743, + [7856] = 7780, + [7857] = 7793, + [7858] = 7674, + [7859] = 7668, + [7860] = 7860, + [7861] = 7668, + [7862] = 7862, + [7863] = 7674, + [7864] = 7793, + [7865] = 7674, + [7866] = 7636, + [7867] = 7653, + [7868] = 7868, + [7869] = 7639, + [7870] = 7870, + [7871] = 7871, [7872] = 7872, - [7873] = 7645, - [7874] = 7703, - [7875] = 7676, - [7876] = 7648, - [7877] = 7645, + [7873] = 7873, + [7874] = 7835, + [7875] = 7790, + [7876] = 7777, + [7877] = 7684, [7878] = 7878, - [7879] = 7644, - [7880] = 7645, - [7881] = 7827, - [7882] = 7760, - [7883] = 7655, - [7884] = 7761, - [7885] = 7802, - [7886] = 7712, + [7879] = 7879, + [7880] = 7880, + [7881] = 7772, + [7882] = 7882, + [7883] = 7883, + [7884] = 7726, + [7885] = 7689, + [7886] = 7886, [7887] = 7887, - [7888] = 7888, - [7889] = 7678, - [7890] = 7713, + [7888] = 7636, + [7889] = 7728, + [7890] = 7890, [7891] = 7891, - [7892] = 7732, - [7893] = 7645, - [7894] = 7738, - [7895] = 7729, - [7896] = 7748, - [7897] = 7749, - [7898] = 7645, - [7899] = 7798, - [7900] = 7740, - [7901] = 7645, - [7902] = 7784, - [7903] = 7654, - [7904] = 7743, - [7905] = 7905, + [7892] = 7636, + [7893] = 7732, + [7894] = 7686, + [7895] = 7895, + [7896] = 7896, + [7897] = 7636, + [7898] = 7755, + [7899] = 7757, + [7900] = 7708, + [7901] = 7640, + [7902] = 7636, + [7903] = 7727, + [7904] = 7656, + [7905] = 7701, [7906] = 7906, - [7907] = 7787, - [7908] = 7776, - [7909] = 7789, - [7910] = 7790, - [7911] = 7751, - [7912] = 7792, - [7913] = 7685, - [7914] = 7702, - [7915] = 7915, - [7916] = 7916, - [7917] = 7746, - [7918] = 7918, - [7919] = 7827, - [7920] = 7796, - [7921] = 7822, - [7922] = 7645, - [7923] = 7719, - [7924] = 7798, - [7925] = 7925, - [7926] = 7926, - [7927] = 7802, - [7928] = 7928, - [7929] = 7929, - [7930] = 7654, - [7931] = 7655, - [7932] = 7656, - [7933] = 7658, - [7934] = 7659, - [7935] = 7660, - [7936] = 7661, - [7937] = 7807, - [7938] = 7667, - [7939] = 7808, - [7940] = 7940, - [7941] = 7941, - [7942] = 7942, - [7943] = 7705, - [7944] = 7683, - [7945] = 7725, - [7946] = 7719, - [7947] = 7947, - [7948] = 7697, - [7949] = 7716, - [7950] = 7700, - [7951] = 7796, + [7907] = 7686, + [7908] = 7908, + [7909] = 7636, + [7910] = 7781, + [7911] = 7636, + [7912] = 7912, + [7913] = 7749, + [7914] = 7639, + [7915] = 7843, + [7916] = 7671, + [7917] = 7640, + [7918] = 7780, + [7919] = 7777, + [7920] = 7920, + [7921] = 7726, + [7922] = 7636, + [7923] = 2518, + [7924] = 7924, + [7925] = 2560, + [7926] = 2542, + [7927] = 7705, + [7928] = 7772, + [7929] = 7737, + [7930] = 7684, + [7931] = 7732, + [7932] = 7636, + [7933] = 7642, + [7934] = 7934, + [7935] = 7636, + [7936] = 2525, + [7937] = 7937, + [7938] = 7677, + [7939] = 7747, + [7940] = 7636, + [7941] = 7665, + [7942] = 7666, + [7943] = 7667, + [7944] = 7669, + [7945] = 7670, + [7946] = 7671, + [7947] = 7672, + [7948] = 7824, + [7949] = 7678, + [7950] = 7950, + [7951] = 2533, [7952] = 7952, - [7953] = 7953, - [7954] = 7664, - [7955] = 7819, - [7956] = 7820, - [7957] = 7821, - [7958] = 7822, - [7959] = 7823, - [7960] = 7827, - [7961] = 7829, - [7962] = 7962, - [7963] = 7705, - [7964] = 7964, - [7965] = 7732, - [7966] = 7645, + [7953] = 7642, + [7954] = 7744, + [7955] = 7747, + [7956] = 7759, + [7957] = 2536, + [7958] = 2574, + [7959] = 7708, + [7960] = 2571, + [7961] = 7711, + [7962] = 2551, + [7963] = 7689, + [7964] = 7693, + [7965] = 7720, + [7966] = 7966, [7967] = 7967, - [7968] = 7654, - [7969] = 7655, - [7970] = 7656, - [7971] = 7658, - [7972] = 7659, - [7973] = 7660, - [7974] = 7661, - [7975] = 7712, - [7976] = 7667, - [7977] = 7825, - [7978] = 7645, - [7979] = 7644, - [7980] = 7980, - [7981] = 7826, - [7982] = 7784, - [7983] = 7746, - [7984] = 7702, - [7985] = 7700, - [7986] = 7688, - [7987] = 7788, - [7988] = 7685, - [7989] = 7682, - [7990] = 7796, - [7991] = 7991, - [7992] = 7682, - [7993] = 7778, - [7994] = 7848, - [7995] = 7788, - [7996] = 7751, - [7997] = 7692, - [7998] = 7998, - [7999] = 7658, - [8000] = 7659, - [8001] = 7660, - [8002] = 7661, - [8003] = 7852, - [8004] = 7667, - [8005] = 7685, + [7968] = 7968, + [7969] = 7636, + [7970] = 7636, + [7971] = 7636, + [7972] = 7742, + [7973] = 7705, + [7974] = 7974, + [7975] = 7652, + [7976] = 7659, + [7977] = 7659, + [7978] = 7700, + [7979] = 7665, + [7980] = 7666, + [7981] = 7667, + [7982] = 7669, + [7983] = 7670, + [7984] = 7671, + [7985] = 7672, + [7986] = 7842, + [7987] = 7678, + [7988] = 7660, + [7989] = 7638, + [7990] = 7663, + [7991] = 7772, + [7992] = 7992, + [7993] = 7636, + [7994] = 7636, + [7995] = 7645, + [7996] = 7711, + [7997] = 7684, + [7998] = 7887, + [7999] = 7727, + [8000] = 8000, + [8001] = 8001, + [8002] = 7652, + [8003] = 7732, + [8004] = 7647, + [8005] = 8005, [8006] = 8006, - [8007] = 8007, - [8008] = 8008, - [8009] = 7792, - [8010] = 7852, - [8011] = 7793, - [8012] = 7700, - [8013] = 7645, - [8014] = 7700, - [8015] = 8015, - [8016] = 8016, - [8017] = 7742, - [8018] = 7743, - [8019] = 7645, - [8020] = 8020, - [8021] = 7660, - [8022] = 7661, - [8023] = 7667, - [8024] = 7648, - [8025] = 7760, - [8026] = 7644, - [8027] = 7667, + [8007] = 2519, + [8008] = 7636, + [8009] = 8009, + [8010] = 7669, + [8011] = 7670, + [8012] = 7671, + [8013] = 7672, + [8014] = 7841, + [8015] = 7678, + [8016] = 7741, + [8017] = 7636, + [8018] = 8018, + [8019] = 7742, + [8020] = 7656, + [8021] = 7655, + [8022] = 7772, + [8023] = 7711, + [8024] = 7636, + [8025] = 7726, + [8026] = 8026, + [8027] = 7651, [8028] = 8028, - [8029] = 7700, - [8030] = 7686, - [8031] = 7716, - [8032] = 7790, - [8033] = 7760, - [8034] = 7761, - [8035] = 7697, - [8036] = 7712, - [8037] = 7678, - [8038] = 7676, - [8039] = 7713, - [8040] = 7823, - [8041] = 8041, - [8042] = 7700, - [8043] = 7822, - [8044] = 7678, + [8029] = 7636, + [8030] = 8030, + [8031] = 7737, + [8032] = 7671, + [8033] = 7672, + [8034] = 7678, + [8035] = 7650, + [8036] = 7698, + [8037] = 8037, + [8038] = 7772, + [8039] = 7731, + [8040] = 7711, + [8041] = 7684, + [8042] = 7672, + [8043] = 8043, + [8044] = 7674, [8045] = 8045, - [8046] = 7751, - [8047] = 7732, - [8048] = 7685, - [8049] = 7821, - [8050] = 7688, - [8051] = 7702, - [8052] = 7746, - [8053] = 7827, - [8054] = 7700, - [8055] = 7643, - [8056] = 7823, - [8057] = 7822, - [8058] = 8058, - [8059] = 7740, - [8060] = 7680, - [8061] = 7719, - [8062] = 7665, + [8046] = 7729, + [8047] = 7777, + [8048] = 7690, + [8049] = 8049, + [8050] = 7670, + [8051] = 7669, + [8052] = 7790, + [8053] = 7711, + [8054] = 7643, + [8055] = 7639, + [8056] = 7754, + [8057] = 7728, + [8058] = 7780, + [8059] = 3251, + [8060] = 7835, + [8061] = 7685, + [8062] = 7667, [8063] = 8063, - [8064] = 7789, - [8065] = 7645, + [8064] = 7659, + [8065] = 7711, [8066] = 8066, - [8067] = 7680, + [8067] = 7744, [8068] = 8068, - [8069] = 7643, - [8070] = 8070, - [8071] = 7784, - [8072] = 7820, - [8073] = 7819, - [8074] = 8045, - [8075] = 7787, - [8076] = 8076, - [8077] = 7678, - [8078] = 7776, - [8079] = 8079, - [8080] = 7645, - [8081] = 7808, - [8082] = 7807, - [8083] = 8045, - [8084] = 7705, - [8085] = 7798, + [8069] = 8069, + [8070] = 7643, + [8071] = 8071, + [8072] = 7855, + [8073] = 8073, + [8074] = 7666, + [8075] = 7636, + [8076] = 7665, + [8077] = 7700, + [8078] = 7701, + [8079] = 7652, + [8080] = 7653, + [8081] = 8081, + [8082] = 8082, + [8083] = 8083, + [8084] = 8084, + [8085] = 8085, [8086] = 8086, - [8087] = 7796, - [8088] = 8088, - [8089] = 8089, - [8090] = 8090, - [8091] = 7941, - [8092] = 7751, - [8093] = 7676, - [8094] = 7792, - [8095] = 7751, - [8096] = 7796, - [8097] = 7798, + [8087] = 7636, + [8088] = 7757, + [8089] = 7755, + [8090] = 7653, + [8091] = 7636, + [8092] = 7639, + [8093] = 3231, + [8094] = 7855, + [8095] = 8095, + [8096] = 8096, + [8097] = 7636, [8098] = 8098, - [8099] = 7802, - [8100] = 8100, - [8101] = 7787, + [8099] = 7759, + [8100] = 7780, + [8101] = 7790, [8102] = 8102, - [8103] = 8103, - [8104] = 7807, - [8105] = 7808, - [8106] = 7740, - [8107] = 7732, - [8108] = 8108, - [8109] = 7645, - [8110] = 7712, - [8111] = 7776, - [8112] = 7760, - [8113] = 7645, - [8114] = 7644, - [8115] = 7705, - [8116] = 8116, - [8117] = 7719, - [8118] = 7692, - [8119] = 7848, - [8120] = 7785, - [8121] = 7819, - [8122] = 7820, - [8123] = 7821, - [8124] = 8045, - [8125] = 7761, + [8103] = 7777, + [8104] = 8104, + [8105] = 7726, + [8106] = 7752, + [8107] = 7636, + [8108] = 7793, + [8109] = 7642, + [8110] = 8110, + [8111] = 7749, + [8112] = 7705, + [8113] = 2545, + [8114] = 7741, + [8115] = 7737, + [8116] = 8102, + [8117] = 7747, + [8118] = 7636, + [8119] = 7642, + [8120] = 7887, + [8121] = 7843, + [8122] = 8122, + [8123] = 7855, + [8124] = 7842, + [8125] = 8125, [8126] = 8126, - [8127] = 8127, - [8128] = 7822, - [8129] = 8129, - [8130] = 8045, - [8131] = 7823, - [8132] = 7827, - [8133] = 7829, - [8134] = 7941, - [8135] = 8045, - [8136] = 7746, - [8137] = 8137, - [8138] = 7941, - [8139] = 8045, - [8140] = 7702, - [8141] = 8141, - [8142] = 8045, - [8143] = 7688, - [8144] = 8144, - [8145] = 8145, - [8146] = 8146, - [8147] = 8147, - [8148] = 8148, - [8149] = 8149, - [8150] = 8150, - [8151] = 8151, + [8127] = 7757, + [8128] = 7755, + [8129] = 7660, + [8130] = 7749, + [8131] = 7841, + [8132] = 7747, + [8133] = 7636, + [8134] = 7638, + [8135] = 7645, + [8136] = 7647, + [8137] = 7711, + [8138] = 7660, + [8139] = 8139, + [8140] = 7638, + [8141] = 7855, + [8142] = 7824, + [8143] = 7645, + [8144] = 7639, + [8145] = 8102, + [8146] = 7855, + [8147] = 7835, + [8148] = 7647, + [8149] = 8102, + [8150] = 7855, + [8151] = 7744, [8152] = 8152, - [8153] = 8153, + [8153] = 7855, [8154] = 8154, [8155] = 8155, [8156] = 8156, @@ -14019,6 +14019,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8158] = 8158, [8159] = 8159, [8160] = 8160, + [8161] = 8161, + [8162] = 8162, + [8163] = 8163, + [8164] = 8164, + [8165] = 8165, + [8166] = 8166, + [8167] = 8167, + [8168] = 8168, + [8169] = 8169, + [8170] = 8170, + [8171] = 8171, }; static inline bool sym_escape_sequence_character_set_1(int32_t c) { @@ -19281,20 +19292,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(142); - if (lookahead == '!') ADVANCE(167); + if (lookahead == '!') ADVANCE(220); if (lookahead == '"') ADVANCE(284); if (lookahead == '#') ADVANCE(13); - if (lookahead == '%') ADVANCE(182); - if (lookahead == '&') ADVANCE(190); + if (lookahead == '%') ADVANCE(216); + if (lookahead == '&') ADVANCE(195); if (lookahead == '\'') ADVANCE(268); if (lookahead == '(') ADVANCE(151); if (lookahead == ')') ADVANCE(152); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(172); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '+') ADVANCE(208); if (lookahead == ',') ADVANCE(149); - if (lookahead == '-') ADVANCE(174); - if (lookahead == '.') ADVANCE(203); - if (lookahead == '/') ADVANCE(180); + if (lookahead == '-') ADVANCE(210); + if (lookahead == '.') ADVANCE(169); + if (lookahead == '/') ADVANCE(214); if (lookahead == '0') ADVANCE(273); if (lookahead == ':') ADVANCE(148); if (lookahead == ';') ADVANCE(143); @@ -19308,12 +19319,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(146); if (lookahead == '\\') ADVANCE(38); if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(184); + if (lookahead == '^') ADVANCE(200); if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(344); if (lookahead == '{') ADVANCE(153); - if (lookahead == '|') ADVANCE(186); + if (lookahead == '|') ADVANCE(197); if (lookahead == '}') ADVANCE(154); - if (lookahead == '~') ADVANCE(168); + if (lookahead == '~') ADVANCE(166); if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -19383,19 +19394,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(406); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(167); + if (lookahead == '!') ADVANCE(220); if (lookahead == '"') ADVANCE(284); if (lookahead == '#') ADVANCE(55); - if (lookahead == '%') ADVANCE(182); - if (lookahead == '&') ADVANCE(190); + if (lookahead == '%') ADVANCE(216); + if (lookahead == '&') ADVANCE(195); if (lookahead == '(') ADVANCE(151); if (lookahead == ')') ADVANCE(152); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(172); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '+') ADVANCE(208); if (lookahead == ',') ADVANCE(149); - if (lookahead == '-') ADVANCE(174); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '/') ADVANCE(180); + if (lookahead == '-') ADVANCE(210); + if (lookahead == '.') ADVANCE(168); + if (lookahead == '/') ADVANCE(214); if (lookahead == '0') ADVANCE(277); if (lookahead == ':') ADVANCE(147); if (lookahead == ';') ADVANCE(143); @@ -19407,10 +19418,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(146); if (lookahead == '\\') ADVANCE(39); if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(184); + if (lookahead == '^') ADVANCE(200); if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(344); if (lookahead == '{') ADVANCE(153); - if (lookahead == '|') ADVANCE(186); + if (lookahead == '|') ADVANCE(197); if (lookahead == '}') ADVANCE(154); if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || @@ -19421,19 +19432,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(167); + if (lookahead == '!') ADVANCE(220); if (lookahead == '"') ADVANCE(284); if (lookahead == '#') ADVANCE(55); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(189); + if (lookahead == '%') ADVANCE(215); + if (lookahead == '&') ADVANCE(194); if (lookahead == '(') ADVANCE(151); if (lookahead == ')') ADVANCE(152); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '+') ADVANCE(171); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); if (lookahead == ',') ADVANCE(149); - if (lookahead == '-') ADVANCE(175); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '/') ADVANCE(179); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(168); + if (lookahead == '/') ADVANCE(213); if (lookahead == ':') ADVANCE(147); if (lookahead == ';') ADVANCE(143); if (lookahead == '<') ADVANCE(157); @@ -19444,10 +19455,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(146); if (lookahead == '\\') ADVANCE(39); if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(183); + if (lookahead == '^') ADVANCE(199); if (sym__identifier_token_character_set_4(lookahead)) ADVANCE(344); if (lookahead == '{') ADVANCE(153); - if (lookahead == '|') ADVANCE(187); + if (lookahead == '|') ADVANCE(198); if (lookahead == '}') ADVANCE(154); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -19456,18 +19467,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(6) END_STATE(); case 7: - if (lookahead == '!') ADVANCE(167); + if (lookahead == '!') ADVANCE(220); if (lookahead == '#') ADVANCE(55); - if (lookahead == '%') ADVANCE(182); - if (lookahead == '&') ADVANCE(190); + if (lookahead == '%') ADVANCE(216); + if (lookahead == '&') ADVANCE(195); if (lookahead == '(') ADVANCE(151); if (lookahead == ')') ADVANCE(152); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(172); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '+') ADVANCE(208); if (lookahead == ',') ADVANCE(149); - if (lookahead == '-') ADVANCE(174); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '/') ADVANCE(180); + if (lookahead == '-') ADVANCE(210); + if (lookahead == '.') ADVANCE(168); + if (lookahead == '/') ADVANCE(214); if (lookahead == '0') ADVANCE(277); if (lookahead == ':') ADVANCE(147); if (lookahead == ';') ADVANCE(143); @@ -19479,10 +19490,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(146); if (lookahead == '\\') ADVANCE(39); if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(184); + if (lookahead == '^') ADVANCE(200); if (sym__identifier_token_character_set_4(lookahead)) ADVANCE(344); if (lookahead == '{') ADVANCE(153); - if (lookahead == '|') ADVANCE(186); + if (lookahead == '|') ADVANCE(197); if (lookahead == '}') ADVANCE(154); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -19492,18 +19503,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(167); + if (lookahead == '!') ADVANCE(220); if (lookahead == '#') ADVANCE(55); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(189); + if (lookahead == '%') ADVANCE(215); + if (lookahead == '&') ADVANCE(194); if (lookahead == '(') ADVANCE(151); if (lookahead == ')') ADVANCE(152); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '+') ADVANCE(171); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); if (lookahead == ',') ADVANCE(149); - if (lookahead == '-') ADVANCE(175); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '/') ADVANCE(179); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(168); + if (lookahead == '/') ADVANCE(213); if (lookahead == ':') ADVANCE(148); if (lookahead == ';') ADVANCE(143); if (lookahead == '<') ADVANCE(157); @@ -19514,10 +19525,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(146); if (lookahead == '\\') ADVANCE(39); if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(183); + if (lookahead == '^') ADVANCE(199); if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(344); if (lookahead == '{') ADVANCE(153); - if (lookahead == '|') ADVANCE(187); + if (lookahead == '|') ADVANCE(198); if (lookahead == '}') ADVANCE(154); if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || @@ -19527,18 +19538,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(8) END_STATE(); case 9: - if (lookahead == '!') ADVANCE(167); + if (lookahead == '!') ADVANCE(220); if (lookahead == '#') ADVANCE(55); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(189); + if (lookahead == '%') ADVANCE(215); + if (lookahead == '&') ADVANCE(194); if (lookahead == '(') ADVANCE(151); if (lookahead == ')') ADVANCE(152); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '+') ADVANCE(171); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); if (lookahead == ',') ADVANCE(149); - if (lookahead == '-') ADVANCE(175); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '/') ADVANCE(179); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(168); + if (lookahead == '/') ADVANCE(213); if (lookahead == ':') ADVANCE(148); if (lookahead == ';') ADVANCE(143); if (lookahead == '<') ADVANCE(157); @@ -19549,10 +19560,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(146); if (lookahead == '\\') ADVANCE(39); if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(183); + if (lookahead == '^') ADVANCE(199); if (sym__identifier_token_character_set_4(lookahead)) ADVANCE(344); if (lookahead == '{') ADVANCE(153); - if (lookahead == '|') ADVANCE(187); + if (lookahead == '|') ADVANCE(198); if (lookahead == '}') ADVANCE(154); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -19561,18 +19572,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(9) END_STATE(); case 10: - if (lookahead == '!') ADVANCE(167); + if (lookahead == '!') ADVANCE(220); if (lookahead == '#') ADVANCE(55); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(189); + if (lookahead == '%') ADVANCE(215); + if (lookahead == '&') ADVANCE(194); if (lookahead == '(') ADVANCE(151); if (lookahead == ')') ADVANCE(152); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '+') ADVANCE(171); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); if (lookahead == ',') ADVANCE(149); - if (lookahead == '-') ADVANCE(175); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '/') ADVANCE(179); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(168); + if (lookahead == '/') ADVANCE(213); if (lookahead == ':') ADVANCE(147); if (lookahead == ';') ADVANCE(143); if (lookahead == '<') ADVANCE(157); @@ -19585,9 +19596,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(146); if (lookahead == '\\') ADVANCE(39); if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(183); + if (lookahead == '^') ADVANCE(199); if (sym__identifier_token_character_set_4(lookahead)) ADVANCE(344); - if (lookahead == '|') ADVANCE(187); + if (lookahead == '|') ADVANCE(198); if (lookahead == '}') ADVANCE(154); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -19596,17 +19607,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(10) END_STATE(); case 11: - if (lookahead == '!') ADVANCE(167); + if (lookahead == '!') ADVANCE(220); if (lookahead == '#') ADVANCE(57); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(188); + if (lookahead == '%') ADVANCE(215); + if (lookahead == '&') ADVANCE(193); if (lookahead == '(') ADVANCE(151); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '+') ADVANCE(171); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); if (lookahead == ',') ADVANCE(149); - if (lookahead == '-') ADVANCE(173); - if (lookahead == '.') ADVANCE(201); - if (lookahead == '/') ADVANCE(179); + if (lookahead == '-') ADVANCE(209); + if (lookahead == '.') ADVANCE(167); + if (lookahead == '/') ADVANCE(213); if (lookahead == ':') ADVANCE(148); if (lookahead == ';') ADVANCE(143); if (lookahead == '<') ADVANCE(157); @@ -19616,11 +19627,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '@') ADVANCE(43); if (lookahead == '[') ADVANCE(146); if (lookahead == '\\') ADVANCE(39); - if (lookahead == '^') ADVANCE(183); + if (lookahead == '^') ADVANCE(199); if (sym__identifier_token_character_set_3(lookahead)) ADVANCE(344); if (lookahead == '{') ADVANCE(153); - if (lookahead == '|') ADVANCE(185); - if (lookahead == '~') ADVANCE(168); + if (lookahead == '|') ADVANCE(196); + if (lookahead == '~') ADVANCE(166); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -19628,17 +19639,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(11) END_STATE(); case 12: - if (lookahead == '!') ADVANCE(167); + if (lookahead == '!') ADVANCE(220); if (lookahead == '#') ADVANCE(57); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(189); + if (lookahead == '%') ADVANCE(215); + if (lookahead == '&') ADVANCE(194); if (lookahead == '(') ADVANCE(151); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '+') ADVANCE(171); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); if (lookahead == ',') ADVANCE(149); - if (lookahead == '-') ADVANCE(175); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '/') ADVANCE(179); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(168); + if (lookahead == '/') ADVANCE(213); if (lookahead == '<') ADVANCE(157); if (lookahead == '=') ADVANCE(34); if (lookahead == '>') ADVANCE(162); @@ -19648,9 +19659,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'u') ADVANCE(343); if (lookahead == '[') ADVANCE(146); if (lookahead == '\\') ADVANCE(39); - if (lookahead == '^') ADVANCE(183); + if (lookahead == '^') ADVANCE(199); if (sym__identifier_token_character_set_2(lookahead)) ADVANCE(344); - if (lookahead == '|') ADVANCE(187); + if (lookahead == '|') ADVANCE(198); if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -19673,15 +19684,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(54); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(166); + if (lookahead == '!') ADVANCE(219); if (lookahead == '#') ADVANCE(56); if (lookahead == '\'') ADVANCE(268); if (lookahead == '(') ADVANCE(151); if (lookahead == ')') ADVANCE(152); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '*') ADVANCE(172); if (lookahead == ',') ADVANCE(149); - if (lookahead == '-') ADVANCE(176); - if (lookahead == '.') ADVANCE(201); + if (lookahead == '-') ADVANCE(212); + if (lookahead == '.') ADVANCE(167); if (lookahead == '/') ADVANCE(25); if (lookahead == '0') ADVANCE(277); if (lookahead == ':') ADVANCE(148); @@ -19764,10 +19775,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(57); if (lookahead == '(') ADVANCE(151); if (lookahead == ')') ADVANCE(152); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '*') ADVANCE(172); if (lookahead == ',') ADVANCE(149); if (lookahead == '-') ADVANCE(36); - if (lookahead == '.') ADVANCE(201); + if (lookahead == '.') ADVANCE(167); if (lookahead == '/') ADVANCE(25); if (lookahead == ':') ADVANCE(147); if (lookahead == ';') ADVANCE(143); @@ -19792,9 +19803,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 22: if (lookahead == '#') ADVANCE(57); if (lookahead == '(') ADVANCE(151); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '*') ADVANCE(172); if (lookahead == ',') ADVANCE(149); - if (lookahead == '.') ADVANCE(201); + if (lookahead == '.') ADVANCE(167); if (lookahead == '/') ADVANCE(25); if (lookahead == ':') ADVANCE(147); if (lookahead == '<') ADVANCE(155); @@ -19821,7 +19832,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(23) END_STATE(); case 24: - if (lookahead == '&') ADVANCE(219); + if (lookahead == '&') ADVANCE(191); END_STATE(); case 25: if (lookahead == '*') ADVANCE(27); @@ -19856,20 +19867,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '8') ADVANCE(339); END_STATE(); case 33: - if (lookahead == '=') ADVANCE(198); + if (lookahead == '=') ADVANCE(190); END_STATE(); case 34: - if (lookahead == '=') ADVANCE(197); + if (lookahead == '=') ADVANCE(189); END_STATE(); case 35: - if (lookahead == '=') ADVANCE(197); - if (lookahead == '>') ADVANCE(204); + if (lookahead == '=') ADVANCE(189); + if (lookahead == '>') ADVANCE(170); END_STATE(); case 36: if (lookahead == '>') ADVANCE(267); END_STATE(); case 37: - if (lookahead == '>') ADVANCE(204); + if (lookahead == '>') ADVANCE(170); END_STATE(); case 38: if (lookahead == 'U') ADVANCE(333); @@ -20146,7 +20157,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(86); END_STATE(); case 107: - if (lookahead == '|') ADVANCE(220); + if (lookahead == '|') ADVANCE(192); END_STATE(); case 108: if (lookahead == '+' || @@ -20295,20 +20306,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 138: if (eof) ADVANCE(142); - if (lookahead == '!') ADVANCE(167); + if (lookahead == '!') ADVANCE(220); if (lookahead == '"') ADVANCE(284); if (lookahead == '#') ADVANCE(13); - if (lookahead == '%') ADVANCE(182); - if (lookahead == '&') ADVANCE(190); + if (lookahead == '%') ADVANCE(216); + if (lookahead == '&') ADVANCE(195); if (lookahead == '\'') ADVANCE(268); if (lookahead == '(') ADVANCE(151); if (lookahead == ')') ADVANCE(152); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(172); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '+') ADVANCE(208); if (lookahead == ',') ADVANCE(149); - if (lookahead == '-') ADVANCE(174); - if (lookahead == '.') ADVANCE(203); - if (lookahead == '/') ADVANCE(180); + if (lookahead == '-') ADVANCE(210); + if (lookahead == '.') ADVANCE(169); + if (lookahead == '/') ADVANCE(214); if (lookahead == '0') ADVANCE(273); if (lookahead == ':') ADVANCE(148); if (lookahead == ';') ADVANCE(143); @@ -20322,12 +20333,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(146); if (lookahead == '\\') ADVANCE(41); if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(184); + if (lookahead == '^') ADVANCE(200); if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(344); if (lookahead == '{') ADVANCE(153); - if (lookahead == '|') ADVANCE(186); + if (lookahead == '|') ADVANCE(197); if (lookahead == '}') ADVANCE(154); - if (lookahead == '~') ADVANCE(168); + if (lookahead == '~') ADVANCE(166); if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -20338,20 +20349,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 139: if (eof) ADVANCE(142); - if (lookahead == '!') ADVANCE(167); + if (lookahead == '!') ADVANCE(220); if (lookahead == '"') ADVANCE(284); if (lookahead == '#') ADVANCE(54); - if (lookahead == '%') ADVANCE(182); - if (lookahead == '&') ADVANCE(190); + if (lookahead == '%') ADVANCE(216); + if (lookahead == '&') ADVANCE(195); if (lookahead == '\'') ADVANCE(268); if (lookahead == '(') ADVANCE(151); if (lookahead == ')') ADVANCE(152); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(172); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '+') ADVANCE(208); if (lookahead == ',') ADVANCE(149); - if (lookahead == '-') ADVANCE(174); - if (lookahead == '.') ADVANCE(203); - if (lookahead == '/') ADVANCE(180); + if (lookahead == '-') ADVANCE(210); + if (lookahead == '.') ADVANCE(169); + if (lookahead == '/') ADVANCE(214); if (lookahead == '0') ADVANCE(273); if (lookahead == ':') ADVANCE(148); if (lookahead == ';') ADVANCE(143); @@ -20363,12 +20374,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(146); if (lookahead == '\\') ADVANCE(39); if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(184); + if (lookahead == '^') ADVANCE(200); if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(344); if (lookahead == '{') ADVANCE(153); - if (lookahead == '|') ADVANCE(186); + if (lookahead == '|') ADVANCE(197); if (lookahead == '}') ADVANCE(154); - if (lookahead == '~') ADVANCE(168); + if (lookahead == '~') ADVANCE(166); if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -20379,20 +20390,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 140: if (eof) ADVANCE(142); - if (lookahead == '!') ADVANCE(167); + if (lookahead == '!') ADVANCE(220); if (lookahead == '"') ADVANCE(284); if (lookahead == '#') ADVANCE(54); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(189); + if (lookahead == '%') ADVANCE(215); + if (lookahead == '&') ADVANCE(194); if (lookahead == '\'') ADVANCE(268); if (lookahead == '(') ADVANCE(151); if (lookahead == ')') ADVANCE(152); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '+') ADVANCE(171); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); if (lookahead == ',') ADVANCE(149); - if (lookahead == '-') ADVANCE(175); - if (lookahead == '.') ADVANCE(203); - if (lookahead == '/') ADVANCE(179); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(169); + if (lookahead == '/') ADVANCE(213); if (lookahead == '0') ADVANCE(273); if (lookahead == ':') ADVANCE(147); if (lookahead == ';') ADVANCE(143); @@ -20404,12 +20415,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(146); if (lookahead == '\\') ADVANCE(39); if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(183); + if (lookahead == '^') ADVANCE(199); if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(344); if (lookahead == '{') ADVANCE(153); - if (lookahead == '|') ADVANCE(187); + if (lookahead == '|') ADVANCE(198); if (lookahead == '}') ADVANCE(154); - if (lookahead == '~') ADVANCE(168); + if (lookahead == '~') ADVANCE(166); if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -20420,18 +20431,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 141: if (eof) ADVANCE(142); - if (lookahead == '!') ADVANCE(166); + if (lookahead == '!') ADVANCE(219); if (lookahead == '"') ADVANCE(284); if (lookahead == '#') ADVANCE(13); - if (lookahead == '&') ADVANCE(188); + if (lookahead == '&') ADVANCE(193); if (lookahead == '\'') ADVANCE(268); if (lookahead == '(') ADVANCE(151); if (lookahead == ')') ADVANCE(152); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '+') ADVANCE(171); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); if (lookahead == ',') ADVANCE(149); - if (lookahead == '-') ADVANCE(175); - if (lookahead == '.') ADVANCE(203); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(169); if (lookahead == '/') ADVANCE(25); if (lookahead == '0') ADVANCE(273); if (lookahead == ':') ADVANCE(148); @@ -20444,11 +20455,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(146); if (lookahead == '\\') ADVANCE(39); if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(183); + if (lookahead == '^') ADVANCE(199); if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(344); if (lookahead == '{') ADVANCE(153); if (lookahead == '}') ADVANCE(154); - if (lookahead == '~') ADVANCE(168); + if (lookahead == '~') ADVANCE(166); if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -20465,12 +20476,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 144: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(197); - if (lookahead == '>') ADVANCE(204); + if (lookahead == '=') ADVANCE(189); + if (lookahead == '>') ADVANCE(170); END_STATE(); case 145: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(204); + if (lookahead == '>') ADVANCE(170); END_STATE(); case 146: ACCEPT_TOKEN(anon_sym_LBRACK); @@ -20480,7 +20491,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 148: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(205); + if (lookahead == ':') ADVANCE(171); END_STATE(); case 149: ACCEPT_TOKEN(anon_sym_COMMA); @@ -20505,250 +20516,250 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 156: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(192); - if (lookahead == '=') ADVANCE(200); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(175); END_STATE(); case 157: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(191); - if (lookahead == '=') ADVANCE(200); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(175); END_STATE(); case 158: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(200); + if (lookahead == '=') ADVANCE(175); END_STATE(); case 159: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 160: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(199); + if (lookahead == '=') ADVANCE(176); END_STATE(); case 161: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(199); - if (lookahead == '>') ADVANCE(193); + if (lookahead == '=') ADVANCE(176); + if (lookahead == '>') ADVANCE(203); END_STATE(); case 162: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(199); - if (lookahead == '>') ADVANCE(194); + if (lookahead == '=') ADVANCE(176); + if (lookahead == '>') ADVANCE(204); END_STATE(); case 163: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 164: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '?') ADVANCE(222); + if (lookahead == '?') ADVANCE(218); END_STATE(); case 165: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '?') ADVANCE(221); + if (lookahead == '?') ADVANCE(217); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(174); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(169); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(169); - if (lookahead == '=') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(170); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(179); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(170); - if (lookahead == '=') ADVANCE(208); - if (lookahead == '>') ADVANCE(267); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(170); - if (lookahead == '>') ADVANCE(267); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(267); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(209); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(27); - if (lookahead == '/') ADVANCE(426); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(27); - if (lookahead == '/') ADVANCE(426); - if (lookahead == '=') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(211); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(213); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(214); - if (lookahead == '|') ADVANCE(220); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(220); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(219); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(219); - if (lookahead == '=') ADVANCE(212); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(215); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(216); - if (lookahead == '>') ADVANCE(196); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(195); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(191); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(191); + if (lookahead == '=') ADVANCE(182); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(217); + ACCEPT_TOKEN(sym_op_bitwise_or); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(sym_op_bitwise_or); + if (lookahead == '=') ADVANCE(184); + if (lookahead == '|') ADVANCE(192); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(sym_op_bitwise_or); + if (lookahead == '|') ADVANCE(192); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(183); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(sym_op_left_shift); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(206); + ACCEPT_TOKEN(sym_op_left_shift); + if (lookahead == '=') ADVANCE(185); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(206); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); + ACCEPT_TOKEN(sym_op_right_shift); + if (lookahead == '=') ADVANCE(186); + if (lookahead == '>') ADVANCE(206); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(sym_op_right_shift); + if (lookahead == '>') ADVANCE(205); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(sym_op_unsigned_right_shift); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(sym_op_unsigned_right_shift); + if (lookahead == '=') ADVANCE(187); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(221); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(221); + if (lookahead == '=') ADVANCE(177); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(222); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(222); + if (lookahead == '=') ADVANCE(178); + if (lookahead == '>') ADVANCE(267); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(222); + if (lookahead == '>') ADVANCE(267); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(267); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(sym_op_divide); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(426); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(sym_op_divide); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(426); + if (lookahead == '=') ADVANCE(180); END_STATE(); case 215: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(sym_op_modulo); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(sym_op_modulo); + if (lookahead == '=') ADVANCE(181); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + ACCEPT_TOKEN(sym_op_coalescing); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + ACCEPT_TOKEN(sym_op_coalescing); + if (lookahead == '=') ADVANCE(188); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(190); END_STATE(); case 221: - ACCEPT_TOKEN(sym_op_coalescing); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 222: - ACCEPT_TOKEN(sym_op_coalescing); - if (lookahead == '=') ADVANCE(218); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 223: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); @@ -24345,8 +24356,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [120] = {.lex_state = 141, .external_lex_state = 2}, [121] = {.lex_state = 141, .external_lex_state = 2}, [122] = {.lex_state = 141, .external_lex_state = 2}, - [123] = {.lex_state = 140, .external_lex_state = 2}, - [124] = {.lex_state = 140, .external_lex_state = 2}, + [123] = {.lex_state = 141, .external_lex_state = 2}, + [124] = {.lex_state = 141, .external_lex_state = 2}, [125] = {.lex_state = 141, .external_lex_state = 2}, [126] = {.lex_state = 141, .external_lex_state = 2}, [127] = {.lex_state = 141, .external_lex_state = 2}, @@ -24359,14 +24370,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [134] = {.lex_state = 141, .external_lex_state = 2}, [135] = {.lex_state = 141, .external_lex_state = 2}, [136] = {.lex_state = 141, .external_lex_state = 2}, - [137] = {.lex_state = 141, .external_lex_state = 2}, + [137] = {.lex_state = 140, .external_lex_state = 2}, [138] = {.lex_state = 141, .external_lex_state = 2}, [139] = {.lex_state = 141, .external_lex_state = 2}, [140] = {.lex_state = 141, .external_lex_state = 2}, [141] = {.lex_state = 141, .external_lex_state = 2}, [142] = {.lex_state = 141, .external_lex_state = 2}, [143] = {.lex_state = 141, .external_lex_state = 2}, - [144] = {.lex_state = 141, .external_lex_state = 2}, + [144] = {.lex_state = 140, .external_lex_state = 2}, [145] = {.lex_state = 141, .external_lex_state = 2}, [146] = {.lex_state = 141, .external_lex_state = 2}, [147] = {.lex_state = 141, .external_lex_state = 2}, @@ -24396,7 +24407,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [171] = {.lex_state = 140, .external_lex_state = 2}, [172] = {.lex_state = 140, .external_lex_state = 2}, [173] = {.lex_state = 140, .external_lex_state = 2}, - [174] = {.lex_state = 140, .external_lex_state = 3}, + [174] = {.lex_state = 140, .external_lex_state = 2}, [175] = {.lex_state = 140, .external_lex_state = 2}, [176] = {.lex_state = 140, .external_lex_state = 2}, [177] = {.lex_state = 140, .external_lex_state = 2}, @@ -24410,22 +24421,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [185] = {.lex_state = 140, .external_lex_state = 2}, [186] = {.lex_state = 140, .external_lex_state = 2}, [187] = {.lex_state = 140, .external_lex_state = 2}, - [188] = {.lex_state = 140, .external_lex_state = 2}, + [188] = {.lex_state = 140, .external_lex_state = 3}, [189] = {.lex_state = 140, .external_lex_state = 2}, - [190] = {.lex_state = 140, .external_lex_state = 2}, + [190] = {.lex_state = 140, .external_lex_state = 3}, [191] = {.lex_state = 140, .external_lex_state = 2}, [192] = {.lex_state = 140, .external_lex_state = 2}, [193] = {.lex_state = 140, .external_lex_state = 2}, [194] = {.lex_state = 140, .external_lex_state = 2}, - [195] = {.lex_state = 140, .external_lex_state = 3}, - [196] = {.lex_state = 140, .external_lex_state = 2}, + [195] = {.lex_state = 140, .external_lex_state = 2}, + [196] = {.lex_state = 140, .external_lex_state = 3}, [197] = {.lex_state = 140, .external_lex_state = 3}, [198] = {.lex_state = 140, .external_lex_state = 2}, [199] = {.lex_state = 140, .external_lex_state = 2}, [200] = {.lex_state = 140, .external_lex_state = 2}, [201] = {.lex_state = 140, .external_lex_state = 2}, [202] = {.lex_state = 140, .external_lex_state = 2}, - [203] = {.lex_state = 140, .external_lex_state = 3}, + [203] = {.lex_state = 140, .external_lex_state = 2}, [204] = {.lex_state = 140, .external_lex_state = 2}, [205] = {.lex_state = 140, .external_lex_state = 2}, [206] = {.lex_state = 140, .external_lex_state = 2}, @@ -24448,67 +24459,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [223] = {.lex_state = 140, .external_lex_state = 2}, [224] = {.lex_state = 140, .external_lex_state = 2}, [225] = {.lex_state = 140, .external_lex_state = 2}, - [226] = {.lex_state = 141, .external_lex_state = 2}, + [226] = {.lex_state = 140, .external_lex_state = 2}, [227] = {.lex_state = 140, .external_lex_state = 2}, - [228] = {.lex_state = 141, .external_lex_state = 2}, + [228] = {.lex_state = 140, .external_lex_state = 2}, [229] = {.lex_state = 140, .external_lex_state = 2}, [230] = {.lex_state = 140, .external_lex_state = 2}, [231] = {.lex_state = 141, .external_lex_state = 2}, - [232] = {.lex_state = 141, .external_lex_state = 2}, - [233] = {.lex_state = 141, .external_lex_state = 2}, + [232] = {.lex_state = 140, .external_lex_state = 2}, + [233] = {.lex_state = 140, .external_lex_state = 2}, [234] = {.lex_state = 141, .external_lex_state = 2}, [235] = {.lex_state = 140, .external_lex_state = 2}, [236] = {.lex_state = 140, .external_lex_state = 2}, [237] = {.lex_state = 140, .external_lex_state = 2}, - [238] = {.lex_state = 141, .external_lex_state = 2}, + [238] = {.lex_state = 140, .external_lex_state = 2}, [239] = {.lex_state = 140, .external_lex_state = 2}, - [240] = {.lex_state = 140, .external_lex_state = 2}, + [240] = {.lex_state = 141, .external_lex_state = 2}, [241] = {.lex_state = 140, .external_lex_state = 2}, [242] = {.lex_state = 140, .external_lex_state = 2}, [243] = {.lex_state = 140, .external_lex_state = 2}, - [244] = {.lex_state = 140, .external_lex_state = 2}, + [244] = {.lex_state = 141, .external_lex_state = 2}, [245] = {.lex_state = 140, .external_lex_state = 2}, [246] = {.lex_state = 141, .external_lex_state = 2}, [247] = {.lex_state = 141, .external_lex_state = 2}, [248] = {.lex_state = 141, .external_lex_state = 2}, - [249] = {.lex_state = 141, .external_lex_state = 2}, - [250] = {.lex_state = 140, .external_lex_state = 2}, - [251] = {.lex_state = 140, .external_lex_state = 2}, - [252] = {.lex_state = 140, .external_lex_state = 2}, - [253] = {.lex_state = 140, .external_lex_state = 2}, + [249] = {.lex_state = 140, .external_lex_state = 2}, + [250] = {.lex_state = 141, .external_lex_state = 2}, + [251] = {.lex_state = 141, .external_lex_state = 2}, + [252] = {.lex_state = 141, .external_lex_state = 2}, + [253] = {.lex_state = 141, .external_lex_state = 2}, [254] = {.lex_state = 141, .external_lex_state = 2}, [255] = {.lex_state = 141, .external_lex_state = 2}, - [256] = {.lex_state = 141, .external_lex_state = 2}, - [257] = {.lex_state = 140, .external_lex_state = 2}, - [258] = {.lex_state = 140, .external_lex_state = 2}, - [259] = {.lex_state = 141, .external_lex_state = 2}, - [260] = {.lex_state = 140, .external_lex_state = 2}, + [256] = {.lex_state = 140, .external_lex_state = 2}, + [257] = {.lex_state = 141, .external_lex_state = 2}, + [258] = {.lex_state = 141, .external_lex_state = 2}, + [259] = {.lex_state = 140, .external_lex_state = 2}, + [260] = {.lex_state = 141, .external_lex_state = 2}, [261] = {.lex_state = 140, .external_lex_state = 2}, - [262] = {.lex_state = 141, .external_lex_state = 2}, + [262] = {.lex_state = 140, .external_lex_state = 2}, [263] = {.lex_state = 141, .external_lex_state = 2}, - [264] = {.lex_state = 140, .external_lex_state = 2}, - [265] = {.lex_state = 141, .external_lex_state = 2}, + [264] = {.lex_state = 141, .external_lex_state = 2}, + [265] = {.lex_state = 140, .external_lex_state = 2}, [266] = {.lex_state = 141, .external_lex_state = 2}, - [267] = {.lex_state = 141, .external_lex_state = 2}, - [268] = {.lex_state = 141, .external_lex_state = 2}, - [269] = {.lex_state = 140, .external_lex_state = 2}, - [270] = {.lex_state = 141, .external_lex_state = 2}, - [271] = {.lex_state = 140, .external_lex_state = 2}, + [267] = {.lex_state = 140, .external_lex_state = 2}, + [268] = {.lex_state = 140, .external_lex_state = 2}, + [269] = {.lex_state = 141, .external_lex_state = 2}, + [270] = {.lex_state = 140, .external_lex_state = 2}, + [271] = {.lex_state = 141, .external_lex_state = 2}, [272] = {.lex_state = 140, .external_lex_state = 2}, - [273] = {.lex_state = 140, .external_lex_state = 2}, + [273] = {.lex_state = 141, .external_lex_state = 2}, [274] = {.lex_state = 140, .external_lex_state = 2}, [275] = {.lex_state = 141, .external_lex_state = 2}, [276] = {.lex_state = 140, .external_lex_state = 2}, - [277] = {.lex_state = 141, .external_lex_state = 2}, + [277] = {.lex_state = 140, .external_lex_state = 2}, [278] = {.lex_state = 140, .external_lex_state = 2}, [279] = {.lex_state = 140, .external_lex_state = 2}, - [280] = {.lex_state = 140, .external_lex_state = 2}, - [281] = {.lex_state = 140, .external_lex_state = 2}, + [280] = {.lex_state = 141, .external_lex_state = 2}, + [281] = {.lex_state = 141, .external_lex_state = 2}, [282] = {.lex_state = 141, .external_lex_state = 2}, [283] = {.lex_state = 141, .external_lex_state = 2}, [284] = {.lex_state = 140, .external_lex_state = 2}, [285] = {.lex_state = 141, .external_lex_state = 2}, - [286] = {.lex_state = 141, .external_lex_state = 2}, + [286] = {.lex_state = 140, .external_lex_state = 2}, [287] = {.lex_state = 141, .external_lex_state = 2}, [288] = {.lex_state = 141, .external_lex_state = 2}, [289] = {.lex_state = 141, .external_lex_state = 2}, @@ -26156,8 +26167,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1931] = {.lex_state = 141}, [1932] = {.lex_state = 141, .external_lex_state = 2}, [1933] = {.lex_state = 141, .external_lex_state = 2}, - [1934] = {.lex_state = 141, .external_lex_state = 2}, - [1935] = {.lex_state = 141}, + [1934] = {.lex_state = 141}, + [1935] = {.lex_state = 141, .external_lex_state = 2}, [1936] = {.lex_state = 141}, [1937] = {.lex_state = 141}, [1938] = {.lex_state = 141}, @@ -26258,8 +26269,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2033] = {.lex_state = 141, .external_lex_state = 2}, [2034] = {.lex_state = 141, .external_lex_state = 2}, [2035] = {.lex_state = 141, .external_lex_state = 2}, - [2036] = {.lex_state = 141, .external_lex_state = 2}, - [2037] = {.lex_state = 139}, + [2036] = {.lex_state = 139}, + [2037] = {.lex_state = 141, .external_lex_state = 2}, [2038] = {.lex_state = 141, .external_lex_state = 2}, [2039] = {.lex_state = 141, .external_lex_state = 2}, [2040] = {.lex_state = 141, .external_lex_state = 2}, @@ -26387,10 +26398,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2162] = {.lex_state = 141, .external_lex_state = 2}, [2163] = {.lex_state = 141, .external_lex_state = 2}, [2164] = {.lex_state = 141, .external_lex_state = 2}, - [2165] = {.lex_state = 139}, - [2166] = {.lex_state = 141, .external_lex_state = 2}, - [2167] = {.lex_state = 139, .external_lex_state = 4}, - [2168] = {.lex_state = 141, .external_lex_state = 2}, + [2165] = {.lex_state = 141, .external_lex_state = 2}, + [2166] = {.lex_state = 139}, + [2167] = {.lex_state = 141, .external_lex_state = 2}, + [2168] = {.lex_state = 139, .external_lex_state = 4}, [2169] = {.lex_state = 141, .external_lex_state = 2}, [2170] = {.lex_state = 141, .external_lex_state = 2}, [2171] = {.lex_state = 141, .external_lex_state = 2}, @@ -26426,956 +26437,956 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2201] = {.lex_state = 139}, [2202] = {.lex_state = 139}, [2203] = {.lex_state = 139}, - [2204] = {.lex_state = 139}, - [2205] = {.lex_state = 139, .external_lex_state = 4}, + [2204] = {.lex_state = 139, .external_lex_state = 4}, + [2205] = {.lex_state = 139}, [2206] = {.lex_state = 139}, [2207] = {.lex_state = 139}, [2208] = {.lex_state = 5}, - [2209] = {.lex_state = 5}, - [2210] = {.lex_state = 139, .external_lex_state = 4}, - [2211] = {.lex_state = 139}, - [2212] = {.lex_state = 5}, + [2209] = {.lex_state = 139, .external_lex_state = 4}, + [2210] = {.lex_state = 5}, + [2211] = {.lex_state = 5}, + [2212] = {.lex_state = 139}, [2213] = {.lex_state = 5}, [2214] = {.lex_state = 5}, - [2215] = {.lex_state = 5}, - [2216] = {.lex_state = 139}, - [2217] = {.lex_state = 139}, + [2215] = {.lex_state = 139}, + [2216] = {.lex_state = 5}, + [2217] = {.lex_state = 5}, [2218] = {.lex_state = 139}, - [2219] = {.lex_state = 5}, + [2219] = {.lex_state = 139}, [2220] = {.lex_state = 5}, [2221] = {.lex_state = 5}, [2222] = {.lex_state = 5}, [2223] = {.lex_state = 5}, - [2224] = {.lex_state = 139}, - [2225] = {.lex_state = 5}, + [2224] = {.lex_state = 5}, + [2225] = {.lex_state = 139}, [2226] = {.lex_state = 5}, [2227] = {.lex_state = 5}, [2228] = {.lex_state = 139}, [2229] = {.lex_state = 5}, - [2230] = {.lex_state = 141}, + [2230] = {.lex_state = 5}, [2231] = {.lex_state = 139, .external_lex_state = 4}, - [2232] = {.lex_state = 5}, - [2233] = {.lex_state = 139}, - [2234] = {.lex_state = 5}, + [2232] = {.lex_state = 141}, + [2233] = {.lex_state = 5}, + [2234] = {.lex_state = 139}, [2235] = {.lex_state = 140}, [2236] = {.lex_state = 8}, [2237] = {.lex_state = 8}, [2238] = {.lex_state = 5}, [2239] = {.lex_state = 139}, [2240] = {.lex_state = 139}, - [2241] = {.lex_state = 139}, - [2242] = {.lex_state = 141}, + [2241] = {.lex_state = 8}, + [2242] = {.lex_state = 139}, [2243] = {.lex_state = 139}, [2244] = {.lex_state = 139}, - [2245] = {.lex_state = 139}, - [2246] = {.lex_state = 8}, - [2247] = {.lex_state = 141}, - [2248] = {.lex_state = 5}, - [2249] = {.lex_state = 139}, + [2245] = {.lex_state = 141}, + [2246] = {.lex_state = 141}, + [2247] = {.lex_state = 139}, + [2248] = {.lex_state = 139}, + [2249] = {.lex_state = 140}, [2250] = {.lex_state = 139}, [2251] = {.lex_state = 139}, [2252] = {.lex_state = 139}, [2253] = {.lex_state = 139}, - [2254] = {.lex_state = 139}, - [2255] = {.lex_state = 5}, - [2256] = {.lex_state = 140}, + [2254] = {.lex_state = 8}, + [2255] = {.lex_state = 139}, + [2256] = {.lex_state = 139, .external_lex_state = 4}, [2257] = {.lex_state = 139}, - [2258] = {.lex_state = 139, .external_lex_state = 4}, + [2258] = {.lex_state = 5}, [2259] = {.lex_state = 5}, - [2260] = {.lex_state = 8}, - [2261] = {.lex_state = 139}, + [2260] = {.lex_state = 139}, + [2261] = {.lex_state = 5}, [2262] = {.lex_state = 139}, - [2263] = {.lex_state = 5}, + [2263] = {.lex_state = 8}, [2264] = {.lex_state = 140}, - [2265] = {.lex_state = 5}, - [2266] = {.lex_state = 140}, - [2267] = {.lex_state = 139, .external_lex_state = 4}, - [2268] = {.lex_state = 140}, - [2269] = {.lex_state = 8}, - [2270] = {.lex_state = 139, .external_lex_state = 4}, + [2265] = {.lex_state = 139, .external_lex_state = 4}, + [2266] = {.lex_state = 139, .external_lex_state = 4}, + [2267] = {.lex_state = 5}, + [2268] = {.lex_state = 5}, + [2269] = {.lex_state = 140}, + [2270] = {.lex_state = 5}, [2271] = {.lex_state = 5}, - [2272] = {.lex_state = 5}, - [2273] = {.lex_state = 139, .external_lex_state = 4}, - [2274] = {.lex_state = 139, .external_lex_state = 4}, - [2275] = {.lex_state = 140}, - [2276] = {.lex_state = 5}, - [2277] = {.lex_state = 139}, - [2278] = {.lex_state = 5}, - [2279] = {.lex_state = 5, .external_lex_state = 4}, + [2272] = {.lex_state = 139, .external_lex_state = 4}, + [2273] = {.lex_state = 140}, + [2274] = {.lex_state = 140}, + [2275] = {.lex_state = 139}, + [2276] = {.lex_state = 139}, + [2277] = {.lex_state = 5}, + [2278] = {.lex_state = 139, .external_lex_state = 4}, + [2279] = {.lex_state = 5}, [2280] = {.lex_state = 140}, - [2281] = {.lex_state = 5}, - [2282] = {.lex_state = 140}, - [2283] = {.lex_state = 139}, - [2284] = {.lex_state = 5, .external_lex_state = 4}, - [2285] = {.lex_state = 139, .external_lex_state = 4}, - [2286] = {.lex_state = 5, .external_lex_state = 4}, + [2281] = {.lex_state = 140}, + [2282] = {.lex_state = 5}, + [2283] = {.lex_state = 5, .external_lex_state = 4}, + [2284] = {.lex_state = 139}, + [2285] = {.lex_state = 5, .external_lex_state = 4}, + [2286] = {.lex_state = 139}, [2287] = {.lex_state = 5, .external_lex_state = 4}, [2288] = {.lex_state = 5}, - [2289] = {.lex_state = 5, .external_lex_state = 4}, - [2290] = {.lex_state = 140}, + [2289] = {.lex_state = 139}, + [2290] = {.lex_state = 5, .external_lex_state = 4}, [2291] = {.lex_state = 5, .external_lex_state = 4}, - [2292] = {.lex_state = 139}, - [2293] = {.lex_state = 5}, + [2292] = {.lex_state = 5}, + [2293] = {.lex_state = 5, .external_lex_state = 4}, [2294] = {.lex_state = 5}, - [2295] = {.lex_state = 139}, - [2296] = {.lex_state = 5, .external_lex_state = 4}, - [2297] = {.lex_state = 140}, - [2298] = {.lex_state = 5, .external_lex_state = 4}, - [2299] = {.lex_state = 5}, + [2295] = {.lex_state = 5, .external_lex_state = 4}, + [2296] = {.lex_state = 139}, + [2297] = {.lex_state = 5}, + [2298] = {.lex_state = 140}, + [2299] = {.lex_state = 5, .external_lex_state = 4}, [2300] = {.lex_state = 5, .external_lex_state = 4}, - [2301] = {.lex_state = 5, .external_lex_state = 4}, - [2302] = {.lex_state = 5, .external_lex_state = 4}, + [2301] = {.lex_state = 140}, + [2302] = {.lex_state = 139, .external_lex_state = 4}, [2303] = {.lex_state = 5, .external_lex_state = 4}, [2304] = {.lex_state = 5, .external_lex_state = 4}, - [2305] = {.lex_state = 139}, + [2305] = {.lex_state = 5, .external_lex_state = 4}, [2306] = {.lex_state = 139}, [2307] = {.lex_state = 5, .external_lex_state = 4}, [2308] = {.lex_state = 5, .external_lex_state = 4}, - [2309] = {.lex_state = 139}, - [2310] = {.lex_state = 5}, - [2311] = {.lex_state = 140}, - [2312] = {.lex_state = 141}, - [2313] = {.lex_state = 5}, - [2314] = {.lex_state = 139}, + [2309] = {.lex_state = 5, .external_lex_state = 4}, + [2310] = {.lex_state = 141}, + [2311] = {.lex_state = 139}, + [2312] = {.lex_state = 140}, + [2313] = {.lex_state = 141}, + [2314] = {.lex_state = 140}, [2315] = {.lex_state = 140}, [2316] = {.lex_state = 5}, - [2317] = {.lex_state = 141}, - [2318] = {.lex_state = 8}, - [2319] = {.lex_state = 139}, - [2320] = {.lex_state = 5}, - [2321] = {.lex_state = 140}, - [2322] = {.lex_state = 141}, - [2323] = {.lex_state = 139}, - [2324] = {.lex_state = 139}, - [2325] = {.lex_state = 5}, + [2317] = {.lex_state = 139}, + [2318] = {.lex_state = 139}, + [2319] = {.lex_state = 5}, + [2320] = {.lex_state = 141}, + [2321] = {.lex_state = 5}, + [2322] = {.lex_state = 139}, + [2323] = {.lex_state = 5}, + [2324] = {.lex_state = 5}, + [2325] = {.lex_state = 8}, [2326] = {.lex_state = 5}, [2327] = {.lex_state = 139}, - [2328] = {.lex_state = 5}, + [2328] = {.lex_state = 8, .external_lex_state = 4}, [2329] = {.lex_state = 139}, - [2330] = {.lex_state = 5, .external_lex_state = 4}, + [2330] = {.lex_state = 139}, [2331] = {.lex_state = 5}, [2332] = {.lex_state = 5}, - [2333] = {.lex_state = 5}, + [2333] = {.lex_state = 5, .external_lex_state = 4}, [2334] = {.lex_state = 139}, [2335] = {.lex_state = 139}, [2336] = {.lex_state = 139}, - [2337] = {.lex_state = 139}, - [2338] = {.lex_state = 5, .external_lex_state = 4}, - [2339] = {.lex_state = 139}, + [2337] = {.lex_state = 5, .external_lex_state = 4}, + [2338] = {.lex_state = 140}, + [2339] = {.lex_state = 5, .external_lex_state = 4}, [2340] = {.lex_state = 140}, - [2341] = {.lex_state = 5, .external_lex_state = 4}, - [2342] = {.lex_state = 139}, - [2343] = {.lex_state = 140}, - [2344] = {.lex_state = 140}, - [2345] = {.lex_state = 140}, - [2346] = {.lex_state = 5}, - [2347] = {.lex_state = 8, .external_lex_state = 4}, + [2341] = {.lex_state = 140}, + [2342] = {.lex_state = 140}, + [2343] = {.lex_state = 5}, + [2344] = {.lex_state = 139}, + [2345] = {.lex_state = 139}, + [2346] = {.lex_state = 5, .external_lex_state = 4}, + [2347] = {.lex_state = 5}, [2348] = {.lex_state = 139}, - [2349] = {.lex_state = 5, .external_lex_state = 4}, - [2350] = {.lex_state = 139}, - [2351] = {.lex_state = 5}, + [2349] = {.lex_state = 5}, + [2350] = {.lex_state = 140}, + [2351] = {.lex_state = 140}, [2352] = {.lex_state = 139}, - [2353] = {.lex_state = 140}, - [2354] = {.lex_state = 140}, + [2353] = {.lex_state = 139}, + [2354] = {.lex_state = 139}, [2355] = {.lex_state = 139}, - [2356] = {.lex_state = 140}, - [2357] = {.lex_state = 139}, + [2356] = {.lex_state = 139}, + [2357] = {.lex_state = 8, .external_lex_state = 4}, [2358] = {.lex_state = 139}, - [2359] = {.lex_state = 139}, - [2360] = {.lex_state = 139}, - [2361] = {.lex_state = 5}, - [2362] = {.lex_state = 8, .external_lex_state = 4}, - [2363] = {.lex_state = 139}, + [2359] = {.lex_state = 140}, + [2360] = {.lex_state = 5}, + [2361] = {.lex_state = 139}, + [2362] = {.lex_state = 5}, + [2363] = {.lex_state = 8, .external_lex_state = 4}, [2364] = {.lex_state = 139}, - [2365] = {.lex_state = 140}, - [2366] = {.lex_state = 139}, - [2367] = {.lex_state = 139}, + [2365] = {.lex_state = 139}, + [2366] = {.lex_state = 140}, + [2367] = {.lex_state = 140}, [2368] = {.lex_state = 140}, [2369] = {.lex_state = 140}, - [2370] = {.lex_state = 139}, - [2371] = {.lex_state = 139}, + [2370] = {.lex_state = 140}, + [2371] = {.lex_state = 140}, [2372] = {.lex_state = 139}, - [2373] = {.lex_state = 140}, + [2373] = {.lex_state = 139}, [2374] = {.lex_state = 140}, - [2375] = {.lex_state = 139}, + [2375] = {.lex_state = 140}, [2376] = {.lex_state = 140}, - [2377] = {.lex_state = 139}, - [2378] = {.lex_state = 140}, + [2377] = {.lex_state = 5}, + [2378] = {.lex_state = 139}, [2379] = {.lex_state = 139}, - [2380] = {.lex_state = 140}, + [2380] = {.lex_state = 5}, [2381] = {.lex_state = 139}, - [2382] = {.lex_state = 8, .external_lex_state = 4}, - [2383] = {.lex_state = 140}, - [2384] = {.lex_state = 5}, + [2382] = {.lex_state = 139}, + [2383] = {.lex_state = 139}, + [2384] = {.lex_state = 140}, [2385] = {.lex_state = 139}, - [2386] = {.lex_state = 140}, - [2387] = {.lex_state = 5}, - [2388] = {.lex_state = 141}, - [2389] = {.lex_state = 139}, - [2390] = {.lex_state = 8}, + [2386] = {.lex_state = 139}, + [2387] = {.lex_state = 139}, + [2388] = {.lex_state = 8}, + [2389] = {.lex_state = 141}, + [2390] = {.lex_state = 141}, [2391] = {.lex_state = 139}, [2392] = {.lex_state = 8}, - [2393] = {.lex_state = 140}, - [2394] = {.lex_state = 8}, + [2393] = {.lex_state = 8}, + [2394] = {.lex_state = 140}, [2395] = {.lex_state = 8}, - [2396] = {.lex_state = 141}, + [2396] = {.lex_state = 139}, [2397] = {.lex_state = 8}, [2398] = {.lex_state = 139}, [2399] = {.lex_state = 8}, [2400] = {.lex_state = 141}, - [2401] = {.lex_state = 8}, - [2402] = {.lex_state = 139}, + [2401] = {.lex_state = 139}, + [2402] = {.lex_state = 8}, [2403] = {.lex_state = 140}, - [2404] = {.lex_state = 140}, - [2405] = {.lex_state = 140, .external_lex_state = 4}, + [2404] = {.lex_state = 139}, + [2405] = {.lex_state = 140}, [2406] = {.lex_state = 139}, [2407] = {.lex_state = 140}, - [2408] = {.lex_state = 140}, - [2409] = {.lex_state = 141}, + [2408] = {.lex_state = 139}, + [2409] = {.lex_state = 140}, [2410] = {.lex_state = 139}, - [2411] = {.lex_state = 140}, + [2411] = {.lex_state = 139}, [2412] = {.lex_state = 139}, - [2413] = {.lex_state = 139}, - [2414] = {.lex_state = 140}, - [2415] = {.lex_state = 139}, - [2416] = {.lex_state = 140}, + [2413] = {.lex_state = 140}, + [2414] = {.lex_state = 139}, + [2415] = {.lex_state = 140}, + [2416] = {.lex_state = 141}, [2417] = {.lex_state = 140}, - [2418] = {.lex_state = 139}, - [2419] = {.lex_state = 140}, - [2420] = {.lex_state = 139}, - [2421] = {.lex_state = 140}, + [2418] = {.lex_state = 140}, + [2419] = {.lex_state = 140, .external_lex_state = 4}, + [2420] = {.lex_state = 8}, + [2421] = {.lex_state = 139}, [2422] = {.lex_state = 140, .external_lex_state = 4}, - [2423] = {.lex_state = 8}, - [2424] = {.lex_state = 140, .external_lex_state = 4}, + [2423] = {.lex_state = 140, .external_lex_state = 4}, + [2424] = {.lex_state = 140}, [2425] = {.lex_state = 140}, [2426] = {.lex_state = 140}, [2427] = {.lex_state = 139}, - [2428] = {.lex_state = 8}, - [2429] = {.lex_state = 139}, - [2430] = {.lex_state = 139}, + [2428] = {.lex_state = 139}, + [2429] = {.lex_state = 140}, + [2430] = {.lex_state = 140}, [2431] = {.lex_state = 140}, - [2432] = {.lex_state = 140}, - [2433] = {.lex_state = 140}, - [2434] = {.lex_state = 139}, - [2435] = {.lex_state = 140}, - [2436] = {.lex_state = 139}, - [2437] = {.lex_state = 140}, - [2438] = {.lex_state = 140, .external_lex_state = 4}, + [2432] = {.lex_state = 139}, + [2433] = {.lex_state = 139}, + [2434] = {.lex_state = 140}, + [2435] = {.lex_state = 140, .external_lex_state = 4}, + [2436] = {.lex_state = 140, .external_lex_state = 4}, + [2437] = {.lex_state = 8}, + [2438] = {.lex_state = 140}, [2439] = {.lex_state = 140}, [2440] = {.lex_state = 139}, - [2441] = {.lex_state = 140}, - [2442] = {.lex_state = 140, .external_lex_state = 4}, - [2443] = {.lex_state = 139}, - [2444] = {.lex_state = 141}, - [2445] = {.lex_state = 8}, - [2446] = {.lex_state = 139}, - [2447] = {.lex_state = 140}, - [2448] = {.lex_state = 140}, - [2449] = {.lex_state = 140, .external_lex_state = 4}, - [2450] = {.lex_state = 139}, - [2451] = {.lex_state = 140}, + [2441] = {.lex_state = 139}, + [2442] = {.lex_state = 140}, + [2443] = {.lex_state = 140, .external_lex_state = 4}, + [2444] = {.lex_state = 140}, + [2445] = {.lex_state = 140}, + [2446] = {.lex_state = 140}, + [2447] = {.lex_state = 8}, + [2448] = {.lex_state = 141}, + [2449] = {.lex_state = 139}, + [2450] = {.lex_state = 140}, + [2451] = {.lex_state = 139}, [2452] = {.lex_state = 140}, - [2453] = {.lex_state = 140}, - [2454] = {.lex_state = 8}, - [2455] = {.lex_state = 7}, + [2453] = {.lex_state = 8}, + [2454] = {.lex_state = 140}, + [2455] = {.lex_state = 8}, [2456] = {.lex_state = 8}, [2457] = {.lex_state = 140}, [2458] = {.lex_state = 140}, - [2459] = {.lex_state = 140}, - [2460] = {.lex_state = 8}, - [2461] = {.lex_state = 140}, - [2462] = {.lex_state = 140}, - [2463] = {.lex_state = 140}, - [2464] = {.lex_state = 8}, - [2465] = {.lex_state = 140}, - [2466] = {.lex_state = 141}, + [2459] = {.lex_state = 141}, + [2460] = {.lex_state = 140}, + [2461] = {.lex_state = 8}, + [2462] = {.lex_state = 8}, + [2463] = {.lex_state = 8}, + [2464] = {.lex_state = 140}, + [2465] = {.lex_state = 8}, + [2466] = {.lex_state = 140}, [2467] = {.lex_state = 140}, - [2468] = {.lex_state = 140}, - [2469] = {.lex_state = 8}, + [2468] = {.lex_state = 7}, + [2469] = {.lex_state = 140}, [2470] = {.lex_state = 8}, - [2471] = {.lex_state = 8}, + [2471] = {.lex_state = 140}, [2472] = {.lex_state = 140}, - [2473] = {.lex_state = 8}, + [2473] = {.lex_state = 140}, [2474] = {.lex_state = 7}, - [2475] = {.lex_state = 140}, + [2475] = {.lex_state = 7}, [2476] = {.lex_state = 140}, - [2477] = {.lex_state = 140}, + [2477] = {.lex_state = 7}, [2478] = {.lex_state = 140}, - [2479] = {.lex_state = 7}, + [2479] = {.lex_state = 140}, [2480] = {.lex_state = 140}, - [2481] = {.lex_state = 7}, + [2481] = {.lex_state = 140}, [2482] = {.lex_state = 7}, [2483] = {.lex_state = 140}, [2484] = {.lex_state = 7}, - [2485] = {.lex_state = 7}, - [2486] = {.lex_state = 7}, + [2485] = {.lex_state = 140}, + [2486] = {.lex_state = 140}, [2487] = {.lex_state = 140}, [2488] = {.lex_state = 140}, [2489] = {.lex_state = 7}, [2490] = {.lex_state = 7}, [2491] = {.lex_state = 140}, [2492] = {.lex_state = 140}, - [2493] = {.lex_state = 140}, - [2494] = {.lex_state = 140}, + [2493] = {.lex_state = 7}, + [2494] = {.lex_state = 7}, [2495] = {.lex_state = 140}, - [2496] = {.lex_state = 140}, + [2496] = {.lex_state = 7}, [2497] = {.lex_state = 140}, - [2498] = {.lex_state = 7}, + [2498] = {.lex_state = 140}, [2499] = {.lex_state = 7}, [2500] = {.lex_state = 140}, - [2501] = {.lex_state = 7}, + [2501] = {.lex_state = 140}, [2502] = {.lex_state = 7}, [2503] = {.lex_state = 140}, - [2504] = {.lex_state = 140}, - [2505] = {.lex_state = 140}, + [2504] = {.lex_state = 7}, + [2505] = {.lex_state = 7}, [2506] = {.lex_state = 7}, [2507] = {.lex_state = 7}, - [2508] = {.lex_state = 140}, - [2509] = {.lex_state = 7}, - [2510] = {.lex_state = 140}, + [2508] = {.lex_state = 7}, + [2509] = {.lex_state = 140}, + [2510] = {.lex_state = 7}, [2511] = {.lex_state = 7}, - [2512] = {.lex_state = 7}, - [2513] = {.lex_state = 7}, - [2514] = {.lex_state = 140}, - [2515] = {.lex_state = 7}, + [2512] = {.lex_state = 140}, + [2513] = {.lex_state = 140}, + [2514] = {.lex_state = 7}, + [2515] = {.lex_state = 140}, [2516] = {.lex_state = 140}, - [2517] = {.lex_state = 7}, - [2518] = {.lex_state = 141}, - [2519] = {.lex_state = 140}, - [2520] = {.lex_state = 8}, + [2517] = {.lex_state = 8}, + [2518] = {.lex_state = 141, .external_lex_state = 2}, + [2519] = {.lex_state = 141, .external_lex_state = 2}, + [2520] = {.lex_state = 140}, [2521] = {.lex_state = 140}, - [2522] = {.lex_state = 141, .external_lex_state = 2}, - [2523] = {.lex_state = 140}, + [2522] = {.lex_state = 7}, + [2523] = {.lex_state = 7}, [2524] = {.lex_state = 140}, - [2525] = {.lex_state = 8}, + [2525] = {.lex_state = 141, .external_lex_state = 2}, [2526] = {.lex_state = 141, .external_lex_state = 2}, [2527] = {.lex_state = 7}, [2528] = {.lex_state = 140}, - [2529] = {.lex_state = 141, .external_lex_state = 2}, - [2530] = {.lex_state = 8}, - [2531] = {.lex_state = 7}, - [2532] = {.lex_state = 141, .external_lex_state = 2}, + [2529] = {.lex_state = 140}, + [2530] = {.lex_state = 140}, + [2531] = {.lex_state = 140, .external_lex_state = 4}, + [2532] = {.lex_state = 140}, [2533] = {.lex_state = 141, .external_lex_state = 2}, - [2534] = {.lex_state = 141, .external_lex_state = 2}, - [2535] = {.lex_state = 140, .external_lex_state = 4}, - [2536] = {.lex_state = 8}, + [2534] = {.lex_state = 140, .external_lex_state = 4}, + [2535] = {.lex_state = 8}, + [2536] = {.lex_state = 141, .external_lex_state = 2}, [2537] = {.lex_state = 140}, [2538] = {.lex_state = 140}, - [2539] = {.lex_state = 141, .external_lex_state = 2}, - [2540] = {.lex_state = 141, .external_lex_state = 2}, + [2539] = {.lex_state = 140}, + [2540] = {.lex_state = 8}, [2541] = {.lex_state = 140}, - [2542] = {.lex_state = 140}, - [2543] = {.lex_state = 140, .external_lex_state = 4}, - [2544] = {.lex_state = 7}, - [2545] = {.lex_state = 140}, - [2546] = {.lex_state = 141, .external_lex_state = 2}, - [2547] = {.lex_state = 141, .external_lex_state = 2}, - [2548] = {.lex_state = 140}, - [2549] = {.lex_state = 7}, - [2550] = {.lex_state = 140}, + [2542] = {.lex_state = 141, .external_lex_state = 2}, + [2543] = {.lex_state = 140}, + [2544] = {.lex_state = 8}, + [2545] = {.lex_state = 141, .external_lex_state = 2}, + [2546] = {.lex_state = 140, .external_lex_state = 4}, + [2547] = {.lex_state = 140}, + [2548] = {.lex_state = 141, .external_lex_state = 2}, + [2549] = {.lex_state = 140}, + [2550] = {.lex_state = 140, .external_lex_state = 4}, [2551] = {.lex_state = 141, .external_lex_state = 2}, - [2552] = {.lex_state = 141, .external_lex_state = 2}, + [2552] = {.lex_state = 7}, [2553] = {.lex_state = 140}, [2554] = {.lex_state = 140}, - [2555] = {.lex_state = 141}, + [2555] = {.lex_state = 140}, [2556] = {.lex_state = 140}, [2557] = {.lex_state = 7}, - [2558] = {.lex_state = 141, .external_lex_state = 2}, - [2559] = {.lex_state = 140}, + [2558] = {.lex_state = 140}, + [2559] = {.lex_state = 8}, [2560] = {.lex_state = 141, .external_lex_state = 2}, - [2561] = {.lex_state = 140}, - [2562] = {.lex_state = 7}, - [2563] = {.lex_state = 8}, - [2564] = {.lex_state = 140}, + [2561] = {.lex_state = 7}, + [2562] = {.lex_state = 140}, + [2563] = {.lex_state = 140}, + [2564] = {.lex_state = 141}, [2565] = {.lex_state = 141, .external_lex_state = 2}, - [2566] = {.lex_state = 140, .external_lex_state = 4}, - [2567] = {.lex_state = 141, .external_lex_state = 2}, - [2568] = {.lex_state = 140, .external_lex_state = 4}, - [2569] = {.lex_state = 141, .external_lex_state = 2}, + [2566] = {.lex_state = 8}, + [2567] = {.lex_state = 140}, + [2568] = {.lex_state = 7}, + [2569] = {.lex_state = 7}, [2570] = {.lex_state = 140}, - [2571] = {.lex_state = 7}, - [2572] = {.lex_state = 140}, - [2573] = {.lex_state = 140}, - [2574] = {.lex_state = 7}, - [2575] = {.lex_state = 141, .external_lex_state = 2}, - [2576] = {.lex_state = 140}, - [2577] = {.lex_state = 140}, - [2578] = {.lex_state = 140}, - [2579] = {.lex_state = 8}, - [2580] = {.lex_state = 141, .external_lex_state = 2}, - [2581] = {.lex_state = 7}, - [2582] = {.lex_state = 141, .external_lex_state = 2}, - [2583] = {.lex_state = 140}, + [2571] = {.lex_state = 141, .external_lex_state = 2}, + [2572] = {.lex_state = 7}, + [2573] = {.lex_state = 7}, + [2574] = {.lex_state = 141, .external_lex_state = 2}, + [2575] = {.lex_state = 140}, + [2576] = {.lex_state = 141}, + [2577] = {.lex_state = 141}, + [2578] = {.lex_state = 141}, + [2579] = {.lex_state = 141}, + [2580] = {.lex_state = 141}, + [2581] = {.lex_state = 141}, + [2582] = {.lex_state = 141}, + [2583] = {.lex_state = 140, .external_lex_state = 4}, [2584] = {.lex_state = 140}, [2585] = {.lex_state = 141}, - [2586] = {.lex_state = 140}, + [2586] = {.lex_state = 141}, [2587] = {.lex_state = 141}, [2588] = {.lex_state = 141}, - [2589] = {.lex_state = 141}, - [2590] = {.lex_state = 141}, - [2591] = {.lex_state = 140}, - [2592] = {.lex_state = 141}, + [2589] = {.lex_state = 140}, + [2590] = {.lex_state = 140, .external_lex_state = 4}, + [2591] = {.lex_state = 141}, + [2592] = {.lex_state = 140}, [2593] = {.lex_state = 141}, [2594] = {.lex_state = 140}, - [2595] = {.lex_state = 140}, + [2595] = {.lex_state = 141}, [2596] = {.lex_state = 141}, - [2597] = {.lex_state = 140}, - [2598] = {.lex_state = 140}, - [2599] = {.lex_state = 140}, - [2600] = {.lex_state = 140}, + [2597] = {.lex_state = 141}, + [2598] = {.lex_state = 141}, + [2599] = {.lex_state = 141}, + [2600] = {.lex_state = 141}, [2601] = {.lex_state = 141}, - [2602] = {.lex_state = 140}, + [2602] = {.lex_state = 141}, [2603] = {.lex_state = 141}, - [2604] = {.lex_state = 140}, + [2604] = {.lex_state = 141}, [2605] = {.lex_state = 140}, - [2606] = {.lex_state = 141}, - [2607] = {.lex_state = 141}, + [2606] = {.lex_state = 140, .external_lex_state = 4}, + [2607] = {.lex_state = 140}, [2608] = {.lex_state = 141}, - [2609] = {.lex_state = 141}, - [2610] = {.lex_state = 140}, - [2611] = {.lex_state = 140}, - [2612] = {.lex_state = 141}, - [2613] = {.lex_state = 141}, - [2614] = {.lex_state = 141}, - [2615] = {.lex_state = 140}, + [2609] = {.lex_state = 140, .external_lex_state = 4}, + [2610] = {.lex_state = 140, .external_lex_state = 4}, + [2611] = {.lex_state = 140, .external_lex_state = 4}, + [2612] = {.lex_state = 140, .external_lex_state = 4}, + [2613] = {.lex_state = 140, .external_lex_state = 4}, + [2614] = {.lex_state = 140, .external_lex_state = 4}, + [2615] = {.lex_state = 140, .external_lex_state = 4}, [2616] = {.lex_state = 140}, [2617] = {.lex_state = 140}, [2618] = {.lex_state = 140}, - [2619] = {.lex_state = 140}, + [2619] = {.lex_state = 8}, [2620] = {.lex_state = 140}, [2621] = {.lex_state = 140}, [2622] = {.lex_state = 140}, - [2623] = {.lex_state = 140, .external_lex_state = 4}, - [2624] = {.lex_state = 141}, + [2623] = {.lex_state = 140}, + [2624] = {.lex_state = 140}, [2625] = {.lex_state = 140}, - [2626] = {.lex_state = 141}, + [2626] = {.lex_state = 140}, [2627] = {.lex_state = 141}, [2628] = {.lex_state = 140}, [2629] = {.lex_state = 141}, [2630] = {.lex_state = 140}, - [2631] = {.lex_state = 141}, + [2631] = {.lex_state = 140}, [2632] = {.lex_state = 140}, [2633] = {.lex_state = 140}, - [2634] = {.lex_state = 140, .external_lex_state = 4}, + [2634] = {.lex_state = 140}, [2635] = {.lex_state = 140}, [2636] = {.lex_state = 140}, [2637] = {.lex_state = 140}, [2638] = {.lex_state = 140}, - [2639] = {.lex_state = 140, .external_lex_state = 4}, - [2640] = {.lex_state = 8}, - [2641] = {.lex_state = 140, .external_lex_state = 4}, - [2642] = {.lex_state = 140, .external_lex_state = 4}, + [2639] = {.lex_state = 140}, + [2640] = {.lex_state = 140}, + [2641] = {.lex_state = 140}, + [2642] = {.lex_state = 140}, [2643] = {.lex_state = 140}, [2644] = {.lex_state = 140}, [2645] = {.lex_state = 140}, - [2646] = {.lex_state = 140}, - [2647] = {.lex_state = 140}, + [2646] = {.lex_state = 141}, + [2647] = {.lex_state = 8, .external_lex_state = 4}, [2648] = {.lex_state = 140}, [2649] = {.lex_state = 140}, [2650] = {.lex_state = 140}, [2651] = {.lex_state = 140}, - [2652] = {.lex_state = 140}, + [2652] = {.lex_state = 7}, [2653] = {.lex_state = 141}, - [2654] = {.lex_state = 140}, - [2655] = {.lex_state = 140}, + [2654] = {.lex_state = 141}, + [2655] = {.lex_state = 7}, [2656] = {.lex_state = 140}, - [2657] = {.lex_state = 140}, - [2658] = {.lex_state = 140}, - [2659] = {.lex_state = 140}, - [2660] = {.lex_state = 140, .external_lex_state = 4}, - [2661] = {.lex_state = 140, .external_lex_state = 4}, - [2662] = {.lex_state = 140}, + [2657] = {.lex_state = 8, .external_lex_state = 4}, + [2658] = {.lex_state = 141}, + [2659] = {.lex_state = 141}, + [2660] = {.lex_state = 140}, + [2661] = {.lex_state = 140}, + [2662] = {.lex_state = 141}, [2663] = {.lex_state = 140, .external_lex_state = 4}, [2664] = {.lex_state = 140}, - [2665] = {.lex_state = 140, .external_lex_state = 4}, + [2665] = {.lex_state = 140}, [2666] = {.lex_state = 140, .external_lex_state = 4}, [2667] = {.lex_state = 140}, [2668] = {.lex_state = 140}, [2669] = {.lex_state = 140}, - [2670] = {.lex_state = 140}, + [2670] = {.lex_state = 141}, [2671] = {.lex_state = 140}, [2672] = {.lex_state = 140}, - [2673] = {.lex_state = 140}, - [2674] = {.lex_state = 140}, + [2673] = {.lex_state = 8, .external_lex_state = 4}, + [2674] = {.lex_state = 141}, [2675] = {.lex_state = 140}, [2676] = {.lex_state = 140}, [2677] = {.lex_state = 140}, - [2678] = {.lex_state = 140}, + [2678] = {.lex_state = 8, .external_lex_state = 4}, [2679] = {.lex_state = 140}, [2680] = {.lex_state = 140}, [2681] = {.lex_state = 140}, [2682] = {.lex_state = 140}, - [2683] = {.lex_state = 140}, + [2683] = {.lex_state = 140, .external_lex_state = 4}, [2684] = {.lex_state = 140}, [2685] = {.lex_state = 140}, - [2686] = {.lex_state = 140}, - [2687] = {.lex_state = 140}, - [2688] = {.lex_state = 140}, - [2689] = {.lex_state = 140}, + [2686] = {.lex_state = 141}, + [2687] = {.lex_state = 141}, + [2688] = {.lex_state = 7}, + [2689] = {.lex_state = 141}, [2690] = {.lex_state = 140}, - [2691] = {.lex_state = 140}, - [2692] = {.lex_state = 140}, - [2693] = {.lex_state = 140}, - [2694] = {.lex_state = 140}, - [2695] = {.lex_state = 140}, - [2696] = {.lex_state = 140}, + [2691] = {.lex_state = 141}, + [2692] = {.lex_state = 141}, + [2693] = {.lex_state = 140, .external_lex_state = 4}, + [2694] = {.lex_state = 140, .external_lex_state = 4}, + [2695] = {.lex_state = 140, .external_lex_state = 4}, + [2696] = {.lex_state = 140, .external_lex_state = 4}, [2697] = {.lex_state = 140}, - [2698] = {.lex_state = 141}, - [2699] = {.lex_state = 140}, - [2700] = {.lex_state = 8, .external_lex_state = 4}, - [2701] = {.lex_state = 140}, - [2702] = {.lex_state = 140}, - [2703] = {.lex_state = 140}, - [2704] = {.lex_state = 140}, - [2705] = {.lex_state = 140}, - [2706] = {.lex_state = 140}, - [2707] = {.lex_state = 140}, - [2708] = {.lex_state = 140}, - [2709] = {.lex_state = 140}, - [2710] = {.lex_state = 140}, - [2711] = {.lex_state = 140}, - [2712] = {.lex_state = 140}, - [2713] = {.lex_state = 140}, - [2714] = {.lex_state = 140}, - [2715] = {.lex_state = 140}, - [2716] = {.lex_state = 140}, - [2717] = {.lex_state = 140}, - [2718] = {.lex_state = 140}, - [2719] = {.lex_state = 140}, + [2698] = {.lex_state = 140, .external_lex_state = 4}, + [2699] = {.lex_state = 141}, + [2700] = {.lex_state = 140, .external_lex_state = 4}, + [2701] = {.lex_state = 141}, + [2702] = {.lex_state = 140, .external_lex_state = 4}, + [2703] = {.lex_state = 140, .external_lex_state = 4}, + [2704] = {.lex_state = 140, .external_lex_state = 4}, + [2705] = {.lex_state = 141}, + [2706] = {.lex_state = 141}, + [2707] = {.lex_state = 141}, + [2708] = {.lex_state = 140, .external_lex_state = 4}, + [2709] = {.lex_state = 141}, + [2710] = {.lex_state = 140, .external_lex_state = 4}, + [2711] = {.lex_state = 141}, + [2712] = {.lex_state = 140, .external_lex_state = 4}, + [2713] = {.lex_state = 140, .external_lex_state = 4}, + [2714] = {.lex_state = 140, .external_lex_state = 4}, + [2715] = {.lex_state = 141}, + [2716] = {.lex_state = 141}, + [2717] = {.lex_state = 141}, + [2718] = {.lex_state = 141}, + [2719] = {.lex_state = 141}, [2720] = {.lex_state = 141}, [2721] = {.lex_state = 141}, - [2722] = {.lex_state = 140}, - [2723] = {.lex_state = 140}, - [2724] = {.lex_state = 140}, - [2725] = {.lex_state = 140}, - [2726] = {.lex_state = 140}, - [2727] = {.lex_state = 140, .external_lex_state = 4}, - [2728] = {.lex_state = 6}, - [2729] = {.lex_state = 6}, - [2730] = {.lex_state = 6}, - [2731] = {.lex_state = 141}, - [2732] = {.lex_state = 140, .external_lex_state = 4}, - [2733] = {.lex_state = 6}, - [2734] = {.lex_state = 6}, - [2735] = {.lex_state = 6}, - [2736] = {.lex_state = 6}, - [2737] = {.lex_state = 7}, - [2738] = {.lex_state = 140}, - [2739] = {.lex_state = 140}, - [2740] = {.lex_state = 7}, - [2741] = {.lex_state = 6}, - [2742] = {.lex_state = 140}, - [2743] = {.lex_state = 6}, - [2744] = {.lex_state = 6}, - [2745] = {.lex_state = 6}, - [2746] = {.lex_state = 6}, - [2747] = {.lex_state = 140}, - [2748] = {.lex_state = 6}, - [2749] = {.lex_state = 6}, - [2750] = {.lex_state = 6}, - [2751] = {.lex_state = 6}, + [2722] = {.lex_state = 141}, + [2723] = {.lex_state = 141}, + [2724] = {.lex_state = 141}, + [2725] = {.lex_state = 141}, + [2726] = {.lex_state = 141}, + [2727] = {.lex_state = 140}, + [2728] = {.lex_state = 141}, + [2729] = {.lex_state = 141}, + [2730] = {.lex_state = 141}, + [2731] = {.lex_state = 140}, + [2732] = {.lex_state = 141}, + [2733] = {.lex_state = 140}, + [2734] = {.lex_state = 140, .external_lex_state = 4}, + [2735] = {.lex_state = 140, .external_lex_state = 4}, + [2736] = {.lex_state = 140, .external_lex_state = 4}, + [2737] = {.lex_state = 141}, + [2738] = {.lex_state = 140, .external_lex_state = 4}, + [2739] = {.lex_state = 141}, + [2740] = {.lex_state = 140, .external_lex_state = 4}, + [2741] = {.lex_state = 141}, + [2742] = {.lex_state = 141}, + [2743] = {.lex_state = 141}, + [2744] = {.lex_state = 141}, + [2745] = {.lex_state = 141}, + [2746] = {.lex_state = 7}, + [2747] = {.lex_state = 141}, + [2748] = {.lex_state = 140, .external_lex_state = 4}, + [2749] = {.lex_state = 7}, + [2750] = {.lex_state = 141}, + [2751] = {.lex_state = 140, .external_lex_state = 4}, [2752] = {.lex_state = 140}, - [2753] = {.lex_state = 140}, - [2754] = {.lex_state = 6}, + [2753] = {.lex_state = 141}, + [2754] = {.lex_state = 141}, [2755] = {.lex_state = 141}, - [2756] = {.lex_state = 7}, - [2757] = {.lex_state = 140}, - [2758] = {.lex_state = 140}, - [2759] = {.lex_state = 140}, - [2760] = {.lex_state = 140}, - [2761] = {.lex_state = 140}, - [2762] = {.lex_state = 140}, - [2763] = {.lex_state = 140}, - [2764] = {.lex_state = 140}, - [2765] = {.lex_state = 140}, - [2766] = {.lex_state = 140}, - [2767] = {.lex_state = 8, .external_lex_state = 4}, - [2768] = {.lex_state = 140}, - [2769] = {.lex_state = 6}, - [2770] = {.lex_state = 140}, - [2771] = {.lex_state = 140}, + [2756] = {.lex_state = 141}, + [2757] = {.lex_state = 141}, + [2758] = {.lex_state = 141}, + [2759] = {.lex_state = 141}, + [2760] = {.lex_state = 7}, + [2761] = {.lex_state = 141}, + [2762] = {.lex_state = 141}, + [2763] = {.lex_state = 141}, + [2764] = {.lex_state = 141}, + [2765] = {.lex_state = 141}, + [2766] = {.lex_state = 141}, + [2767] = {.lex_state = 141}, + [2768] = {.lex_state = 141}, + [2769] = {.lex_state = 141}, + [2770] = {.lex_state = 140, .external_lex_state = 4}, + [2771] = {.lex_state = 140, .external_lex_state = 4}, [2772] = {.lex_state = 140}, - [2773] = {.lex_state = 6}, + [2773] = {.lex_state = 141}, [2774] = {.lex_state = 141}, - [2775] = {.lex_state = 141}, + [2775] = {.lex_state = 140}, [2776] = {.lex_state = 140}, - [2777] = {.lex_state = 140}, - [2778] = {.lex_state = 140}, + [2777] = {.lex_state = 141}, + [2778] = {.lex_state = 141}, [2779] = {.lex_state = 140}, - [2780] = {.lex_state = 140}, - [2781] = {.lex_state = 8, .external_lex_state = 4}, - [2782] = {.lex_state = 8, .external_lex_state = 4}, - [2783] = {.lex_state = 6}, - [2784] = {.lex_state = 6}, - [2785] = {.lex_state = 6}, - [2786] = {.lex_state = 141}, - [2787] = {.lex_state = 140}, + [2780] = {.lex_state = 141}, + [2781] = {.lex_state = 7}, + [2782] = {.lex_state = 140}, + [2783] = {.lex_state = 141}, + [2784] = {.lex_state = 140, .external_lex_state = 4}, + [2785] = {.lex_state = 141}, + [2786] = {.lex_state = 140, .external_lex_state = 4}, + [2787] = {.lex_state = 140, .external_lex_state = 4}, [2788] = {.lex_state = 141}, - [2789] = {.lex_state = 140}, + [2789] = {.lex_state = 141}, [2790] = {.lex_state = 140}, [2791] = {.lex_state = 141}, - [2792] = {.lex_state = 141}, - [2793] = {.lex_state = 141}, - [2794] = {.lex_state = 140}, - [2795] = {.lex_state = 6}, + [2792] = {.lex_state = 140}, + [2793] = {.lex_state = 140, .external_lex_state = 4}, + [2794] = {.lex_state = 141}, + [2795] = {.lex_state = 141}, [2796] = {.lex_state = 140, .external_lex_state = 4}, - [2797] = {.lex_state = 140}, - [2798] = {.lex_state = 141}, - [2799] = {.lex_state = 140}, - [2800] = {.lex_state = 140}, - [2801] = {.lex_state = 140}, - [2802] = {.lex_state = 140}, - [2803] = {.lex_state = 140}, - [2804] = {.lex_state = 140}, - [2805] = {.lex_state = 140}, - [2806] = {.lex_state = 140}, - [2807] = {.lex_state = 140}, - [2808] = {.lex_state = 140}, - [2809] = {.lex_state = 6}, - [2810] = {.lex_state = 140}, + [2797] = {.lex_state = 140, .external_lex_state = 4}, + [2798] = {.lex_state = 140}, + [2799] = {.lex_state = 7}, + [2800] = {.lex_state = 7}, + [2801] = {.lex_state = 141}, + [2802] = {.lex_state = 140, .external_lex_state = 4}, + [2803] = {.lex_state = 141}, + [2804] = {.lex_state = 141}, + [2805] = {.lex_state = 141}, + [2806] = {.lex_state = 141}, + [2807] = {.lex_state = 7}, + [2808] = {.lex_state = 141}, + [2809] = {.lex_state = 140, .external_lex_state = 4}, + [2810] = {.lex_state = 141}, [2811] = {.lex_state = 141}, - [2812] = {.lex_state = 141}, + [2812] = {.lex_state = 140, .external_lex_state = 4}, [2813] = {.lex_state = 141}, [2814] = {.lex_state = 141}, [2815] = {.lex_state = 141}, - [2816] = {.lex_state = 141}, - [2817] = {.lex_state = 140, .external_lex_state = 4}, + [2816] = {.lex_state = 7}, + [2817] = {.lex_state = 141}, [2818] = {.lex_state = 141}, [2819] = {.lex_state = 141}, - [2820] = {.lex_state = 7}, - [2821] = {.lex_state = 140, .external_lex_state = 4}, - [2822] = {.lex_state = 140, .external_lex_state = 4}, - [2823] = {.lex_state = 140, .external_lex_state = 4}, - [2824] = {.lex_state = 140, .external_lex_state = 4}, + [2820] = {.lex_state = 141}, + [2821] = {.lex_state = 141}, + [2822] = {.lex_state = 141}, + [2823] = {.lex_state = 141}, + [2824] = {.lex_state = 141}, [2825] = {.lex_state = 141}, - [2826] = {.lex_state = 140}, - [2827] = {.lex_state = 141}, - [2828] = {.lex_state = 140, .external_lex_state = 4}, - [2829] = {.lex_state = 140, .external_lex_state = 4}, - [2830] = {.lex_state = 140, .external_lex_state = 4}, - [2831] = {.lex_state = 141}, + [2826] = {.lex_state = 141}, + [2827] = {.lex_state = 7}, + [2828] = {.lex_state = 141}, + [2829] = {.lex_state = 141}, + [2830] = {.lex_state = 140}, + [2831] = {.lex_state = 7}, [2832] = {.lex_state = 141}, - [2833] = {.lex_state = 140}, - [2834] = {.lex_state = 140}, - [2835] = {.lex_state = 140}, + [2833] = {.lex_state = 141}, + [2834] = {.lex_state = 141}, + [2835] = {.lex_state = 141}, [2836] = {.lex_state = 140}, - [2837] = {.lex_state = 140}, - [2838] = {.lex_state = 140}, - [2839] = {.lex_state = 140, .external_lex_state = 4}, - [2840] = {.lex_state = 140}, - [2841] = {.lex_state = 140}, - [2842] = {.lex_state = 141}, + [2837] = {.lex_state = 141}, + [2838] = {.lex_state = 141}, + [2839] = {.lex_state = 140}, + [2840] = {.lex_state = 141}, + [2841] = {.lex_state = 7}, + [2842] = {.lex_state = 140}, [2843] = {.lex_state = 141}, - [2844] = {.lex_state = 140}, - [2845] = {.lex_state = 140}, - [2846] = {.lex_state = 140}, - [2847] = {.lex_state = 140, .external_lex_state = 4}, + [2844] = {.lex_state = 141}, + [2845] = {.lex_state = 141}, + [2846] = {.lex_state = 141}, + [2847] = {.lex_state = 7}, [2848] = {.lex_state = 140}, - [2849] = {.lex_state = 140, .external_lex_state = 4}, - [2850] = {.lex_state = 140, .external_lex_state = 4}, - [2851] = {.lex_state = 141}, + [2849] = {.lex_state = 7}, + [2850] = {.lex_state = 141}, + [2851] = {.lex_state = 7}, [2852] = {.lex_state = 140}, - [2853] = {.lex_state = 7}, - [2854] = {.lex_state = 7}, - [2855] = {.lex_state = 7}, - [2856] = {.lex_state = 140}, - [2857] = {.lex_state = 140}, - [2858] = {.lex_state = 7}, - [2859] = {.lex_state = 141}, + [2853] = {.lex_state = 141}, + [2854] = {.lex_state = 140}, + [2855] = {.lex_state = 140}, + [2856] = {.lex_state = 140, .external_lex_state = 4}, + [2857] = {.lex_state = 140, .external_lex_state = 4}, + [2858] = {.lex_state = 140, .external_lex_state = 4}, + [2859] = {.lex_state = 7}, [2860] = {.lex_state = 140}, [2861] = {.lex_state = 140}, - [2862] = {.lex_state = 141}, + [2862] = {.lex_state = 7}, [2863] = {.lex_state = 141}, - [2864] = {.lex_state = 6}, - [2865] = {.lex_state = 6}, - [2866] = {.lex_state = 6}, - [2867] = {.lex_state = 6}, - [2868] = {.lex_state = 140}, - [2869] = {.lex_state = 7}, - [2870] = {.lex_state = 6}, - [2871] = {.lex_state = 7}, - [2872] = {.lex_state = 6}, - [2873] = {.lex_state = 6}, - [2874] = {.lex_state = 140}, - [2875] = {.lex_state = 6}, - [2876] = {.lex_state = 7}, + [2864] = {.lex_state = 140}, + [2865] = {.lex_state = 7}, + [2866] = {.lex_state = 140}, + [2867] = {.lex_state = 141}, + [2868] = {.lex_state = 141}, + [2869] = {.lex_state = 141}, + [2870] = {.lex_state = 141}, + [2871] = {.lex_state = 141}, + [2872] = {.lex_state = 141}, + [2873] = {.lex_state = 141}, + [2874] = {.lex_state = 141}, + [2875] = {.lex_state = 141}, + [2876] = {.lex_state = 141}, [2877] = {.lex_state = 141}, - [2878] = {.lex_state = 6}, - [2879] = {.lex_state = 140, .external_lex_state = 4}, - [2880] = {.lex_state = 140, .external_lex_state = 4}, - [2881] = {.lex_state = 140, .external_lex_state = 4}, - [2882] = {.lex_state = 140, .external_lex_state = 4}, - [2883] = {.lex_state = 141}, + [2878] = {.lex_state = 7}, + [2879] = {.lex_state = 141}, + [2880] = {.lex_state = 141}, + [2881] = {.lex_state = 7}, + [2882] = {.lex_state = 141}, + [2883] = {.lex_state = 7}, [2884] = {.lex_state = 141}, - [2885] = {.lex_state = 6}, + [2885] = {.lex_state = 7}, [2886] = {.lex_state = 141}, - [2887] = {.lex_state = 7}, - [2888] = {.lex_state = 7}, + [2887] = {.lex_state = 141}, + [2888] = {.lex_state = 140}, [2889] = {.lex_state = 141}, [2890] = {.lex_state = 141}, - [2891] = {.lex_state = 140}, + [2891] = {.lex_state = 141}, [2892] = {.lex_state = 141}, - [2893] = {.lex_state = 7}, + [2893] = {.lex_state = 141}, [2894] = {.lex_state = 140}, - [2895] = {.lex_state = 140}, - [2896] = {.lex_state = 140}, - [2897] = {.lex_state = 140}, - [2898] = {.lex_state = 140, .external_lex_state = 4}, + [2895] = {.lex_state = 141}, + [2896] = {.lex_state = 141}, + [2897] = {.lex_state = 141}, + [2898] = {.lex_state = 141}, [2899] = {.lex_state = 141}, [2900] = {.lex_state = 140}, [2901] = {.lex_state = 140}, - [2902] = {.lex_state = 140}, - [2903] = {.lex_state = 140}, - [2904] = {.lex_state = 7}, - [2905] = {.lex_state = 7}, - [2906] = {.lex_state = 140}, + [2902] = {.lex_state = 141}, + [2903] = {.lex_state = 141}, + [2904] = {.lex_state = 141}, + [2905] = {.lex_state = 141}, + [2906] = {.lex_state = 7}, [2907] = {.lex_state = 141}, [2908] = {.lex_state = 141}, [2909] = {.lex_state = 141}, [2910] = {.lex_state = 141}, - [2911] = {.lex_state = 140}, - [2912] = {.lex_state = 141}, - [2913] = {.lex_state = 7}, - [2914] = {.lex_state = 141}, + [2911] = {.lex_state = 140, .external_lex_state = 4}, + [2912] = {.lex_state = 140}, + [2913] = {.lex_state = 140}, + [2914] = {.lex_state = 140, .external_lex_state = 4}, [2915] = {.lex_state = 7}, - [2916] = {.lex_state = 141}, - [2917] = {.lex_state = 141}, - [2918] = {.lex_state = 141}, - [2919] = {.lex_state = 141}, - [2920] = {.lex_state = 141}, + [2916] = {.lex_state = 7}, + [2917] = {.lex_state = 7}, + [2918] = {.lex_state = 140, .external_lex_state = 4}, + [2919] = {.lex_state = 7}, + [2920] = {.lex_state = 7}, [2921] = {.lex_state = 141}, [2922] = {.lex_state = 141}, - [2923] = {.lex_state = 141}, - [2924] = {.lex_state = 141}, - [2925] = {.lex_state = 141}, - [2926] = {.lex_state = 140, .external_lex_state = 4}, - [2927] = {.lex_state = 7}, - [2928] = {.lex_state = 141}, - [2929] = {.lex_state = 141}, - [2930] = {.lex_state = 141}, - [2931] = {.lex_state = 141}, - [2932] = {.lex_state = 141}, - [2933] = {.lex_state = 141}, - [2934] = {.lex_state = 141}, + [2923] = {.lex_state = 7}, + [2924] = {.lex_state = 7}, + [2925] = {.lex_state = 7}, + [2926] = {.lex_state = 7}, + [2927] = {.lex_state = 141}, + [2928] = {.lex_state = 140, .external_lex_state = 4}, + [2929] = {.lex_state = 7}, + [2930] = {.lex_state = 7}, + [2931] = {.lex_state = 140, .external_lex_state = 4}, + [2932] = {.lex_state = 7}, + [2933] = {.lex_state = 7}, + [2934] = {.lex_state = 7}, [2935] = {.lex_state = 140, .external_lex_state = 4}, - [2936] = {.lex_state = 141}, + [2936] = {.lex_state = 7}, [2937] = {.lex_state = 141}, [2938] = {.lex_state = 7}, - [2939] = {.lex_state = 141}, - [2940] = {.lex_state = 141}, - [2941] = {.lex_state = 141}, - [2942] = {.lex_state = 141}, - [2943] = {.lex_state = 141}, - [2944] = {.lex_state = 141}, - [2945] = {.lex_state = 141}, - [2946] = {.lex_state = 141}, - [2947] = {.lex_state = 141}, - [2948] = {.lex_state = 141}, - [2949] = {.lex_state = 141}, - [2950] = {.lex_state = 141}, - [2951] = {.lex_state = 141}, - [2952] = {.lex_state = 7}, - [2953] = {.lex_state = 141}, + [2939] = {.lex_state = 140, .external_lex_state = 4}, + [2940] = {.lex_state = 7}, + [2941] = {.lex_state = 7}, + [2942] = {.lex_state = 7}, + [2943] = {.lex_state = 140, .external_lex_state = 4}, + [2944] = {.lex_state = 140}, + [2945] = {.lex_state = 140}, + [2946] = {.lex_state = 140}, + [2947] = {.lex_state = 140}, + [2948] = {.lex_state = 140}, + [2949] = {.lex_state = 140}, + [2950] = {.lex_state = 140}, + [2951] = {.lex_state = 140}, + [2952] = {.lex_state = 140}, + [2953] = {.lex_state = 140}, [2954] = {.lex_state = 140}, [2955] = {.lex_state = 141}, - [2956] = {.lex_state = 140, .external_lex_state = 4}, - [2957] = {.lex_state = 141}, - [2958] = {.lex_state = 141}, - [2959] = {.lex_state = 7}, - [2960] = {.lex_state = 7}, - [2961] = {.lex_state = 141}, - [2962] = {.lex_state = 141}, - [2963] = {.lex_state = 141}, - [2964] = {.lex_state = 6}, - [2965] = {.lex_state = 141}, - [2966] = {.lex_state = 6}, - [2967] = {.lex_state = 140, .external_lex_state = 4}, - [2968] = {.lex_state = 141}, - [2969] = {.lex_state = 6}, - [2970] = {.lex_state = 141}, - [2971] = {.lex_state = 141}, - [2972] = {.lex_state = 141}, - [2973] = {.lex_state = 141}, - [2974] = {.lex_state = 141}, - [2975] = {.lex_state = 141}, - [2976] = {.lex_state = 141}, - [2977] = {.lex_state = 141}, - [2978] = {.lex_state = 141}, - [2979] = {.lex_state = 141}, - [2980] = {.lex_state = 141}, - [2981] = {.lex_state = 141}, - [2982] = {.lex_state = 141}, - [2983] = {.lex_state = 140, .external_lex_state = 4}, - [2984] = {.lex_state = 141}, + [2956] = {.lex_state = 140}, + [2957] = {.lex_state = 140}, + [2958] = {.lex_state = 140}, + [2959] = {.lex_state = 140}, + [2960] = {.lex_state = 140}, + [2961] = {.lex_state = 140}, + [2962] = {.lex_state = 140}, + [2963] = {.lex_state = 140}, + [2964] = {.lex_state = 140}, + [2965] = {.lex_state = 140}, + [2966] = {.lex_state = 140}, + [2967] = {.lex_state = 140}, + [2968] = {.lex_state = 140}, + [2969] = {.lex_state = 141}, + [2970] = {.lex_state = 140}, + [2971] = {.lex_state = 140}, + [2972] = {.lex_state = 140}, + [2973] = {.lex_state = 140}, + [2974] = {.lex_state = 140}, + [2975] = {.lex_state = 140}, + [2976] = {.lex_state = 140}, + [2977] = {.lex_state = 140}, + [2978] = {.lex_state = 140}, + [2979] = {.lex_state = 5}, + [2980] = {.lex_state = 140}, + [2981] = {.lex_state = 140}, + [2982] = {.lex_state = 140}, + [2983] = {.lex_state = 140}, + [2984] = {.lex_state = 140}, [2985] = {.lex_state = 141}, - [2986] = {.lex_state = 141}, + [2986] = {.lex_state = 140}, [2987] = {.lex_state = 141}, - [2988] = {.lex_state = 141}, - [2989] = {.lex_state = 141}, - [2990] = {.lex_state = 141}, - [2991] = {.lex_state = 141}, - [2992] = {.lex_state = 141}, - [2993] = {.lex_state = 141}, - [2994] = {.lex_state = 140, .external_lex_state = 4}, - [2995] = {.lex_state = 6}, - [2996] = {.lex_state = 6}, - [2997] = {.lex_state = 141}, - [2998] = {.lex_state = 6}, - [2999] = {.lex_state = 141}, - [3000] = {.lex_state = 6}, - [3001] = {.lex_state = 6}, - [3002] = {.lex_state = 6}, - [3003] = {.lex_state = 6}, - [3004] = {.lex_state = 140, .external_lex_state = 4}, - [3005] = {.lex_state = 140, .external_lex_state = 4}, - [3006] = {.lex_state = 6}, - [3007] = {.lex_state = 6}, + [2988] = {.lex_state = 140}, + [2989] = {.lex_state = 140}, + [2990] = {.lex_state = 140}, + [2991] = {.lex_state = 140}, + [2992] = {.lex_state = 140}, + [2993] = {.lex_state = 140}, + [2994] = {.lex_state = 140}, + [2995] = {.lex_state = 140}, + [2996] = {.lex_state = 140}, + [2997] = {.lex_state = 140}, + [2998] = {.lex_state = 140}, + [2999] = {.lex_state = 140}, + [3000] = {.lex_state = 140}, + [3001] = {.lex_state = 141}, + [3002] = {.lex_state = 5}, + [3003] = {.lex_state = 140}, + [3004] = {.lex_state = 140}, + [3005] = {.lex_state = 140}, + [3006] = {.lex_state = 141}, + [3007] = {.lex_state = 140}, [3008] = {.lex_state = 141}, - [3009] = {.lex_state = 140, .external_lex_state = 4}, - [3010] = {.lex_state = 140, .external_lex_state = 4}, - [3011] = {.lex_state = 140, .external_lex_state = 4}, - [3012] = {.lex_state = 141}, + [3009] = {.lex_state = 141}, + [3010] = {.lex_state = 141}, + [3011] = {.lex_state = 141}, + [3012] = {.lex_state = 140}, [3013] = {.lex_state = 141}, - [3014] = {.lex_state = 6}, - [3015] = {.lex_state = 6}, - [3016] = {.lex_state = 141}, - [3017] = {.lex_state = 141}, - [3018] = {.lex_state = 141}, - [3019] = {.lex_state = 141}, - [3020] = {.lex_state = 141}, + [3014] = {.lex_state = 141}, + [3015] = {.lex_state = 141}, + [3016] = {.lex_state = 5}, + [3017] = {.lex_state = 140}, + [3018] = {.lex_state = 5}, + [3019] = {.lex_state = 5}, + [3020] = {.lex_state = 140}, [3021] = {.lex_state = 141}, - [3022] = {.lex_state = 141}, + [3022] = {.lex_state = 140}, [3023] = {.lex_state = 141}, - [3024] = {.lex_state = 140, .external_lex_state = 4}, - [3025] = {.lex_state = 141}, - [3026] = {.lex_state = 141}, - [3027] = {.lex_state = 140, .external_lex_state = 4}, - [3028] = {.lex_state = 141}, - [3029] = {.lex_state = 141}, - [3030] = {.lex_state = 141}, - [3031] = {.lex_state = 141}, - [3032] = {.lex_state = 141}, - [3033] = {.lex_state = 141}, - [3034] = {.lex_state = 141}, - [3035] = {.lex_state = 141}, + [3024] = {.lex_state = 140}, + [3025] = {.lex_state = 140}, + [3026] = {.lex_state = 140}, + [3027] = {.lex_state = 140}, + [3028] = {.lex_state = 140}, + [3029] = {.lex_state = 140}, + [3030] = {.lex_state = 139}, + [3031] = {.lex_state = 140}, + [3032] = {.lex_state = 140}, + [3033] = {.lex_state = 140}, + [3034] = {.lex_state = 140}, + [3035] = {.lex_state = 140}, [3036] = {.lex_state = 141}, - [3037] = {.lex_state = 141}, - [3038] = {.lex_state = 140, .external_lex_state = 4}, - [3039] = {.lex_state = 141}, - [3040] = {.lex_state = 141}, - [3041] = {.lex_state = 140, .external_lex_state = 4}, - [3042] = {.lex_state = 141}, - [3043] = {.lex_state = 7}, - [3044] = {.lex_state = 141}, - [3045] = {.lex_state = 141}, - [3046] = {.lex_state = 141}, - [3047] = {.lex_state = 140, .external_lex_state = 4}, - [3048] = {.lex_state = 7}, - [3049] = {.lex_state = 141}, - [3050] = {.lex_state = 140, .external_lex_state = 4}, - [3051] = {.lex_state = 140, .external_lex_state = 4}, - [3052] = {.lex_state = 140, .external_lex_state = 4}, - [3053] = {.lex_state = 7}, - [3054] = {.lex_state = 141}, - [3055] = {.lex_state = 140, .external_lex_state = 4}, - [3056] = {.lex_state = 141}, - [3057] = {.lex_state = 141}, - [3058] = {.lex_state = 141}, - [3059] = {.lex_state = 141}, - [3060] = {.lex_state = 141}, - [3061] = {.lex_state = 6}, - [3062] = {.lex_state = 140, .external_lex_state = 4}, - [3063] = {.lex_state = 7}, - [3064] = {.lex_state = 6}, - [3065] = {.lex_state = 6}, - [3066] = {.lex_state = 7}, - [3067] = {.lex_state = 6}, + [3037] = {.lex_state = 140}, + [3038] = {.lex_state = 140}, + [3039] = {.lex_state = 140}, + [3040] = {.lex_state = 140}, + [3041] = {.lex_state = 140}, + [3042] = {.lex_state = 140}, + [3043] = {.lex_state = 140}, + [3044] = {.lex_state = 139}, + [3045] = {.lex_state = 139}, + [3046] = {.lex_state = 139}, + [3047] = {.lex_state = 6}, + [3048] = {.lex_state = 139}, + [3049] = {.lex_state = 139}, + [3050] = {.lex_state = 140}, + [3051] = {.lex_state = 6}, + [3052] = {.lex_state = 140}, + [3053] = {.lex_state = 140}, + [3054] = {.lex_state = 140}, + [3055] = {.lex_state = 140}, + [3056] = {.lex_state = 139}, + [3057] = {.lex_state = 140}, + [3058] = {.lex_state = 140}, + [3059] = {.lex_state = 140}, + [3060] = {.lex_state = 140}, + [3061] = {.lex_state = 140}, + [3062] = {.lex_state = 140}, + [3063] = {.lex_state = 139}, + [3064] = {.lex_state = 141}, + [3065] = {.lex_state = 139}, + [3066] = {.lex_state = 6}, + [3067] = {.lex_state = 141}, [3068] = {.lex_state = 6}, - [3069] = {.lex_state = 6}, - [3070] = {.lex_state = 6}, - [3071] = {.lex_state = 7}, - [3072] = {.lex_state = 6}, - [3073] = {.lex_state = 6}, - [3074] = {.lex_state = 7}, - [3075] = {.lex_state = 6}, - [3076] = {.lex_state = 7}, - [3077] = {.lex_state = 140, .external_lex_state = 4}, - [3078] = {.lex_state = 7}, + [3069] = {.lex_state = 9}, + [3070] = {.lex_state = 140}, + [3071] = {.lex_state = 9}, + [3072] = {.lex_state = 140}, + [3073] = {.lex_state = 140}, + [3074] = {.lex_state = 140}, + [3075] = {.lex_state = 140}, + [3076] = {.lex_state = 140}, + [3077] = {.lex_state = 140}, + [3078] = {.lex_state = 6}, [3079] = {.lex_state = 6}, - [3080] = {.lex_state = 6}, - [3081] = {.lex_state = 7}, - [3082] = {.lex_state = 6}, - [3083] = {.lex_state = 140, .external_lex_state = 4}, + [3080] = {.lex_state = 140}, + [3081] = {.lex_state = 140}, + [3082] = {.lex_state = 9}, + [3083] = {.lex_state = 140}, [3084] = {.lex_state = 6}, - [3085] = {.lex_state = 6}, - [3086] = {.lex_state = 6}, - [3087] = {.lex_state = 6}, + [3085] = {.lex_state = 140}, + [3086] = {.lex_state = 139}, + [3087] = {.lex_state = 140}, [3088] = {.lex_state = 6}, - [3089] = {.lex_state = 6}, - [3090] = {.lex_state = 6}, - [3091] = {.lex_state = 6}, - [3092] = {.lex_state = 6}, + [3089] = {.lex_state = 140}, + [3090] = {.lex_state = 140}, + [3091] = {.lex_state = 140}, + [3092] = {.lex_state = 140}, [3093] = {.lex_state = 6}, - [3094] = {.lex_state = 140, .external_lex_state = 4}, - [3095] = {.lex_state = 7}, + [3094] = {.lex_state = 140}, + [3095] = {.lex_state = 6}, [3096] = {.lex_state = 6}, - [3097] = {.lex_state = 141}, + [3097] = {.lex_state = 6}, [3098] = {.lex_state = 6}, - [3099] = {.lex_state = 7}, - [3100] = {.lex_state = 7}, - [3101] = {.lex_state = 7}, - [3102] = {.lex_state = 6}, - [3103] = {.lex_state = 6}, + [3099] = {.lex_state = 140}, + [3100] = {.lex_state = 140}, + [3101] = {.lex_state = 6}, + [3102] = {.lex_state = 140}, + [3103] = {.lex_state = 140}, [3104] = {.lex_state = 6}, [3105] = {.lex_state = 6}, - [3106] = {.lex_state = 141}, + [3106] = {.lex_state = 6}, [3107] = {.lex_state = 6}, [3108] = {.lex_state = 6}, - [3109] = {.lex_state = 7}, - [3110] = {.lex_state = 140, .external_lex_state = 4}, + [3109] = {.lex_state = 6}, + [3110] = {.lex_state = 6}, [3111] = {.lex_state = 6}, - [3112] = {.lex_state = 7}, + [3112] = {.lex_state = 6}, [3113] = {.lex_state = 6}, - [3114] = {.lex_state = 6}, - [3115] = {.lex_state = 140, .external_lex_state = 4}, + [3114] = {.lex_state = 141}, + [3115] = {.lex_state = 6}, [3116] = {.lex_state = 6}, - [3117] = {.lex_state = 6}, + [3117] = {.lex_state = 140}, [3118] = {.lex_state = 6}, [3119] = {.lex_state = 6}, [3120] = {.lex_state = 6}, [3121] = {.lex_state = 6}, [3122] = {.lex_state = 6}, - [3123] = {.lex_state = 7}, - [3124] = {.lex_state = 141}, + [3123] = {.lex_state = 139}, + [3124] = {.lex_state = 6}, [3125] = {.lex_state = 6}, - [3126] = {.lex_state = 7}, + [3126] = {.lex_state = 6}, [3127] = {.lex_state = 6}, [3128] = {.lex_state = 6}, - [3129] = {.lex_state = 7}, - [3130] = {.lex_state = 7}, + [3129] = {.lex_state = 6}, + [3130] = {.lex_state = 6}, [3131] = {.lex_state = 6}, - [3132] = {.lex_state = 141}, - [3133] = {.lex_state = 7}, - [3134] = {.lex_state = 140}, + [3132] = {.lex_state = 6}, + [3133] = {.lex_state = 6}, + [3134] = {.lex_state = 6}, [3135] = {.lex_state = 6}, [3136] = {.lex_state = 6}, - [3137] = {.lex_state = 141}, + [3137] = {.lex_state = 6}, [3138] = {.lex_state = 6}, - [3139] = {.lex_state = 6}, - [3140] = {.lex_state = 140}, - [3141] = {.lex_state = 141}, - [3142] = {.lex_state = 140}, + [3139] = {.lex_state = 9}, + [3140] = {.lex_state = 6}, + [3141] = {.lex_state = 6}, + [3142] = {.lex_state = 6}, [3143] = {.lex_state = 6}, - [3144] = {.lex_state = 140}, + [3144] = {.lex_state = 6}, [3145] = {.lex_state = 6}, - [3146] = {.lex_state = 6}, + [3146] = {.lex_state = 9}, [3147] = {.lex_state = 6}, - [3148] = {.lex_state = 6}, + [3148] = {.lex_state = 9}, [3149] = {.lex_state = 6}, - [3150] = {.lex_state = 140}, + [3150] = {.lex_state = 6}, [3151] = {.lex_state = 6}, [3152] = {.lex_state = 6}, - [3153] = {.lex_state = 140}, + [3153] = {.lex_state = 6}, [3154] = {.lex_state = 6}, [3155] = {.lex_state = 6}, [3156] = {.lex_state = 6}, @@ -27384,44 +27395,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3159] = {.lex_state = 6}, [3160] = {.lex_state = 6}, [3161] = {.lex_state = 6}, - [3162] = {.lex_state = 140}, + [3162] = {.lex_state = 141}, [3163] = {.lex_state = 6}, [3164] = {.lex_state = 6}, [3165] = {.lex_state = 6}, - [3166] = {.lex_state = 140}, + [3166] = {.lex_state = 6}, [3167] = {.lex_state = 6}, - [3168] = {.lex_state = 140}, + [3168] = {.lex_state = 6}, [3169] = {.lex_state = 6}, [3170] = {.lex_state = 6}, - [3171] = {.lex_state = 141}, + [3171] = {.lex_state = 6}, [3172] = {.lex_state = 6}, - [3173] = {.lex_state = 141}, + [3173] = {.lex_state = 6}, [3174] = {.lex_state = 6}, - [3175] = {.lex_state = 6}, + [3175] = {.lex_state = 10}, [3176] = {.lex_state = 6}, - [3177] = {.lex_state = 140}, - [3178] = {.lex_state = 141}, - [3179] = {.lex_state = 141}, - [3180] = {.lex_state = 6}, - [3181] = {.lex_state = 6}, + [3177] = {.lex_state = 141}, + [3178] = {.lex_state = 6}, + [3179] = {.lex_state = 6}, + [3180] = {.lex_state = 141}, + [3181] = {.lex_state = 14}, [3182] = {.lex_state = 6}, - [3183] = {.lex_state = 5}, + [3183] = {.lex_state = 6}, [3184] = {.lex_state = 6}, - [3185] = {.lex_state = 6}, - [3186] = {.lex_state = 6}, - [3187] = {.lex_state = 6}, + [3185] = {.lex_state = 141}, + [3186] = {.lex_state = 141}, + [3187] = {.lex_state = 141}, [3188] = {.lex_state = 6}, - [3189] = {.lex_state = 140}, - [3190] = {.lex_state = 140}, + [3189] = {.lex_state = 6}, + [3190] = {.lex_state = 6}, [3191] = {.lex_state = 6}, - [3192] = {.lex_state = 6}, - [3193] = {.lex_state = 141}, + [3192] = {.lex_state = 141}, + [3193] = {.lex_state = 6}, [3194] = {.lex_state = 6}, - [3195] = {.lex_state = 6}, + [3195] = {.lex_state = 141}, [3196] = {.lex_state = 6}, - [3197] = {.lex_state = 141}, - [3198] = {.lex_state = 6}, - [3199] = {.lex_state = 6}, + [3197] = {.lex_state = 6}, + [3198] = {.lex_state = 141}, + [3199] = {.lex_state = 9}, [3200] = {.lex_state = 6}, [3201] = {.lex_state = 6}, [3202] = {.lex_state = 6}, @@ -27434,37 +27445,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3209] = {.lex_state = 6}, [3210] = {.lex_state = 6}, [3211] = {.lex_state = 6}, - [3212] = {.lex_state = 140}, - [3213] = {.lex_state = 141}, - [3214] = {.lex_state = 140}, - [3215] = {.lex_state = 5}, + [3212] = {.lex_state = 6}, + [3213] = {.lex_state = 6}, + [3214] = {.lex_state = 6}, + [3215] = {.lex_state = 6}, [3216] = {.lex_state = 6}, - [3217] = {.lex_state = 5}, - [3218] = {.lex_state = 140}, - [3219] = {.lex_state = 141}, + [3217] = {.lex_state = 6}, + [3218] = {.lex_state = 6}, + [3219] = {.lex_state = 6}, [3220] = {.lex_state = 6}, [3221] = {.lex_state = 6}, - [3222] = {.lex_state = 141}, + [3222] = {.lex_state = 6}, [3223] = {.lex_state = 6}, - [3224] = {.lex_state = 140}, + [3224] = {.lex_state = 6}, [3225] = {.lex_state = 6}, [3226] = {.lex_state = 6}, - [3227] = {.lex_state = 141}, - [3228] = {.lex_state = 140}, + [3227] = {.lex_state = 6}, + [3228] = {.lex_state = 6}, [3229] = {.lex_state = 6}, [3230] = {.lex_state = 6}, - [3231] = {.lex_state = 140}, - [3232] = {.lex_state = 140}, - [3233] = {.lex_state = 140}, + [3231] = {.lex_state = 6}, + [3232] = {.lex_state = 141}, + [3233] = {.lex_state = 6}, [3234] = {.lex_state = 6}, [3235] = {.lex_state = 6}, [3236] = {.lex_state = 6}, [3237] = {.lex_state = 6}, [3238] = {.lex_state = 6}, - [3239] = {.lex_state = 141}, - [3240] = {.lex_state = 141}, - [3241] = {.lex_state = 141}, - [3242] = {.lex_state = 5}, + [3239] = {.lex_state = 6}, + [3240] = {.lex_state = 139}, + [3241] = {.lex_state = 6}, + [3242] = {.lex_state = 6}, [3243] = {.lex_state = 6}, [3244] = {.lex_state = 6}, [3245] = {.lex_state = 6}, @@ -27482,67 +27493,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3257] = {.lex_state = 6}, [3258] = {.lex_state = 6}, [3259] = {.lex_state = 6}, - [3260] = {.lex_state = 6}, + [3260] = {.lex_state = 7}, [3261] = {.lex_state = 6}, [3262] = {.lex_state = 6}, [3263] = {.lex_state = 6}, [3264] = {.lex_state = 6}, [3265] = {.lex_state = 6}, [3266] = {.lex_state = 6}, - [3267] = {.lex_state = 5}, + [3267] = {.lex_state = 6}, [3268] = {.lex_state = 6}, [3269] = {.lex_state = 6}, [3270] = {.lex_state = 6}, [3271] = {.lex_state = 6}, [3272] = {.lex_state = 6}, - [3273] = {.lex_state = 6, .external_lex_state = 4}, + [3273] = {.lex_state = 6}, [3274] = {.lex_state = 6}, - [3275] = {.lex_state = 6, .external_lex_state = 4}, - [3276] = {.lex_state = 6, .external_lex_state = 4}, - [3277] = {.lex_state = 6, .external_lex_state = 4}, - [3278] = {.lex_state = 6, .external_lex_state = 4}, + [3275] = {.lex_state = 6}, + [3276] = {.lex_state = 6}, + [3277] = {.lex_state = 6}, + [3278] = {.lex_state = 6}, [3279] = {.lex_state = 6}, [3280] = {.lex_state = 6}, [3281] = {.lex_state = 6}, [3282] = {.lex_state = 6}, [3283] = {.lex_state = 6}, - [3284] = {.lex_state = 6, .external_lex_state = 4}, + [3284] = {.lex_state = 6}, [3285] = {.lex_state = 6}, [3286] = {.lex_state = 6}, [3287] = {.lex_state = 6}, - [3288] = {.lex_state = 139}, + [3288] = {.lex_state = 6}, [3289] = {.lex_state = 6}, - [3290] = {.lex_state = 6, .external_lex_state = 4}, + [3290] = {.lex_state = 6}, [3291] = {.lex_state = 6}, - [3292] = {.lex_state = 6, .external_lex_state = 4}, - [3293] = {.lex_state = 139}, + [3292] = {.lex_state = 6}, + [3293] = {.lex_state = 6}, [3294] = {.lex_state = 6}, [3295] = {.lex_state = 6}, [3296] = {.lex_state = 6}, - [3297] = {.lex_state = 6, .external_lex_state = 4}, - [3298] = {.lex_state = 6, .external_lex_state = 4}, + [3297] = {.lex_state = 6}, + [3298] = {.lex_state = 6}, [3299] = {.lex_state = 6}, - [3300] = {.lex_state = 6, .external_lex_state = 4}, - [3301] = {.lex_state = 139}, + [3300] = {.lex_state = 6}, + [3301] = {.lex_state = 6}, [3302] = {.lex_state = 6}, - [3303] = {.lex_state = 141}, - [3304] = {.lex_state = 6, .external_lex_state = 4}, - [3305] = {.lex_state = 6, .external_lex_state = 4}, - [3306] = {.lex_state = 139}, - [3307] = {.lex_state = 6, .external_lex_state = 4}, - [3308] = {.lex_state = 139}, - [3309] = {.lex_state = 141}, + [3303] = {.lex_state = 6}, + [3304] = {.lex_state = 6}, + [3305] = {.lex_state = 6}, + [3306] = {.lex_state = 6}, + [3307] = {.lex_state = 6}, + [3308] = {.lex_state = 141}, + [3309] = {.lex_state = 6}, [3310] = {.lex_state = 6}, [3311] = {.lex_state = 6}, [3312] = {.lex_state = 6}, [3313] = {.lex_state = 6}, [3314] = {.lex_state = 6}, - [3315] = {.lex_state = 6, .external_lex_state = 4}, + [3315] = {.lex_state = 6}, [3316] = {.lex_state = 6}, - [3317] = {.lex_state = 139}, + [3317] = {.lex_state = 6}, [3318] = {.lex_state = 6}, [3319] = {.lex_state = 6}, - [3320] = {.lex_state = 6, .external_lex_state = 4}, + [3320] = {.lex_state = 6}, [3321] = {.lex_state = 6}, [3322] = {.lex_state = 6}, [3323] = {.lex_state = 6}, @@ -27552,34 +27563,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3327] = {.lex_state = 6}, [3328] = {.lex_state = 6}, [3329] = {.lex_state = 6}, - [3330] = {.lex_state = 6, .external_lex_state = 4}, - [3331] = {.lex_state = 6, .external_lex_state = 4}, - [3332] = {.lex_state = 6, .external_lex_state = 4}, + [3330] = {.lex_state = 6}, + [3331] = {.lex_state = 6}, + [3332] = {.lex_state = 6}, [3333] = {.lex_state = 6}, - [3334] = {.lex_state = 139}, + [3334] = {.lex_state = 6}, [3335] = {.lex_state = 6}, [3336] = {.lex_state = 6}, - [3337] = {.lex_state = 6, .external_lex_state = 4}, - [3338] = {.lex_state = 6, .external_lex_state = 4}, + [3337] = {.lex_state = 6}, + [3338] = {.lex_state = 6}, [3339] = {.lex_state = 6}, - [3340] = {.lex_state = 6, .external_lex_state = 4}, + [3340] = {.lex_state = 6}, [3341] = {.lex_state = 6}, - [3342] = {.lex_state = 139}, + [3342] = {.lex_state = 6}, [3343] = {.lex_state = 6}, [3344] = {.lex_state = 6}, [3345] = {.lex_state = 6}, [3346] = {.lex_state = 6}, [3347] = {.lex_state = 6}, - [3348] = {.lex_state = 6, .external_lex_state = 4}, - [3349] = {.lex_state = 139}, - [3350] = {.lex_state = 6, .external_lex_state = 4}, + [3348] = {.lex_state = 6}, + [3349] = {.lex_state = 6}, + [3350] = {.lex_state = 6}, [3351] = {.lex_state = 6}, [3352] = {.lex_state = 6}, - [3353] = {.lex_state = 6, .external_lex_state = 4}, + [3353] = {.lex_state = 6}, [3354] = {.lex_state = 6}, - [3355] = {.lex_state = 6}, + [3355] = {.lex_state = 141}, [3356] = {.lex_state = 6}, - [3357] = {.lex_state = 141}, + [3357] = {.lex_state = 6}, [3358] = {.lex_state = 6}, [3359] = {.lex_state = 6}, [3360] = {.lex_state = 6}, @@ -27596,37 +27607,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3371] = {.lex_state = 6}, [3372] = {.lex_state = 6}, [3373] = {.lex_state = 6}, - [3374] = {.lex_state = 9}, - [3375] = {.lex_state = 6, .external_lex_state = 4}, - [3376] = {.lex_state = 6, .external_lex_state = 4}, - [3377] = {.lex_state = 6, .external_lex_state = 4}, + [3374] = {.lex_state = 6}, + [3375] = {.lex_state = 6}, + [3376] = {.lex_state = 6}, + [3377] = {.lex_state = 6}, [3378] = {.lex_state = 6}, [3379] = {.lex_state = 6}, - [3380] = {.lex_state = 6, .external_lex_state = 4}, + [3380] = {.lex_state = 7}, [3381] = {.lex_state = 6}, - [3382] = {.lex_state = 6, .external_lex_state = 4}, + [3382] = {.lex_state = 6}, [3383] = {.lex_state = 6}, [3384] = {.lex_state = 6}, - [3385] = {.lex_state = 6, .external_lex_state = 4}, + [3385] = {.lex_state = 6}, [3386] = {.lex_state = 6}, - [3387] = {.lex_state = 6, .external_lex_state = 4}, + [3387] = {.lex_state = 6}, [3388] = {.lex_state = 6}, [3389] = {.lex_state = 6}, [3390] = {.lex_state = 6}, [3391] = {.lex_state = 6}, [3392] = {.lex_state = 6}, - [3393] = {.lex_state = 6, .external_lex_state = 4}, - [3394] = {.lex_state = 9}, + [3393] = {.lex_state = 6}, + [3394] = {.lex_state = 6}, [3395] = {.lex_state = 6}, [3396] = {.lex_state = 6}, - [3397] = {.lex_state = 6, .external_lex_state = 4}, - [3398] = {.lex_state = 9}, + [3397] = {.lex_state = 6}, + [3398] = {.lex_state = 141}, [3399] = {.lex_state = 6}, - [3400] = {.lex_state = 6, .external_lex_state = 4}, - [3401] = {.lex_state = 6}, - [3402] = {.lex_state = 6}, + [3400] = {.lex_state = 6}, + [3401] = {.lex_state = 7}, + [3402] = {.lex_state = 141}, [3403] = {.lex_state = 6}, - [3404] = {.lex_state = 6, .external_lex_state = 4}, + [3404] = {.lex_state = 6}, [3405] = {.lex_state = 6}, [3406] = {.lex_state = 6}, [3407] = {.lex_state = 6}, @@ -27639,30 +27650,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3414] = {.lex_state = 6}, [3415] = {.lex_state = 6}, [3416] = {.lex_state = 6}, - [3417] = {.lex_state = 6, .external_lex_state = 4}, - [3418] = {.lex_state = 139}, - [3419] = {.lex_state = 6, .external_lex_state = 4}, + [3417] = {.lex_state = 6}, + [3418] = {.lex_state = 6}, + [3419] = {.lex_state = 6}, [3420] = {.lex_state = 6}, - [3421] = {.lex_state = 6, .external_lex_state = 4}, - [3422] = {.lex_state = 6, .external_lex_state = 4}, - [3423] = {.lex_state = 6, .external_lex_state = 4}, - [3424] = {.lex_state = 6, .external_lex_state = 4}, + [3421] = {.lex_state = 6}, + [3422] = {.lex_state = 6}, + [3423] = {.lex_state = 6}, + [3424] = {.lex_state = 6}, [3425] = {.lex_state = 6}, - [3426] = {.lex_state = 6, .external_lex_state = 4}, - [3427] = {.lex_state = 141}, + [3426] = {.lex_state = 6}, + [3427] = {.lex_state = 6}, [3428] = {.lex_state = 6}, [3429] = {.lex_state = 6}, - [3430] = {.lex_state = 6, .external_lex_state = 4}, + [3430] = {.lex_state = 6}, [3431] = {.lex_state = 6}, - [3432] = {.lex_state = 6, .external_lex_state = 4}, - [3433] = {.lex_state = 6, .external_lex_state = 4}, + [3432] = {.lex_state = 6}, + [3433] = {.lex_state = 6}, [3434] = {.lex_state = 6}, [3435] = {.lex_state = 6}, [3436] = {.lex_state = 6}, [3437] = {.lex_state = 6}, [3438] = {.lex_state = 6}, [3439] = {.lex_state = 6}, - [3440] = {.lex_state = 6}, + [3440] = {.lex_state = 141}, [3441] = {.lex_state = 6}, [3442] = {.lex_state = 6}, [3443] = {.lex_state = 6}, @@ -27677,22 +27688,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3452] = {.lex_state = 6}, [3453] = {.lex_state = 6}, [3454] = {.lex_state = 6}, - [3455] = {.lex_state = 6, .external_lex_state = 4}, + [3455] = {.lex_state = 6}, [3456] = {.lex_state = 6}, [3457] = {.lex_state = 6}, [3458] = {.lex_state = 6}, [3459] = {.lex_state = 6}, [3460] = {.lex_state = 6}, - [3461] = {.lex_state = 6}, + [3461] = {.lex_state = 7}, [3462] = {.lex_state = 6}, - [3463] = {.lex_state = 9}, + [3463] = {.lex_state = 6}, [3464] = {.lex_state = 6}, - [3465] = {.lex_state = 9}, + [3465] = {.lex_state = 6}, [3466] = {.lex_state = 6}, [3467] = {.lex_state = 6}, [3468] = {.lex_state = 6}, [3469] = {.lex_state = 6}, - [3470] = {.lex_state = 6}, + [3470] = {.lex_state = 7}, [3471] = {.lex_state = 6}, [3472] = {.lex_state = 6}, [3473] = {.lex_state = 6}, @@ -27706,12 +27717,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3481] = {.lex_state = 6}, [3482] = {.lex_state = 6}, [3483] = {.lex_state = 6}, - [3484] = {.lex_state = 6}, + [3484] = {.lex_state = 141}, [3485] = {.lex_state = 6}, [3486] = {.lex_state = 6}, [3487] = {.lex_state = 6}, [3488] = {.lex_state = 6}, - [3489] = {.lex_state = 6}, + [3489] = {.lex_state = 7}, [3490] = {.lex_state = 6}, [3491] = {.lex_state = 6}, [3492] = {.lex_state = 6}, @@ -27722,28 +27733,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3497] = {.lex_state = 6}, [3498] = {.lex_state = 6}, [3499] = {.lex_state = 6}, - [3500] = {.lex_state = 6}, + [3500] = {.lex_state = 6, .external_lex_state = 4}, [3501] = {.lex_state = 6}, [3502] = {.lex_state = 6}, [3503] = {.lex_state = 6}, [3504] = {.lex_state = 6}, - [3505] = {.lex_state = 141}, - [3506] = {.lex_state = 6}, + [3505] = {.lex_state = 6}, + [3506] = {.lex_state = 6, .external_lex_state = 4}, [3507] = {.lex_state = 6}, - [3508] = {.lex_state = 6}, - [3509] = {.lex_state = 9}, - [3510] = {.lex_state = 9}, + [3508] = {.lex_state = 6, .external_lex_state = 4}, + [3509] = {.lex_state = 6}, + [3510] = {.lex_state = 7}, [3511] = {.lex_state = 6}, - [3512] = {.lex_state = 6}, - [3513] = {.lex_state = 6}, + [3512] = {.lex_state = 6, .external_lex_state = 4}, + [3513] = {.lex_state = 6, .external_lex_state = 4}, [3514] = {.lex_state = 6}, - [3515] = {.lex_state = 6}, + [3515] = {.lex_state = 7}, [3516] = {.lex_state = 6}, - [3517] = {.lex_state = 6}, - [3518] = {.lex_state = 6}, - [3519] = {.lex_state = 6}, + [3517] = {.lex_state = 6, .external_lex_state = 4}, + [3518] = {.lex_state = 6, .external_lex_state = 4}, + [3519] = {.lex_state = 6, .external_lex_state = 4}, [3520] = {.lex_state = 6}, - [3521] = {.lex_state = 6}, + [3521] = {.lex_state = 141}, [3522] = {.lex_state = 6}, [3523] = {.lex_state = 6}, [3524] = {.lex_state = 6}, @@ -27755,34 +27766,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3530] = {.lex_state = 6}, [3531] = {.lex_state = 6}, [3532] = {.lex_state = 6}, - [3533] = {.lex_state = 6}, - [3534] = {.lex_state = 6}, - [3535] = {.lex_state = 141}, + [3533] = {.lex_state = 6, .external_lex_state = 4}, + [3534] = {.lex_state = 6, .external_lex_state = 4}, + [3535] = {.lex_state = 6, .external_lex_state = 4}, [3536] = {.lex_state = 6, .external_lex_state = 4}, - [3537] = {.lex_state = 6}, + [3537] = {.lex_state = 6, .external_lex_state = 4}, [3538] = {.lex_state = 6}, [3539] = {.lex_state = 6}, [3540] = {.lex_state = 6}, [3541] = {.lex_state = 6}, - [3542] = {.lex_state = 6}, - [3543] = {.lex_state = 6}, - [3544] = {.lex_state = 6}, - [3545] = {.lex_state = 6}, + [3542] = {.lex_state = 6, .external_lex_state = 4}, + [3543] = {.lex_state = 6, .external_lex_state = 4}, + [3544] = {.lex_state = 6, .external_lex_state = 4}, + [3545] = {.lex_state = 6, .external_lex_state = 4}, [3546] = {.lex_state = 6}, [3547] = {.lex_state = 6}, - [3548] = {.lex_state = 141}, - [3549] = {.lex_state = 6}, - [3550] = {.lex_state = 6}, - [3551] = {.lex_state = 6}, - [3552] = {.lex_state = 6}, + [3548] = {.lex_state = 6}, + [3549] = {.lex_state = 6, .external_lex_state = 4}, + [3550] = {.lex_state = 141}, + [3551] = {.lex_state = 6, .external_lex_state = 4}, + [3552] = {.lex_state = 6, .external_lex_state = 4}, [3553] = {.lex_state = 6, .external_lex_state = 4}, [3554] = {.lex_state = 6, .external_lex_state = 4}, [3555] = {.lex_state = 6, .external_lex_state = 4}, [3556] = {.lex_state = 6}, [3557] = {.lex_state = 6}, [3558] = {.lex_state = 6}, - [3559] = {.lex_state = 6, .external_lex_state = 4}, - [3560] = {.lex_state = 10}, + [3559] = {.lex_state = 6}, + [3560] = {.lex_state = 9}, [3561] = {.lex_state = 6}, [3562] = {.lex_state = 6}, [3563] = {.lex_state = 6}, @@ -27790,22 +27801,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3565] = {.lex_state = 6}, [3566] = {.lex_state = 6}, [3567] = {.lex_state = 6}, - [3568] = {.lex_state = 6}, + [3568] = {.lex_state = 6, .external_lex_state = 4}, [3569] = {.lex_state = 6}, [3570] = {.lex_state = 6}, [3571] = {.lex_state = 6}, - [3572] = {.lex_state = 6, .external_lex_state = 4}, + [3572] = {.lex_state = 141}, [3573] = {.lex_state = 6}, - [3574] = {.lex_state = 6, .external_lex_state = 4}, + [3574] = {.lex_state = 6}, [3575] = {.lex_state = 6}, - [3576] = {.lex_state = 6, .external_lex_state = 4}, + [3576] = {.lex_state = 6}, [3577] = {.lex_state = 6}, [3578] = {.lex_state = 6}, - [3579] = {.lex_state = 6, .external_lex_state = 4}, - [3580] = {.lex_state = 6, .external_lex_state = 4}, + [3579] = {.lex_state = 6}, + [3580] = {.lex_state = 6}, [3581] = {.lex_state = 6}, - [3582] = {.lex_state = 6}, - [3583] = {.lex_state = 141}, + [3582] = {.lex_state = 7}, + [3583] = {.lex_state = 6}, [3584] = {.lex_state = 6}, [3585] = {.lex_state = 6}, [3586] = {.lex_state = 6}, @@ -27823,18 +27834,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3598] = {.lex_state = 6}, [3599] = {.lex_state = 6}, [3600] = {.lex_state = 6}, - [3601] = {.lex_state = 6}, + [3601] = {.lex_state = 7}, [3602] = {.lex_state = 6}, - [3603] = {.lex_state = 6}, + [3603] = {.lex_state = 7, .external_lex_state = 4}, [3604] = {.lex_state = 6}, - [3605] = {.lex_state = 6}, - [3606] = {.lex_state = 6}, - [3607] = {.lex_state = 6}, - [3608] = {.lex_state = 6}, + [3605] = {.lex_state = 6, .external_lex_state = 4}, + [3606] = {.lex_state = 6, .external_lex_state = 4}, + [3607] = {.lex_state = 6, .external_lex_state = 4}, + [3608] = {.lex_state = 6, .external_lex_state = 4}, [3609] = {.lex_state = 6}, [3610] = {.lex_state = 6}, - [3611] = {.lex_state = 141}, - [3612] = {.lex_state = 141}, + [3611] = {.lex_state = 6}, + [3612] = {.lex_state = 6}, [3613] = {.lex_state = 6}, [3614] = {.lex_state = 6}, [3615] = {.lex_state = 6}, @@ -27843,52 +27854,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3618] = {.lex_state = 6}, [3619] = {.lex_state = 6}, [3620] = {.lex_state = 6}, - [3621] = {.lex_state = 6}, + [3621] = {.lex_state = 6, .external_lex_state = 4}, [3622] = {.lex_state = 6}, [3623] = {.lex_state = 6}, [3624] = {.lex_state = 6}, [3625] = {.lex_state = 6}, - [3626] = {.lex_state = 6, .external_lex_state = 4}, - [3627] = {.lex_state = 6, .external_lex_state = 4}, + [3626] = {.lex_state = 6}, + [3627] = {.lex_state = 6}, [3628] = {.lex_state = 6}, - [3629] = {.lex_state = 6, .external_lex_state = 4}, + [3629] = {.lex_state = 141}, [3630] = {.lex_state = 6}, - [3631] = {.lex_state = 6, .external_lex_state = 4}, + [3631] = {.lex_state = 6}, [3632] = {.lex_state = 6}, [3633] = {.lex_state = 6}, [3634] = {.lex_state = 6}, [3635] = {.lex_state = 6}, [3636] = {.lex_state = 6}, - [3637] = {.lex_state = 6}, - [3638] = {.lex_state = 6}, - [3639] = {.lex_state = 6}, - [3640] = {.lex_state = 6}, - [3641] = {.lex_state = 6}, - [3642] = {.lex_state = 6}, - [3643] = {.lex_state = 6}, - [3644] = {.lex_state = 6}, - [3645] = {.lex_state = 6}, - [3646] = {.lex_state = 139}, - [3647] = {.lex_state = 6}, + [3637] = {.lex_state = 6, .external_lex_state = 4}, + [3638] = {.lex_state = 7}, + [3639] = {.lex_state = 6, .external_lex_state = 4}, + [3640] = {.lex_state = 9}, + [3641] = {.lex_state = 9}, + [3642] = {.lex_state = 6, .external_lex_state = 4}, + [3643] = {.lex_state = 6, .external_lex_state = 4}, + [3644] = {.lex_state = 6, .external_lex_state = 4}, + [3645] = {.lex_state = 6, .external_lex_state = 4}, + [3646] = {.lex_state = 6, .external_lex_state = 4}, + [3647] = {.lex_state = 6, .external_lex_state = 4}, [3648] = {.lex_state = 6, .external_lex_state = 4}, - [3649] = {.lex_state = 6, .external_lex_state = 4}, + [3649] = {.lex_state = 9}, [3650] = {.lex_state = 6}, - [3651] = {.lex_state = 6, .external_lex_state = 4}, + [3651] = {.lex_state = 6}, [3652] = {.lex_state = 6}, [3653] = {.lex_state = 6}, [3654] = {.lex_state = 6}, [3655] = {.lex_state = 6}, - [3656] = {.lex_state = 6}, - [3657] = {.lex_state = 141}, - [3658] = {.lex_state = 141}, + [3656] = {.lex_state = 7}, + [3657] = {.lex_state = 6}, + [3658] = {.lex_state = 6}, [3659] = {.lex_state = 6}, [3660] = {.lex_state = 6}, [3661] = {.lex_state = 6}, [3662] = {.lex_state = 6}, - [3663] = {.lex_state = 6}, + [3663] = {.lex_state = 141}, [3664] = {.lex_state = 6}, [3665] = {.lex_state = 6}, - [3666] = {.lex_state = 6}, + [3666] = {.lex_state = 6, .external_lex_state = 4}, [3667] = {.lex_state = 6}, [3668] = {.lex_state = 6}, [3669] = {.lex_state = 6}, @@ -27897,36 +27908,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3672] = {.lex_state = 6}, [3673] = {.lex_state = 6}, [3674] = {.lex_state = 6}, - [3675] = {.lex_state = 6}, + [3675] = {.lex_state = 6, .external_lex_state = 4}, [3676] = {.lex_state = 6}, [3677] = {.lex_state = 6}, [3678] = {.lex_state = 6}, - [3679] = {.lex_state = 6}, + [3679] = {.lex_state = 6, .external_lex_state = 4}, [3680] = {.lex_state = 6}, - [3681] = {.lex_state = 6}, - [3682] = {.lex_state = 6}, - [3683] = {.lex_state = 6}, + [3681] = {.lex_state = 6, .external_lex_state = 4}, + [3682] = {.lex_state = 6, .external_lex_state = 4}, + [3683] = {.lex_state = 6, .external_lex_state = 4}, [3684] = {.lex_state = 6}, - [3685] = {.lex_state = 6}, - [3686] = {.lex_state = 6}, - [3687] = {.lex_state = 6}, + [3685] = {.lex_state = 6, .external_lex_state = 4}, + [3686] = {.lex_state = 6, .external_lex_state = 4}, + [3687] = {.lex_state = 6, .external_lex_state = 4}, [3688] = {.lex_state = 6}, [3689] = {.lex_state = 6}, - [3690] = {.lex_state = 141}, + [3690] = {.lex_state = 6}, [3691] = {.lex_state = 6}, [3692] = {.lex_state = 6}, [3693] = {.lex_state = 6}, - [3694] = {.lex_state = 6, .external_lex_state = 4}, + [3694] = {.lex_state = 6}, [3695] = {.lex_state = 6}, - [3696] = {.lex_state = 6, .external_lex_state = 4}, + [3696] = {.lex_state = 6}, [3697] = {.lex_state = 6}, [3698] = {.lex_state = 6}, [3699] = {.lex_state = 6}, [3700] = {.lex_state = 6}, [3701] = {.lex_state = 6}, [3702] = {.lex_state = 6}, - [3703] = {.lex_state = 6, .external_lex_state = 4}, - [3704] = {.lex_state = 6, .external_lex_state = 4}, + [3703] = {.lex_state = 6}, + [3704] = {.lex_state = 6}, [3705] = {.lex_state = 6}, [3706] = {.lex_state = 6}, [3707] = {.lex_state = 6}, @@ -27940,15 +27951,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3715] = {.lex_state = 6}, [3716] = {.lex_state = 6}, [3717] = {.lex_state = 6}, - [3718] = {.lex_state = 6}, + [3718] = {.lex_state = 6, .external_lex_state = 4}, [3719] = {.lex_state = 6, .external_lex_state = 4}, - [3720] = {.lex_state = 6}, - [3721] = {.lex_state = 6}, - [3722] = {.lex_state = 6}, - [3723] = {.lex_state = 6}, - [3724] = {.lex_state = 6}, - [3725] = {.lex_state = 6}, - [3726] = {.lex_state = 6}, + [3720] = {.lex_state = 6, .external_lex_state = 4}, + [3721] = {.lex_state = 6, .external_lex_state = 4}, + [3722] = {.lex_state = 6, .external_lex_state = 4}, + [3723] = {.lex_state = 7}, + [3724] = {.lex_state = 7, .external_lex_state = 4}, + [3725] = {.lex_state = 6, .external_lex_state = 4}, + [3726] = {.lex_state = 6, .external_lex_state = 4}, [3727] = {.lex_state = 6}, [3728] = {.lex_state = 6}, [3729] = {.lex_state = 6}, @@ -27976,23 +27987,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3751] = {.lex_state = 6}, [3752] = {.lex_state = 6}, [3753] = {.lex_state = 6}, - [3754] = {.lex_state = 6, .external_lex_state = 4}, + [3754] = {.lex_state = 6}, [3755] = {.lex_state = 6}, [3756] = {.lex_state = 6}, [3757] = {.lex_state = 6}, [3758] = {.lex_state = 6}, [3759] = {.lex_state = 6}, - [3760] = {.lex_state = 14}, + [3760] = {.lex_state = 6}, [3761] = {.lex_state = 6}, [3762] = {.lex_state = 6}, [3763] = {.lex_state = 6}, [3764] = {.lex_state = 6}, [3765] = {.lex_state = 6}, [3766] = {.lex_state = 6}, - [3767] = {.lex_state = 6}, + [3767] = {.lex_state = 7, .external_lex_state = 4}, [3768] = {.lex_state = 6}, - [3769] = {.lex_state = 6}, - [3770] = {.lex_state = 6}, + [3769] = {.lex_state = 7, .external_lex_state = 4}, + [3770] = {.lex_state = 7, .external_lex_state = 4}, [3771] = {.lex_state = 6}, [3772] = {.lex_state = 6}, [3773] = {.lex_state = 6}, @@ -28001,15 +28012,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3776] = {.lex_state = 6}, [3777] = {.lex_state = 6}, [3778] = {.lex_state = 6}, - [3779] = {.lex_state = 6}, + [3779] = {.lex_state = 141}, [3780] = {.lex_state = 6}, - [3781] = {.lex_state = 6}, - [3782] = {.lex_state = 6}, + [3781] = {.lex_state = 6, .external_lex_state = 4}, + [3782] = {.lex_state = 141}, [3783] = {.lex_state = 6}, [3784] = {.lex_state = 6}, - [3785] = {.lex_state = 6, .external_lex_state = 4}, + [3785] = {.lex_state = 6}, [3786] = {.lex_state = 6}, - [3787] = {.lex_state = 6, .external_lex_state = 4}, + [3787] = {.lex_state = 6}, [3788] = {.lex_state = 6, .external_lex_state = 4}, [3789] = {.lex_state = 6}, [3790] = {.lex_state = 6}, @@ -28019,14 +28030,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3794] = {.lex_state = 6, .external_lex_state = 4}, [3795] = {.lex_state = 6}, [3796] = {.lex_state = 6}, - [3797] = {.lex_state = 6, .external_lex_state = 4}, - [3798] = {.lex_state = 6, .external_lex_state = 4}, - [3799] = {.lex_state = 6, .external_lex_state = 4}, - [3800] = {.lex_state = 6}, + [3797] = {.lex_state = 6}, + [3798] = {.lex_state = 6}, + [3799] = {.lex_state = 6}, + [3800] = {.lex_state = 9}, [3801] = {.lex_state = 6}, [3802] = {.lex_state = 6}, [3803] = {.lex_state = 6}, - [3804] = {.lex_state = 6, .external_lex_state = 4}, + [3804] = {.lex_state = 6}, [3805] = {.lex_state = 6}, [3806] = {.lex_state = 6}, [3807] = {.lex_state = 6}, @@ -28034,51 +28045,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3809] = {.lex_state = 6}, [3810] = {.lex_state = 6}, [3811] = {.lex_state = 6}, - [3812] = {.lex_state = 6}, + [3812] = {.lex_state = 7, .external_lex_state = 4}, [3813] = {.lex_state = 6}, [3814] = {.lex_state = 6}, - [3815] = {.lex_state = 6, .external_lex_state = 4}, + [3815] = {.lex_state = 6}, [3816] = {.lex_state = 6}, [3817] = {.lex_state = 6}, [3818] = {.lex_state = 6}, [3819] = {.lex_state = 6}, [3820] = {.lex_state = 6}, - [3821] = {.lex_state = 6}, + [3821] = {.lex_state = 9}, [3822] = {.lex_state = 6}, [3823] = {.lex_state = 6}, - [3824] = {.lex_state = 6}, - [3825] = {.lex_state = 6}, + [3824] = {.lex_state = 9}, + [3825] = {.lex_state = 6, .external_lex_state = 4}, [3826] = {.lex_state = 6}, [3827] = {.lex_state = 6}, [3828] = {.lex_state = 6}, - [3829] = {.lex_state = 6}, - [3830] = {.lex_state = 139}, - [3831] = {.lex_state = 6}, + [3829] = {.lex_state = 7, .external_lex_state = 4}, + [3830] = {.lex_state = 6}, + [3831] = {.lex_state = 6, .external_lex_state = 4}, [3832] = {.lex_state = 6}, - [3833] = {.lex_state = 6}, - [3834] = {.lex_state = 6}, + [3833] = {.lex_state = 6, .external_lex_state = 4}, + [3834] = {.lex_state = 7, .external_lex_state = 4}, [3835] = {.lex_state = 6}, - [3836] = {.lex_state = 6}, + [3836] = {.lex_state = 6, .external_lex_state = 4}, [3837] = {.lex_state = 6}, [3838] = {.lex_state = 6}, - [3839] = {.lex_state = 6}, + [3839] = {.lex_state = 6, .external_lex_state = 4}, [3840] = {.lex_state = 6}, [3841] = {.lex_state = 6}, [3842] = {.lex_state = 6}, [3843] = {.lex_state = 6}, [3844] = {.lex_state = 6}, [3845] = {.lex_state = 6}, - [3846] = {.lex_state = 6}, + [3846] = {.lex_state = 141}, [3847] = {.lex_state = 6}, - [3848] = {.lex_state = 6}, + [3848] = {.lex_state = 7, .external_lex_state = 4}, [3849] = {.lex_state = 6}, - [3850] = {.lex_state = 6}, + [3850] = {.lex_state = 7, .external_lex_state = 4}, [3851] = {.lex_state = 6}, - [3852] = {.lex_state = 6}, + [3852] = {.lex_state = 6, .external_lex_state = 4}, [3853] = {.lex_state = 6}, - [3854] = {.lex_state = 6}, + [3854] = {.lex_state = 6, .external_lex_state = 4}, [3855] = {.lex_state = 6}, - [3856] = {.lex_state = 6}, + [3856] = {.lex_state = 6, .external_lex_state = 4}, [3857] = {.lex_state = 6}, [3858] = {.lex_state = 6}, [3859] = {.lex_state = 6}, @@ -28089,31 +28100,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3864] = {.lex_state = 6}, [3865] = {.lex_state = 6}, [3866] = {.lex_state = 6}, - [3867] = {.lex_state = 6}, + [3867] = {.lex_state = 7, .external_lex_state = 4}, [3868] = {.lex_state = 6}, [3869] = {.lex_state = 6}, [3870] = {.lex_state = 6}, [3871] = {.lex_state = 6}, [3872] = {.lex_state = 6}, - [3873] = {.lex_state = 6}, - [3874] = {.lex_state = 6}, + [3873] = {.lex_state = 7, .external_lex_state = 4}, + [3874] = {.lex_state = 141}, [3875] = {.lex_state = 6}, - [3876] = {.lex_state = 6}, - [3877] = {.lex_state = 6}, + [3876] = {.lex_state = 6, .external_lex_state = 4}, + [3877] = {.lex_state = 7, .external_lex_state = 4}, [3878] = {.lex_state = 6}, - [3879] = {.lex_state = 6}, + [3879] = {.lex_state = 6, .external_lex_state = 4}, [3880] = {.lex_state = 6}, - [3881] = {.lex_state = 6}, + [3881] = {.lex_state = 7, .external_lex_state = 4}, [3882] = {.lex_state = 6}, [3883] = {.lex_state = 6}, [3884] = {.lex_state = 6}, - [3885] = {.lex_state = 6}, + [3885] = {.lex_state = 7, .external_lex_state = 4}, [3886] = {.lex_state = 6}, - [3887] = {.lex_state = 6}, - [3888] = {.lex_state = 6}, + [3887] = {.lex_state = 7, .external_lex_state = 4}, + [3888] = {.lex_state = 7, .external_lex_state = 4}, [3889] = {.lex_state = 6}, - [3890] = {.lex_state = 6}, - [3891] = {.lex_state = 6, .external_lex_state = 4}, + [3890] = {.lex_state = 141}, + [3891] = {.lex_state = 6}, [3892] = {.lex_state = 6}, [3893] = {.lex_state = 6}, [3894] = {.lex_state = 6}, @@ -28129,18 +28140,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3904] = {.lex_state = 6}, [3905] = {.lex_state = 6}, [3906] = {.lex_state = 6}, - [3907] = {.lex_state = 141}, + [3907] = {.lex_state = 6}, [3908] = {.lex_state = 6}, - [3909] = {.lex_state = 6}, + [3909] = {.lex_state = 7, .external_lex_state = 4}, [3910] = {.lex_state = 6}, [3911] = {.lex_state = 6}, - [3912] = {.lex_state = 6, .external_lex_state = 4}, - [3913] = {.lex_state = 7}, + [3912] = {.lex_state = 6}, + [3913] = {.lex_state = 6}, [3914] = {.lex_state = 6}, [3915] = {.lex_state = 6}, [3916] = {.lex_state = 6}, [3917] = {.lex_state = 6}, - [3918] = {.lex_state = 6}, + [3918] = {.lex_state = 9}, [3919] = {.lex_state = 6}, [3920] = {.lex_state = 6}, [3921] = {.lex_state = 6}, @@ -28149,13 +28160,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3924] = {.lex_state = 6}, [3925] = {.lex_state = 6}, [3926] = {.lex_state = 6}, - [3927] = {.lex_state = 6}, + [3927] = {.lex_state = 7, .external_lex_state = 4}, [3928] = {.lex_state = 6}, [3929] = {.lex_state = 6}, [3930] = {.lex_state = 6}, [3931] = {.lex_state = 6}, [3932] = {.lex_state = 6}, - [3933] = {.lex_state = 6}, + [3933] = {.lex_state = 10}, [3934] = {.lex_state = 6}, [3935] = {.lex_state = 6}, [3936] = {.lex_state = 6}, @@ -28166,10 +28177,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3941] = {.lex_state = 6}, [3942] = {.lex_state = 6}, [3943] = {.lex_state = 6}, - [3944] = {.lex_state = 6, .external_lex_state = 4}, + [3944] = {.lex_state = 6}, [3945] = {.lex_state = 6}, [3946] = {.lex_state = 6}, - [3947] = {.lex_state = 6, .external_lex_state = 4}, + [3947] = {.lex_state = 6}, [3948] = {.lex_state = 6}, [3949] = {.lex_state = 6}, [3950] = {.lex_state = 6}, @@ -28178,13 +28189,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3953] = {.lex_state = 6}, [3954] = {.lex_state = 6}, [3955] = {.lex_state = 6}, - [3956] = {.lex_state = 6, .external_lex_state = 4}, + [3956] = {.lex_state = 6}, [3957] = {.lex_state = 6}, [3958] = {.lex_state = 6}, [3959] = {.lex_state = 6}, [3960] = {.lex_state = 6}, - [3961] = {.lex_state = 6}, - [3962] = {.lex_state = 6}, + [3961] = {.lex_state = 7, .external_lex_state = 4}, + [3962] = {.lex_state = 7, .external_lex_state = 4}, [3963] = {.lex_state = 6}, [3964] = {.lex_state = 6}, [3965] = {.lex_state = 6}, @@ -28195,7 +28206,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3970] = {.lex_state = 6}, [3971] = {.lex_state = 6}, [3972] = {.lex_state = 6}, - [3973] = {.lex_state = 6}, + [3973] = {.lex_state = 7, .external_lex_state = 4}, [3974] = {.lex_state = 6}, [3975] = {.lex_state = 6}, [3976] = {.lex_state = 6}, @@ -28208,8 +28219,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3983] = {.lex_state = 6}, [3984] = {.lex_state = 6}, [3985] = {.lex_state = 6}, - [3986] = {.lex_state = 6}, - [3987] = {.lex_state = 6, .external_lex_state = 4}, + [3986] = {.lex_state = 7, .external_lex_state = 4}, + [3987] = {.lex_state = 6}, [3988] = {.lex_state = 6}, [3989] = {.lex_state = 6}, [3990] = {.lex_state = 6}, @@ -28227,17 +28238,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4002] = {.lex_state = 6}, [4003] = {.lex_state = 6}, [4004] = {.lex_state = 6}, - [4005] = {.lex_state = 6, .external_lex_state = 4}, + [4005] = {.lex_state = 6}, [4006] = {.lex_state = 6}, [4007] = {.lex_state = 6}, - [4008] = {.lex_state = 6}, + [4008] = {.lex_state = 141}, [4009] = {.lex_state = 6}, [4010] = {.lex_state = 6}, [4011] = {.lex_state = 6}, [4012] = {.lex_state = 6}, [4013] = {.lex_state = 6}, - [4014] = {.lex_state = 6, .external_lex_state = 4}, - [4015] = {.lex_state = 6}, + [4014] = {.lex_state = 6}, + [4015] = {.lex_state = 7}, [4016] = {.lex_state = 6}, [4017] = {.lex_state = 6}, [4018] = {.lex_state = 6}, @@ -28246,21 +28257,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4021] = {.lex_state = 6}, [4022] = {.lex_state = 6}, [4023] = {.lex_state = 6}, - [4024] = {.lex_state = 6}, - [4025] = {.lex_state = 6}, + [4024] = {.lex_state = 141}, + [4025] = {.lex_state = 7}, [4026] = {.lex_state = 6}, [4027] = {.lex_state = 6}, - [4028] = {.lex_state = 6}, - [4029] = {.lex_state = 6}, - [4030] = {.lex_state = 6}, + [4028] = {.lex_state = 7, .external_lex_state = 4}, + [4029] = {.lex_state = 141}, + [4030] = {.lex_state = 141}, [4031] = {.lex_state = 6}, [4032] = {.lex_state = 6}, - [4033] = {.lex_state = 6}, + [4033] = {.lex_state = 141}, [4034] = {.lex_state = 6}, - [4035] = {.lex_state = 6}, - [4036] = {.lex_state = 6}, - [4037] = {.lex_state = 6}, - [4038] = {.lex_state = 6, .external_lex_state = 4}, + [4035] = {.lex_state = 141}, + [4036] = {.lex_state = 141}, + [4037] = {.lex_state = 141}, + [4038] = {.lex_state = 6}, [4039] = {.lex_state = 6}, [4040] = {.lex_state = 6}, [4041] = {.lex_state = 6}, @@ -28268,18 +28279,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4043] = {.lex_state = 6}, [4044] = {.lex_state = 6}, [4045] = {.lex_state = 6}, - [4046] = {.lex_state = 6}, + [4046] = {.lex_state = 141}, [4047] = {.lex_state = 6}, [4048] = {.lex_state = 6}, [4049] = {.lex_state = 6}, [4050] = {.lex_state = 6}, [4051] = {.lex_state = 6}, - [4052] = {.lex_state = 6}, + [4052] = {.lex_state = 10}, [4053] = {.lex_state = 6}, [4054] = {.lex_state = 6}, [4055] = {.lex_state = 141}, [4056] = {.lex_state = 6}, - [4057] = {.lex_state = 6}, + [4057] = {.lex_state = 141}, [4058] = {.lex_state = 6}, [4059] = {.lex_state = 6}, [4060] = {.lex_state = 6}, @@ -28287,13 +28298,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4062] = {.lex_state = 6}, [4063] = {.lex_state = 6}, [4064] = {.lex_state = 6}, - [4065] = {.lex_state = 6}, + [4065] = {.lex_state = 141}, [4066] = {.lex_state = 6}, [4067] = {.lex_state = 6}, [4068] = {.lex_state = 6}, [4069] = {.lex_state = 6}, [4070] = {.lex_state = 6}, - [4071] = {.lex_state = 6}, + [4071] = {.lex_state = 7}, [4072] = {.lex_state = 6}, [4073] = {.lex_state = 6}, [4074] = {.lex_state = 6}, @@ -28303,19 +28314,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4078] = {.lex_state = 6}, [4079] = {.lex_state = 6}, [4080] = {.lex_state = 6}, - [4081] = {.lex_state = 6}, + [4081] = {.lex_state = 141}, [4082] = {.lex_state = 6}, - [4083] = {.lex_state = 6}, - [4084] = {.lex_state = 6}, + [4083] = {.lex_state = 141}, + [4084] = {.lex_state = 141}, [4085] = {.lex_state = 6}, [4086] = {.lex_state = 6}, [4087] = {.lex_state = 6}, [4088] = {.lex_state = 6}, [4089] = {.lex_state = 6}, [4090] = {.lex_state = 6}, - [4091] = {.lex_state = 6}, - [4092] = {.lex_state = 6}, - [4093] = {.lex_state = 6}, + [4091] = {.lex_state = 141}, + [4092] = {.lex_state = 141}, + [4093] = {.lex_state = 141}, [4094] = {.lex_state = 6}, [4095] = {.lex_state = 6}, [4096] = {.lex_state = 6}, @@ -28325,37 +28336,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4100] = {.lex_state = 6}, [4101] = {.lex_state = 6}, [4102] = {.lex_state = 6}, - [4103] = {.lex_state = 6}, + [4103] = {.lex_state = 141}, [4104] = {.lex_state = 6}, [4105] = {.lex_state = 6}, [4106] = {.lex_state = 6}, [4107] = {.lex_state = 6}, - [4108] = {.lex_state = 6}, + [4108] = {.lex_state = 141}, [4109] = {.lex_state = 6}, - [4110] = {.lex_state = 6}, + [4110] = {.lex_state = 141}, [4111] = {.lex_state = 6}, - [4112] = {.lex_state = 6}, + [4112] = {.lex_state = 141}, [4113] = {.lex_state = 6}, [4114] = {.lex_state = 6}, [4115] = {.lex_state = 6}, [4116] = {.lex_state = 6}, - [4117] = {.lex_state = 6}, + [4117] = {.lex_state = 141}, [4118] = {.lex_state = 6}, [4119] = {.lex_state = 6}, [4120] = {.lex_state = 6}, - [4121] = {.lex_state = 7}, + [4121] = {.lex_state = 6}, [4122] = {.lex_state = 6}, [4123] = {.lex_state = 6}, [4124] = {.lex_state = 6}, - [4125] = {.lex_state = 6}, + [4125] = {.lex_state = 141}, [4126] = {.lex_state = 6}, - [4127] = {.lex_state = 6}, - [4128] = {.lex_state = 6}, - [4129] = {.lex_state = 6}, + [4127] = {.lex_state = 141}, + [4128] = {.lex_state = 141}, + [4129] = {.lex_state = 141}, [4130] = {.lex_state = 6}, [4131] = {.lex_state = 6}, [4132] = {.lex_state = 6}, - [4133] = {.lex_state = 6}, + [4133] = {.lex_state = 141}, [4134] = {.lex_state = 6}, [4135] = {.lex_state = 6}, [4136] = {.lex_state = 6}, @@ -28366,15 +28377,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4141] = {.lex_state = 6}, [4142] = {.lex_state = 6}, [4143] = {.lex_state = 6}, - [4144] = {.lex_state = 6}, + [4144] = {.lex_state = 141}, [4145] = {.lex_state = 6}, - [4146] = {.lex_state = 6}, + [4146] = {.lex_state = 141}, [4147] = {.lex_state = 6}, [4148] = {.lex_state = 6}, [4149] = {.lex_state = 6}, [4150] = {.lex_state = 6}, [4151] = {.lex_state = 6}, - [4152] = {.lex_state = 6}, + [4152] = {.lex_state = 6, .external_lex_state = 4}, [4153] = {.lex_state = 6}, [4154] = {.lex_state = 6}, [4155] = {.lex_state = 6}, @@ -28385,23 +28396,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4160] = {.lex_state = 6}, [4161] = {.lex_state = 6}, [4162] = {.lex_state = 6}, - [4163] = {.lex_state = 6}, + [4163] = {.lex_state = 141}, [4164] = {.lex_state = 6}, [4165] = {.lex_state = 6}, [4166] = {.lex_state = 6}, - [4167] = {.lex_state = 6}, + [4167] = {.lex_state = 141}, [4168] = {.lex_state = 6}, [4169] = {.lex_state = 6}, [4170] = {.lex_state = 6}, - [4171] = {.lex_state = 6}, + [4171] = {.lex_state = 141}, [4172] = {.lex_state = 6}, - [4173] = {.lex_state = 6}, - [4174] = {.lex_state = 141}, + [4173] = {.lex_state = 6, .external_lex_state = 4}, + [4174] = {.lex_state = 6, .external_lex_state = 4}, [4175] = {.lex_state = 6}, [4176] = {.lex_state = 6}, [4177] = {.lex_state = 6}, [4178] = {.lex_state = 6}, - [4179] = {.lex_state = 6}, + [4179] = {.lex_state = 141}, [4180] = {.lex_state = 6}, [4181] = {.lex_state = 6}, [4182] = {.lex_state = 6}, @@ -28413,26 +28424,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4188] = {.lex_state = 6}, [4189] = {.lex_state = 6}, [4190] = {.lex_state = 6}, - [4191] = {.lex_state = 6}, + [4191] = {.lex_state = 6, .external_lex_state = 4}, [4192] = {.lex_state = 6}, [4193] = {.lex_state = 6}, [4194] = {.lex_state = 6}, [4195] = {.lex_state = 6}, [4196] = {.lex_state = 6}, [4197] = {.lex_state = 6}, - [4198] = {.lex_state = 6}, + [4198] = {.lex_state = 141}, [4199] = {.lex_state = 6}, [4200] = {.lex_state = 6}, [4201] = {.lex_state = 6}, - [4202] = {.lex_state = 6}, + [4202] = {.lex_state = 141}, [4203] = {.lex_state = 6}, - [4204] = {.lex_state = 6, .external_lex_state = 4}, + [4204] = {.lex_state = 6}, [4205] = {.lex_state = 6}, - [4206] = {.lex_state = 141}, + [4206] = {.lex_state = 6}, [4207] = {.lex_state = 6}, [4208] = {.lex_state = 6}, [4209] = {.lex_state = 6}, - [4210] = {.lex_state = 6}, + [4210] = {.lex_state = 141}, [4211] = {.lex_state = 6}, [4212] = {.lex_state = 6}, [4213] = {.lex_state = 6}, @@ -28457,36 +28468,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4232] = {.lex_state = 6}, [4233] = {.lex_state = 6}, [4234] = {.lex_state = 6}, - [4235] = {.lex_state = 6}, - [4236] = {.lex_state = 6}, - [4237] = {.lex_state = 7}, + [4235] = {.lex_state = 141}, + [4236] = {.lex_state = 6, .external_lex_state = 4}, + [4237] = {.lex_state = 6}, [4238] = {.lex_state = 6}, [4239] = {.lex_state = 6}, [4240] = {.lex_state = 6}, - [4241] = {.lex_state = 141}, - [4242] = {.lex_state = 6}, - [4243] = {.lex_state = 6}, + [4241] = {.lex_state = 6}, + [4242] = {.lex_state = 141}, + [4243] = {.lex_state = 141}, [4244] = {.lex_state = 6}, [4245] = {.lex_state = 6}, [4246] = {.lex_state = 6}, [4247] = {.lex_state = 6}, [4248] = {.lex_state = 6}, [4249] = {.lex_state = 6}, - [4250] = {.lex_state = 6}, - [4251] = {.lex_state = 6}, + [4250] = {.lex_state = 141}, + [4251] = {.lex_state = 6, .external_lex_state = 4}, [4252] = {.lex_state = 6}, - [4253] = {.lex_state = 6}, - [4254] = {.lex_state = 6}, - [4255] = {.lex_state = 6}, + [4253] = {.lex_state = 6, .external_lex_state = 4}, + [4254] = {.lex_state = 6, .external_lex_state = 4}, + [4255] = {.lex_state = 6, .external_lex_state = 4}, [4256] = {.lex_state = 6}, - [4257] = {.lex_state = 6}, - [4258] = {.lex_state = 6}, + [4257] = {.lex_state = 6, .external_lex_state = 4}, + [4258] = {.lex_state = 6, .external_lex_state = 4}, [4259] = {.lex_state = 6}, [4260] = {.lex_state = 6}, [4261] = {.lex_state = 6}, - [4262] = {.lex_state = 6}, + [4262] = {.lex_state = 6, .external_lex_state = 4}, [4263] = {.lex_state = 6}, - [4264] = {.lex_state = 6}, + [4264] = {.lex_state = 141}, [4265] = {.lex_state = 6}, [4266] = {.lex_state = 6}, [4267] = {.lex_state = 6}, @@ -28498,7 +28509,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4273] = {.lex_state = 6}, [4274] = {.lex_state = 6}, [4275] = {.lex_state = 6}, - [4276] = {.lex_state = 6}, + [4276] = {.lex_state = 141}, [4277] = {.lex_state = 6}, [4278] = {.lex_state = 6}, [4279] = {.lex_state = 6}, @@ -28506,9 +28517,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4281] = {.lex_state = 6}, [4282] = {.lex_state = 6}, [4283] = {.lex_state = 6}, - [4284] = {.lex_state = 6}, + [4284] = {.lex_state = 141}, [4285] = {.lex_state = 6}, - [4286] = {.lex_state = 6}, + [4286] = {.lex_state = 6, .external_lex_state = 4}, [4287] = {.lex_state = 6}, [4288] = {.lex_state = 6}, [4289] = {.lex_state = 6}, @@ -28518,14 +28529,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4293] = {.lex_state = 6}, [4294] = {.lex_state = 6}, [4295] = {.lex_state = 6}, - [4296] = {.lex_state = 6}, - [4297] = {.lex_state = 6}, + [4296] = {.lex_state = 6, .external_lex_state = 4}, + [4297] = {.lex_state = 6, .external_lex_state = 4}, [4298] = {.lex_state = 6}, [4299] = {.lex_state = 6}, - [4300] = {.lex_state = 6}, - [4301] = {.lex_state = 6}, + [4300] = {.lex_state = 6, .external_lex_state = 4}, + [4301] = {.lex_state = 6, .external_lex_state = 4}, [4302] = {.lex_state = 6}, - [4303] = {.lex_state = 6}, + [4303] = {.lex_state = 141}, [4304] = {.lex_state = 6}, [4305] = {.lex_state = 6}, [4306] = {.lex_state = 6}, @@ -28539,27 +28550,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4314] = {.lex_state = 6}, [4315] = {.lex_state = 6}, [4316] = {.lex_state = 6}, - [4317] = {.lex_state = 6}, + [4317] = {.lex_state = 141}, [4318] = {.lex_state = 6}, [4319] = {.lex_state = 6}, - [4320] = {.lex_state = 6}, + [4320] = {.lex_state = 6, .external_lex_state = 4}, [4321] = {.lex_state = 6}, - [4322] = {.lex_state = 6}, + [4322] = {.lex_state = 141}, [4323] = {.lex_state = 6}, [4324] = {.lex_state = 6}, [4325] = {.lex_state = 6}, [4326] = {.lex_state = 6}, - [4327] = {.lex_state = 141}, + [4327] = {.lex_state = 6}, [4328] = {.lex_state = 6}, - [4329] = {.lex_state = 6}, - [4330] = {.lex_state = 6}, + [4329] = {.lex_state = 141}, + [4330] = {.lex_state = 141}, [4331] = {.lex_state = 6}, [4332] = {.lex_state = 6}, [4333] = {.lex_state = 6}, - [4334] = {.lex_state = 6}, + [4334] = {.lex_state = 141}, [4335] = {.lex_state = 6}, - [4336] = {.lex_state = 6}, - [4337] = {.lex_state = 6}, + [4336] = {.lex_state = 6, .external_lex_state = 4}, + [4337] = {.lex_state = 6, .external_lex_state = 4}, [4338] = {.lex_state = 6}, [4339] = {.lex_state = 6}, [4340] = {.lex_state = 6}, @@ -28574,23 +28585,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4349] = {.lex_state = 6}, [4350] = {.lex_state = 6}, [4351] = {.lex_state = 6}, - [4352] = {.lex_state = 6}, + [4352] = {.lex_state = 141}, [4353] = {.lex_state = 6}, [4354] = {.lex_state = 6}, [4355] = {.lex_state = 6}, - [4356] = {.lex_state = 6}, - [4357] = {.lex_state = 6}, - [4358] = {.lex_state = 6}, + [4356] = {.lex_state = 7}, + [4357] = {.lex_state = 141}, + [4358] = {.lex_state = 141}, [4359] = {.lex_state = 6}, [4360] = {.lex_state = 6}, [4361] = {.lex_state = 6}, - [4362] = {.lex_state = 6}, - [4363] = {.lex_state = 6}, + [4362] = {.lex_state = 141}, + [4363] = {.lex_state = 141}, [4364] = {.lex_state = 6}, [4365] = {.lex_state = 6}, [4366] = {.lex_state = 6}, [4367] = {.lex_state = 6}, - [4368] = {.lex_state = 7}, + [4368] = {.lex_state = 6}, [4369] = {.lex_state = 6}, [4370] = {.lex_state = 6}, [4371] = {.lex_state = 6}, @@ -28605,7 +28616,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4380] = {.lex_state = 6}, [4381] = {.lex_state = 6}, [4382] = {.lex_state = 6}, - [4383] = {.lex_state = 6}, + [4383] = {.lex_state = 141}, [4384] = {.lex_state = 6}, [4385] = {.lex_state = 6}, [4386] = {.lex_state = 6}, @@ -28617,13 +28628,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4392] = {.lex_state = 6}, [4393] = {.lex_state = 6}, [4394] = {.lex_state = 6}, - [4395] = {.lex_state = 7}, + [4395] = {.lex_state = 6}, [4396] = {.lex_state = 6}, [4397] = {.lex_state = 6}, [4398] = {.lex_state = 6}, - [4399] = {.lex_state = 6}, + [4399] = {.lex_state = 141}, [4400] = {.lex_state = 6}, - [4401] = {.lex_state = 141}, + [4401] = {.lex_state = 6}, [4402] = {.lex_state = 6}, [4403] = {.lex_state = 6}, [4404] = {.lex_state = 6}, @@ -28644,7 +28655,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4419] = {.lex_state = 6}, [4420] = {.lex_state = 6}, [4421] = {.lex_state = 6}, - [4422] = {.lex_state = 6}, + [4422] = {.lex_state = 9}, [4423] = {.lex_state = 6}, [4424] = {.lex_state = 6}, [4425] = {.lex_state = 6}, @@ -28657,11 +28668,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4432] = {.lex_state = 6}, [4433] = {.lex_state = 6}, [4434] = {.lex_state = 6}, - [4435] = {.lex_state = 6}, + [4435] = {.lex_state = 6, .external_lex_state = 4}, [4436] = {.lex_state = 6}, [4437] = {.lex_state = 6}, [4438] = {.lex_state = 6}, - [4439] = {.lex_state = 6}, + [4439] = {.lex_state = 141}, [4440] = {.lex_state = 6}, [4441] = {.lex_state = 6}, [4442] = {.lex_state = 6}, @@ -28690,13 +28701,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4465] = {.lex_state = 6}, [4466] = {.lex_state = 6}, [4467] = {.lex_state = 6}, - [4468] = {.lex_state = 6}, + [4468] = {.lex_state = 141}, [4469] = {.lex_state = 6}, - [4470] = {.lex_state = 6}, + [4470] = {.lex_state = 7}, [4471] = {.lex_state = 6}, [4472] = {.lex_state = 6}, [4473] = {.lex_state = 6}, - [4474] = {.lex_state = 6}, + [4474] = {.lex_state = 7, .external_lex_state = 4}, [4475] = {.lex_state = 6}, [4476] = {.lex_state = 6}, [4477] = {.lex_state = 6}, @@ -28706,11 +28717,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4481] = {.lex_state = 6}, [4482] = {.lex_state = 6}, [4483] = {.lex_state = 6}, - [4484] = {.lex_state = 6}, + [4484] = {.lex_state = 141}, [4485] = {.lex_state = 6}, - [4486] = {.lex_state = 6}, - [4487] = {.lex_state = 6}, - [4488] = {.lex_state = 6}, + [4486] = {.lex_state = 141}, + [4487] = {.lex_state = 7}, + [4488] = {.lex_state = 7}, [4489] = {.lex_state = 6}, [4490] = {.lex_state = 6}, [4491] = {.lex_state = 6}, @@ -28718,8 +28729,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4493] = {.lex_state = 6}, [4494] = {.lex_state = 6}, [4495] = {.lex_state = 6}, - [4496] = {.lex_state = 6}, - [4497] = {.lex_state = 6}, + [4496] = {.lex_state = 141}, + [4497] = {.lex_state = 141}, [4498] = {.lex_state = 6}, [4499] = {.lex_state = 6}, [4500] = {.lex_state = 6}, @@ -28732,12 +28743,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4507] = {.lex_state = 6}, [4508] = {.lex_state = 6}, [4509] = {.lex_state = 6}, - [4510] = {.lex_state = 6}, + [4510] = {.lex_state = 140}, [4511] = {.lex_state = 6}, [4512] = {.lex_state = 6}, [4513] = {.lex_state = 6}, [4514] = {.lex_state = 7}, - [4515] = {.lex_state = 6}, + [4515] = {.lex_state = 141}, [4516] = {.lex_state = 6}, [4517] = {.lex_state = 6}, [4518] = {.lex_state = 6}, @@ -28747,8 +28758,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4522] = {.lex_state = 6}, [4523] = {.lex_state = 6}, [4524] = {.lex_state = 6}, - [4525] = {.lex_state = 6}, - [4526] = {.lex_state = 6}, + [4525] = {.lex_state = 7}, + [4526] = {.lex_state = 141}, [4527] = {.lex_state = 6}, [4528] = {.lex_state = 6}, [4529] = {.lex_state = 6}, @@ -28767,7 +28778,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4542] = {.lex_state = 6}, [4543] = {.lex_state = 6}, [4544] = {.lex_state = 6}, - [4545] = {.lex_state = 6}, + [4545] = {.lex_state = 141}, [4546] = {.lex_state = 6}, [4547] = {.lex_state = 6}, [4548] = {.lex_state = 6}, @@ -28795,7 +28806,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4570] = {.lex_state = 6}, [4571] = {.lex_state = 6}, [4572] = {.lex_state = 6}, - [4573] = {.lex_state = 6}, + [4573] = {.lex_state = 7}, [4574] = {.lex_state = 6}, [4575] = {.lex_state = 6}, [4576] = {.lex_state = 6}, @@ -28821,27 +28832,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4596] = {.lex_state = 6}, [4597] = {.lex_state = 6}, [4598] = {.lex_state = 6}, - [4599] = {.lex_state = 6}, + [4599] = {.lex_state = 141}, [4600] = {.lex_state = 6}, [4601] = {.lex_state = 6}, - [4602] = {.lex_state = 141}, - [4603] = {.lex_state = 6}, + [4602] = {.lex_state = 6}, + [4603] = {.lex_state = 7}, [4604] = {.lex_state = 6}, [4605] = {.lex_state = 6}, [4606] = {.lex_state = 6}, [4607] = {.lex_state = 6}, [4608] = {.lex_state = 6}, - [4609] = {.lex_state = 141}, + [4609] = {.lex_state = 6}, [4610] = {.lex_state = 6}, [4611] = {.lex_state = 6}, [4612] = {.lex_state = 6}, [4613] = {.lex_state = 6}, [4614] = {.lex_state = 6}, [4615] = {.lex_state = 6}, - [4616] = {.lex_state = 6}, - [4617] = {.lex_state = 9}, + [4616] = {.lex_state = 141}, + [4617] = {.lex_state = 6}, [4618] = {.lex_state = 6}, - [4619] = {.lex_state = 7}, + [4619] = {.lex_state = 6}, [4620] = {.lex_state = 6}, [4621] = {.lex_state = 6}, [4622] = {.lex_state = 6}, @@ -28850,225 +28861,225 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4625] = {.lex_state = 6}, [4626] = {.lex_state = 6}, [4627] = {.lex_state = 6}, - [4628] = {.lex_state = 141}, + [4628] = {.lex_state = 6}, [4629] = {.lex_state = 6}, [4630] = {.lex_state = 6}, [4631] = {.lex_state = 6}, [4632] = {.lex_state = 6}, [4633] = {.lex_state = 6}, - [4634] = {.lex_state = 6}, - [4635] = {.lex_state = 6}, + [4634] = {.lex_state = 141}, + [4635] = {.lex_state = 7}, [4636] = {.lex_state = 6}, - [4637] = {.lex_state = 7}, + [4637] = {.lex_state = 6}, [4638] = {.lex_state = 6}, [4639] = {.lex_state = 6}, [4640] = {.lex_state = 6}, - [4641] = {.lex_state = 141}, - [4642] = {.lex_state = 7}, + [4641] = {.lex_state = 6}, + [4642] = {.lex_state = 6}, [4643] = {.lex_state = 6}, - [4644] = {.lex_state = 141}, - [4645] = {.lex_state = 7}, + [4644] = {.lex_state = 6}, + [4645] = {.lex_state = 6, .external_lex_state = 4}, [4646] = {.lex_state = 6}, - [4647] = {.lex_state = 7}, + [4647] = {.lex_state = 6}, [4648] = {.lex_state = 6}, - [4649] = {.lex_state = 6}, + [4649] = {.lex_state = 141}, [4650] = {.lex_state = 6}, - [4651] = {.lex_state = 7, .external_lex_state = 4}, - [4652] = {.lex_state = 9}, - [4653] = {.lex_state = 7}, - [4654] = {.lex_state = 9}, - [4655] = {.lex_state = 9}, - [4656] = {.lex_state = 141}, + [4651] = {.lex_state = 141}, + [4652] = {.lex_state = 6}, + [4653] = {.lex_state = 6}, + [4654] = {.lex_state = 6}, + [4655] = {.lex_state = 6}, + [4656] = {.lex_state = 6}, [4657] = {.lex_state = 6}, - [4658] = {.lex_state = 6}, - [4659] = {.lex_state = 7, .external_lex_state = 4}, - [4660] = {.lex_state = 9}, + [4658] = {.lex_state = 7}, + [4659] = {.lex_state = 6}, + [4660] = {.lex_state = 6}, [4661] = {.lex_state = 6}, - [4662] = {.lex_state = 9}, - [4663] = {.lex_state = 9}, - [4664] = {.lex_state = 7, .external_lex_state = 4}, - [4665] = {.lex_state = 7, .external_lex_state = 4}, - [4666] = {.lex_state = 7, .external_lex_state = 4}, - [4667] = {.lex_state = 7, .external_lex_state = 4}, - [4668] = {.lex_state = 7}, - [4669] = {.lex_state = 9}, - [4670] = {.lex_state = 6}, - [4671] = {.lex_state = 6}, - [4672] = {.lex_state = 6}, - [4673] = {.lex_state = 7, .external_lex_state = 4}, - [4674] = {.lex_state = 7, .external_lex_state = 4}, + [4662] = {.lex_state = 6}, + [4663] = {.lex_state = 6}, + [4664] = {.lex_state = 6}, + [4665] = {.lex_state = 6}, + [4666] = {.lex_state = 6}, + [4667] = {.lex_state = 6}, + [4668] = {.lex_state = 6}, + [4669] = {.lex_state = 6}, + [4670] = {.lex_state = 141}, + [4671] = {.lex_state = 7}, + [4672] = {.lex_state = 141}, + [4673] = {.lex_state = 6}, + [4674] = {.lex_state = 6}, [4675] = {.lex_state = 6}, - [4676] = {.lex_state = 141}, - [4677] = {.lex_state = 6}, + [4676] = {.lex_state = 6}, + [4677] = {.lex_state = 141}, [4678] = {.lex_state = 6}, [4679] = {.lex_state = 6}, [4680] = {.lex_state = 6}, [4681] = {.lex_state = 6}, [4682] = {.lex_state = 6}, - [4683] = {.lex_state = 6}, + [4683] = {.lex_state = 141}, [4684] = {.lex_state = 6}, - [4685] = {.lex_state = 7, .external_lex_state = 4}, + [4685] = {.lex_state = 6}, [4686] = {.lex_state = 6}, [4687] = {.lex_state = 6}, [4688] = {.lex_state = 6}, [4689] = {.lex_state = 6}, [4690] = {.lex_state = 6}, - [4691] = {.lex_state = 7, .external_lex_state = 4}, + [4691] = {.lex_state = 6}, [4692] = {.lex_state = 6}, [4693] = {.lex_state = 6}, [4694] = {.lex_state = 6}, - [4695] = {.lex_state = 6}, + [4695] = {.lex_state = 141}, [4696] = {.lex_state = 6}, [4697] = {.lex_state = 6}, - [4698] = {.lex_state = 6}, + [4698] = {.lex_state = 7}, [4699] = {.lex_state = 6}, - [4700] = {.lex_state = 7, .external_lex_state = 4}, - [4701] = {.lex_state = 7, .external_lex_state = 4}, - [4702] = {.lex_state = 7, .external_lex_state = 4}, - [4703] = {.lex_state = 7, .external_lex_state = 4}, + [4700] = {.lex_state = 6}, + [4701] = {.lex_state = 6}, + [4702] = {.lex_state = 6}, + [4703] = {.lex_state = 6}, [4704] = {.lex_state = 6}, [4705] = {.lex_state = 6}, [4706] = {.lex_state = 6}, - [4707] = {.lex_state = 141}, + [4707] = {.lex_state = 6}, [4708] = {.lex_state = 6}, - [4709] = {.lex_state = 6}, - [4710] = {.lex_state = 6}, + [4709] = {.lex_state = 141}, + [4710] = {.lex_state = 141}, [4711] = {.lex_state = 6}, - [4712] = {.lex_state = 7, .external_lex_state = 4}, + [4712] = {.lex_state = 6}, [4713] = {.lex_state = 6}, - [4714] = {.lex_state = 141}, + [4714] = {.lex_state = 6}, [4715] = {.lex_state = 6}, - [4716] = {.lex_state = 7, .external_lex_state = 4}, - [4717] = {.lex_state = 7, .external_lex_state = 4}, - [4718] = {.lex_state = 6}, - [4719] = {.lex_state = 10}, + [4716] = {.lex_state = 6}, + [4717] = {.lex_state = 141}, + [4718] = {.lex_state = 7}, + [4719] = {.lex_state = 6}, [4720] = {.lex_state = 6}, [4721] = {.lex_state = 6}, - [4722] = {.lex_state = 7, .external_lex_state = 4}, - [4723] = {.lex_state = 7, .external_lex_state = 4}, - [4724] = {.lex_state = 141}, + [4722] = {.lex_state = 6}, + [4723] = {.lex_state = 141}, + [4724] = {.lex_state = 6}, [4725] = {.lex_state = 6}, [4726] = {.lex_state = 6}, [4727] = {.lex_state = 6}, - [4728] = {.lex_state = 7, .external_lex_state = 4}, - [4729] = {.lex_state = 7}, + [4728] = {.lex_state = 141}, + [4729] = {.lex_state = 6}, [4730] = {.lex_state = 6}, - [4731] = {.lex_state = 7, .external_lex_state = 4}, - [4732] = {.lex_state = 7, .external_lex_state = 4}, - [4733] = {.lex_state = 141}, - [4734] = {.lex_state = 7, .external_lex_state = 4}, - [4735] = {.lex_state = 141}, + [4731] = {.lex_state = 6}, + [4732] = {.lex_state = 6}, + [4733] = {.lex_state = 6}, + [4734] = {.lex_state = 6}, + [4735] = {.lex_state = 6}, [4736] = {.lex_state = 6}, [4737] = {.lex_state = 6}, [4738] = {.lex_state = 6}, [4739] = {.lex_state = 6}, - [4740] = {.lex_state = 141}, - [4741] = {.lex_state = 141}, + [4740] = {.lex_state = 6}, + [4741] = {.lex_state = 6}, [4742] = {.lex_state = 6}, [4743] = {.lex_state = 6}, - [4744] = {.lex_state = 141}, + [4744] = {.lex_state = 6}, [4745] = {.lex_state = 6}, - [4746] = {.lex_state = 141}, - [4747] = {.lex_state = 141}, + [4746] = {.lex_state = 6}, + [4747] = {.lex_state = 6}, [4748] = {.lex_state = 6}, - [4749] = {.lex_state = 141}, + [4749] = {.lex_state = 6}, [4750] = {.lex_state = 6}, [4751] = {.lex_state = 6}, - [4752] = {.lex_state = 6}, + [4752] = {.lex_state = 141}, [4753] = {.lex_state = 6}, - [4754] = {.lex_state = 7}, - [4755] = {.lex_state = 141}, - [4756] = {.lex_state = 141}, - [4757] = {.lex_state = 141}, - [4758] = {.lex_state = 6}, - [4759] = {.lex_state = 141}, + [4754] = {.lex_state = 6}, + [4755] = {.lex_state = 6}, + [4756] = {.lex_state = 6}, + [4757] = {.lex_state = 6}, + [4758] = {.lex_state = 14}, + [4759] = {.lex_state = 6}, [4760] = {.lex_state = 6}, - [4761] = {.lex_state = 141}, - [4762] = {.lex_state = 141}, - [4763] = {.lex_state = 141}, - [4764] = {.lex_state = 141}, - [4765] = {.lex_state = 141}, - [4766] = {.lex_state = 141}, + [4761] = {.lex_state = 6}, + [4762] = {.lex_state = 6}, + [4763] = {.lex_state = 6}, + [4764] = {.lex_state = 14}, + [4765] = {.lex_state = 6}, + [4766] = {.lex_state = 6}, [4767] = {.lex_state = 6}, - [4768] = {.lex_state = 141}, + [4768] = {.lex_state = 6}, [4769] = {.lex_state = 6}, [4770] = {.lex_state = 6}, - [4771] = {.lex_state = 141}, + [4771] = {.lex_state = 6}, [4772] = {.lex_state = 6}, - [4773] = {.lex_state = 141}, - [4774] = {.lex_state = 6}, + [4773] = {.lex_state = 6}, + [4774] = {.lex_state = 141}, [4775] = {.lex_state = 6}, - [4776] = {.lex_state = 6}, - [4777] = {.lex_state = 6}, + [4776] = {.lex_state = 14}, + [4777] = {.lex_state = 141}, [4778] = {.lex_state = 6}, [4779] = {.lex_state = 6}, - [4780] = {.lex_state = 9}, + [4780] = {.lex_state = 6}, [4781] = {.lex_state = 6}, [4782] = {.lex_state = 6}, [4783] = {.lex_state = 6}, [4784] = {.lex_state = 6}, - [4785] = {.lex_state = 6}, + [4785] = {.lex_state = 14}, [4786] = {.lex_state = 6}, [4787] = {.lex_state = 6}, - [4788] = {.lex_state = 141}, + [4788] = {.lex_state = 6}, [4789] = {.lex_state = 6}, - [4790] = {.lex_state = 6}, + [4790] = {.lex_state = 141}, [4791] = {.lex_state = 6}, - [4792] = {.lex_state = 6}, + [4792] = {.lex_state = 14}, [4793] = {.lex_state = 6}, [4794] = {.lex_state = 6}, [4795] = {.lex_state = 6}, [4796] = {.lex_state = 6}, - [4797] = {.lex_state = 141}, - [4798] = {.lex_state = 141}, - [4799] = {.lex_state = 141}, - [4800] = {.lex_state = 141}, - [4801] = {.lex_state = 141}, - [4802] = {.lex_state = 141}, + [4797] = {.lex_state = 6}, + [4798] = {.lex_state = 6}, + [4799] = {.lex_state = 6}, + [4800] = {.lex_state = 6}, + [4801] = {.lex_state = 14}, + [4802] = {.lex_state = 6}, [4803] = {.lex_state = 141}, - [4804] = {.lex_state = 141}, - [4805] = {.lex_state = 141}, - [4806] = {.lex_state = 141}, + [4804] = {.lex_state = 6}, + [4805] = {.lex_state = 6}, + [4806] = {.lex_state = 7}, [4807] = {.lex_state = 6}, - [4808] = {.lex_state = 6}, + [4808] = {.lex_state = 141}, [4809] = {.lex_state = 6}, [4810] = {.lex_state = 6}, [4811] = {.lex_state = 6}, - [4812] = {.lex_state = 141}, - [4813] = {.lex_state = 6}, - [4814] = {.lex_state = 141}, - [4815] = {.lex_state = 141}, - [4816] = {.lex_state = 141}, - [4817] = {.lex_state = 6}, - [4818] = {.lex_state = 141}, + [4812] = {.lex_state = 6}, + [4813] = {.lex_state = 141}, + [4814] = {.lex_state = 6}, + [4815] = {.lex_state = 6}, + [4816] = {.lex_state = 14}, + [4817] = {.lex_state = 141}, + [4818] = {.lex_state = 6}, [4819] = {.lex_state = 6}, [4820] = {.lex_state = 6}, [4821] = {.lex_state = 6}, - [4822] = {.lex_state = 141}, + [4822] = {.lex_state = 6}, [4823] = {.lex_state = 6}, - [4824] = {.lex_state = 141}, + [4824] = {.lex_state = 6}, [4825] = {.lex_state = 6}, - [4826] = {.lex_state = 141}, + [4826] = {.lex_state = 6}, [4827] = {.lex_state = 6}, [4828] = {.lex_state = 6}, - [4829] = {.lex_state = 6}, - [4830] = {.lex_state = 141}, + [4829] = {.lex_state = 141}, + [4830] = {.lex_state = 6}, [4831] = {.lex_state = 6}, - [4832] = {.lex_state = 141}, - [4833] = {.lex_state = 6}, - [4834] = {.lex_state = 6}, - [4835] = {.lex_state = 6}, + [4832] = {.lex_state = 6}, + [4833] = {.lex_state = 141}, + [4834] = {.lex_state = 141}, + [4835] = {.lex_state = 141}, [4836] = {.lex_state = 141}, - [4837] = {.lex_state = 6}, + [4837] = {.lex_state = 141}, [4838] = {.lex_state = 6}, [4839] = {.lex_state = 6}, - [4840] = {.lex_state = 6}, - [4841] = {.lex_state = 6}, + [4840] = {.lex_state = 141}, + [4841] = {.lex_state = 141}, [4842] = {.lex_state = 141}, - [4843] = {.lex_state = 141}, + [4843] = {.lex_state = 6}, [4844] = {.lex_state = 6}, - [4845] = {.lex_state = 7, .external_lex_state = 4}, - [4846] = {.lex_state = 6}, + [4845] = {.lex_state = 6}, + [4846] = {.lex_state = 141}, [4847] = {.lex_state = 6}, [4848] = {.lex_state = 6}, [4849] = {.lex_state = 141}, @@ -29087,8 +29098,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4862] = {.lex_state = 6}, [4863] = {.lex_state = 6}, [4864] = {.lex_state = 6}, - [4865] = {.lex_state = 141}, - [4866] = {.lex_state = 7}, + [4865] = {.lex_state = 14}, + [4866] = {.lex_state = 141}, [4867] = {.lex_state = 6}, [4868] = {.lex_state = 6}, [4869] = {.lex_state = 6}, @@ -29096,37 +29107,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4871] = {.lex_state = 141}, [4872] = {.lex_state = 6}, [4873] = {.lex_state = 6}, - [4874] = {.lex_state = 6}, - [4875] = {.lex_state = 141}, - [4876] = {.lex_state = 6}, - [4877] = {.lex_state = 141}, + [4874] = {.lex_state = 141}, + [4875] = {.lex_state = 6}, + [4876] = {.lex_state = 141}, + [4877] = {.lex_state = 6}, [4878] = {.lex_state = 6}, [4879] = {.lex_state = 6}, - [4880] = {.lex_state = 141}, - [4881] = {.lex_state = 10}, - [4882] = {.lex_state = 6}, + [4880] = {.lex_state = 6}, + [4881] = {.lex_state = 6}, + [4882] = {.lex_state = 141}, [4883] = {.lex_state = 6}, [4884] = {.lex_state = 6}, [4885] = {.lex_state = 6}, - [4886] = {.lex_state = 6}, - [4887] = {.lex_state = 6}, - [4888] = {.lex_state = 141}, - [4889] = {.lex_state = 141}, - [4890] = {.lex_state = 141}, - [4891] = {.lex_state = 141}, - [4892] = {.lex_state = 6}, - [4893] = {.lex_state = 6}, - [4894] = {.lex_state = 141}, + [4886] = {.lex_state = 141}, + [4887] = {.lex_state = 141}, + [4888] = {.lex_state = 6}, + [4889] = {.lex_state = 6}, + [4890] = {.lex_state = 7, .external_lex_state = 4}, + [4891] = {.lex_state = 6}, + [4892] = {.lex_state = 7}, + [4893] = {.lex_state = 141}, + [4894] = {.lex_state = 6}, [4895] = {.lex_state = 6}, [4896] = {.lex_state = 6}, [4897] = {.lex_state = 6}, [4898] = {.lex_state = 6}, - [4899] = {.lex_state = 6}, - [4900] = {.lex_state = 7}, + [4899] = {.lex_state = 141}, + [4900] = {.lex_state = 141}, [4901] = {.lex_state = 6}, [4902] = {.lex_state = 6}, [4903] = {.lex_state = 6}, - [4904] = {.lex_state = 6}, + [4904] = {.lex_state = 141}, [4905] = {.lex_state = 6}, [4906] = {.lex_state = 6}, [4907] = {.lex_state = 6}, @@ -29135,96 +29146,96 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4910] = {.lex_state = 6}, [4911] = {.lex_state = 6}, [4912] = {.lex_state = 6}, - [4913] = {.lex_state = 6}, + [4913] = {.lex_state = 141}, [4914] = {.lex_state = 6}, [4915] = {.lex_state = 6}, [4916] = {.lex_state = 6}, [4917] = {.lex_state = 6}, [4918] = {.lex_state = 6}, - [4919] = {.lex_state = 141}, - [4920] = {.lex_state = 6}, + [4919] = {.lex_state = 6}, + [4920] = {.lex_state = 14}, [4921] = {.lex_state = 6}, [4922] = {.lex_state = 6}, [4923] = {.lex_state = 6}, - [4924] = {.lex_state = 6}, - [4925] = {.lex_state = 141}, + [4924] = {.lex_state = 141}, + [4925] = {.lex_state = 6}, [4926] = {.lex_state = 6}, - [4927] = {.lex_state = 6}, + [4927] = {.lex_state = 7}, [4928] = {.lex_state = 6}, [4929] = {.lex_state = 6}, [4930] = {.lex_state = 6}, - [4931] = {.lex_state = 7}, - [4932] = {.lex_state = 7}, - [4933] = {.lex_state = 7}, + [4931] = {.lex_state = 6}, + [4932] = {.lex_state = 141}, + [4933] = {.lex_state = 6}, [4934] = {.lex_state = 6}, [4935] = {.lex_state = 6}, - [4936] = {.lex_state = 6}, - [4937] = {.lex_state = 6}, + [4936] = {.lex_state = 141}, + [4937] = {.lex_state = 14}, [4938] = {.lex_state = 6}, - [4939] = {.lex_state = 6}, + [4939] = {.lex_state = 141}, [4940] = {.lex_state = 6}, [4941] = {.lex_state = 6}, - [4942] = {.lex_state = 7}, + [4942] = {.lex_state = 6}, [4943] = {.lex_state = 6}, - [4944] = {.lex_state = 7}, + [4944] = {.lex_state = 6}, [4945] = {.lex_state = 6}, - [4946] = {.lex_state = 6}, + [4946] = {.lex_state = 141}, [4947] = {.lex_state = 6}, [4948] = {.lex_state = 6}, - [4949] = {.lex_state = 7}, - [4950] = {.lex_state = 7}, - [4951] = {.lex_state = 7}, + [4949] = {.lex_state = 6}, + [4950] = {.lex_state = 6}, + [4951] = {.lex_state = 6}, [4952] = {.lex_state = 6}, [4953] = {.lex_state = 6}, [4954] = {.lex_state = 6}, - [4955] = {.lex_state = 141}, + [4955] = {.lex_state = 6}, [4956] = {.lex_state = 6}, [4957] = {.lex_state = 6}, [4958] = {.lex_state = 6}, [4959] = {.lex_state = 6}, [4960] = {.lex_state = 6}, - [4961] = {.lex_state = 141}, - [4962] = {.lex_state = 141}, - [4963] = {.lex_state = 141}, - [4964] = {.lex_state = 6}, + [4961] = {.lex_state = 6}, + [4962] = {.lex_state = 14}, + [4963] = {.lex_state = 6}, + [4964] = {.lex_state = 141}, [4965] = {.lex_state = 6}, [4966] = {.lex_state = 6}, [4967] = {.lex_state = 6}, [4968] = {.lex_state = 6}, [4969] = {.lex_state = 6}, - [4970] = {.lex_state = 6}, - [4971] = {.lex_state = 7}, - [4972] = {.lex_state = 141}, + [4970] = {.lex_state = 141}, + [4971] = {.lex_state = 6}, + [4972] = {.lex_state = 6}, [4973] = {.lex_state = 6}, [4974] = {.lex_state = 6}, - [4975] = {.lex_state = 140}, + [4975] = {.lex_state = 6}, [4976] = {.lex_state = 6}, [4977] = {.lex_state = 6}, - [4978] = {.lex_state = 6}, + [4978] = {.lex_state = 14}, [4979] = {.lex_state = 6}, - [4980] = {.lex_state = 141}, - [4981] = {.lex_state = 6}, - [4982] = {.lex_state = 6}, + [4980] = {.lex_state = 6}, + [4981] = {.lex_state = 140}, + [4982] = {.lex_state = 141}, [4983] = {.lex_state = 6}, [4984] = {.lex_state = 6}, [4985] = {.lex_state = 6}, [4986] = {.lex_state = 6}, - [4987] = {.lex_state = 141}, + [4987] = {.lex_state = 6}, [4988] = {.lex_state = 6}, [4989] = {.lex_state = 6}, [4990] = {.lex_state = 6}, - [4991] = {.lex_state = 141}, - [4992] = {.lex_state = 141}, - [4993] = {.lex_state = 6}, + [4991] = {.lex_state = 6}, + [4992] = {.lex_state = 6}, + [4993] = {.lex_state = 140}, [4994] = {.lex_state = 6}, - [4995] = {.lex_state = 7}, + [4995] = {.lex_state = 6}, [4996] = {.lex_state = 6}, - [4997] = {.lex_state = 6}, + [4997] = {.lex_state = 141}, [4998] = {.lex_state = 6}, [4999] = {.lex_state = 6}, - [5000] = {.lex_state = 141}, - [5001] = {.lex_state = 141}, - [5002] = {.lex_state = 141}, + [5000] = {.lex_state = 6}, + [5001] = {.lex_state = 6}, + [5002] = {.lex_state = 6}, [5003] = {.lex_state = 6}, [5004] = {.lex_state = 6}, [5005] = {.lex_state = 6}, @@ -29232,36 +29243,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5007] = {.lex_state = 6}, [5008] = {.lex_state = 6}, [5009] = {.lex_state = 6}, - [5010] = {.lex_state = 7}, - [5011] = {.lex_state = 6}, + [5010] = {.lex_state = 6}, + [5011] = {.lex_state = 7}, [5012] = {.lex_state = 6}, - [5013] = {.lex_state = 141}, + [5013] = {.lex_state = 6}, [5014] = {.lex_state = 6}, - [5015] = {.lex_state = 141}, + [5015] = {.lex_state = 6}, [5016] = {.lex_state = 6}, - [5017] = {.lex_state = 6}, + [5017] = {.lex_state = 141}, [5018] = {.lex_state = 6}, - [5019] = {.lex_state = 141}, - [5020] = {.lex_state = 141}, + [5019] = {.lex_state = 6}, + [5020] = {.lex_state = 6}, [5021] = {.lex_state = 6}, [5022] = {.lex_state = 6}, [5023] = {.lex_state = 6}, [5024] = {.lex_state = 6}, [5025] = {.lex_state = 6}, - [5026] = {.lex_state = 141}, + [5026] = {.lex_state = 6}, [5027] = {.lex_state = 6}, [5028] = {.lex_state = 6}, [5029] = {.lex_state = 6}, [5030] = {.lex_state = 6}, - [5031] = {.lex_state = 6}, + [5031] = {.lex_state = 14}, [5032] = {.lex_state = 6}, - [5033] = {.lex_state = 141}, - [5034] = {.lex_state = 7}, - [5035] = {.lex_state = 141}, - [5036] = {.lex_state = 141}, - [5037] = {.lex_state = 6}, + [5033] = {.lex_state = 6}, + [5034] = {.lex_state = 6}, + [5035] = {.lex_state = 6}, + [5036] = {.lex_state = 6}, + [5037] = {.lex_state = 141}, [5038] = {.lex_state = 6}, - [5039] = {.lex_state = 141}, + [5039] = {.lex_state = 6}, [5040] = {.lex_state = 6}, [5041] = {.lex_state = 6}, [5042] = {.lex_state = 6}, @@ -29269,306 +29280,306 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5044] = {.lex_state = 6}, [5045] = {.lex_state = 6}, [5046] = {.lex_state = 6}, - [5047] = {.lex_state = 7, .external_lex_state = 4}, + [5047] = {.lex_state = 6}, [5048] = {.lex_state = 6}, [5049] = {.lex_state = 6}, - [5050] = {.lex_state = 6}, + [5050] = {.lex_state = 141}, [5051] = {.lex_state = 6}, [5052] = {.lex_state = 6}, [5053] = {.lex_state = 6}, [5054] = {.lex_state = 6}, [5055] = {.lex_state = 6}, - [5056] = {.lex_state = 14}, - [5057] = {.lex_state = 7}, + [5056] = {.lex_state = 6}, + [5057] = {.lex_state = 6}, [5058] = {.lex_state = 141}, - [5059] = {.lex_state = 14}, - [5060] = {.lex_state = 14}, - [5061] = {.lex_state = 141}, - [5062] = {.lex_state = 141}, - [5063] = {.lex_state = 141}, - [5064] = {.lex_state = 141}, - [5065] = {.lex_state = 141}, - [5066] = {.lex_state = 141}, - [5067] = {.lex_state = 14}, - [5068] = {.lex_state = 141}, - [5069] = {.lex_state = 141}, - [5070] = {.lex_state = 7}, - [5071] = {.lex_state = 6}, - [5072] = {.lex_state = 141}, - [5073] = {.lex_state = 141}, + [5059] = {.lex_state = 6}, + [5060] = {.lex_state = 6}, + [5061] = {.lex_state = 6}, + [5062] = {.lex_state = 6}, + [5063] = {.lex_state = 6}, + [5064] = {.lex_state = 6}, + [5065] = {.lex_state = 6}, + [5066] = {.lex_state = 140}, + [5067] = {.lex_state = 6}, + [5068] = {.lex_state = 6}, + [5069] = {.lex_state = 7}, + [5070] = {.lex_state = 6}, + [5071] = {.lex_state = 141}, + [5072] = {.lex_state = 6}, + [5073] = {.lex_state = 6}, [5074] = {.lex_state = 6}, - [5075] = {.lex_state = 141}, - [5076] = {.lex_state = 14}, - [5077] = {.lex_state = 141}, - [5078] = {.lex_state = 141}, - [5079] = {.lex_state = 7}, - [5080] = {.lex_state = 141}, - [5081] = {.lex_state = 141}, - [5082] = {.lex_state = 141}, + [5075] = {.lex_state = 7}, + [5076] = {.lex_state = 6}, + [5077] = {.lex_state = 6}, + [5078] = {.lex_state = 6}, + [5079] = {.lex_state = 6}, + [5080] = {.lex_state = 6}, + [5081] = {.lex_state = 6}, + [5082] = {.lex_state = 7}, [5083] = {.lex_state = 14}, [5084] = {.lex_state = 141}, - [5085] = {.lex_state = 141}, - [5086] = {.lex_state = 141}, - [5087] = {.lex_state = 14}, - [5088] = {.lex_state = 141}, - [5089] = {.lex_state = 141}, - [5090] = {.lex_state = 141}, - [5091] = {.lex_state = 141}, + [5085] = {.lex_state = 6}, + [5086] = {.lex_state = 7}, + [5087] = {.lex_state = 6}, + [5088] = {.lex_state = 140}, + [5089] = {.lex_state = 6}, + [5090] = {.lex_state = 6}, + [5091] = {.lex_state = 6}, [5092] = {.lex_state = 7}, - [5093] = {.lex_state = 141}, + [5093] = {.lex_state = 6}, [5094] = {.lex_state = 141}, - [5095] = {.lex_state = 7}, - [5096] = {.lex_state = 141}, - [5097] = {.lex_state = 140}, - [5098] = {.lex_state = 7, .external_lex_state = 4}, - [5099] = {.lex_state = 141}, - [5100] = {.lex_state = 7}, - [5101] = {.lex_state = 14}, - [5102] = {.lex_state = 141}, - [5103] = {.lex_state = 141}, - [5104] = {.lex_state = 141}, - [5105] = {.lex_state = 141}, - [5106] = {.lex_state = 141}, - [5107] = {.lex_state = 141}, - [5108] = {.lex_state = 14}, + [5095] = {.lex_state = 6}, + [5096] = {.lex_state = 6}, + [5097] = {.lex_state = 7}, + [5098] = {.lex_state = 141}, + [5099] = {.lex_state = 140}, + [5100] = {.lex_state = 141}, + [5101] = {.lex_state = 140}, + [5102] = {.lex_state = 140}, + [5103] = {.lex_state = 140}, + [5104] = {.lex_state = 140}, + [5105] = {.lex_state = 140}, + [5106] = {.lex_state = 6}, + [5107] = {.lex_state = 6}, + [5108] = {.lex_state = 6}, [5109] = {.lex_state = 141}, - [5110] = {.lex_state = 14}, - [5111] = {.lex_state = 141}, - [5112] = {.lex_state = 14}, - [5113] = {.lex_state = 140}, - [5114] = {.lex_state = 141}, - [5115] = {.lex_state = 141}, - [5116] = {.lex_state = 140}, - [5117] = {.lex_state = 141}, - [5118] = {.lex_state = 7}, - [5119] = {.lex_state = 140}, - [5120] = {.lex_state = 14}, - [5121] = {.lex_state = 141}, - [5122] = {.lex_state = 14}, + [5110] = {.lex_state = 6}, + [5111] = {.lex_state = 6}, + [5112] = {.lex_state = 6}, + [5113] = {.lex_state = 7}, + [5114] = {.lex_state = 6}, + [5115] = {.lex_state = 6}, + [5116] = {.lex_state = 6}, + [5117] = {.lex_state = 7}, + [5118] = {.lex_state = 6}, + [5119] = {.lex_state = 14}, + [5120] = {.lex_state = 141}, + [5121] = {.lex_state = 6}, + [5122] = {.lex_state = 6}, [5123] = {.lex_state = 141}, - [5124] = {.lex_state = 141}, - [5125] = {.lex_state = 141}, - [5126] = {.lex_state = 7}, - [5127] = {.lex_state = 14}, - [5128] = {.lex_state = 141}, - [5129] = {.lex_state = 141}, - [5130] = {.lex_state = 7}, - [5131] = {.lex_state = 141}, - [5132] = {.lex_state = 141}, - [5133] = {.lex_state = 141}, - [5134] = {.lex_state = 141}, - [5135] = {.lex_state = 14}, - [5136] = {.lex_state = 14}, - [5137] = {.lex_state = 7}, + [5124] = {.lex_state = 6}, + [5125] = {.lex_state = 6}, + [5126] = {.lex_state = 6}, + [5127] = {.lex_state = 7}, + [5128] = {.lex_state = 7}, + [5129] = {.lex_state = 6}, + [5130] = {.lex_state = 6}, + [5131] = {.lex_state = 6}, + [5132] = {.lex_state = 6}, + [5133] = {.lex_state = 6}, + [5134] = {.lex_state = 7}, + [5135] = {.lex_state = 6}, + [5136] = {.lex_state = 6}, + [5137] = {.lex_state = 6}, [5138] = {.lex_state = 7}, - [5139] = {.lex_state = 7}, - [5140] = {.lex_state = 140}, - [5141] = {.lex_state = 141}, + [5139] = {.lex_state = 6}, + [5140] = {.lex_state = 6}, + [5141] = {.lex_state = 6}, [5142] = {.lex_state = 7}, - [5143] = {.lex_state = 141}, - [5144] = {.lex_state = 141}, - [5145] = {.lex_state = 7}, - [5146] = {.lex_state = 12}, - [5147] = {.lex_state = 7}, + [5143] = {.lex_state = 6}, + [5144] = {.lex_state = 6}, + [5145] = {.lex_state = 6}, + [5146] = {.lex_state = 140}, + [5147] = {.lex_state = 6}, [5148] = {.lex_state = 7}, - [5149] = {.lex_state = 7}, + [5149] = {.lex_state = 14}, [5150] = {.lex_state = 140}, - [5151] = {.lex_state = 140}, - [5152] = {.lex_state = 141}, + [5151] = {.lex_state = 6}, + [5152] = {.lex_state = 140}, [5153] = {.lex_state = 141}, - [5154] = {.lex_state = 7}, - [5155] = {.lex_state = 140}, + [5154] = {.lex_state = 12}, + [5155] = {.lex_state = 7}, [5156] = {.lex_state = 140}, - [5157] = {.lex_state = 140}, - [5158] = {.lex_state = 7}, - [5159] = {.lex_state = 140}, - [5160] = {.lex_state = 140}, - [5161] = {.lex_state = 140}, - [5162] = {.lex_state = 141}, + [5157] = {.lex_state = 7}, + [5158] = {.lex_state = 140}, + [5159] = {.lex_state = 6}, + [5160] = {.lex_state = 141}, + [5161] = {.lex_state = 141}, + [5162] = {.lex_state = 140}, [5163] = {.lex_state = 140}, - [5164] = {.lex_state = 7}, - [5165] = {.lex_state = 141}, - [5166] = {.lex_state = 140}, + [5164] = {.lex_state = 140}, + [5165] = {.lex_state = 140}, + [5166] = {.lex_state = 141}, [5167] = {.lex_state = 140}, [5168] = {.lex_state = 140}, - [5169] = {.lex_state = 141}, + [5169] = {.lex_state = 140}, [5170] = {.lex_state = 141}, - [5171] = {.lex_state = 141}, - [5172] = {.lex_state = 141}, - [5173] = {.lex_state = 141}, - [5174] = {.lex_state = 7}, - [5175] = {.lex_state = 141}, + [5171] = {.lex_state = 140}, + [5172] = {.lex_state = 140}, + [5173] = {.lex_state = 140}, + [5174] = {.lex_state = 140}, + [5175] = {.lex_state = 140}, [5176] = {.lex_state = 141}, [5177] = {.lex_state = 140}, - [5178] = {.lex_state = 7}, - [5179] = {.lex_state = 141}, - [5180] = {.lex_state = 141}, + [5178] = {.lex_state = 140}, + [5179] = {.lex_state = 140}, + [5180] = {.lex_state = 140}, [5181] = {.lex_state = 141}, [5182] = {.lex_state = 141}, [5183] = {.lex_state = 140}, - [5184] = {.lex_state = 141}, + [5184] = {.lex_state = 140}, [5185] = {.lex_state = 140}, [5186] = {.lex_state = 141}, - [5187] = {.lex_state = 141}, + [5187] = {.lex_state = 140}, [5188] = {.lex_state = 140}, - [5189] = {.lex_state = 141}, + [5189] = {.lex_state = 140}, [5190] = {.lex_state = 140}, - [5191] = {.lex_state = 141}, + [5191] = {.lex_state = 140}, [5192] = {.lex_state = 140}, [5193] = {.lex_state = 140}, - [5194] = {.lex_state = 141}, - [5195] = {.lex_state = 141}, - [5196] = {.lex_state = 141}, - [5197] = {.lex_state = 140}, - [5198] = {.lex_state = 140}, + [5194] = {.lex_state = 7}, + [5195] = {.lex_state = 140}, + [5196] = {.lex_state = 140}, + [5197] = {.lex_state = 141}, + [5198] = {.lex_state = 141}, [5199] = {.lex_state = 141}, [5200] = {.lex_state = 141}, - [5201] = {.lex_state = 141}, - [5202] = {.lex_state = 141}, - [5203] = {.lex_state = 140}, - [5204] = {.lex_state = 141}, - [5205] = {.lex_state = 140}, - [5206] = {.lex_state = 140}, - [5207] = {.lex_state = 141}, - [5208] = {.lex_state = 140}, - [5209] = {.lex_state = 140}, + [5201] = {.lex_state = 140}, + [5202] = {.lex_state = 140}, + [5203] = {.lex_state = 141}, + [5204] = {.lex_state = 140}, + [5205] = {.lex_state = 141}, + [5206] = {.lex_state = 141}, + [5207] = {.lex_state = 140}, + [5208] = {.lex_state = 141}, + [5209] = {.lex_state = 141}, [5210] = {.lex_state = 141}, - [5211] = {.lex_state = 7}, + [5211] = {.lex_state = 140}, [5212] = {.lex_state = 140}, [5213] = {.lex_state = 140}, [5214] = {.lex_state = 140}, - [5215] = {.lex_state = 141}, + [5215] = {.lex_state = 140}, [5216] = {.lex_state = 141}, - [5217] = {.lex_state = 140}, - [5218] = {.lex_state = 141}, + [5217] = {.lex_state = 141}, + [5218] = {.lex_state = 140}, [5219] = {.lex_state = 141}, [5220] = {.lex_state = 140}, [5221] = {.lex_state = 141}, [5222] = {.lex_state = 140}, - [5223] = {.lex_state = 141}, + [5223] = {.lex_state = 140}, [5224] = {.lex_state = 141}, - [5225] = {.lex_state = 141}, + [5225] = {.lex_state = 140}, [5226] = {.lex_state = 140}, [5227] = {.lex_state = 140}, [5228] = {.lex_state = 141}, - [5229] = {.lex_state = 141}, - [5230] = {.lex_state = 140}, - [5231] = {.lex_state = 140}, - [5232] = {.lex_state = 141}, + [5229] = {.lex_state = 140}, + [5230] = {.lex_state = 141}, + [5231] = {.lex_state = 7}, + [5232] = {.lex_state = 140}, [5233] = {.lex_state = 141}, [5234] = {.lex_state = 140}, - [5235] = {.lex_state = 141}, + [5235] = {.lex_state = 140}, [5236] = {.lex_state = 140}, - [5237] = {.lex_state = 140}, + [5237] = {.lex_state = 141}, [5238] = {.lex_state = 140}, - [5239] = {.lex_state = 141}, + [5239] = {.lex_state = 140}, [5240] = {.lex_state = 140}, [5241] = {.lex_state = 140}, [5242] = {.lex_state = 140}, [5243] = {.lex_state = 140}, [5244] = {.lex_state = 141}, - [5245] = {.lex_state = 141}, + [5245] = {.lex_state = 140}, [5246] = {.lex_state = 141}, - [5247] = {.lex_state = 141}, - [5248] = {.lex_state = 141}, - [5249] = {.lex_state = 141}, - [5250] = {.lex_state = 7}, + [5247] = {.lex_state = 140}, + [5248] = {.lex_state = 140}, + [5249] = {.lex_state = 140}, + [5250] = {.lex_state = 140}, [5251] = {.lex_state = 140}, - [5252] = {.lex_state = 140}, - [5253] = {.lex_state = 141}, + [5252] = {.lex_state = 141}, + [5253] = {.lex_state = 140}, [5254] = {.lex_state = 141}, - [5255] = {.lex_state = 140}, - [5256] = {.lex_state = 140}, - [5257] = {.lex_state = 141}, - [5258] = {.lex_state = 141}, + [5255] = {.lex_state = 141}, + [5256] = {.lex_state = 141}, + [5257] = {.lex_state = 140}, + [5258] = {.lex_state = 140}, [5259] = {.lex_state = 140}, - [5260] = {.lex_state = 141}, - [5261] = {.lex_state = 141}, + [5260] = {.lex_state = 140}, + [5261] = {.lex_state = 7}, [5262] = {.lex_state = 140}, [5263] = {.lex_state = 140}, - [5264] = {.lex_state = 141}, - [5265] = {.lex_state = 141}, - [5266] = {.lex_state = 140}, + [5264] = {.lex_state = 140}, + [5265] = {.lex_state = 140}, + [5266] = {.lex_state = 141}, [5267] = {.lex_state = 140}, - [5268] = {.lex_state = 140}, + [5268] = {.lex_state = 141}, [5269] = {.lex_state = 140}, - [5270] = {.lex_state = 140}, + [5270] = {.lex_state = 141}, [5271] = {.lex_state = 140}, - [5272] = {.lex_state = 141}, - [5273] = {.lex_state = 140}, - [5274] = {.lex_state = 140}, - [5275] = {.lex_state = 140}, + [5272] = {.lex_state = 140}, + [5273] = {.lex_state = 141}, + [5274] = {.lex_state = 141}, + [5275] = {.lex_state = 141}, [5276] = {.lex_state = 140}, - [5277] = {.lex_state = 140}, - [5278] = {.lex_state = 140}, - [5279] = {.lex_state = 141}, - [5280] = {.lex_state = 140}, - [5281] = {.lex_state = 7}, + [5277] = {.lex_state = 141}, + [5278] = {.lex_state = 141}, + [5279] = {.lex_state = 7}, + [5280] = {.lex_state = 141}, + [5281] = {.lex_state = 141}, [5282] = {.lex_state = 141}, - [5283] = {.lex_state = 141}, - [5284] = {.lex_state = 141}, - [5285] = {.lex_state = 140}, + [5283] = {.lex_state = 7}, + [5284] = {.lex_state = 140}, + [5285] = {.lex_state = 141}, [5286] = {.lex_state = 141}, - [5287] = {.lex_state = 141}, + [5287] = {.lex_state = 7}, [5288] = {.lex_state = 141}, [5289] = {.lex_state = 141}, [5290] = {.lex_state = 140}, - [5291] = {.lex_state = 140}, + [5291] = {.lex_state = 141}, [5292] = {.lex_state = 140}, - [5293] = {.lex_state = 140}, - [5294] = {.lex_state = 141}, - [5295] = {.lex_state = 141}, - [5296] = {.lex_state = 140}, + [5293] = {.lex_state = 141}, + [5294] = {.lex_state = 140}, + [5295] = {.lex_state = 140}, + [5296] = {.lex_state = 141}, [5297] = {.lex_state = 140}, [5298] = {.lex_state = 140}, - [5299] = {.lex_state = 140}, - [5300] = {.lex_state = 140}, - [5301] = {.lex_state = 140}, + [5299] = {.lex_state = 141}, + [5300] = {.lex_state = 141}, + [5301] = {.lex_state = 141}, [5302] = {.lex_state = 140}, [5303] = {.lex_state = 141}, - [5304] = {.lex_state = 141}, - [5305] = {.lex_state = 140}, + [5304] = {.lex_state = 140}, + [5305] = {.lex_state = 141}, [5306] = {.lex_state = 140}, [5307] = {.lex_state = 141}, - [5308] = {.lex_state = 140}, - [5309] = {.lex_state = 141}, + [5308] = {.lex_state = 141}, + [5309] = {.lex_state = 140}, [5310] = {.lex_state = 140}, - [5311] = {.lex_state = 140}, + [5311] = {.lex_state = 141}, [5312] = {.lex_state = 140}, - [5313] = {.lex_state = 140}, - [5314] = {.lex_state = 140}, - [5315] = {.lex_state = 141}, - [5316] = {.lex_state = 140}, - [5317] = {.lex_state = 140}, + [5313] = {.lex_state = 141}, + [5314] = {.lex_state = 141}, + [5315] = {.lex_state = 140}, + [5316] = {.lex_state = 141}, + [5317] = {.lex_state = 141}, [5318] = {.lex_state = 140}, - [5319] = {.lex_state = 140}, + [5319] = {.lex_state = 141}, [5320] = {.lex_state = 140}, [5321] = {.lex_state = 140}, [5322] = {.lex_state = 140}, [5323] = {.lex_state = 140}, - [5324] = {.lex_state = 140}, + [5324] = {.lex_state = 141}, [5325] = {.lex_state = 140}, [5326] = {.lex_state = 140}, [5327] = {.lex_state = 140}, [5328] = {.lex_state = 140}, - [5329] = {.lex_state = 7}, - [5330] = {.lex_state = 140}, + [5329] = {.lex_state = 141}, + [5330] = {.lex_state = 141}, [5331] = {.lex_state = 141}, - [5332] = {.lex_state = 140}, + [5332] = {.lex_state = 141}, [5333] = {.lex_state = 140}, - [5334] = {.lex_state = 140}, - [5335] = {.lex_state = 140}, - [5336] = {.lex_state = 140}, - [5337] = {.lex_state = 140}, + [5334] = {.lex_state = 141}, + [5335] = {.lex_state = 141}, + [5336] = {.lex_state = 141}, + [5337] = {.lex_state = 141}, [5338] = {.lex_state = 140}, - [5339] = {.lex_state = 140}, - [5340] = {.lex_state = 140}, - [5341] = {.lex_state = 140}, - [5342] = {.lex_state = 140}, + [5339] = {.lex_state = 141}, + [5340] = {.lex_state = 141}, + [5341] = {.lex_state = 141}, + [5342] = {.lex_state = 141}, [5343] = {.lex_state = 141}, - [5344] = {.lex_state = 141}, + [5344] = {.lex_state = 140}, [5345] = {.lex_state = 141}, - [5346] = {.lex_state = 141}, + [5346] = {.lex_state = 140}, [5347] = {.lex_state = 141}, [5348] = {.lex_state = 141}, [5349] = {.lex_state = 141}, @@ -29578,23 +29589,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5353] = {.lex_state = 141}, [5354] = {.lex_state = 141}, [5355] = {.lex_state = 141}, - [5356] = {.lex_state = 141}, + [5356] = {.lex_state = 21}, [5357] = {.lex_state = 141}, - [5358] = {.lex_state = 141}, - [5359] = {.lex_state = 141}, + [5358] = {.lex_state = 140}, + [5359] = {.lex_state = 140}, [5360] = {.lex_state = 141}, - [5361] = {.lex_state = 140}, + [5361] = {.lex_state = 141}, [5362] = {.lex_state = 141}, - [5363] = {.lex_state = 141}, + [5363] = {.lex_state = 140}, [5364] = {.lex_state = 141}, - [5365] = {.lex_state = 140}, - [5366] = {.lex_state = 140}, + [5365] = {.lex_state = 141}, + [5366] = {.lex_state = 141}, [5367] = {.lex_state = 141}, [5368] = {.lex_state = 141}, [5369] = {.lex_state = 141}, [5370] = {.lex_state = 141}, [5371] = {.lex_state = 141}, - [5372] = {.lex_state = 14}, + [5372] = {.lex_state = 141}, [5373] = {.lex_state = 141}, [5374] = {.lex_state = 141}, [5375] = {.lex_state = 141}, @@ -29605,7 +29616,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5380] = {.lex_state = 141}, [5381] = {.lex_state = 141}, [5382] = {.lex_state = 141}, - [5383] = {.lex_state = 9}, + [5383] = {.lex_state = 141}, [5384] = {.lex_state = 141}, [5385] = {.lex_state = 141}, [5386] = {.lex_state = 141}, @@ -29624,12 +29635,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5399] = {.lex_state = 141}, [5400] = {.lex_state = 141}, [5401] = {.lex_state = 141}, - [5402] = {.lex_state = 21}, + [5402] = {.lex_state = 141}, [5403] = {.lex_state = 141}, [5404] = {.lex_state = 141}, [5405] = {.lex_state = 141}, [5406] = {.lex_state = 141}, - [5407] = {.lex_state = 141}, + [5407] = {.lex_state = 140}, [5408] = {.lex_state = 141}, [5409] = {.lex_state = 141}, [5410] = {.lex_state = 141}, @@ -29642,17 +29653,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5417] = {.lex_state = 141}, [5418] = {.lex_state = 141}, [5419] = {.lex_state = 141}, - [5420] = {.lex_state = 140}, + [5420] = {.lex_state = 14}, [5421] = {.lex_state = 141}, [5422] = {.lex_state = 141}, [5423] = {.lex_state = 141}, [5424] = {.lex_state = 141}, - [5425] = {.lex_state = 140}, + [5425] = {.lex_state = 141}, [5426] = {.lex_state = 141}, - [5427] = {.lex_state = 140}, - [5428] = {.lex_state = 140}, - [5429] = {.lex_state = 141}, - [5430] = {.lex_state = 140}, + [5427] = {.lex_state = 141}, + [5428] = {.lex_state = 141}, + [5429] = {.lex_state = 9}, + [5430] = {.lex_state = 141}, [5431] = {.lex_state = 141}, [5432] = {.lex_state = 141}, [5433] = {.lex_state = 141}, @@ -29663,7 +29674,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5438] = {.lex_state = 141}, [5439] = {.lex_state = 141}, [5440] = {.lex_state = 141}, - [5441] = {.lex_state = 141}, + [5441] = {.lex_state = 140}, [5442] = {.lex_state = 141}, [5443] = {.lex_state = 141}, [5444] = {.lex_state = 141}, @@ -29676,52 +29687,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5451] = {.lex_state = 141}, [5452] = {.lex_state = 141}, [5453] = {.lex_state = 141}, - [5454] = {.lex_state = 141}, - [5455] = {.lex_state = 141}, - [5456] = {.lex_state = 141}, - [5457] = {.lex_state = 141}, - [5458] = {.lex_state = 141}, - [5459] = {.lex_state = 141}, - [5460] = {.lex_state = 21}, - [5461] = {.lex_state = 141}, - [5462] = {.lex_state = 6}, + [5454] = {.lex_state = 6}, + [5455] = {.lex_state = 6}, + [5456] = {.lex_state = 21}, + [5457] = {.lex_state = 21}, + [5458] = {.lex_state = 21}, + [5459] = {.lex_state = 6}, + [5460] = {.lex_state = 6}, + [5461] = {.lex_state = 21}, + [5462] = {.lex_state = 14}, [5463] = {.lex_state = 21}, - [5464] = {.lex_state = 21}, + [5464] = {.lex_state = 6}, [5465] = {.lex_state = 6}, - [5466] = {.lex_state = 14}, - [5467] = {.lex_state = 21}, + [5466] = {.lex_state = 21}, + [5467] = {.lex_state = 6}, [5468] = {.lex_state = 21}, - [5469] = {.lex_state = 6}, - [5470] = {.lex_state = 21}, - [5471] = {.lex_state = 21}, + [5469] = {.lex_state = 21}, + [5470] = {.lex_state = 141}, + [5471] = {.lex_state = 6}, [5472] = {.lex_state = 6}, - [5473] = {.lex_state = 21}, + [5473] = {.lex_state = 6}, [5474] = {.lex_state = 6}, - [5475] = {.lex_state = 6}, + [5475] = {.lex_state = 141}, [5476] = {.lex_state = 6}, [5477] = {.lex_state = 6}, - [5478] = {.lex_state = 21}, - [5479] = {.lex_state = 6}, + [5478] = {.lex_state = 6}, + [5479] = {.lex_state = 21}, [5480] = {.lex_state = 6}, [5481] = {.lex_state = 6}, - [5482] = {.lex_state = 141}, + [5482] = {.lex_state = 6}, [5483] = {.lex_state = 6}, - [5484] = {.lex_state = 6}, + [5484] = {.lex_state = 141}, [5485] = {.lex_state = 6}, [5486] = {.lex_state = 6}, [5487] = {.lex_state = 6}, [5488] = {.lex_state = 6}, [5489] = {.lex_state = 6}, - [5490] = {.lex_state = 141}, + [5490] = {.lex_state = 6}, [5491] = {.lex_state = 6}, [5492] = {.lex_state = 6}, [5493] = {.lex_state = 6}, [5494] = {.lex_state = 6}, - [5495] = {.lex_state = 6}, + [5495] = {.lex_state = 141}, [5496] = {.lex_state = 6}, - [5497] = {.lex_state = 21}, + [5497] = {.lex_state = 6}, [5498] = {.lex_state = 6}, - [5499] = {.lex_state = 14}, + [5499] = {.lex_state = 6}, [5500] = {.lex_state = 6}, [5501] = {.lex_state = 6}, [5502] = {.lex_state = 6}, @@ -29729,10 +29740,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5504] = {.lex_state = 6}, [5505] = {.lex_state = 6}, [5506] = {.lex_state = 6}, - [5507] = {.lex_state = 6}, + [5507] = {.lex_state = 14}, [5508] = {.lex_state = 6}, [5509] = {.lex_state = 6}, - [5510] = {.lex_state = 141}, + [5510] = {.lex_state = 6}, [5511] = {.lex_state = 6}, [5512] = {.lex_state = 6}, [5513] = {.lex_state = 6}, @@ -29740,457 +29751,457 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5515] = {.lex_state = 6}, [5516] = {.lex_state = 6}, [5517] = {.lex_state = 6}, - [5518] = {.lex_state = 6}, + [5518] = {.lex_state = 21}, [5519] = {.lex_state = 6}, [5520] = {.lex_state = 6}, [5521] = {.lex_state = 6}, [5522] = {.lex_state = 6}, - [5523] = {.lex_state = 6}, - [5524] = {.lex_state = 6}, - [5525] = {.lex_state = 6}, + [5523] = {.lex_state = 21}, + [5524] = {.lex_state = 14}, + [5525] = {.lex_state = 21}, [5526] = {.lex_state = 6}, - [5527] = {.lex_state = 6}, + [5527] = {.lex_state = 21}, [5528] = {.lex_state = 6}, - [5529] = {.lex_state = 14}, - [5530] = {.lex_state = 21}, - [5531] = {.lex_state = 21}, + [5529] = {.lex_state = 6}, + [5530] = {.lex_state = 141}, + [5531] = {.lex_state = 141}, [5532] = {.lex_state = 21}, [5533] = {.lex_state = 6}, [5534] = {.lex_state = 6}, - [5535] = {.lex_state = 141}, - [5536] = {.lex_state = 6}, - [5537] = {.lex_state = 6, .external_lex_state = 4}, - [5538] = {.lex_state = 21}, - [5539] = {.lex_state = 6}, - [5540] = {.lex_state = 21}, - [5541] = {.lex_state = 141}, - [5542] = {.lex_state = 6}, + [5535] = {.lex_state = 6, .external_lex_state = 4}, + [5536] = {.lex_state = 141}, + [5537] = {.lex_state = 9, .external_lex_state = 4}, + [5538] = {.lex_state = 6}, + [5539] = {.lex_state = 141}, + [5540] = {.lex_state = 6}, + [5541] = {.lex_state = 21}, + [5542] = {.lex_state = 14}, [5543] = {.lex_state = 141}, [5544] = {.lex_state = 21}, [5545] = {.lex_state = 6}, [5546] = {.lex_state = 6}, [5547] = {.lex_state = 141}, [5548] = {.lex_state = 141}, - [5549] = {.lex_state = 9, .external_lex_state = 4}, + [5549] = {.lex_state = 6}, [5550] = {.lex_state = 141}, - [5551] = {.lex_state = 6}, - [5552] = {.lex_state = 6}, - [5553] = {.lex_state = 14}, - [5554] = {.lex_state = 6}, + [5551] = {.lex_state = 11}, + [5552] = {.lex_state = 6, .external_lex_state = 4}, + [5553] = {.lex_state = 6, .external_lex_state = 4}, + [5554] = {.lex_state = 9, .external_lex_state = 4}, [5555] = {.lex_state = 6, .external_lex_state = 4}, [5556] = {.lex_state = 141}, - [5557] = {.lex_state = 141}, - [5558] = {.lex_state = 6}, + [5557] = {.lex_state = 11}, + [5558] = {.lex_state = 141}, [5559] = {.lex_state = 141}, - [5560] = {.lex_state = 141}, - [5561] = {.lex_state = 141}, + [5560] = {.lex_state = 21}, + [5561] = {.lex_state = 140}, [5562] = {.lex_state = 6, .external_lex_state = 4}, - [5563] = {.lex_state = 140}, - [5564] = {.lex_state = 141}, - [5565] = {.lex_state = 9, .external_lex_state = 4}, - [5566] = {.lex_state = 9, .external_lex_state = 4}, + [5563] = {.lex_state = 11}, + [5564] = {.lex_state = 6, .external_lex_state = 4}, + [5565] = {.lex_state = 11}, + [5566] = {.lex_state = 11}, [5567] = {.lex_state = 141}, - [5568] = {.lex_state = 141}, - [5569] = {.lex_state = 21}, + [5568] = {.lex_state = 6}, + [5569] = {.lex_state = 141}, [5570] = {.lex_state = 6, .external_lex_state = 4}, [5571] = {.lex_state = 6, .external_lex_state = 4}, - [5572] = {.lex_state = 6}, - [5573] = {.lex_state = 6, .external_lex_state = 4}, - [5574] = {.lex_state = 6}, + [5572] = {.lex_state = 9, .external_lex_state = 4}, + [5573] = {.lex_state = 6}, + [5574] = {.lex_state = 11}, [5575] = {.lex_state = 9, .external_lex_state = 4}, - [5576] = {.lex_state = 6}, - [5577] = {.lex_state = 6, .external_lex_state = 4}, - [5578] = {.lex_state = 6, .external_lex_state = 4}, + [5576] = {.lex_state = 141}, + [5577] = {.lex_state = 6}, + [5578] = {.lex_state = 6}, [5579] = {.lex_state = 6}, - [5580] = {.lex_state = 21}, - [5581] = {.lex_state = 141}, - [5582] = {.lex_state = 6}, + [5580] = {.lex_state = 10, .external_lex_state = 4}, + [5581] = {.lex_state = 6, .external_lex_state = 4}, + [5582] = {.lex_state = 6, .external_lex_state = 4}, [5583] = {.lex_state = 6, .external_lex_state = 4}, - [5584] = {.lex_state = 6, .external_lex_state = 4}, + [5584] = {.lex_state = 141}, [5585] = {.lex_state = 6, .external_lex_state = 4}, - [5586] = {.lex_state = 6, .external_lex_state = 4}, - [5587] = {.lex_state = 6, .external_lex_state = 4}, + [5586] = {.lex_state = 11}, + [5587] = {.lex_state = 11}, [5588] = {.lex_state = 6, .external_lex_state = 4}, [5589] = {.lex_state = 6, .external_lex_state = 4}, - [5590] = {.lex_state = 6}, + [5590] = {.lex_state = 11}, [5591] = {.lex_state = 6, .external_lex_state = 4}, - [5592] = {.lex_state = 6, .external_lex_state = 4}, - [5593] = {.lex_state = 6, .external_lex_state = 4}, + [5592] = {.lex_state = 141}, + [5593] = {.lex_state = 141}, [5594] = {.lex_state = 141}, - [5595] = {.lex_state = 6, .external_lex_state = 4}, - [5596] = {.lex_state = 141}, - [5597] = {.lex_state = 6, .external_lex_state = 4}, - [5598] = {.lex_state = 10, .external_lex_state = 4}, - [5599] = {.lex_state = 6, .external_lex_state = 4}, - [5600] = {.lex_state = 141}, + [5595] = {.lex_state = 141}, + [5596] = {.lex_state = 6, .external_lex_state = 4}, + [5597] = {.lex_state = 21}, + [5598] = {.lex_state = 141}, + [5599] = {.lex_state = 141}, + [5600] = {.lex_state = 6, .external_lex_state = 4}, [5601] = {.lex_state = 6, .external_lex_state = 4}, [5602] = {.lex_state = 6, .external_lex_state = 4}, [5603] = {.lex_state = 6, .external_lex_state = 4}, - [5604] = {.lex_state = 6, .external_lex_state = 4}, + [5604] = {.lex_state = 141}, [5605] = {.lex_state = 6, .external_lex_state = 4}, [5606] = {.lex_state = 6, .external_lex_state = 4}, - [5607] = {.lex_state = 6, .external_lex_state = 4}, - [5608] = {.lex_state = 6, .external_lex_state = 4}, + [5607] = {.lex_state = 141}, + [5608] = {.lex_state = 11}, [5609] = {.lex_state = 6, .external_lex_state = 4}, [5610] = {.lex_state = 6, .external_lex_state = 4}, - [5611] = {.lex_state = 141}, + [5611] = {.lex_state = 6, .external_lex_state = 4}, [5612] = {.lex_state = 6, .external_lex_state = 4}, [5613] = {.lex_state = 6, .external_lex_state = 4}, - [5614] = {.lex_state = 6, .external_lex_state = 4}, - [5615] = {.lex_state = 6, .external_lex_state = 4}, - [5616] = {.lex_state = 141}, + [5614] = {.lex_state = 9}, + [5615] = {.lex_state = 141}, + [5616] = {.lex_state = 11}, [5617] = {.lex_state = 6, .external_lex_state = 4}, - [5618] = {.lex_state = 141}, + [5618] = {.lex_state = 6}, [5619] = {.lex_state = 6, .external_lex_state = 4}, - [5620] = {.lex_state = 9}, - [5621] = {.lex_state = 6, .external_lex_state = 4}, - [5622] = {.lex_state = 6, .external_lex_state = 4}, - [5623] = {.lex_state = 6, .external_lex_state = 4}, + [5620] = {.lex_state = 141}, + [5621] = {.lex_state = 6}, + [5622] = {.lex_state = 141}, + [5623] = {.lex_state = 141}, [5624] = {.lex_state = 6, .external_lex_state = 4}, - [5625] = {.lex_state = 6}, - [5626] = {.lex_state = 6}, - [5627] = {.lex_state = 6}, - [5628] = {.lex_state = 6, .external_lex_state = 4}, + [5625] = {.lex_state = 6, .external_lex_state = 4}, + [5626] = {.lex_state = 6, .external_lex_state = 4}, + [5627] = {.lex_state = 6, .external_lex_state = 4}, + [5628] = {.lex_state = 6}, [5629] = {.lex_state = 6, .external_lex_state = 4}, [5630] = {.lex_state = 6, .external_lex_state = 4}, - [5631] = {.lex_state = 141}, + [5631] = {.lex_state = 6, .external_lex_state = 4}, [5632] = {.lex_state = 6, .external_lex_state = 4}, - [5633] = {.lex_state = 141}, + [5633] = {.lex_state = 6}, [5634] = {.lex_state = 141}, [5635] = {.lex_state = 6, .external_lex_state = 4}, - [5636] = {.lex_state = 141}, - [5637] = {.lex_state = 141}, - [5638] = {.lex_state = 141}, - [5639] = {.lex_state = 6}, + [5636] = {.lex_state = 6, .external_lex_state = 4}, + [5637] = {.lex_state = 6}, + [5638] = {.lex_state = 6, .external_lex_state = 4}, + [5639] = {.lex_state = 6, .external_lex_state = 4}, [5640] = {.lex_state = 6, .external_lex_state = 4}, - [5641] = {.lex_state = 141}, - [5642] = {.lex_state = 21}, - [5643] = {.lex_state = 6}, + [5641] = {.lex_state = 6, .external_lex_state = 4}, + [5642] = {.lex_state = 6}, + [5643] = {.lex_state = 6, .external_lex_state = 4}, [5644] = {.lex_state = 6, .external_lex_state = 4}, - [5645] = {.lex_state = 6}, - [5646] = {.lex_state = 141}, + [5645] = {.lex_state = 6, .external_lex_state = 4}, + [5646] = {.lex_state = 6}, [5647] = {.lex_state = 6, .external_lex_state = 4}, [5648] = {.lex_state = 141}, - [5649] = {.lex_state = 6, .external_lex_state = 4}, - [5650] = {.lex_state = 6}, - [5651] = {.lex_state = 141}, - [5652] = {.lex_state = 6, .external_lex_state = 4}, + [5649] = {.lex_state = 6}, + [5650] = {.lex_state = 21}, + [5651] = {.lex_state = 6, .external_lex_state = 4}, + [5652] = {.lex_state = 11}, [5653] = {.lex_state = 6, .external_lex_state = 4}, [5654] = {.lex_state = 6, .external_lex_state = 4}, - [5655] = {.lex_state = 6, .external_lex_state = 4}, + [5655] = {.lex_state = 141}, [5656] = {.lex_state = 141}, [5657] = {.lex_state = 6, .external_lex_state = 4}, [5658] = {.lex_state = 6}, - [5659] = {.lex_state = 6, .external_lex_state = 4}, - [5660] = {.lex_state = 6}, + [5659] = {.lex_state = 6}, + [5660] = {.lex_state = 6, .external_lex_state = 4}, [5661] = {.lex_state = 6, .external_lex_state = 4}, - [5662] = {.lex_state = 6, .external_lex_state = 4}, + [5662] = {.lex_state = 9}, [5663] = {.lex_state = 6, .external_lex_state = 4}, - [5664] = {.lex_state = 6, .external_lex_state = 4}, + [5664] = {.lex_state = 141}, [5665] = {.lex_state = 6, .external_lex_state = 4}, [5666] = {.lex_state = 6, .external_lex_state = 4}, [5667] = {.lex_state = 6, .external_lex_state = 4}, - [5668] = {.lex_state = 6, .external_lex_state = 4}, - [5669] = {.lex_state = 6, .external_lex_state = 4}, + [5668] = {.lex_state = 141}, + [5669] = {.lex_state = 141}, [5670] = {.lex_state = 6, .external_lex_state = 4}, [5671] = {.lex_state = 6, .external_lex_state = 4}, [5672] = {.lex_state = 6, .external_lex_state = 4}, [5673] = {.lex_state = 6, .external_lex_state = 4}, [5674] = {.lex_state = 6, .external_lex_state = 4}, [5675] = {.lex_state = 6, .external_lex_state = 4}, - [5676] = {.lex_state = 6, .external_lex_state = 4}, + [5676] = {.lex_state = 6}, [5677] = {.lex_state = 6, .external_lex_state = 4}, - [5678] = {.lex_state = 6, .external_lex_state = 4}, + [5678] = {.lex_state = 6}, [5679] = {.lex_state = 6, .external_lex_state = 4}, - [5680] = {.lex_state = 141}, - [5681] = {.lex_state = 6, .external_lex_state = 4}, + [5680] = {.lex_state = 6, .external_lex_state = 4}, + [5681] = {.lex_state = 6}, [5682] = {.lex_state = 6, .external_lex_state = 4}, - [5683] = {.lex_state = 6}, - [5684] = {.lex_state = 6, .external_lex_state = 4}, + [5683] = {.lex_state = 6, .external_lex_state = 4}, + [5684] = {.lex_state = 6}, [5685] = {.lex_state = 6, .external_lex_state = 4}, - [5686] = {.lex_state = 141}, - [5687] = {.lex_state = 6}, - [5688] = {.lex_state = 141}, - [5689] = {.lex_state = 141}, - [5690] = {.lex_state = 141}, + [5686] = {.lex_state = 6, .external_lex_state = 4}, + [5687] = {.lex_state = 141}, + [5688] = {.lex_state = 6}, + [5689] = {.lex_state = 6, .external_lex_state = 4}, + [5690] = {.lex_state = 6, .external_lex_state = 4}, [5691] = {.lex_state = 6, .external_lex_state = 4}, [5692] = {.lex_state = 6, .external_lex_state = 4}, - [5693] = {.lex_state = 6}, + [5693] = {.lex_state = 141}, [5694] = {.lex_state = 6, .external_lex_state = 4}, - [5695] = {.lex_state = 6, .external_lex_state = 4}, - [5696] = {.lex_state = 6}, + [5695] = {.lex_state = 141}, + [5696] = {.lex_state = 141}, [5697] = {.lex_state = 6, .external_lex_state = 4}, - [5698] = {.lex_state = 6, .external_lex_state = 4}, + [5698] = {.lex_state = 6}, [5699] = {.lex_state = 6, .external_lex_state = 4}, - [5700] = {.lex_state = 141}, - [5701] = {.lex_state = 6, .external_lex_state = 4}, + [5700] = {.lex_state = 6}, + [5701] = {.lex_state = 141}, [5702] = {.lex_state = 6, .external_lex_state = 4}, - [5703] = {.lex_state = 6, .external_lex_state = 4}, + [5703] = {.lex_state = 141}, [5704] = {.lex_state = 6, .external_lex_state = 4}, - [5705] = {.lex_state = 6, .external_lex_state = 4}, + [5705] = {.lex_state = 141}, [5706] = {.lex_state = 6, .external_lex_state = 4}, - [5707] = {.lex_state = 141}, - [5708] = {.lex_state = 6, .external_lex_state = 4}, + [5707] = {.lex_state = 6, .external_lex_state = 4}, + [5708] = {.lex_state = 141}, [5709] = {.lex_state = 6, .external_lex_state = 4}, [5710] = {.lex_state = 6, .external_lex_state = 4}, [5711] = {.lex_state = 6}, - [5712] = {.lex_state = 6, .external_lex_state = 4}, - [5713] = {.lex_state = 141}, + [5712] = {.lex_state = 6}, + [5713] = {.lex_state = 6, .external_lex_state = 4}, [5714] = {.lex_state = 6, .external_lex_state = 4}, [5715] = {.lex_state = 6}, - [5716] = {.lex_state = 6, .external_lex_state = 4}, - [5717] = {.lex_state = 141}, - [5718] = {.lex_state = 6, .external_lex_state = 4}, - [5719] = {.lex_state = 6, .external_lex_state = 4}, + [5716] = {.lex_state = 141}, + [5717] = {.lex_state = 6}, + [5718] = {.lex_state = 141}, + [5719] = {.lex_state = 6}, [5720] = {.lex_state = 141}, - [5721] = {.lex_state = 6}, - [5722] = {.lex_state = 141}, + [5721] = {.lex_state = 6, .external_lex_state = 4}, + [5722] = {.lex_state = 6}, [5723] = {.lex_state = 6, .external_lex_state = 4}, - [5724] = {.lex_state = 141}, - [5725] = {.lex_state = 141}, + [5724] = {.lex_state = 6, .external_lex_state = 4}, + [5725] = {.lex_state = 6, .external_lex_state = 4}, [5726] = {.lex_state = 6, .external_lex_state = 4}, - [5727] = {.lex_state = 6}, - [5728] = {.lex_state = 6, .external_lex_state = 4}, - [5729] = {.lex_state = 6, .external_lex_state = 4}, + [5727] = {.lex_state = 6, .external_lex_state = 4}, + [5728] = {.lex_state = 141}, + [5729] = {.lex_state = 141}, [5730] = {.lex_state = 6, .external_lex_state = 4}, - [5731] = {.lex_state = 141}, + [5731] = {.lex_state = 6, .external_lex_state = 4}, [5732] = {.lex_state = 6, .external_lex_state = 4}, [5733] = {.lex_state = 6, .external_lex_state = 4}, - [5734] = {.lex_state = 6, .external_lex_state = 4}, + [5734] = {.lex_state = 6}, [5735] = {.lex_state = 6, .external_lex_state = 4}, [5736] = {.lex_state = 6, .external_lex_state = 4}, - [5737] = {.lex_state = 6}, - [5738] = {.lex_state = 6}, + [5737] = {.lex_state = 141}, + [5738] = {.lex_state = 6, .external_lex_state = 4}, [5739] = {.lex_state = 6, .external_lex_state = 4}, - [5740] = {.lex_state = 9}, - [5741] = {.lex_state = 6, .external_lex_state = 4}, - [5742] = {.lex_state = 6}, - [5743] = {.lex_state = 6}, - [5744] = {.lex_state = 141}, + [5740] = {.lex_state = 6, .external_lex_state = 4}, + [5741] = {.lex_state = 6}, + [5742] = {.lex_state = 6, .external_lex_state = 4}, + [5743] = {.lex_state = 6, .external_lex_state = 4}, + [5744] = {.lex_state = 6, .external_lex_state = 4}, [5745] = {.lex_state = 6, .external_lex_state = 4}, - [5746] = {.lex_state = 141}, - [5747] = {.lex_state = 6, .external_lex_state = 4}, + [5746] = {.lex_state = 6, .external_lex_state = 4}, + [5747] = {.lex_state = 6}, [5748] = {.lex_state = 6, .external_lex_state = 4}, - [5749] = {.lex_state = 6, .external_lex_state = 4}, + [5749] = {.lex_state = 141}, [5750] = {.lex_state = 6, .external_lex_state = 4}, [5751] = {.lex_state = 6, .external_lex_state = 4}, [5752] = {.lex_state = 6, .external_lex_state = 4}, [5753] = {.lex_state = 6, .external_lex_state = 4}, [5754] = {.lex_state = 6, .external_lex_state = 4}, - [5755] = {.lex_state = 141}, - [5756] = {.lex_state = 6, .external_lex_state = 4}, + [5755] = {.lex_state = 6, .external_lex_state = 4}, + [5756] = {.lex_state = 141}, [5757] = {.lex_state = 6, .external_lex_state = 4}, [5758] = {.lex_state = 6, .external_lex_state = 4}, - [5759] = {.lex_state = 6}, + [5759] = {.lex_state = 6, .external_lex_state = 4}, [5760] = {.lex_state = 141}, - [5761] = {.lex_state = 141}, - [5762] = {.lex_state = 141}, - [5763] = {.lex_state = 141}, - [5764] = {.lex_state = 6, .external_lex_state = 4}, + [5761] = {.lex_state = 6, .external_lex_state = 4}, + [5762] = {.lex_state = 6, .external_lex_state = 4}, + [5763] = {.lex_state = 6, .external_lex_state = 4}, + [5764] = {.lex_state = 6}, [5765] = {.lex_state = 6, .external_lex_state = 4}, - [5766] = {.lex_state = 6, .external_lex_state = 4}, + [5766] = {.lex_state = 141}, [5767] = {.lex_state = 6, .external_lex_state = 4}, - [5768] = {.lex_state = 6, .external_lex_state = 4}, - [5769] = {.lex_state = 6}, + [5768] = {.lex_state = 141}, + [5769] = {.lex_state = 6, .external_lex_state = 4}, [5770] = {.lex_state = 6, .external_lex_state = 4}, - [5771] = {.lex_state = 141}, - [5772] = {.lex_state = 6, .external_lex_state = 4}, + [5771] = {.lex_state = 6, .external_lex_state = 4}, + [5772] = {.lex_state = 6}, [5773] = {.lex_state = 6, .external_lex_state = 4}, [5774] = {.lex_state = 6, .external_lex_state = 4}, [5775] = {.lex_state = 6, .external_lex_state = 4}, [5776] = {.lex_state = 6, .external_lex_state = 4}, [5777] = {.lex_state = 6, .external_lex_state = 4}, [5778] = {.lex_state = 6, .external_lex_state = 4}, - [5779] = {.lex_state = 6}, + [5779] = {.lex_state = 6, .external_lex_state = 4}, [5780] = {.lex_state = 6, .external_lex_state = 4}, [5781] = {.lex_state = 6, .external_lex_state = 4}, - [5782] = {.lex_state = 6, .external_lex_state = 4}, - [5783] = {.lex_state = 6}, + [5782] = {.lex_state = 141}, + [5783] = {.lex_state = 6, .external_lex_state = 4}, [5784] = {.lex_state = 6, .external_lex_state = 4}, - [5785] = {.lex_state = 6}, - [5786] = {.lex_state = 141}, + [5785] = {.lex_state = 6, .external_lex_state = 4}, + [5786] = {.lex_state = 6, .external_lex_state = 4}, [5787] = {.lex_state = 6, .external_lex_state = 4}, [5788] = {.lex_state = 6, .external_lex_state = 4}, - [5789] = {.lex_state = 6, .external_lex_state = 4}, - [5790] = {.lex_state = 141}, + [5789] = {.lex_state = 141}, + [5790] = {.lex_state = 6, .external_lex_state = 4}, [5791] = {.lex_state = 141}, [5792] = {.lex_state = 6, .external_lex_state = 4}, - [5793] = {.lex_state = 6}, + [5793] = {.lex_state = 6, .external_lex_state = 4}, [5794] = {.lex_state = 6, .external_lex_state = 4}, [5795] = {.lex_state = 6, .external_lex_state = 4}, - [5796] = {.lex_state = 6}, + [5796] = {.lex_state = 6, .external_lex_state = 4}, [5797] = {.lex_state = 6, .external_lex_state = 4}, - [5798] = {.lex_state = 14}, - [5799] = {.lex_state = 6}, + [5798] = {.lex_state = 141}, + [5799] = {.lex_state = 6, .external_lex_state = 4}, [5800] = {.lex_state = 6}, - [5801] = {.lex_state = 14}, + [5801] = {.lex_state = 6, .external_lex_state = 4}, [5802] = {.lex_state = 14}, [5803] = {.lex_state = 14}, - [5804] = {.lex_state = 14}, + [5804] = {.lex_state = 6}, [5805] = {.lex_state = 6}, - [5806] = {.lex_state = 14}, - [5807] = {.lex_state = 14}, - [5808] = {.lex_state = 14}, - [5809] = {.lex_state = 14}, + [5806] = {.lex_state = 6}, + [5807] = {.lex_state = 6}, + [5808] = {.lex_state = 6}, + [5809] = {.lex_state = 6}, [5810] = {.lex_state = 14}, [5811] = {.lex_state = 14}, - [5812] = {.lex_state = 6, .external_lex_state = 4}, - [5813] = {.lex_state = 14}, + [5812] = {.lex_state = 14}, + [5813] = {.lex_state = 6}, [5814] = {.lex_state = 14}, - [5815] = {.lex_state = 6, .external_lex_state = 4}, - [5816] = {.lex_state = 14}, - [5817] = {.lex_state = 6}, - [5818] = {.lex_state = 6}, - [5819] = {.lex_state = 14}, + [5815] = {.lex_state = 14}, + [5816] = {.lex_state = 6}, + [5817] = {.lex_state = 14}, + [5818] = {.lex_state = 14}, + [5819] = {.lex_state = 6}, [5820] = {.lex_state = 6}, [5821] = {.lex_state = 6}, [5822] = {.lex_state = 14}, - [5823] = {.lex_state = 14}, + [5823] = {.lex_state = 6, .external_lex_state = 4}, [5824] = {.lex_state = 14}, - [5825] = {.lex_state = 14}, - [5826] = {.lex_state = 141}, + [5825] = {.lex_state = 141}, + [5826] = {.lex_state = 14}, [5827] = {.lex_state = 14}, [5828] = {.lex_state = 14}, [5829] = {.lex_state = 14}, [5830] = {.lex_state = 14}, [5831] = {.lex_state = 14}, - [5832] = {.lex_state = 6}, - [5833] = {.lex_state = 14}, - [5834] = {.lex_state = 6}, + [5832] = {.lex_state = 6, .external_lex_state = 4}, + [5833] = {.lex_state = 6}, + [5834] = {.lex_state = 14}, [5835] = {.lex_state = 6}, - [5836] = {.lex_state = 14}, + [5836] = {.lex_state = 6}, [5837] = {.lex_state = 141}, [5838] = {.lex_state = 14}, - [5839] = {.lex_state = 14}, - [5840] = {.lex_state = 6, .external_lex_state = 4}, - [5841] = {.lex_state = 6, .external_lex_state = 4}, - [5842] = {.lex_state = 14}, + [5839] = {.lex_state = 6}, + [5840] = {.lex_state = 14}, + [5841] = {.lex_state = 14}, + [5842] = {.lex_state = 141}, [5843] = {.lex_state = 6}, - [5844] = {.lex_state = 141}, - [5845] = {.lex_state = 14}, - [5846] = {.lex_state = 6}, - [5847] = {.lex_state = 6, .external_lex_state = 4}, - [5848] = {.lex_state = 6}, - [5849] = {.lex_state = 6}, + [5844] = {.lex_state = 6}, + [5845] = {.lex_state = 6}, + [5846] = {.lex_state = 14}, + [5847] = {.lex_state = 141}, + [5848] = {.lex_state = 6, .external_lex_state = 4}, + [5849] = {.lex_state = 14}, [5850] = {.lex_state = 14}, - [5851] = {.lex_state = 6}, + [5851] = {.lex_state = 6, .external_lex_state = 4}, [5852] = {.lex_state = 6}, - [5853] = {.lex_state = 6}, - [5854] = {.lex_state = 14}, - [5855] = {.lex_state = 14}, - [5856] = {.lex_state = 14}, - [5857] = {.lex_state = 14}, - [5858] = {.lex_state = 6}, - [5859] = {.lex_state = 6}, + [5853] = {.lex_state = 14}, + [5854] = {.lex_state = 140}, + [5855] = {.lex_state = 6}, + [5856] = {.lex_state = 6}, + [5857] = {.lex_state = 6}, + [5858] = {.lex_state = 6, .external_lex_state = 4}, + [5859] = {.lex_state = 14}, [5860] = {.lex_state = 14}, - [5861] = {.lex_state = 141}, - [5862] = {.lex_state = 14}, - [5863] = {.lex_state = 141}, - [5864] = {.lex_state = 14}, - [5865] = {.lex_state = 6}, - [5866] = {.lex_state = 141}, - [5867] = {.lex_state = 141}, + [5861] = {.lex_state = 14}, + [5862] = {.lex_state = 6}, + [5863] = {.lex_state = 6}, + [5864] = {.lex_state = 6, .external_lex_state = 4}, + [5865] = {.lex_state = 14}, + [5866] = {.lex_state = 6}, + [5867] = {.lex_state = 6}, [5868] = {.lex_state = 6}, - [5869] = {.lex_state = 6}, - [5870] = {.lex_state = 6, .external_lex_state = 4}, - [5871] = {.lex_state = 6}, - [5872] = {.lex_state = 6}, - [5873] = {.lex_state = 6}, + [5869] = {.lex_state = 14}, + [5870] = {.lex_state = 14}, + [5871] = {.lex_state = 141}, + [5872] = {.lex_state = 14}, + [5873] = {.lex_state = 141}, [5874] = {.lex_state = 14}, [5875] = {.lex_state = 14}, - [5876] = {.lex_state = 140}, - [5877] = {.lex_state = 6}, + [5876] = {.lex_state = 14}, + [5877] = {.lex_state = 14}, [5878] = {.lex_state = 6}, [5879] = {.lex_state = 14}, - [5880] = {.lex_state = 14}, + [5880] = {.lex_state = 6}, [5881] = {.lex_state = 6}, - [5882] = {.lex_state = 6, .external_lex_state = 4}, - [5883] = {.lex_state = 6}, + [5882] = {.lex_state = 14}, + [5883] = {.lex_state = 14}, [5884] = {.lex_state = 141}, - [5885] = {.lex_state = 6}, - [5886] = {.lex_state = 6}, - [5887] = {.lex_state = 6}, - [5888] = {.lex_state = 141}, + [5885] = {.lex_state = 14}, + [5886] = {.lex_state = 6, .external_lex_state = 4}, + [5887] = {.lex_state = 14}, + [5888] = {.lex_state = 14}, [5889] = {.lex_state = 6}, [5890] = {.lex_state = 141}, - [5891] = {.lex_state = 141}, - [5892] = {.lex_state = 6}, + [5891] = {.lex_state = 6}, + [5892] = {.lex_state = 6, .external_lex_state = 4}, [5893] = {.lex_state = 6}, [5894] = {.lex_state = 141}, [5895] = {.lex_state = 6}, - [5896] = {.lex_state = 141}, + [5896] = {.lex_state = 6}, [5897] = {.lex_state = 6}, [5898] = {.lex_state = 141}, [5899] = {.lex_state = 6}, - [5900] = {.lex_state = 141}, - [5901] = {.lex_state = 21}, - [5902] = {.lex_state = 21}, - [5903] = {.lex_state = 141}, + [5900] = {.lex_state = 6}, + [5901] = {.lex_state = 6}, + [5902] = {.lex_state = 6}, + [5903] = {.lex_state = 6}, [5904] = {.lex_state = 6}, - [5905] = {.lex_state = 141}, - [5906] = {.lex_state = 141}, - [5907] = {.lex_state = 6}, - [5908] = {.lex_state = 6}, + [5905] = {.lex_state = 21}, + [5906] = {.lex_state = 6}, + [5907] = {.lex_state = 141}, + [5908] = {.lex_state = 141}, [5909] = {.lex_state = 6}, [5910] = {.lex_state = 6}, - [5911] = {.lex_state = 6}, + [5911] = {.lex_state = 141}, [5912] = {.lex_state = 141}, - [5913] = {.lex_state = 141}, - [5914] = {.lex_state = 6}, - [5915] = {.lex_state = 6}, + [5913] = {.lex_state = 6}, + [5914] = {.lex_state = 141}, + [5915] = {.lex_state = 141}, [5916] = {.lex_state = 141}, - [5917] = {.lex_state = 6}, + [5917] = {.lex_state = 141}, [5918] = {.lex_state = 6}, - [5919] = {.lex_state = 141}, - [5920] = {.lex_state = 6}, + [5919] = {.lex_state = 6}, + [5920] = {.lex_state = 141}, [5921] = {.lex_state = 6}, [5922] = {.lex_state = 6}, - [5923] = {.lex_state = 6}, - [5924] = {.lex_state = 6}, + [5923] = {.lex_state = 141}, + [5924] = {.lex_state = 141}, [5925] = {.lex_state = 6}, [5926] = {.lex_state = 141}, - [5927] = {.lex_state = 141}, + [5927] = {.lex_state = 6}, [5928] = {.lex_state = 6}, [5929] = {.lex_state = 6}, - [5930] = {.lex_state = 6}, + [5930] = {.lex_state = 21}, [5931] = {.lex_state = 6}, [5932] = {.lex_state = 6}, [5933] = {.lex_state = 6}, - [5934] = {.lex_state = 6}, - [5935] = {.lex_state = 140}, - [5936] = {.lex_state = 6}, + [5934] = {.lex_state = 141}, + [5935] = {.lex_state = 6}, + [5936] = {.lex_state = 141}, [5937] = {.lex_state = 6}, [5938] = {.lex_state = 6}, - [5939] = {.lex_state = 141}, + [5939] = {.lex_state = 6}, [5940] = {.lex_state = 6}, - [5941] = {.lex_state = 6}, + [5941] = {.lex_state = 141}, [5942] = {.lex_state = 141}, [5943] = {.lex_state = 6}, [5944] = {.lex_state = 6}, [5945] = {.lex_state = 6}, [5946] = {.lex_state = 141}, - [5947] = {.lex_state = 6}, + [5947] = {.lex_state = 141}, [5948] = {.lex_state = 6}, - [5949] = {.lex_state = 141}, + [5949] = {.lex_state = 6}, [5950] = {.lex_state = 6}, [5951] = {.lex_state = 6}, [5952] = {.lex_state = 6}, - [5953] = {.lex_state = 6}, - [5954] = {.lex_state = 141}, + [5953] = {.lex_state = 141}, + [5954] = {.lex_state = 6}, [5955] = {.lex_state = 6}, - [5956] = {.lex_state = 141}, - [5957] = {.lex_state = 141}, + [5956] = {.lex_state = 6}, + [5957] = {.lex_state = 6}, [5958] = {.lex_state = 6}, - [5959] = {.lex_state = 6}, + [5959] = {.lex_state = 141}, [5960] = {.lex_state = 6}, [5961] = {.lex_state = 6}, - [5962] = {.lex_state = 141}, - [5963] = {.lex_state = 141}, + [5962] = {.lex_state = 6}, + [5963] = {.lex_state = 6}, [5964] = {.lex_state = 6}, [5965] = {.lex_state = 6}, - [5966] = {.lex_state = 6}, - [5967] = {.lex_state = 6}, - [5968] = {.lex_state = 6}, + [5966] = {.lex_state = 141}, + [5967] = {.lex_state = 140}, + [5968] = {.lex_state = 141}, [5969] = {.lex_state = 6}, [5970] = {.lex_state = 6}, [5971] = {.lex_state = 6}, @@ -30198,14 +30209,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5973] = {.lex_state = 6}, [5974] = {.lex_state = 6}, [5975] = {.lex_state = 6}, - [5976] = {.lex_state = 141}, + [5976] = {.lex_state = 6}, [5977] = {.lex_state = 6}, [5978] = {.lex_state = 6}, [5979] = {.lex_state = 6}, [5980] = {.lex_state = 6}, [5981] = {.lex_state = 6}, - [5982] = {.lex_state = 141}, - [5983] = {.lex_state = 140}, + [5982] = {.lex_state = 6}, + [5983] = {.lex_state = 6}, [5984] = {.lex_state = 6}, [5985] = {.lex_state = 6}, [5986] = {.lex_state = 6}, @@ -30213,7 +30224,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5988] = {.lex_state = 6}, [5989] = {.lex_state = 141}, [5990] = {.lex_state = 6}, - [5991] = {.lex_state = 141}, + [5991] = {.lex_state = 6}, [5992] = {.lex_state = 6}, [5993] = {.lex_state = 6}, [5994] = {.lex_state = 6}, @@ -30222,48 +30233,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5997] = {.lex_state = 6}, [5998] = {.lex_state = 141}, [5999] = {.lex_state = 141}, - [6000] = {.lex_state = 141}, + [6000] = {.lex_state = 140}, [6001] = {.lex_state = 141}, - [6002] = {.lex_state = 21}, + [6002] = {.lex_state = 141}, [6003] = {.lex_state = 141}, - [6004] = {.lex_state = 141}, + [6004] = {.lex_state = 6}, [6005] = {.lex_state = 141}, - [6006] = {.lex_state = 21}, + [6006] = {.lex_state = 141}, [6007] = {.lex_state = 141}, [6008] = {.lex_state = 141}, - [6009] = {.lex_state = 141}, + [6009] = {.lex_state = 21}, [6010] = {.lex_state = 141}, [6011] = {.lex_state = 141}, [6012] = {.lex_state = 141}, [6013] = {.lex_state = 141}, [6014] = {.lex_state = 141}, [6015] = {.lex_state = 141}, - [6016] = {.lex_state = 141}, - [6017] = {.lex_state = 21}, + [6016] = {.lex_state = 21}, + [6017] = {.lex_state = 141}, [6018] = {.lex_state = 141}, - [6019] = {.lex_state = 141}, + [6019] = {.lex_state = 21}, [6020] = {.lex_state = 141}, - [6021] = {.lex_state = 140}, - [6022] = {.lex_state = 140}, + [6021] = {.lex_state = 141}, + [6022] = {.lex_state = 141}, [6023] = {.lex_state = 141}, [6024] = {.lex_state = 141}, - [6025] = {.lex_state = 6}, + [6025] = {.lex_state = 140}, [6026] = {.lex_state = 140}, [6027] = {.lex_state = 141}, [6028] = {.lex_state = 141}, - [6029] = {.lex_state = 6}, + [6029] = {.lex_state = 141}, [6030] = {.lex_state = 141}, [6031] = {.lex_state = 141}, [6032] = {.lex_state = 141}, [6033] = {.lex_state = 141}, - [6034] = {.lex_state = 140}, - [6035] = {.lex_state = 141}, + [6034] = {.lex_state = 141}, + [6035] = {.lex_state = 21}, [6036] = {.lex_state = 141}, - [6037] = {.lex_state = 141}, - [6038] = {.lex_state = 141}, + [6037] = {.lex_state = 140}, + [6038] = {.lex_state = 140}, [6039] = {.lex_state = 141}, - [6040] = {.lex_state = 141}, - [6041] = {.lex_state = 21}, + [6040] = {.lex_state = 6}, + [6041] = {.lex_state = 6}, [6042] = {.lex_state = 141}, [6043] = {.lex_state = 141}, [6044] = {.lex_state = 141}, @@ -30371,7 +30382,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6146] = {.lex_state = 141}, [6147] = {.lex_state = 141}, [6148] = {.lex_state = 141}, - [6149] = {.lex_state = 140}, + [6149] = {.lex_state = 141}, [6150] = {.lex_state = 141}, [6151] = {.lex_state = 141}, [6152] = {.lex_state = 141}, @@ -30383,7 +30394,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6158] = {.lex_state = 141}, [6159] = {.lex_state = 141}, [6160] = {.lex_state = 141}, - [6161] = {.lex_state = 141}, + [6161] = {.lex_state = 140}, [6162] = {.lex_state = 141}, [6163] = {.lex_state = 141}, [6164] = {.lex_state = 141}, @@ -30467,7 +30478,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6242] = {.lex_state = 141}, [6243] = {.lex_state = 141}, [6244] = {.lex_state = 141}, - [6245] = {.lex_state = 1}, + [6245] = {.lex_state = 141}, [6246] = {.lex_state = 141}, [6247] = {.lex_state = 141}, [6248] = {.lex_state = 141}, @@ -30569,7 +30580,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6344] = {.lex_state = 141}, [6345] = {.lex_state = 141}, [6346] = {.lex_state = 141}, - [6347] = {.lex_state = 141}, + [6347] = {.lex_state = 1}, [6348] = {.lex_state = 141}, [6349] = {.lex_state = 141}, [6350] = {.lex_state = 141}, @@ -30582,7 +30593,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6357] = {.lex_state = 141}, [6358] = {.lex_state = 141}, [6359] = {.lex_state = 141}, - [6360] = {.lex_state = 5}, + [6360] = {.lex_state = 141}, [6361] = {.lex_state = 141}, [6362] = {.lex_state = 141}, [6363] = {.lex_state = 141}, @@ -30590,7 +30601,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6365] = {.lex_state = 141}, [6366] = {.lex_state = 141}, [6367] = {.lex_state = 141}, - [6368] = {.lex_state = 141}, + [6368] = {.lex_state = 5}, [6369] = {.lex_state = 141}, [6370] = {.lex_state = 141}, [6371] = {.lex_state = 141}, @@ -30657,18 +30668,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6432] = {.lex_state = 141}, [6433] = {.lex_state = 141}, [6434] = {.lex_state = 141}, - [6435] = {.lex_state = 11}, - [6436] = {.lex_state = 11}, - [6437] = {.lex_state = 11}, - [6438] = {.lex_state = 11}, - [6439] = {.lex_state = 11}, - [6440] = {.lex_state = 11}, - [6441] = {.lex_state = 11}, - [6442] = {.lex_state = 11}, - [6443] = {.lex_state = 11}, - [6444] = {.lex_state = 11}, - [6445] = {.lex_state = 11}, - [6446] = {.lex_state = 11}, + [6435] = {.lex_state = 141}, + [6436] = {.lex_state = 141}, + [6437] = {.lex_state = 141}, + [6438] = {.lex_state = 141}, + [6439] = {.lex_state = 141}, + [6440] = {.lex_state = 141}, + [6441] = {.lex_state = 7}, + [6442] = {.lex_state = 7}, + [6443] = {.lex_state = 7}, + [6444] = {.lex_state = 7}, + [6445] = {.lex_state = 7}, + [6446] = {.lex_state = 7}, [6447] = {.lex_state = 7}, [6448] = {.lex_state = 7}, [6449] = {.lex_state = 7}, @@ -30769,19 +30780,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6544] = {.lex_state = 7}, [6545] = {.lex_state = 7}, [6546] = {.lex_state = 7}, - [6547] = {.lex_state = 7}, - [6548] = {.lex_state = 7}, - [6549] = {.lex_state = 7}, - [6550] = {.lex_state = 7}, + [6547] = {.lex_state = 0}, + [6548] = {.lex_state = 0}, + [6549] = {.lex_state = 0}, + [6550] = {.lex_state = 0}, [6551] = {.lex_state = 7}, [6552] = {.lex_state = 7}, - [6553] = {.lex_state = 0}, - [6554] = {.lex_state = 0}, - [6555] = {.lex_state = 0}, - [6556] = {.lex_state = 0}, + [6553] = {.lex_state = 7}, + [6554] = {.lex_state = 7}, + [6555] = {.lex_state = 11}, + [6556] = {.lex_state = 7}, [6557] = {.lex_state = 7}, [6558] = {.lex_state = 7}, - [6559] = {.lex_state = 11}, + [6559] = {.lex_state = 7}, [6560] = {.lex_state = 7}, [6561] = {.lex_state = 7}, [6562] = {.lex_state = 7}, @@ -30789,42 +30800,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6564] = {.lex_state = 7}, [6565] = {.lex_state = 7}, [6566] = {.lex_state = 7}, - [6567] = {.lex_state = 7}, + [6567] = {.lex_state = 22}, [6568] = {.lex_state = 7}, [6569] = {.lex_state = 7}, [6570] = {.lex_state = 7}, [6571] = {.lex_state = 7}, - [6572] = {.lex_state = 7}, - [6573] = {.lex_state = 7}, - [6574] = {.lex_state = 7}, - [6575] = {.lex_state = 7}, - [6576] = {.lex_state = 11}, + [6572] = {.lex_state = 0}, + [6573] = {.lex_state = 11}, + [6574] = {.lex_state = 0}, + [6575] = {.lex_state = 11}, + [6576] = {.lex_state = 7}, [6577] = {.lex_state = 7}, - [6578] = {.lex_state = 0}, + [6578] = {.lex_state = 7}, [6579] = {.lex_state = 0}, [6580] = {.lex_state = 7}, [6581] = {.lex_state = 0}, - [6582] = {.lex_state = 0}, - [6583] = {.lex_state = 7}, + [6582] = {.lex_state = 22}, + [6583] = {.lex_state = 0}, [6584] = {.lex_state = 7}, [6585] = {.lex_state = 7}, - [6586] = {.lex_state = 11}, - [6587] = {.lex_state = 22}, - [6588] = {.lex_state = 0}, - [6589] = {.lex_state = 22}, + [6586] = {.lex_state = 7}, + [6587] = {.lex_state = 7}, + [6588] = {.lex_state = 7}, + [6589] = {.lex_state = 7}, [6590] = {.lex_state = 7}, [6591] = {.lex_state = 7}, [6592] = {.lex_state = 7}, - [6593] = {.lex_state = 0}, + [6593] = {.lex_state = 7}, [6594] = {.lex_state = 7}, [6595] = {.lex_state = 7}, [6596] = {.lex_state = 7}, [6597] = {.lex_state = 7}, [6598] = {.lex_state = 7}, - [6599] = {.lex_state = 7}, + [6599] = {.lex_state = 9}, [6600] = {.lex_state = 7}, [6601] = {.lex_state = 7}, - [6602] = {.lex_state = 7}, + [6602] = {.lex_state = 14}, [6603] = {.lex_state = 7}, [6604] = {.lex_state = 7}, [6605] = {.lex_state = 7}, @@ -30834,7 +30845,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6609] = {.lex_state = 7}, [6610] = {.lex_state = 7}, [6611] = {.lex_state = 7}, - [6612] = {.lex_state = 7}, + [6612] = {.lex_state = 0}, [6613] = {.lex_state = 7}, [6614] = {.lex_state = 7}, [6615] = {.lex_state = 7}, @@ -30842,7 +30853,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6617] = {.lex_state = 7}, [6618] = {.lex_state = 7}, [6619] = {.lex_state = 7}, - [6620] = {.lex_state = 14}, + [6620] = {.lex_state = 7}, [6621] = {.lex_state = 7}, [6622] = {.lex_state = 7}, [6623] = {.lex_state = 7}, @@ -30858,435 +30869,435 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6633] = {.lex_state = 7}, [6634] = {.lex_state = 7}, [6635] = {.lex_state = 7}, - [6636] = {.lex_state = 9}, - [6637] = {.lex_state = 7}, + [6636] = {.lex_state = 7}, + [6637] = {.lex_state = 0}, [6638] = {.lex_state = 7}, - [6639] = {.lex_state = 7}, + [6639] = {.lex_state = 0}, [6640] = {.lex_state = 7}, - [6641] = {.lex_state = 7}, - [6642] = {.lex_state = 0}, - [6643] = {.lex_state = 7}, + [6641] = {.lex_state = 0}, + [6642] = {.lex_state = 7}, + [6643] = {.lex_state = 0}, [6644] = {.lex_state = 7}, - [6645] = {.lex_state = 7}, + [6645] = {.lex_state = 2}, [6646] = {.lex_state = 7}, - [6647] = {.lex_state = 0}, - [6648] = {.lex_state = 0}, - [6649] = {.lex_state = 0}, - [6650] = {.lex_state = 7}, - [6651] = {.lex_state = 2}, - [6652] = {.lex_state = 7}, - [6653] = {.lex_state = 7}, + [6647] = {.lex_state = 7}, + [6648] = {.lex_state = 23, .external_lex_state = 5}, + [6649] = {.lex_state = 23, .external_lex_state = 5}, + [6650] = {.lex_state = 0}, + [6651] = {.lex_state = 7}, + [6652] = {.lex_state = 0}, + [6653] = {.lex_state = 0}, [6654] = {.lex_state = 7}, [6655] = {.lex_state = 7}, - [6656] = {.lex_state = 0}, - [6657] = {.lex_state = 2}, + [6656] = {.lex_state = 2}, + [6657] = {.lex_state = 7}, [6658] = {.lex_state = 7}, - [6659] = {.lex_state = 2}, + [6659] = {.lex_state = 7}, [6660] = {.lex_state = 7}, - [6661] = {.lex_state = 2}, - [6662] = {.lex_state = 7}, - [6663] = {.lex_state = 7}, - [6664] = {.lex_state = 7}, - [6665] = {.lex_state = 2}, - [6666] = {.lex_state = 23, .external_lex_state = 5}, - [6667] = {.lex_state = 0}, - [6668] = {.lex_state = 0}, - [6669] = {.lex_state = 2}, - [6670] = {.lex_state = 23, .external_lex_state = 5}, - [6671] = {.lex_state = 2}, - [6672] = {.lex_state = 23, .external_lex_state = 5}, - [6673] = {.lex_state = 2}, + [6661] = {.lex_state = 7}, + [6662] = {.lex_state = 2}, + [6663] = {.lex_state = 23, .external_lex_state = 5}, + [6664] = {.lex_state = 23, .external_lex_state = 5}, + [6665] = {.lex_state = 7}, + [6666] = {.lex_state = 2}, + [6667] = {.lex_state = 2}, + [6668] = {.lex_state = 2}, + [6669] = {.lex_state = 7}, + [6670] = {.lex_state = 2}, + [6671] = {.lex_state = 23, .external_lex_state = 5}, + [6672] = {.lex_state = 7}, + [6673] = {.lex_state = 7}, [6674] = {.lex_state = 7}, - [6675] = {.lex_state = 0}, - [6676] = {.lex_state = 7}, - [6677] = {.lex_state = 2}, + [6675] = {.lex_state = 2}, + [6676] = {.lex_state = 0}, + [6677] = {.lex_state = 7}, [6678] = {.lex_state = 23, .external_lex_state = 5}, [6679] = {.lex_state = 7}, - [6680] = {.lex_state = 2}, - [6681] = {.lex_state = 23, .external_lex_state = 5}, + [6680] = {.lex_state = 23, .external_lex_state = 5}, + [6681] = {.lex_state = 7}, [6682] = {.lex_state = 23, .external_lex_state = 5}, - [6683] = {.lex_state = 23, .external_lex_state = 5}, - [6684] = {.lex_state = 2}, - [6685] = {.lex_state = 23, .external_lex_state = 5}, - [6686] = {.lex_state = 7}, - [6687] = {.lex_state = 7}, - [6688] = {.lex_state = 2}, + [6683] = {.lex_state = 2}, + [6684] = {.lex_state = 7}, + [6685] = {.lex_state = 2}, + [6686] = {.lex_state = 2}, + [6687] = {.lex_state = 0}, + [6688] = {.lex_state = 0}, [6689] = {.lex_state = 7}, [6690] = {.lex_state = 7}, [6691] = {.lex_state = 7}, - [6692] = {.lex_state = 7}, - [6693] = {.lex_state = 23, .external_lex_state = 5}, + [6692] = {.lex_state = 23, .external_lex_state = 5}, + [6693] = {.lex_state = 7}, [6694] = {.lex_state = 23, .external_lex_state = 5}, [6695] = {.lex_state = 7}, - [6696] = {.lex_state = 7}, - [6697] = {.lex_state = 23, .external_lex_state = 5}, - [6698] = {.lex_state = 7}, + [6696] = {.lex_state = 23, .external_lex_state = 5}, + [6697] = {.lex_state = 2}, + [6698] = {.lex_state = 2}, [6699] = {.lex_state = 7}, - [6700] = {.lex_state = 0}, - [6701] = {.lex_state = 7}, - [6702] = {.lex_state = 0}, + [6700] = {.lex_state = 7}, + [6701] = {.lex_state = 0}, + [6702] = {.lex_state = 7}, [6703] = {.lex_state = 7}, - [6704] = {.lex_state = 2}, - [6705] = {.lex_state = 7}, - [6706] = {.lex_state = 0, .external_lex_state = 5}, + [6704] = {.lex_state = 0}, + [6705] = {.lex_state = 0, .external_lex_state = 5}, + [6706] = {.lex_state = 7}, [6707] = {.lex_state = 7}, - [6708] = {.lex_state = 0}, + [6708] = {.lex_state = 7}, [6709] = {.lex_state = 0, .external_lex_state = 5}, [6710] = {.lex_state = 0, .external_lex_state = 5}, [6711] = {.lex_state = 0, .external_lex_state = 5}, - [6712] = {.lex_state = 0}, - [6713] = {.lex_state = 0, .external_lex_state = 5}, - [6714] = {.lex_state = 7}, + [6712] = {.lex_state = 0, .external_lex_state = 5}, + [6713] = {.lex_state = 7}, + [6714] = {.lex_state = 0}, [6715] = {.lex_state = 0}, [6716] = {.lex_state = 0, .external_lex_state = 5}, - [6717] = {.lex_state = 0, .external_lex_state = 5}, - [6718] = {.lex_state = 0, .external_lex_state = 5}, + [6717] = {.lex_state = 0}, + [6718] = {.lex_state = 7}, [6719] = {.lex_state = 0}, - [6720] = {.lex_state = 11}, - [6721] = {.lex_state = 14}, - [6722] = {.lex_state = 7}, - [6723] = {.lex_state = 7}, - [6724] = {.lex_state = 7}, - [6725] = {.lex_state = 0, .external_lex_state = 5}, + [6720] = {.lex_state = 0, .external_lex_state = 5}, + [6721] = {.lex_state = 0}, + [6722] = {.lex_state = 0}, + [6723] = {.lex_state = 0, .external_lex_state = 5}, + [6724] = {.lex_state = 0}, + [6725] = {.lex_state = 7}, [6726] = {.lex_state = 0}, - [6727] = {.lex_state = 0, .external_lex_state = 5}, - [6728] = {.lex_state = 0}, - [6729] = {.lex_state = 7}, - [6730] = {.lex_state = 14}, - [6731] = {.lex_state = 7}, - [6732] = {.lex_state = 0}, + [6727] = {.lex_state = 7}, + [6728] = {.lex_state = 0, .external_lex_state = 5}, + [6729] = {.lex_state = 14}, + [6730] = {.lex_state = 0}, + [6731] = {.lex_state = 0}, + [6732] = {.lex_state = 7}, [6733] = {.lex_state = 0}, [6734] = {.lex_state = 7}, - [6735] = {.lex_state = 7}, - [6736] = {.lex_state = 7}, - [6737] = {.lex_state = 0}, - [6738] = {.lex_state = 0}, + [6735] = {.lex_state = 0}, + [6736] = {.lex_state = 14}, + [6737] = {.lex_state = 7}, + [6738] = {.lex_state = 7}, [6739] = {.lex_state = 0, .external_lex_state = 5}, [6740] = {.lex_state = 0, .external_lex_state = 5}, - [6741] = {.lex_state = 7}, - [6742] = {.lex_state = 7}, - [6743] = {.lex_state = 0, .external_lex_state = 5}, - [6744] = {.lex_state = 7}, - [6745] = {.lex_state = 7}, - [6746] = {.lex_state = 0}, + [6741] = {.lex_state = 0, .external_lex_state = 5}, + [6742] = {.lex_state = 0}, + [6743] = {.lex_state = 0}, + [6744] = {.lex_state = 0, .external_lex_state = 5}, + [6745] = {.lex_state = 11}, + [6746] = {.lex_state = 7}, [6747] = {.lex_state = 0}, - [6748] = {.lex_state = 0, .external_lex_state = 5}, + [6748] = {.lex_state = 7}, [6749] = {.lex_state = 0}, - [6750] = {.lex_state = 0}, - [6751] = {.lex_state = 0}, - [6752] = {.lex_state = 0}, - [6753] = {.lex_state = 0}, + [6750] = {.lex_state = 7}, + [6751] = {.lex_state = 0, .external_lex_state = 5}, + [6752] = {.lex_state = 0, .external_lex_state = 5}, + [6753] = {.lex_state = 7}, [6754] = {.lex_state = 0, .external_lex_state = 5}, - [6755] = {.lex_state = 0}, - [6756] = {.lex_state = 0}, + [6755] = {.lex_state = 3}, + [6756] = {.lex_state = 3}, [6757] = {.lex_state = 0, .external_lex_state = 5}, - [6758] = {.lex_state = 0, .external_lex_state = 5}, - [6759] = {.lex_state = 0, .external_lex_state = 5}, - [6760] = {.lex_state = 0, .external_lex_state = 5}, - [6761] = {.lex_state = 0, .external_lex_state = 5}, - [6762] = {.lex_state = 3}, - [6763] = {.lex_state = 7}, + [6758] = {.lex_state = 7}, + [6759] = {.lex_state = 7}, + [6760] = {.lex_state = 0}, + [6761] = {.lex_state = 7}, + [6762] = {.lex_state = 0}, + [6763] = {.lex_state = 0}, [6764] = {.lex_state = 0}, - [6765] = {.lex_state = 0}, - [6766] = {.lex_state = 3}, - [6767] = {.lex_state = 7}, + [6765] = {.lex_state = 7}, + [6766] = {.lex_state = 0, .external_lex_state = 5}, + [6767] = {.lex_state = 0}, [6768] = {.lex_state = 0}, [6769] = {.lex_state = 0}, - [6770] = {.lex_state = 7}, - [6771] = {.lex_state = 7}, - [6772] = {.lex_state = 7}, - [6773] = {.lex_state = 0}, - [6774] = {.lex_state = 7}, - [6775] = {.lex_state = 7}, - [6776] = {.lex_state = 0}, - [6777] = {.lex_state = 0}, - [6778] = {.lex_state = 0, .external_lex_state = 5}, + [6770] = {.lex_state = 0, .external_lex_state = 5}, + [6771] = {.lex_state = 0, .external_lex_state = 5}, + [6772] = {.lex_state = 0}, + [6773] = {.lex_state = 0, .external_lex_state = 5}, + [6774] = {.lex_state = 0, .external_lex_state = 5}, + [6775] = {.lex_state = 3}, + [6776] = {.lex_state = 140}, + [6777] = {.lex_state = 7}, + [6778] = {.lex_state = 7}, [6779] = {.lex_state = 7}, - [6780] = {.lex_state = 0, .external_lex_state = 5}, - [6781] = {.lex_state = 3}, - [6782] = {.lex_state = 7}, - [6783] = {.lex_state = 0}, - [6784] = {.lex_state = 14}, + [6780] = {.lex_state = 3}, + [6781] = {.lex_state = 7}, + [6782] = {.lex_state = 3}, + [6783] = {.lex_state = 7}, + [6784] = {.lex_state = 141}, [6785] = {.lex_state = 3}, - [6786] = {.lex_state = 3}, - [6787] = {.lex_state = 3}, - [6788] = {.lex_state = 141}, - [6789] = {.lex_state = 7}, + [6786] = {.lex_state = 7}, + [6787] = {.lex_state = 7}, + [6788] = {.lex_state = 2}, + [6789] = {.lex_state = 141}, [6790] = {.lex_state = 3}, [6791] = {.lex_state = 3}, - [6792] = {.lex_state = 3}, - [6793] = {.lex_state = 7}, - [6794] = {.lex_state = 141}, + [6792] = {.lex_state = 7}, + [6793] = {.lex_state = 3}, + [6794] = {.lex_state = 7}, [6795] = {.lex_state = 7}, - [6796] = {.lex_state = 141}, - [6797] = {.lex_state = 7}, - [6798] = {.lex_state = 0}, + [6796] = {.lex_state = 7}, + [6797] = {.lex_state = 3}, + [6798] = {.lex_state = 3}, [6799] = {.lex_state = 7}, - [6800] = {.lex_state = 3}, + [6800] = {.lex_state = 7}, [6801] = {.lex_state = 3}, [6802] = {.lex_state = 3}, - [6803] = {.lex_state = 7}, - [6804] = {.lex_state = 3}, - [6805] = {.lex_state = 140}, - [6806] = {.lex_state = 3}, - [6807] = {.lex_state = 141}, - [6808] = {.lex_state = 3}, + [6803] = {.lex_state = 141}, + [6804] = {.lex_state = 0}, + [6805] = {.lex_state = 7}, + [6806] = {.lex_state = 0}, + [6807] = {.lex_state = 3}, + [6808] = {.lex_state = 0}, [6809] = {.lex_state = 7}, - [6810] = {.lex_state = 140}, - [6811] = {.lex_state = 3}, - [6812] = {.lex_state = 7}, + [6810] = {.lex_state = 0}, + [6811] = {.lex_state = 7}, + [6812] = {.lex_state = 3}, [6813] = {.lex_state = 7}, - [6814] = {.lex_state = 0}, + [6814] = {.lex_state = 7}, [6815] = {.lex_state = 3}, - [6816] = {.lex_state = 7}, - [6817] = {.lex_state = 2}, - [6818] = {.lex_state = 3}, - [6819] = {.lex_state = 0}, - [6820] = {.lex_state = 0}, - [6821] = {.lex_state = 0}, - [6822] = {.lex_state = 0}, + [6816] = {.lex_state = 3}, + [6817] = {.lex_state = 141}, + [6818] = {.lex_state = 7}, + [6819] = {.lex_state = 7}, + [6820] = {.lex_state = 7}, + [6821] = {.lex_state = 7}, + [6822] = {.lex_state = 7}, [6823] = {.lex_state = 7}, - [6824] = {.lex_state = 2}, - [6825] = {.lex_state = 141}, - [6826] = {.lex_state = 0}, - [6827] = {.lex_state = 2}, + [6824] = {.lex_state = 141}, + [6825] = {.lex_state = 3}, + [6826] = {.lex_state = 7}, + [6827] = {.lex_state = 141}, [6828] = {.lex_state = 7}, - [6829] = {.lex_state = 7}, + [6829] = {.lex_state = 141}, [6830] = {.lex_state = 7}, - [6831] = {.lex_state = 14}, + [6831] = {.lex_state = 7}, [6832] = {.lex_state = 7}, - [6833] = {.lex_state = 7}, - [6834] = {.lex_state = 0}, - [6835] = {.lex_state = 3}, + [6833] = {.lex_state = 3}, + [6834] = {.lex_state = 7}, + [6835] = {.lex_state = 7}, [6836] = {.lex_state = 7}, - [6837] = {.lex_state = 7}, - [6838] = {.lex_state = 0}, + [6837] = {.lex_state = 3}, + [6838] = {.lex_state = 140}, [6839] = {.lex_state = 7}, - [6840] = {.lex_state = 0}, - [6841] = {.lex_state = 0}, + [6840] = {.lex_state = 3}, + [6841] = {.lex_state = 7}, [6842] = {.lex_state = 0}, - [6843] = {.lex_state = 3}, - [6844] = {.lex_state = 7}, + [6843] = {.lex_state = 0}, + [6844] = {.lex_state = 0}, [6845] = {.lex_state = 7}, [6846] = {.lex_state = 7}, - [6847] = {.lex_state = 7}, + [6847] = {.lex_state = 3}, [6848] = {.lex_state = 0}, - [6849] = {.lex_state = 3}, - [6850] = {.lex_state = 3}, + [6849] = {.lex_state = 7}, + [6850] = {.lex_state = 0}, [6851] = {.lex_state = 0}, - [6852] = {.lex_state = 3}, - [6853] = {.lex_state = 3}, - [6854] = {.lex_state = 7}, - [6855] = {.lex_state = 7}, + [6852] = {.lex_state = 7}, + [6853] = {.lex_state = 7}, + [6854] = {.lex_state = 141}, + [6855] = {.lex_state = 0}, [6856] = {.lex_state = 3}, - [6857] = {.lex_state = 7}, - [6858] = {.lex_state = 3}, - [6859] = {.lex_state = 3}, + [6857] = {.lex_state = 0}, + [6858] = {.lex_state = 7}, + [6859] = {.lex_state = 141}, [6860] = {.lex_state = 3}, - [6861] = {.lex_state = 7}, - [6862] = {.lex_state = 3}, + [6861] = {.lex_state = 0}, + [6862] = {.lex_state = 0}, [6863] = {.lex_state = 7}, [6864] = {.lex_state = 3}, - [6865] = {.lex_state = 141}, - [6866] = {.lex_state = 7}, - [6867] = {.lex_state = 0}, - [6868] = {.lex_state = 7}, - [6869] = {.lex_state = 3}, - [6870] = {.lex_state = 7}, - [6871] = {.lex_state = 3}, - [6872] = {.lex_state = 0}, + [6865] = {.lex_state = 7}, + [6866] = {.lex_state = 0}, + [6867] = {.lex_state = 7}, + [6868] = {.lex_state = 141}, + [6869] = {.lex_state = 140}, + [6870] = {.lex_state = 3}, + [6871] = {.lex_state = 7}, + [6872] = {.lex_state = 3}, [6873] = {.lex_state = 7}, - [6874] = {.lex_state = 7}, - [6875] = {.lex_state = 141}, - [6876] = {.lex_state = 7}, - [6877] = {.lex_state = 3}, - [6878] = {.lex_state = 0}, - [6879] = {.lex_state = 3}, - [6880] = {.lex_state = 7}, - [6881] = {.lex_state = 7}, - [6882] = {.lex_state = 0}, + [6874] = {.lex_state = 141}, + [6875] = {.lex_state = 3}, + [6876] = {.lex_state = 141}, + [6877] = {.lex_state = 7}, + [6878] = {.lex_state = 7}, + [6879] = {.lex_state = 7}, + [6880] = {.lex_state = 3}, + [6881] = {.lex_state = 0}, + [6882] = {.lex_state = 3}, [6883] = {.lex_state = 7}, - [6884] = {.lex_state = 7}, - [6885] = {.lex_state = 3}, + [6884] = {.lex_state = 140}, + [6885] = {.lex_state = 14}, [6886] = {.lex_state = 3}, - [6887] = {.lex_state = 141}, - [6888] = {.lex_state = 7}, - [6889] = {.lex_state = 7}, - [6890] = {.lex_state = 141}, - [6891] = {.lex_state = 141}, - [6892] = {.lex_state = 7}, + [6887] = {.lex_state = 0}, + [6888] = {.lex_state = 0}, + [6889] = {.lex_state = 14}, + [6890] = {.lex_state = 0}, + [6891] = {.lex_state = 7}, + [6892] = {.lex_state = 3}, [6893] = {.lex_state = 7}, [6894] = {.lex_state = 7}, - [6895] = {.lex_state = 7}, + [6895] = {.lex_state = 3}, [6896] = {.lex_state = 7}, - [6897] = {.lex_state = 141}, - [6898] = {.lex_state = 7}, - [6899] = {.lex_state = 7}, - [6900] = {.lex_state = 7}, - [6901] = {.lex_state = 3}, - [6902] = {.lex_state = 0}, - [6903] = {.lex_state = 140}, - [6904] = {.lex_state = 3}, - [6905] = {.lex_state = 0}, - [6906] = {.lex_state = 7}, - [6907] = {.lex_state = 7}, + [6897] = {.lex_state = 0}, + [6898] = {.lex_state = 3}, + [6899] = {.lex_state = 3}, + [6900] = {.lex_state = 3}, + [6901] = {.lex_state = 141}, + [6902] = {.lex_state = 3}, + [6903] = {.lex_state = 141}, + [6904] = {.lex_state = 7}, + [6905] = {.lex_state = 7}, + [6906] = {.lex_state = 0}, + [6907] = {.lex_state = 141}, [6908] = {.lex_state = 7}, - [6909] = {.lex_state = 141}, + [6909] = {.lex_state = 7}, [6910] = {.lex_state = 7}, [6911] = {.lex_state = 3}, - [6912] = {.lex_state = 7}, - [6913] = {.lex_state = 7}, - [6914] = {.lex_state = 141}, - [6915] = {.lex_state = 3}, - [6916] = {.lex_state = 7}, - [6917] = {.lex_state = 7}, - [6918] = {.lex_state = 0}, - [6919] = {.lex_state = 7}, - [6920] = {.lex_state = 141}, - [6921] = {.lex_state = 3}, - [6922] = {.lex_state = 140}, - [6923] = {.lex_state = 3}, - [6924] = {.lex_state = 141}, + [6912] = {.lex_state = 3}, + [6913] = {.lex_state = 2}, + [6914] = {.lex_state = 2}, + [6915] = {.lex_state = 0}, + [6916] = {.lex_state = 0}, + [6917] = {.lex_state = 3}, + [6918] = {.lex_state = 7}, + [6919] = {.lex_state = 3}, + [6920] = {.lex_state = 3}, + [6921] = {.lex_state = 7}, + [6922] = {.lex_state = 7}, + [6923] = {.lex_state = 0}, + [6924] = {.lex_state = 7}, [6925] = {.lex_state = 7}, - [6926] = {.lex_state = 0}, + [6926] = {.lex_state = 7}, [6927] = {.lex_state = 7}, - [6928] = {.lex_state = 0}, - [6929] = {.lex_state = 7}, - [6930] = {.lex_state = 140}, - [6931] = {.lex_state = 7}, + [6928] = {.lex_state = 7}, + [6929] = {.lex_state = 140}, + [6930] = {.lex_state = 23, .external_lex_state = 5}, + [6931] = {.lex_state = 14}, [6932] = {.lex_state = 7}, - [6933] = {.lex_state = 14}, + [6933] = {.lex_state = 7}, [6934] = {.lex_state = 0}, - [6935] = {.lex_state = 0}, - [6936] = {.lex_state = 0}, - [6937] = {.lex_state = 0}, - [6938] = {.lex_state = 141}, + [6935] = {.lex_state = 7}, + [6936] = {.lex_state = 14}, + [6937] = {.lex_state = 7}, + [6938] = {.lex_state = 7}, [6939] = {.lex_state = 7}, - [6940] = {.lex_state = 7}, + [6940] = {.lex_state = 23, .external_lex_state = 5}, [6941] = {.lex_state = 0}, - [6942] = {.lex_state = 7}, - [6943] = {.lex_state = 0}, + [6942] = {.lex_state = 14}, + [6943] = {.lex_state = 7}, [6944] = {.lex_state = 7}, - [6945] = {.lex_state = 0}, - [6946] = {.lex_state = 14}, - [6947] = {.lex_state = 0}, + [6945] = {.lex_state = 7}, + [6946] = {.lex_state = 7}, + [6947] = {.lex_state = 7}, [6948] = {.lex_state = 7}, - [6949] = {.lex_state = 7}, + [6949] = {.lex_state = 14}, [6950] = {.lex_state = 7}, [6951] = {.lex_state = 0}, - [6952] = {.lex_state = 7}, + [6952] = {.lex_state = 0}, [6953] = {.lex_state = 7}, - [6954] = {.lex_state = 0}, + [6954] = {.lex_state = 141}, [6955] = {.lex_state = 7}, - [6956] = {.lex_state = 0}, + [6956] = {.lex_state = 7}, [6957] = {.lex_state = 7}, [6958] = {.lex_state = 7}, [6959] = {.lex_state = 7}, - [6960] = {.lex_state = 140}, - [6961] = {.lex_state = 7}, + [6960] = {.lex_state = 7}, + [6961] = {.lex_state = 141}, [6962] = {.lex_state = 0}, - [6963] = {.lex_state = 23, .external_lex_state = 5}, - [6964] = {.lex_state = 0}, + [6963] = {.lex_state = 0}, + [6964] = {.lex_state = 7}, [6965] = {.lex_state = 7}, - [6966] = {.lex_state = 14}, - [6967] = {.lex_state = 0}, - [6968] = {.lex_state = 23, .external_lex_state = 5}, - [6969] = {.lex_state = 7}, - [6970] = {.lex_state = 0}, - [6971] = {.lex_state = 23, .external_lex_state = 5}, - [6972] = {.lex_state = 14}, + [6966] = {.lex_state = 23, .external_lex_state = 5}, + [6967] = {.lex_state = 7}, + [6968] = {.lex_state = 7}, + [6969] = {.lex_state = 23, .external_lex_state = 5}, + [6970] = {.lex_state = 7}, + [6971] = {.lex_state = 7}, + [6972] = {.lex_state = 7}, [6973] = {.lex_state = 7}, - [6974] = {.lex_state = 14}, - [6975] = {.lex_state = 7}, + [6974] = {.lex_state = 7}, + [6975] = {.lex_state = 14}, [6976] = {.lex_state = 7}, [6977] = {.lex_state = 7}, - [6978] = {.lex_state = 0}, + [6978] = {.lex_state = 7}, [6979] = {.lex_state = 7}, [6980] = {.lex_state = 7}, - [6981] = {.lex_state = 14}, + [6981] = {.lex_state = 7}, [6982] = {.lex_state = 7}, - [6983] = {.lex_state = 7}, - [6984] = {.lex_state = 140}, - [6985] = {.lex_state = 14}, + [6983] = {.lex_state = 0}, + [6984] = {.lex_state = 0}, + [6985] = {.lex_state = 0}, [6986] = {.lex_state = 14}, [6987] = {.lex_state = 7}, - [6988] = {.lex_state = 0}, - [6989] = {.lex_state = 7}, + [6988] = {.lex_state = 7}, + [6989] = {.lex_state = 0}, [6990] = {.lex_state = 7}, [6991] = {.lex_state = 7}, - [6992] = {.lex_state = 7}, + [6992] = {.lex_state = 140}, [6993] = {.lex_state = 7}, [6994] = {.lex_state = 7}, [6995] = {.lex_state = 7}, [6996] = {.lex_state = 7}, - [6997] = {.lex_state = 7}, + [6997] = {.lex_state = 140}, [6998] = {.lex_state = 7}, - [6999] = {.lex_state = 0}, - [7000] = {.lex_state = 7}, + [6999] = {.lex_state = 7}, + [7000] = {.lex_state = 0}, [7001] = {.lex_state = 7}, [7002] = {.lex_state = 7}, - [7003] = {.lex_state = 23, .external_lex_state = 5}, - [7004] = {.lex_state = 140}, - [7005] = {.lex_state = 140}, - [7006] = {.lex_state = 23, .external_lex_state = 5}, - [7007] = {.lex_state = 7}, - [7008] = {.lex_state = 7}, - [7009] = {.lex_state = 140}, + [7003] = {.lex_state = 7}, + [7004] = {.lex_state = 0}, + [7005] = {.lex_state = 7}, + [7006] = {.lex_state = 14}, + [7007] = {.lex_state = 14}, + [7008] = {.lex_state = 140}, + [7009] = {.lex_state = 0}, [7010] = {.lex_state = 7}, - [7011] = {.lex_state = 7}, - [7012] = {.lex_state = 0}, + [7011] = {.lex_state = 140}, + [7012] = {.lex_state = 14}, [7013] = {.lex_state = 7}, - [7014] = {.lex_state = 7}, - [7015] = {.lex_state = 7}, + [7014] = {.lex_state = 0}, + [7015] = {.lex_state = 140}, [7016] = {.lex_state = 7}, [7017] = {.lex_state = 7}, - [7018] = {.lex_state = 7}, - [7019] = {.lex_state = 7}, - [7020] = {.lex_state = 7}, - [7021] = {.lex_state = 140}, - [7022] = {.lex_state = 0}, + [7018] = {.lex_state = 0}, + [7019] = {.lex_state = 140}, + [7020] = {.lex_state = 140}, + [7021] = {.lex_state = 0}, + [7022] = {.lex_state = 7}, [7023] = {.lex_state = 7}, - [7024] = {.lex_state = 7}, - [7025] = {.lex_state = 141}, + [7024] = {.lex_state = 0}, + [7025] = {.lex_state = 7}, [7026] = {.lex_state = 7}, [7027] = {.lex_state = 7}, - [7028] = {.lex_state = 7}, - [7029] = {.lex_state = 14}, - [7030] = {.lex_state = 7}, - [7031] = {.lex_state = 7}, - [7032] = {.lex_state = 7}, + [7028] = {.lex_state = 0}, + [7029] = {.lex_state = 7}, + [7030] = {.lex_state = 0}, + [7031] = {.lex_state = 0}, + [7032] = {.lex_state = 0}, [7033] = {.lex_state = 7}, - [7034] = {.lex_state = 0}, + [7034] = {.lex_state = 7}, [7035] = {.lex_state = 7}, [7036] = {.lex_state = 7}, [7037] = {.lex_state = 7}, - [7038] = {.lex_state = 7}, - [7039] = {.lex_state = 140}, - [7040] = {.lex_state = 140}, - [7041] = {.lex_state = 7}, + [7038] = {.lex_state = 140}, + [7039] = {.lex_state = 7}, + [7040] = {.lex_state = 7}, + [7041] = {.lex_state = 23, .external_lex_state = 5}, [7042] = {.lex_state = 7}, - [7043] = {.lex_state = 7}, - [7044] = {.lex_state = 7}, + [7043] = {.lex_state = 0}, + [7044] = {.lex_state = 0}, [7045] = {.lex_state = 7}, - [7046] = {.lex_state = 7}, - [7047] = {.lex_state = 7}, - [7048] = {.lex_state = 7}, + [7046] = {.lex_state = 0}, + [7047] = {.lex_state = 14}, + [7048] = {.lex_state = 14}, [7049] = {.lex_state = 0}, - [7050] = {.lex_state = 7}, - [7051] = {.lex_state = 0}, - [7052] = {.lex_state = 14}, + [7050] = {.lex_state = 0}, + [7051] = {.lex_state = 7}, + [7052] = {.lex_state = 0}, [7053] = {.lex_state = 0}, [7054] = {.lex_state = 0}, [7055] = {.lex_state = 0}, [7056] = {.lex_state = 0}, [7057] = {.lex_state = 0}, [7058] = {.lex_state = 0}, - [7059] = {.lex_state = 14}, + [7059] = {.lex_state = 0}, [7060] = {.lex_state = 0}, [7061] = {.lex_state = 0}, [7062] = {.lex_state = 14}, - [7063] = {.lex_state = 0}, - [7064] = {.lex_state = 14}, + [7063] = {.lex_state = 14}, + [7064] = {.lex_state = 0}, [7065] = {.lex_state = 0}, [7066] = {.lex_state = 0}, [7067] = {.lex_state = 0}, @@ -31299,11 +31310,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7074] = {.lex_state = 0}, [7075] = {.lex_state = 0}, [7076] = {.lex_state = 0}, - [7077] = {.lex_state = 14}, - [7078] = {.lex_state = 7}, + [7077] = {.lex_state = 0}, + [7078] = {.lex_state = 0}, [7079] = {.lex_state = 0}, [7080] = {.lex_state = 0}, - [7081] = {.lex_state = 7}, + [7081] = {.lex_state = 14}, [7082] = {.lex_state = 0}, [7083] = {.lex_state = 0}, [7084] = {.lex_state = 0}, @@ -31313,96 +31324,96 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7088] = {.lex_state = 0}, [7089] = {.lex_state = 0}, [7090] = {.lex_state = 0}, - [7091] = {.lex_state = 14}, - [7092] = {.lex_state = 0}, - [7093] = {.lex_state = 14}, - [7094] = {.lex_state = 14}, + [7091] = {.lex_state = 0}, + [7092] = {.lex_state = 7}, + [7093] = {.lex_state = 0}, + [7094] = {.lex_state = 0}, [7095] = {.lex_state = 0}, [7096] = {.lex_state = 0}, [7097] = {.lex_state = 0}, - [7098] = {.lex_state = 0}, + [7098] = {.lex_state = 14}, [7099] = {.lex_state = 0}, [7100] = {.lex_state = 0}, [7101] = {.lex_state = 0}, - [7102] = {.lex_state = 3}, + [7102] = {.lex_state = 0}, [7103] = {.lex_state = 0}, [7104] = {.lex_state = 0}, [7105] = {.lex_state = 0}, [7106] = {.lex_state = 0}, [7107] = {.lex_state = 0}, [7108] = {.lex_state = 0}, - [7109] = {.lex_state = 14}, + [7109] = {.lex_state = 0}, [7110] = {.lex_state = 0}, [7111] = {.lex_state = 0}, [7112] = {.lex_state = 0}, [7113] = {.lex_state = 0}, - [7114] = {.lex_state = 14}, + [7114] = {.lex_state = 0}, [7115] = {.lex_state = 0}, - [7116] = {.lex_state = 14}, + [7116] = {.lex_state = 3}, [7117] = {.lex_state = 0}, [7118] = {.lex_state = 0}, [7119] = {.lex_state = 0}, - [7120] = {.lex_state = 14}, - [7121] = {.lex_state = 0}, + [7120] = {.lex_state = 0}, + [7121] = {.lex_state = 14}, [7122] = {.lex_state = 0}, [7123] = {.lex_state = 0}, [7124] = {.lex_state = 0}, [7125] = {.lex_state = 0}, - [7126] = {.lex_state = 14}, - [7127] = {.lex_state = 0}, - [7128] = {.lex_state = 0}, - [7129] = {.lex_state = 14}, + [7126] = {.lex_state = 0}, + [7127] = {.lex_state = 14}, + [7128] = {.lex_state = 14}, + [7129] = {.lex_state = 0}, [7130] = {.lex_state = 0}, - [7131] = {.lex_state = 141}, - [7132] = {.lex_state = 14}, + [7131] = {.lex_state = 0}, + [7132] = {.lex_state = 0}, [7133] = {.lex_state = 0}, [7134] = {.lex_state = 0}, - [7135] = {.lex_state = 0}, + [7135] = {.lex_state = 14}, [7136] = {.lex_state = 0}, - [7137] = {.lex_state = 14}, + [7137] = {.lex_state = 0}, [7138] = {.lex_state = 0}, [7139] = {.lex_state = 0}, [7140] = {.lex_state = 0}, [7141] = {.lex_state = 0}, - [7142] = {.lex_state = 14}, + [7142] = {.lex_state = 0}, [7143] = {.lex_state = 0}, [7144] = {.lex_state = 0}, [7145] = {.lex_state = 0}, - [7146] = {.lex_state = 14}, + [7146] = {.lex_state = 0}, [7147] = {.lex_state = 0}, - [7148] = {.lex_state = 14}, + [7148] = {.lex_state = 0}, [7149] = {.lex_state = 0}, - [7150] = {.lex_state = 0}, + [7150] = {.lex_state = 7}, [7151] = {.lex_state = 0}, - [7152] = {.lex_state = 0}, - [7153] = {.lex_state = 0}, + [7152] = {.lex_state = 7}, + [7153] = {.lex_state = 14}, [7154] = {.lex_state = 0}, [7155] = {.lex_state = 0}, [7156] = {.lex_state = 0}, [7157] = {.lex_state = 0}, - [7158] = {.lex_state = 7}, - [7159] = {.lex_state = 7}, - [7160] = {.lex_state = 0}, - [7161] = {.lex_state = 0}, - [7162] = {.lex_state = 0}, + [7158] = {.lex_state = 0}, + [7159] = {.lex_state = 0}, + [7160] = {.lex_state = 3}, + [7161] = {.lex_state = 14}, + [7162] = {.lex_state = 14}, [7163] = {.lex_state = 0}, [7164] = {.lex_state = 0}, [7165] = {.lex_state = 0}, - [7166] = {.lex_state = 14}, + [7166] = {.lex_state = 0}, [7167] = {.lex_state = 0}, [7168] = {.lex_state = 0}, [7169] = {.lex_state = 0}, [7170] = {.lex_state = 0}, [7171] = {.lex_state = 0}, - [7172] = {.lex_state = 0}, + [7172] = {.lex_state = 14}, [7173] = {.lex_state = 0}, [7174] = {.lex_state = 0}, [7175] = {.lex_state = 0}, [7176] = {.lex_state = 0}, - [7177] = {.lex_state = 3}, + [7177] = {.lex_state = 0}, [7178] = {.lex_state = 0}, [7179] = {.lex_state = 0}, - [7180] = {.lex_state = 14}, + [7180] = {.lex_state = 0}, [7181] = {.lex_state = 0}, [7182] = {.lex_state = 0}, [7183] = {.lex_state = 0}, @@ -31410,10 +31421,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7185] = {.lex_state = 0}, [7186] = {.lex_state = 0}, [7187] = {.lex_state = 0}, - [7188] = {.lex_state = 0, .external_lex_state = 5}, - [7189] = {.lex_state = 0, .external_lex_state = 5}, + [7188] = {.lex_state = 0}, + [7189] = {.lex_state = 0}, [7190] = {.lex_state = 0}, - [7191] = {.lex_state = 0}, + [7191] = {.lex_state = 3}, [7192] = {.lex_state = 0}, [7193] = {.lex_state = 0}, [7194] = {.lex_state = 0}, @@ -31422,189 +31433,189 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7197] = {.lex_state = 0}, [7198] = {.lex_state = 0}, [7199] = {.lex_state = 0}, - [7200] = {.lex_state = 0}, + [7200] = {.lex_state = 14}, [7201] = {.lex_state = 0}, [7202] = {.lex_state = 14}, - [7203] = {.lex_state = 0}, + [7203] = {.lex_state = 14}, [7204] = {.lex_state = 14}, - [7205] = {.lex_state = 14}, - [7206] = {.lex_state = 0}, - [7207] = {.lex_state = 14}, + [7205] = {.lex_state = 0}, + [7206] = {.lex_state = 3}, + [7207] = {.lex_state = 0}, [7208] = {.lex_state = 14}, [7209] = {.lex_state = 0}, - [7210] = {.lex_state = 14}, + [7210] = {.lex_state = 0}, [7211] = {.lex_state = 0}, - [7212] = {.lex_state = 14}, + [7212] = {.lex_state = 0}, [7213] = {.lex_state = 0}, [7214] = {.lex_state = 0}, [7215] = {.lex_state = 0}, [7216] = {.lex_state = 0}, [7217] = {.lex_state = 0}, [7218] = {.lex_state = 0}, - [7219] = {.lex_state = 14}, - [7220] = {.lex_state = 14}, - [7221] = {.lex_state = 0, .external_lex_state = 5}, - [7222] = {.lex_state = 14}, + [7219] = {.lex_state = 0}, + [7220] = {.lex_state = 0}, + [7221] = {.lex_state = 0}, + [7222] = {.lex_state = 0}, [7223] = {.lex_state = 0}, [7224] = {.lex_state = 0}, [7225] = {.lex_state = 0}, [7226] = {.lex_state = 0}, [7227] = {.lex_state = 0}, [7228] = {.lex_state = 0}, - [7229] = {.lex_state = 14}, - [7230] = {.lex_state = 0}, + [7229] = {.lex_state = 141}, + [7230] = {.lex_state = 141}, [7231] = {.lex_state = 0}, [7232] = {.lex_state = 0}, [7233] = {.lex_state = 0}, - [7234] = {.lex_state = 0}, + [7234] = {.lex_state = 14}, [7235] = {.lex_state = 0}, [7236] = {.lex_state = 0}, [7237] = {.lex_state = 0}, [7238] = {.lex_state = 0}, [7239] = {.lex_state = 0}, - [7240] = {.lex_state = 0}, + [7240] = {.lex_state = 141}, [7241] = {.lex_state = 0}, [7242] = {.lex_state = 0}, [7243] = {.lex_state = 0}, [7244] = {.lex_state = 0}, [7245] = {.lex_state = 0}, - [7246] = {.lex_state = 0}, + [7246] = {.lex_state = 14}, [7247] = {.lex_state = 0}, - [7248] = {.lex_state = 14}, + [7248] = {.lex_state = 0}, [7249] = {.lex_state = 0}, - [7250] = {.lex_state = 0}, - [7251] = {.lex_state = 0}, - [7252] = {.lex_state = 0}, - [7253] = {.lex_state = 0}, - [7254] = {.lex_state = 0, .external_lex_state = 5}, + [7250] = {.lex_state = 14}, + [7251] = {.lex_state = 140, .external_lex_state = 4}, + [7252] = {.lex_state = 3}, + [7253] = {.lex_state = 14}, + [7254] = {.lex_state = 14}, [7255] = {.lex_state = 0}, [7256] = {.lex_state = 0}, [7257] = {.lex_state = 0}, [7258] = {.lex_state = 0}, [7259] = {.lex_state = 0}, [7260] = {.lex_state = 0}, - [7261] = {.lex_state = 0}, + [7261] = {.lex_state = 14}, [7262] = {.lex_state = 0}, - [7263] = {.lex_state = 14}, - [7264] = {.lex_state = 3}, + [7263] = {.lex_state = 0}, + [7264] = {.lex_state = 14}, [7265] = {.lex_state = 14}, [7266] = {.lex_state = 0}, [7267] = {.lex_state = 0}, - [7268] = {.lex_state = 14}, + [7268] = {.lex_state = 0}, [7269] = {.lex_state = 0}, - [7270] = {.lex_state = 140, .external_lex_state = 4}, + [7270] = {.lex_state = 0}, [7271] = {.lex_state = 0}, [7272] = {.lex_state = 0}, - [7273] = {.lex_state = 14}, + [7273] = {.lex_state = 0}, [7274] = {.lex_state = 0}, [7275] = {.lex_state = 0}, [7276] = {.lex_state = 0}, - [7277] = {.lex_state = 14}, + [7277] = {.lex_state = 0}, [7278] = {.lex_state = 0}, [7279] = {.lex_state = 0}, [7280] = {.lex_state = 0}, [7281] = {.lex_state = 0}, [7282] = {.lex_state = 0}, [7283] = {.lex_state = 0}, - [7284] = {.lex_state = 0}, + [7284] = {.lex_state = 5}, [7285] = {.lex_state = 0}, [7286] = {.lex_state = 0}, [7287] = {.lex_state = 0}, - [7288] = {.lex_state = 14}, + [7288] = {.lex_state = 0}, [7289] = {.lex_state = 0}, [7290] = {.lex_state = 0}, - [7291] = {.lex_state = 0}, - [7292] = {.lex_state = 7}, - [7293] = {.lex_state = 0}, + [7291] = {.lex_state = 14}, + [7292] = {.lex_state = 0}, + [7293] = {.lex_state = 14}, [7294] = {.lex_state = 0}, - [7295] = {.lex_state = 0}, + [7295] = {.lex_state = 14}, [7296] = {.lex_state = 0}, [7297] = {.lex_state = 0}, [7298] = {.lex_state = 0}, - [7299] = {.lex_state = 0}, + [7299] = {.lex_state = 0, .external_lex_state = 5}, [7300] = {.lex_state = 0}, - [7301] = {.lex_state = 0}, - [7302] = {.lex_state = 3}, - [7303] = {.lex_state = 0}, + [7301] = {.lex_state = 0, .external_lex_state = 5}, + [7302] = {.lex_state = 0}, + [7303] = {.lex_state = 7}, [7304] = {.lex_state = 0}, - [7305] = {.lex_state = 0}, - [7306] = {.lex_state = 0}, + [7305] = {.lex_state = 14}, + [7306] = {.lex_state = 14}, [7307] = {.lex_state = 0}, [7308] = {.lex_state = 14}, - [7309] = {.lex_state = 0}, + [7309] = {.lex_state = 7}, [7310] = {.lex_state = 0}, [7311] = {.lex_state = 0}, - [7312] = {.lex_state = 14}, + [7312] = {.lex_state = 0}, [7313] = {.lex_state = 0}, - [7314] = {.lex_state = 0}, - [7315] = {.lex_state = 0}, + [7314] = {.lex_state = 0, .external_lex_state = 5}, + [7315] = {.lex_state = 0, .external_lex_state = 5}, [7316] = {.lex_state = 0}, - [7317] = {.lex_state = 3}, - [7318] = {.lex_state = 14}, + [7317] = {.lex_state = 0}, + [7318] = {.lex_state = 0}, [7319] = {.lex_state = 0}, [7320] = {.lex_state = 0}, - [7321] = {.lex_state = 14}, - [7322] = {.lex_state = 5}, - [7323] = {.lex_state = 14}, + [7321] = {.lex_state = 0}, + [7322] = {.lex_state = 0}, + [7323] = {.lex_state = 0}, [7324] = {.lex_state = 0}, [7325] = {.lex_state = 0}, [7326] = {.lex_state = 0}, [7327] = {.lex_state = 0}, - [7328] = {.lex_state = 0}, - [7329] = {.lex_state = 141}, + [7328] = {.lex_state = 14}, + [7329] = {.lex_state = 14}, [7330] = {.lex_state = 0}, - [7331] = {.lex_state = 141}, + [7331] = {.lex_state = 0}, [7332] = {.lex_state = 0}, [7333] = {.lex_state = 0}, - [7334] = {.lex_state = 0}, - [7335] = {.lex_state = 0}, - [7336] = {.lex_state = 14}, + [7334] = {.lex_state = 14}, + [7335] = {.lex_state = 14}, + [7336] = {.lex_state = 0}, [7337] = {.lex_state = 0}, [7338] = {.lex_state = 0}, - [7339] = {.lex_state = 0}, + [7339] = {.lex_state = 14}, [7340] = {.lex_state = 0}, - [7341] = {.lex_state = 0}, - [7342] = {.lex_state = 0}, + [7341] = {.lex_state = 14}, + [7342] = {.lex_state = 14}, [7343] = {.lex_state = 0}, [7344] = {.lex_state = 0}, - [7345] = {.lex_state = 0}, + [7345] = {.lex_state = 14}, [7346] = {.lex_state = 0}, [7347] = {.lex_state = 0}, [7348] = {.lex_state = 0}, - [7349] = {.lex_state = 0}, + [7349] = {.lex_state = 14}, [7350] = {.lex_state = 0}, - [7351] = {.lex_state = 0}, - [7352] = {.lex_state = 14}, + [7351] = {.lex_state = 14}, + [7352] = {.lex_state = 0}, [7353] = {.lex_state = 14}, - [7354] = {.lex_state = 7}, - [7355] = {.lex_state = 14}, + [7354] = {.lex_state = 14}, + [7355] = {.lex_state = 0}, [7356] = {.lex_state = 0}, [7357] = {.lex_state = 0}, - [7358] = {.lex_state = 0}, - [7359] = {.lex_state = 0}, + [7358] = {.lex_state = 14}, + [7359] = {.lex_state = 14}, [7360] = {.lex_state = 0}, [7361] = {.lex_state = 0}, - [7362] = {.lex_state = 0}, + [7362] = {.lex_state = 14}, [7363] = {.lex_state = 0}, [7364] = {.lex_state = 0}, [7365] = {.lex_state = 0}, [7366] = {.lex_state = 0}, [7367] = {.lex_state = 0}, [7368] = {.lex_state = 0}, - [7369] = {.lex_state = 0}, + [7369] = {.lex_state = 4}, [7370] = {.lex_state = 0}, - [7371] = {.lex_state = 0}, + [7371] = {.lex_state = 7}, [7372] = {.lex_state = 0}, [7373] = {.lex_state = 0}, - [7374] = {.lex_state = 7}, - [7375] = {.lex_state = 4}, + [7374] = {.lex_state = 0}, + [7375] = {.lex_state = 0}, [7376] = {.lex_state = 0}, - [7377] = {.lex_state = 7}, + [7377] = {.lex_state = 14}, [7378] = {.lex_state = 0}, [7379] = {.lex_state = 0}, [7380] = {.lex_state = 0}, [7381] = {.lex_state = 19}, - [7382] = {.lex_state = 7}, + [7382] = {.lex_state = 14}, [7383] = {.lex_state = 0}, [7384] = {.lex_state = 0}, [7385] = {.lex_state = 0}, @@ -31617,10 +31628,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7392] = {.lex_state = 0}, [7393] = {.lex_state = 0}, [7394] = {.lex_state = 0}, - [7395] = {.lex_state = 0}, + [7395] = {.lex_state = 7}, [7396] = {.lex_state = 0}, [7397] = {.lex_state = 0}, - [7398] = {.lex_state = 0}, + [7398] = {.lex_state = 3}, [7399] = {.lex_state = 0}, [7400] = {.lex_state = 0}, [7401] = {.lex_state = 0}, @@ -31629,53 +31640,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7404] = {.lex_state = 0}, [7405] = {.lex_state = 0}, [7406] = {.lex_state = 0}, - [7407] = {.lex_state = 7}, + [7407] = {.lex_state = 0}, [7408] = {.lex_state = 0}, [7409] = {.lex_state = 0}, - [7410] = {.lex_state = 0}, + [7410] = {.lex_state = 7}, [7411] = {.lex_state = 0}, [7412] = {.lex_state = 0}, - [7413] = {.lex_state = 0}, - [7414] = {.lex_state = 0}, - [7415] = {.lex_state = 14}, + [7413] = {.lex_state = 14}, + [7414] = {.lex_state = 4}, + [7415] = {.lex_state = 0}, [7416] = {.lex_state = 0}, - [7417] = {.lex_state = 0}, - [7418] = {.lex_state = 14}, - [7419] = {.lex_state = 19}, - [7420] = {.lex_state = 0}, + [7417] = {.lex_state = 14}, + [7418] = {.lex_state = 0}, + [7419] = {.lex_state = 14}, + [7420] = {.lex_state = 19}, [7421] = {.lex_state = 0}, [7422] = {.lex_state = 0}, [7423] = {.lex_state = 0}, [7424] = {.lex_state = 0}, [7425] = {.lex_state = 0}, [7426] = {.lex_state = 0}, - [7427] = {.lex_state = 0}, - [7428] = {.lex_state = 4}, - [7429] = {.lex_state = 14}, + [7427] = {.lex_state = 3}, + [7428] = {.lex_state = 0}, + [7429] = {.lex_state = 0}, [7430] = {.lex_state = 0}, [7431] = {.lex_state = 0}, [7432] = {.lex_state = 0}, [7433] = {.lex_state = 0}, [7434] = {.lex_state = 0}, - [7435] = {.lex_state = 19}, - [7436] = {.lex_state = 7}, - [7437] = {.lex_state = 0}, + [7435] = {.lex_state = 0}, + [7436] = {.lex_state = 0}, + [7437] = {.lex_state = 7}, [7438] = {.lex_state = 0}, [7439] = {.lex_state = 0}, [7440] = {.lex_state = 0}, - [7441] = {.lex_state = 0}, + [7441] = {.lex_state = 7}, [7442] = {.lex_state = 0}, - [7443] = {.lex_state = 0}, - [7444] = {.lex_state = 7}, + [7443] = {.lex_state = 7}, + [7444] = {.lex_state = 0}, [7445] = {.lex_state = 0}, - [7446] = {.lex_state = 0}, + [7446] = {.lex_state = 19}, [7447] = {.lex_state = 0}, [7448] = {.lex_state = 0}, - [7449] = {.lex_state = 0}, + [7449] = {.lex_state = 14}, [7450] = {.lex_state = 0}, - [7451] = {.lex_state = 0}, + [7451] = {.lex_state = 7}, [7452] = {.lex_state = 0}, - [7453] = {.lex_state = 0}, + [7453] = {.lex_state = 19}, [7454] = {.lex_state = 0}, [7455] = {.lex_state = 0}, [7456] = {.lex_state = 0}, @@ -31683,31 +31694,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7458] = {.lex_state = 0}, [7459] = {.lex_state = 3}, [7460] = {.lex_state = 0}, - [7461] = {.lex_state = 0}, + [7461] = {.lex_state = 7}, [7462] = {.lex_state = 0}, - [7463] = {.lex_state = 0}, + [7463] = {.lex_state = 7}, [7464] = {.lex_state = 0}, [7465] = {.lex_state = 0}, - [7466] = {.lex_state = 0}, + [7466] = {.lex_state = 7}, [7467] = {.lex_state = 0}, [7468] = {.lex_state = 0}, - [7469] = {.lex_state = 0}, - [7470] = {.lex_state = 0}, + [7469] = {.lex_state = 7}, + [7470] = {.lex_state = 14}, [7471] = {.lex_state = 0}, [7472] = {.lex_state = 0}, - [7473] = {.lex_state = 0}, + [7473] = {.lex_state = 7}, [7474] = {.lex_state = 0}, [7475] = {.lex_state = 0}, [7476] = {.lex_state = 0}, [7477] = {.lex_state = 0}, [7478] = {.lex_state = 0}, [7479] = {.lex_state = 0}, - [7480] = {.lex_state = 0}, - [7481] = {.lex_state = 19}, + [7480] = {.lex_state = 7}, + [7481] = {.lex_state = 0}, [7482] = {.lex_state = 0}, - [7483] = {.lex_state = 0}, + [7483] = {.lex_state = 7}, [7484] = {.lex_state = 0}, - [7485] = {.lex_state = 7}, + [7485] = {.lex_state = 0}, [7486] = {.lex_state = 0}, [7487] = {.lex_state = 0}, [7488] = {.lex_state = 0}, @@ -31718,176 +31729,176 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7493] = {.lex_state = 0}, [7494] = {.lex_state = 0}, [7495] = {.lex_state = 0}, - [7496] = {.lex_state = 0}, + [7496] = {.lex_state = 7}, [7497] = {.lex_state = 0}, [7498] = {.lex_state = 0}, [7499] = {.lex_state = 0}, - [7500] = {.lex_state = 0}, + [7500] = {.lex_state = 7}, [7501] = {.lex_state = 0}, [7502] = {.lex_state = 0}, - [7503] = {.lex_state = 0}, + [7503] = {.lex_state = 7}, [7504] = {.lex_state = 0}, [7505] = {.lex_state = 0}, [7506] = {.lex_state = 0}, [7507] = {.lex_state = 0}, [7508] = {.lex_state = 0}, - [7509] = {.lex_state = 0}, + [7509] = {.lex_state = 7}, [7510] = {.lex_state = 0}, [7511] = {.lex_state = 0}, [7512] = {.lex_state = 0}, [7513] = {.lex_state = 0}, - [7514] = {.lex_state = 14}, - [7515] = {.lex_state = 0}, + [7514] = {.lex_state = 7}, + [7515] = {.lex_state = 7}, [7516] = {.lex_state = 0}, [7517] = {.lex_state = 0}, - [7518] = {.lex_state = 19}, + [7518] = {.lex_state = 7}, [7519] = {.lex_state = 0}, [7520] = {.lex_state = 0}, - [7521] = {.lex_state = 0}, - [7522] = {.lex_state = 7}, - [7523] = {.lex_state = 0}, - [7524] = {.lex_state = 0}, - [7525] = {.lex_state = 0}, - [7526] = {.lex_state = 14}, - [7527] = {.lex_state = 0}, + [7521] = {.lex_state = 7}, + [7522] = {.lex_state = 0}, + [7523] = {.lex_state = 7}, + [7524] = {.lex_state = 7}, + [7525] = {.lex_state = 7}, + [7526] = {.lex_state = 7}, + [7527] = {.lex_state = 7}, [7528] = {.lex_state = 0}, [7529] = {.lex_state = 7}, - [7530] = {.lex_state = 0}, - [7531] = {.lex_state = 0}, - [7532] = {.lex_state = 0}, - [7533] = {.lex_state = 0}, - [7534] = {.lex_state = 0}, + [7530] = {.lex_state = 7}, + [7531] = {.lex_state = 7}, + [7532] = {.lex_state = 7}, + [7533] = {.lex_state = 7}, + [7534] = {.lex_state = 7}, [7535] = {.lex_state = 0}, [7536] = {.lex_state = 0}, [7537] = {.lex_state = 0}, [7538] = {.lex_state = 0}, [7539] = {.lex_state = 0}, [7540] = {.lex_state = 0}, - [7541] = {.lex_state = 0}, - [7542] = {.lex_state = 0}, + [7541] = {.lex_state = 7}, + [7542] = {.lex_state = 7}, [7543] = {.lex_state = 0}, [7544] = {.lex_state = 0}, - [7545] = {.lex_state = 14}, + [7545] = {.lex_state = 0}, [7546] = {.lex_state = 0}, [7547] = {.lex_state = 0}, - [7548] = {.lex_state = 0}, + [7548] = {.lex_state = 7}, [7549] = {.lex_state = 0}, [7550] = {.lex_state = 0}, - [7551] = {.lex_state = 0}, + [7551] = {.lex_state = 7}, [7552] = {.lex_state = 0}, [7553] = {.lex_state = 0}, - [7554] = {.lex_state = 3}, + [7554] = {.lex_state = 0}, [7555] = {.lex_state = 0}, [7556] = {.lex_state = 7}, - [7557] = {.lex_state = 7}, - [7558] = {.lex_state = 14}, - [7559] = {.lex_state = 14}, - [7560] = {.lex_state = 14}, + [7557] = {.lex_state = 0}, + [7558] = {.lex_state = 0}, + [7559] = {.lex_state = 0}, + [7560] = {.lex_state = 0}, [7561] = {.lex_state = 0}, - [7562] = {.lex_state = 14}, + [7562] = {.lex_state = 7}, [7563] = {.lex_state = 0}, [7564] = {.lex_state = 0}, [7565] = {.lex_state = 0}, [7566] = {.lex_state = 0}, [7567] = {.lex_state = 0}, - [7568] = {.lex_state = 7}, - [7569] = {.lex_state = 7}, - [7570] = {.lex_state = 7}, - [7571] = {.lex_state = 7}, - [7572] = {.lex_state = 0}, - [7573] = {.lex_state = 3}, + [7568] = {.lex_state = 0}, + [7569] = {.lex_state = 0}, + [7570] = {.lex_state = 0}, + [7571] = {.lex_state = 0}, + [7572] = {.lex_state = 7}, + [7573] = {.lex_state = 7}, [7574] = {.lex_state = 0}, - [7575] = {.lex_state = 141}, - [7576] = {.lex_state = 7}, + [7575] = {.lex_state = 0}, + [7576] = {.lex_state = 0}, [7577] = {.lex_state = 7}, [7578] = {.lex_state = 7}, [7579] = {.lex_state = 7}, [7580] = {.lex_state = 7}, [7581] = {.lex_state = 0}, - [7582] = {.lex_state = 0}, - [7583] = {.lex_state = 0}, + [7582] = {.lex_state = 7}, + [7583] = {.lex_state = 7}, [7584] = {.lex_state = 0}, [7585] = {.lex_state = 7}, [7586] = {.lex_state = 0}, - [7587] = {.lex_state = 7}, - [7588] = {.lex_state = 0}, - [7589] = {.lex_state = 7}, + [7587] = {.lex_state = 0}, + [7588] = {.lex_state = 7}, + [7589] = {.lex_state = 0}, [7590] = {.lex_state = 0}, - [7591] = {.lex_state = 0}, - [7592] = {.lex_state = 0}, - [7593] = {.lex_state = 0}, - [7594] = {.lex_state = 7}, + [7591] = {.lex_state = 7}, + [7592] = {.lex_state = 7}, + [7593] = {.lex_state = 7}, + [7594] = {.lex_state = 0}, [7595] = {.lex_state = 7}, - [7596] = {.lex_state = 7}, + [7596] = {.lex_state = 19}, [7597] = {.lex_state = 0}, - [7598] = {.lex_state = 0}, - [7599] = {.lex_state = 19}, - [7600] = {.lex_state = 7}, - [7601] = {.lex_state = 7}, - [7602] = {.lex_state = 7}, + [7598] = {.lex_state = 14}, + [7599] = {.lex_state = 0}, + [7600] = {.lex_state = 0}, + [7601] = {.lex_state = 19}, + [7602] = {.lex_state = 0}, [7603] = {.lex_state = 0}, [7604] = {.lex_state = 0}, - [7605] = {.lex_state = 7}, - [7606] = {.lex_state = 7}, - [7607] = {.lex_state = 0}, - [7608] = {.lex_state = 7}, + [7605] = {.lex_state = 0}, + [7606] = {.lex_state = 0}, + [7607] = {.lex_state = 14}, + [7608] = {.lex_state = 0}, [7609] = {.lex_state = 7}, [7610] = {.lex_state = 0}, - [7611] = {.lex_state = 7}, - [7612] = {.lex_state = 7}, - [7613] = {.lex_state = 7}, + [7611] = {.lex_state = 0}, + [7612] = {.lex_state = 141}, + [7613] = {.lex_state = 0}, [7614] = {.lex_state = 0}, [7615] = {.lex_state = 0}, - [7616] = {.lex_state = 7}, - [7617] = {.lex_state = 7}, - [7618] = {.lex_state = 7}, - [7619] = {.lex_state = 7}, - [7620] = {.lex_state = 7}, - [7621] = {.lex_state = 7}, + [7616] = {.lex_state = 0}, + [7617] = {.lex_state = 0}, + [7618] = {.lex_state = 0}, + [7619] = {.lex_state = 14}, + [7620] = {.lex_state = 0}, + [7621] = {.lex_state = 0}, [7622] = {.lex_state = 7}, - [7623] = {.lex_state = 7}, + [7623] = {.lex_state = 0}, [7624] = {.lex_state = 7}, [7625] = {.lex_state = 0}, - [7626] = {.lex_state = 7}, - [7627] = {.lex_state = 7}, - [7628] = {.lex_state = 7}, + [7626] = {.lex_state = 0}, + [7627] = {.lex_state = 0}, + [7628] = {.lex_state = 0}, [7629] = {.lex_state = 7}, - [7630] = {.lex_state = 7}, - [7631] = {.lex_state = 7}, + [7630] = {.lex_state = 0}, + [7631] = {.lex_state = 0}, [7632] = {.lex_state = 0}, [7633] = {.lex_state = 0}, - [7634] = {.lex_state = 7}, + [7634] = {.lex_state = 0}, [7635] = {.lex_state = 0}, - [7636] = {.lex_state = 7}, - [7637] = {.lex_state = 7}, - [7638] = {.lex_state = 7}, - [7639] = {.lex_state = 0}, - [7640] = {.lex_state = 7}, - [7641] = {.lex_state = 7}, - [7642] = {.lex_state = 0, .external_lex_state = 6}, - [7643] = {.lex_state = 0, .external_lex_state = 7}, - [7644] = {.lex_state = 141}, - [7645] = {.lex_state = 0}, + [7636] = {.lex_state = 0}, + [7637] = {.lex_state = 0}, + [7638] = {.lex_state = 0, .external_lex_state = 6}, + [7639] = {.lex_state = 14}, + [7640] = {.lex_state = 0, .external_lex_state = 7}, + [7641] = {.lex_state = 0, .external_lex_state = 7}, + [7642] = {.lex_state = 14}, + [7643] = {.lex_state = 0}, + [7644] = {.lex_state = 0}, + [7645] = {.lex_state = 0, .external_lex_state = 6}, [7646] = {.lex_state = 0}, - [7647] = {.lex_state = 0}, + [7647] = {.lex_state = 0, .external_lex_state = 6}, [7648] = {.lex_state = 0}, [7649] = {.lex_state = 0}, - [7650] = {.lex_state = 0}, - [7651] = {.lex_state = 0}, + [7650] = {.lex_state = 0, .external_lex_state = 7}, + [7651] = {.lex_state = 0, .external_lex_state = 7}, [7652] = {.lex_state = 0}, [7653] = {.lex_state = 0}, [7654] = {.lex_state = 0}, - [7655] = {.lex_state = 0}, - [7656] = {.lex_state = 0}, + [7655] = {.lex_state = 0, .external_lex_state = 7}, + [7656] = {.lex_state = 0, .external_lex_state = 7}, [7657] = {.lex_state = 0}, [7658] = {.lex_state = 0}, [7659] = {.lex_state = 0}, - [7660] = {.lex_state = 0}, + [7660] = {.lex_state = 0, .external_lex_state = 8}, [7661] = {.lex_state = 0}, - [7662] = {.lex_state = 0}, + [7662] = {.lex_state = 7}, [7663] = {.lex_state = 0}, [7664] = {.lex_state = 0}, - [7665] = {.lex_state = 140}, + [7665] = {.lex_state = 0}, [7666] = {.lex_state = 0}, [7667] = {.lex_state = 0}, [7668] = {.lex_state = 0}, @@ -31896,266 +31907,266 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7671] = {.lex_state = 0}, [7672] = {.lex_state = 0}, [7673] = {.lex_state = 0}, - [7674] = {.lex_state = 0}, + [7674] = {.lex_state = 0, .external_lex_state = 9}, [7675] = {.lex_state = 0}, - [7676] = {.lex_state = 0, .external_lex_state = 7}, + [7676] = {.lex_state = 140}, [7677] = {.lex_state = 0}, - [7678] = {.lex_state = 0, .external_lex_state = 7}, - [7679] = {.lex_state = 0, .external_lex_state = 7}, - [7680] = {.lex_state = 0, .external_lex_state = 8}, - [7681] = {.lex_state = 0, .external_lex_state = 7}, + [7678] = {.lex_state = 0}, + [7679] = {.lex_state = 0, .external_lex_state = 6}, + [7680] = {.lex_state = 3}, + [7681] = {.lex_state = 20}, [7682] = {.lex_state = 0}, - [7683] = {.lex_state = 0}, - [7684] = {.lex_state = 0}, + [7683] = {.lex_state = 0, .external_lex_state = 4}, + [7684] = {.lex_state = 141}, [7685] = {.lex_state = 0}, - [7686] = {.lex_state = 7}, + [7686] = {.lex_state = 0}, [7687] = {.lex_state = 0}, - [7688] = {.lex_state = 0}, + [7688] = {.lex_state = 0, .external_lex_state = 6}, [7689] = {.lex_state = 0}, - [7690] = {.lex_state = 3}, - [7691] = {.lex_state = 0}, - [7692] = {.lex_state = 0}, + [7690] = {.lex_state = 0}, + [7691] = {.lex_state = 0, .external_lex_state = 6}, + [7692] = {.lex_state = 0, .external_lex_state = 8}, [7693] = {.lex_state = 0}, [7694] = {.lex_state = 0}, - [7695] = {.lex_state = 3}, + [7695] = {.lex_state = 0}, [7696] = {.lex_state = 0}, - [7697] = {.lex_state = 0}, - [7698] = {.lex_state = 0}, + [7697] = {.lex_state = 141}, + [7698] = {.lex_state = 0, .external_lex_state = 7}, [7699] = {.lex_state = 0}, [7700] = {.lex_state = 0}, - [7701] = {.lex_state = 0, .external_lex_state = 6}, + [7701] = {.lex_state = 0}, [7702] = {.lex_state = 0}, - [7703] = {.lex_state = 0, .external_lex_state = 6}, - [7704] = {.lex_state = 3}, + [7703] = {.lex_state = 0}, + [7704] = {.lex_state = 0}, [7705] = {.lex_state = 0}, - [7706] = {.lex_state = 7}, - [7707] = {.lex_state = 0}, + [7706] = {.lex_state = 14}, + [7707] = {.lex_state = 0, .external_lex_state = 7}, [7708] = {.lex_state = 0}, [7709] = {.lex_state = 0}, - [7710] = {.lex_state = 3}, + [7710] = {.lex_state = 0}, [7711] = {.lex_state = 0}, - [7712] = {.lex_state = 0}, - [7713] = {.lex_state = 0}, - [7714] = {.lex_state = 5}, - [7715] = {.lex_state = 0, .external_lex_state = 8}, + [7712] = {.lex_state = 0, .external_lex_state = 7}, + [7713] = {.lex_state = 0, .external_lex_state = 7}, + [7714] = {.lex_state = 0}, + [7715] = {.lex_state = 0}, [7716] = {.lex_state = 0}, [7717] = {.lex_state = 0}, [7718] = {.lex_state = 0}, - [7719] = {.lex_state = 14}, - [7720] = {.lex_state = 7}, + [7719] = {.lex_state = 0}, + [7720] = {.lex_state = 0}, [7721] = {.lex_state = 0}, - [7722] = {.lex_state = 5}, - [7723] = {.lex_state = 3}, + [7722] = {.lex_state = 0}, + [7723] = {.lex_state = 0}, [7724] = {.lex_state = 0}, - [7725] = {.lex_state = 0, .external_lex_state = 6}, - [7726] = {.lex_state = 0}, + [7725] = {.lex_state = 0, .external_lex_state = 7}, + [7726] = {.lex_state = 14}, [7727] = {.lex_state = 0}, - [7728] = {.lex_state = 3}, - [7729] = {.lex_state = 0, .external_lex_state = 6}, + [7728] = {.lex_state = 0}, + [7729] = {.lex_state = 0}, [7730] = {.lex_state = 0}, [7731] = {.lex_state = 0}, - [7732] = {.lex_state = 0}, + [7732] = {.lex_state = 7}, [7733] = {.lex_state = 0}, [7734] = {.lex_state = 0}, - [7735] = {.lex_state = 3}, + [7735] = {.lex_state = 5}, [7736] = {.lex_state = 0}, [7737] = {.lex_state = 0}, - [7738] = {.lex_state = 0, .external_lex_state = 6}, + [7738] = {.lex_state = 0}, [7739] = {.lex_state = 0}, [7740] = {.lex_state = 0}, [7741] = {.lex_state = 0}, - [7742] = {.lex_state = 0}, + [7742] = {.lex_state = 0, .external_lex_state = 7}, [7743] = {.lex_state = 0}, - [7744] = {.lex_state = 5}, + [7744] = {.lex_state = 0}, [7745] = {.lex_state = 0}, - [7746] = {.lex_state = 14}, + [7746] = {.lex_state = 0}, [7747] = {.lex_state = 0}, - [7748] = {.lex_state = 0, .external_lex_state = 6}, - [7749] = {.lex_state = 0, .external_lex_state = 6}, + [7748] = {.lex_state = 0}, + [7749] = {.lex_state = 0}, [7750] = {.lex_state = 0}, - [7751] = {.lex_state = 14}, - [7752] = {.lex_state = 14}, - [7753] = {.lex_state = 0, .external_lex_state = 6}, + [7751] = {.lex_state = 0}, + [7752] = {.lex_state = 0}, + [7753] = {.lex_state = 0}, [7754] = {.lex_state = 0}, [7755] = {.lex_state = 0}, - [7756] = {.lex_state = 14}, + [7756] = {.lex_state = 0}, [7757] = {.lex_state = 0}, - [7758] = {.lex_state = 141}, - [7759] = {.lex_state = 0}, - [7760] = {.lex_state = 0, .external_lex_state = 9}, - [7761] = {.lex_state = 0}, - [7762] = {.lex_state = 0}, - [7763] = {.lex_state = 0}, + [7758] = {.lex_state = 0}, + [7759] = {.lex_state = 0, .external_lex_state = 7}, + [7760] = {.lex_state = 0}, + [7761] = {.lex_state = 3}, + [7762] = {.lex_state = 14}, + [7763] = {.lex_state = 14}, [7764] = {.lex_state = 0}, - [7765] = {.lex_state = 0, .external_lex_state = 7}, + [7765] = {.lex_state = 0}, [7766] = {.lex_state = 0}, - [7767] = {.lex_state = 0, .external_lex_state = 6}, - [7768] = {.lex_state = 0, .external_lex_state = 6}, - [7769] = {.lex_state = 0}, + [7767] = {.lex_state = 0, .external_lex_state = 7}, + [7768] = {.lex_state = 0, .external_lex_state = 7}, + [7769] = {.lex_state = 14}, [7770] = {.lex_state = 0}, - [7771] = {.lex_state = 0, .external_lex_state = 6}, - [7772] = {.lex_state = 0, .external_lex_state = 6}, + [7771] = {.lex_state = 0}, + [7772] = {.lex_state = 0}, [7773] = {.lex_state = 0}, - [7774] = {.lex_state = 0, .external_lex_state = 6}, - [7775] = {.lex_state = 0, .external_lex_state = 6}, - [7776] = {.lex_state = 0}, + [7774] = {.lex_state = 0}, + [7775] = {.lex_state = 0}, + [7776] = {.lex_state = 14}, [7777] = {.lex_state = 0}, - [7778] = {.lex_state = 0, .external_lex_state = 6}, - [7779] = {.lex_state = 141}, + [7778] = {.lex_state = 0}, + [7779] = {.lex_state = 0}, [7780] = {.lex_state = 0}, [7781] = {.lex_state = 0}, - [7782] = {.lex_state = 0, .external_lex_state = 6}, - [7783] = {.lex_state = 0}, + [7782] = {.lex_state = 0}, + [7783] = {.lex_state = 5}, [7784] = {.lex_state = 0}, [7785] = {.lex_state = 0}, [7786] = {.lex_state = 0}, [7787] = {.lex_state = 0}, - [7788] = {.lex_state = 0}, - [7789] = {.lex_state = 0, .external_lex_state = 6}, - [7790] = {.lex_state = 0, .external_lex_state = 6}, + [7788] = {.lex_state = 0, .external_lex_state = 7}, + [7789] = {.lex_state = 0}, + [7790] = {.lex_state = 0}, [7791] = {.lex_state = 0}, [7792] = {.lex_state = 0}, [7793] = {.lex_state = 0}, - [7794] = {.lex_state = 0}, - [7795] = {.lex_state = 0, .external_lex_state = 4}, + [7794] = {.lex_state = 7}, + [7795] = {.lex_state = 0}, [7796] = {.lex_state = 0}, - [7797] = {.lex_state = 20}, + [7797] = {.lex_state = 0}, [7798] = {.lex_state = 0}, - [7799] = {.lex_state = 3}, + [7799] = {.lex_state = 0}, [7800] = {.lex_state = 0}, - [7801] = {.lex_state = 7}, + [7801] = {.lex_state = 0}, [7802] = {.lex_state = 0}, [7803] = {.lex_state = 0}, [7804] = {.lex_state = 0}, [7805] = {.lex_state = 0}, [7806] = {.lex_state = 0}, - [7807] = {.lex_state = 0}, - [7808] = {.lex_state = 0}, - [7809] = {.lex_state = 5}, + [7807] = {.lex_state = 0, .external_lex_state = 7}, + [7808] = {.lex_state = 14}, + [7809] = {.lex_state = 0}, [7810] = {.lex_state = 0}, - [7811] = {.lex_state = 0}, + [7811] = {.lex_state = 141}, [7812] = {.lex_state = 0}, [7813] = {.lex_state = 0}, - [7814] = {.lex_state = 0, .external_lex_state = 6}, - [7815] = {.lex_state = 14}, + [7814] = {.lex_state = 0}, + [7815] = {.lex_state = 0}, [7816] = {.lex_state = 0}, [7817] = {.lex_state = 0}, [7818] = {.lex_state = 0}, [7819] = {.lex_state = 0}, [7820] = {.lex_state = 0}, [7821] = {.lex_state = 0}, - [7822] = {.lex_state = 0}, + [7822] = {.lex_state = 140}, [7823] = {.lex_state = 0}, - [7824] = {.lex_state = 0, .external_lex_state = 6}, - [7825] = {.lex_state = 0, .external_lex_state = 6}, + [7824] = {.lex_state = 0, .external_lex_state = 7}, + [7825] = {.lex_state = 0}, [7826] = {.lex_state = 0}, [7827] = {.lex_state = 0}, [7828] = {.lex_state = 0}, [7829] = {.lex_state = 0}, - [7830] = {.lex_state = 0, .external_lex_state = 6}, - [7831] = {.lex_state = 0, .external_lex_state = 6}, - [7832] = {.lex_state = 14}, + [7830] = {.lex_state = 0}, + [7831] = {.lex_state = 0}, + [7832] = {.lex_state = 5}, [7833] = {.lex_state = 0}, - [7834] = {.lex_state = 14}, + [7834] = {.lex_state = 0}, [7835] = {.lex_state = 0}, - [7836] = {.lex_state = 0}, + [7836] = {.lex_state = 141}, [7837] = {.lex_state = 0}, [7838] = {.lex_state = 0}, - [7839] = {.lex_state = 14}, + [7839] = {.lex_state = 140}, [7840] = {.lex_state = 14}, [7841] = {.lex_state = 0}, - [7842] = {.lex_state = 0}, - [7843] = {.lex_state = 0}, - [7844] = {.lex_state = 0}, + [7842] = {.lex_state = 0, .external_lex_state = 7}, + [7843] = {.lex_state = 0, .external_lex_state = 7}, + [7844] = {.lex_state = 140}, [7845] = {.lex_state = 0}, [7846] = {.lex_state = 0}, - [7847] = {.lex_state = 0, .external_lex_state = 6}, - [7848] = {.lex_state = 0, .external_lex_state = 6}, - [7849] = {.lex_state = 0, .external_lex_state = 6}, - [7850] = {.lex_state = 0}, - [7851] = {.lex_state = 140}, - [7852] = {.lex_state = 0, .external_lex_state = 6}, + [7847] = {.lex_state = 7}, + [7848] = {.lex_state = 0}, + [7849] = {.lex_state = 0}, + [7850] = {.lex_state = 14}, + [7851] = {.lex_state = 0}, + [7852] = {.lex_state = 0}, [7853] = {.lex_state = 0}, - [7854] = {.lex_state = 0, .external_lex_state = 8}, - [7855] = {.lex_state = 0}, - [7856] = {.lex_state = 7}, + [7854] = {.lex_state = 0}, + [7855] = {.lex_state = 141}, + [7856] = {.lex_state = 0}, [7857] = {.lex_state = 0}, - [7858] = {.lex_state = 0}, + [7858] = {.lex_state = 0, .external_lex_state = 9}, [7859] = {.lex_state = 0}, - [7860] = {.lex_state = 141}, + [7860] = {.lex_state = 0}, [7861] = {.lex_state = 0}, - [7862] = {.lex_state = 14}, - [7863] = {.lex_state = 0, .external_lex_state = 6}, + [7862] = {.lex_state = 0}, + [7863] = {.lex_state = 0, .external_lex_state = 9}, [7864] = {.lex_state = 0}, - [7865] = {.lex_state = 0}, + [7865] = {.lex_state = 0, .external_lex_state = 9}, [7866] = {.lex_state = 0}, [7867] = {.lex_state = 0}, [7868] = {.lex_state = 0}, - [7869] = {.lex_state = 7}, - [7870] = {.lex_state = 0}, - [7871] = {.lex_state = 0}, - [7872] = {.lex_state = 0, .external_lex_state = 6}, - [7873] = {.lex_state = 0}, - [7874] = {.lex_state = 0, .external_lex_state = 6}, - [7875] = {.lex_state = 0, .external_lex_state = 7}, + [7869] = {.lex_state = 14}, + [7870] = {.lex_state = 3}, + [7871] = {.lex_state = 3}, + [7872] = {.lex_state = 3}, + [7873] = {.lex_state = 3}, + [7874] = {.lex_state = 0}, + [7875] = {.lex_state = 0}, [7876] = {.lex_state = 0}, - [7877] = {.lex_state = 0}, + [7877] = {.lex_state = 141}, [7878] = {.lex_state = 3}, - [7879] = {.lex_state = 141}, - [7880] = {.lex_state = 0}, + [7879] = {.lex_state = 5}, + [7880] = {.lex_state = 3}, [7881] = {.lex_state = 0}, - [7882] = {.lex_state = 0, .external_lex_state = 9}, + [7882] = {.lex_state = 0}, [7883] = {.lex_state = 0}, - [7884] = {.lex_state = 0}, + [7884] = {.lex_state = 14}, [7885] = {.lex_state = 0}, - [7886] = {.lex_state = 0}, - [7887] = {.lex_state = 3}, - [7888] = {.lex_state = 3}, - [7889] = {.lex_state = 0, .external_lex_state = 7}, + [7886] = {.lex_state = 3}, + [7887] = {.lex_state = 0, .external_lex_state = 7}, + [7888] = {.lex_state = 0}, + [7889] = {.lex_state = 0}, [7890] = {.lex_state = 0}, - [7891] = {.lex_state = 3}, + [7891] = {.lex_state = 0}, [7892] = {.lex_state = 0}, - [7893] = {.lex_state = 0}, - [7894] = {.lex_state = 0, .external_lex_state = 6}, - [7895] = {.lex_state = 0, .external_lex_state = 6}, - [7896] = {.lex_state = 0, .external_lex_state = 6}, - [7897] = {.lex_state = 0, .external_lex_state = 6}, + [7893] = {.lex_state = 7}, + [7894] = {.lex_state = 0}, + [7895] = {.lex_state = 0}, + [7896] = {.lex_state = 0}, + [7897] = {.lex_state = 0}, [7898] = {.lex_state = 0}, [7899] = {.lex_state = 0}, [7900] = {.lex_state = 0}, - [7901] = {.lex_state = 0}, + [7901] = {.lex_state = 0, .external_lex_state = 7}, [7902] = {.lex_state = 0}, [7903] = {.lex_state = 0}, - [7904] = {.lex_state = 0}, - [7905] = {.lex_state = 140}, - [7906] = {.lex_state = 0, .external_lex_state = 6}, + [7904] = {.lex_state = 0, .external_lex_state = 7}, + [7905] = {.lex_state = 0}, + [7906] = {.lex_state = 0, .external_lex_state = 7}, [7907] = {.lex_state = 0}, [7908] = {.lex_state = 0}, - [7909] = {.lex_state = 0, .external_lex_state = 6}, - [7910] = {.lex_state = 0, .external_lex_state = 6}, - [7911] = {.lex_state = 14}, + [7909] = {.lex_state = 0}, + [7910] = {.lex_state = 0}, + [7911] = {.lex_state = 0}, [7912] = {.lex_state = 0}, [7913] = {.lex_state = 0}, - [7914] = {.lex_state = 0}, - [7915] = {.lex_state = 0, .external_lex_state = 6}, + [7914] = {.lex_state = 14}, + [7915] = {.lex_state = 0, .external_lex_state = 7}, [7916] = {.lex_state = 0}, - [7917] = {.lex_state = 14}, + [7917] = {.lex_state = 0, .external_lex_state = 7}, [7918] = {.lex_state = 0}, [7919] = {.lex_state = 0}, - [7920] = {.lex_state = 0}, - [7921] = {.lex_state = 0}, + [7920] = {.lex_state = 0, .external_lex_state = 7}, + [7921] = {.lex_state = 14}, [7922] = {.lex_state = 0}, - [7923] = {.lex_state = 14}, + [7923] = {.lex_state = 0}, [7924] = {.lex_state = 0}, [7925] = {.lex_state = 0}, [7926] = {.lex_state = 0}, [7927] = {.lex_state = 0}, [7928] = {.lex_state = 0}, [7929] = {.lex_state = 0}, - [7930] = {.lex_state = 0}, - [7931] = {.lex_state = 0}, + [7930] = {.lex_state = 141}, + [7931] = {.lex_state = 7}, [7932] = {.lex_state = 0}, - [7933] = {.lex_state = 0}, + [7933] = {.lex_state = 14}, [7934] = {.lex_state = 0}, [7935] = {.lex_state = 0}, [7936] = {.lex_state = 0}, @@ -32167,222 +32178,233 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7942] = {.lex_state = 0}, [7943] = {.lex_state = 0}, [7944] = {.lex_state = 0}, - [7945] = {.lex_state = 0, .external_lex_state = 6}, - [7946] = {.lex_state = 14}, - [7947] = {.lex_state = 14}, - [7948] = {.lex_state = 0}, + [7945] = {.lex_state = 0}, + [7946] = {.lex_state = 0}, + [7947] = {.lex_state = 0}, + [7948] = {.lex_state = 0, .external_lex_state = 7}, [7949] = {.lex_state = 0}, - [7950] = {.lex_state = 0}, + [7950] = {.lex_state = 0, .external_lex_state = 7}, [7951] = {.lex_state = 0}, - [7952] = {.lex_state = 0}, - [7953] = {.lex_state = 0, .external_lex_state = 6}, + [7952] = {.lex_state = 0, .external_lex_state = 7}, + [7953] = {.lex_state = 14}, [7954] = {.lex_state = 0}, [7955] = {.lex_state = 0}, - [7956] = {.lex_state = 0}, + [7956] = {.lex_state = 0, .external_lex_state = 7}, [7957] = {.lex_state = 0}, [7958] = {.lex_state = 0}, [7959] = {.lex_state = 0}, [7960] = {.lex_state = 0}, [7961] = {.lex_state = 0}, - [7962] = {.lex_state = 0, .external_lex_state = 4}, + [7962] = {.lex_state = 0}, [7963] = {.lex_state = 0}, [7964] = {.lex_state = 0}, [7965] = {.lex_state = 0}, [7966] = {.lex_state = 0}, - [7967] = {.lex_state = 0}, - [7968] = {.lex_state = 0}, + [7967] = {.lex_state = 0, .external_lex_state = 7}, + [7968] = {.lex_state = 0, .external_lex_state = 7}, [7969] = {.lex_state = 0}, [7970] = {.lex_state = 0}, [7971] = {.lex_state = 0}, - [7972] = {.lex_state = 0}, + [7972] = {.lex_state = 0, .external_lex_state = 7}, [7973] = {.lex_state = 0}, - [7974] = {.lex_state = 0}, + [7974] = {.lex_state = 0, .external_lex_state = 7}, [7975] = {.lex_state = 0}, [7976] = {.lex_state = 0}, - [7977] = {.lex_state = 0, .external_lex_state = 6}, + [7977] = {.lex_state = 0}, [7978] = {.lex_state = 0}, - [7979] = {.lex_state = 141}, - [7980] = {.lex_state = 0, .external_lex_state = 4}, + [7979] = {.lex_state = 0}, + [7980] = {.lex_state = 0}, [7981] = {.lex_state = 0}, [7982] = {.lex_state = 0}, - [7983] = {.lex_state = 14}, + [7983] = {.lex_state = 0}, [7984] = {.lex_state = 0}, [7985] = {.lex_state = 0}, - [7986] = {.lex_state = 0}, + [7986] = {.lex_state = 0, .external_lex_state = 7}, [7987] = {.lex_state = 0}, - [7988] = {.lex_state = 0}, - [7989] = {.lex_state = 0}, + [7988] = {.lex_state = 0, .external_lex_state = 8}, + [7989] = {.lex_state = 0, .external_lex_state = 6}, [7990] = {.lex_state = 0}, [7991] = {.lex_state = 0}, - [7992] = {.lex_state = 0}, - [7993] = {.lex_state = 0, .external_lex_state = 6}, - [7994] = {.lex_state = 0, .external_lex_state = 6}, - [7995] = {.lex_state = 0}, - [7996] = {.lex_state = 14}, - [7997] = {.lex_state = 0}, - [7998] = {.lex_state = 0}, + [7992] = {.lex_state = 18}, + [7993] = {.lex_state = 0}, + [7994] = {.lex_state = 0}, + [7995] = {.lex_state = 0, .external_lex_state = 6}, + [7996] = {.lex_state = 0}, + [7997] = {.lex_state = 141}, + [7998] = {.lex_state = 0, .external_lex_state = 7}, [7999] = {.lex_state = 0}, [8000] = {.lex_state = 0}, - [8001] = {.lex_state = 0}, + [8001] = {.lex_state = 14}, [8002] = {.lex_state = 0}, - [8003] = {.lex_state = 0, .external_lex_state = 6}, - [8004] = {.lex_state = 0}, - [8005] = {.lex_state = 0}, + [8003] = {.lex_state = 7}, + [8004] = {.lex_state = 0, .external_lex_state = 6}, + [8005] = {.lex_state = 0, .external_lex_state = 4}, [8006] = {.lex_state = 0}, - [8007] = {.lex_state = 3}, + [8007] = {.lex_state = 0}, [8008] = {.lex_state = 0}, - [8009] = {.lex_state = 0}, - [8010] = {.lex_state = 0, .external_lex_state = 6}, + [8009] = {.lex_state = 0, .external_lex_state = 4}, + [8010] = {.lex_state = 0}, [8011] = {.lex_state = 0}, [8012] = {.lex_state = 0}, [8013] = {.lex_state = 0}, [8014] = {.lex_state = 0}, [8015] = {.lex_state = 0}, - [8016] = {.lex_state = 0, .external_lex_state = 6}, + [8016] = {.lex_state = 0}, [8017] = {.lex_state = 0}, [8018] = {.lex_state = 0}, - [8019] = {.lex_state = 0}, - [8020] = {.lex_state = 0, .external_lex_state = 6}, - [8021] = {.lex_state = 0}, + [8019] = {.lex_state = 0, .external_lex_state = 7}, + [8020] = {.lex_state = 0, .external_lex_state = 7}, + [8021] = {.lex_state = 0, .external_lex_state = 7}, [8022] = {.lex_state = 0}, [8023] = {.lex_state = 0}, [8024] = {.lex_state = 0}, - [8025] = {.lex_state = 0, .external_lex_state = 9}, - [8026] = {.lex_state = 141}, - [8027] = {.lex_state = 0}, - [8028] = {.lex_state = 3}, + [8025] = {.lex_state = 14}, + [8026] = {.lex_state = 140}, + [8027] = {.lex_state = 0, .external_lex_state = 7}, + [8028] = {.lex_state = 0}, [8029] = {.lex_state = 0}, - [8030] = {.lex_state = 7}, + [8030] = {.lex_state = 0}, [8031] = {.lex_state = 0}, - [8032] = {.lex_state = 0, .external_lex_state = 6}, - [8033] = {.lex_state = 0, .external_lex_state = 9}, + [8032] = {.lex_state = 0}, + [8033] = {.lex_state = 0}, [8034] = {.lex_state = 0}, - [8035] = {.lex_state = 0}, - [8036] = {.lex_state = 0}, - [8037] = {.lex_state = 0, .external_lex_state = 7}, - [8038] = {.lex_state = 0, .external_lex_state = 7}, + [8035] = {.lex_state = 0, .external_lex_state = 7}, + [8036] = {.lex_state = 0, .external_lex_state = 7}, + [8037] = {.lex_state = 18}, + [8038] = {.lex_state = 0}, [8039] = {.lex_state = 0}, [8040] = {.lex_state = 0}, - [8041] = {.lex_state = 18}, + [8041] = {.lex_state = 141}, [8042] = {.lex_state = 0}, [8043] = {.lex_state = 0}, - [8044] = {.lex_state = 0, .external_lex_state = 7}, - [8045] = {.lex_state = 141}, - [8046] = {.lex_state = 14}, + [8044] = {.lex_state = 0, .external_lex_state = 9}, + [8045] = {.lex_state = 0, .external_lex_state = 7}, + [8046] = {.lex_state = 0}, [8047] = {.lex_state = 0}, [8048] = {.lex_state = 0}, [8049] = {.lex_state = 0}, [8050] = {.lex_state = 0}, [8051] = {.lex_state = 0}, - [8052] = {.lex_state = 14}, + [8052] = {.lex_state = 0}, [8053] = {.lex_state = 0}, [8054] = {.lex_state = 0}, - [8055] = {.lex_state = 0, .external_lex_state = 7}, + [8055] = {.lex_state = 14}, [8056] = {.lex_state = 0}, [8057] = {.lex_state = 0}, - [8058] = {.lex_state = 0, .external_lex_state = 6}, - [8059] = {.lex_state = 0}, - [8060] = {.lex_state = 0, .external_lex_state = 8}, - [8061] = {.lex_state = 14}, - [8062] = {.lex_state = 140}, + [8058] = {.lex_state = 0}, + [8059] = {.lex_state = 3}, + [8060] = {.lex_state = 0}, + [8061] = {.lex_state = 0}, + [8062] = {.lex_state = 0}, [8063] = {.lex_state = 0}, - [8064] = {.lex_state = 0, .external_lex_state = 6}, + [8064] = {.lex_state = 0}, [8065] = {.lex_state = 0}, - [8066] = {.lex_state = 0}, - [8067] = {.lex_state = 0, .external_lex_state = 8}, - [8068] = {.lex_state = 0, .external_lex_state = 6}, + [8066] = {.lex_state = 3}, + [8067] = {.lex_state = 0}, + [8068] = {.lex_state = 140}, [8069] = {.lex_state = 0, .external_lex_state = 7}, - [8070] = {.lex_state = 7}, - [8071] = {.lex_state = 0}, - [8072] = {.lex_state = 0}, - [8073] = {.lex_state = 0}, - [8074] = {.lex_state = 141}, + [8070] = {.lex_state = 0}, + [8071] = {.lex_state = 0, .external_lex_state = 7}, + [8072] = {.lex_state = 141}, + [8073] = {.lex_state = 3}, + [8074] = {.lex_state = 0}, [8075] = {.lex_state = 0}, [8076] = {.lex_state = 0}, - [8077] = {.lex_state = 0, .external_lex_state = 7}, + [8077] = {.lex_state = 0}, [8078] = {.lex_state = 0}, [8079] = {.lex_state = 0}, [8080] = {.lex_state = 0}, [8081] = {.lex_state = 0}, [8082] = {.lex_state = 0}, - [8083] = {.lex_state = 141}, - [8084] = {.lex_state = 0}, + [8083] = {.lex_state = 0}, + [8084] = {.lex_state = 0, .external_lex_state = 7}, [8085] = {.lex_state = 0}, [8086] = {.lex_state = 0}, [8087] = {.lex_state = 0}, - [8088] = {.lex_state = 140}, + [8088] = {.lex_state = 0}, [8089] = {.lex_state = 0}, [8090] = {.lex_state = 0}, [8091] = {.lex_state = 0}, [8092] = {.lex_state = 14}, - [8093] = {.lex_state = 0, .external_lex_state = 7}, - [8094] = {.lex_state = 0}, - [8095] = {.lex_state = 14}, - [8096] = {.lex_state = 0}, + [8093] = {.lex_state = 3}, + [8094] = {.lex_state = 141}, + [8095] = {.lex_state = 0}, + [8096] = {.lex_state = 7}, [8097] = {.lex_state = 0}, - [8098] = {.lex_state = 0}, - [8099] = {.lex_state = 0}, + [8098] = {.lex_state = 0, .external_lex_state = 7}, + [8099] = {.lex_state = 0, .external_lex_state = 7}, [8100] = {.lex_state = 0}, [8101] = {.lex_state = 0}, - [8102] = {.lex_state = 0, .external_lex_state = 6}, + [8102] = {.lex_state = 0}, [8103] = {.lex_state = 0}, - [8104] = {.lex_state = 0}, - [8105] = {.lex_state = 0}, + [8104] = {.lex_state = 0, .external_lex_state = 7}, + [8105] = {.lex_state = 14}, [8106] = {.lex_state = 0}, [8107] = {.lex_state = 0}, - [8108] = {.lex_state = 140}, - [8109] = {.lex_state = 0}, + [8108] = {.lex_state = 0}, + [8109] = {.lex_state = 14}, [8110] = {.lex_state = 0}, [8111] = {.lex_state = 0}, - [8112] = {.lex_state = 0, .external_lex_state = 9}, + [8112] = {.lex_state = 0}, [8113] = {.lex_state = 0}, - [8114] = {.lex_state = 141}, + [8114] = {.lex_state = 0}, [8115] = {.lex_state = 0}, [8116] = {.lex_state = 0}, - [8117] = {.lex_state = 14}, + [8117] = {.lex_state = 0}, [8118] = {.lex_state = 0}, - [8119] = {.lex_state = 0, .external_lex_state = 6}, - [8120] = {.lex_state = 0}, - [8121] = {.lex_state = 0}, + [8119] = {.lex_state = 14}, + [8120] = {.lex_state = 0, .external_lex_state = 7}, + [8121] = {.lex_state = 0, .external_lex_state = 7}, [8122] = {.lex_state = 0}, - [8123] = {.lex_state = 0}, - [8124] = {.lex_state = 141}, + [8123] = {.lex_state = 141}, + [8124] = {.lex_state = 0, .external_lex_state = 7}, [8125] = {.lex_state = 0}, - [8126] = {.lex_state = 18}, - [8127] = {.lex_state = 18}, + [8126] = {.lex_state = 0}, + [8127] = {.lex_state = 0}, [8128] = {.lex_state = 0}, - [8129] = {.lex_state = 18}, - [8130] = {.lex_state = 141}, + [8129] = {.lex_state = 0, .external_lex_state = 8}, + [8130] = {.lex_state = 0}, [8131] = {.lex_state = 0}, [8132] = {.lex_state = 0}, [8133] = {.lex_state = 0}, - [8134] = {.lex_state = 0}, - [8135] = {.lex_state = 141}, - [8136] = {.lex_state = 14}, + [8134] = {.lex_state = 0, .external_lex_state = 6}, + [8135] = {.lex_state = 0, .external_lex_state = 6}, + [8136] = {.lex_state = 0, .external_lex_state = 6}, [8137] = {.lex_state = 0}, - [8138] = {.lex_state = 0}, - [8139] = {.lex_state = 141}, - [8140] = {.lex_state = 0}, - [8141] = {.lex_state = 0}, - [8142] = {.lex_state = 141}, - [8143] = {.lex_state = 0}, - [8144] = {(TSStateId)(-1)}, - [8145] = {(TSStateId)(-1)}, - [8146] = {(TSStateId)(-1)}, - [8147] = {(TSStateId)(-1)}, - [8148] = {(TSStateId)(-1)}, - [8149] = {(TSStateId)(-1)}, - [8150] = {(TSStateId)(-1)}, - [8151] = {(TSStateId)(-1)}, - [8152] = {(TSStateId)(-1)}, - [8153] = {(TSStateId)(-1)}, - [8154] = {(TSStateId)(-1)}, + [8138] = {.lex_state = 0, .external_lex_state = 8}, + [8139] = {.lex_state = 3}, + [8140] = {.lex_state = 0, .external_lex_state = 6}, + [8141] = {.lex_state = 141}, + [8142] = {.lex_state = 0, .external_lex_state = 7}, + [8143] = {.lex_state = 0, .external_lex_state = 6}, + [8144] = {.lex_state = 14}, + [8145] = {.lex_state = 0}, + [8146] = {.lex_state = 141}, + [8147] = {.lex_state = 0}, + [8148] = {.lex_state = 0, .external_lex_state = 6}, + [8149] = {.lex_state = 0}, + [8150] = {.lex_state = 141}, + [8151] = {.lex_state = 0}, + [8152] = {.lex_state = 18}, + [8153] = {.lex_state = 141}, + [8154] = {.lex_state = 18}, [8155] = {(TSStateId)(-1)}, [8156] = {(TSStateId)(-1)}, [8157] = {(TSStateId)(-1)}, [8158] = {(TSStateId)(-1)}, [8159] = {(TSStateId)(-1)}, [8160] = {(TSStateId)(-1)}, + [8161] = {(TSStateId)(-1)}, + [8162] = {(TSStateId)(-1)}, + [8163] = {(TSStateId)(-1)}, + [8164] = {(TSStateId)(-1)}, + [8165] = {(TSStateId)(-1)}, + [8166] = {(TSStateId)(-1)}, + [8167] = {(TSStateId)(-1)}, + [8168] = {(TSStateId)(-1)}, + [8169] = {(TSStateId)(-1)}, + [8170] = {(TSStateId)(-1)}, + [8171] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -32458,29 +32480,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unmanaged] = ACTIONS(1), [anon_sym_operator] = ACTIONS(1), [anon_sym_checked] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_TILDE] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_true] = ACTIONS(1), - [anon_sym_false] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_GT_GT_GT] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_implicit] = ACTIONS(1), [anon_sym_explicit] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), [sym_accessor_get] = ACTIONS(1), [sym_accessor_set] = ACTIONS(1), [sym_accessor_add] = ACTIONS(1), @@ -32494,6 +32496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1), [anon_sym_COLON_COLON] = ACTIONS(1), [anon_sym_var] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), [anon_sym_managed] = ACTIONS(1), [anon_sym_Cdecl] = ACTIONS(1), [anon_sym_Stdcall] = ACTIONS(1), @@ -32523,6 +32526,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(1), [sym_discard] = ACTIONS(1), [anon_sym_DOT_DOT] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), [anon_sym_not] = ACTIONS(1), [anon_sym_and] = ACTIONS(1), [anon_sym_or] = ACTIONS(1), @@ -32538,9 +32543,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(1), [anon_sym_GT_GT_GT_EQ] = ACTIONS(1), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [sym_op_bitwise_or] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [sym_op_left_shift] = ACTIONS(1), + [sym_op_right_shift] = ACTIONS(1), + [sym_op_unsigned_right_shift] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [sym_op_divide] = ACTIONS(1), + [sym_op_modulo] = ACTIONS(1), [sym_op_coalescing] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_true] = ACTIONS(1), + [anon_sym_false] = ACTIONS(1), [anon_sym_from] = ACTIONS(1), [anon_sym_into] = ACTIONS(1), [anon_sym_join] = ACTIONS(1), @@ -32611,134 +32633,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_content] = ACTIONS(1), }, [1] = { - [sym_compilation_unit] = STATE(7766), - [sym__top_level_item] = STATE(2085), - [sym_global_statement] = STATE(2083), - [sym_extern_alias_directive] = STATE(2083), - [sym_using_directive] = STATE(2083), - [sym_global_attribute] = STATE(2083), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2083), - [sym_file_scoped_namespace_declaration] = STATE(2083), - [sym_type_declaration] = STATE(2083), - [sym_class_declaration] = STATE(2096), - [sym__class_declaration_initializer] = STATE(7703), - [sym_struct_declaration] = STATE(2096), - [sym__struct_declaration_initializer] = STATE(7593), - [sym_enum_declaration] = STATE(2096), - [sym_interface_declaration] = STATE(2096), - [sym__interface_declaration_initializer] = STATE(7607), - [sym_delegate_declaration] = STATE(2096), - [sym__delegate_declaration_initializer] = STATE(6997), - [sym_record_declaration] = STATE(2096), - [sym__record_declaration_initializer] = STATE(7235), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_compilation_unit] = STATE(8018), + [sym__top_level_item] = STATE(2110), + [sym_global_statement] = STATE(2109), + [sym_extern_alias_directive] = STATE(2109), + [sym_using_directive] = STATE(2109), + [sym_global_attribute] = STATE(2109), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2109), + [sym_file_scoped_namespace_declaration] = STATE(2109), + [sym_type_declaration] = STATE(2109), + [sym_class_declaration] = STATE(2108), + [sym__class_declaration_initializer] = STATE(7998), + [sym_struct_declaration] = STATE(2108), + [sym__struct_declaration_initializer] = STATE(7432), + [sym_enum_declaration] = STATE(2108), + [sym_interface_declaration] = STATE(2108), + [sym__interface_declaration_initializer] = STATE(7433), + [sym_delegate_declaration] = STATE(2108), + [sym__delegate_declaration_initializer] = STATE(6960), + [sym_record_declaration] = STATE(2108), + [sym__record_declaration_initializer] = STATE(7120), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2098), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2105), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2101), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2107), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(1), [sym_preproc_endregion] = STATE(1), [sym_preproc_line] = STATE(1), @@ -32748,10 +32770,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(16), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2247), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2396), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym_compilation_unit_repeat1] = STATE(15), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2245), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2390), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [ts_builtin_sym_end] = ACTIONS(23), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(27), @@ -32794,40 +32816,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_for] = ACTIONS(97), + [anon_sym_lock] = ACTIONS(99), + [anon_sym_yield] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(103), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_try] = ACTIONS(109), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(111), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -32871,137 +32893,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [2] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3106), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(3067), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(3402), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_else_in_top_level] = STATE(8123), - [sym_preproc_elif_in_top_level] = STATE(8123), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(3690), - [sym_preproc_else_in_attribute_list] = STATE(8040), - [sym_preproc_elif_in_attribute_list] = STATE(8040), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(3670), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_else_in_top_level] = STATE(8039), + [sym_preproc_elif_in_top_level] = STATE(8039), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7791), + [sym_preproc_elif_in_expression] = STATE(7791), + [sym_preproc_if_in_attribute_list] = STATE(3187), + [sym_preproc_else_in_attribute_list] = STATE(8016), + [sym_preproc_elif_in_attribute_list] = STATE(8016), [sym_preproc_region] = STATE(2), [sym_preproc_endregion] = STATE(2), [sym_preproc_line] = STATE(2), @@ -33011,10 +33033,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(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(12), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(13), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), [anon_sym_alias] = ACTIONS(29), @@ -33056,22 +33078,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -33081,15 +33094,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -33135,137 +33157,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [3] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3357), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(3067), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(3402), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_else_in_top_level] = STATE(7821), - [sym_preproc_elif_in_top_level] = STATE(7821), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(3690), - [sym_preproc_else_in_attribute_list] = STATE(7959), - [sym_preproc_elif_in_attribute_list] = STATE(7959), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(3670), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_else_in_top_level] = STATE(7731), + [sym_preproc_elif_in_top_level] = STATE(7731), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7791), + [sym_preproc_elif_in_expression] = STATE(7791), + [sym_preproc_if_in_attribute_list] = STATE(3187), + [sym_preproc_else_in_attribute_list] = STATE(8016), + [sym_preproc_elif_in_attribute_list] = STATE(8016), [sym_preproc_region] = STATE(3), [sym_preproc_endregion] = STATE(3), [sym_preproc_line] = STATE(3), @@ -33275,10 +33297,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(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(13), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(11), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), [anon_sym_alias] = ACTIONS(29), @@ -33320,22 +33342,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -33345,15 +33358,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -33399,137 +33421,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [4] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3106), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(2922), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(3402), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_else_in_top_level] = STATE(8049), - [sym_preproc_elif_in_top_level] = STATE(8049), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(3690), - [sym_preproc_else_in_attribute_list] = STATE(8040), - [sym_preproc_elif_in_attribute_list] = STATE(8040), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(3623), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_else_in_top_level] = STATE(7896), + [sym_preproc_elif_in_top_level] = STATE(7896), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7891), + [sym_preproc_elif_in_expression] = STATE(7891), + [sym_preproc_if_in_attribute_list] = STATE(3187), + [sym_preproc_else_in_attribute_list] = STATE(7890), + [sym_preproc_elif_in_attribute_list] = STATE(7890), [sym_preproc_region] = STATE(4), [sym_preproc_endregion] = STATE(4), [sym_preproc_line] = STATE(4), @@ -33539,10 +33561,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(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(10), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(14), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), [anon_sym_alias] = ACTIONS(29), @@ -33584,22 +33606,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -33609,15 +33622,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -33663,137 +33685,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [5] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3132), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(2921), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(3414), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_else_in_top_level] = STATE(7942), - [sym_preproc_elif_in_top_level] = STATE(7942), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(7929), - [sym_preproc_elif_in_expression] = STATE(7929), - [sym_preproc_if_in_attribute_list] = STATE(3690), - [sym_preproc_else_in_attribute_list] = STATE(7926), - [sym_preproc_elif_in_attribute_list] = STATE(7926), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(3670), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_else_in_top_level] = STATE(7795), + [sym_preproc_elif_in_top_level] = STATE(7795), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7791), + [sym_preproc_elif_in_expression] = STATE(7791), + [sym_preproc_if_in_attribute_list] = STATE(3187), + [sym_preproc_else_in_attribute_list] = STATE(7771), + [sym_preproc_elif_in_attribute_list] = STATE(7771), [sym_preproc_region] = STATE(5), [sym_preproc_endregion] = STATE(5), [sym_preproc_line] = STATE(5), @@ -33803,10 +33825,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(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(14), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(9), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), [anon_sym_alias] = ACTIONS(29), @@ -33848,22 +33870,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -33873,15 +33886,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -33927,137 +33949,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [6] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3357), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(3067), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(3402), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_else_in_top_level] = STATE(7957), - [sym_preproc_elif_in_top_level] = STATE(7957), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(3690), - [sym_preproc_else_in_attribute_list] = STATE(7959), - [sym_preproc_elif_in_attribute_list] = STATE(7959), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(3670), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_else_in_top_level] = STATE(7795), + [sym_preproc_elif_in_top_level] = STATE(7795), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7791), + [sym_preproc_elif_in_expression] = STATE(7791), + [sym_preproc_if_in_attribute_list] = STATE(3187), + [sym_preproc_else_in_attribute_list] = STATE(8016), + [sym_preproc_elif_in_attribute_list] = STATE(8016), [sym_preproc_region] = STATE(6), [sym_preproc_endregion] = STATE(6), [sym_preproc_line] = STATE(6), @@ -34067,9 +34089,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(6), [sym_preproc_define] = STATE(6), [sym_preproc_undef] = STATE(6), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [aux_sym_preproc_if_in_top_level_repeat1] = STATE(9), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), @@ -34112,22 +34134,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -34137,15 +34150,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -34172,7 +34194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_verbatim_string_literal] = ACTIONS(143), [sym_grit_metavariable] = ACTIONS(211), [aux_sym_preproc_if_token1] = ACTIONS(213), - [aux_sym_preproc_if_token3] = ACTIONS(227), + [aux_sym_preproc_if_token3] = ACTIONS(225), [aux_sym_preproc_else_token1] = ACTIONS(217), [aux_sym_preproc_elif_token1] = ACTIONS(219), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -34191,137 +34213,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [7] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3357), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(3067), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(3402), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_else_in_top_level] = STATE(8123), - [sym_preproc_elif_in_top_level] = STATE(8123), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(3690), - [sym_preproc_else_in_attribute_list] = STATE(7959), - [sym_preproc_elif_in_attribute_list] = STATE(7959), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(3670), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_else_in_top_level] = STATE(7778), + [sym_preproc_elif_in_top_level] = STATE(7778), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7791), + [sym_preproc_elif_in_expression] = STATE(7791), + [sym_preproc_if_in_attribute_list] = STATE(3187), + [sym_preproc_else_in_attribute_list] = STATE(8016), + [sym_preproc_elif_in_attribute_list] = STATE(8016), [sym_preproc_region] = STATE(7), [sym_preproc_endregion] = STATE(7), [sym_preproc_line] = STATE(7), @@ -34331,9 +34353,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(7), [sym_preproc_define] = STATE(7), [sym_preproc_undef] = STATE(7), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [aux_sym_preproc_if_in_top_level_repeat1] = STATE(12), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), @@ -34376,22 +34398,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -34401,15 +34414,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -34436,7 +34458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_verbatim_string_literal] = ACTIONS(143), [sym_grit_metavariable] = ACTIONS(211), [aux_sym_preproc_if_token1] = ACTIONS(213), - [aux_sym_preproc_if_token3] = ACTIONS(215), + [aux_sym_preproc_if_token3] = ACTIONS(227), [aux_sym_preproc_else_token1] = ACTIONS(217), [aux_sym_preproc_elif_token1] = ACTIONS(219), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -34455,137 +34477,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [8] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3357), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(2921), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(3402), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_else_in_top_level] = STATE(8049), - [sym_preproc_elif_in_top_level] = STATE(8049), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(3690), - [sym_preproc_else_in_attribute_list] = STATE(7959), - [sym_preproc_elif_in_attribute_list] = STATE(7959), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(3670), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_else_in_top_level] = STATE(7778), + [sym_preproc_elif_in_top_level] = STATE(7778), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7791), + [sym_preproc_elif_in_expression] = STATE(7791), + [sym_preproc_if_in_attribute_list] = STATE(3187), + [sym_preproc_else_in_attribute_list] = STATE(7771), + [sym_preproc_elif_in_attribute_list] = STATE(7771), [sym_preproc_region] = STATE(8), [sym_preproc_endregion] = STATE(8), [sym_preproc_line] = STATE(8), @@ -34595,10 +34617,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(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(10), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(12), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), [anon_sym_alias] = ACTIONS(29), @@ -34640,22 +34662,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -34665,15 +34678,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -34700,7 +34722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_verbatim_string_literal] = ACTIONS(143), [sym_grit_metavariable] = ACTIONS(211), [aux_sym_preproc_if_token1] = ACTIONS(213), - [aux_sym_preproc_if_token3] = ACTIONS(223), + [aux_sym_preproc_if_token3] = ACTIONS(227), [aux_sym_preproc_else_token1] = ACTIONS(217), [aux_sym_preproc_elif_token1] = ACTIONS(219), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -34719,133 +34741,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [9] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_else_in_top_level] = STATE(7989), - [sym_preproc_elif_in_top_level] = STATE(7989), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_else_in_top_level] = STATE(7857), + [sym_preproc_elif_in_top_level] = STATE(7857), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(9), [sym_preproc_endregion] = STATE(9), [sym_preproc_line] = STATE(9), @@ -34855,10 +34877,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(9), [sym_preproc_define] = STATE(9), [sym_preproc_undef] = STATE(9), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(18), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(17), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), [anon_sym_alias] = ACTIONS(29), @@ -34900,22 +34922,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -34925,15 +34938,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -34979,133 +35001,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [10] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_else_in_top_level] = STATE(7682), - [sym_preproc_elif_in_top_level] = STATE(7682), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_else_in_top_level] = STATE(7896), + [sym_preproc_elif_in_top_level] = STATE(7896), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(10), [sym_preproc_endregion] = STATE(10), [sym_preproc_line] = STATE(10), @@ -35115,10 +35137,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(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(18), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(14), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), [anon_sym_alias] = ACTIONS(29), @@ -35160,22 +35182,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -35185,15 +35198,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -35220,7 +35242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_verbatim_string_literal] = ACTIONS(143), [sym_grit_metavariable] = ACTIONS(211), [aux_sym_preproc_if_token1] = ACTIONS(213), - [aux_sym_preproc_if_token3] = ACTIONS(235), + [aux_sym_preproc_if_token3] = ACTIONS(223), [aux_sym_preproc_else_token1] = ACTIONS(231), [aux_sym_preproc_elif_token1] = ACTIONS(233), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -35239,133 +35261,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [11] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_else_in_top_level] = STATE(7942), - [sym_preproc_elif_in_top_level] = STATE(7942), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_else_in_top_level] = STATE(8108), + [sym_preproc_elif_in_top_level] = STATE(8108), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(11), [sym_preproc_endregion] = STATE(11), [sym_preproc_line] = STATE(11), @@ -35375,10 +35397,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(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(14), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(17), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), [anon_sym_alias] = ACTIONS(29), @@ -35420,22 +35442,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -35445,15 +35458,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -35480,7 +35502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_verbatim_string_literal] = ACTIONS(143), [sym_grit_metavariable] = ACTIONS(211), [aux_sym_preproc_if_token1] = ACTIONS(213), - [aux_sym_preproc_if_token3] = ACTIONS(225), + [aux_sym_preproc_if_token3] = ACTIONS(235), [aux_sym_preproc_else_token1] = ACTIONS(231), [aux_sym_preproc_elif_token1] = ACTIONS(233), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -35499,133 +35521,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [12] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_else_in_top_level] = STATE(7992), - [sym_preproc_elif_in_top_level] = STATE(7992), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_else_in_top_level] = STATE(7793), + [sym_preproc_elif_in_top_level] = STATE(7793), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(12), [sym_preproc_endregion] = STATE(12), [sym_preproc_line] = STATE(12), @@ -35635,10 +35657,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(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(18), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(17), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), [anon_sym_alias] = ACTIONS(29), @@ -35680,22 +35702,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -35705,15 +35718,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -35759,133 +35781,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [13] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_else_in_top_level] = STATE(7845), - [sym_preproc_elif_in_top_level] = STATE(7845), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_else_in_top_level] = STATE(7864), + [sym_preproc_elif_in_top_level] = STATE(7864), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(13), [sym_preproc_endregion] = STATE(13), [sym_preproc_line] = STATE(13), @@ -35895,10 +35917,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(13), [sym_preproc_define] = STATE(13), [sym_preproc_undef] = STATE(13), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(18), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(17), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), [anon_sym_alias] = ACTIONS(29), @@ -35940,22 +35962,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -35965,15 +35978,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -36019,133 +36041,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [14] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_else_in_top_level] = STATE(7781), - [sym_preproc_elif_in_top_level] = STATE(7781), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_else_in_top_level] = STATE(7751), + [sym_preproc_elif_in_top_level] = STATE(7751), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(14), [sym_preproc_endregion] = STATE(14), [sym_preproc_line] = STATE(14), @@ -36155,10 +36177,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(14), [sym_preproc_define] = STATE(14), [sym_preproc_undef] = STATE(14), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(18), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(17), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), [anon_sym_alias] = ACTIONS(29), @@ -36200,22 +36222,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -36225,15 +36238,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -36279,133 +36301,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [15] = { - [sym__top_level_item] = STATE(2085), - [sym_global_statement] = STATE(2083), - [sym_extern_alias_directive] = STATE(2083), - [sym_using_directive] = STATE(2083), - [sym_global_attribute] = STATE(2083), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2083), - [sym_file_scoped_namespace_declaration] = STATE(2083), - [sym_type_declaration] = STATE(2083), - [sym_class_declaration] = STATE(2096), - [sym__class_declaration_initializer] = STATE(7703), - [sym_struct_declaration] = STATE(2096), - [sym__struct_declaration_initializer] = STATE(7593), - [sym_enum_declaration] = STATE(2096), - [sym_interface_declaration] = STATE(2096), - [sym__interface_declaration_initializer] = STATE(7607), - [sym_delegate_declaration] = STATE(2096), - [sym__delegate_declaration_initializer] = STATE(6997), - [sym_record_declaration] = STATE(2096), - [sym__record_declaration_initializer] = STATE(7235), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym__top_level_item] = STATE(2110), + [sym_global_statement] = STATE(2109), + [sym_extern_alias_directive] = STATE(2109), + [sym_using_directive] = STATE(2109), + [sym_global_attribute] = STATE(2109), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2109), + [sym_file_scoped_namespace_declaration] = STATE(2109), + [sym_type_declaration] = STATE(2109), + [sym_class_declaration] = STATE(2108), + [sym__class_declaration_initializer] = STATE(7998), + [sym_struct_declaration] = STATE(2108), + [sym__struct_declaration_initializer] = STATE(7432), + [sym_enum_declaration] = STATE(2108), + [sym_interface_declaration] = STATE(2108), + [sym__interface_declaration_initializer] = STATE(7433), + [sym_delegate_declaration] = STATE(2108), + [sym__delegate_declaration_initializer] = STATE(6960), + [sym_record_declaration] = STATE(2108), + [sym__record_declaration_initializer] = STATE(7120), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2098), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2105), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2101), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2107), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(15), [sym_preproc_endregion] = STATE(15), [sym_preproc_line] = STATE(15), @@ -36415,269 +36437,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(15), [sym_preproc_define] = STATE(15), [sym_preproc_undef] = STATE(15), - [aux_sym_compilation_unit_repeat1] = STATE(15), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2247), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2396), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym_compilation_unit_repeat1] = STATE(16), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2245), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2390), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [ts_builtin_sym_end] = ACTIONS(243), - [sym__identifier_token] = ACTIONS(245), - [anon_sym_extern] = ACTIONS(248), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_SEMI] = ACTIONS(254), - [anon_sym_global] = ACTIONS(257), - [anon_sym_using] = ACTIONS(260), - [anon_sym_unsafe] = ACTIONS(263), - [anon_sym_static] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_return] = ACTIONS(275), - [anon_sym_namespace] = ACTIONS(278), - [anon_sym_class] = ACTIONS(281), - [anon_sym_ref] = ACTIONS(284), - [anon_sym_struct] = ACTIONS(287), - [anon_sym_enum] = ACTIONS(290), - [anon_sym_LBRACE] = ACTIONS(293), - [anon_sym_interface] = ACTIONS(296), - [anon_sym_delegate] = ACTIONS(299), - [anon_sym_record] = ACTIONS(302), - [anon_sym_public] = ACTIONS(305), - [anon_sym_private] = ACTIONS(305), - [anon_sym_readonly] = ACTIONS(305), - [anon_sym_abstract] = ACTIONS(305), - [anon_sym_async] = ACTIONS(266), - [anon_sym_const] = ACTIONS(305), - [anon_sym_file] = ACTIONS(308), - [anon_sym_fixed] = ACTIONS(311), - [anon_sym_internal] = ACTIONS(305), - [anon_sym_new] = ACTIONS(314), - [anon_sym_override] = ACTIONS(305), - [anon_sym_partial] = ACTIONS(305), - [anon_sym_protected] = ACTIONS(305), - [anon_sym_required] = ACTIONS(305), - [anon_sym_sealed] = ACTIONS(305), - [anon_sym_virtual] = ACTIONS(305), - [anon_sym_volatile] = ACTIONS(305), - [anon_sym_where] = ACTIONS(251), - [anon_sym_notnull] = ACTIONS(251), - [anon_sym_unmanaged] = ACTIONS(251), - [anon_sym_checked] = ACTIONS(317), - [anon_sym_BANG] = ACTIONS(320), - [anon_sym_TILDE] = ACTIONS(320), - [anon_sym_PLUS_PLUS] = ACTIONS(320), - [anon_sym_DASH_DASH] = ACTIONS(320), - [anon_sym_true] = ACTIONS(323), - [anon_sym_false] = ACTIONS(323), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(320), - [anon_sym_this] = ACTIONS(332), - [anon_sym_scoped] = ACTIONS(335), - [anon_sym_base] = ACTIONS(338), - [anon_sym_var] = ACTIONS(341), - [sym_predefined_type] = ACTIONS(344), - [anon_sym_break] = ACTIONS(347), - [anon_sym_unchecked] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(350), - [anon_sym_do] = ACTIONS(353), - [anon_sym_while] = ACTIONS(356), - [anon_sym_for] = ACTIONS(359), - [anon_sym_lock] = ACTIONS(362), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_switch] = ACTIONS(368), - [anon_sym_default] = ACTIONS(371), - [anon_sym_throw] = ACTIONS(374), - [anon_sym_try] = ACTIONS(377), - [anon_sym_when] = ACTIONS(251), - [anon_sym_await] = ACTIONS(380), - [anon_sym_foreach] = ACTIONS(383), - [anon_sym_goto] = ACTIONS(386), - [anon_sym_if] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_from] = ACTIONS(395), - [anon_sym_into] = ACTIONS(251), - [anon_sym_join] = ACTIONS(251), - [anon_sym_on] = ACTIONS(251), - [anon_sym_equals] = ACTIONS(251), - [anon_sym_let] = ACTIONS(251), - [anon_sym_orderby] = ACTIONS(251), - [anon_sym_ascending] = ACTIONS(251), - [anon_sym_descending] = ACTIONS(251), - [anon_sym_group] = ACTIONS(251), - [anon_sym_by] = ACTIONS(251), - [anon_sym_select] = ACTIONS(251), - [anon_sym_stackalloc] = ACTIONS(398), - [anon_sym_sizeof] = ACTIONS(401), - [anon_sym_typeof] = ACTIONS(404), - [anon_sym___makeref] = ACTIONS(407), - [anon_sym___reftype] = ACTIONS(410), - [anon_sym___refvalue] = ACTIONS(413), - [sym_null_literal] = ACTIONS(416), - [anon_sym_SQUOTE] = ACTIONS(419), - [sym_integer_literal] = ACTIONS(416), - [sym_real_literal] = ACTIONS(422), - [anon_sym_DQUOTE] = ACTIONS(425), - [sym_verbatim_string_literal] = ACTIONS(422), - [sym_grit_metavariable] = ACTIONS(428), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(434), - [sym_interpolation_verbatim_start] = ACTIONS(437), - [sym_interpolation_raw_start] = ACTIONS(440), - [sym_raw_string_start] = ACTIONS(443), - }, - [16] = { - [sym__top_level_item] = STATE(2085), - [sym_global_statement] = STATE(2083), - [sym_extern_alias_directive] = STATE(2083), - [sym_using_directive] = STATE(2083), - [sym_global_attribute] = STATE(2083), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2083), - [sym_file_scoped_namespace_declaration] = STATE(2083), - [sym_type_declaration] = STATE(2083), - [sym_class_declaration] = STATE(2096), - [sym__class_declaration_initializer] = STATE(7703), - [sym_struct_declaration] = STATE(2096), - [sym__struct_declaration_initializer] = STATE(7593), - [sym_enum_declaration] = STATE(2096), - [sym_interface_declaration] = STATE(2096), - [sym__interface_declaration_initializer] = STATE(7607), - [sym_delegate_declaration] = STATE(2096), - [sym__delegate_declaration_initializer] = STATE(6997), - [sym_record_declaration] = STATE(2096), - [sym__record_declaration_initializer] = STATE(7235), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2098), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2101), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), - [sym_preproc_region] = STATE(16), - [sym_preproc_endregion] = STATE(16), - [sym_preproc_line] = STATE(16), - [sym_preproc_pragma] = STATE(16), - [sym_preproc_nullable] = STATE(16), - [sym_preproc_error] = STATE(16), - [sym_preproc_warning] = STATE(16), - [sym_preproc_define] = STATE(16), - [sym_preproc_undef] = STATE(16), - [aux_sym_compilation_unit_repeat1] = STATE(15), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2247), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2396), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [ts_builtin_sym_end] = ACTIONS(446), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(27), [anon_sym_alias] = ACTIONS(29), @@ -36719,40 +36483,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_for] = ACTIONS(97), + [anon_sym_lock] = ACTIONS(99), + [anon_sym_yield] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(103), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_try] = ACTIONS(109), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(111), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -36794,134 +36558,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [17] = { - [sym__top_level_item] = STATE(2085), - [sym_global_statement] = STATE(2083), - [sym_extern_alias_directive] = STATE(2083), - [sym_using_directive] = STATE(2083), - [sym_global_attribute] = STATE(2083), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2083), - [sym_file_scoped_namespace_declaration] = STATE(2083), - [sym_type_declaration] = STATE(2083), - [sym_class_declaration] = STATE(2096), - [sym__class_declaration_initializer] = STATE(7703), - [sym_struct_declaration] = STATE(2096), - [sym__struct_declaration_initializer] = STATE(7593), - [sym_enum_declaration] = STATE(2096), - [sym_interface_declaration] = STATE(2096), - [sym__interface_declaration_initializer] = STATE(7607), - [sym_delegate_declaration] = STATE(2096), - [sym__delegate_declaration_initializer] = STATE(6997), - [sym_record_declaration] = STATE(2096), - [sym__record_declaration_initializer] = STATE(7235), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [16] = { + [sym__top_level_item] = STATE(2110), + [sym_global_statement] = STATE(2109), + [sym_extern_alias_directive] = STATE(2109), + [sym_using_directive] = STATE(2109), + [sym_global_attribute] = STATE(2109), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2109), + [sym_file_scoped_namespace_declaration] = STATE(2109), + [sym_type_declaration] = STATE(2109), + [sym_class_declaration] = STATE(2108), + [sym__class_declaration_initializer] = STATE(7998), + [sym_struct_declaration] = STATE(2108), + [sym__struct_declaration_initializer] = STATE(7432), + [sym_enum_declaration] = STATE(2108), + [sym_interface_declaration] = STATE(2108), + [sym__interface_declaration_initializer] = STATE(7433), + [sym_delegate_declaration] = STATE(2108), + [sym__delegate_declaration_initializer] = STATE(6960), + [sym_record_declaration] = STATE(2108), + [sym__record_declaration_initializer] = STATE(7120), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2098), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2105), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2101), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2107), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), + [sym_preproc_region] = STATE(16), + [sym_preproc_endregion] = STATE(16), + [sym_preproc_line] = STATE(16), + [sym_preproc_pragma] = STATE(16), + [sym_preproc_nullable] = STATE(16), + [sym_preproc_error] = STATE(16), + [sym_preproc_warning] = STATE(16), + [sym_preproc_define] = STATE(16), + [sym_preproc_undef] = STATE(16), + [aux_sym_compilation_unit_repeat1] = STATE(16), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2245), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2390), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [ts_builtin_sym_end] = ACTIONS(245), + [sym__identifier_token] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(250), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_SEMI] = ACTIONS(256), + [anon_sym_global] = ACTIONS(259), + [anon_sym_using] = ACTIONS(262), + [anon_sym_unsafe] = ACTIONS(265), + [anon_sym_static] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_return] = ACTIONS(277), + [anon_sym_namespace] = ACTIONS(280), + [anon_sym_class] = ACTIONS(283), + [anon_sym_ref] = ACTIONS(286), + [anon_sym_struct] = ACTIONS(289), + [anon_sym_enum] = ACTIONS(292), + [anon_sym_LBRACE] = ACTIONS(295), + [anon_sym_interface] = ACTIONS(298), + [anon_sym_delegate] = ACTIONS(301), + [anon_sym_record] = ACTIONS(304), + [anon_sym_public] = ACTIONS(307), + [anon_sym_private] = ACTIONS(307), + [anon_sym_readonly] = ACTIONS(307), + [anon_sym_abstract] = ACTIONS(307), + [anon_sym_async] = ACTIONS(268), + [anon_sym_const] = ACTIONS(307), + [anon_sym_file] = ACTIONS(310), + [anon_sym_fixed] = ACTIONS(313), + [anon_sym_internal] = ACTIONS(307), + [anon_sym_new] = ACTIONS(316), + [anon_sym_override] = ACTIONS(307), + [anon_sym_partial] = ACTIONS(307), + [anon_sym_protected] = ACTIONS(307), + [anon_sym_required] = ACTIONS(307), + [anon_sym_sealed] = ACTIONS(307), + [anon_sym_virtual] = ACTIONS(307), + [anon_sym_volatile] = ACTIONS(307), + [anon_sym_where] = ACTIONS(253), + [anon_sym_notnull] = ACTIONS(253), + [anon_sym_unmanaged] = ACTIONS(253), + [anon_sym_checked] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(322), + [anon_sym_this] = ACTIONS(325), + [anon_sym_scoped] = ACTIONS(328), + [anon_sym_base] = ACTIONS(331), + [anon_sym_var] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(337), + [sym_predefined_type] = ACTIONS(340), + [anon_sym_break] = ACTIONS(343), + [anon_sym_unchecked] = ACTIONS(319), + [anon_sym_continue] = ACTIONS(346), + [anon_sym_do] = ACTIONS(349), + [anon_sym_while] = ACTIONS(352), + [anon_sym_for] = ACTIONS(355), + [anon_sym_lock] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(361), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_default] = ACTIONS(367), + [anon_sym_throw] = ACTIONS(370), + [anon_sym_try] = ACTIONS(373), + [anon_sym_when] = ACTIONS(253), + [anon_sym_await] = ACTIONS(376), + [anon_sym_foreach] = ACTIONS(379), + [anon_sym_goto] = ACTIONS(382), + [anon_sym_if] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(322), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_true] = ACTIONS(394), + [anon_sym_false] = ACTIONS(394), + [anon_sym_from] = ACTIONS(397), + [anon_sym_into] = ACTIONS(253), + [anon_sym_join] = ACTIONS(253), + [anon_sym_on] = ACTIONS(253), + [anon_sym_equals] = ACTIONS(253), + [anon_sym_let] = ACTIONS(253), + [anon_sym_orderby] = ACTIONS(253), + [anon_sym_ascending] = ACTIONS(253), + [anon_sym_descending] = ACTIONS(253), + [anon_sym_group] = ACTIONS(253), + [anon_sym_by] = ACTIONS(253), + [anon_sym_select] = ACTIONS(253), + [anon_sym_stackalloc] = ACTIONS(400), + [anon_sym_sizeof] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(406), + [anon_sym___makeref] = ACTIONS(409), + [anon_sym___reftype] = ACTIONS(412), + [anon_sym___refvalue] = ACTIONS(415), + [sym_null_literal] = ACTIONS(418), + [anon_sym_SQUOTE] = ACTIONS(421), + [sym_integer_literal] = ACTIONS(418), + [sym_real_literal] = ACTIONS(424), + [anon_sym_DQUOTE] = ACTIONS(427), + [sym_verbatim_string_literal] = ACTIONS(424), + [sym_grit_metavariable] = ACTIONS(430), + [aux_sym_preproc_if_token1] = ACTIONS(433), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(436), + [sym_interpolation_verbatim_start] = ACTIONS(439), + [sym_interpolation_raw_start] = ACTIONS(442), + [sym_raw_string_start] = ACTIONS(445), + }, + [17] = { + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(17), [sym_preproc_endregion] = STATE(17), [sym_preproc_line] = STATE(17), @@ -36931,266 +36951,10 @@ 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(19), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2247), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2396), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [ts_builtin_sym_end] = ACTIONS(446), - [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_public] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [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_protected] = 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), - [sym_grit_metavariable] = ACTIONS(147), - [aux_sym_preproc_if_token1] = ACTIONS(149), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), - }, - [18] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), - [sym_preproc_region] = STATE(18), - [sym_preproc_endregion] = STATE(18), - [sym_preproc_line] = STATE(18), - [sym_preproc_pragma] = STATE(18), - [sym_preproc_nullable] = STATE(18), - [sym_preproc_error] = STATE(18), - [sym_preproc_warning] = STATE(18), - [sym_preproc_define] = STATE(18), - [sym_preproc_undef] = STATE(18), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(18), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(17), [sym__identifier_token] = ACTIONS(448), [anon_sym_extern] = ACTIONS(451), [anon_sym_alias] = ACTIONS(454), @@ -37232,40 +36996,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(454), [anon_sym_unmanaged] = ACTIONS(454), [anon_sym_checked] = ACTIONS(520), - [anon_sym_BANG] = ACTIONS(523), [anon_sym_TILDE] = ACTIONS(523), - [anon_sym_PLUS_PLUS] = ACTIONS(523), - [anon_sym_DASH_DASH] = ACTIONS(523), - [anon_sym_true] = ACTIONS(526), - [anon_sym_false] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(532), - [anon_sym_CARET] = ACTIONS(523), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_this] = ACTIONS(535), - [anon_sym_scoped] = ACTIONS(538), - [anon_sym_base] = ACTIONS(541), - [anon_sym_var] = ACTIONS(544), - [sym_predefined_type] = ACTIONS(547), - [anon_sym_break] = ACTIONS(550), + [anon_sym_this] = ACTIONS(526), + [anon_sym_scoped] = ACTIONS(529), + [anon_sym_base] = ACTIONS(532), + [anon_sym_var] = ACTIONS(535), + [anon_sym_STAR] = ACTIONS(538), + [sym_predefined_type] = ACTIONS(541), + [anon_sym_break] = ACTIONS(544), [anon_sym_unchecked] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(553), - [anon_sym_do] = ACTIONS(556), - [anon_sym_while] = ACTIONS(559), - [anon_sym_for] = ACTIONS(562), - [anon_sym_lock] = ACTIONS(565), - [anon_sym_yield] = ACTIONS(568), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_default] = ACTIONS(574), - [anon_sym_throw] = ACTIONS(577), - [anon_sym_try] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(547), + [anon_sym_do] = ACTIONS(550), + [anon_sym_while] = ACTIONS(553), + [anon_sym_for] = ACTIONS(556), + [anon_sym_lock] = ACTIONS(559), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_switch] = ACTIONS(565), + [anon_sym_default] = ACTIONS(568), + [anon_sym_throw] = ACTIONS(571), + [anon_sym_try] = ACTIONS(574), [anon_sym_when] = ACTIONS(454), - [anon_sym_await] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(586), - [anon_sym_goto] = ACTIONS(589), - [anon_sym_if] = ACTIONS(592), - [anon_sym_DOT_DOT] = ACTIONS(595), + [anon_sym_await] = ACTIONS(577), + [anon_sym_foreach] = ACTIONS(580), + [anon_sym_goto] = ACTIONS(583), + [anon_sym_if] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_CARET] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_PLUS_PLUS] = ACTIONS(523), + [anon_sym_DASH_DASH] = ACTIONS(523), + [anon_sym_true] = ACTIONS(595), + [anon_sym_false] = ACTIONS(595), [anon_sym_from] = ACTIONS(598), [anon_sym_into] = ACTIONS(454), [anon_sym_join] = ACTIONS(454), @@ -37310,134 +37074,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(645), [sym_raw_string_start] = ACTIONS(648), }, + [18] = { + [sym__top_level_item] = STATE(2110), + [sym_global_statement] = STATE(2109), + [sym_extern_alias_directive] = STATE(2109), + [sym_using_directive] = STATE(2109), + [sym_global_attribute] = STATE(2109), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2109), + [sym_file_scoped_namespace_declaration] = STATE(2109), + [sym_type_declaration] = STATE(2109), + [sym_class_declaration] = STATE(2108), + [sym__class_declaration_initializer] = STATE(7998), + [sym_struct_declaration] = STATE(2108), + [sym__struct_declaration_initializer] = STATE(7432), + [sym_enum_declaration] = STATE(2108), + [sym_interface_declaration] = STATE(2108), + [sym__interface_declaration_initializer] = STATE(7433), + [sym_delegate_declaration] = STATE(2108), + [sym__delegate_declaration_initializer] = STATE(6960), + [sym_record_declaration] = STATE(2108), + [sym__record_declaration_initializer] = STATE(7120), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2105), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), + [sym__foreach_statement_initializer] = STATE(105), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2107), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), + [sym_preproc_region] = STATE(18), + [sym_preproc_endregion] = STATE(18), + [sym_preproc_line] = STATE(18), + [sym_preproc_pragma] = STATE(18), + [sym_preproc_nullable] = STATE(18), + [sym_preproc_error] = STATE(18), + [sym_preproc_warning] = STATE(18), + [sym_preproc_define] = STATE(18), + [sym_preproc_undef] = STATE(18), + [aux_sym_compilation_unit_repeat1] = STATE(16), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2245), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2390), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [ts_builtin_sym_end] = ACTIONS(651), + [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_public] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [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_protected] = 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_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_for] = ACTIONS(97), + [anon_sym_lock] = ACTIONS(99), + [anon_sym_yield] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(103), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_try] = ACTIONS(109), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(111), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(147), + [aux_sym_preproc_if_token1] = ACTIONS(149), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), + }, [19] = { - [sym__top_level_item] = STATE(2085), - [sym_global_statement] = STATE(2083), - [sym_extern_alias_directive] = STATE(2083), - [sym_using_directive] = STATE(2083), - [sym_global_attribute] = STATE(2083), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2083), - [sym_file_scoped_namespace_declaration] = STATE(2083), - [sym_type_declaration] = STATE(2083), - [sym_class_declaration] = STATE(2096), - [sym__class_declaration_initializer] = STATE(7703), - [sym_struct_declaration] = STATE(2096), - [sym__struct_declaration_initializer] = STATE(7593), - [sym_enum_declaration] = STATE(2096), - [sym_interface_declaration] = STATE(2096), - [sym__interface_declaration_initializer] = STATE(7607), - [sym_delegate_declaration] = STATE(2096), - [sym__delegate_declaration_initializer] = STATE(6997), - [sym_record_declaration] = STATE(2096), - [sym__record_declaration_initializer] = STATE(7235), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym__top_level_item] = STATE(2110), + [sym_global_statement] = STATE(2109), + [sym_extern_alias_directive] = STATE(2109), + [sym_using_directive] = STATE(2109), + [sym_global_attribute] = STATE(2109), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2109), + [sym_file_scoped_namespace_declaration] = STATE(2109), + [sym_type_declaration] = STATE(2109), + [sym_class_declaration] = STATE(2108), + [sym__class_declaration_initializer] = STATE(7998), + [sym_struct_declaration] = STATE(2108), + [sym__struct_declaration_initializer] = STATE(7432), + [sym_enum_declaration] = STATE(2108), + [sym_interface_declaration] = STATE(2108), + [sym__interface_declaration_initializer] = STATE(7433), + [sym_delegate_declaration] = STATE(2108), + [sym__delegate_declaration_initializer] = STATE(6960), + [sym_record_declaration] = STATE(2108), + [sym__record_declaration_initializer] = STATE(7120), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2098), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2105), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2101), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2107), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(19), [sym_preproc_endregion] = STATE(19), [sym_preproc_line] = STATE(19), @@ -37447,11 +37469,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(19), [sym_preproc_define] = STATE(19), [sym_preproc_undef] = STATE(19), - [aux_sym_compilation_unit_repeat1] = STATE(15), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2247), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2396), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [ts_builtin_sym_end] = ACTIONS(651), + [aux_sym_compilation_unit_repeat1] = STATE(18), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2245), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2390), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [ts_builtin_sym_end] = ACTIONS(243), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(27), [anon_sym_alias] = ACTIONS(29), @@ -37493,40 +37515,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_for] = ACTIONS(97), + [anon_sym_lock] = ACTIONS(99), + [anon_sym_yield] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(103), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_try] = ACTIONS(109), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(111), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -37569,131 +37591,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [20] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3427), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(3114), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4343), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(4843), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(20), [sym_preproc_endregion] = STATE(20), [sym_preproc_line] = STATE(20), @@ -37703,10 +37725,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(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(21), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(22), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), [anon_sym_alias] = ACTIONS(29), @@ -37748,22 +37770,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -37773,15 +37786,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -37825,131 +37847,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [21] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(21), [sym_preproc_endregion] = STATE(21), [sym_preproc_line] = STATE(21), @@ -37959,10 +37981,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(21), [sym_preproc_define] = STATE(21), [sym_preproc_undef] = STATE(21), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(18), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(22), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), [anon_sym_alias] = ACTIONS(29), @@ -38004,22 +38026,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -38029,15 +38042,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -38064,7 +38086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_verbatim_string_literal] = ACTIONS(143), [sym_grit_metavariable] = ACTIONS(211), [aux_sym_preproc_if_token1] = ACTIONS(213), - [aux_sym_preproc_if_token3] = ACTIONS(655), + [aux_sym_preproc_if_token3] = ACTIONS(653), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -38081,131 +38103,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [22] = { - [sym_extern_alias_directive] = STATE(2023), - [sym_using_directive] = STATE(2023), - [sym_global_attribute] = STATE(2023), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(2023), - [sym_file_scoped_namespace_declaration] = STATE(2023), - [sym_type_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2020), - [sym__class_declaration_initializer] = STATE(7874), - [sym_struct_declaration] = STATE(2020), - [sym__struct_declaration_initializer] = STATE(7480), - [sym_enum_declaration] = STATE(2020), - [sym_interface_declaration] = STATE(2020), - [sym__interface_declaration_initializer] = STATE(7479), - [sym_delegate_declaration] = STATE(2020), - [sym__delegate_declaration_initializer] = STATE(7048), - [sym_record_declaration] = STATE(2020), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_extern_alias_directive] = STATE(2011), + [sym_using_directive] = STATE(2011), + [sym_global_attribute] = STATE(2011), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2011), + [sym_file_scoped_namespace_declaration] = STATE(2011), + [sym_type_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2027), + [sym__class_declaration_initializer] = STATE(7887), + [sym_struct_declaration] = STATE(2027), + [sym__struct_declaration_initializer] = STATE(7457), + [sym_enum_declaration] = STATE(2027), + [sym_interface_declaration] = STATE(2027), + [sym__interface_declaration_initializer] = STATE(7458), + [sym_delegate_declaration] = STATE(2027), + [sym__delegate_declaration_initializer] = STATE(6999), + [sym_record_declaration] = STATE(2027), + [sym__record_declaration_initializer] = STATE(7132), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2023), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2009), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2011), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2028), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(22), [sym_preproc_endregion] = STATE(22), [sym_preproc_line] = STATE(22), @@ -38215,10 +38237,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(22), [sym_preproc_define] = STATE(22), [sym_preproc_undef] = STATE(22), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2242), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2400), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(21), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2246), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2389), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(17), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(161), [anon_sym_alias] = ACTIONS(29), @@ -38260,22 +38282,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -38285,15 +38298,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -38320,7 +38342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_verbatim_string_literal] = ACTIONS(143), [sym_grit_metavariable] = ACTIONS(211), [aux_sym_preproc_if_token1] = ACTIONS(213), - [aux_sym_preproc_if_token3] = ACTIONS(653), + [aux_sym_preproc_if_token3] = ACTIONS(655), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -38337,114 +38359,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [23] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(3932), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(4067), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(23), [sym_preproc_endregion] = STATE(23), [sym_preproc_line] = STATE(23), @@ -38454,10 +38476,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(50), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(62), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -38495,40 +38517,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(715), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = 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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(713), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(717), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -38571,114 +38593,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [24] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(3976), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2165), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(24), [sym_preproc_endregion] = STATE(24), [sym_preproc_line] = STATE(24), @@ -38688,10 +38710,244 @@ 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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_switch_section_repeat1] = STATE(24), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(729), + [anon_sym_extern] = ACTIONS(732), + [anon_sym_alias] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_global] = ACTIONS(735), + [anon_sym_using] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(744), + [anon_sym_static] = ACTIONS(747), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_return] = ACTIONS(756), + [anon_sym_ref] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(762), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_delegate] = ACTIONS(767), + [anon_sym_public] = ACTIONS(732), + [anon_sym_private] = ACTIONS(732), + [anon_sym_readonly] = ACTIONS(732), + [anon_sym_abstract] = ACTIONS(732), + [anon_sym_async] = ACTIONS(747), + [anon_sym_const] = ACTIONS(732), + [anon_sym_file] = ACTIONS(770), + [anon_sym_fixed] = ACTIONS(773), + [anon_sym_internal] = ACTIONS(732), + [anon_sym_new] = ACTIONS(776), + [anon_sym_override] = ACTIONS(732), + [anon_sym_partial] = ACTIONS(732), + [anon_sym_protected] = ACTIONS(732), + [anon_sym_required] = ACTIONS(732), + [anon_sym_sealed] = ACTIONS(732), + [anon_sym_virtual] = ACTIONS(732), + [anon_sym_volatile] = ACTIONS(732), + [anon_sym_where] = ACTIONS(735), + [anon_sym_notnull] = ACTIONS(735), + [anon_sym_unmanaged] = ACTIONS(735), + [anon_sym_checked] = ACTIONS(779), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_this] = ACTIONS(785), + [anon_sym_scoped] = ACTIONS(788), + [anon_sym_base] = ACTIONS(791), + [anon_sym_var] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(797), + [sym_predefined_type] = ACTIONS(800), + [anon_sym_break] = ACTIONS(803), + [anon_sym_unchecked] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_do] = ACTIONS(809), + [anon_sym_while] = ACTIONS(812), + [anon_sym_for] = ACTIONS(815), + [anon_sym_lock] = ACTIONS(818), + [anon_sym_yield] = ACTIONS(821), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_case] = ACTIONS(827), + [anon_sym_default] = ACTIONS(829), + [anon_sym_throw] = ACTIONS(832), + [anon_sym_try] = ACTIONS(835), + [anon_sym_when] = ACTIONS(735), + [anon_sym_await] = ACTIONS(838), + [anon_sym_foreach] = ACTIONS(841), + [anon_sym_goto] = ACTIONS(844), + [anon_sym_if] = ACTIONS(847), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(782), + [anon_sym_CARET] = ACTIONS(782), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), + [anon_sym_true] = ACTIONS(856), + [anon_sym_false] = ACTIONS(856), + [anon_sym_from] = ACTIONS(859), + [anon_sym_into] = ACTIONS(735), + [anon_sym_join] = ACTIONS(735), + [anon_sym_on] = ACTIONS(735), + [anon_sym_equals] = ACTIONS(735), + [anon_sym_let] = ACTIONS(735), + [anon_sym_orderby] = ACTIONS(735), + [anon_sym_ascending] = ACTIONS(735), + [anon_sym_descending] = ACTIONS(735), + [anon_sym_group] = ACTIONS(735), + [anon_sym_by] = ACTIONS(735), + [anon_sym_select] = ACTIONS(735), + [anon_sym_stackalloc] = ACTIONS(862), + [anon_sym_sizeof] = ACTIONS(865), + [anon_sym_typeof] = ACTIONS(868), + [anon_sym___makeref] = ACTIONS(871), + [anon_sym___reftype] = ACTIONS(874), + [anon_sym___refvalue] = ACTIONS(877), + [sym_null_literal] = ACTIONS(880), + [anon_sym_SQUOTE] = ACTIONS(883), + [sym_integer_literal] = ACTIONS(880), + [sym_real_literal] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(889), + [sym_verbatim_string_literal] = ACTIONS(886), + [sym_grit_metavariable] = ACTIONS(892), + [aux_sym_preproc_if_token1] = ACTIONS(895), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(898), + [sym_interpolation_verbatim_start] = ACTIONS(901), + [sym_interpolation_raw_start] = ACTIONS(904), + [sym_raw_string_start] = ACTIONS(907), + }, + [25] = { + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(4162), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), + [sym_preproc_region] = STATE(25), + [sym_preproc_endregion] = STATE(25), + [sym_preproc_line] = STATE(25), + [sym_preproc_pragma] = STATE(25), + [sym_preproc_nullable] = STATE(25), + [sym_preproc_error] = STATE(25), + [sym_preproc_warning] = STATE(25), + [sym_preproc_define] = STATE(25), + [sym_preproc_undef] = STATE(25), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), [aux_sym_block_repeat1] = STATE(45), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -38701,12 +38957,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(910), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_return] = ACTIONS(673), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(912), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -38729,40 +38985,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(715), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = 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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(713), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(717), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -38804,128 +39060,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [25] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(3929), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), - [sym_preproc_region] = STATE(25), - [sym_preproc_endregion] = STATE(25), - [sym_preproc_line] = STATE(25), - [sym_preproc_pragma] = STATE(25), - [sym_preproc_nullable] = STATE(25), - [sym_preproc_error] = STATE(25), - [sym_preproc_warning] = STATE(25), - [sym_preproc_define] = STATE(25), - [sym_preproc_undef] = STATE(25), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(56), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [26] = { + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2165), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), + [sym_preproc_region] = STATE(26), + [sym_preproc_endregion] = STATE(26), + [sym_preproc_line] = STATE(26), + [sym_preproc_pragma] = STATE(26), + [sym_preproc_nullable] = STATE(26), + [sym_preproc_error] = STATE(26), + [sym_preproc_warning] = STATE(26), + [sym_preproc_define] = STATE(26), + [sym_preproc_undef] = STATE(26), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_switch_section_repeat1] = STATE(24), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -38935,12 +39191,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_RBRACE] = ACTIONS(916), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -38963,274 +39218,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = 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(697), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(713), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(717), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(725), - [aux_sym_preproc_if_token1] = ACTIONS(727), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), - }, - [26] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(3879), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), - [sym_preproc_region] = STATE(26), - [sym_preproc_endregion] = STATE(26), - [sym_preproc_line] = STATE(26), - [sym_preproc_pragma] = STATE(26), - [sym_preproc_nullable] = STATE(26), - [sym_preproc_error] = STATE(26), - [sym_preproc_warning] = STATE(26), - [sym_preproc_define] = STATE(26), - [sym_preproc_undef] = STATE(26), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(44), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(659), - [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(663), - [anon_sym_static] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(665), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(685), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(687), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = 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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(713), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(717), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -39273,114 +39295,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [27] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(3854), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(4162), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(27), [sym_preproc_endregion] = STATE(27), [sym_preproc_line] = STATE(27), @@ -39390,10 +39412,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(27), [sym_preproc_define] = STATE(27), [sym_preproc_undef] = STATE(27), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(53), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(63), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -39403,12 +39425,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_COMMA] = ACTIONS(910), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_return] = ACTIONS(673), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(743), + [anon_sym_RBRACE] = ACTIONS(924), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -39431,40 +39453,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(715), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = 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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(713), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(717), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -39507,114 +39529,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [28] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(4164), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(28), [sym_preproc_endregion] = STATE(28), [sym_preproc_line] = STATE(28), @@ -39624,10 +39646,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_switch_section_repeat1] = STATE(41), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(43), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -39637,11 +39659,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(928), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -39664,41 +39687,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [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(697), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_case] = ACTIONS(749), - [anon_sym_default] = ACTIONS(749), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(715), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -39741,114 +39763,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [29] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(4162), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(29), [sym_preproc_endregion] = STATE(29), [sym_preproc_line] = STATE(29), @@ -39858,10 +39880,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_switch_section_repeat1] = STATE(40), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(51), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -39871,11 +39893,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(930), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -39898,41 +39921,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [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(697), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_case] = ACTIONS(757), - [anon_sym_default] = ACTIONS(757), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(715), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -39975,114 +39997,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [30] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(3976), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(4162), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(30), [sym_preproc_endregion] = STATE(30), [sym_preproc_line] = STATE(30), @@ -40092,10 +40114,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(59), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(57), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -40105,12 +40127,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(910), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_return] = ACTIONS(673), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(932), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -40133,40 +40155,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(715), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = 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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(713), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(717), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -40209,114 +40231,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [31] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(4189), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(31), [sym_preproc_endregion] = STATE(31), [sym_preproc_line] = STATE(31), @@ -40326,10 +40348,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_switch_section_repeat1] = STATE(35), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(58), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -40339,11 +40361,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(936), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -40366,41 +40389,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [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(697), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_case] = ACTIONS(763), - [anon_sym_default] = ACTIONS(763), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(715), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -40443,114 +40465,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [32] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(4162), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(32), [sym_preproc_endregion] = STATE(32), [sym_preproc_line] = STATE(32), @@ -40560,10 +40582,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_switch_section_repeat1] = STATE(28), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(63), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -40573,11 +40595,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(938), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -40600,41 +40623,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [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(697), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_case] = ACTIONS(767), - [anon_sym_default] = ACTIONS(767), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(715), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -40677,114 +40699,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [33] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2165), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(33), [sym_preproc_endregion] = STATE(33), [sym_preproc_line] = STATE(33), @@ -40794,10 +40816,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_switch_section_repeat1] = STATE(39), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_switch_section_repeat1] = STATE(24), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -40809,9 +40831,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(940), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -40834,41 +40856,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_case] = ACTIONS(942), + [anon_sym_default] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_case] = ACTIONS(771), - [anon_sym_default] = ACTIONS(771), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -40911,114 +40933,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [34] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(3976), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2165), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(34), [sym_preproc_endregion] = STATE(34), [sym_preproc_line] = STATE(34), @@ -41028,10 +41050,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(54), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_switch_section_repeat1] = STATE(39), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -41041,12 +41063,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(944), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -41069,40 +41090,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = 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(697), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(713), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(717), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_case] = ACTIONS(946), + [anon_sym_default] = ACTIONS(946), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -41145,114 +41167,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [35] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2165), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(35), [sym_preproc_endregion] = STATE(35), [sym_preproc_line] = STATE(35), @@ -41262,10 +41284,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_switch_section_repeat1] = STATE(41), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_switch_section_repeat1] = STATE(36), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -41277,9 +41299,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(948), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -41302,41 +41324,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_case] = ACTIONS(950), + [anon_sym_default] = ACTIONS(950), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_case] = ACTIONS(777), - [anon_sym_default] = ACTIONS(777), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -41379,114 +41401,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [36] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(3976), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2165), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(36), [sym_preproc_endregion] = STATE(36), [sym_preproc_line] = STATE(36), @@ -41496,10 +41518,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(43), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_switch_section_repeat1] = STATE(24), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -41509,12 +41531,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(952), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -41537,40 +41558,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = 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(697), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(713), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(717), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -41613,114 +41635,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [37] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(3920), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2165), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(37), [sym_preproc_endregion] = STATE(37), [sym_preproc_line] = STATE(37), @@ -41730,10 +41752,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(37), [sym_preproc_define] = STATE(37), [sym_preproc_undef] = STATE(37), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(55), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_switch_section_repeat1] = STATE(26), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -41743,12 +41765,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(783), + [anon_sym_RBRACE] = ACTIONS(956), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -41771,40 +41792,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = 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(697), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(713), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(717), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_case] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -41847,114 +41869,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [38] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(3976), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(4280), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(38), [sym_preproc_endregion] = STATE(38), [sym_preproc_line] = STATE(38), @@ -41964,10 +41986,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(54), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(50), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -41977,12 +41999,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(960), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_return] = ACTIONS(673), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(785), + [anon_sym_RBRACE] = ACTIONS(962), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -42005,40 +42027,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(715), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = 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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(713), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(717), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -42081,114 +42103,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [39] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2165), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(39), [sym_preproc_endregion] = STATE(39), [sym_preproc_line] = STATE(39), @@ -42198,10 +42220,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_switch_section_repeat1] = STATE(41), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_switch_section_repeat1] = STATE(24), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -42213,9 +42235,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(964), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -42238,41 +42260,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_case] = ACTIONS(966), + [anon_sym_default] = ACTIONS(966), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_case] = ACTIONS(789), - [anon_sym_default] = ACTIONS(789), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -42315,114 +42337,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [40] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2165), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(40), [sym_preproc_endregion] = STATE(40), [sym_preproc_line] = STATE(40), @@ -42432,10 +42454,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_switch_section_repeat1] = STATE(41), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_switch_section_repeat1] = STATE(33), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -42447,9 +42469,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(968), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -42472,41 +42494,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_case] = ACTIONS(970), + [anon_sym_default] = ACTIONS(970), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -42549,114 +42571,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [41] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(4245), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(41), [sym_preproc_endregion] = STATE(41), [sym_preproc_line] = STATE(41), @@ -42666,231 +42688,231 @@ 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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_switch_section_repeat1] = STATE(41), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(795), - [anon_sym_extern] = ACTIONS(798), - [anon_sym_alias] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_global] = ACTIONS(801), - [anon_sym_using] = ACTIONS(807), - [anon_sym_unsafe] = ACTIONS(810), - [anon_sym_static] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_return] = ACTIONS(822), - [anon_sym_ref] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(831), - [anon_sym_delegate] = ACTIONS(833), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_readonly] = ACTIONS(798), - [anon_sym_abstract] = ACTIONS(798), - [anon_sym_async] = ACTIONS(813), - [anon_sym_const] = ACTIONS(798), - [anon_sym_file] = ACTIONS(836), - [anon_sym_fixed] = ACTIONS(839), - [anon_sym_internal] = ACTIONS(798), - [anon_sym_new] = ACTIONS(842), - [anon_sym_override] = ACTIONS(798), - [anon_sym_partial] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_required] = ACTIONS(798), - [anon_sym_sealed] = ACTIONS(798), - [anon_sym_virtual] = ACTIONS(798), - [anon_sym_volatile] = ACTIONS(798), - [anon_sym_where] = ACTIONS(801), - [anon_sym_notnull] = ACTIONS(801), - [anon_sym_unmanaged] = ACTIONS(801), - [anon_sym_checked] = ACTIONS(845), - [anon_sym_BANG] = ACTIONS(848), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS_PLUS] = ACTIONS(848), - [anon_sym_DASH_DASH] = ACTIONS(848), - [anon_sym_true] = ACTIONS(851), - [anon_sym_false] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_CARET] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_this] = ACTIONS(860), - [anon_sym_scoped] = ACTIONS(863), - [anon_sym_base] = ACTIONS(866), - [anon_sym_var] = ACTIONS(869), - [sym_predefined_type] = ACTIONS(872), - [anon_sym_break] = ACTIONS(875), - [anon_sym_unchecked] = ACTIONS(845), - [anon_sym_continue] = ACTIONS(878), - [anon_sym_do] = ACTIONS(881), - [anon_sym_while] = ACTIONS(884), - [anon_sym_for] = ACTIONS(887), - [anon_sym_lock] = ACTIONS(890), - [anon_sym_yield] = ACTIONS(893), - [anon_sym_switch] = ACTIONS(896), - [anon_sym_case] = ACTIONS(899), - [anon_sym_default] = ACTIONS(901), - [anon_sym_throw] = ACTIONS(904), - [anon_sym_try] = ACTIONS(907), - [anon_sym_when] = ACTIONS(801), - [anon_sym_await] = ACTIONS(910), - [anon_sym_foreach] = ACTIONS(913), - [anon_sym_goto] = ACTIONS(916), - [anon_sym_if] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(922), - [anon_sym_from] = ACTIONS(925), - [anon_sym_into] = ACTIONS(801), - [anon_sym_join] = ACTIONS(801), - [anon_sym_on] = ACTIONS(801), - [anon_sym_equals] = ACTIONS(801), - [anon_sym_let] = ACTIONS(801), - [anon_sym_orderby] = ACTIONS(801), - [anon_sym_ascending] = ACTIONS(801), - [anon_sym_descending] = ACTIONS(801), - [anon_sym_group] = ACTIONS(801), - [anon_sym_by] = ACTIONS(801), - [anon_sym_select] = ACTIONS(801), - [anon_sym_stackalloc] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(931), - [anon_sym_typeof] = ACTIONS(934), - [anon_sym___makeref] = ACTIONS(937), - [anon_sym___reftype] = ACTIONS(940), - [anon_sym___refvalue] = ACTIONS(943), - [sym_null_literal] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(949), - [sym_integer_literal] = ACTIONS(946), - [sym_real_literal] = ACTIONS(952), - [anon_sym_DQUOTE] = ACTIONS(955), - [sym_verbatim_string_literal] = ACTIONS(952), - [sym_grit_metavariable] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(961), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(964), - [sym_interpolation_verbatim_start] = ACTIONS(967), - [sym_interpolation_raw_start] = ACTIONS(970), - [sym_raw_string_start] = ACTIONS(973), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(59), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(657), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_global] = ACTIONS(29), + [anon_sym_using] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(663), + [anon_sym_static] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_COMMA] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_return] = ACTIONS(673), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(665), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(683), + [anon_sym_fixed] = ACTIONS(685), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(687), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(715), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(725), + [aux_sym_preproc_if_token1] = ACTIONS(727), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [42] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(42), [sym_preproc_endregion] = STATE(42), [sym_preproc_line] = STATE(42), @@ -42900,10 +42922,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(47), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(51), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -42915,7 +42937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(976), [anon_sym_delegate] = ACTIONS(681), @@ -42940,40 +42962,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -43016,114 +43038,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [43] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(43), [sym_preproc_endregion] = STATE(43), [sym_preproc_line] = STATE(43), @@ -43133,10 +43155,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(60), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -43148,7 +43170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(978), [anon_sym_delegate] = ACTIONS(681), @@ -43173,40 +43195,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -43249,114 +43271,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [44] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(44), [sym_preproc_endregion] = STATE(44), [sym_preproc_line] = STATE(44), @@ -43366,10 +43388,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(58), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -43381,7 +43403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(980), [anon_sym_delegate] = ACTIONS(681), @@ -43406,40 +43428,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -43482,114 +43504,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [45] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(45), [sym_preproc_endregion] = STATE(45), [sym_preproc_line] = STATE(45), @@ -43599,10 +43621,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(60), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -43614,7 +43636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(982), [anon_sym_delegate] = ACTIONS(681), @@ -43639,40 +43661,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -43715,114 +43737,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [46] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(46), [sym_preproc_endregion] = STATE(46), [sym_preproc_line] = STATE(46), @@ -43832,10 +43854,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(54), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(63), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -43847,7 +43869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(984), [anon_sym_delegate] = ACTIONS(681), @@ -43872,40 +43894,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -43948,114 +43970,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [47] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(47), [sym_preproc_endregion] = STATE(47), [sym_preproc_line] = STATE(47), @@ -44065,10 +44087,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(57), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -44080,7 +44102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(986), [anon_sym_delegate] = ACTIONS(681), @@ -44105,40 +44127,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -44181,114 +44203,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [48] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(48), [sym_preproc_endregion] = STATE(48), [sym_preproc_line] = STATE(48), @@ -44298,10 +44320,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), [aux_sym_block_repeat1] = STATE(59), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -44313,7 +44335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(988), [anon_sym_delegate] = ACTIONS(681), @@ -44338,40 +44360,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -44414,114 +44436,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [49] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(49), [sym_preproc_endregion] = STATE(49), [sym_preproc_line] = STATE(49), @@ -44531,10 +44553,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(45), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(60), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -44546,7 +44568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(990), [anon_sym_delegate] = ACTIONS(681), @@ -44571,40 +44593,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -44647,114 +44669,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [50] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(50), [sym_preproc_endregion] = STATE(50), [sym_preproc_line] = STATE(50), @@ -44764,10 +44786,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(60), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -44779,7 +44801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(992), [anon_sym_delegate] = ACTIONS(681), @@ -44804,40 +44826,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -44880,114 +44902,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [51] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(51), [sym_preproc_endregion] = STATE(51), [sym_preproc_line] = STATE(51), @@ -44997,10 +45019,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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(56), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(60), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -45012,7 +45034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(994), [anon_sym_delegate] = ACTIONS(681), @@ -45037,40 +45059,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -45113,114 +45135,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [52] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(52), [sym_preproc_endregion] = STATE(52), [sym_preproc_line] = STATE(52), @@ -45230,10 +45252,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(52), [sym_preproc_define] = STATE(52), [sym_preproc_undef] = STATE(52), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(53), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(49), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -45245,7 +45267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(996), [anon_sym_delegate] = ACTIONS(681), @@ -45270,40 +45292,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -45346,114 +45368,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [53] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(53), [sym_preproc_endregion] = STATE(53), [sym_preproc_line] = STATE(53), @@ -45463,10 +45485,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(53), [sym_preproc_define] = STATE(53), [sym_preproc_undef] = STATE(53), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(54), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -45478,7 +45500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(998), [anon_sym_delegate] = ACTIONS(681), @@ -45503,40 +45525,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -45579,114 +45601,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [54] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(54), [sym_preproc_endregion] = STATE(54), [sym_preproc_line] = STATE(54), @@ -45696,10 +45718,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(54), [sym_preproc_define] = STATE(54), [sym_preproc_undef] = STATE(54), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(60), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -45711,7 +45733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(1000), [anon_sym_delegate] = ACTIONS(681), @@ -45736,40 +45758,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -45812,114 +45834,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [55] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(55), [sym_preproc_endregion] = STATE(55), [sym_preproc_line] = STATE(55), @@ -45929,10 +45951,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(55), [sym_preproc_define] = STATE(55), [sym_preproc_undef] = STATE(55), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(43), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -45944,7 +45966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(1002), [anon_sym_delegate] = ACTIONS(681), @@ -45969,40 +45991,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -46045,114 +46067,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [56] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(56), [sym_preproc_endregion] = STATE(56), [sym_preproc_line] = STATE(56), @@ -46162,10 +46184,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(56), [sym_preproc_define] = STATE(56), [sym_preproc_undef] = STATE(56), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(50), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -46177,7 +46199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(1004), [anon_sym_delegate] = ACTIONS(681), @@ -46202,40 +46224,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -46278,114 +46300,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [57] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(57), [sym_preproc_endregion] = STATE(57), [sym_preproc_line] = STATE(57), @@ -46395,10 +46417,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(57), [sym_preproc_define] = STATE(57), [sym_preproc_undef] = STATE(57), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(60), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -46410,7 +46432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(1006), [anon_sym_delegate] = ACTIONS(681), @@ -46435,40 +46457,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -46511,114 +46533,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [58] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(58), [sym_preproc_endregion] = STATE(58), [sym_preproc_line] = STATE(58), @@ -46628,10 +46650,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(58), [sym_preproc_define] = STATE(58), [sym_preproc_undef] = STATE(58), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(50), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(60), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -46643,7 +46665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(1008), [anon_sym_delegate] = ACTIONS(681), @@ -46668,40 +46690,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -46744,114 +46766,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [59] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(59), [sym_preproc_endregion] = STATE(59), [sym_preproc_line] = STATE(59), @@ -46861,10 +46883,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(59), [sym_preproc_define] = STATE(59), [sym_preproc_undef] = STATE(59), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(60), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -46876,7 +46898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_RBRACE] = ACTIONS(1010), [anon_sym_delegate] = ACTIONS(681), @@ -46901,40 +46923,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -46977,114 +46999,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [60] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(60), [sym_preproc_endregion] = STATE(60), [sym_preproc_line] = STATE(60), @@ -47094,230 +47116,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(60), [sym_preproc_define] = STATE(60), [sym_preproc_undef] = STATE(60), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(57), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(659), - [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(663), - [anon_sym_static] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(665), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(685), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(687), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(689), - [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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [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), - [sym_grit_metavariable] = ACTIONS(725), - [aux_sym_preproc_if_token1] = ACTIONS(727), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(60), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1015), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_global] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(1024), + [anon_sym_unsafe] = ACTIONS(1027), + [anon_sym_static] = ACTIONS(1030), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_ref] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_delegate] = ACTIONS(1050), + [anon_sym_public] = ACTIONS(1015), + [anon_sym_private] = ACTIONS(1015), + [anon_sym_readonly] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1015), + [anon_sym_async] = ACTIONS(1030), + [anon_sym_const] = ACTIONS(1015), + [anon_sym_file] = ACTIONS(1053), + [anon_sym_fixed] = ACTIONS(1056), + [anon_sym_internal] = ACTIONS(1015), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_override] = ACTIONS(1015), + [anon_sym_partial] = ACTIONS(1015), + [anon_sym_protected] = ACTIONS(1015), + [anon_sym_required] = ACTIONS(1015), + [anon_sym_sealed] = ACTIONS(1015), + [anon_sym_virtual] = ACTIONS(1015), + [anon_sym_volatile] = ACTIONS(1015), + [anon_sym_where] = ACTIONS(1018), + [anon_sym_notnull] = ACTIONS(1018), + [anon_sym_unmanaged] = ACTIONS(1018), + [anon_sym_checked] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_this] = ACTIONS(1068), + [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_base] = ACTIONS(1074), + [anon_sym_var] = ACTIONS(1077), + [anon_sym_STAR] = ACTIONS(1080), + [sym_predefined_type] = ACTIONS(1083), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_unchecked] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_lock] = ACTIONS(1101), + [anon_sym_yield] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1107), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_throw] = ACTIONS(1113), + [anon_sym_try] = ACTIONS(1116), + [anon_sym_when] = ACTIONS(1018), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_foreach] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1125), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_DOT_DOT] = ACTIONS(1131), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_true] = ACTIONS(1137), + [anon_sym_false] = ACTIONS(1137), + [anon_sym_from] = ACTIONS(1140), + [anon_sym_into] = ACTIONS(1018), + [anon_sym_join] = ACTIONS(1018), + [anon_sym_on] = ACTIONS(1018), + [anon_sym_equals] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_orderby] = ACTIONS(1018), + [anon_sym_ascending] = ACTIONS(1018), + [anon_sym_descending] = ACTIONS(1018), + [anon_sym_group] = ACTIONS(1018), + [anon_sym_by] = ACTIONS(1018), + [anon_sym_select] = ACTIONS(1018), + [anon_sym_stackalloc] = ACTIONS(1143), + [anon_sym_sizeof] = ACTIONS(1146), + [anon_sym_typeof] = ACTIONS(1149), + [anon_sym___makeref] = ACTIONS(1152), + [anon_sym___reftype] = ACTIONS(1155), + [anon_sym___refvalue] = ACTIONS(1158), + [sym_null_literal] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1164), + [sym_integer_literal] = ACTIONS(1161), + [sym_real_literal] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1170), + [sym_verbatim_string_literal] = ACTIONS(1167), + [sym_grit_metavariable] = ACTIONS(1173), + [aux_sym_preproc_if_token1] = ACTIONS(1176), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1179), + [sym_interpolation_verbatim_start] = ACTIONS(1182), + [sym_interpolation_raw_start] = ACTIONS(1185), + [sym_raw_string_start] = ACTIONS(1188), }, [61] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(61), [sym_preproc_endregion] = STATE(61), [sym_preproc_line] = STATE(61), @@ -47327,10 +47349,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(61), [sym_preproc_define] = STATE(61), [sym_preproc_undef] = STATE(61), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(55), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(62), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -47342,9 +47364,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1191), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -47367,40 +47389,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -47443,114 +47465,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [62] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(62), [sym_preproc_endregion] = STATE(62), [sym_preproc_line] = STATE(62), @@ -47560,10 +47582,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(62), [sym_preproc_define] = STATE(62), [sym_preproc_undef] = STATE(62), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(44), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(60), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -47575,9 +47597,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1193), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -47600,40 +47622,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -47676,114 +47698,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [63] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(63), [sym_preproc_endregion] = STATE(63), [sym_preproc_line] = STATE(63), @@ -47793,10 +47815,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(63), [sym_preproc_define] = STATE(63), [sym_preproc_undef] = STATE(63), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(43), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(60), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -47808,9 +47830,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1195), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -47833,40 +47855,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -47909,114 +47931,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [64] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2168), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2167), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(64), [sym_preproc_endregion] = STATE(64), [sym_preproc_line] = STATE(64), @@ -48026,230 +48048,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(64), [sym_preproc_define] = STATE(64), [sym_preproc_undef] = STATE(64), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1023), - [anon_sym_alias] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_global] = ACTIONS(1026), - [anon_sym_using] = ACTIONS(1032), - [anon_sym_unsafe] = ACTIONS(1035), - [anon_sym_static] = ACTIONS(1038), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1047), - [anon_sym_ref] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_delegate] = ACTIONS(1058), - [anon_sym_public] = ACTIONS(1023), - [anon_sym_private] = ACTIONS(1023), - [anon_sym_readonly] = ACTIONS(1023), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_const] = ACTIONS(1023), - [anon_sym_file] = ACTIONS(1061), - [anon_sym_fixed] = ACTIONS(1064), - [anon_sym_internal] = ACTIONS(1023), - [anon_sym_new] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1023), - [anon_sym_partial] = ACTIONS(1023), - [anon_sym_protected] = ACTIONS(1023), - [anon_sym_required] = ACTIONS(1023), - [anon_sym_sealed] = ACTIONS(1023), - [anon_sym_virtual] = ACTIONS(1023), - [anon_sym_volatile] = ACTIONS(1023), - [anon_sym_where] = ACTIONS(1026), - [anon_sym_notnull] = ACTIONS(1026), - [anon_sym_unmanaged] = ACTIONS(1026), - [anon_sym_checked] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_TILDE] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1073), - [anon_sym_DASH_DASH] = ACTIONS(1073), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1085), - [anon_sym_scoped] = ACTIONS(1088), - [anon_sym_base] = ACTIONS(1091), - [anon_sym_var] = ACTIONS(1094), - [sym_predefined_type] = ACTIONS(1097), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_unchecked] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_yield] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_default] = ACTIONS(1124), - [anon_sym_throw] = ACTIONS(1127), - [anon_sym_try] = ACTIONS(1130), - [anon_sym_when] = ACTIONS(1026), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_foreach] = ACTIONS(1136), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1145), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_into] = ACTIONS(1026), - [anon_sym_join] = ACTIONS(1026), - [anon_sym_on] = ACTIONS(1026), - [anon_sym_equals] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_orderby] = ACTIONS(1026), - [anon_sym_ascending] = ACTIONS(1026), - [anon_sym_descending] = ACTIONS(1026), - [anon_sym_group] = ACTIONS(1026), - [anon_sym_by] = ACTIONS(1026), - [anon_sym_select] = ACTIONS(1026), - [anon_sym_stackalloc] = ACTIONS(1151), - [anon_sym_sizeof] = ACTIONS(1154), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym___makeref] = ACTIONS(1160), - [anon_sym___reftype] = ACTIONS(1163), - [anon_sym___refvalue] = ACTIONS(1166), - [sym_null_literal] = ACTIONS(1169), - [anon_sym_SQUOTE] = ACTIONS(1172), - [sym_integer_literal] = ACTIONS(1169), - [sym_real_literal] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1178), - [sym_verbatim_string_literal] = ACTIONS(1175), - [sym_grit_metavariable] = ACTIONS(1181), - [aux_sym_preproc_if_token1] = ACTIONS(1184), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1187), - [sym_interpolation_verbatim_start] = ACTIONS(1190), - [sym_interpolation_raw_start] = ACTIONS(1193), - [sym_raw_string_start] = ACTIONS(1196), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym_block_repeat1] = STATE(45), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(657), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_global] = ACTIONS(29), + [anon_sym_using] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(663), + [anon_sym_static] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_return] = ACTIONS(673), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(665), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(683), + [anon_sym_fixed] = ACTIONS(685), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(687), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(725), + [aux_sym_preproc_if_token1] = ACTIONS(727), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [65] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2079), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2068), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2158), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(65), [sym_preproc_endregion] = STATE(65), [sym_preproc_line] = STATE(65), @@ -48259,22 +48281,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(65), [sym_preproc_define] = STATE(65), [sym_preproc_undef] = STATE(65), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2590), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(659), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_using] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_return] = ACTIONS(673), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -48283,7 +48305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1203), + [anon_sym_fixed] = ACTIONS(685), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -48296,41 +48318,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(73), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(689), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -48355,8 +48377,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), - [sym_grit_metavariable] = ACTIONS(147), - [aux_sym_preproc_if_token1] = ACTIONS(1205), + [sym_grit_metavariable] = ACTIONS(725), + [aux_sym_preproc_if_token1] = ACTIONS(727), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -48373,114 +48395,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [66] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7602), - [sym_variable_declaration] = STATE(7876), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(7596), - [sym_break_statement] = STATE(7602), - [sym_checked_statement] = STATE(7602), - [sym_continue_statement] = STATE(7602), - [sym_do_statement] = STATE(7602), - [sym_empty_statement] = STATE(7602), - [sym_expression_statement] = STATE(7602), - [sym_fixed_statement] = STATE(7602), - [sym_for_statement] = STATE(7602), - [sym_return_statement] = STATE(7602), - [sym_lock_statement] = STATE(7602), - [sym_yield_statement] = STATE(7602), - [sym_switch_statement] = STATE(7602), - [sym_throw_statement] = STATE(7602), - [sym_try_statement] = STATE(7602), - [sym_unsafe_statement] = STATE(7602), - [sym_using_statement] = STATE(7602), - [sym_foreach_statement] = STATE(7602), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7602), - [sym_labeled_statement] = STATE(7602), - [sym_if_statement] = STATE(7602), - [sym_while_statement] = STATE(7602), - [sym_local_declaration_statement] = STATE(7602), - [sym_local_function_statement] = STATE(7602), - [sym__local_function_declaration] = STATE(6612), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6025), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2375), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7602), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2078), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), + [sym__foreach_statement_initializer] = STATE(105), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2051), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(66), [sym_preproc_endregion] = STATE(66), [sym_preproc_line] = STATE(66), @@ -48490,22 +48512,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(66), [sym_preproc_define] = STATE(66), [sym_preproc_undef] = STATE(66), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2589), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2588), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_using] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1201), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -48514,7 +48536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1217), + [anon_sym_fixed] = ACTIONS(1203), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -48527,41 +48549,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(1219), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(73), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_for] = ACTIONS(97), + [anon_sym_lock] = ACTIONS(99), + [anon_sym_yield] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(103), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_try] = ACTIONS(109), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(111), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(1221), - [anon_sym_unchecked] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_lock] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -48586,8 +48608,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), - [sym_grit_metavariable] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), + [sym_grit_metavariable] = ACTIONS(147), + [aux_sym_preproc_if_token1] = ACTIONS(1205), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -48604,114 +48626,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [67] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7602), - [sym_variable_declaration] = STATE(7876), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(7720), - [sym_break_statement] = STATE(7602), - [sym_checked_statement] = STATE(7602), - [sym_continue_statement] = STATE(7602), - [sym_do_statement] = STATE(7602), - [sym_empty_statement] = STATE(7602), - [sym_expression_statement] = STATE(7602), - [sym_fixed_statement] = STATE(7602), - [sym_for_statement] = STATE(7602), - [sym_return_statement] = STATE(7602), - [sym_lock_statement] = STATE(7602), - [sym_yield_statement] = STATE(7602), - [sym_switch_statement] = STATE(7602), - [sym_throw_statement] = STATE(7602), - [sym_try_statement] = STATE(7602), - [sym_unsafe_statement] = STATE(7602), - [sym_using_statement] = STATE(7602), - [sym_foreach_statement] = STATE(7602), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7602), - [sym_labeled_statement] = STATE(7602), - [sym_if_statement] = STATE(7602), - [sym_while_statement] = STATE(7602), - [sym_local_declaration_statement] = STATE(7602), - [sym_local_function_statement] = STATE(7602), - [sym__local_function_declaration] = STATE(6612), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6025), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2375), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7602), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(1972), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(1981), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(67), [sym_preproc_endregion] = STATE(67), [sym_preproc_line] = STATE(67), @@ -48721,22 +48743,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(67), [sym_preproc_define] = STATE(67), [sym_preproc_undef] = STATE(67), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2589), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2599), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(163), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_using] = ACTIONS(1207), + [anon_sym_unsafe] = ACTIONS(1209), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(173), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(179), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -48745,7 +48767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1217), + [anon_sym_fixed] = ACTIONS(1211), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -48758,41 +48780,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(1219), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(183), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(185), + [anon_sym_unchecked] = ACTIONS(183), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_lock] = ACTIONS(195), + [anon_sym_yield] = ACTIONS(197), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(201), + [anon_sym_try] = ACTIONS(203), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(205), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(207), + [anon_sym_if] = ACTIONS(209), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(1221), - [anon_sym_unchecked] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_lock] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -48817,8 +48839,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), - [sym_grit_metavariable] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), + [sym_grit_metavariable] = ACTIONS(211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -48835,114 +48857,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [68] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7602), - [sym_variable_declaration] = STATE(7876), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(7410), + [sym_variable_declaration] = STATE(7885), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(7801), - [sym_break_statement] = STATE(7602), - [sym_checked_statement] = STATE(7602), - [sym_continue_statement] = STATE(7602), - [sym_do_statement] = STATE(7602), - [sym_empty_statement] = STATE(7602), - [sym_expression_statement] = STATE(7602), - [sym_fixed_statement] = STATE(7602), - [sym_for_statement] = STATE(7602), - [sym_return_statement] = STATE(7602), - [sym_lock_statement] = STATE(7602), - [sym_yield_statement] = STATE(7602), - [sym_switch_statement] = STATE(7602), - [sym_throw_statement] = STATE(7602), - [sym_try_statement] = STATE(7602), - [sym_unsafe_statement] = STATE(7602), - [sym_using_statement] = STATE(7602), - [sym_foreach_statement] = STATE(7602), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7602), - [sym_labeled_statement] = STATE(7602), - [sym_if_statement] = STATE(7602), - [sym_while_statement] = STATE(7602), - [sym_local_declaration_statement] = STATE(7602), - [sym_local_function_statement] = STATE(7602), - [sym__local_function_declaration] = STATE(6612), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6025), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2375), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7602), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(7893), + [sym_break_statement] = STATE(7410), + [sym_checked_statement] = STATE(7410), + [sym_continue_statement] = STATE(7410), + [sym_do_statement] = STATE(7410), + [sym_empty_statement] = STATE(7410), + [sym_expression_statement] = STATE(7410), + [sym_fixed_statement] = STATE(7410), + [sym_for_statement] = STATE(7410), + [sym_return_statement] = STATE(7410), + [sym_lock_statement] = STATE(7410), + [sym_yield_statement] = STATE(7410), + [sym_switch_statement] = STATE(7410), + [sym_throw_statement] = STATE(7410), + [sym_try_statement] = STATE(7410), + [sym_unsafe_statement] = STATE(7410), + [sym_using_statement] = STATE(7410), + [sym_foreach_statement] = STATE(7410), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(7410), + [sym_labeled_statement] = STATE(7410), + [sym_if_statement] = STATE(7410), + [sym_while_statement] = STATE(7410), + [sym_local_declaration_statement] = STATE(7410), + [sym_local_function_statement] = STATE(7410), + [sym__local_function_declaration] = STATE(6613), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6040), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2383), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(7410), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(68), [sym_preproc_endregion] = STATE(68), [sym_preproc_line] = STATE(68), @@ -48952,22 +48974,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(68), [sym_preproc_define] = STATE(68), [sym_preproc_undef] = STATE(68), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2589), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2596), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1215), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1219), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -48976,7 +48998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1217), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -48989,41 +49011,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(1219), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_unchecked] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_lock] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(1221), - [anon_sym_unchecked] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_lock] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -49048,8 +49070,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), - [sym_grit_metavariable] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), + [sym_grit_metavariable] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -49066,114 +49088,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [69] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2145), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(1955), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(1981), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(69), [sym_preproc_endregion] = STATE(69), [sym_preproc_line] = STATE(69), @@ -49183,22 +49205,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(69), [sym_preproc_define] = STATE(69), [sym_preproc_undef] = STATE(69), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2599), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(163), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(663), + [anon_sym_using] = ACTIONS(1207), + [anon_sym_unsafe] = ACTIONS(1209), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_return] = ACTIONS(173), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(179), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -49207,7 +49229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(685), + [anon_sym_fixed] = ACTIONS(1211), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -49220,41 +49242,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(689), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(183), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(185), + [anon_sym_unchecked] = ACTIONS(183), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_lock] = ACTIONS(195), + [anon_sym_yield] = ACTIONS(197), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(201), + [anon_sym_try] = ACTIONS(203), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(205), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(207), + [anon_sym_if] = ACTIONS(209), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -49279,8 +49301,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), - [sym_grit_metavariable] = ACTIONS(725), - [aux_sym_preproc_if_token1] = ACTIONS(727), + [sym_grit_metavariable] = ACTIONS(211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -49297,114 +49319,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [70] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2122), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(1954), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(1981), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(70), [sym_preproc_endregion] = STATE(70), [sym_preproc_line] = STATE(70), @@ -49414,22 +49436,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(70), [sym_preproc_define] = STATE(70), [sym_preproc_undef] = STATE(70), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2599), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(163), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(663), + [anon_sym_using] = ACTIONS(1207), + [anon_sym_unsafe] = ACTIONS(1209), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_return] = ACTIONS(173), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(179), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -49438,7 +49460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(685), + [anon_sym_fixed] = ACTIONS(1211), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -49451,41 +49473,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(689), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(183), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(185), + [anon_sym_unchecked] = ACTIONS(183), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_lock] = ACTIONS(195), + [anon_sym_yield] = ACTIONS(197), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(201), + [anon_sym_try] = ACTIONS(203), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(205), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(207), + [anon_sym_if] = ACTIONS(209), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -49510,8 +49532,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), - [sym_grit_metavariable] = ACTIONS(725), - [aux_sym_preproc_if_token1] = ACTIONS(727), + [sym_grit_metavariable] = ACTIONS(211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -49528,114 +49550,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [71] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2146), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2073), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), + [sym__foreach_statement_initializer] = STATE(105), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2051), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(71), [sym_preproc_endregion] = STATE(71), [sym_preproc_line] = STATE(71), @@ -49645,22 +49667,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(71), [sym_preproc_define] = STATE(71), [sym_preproc_undef] = STATE(71), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2588), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(663), + [anon_sym_using] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1201), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -49669,7 +49691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(685), + [anon_sym_fixed] = ACTIONS(1203), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -49682,41 +49704,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(689), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(73), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_for] = ACTIONS(97), + [anon_sym_lock] = ACTIONS(99), + [anon_sym_yield] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(103), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_try] = ACTIONS(109), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(111), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -49741,8 +49763,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), - [sym_grit_metavariable] = ACTIONS(725), - [aux_sym_preproc_if_token1] = ACTIONS(727), + [sym_grit_metavariable] = ACTIONS(147), + [aux_sym_preproc_if_token1] = ACTIONS(1205), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -49759,114 +49781,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [72] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2135), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(1950), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(1981), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(72), [sym_preproc_endregion] = STATE(72), [sym_preproc_line] = STATE(72), @@ -49876,22 +49898,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(72), [sym_preproc_define] = STATE(72), [sym_preproc_undef] = STATE(72), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2599), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(163), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(663), + [anon_sym_using] = ACTIONS(1207), + [anon_sym_unsafe] = ACTIONS(1209), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_return] = ACTIONS(173), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(179), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -49900,7 +49922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(685), + [anon_sym_fixed] = ACTIONS(1211), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -49913,41 +49935,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(689), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(183), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(185), + [anon_sym_unchecked] = ACTIONS(183), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_lock] = ACTIONS(195), + [anon_sym_yield] = ACTIONS(197), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(201), + [anon_sym_try] = ACTIONS(203), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(205), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(207), + [anon_sym_if] = ACTIONS(209), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -49972,8 +49994,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), - [sym_grit_metavariable] = ACTIONS(725), - [aux_sym_preproc_if_token1] = ACTIONS(727), + [sym_grit_metavariable] = ACTIONS(211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -49990,114 +50012,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [73] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2137), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2140), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(73), [sym_preproc_endregion] = STATE(73), [sym_preproc_line] = STATE(73), @@ -50107,9 +50129,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(73), [sym_preproc_define] = STATE(73), [sym_preproc_undef] = STATE(73), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -50121,7 +50143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), @@ -50145,40 +50167,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -50221,114 +50243,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [74] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(7410), + [sym_variable_declaration] = STATE(7885), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2138), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(7931), + [sym_break_statement] = STATE(7410), + [sym_checked_statement] = STATE(7410), + [sym_continue_statement] = STATE(7410), + [sym_do_statement] = STATE(7410), + [sym_empty_statement] = STATE(7410), + [sym_expression_statement] = STATE(7410), + [sym_fixed_statement] = STATE(7410), + [sym_for_statement] = STATE(7410), + [sym_return_statement] = STATE(7410), + [sym_lock_statement] = STATE(7410), + [sym_yield_statement] = STATE(7410), + [sym_switch_statement] = STATE(7410), + [sym_throw_statement] = STATE(7410), + [sym_try_statement] = STATE(7410), + [sym_unsafe_statement] = STATE(7410), + [sym_using_statement] = STATE(7410), + [sym_foreach_statement] = STATE(7410), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(7410), + [sym_labeled_statement] = STATE(7410), + [sym_if_statement] = STATE(7410), + [sym_while_statement] = STATE(7410), + [sym_local_declaration_statement] = STATE(7410), + [sym_local_function_statement] = STATE(7410), + [sym__local_function_declaration] = STATE(6613), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6040), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2383), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(7410), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(74), [sym_preproc_endregion] = STATE(74), [sym_preproc_line] = STATE(74), @@ -50338,22 +50360,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(74), [sym_preproc_define] = STATE(74), [sym_preproc_undef] = STATE(74), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2596), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(1215), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(663), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1219), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -50362,7 +50384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(685), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -50375,41 +50397,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(689), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_unchecked] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_lock] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -50434,8 +50456,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), - [sym_grit_metavariable] = ACTIONS(725), - [aux_sym_preproc_if_token1] = ACTIONS(727), + [sym_grit_metavariable] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -50452,114 +50474,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [75] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2139), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2032), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), + [sym__foreach_statement_initializer] = STATE(105), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2051), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(75), [sym_preproc_endregion] = STATE(75), [sym_preproc_line] = STATE(75), @@ -50569,22 +50591,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(75), [sym_preproc_define] = STATE(75), [sym_preproc_undef] = STATE(75), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2588), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(663), + [anon_sym_using] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1201), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -50593,7 +50615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(685), + [anon_sym_fixed] = ACTIONS(1203), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -50606,41 +50628,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(689), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(73), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_for] = ACTIONS(97), + [anon_sym_lock] = ACTIONS(99), + [anon_sym_yield] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(103), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_try] = ACTIONS(109), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(111), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -50665,8 +50687,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), - [sym_grit_metavariable] = ACTIONS(725), - [aux_sym_preproc_if_token1] = ACTIONS(727), + [sym_grit_metavariable] = ACTIONS(147), + [aux_sym_preproc_if_token1] = ACTIONS(1205), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -50683,114 +50705,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [76] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(7410), + [sym_variable_declaration] = STATE(7885), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2147), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(7463), + [sym_break_statement] = STATE(7410), + [sym_checked_statement] = STATE(7410), + [sym_continue_statement] = STATE(7410), + [sym_do_statement] = STATE(7410), + [sym_empty_statement] = STATE(7410), + [sym_expression_statement] = STATE(7410), + [sym_fixed_statement] = STATE(7410), + [sym_for_statement] = STATE(7410), + [sym_return_statement] = STATE(7410), + [sym_lock_statement] = STATE(7410), + [sym_yield_statement] = STATE(7410), + [sym_switch_statement] = STATE(7410), + [sym_throw_statement] = STATE(7410), + [sym_try_statement] = STATE(7410), + [sym_unsafe_statement] = STATE(7410), + [sym_using_statement] = STATE(7410), + [sym_foreach_statement] = STATE(7410), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(7410), + [sym_labeled_statement] = STATE(7410), + [sym_if_statement] = STATE(7410), + [sym_while_statement] = STATE(7410), + [sym_local_declaration_statement] = STATE(7410), + [sym_local_function_statement] = STATE(7410), + [sym__local_function_declaration] = STATE(6613), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6040), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2383), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(7410), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(76), [sym_preproc_endregion] = STATE(76), [sym_preproc_line] = STATE(76), @@ -50800,22 +50822,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(76), [sym_preproc_define] = STATE(76), [sym_preproc_undef] = STATE(76), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2596), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(1215), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(663), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1219), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -50824,7 +50846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(685), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -50837,41 +50859,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(689), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_unchecked] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_lock] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -50896,8 +50918,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), - [sym_grit_metavariable] = ACTIONS(725), - [aux_sym_preproc_if_token1] = ACTIONS(727), + [sym_grit_metavariable] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -50914,114 +50936,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [77] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2129), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2127), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(77), [sym_preproc_endregion] = STATE(77), [sym_preproc_line] = STATE(77), @@ -51031,9 +51053,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(77), [sym_preproc_define] = STATE(77), [sym_preproc_undef] = STATE(77), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -51045,7 +51067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), @@ -51069,40 +51091,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -51145,114 +51167,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [78] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2155), - [sym_variable_declaration] = STATE(7755), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2160), - [sym_break_statement] = STATE(2155), - [sym_checked_statement] = STATE(2155), - [sym_continue_statement] = STATE(2155), - [sym_do_statement] = STATE(2155), - [sym_empty_statement] = STATE(2155), - [sym_expression_statement] = STATE(2155), - [sym_fixed_statement] = STATE(2155), - [sym_for_statement] = STATE(2155), - [sym_return_statement] = STATE(2155), - [sym_lock_statement] = STATE(2155), - [sym_yield_statement] = STATE(2155), - [sym_switch_statement] = STATE(2155), - [sym_throw_statement] = STATE(2155), - [sym_try_statement] = STATE(2155), - [sym_unsafe_statement] = STATE(2155), - [sym_using_statement] = STATE(2155), - [sym_foreach_statement] = STATE(2155), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2155), - [sym_labeled_statement] = STATE(2155), - [sym_if_statement] = STATE(2155), - [sym_while_statement] = STATE(2155), - [sym_local_declaration_statement] = STATE(2155), - [sym_local_function_statement] = STATE(2155), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5990), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2319), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2155), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(1986), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(1981), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(78), [sym_preproc_endregion] = STATE(78), [sym_preproc_line] = STATE(78), @@ -51262,22 +51284,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(78), [sym_preproc_define] = STATE(78), [sym_preproc_undef] = STATE(78), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2627), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2599), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(163), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(663), + [anon_sym_using] = ACTIONS(1207), + [anon_sym_unsafe] = ACTIONS(1209), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(673), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_return] = ACTIONS(173), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(179), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -51286,7 +51308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(685), + [anon_sym_fixed] = ACTIONS(1211), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -51299,41 +51321,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(689), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(183), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(185), + [anon_sym_unchecked] = ACTIONS(183), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_lock] = ACTIONS(195), + [anon_sym_yield] = ACTIONS(197), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(201), + [anon_sym_try] = ACTIONS(203), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(205), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(207), + [anon_sym_if] = ACTIONS(209), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(697), - [anon_sym_unchecked] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(703), - [anon_sym_for] = ACTIONS(705), - [anon_sym_lock] = ACTIONS(707), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(751), - [anon_sym_try] = ACTIONS(715), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(753), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(719), - [anon_sym_if] = ACTIONS(721), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -51358,8 +51380,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), - [sym_grit_metavariable] = ACTIONS(725), - [aux_sym_preproc_if_token1] = ACTIONS(727), + [sym_grit_metavariable] = ACTIONS(211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -51376,114 +51398,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [79] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2038), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2068), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(1956), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(1981), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(79), [sym_preproc_endregion] = STATE(79), [sym_preproc_line] = STATE(79), @@ -51493,22 +51515,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(79), [sym_preproc_define] = STATE(79), [sym_preproc_undef] = STATE(79), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2590), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2599), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(163), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_using] = ACTIONS(1207), + [anon_sym_unsafe] = ACTIONS(1209), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_return] = ACTIONS(173), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(179), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -51517,7 +51539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1203), + [anon_sym_fixed] = ACTIONS(1211), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -51530,41 +51552,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(73), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(183), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(185), + [anon_sym_unchecked] = ACTIONS(183), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_lock] = ACTIONS(195), + [anon_sym_yield] = ACTIONS(197), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(201), + [anon_sym_try] = ACTIONS(203), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(205), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(207), + [anon_sym_if] = ACTIONS(209), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -51589,8 +51611,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), - [sym_grit_metavariable] = ACTIONS(147), - [aux_sym_preproc_if_token1] = ACTIONS(1205), + [sym_grit_metavariable] = ACTIONS(211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -51607,114 +51629,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [80] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7602), - [sym_variable_declaration] = STATE(7876), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(8030), - [sym_break_statement] = STATE(7602), - [sym_checked_statement] = STATE(7602), - [sym_continue_statement] = STATE(7602), - [sym_do_statement] = STATE(7602), - [sym_empty_statement] = STATE(7602), - [sym_expression_statement] = STATE(7602), - [sym_fixed_statement] = STATE(7602), - [sym_for_statement] = STATE(7602), - [sym_return_statement] = STATE(7602), - [sym_lock_statement] = STATE(7602), - [sym_yield_statement] = STATE(7602), - [sym_switch_statement] = STATE(7602), - [sym_throw_statement] = STATE(7602), - [sym_try_statement] = STATE(7602), - [sym_unsafe_statement] = STATE(7602), - [sym_using_statement] = STATE(7602), - [sym_foreach_statement] = STATE(7602), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7602), - [sym_labeled_statement] = STATE(7602), - [sym_if_statement] = STATE(7602), - [sym_while_statement] = STATE(7602), - [sym_local_declaration_statement] = STATE(7602), - [sym_local_function_statement] = STATE(7602), - [sym__local_function_declaration] = STATE(6612), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6025), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2375), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7602), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2159), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(80), [sym_preproc_endregion] = STATE(80), [sym_preproc_line] = STATE(80), @@ -51724,22 +51746,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(80), [sym_preproc_define] = STATE(80), [sym_preproc_undef] = STATE(80), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2589), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(659), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_using] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(673), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -51748,7 +51770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1217), + [anon_sym_fixed] = ACTIONS(685), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -51761,41 +51783,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(1219), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(689), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(1221), - [anon_sym_unchecked] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_lock] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -51820,8 +51842,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), - [sym_grit_metavariable] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), + [sym_grit_metavariable] = ACTIONS(725), + [aux_sym_preproc_if_token1] = ACTIONS(727), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -51838,114 +51860,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [81] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(1993), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1955), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2150), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(81), [sym_preproc_endregion] = STATE(81), [sym_preproc_line] = STATE(81), @@ -51955,22 +51977,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(81), [sym_preproc_define] = STATE(81), [sym_preproc_undef] = STATE(81), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2631), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(659), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_using] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(173), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_return] = ACTIONS(673), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -51979,7 +52001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1255), + [anon_sym_fixed] = ACTIONS(685), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -51992,41 +52014,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(183), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(689), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(185), - [anon_sym_unchecked] = ACTIONS(183), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_while] = ACTIONS(191), - [anon_sym_for] = ACTIONS(193), - [anon_sym_lock] = ACTIONS(195), - [anon_sym_yield] = ACTIONS(197), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_try] = ACTIONS(203), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -52051,8 +52073,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), - [sym_grit_metavariable] = ACTIONS(211), - [aux_sym_preproc_if_token1] = ACTIONS(1257), + [sym_grit_metavariable] = ACTIONS(725), + [aux_sym_preproc_if_token1] = ACTIONS(727), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -52069,114 +52091,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [82] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2075), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2068), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2146), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(82), [sym_preproc_endregion] = STATE(82), [sym_preproc_line] = STATE(82), @@ -52186,22 +52208,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(82), [sym_preproc_define] = STATE(82), [sym_preproc_undef] = STATE(82), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2590), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(659), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_using] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_return] = ACTIONS(673), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -52210,7 +52232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1203), + [anon_sym_fixed] = ACTIONS(685), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -52223,41 +52245,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(73), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(689), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -52282,8 +52304,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), - [sym_grit_metavariable] = ACTIONS(147), - [aux_sym_preproc_if_token1] = ACTIONS(1205), + [sym_grit_metavariable] = ACTIONS(725), + [aux_sym_preproc_if_token1] = ACTIONS(727), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -52300,114 +52322,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [83] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2029), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2068), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2145), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(83), [sym_preproc_endregion] = STATE(83), [sym_preproc_line] = STATE(83), @@ -52417,22 +52439,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(83), [sym_preproc_define] = STATE(83), [sym_preproc_undef] = STATE(83), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2590), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(659), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_using] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_return] = ACTIONS(673), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -52441,7 +52463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1203), + [anon_sym_fixed] = ACTIONS(685), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -52454,41 +52476,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(73), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(689), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -52513,8 +52535,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), - [sym_grit_metavariable] = ACTIONS(147), - [aux_sym_preproc_if_token1] = ACTIONS(1205), + [sym_grit_metavariable] = ACTIONS(725), + [aux_sym_preproc_if_token1] = ACTIONS(727), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -52531,114 +52553,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [84] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2054), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2068), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2133), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(84), [sym_preproc_endregion] = STATE(84), [sym_preproc_line] = STATE(84), @@ -52648,22 +52670,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(84), [sym_preproc_define] = STATE(84), [sym_preproc_undef] = STATE(84), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2590), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(659), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_using] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_return] = ACTIONS(673), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -52672,7 +52694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1203), + [anon_sym_fixed] = ACTIONS(685), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -52685,41 +52707,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(73), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(689), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -52744,8 +52766,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), - [sym_grit_metavariable] = ACTIONS(147), - [aux_sym_preproc_if_token1] = ACTIONS(1205), + [sym_grit_metavariable] = ACTIONS(725), + [aux_sym_preproc_if_token1] = ACTIONS(727), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -52762,114 +52784,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [85] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7602), - [sym_variable_declaration] = STATE(7876), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(7627), - [sym_break_statement] = STATE(7602), - [sym_checked_statement] = STATE(7602), - [sym_continue_statement] = STATE(7602), - [sym_do_statement] = STATE(7602), - [sym_empty_statement] = STATE(7602), - [sym_expression_statement] = STATE(7602), - [sym_fixed_statement] = STATE(7602), - [sym_for_statement] = STATE(7602), - [sym_return_statement] = STATE(7602), - [sym_lock_statement] = STATE(7602), - [sym_yield_statement] = STATE(7602), - [sym_switch_statement] = STATE(7602), - [sym_throw_statement] = STATE(7602), - [sym_try_statement] = STATE(7602), - [sym_unsafe_statement] = STATE(7602), - [sym_using_statement] = STATE(7602), - [sym_foreach_statement] = STATE(7602), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7602), - [sym_labeled_statement] = STATE(7602), - [sym_if_statement] = STATE(7602), - [sym_while_statement] = STATE(7602), - [sym_local_declaration_statement] = STATE(7602), - [sym_local_function_statement] = STATE(7602), - [sym__local_function_declaration] = STATE(6612), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6025), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2375), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7602), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(1957), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(1981), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(85), [sym_preproc_endregion] = STATE(85), [sym_preproc_line] = STATE(85), @@ -52879,22 +52901,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(85), [sym_preproc_define] = STATE(85), [sym_preproc_undef] = STATE(85), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2589), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2599), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(163), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_using] = ACTIONS(1207), + [anon_sym_unsafe] = ACTIONS(1209), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(173), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(179), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -52903,7 +52925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1217), + [anon_sym_fixed] = ACTIONS(1211), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -52916,41 +52938,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(1219), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(183), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(185), + [anon_sym_unchecked] = ACTIONS(183), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_lock] = ACTIONS(195), + [anon_sym_yield] = ACTIONS(197), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(201), + [anon_sym_try] = ACTIONS(203), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(205), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(207), + [anon_sym_if] = ACTIONS(209), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(1221), - [anon_sym_unchecked] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_lock] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -52975,8 +52997,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), - [sym_grit_metavariable] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), + [sym_grit_metavariable] = ACTIONS(211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -52993,114 +53015,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [86] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7602), - [sym_variable_declaration] = STATE(7876), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(7637), - [sym_break_statement] = STATE(7602), - [sym_checked_statement] = STATE(7602), - [sym_continue_statement] = STATE(7602), - [sym_do_statement] = STATE(7602), - [sym_empty_statement] = STATE(7602), - [sym_expression_statement] = STATE(7602), - [sym_fixed_statement] = STATE(7602), - [sym_for_statement] = STATE(7602), - [sym_return_statement] = STATE(7602), - [sym_lock_statement] = STATE(7602), - [sym_yield_statement] = STATE(7602), - [sym_switch_statement] = STATE(7602), - [sym_throw_statement] = STATE(7602), - [sym_try_statement] = STATE(7602), - [sym_unsafe_statement] = STATE(7602), - [sym_using_statement] = STATE(7602), - [sym_foreach_statement] = STATE(7602), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7602), - [sym_labeled_statement] = STATE(7602), - [sym_if_statement] = STATE(7602), - [sym_while_statement] = STATE(7602), - [sym_local_declaration_statement] = STATE(7602), - [sym_local_function_statement] = STATE(7602), - [sym__local_function_declaration] = STATE(6612), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6025), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2375), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7602), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(1995), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(1981), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(86), [sym_preproc_endregion] = STATE(86), [sym_preproc_line] = STATE(86), @@ -53110,22 +53132,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(86), [sym_preproc_define] = STATE(86), [sym_preproc_undef] = STATE(86), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2589), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2599), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(163), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_using] = ACTIONS(1207), + [anon_sym_unsafe] = ACTIONS(1209), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(173), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(179), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -53134,7 +53156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1217), + [anon_sym_fixed] = ACTIONS(1211), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -53147,41 +53169,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(1219), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(183), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(185), + [anon_sym_unchecked] = ACTIONS(183), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_lock] = ACTIONS(195), + [anon_sym_yield] = ACTIONS(197), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(201), + [anon_sym_try] = ACTIONS(203), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(205), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(207), + [anon_sym_if] = ACTIONS(209), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(1221), - [anon_sym_unchecked] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_lock] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53206,8 +53228,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), - [sym_grit_metavariable] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), + [sym_grit_metavariable] = ACTIONS(211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -53224,114 +53246,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [87] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(7410), + [sym_variable_declaration] = STATE(7885), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2048), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2068), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(7578), + [sym_break_statement] = STATE(7410), + [sym_checked_statement] = STATE(7410), + [sym_continue_statement] = STATE(7410), + [sym_do_statement] = STATE(7410), + [sym_empty_statement] = STATE(7410), + [sym_expression_statement] = STATE(7410), + [sym_fixed_statement] = STATE(7410), + [sym_for_statement] = STATE(7410), + [sym_return_statement] = STATE(7410), + [sym_lock_statement] = STATE(7410), + [sym_yield_statement] = STATE(7410), + [sym_switch_statement] = STATE(7410), + [sym_throw_statement] = STATE(7410), + [sym_try_statement] = STATE(7410), + [sym_unsafe_statement] = STATE(7410), + [sym_using_statement] = STATE(7410), + [sym_foreach_statement] = STATE(7410), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(7410), + [sym_labeled_statement] = STATE(7410), + [sym_if_statement] = STATE(7410), + [sym_while_statement] = STATE(7410), + [sym_local_declaration_statement] = STATE(7410), + [sym_local_function_statement] = STATE(7410), + [sym__local_function_declaration] = STATE(6613), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6040), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2383), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(7410), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(87), [sym_preproc_endregion] = STATE(87), [sym_preproc_line] = STATE(87), @@ -53341,22 +53363,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(87), [sym_preproc_define] = STATE(87), [sym_preproc_undef] = STATE(87), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2590), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2596), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(1215), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1219), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -53365,7 +53387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1203), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -53378,41 +53400,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(73), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_unchecked] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_lock] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53437,8 +53459,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), - [sym_grit_metavariable] = ACTIONS(147), - [aux_sym_preproc_if_token1] = ACTIONS(1205), + [sym_grit_metavariable] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -53455,114 +53477,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [88] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(7410), + [sym_variable_declaration] = STATE(7885), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2071), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2068), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(7483), + [sym_break_statement] = STATE(7410), + [sym_checked_statement] = STATE(7410), + [sym_continue_statement] = STATE(7410), + [sym_do_statement] = STATE(7410), + [sym_empty_statement] = STATE(7410), + [sym_expression_statement] = STATE(7410), + [sym_fixed_statement] = STATE(7410), + [sym_for_statement] = STATE(7410), + [sym_return_statement] = STATE(7410), + [sym_lock_statement] = STATE(7410), + [sym_yield_statement] = STATE(7410), + [sym_switch_statement] = STATE(7410), + [sym_throw_statement] = STATE(7410), + [sym_try_statement] = STATE(7410), + [sym_unsafe_statement] = STATE(7410), + [sym_using_statement] = STATE(7410), + [sym_foreach_statement] = STATE(7410), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(7410), + [sym_labeled_statement] = STATE(7410), + [sym_if_statement] = STATE(7410), + [sym_while_statement] = STATE(7410), + [sym_local_declaration_statement] = STATE(7410), + [sym_local_function_statement] = STATE(7410), + [sym__local_function_declaration] = STATE(6613), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6040), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2383), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(7410), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(88), [sym_preproc_endregion] = STATE(88), [sym_preproc_line] = STATE(88), @@ -53572,22 +53594,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(88), [sym_preproc_define] = STATE(88), [sym_preproc_undef] = STATE(88), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2590), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2596), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(1215), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1219), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -53596,7 +53618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1203), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -53609,41 +53631,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(73), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_unchecked] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_lock] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53668,8 +53690,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), - [sym_grit_metavariable] = ACTIONS(147), - [aux_sym_preproc_if_token1] = ACTIONS(1205), + [sym_grit_metavariable] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -53686,114 +53708,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [89] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(1999), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1955), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2154), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(89), [sym_preproc_endregion] = STATE(89), [sym_preproc_line] = STATE(89), @@ -53803,22 +53825,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(89), [sym_preproc_define] = STATE(89), [sym_preproc_undef] = STATE(89), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2631), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(659), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_using] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(173), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_return] = ACTIONS(673), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -53827,7 +53849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1255), + [anon_sym_fixed] = ACTIONS(685), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -53840,41 +53862,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(183), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(689), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(185), - [anon_sym_unchecked] = ACTIONS(183), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_while] = ACTIONS(191), - [anon_sym_for] = ACTIONS(193), - [anon_sym_lock] = ACTIONS(195), - [anon_sym_yield] = ACTIONS(197), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_try] = ACTIONS(203), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53899,8 +53921,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), - [sym_grit_metavariable] = ACTIONS(211), - [aux_sym_preproc_if_token1] = ACTIONS(1257), + [sym_grit_metavariable] = ACTIONS(725), + [aux_sym_preproc_if_token1] = ACTIONS(727), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -53917,114 +53939,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [90] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7602), - [sym_variable_declaration] = STATE(7876), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(7410), + [sym_variable_declaration] = STATE(7885), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(7621), - [sym_break_statement] = STATE(7602), - [sym_checked_statement] = STATE(7602), - [sym_continue_statement] = STATE(7602), - [sym_do_statement] = STATE(7602), - [sym_empty_statement] = STATE(7602), - [sym_expression_statement] = STATE(7602), - [sym_fixed_statement] = STATE(7602), - [sym_for_statement] = STATE(7602), - [sym_return_statement] = STATE(7602), - [sym_lock_statement] = STATE(7602), - [sym_yield_statement] = STATE(7602), - [sym_switch_statement] = STATE(7602), - [sym_throw_statement] = STATE(7602), - [sym_try_statement] = STATE(7602), - [sym_unsafe_statement] = STATE(7602), - [sym_using_statement] = STATE(7602), - [sym_foreach_statement] = STATE(7602), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7602), - [sym_labeled_statement] = STATE(7602), - [sym_if_statement] = STATE(7602), - [sym_while_statement] = STATE(7602), - [sym_local_declaration_statement] = STATE(7602), - [sym_local_function_statement] = STATE(7602), - [sym__local_function_declaration] = STATE(6612), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6025), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2375), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7602), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(7533), + [sym_break_statement] = STATE(7410), + [sym_checked_statement] = STATE(7410), + [sym_continue_statement] = STATE(7410), + [sym_do_statement] = STATE(7410), + [sym_empty_statement] = STATE(7410), + [sym_expression_statement] = STATE(7410), + [sym_fixed_statement] = STATE(7410), + [sym_for_statement] = STATE(7410), + [sym_return_statement] = STATE(7410), + [sym_lock_statement] = STATE(7410), + [sym_yield_statement] = STATE(7410), + [sym_switch_statement] = STATE(7410), + [sym_throw_statement] = STATE(7410), + [sym_try_statement] = STATE(7410), + [sym_unsafe_statement] = STATE(7410), + [sym_using_statement] = STATE(7410), + [sym_foreach_statement] = STATE(7410), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(7410), + [sym_labeled_statement] = STATE(7410), + [sym_if_statement] = STATE(7410), + [sym_while_statement] = STATE(7410), + [sym_local_declaration_statement] = STATE(7410), + [sym_local_function_statement] = STATE(7410), + [sym__local_function_declaration] = STATE(6613), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6040), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2383), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(7410), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(90), [sym_preproc_endregion] = STATE(90), [sym_preproc_line] = STATE(90), @@ -54034,22 +54056,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(90), [sym_preproc_define] = STATE(90), [sym_preproc_undef] = STATE(90), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2589), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2596), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1215), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1219), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -54058,7 +54080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1217), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -54071,41 +54093,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(1219), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_unchecked] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_lock] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(1221), - [anon_sym_unchecked] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_lock] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -54130,8 +54152,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), - [sym_grit_metavariable] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), + [sym_grit_metavariable] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -54148,114 +54170,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [91] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7602), - [sym_variable_declaration] = STATE(7876), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(7686), - [sym_break_statement] = STATE(7602), - [sym_checked_statement] = STATE(7602), - [sym_continue_statement] = STATE(7602), - [sym_do_statement] = STATE(7602), - [sym_empty_statement] = STATE(7602), - [sym_expression_statement] = STATE(7602), - [sym_fixed_statement] = STATE(7602), - [sym_for_statement] = STATE(7602), - [sym_return_statement] = STATE(7602), - [sym_lock_statement] = STATE(7602), - [sym_yield_statement] = STATE(7602), - [sym_switch_statement] = STATE(7602), - [sym_throw_statement] = STATE(7602), - [sym_try_statement] = STATE(7602), - [sym_unsafe_statement] = STATE(7602), - [sym_using_statement] = STATE(7602), - [sym_foreach_statement] = STATE(7602), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7602), - [sym_labeled_statement] = STATE(7602), - [sym_if_statement] = STATE(7602), - [sym_while_statement] = STATE(7602), - [sym_local_declaration_statement] = STATE(7602), - [sym_local_function_statement] = STATE(7602), - [sym__local_function_declaration] = STATE(6612), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6025), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2375), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7602), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2063), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), + [sym__foreach_statement_initializer] = STATE(105), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2051), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(91), [sym_preproc_endregion] = STATE(91), [sym_preproc_line] = STATE(91), @@ -54265,22 +54287,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(91), [sym_preproc_define] = STATE(91), [sym_preproc_undef] = STATE(91), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2589), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2588), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_using] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1201), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -54289,7 +54311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1217), + [anon_sym_fixed] = ACTIONS(1203), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -54302,41 +54324,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(1219), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(73), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_for] = ACTIONS(97), + [anon_sym_lock] = ACTIONS(99), + [anon_sym_yield] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(103), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_try] = ACTIONS(109), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(111), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(1221), - [anon_sym_unchecked] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_lock] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -54361,8 +54383,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), - [sym_grit_metavariable] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), + [sym_grit_metavariable] = ACTIONS(147), + [aux_sym_preproc_if_token1] = ACTIONS(1205), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -54379,114 +54401,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [92] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7602), - [sym_variable_declaration] = STATE(7876), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(7410), + [sym_variable_declaration] = STATE(7885), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(7594), - [sym_break_statement] = STATE(7602), - [sym_checked_statement] = STATE(7602), - [sym_continue_statement] = STATE(7602), - [sym_do_statement] = STATE(7602), - [sym_empty_statement] = STATE(7602), - [sym_expression_statement] = STATE(7602), - [sym_fixed_statement] = STATE(7602), - [sym_for_statement] = STATE(7602), - [sym_return_statement] = STATE(7602), - [sym_lock_statement] = STATE(7602), - [sym_yield_statement] = STATE(7602), - [sym_switch_statement] = STATE(7602), - [sym_throw_statement] = STATE(7602), - [sym_try_statement] = STATE(7602), - [sym_unsafe_statement] = STATE(7602), - [sym_using_statement] = STATE(7602), - [sym_foreach_statement] = STATE(7602), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7602), - [sym_labeled_statement] = STATE(7602), - [sym_if_statement] = STATE(7602), - [sym_while_statement] = STATE(7602), - [sym_local_declaration_statement] = STATE(7602), - [sym_local_function_statement] = STATE(7602), - [sym__local_function_declaration] = STATE(6612), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6025), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2375), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7602), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(7514), + [sym_break_statement] = STATE(7410), + [sym_checked_statement] = STATE(7410), + [sym_continue_statement] = STATE(7410), + [sym_do_statement] = STATE(7410), + [sym_empty_statement] = STATE(7410), + [sym_expression_statement] = STATE(7410), + [sym_fixed_statement] = STATE(7410), + [sym_for_statement] = STATE(7410), + [sym_return_statement] = STATE(7410), + [sym_lock_statement] = STATE(7410), + [sym_yield_statement] = STATE(7410), + [sym_switch_statement] = STATE(7410), + [sym_throw_statement] = STATE(7410), + [sym_try_statement] = STATE(7410), + [sym_unsafe_statement] = STATE(7410), + [sym_using_statement] = STATE(7410), + [sym_foreach_statement] = STATE(7410), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(7410), + [sym_labeled_statement] = STATE(7410), + [sym_if_statement] = STATE(7410), + [sym_while_statement] = STATE(7410), + [sym_local_declaration_statement] = STATE(7410), + [sym_local_function_statement] = STATE(7410), + [sym__local_function_declaration] = STATE(6613), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6040), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2383), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(7410), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(92), [sym_preproc_endregion] = STATE(92), [sym_preproc_line] = STATE(92), @@ -54496,22 +54518,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(92), [sym_preproc_define] = STATE(92), [sym_preproc_undef] = STATE(92), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2589), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2596), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1215), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1219), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -54520,7 +54542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1217), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -54533,41 +54555,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(1219), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_unchecked] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_lock] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(1221), - [anon_sym_unchecked] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_lock] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -54592,8 +54614,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), - [sym_grit_metavariable] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), + [sym_grit_metavariable] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -54610,114 +54632,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [93] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7602), - [sym_variable_declaration] = STATE(7876), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(7589), - [sym_break_statement] = STATE(7602), - [sym_checked_statement] = STATE(7602), - [sym_continue_statement] = STATE(7602), - [sym_do_statement] = STATE(7602), - [sym_empty_statement] = STATE(7602), - [sym_expression_statement] = STATE(7602), - [sym_fixed_statement] = STATE(7602), - [sym_for_statement] = STATE(7602), - [sym_return_statement] = STATE(7602), - [sym_lock_statement] = STATE(7602), - [sym_yield_statement] = STATE(7602), - [sym_switch_statement] = STATE(7602), - [sym_throw_statement] = STATE(7602), - [sym_try_statement] = STATE(7602), - [sym_unsafe_statement] = STATE(7602), - [sym_using_statement] = STATE(7602), - [sym_foreach_statement] = STATE(7602), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7602), - [sym_labeled_statement] = STATE(7602), - [sym_if_statement] = STATE(7602), - [sym_while_statement] = STATE(7602), - [sym_local_declaration_statement] = STATE(7602), - [sym_local_function_statement] = STATE(7602), - [sym__local_function_declaration] = STATE(6612), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6025), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2375), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7602), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(1997), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(1981), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(93), [sym_preproc_endregion] = STATE(93), [sym_preproc_line] = STATE(93), @@ -54727,22 +54749,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(93), [sym_preproc_define] = STATE(93), [sym_preproc_undef] = STATE(93), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2589), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2599), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(163), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_using] = ACTIONS(1207), + [anon_sym_unsafe] = ACTIONS(1209), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(173), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(179), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -54751,7 +54773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1217), + [anon_sym_fixed] = ACTIONS(1211), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -54764,272 +54786,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(1219), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(183), [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_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(1221), - [anon_sym_unchecked] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_lock] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(185), + [anon_sym_unchecked] = ACTIONS(183), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_lock] = ACTIONS(195), + [anon_sym_yield] = ACTIONS(197), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(201), + [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1245), - [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), - [sym_grit_metavariable] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), - }, - [94] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7602), - [sym_variable_declaration] = STATE(7876), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(7587), - [sym_break_statement] = STATE(7602), - [sym_checked_statement] = STATE(7602), - [sym_continue_statement] = STATE(7602), - [sym_do_statement] = STATE(7602), - [sym_empty_statement] = STATE(7602), - [sym_expression_statement] = STATE(7602), - [sym_fixed_statement] = STATE(7602), - [sym_for_statement] = STATE(7602), - [sym_return_statement] = STATE(7602), - [sym_lock_statement] = STATE(7602), - [sym_yield_statement] = STATE(7602), - [sym_switch_statement] = STATE(7602), - [sym_throw_statement] = STATE(7602), - [sym_try_statement] = STATE(7602), - [sym_unsafe_statement] = STATE(7602), - [sym_using_statement] = STATE(7602), - [sym_foreach_statement] = STATE(7602), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7602), - [sym_labeled_statement] = STATE(7602), - [sym_if_statement] = STATE(7602), - [sym_while_statement] = STATE(7602), - [sym_local_declaration_statement] = STATE(7602), - [sym_local_function_statement] = STATE(7602), - [sym__local_function_declaration] = STATE(6612), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6025), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2375), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7602), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), - [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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2589), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1211), - [anon_sym_static] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(665), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1217), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(687), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1219), + [anon_sym_await] = ACTIONS(205), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(207), + [anon_sym_if] = ACTIONS(209), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), [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(1221), - [anon_sym_unchecked] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_lock] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55054,8 +54845,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), - [sym_grit_metavariable] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), + [sym_grit_metavariable] = ACTIONS(211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -55071,140 +54862,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [95] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7602), - [sym_variable_declaration] = STATE(7876), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [94] = { + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(7410), + [sym_variable_declaration] = STATE(7885), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(7577), - [sym_break_statement] = STATE(7602), - [sym_checked_statement] = STATE(7602), - [sym_continue_statement] = STATE(7602), - [sym_do_statement] = STATE(7602), - [sym_empty_statement] = STATE(7602), - [sym_expression_statement] = STATE(7602), - [sym_fixed_statement] = STATE(7602), - [sym_for_statement] = STATE(7602), - [sym_return_statement] = STATE(7602), - [sym_lock_statement] = STATE(7602), - [sym_yield_statement] = STATE(7602), - [sym_switch_statement] = STATE(7602), - [sym_throw_statement] = STATE(7602), - [sym_try_statement] = STATE(7602), - [sym_unsafe_statement] = STATE(7602), - [sym_using_statement] = STATE(7602), - [sym_foreach_statement] = STATE(7602), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7602), - [sym_labeled_statement] = STATE(7602), - [sym_if_statement] = STATE(7602), - [sym_while_statement] = STATE(7602), - [sym_local_declaration_statement] = STATE(7602), - [sym_local_function_statement] = STATE(7602), - [sym__local_function_declaration] = STATE(6612), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6025), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2375), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7602), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), - [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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2589), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(7732), + [sym_break_statement] = STATE(7410), + [sym_checked_statement] = STATE(7410), + [sym_continue_statement] = STATE(7410), + [sym_do_statement] = STATE(7410), + [sym_empty_statement] = STATE(7410), + [sym_expression_statement] = STATE(7410), + [sym_fixed_statement] = STATE(7410), + [sym_for_statement] = STATE(7410), + [sym_return_statement] = STATE(7410), + [sym_lock_statement] = STATE(7410), + [sym_yield_statement] = STATE(7410), + [sym_switch_statement] = STATE(7410), + [sym_throw_statement] = STATE(7410), + [sym_try_statement] = STATE(7410), + [sym_unsafe_statement] = STATE(7410), + [sym_using_statement] = STATE(7410), + [sym_foreach_statement] = STATE(7410), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(7410), + [sym_labeled_statement] = STATE(7410), + [sym_if_statement] = STATE(7410), + [sym_while_statement] = STATE(7410), + [sym_local_declaration_statement] = STATE(7410), + [sym_local_function_statement] = STATE(7410), + [sym__local_function_declaration] = STATE(6613), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6040), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2383), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(7410), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), + [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(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2596), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1215), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1219), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -55213,7 +55004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1217), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -55226,41 +55017,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(1219), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_unchecked] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_lock] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(1221), - [anon_sym_unchecked] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_lock] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55285,8 +55076,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), - [sym_grit_metavariable] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), + [sym_grit_metavariable] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -55302,140 +55093,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [96] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7602), - [sym_variable_declaration] = STATE(7876), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [95] = { + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(7410), + [sym_variable_declaration] = STATE(7885), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(7571), - [sym_break_statement] = STATE(7602), - [sym_checked_statement] = STATE(7602), - [sym_continue_statement] = STATE(7602), - [sym_do_statement] = STATE(7602), - [sym_empty_statement] = STATE(7602), - [sym_expression_statement] = STATE(7602), - [sym_fixed_statement] = STATE(7602), - [sym_for_statement] = STATE(7602), - [sym_return_statement] = STATE(7602), - [sym_lock_statement] = STATE(7602), - [sym_yield_statement] = STATE(7602), - [sym_switch_statement] = STATE(7602), - [sym_throw_statement] = STATE(7602), - [sym_try_statement] = STATE(7602), - [sym_unsafe_statement] = STATE(7602), - [sym_using_statement] = STATE(7602), - [sym_foreach_statement] = STATE(7602), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7602), - [sym_labeled_statement] = STATE(7602), - [sym_if_statement] = STATE(7602), - [sym_while_statement] = STATE(7602), - [sym_local_declaration_statement] = STATE(7602), - [sym_local_function_statement] = STATE(7602), - [sym__local_function_declaration] = STATE(6612), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6025), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2375), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7602), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), - [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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2589), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(7523), + [sym_break_statement] = STATE(7410), + [sym_checked_statement] = STATE(7410), + [sym_continue_statement] = STATE(7410), + [sym_do_statement] = STATE(7410), + [sym_empty_statement] = STATE(7410), + [sym_expression_statement] = STATE(7410), + [sym_fixed_statement] = STATE(7410), + [sym_for_statement] = STATE(7410), + [sym_return_statement] = STATE(7410), + [sym_lock_statement] = STATE(7410), + [sym_yield_statement] = STATE(7410), + [sym_switch_statement] = STATE(7410), + [sym_throw_statement] = STATE(7410), + [sym_try_statement] = STATE(7410), + [sym_unsafe_statement] = STATE(7410), + [sym_using_statement] = STATE(7410), + [sym_foreach_statement] = STATE(7410), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(7410), + [sym_labeled_statement] = STATE(7410), + [sym_if_statement] = STATE(7410), + [sym_while_statement] = STATE(7410), + [sym_local_declaration_statement] = STATE(7410), + [sym_local_function_statement] = STATE(7410), + [sym__local_function_declaration] = STATE(6613), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6040), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2383), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(7410), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), + [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(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2596), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1215), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1219), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -55444,7 +55235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1217), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -55457,41 +55248,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(1219), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_unchecked] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_lock] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(1221), - [anon_sym_unchecked] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_lock] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55516,8 +55307,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), - [sym_grit_metavariable] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), + [sym_grit_metavariable] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -55533,140 +55324,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [97] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7602), - [sym_variable_declaration] = STATE(7876), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [96] = { + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(7410), + [sym_variable_declaration] = STATE(7885), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(7568), - [sym_break_statement] = STATE(7602), - [sym_checked_statement] = STATE(7602), - [sym_continue_statement] = STATE(7602), - [sym_do_statement] = STATE(7602), - [sym_empty_statement] = STATE(7602), - [sym_expression_statement] = STATE(7602), - [sym_fixed_statement] = STATE(7602), - [sym_for_statement] = STATE(7602), - [sym_return_statement] = STATE(7602), - [sym_lock_statement] = STATE(7602), - [sym_yield_statement] = STATE(7602), - [sym_switch_statement] = STATE(7602), - [sym_throw_statement] = STATE(7602), - [sym_try_statement] = STATE(7602), - [sym_unsafe_statement] = STATE(7602), - [sym_using_statement] = STATE(7602), - [sym_foreach_statement] = STATE(7602), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7602), - [sym_labeled_statement] = STATE(7602), - [sym_if_statement] = STATE(7602), - [sym_while_statement] = STATE(7602), - [sym_local_declaration_statement] = STATE(7602), - [sym_local_function_statement] = STATE(7602), - [sym__local_function_declaration] = STATE(6612), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6025), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2375), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7602), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), - [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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2589), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(7524), + [sym_break_statement] = STATE(7410), + [sym_checked_statement] = STATE(7410), + [sym_continue_statement] = STATE(7410), + [sym_do_statement] = STATE(7410), + [sym_empty_statement] = STATE(7410), + [sym_expression_statement] = STATE(7410), + [sym_fixed_statement] = STATE(7410), + [sym_for_statement] = STATE(7410), + [sym_return_statement] = STATE(7410), + [sym_lock_statement] = STATE(7410), + [sym_yield_statement] = STATE(7410), + [sym_switch_statement] = STATE(7410), + [sym_throw_statement] = STATE(7410), + [sym_try_statement] = STATE(7410), + [sym_unsafe_statement] = STATE(7410), + [sym_using_statement] = STATE(7410), + [sym_foreach_statement] = STATE(7410), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(7410), + [sym_labeled_statement] = STATE(7410), + [sym_if_statement] = STATE(7410), + [sym_while_statement] = STATE(7410), + [sym_local_declaration_statement] = STATE(7410), + [sym_local_function_statement] = STATE(7410), + [sym__local_function_declaration] = STATE(6613), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6040), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2383), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(7410), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), + [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(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2596), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1215), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1219), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -55675,7 +55466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1217), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -55688,41 +55479,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(1219), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_unchecked] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_lock] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(1221), - [anon_sym_unchecked] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_lock] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1237), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55747,8 +55538,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), - [sym_grit_metavariable] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), + [sym_grit_metavariable] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -55764,127 +55555,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [98] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [97] = { + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2052), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2037), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2068), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), - [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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2590), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2051), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), + [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(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2588), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -55896,7 +55687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), @@ -55920,40 +55711,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_for] = ACTIONS(97), + [anon_sym_lock] = ACTIONS(99), + [anon_sym_yield] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(103), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_try] = ACTIONS(109), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(111), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55995,140 +55786,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [99] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [98] = { + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(7410), + [sym_variable_declaration] = STATE(7885), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(1984), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1955), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), - [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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2631), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(7532), + [sym_break_statement] = STATE(7410), + [sym_checked_statement] = STATE(7410), + [sym_continue_statement] = STATE(7410), + [sym_do_statement] = STATE(7410), + [sym_empty_statement] = STATE(7410), + [sym_expression_statement] = STATE(7410), + [sym_fixed_statement] = STATE(7410), + [sym_for_statement] = STATE(7410), + [sym_return_statement] = STATE(7410), + [sym_lock_statement] = STATE(7410), + [sym_yield_statement] = STATE(7410), + [sym_switch_statement] = STATE(7410), + [sym_throw_statement] = STATE(7410), + [sym_try_statement] = STATE(7410), + [sym_unsafe_statement] = STATE(7410), + [sym_using_statement] = STATE(7410), + [sym_foreach_statement] = STATE(7410), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(7410), + [sym_labeled_statement] = STATE(7410), + [sym_if_statement] = STATE(7410), + [sym_while_statement] = STATE(7410), + [sym_local_declaration_statement] = STATE(7410), + [sym_local_function_statement] = STATE(7410), + [sym__local_function_declaration] = STATE(6613), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6040), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2383), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(7410), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), + [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(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2596), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(1215), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1219), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(173), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -56137,7 +55928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1255), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -56150,41 +55941,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(183), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_unchecked] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_lock] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(185), - [anon_sym_unchecked] = ACTIONS(183), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_while] = ACTIONS(191), - [anon_sym_for] = ACTIONS(193), - [anon_sym_lock] = ACTIONS(195), - [anon_sym_yield] = ACTIONS(197), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_try] = ACTIONS(203), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -56209,7 +56000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(211), + [sym_grit_metavariable] = ACTIONS(1255), [aux_sym_preproc_if_token1] = ACTIONS(1257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -56226,139 +56017,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [100] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [99] = { + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(1981), + [sym_variable_declaration] = STATE(7689), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), [sym_statement] = STATE(1976), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1955), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), - [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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2631), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [sym_break_statement] = STATE(1981), + [sym_checked_statement] = STATE(1981), + [sym_continue_statement] = STATE(1981), + [sym_do_statement] = STATE(1981), + [sym_empty_statement] = STATE(1981), + [sym_expression_statement] = STATE(1981), + [sym_fixed_statement] = STATE(1981), + [sym_for_statement] = STATE(1981), + [sym_return_statement] = STATE(1981), + [sym_lock_statement] = STATE(1981), + [sym_yield_statement] = STATE(1981), + [sym_switch_statement] = STATE(1981), + [sym_throw_statement] = STATE(1981), + [sym_try_statement] = STATE(1981), + [sym_unsafe_statement] = STATE(1981), + [sym_using_statement] = STATE(1981), + [sym_foreach_statement] = STATE(1981), + [sym__foreach_statement_initializer] = STATE(67), + [sym_goto_statement] = STATE(1981), + [sym_labeled_statement] = STATE(1981), + [sym_if_statement] = STATE(1981), + [sym_while_statement] = STATE(1981), + [sym_local_declaration_statement] = STATE(1981), + [sym_local_function_statement] = STATE(1981), + [sym__local_function_declaration] = STATE(6588), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5931), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2289), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(1981), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), + [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(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2599), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(163), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_using] = ACTIONS(1207), + [anon_sym_unsafe] = ACTIONS(1209), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(173), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(179), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), @@ -56368,7 +56159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1255), + [anon_sym_fixed] = ACTIONS(1211), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -56382,22 +56173,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(183), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_break] = ACTIONS(185), [anon_sym_unchecked] = ACTIONS(183), [anon_sym_continue] = ACTIONS(187), @@ -56407,15 +56189,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lock] = ACTIONS(195), [anon_sym_yield] = ACTIONS(197), [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(201), [anon_sym_try] = ACTIONS(203), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), + [anon_sym_foreach] = ACTIONS(113), [anon_sym_goto] = ACTIONS(207), [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -56441,7 +56232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [sym_grit_metavariable] = ACTIONS(211), - [aux_sym_preproc_if_token1] = ACTIONS(1257), + [aux_sym_preproc_if_token1] = ACTIONS(1213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -56457,140 +56248,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [101] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [100] = { + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2144), + [sym_variable_declaration] = STATE(7833), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2053), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2068), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), - [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(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2590), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2137), + [sym_break_statement] = STATE(2144), + [sym_checked_statement] = STATE(2144), + [sym_continue_statement] = STATE(2144), + [sym_do_statement] = STATE(2144), + [sym_empty_statement] = STATE(2144), + [sym_expression_statement] = STATE(2144), + [sym_fixed_statement] = STATE(2144), + [sym_for_statement] = STATE(2144), + [sym_return_statement] = STATE(2144), + [sym_lock_statement] = STATE(2144), + [sym_yield_statement] = STATE(2144), + [sym_switch_statement] = STATE(2144), + [sym_throw_statement] = STATE(2144), + [sym_try_statement] = STATE(2144), + [sym_unsafe_statement] = STATE(2144), + [sym_using_statement] = STATE(2144), + [sym_foreach_statement] = STATE(2144), + [sym__foreach_statement_initializer] = STATE(73), + [sym_goto_statement] = STATE(2144), + [sym_labeled_statement] = STATE(2144), + [sym_if_statement] = STATE(2144), + [sym_while_statement] = STATE(2144), + [sym_local_declaration_statement] = STATE(2144), + [sym_local_function_statement] = STATE(2144), + [sym__local_function_declaration] = STATE(6626), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(5960), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2311), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2144), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), + [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(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(659), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_using] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(663), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_return] = ACTIONS(673), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(677), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -56599,7 +56390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1203), + [anon_sym_fixed] = ACTIONS(685), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -56612,41 +56403,272 @@ 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_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(689), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(695), + [anon_sym_unchecked] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(699), + [anon_sym_while] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_lock] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(920), + [anon_sym_try] = ACTIONS(713), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(922), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(717), + [anon_sym_if] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(725), + [aux_sym_preproc_if_token1] = ACTIONS(727), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), + }, + [101] = { + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2048), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), + [sym__foreach_statement_initializer] = STATE(105), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2051), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), + [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(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2588), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(657), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_global] = ACTIONS(29), + [anon_sym_using] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(665), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(683), + [anon_sym_fixed] = ACTIONS(1203), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(687), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_for] = ACTIONS(97), + [anon_sym_lock] = ACTIONS(99), + [anon_sym_yield] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(103), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_try] = ACTIONS(109), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(111), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -56689,114 +56711,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [102] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(1991), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1955), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2052), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), + [sym__foreach_statement_initializer] = STATE(105), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2051), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(102), [sym_preproc_endregion] = STATE(102), [sym_preproc_line] = STATE(102), @@ -56806,22 +56828,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(102), [sym_preproc_define] = STATE(102), [sym_preproc_undef] = STATE(102), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2631), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2588), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_using] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1201), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(173), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -56830,7 +56852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1255), + [anon_sym_fixed] = ACTIONS(1203), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -56843,41 +56865,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(183), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(73), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_for] = ACTIONS(97), + [anon_sym_lock] = ACTIONS(99), + [anon_sym_yield] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(103), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_try] = ACTIONS(109), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(111), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(185), - [anon_sym_unchecked] = ACTIONS(183), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_while] = ACTIONS(191), - [anon_sym_for] = ACTIONS(193), - [anon_sym_lock] = ACTIONS(195), - [anon_sym_yield] = ACTIONS(197), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_try] = ACTIONS(203), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -56902,8 +56924,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), - [sym_grit_metavariable] = ACTIONS(211), - [aux_sym_preproc_if_token1] = ACTIONS(1257), + [sym_grit_metavariable] = ACTIONS(147), + [aux_sym_preproc_if_token1] = ACTIONS(1205), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -56920,114 +56942,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [103] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(7410), + [sym_variable_declaration] = STATE(7885), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(1997), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1955), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(8003), + [sym_break_statement] = STATE(7410), + [sym_checked_statement] = STATE(7410), + [sym_continue_statement] = STATE(7410), + [sym_do_statement] = STATE(7410), + [sym_empty_statement] = STATE(7410), + [sym_expression_statement] = STATE(7410), + [sym_fixed_statement] = STATE(7410), + [sym_for_statement] = STATE(7410), + [sym_return_statement] = STATE(7410), + [sym_lock_statement] = STATE(7410), + [sym_yield_statement] = STATE(7410), + [sym_switch_statement] = STATE(7410), + [sym_throw_statement] = STATE(7410), + [sym_try_statement] = STATE(7410), + [sym_unsafe_statement] = STATE(7410), + [sym_using_statement] = STATE(7410), + [sym_foreach_statement] = STATE(7410), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(7410), + [sym_labeled_statement] = STATE(7410), + [sym_if_statement] = STATE(7410), + [sym_while_statement] = STATE(7410), + [sym_local_declaration_statement] = STATE(7410), + [sym_local_function_statement] = STATE(7410), + [sym__local_function_declaration] = STATE(6613), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6040), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2383), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(7410), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(103), [sym_preproc_endregion] = STATE(103), [sym_preproc_line] = STATE(103), @@ -57037,22 +57059,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(103), [sym_preproc_define] = STATE(103), [sym_preproc_undef] = STATE(103), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2631), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2596), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(1215), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1219), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(173), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -57061,7 +57083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1255), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -57074,41 +57096,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(183), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_unchecked] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_lock] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(185), - [anon_sym_unchecked] = ACTIONS(183), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_while] = ACTIONS(191), - [anon_sym_for] = ACTIONS(193), - [anon_sym_lock] = ACTIONS(195), - [anon_sym_yield] = ACTIONS(197), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_try] = ACTIONS(203), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57133,7 +57155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(211), + [sym_grit_metavariable] = ACTIONS(1255), [aux_sym_preproc_if_token1] = ACTIONS(1257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -57151,114 +57173,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [104] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(7410), + [sym_variable_declaration] = STATE(7885), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1955), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(7541), + [sym_break_statement] = STATE(7410), + [sym_checked_statement] = STATE(7410), + [sym_continue_statement] = STATE(7410), + [sym_do_statement] = STATE(7410), + [sym_empty_statement] = STATE(7410), + [sym_expression_statement] = STATE(7410), + [sym_fixed_statement] = STATE(7410), + [sym_for_statement] = STATE(7410), + [sym_return_statement] = STATE(7410), + [sym_lock_statement] = STATE(7410), + [sym_yield_statement] = STATE(7410), + [sym_switch_statement] = STATE(7410), + [sym_throw_statement] = STATE(7410), + [sym_try_statement] = STATE(7410), + [sym_unsafe_statement] = STATE(7410), + [sym_using_statement] = STATE(7410), + [sym_foreach_statement] = STATE(7410), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(7410), + [sym_labeled_statement] = STATE(7410), + [sym_if_statement] = STATE(7410), + [sym_while_statement] = STATE(7410), + [sym_local_declaration_statement] = STATE(7410), + [sym_local_function_statement] = STATE(7410), + [sym__local_function_declaration] = STATE(6613), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6040), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2383), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(7410), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(104), [sym_preproc_endregion] = STATE(104), [sym_preproc_line] = STATE(104), @@ -57268,22 +57290,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(104), [sym_preproc_define] = STATE(104), [sym_preproc_undef] = STATE(104), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2631), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2596), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(1215), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1219), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(173), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -57292,7 +57314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1255), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -57305,41 +57327,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(183), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_unchecked] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_lock] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(185), - [anon_sym_unchecked] = ACTIONS(183), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_while] = ACTIONS(191), - [anon_sym_for] = ACTIONS(193), - [anon_sym_lock] = ACTIONS(195), - [anon_sym_yield] = ACTIONS(197), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_try] = ACTIONS(203), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57364,7 +57386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(211), + [sym_grit_metavariable] = ACTIONS(1255), [aux_sym_preproc_if_token1] = ACTIONS(1257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -57382,114 +57404,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [105] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2068), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(2056), - [sym_break_statement] = STATE(2068), - [sym_checked_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_empty_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym_fixed_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_lock_statement] = STATE(2068), - [sym_yield_statement] = STATE(2068), - [sym_switch_statement] = STATE(2068), - [sym_throw_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_unsafe_statement] = STATE(2068), - [sym_using_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2071), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2068), - [sym_labeled_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_while_statement] = STATE(2068), - [sym_local_declaration_statement] = STATE(2068), - [sym_local_function_statement] = STATE(2068), - [sym__local_function_declaration] = STATE(6602), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2370), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2068), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2051), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(105), [sym_preproc_endregion] = STATE(105), [sym_preproc_line] = STATE(105), @@ -57499,9 +57521,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(105), [sym_preproc_define] = STATE(105), [sym_preproc_undef] = STATE(105), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2590), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2588), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -57513,7 +57535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), @@ -57537,40 +57559,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_for] = ACTIONS(97), + [anon_sym_lock] = ACTIONS(99), + [anon_sym_yield] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(103), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_try] = ACTIONS(109), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(111), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57613,114 +57635,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [106] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(1983), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1955), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2058), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), + [sym__foreach_statement_initializer] = STATE(105), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2051), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(106), [sym_preproc_endregion] = STATE(106), [sym_preproc_line] = STATE(106), @@ -57730,22 +57752,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(106), [sym_preproc_define] = STATE(106), [sym_preproc_undef] = STATE(106), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2631), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2588), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_using] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1201), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(173), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -57754,7 +57776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1255), + [anon_sym_fixed] = ACTIONS(1203), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -57767,41 +57789,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(183), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(73), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_for] = ACTIONS(97), + [anon_sym_lock] = ACTIONS(99), + [anon_sym_yield] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(103), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_try] = ACTIONS(109), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(111), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(185), - [anon_sym_unchecked] = ACTIONS(183), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_while] = ACTIONS(191), - [anon_sym_for] = ACTIONS(193), - [anon_sym_lock] = ACTIONS(195), - [anon_sym_yield] = ACTIONS(197), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_try] = ACTIONS(203), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57826,8 +57848,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), - [sym_grit_metavariable] = ACTIONS(211), - [aux_sym_preproc_if_token1] = ACTIONS(1257), + [sym_grit_metavariable] = ACTIONS(147), + [aux_sym_preproc_if_token1] = ACTIONS(1205), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -57844,114 +57866,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [107] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(2051), + [sym_variable_declaration] = STATE(7963), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(1975), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1955), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(2054), + [sym_break_statement] = STATE(2051), + [sym_checked_statement] = STATE(2051), + [sym_continue_statement] = STATE(2051), + [sym_do_statement] = STATE(2051), + [sym_empty_statement] = STATE(2051), + [sym_expression_statement] = STATE(2051), + [sym_fixed_statement] = STATE(2051), + [sym_for_statement] = STATE(2051), + [sym_return_statement] = STATE(2051), + [sym_lock_statement] = STATE(2051), + [sym_yield_statement] = STATE(2051), + [sym_switch_statement] = STATE(2051), + [sym_throw_statement] = STATE(2051), + [sym_try_statement] = STATE(2051), + [sym_unsafe_statement] = STATE(2051), + [sym_using_statement] = STATE(2051), + [sym_foreach_statement] = STATE(2051), + [sym__foreach_statement_initializer] = STATE(105), + [sym_goto_statement] = STATE(2051), + [sym_labeled_statement] = STATE(2051), + [sym_if_statement] = STATE(2051), + [sym_while_statement] = STATE(2051), + [sym_local_declaration_statement] = STATE(2051), + [sym_local_function_statement] = STATE(2051), + [sym__local_function_declaration] = STATE(6617), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6041), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2385), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(2051), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(107), [sym_preproc_endregion] = STATE(107), [sym_preproc_line] = STATE(107), @@ -57961,22 +57983,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(107), [sym_preproc_define] = STATE(107), [sym_preproc_undef] = STATE(107), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2631), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2588), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_using] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1201), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(173), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -57985,7 +58007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1255), + [anon_sym_fixed] = ACTIONS(1203), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -57998,41 +58020,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(183), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(73), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_while] = ACTIONS(95), + [anon_sym_for] = ACTIONS(97), + [anon_sym_lock] = ACTIONS(99), + [anon_sym_yield] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(103), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_try] = ACTIONS(109), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(111), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(185), - [anon_sym_unchecked] = ACTIONS(183), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_while] = ACTIONS(191), - [anon_sym_for] = ACTIONS(193), - [anon_sym_lock] = ACTIONS(195), - [anon_sym_yield] = ACTIONS(197), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_try] = ACTIONS(203), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58057,8 +58079,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), - [sym_grit_metavariable] = ACTIONS(211), - [aux_sym_preproc_if_token1] = ACTIONS(1257), + [sym_grit_metavariable] = ACTIONS(147), + [aux_sym_preproc_if_token1] = ACTIONS(1205), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -58075,114 +58097,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [108] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1955), - [sym_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(7410), + [sym_variable_declaration] = STATE(7885), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_statement] = STATE(1957), - [sym_break_statement] = STATE(1955), - [sym_checked_statement] = STATE(1955), - [sym_continue_statement] = STATE(1955), - [sym_do_statement] = STATE(1955), - [sym_empty_statement] = STATE(1955), - [sym_expression_statement] = STATE(1955), - [sym_fixed_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_return_statement] = STATE(1955), - [sym_lock_statement] = STATE(1955), - [sym_yield_statement] = STATE(1955), - [sym_switch_statement] = STATE(1955), - [sym_throw_statement] = STATE(1955), - [sym_try_statement] = STATE(1955), - [sym_unsafe_statement] = STATE(1955), - [sym_using_statement] = STATE(1955), - [sym_foreach_statement] = STATE(1955), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1955), - [sym_labeled_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_local_declaration_statement] = STATE(1955), - [sym_local_function_statement] = STATE(1955), - [sym__local_function_declaration] = STATE(6615), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(5897), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2306), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1955), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5086), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6109), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_statement] = STATE(7624), + [sym_break_statement] = STATE(7410), + [sym_checked_statement] = STATE(7410), + [sym_continue_statement] = STATE(7410), + [sym_do_statement] = STATE(7410), + [sym_empty_statement] = STATE(7410), + [sym_expression_statement] = STATE(7410), + [sym_fixed_statement] = STATE(7410), + [sym_for_statement] = STATE(7410), + [sym_return_statement] = STATE(7410), + [sym_lock_statement] = STATE(7410), + [sym_yield_statement] = STATE(7410), + [sym_switch_statement] = STATE(7410), + [sym_throw_statement] = STATE(7410), + [sym_try_statement] = STATE(7410), + [sym_unsafe_statement] = STATE(7410), + [sym_using_statement] = STATE(7410), + [sym_foreach_statement] = STATE(7410), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(7410), + [sym_labeled_statement] = STATE(7410), + [sym_if_statement] = STATE(7410), + [sym_while_statement] = STATE(7410), + [sym_local_declaration_statement] = STATE(7410), + [sym_local_function_statement] = STATE(7410), + [sym__local_function_declaration] = STATE(6613), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(6040), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2383), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_top_level] = STATE(7410), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(108), [sym_preproc_endregion] = STATE(108), [sym_preproc_line] = STATE(108), @@ -58192,22 +58214,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(108), [sym_preproc_define] = STATE(108), [sym_preproc_undef] = STATE(108), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2631), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2596), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(1215), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1251), - [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1219), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(173), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -58216,7 +58238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(665), [anon_sym_const] = ACTIONS(657), [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(1255), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -58229,41 +58251,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(183), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_unchecked] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_lock] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_foreach] = ACTIONS(113), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), [anon_sym_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(185), - [anon_sym_unchecked] = ACTIONS(183), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_while] = ACTIONS(191), - [anon_sym_for] = ACTIONS(193), - [anon_sym_lock] = ACTIONS(195), - [anon_sym_yield] = ACTIONS(197), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_try] = ACTIONS(203), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(205), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(207), - [anon_sym_if] = ACTIONS(209), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58288,7 +58310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(211), + [sym_grit_metavariable] = ACTIONS(1255), [aux_sym_preproc_if_token1] = ACTIONS(1257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -58306,106 +58328,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [109] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5771), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym__variable_designation] = STATE(7160), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2261), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute] = STATE(7330), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_attribute_target_specifier] = STATE(6090), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7185), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5914), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5760), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6795), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4606), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(109), [sym_preproc_endregion] = STATE(109), [sym_preproc_line] = STATE(109), @@ -58415,20 +58433,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(109), [sym_preproc_define] = STATE(109), [sym_preproc_undef] = STATE(109), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_field] = ACTIONS(1267), + [anon_sym_event] = ACTIONS(1267), + [anon_sym_method] = ACTIONS(1267), + [anon_sym_param] = ACTIONS(1267), + [anon_sym_property] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), + [anon_sym_ref] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1273), @@ -58440,34 +58463,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1301), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1289), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58492,8 +58514,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -58510,102 +58532,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [110] = { - [sym_attribute] = STATE(7369), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6081), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5913), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6837), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4210), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5791), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym__variable_designation] = STATE(7139), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2251), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(110), [sym_preproc_endregion] = STATE(110), [sym_preproc_line] = STATE(110), @@ -58615,63 +58641,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(110), [sym_preproc_define] = STATE(110), [sym_preproc_undef] = STATE(110), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_field] = ACTIONS(1315), - [anon_sym_event] = ACTIONS(1315), - [anon_sym_method] = ACTIONS(1315), - [anon_sym_param] = ACTIONS(1315), - [anon_sym_property] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), - [anon_sym_ref] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1331), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58696,8 +58718,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -58714,102 +58736,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [111] = { - [sym_attribute] = STATE(7369), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6081), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5913), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6893), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4210), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute] = STATE(7330), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_attribute_target_specifier] = STATE(6090), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7185), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5914), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5760), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6878), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4606), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(111), [sym_preproc_endregion] = STATE(111), [sym_preproc_line] = STATE(111), @@ -58819,63 +58841,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(111), [sym_preproc_define] = STATE(111), [sym_preproc_undef] = STATE(111), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_RBRACK] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_field] = ACTIONS(1315), - [anon_sym_event] = ACTIONS(1315), - [anon_sym_method] = ACTIONS(1315), - [anon_sym_param] = ACTIONS(1315), - [anon_sym_property] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), - [anon_sym_ref] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_field] = ACTIONS(1267), + [anon_sym_event] = ACTIONS(1267), + [anon_sym_method] = ACTIONS(1267), + [anon_sym_param] = ACTIONS(1267), + [anon_sym_property] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), + [anon_sym_ref] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [sym_discard] = ACTIONS(1333), + [anon_sym_await] = ACTIONS(1289), + [sym_discard] = ACTIONS(1291), [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58900,8 +58922,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -58918,102 +58940,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [112] = { - [sym_attribute] = STATE(7369), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6081), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5913), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6866), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4210), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute] = STATE(7330), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_attribute_target_specifier] = STATE(6090), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7185), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5914), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5760), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6834), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4606), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(112), [sym_preproc_endregion] = STATE(112), [sym_preproc_line] = STATE(112), @@ -59023,63 +59045,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(112), [sym_preproc_define] = STATE(112), [sym_preproc_undef] = STATE(112), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_RBRACK] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_field] = ACTIONS(1315), - [anon_sym_event] = ACTIONS(1315), - [anon_sym_method] = ACTIONS(1315), - [anon_sym_param] = ACTIONS(1315), - [anon_sym_property] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), - [anon_sym_ref] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_field] = ACTIONS(1267), + [anon_sym_event] = ACTIONS(1267), + [anon_sym_method] = ACTIONS(1267), + [anon_sym_param] = ACTIONS(1267), + [anon_sym_property] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), + [anon_sym_ref] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [sym_discard] = ACTIONS(1333), + [anon_sym_await] = ACTIONS(1289), + [sym_discard] = ACTIONS(1291), [anon_sym_DOT_DOT] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59104,8 +59126,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -59122,102 +59144,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [113] = { - [sym_attribute] = STATE(7369), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6081), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5913), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6916), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4210), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute] = STATE(7330), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_attribute_target_specifier] = STATE(6090), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7185), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5914), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5760), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6818), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4606), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(113), [sym_preproc_endregion] = STATE(113), [sym_preproc_line] = STATE(113), @@ -59227,63 +59249,63 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_RBRACK] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_field] = ACTIONS(1315), - [anon_sym_event] = ACTIONS(1315), - [anon_sym_method] = ACTIONS(1315), - [anon_sym_param] = ACTIONS(1315), - [anon_sym_property] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), - [anon_sym_ref] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_field] = ACTIONS(1267), + [anon_sym_event] = ACTIONS(1267), + [anon_sym_method] = ACTIONS(1267), + [anon_sym_param] = ACTIONS(1267), + [anon_sym_property] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), + [anon_sym_ref] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [sym_discard] = ACTIONS(1333), + [anon_sym_await] = ACTIONS(1289), + [sym_discard] = ACTIONS(1291), [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59308,8 +59330,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -59326,106 +59348,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [114] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5771), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym__variable_designation] = STATE(7160), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2261), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute] = STATE(7330), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_attribute_target_specifier] = STATE(6090), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7185), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5914), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5760), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6863), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4606), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(114), [sym_preproc_endregion] = STATE(114), [sym_preproc_line] = STATE(114), @@ -59435,20 +59453,25 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_field] = ACTIONS(1267), + [anon_sym_event] = ACTIONS(1267), + [anon_sym_method] = ACTIONS(1267), + [anon_sym_param] = ACTIONS(1267), + [anon_sym_property] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), + [anon_sym_ref] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1273), @@ -59460,34 +59483,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1301), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1289), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59512,8 +59534,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -59530,102 +59552,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [115] = { - [sym_attribute] = STATE(7369), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6081), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5913), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6844), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4210), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5791), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym__variable_designation] = STATE(7139), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2251), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(115), [sym_preproc_endregion] = STATE(115), [sym_preproc_line] = STATE(115), @@ -59635,63 +59661,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_field] = ACTIONS(1315), - [anon_sym_event] = ACTIONS(1315), - [anon_sym_method] = ACTIONS(1315), - [anon_sym_param] = ACTIONS(1315), - [anon_sym_property] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), - [anon_sym_ref] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1355), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1331), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59716,8 +59738,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -59734,104 +59756,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [116] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5680), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6995), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7495), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5729), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(6965), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5970), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(116), [sym_preproc_endregion] = STATE(116), [sym_preproc_line] = STATE(116), @@ -59841,9 +59863,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(116), [sym_preproc_define] = STATE(116), [sym_preproc_undef] = STATE(116), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -59851,49 +59873,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59918,8 +59940,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -59936,104 +59958,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [117] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7411), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5763), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7497), - [sym_pattern] = STATE(7000), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7586), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5974), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7495), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5669), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(6965), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5970), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(117), [sym_preproc_endregion] = STATE(117), [sym_preproc_line] = STATE(117), @@ -60043,59 +60065,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60120,8 +60142,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60138,104 +60160,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [118] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5771), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5693), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(118), [sym_preproc_endregion] = STATE(118), [sym_preproc_line] = STATE(118), @@ -60245,59 +60267,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60322,8 +60344,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60340,104 +60362,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [119] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5700), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(7019), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5992), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5791), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(119), [sym_preproc_endregion] = STATE(119), [sym_preproc_line] = STATE(119), @@ -60447,59 +60469,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60524,8 +60546,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60542,104 +60564,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [120] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5762), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5701), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(6972), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(120), [sym_preproc_endregion] = STATE(120), [sym_preproc_line] = STATE(120), @@ -60649,59 +60671,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60726,8 +60748,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60744,104 +60766,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [121] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7411), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5761), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7497), - [sym_pattern] = STATE(7000), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7586), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5974), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5655), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(121), [sym_preproc_endregion] = STATE(121), [sym_preproc_line] = STATE(121), @@ -60851,59 +60873,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60928,8 +60950,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60946,104 +60968,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [122] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5656), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6995), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5705), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(6972), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(122), [sym_preproc_endregion] = STATE(122), [sym_preproc_line] = STATE(122), @@ -61053,59 +61075,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -61130,8 +61152,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -61148,84 +61170,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [123] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2785), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5720), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(123), [sym_preproc_endregion] = STATE(123), [sym_preproc_line] = STATE(123), @@ -61235,72 +61277,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1365), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), - [anon_sym_and] = ACTIONS(1379), - [anon_sym_or] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -61313,27 +61342,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_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), - [aux_sym_preproc_if_token3] = ACTIONS(1365), - [aux_sym_preproc_else_token1] = ACTIONS(1365), - [aux_sym_preproc_elif_token1] = ACTIONS(1365), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -61344,90 +61366,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(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [124] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2746), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5756), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(124), [sym_preproc_endregion] = STATE(124), [sym_preproc_line] = STATE(124), @@ -61437,72 +61479,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(124), [sym_preproc_define] = STATE(124), [sym_preproc_undef] = STATE(124), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1435), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_RBRACK] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -61515,27 +61544,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_as] = ACTIONS(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), - [aux_sym_preproc_if_token3] = ACTIONS(1435), - [aux_sym_preproc_else_token1] = ACTIONS(1435), - [aux_sym_preproc_elif_token1] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -61546,110 +61568,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(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [125] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5790), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5768), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(6972), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(125), [sym_preproc_endregion] = STATE(125), [sym_preproc_line] = STATE(125), @@ -61659,59 +61681,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -61736,8 +61758,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -61754,104 +61776,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [126] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5688), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5708), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(126), [sym_preproc_endregion] = STATE(126), [sym_preproc_line] = STATE(126), @@ -61861,59 +61883,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -61938,8 +61960,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -61956,104 +61978,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [127] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5686), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5708), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(127), [sym_preproc_endregion] = STATE(127), [sym_preproc_line] = STATE(127), @@ -62063,59 +62085,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62140,8 +62162,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -62158,104 +62180,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [128] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5746), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7587), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5695), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7508), + [sym_pattern] = STATE(6995), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7487), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5954), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(128), [sym_preproc_endregion] = STATE(128), [sym_preproc_line] = STATE(128), @@ -62265,9 +62287,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -62275,49 +62297,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62342,8 +62364,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -62360,104 +62382,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [129] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5688), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5696), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(7001), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5944), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(129), [sym_preproc_endregion] = STATE(129), [sym_preproc_line] = STATE(129), @@ -62467,59 +62489,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62544,8 +62566,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -62562,104 +62584,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [130] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5690), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5728), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(130), [sym_preproc_endregion] = STATE(130), [sym_preproc_line] = STATE(130), @@ -62669,59 +62691,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62746,8 +62768,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -62764,104 +62786,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [131] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5755), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6995), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5687), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(6972), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(131), [sym_preproc_endregion] = STATE(131), [sym_preproc_line] = STATE(131), @@ -62871,9 +62893,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -62881,49 +62903,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62948,8 +62970,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -62966,104 +62988,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [132] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7472), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5791), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6977), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5973), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5655), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(132), [sym_preproc_endregion] = STATE(132), [sym_preproc_line] = STATE(132), @@ -63073,59 +63095,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -63150,8 +63172,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -63168,104 +63190,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [133] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5713), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5716), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(6972), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(133), [sym_preproc_endregion] = STATE(133), [sym_preproc_line] = STATE(133), @@ -63275,9 +63297,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -63285,49 +63307,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -63352,8 +63374,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -63370,104 +63392,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [134] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5724), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(7019), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5992), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5668), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(6972), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(134), [sym_preproc_endregion] = STATE(134), [sym_preproc_line] = STATE(134), @@ -63477,59 +63499,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -63554,8 +63576,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -63572,104 +63594,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [135] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5713), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5766), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(135), [sym_preproc_endregion] = STATE(135), [sym_preproc_line] = STATE(135), @@ -63679,9 +63701,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -63689,49 +63711,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -63756,8 +63778,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -63774,104 +63796,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [136] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5725), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6995), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5798), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(136), [sym_preproc_endregion] = STATE(136), [sym_preproc_line] = STATE(136), @@ -63881,59 +63903,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -63958,8 +63980,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -63976,104 +63998,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [137] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5722), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6995), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3095), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(137), [sym_preproc_endregion] = STATE(137), [sym_preproc_line] = STATE(137), @@ -64083,59 +64085,72 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1365), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1379), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1401), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1383), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -64148,20 +64163,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_with] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), + [aux_sym_preproc_if_token3] = ACTIONS(1365), + [aux_sym_preproc_else_token1] = ACTIONS(1365), + [aux_sym_preproc_elif_token1] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -64172,110 +64194,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [138] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7472), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5760), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6977), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5973), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5782), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(6972), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(138), [sym_preproc_endregion] = STATE(138), [sym_preproc_line] = STATE(138), @@ -64285,59 +64307,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -64362,8 +64384,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -64380,104 +64402,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [139] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5771), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5656), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(139), [sym_preproc_endregion] = STATE(139), [sym_preproc_line] = STATE(139), @@ -64487,59 +64509,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -64564,8 +64586,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -64582,104 +64604,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [140] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5689), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6995), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5791), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(140), [sym_preproc_endregion] = STATE(140), [sym_preproc_line] = STATE(140), @@ -64689,59 +64711,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -64766,8 +64788,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -64784,104 +64806,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [141] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5717), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6995), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5693), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(141), [sym_preproc_endregion] = STATE(141), [sym_preproc_line] = STATE(141), @@ -64891,59 +64913,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -64968,8 +64990,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -64986,104 +65008,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [142] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5707), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6995), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5703), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(7001), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5944), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(142), [sym_preproc_endregion] = STATE(142), [sym_preproc_line] = STATE(142), @@ -65093,59 +65115,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65170,8 +65192,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65188,104 +65210,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [143] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5731), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6995), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5737), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(7013), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(143), [sym_preproc_endregion] = STATE(143), [sym_preproc_line] = STATE(143), @@ -65295,59 +65317,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65372,8 +65394,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65390,104 +65412,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [144] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5651), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3097), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(144), [sym_preproc_endregion] = STATE(144), [sym_preproc_line] = STATE(144), @@ -65497,59 +65499,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1435), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_RBRACK] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1401), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1383), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65562,20 +65577,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_with] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), + [aux_sym_preproc_if_token3] = ACTIONS(1435), + [aux_sym_preproc_else_token1] = ACTIONS(1435), + [aux_sym_preproc_elif_token1] = ACTIONS(1435), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65586,110 +65608,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [145] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5762), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5664), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(6972), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(145), [sym_preproc_endregion] = STATE(145), [sym_preproc_line] = STATE(145), @@ -65699,59 +65721,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65776,8 +65798,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65794,104 +65816,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [146] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5786), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5749), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_pattern] = STATE(6972), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(146), [sym_preproc_endregion] = STATE(146), [sym_preproc_line] = STATE(146), @@ -65901,59 +65923,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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65978,8 +66000,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65996,104 +66018,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [147] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5648), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_pattern] = STATE(6927), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5079), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7587), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5718), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7508), + [sym_pattern] = STATE(6995), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7487), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4591), + [sym_non_lvalue_expression] = STATE(5954), + [sym_lvalue_expression] = STATE(4927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(147), [sym_preproc_endregion] = STATE(147), [sym_preproc_line] = STATE(147), @@ -66103,9 +66125,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -66113,49 +66135,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1357), [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66180,8 +66202,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -66198,103 +66220,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [148] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5861), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7050), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym__variable_designation] = STATE(7160), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_expression] = STATE(4326), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2262), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5873), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7017), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym__variable_designation] = STATE(7139), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_expression] = STATE(5059), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2257), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(148), [sym_preproc_endregion] = STATE(148), [sym_preproc_line] = STATE(148), @@ -66304,59 +66326,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(148), [sym_preproc_define] = STATE(148), [sym_preproc_undef] = STATE(148), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1439), - [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1307), [anon_sym_ref] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1271), - [anon_sym_out] = ACTIONS(1271), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_out] = ACTIONS(1311), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1445), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), - [sym_discard] = ACTIONS(1301), + [sym_discard] = ACTIONS(1331), [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66381,8 +66403,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -66399,103 +66421,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [149] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5861), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7050), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7493), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym__variable_designation] = STATE(7160), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_expression] = STATE(4326), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2262), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5873), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7017), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7610), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym__variable_designation] = STATE(7139), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_expression] = STATE(5059), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2257), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(149), [sym_preproc_endregion] = STATE(149), [sym_preproc_line] = STATE(149), @@ -66505,9 +66527,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -66516,48 +66538,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1439), [anon_sym_RPAREN] = ACTIONS(1453), [anon_sym_ref] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), - [anon_sym_in] = ACTIONS(1271), - [anon_sym_out] = ACTIONS(1271), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_out] = ACTIONS(1311), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1445), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), - [sym_discard] = ACTIONS(1301), + [sym_discard] = ACTIONS(1331), [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66582,8 +66604,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -66600,84 +66622,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [150] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3093), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3204), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(150), [sym_preproc_endregion] = STATE(150), [sym_preproc_line] = STATE(150), @@ -66687,8 +66709,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(1365), @@ -66713,44 +66735,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1477), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1487), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1469), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66779,7 +66801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_if_token3] = ACTIONS(1365), [aux_sym_preproc_else_token1] = ACTIONS(1365), @@ -66800,84 +66822,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [151] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3064), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3264), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(151), [sym_preproc_endregion] = STATE(151), [sym_preproc_line] = STATE(151), @@ -66887,8 +66909,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(1435), @@ -66913,44 +66935,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1477), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1487), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1469), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66979,7 +67001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_if_token3] = ACTIONS(1435), [aux_sym_preproc_else_token1] = ACTIONS(1435), @@ -67000,84 +67022,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [152] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3172), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3424), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(152), [sym_preproc_endregion] = STATE(152), [sym_preproc_line] = STATE(152), @@ -67087,72 +67109,72 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1365), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_RBRACK] = ACTIONS(1435), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1365), [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_RPAREN] = ACTIONS(1365), [anon_sym_ref] = ACTIONS(1525), [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1365), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1543), [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1379), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1299), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1281), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -67165,11 +67187,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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_with] = ACTIONS(1437), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(1549), @@ -67181,7 +67203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -67199,84 +67221,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [153] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3229), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3460), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(153), [sym_preproc_endregion] = STATE(153), [sym_preproc_line] = STATE(153), @@ -67286,72 +67308,72 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_SEMI] = ACTIONS(1435), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_RBRACK] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_RBRACK] = ACTIONS(1435), [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1435), [anon_sym_ref] = ACTIONS(1525), [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1435), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1543), [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_and] = ACTIONS(1379), - [anon_sym_or] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1299), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1281), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -67364,11 +67386,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(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(1549), @@ -67380,7 +67402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -67398,84 +67420,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [154] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3268), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3490), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(154), [sym_preproc_endregion] = STATE(154), [sym_preproc_line] = STATE(154), @@ -67485,8 +67507,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -67510,46 +67532,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), [anon_sym_and] = ACTIONS(1379), [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1571), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1561), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -67578,7 +67600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -67596,84 +67618,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [155] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3191), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3547), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(155), [sym_preproc_endregion] = STATE(155), [sym_preproc_line] = STATE(155), @@ -67683,206 +67705,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(155), [sym_preproc_define] = STATE(155), [sym_preproc_undef] = STATE(155), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_delegate] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = 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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), - }, - [156] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3271), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -67906,46 +67730,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1581), [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), [anon_sym_and] = ACTIONS(1379), [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1337), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1317), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -67974,7 +67798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -67991,105 +67815,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [157] = { - [sym_attribute_list] = STATE(5927), + [156] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3314), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3541), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [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(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1435), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), + [anon_sym_COLON] = ACTIONS(1435), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_ref] = ACTIONS(1575), [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1435), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), @@ -68101,46 +67928,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), [anon_sym_and] = ACTIONS(1437), [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1337), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1317), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -68169,11 +67996,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), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), - [aux_sym_preproc_if_token3] = ACTIONS(1435), - [aux_sym_preproc_else_token1] = ACTIONS(1435), - [aux_sym_preproc_elif_token1] = ACTIONS(1435), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -68189,96 +68013,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [158] = { - [sym_attribute_list] = STATE(5927), + [157] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3310), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3548), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [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(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(1365), @@ -68299,46 +68123,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), [anon_sym_and] = ACTIONS(1379), [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1599), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1589), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -68367,7 +68191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_if_token3] = ACTIONS(1365), [aux_sym_preproc_else_token1] = ACTIONS(1365), @@ -68387,108 +68211,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [159] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3313), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [158] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3501), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [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(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1435), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1435), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), @@ -68500,46 +68321,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), [anon_sym_and] = ACTIONS(1437), [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1599), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1589), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -68568,8 +68389,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), + [aux_sym_preproc_if_token3] = ACTIONS(1435), + [aux_sym_preproc_else_token1] = ACTIONS(1435), + [aux_sym_preproc_elif_token1] = ACTIONS(1435), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -68585,85 +68409,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, + [159] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3431), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [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(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_COLON] = ACTIONS(1435), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1571), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1561), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = 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(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_with] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), + }, [160] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3297), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3517), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(160), [sym_preproc_endregion] = STATE(160), [sym_preproc_line] = STATE(160), @@ -68673,8 +68695,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(160), [sym_preproc_define] = STATE(160), [sym_preproc_undef] = STATE(160), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), @@ -68696,46 +68718,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), [anon_sym_and] = ACTIONS(1437), [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1641), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1619), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1641), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -68783,84 +68805,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [161] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3382), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3537), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(161), [sym_preproc_endregion] = STATE(161), [sym_preproc_line] = STATE(161), @@ -68870,8 +68892,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(161), [sym_preproc_define] = STATE(161), [sym_preproc_undef] = STATE(161), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), @@ -68879,13 +68901,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1605), [anon_sym_COLON] = ACTIONS(1365), [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), + [anon_sym_new] = ACTIONS(1615), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(1603), @@ -68893,46 +68915,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1685), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), [anon_sym_and] = ACTIONS(1379), [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1641), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1619), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1641), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -68980,84 +69002,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [162] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3278), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3675), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(162), [sym_preproc_endregion] = STATE(162), [sym_preproc_line] = STATE(162), @@ -69067,69 +69089,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_COLON] = ACTIONS(1365), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), + [anon_sym_COLON] = ACTIONS(1435), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_and] = ACTIONS(1379), - [anon_sym_or] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1695), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1685), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -69142,11 +69164,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(1603), [anon_sym_by] = ACTIONS(1603), [anon_sym_select] = ACTIONS(1603), - [anon_sym_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(1649), [anon_sym_typeof] = ACTIONS(1651), [anon_sym___makeref] = ACTIONS(1653), @@ -69173,88 +69195,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_regular_start] = ACTIONS(1671), [sym_interpolation_verbatim_start] = ACTIONS(1673), [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_interpolation_close_brace] = ACTIONS(1365), + [sym_interpolation_close_brace] = ACTIONS(1435), [sym_raw_string_start] = ACTIONS(1677), }, [163] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3404), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3637), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(163), [sym_preproc_endregion] = STATE(163), [sym_preproc_line] = STATE(163), @@ -69264,15 +69286,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), [anon_sym_LPAREN] = ACTIONS(1679), [anon_sym_ref] = ACTIONS(1681), [anon_sym_LBRACE] = ACTIONS(1611), @@ -69280,53 +69302,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(1603), [anon_sym_new] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1685), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1379), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1695), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1685), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -69339,11 +69361,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(1603), [anon_sym_by] = ACTIONS(1603), [anon_sym_select] = ACTIONS(1603), - [anon_sym_as] = ACTIONS(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1437), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(1649), [anon_sym_typeof] = ACTIONS(1651), [anon_sym___makeref] = ACTIONS(1653), @@ -69370,88 +69392,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_regular_start] = ACTIONS(1671), [sym_interpolation_verbatim_start] = ACTIONS(1673), [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_interpolation_close_brace] = ACTIONS(1435), + [sym_interpolation_close_brace] = ACTIONS(1365), [sym_raw_string_start] = ACTIONS(1677), }, [164] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3622), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3860), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(164), [sym_preproc_endregion] = STATE(164), [sym_preproc_line] = STATE(164), @@ -69461,69 +69483,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_RPAREN] = ACTIONS(1365), [anon_sym_ref] = ACTIONS(1701), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1365), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1707), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1705), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -69536,11 +69558,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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1437), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -69552,8 +69574,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -69570,84 +69592,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [165] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3369), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3651), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(165), [sym_preproc_endregion] = STATE(165), [sym_preproc_line] = STATE(165), @@ -69657,69 +69679,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_COLON] = ACTIONS(1365), - [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_COLON] = ACTIONS(1435), + [anon_sym_COMMA] = ACTIONS(1435), [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1435), [anon_sym_ref] = ACTIONS(1711), [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1435), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1713), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1713), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1723), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1713), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1723), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -69732,11 +69754,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(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(1497), @@ -69748,7 +69770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -69766,84 +69788,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [166] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3372), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3575), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(166), [sym_preproc_endregion] = STATE(166), [sym_preproc_line] = STATE(166), @@ -69853,69 +69875,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(166), [sym_preproc_define] = STATE(166), [sym_preproc_undef] = STATE(166), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_RPAREN] = ACTIONS(1365), [anon_sym_ref] = ACTIONS(1711), [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1365), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1713), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1713), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1723), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1713), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1723), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -69928,11 +69950,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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1437), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(1497), @@ -69944,7 +69966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -69962,84 +69984,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [167] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3688), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3958), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(167), [sym_preproc_endregion] = STATE(167), [sym_preproc_line] = STATE(167), @@ -70049,24 +70071,21 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1435), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_RBRACK] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1435), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), @@ -70074,44 +70093,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(121), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(75), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70140,8 +70159,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token3] = ACTIONS(1435), + [aux_sym_preproc_else_token1] = ACTIONS(1435), + [aux_sym_preproc_elif_token1] = ACTIONS(1435), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70158,84 +70180,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [168] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3493), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4023), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(168), [sym_preproc_endregion] = STATE(168), [sym_preproc_line] = STATE(168), @@ -70245,8 +70267,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -70262,7 +70284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), @@ -70270,44 +70292,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1739), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1737), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70336,8 +70358,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70354,84 +70376,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [169] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3495), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3774), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(169), [sym_preproc_endregion] = STATE(169), [sym_preproc_line] = STATE(169), @@ -70441,66 +70463,66 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1365), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(121), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(75), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70513,11 +70535,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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1437), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -70529,11 +70551,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token3] = ACTIONS(1435), - [aux_sym_preproc_else_token1] = ACTIONS(1435), - [aux_sym_preproc_elif_token1] = ACTIONS(1435), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token3] = ACTIONS(1365), + [aux_sym_preproc_else_token1] = ACTIONS(1365), + [aux_sym_preproc_elif_token1] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70550,84 +70572,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [170] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3620), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3892), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(170), [sym_preproc_endregion] = STATE(170), [sym_preproc_line] = STATE(170), @@ -70637,66 +70659,69 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1365), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_COLON] = ACTIONS(1435), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_ref] = ACTIONS(1701), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1435), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1707), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1705), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70709,11 +70734,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(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -70725,11 +70750,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token3] = ACTIONS(1365), - [aux_sym_preproc_else_token1] = ACTIONS(1365), - [aux_sym_preproc_elif_token1] = ACTIONS(1365), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70746,84 +70768,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [171] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3497), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3784), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(171), [sym_preproc_endregion] = STATE(171), [sym_preproc_line] = STATE(171), @@ -70833,69 +70855,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(171), [sym_preproc_define] = STATE(171), [sym_preproc_undef] = STATE(171), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1365), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_ref] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_RBRACK] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1435), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1739), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1737), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70908,11 +70930,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(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -70924,8 +70946,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70942,84 +70964,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [172] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2638), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3784), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(172), [sym_preproc_endregion] = STATE(172), [sym_preproc_line] = STATE(172), @@ -71029,68 +71051,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(172), [sym_preproc_define] = STATE(172), [sym_preproc_undef] = STATE(172), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym_list_pattern_repeat1] = STATE(7074), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_RBRACK] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), - [anon_sym_and] = ACTIONS(1379), - [anon_sym_or] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1739), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1737), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71103,24 +71125,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1777), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71131,90 +71153,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [173] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3695), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4374), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(173), [sym_preproc_endregion] = STATE(173), [sym_preproc_line] = STATE(173), @@ -71224,21 +71246,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(173), [sym_preproc_define] = STATE(173), [sym_preproc_undef] = STATE(173), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), [anon_sym_COLON] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1531), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), @@ -71246,46 +71268,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), [anon_sym_and] = ACTIONS(1379), [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1755), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1745), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71314,7 +71336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -71332,84 +71354,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [174] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3912), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2974), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(174), [sym_preproc_endregion] = STATE(174), [sym_preproc_line] = STATE(174), @@ -71419,97 +71441,98 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_as] = ACTIONS(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1379), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1789), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1771), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_with] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71520,91 +71543,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_interpolation_close_brace] = ACTIONS(1435), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [175] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3363), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3784), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(175), [sym_preproc_endregion] = STATE(175), [sym_preproc_line] = STATE(175), @@ -71614,68 +71636,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym_list_pattern_repeat1] = STATE(7157), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_RBRACK] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1391), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1437), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1739), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1737), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71691,21 +71713,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1437), [anon_sym_is] = ACTIONS(1437), [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71716,90 +71738,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [176] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3493), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4364), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(176), [sym_preproc_endregion] = STATE(176), [sym_preproc_line] = STATE(176), @@ -71809,68 +71831,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(176), [sym_preproc_define] = STATE(176), [sym_preproc_undef] = STATE(176), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym_list_pattern_repeat1] = STATE(7122), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1837), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1829), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71883,24 +71905,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71917,84 +71939,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [177] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3359), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3859), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(177), [sym_preproc_endregion] = STATE(177), [sym_preproc_line] = STATE(177), @@ -72004,21 +72026,20 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_COLON] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1377), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), @@ -72026,46 +72047,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_EQ_GT] = ACTIONS(1365), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), [anon_sym_and] = ACTIONS(1379), [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1855), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1845), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72094,7 +72116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -72112,84 +72134,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [178] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3924), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3913), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(178), [sym_preproc_endregion] = STATE(178), [sym_preproc_line] = STATE(178), @@ -72199,20 +72221,21 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_COLON] = ACTIONS(1365), [anon_sym_LPAREN] = ACTIONS(1857), [anon_sym_ref] = ACTIONS(1859), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1861), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), @@ -72220,47 +72243,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1537), + [anon_sym_this] = ACTIONS(1535), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_EQ_GT] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1869), [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), [anon_sym_and] = ACTIONS(1379), [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1873), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1863), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72289,7 +72311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -72307,84 +72329,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [179] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3863), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4346), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(179), [sym_preproc_endregion] = STATE(179), [sym_preproc_line] = STATE(179), @@ -72394,15 +72416,16 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), + [anon_sym_COLON] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -72415,47 +72438,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), [anon_sym_and] = ACTIONS(1437), [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1755), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1745), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72484,7 +72506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -72502,84 +72524,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [180] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3493), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4289), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(180), [sym_preproc_endregion] = STATE(180), [sym_preproc_line] = STATE(180), @@ -72589,68 +72611,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(4055), - [aux_sym_list_pattern_repeat1] = STATE(7231), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1827), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), + [anon_sym_in] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1379), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1837), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1829), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72666,21 +72688,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1379), [anon_sym_is] = ACTIONS(1379), [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_sym_with] = ACTIONS(1379), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -72697,84 +72719,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [181] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3916), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4049), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(181), [sym_preproc_endregion] = STATE(181), [sym_preproc_line] = STATE(181), @@ -72784,68 +72806,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1435), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_COLON] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1877), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_and] = ACTIONS(1379), - [anon_sym_or] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(723), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(691), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72858,24 +72880,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -72892,84 +72914,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [182] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3614), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3012), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(182), [sym_preproc_endregion] = STATE(182), [sym_preproc_line] = STATE(182), @@ -72979,68 +73001,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(182), [sym_preproc_define] = STATE(182), [sym_preproc_undef] = STATE(182), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_EQ_GT] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), - [anon_sym_and] = ACTIONS(1379), - [anon_sym_or] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1901), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1891), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1901), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -73053,24 +73075,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_with] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -73081,90 +73103,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [183] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3625), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3784), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(183), [sym_preproc_endregion] = STATE(183), [sym_preproc_line] = STATE(183), @@ -73174,68 +73196,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(183), [sym_preproc_define] = STATE(183), [sym_preproc_undef] = STATE(183), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym_list_pattern_repeat1] = STATE(7083), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_RBRACK] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1537), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1437), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1739), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1737), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -73251,21 +73273,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1437), [anon_sym_is] = ACTIONS(1437), [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -73282,84 +73304,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [184] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3784), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3708), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(184), [sym_preproc_endregion] = STATE(184), [sym_preproc_line] = STATE(184), @@ -73369,68 +73391,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1365), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1377), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), + [anon_sym_in] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(693), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(1393), [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1911), [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1379), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1915), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1907), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -73446,21 +73468,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1379), [anon_sym_is] = ACTIONS(1379), [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1405), [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -73471,90 +73493,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [185] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3399), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3784), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(185), [sym_preproc_endregion] = STATE(185), [sym_preproc_line] = STATE(185), @@ -73564,68 +73586,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym_list_pattern_repeat1] = STATE(7325), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_RBRACK] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1391), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1437), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1739), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1737), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -73641,21 +73663,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1437), [anon_sym_is] = ACTIONS(1437), [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -73666,90 +73688,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [186] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3493), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3840), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(186), [sym_preproc_endregion] = STATE(186), [sym_preproc_line] = STATE(186), @@ -73759,68 +73781,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(4055), - [aux_sym_list_pattern_repeat1] = STATE(7103), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_EQ_GT] = ACTIONS(1435), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1855), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1845), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -73833,24 +73855,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_with] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -73861,90 +73883,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [187] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3410), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4007), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(187), [sym_preproc_endregion] = STATE(187), [sym_preproc_line] = STATE(187), @@ -73954,68 +73976,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_EQ_GT] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_and] = ACTIONS(1379), - [anon_sym_or] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1915), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1907), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74028,11 +74050,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(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(1407), [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(1411), @@ -74044,8 +74066,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -74062,84 +74084,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [188] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3493), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4262), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(188), [sym_preproc_endregion] = STATE(188), [sym_preproc_line] = STATE(188), @@ -74149,98 +74171,97 @@ 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(4055), - [aux_sym_list_pattern_repeat1] = STATE(7266), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_COLON] = ACTIONS(1365), [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), - [anon_sym_where] = ACTIONS(29), + [anon_sym_where] = ACTIONS(1603), [anon_sym_QMARK] = ACTIONS(1379), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1931), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1923), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = 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_BANG] = ACTIONS(1931), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), [anon_sym_as] = ACTIONS(1379), [anon_sym_is] = ACTIONS(1379), [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1647), [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -74251,90 +74272,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_interpolation_close_brace] = ACTIONS(1365), + [sym_raw_string_start] = ACTIONS(1677), }, [189] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3464), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3586), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(189), [sym_preproc_endregion] = STATE(189), [sym_preproc_line] = STATE(189), @@ -74344,68 +74366,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(189), [sym_preproc_define] = STATE(189), [sym_preproc_undef] = STATE(189), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1937), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), - [anon_sym_in] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1935), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), [anon_sym_and] = ACTIONS(1379), [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1949), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1939), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1949), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74434,8 +74456,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -74452,84 +74474,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [190] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4027), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4337), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(190), [sym_preproc_endregion] = STATE(190), [sym_preproc_line] = STATE(190), @@ -74539,98 +74561,97 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1605), [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(29), + [anon_sym_where] = ACTIONS(1603), [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1877), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1537), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(29), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1931), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1923), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(1931), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), [anon_sym_as] = ACTIONS(1437), [anon_sym_is] = ACTIONS(1437), [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_stackalloc] = ACTIONS(1647), [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -74641,90 +74662,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_interpolation_close_brace] = ACTIONS(1435), + [sym_raw_string_start] = ACTIONS(1677), }, [191] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3727), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3658), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(191), [sym_preproc_endregion] = STATE(191), [sym_preproc_line] = STATE(191), @@ -74734,68 +74756,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), + [anon_sym_COLON] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1937), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), - [anon_sym_in] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1935), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), [anon_sym_and] = ACTIONS(1437), [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1949), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1939), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1949), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74824,8 +74846,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -74842,84 +74864,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [192] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2649), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2976), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(192), [sym_preproc_endregion] = STATE(192), [sym_preproc_line] = STATE(192), @@ -74929,68 +74951,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1757), [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1767), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1763), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), [anon_sym_and] = ACTIONS(1437), [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1789), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1771), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75006,21 +75028,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1437), [anon_sym_is] = ACTIONS(1437), [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1777), + [anon_sym_stackalloc] = ACTIONS(1793), [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -75031,90 +75053,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [193] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2598), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3784), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(193), [sym_preproc_endregion] = STATE(193), [sym_preproc_line] = STATE(193), @@ -75124,68 +75146,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym_list_pattern_repeat1] = STATE(7167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_RBRACK] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1953), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1953), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1763), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1437), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1739), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1737), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75201,21 +75223,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1437), [anon_sym_is] = ACTIONS(1437), [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1777), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -75226,90 +75248,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [194] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3904), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4423), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(194), [sym_preproc_endregion] = STATE(194), [sym_preproc_line] = STATE(194), @@ -75319,68 +75341,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(194), [sym_preproc_define] = STATE(194), [sym_preproc_undef] = STATE(194), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1365), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1365), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(693), [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(693), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(723), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(691), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75393,11 +75415,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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1437), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -75409,8 +75431,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -75427,84 +75449,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [195] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3579), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4417), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(195), [sym_preproc_endregion] = STATE(195), [sym_preproc_line] = STATE(195), @@ -75514,8 +75536,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(195), [sym_preproc_define] = STATE(195), [sym_preproc_undef] = STATE(195), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1957), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1951), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token3] = ACTIONS(1365), + [aux_sym_preproc_else_token1] = ACTIONS(1365), + [aux_sym_preproc_elif_token1] = ACTIONS(1365), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), + }, + [196] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3794), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(196), + [sym_preproc_endregion] = STATE(196), + [sym_preproc_line] = STATE(196), + [sym_preproc_pragma] = STATE(196), + [sym_preproc_nullable] = STATE(196), + [sym_preproc_error] = STATE(196), + [sym_preproc_warning] = STATE(196), + [sym_preproc_define] = STATE(196), + [sym_preproc_undef] = STATE(196), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), @@ -75523,8 +75740,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1605), [anon_sym_COLON] = ACTIONS(1435), [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), @@ -75537,44 +75754,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1969), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1971), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1963), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -75621,280 +75838,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_close_brace] = ACTIONS(1435), [sym_raw_string_start] = ACTIONS(1677), }, - [196] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3557), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(196), - [sym_preproc_endregion] = STATE(196), - [sym_preproc_line] = STATE(196), - [sym_preproc_pragma] = STATE(196), - [sym_preproc_nullable] = STATE(196), - [sym_preproc_error] = STATE(196), - [sym_preproc_warning] = STATE(196), - [sym_preproc_define] = STATE(196), - [sym_preproc_undef] = STATE(196), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = 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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), - }, [197] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3956), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3876), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(197), [sym_preproc_endregion] = STATE(197), [sym_preproc_line] = STATE(197), @@ -75904,8 +75926,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), @@ -75913,13 +75935,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1605), [anon_sym_COLON] = ACTIONS(1365), [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), + [anon_sym_new] = ACTIONS(1615), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(1603), @@ -75927,44 +75949,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1971), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1963), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -76012,84 +76034,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [198] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4054), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4155), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(198), [sym_preproc_endregion] = STATE(198), [sym_preproc_line] = STATE(198), @@ -76099,65 +76121,65 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1957), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1951), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76170,11 +76192,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(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -76186,11 +76208,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token3] = ACTIONS(1365), - [aux_sym_preproc_else_token1] = ACTIONS(1365), - [aux_sym_preproc_elif_token1] = ACTIONS(1365), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token3] = ACTIONS(1435), + [aux_sym_preproc_else_token1] = ACTIONS(1435), + [aux_sym_preproc_elif_token1] = ACTIONS(1435), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -76207,84 +76229,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [199] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3960), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2984), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(199), [sym_preproc_endregion] = STATE(199), [sym_preproc_line] = STATE(199), @@ -76294,65 +76316,68 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1379), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1901), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1891), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1901), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76365,27 +76390,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token3] = ACTIONS(1435), - [aux_sym_preproc_else_token1] = ACTIONS(1435), - [aux_sym_preproc_elif_token1] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_with] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -76396,90 +76418,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [200] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3850), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4061), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(200), [sym_preproc_endregion] = STATE(200), [sym_preproc_line] = STATE(200), @@ -76489,68 +76511,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1531), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), - [anon_sym_in] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_EQ_GT] = ACTIONS(1435), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), [anon_sym_and] = ACTIONS(1437), [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1987), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1977), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1987), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76579,8 +76601,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -76597,84 +76619,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [201] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3827), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4069), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(201), [sym_preproc_endregion] = STATE(201), [sym_preproc_line] = STATE(201), @@ -76684,68 +76706,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1531), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), - [anon_sym_in] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_EQ_GT] = ACTIONS(1365), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), [anon_sym_and] = ACTIONS(1379), [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1987), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1977), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1987), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76774,8 +76796,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -76792,84 +76814,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [202] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3733), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(202), [sym_preproc_endregion] = STATE(202), [sym_preproc_line] = STATE(202), @@ -76879,68 +76901,68 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2009), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_EQ_GT] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_EQ_GT] = ACTIONS(1435), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_and] = ACTIONS(1379), - [anon_sym_or] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2003), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1993), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2003), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76953,24 +76975,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_with] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -76981,90 +77003,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [203] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3704), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3727), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(203), [sym_preproc_endregion] = STATE(203), [sym_preproc_line] = STATE(203), @@ -77074,263 +77096,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_COLON] = ACTIONS(1365), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1379), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1969), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_interpolation_close_brace] = ACTIONS(1365), - [sym_raw_string_start] = ACTIONS(1677), - }, - [204] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2617), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(204), - [sym_preproc_endregion] = STATE(204), - [sym_preproc_line] = STATE(204), - [sym_preproc_pragma] = STATE(204), - [sym_preproc_nullable] = STATE(204), - [sym_preproc_error] = STATE(204), - [sym_preproc_warning] = STATE(204), - [sym_preproc_define] = STATE(204), - [sym_preproc_undef] = STATE(204), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1861), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1953), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1953), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1763), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_EQ_GT] = ACTIONS(1365), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), [anon_sym_and] = ACTIONS(1379), [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2003), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1993), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2003), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77346,21 +77173,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1379), [anon_sym_is] = ACTIONS(1379), [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1777), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -77371,161 +77198,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(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, - [205] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3493), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(205), - [sym_preproc_endregion] = STATE(205), - [sym_preproc_line] = STATE(205), - [sym_preproc_pragma] = STATE(205), - [sym_preproc_nullable] = STATE(205), - [sym_preproc_error] = STATE(205), - [sym_preproc_warning] = STATE(205), - [sym_preproc_define] = STATE(205), - [sym_preproc_undef] = STATE(205), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym_list_pattern_repeat1] = STATE(7164), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), + [204] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3915), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(204), + [sym_preproc_endregion] = STATE(204), + [sym_preproc_line] = STATE(204), + [sym_preproc_pragma] = STATE(204), + [sym_preproc_nullable] = STATE(204), + [sym_preproc_error] = STATE(204), + [sym_preproc_warning] = STATE(204), + [sym_preproc_define] = STATE(204), + [sym_preproc_undef] = STATE(204), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_COLON] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1873), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1863), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77538,24 +77365,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -77571,96 +77398,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [206] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3764), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(206), - [sym_preproc_endregion] = STATE(206), - [sym_preproc_line] = STATE(206), - [sym_preproc_pragma] = STATE(206), - [sym_preproc_nullable] = STATE(206), - [sym_preproc_error] = STATE(206), - [sym_preproc_warning] = STATE(206), - [sym_preproc_define] = STATE(206), - [sym_preproc_undef] = STATE(206), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [205] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3583), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(205), + [sym_preproc_endregion] = STATE(205), + [sym_preproc_line] = STATE(205), + [sym_preproc_pragma] = STATE(205), + [sym_preproc_nullable] = STATE(205), + [sym_preproc_error] = STATE(205), + [sym_preproc_warning] = STATE(205), + [sym_preproc_define] = STATE(205), + [sym_preproc_undef] = STATE(205), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -77672,7 +77499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1937), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), @@ -77680,47 +77507,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2009), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), [anon_sym_and] = ACTIONS(1437), [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2019), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2009), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77749,7 +77576,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), + }, + [206] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3655), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(206), + [sym_preproc_endregion] = STATE(206), + [sym_preproc_line] = STATE(206), + [sym_preproc_pragma] = STATE(206), + [sym_preproc_nullable] = STATE(206), + [sym_preproc_error] = STATE(206), + [sym_preproc_warning] = STATE(206), + [sym_preproc_define] = STATE(206), + [sym_preproc_undef] = STATE(206), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1937), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_EQ_GT] = ACTIONS(1365), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1379), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2019), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2009), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = 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(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_with] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -77767,84 +77789,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [207] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3566), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3184), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(207), [sym_preproc_endregion] = STATE(207), [sym_preproc_line] = STATE(207), @@ -77854,17 +77876,17 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1455), [anon_sym_LPAREN] = ACTIONS(2021), [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(2025), @@ -77874,47 +77896,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2027), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1391), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), [anon_sym_and] = ACTIONS(1437), [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2037), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2027), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77930,21 +77952,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1437), [anon_sym_is] = ACTIONS(1437), [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_stackalloc] = ACTIONS(1491), [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -77955,90 +77977,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [208] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3501), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4155), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(208), [sym_preproc_endregion] = STATE(208), [sym_preproc_line] = STATE(208), @@ -78048,67 +78070,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(2039), + [anon_sym_RBRACK] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2027), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), - [anon_sym_and] = ACTIONS(1379), - [anon_sym_or] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1957), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1951), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78121,24 +78143,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -78149,90 +78171,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [209] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3871), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4366), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(209), [sym_preproc_endregion] = STATE(209), [sym_preproc_line] = STATE(209), @@ -78242,20 +78264,20 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2045), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), @@ -78263,46 +78285,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2045), [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1537), + [anon_sym_this] = ACTIONS(1535), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(2053), [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), [anon_sym_and] = ACTIONS(1437), [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2057), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2047), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78331,7 +78353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -78349,84 +78371,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [210] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3513), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4316), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(210), [sym_preproc_endregion] = STATE(210), [sym_preproc_line] = STATE(210), @@ -78436,67 +78458,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2045), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2063), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2063), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1391), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), [anon_sym_and] = ACTIONS(1379), [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2057), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2047), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78512,21 +78534,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1379), [anon_sym_is] = ACTIONS(1379), [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -78537,90 +78559,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [211] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4057), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3866), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(211), [sym_preproc_endregion] = STATE(211), [sym_preproc_line] = STATE(211), @@ -78630,67 +78652,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(2063), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2045), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), - [anon_sym_and] = ACTIONS(1379), - [anon_sym_or] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2075), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2065), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2075), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78703,24 +78725,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_with] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -78731,90 +78753,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [212] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3114), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3822), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(212), [sym_preproc_endregion] = STATE(212), [sym_preproc_line] = STATE(212), @@ -78824,67 +78846,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(2063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1379), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2075), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2065), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2075), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78897,24 +78919,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_with] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -78925,90 +78947,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [213] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3462), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3872), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(213), [sym_preproc_endregion] = STATE(213), [sym_preproc_line] = STATE(213), @@ -79018,67 +79040,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(2081), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1379), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2093), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2083), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79091,11 +79113,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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_with] = ACTIONS(1437), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(1407), [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(1411), @@ -79107,7 +79129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -79125,84 +79147,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [214] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3512), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3940), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(214), [sym_preproc_endregion] = STATE(214), [sym_preproc_line] = STATE(214), @@ -79212,20 +79234,20 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2081), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), @@ -79233,46 +79255,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2063), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2063), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), [anon_sym_and] = ACTIONS(1437), [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2093), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2083), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79301,7 +79323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -79319,84 +79341,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [215] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2885), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3156), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(215), [sym_preproc_endregion] = STATE(215), [sym_preproc_line] = STATE(215), @@ -79406,67 +79428,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1379), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2037), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2027), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79479,11 +79501,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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1437), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(1497), @@ -79495,7 +79517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -79513,84 +79535,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [216] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2864), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3310), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(216), [sym_preproc_endregion] = STATE(216), [sym_preproc_line] = STATE(216), @@ -79600,67 +79622,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2099), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1477), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), [anon_sym_and] = ACTIONS(1379), [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2111), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2101), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79676,21 +79698,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1379), [anon_sym_is] = ACTIONS(1379), [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1503), [anon_sym_SQUOTE] = ACTIONS(1505), [sym_integer_literal] = ACTIONS(1503), [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -79707,84 +79729,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [217] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4078), - [sym_non_lvalue_expression] = STATE(4964), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4211), + [sym_non_lvalue_expression] = STATE(4466), [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(217), [sym_preproc_endregion] = STATE(217), [sym_preproc_line] = STATE(217), @@ -79794,67 +79816,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2135), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), - [anon_sym_and] = ACTIONS(1379), - [anon_sym_or] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2129), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2119), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79867,11 +79889,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(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(1549), @@ -79883,7 +79905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -79901,84 +79923,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [218] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4021), - [sym_non_lvalue_expression] = STATE(4964), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4208), + [sym_non_lvalue_expression] = STATE(4466), [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(218), [sym_preproc_endregion] = STATE(218), [sym_preproc_line] = STATE(218), @@ -79988,67 +80010,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2135), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1379), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2129), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2119), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80061,11 +80083,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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_with] = ACTIONS(1437), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(1549), @@ -80077,7 +80099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -80095,84 +80117,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [219] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4054), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3865), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(219), [sym_preproc_endregion] = STATE(219), [sym_preproc_line] = STATE(219), @@ -80182,67 +80204,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(2147), - [anon_sym_RBRACK] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2135), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1379), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2147), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2137), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80258,21 +80280,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1379), [anon_sym_is] = ACTIONS(1379), [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1405), [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -80283,90 +80305,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [220] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3476), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3900), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(220), [sym_preproc_endregion] = STATE(220), [sym_preproc_line] = STATE(220), @@ -80376,67 +80398,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(2135), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), - [anon_sym_and] = ACTIONS(1379), - [anon_sym_or] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2147), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2137), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80449,11 +80471,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(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(1407), [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(1411), @@ -80465,7 +80487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -80483,84 +80505,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [221] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3992), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4099), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(221), [sym_preproc_endregion] = STATE(221), [sym_preproc_line] = STATE(221), @@ -80570,8 +80592,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -80591,46 +80613,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2155), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), [anon_sym_and] = ACTIONS(1379), [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2165), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2155), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80659,7 +80681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -80677,84 +80699,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [222] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3128), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4102), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(222), [sym_preproc_endregion] = STATE(222), [sym_preproc_line] = STATE(222), @@ -80764,67 +80786,67 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), - [anon_sym_and] = ACTIONS(1379), - [anon_sym_or] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2165), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2155), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80837,24 +80859,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_with] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -80865,90 +80887,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [223] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4050), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3277), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(223), [sym_preproc_endregion] = STATE(223), [sym_preproc_line] = STATE(223), @@ -80958,67 +80980,67 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2099), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2155), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1537), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), [anon_sym_and] = ACTIONS(1437), [anon_sym_or] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2111), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2101), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81034,21 +81056,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1437), [anon_sym_is] = ACTIONS(1437), [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -81059,90 +81081,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [224] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4456), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4749), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(224), [sym_preproc_endregion] = STATE(224), [sym_preproc_line] = STATE(224), @@ -81152,66 +81174,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(224), [sym_preproc_define] = STATE(224), [sym_preproc_undef] = STATE(224), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2167), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(2171), - [anon_sym_PERCENT] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2173), - [anon_sym_BANG_EQ] = ACTIONS(2173), - [anon_sym_GT_EQ] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2173), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_EQ_GT] = ACTIONS(1365), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(2171), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_AMP_AMP] = ACTIONS(2173), - [anon_sym_PIPE_PIPE] = ACTIONS(2173), - [sym_op_coalescing] = ACTIONS(2173), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2181), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2171), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2181), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81224,11 +81246,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(2171), - [anon_sym_is] = ACTIONS(2171), - [anon_sym_DASH_GT] = ACTIONS(2173), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(2171), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -81240,8 +81262,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -81258,84 +81280,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [225] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3473), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4730), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(225), [sym_preproc_endregion] = STATE(225), [sym_preproc_line] = STATE(225), @@ -81345,66 +81367,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(225), [sym_preproc_define] = STATE(225), [sym_preproc_undef] = STATE(225), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2175), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_GT] = ACTIONS(2177), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(2177), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(2177), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [sym_op_coalescing] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2189), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2187), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81417,11 +81439,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(2177), - [anon_sym_is] = ACTIONS(2177), - [anon_sym_DASH_GT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(2177), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -81433,8 +81455,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -81451,99 +81473,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [226] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7050), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7060), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(3744), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4471), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(226), [sym_preproc_endregion] = STATE(226), [sym_preproc_line] = STATE(226), @@ -81553,55 +81560,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(226), [sym_preproc_define] = STATE(226), [sym_preproc_undef] = STATE(226), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_ref] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_EQ_GT] = ACTIONS(1365), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2205), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2195), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81614,20 +81632,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_with] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -81638,90 +81660,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [227] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4400), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4706), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(227), [sym_preproc_endregion] = STATE(227), [sym_preproc_line] = STATE(227), @@ -81731,66 +81753,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(227), [sym_preproc_define] = STATE(227), [sym_preproc_undef] = STATE(227), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2185), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(2171), - [anon_sym_PERCENT] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2173), - [anon_sym_BANG_EQ] = ACTIONS(2173), - [anon_sym_GT_EQ] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2173), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(2171), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_AMP_AMP] = ACTIONS(2173), - [anon_sym_PIPE_PIPE] = ACTIONS(2173), - [sym_op_coalescing] = ACTIONS(2173), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2219), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2211), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81803,24 +81825,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(2171), - [anon_sym_is] = ACTIONS(2171), - [anon_sym_DASH_GT] = ACTIONS(2173), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(2171), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_with] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -81831,105 +81853,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [228] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7066), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3060), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(228), [sym_preproc_endregion] = STATE(228), [sym_preproc_line] = STATE(228), @@ -81939,55 +81946,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2235), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2227), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82000,20 +82018,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_with] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -82024,90 +82046,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [229] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4512), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3032), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(229), [sym_preproc_endregion] = STATE(229), [sym_preproc_line] = STATE(229), @@ -82117,66 +82139,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1767), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2207), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2235), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2227), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82192,21 +82214,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1437), [anon_sym_is] = ACTIONS(1437), [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1793), [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -82217,90 +82239,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [230] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4388), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3094), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(230), [sym_preproc_endregion] = STATE(230), [sym_preproc_line] = STATE(230), @@ -82310,66 +82332,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(230), [sym_preproc_define] = STATE(230), [sym_preproc_undef] = STATE(230), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1889), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_EQ_GT] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2249), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2241), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82385,21 +82407,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1379), [anon_sym_is] = ACTIONS(1379), [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1793), [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -82410,105 +82432,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [231] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7151), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7131), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(231), [sym_preproc_endregion] = STATE(231), [sym_preproc_line] = STATE(231), @@ -82518,55 +82540,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2257), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82591,8 +82613,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -82609,99 +82631,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [232] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7209), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3756), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(232), [sym_preproc_endregion] = STATE(232), [sym_preproc_line] = STATE(232), @@ -82711,55 +82718,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2267), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(2231), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_GT] = ACTIONS(2269), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(2269), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2269), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_switch] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LT_EQ] = ACTIONS(2267), + [anon_sym_GT_EQ] = ACTIONS(2267), + [anon_sym_EQ_EQ] = ACTIONS(2267), + [anon_sym_BANG_EQ] = ACTIONS(2267), + [anon_sym_AMP_AMP] = ACTIONS(2267), + [anon_sym_PIPE_PIPE] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(121), + [sym_op_bitwise_or] = ACTIONS(2269), + [anon_sym_CARET] = ACTIONS(75), + [sym_op_left_shift] = ACTIONS(2267), + [sym_op_right_shift] = ACTIONS(2269), + [sym_op_unsigned_right_shift] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [sym_op_divide] = ACTIONS(2269), + [sym_op_modulo] = ACTIONS(2267), + [sym_op_coalescing] = ACTIONS(2267), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82772,7 +82790,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(2269), + [anon_sym_is] = ACTIONS(2269), + [anon_sym_DASH_GT] = ACTIONS(2267), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(2269), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -82784,8 +82806,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -82802,99 +82824,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [233] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7050), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7060), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(3744), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4724), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(233), [sym_preproc_endregion] = STATE(233), [sym_preproc_line] = STATE(233), @@ -82904,55 +82911,66 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_ref] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_EQ_GT] = ACTIONS(1435), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2181), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2171), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2181), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82965,7 +82983,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(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -82977,8 +82999,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -82995,99 +83017,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [234] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7050), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7144), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4326), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7017), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7269), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(3786), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(234), [sym_preproc_endregion] = STATE(234), [sym_preproc_line] = STATE(234), @@ -83097,55 +83119,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(2239), + [anon_sym_COMMA] = ACTIONS(2271), [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_ref] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_ref] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2275), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83170,8 +83192,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -83188,84 +83210,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [235] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4109), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4489), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(235), [sym_preproc_endregion] = STATE(235), [sym_preproc_line] = STATE(235), @@ -83275,15 +83297,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), @@ -83296,45 +83318,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1477), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2205), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2195), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83363,7 +83385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -83381,84 +83403,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [236] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4259), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4782), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(236), [sym_preproc_endregion] = STATE(236), [sym_preproc_line] = STATE(236), @@ -83468,66 +83490,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2277), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_GT] = ACTIONS(2281), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(2281), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_EQ_GT] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2281), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_AMP_AMP] = ACTIONS(2283), + [anon_sym_PIPE_PIPE] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(121), + [sym_op_bitwise_or] = ACTIONS(2281), + [anon_sym_CARET] = ACTIONS(75), + [sym_op_left_shift] = ACTIONS(2283), + [sym_op_right_shift] = ACTIONS(2281), + [sym_op_unsigned_right_shift] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [sym_op_divide] = ACTIONS(2281), + [sym_op_modulo] = ACTIONS(2283), + [sym_op_coalescing] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83540,24 +83562,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_is] = ACTIONS(2281), + [anon_sym_DASH_GT] = ACTIONS(2283), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(2281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -83568,90 +83590,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [237] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4135), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3099), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(237), [sym_preproc_endregion] = STATE(237), [sym_preproc_line] = STATE(237), @@ -83661,66 +83683,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1889), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), - [anon_sym_in] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2265), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2265), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1477), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2249), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2241), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83736,21 +83758,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1437), [anon_sym_is] = ACTIONS(1437), [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_stackalloc] = ACTIONS(1793), [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -83761,105 +83783,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [238] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7050), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7060), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4326), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4839), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(238), [sym_preproc_endregion] = STATE(238), [sym_preproc_line] = STATE(238), @@ -83869,55 +83876,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_ref] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_COLON] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), - [sym_discard] = ACTIONS(1333), [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2189), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2187), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83930,7 +83948,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(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -83942,8 +83964,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -83960,84 +83982,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [239] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2707), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5015), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(239), [sym_preproc_endregion] = STATE(239), [sym_preproc_line] = STATE(239), @@ -84047,66 +84069,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2285), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_GT] = ACTIONS(2281), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(2281), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2285), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2281), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_AMP_AMP] = ACTIONS(2283), + [anon_sym_PIPE_PIPE] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(121), + [sym_op_bitwise_or] = ACTIONS(2281), + [anon_sym_CARET] = ACTIONS(75), + [sym_op_left_shift] = ACTIONS(2283), + [sym_op_right_shift] = ACTIONS(2281), + [sym_op_unsigned_right_shift] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [sym_op_divide] = ACTIONS(2281), + [sym_op_modulo] = ACTIONS(2283), + [sym_op_coalescing] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84119,24 +84141,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1777), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_is] = ACTIONS(2281), + [anon_sym_DASH_GT] = ACTIONS(2283), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(2281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -84147,90 +84169,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(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [240] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2689), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7214), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(240), [sym_preproc_endregion] = STATE(240), [sym_preproc_line] = STATE(240), @@ -84240,66 +84277,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2285), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84312,24 +84338,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_as] = ACTIONS(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1777), - [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -84340,90 +84362,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [241] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2797), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4869), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(241), [sym_preproc_endregion] = STATE(241), [sym_preproc_line] = STATE(241), @@ -84433,66 +84455,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(241), [sym_preproc_define] = STATE(241), [sym_preproc_undef] = STATE(241), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2291), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_GT] = ACTIONS(2281), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(2281), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2299), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2299), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2281), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_AMP_AMP] = ACTIONS(2283), + [anon_sym_PIPE_PIPE] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(121), + [sym_op_bitwise_or] = ACTIONS(2281), + [anon_sym_CARET] = ACTIONS(75), + [sym_op_left_shift] = ACTIONS(2283), + [sym_op_right_shift] = ACTIONS(2281), + [sym_op_unsigned_right_shift] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [sym_op_divide] = ACTIONS(2281), + [sym_op_modulo] = ACTIONS(2283), + [sym_op_coalescing] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84505,24 +84527,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(1777), - [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_is] = ACTIONS(2281), + [anon_sym_DASH_GT] = ACTIONS(2283), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(2281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -84533,90 +84555,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [242] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4439), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4897), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(242), [sym_preproc_endregion] = STATE(242), [sym_preproc_line] = STATE(242), @@ -84626,66 +84648,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(242), [sym_preproc_define] = STATE(242), [sym_preproc_undef] = STATE(242), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_in] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2313), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2305), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2297), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84698,11 +84720,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(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -84714,8 +84736,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -84732,85 +84754,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [243] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4346), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(243), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4643), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(243), [sym_preproc_endregion] = STATE(243), [sym_preproc_line] = STATE(243), [sym_preproc_pragma] = STATE(243), @@ -84819,66 +84841,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(243), [sym_preproc_define] = STATE(243), [sym_preproc_undef] = STATE(243), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_in] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_in] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2313), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2219), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2211), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84891,24 +84913,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_with] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -84919,90 +84941,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [244] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2758), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7017), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7269), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(3786), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(244), [sym_preproc_endregion] = STATE(244), [sym_preproc_line] = STATE(244), @@ -85012,66 +85049,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(244), [sym_preproc_define] = STATE(244), [sym_preproc_undef] = STATE(244), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2299), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2299), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85084,24 +85110,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_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1777), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -85112,90 +85134,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [245] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4598), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4823), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(245), [sym_preproc_endregion] = STATE(245), [sym_preproc_line] = STATE(245), @@ -85205,66 +85227,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2325), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_in] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(2171), - [anon_sym_PERCENT] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2173), - [anon_sym_BANG_EQ] = ACTIONS(2173), - [anon_sym_GT_EQ] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2173), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(2171), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_AMP_AMP] = ACTIONS(2173), - [anon_sym_PIPE_PIPE] = ACTIONS(2173), - [sym_op_coalescing] = ACTIONS(2173), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2305), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2297), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85277,11 +85299,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(2171), - [anon_sym_is] = ACTIONS(2171), - [anon_sym_DASH_GT] = ACTIONS(2173), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(2171), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -85293,8 +85315,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -85311,99 +85333,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [246] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7306), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7179), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(246), [sym_preproc_endregion] = STATE(246), [sym_preproc_line] = STATE(246), @@ -85413,55 +85435,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(246), [sym_preproc_define] = STATE(246), [sym_preproc_undef] = STATE(246), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(2327), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2329), + [anon_sym_COMMA] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2315), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85486,8 +85508,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -85504,99 +85526,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [247] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7050), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7144), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(3744), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7346), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(247), [sym_preproc_endregion] = STATE(247), [sym_preproc_line] = STATE(247), @@ -85606,55 +85628,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(247), [sym_preproc_define] = STATE(247), [sym_preproc_undef] = STATE(247), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_ref] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_COMMA] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2319), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85679,8 +85701,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -85697,99 +85719,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [248] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7194), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7075), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(248), [sym_preproc_endregion] = STATE(248), [sym_preproc_line] = STATE(248), @@ -85799,55 +85821,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2323), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85872,8 +85894,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -85890,99 +85912,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [249] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2263), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7050), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7060), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(3744), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4989), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(249), [sym_preproc_endregion] = STATE(249), [sym_preproc_line] = STATE(249), @@ -85992,55 +85999,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2325), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(2339), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_ref] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_GT] = ACTIONS(2281), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(2281), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2281), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_AMP_AMP] = ACTIONS(2283), + [anon_sym_PIPE_PIPE] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(121), + [sym_op_bitwise_or] = ACTIONS(2281), + [anon_sym_CARET] = ACTIONS(75), + [sym_op_left_shift] = ACTIONS(2283), + [sym_op_right_shift] = ACTIONS(2281), + [sym_op_unsigned_right_shift] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [sym_op_divide] = ACTIONS(2281), + [sym_op_modulo] = ACTIONS(2283), + [sym_op_coalescing] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86053,7 +86071,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(2281), + [anon_sym_is] = ACTIONS(2281), + [anon_sym_DASH_GT] = ACTIONS(2283), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(2281), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -86065,8 +86087,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -86083,84 +86105,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [250] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4337), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7017), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7269), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(3786), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(250), [sym_preproc_endregion] = STATE(250), [sym_preproc_line] = STATE(250), @@ -86170,66 +86207,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(250), [sym_preproc_define] = STATE(250), [sym_preproc_undef] = STATE(250), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2343), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2329), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(2171), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(2171), - [anon_sym_PERCENT] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2173), - [anon_sym_BANG_EQ] = ACTIONS(2173), - [anon_sym_GT_EQ] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2173), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(2171), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_AMP_AMP] = ACTIONS(2173), - [anon_sym_PIPE_PIPE] = ACTIONS(2173), - [sym_op_coalescing] = ACTIONS(2173), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86242,11 +86268,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(2171), - [anon_sym_is] = ACTIONS(2171), - [anon_sym_DASH_GT] = ACTIONS(2173), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(2171), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -86258,8 +86280,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -86276,84 +86298,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [251] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4422), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7017), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7201), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(3786), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(251), [sym_preproc_endregion] = STATE(251), [sym_preproc_line] = STATE(251), @@ -86363,66 +86400,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(2331), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2333), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2207), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1329), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86435,11 +86461,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(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -86451,8 +86473,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -86469,84 +86491,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [252] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4279), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7271), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(252), [sym_preproc_endregion] = STATE(252), [sym_preproc_line] = STATE(252), @@ -86556,66 +86593,55 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_in] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2265), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2265), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86628,24 +86654,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_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -86656,90 +86678,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(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [253] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4411), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7017), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7269), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5059), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(253), [sym_preproc_endregion] = STATE(253), [sym_preproc_line] = STATE(253), @@ -86749,66 +86786,55 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2343), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1449), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86821,11 +86847,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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -86837,8 +86859,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -86855,99 +86877,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [254] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7295), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7017), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7201), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5059), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(254), [sym_preproc_endregion] = STATE(254), [sym_preproc_line] = STATE(254), @@ -86957,55 +86979,55 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_RBRACE] = ACTIONS(2347), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1449), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87030,8 +87052,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -87048,99 +87070,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [255] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7050), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7241), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4326), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7421), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(255), [sym_preproc_endregion] = STATE(255), [sym_preproc_line] = STATE(255), @@ -87150,54 +87172,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_ref] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_RBRACE] = ACTIONS(2349), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87222,8 +87244,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -87240,99 +87262,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [256] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7458), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4959), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(256), [sym_preproc_endregion] = STATE(256), [sym_preproc_line] = STATE(256), @@ -87342,54 +87349,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2367), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2357), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87402,7 +87420,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(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -87414,8 +87436,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -87432,84 +87454,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [257] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3135), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7017), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7113), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5059), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(257), [sym_preproc_endregion] = STATE(257), [sym_preproc_line] = STATE(257), @@ -87519,65 +87556,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(257), [sym_preproc_define] = STATE(257), [sym_preproc_undef] = STATE(257), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1449), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87590,24 +87616,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_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -87618,90 +87640,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(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [258] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4525), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7017), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7113), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5059), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(258), [sym_preproc_endregion] = STATE(258), [sym_preproc_line] = STATE(258), @@ -87711,65 +87748,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(258), [sym_preproc_define] = STATE(258), [sym_preproc_undef] = STATE(258), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2371), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2373), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1449), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87782,11 +87808,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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -87798,8 +87820,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -87816,99 +87838,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [259] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7458), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5012), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(259), [sym_preproc_endregion] = STATE(259), [sym_preproc_line] = STATE(259), @@ -87918,54 +87925,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2389), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2379), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87978,7 +87996,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(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -87990,8 +88012,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -88008,84 +88030,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [260] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4383), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7421), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(260), [sym_preproc_endregion] = STATE(260), [sym_preproc_line] = STATE(260), @@ -88095,65 +88132,54 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2391), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88166,11 +88192,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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -88182,8 +88204,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -88200,84 +88222,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [261] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3223), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3441), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(261), [sym_preproc_endregion] = STATE(261), [sym_preproc_line] = STATE(261), @@ -88287,65 +88309,65 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2409), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2405), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2397), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88358,11 +88380,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(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), @@ -88374,8 +88396,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -88392,99 +88414,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [262] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7458), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4702), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(262), [sym_preproc_endregion] = STATE(262), [sym_preproc_line] = STATE(262), @@ -88494,54 +88501,65 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2423), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2413), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88554,20 +88572,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_with] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -88578,105 +88600,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [263] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7458), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7421), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(263), [sym_preproc_endregion] = STATE(263), [sym_preproc_line] = STATE(263), @@ -88686,54 +88708,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(263), [sym_preproc_define] = STATE(263), [sym_preproc_undef] = STATE(263), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2425), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88758,8 +88780,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -88776,84 +88798,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [264] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4234), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7421), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(264), [sym_preproc_endregion] = STATE(264), [sym_preproc_line] = STATE(264), @@ -88863,65 +88900,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(264), [sym_preproc_define] = STATE(264), [sym_preproc_undef] = STATE(264), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88934,24 +88960,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_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -88962,105 +88984,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [265] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7458), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5091), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(265), [sym_preproc_endregion] = STATE(265), [sym_preproc_line] = STATE(265), @@ -89070,54 +89077,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2367), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2357), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89130,7 +89148,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(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -89142,8 +89164,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -89160,99 +89182,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [266] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7458), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7421), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(266), [sym_preproc_endregion] = STATE(266), [sym_preproc_line] = STATE(266), @@ -89262,54 +89284,54 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2429), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89334,8 +89356,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -89352,99 +89374,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [267] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7050), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7241), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4326), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4537), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(267), [sym_preproc_endregion] = STATE(267), [sym_preproc_line] = STATE(267), @@ -89454,54 +89461,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(267), [sym_preproc_define] = STATE(267), [sym_preproc_undef] = STATE(267), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_ref] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2445), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2423), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2413), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89514,20 +89532,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_with] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -89538,105 +89560,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [268] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7458), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4696), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(268), [sym_preproc_endregion] = STATE(268), [sym_preproc_line] = STATE(268), @@ -89646,242 +89653,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), - }, - [269] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3148), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(269), - [sym_preproc_endregion] = STATE(269), - [sym_preproc_line] = STATE(269), - [sym_preproc_pragma] = STATE(269), - [sym_preproc_nullable] = STATE(269), - [sym_preproc_error] = STATE(269), - [sym_preproc_warning] = STATE(269), - [sym_preproc_define] = STATE(269), - [sym_preproc_undef] = STATE(269), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2447), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2437), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89894,11 +89724,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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1437), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(1497), @@ -89910,7 +89740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -89927,157 +89757,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1517), [sym_raw_string_start] = ACTIONS(1519), }, - [270] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7458), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(270), - [sym_preproc_endregion] = STATE(270), - [sym_preproc_line] = STATE(270), - [sym_preproc_pragma] = STATE(270), - [sym_preproc_nullable] = STATE(270), - [sym_preproc_error] = STATE(270), - [sym_preproc_warning] = STATE(270), - [sym_preproc_define] = STATE(270), - [sym_preproc_undef] = STATE(270), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [269] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7421), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(269), + [sym_preproc_endregion] = STATE(269), + [sym_preproc_line] = STATE(269), + [sym_preproc_pragma] = STATE(269), + [sym_preproc_nullable] = STATE(269), + [sym_preproc_error] = STATE(269), + [sym_preproc_warning] = STATE(269), + [sym_preproc_define] = STATE(269), + [sym_preproc_undef] = STATE(269), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_RBRACE] = ACTIONS(2449), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90102,8 +89932,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -90119,108 +89949,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [271] = { - [sym_attribute_list] = STATE(5927), + [270] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4265), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(271), - [sym_preproc_endregion] = STATE(271), - [sym_preproc_line] = STATE(271), - [sym_preproc_pragma] = STATE(271), - [sym_preproc_nullable] = STATE(271), - [sym_preproc_error] = STATE(271), - [sym_preproc_warning] = STATE(271), - [sym_preproc_define] = STATE(271), - [sym_preproc_undef] = STATE(271), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4518), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(270), + [sym_preproc_endregion] = STATE(270), + [sym_preproc_line] = STATE(270), + [sym_preproc_pragma] = STATE(270), + [sym_preproc_nullable] = STATE(270), + [sym_preproc_error] = STATE(270), + [sym_preproc_warning] = STATE(270), + [sym_preproc_define] = STATE(270), + [sym_preproc_undef] = STATE(270), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(2455), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), @@ -90228,44 +90058,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1477), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2467), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2457), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90294,7 +90124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -90311,85 +90141,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1517), [sym_raw_string_start] = ACTIONS(1519), }, + [271] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7421), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(271), + [sym_preproc_endregion] = STATE(271), + [sym_preproc_line] = STATE(271), + [sym_preproc_pragma] = STATE(271), + [sym_preproc_nullable] = STATE(271), + [sym_preproc_error] = STATE(271), + [sym_preproc_warning] = STATE(271), + [sym_preproc_define] = STATE(271), + [sym_preproc_undef] = STATE(271), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), + }, [272] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4502), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4931), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(272), [sym_preproc_endregion] = STATE(272), [sym_preproc_line] = STATE(272), @@ -90399,65 +90421,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(272), [sym_preproc_define] = STATE(272), [sym_preproc_undef] = STATE(272), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2389), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2379), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90470,11 +90492,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(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1379), + [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -90486,8 +90508,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -90504,84 +90526,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [273] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4225), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7421), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(273), [sym_preproc_endregion] = STATE(273), [sym_preproc_line] = STATE(273), @@ -90591,65 +90628,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(273), [sym_preproc_define] = STATE(273), [sym_preproc_undef] = STATE(273), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2457), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2457), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90662,24 +90688,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_as] = ACTIONS(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -90690,90 +90712,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [274] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3195), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5076), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(274), [sym_preproc_endregion] = STATE(274), [sym_preproc_line] = STATE(274), @@ -90783,20 +90805,20 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2477), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), @@ -90804,44 +90826,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2409), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2489), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2479), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90859,19 +90881,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -90882,105 +90904,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(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [275] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7458), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7421), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(275), [sym_preproc_endregion] = STATE(275), [sym_preproc_line] = STATE(275), @@ -90990,54 +91012,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2491), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91062,8 +91084,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -91080,84 +91102,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [276] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4638), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(276), [sym_preproc_endregion] = STATE(276), [sym_preproc_line] = STATE(276), @@ -91167,20 +91189,20 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2435), [anon_sym_LT] = ACTIONS(1437), [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), @@ -91188,44 +91210,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2457), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2457), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1477), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), [anon_sym_AMP_AMP] = ACTIONS(1435), [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2447), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2437), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91254,7 +91276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -91272,99 +91294,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [277] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7050), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7241), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4326), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3395), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(277), [sym_preproc_endregion] = STATE(277), [sym_preproc_line] = STATE(277), @@ -91374,54 +91381,65 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_ref] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(2505), + [sym_op_bitwise_or] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(2497), + [sym_op_left_shift] = ACTIONS(1435), + [sym_op_right_shift] = ACTIONS(1437), + [sym_op_unsigned_right_shift] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [sym_op_divide] = ACTIONS(1437), + [sym_op_modulo] = ACTIONS(1435), + [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91434,20 +91452,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_is] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_with] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -91458,90 +91480,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [278] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4169), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3399), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(278), [sym_preproc_endregion] = STATE(278), [sym_preproc_line] = STATE(278), @@ -91551,65 +91573,65 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2505), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2497), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91622,11 +91644,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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_with] = ACTIONS(1437), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(1497), @@ -91638,7 +91660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -91656,84 +91678,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [279] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4122), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4509), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(279), [sym_preproc_endregion] = STATE(279), [sym_preproc_line] = STATE(279), @@ -91743,20 +91765,20 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2455), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), @@ -91764,44 +91786,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1477), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2467), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2457), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91830,7 +91852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -91848,84 +91870,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [280] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4532), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7017), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7113), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5059), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(280), [sym_preproc_endregion] = STATE(280), [sym_preproc_line] = STATE(280), @@ -91935,65 +91972,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2507), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2373), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1449), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92006,11 +92032,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(1379), - [anon_sym_is] = ACTIONS(1379), - [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -92022,8 +92044,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -92040,84 +92062,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [281] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4335), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7421), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(281), [sym_preproc_endregion] = STATE(281), [sym_preproc_line] = STATE(281), @@ -92127,65 +92164,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(281), [sym_preproc_define] = STATE(281), [sym_preproc_undef] = STATE(281), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2509), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1437), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92198,11 +92224,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(1437), - [anon_sym_is] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1435), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1437), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -92214,8 +92236,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -92232,99 +92254,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [282] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7458), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7017), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7113), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5059), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(282), [sym_preproc_endregion] = STATE(282), [sym_preproc_line] = STATE(282), @@ -92334,54 +92356,54 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2511), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1449), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92406,8 +92428,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -92424,99 +92446,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [283] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7458), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7421), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(283), [sym_preproc_endregion] = STATE(283), [sym_preproc_line] = STATE(283), @@ -92526,54 +92548,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(283), [sym_preproc_define] = STATE(283), [sym_preproc_undef] = STATE(283), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2513), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92598,8 +92620,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -92616,84 +92638,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [284] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4428), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3462), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(284), [sym_preproc_endregion] = STATE(284), [sym_preproc_line] = STATE(284), @@ -92703,20 +92725,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(284), [sym_preproc_define] = STATE(284), [sym_preproc_undef] = STATE(284), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2099), [anon_sym_LT] = ACTIONS(1379), [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), @@ -92724,44 +92746,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_GT_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2405), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2397), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92779,19 +92801,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -92802,105 +92824,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [285] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7458), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7421), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(285), [sym_preproc_endregion] = STATE(285), [sym_preproc_line] = STATE(285), @@ -92910,54 +92932,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(285), [sym_preproc_define] = STATE(285), [sym_preproc_undef] = STATE(285), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(2515), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92982,8 +93004,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -93000,99 +93022,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [286] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7050), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7241), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4326), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4862), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(286), [sym_preproc_endregion] = STATE(286), [sym_preproc_line] = STATE(286), @@ -93102,54 +93109,65 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_ref] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1379), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(2489), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(2479), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93162,7 +93180,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(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_DASH_GT] = ACTIONS(1365), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -93174,8 +93196,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -93192,98 +93214,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [287] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(287), [sym_preproc_endregion] = STATE(287), [sym_preproc_line] = STATE(287), @@ -93293,54 +93315,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_RBRACK] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1265), [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93365,8 +93387,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -93383,98 +93405,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [288] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(288), [sym_preproc_endregion] = STATE(288), [sym_preproc_line] = STATE(288), @@ -93484,54 +93506,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(288), [sym_preproc_define] = STATE(288), [sym_preproc_undef] = STATE(288), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_RBRACK] = ACTIONS(2523), - [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1265), [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93556,8 +93578,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -93574,86 +93596,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [289] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_variable_declaration] = STATE(8125), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6131), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3591), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(289), [sym_preproc_endregion] = STATE(289), [sym_preproc_line] = STATE(289), @@ -93663,66 +93697,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(4055), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2626), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2525), - [anon_sym_unsafe] = ACTIONS(657), - [anon_sym_static] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(665), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(2527), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(2521), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93747,8 +93769,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -93765,98 +93787,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [290] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_variable_declaration] = STATE(7861), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6147), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3780), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(290), [sym_preproc_endregion] = STATE(290), [sym_preproc_line] = STATE(290), @@ -93866,54 +93876,66 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2582), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(2531), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_unsafe] = ACTIONS(657), + [anon_sym_static] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(665), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(683), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(2529), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_foreach] = ACTIONS(2531), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93938,8 +93960,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -93956,98 +93978,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [291] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(291), [sym_preproc_endregion] = STATE(291), [sym_preproc_line] = STATE(291), @@ -94057,54 +94079,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(291), [sym_preproc_define] = STATE(291), [sym_preproc_undef] = STATE(291), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_RBRACK] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1265), [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94129,8 +94151,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -94147,86 +94169,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [292] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_variable_declaration] = STATE(8034), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6131), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3591), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(292), [sym_preproc_endregion] = STATE(292), [sym_preproc_line] = STATE(292), @@ -94236,66 +94270,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(292), [sym_preproc_define] = STATE(292), [sym_preproc_undef] = STATE(292), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2624), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2535), - [anon_sym_unsafe] = ACTIONS(657), - [anon_sym_static] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(665), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(2527), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(2521), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94320,8 +94342,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -94338,98 +94360,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [293] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(293), [sym_preproc_endregion] = STATE(293), [sym_preproc_line] = STATE(293), @@ -94439,54 +94461,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(293), [sym_preproc_define] = STATE(293), [sym_preproc_undef] = STATE(293), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_RBRACK] = ACTIONS(2537), - [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1265), [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94511,8 +94533,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -94529,98 +94551,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [294] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(294), [sym_preproc_endregion] = STATE(294), [sym_preproc_line] = STATE(294), @@ -94630,54 +94652,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(294), [sym_preproc_define] = STATE(294), [sym_preproc_undef] = STATE(294), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_RBRACK] = ACTIONS(2539), - [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1265), [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94702,8 +94724,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -94720,99 +94742,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [295] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7037), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7241), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4396), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(295), [sym_preproc_endregion] = STATE(295), [sym_preproc_line] = STATE(295), @@ -94822,16 +94843,17 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_ref] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), @@ -94842,33 +94864,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2543), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(2521), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94893,8 +94915,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -94911,98 +94933,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [296] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(296), [sym_preproc_endregion] = STATE(296), [sym_preproc_line] = STATE(296), @@ -95012,54 +95034,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(296), [sym_preproc_define] = STATE(296), [sym_preproc_undef] = STATE(296), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RBRACK] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(1265), [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95084,8 +95106,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -95102,98 +95124,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [297] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(297), [sym_preproc_endregion] = STATE(297), [sym_preproc_line] = STATE(297), @@ -95203,54 +95225,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RBRACK] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(1265), [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95275,8 +95297,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -95293,98 +95315,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [298] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_switch_expression_arm] = STATE(7421), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(298), [sym_preproc_endregion] = STATE(298), [sym_preproc_line] = STATE(298), @@ -95394,54 +95417,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(298), [sym_preproc_define] = STATE(298), [sym_preproc_undef] = STATE(298), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95466,8 +95488,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -95484,98 +95506,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [299] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7017), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7113), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5059), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(299), [sym_preproc_endregion] = STATE(299), [sym_preproc_line] = STATE(299), @@ -95585,54 +95608,53 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1449), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95657,8 +95679,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -95675,98 +95697,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [300] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(300), [sym_preproc_endregion] = STATE(300), [sym_preproc_line] = STATE(300), @@ -95776,54 +95798,54 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RBRACK] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(1265), [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95848,8 +95870,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -95866,86 +95888,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [301] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6131), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3591), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(301), [sym_preproc_endregion] = STATE(301), [sym_preproc_line] = STATE(301), @@ -95955,66 +95989,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(4055), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2585), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2555), - [anon_sym_unsafe] = ACTIONS(657), - [anon_sym_static] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(2549), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(665), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(2527), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(2521), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96039,8 +96061,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -96057,98 +96079,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [302] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_variable_declaration] = STATE(7861), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6147), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4051), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(302), [sym_preproc_endregion] = STATE(302), [sym_preproc_line] = STATE(302), @@ -96158,54 +96168,66 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2582), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_using] = ACTIONS(2527), + [anon_sym_unsafe] = ACTIONS(657), + [anon_sym_static] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(665), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(683), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(2529), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_foreach] = ACTIONS(2531), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96230,8 +96252,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -96248,98 +96270,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [303] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(303), [sym_preproc_endregion] = STATE(303), [sym_preproc_line] = STATE(303), @@ -96349,54 +96371,54 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(2559), - [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RBRACK] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(1265), [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96421,8 +96443,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -96439,98 +96461,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [304] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6935), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_subpattern] = STATE(7113), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(4986), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(304), [sym_preproc_endregion] = STATE(304), [sym_preproc_line] = STATE(304), @@ -96540,54 +96563,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2555), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1449), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96612,8 +96634,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -96630,98 +96652,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [305] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(305), [sym_preproc_endregion] = STATE(305), [sym_preproc_line] = STATE(305), @@ -96731,54 +96753,54 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(2563), - [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RBRACK] = ACTIONS(2557), + [anon_sym_LPAREN] = ACTIONS(1265), [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96803,8 +96825,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -96821,99 +96843,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [306] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7050), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_subpattern] = STATE(7241), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4326), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_variable_declaration] = STATE(7859), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6147), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3780), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(306), [sym_preproc_endregion] = STATE(306), [sym_preproc_line] = STATE(306), @@ -96923,53 +96932,66 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2581), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_ref] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_unsafe] = ACTIONS(657), + [anon_sym_static] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(665), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(683), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(2529), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_foreach] = ACTIONS(2531), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96994,8 +97016,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -97012,86 +97034,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [307] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_variable_declaration] = STATE(7884), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6131), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3591), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(307), [sym_preproc_endregion] = STATE(307), [sym_preproc_line] = STATE(307), @@ -97101,66 +97135,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(307), [sym_preproc_define] = STATE(307), [sym_preproc_undef] = STATE(307), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2614), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2565), - [anon_sym_unsafe] = ACTIONS(657), - [anon_sym_static] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(2561), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(665), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(683), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(2527), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(2521), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -97185,8 +97207,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -97203,86 +97225,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [308] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6131), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3786), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_variable_declaration] = STATE(7668), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6147), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3780), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(308), [sym_preproc_endregion] = STATE(308), [sym_preproc_line] = STATE(308), @@ -97292,19 +97314,19 @@ 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(4055), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2585), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2595), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2563), [anon_sym_unsafe] = ACTIONS(657), [anon_sym_static] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), @@ -97316,7 +97338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_file] = ACTIONS(683), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(2529), [anon_sym_override] = ACTIONS(657), [anon_sym_partial] = ACTIONS(657), [anon_sym_protected] = ACTIONS(657), @@ -97328,30 +97350,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_foreach] = ACTIONS(2531), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -97376,8 +97398,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -97394,99 +97416,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [309] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_switch_expression_arm] = STATE(7458), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), + [sym_variable_declaration] = STATE(7854), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6147), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3780), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(309), [sym_preproc_endregion] = STATE(309), [sym_preproc_line] = STATE(309), @@ -97496,53 +97505,66 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2579), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_using] = ACTIONS(2565), + [anon_sym_unsafe] = ACTIONS(657), + [anon_sym_static] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(665), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(683), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(2529), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_foreach] = ACTIONS(2531), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -97567,8 +97589,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -97585,98 +97607,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [310] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7043), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2952), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2324), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2483), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5896), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2584), + [sym_property_pattern_clause] = STATE(2630), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5112), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(310), [sym_preproc_endregion] = STATE(310), [sym_preproc_line] = STATE(310), @@ -97686,53 +97708,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2543), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2575), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2581), + [anon_sym_GT_EQ] = ACTIONS(2581), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -97757,8 +97779,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -97775,98 +97797,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [311] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3134), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2320), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2477), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5889), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2625), - [sym_property_pattern_clause] = STATE(2705), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6946), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(311), [sym_preproc_endregion] = STATE(311), [sym_preproc_line] = STATE(311), @@ -97876,53 +97898,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2577), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2555), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2581), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -97947,8 +97969,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -97965,98 +97987,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [312] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5876), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6873), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4362), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5921), - [sym_postfix_unary_expression] = STATE(5920), - [sym_prefix_unary_expression] = STATE(5920), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5921), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5920), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5921), - [sym_member_access_expression] = STATE(4971), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5920), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5921), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5921), - [sym_typeof_expression] = STATE(5921), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4971), - [sym_literal] = STATE(5921), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2962), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2503), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5344), + [sym_constant_pattern] = STATE(5193), + [sym_parenthesized_pattern] = STATE(5193), + [sym_var_pattern] = STATE(5193), + [sym_type_pattern] = STATE(5193), + [sym_list_pattern] = STATE(5193), + [sym_recursive_pattern] = STATE(5193), + [sym_positional_pattern_clause] = STATE(2607), + [sym_property_pattern_clause] = STATE(2660), + [sym_relational_pattern] = STATE(5193), + [sym_negated_pattern] = STATE(5193), + [sym_and_pattern] = STATE(5193), + [sym_or_pattern] = STATE(5193), + [sym_declaration_pattern] = STATE(5193), + [sym_expression] = STATE(5106), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5276), + [sym_postfix_unary_expression] = STATE(5195), + [sym_prefix_unary_expression] = STATE(5195), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5276), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5195), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5276), + [sym_member_access_expression] = STATE(3063), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5195), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5276), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5276), + [sym_typeof_expression] = STATE(5276), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3063), + [sym_literal] = STATE(5276), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(312), [sym_preproc_endregion] = STATE(312), [sym_preproc_line] = STATE(312), @@ -98066,53 +98088,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_ref] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_GT] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_GT] = ACTIONS(2593), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(2591), - [anon_sym_LT_EQ] = ACTIONS(2591), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2593), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2595), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2597), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2599), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(2597), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2601), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2603), + [anon_sym_GT_EQ] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98126,19 +98148,19 @@ static const uint16_t ts_parse_table[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(1795), + [anon_sym_typeof] = ACTIONS(1797), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -98149,104 +98171,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [313] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2492), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4887), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4636), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2481), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4200), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5145), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(313), [sym_preproc_endregion] = STATE(313), [sym_preproc_line] = STATE(313), @@ -98256,53 +98278,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_GT] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_GT] = ACTIONS(2613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2605), - [anon_sym_LT_EQ] = ACTIONS(2605), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2607), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2613), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98327,8 +98349,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -98345,98 +98367,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [314] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2510), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5936), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2659), - [sym_property_pattern_clause] = STATE(2787), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4612), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2981), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2352), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2529), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5971), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2643), + [sym_property_pattern_clause] = STATE(2752), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5121), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(314), [sym_preproc_endregion] = STATE(314), [sym_preproc_line] = STATE(314), @@ -98446,53 +98468,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2615), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2619), - [anon_sym_GT] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2623), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2625), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98517,8 +98539,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -98535,98 +98557,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [315] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2898), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2300), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(2422), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7499), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7860), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5780), - [sym_constant_pattern] = STATE(5726), - [sym_parenthesized_pattern] = STATE(5726), - [sym_var_pattern] = STATE(5726), - [sym_type_pattern] = STATE(5726), - [sym_list_pattern] = STATE(5726), - [sym_recursive_pattern] = STATE(5726), - [sym_positional_pattern_clause] = STATE(2568), - [sym_property_pattern_clause] = STATE(2642), - [sym_relational_pattern] = STATE(5726), - [sym_negated_pattern] = STATE(5726), - [sym_and_pattern] = STATE(5726), - [sym_or_pattern] = STATE(5726), - [sym_declaration_pattern] = STATE(5726), - [sym_expression] = STATE(4635), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5649), - [sym_postfix_unary_expression] = STATE(5685), - [sym_prefix_unary_expression] = STATE(5685), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5649), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5685), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5649), - [sym_member_access_expression] = STATE(4701), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5685), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5649), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5649), - [sym_typeof_expression] = STATE(5649), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4701), - [sym_literal] = STATE(5649), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2512), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4456), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5133), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(315), [sym_preproc_endregion] = STATE(315), [sym_preproc_line] = STATE(315), @@ -98636,243 +98658,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2629), - [anon_sym_ref] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_delegate] = ACTIONS(2635), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(2639), - [anon_sym_LT_EQ] = ACTIONS(2639), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2641), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2643), - [sym_predefined_type] = ACTIONS(2645), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2647), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), - }, - [316] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2510), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2659), - [sym_property_pattern_clause] = STATE(2787), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4612), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2615), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2633), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2619), - [anon_sym_GT] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2623), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2625), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98897,8 +98729,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), + }, + [316] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2280), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5719), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5122), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [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(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -98915,98 +98937,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [317] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2510), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5950), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2659), - [sym_property_pattern_clause] = STATE(2787), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4612), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2679), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2274), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5764), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5114), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(317), [sym_preproc_endregion] = STATE(317), [sym_preproc_line] = STATE(317), @@ -99016,53 +99038,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(317), [sym_preproc_define] = STATE(317), [sym_preproc_undef] = STATE(317), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2615), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2619), - [anon_sym_GT] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_GT] = ACTIONS(2653), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2623), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2625), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2655), + [anon_sym_GT_EQ] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99087,8 +99109,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -99105,98 +99127,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [318] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3166), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2327), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2483), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5335), - [sym_constant_pattern] = STATE(5206), - [sym_parenthesized_pattern] = STATE(5206), - [sym_var_pattern] = STATE(5206), - [sym_type_pattern] = STATE(5206), - [sym_list_pattern] = STATE(5206), - [sym_recursive_pattern] = STATE(5206), - [sym_positional_pattern_clause] = STATE(2668), - [sym_property_pattern_clause] = STATE(2765), - [sym_relational_pattern] = STATE(5206), - [sym_negated_pattern] = STATE(5206), - [sym_and_pattern] = STATE(5206), - [sym_or_pattern] = STATE(5206), - [sym_declaration_pattern] = STATE(5206), - [sym_expression] = STATE(4613), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5274), - [sym_postfix_unary_expression] = STATE(5273), - [sym_prefix_unary_expression] = STATE(5273), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5274), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5273), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5274), - [sym_member_access_expression] = STATE(3288), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5273), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5274), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5274), - [sym_typeof_expression] = STATE(5274), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3288), - [sym_literal] = STATE(5274), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2993), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2358), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2567), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5929), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2649), + [sym_property_pattern_clause] = STATE(2830), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5130), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(318), [sym_preproc_endregion] = STATE(318), [sym_preproc_line] = STATE(318), @@ -99206,53 +99228,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(318), [sym_preproc_define] = STATE(318), [sym_preproc_undef] = STATE(318), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_GT] = ACTIONS(2661), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_GT_EQ] = ACTIONS(2657), - [anon_sym_LT_EQ] = ACTIONS(2657), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2659), - [sym_predefined_type] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2663), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2665), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2665), + [anon_sym_GT_EQ] = ACTIONS(2665), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99266,19 +99288,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -99289,104 +99311,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [319] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2268), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5485), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4627), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2993), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2358), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2567), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4142), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2649), + [sym_property_pattern_clause] = STATE(2830), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5130), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(319), [sym_preproc_endregion] = STATE(319), [sym_preproc_line] = STATE(319), @@ -99396,53 +99418,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(319), [sym_preproc_define] = STATE(319), [sym_preproc_undef] = STATE(319), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_GT] = ACTIONS(2661), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(2671), - [anon_sym_LT_EQ] = ACTIONS(2671), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2675), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2665), + [anon_sym_GT_EQ] = ACTIONS(2665), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99467,8 +99489,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -99485,98 +99507,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [320] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2492), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5908), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4636), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2993), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2358), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2567), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5904), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2649), + [sym_property_pattern_clause] = STATE(2830), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5130), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(320), [sym_preproc_endregion] = STATE(320), [sym_preproc_line] = STATE(320), @@ -99586,53 +99608,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(320), [sym_preproc_define] = STATE(320), [sym_preproc_undef] = STATE(320), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_GT] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_GT] = ACTIONS(2661), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2605), - [anon_sym_LT_EQ] = ACTIONS(2605), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2607), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2613), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2665), + [anon_sym_GT_EQ] = ACTIONS(2665), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99657,8 +99679,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -99675,98 +99697,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [321] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2766), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2268), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5590), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4621), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2714), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2285), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2422), + [sym_implicit_type] = STATE(2708), + [sym_array_type] = STATE(2704), + [sym__array_base_type] = STATE(7506), + [sym_nullable_type] = STATE(2703), + [sym_pointer_type] = STATE(2703), + [sym__pointer_base_type] = STATE(7811), + [sym_function_pointer_type] = STATE(2703), + [sym_ref_type] = STATE(2708), + [sym_scoped_type] = STATE(2708), + [sym_tuple_type] = STATE(2702), + [sym_pattern] = STATE(5848), + [sym_constant_pattern] = STATE(5675), + [sym_parenthesized_pattern] = STATE(5675), + [sym_var_pattern] = STATE(5675), + [sym_type_pattern] = STATE(5675), + [sym_list_pattern] = STATE(5675), + [sym_recursive_pattern] = STATE(5675), + [sym_positional_pattern_clause] = STATE(2534), + [sym_property_pattern_clause] = STATE(2606), + [sym_relational_pattern] = STATE(5675), + [sym_negated_pattern] = STATE(5675), + [sym_and_pattern] = STATE(5675), + [sym_or_pattern] = STATE(5675), + [sym_declaration_pattern] = STATE(5675), + [sym_expression] = STATE(5111), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5743), + [sym_postfix_unary_expression] = STATE(5792), + [sym_prefix_unary_expression] = STATE(5792), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5743), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5792), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5743), + [sym_member_access_expression] = STATE(3812), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5792), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5743), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5743), + [sym_typeof_expression] = STATE(5743), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3812), + [sym_literal] = STATE(5743), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(321), [sym_preproc_endregion] = STATE(321), [sym_preproc_line] = STATE(321), @@ -99776,79 +99798,79 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2671), + [anon_sym_ref] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_delegate] = ACTIONS(2677), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_GT_EQ] = ACTIONS(2683), - [anon_sym_LT_EQ] = ACTIONS(2683), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2681), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2685), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2687), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2689), + [anon_sym_GT_EQ] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -99859,104 +99881,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [322] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3142), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2348), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2508), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5205), - [sym_constant_pattern] = STATE(5206), - [sym_parenthesized_pattern] = STATE(5206), - [sym_var_pattern] = STATE(5206), - [sym_type_pattern] = STATE(5206), - [sym_list_pattern] = STATE(5206), - [sym_recursive_pattern] = STATE(5206), - [sym_positional_pattern_clause] = STATE(2646), - [sym_property_pattern_clause] = STATE(2739), - [sym_relational_pattern] = STATE(5206), - [sym_negated_pattern] = STATE(5206), - [sym_and_pattern] = STATE(5206), - [sym_or_pattern] = STATE(5206), - [sym_declaration_pattern] = STATE(5206), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5274), - [sym_postfix_unary_expression] = STATE(5273), - [sym_prefix_unary_expression] = STATE(5273), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5274), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5273), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5274), - [sym_member_access_expression] = STATE(3288), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5273), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5274), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5274), - [sym_typeof_expression] = STATE(5274), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3288), - [sym_literal] = STATE(5274), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(322), [sym_preproc_endregion] = STATE(322), [sym_preproc_line] = STATE(322), @@ -99966,53 +99988,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2659), - [sym_predefined_type] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2663), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2695), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(2521), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100026,19 +100048,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -100049,104 +100071,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [323] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2280), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4615), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2988), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2532), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5511), + [sym_constant_pattern] = STATE(5512), + [sym_parenthesized_pattern] = STATE(5512), + [sym_var_pattern] = STATE(5512), + [sym_type_pattern] = STATE(5512), + [sym_list_pattern] = STATE(5512), + [sym_recursive_pattern] = STATE(5512), + [sym_positional_pattern_clause] = STATE(2623), + [sym_property_pattern_clause] = STATE(2842), + [sym_relational_pattern] = STATE(5512), + [sym_negated_pattern] = STATE(5512), + [sym_and_pattern] = STATE(5512), + [sym_or_pattern] = STATE(5512), + [sym_declaration_pattern] = STATE(5512), + [sym_expression] = STATE(5108), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5519), + [sym_postfix_unary_expression] = STATE(5521), + [sym_prefix_unary_expression] = STATE(5521), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5519), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5521), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5519), + [sym_member_access_expression] = STATE(3401), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5521), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5519), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5519), + [sym_typeof_expression] = STATE(5519), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3401), + [sym_literal] = STATE(5519), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(323), [sym_preproc_endregion] = STATE(323), [sym_preproc_line] = STATE(323), @@ -100156,53 +100178,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2699), - [anon_sym_GT] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_GT] = ACTIONS(2697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_GT_EQ] = ACTIONS(2701), - [anon_sym_LT_EQ] = ACTIONS(2701), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2701), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2705), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2705), + [anon_sym_not] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100216,19 +100238,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -100239,104 +100261,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [324] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2280), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5715), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4615), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2998), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2373), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2558), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5965), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2626), + [sym_property_pattern_clause] = STATE(2779), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5125), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(324), [sym_preproc_endregion] = STATE(324), [sym_preproc_line] = STATE(324), @@ -100346,53 +100368,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2699), - [anon_sym_GT] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2711), + [anon_sym_GT] = ACTIONS(2711), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_GT_EQ] = ACTIONS(2701), - [anon_sym_LT_EQ] = ACTIONS(2701), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2705), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2713), + [anon_sym_GT_EQ] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100417,8 +100439,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -100435,98 +100457,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [325] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2494), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5943), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4623), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2998), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2373), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2558), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2626), + [sym_property_pattern_clause] = STATE(2779), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5125), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(325), [sym_preproc_endregion] = STATE(325), [sym_preproc_line] = STATE(325), @@ -100536,53 +100558,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2707), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2709), - [anon_sym_GT] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2711), + [anon_sym_GT] = ACTIONS(2711), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(2711), - [anon_sym_LT_EQ] = ACTIONS(2711), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2713), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2713), + [anon_sym_GT_EQ] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100607,8 +100629,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -100625,98 +100647,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [326] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3004), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2296), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(2405), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7499), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7860), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5770), - [sym_constant_pattern] = STATE(5726), - [sym_parenthesized_pattern] = STATE(5726), - [sym_var_pattern] = STATE(5726), - [sym_type_pattern] = STATE(5726), - [sym_list_pattern] = STATE(5726), - [sym_recursive_pattern] = STATE(5726), - [sym_positional_pattern_clause] = STATE(2543), - [sym_property_pattern_clause] = STATE(2666), - [sym_relational_pattern] = STATE(5726), - [sym_negated_pattern] = STATE(5726), - [sym_and_pattern] = STATE(5726), - [sym_or_pattern] = STATE(5726), - [sym_declaration_pattern] = STATE(5726), - [sym_expression] = STATE(4639), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5649), - [sym_postfix_unary_expression] = STATE(5685), - [sym_prefix_unary_expression] = STATE(5685), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5649), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5685), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5649), - [sym_member_access_expression] = STATE(4701), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5685), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5649), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5649), - [sym_typeof_expression] = STATE(5649), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4701), - [sym_literal] = STATE(5649), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2714), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2285), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2422), + [sym_implicit_type] = STATE(2708), + [sym_array_type] = STATE(2704), + [sym__array_base_type] = STATE(7506), + [sym_nullable_type] = STATE(2703), + [sym_pointer_type] = STATE(2703), + [sym__pointer_base_type] = STATE(7811), + [sym_function_pointer_type] = STATE(2703), + [sym_ref_type] = STATE(2708), + [sym_scoped_type] = STATE(2708), + [sym_tuple_type] = STATE(2702), + [sym_pattern] = STATE(5752), + [sym_constant_pattern] = STATE(5675), + [sym_parenthesized_pattern] = STATE(5675), + [sym_var_pattern] = STATE(5675), + [sym_type_pattern] = STATE(5675), + [sym_list_pattern] = STATE(5675), + [sym_recursive_pattern] = STATE(5675), + [sym_positional_pattern_clause] = STATE(2534), + [sym_property_pattern_clause] = STATE(2606), + [sym_relational_pattern] = STATE(5675), + [sym_negated_pattern] = STATE(5675), + [sym_and_pattern] = STATE(5675), + [sym_or_pattern] = STATE(5675), + [sym_declaration_pattern] = STATE(5675), + [sym_expression] = STATE(5111), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5743), + [sym_postfix_unary_expression] = STATE(5792), + [sym_prefix_unary_expression] = STATE(5792), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5743), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5792), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5743), + [sym_member_access_expression] = STATE(3812), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5792), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5743), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5743), + [sym_typeof_expression] = STATE(5743), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3812), + [sym_literal] = STATE(5743), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(326), [sym_preproc_endregion] = STATE(326), [sym_preproc_line] = STATE(326), @@ -100726,53 +100748,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_ref] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_delegate] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2671), + [anon_sym_ref] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_delegate] = ACTIONS(2677), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_GT] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), [anon_sym_where] = ACTIONS(1603), [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_GT_EQ] = ACTIONS(2719), - [anon_sym_LT_EQ] = ACTIONS(2719), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2641), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2643), - [sym_predefined_type] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2681), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2685), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2647), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2721), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2689), + [anon_sym_GT_EQ] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -100798,7 +100820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1665), [sym_verbatim_string_literal] = ACTIONS(1663), [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -100815,98 +100837,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [327] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3140), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2320), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2949), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2495), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5904), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2625), - [sym_property_pattern_clause] = STATE(2705), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4200), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2594), + [sym_property_pattern_clause] = STATE(2641), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5136), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(327), [sym_preproc_endregion] = STATE(327), [sym_preproc_line] = STATE(327), @@ -100916,53 +100938,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2723), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_GT] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_GT] = ACTIONS(2719), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(2591), - [anon_sym_LT_EQ] = ACTIONS(2591), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2725), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2721), + [anon_sym_GT_EQ] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100976,19 +100998,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -100999,104 +101021,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [328] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3140), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2320), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2495), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2625), - [sym_property_pattern_clause] = STATE(2705), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2998), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2373), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2558), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5987), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2626), + [sym_property_pattern_clause] = STATE(2779), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5125), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(328), [sym_preproc_endregion] = STATE(328), [sym_preproc_line] = STATE(328), @@ -101106,53 +101128,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2723), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_GT] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2711), + [anon_sym_GT] = ACTIONS(2711), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(2591), - [anon_sym_LT_EQ] = ACTIONS(2591), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2725), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2713), + [anon_sym_GT_EQ] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101177,8 +101199,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -101195,98 +101217,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [329] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3232), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2360), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2564), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5513), - [sym_constant_pattern] = STATE(5506), - [sym_parenthesized_pattern] = STATE(5506), - [sym_var_pattern] = STATE(5506), - [sym_type_pattern] = STATE(5506), - [sym_list_pattern] = STATE(5506), - [sym_recursive_pattern] = STATE(5506), - [sym_positional_pattern_clause] = STATE(2712), - [sym_property_pattern_clause] = STATE(2826), - [sym_relational_pattern] = STATE(5506), - [sym_negated_pattern] = STATE(5506), - [sym_and_pattern] = STATE(5506), - [sym_or_pattern] = STATE(5506), - [sym_declaration_pattern] = STATE(5506), - [sym_expression] = STATE(4633), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5495), - [sym_postfix_unary_expression] = STATE(5514), - [sym_prefix_unary_expression] = STATE(5514), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5495), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5514), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5495), - [sym_member_access_expression] = STATE(4237), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5514), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5495), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5495), - [sym_typeof_expression] = STATE(5495), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4237), - [sym_literal] = STATE(5495), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2714), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2285), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2422), + [sym_implicit_type] = STATE(2708), + [sym_array_type] = STATE(2704), + [sym__array_base_type] = STATE(7506), + [sym_nullable_type] = STATE(2703), + [sym_pointer_type] = STATE(2703), + [sym__pointer_base_type] = STATE(7811), + [sym_function_pointer_type] = STATE(2703), + [sym_ref_type] = STATE(2708), + [sym_scoped_type] = STATE(2708), + [sym_tuple_type] = STATE(2702), + [sym_pattern] = STATE(5823), + [sym_constant_pattern] = STATE(5675), + [sym_parenthesized_pattern] = STATE(5675), + [sym_var_pattern] = STATE(5675), + [sym_type_pattern] = STATE(5675), + [sym_list_pattern] = STATE(5675), + [sym_recursive_pattern] = STATE(5675), + [sym_positional_pattern_clause] = STATE(2534), + [sym_property_pattern_clause] = STATE(2606), + [sym_relational_pattern] = STATE(5675), + [sym_negated_pattern] = STATE(5675), + [sym_and_pattern] = STATE(5675), + [sym_or_pattern] = STATE(5675), + [sym_declaration_pattern] = STATE(5675), + [sym_expression] = STATE(5111), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5743), + [sym_postfix_unary_expression] = STATE(5792), + [sym_prefix_unary_expression] = STATE(5792), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5743), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5792), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5743), + [sym_member_access_expression] = STATE(3812), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5792), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5743), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5743), + [sym_typeof_expression] = STATE(5743), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3812), + [sym_literal] = STATE(5743), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(329), [sym_preproc_endregion] = STATE(329), [sym_preproc_line] = STATE(329), @@ -101296,79 +101318,79 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2671), + [anon_sym_ref] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_delegate] = ACTIONS(2677), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_GT_EQ] = ACTIONS(2733), - [anon_sym_LT_EQ] = ACTIONS(2733), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2735), - [sym_predefined_type] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2681), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2685), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2739), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2741), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2689), + [anon_sym_GT_EQ] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -101379,104 +101401,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [330] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2280), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5582), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(3003), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2355), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2562), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5962), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2621), + [sym_property_pattern_clause] = STATE(2866), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5107), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(330), [sym_preproc_endregion] = STATE(330), [sym_preproc_line] = STATE(330), @@ -101486,53 +101508,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2725), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2745), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101557,8 +101579,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -101575,98 +101597,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [331] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3218), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2363), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2559), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5933), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2701), - [sym_property_pattern_clause] = STATE(2844), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4614), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2952), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2324), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2483), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5900), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2584), + [sym_property_pattern_clause] = STATE(2630), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5112), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(331), [sym_preproc_endregion] = STATE(331), [sym_preproc_line] = STATE(331), @@ -101676,53 +101698,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_GT_EQ] = ACTIONS(2751), - [anon_sym_LT_EQ] = ACTIONS(2751), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(77), [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2753), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2581), + [anon_sym_GT_EQ] = ACTIONS(2581), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101747,8 +101769,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -101765,98 +101787,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [332] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3218), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2363), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2559), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2701), - [sym_property_pattern_clause] = STATE(2844), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4614), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2679), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2281), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4456), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5114), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(332), [sym_preproc_endregion] = STATE(332), [sym_preproc_line] = STATE(332), @@ -101866,53 +101888,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_GT] = ACTIONS(2653), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_GT_EQ] = ACTIONS(2751), - [anon_sym_LT_EQ] = ACTIONS(2751), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2753), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2655), + [anon_sym_GT_EQ] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101937,8 +101959,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -101955,98 +101977,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [333] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3218), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2363), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2559), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5947), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2701), - [sym_property_pattern_clause] = STATE(2844), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4614), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2685), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2273), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4200), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5115), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(333), [sym_preproc_endregion] = STATE(333), [sym_preproc_line] = STATE(333), @@ -102056,53 +102078,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2733), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_GT] = ACTIONS(2735), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_GT_EQ] = ACTIONS(2751), - [anon_sym_LT_EQ] = ACTIONS(2751), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(77), [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2753), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2737), + [anon_sym_GT_EQ] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102116,19 +102138,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -102139,104 +102161,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [334] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3140), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2320), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2495), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5899), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2625), - [sym_property_pattern_clause] = STATE(2705), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2990), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2378), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2547), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5910), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2636), + [sym_property_pattern_clause] = STATE(2864), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5140), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(334), [sym_preproc_endregion] = STATE(334), [sym_preproc_line] = STATE(334), @@ -102246,243 +102268,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2723), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [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(1279), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(2591), - [anon_sym_LT_EQ] = ACTIONS(2591), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2725), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), - }, - [335] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2497), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4785), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4636), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(335), - [sym_preproc_endregion] = STATE(335), - [sym_preproc_line] = STATE(335), - [sym_preproc_pragma] = STATE(335), - [sym_preproc_nullable] = STATE(335), - [sym_preproc_error] = STATE(335), - [sym_preproc_warning] = STATE(335), - [sym_preproc_define] = STATE(335), - [sym_preproc_undef] = STATE(335), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_GT] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2605), - [anon_sym_LT_EQ] = ACTIONS(2605), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2607), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2613), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2745), + [anon_sym_GT_EQ] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102507,8 +102339,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -102524,99 +102356,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1431), [sym_raw_string_start] = ACTIONS(1433), }, + [335] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2714), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2285), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2443), + [sym_implicit_type] = STATE(2708), + [sym_array_type] = STATE(2704), + [sym__array_base_type] = STATE(7506), + [sym_nullable_type] = STATE(2703), + [sym_pointer_type] = STATE(2703), + [sym__pointer_base_type] = STATE(7811), + [sym_function_pointer_type] = STATE(2703), + [sym_ref_type] = STATE(2708), + [sym_scoped_type] = STATE(2708), + [sym_tuple_type] = STATE(2702), + [sym_pattern] = STATE(5799), + [sym_constant_pattern] = STATE(5675), + [sym_parenthesized_pattern] = STATE(5675), + [sym_var_pattern] = STATE(5675), + [sym_type_pattern] = STATE(5675), + [sym_list_pattern] = STATE(5675), + [sym_recursive_pattern] = STATE(5675), + [sym_positional_pattern_clause] = STATE(2534), + [sym_property_pattern_clause] = STATE(2606), + [sym_relational_pattern] = STATE(5675), + [sym_negated_pattern] = STATE(5675), + [sym_and_pattern] = STATE(5675), + [sym_or_pattern] = STATE(5675), + [sym_declaration_pattern] = STATE(5675), + [sym_expression] = STATE(5111), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5743), + [sym_postfix_unary_expression] = STATE(5792), + [sym_prefix_unary_expression] = STATE(5792), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5743), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5792), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5743), + [sym_member_access_expression] = STATE(3812), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5792), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5743), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5743), + [sym_typeof_expression] = STATE(5743), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3812), + [sym_literal] = STATE(5743), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(335), + [sym_preproc_endregion] = STATE(335), + [sym_preproc_line] = STATE(335), + [sym_preproc_pragma] = STATE(335), + [sym_preproc_nullable] = STATE(335), + [sym_preproc_error] = STATE(335), + [sym_preproc_warning] = STATE(335), + [sym_preproc_define] = STATE(335), + [sym_preproc_undef] = STATE(335), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2671), + [anon_sym_ref] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_delegate] = ACTIONS(2677), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2681), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2685), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2689), + [anon_sym_GT_EQ] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), + }, [336] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2738), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2275), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5048), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2281), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4456), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5122), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(336), [sym_preproc_endregion] = STATE(336), [sym_preproc_line] = STATE(336), @@ -102626,53 +102648,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(2759), - [anon_sym_LT_EQ] = ACTIONS(2759), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2761), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102697,8 +102719,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -102715,98 +102737,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [337] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2738), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2280), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5687), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5676), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5122), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(337), [sym_preproc_endregion] = STATE(337), [sym_preproc_line] = STATE(337), @@ -102816,53 +102838,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(2759), - [anon_sym_LT_EQ] = ACTIONS(2759), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2761), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102887,8 +102909,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -102905,98 +102927,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [338] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6979), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2714), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2285), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2423), + [sym_implicit_type] = STATE(2708), + [sym_array_type] = STATE(2704), + [sym__array_base_type] = STATE(7506), + [sym_nullable_type] = STATE(2703), + [sym_pointer_type] = STATE(2703), + [sym__pointer_base_type] = STATE(7811), + [sym_function_pointer_type] = STATE(2703), + [sym_ref_type] = STATE(2708), + [sym_scoped_type] = STATE(2708), + [sym_tuple_type] = STATE(2702), + [sym_pattern] = STATE(5851), + [sym_constant_pattern] = STATE(5675), + [sym_parenthesized_pattern] = STATE(5675), + [sym_var_pattern] = STATE(5675), + [sym_type_pattern] = STATE(5675), + [sym_list_pattern] = STATE(5675), + [sym_recursive_pattern] = STATE(5675), + [sym_positional_pattern_clause] = STATE(2534), + [sym_property_pattern_clause] = STATE(2606), + [sym_relational_pattern] = STATE(5675), + [sym_negated_pattern] = STATE(5675), + [sym_and_pattern] = STATE(5675), + [sym_or_pattern] = STATE(5675), + [sym_declaration_pattern] = STATE(5675), + [sym_expression] = STATE(5111), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5743), + [sym_postfix_unary_expression] = STATE(5792), + [sym_prefix_unary_expression] = STATE(5792), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5743), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5792), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5743), + [sym_member_access_expression] = STATE(3812), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5792), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5743), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5743), + [sym_typeof_expression] = STATE(5743), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3812), + [sym_literal] = STATE(5743), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(338), [sym_preproc_endregion] = STATE(338), [sym_preproc_line] = STATE(338), @@ -103006,79 +103028,79 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2671), + [anon_sym_ref] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_delegate] = ACTIONS(2677), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2681), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2685), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1337), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2689), + [anon_sym_GT_EQ] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -103089,104 +103111,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [339] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2766), - [sym_alias_qualified_name] = STATE(2433), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2266), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4785), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4621), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2280), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5122), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(339), [sym_preproc_endregion] = STATE(339), [sym_preproc_line] = STATE(339), @@ -103196,53 +103218,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_GT_EQ] = ACTIONS(2683), - [anon_sym_LT_EQ] = ACTIONS(2683), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2687), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103256,19 +103278,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -103279,104 +103301,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [340] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2280), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2269), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5474), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5110), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(340), [sym_preproc_endregion] = STATE(340), [sym_preproc_line] = STATE(340), @@ -103386,53 +103408,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_GT] = ACTIONS(2751), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2745), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2753), + [anon_sym_GT_EQ] = ACTIONS(2753), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103446,19 +103468,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -103469,104 +103491,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [341] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2738), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2280), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2274), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5772), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5122), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(341), [sym_preproc_endregion] = STATE(341), [sym_preproc_line] = STATE(341), @@ -103576,53 +103598,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(341), [sym_preproc_define] = STATE(341), [sym_preproc_undef] = STATE(341), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(2759), - [anon_sym_LT_EQ] = ACTIONS(2759), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2761), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103647,8 +103669,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -103665,98 +103687,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [342] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2494), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4623), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2269), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4142), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5110), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(342), [sym_preproc_endregion] = STATE(342), [sym_preproc_line] = STATE(342), @@ -103766,53 +103788,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(342), [sym_preproc_define] = STATE(342), [sym_preproc_undef] = STATE(342), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2707), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2709), - [anon_sym_GT] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_GT] = ACTIONS(2751), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(2711), - [anon_sym_LT_EQ] = ACTIONS(2711), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2577), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2713), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2753), + [anon_sym_GT_EQ] = ACTIONS(2753), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103826,19 +103848,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -103849,104 +103871,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [343] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2738), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2280), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5650), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2962), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2516), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5238), + [sym_constant_pattern] = STATE(5193), + [sym_parenthesized_pattern] = STATE(5193), + [sym_var_pattern] = STATE(5193), + [sym_type_pattern] = STATE(5193), + [sym_list_pattern] = STATE(5193), + [sym_recursive_pattern] = STATE(5193), + [sym_positional_pattern_clause] = STATE(2607), + [sym_property_pattern_clause] = STATE(2660), + [sym_relational_pattern] = STATE(5193), + [sym_negated_pattern] = STATE(5193), + [sym_and_pattern] = STATE(5193), + [sym_or_pattern] = STATE(5193), + [sym_declaration_pattern] = STATE(5193), + [sym_expression] = STATE(5106), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5276), + [sym_postfix_unary_expression] = STATE(5195), + [sym_prefix_unary_expression] = STATE(5195), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5276), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5195), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5276), + [sym_member_access_expression] = STATE(3063), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5195), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5276), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5276), + [sym_typeof_expression] = STATE(5276), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3063), + [sym_literal] = STATE(5276), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(343), [sym_preproc_endregion] = STATE(343), [sym_preproc_line] = STATE(343), @@ -103956,53 +103978,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_GT] = ACTIONS(2593), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(2759), - [anon_sym_LT_EQ] = ACTIONS(2759), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2597), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2599), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2761), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2601), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2603), + [anon_sym_GT_EQ] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104016,19 +104038,19 @@ static const uint16_t ts_parse_table[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(1795), + [anon_sym_typeof] = ACTIONS(1797), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -104039,104 +104061,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [344] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2282), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5793), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4615), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2685), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2264), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5621), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5115), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(344), [sym_preproc_endregion] = STATE(344), [sym_preproc_line] = STATE(344), @@ -104146,53 +104168,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(344), [sym_preproc_define] = STATE(344), [sym_preproc_undef] = STATE(344), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2733), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2699), - [anon_sym_GT] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_GT] = ACTIONS(2735), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_GT_EQ] = ACTIONS(2701), - [anon_sym_LT_EQ] = ACTIONS(2701), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(77), [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2705), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2737), + [anon_sym_GT_EQ] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104206,19 +104228,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -104229,104 +104251,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [345] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2494), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5966), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4623), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2269), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5473), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5110), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(345), [sym_preproc_endregion] = STATE(345), [sym_preproc_line] = STATE(345), @@ -104336,53 +104358,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(345), [sym_preproc_define] = STATE(345), [sym_preproc_undef] = STATE(345), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2707), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2709), - [anon_sym_GT] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_GT] = ACTIONS(2751), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(2711), - [anon_sym_LT_EQ] = ACTIONS(2711), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2577), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2713), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2753), + [anon_sym_GT_EQ] = ACTIONS(2753), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104396,19 +104418,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -104419,104 +104441,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [346] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3189), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2385), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2572), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5931), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2714), - [sym_property_pattern_clause] = STATE(2857), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4631), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2679), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2280), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5734), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5114), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(346), [sym_preproc_endregion] = STATE(346), [sym_preproc_line] = STATE(346), @@ -104526,53 +104548,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2763), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_GT] = ACTIONS(2653), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_GT_EQ] = ACTIONS(2767), - [anon_sym_LT_EQ] = ACTIONS(2767), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2769), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2655), + [anon_sym_GT_EQ] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104586,19 +104608,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -104609,104 +104631,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [347] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3189), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2385), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2572), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4887), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2714), - [sym_property_pattern_clause] = STATE(2857), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4631), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2476), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5938), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2618), + [sym_property_pattern_clause] = STATE(2680), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5096), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(347), [sym_preproc_endregion] = STATE(347), [sym_preproc_line] = STATE(347), @@ -104716,53 +104738,53 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2763), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2757), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_GT_EQ] = ACTIONS(2767), - [anon_sym_LT_EQ] = ACTIONS(2767), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2769), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2763), + [anon_sym_GT_EQ] = ACTIONS(2763), + [anon_sym_not] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104776,19 +104798,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -104799,104 +104821,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [348] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3189), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2385), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2572), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5893), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2714), - [sym_property_pattern_clause] = STATE(2857), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4631), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2679), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2280), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5972), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5151), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(348), [sym_preproc_endregion] = STATE(348), [sym_preproc_line] = STATE(348), @@ -104906,53 +104928,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(348), [sym_preproc_define] = STATE(348), [sym_preproc_undef] = STATE(348), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2763), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2769), + [anon_sym_GT] = ACTIONS(2769), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_GT_EQ] = ACTIONS(2767), - [anon_sym_LT_EQ] = ACTIONS(2767), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(77), [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104966,19 +104988,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -104989,104 +105011,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [349] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3144), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2325), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2503), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5817), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2600), - [sym_property_pattern_clause] = STATE(2723), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4625), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2476), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2618), + [sym_property_pattern_clause] = STATE(2680), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5096), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(349), [sym_preproc_endregion] = STATE(349), [sym_preproc_line] = STATE(349), @@ -105096,53 +105118,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(349), [sym_preproc_define] = STATE(349), [sym_preproc_undef] = STATE(349), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2771), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2757), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_GT_EQ] = ACTIONS(2775), - [anon_sym_LT_EQ] = ACTIONS(2775), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2777), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2763), + [anon_sym_GT_EQ] = ACTIONS(2763), + [anon_sym_not] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105156,19 +105178,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -105179,104 +105201,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [350] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3144), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2325), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2503), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4887), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2600), - [sym_property_pattern_clause] = STATE(2723), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4625), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2956), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2479), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5807), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2594), + [sym_property_pattern_clause] = STATE(2641), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5144), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(350), [sym_preproc_endregion] = STATE(350), [sym_preproc_line] = STATE(350), @@ -105286,53 +105308,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2771), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2777), + [anon_sym_GT] = ACTIONS(2777), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_GT_EQ] = ACTIONS(2775), - [anon_sym_LT_EQ] = ACTIONS(2775), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2575), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2777), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2779), + [anon_sym_GT_EQ] = ACTIONS(2779), + [anon_sym_not] = ACTIONS(2781), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105357,8 +105379,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -105375,98 +105397,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [351] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3144), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2325), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2503), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5881), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2600), - [sym_property_pattern_clause] = STATE(2723), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4625), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2956), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2479), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4142), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2594), + [sym_property_pattern_clause] = STATE(2641), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5144), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(351), [sym_preproc_endregion] = STATE(351), [sym_preproc_line] = STATE(351), @@ -105476,53 +105498,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2771), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2777), + [anon_sym_GT] = ACTIONS(2777), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_GT_EQ] = ACTIONS(2775), - [anon_sym_LT_EQ] = ACTIONS(2775), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2575), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2777), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2779), + [anon_sym_GT_EQ] = ACTIONS(2779), + [anon_sym_not] = ACTIONS(2781), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105547,8 +105569,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -105565,98 +105587,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [352] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2280), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5639), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2274), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5649), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(352), [sym_preproc_endregion] = STATE(352), [sym_preproc_line] = STATE(352), @@ -105666,53 +105688,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2745), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105737,8 +105759,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -105755,98 +105777,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [353] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2738), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2282), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5972), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4624), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2679), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2280), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5151), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(353), [sym_preproc_endregion] = STATE(353), [sym_preproc_line] = STATE(353), @@ -105856,53 +105878,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2769), + [anon_sym_GT] = ACTIONS(2769), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(2783), - [anon_sym_LT_EQ] = ACTIONS(2783), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2575), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2785), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105927,8 +105949,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -105945,98 +105967,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [354] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2679), + [sym_alias_qualified_name] = STATE(2450), [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2266), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4785), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4629), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2280), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5988), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5151), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(354), [sym_preproc_endregion] = STATE(354), [sym_preproc_line] = STATE(354), @@ -106046,53 +106068,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(354), [sym_preproc_define] = STATE(354), [sym_preproc_undef] = STATE(354), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2787), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2769), + [anon_sym_GT] = ACTIONS(2769), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(77), [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2793), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106106,19 +106128,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -106129,104 +106151,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [355] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2898), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2300), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(2424), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7499), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7860), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5753), - [sym_constant_pattern] = STATE(5726), - [sym_parenthesized_pattern] = STATE(5726), - [sym_var_pattern] = STATE(5726), - [sym_type_pattern] = STATE(5726), - [sym_list_pattern] = STATE(5726), - [sym_recursive_pattern] = STATE(5726), - [sym_positional_pattern_clause] = STATE(2568), - [sym_property_pattern_clause] = STATE(2642), - [sym_relational_pattern] = STATE(5726), - [sym_negated_pattern] = STATE(5726), - [sym_and_pattern] = STATE(5726), - [sym_or_pattern] = STATE(5726), - [sym_declaration_pattern] = STATE(5726), - [sym_expression] = STATE(4635), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5649), - [sym_postfix_unary_expression] = STATE(5685), - [sym_prefix_unary_expression] = STATE(5685), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5649), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5685), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5649), - [sym_member_access_expression] = STATE(4701), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5685), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5649), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5649), - [sym_typeof_expression] = STATE(5649), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4701), - [sym_literal] = STATE(5649), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2956), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2479), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5878), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2594), + [sym_property_pattern_clause] = STATE(2641), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5144), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(355), [sym_preproc_endregion] = STATE(355), [sym_preproc_line] = STATE(355), @@ -106236,79 +106258,79 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2629), - [anon_sym_ref] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_delegate] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2777), + [anon_sym_GT] = ACTIONS(2777), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(2639), - [anon_sym_LT_EQ] = ACTIONS(2639), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2641), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2643), - [sym_predefined_type] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2575), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2647), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2779), + [anon_sym_GT_EQ] = ACTIONS(2779), + [anon_sym_not] = ACTIONS(2781), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -106319,104 +106341,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [356] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3218), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2363), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2542), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5971), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2701), - [sym_property_pattern_clause] = STATE(2844), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4614), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2970), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2324), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2501), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5903), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2584), + [sym_property_pattern_clause] = STATE(2630), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(356), [sym_preproc_endregion] = STATE(356), [sym_preproc_line] = STATE(356), @@ -106426,53 +106448,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_GT_EQ] = ACTIONS(2751), - [anon_sym_LT_EQ] = ACTIONS(2751), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2753), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106497,8 +106519,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -106515,98 +106537,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [357] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6976), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2476), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5984), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2618), + [sym_property_pattern_clause] = STATE(2680), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5096), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(357), [sym_preproc_endregion] = STATE(357), [sym_preproc_line] = STATE(357), @@ -106616,53 +106638,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(2757), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2763), + [anon_sym_GT_EQ] = ACTIONS(2763), + [anon_sym_not] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106687,8 +106709,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -106705,98 +106727,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [358] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2268), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5917), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4629), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2273), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4200), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5135), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(358), [sym_preproc_endregion] = STATE(358), [sym_preproc_line] = STATE(358), @@ -106806,53 +106828,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2787), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2793), + [anon_sym_GT] = ACTIONS(2793), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2793), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2795), + [anon_sym_GT_EQ] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106877,8 +106899,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -106895,98 +106917,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [359] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2898), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2300), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(2424), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7499), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7860), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5670), - [sym_constant_pattern] = STATE(5726), - [sym_parenthesized_pattern] = STATE(5726), - [sym_var_pattern] = STATE(5726), - [sym_type_pattern] = STATE(5726), - [sym_list_pattern] = STATE(5726), - [sym_recursive_pattern] = STATE(5726), - [sym_positional_pattern_clause] = STATE(2568), - [sym_property_pattern_clause] = STATE(2642), - [sym_relational_pattern] = STATE(5726), - [sym_negated_pattern] = STATE(5726), - [sym_and_pattern] = STATE(5726), - [sym_or_pattern] = STATE(5726), - [sym_declaration_pattern] = STATE(5726), - [sym_expression] = STATE(4635), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5649), - [sym_postfix_unary_expression] = STATE(5685), - [sym_prefix_unary_expression] = STATE(5685), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5649), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5685), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5649), - [sym_member_access_expression] = STATE(4701), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5685), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5649), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5649), - [sym_typeof_expression] = STATE(5649), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4701), - [sym_literal] = STATE(5649), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2970), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2324), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2501), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2584), + [sym_property_pattern_clause] = STATE(2630), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(359), [sym_preproc_endregion] = STATE(359), [sym_preproc_line] = STATE(359), @@ -106996,79 +107018,79 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2629), - [anon_sym_ref] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_delegate] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(2639), - [anon_sym_LT_EQ] = ACTIONS(2639), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2641), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2643), - [sym_predefined_type] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2647), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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(1649), - [anon_sym_typeof] = ACTIONS(1651), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -107079,104 +107101,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [360] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2280), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5769), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4615), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2998), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2373), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2549), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4456), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2626), + [sym_property_pattern_clause] = STATE(2779), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5125), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(360), [sym_preproc_endregion] = STATE(360), [sym_preproc_line] = STATE(360), @@ -107186,53 +107208,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(360), [sym_preproc_define] = STATE(360), [sym_preproc_undef] = STATE(360), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2699), - [anon_sym_GT] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2711), + [anon_sym_GT] = ACTIONS(2711), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_GT_EQ] = ACTIONS(2701), - [anon_sym_LT_EQ] = ACTIONS(2701), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2705), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2713), + [anon_sym_GT_EQ] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107257,8 +107279,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -107275,98 +107297,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [361] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3190), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2524), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5914), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2704), - [sym_property_pattern_clause] = STATE(2891), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4610), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2998), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2373), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2538), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5995), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2626), + [sym_property_pattern_clause] = STATE(2779), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5125), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(361), [sym_preproc_endregion] = STATE(361), [sym_preproc_line] = STATE(361), @@ -107376,53 +107398,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(361), [sym_preproc_define] = STATE(361), [sym_preproc_undef] = STATE(361), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_GT] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2711), + [anon_sym_GT] = ACTIONS(2711), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_GT_EQ] = ACTIONS(2799), - [anon_sym_LT_EQ] = ACTIONS(2799), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2801), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2713), + [anon_sym_GT_EQ] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107436,19 +107458,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -107459,104 +107481,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [362] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2266), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4785), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4627), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2970), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2324), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2501), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5913), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2584), + [sym_property_pattern_clause] = STATE(2630), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(362), [sym_preproc_endregion] = STATE(362), [sym_preproc_line] = STATE(362), @@ -107566,53 +107588,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(2671), - [anon_sym_LT_EQ] = ACTIONS(2671), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2675), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107626,19 +107648,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -107649,104 +107671,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [363] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3232), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2360), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2578), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5546), - [sym_constant_pattern] = STATE(5506), - [sym_parenthesized_pattern] = STATE(5506), - [sym_var_pattern] = STATE(5506), - [sym_type_pattern] = STATE(5506), - [sym_list_pattern] = STATE(5506), - [sym_recursive_pattern] = STATE(5506), - [sym_positional_pattern_clause] = STATE(2712), - [sym_property_pattern_clause] = STATE(2826), - [sym_relational_pattern] = STATE(5506), - [sym_negated_pattern] = STATE(5506), - [sym_and_pattern] = STATE(5506), - [sym_or_pattern] = STATE(5506), - [sym_declaration_pattern] = STATE(5506), - [sym_expression] = STATE(4633), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5495), - [sym_postfix_unary_expression] = STATE(5514), - [sym_prefix_unary_expression] = STATE(5514), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5495), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5514), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5495), - [sym_member_access_expression] = STATE(4237), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5514), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5495), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5495), - [sym_typeof_expression] = STATE(5495), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4237), - [sym_literal] = STATE(5495), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(3005), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2372), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2530), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5490), + [sym_constant_pattern] = STATE(5512), + [sym_parenthesized_pattern] = STATE(5512), + [sym_var_pattern] = STATE(5512), + [sym_type_pattern] = STATE(5512), + [sym_list_pattern] = STATE(5512), + [sym_recursive_pattern] = STATE(5512), + [sym_positional_pattern_clause] = STATE(2642), + [sym_property_pattern_clause] = STATE(2697), + [sym_relational_pattern] = STATE(5512), + [sym_negated_pattern] = STATE(5512), + [sym_and_pattern] = STATE(5512), + [sym_or_pattern] = STATE(5512), + [sym_declaration_pattern] = STATE(5512), + [sym_expression] = STATE(5118), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5519), + [sym_postfix_unary_expression] = STATE(5521), + [sym_prefix_unary_expression] = STATE(5521), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5519), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5521), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5519), + [sym_member_access_expression] = STATE(3401), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5521), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5519), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5519), + [sym_typeof_expression] = STATE(5519), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3401), + [sym_literal] = STATE(5519), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(363), [sym_preproc_endregion] = STATE(363), [sym_preproc_line] = STATE(363), @@ -107756,53 +107778,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_GT] = ACTIONS(2801), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_GT_EQ] = ACTIONS(2733), - [anon_sym_LT_EQ] = ACTIONS(2733), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2735), - [sym_predefined_type] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2701), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2739), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2741), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2805), + [anon_sym_GT_EQ] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107827,8 +107849,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -107845,98 +107867,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [364] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7020), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2999), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2570), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5901), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2624), + [sym_property_pattern_clause] = STATE(2913), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5137), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(364), [sym_preproc_endregion] = STATE(364), [sym_preproc_line] = STATE(364), @@ -107946,53 +107968,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2811), + [anon_sym_GT] = ACTIONS(2811), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2813), + [anon_sym_GT_EQ] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108006,19 +108028,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -108029,104 +108051,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [365] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2264), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5907), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4629), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2990), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2378), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2528), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4200), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2636), + [sym_property_pattern_clause] = STATE(2864), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5140), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(365), [sym_preproc_endregion] = STATE(365), [sym_preproc_line] = STATE(365), @@ -108136,53 +108158,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2787), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2793), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2745), + [anon_sym_GT_EQ] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108207,8 +108229,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -108225,98 +108247,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [366] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2264), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4887), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4629), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7042), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(366), [sym_preproc_endregion] = STATE(366), [sym_preproc_line] = STATE(366), @@ -108326,53 +108348,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2787), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2555), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2793), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108386,19 +108408,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -108409,104 +108431,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [367] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2264), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5924), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4629), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6944), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(367), [sym_preproc_endregion] = STATE(367), [sym_preproc_line] = STATE(367), @@ -108516,53 +108538,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2787), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2793), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108576,19 +108598,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -108599,104 +108621,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [368] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3212), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2379), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2545), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5987), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2693), - [sym_property_pattern_clause] = STATE(2837), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4600), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2509), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5928), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5145), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(368), [sym_preproc_endregion] = STATE(368), [sym_preproc_line] = STATE(368), @@ -108706,53 +108728,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_GT] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_GT] = ACTIONS(2613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_GT_EQ] = ACTIONS(2807), - [anon_sym_LT_EQ] = ACTIONS(2807), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2809), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108766,19 +108788,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -108789,104 +108811,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [369] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3212), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2379), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2545), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2693), - [sym_property_pattern_clause] = STATE(2837), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4600), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6016), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5854), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6998), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5112), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5906), + [sym_postfix_unary_expression] = STATE(5899), + [sym_prefix_unary_expression] = STATE(5899), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5906), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5899), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5906), + [sym_member_access_expression] = STATE(4603), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5899), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5906), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5906), + [sym_typeof_expression] = STATE(5906), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(4603), + [sym_literal] = STATE(5906), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2275), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(369), [sym_preproc_endregion] = STATE(369), [sym_preproc_line] = STATE(369), @@ -108896,53 +108918,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_ref] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2821), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_GT] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_GT_EQ] = ACTIONS(2807), - [anon_sym_LT_EQ] = ACTIONS(2807), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2823), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2809), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2581), + [anon_sym_GT_EQ] = ACTIONS(2581), + [anon_sym_not] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108967,8 +108989,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -108985,98 +109007,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [370] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2509), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4142), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5145), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(370), [sym_preproc_endregion] = STATE(370), [sym_preproc_line] = STATE(370), @@ -109086,53 +109108,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_GT] = ACTIONS(2613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109146,19 +109168,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -109169,104 +109191,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [371] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2738), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2282), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5711), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2509), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5921), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5145), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(371), [sym_preproc_endregion] = STATE(371), [sym_preproc_line] = STATE(371), @@ -109276,53 +109298,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_GT] = ACTIONS(2613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(2759), - [anon_sym_LT_EQ] = ACTIONS(2759), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2761), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109336,19 +109358,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -109359,104 +109381,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [372] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2898), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2300), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(2424), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7499), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7860), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5781), - [sym_constant_pattern] = STATE(5726), - [sym_parenthesized_pattern] = STATE(5726), - [sym_var_pattern] = STATE(5726), - [sym_type_pattern] = STATE(5726), - [sym_list_pattern] = STATE(5726), - [sym_recursive_pattern] = STATE(5726), - [sym_positional_pattern_clause] = STATE(2568), - [sym_property_pattern_clause] = STATE(2642), - [sym_relational_pattern] = STATE(5726), - [sym_negated_pattern] = STATE(5726), - [sym_and_pattern] = STATE(5726), - [sym_or_pattern] = STATE(5726), - [sym_declaration_pattern] = STATE(5726), - [sym_expression] = STATE(4635), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5649), - [sym_postfix_unary_expression] = STATE(5685), - [sym_prefix_unary_expression] = STATE(5685), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5649), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5685), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5649), - [sym_member_access_expression] = STATE(4701), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5685), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5649), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5649), - [sym_typeof_expression] = STATE(5649), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4701), - [sym_literal] = STATE(5649), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2486), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5973), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5133), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(372), [sym_preproc_endregion] = STATE(372), [sym_preproc_line] = STATE(372), @@ -109466,79 +109488,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(372), [sym_preproc_define] = STATE(372), [sym_preproc_undef] = STATE(372), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2629), - [anon_sym_ref] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_delegate] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2633), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(2639), - [anon_sym_LT_EQ] = ACTIONS(2639), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2641), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2643), - [sym_predefined_type] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2647), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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(1649), - [anon_sym_typeof] = ACTIONS(1651), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -109549,104 +109571,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [373] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3212), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2379), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2545), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5985), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2693), - [sym_property_pattern_clause] = STATE(2837), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4600), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2486), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5133), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(373), [sym_preproc_endregion] = STATE(373), [sym_preproc_line] = STATE(373), @@ -109656,53 +109678,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(373), [sym_preproc_define] = STATE(373), [sym_preproc_undef] = STATE(373), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2633), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_GT] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_GT_EQ] = ACTIONS(2807), - [anon_sym_LT_EQ] = ACTIONS(2807), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2809), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109727,8 +109749,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -109745,98 +109767,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [374] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5996), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5528), - [sym_postfix_unary_expression] = STATE(5539), - [sym_prefix_unary_expression] = STATE(5539), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5528), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5539), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5528), - [sym_member_access_expression] = STATE(4395), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5539), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5528), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5528), - [sym_typeof_expression] = STATE(5528), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4395), - [sym_literal] = STATE(5528), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2273), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4200), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5110), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(374), [sym_preproc_endregion] = STATE(374), [sym_preproc_line] = STATE(374), @@ -109846,53 +109868,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_GT] = ACTIONS(2751), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2199), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2753), + [anon_sym_GT_EQ] = ACTIONS(2753), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109906,19 +109928,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -109929,104 +109951,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [375] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2766), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2264), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5627), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4621), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2990), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2378), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2547), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4142), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2636), + [sym_property_pattern_clause] = STATE(2864), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5140), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(375), [sym_preproc_endregion] = STATE(375), [sym_preproc_line] = STATE(375), @@ -110036,53 +110058,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_GT_EQ] = ACTIONS(2683), - [anon_sym_LT_EQ] = ACTIONS(2683), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2687), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2745), + [anon_sym_GT_EQ] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110107,8 +110129,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -110125,98 +110147,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [376] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2962), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2492), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5930), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4636), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5363), + [sym_constant_pattern] = STATE(5193), + [sym_parenthesized_pattern] = STATE(5193), + [sym_var_pattern] = STATE(5193), + [sym_type_pattern] = STATE(5193), + [sym_list_pattern] = STATE(5193), + [sym_recursive_pattern] = STATE(5193), + [sym_positional_pattern_clause] = STATE(2607), + [sym_property_pattern_clause] = STATE(2660), + [sym_relational_pattern] = STATE(5193), + [sym_negated_pattern] = STATE(5193), + [sym_and_pattern] = STATE(5193), + [sym_or_pattern] = STATE(5193), + [sym_declaration_pattern] = STATE(5193), + [sym_expression] = STATE(5106), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5276), + [sym_postfix_unary_expression] = STATE(5195), + [sym_prefix_unary_expression] = STATE(5195), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5276), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5195), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5276), + [sym_member_access_expression] = STATE(3063), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5195), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5276), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5276), + [sym_typeof_expression] = STATE(5276), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3063), + [sym_literal] = STATE(5276), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(376), [sym_preproc_endregion] = STATE(376), [sym_preproc_line] = STATE(376), @@ -110226,53 +110248,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_GT] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_GT] = ACTIONS(2593), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2605), - [anon_sym_LT_EQ] = ACTIONS(2605), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2607), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2597), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2599), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2613), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2601), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2603), + [anon_sym_GT_EQ] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110286,19 +110308,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -110309,104 +110331,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [377] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3140), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2320), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2493), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5048), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2625), - [sym_property_pattern_clause] = STATE(2705), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2486), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5980), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5133), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(377), [sym_preproc_endregion] = STATE(377), [sym_preproc_line] = STATE(377), @@ -110416,53 +110438,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(377), [sym_preproc_define] = STATE(377), [sym_preproc_undef] = STATE(377), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2723), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2633), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_GT] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(2591), - [anon_sym_LT_EQ] = ACTIONS(2591), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2725), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110487,8 +110509,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -110505,98 +110527,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [378] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2275), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5048), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4615), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2911), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2305), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2419), + [sym_implicit_type] = STATE(2708), + [sym_array_type] = STATE(2704), + [sym__array_base_type] = STATE(7506), + [sym_nullable_type] = STATE(2703), + [sym_pointer_type] = STATE(2703), + [sym__pointer_base_type] = STATE(7811), + [sym_function_pointer_type] = STATE(2703), + [sym_ref_type] = STATE(2708), + [sym_scoped_type] = STATE(2708), + [sym_tuple_type] = STATE(2702), + [sym_pattern] = STATE(5770), + [sym_constant_pattern] = STATE(5675), + [sym_parenthesized_pattern] = STATE(5675), + [sym_var_pattern] = STATE(5675), + [sym_type_pattern] = STATE(5675), + [sym_list_pattern] = STATE(5675), + [sym_recursive_pattern] = STATE(5675), + [sym_positional_pattern_clause] = STATE(2550), + [sym_property_pattern_clause] = STATE(2615), + [sym_relational_pattern] = STATE(5675), + [sym_negated_pattern] = STATE(5675), + [sym_and_pattern] = STATE(5675), + [sym_or_pattern] = STATE(5675), + [sym_declaration_pattern] = STATE(5675), + [sym_expression] = STATE(5132), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5743), + [sym_postfix_unary_expression] = STATE(5792), + [sym_prefix_unary_expression] = STATE(5792), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5743), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5792), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5743), + [sym_member_access_expression] = STATE(3812), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5792), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5743), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5743), + [sym_typeof_expression] = STATE(5743), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3812), + [sym_literal] = STATE(5743), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(378), [sym_preproc_endregion] = STATE(378), [sym_preproc_line] = STATE(378), @@ -110606,79 +110628,79 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_ref] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_delegate] = ACTIONS(2677), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2699), - [anon_sym_GT] = ACTIONS(2699), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2831), + [anon_sym_GT] = ACTIONS(2831), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_GT_EQ] = ACTIONS(2701), - [anon_sym_LT_EQ] = ACTIONS(2701), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2681), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2685), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2705), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_not] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -110689,104 +110711,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [379] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3168), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2325), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2500), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5805), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2600), - [sym_property_pattern_clause] = STATE(2723), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4607), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2981), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2352), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2539), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5983), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2643), + [sym_property_pattern_clause] = STATE(2752), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5121), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(379), [sym_preproc_endregion] = STATE(379), [sym_preproc_line] = STATE(379), @@ -110796,53 +110818,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2813), - [anon_sym_GT] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_GT_EQ] = ACTIONS(2815), - [anon_sym_LT_EQ] = ACTIONS(2815), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2607), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2817), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110856,19 +110878,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -110879,104 +110901,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [380] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2766), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2264), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4887), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4621), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2911), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2305), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2419), + [sym_implicit_type] = STATE(2708), + [sym_array_type] = STATE(2704), + [sym__array_base_type] = STATE(7506), + [sym_nullable_type] = STATE(2703), + [sym_pointer_type] = STATE(2703), + [sym__pointer_base_type] = STATE(7811), + [sym_function_pointer_type] = STATE(2703), + [sym_ref_type] = STATE(2708), + [sym_scoped_type] = STATE(2708), + [sym_tuple_type] = STATE(2702), + [sym_pattern] = STATE(5752), + [sym_constant_pattern] = STATE(5675), + [sym_parenthesized_pattern] = STATE(5675), + [sym_var_pattern] = STATE(5675), + [sym_type_pattern] = STATE(5675), + [sym_list_pattern] = STATE(5675), + [sym_recursive_pattern] = STATE(5675), + [sym_positional_pattern_clause] = STATE(2550), + [sym_property_pattern_clause] = STATE(2615), + [sym_relational_pattern] = STATE(5675), + [sym_negated_pattern] = STATE(5675), + [sym_and_pattern] = STATE(5675), + [sym_or_pattern] = STATE(5675), + [sym_declaration_pattern] = STATE(5675), + [sym_expression] = STATE(5132), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5743), + [sym_postfix_unary_expression] = STATE(5792), + [sym_prefix_unary_expression] = STATE(5792), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5743), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5792), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5743), + [sym_member_access_expression] = STATE(3812), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5792), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5743), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5743), + [sym_typeof_expression] = STATE(5743), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3812), + [sym_literal] = STATE(5743), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(380), [sym_preproc_endregion] = STATE(380), [sym_preproc_line] = STATE(380), @@ -110986,79 +111008,79 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_ref] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_delegate] = ACTIONS(2677), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2831), + [anon_sym_GT] = ACTIONS(2831), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_GT_EQ] = ACTIONS(2683), - [anon_sym_LT_EQ] = ACTIONS(2683), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2681), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2685), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2687), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_not] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -111069,104 +111091,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [381] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3142), - [sym_alias_qualified_name] = STATE(2433), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2962), + [sym_alias_qualified_name] = STATE(2450), [sym__simple_name] = STATE(2348), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2488), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5420), - [sym_constant_pattern] = STATE(5206), - [sym_parenthesized_pattern] = STATE(5206), - [sym_var_pattern] = STATE(5206), - [sym_type_pattern] = STATE(5206), - [sym_list_pattern] = STATE(5206), - [sym_recursive_pattern] = STATE(5206), - [sym_positional_pattern_clause] = STATE(2646), - [sym_property_pattern_clause] = STATE(2739), - [sym_relational_pattern] = STATE(5206), - [sym_negated_pattern] = STATE(5206), - [sym_and_pattern] = STATE(5206), - [sym_or_pattern] = STATE(5206), - [sym_declaration_pattern] = STATE(5206), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5274), - [sym_postfix_unary_expression] = STATE(5273), - [sym_prefix_unary_expression] = STATE(5273), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5274), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5273), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5274), - [sym_member_access_expression] = STATE(3288), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5273), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5274), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5274), - [sym_typeof_expression] = STATE(5274), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3288), - [sym_literal] = STATE(5274), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2492), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5247), + [sym_constant_pattern] = STATE(5193), + [sym_parenthesized_pattern] = STATE(5193), + [sym_var_pattern] = STATE(5193), + [sym_type_pattern] = STATE(5193), + [sym_list_pattern] = STATE(5193), + [sym_recursive_pattern] = STATE(5193), + [sym_positional_pattern_clause] = STATE(2607), + [sym_property_pattern_clause] = STATE(2660), + [sym_relational_pattern] = STATE(5193), + [sym_negated_pattern] = STATE(5193), + [sym_and_pattern] = STATE(5193), + [sym_or_pattern] = STATE(5193), + [sym_declaration_pattern] = STATE(5193), + [sym_expression] = STATE(5106), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5276), + [sym_postfix_unary_expression] = STATE(5195), + [sym_prefix_unary_expression] = STATE(5195), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5276), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5195), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5276), + [sym_member_access_expression] = STATE(3063), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5195), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5276), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5276), + [sym_typeof_expression] = STATE(5276), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3063), + [sym_literal] = STATE(5276), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(381), [sym_preproc_endregion] = STATE(381), [sym_preproc_line] = STATE(381), @@ -111176,53 +111198,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(381), [sym_preproc_define] = STATE(381), [sym_preproc_undef] = STATE(381), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_GT] = ACTIONS(2593), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2659), - [sym_predefined_type] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2597), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2599), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2663), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2695), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2601), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2603), + [anon_sym_GT_EQ] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111236,19 +111258,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -111259,104 +111281,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [382] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3134), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2320), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2480), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5048), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2625), - [sym_property_pattern_clause] = STATE(2705), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2981), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2352), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2539), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2643), + [sym_property_pattern_clause] = STATE(2752), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5121), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(382), [sym_preproc_endregion] = STATE(382), [sym_preproc_line] = STATE(382), @@ -111366,53 +111388,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(382), [sym_preproc_define] = STATE(382), [sym_preproc_undef] = STATE(382), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2581), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111437,8 +111459,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -111455,98 +111477,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [383] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3168), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2325), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2500), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4887), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2600), - [sym_property_pattern_clause] = STATE(2723), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4607), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2962), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2492), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5407), + [sym_constant_pattern] = STATE(5193), + [sym_parenthesized_pattern] = STATE(5193), + [sym_var_pattern] = STATE(5193), + [sym_type_pattern] = STATE(5193), + [sym_list_pattern] = STATE(5193), + [sym_recursive_pattern] = STATE(5193), + [sym_positional_pattern_clause] = STATE(2607), + [sym_property_pattern_clause] = STATE(2660), + [sym_relational_pattern] = STATE(5193), + [sym_negated_pattern] = STATE(5193), + [sym_and_pattern] = STATE(5193), + [sym_or_pattern] = STATE(5193), + [sym_declaration_pattern] = STATE(5193), + [sym_expression] = STATE(5106), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5276), + [sym_postfix_unary_expression] = STATE(5195), + [sym_prefix_unary_expression] = STATE(5195), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5276), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5195), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5276), + [sym_member_access_expression] = STATE(3063), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5195), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5276), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5276), + [sym_typeof_expression] = STATE(5276), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3063), + [sym_literal] = STATE(5276), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(383), [sym_preproc_endregion] = STATE(383), [sym_preproc_line] = STATE(383), @@ -111556,53 +111578,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(383), [sym_preproc_define] = STATE(383), [sym_preproc_undef] = STATE(383), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2813), - [anon_sym_GT] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_GT] = ACTIONS(2593), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_GT_EQ] = ACTIONS(2815), - [anon_sym_LT_EQ] = ACTIONS(2815), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2607), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2597), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2599), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2817), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2601), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2603), + [anon_sym_GT_EQ] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111616,19 +111638,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -111639,104 +111661,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [384] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3168), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2325), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2500), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5821), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2600), - [sym_property_pattern_clause] = STATE(2723), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4607), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(3005), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2372), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2524), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5497), + [sym_constant_pattern] = STATE(5512), + [sym_parenthesized_pattern] = STATE(5512), + [sym_var_pattern] = STATE(5512), + [sym_type_pattern] = STATE(5512), + [sym_list_pattern] = STATE(5512), + [sym_recursive_pattern] = STATE(5512), + [sym_positional_pattern_clause] = STATE(2642), + [sym_property_pattern_clause] = STATE(2697), + [sym_relational_pattern] = STATE(5512), + [sym_negated_pattern] = STATE(5512), + [sym_and_pattern] = STATE(5512), + [sym_or_pattern] = STATE(5512), + [sym_declaration_pattern] = STATE(5512), + [sym_expression] = STATE(5118), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5519), + [sym_postfix_unary_expression] = STATE(5521), + [sym_prefix_unary_expression] = STATE(5521), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5519), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5521), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5519), + [sym_member_access_expression] = STATE(3401), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5521), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5519), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5519), + [sym_typeof_expression] = STATE(5519), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3401), + [sym_literal] = STATE(5519), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(384), [sym_preproc_endregion] = STATE(384), [sym_preproc_line] = STATE(384), @@ -111746,53 +111768,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2813), - [anon_sym_GT] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_GT] = ACTIONS(2801), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_GT_EQ] = ACTIONS(2815), - [anon_sym_LT_EQ] = ACTIONS(2815), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2607), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2701), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2817), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2805), + [anon_sym_GT_EQ] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111806,19 +111828,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -111829,104 +111851,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [385] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3233), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2548), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5981), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2706), - [sym_property_pattern_clause] = STATE(2895), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4605), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2990), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2378), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2547), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5909), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2636), + [sym_property_pattern_clause] = STATE(2864), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5140), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(385), [sym_preproc_endregion] = STATE(385), [sym_preproc_line] = STATE(385), @@ -111936,53 +111958,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_GT] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_GT_EQ] = ACTIONS(2823), - [anon_sym_LT_EQ] = ACTIONS(2823), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2825), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2745), + [anon_sym_GT_EQ] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111996,19 +112018,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -112019,104 +112041,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [386] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6863), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2498), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5939), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5133), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(386), [sym_preproc_endregion] = STATE(386), [sym_preproc_line] = STATE(386), @@ -112126,53 +112148,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(2633), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -112197,8 +112219,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -112215,98 +112237,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [387] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3224), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2523), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5527), - [sym_constant_pattern] = STATE(5506), - [sym_parenthesized_pattern] = STATE(5506), - [sym_var_pattern] = STATE(5506), - [sym_type_pattern] = STATE(5506), - [sym_list_pattern] = STATE(5506), - [sym_recursive_pattern] = STATE(5506), - [sym_positional_pattern_clause] = STATE(2722), - [sym_property_pattern_clause] = STATE(2833), - [sym_relational_pattern] = STATE(5506), - [sym_negated_pattern] = STATE(5506), - [sym_and_pattern] = STATE(5506), - [sym_or_pattern] = STATE(5506), - [sym_declaration_pattern] = STATE(5506), - [sym_expression] = STATE(4611), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5495), - [sym_postfix_unary_expression] = STATE(5514), - [sym_prefix_unary_expression] = STATE(5514), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5495), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5514), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5495), - [sym_member_access_expression] = STATE(4237), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5514), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5495), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5495), - [sym_typeof_expression] = STATE(5495), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4237), - [sym_literal] = STATE(5495), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2981), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2352), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2539), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5993), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2643), + [sym_property_pattern_clause] = STATE(2752), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5121), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(387), [sym_preproc_endregion] = STATE(387), [sym_preproc_line] = STATE(387), @@ -112316,53 +112338,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2829), - [anon_sym_GT] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2831), - [anon_sym_LT_EQ] = ACTIONS(2831), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2833), - [sym_predefined_type] = ACTIONS(2737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2739), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2835), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -112376,19 +112398,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -112399,104 +112421,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [388] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3224), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2523), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5515), - [sym_constant_pattern] = STATE(5506), - [sym_parenthesized_pattern] = STATE(5506), - [sym_var_pattern] = STATE(5506), - [sym_type_pattern] = STATE(5506), - [sym_list_pattern] = STATE(5506), - [sym_recursive_pattern] = STATE(5506), - [sym_positional_pattern_clause] = STATE(2722), - [sym_property_pattern_clause] = STATE(2833), - [sym_relational_pattern] = STATE(5506), - [sym_negated_pattern] = STATE(5506), - [sym_and_pattern] = STATE(5506), - [sym_or_pattern] = STATE(5506), - [sym_declaration_pattern] = STATE(5506), - [sym_expression] = STATE(4611), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5495), - [sym_postfix_unary_expression] = STATE(5514), - [sym_prefix_unary_expression] = STATE(5514), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5495), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5514), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5495), - [sym_member_access_expression] = STATE(4237), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5514), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5495), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5495), - [sym_typeof_expression] = STATE(5495), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4237), - [sym_literal] = STATE(5495), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2911), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2305), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2419), + [sym_implicit_type] = STATE(2708), + [sym_array_type] = STATE(2704), + [sym__array_base_type] = STATE(7506), + [sym_nullable_type] = STATE(2703), + [sym_pointer_type] = STATE(2703), + [sym__pointer_base_type] = STATE(7811), + [sym_function_pointer_type] = STATE(2703), + [sym_ref_type] = STATE(2708), + [sym_scoped_type] = STATE(2708), + [sym_tuple_type] = STATE(2702), + [sym_pattern] = STATE(5670), + [sym_constant_pattern] = STATE(5675), + [sym_parenthesized_pattern] = STATE(5675), + [sym_var_pattern] = STATE(5675), + [sym_type_pattern] = STATE(5675), + [sym_list_pattern] = STATE(5675), + [sym_recursive_pattern] = STATE(5675), + [sym_positional_pattern_clause] = STATE(2550), + [sym_property_pattern_clause] = STATE(2615), + [sym_relational_pattern] = STATE(5675), + [sym_negated_pattern] = STATE(5675), + [sym_and_pattern] = STATE(5675), + [sym_or_pattern] = STATE(5675), + [sym_declaration_pattern] = STATE(5675), + [sym_expression] = STATE(5132), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5743), + [sym_postfix_unary_expression] = STATE(5792), + [sym_prefix_unary_expression] = STATE(5792), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5743), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5792), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5743), + [sym_member_access_expression] = STATE(3812), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5792), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5743), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5743), + [sym_typeof_expression] = STATE(5743), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3812), + [sym_literal] = STATE(5743), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(388), [sym_preproc_endregion] = STATE(388), [sym_preproc_line] = STATE(388), @@ -112506,79 +112528,79 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_ref] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_delegate] = ACTIONS(2677), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2829), - [anon_sym_GT] = ACTIONS(2829), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2831), + [anon_sym_GT] = ACTIONS(2831), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1279), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2831), - [anon_sym_LT_EQ] = ACTIONS(2831), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2833), - [sym_predefined_type] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2681), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2685), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2739), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), [anon_sym_not] = ACTIONS(2835), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -112589,104 +112611,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [389] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2738), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2280), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5978), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4624), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(3005), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2372), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2530), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5501), + [sym_constant_pattern] = STATE(5512), + [sym_parenthesized_pattern] = STATE(5512), + [sym_var_pattern] = STATE(5512), + [sym_type_pattern] = STATE(5512), + [sym_list_pattern] = STATE(5512), + [sym_recursive_pattern] = STATE(5512), + [sym_positional_pattern_clause] = STATE(2642), + [sym_property_pattern_clause] = STATE(2697), + [sym_relational_pattern] = STATE(5512), + [sym_negated_pattern] = STATE(5512), + [sym_and_pattern] = STATE(5512), + [sym_or_pattern] = STATE(5512), + [sym_declaration_pattern] = STATE(5512), + [sym_expression] = STATE(5118), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5519), + [sym_postfix_unary_expression] = STATE(5521), + [sym_prefix_unary_expression] = STATE(5521), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5519), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5521), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5519), + [sym_member_access_expression] = STATE(3401), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5521), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5519), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5519), + [sym_typeof_expression] = STATE(5519), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3401), + [sym_literal] = STATE(5519), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(389), [sym_preproc_endregion] = STATE(389), [sym_preproc_line] = STATE(389), @@ -112696,53 +112718,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_GT] = ACTIONS(2801), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(2783), - [anon_sym_LT_EQ] = ACTIONS(2783), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2701), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2785), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2805), + [anon_sym_GT_EQ] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -112756,19 +112778,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -112779,104 +112801,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [390] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3224), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2523), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5511), - [sym_constant_pattern] = STATE(5506), - [sym_parenthesized_pattern] = STATE(5506), - [sym_var_pattern] = STATE(5506), - [sym_type_pattern] = STATE(5506), - [sym_list_pattern] = STATE(5506), - [sym_recursive_pattern] = STATE(5506), - [sym_positional_pattern_clause] = STATE(2722), - [sym_property_pattern_clause] = STATE(2833), - [sym_relational_pattern] = STATE(5506), - [sym_negated_pattern] = STATE(5506), - [sym_and_pattern] = STATE(5506), - [sym_or_pattern] = STATE(5506), - [sym_declaration_pattern] = STATE(5506), - [sym_expression] = STATE(4611), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5495), - [sym_postfix_unary_expression] = STATE(5514), - [sym_prefix_unary_expression] = STATE(5514), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5495), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5514), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5495), - [sym_member_access_expression] = STATE(4237), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5514), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5495), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5495), - [sym_typeof_expression] = STATE(5495), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4237), - [sym_literal] = STATE(5495), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2970), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2324), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2491), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4456), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2584), + [sym_property_pattern_clause] = STATE(2630), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(390), [sym_preproc_endregion] = STATE(390), [sym_preproc_line] = STATE(390), @@ -112886,53 +112908,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2829), - [anon_sym_GT] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2831), - [anon_sym_LT_EQ] = ACTIONS(2831), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2833), - [sym_predefined_type] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2739), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2835), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -112946,19 +112968,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -112969,104 +112991,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [391] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3214), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2366), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2519), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5918), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2695), - [sym_property_pattern_clause] = STATE(2900), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2685), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2269), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5633), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5115), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(391), [sym_preproc_endregion] = STATE(391), [sym_preproc_line] = STATE(391), @@ -113076,53 +113098,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2733), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2839), - [anon_sym_GT] = ACTIONS(2839), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_GT] = ACTIONS(2735), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2841), - [anon_sym_LT_EQ] = ACTIONS(2841), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(77), [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2843), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2737), + [anon_sym_GT_EQ] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113147,8 +113169,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -113165,98 +113187,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [392] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3134), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2320), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2477), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2625), - [sym_property_pattern_clause] = STATE(2705), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2685), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2269), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4142), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5115), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(392), [sym_preproc_endregion] = STATE(392), [sym_preproc_line] = STATE(392), @@ -113266,53 +113288,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2733), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_GT] = ACTIONS(2735), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(77), [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2577), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2581), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2737), + [anon_sym_GT_EQ] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113326,19 +113348,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -113349,104 +113371,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [393] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2988), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2554), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5545), + [sym_constant_pattern] = STATE(5512), + [sym_parenthesized_pattern] = STATE(5512), + [sym_var_pattern] = STATE(5512), + [sym_type_pattern] = STATE(5512), + [sym_list_pattern] = STATE(5512), + [sym_recursive_pattern] = STATE(5512), + [sym_positional_pattern_clause] = STATE(2623), + [sym_property_pattern_clause] = STATE(2842), + [sym_relational_pattern] = STATE(5512), + [sym_negated_pattern] = STATE(5512), + [sym_and_pattern] = STATE(5512), + [sym_or_pattern] = STATE(5512), + [sym_declaration_pattern] = STATE(5512), + [sym_expression] = STATE(5108), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5519), + [sym_postfix_unary_expression] = STATE(5521), + [sym_prefix_unary_expression] = STATE(5521), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5519), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5521), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5519), + [sym_member_access_expression] = STATE(3401), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5521), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5519), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5519), + [sym_typeof_expression] = STATE(5519), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3401), + [sym_literal] = STATE(5519), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(393), [sym_preproc_endregion] = STATE(393), [sym_preproc_line] = STATE(393), @@ -113456,53 +113478,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_GT] = ACTIONS(2697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2701), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2705), + [anon_sym_not] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113516,19 +113538,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -113539,104 +113561,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [394] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6883), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2685), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2269), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5618), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5115), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(394), [sym_preproc_endregion] = STATE(394), [sym_preproc_line] = STATE(394), @@ -113646,53 +113668,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2733), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_GT] = ACTIONS(2735), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2575), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2737), + [anon_sym_GT_EQ] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113706,19 +113728,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -113729,104 +113751,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [395] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2738), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2280), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4624), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(3005), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2372), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2556), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5511), + [sym_constant_pattern] = STATE(5512), + [sym_parenthesized_pattern] = STATE(5512), + [sym_var_pattern] = STATE(5512), + [sym_type_pattern] = STATE(5512), + [sym_list_pattern] = STATE(5512), + [sym_recursive_pattern] = STATE(5512), + [sym_positional_pattern_clause] = STATE(2642), + [sym_property_pattern_clause] = STATE(2697), + [sym_relational_pattern] = STATE(5512), + [sym_negated_pattern] = STATE(5512), + [sym_and_pattern] = STATE(5512), + [sym_or_pattern] = STATE(5512), + [sym_declaration_pattern] = STATE(5512), + [sym_expression] = STATE(5118), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5519), + [sym_postfix_unary_expression] = STATE(5521), + [sym_prefix_unary_expression] = STATE(5521), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5519), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5521), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5519), + [sym_member_access_expression] = STATE(3401), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5521), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5519), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5519), + [sym_typeof_expression] = STATE(5519), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3401), + [sym_literal] = STATE(5519), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(395), [sym_preproc_endregion] = STATE(395), [sym_preproc_line] = STATE(395), @@ -113836,53 +113858,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_GT] = ACTIONS(2801), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(2783), - [anon_sym_LT_EQ] = ACTIONS(2783), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2701), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2785), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2805), + [anon_sym_GT_EQ] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113896,19 +113918,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -113919,104 +113941,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [396] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3214), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2366), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2537), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5922), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2695), - [sym_property_pattern_clause] = STATE(2900), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2958), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2335), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2480), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5238), + [sym_constant_pattern] = STATE(5193), + [sym_parenthesized_pattern] = STATE(5193), + [sym_var_pattern] = STATE(5193), + [sym_type_pattern] = STATE(5193), + [sym_list_pattern] = STATE(5193), + [sym_recursive_pattern] = STATE(5193), + [sym_positional_pattern_clause] = STATE(2605), + [sym_property_pattern_clause] = STATE(2672), + [sym_relational_pattern] = STATE(5193), + [sym_negated_pattern] = STATE(5193), + [sym_and_pattern] = STATE(5193), + [sym_or_pattern] = STATE(5193), + [sym_declaration_pattern] = STATE(5193), + [sym_expression] = STATE(5129), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5276), + [sym_postfix_unary_expression] = STATE(5195), + [sym_prefix_unary_expression] = STATE(5195), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5276), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5195), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5276), + [sym_member_access_expression] = STATE(3063), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5195), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5276), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5276), + [sym_typeof_expression] = STATE(5276), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3063), + [sym_literal] = STATE(5276), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(396), [sym_preproc_endregion] = STATE(396), [sym_preproc_line] = STATE(396), @@ -114026,53 +114048,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(2587), [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(2839), [anon_sym_GT] = ACTIONS(2839), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2841), - [anon_sym_LT_EQ] = ACTIONS(2841), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2597), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2599), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2601), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2841), + [anon_sym_GT_EQ] = ACTIONS(2841), [anon_sym_not] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -114086,19 +114108,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -114109,104 +114131,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [397] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3214), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2366), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2537), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4887), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2695), - [sym_property_pattern_clause] = STATE(2900), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(3005), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2372), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2530), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5485), + [sym_constant_pattern] = STATE(5512), + [sym_parenthesized_pattern] = STATE(5512), + [sym_var_pattern] = STATE(5512), + [sym_type_pattern] = STATE(5512), + [sym_list_pattern] = STATE(5512), + [sym_recursive_pattern] = STATE(5512), + [sym_positional_pattern_clause] = STATE(2642), + [sym_property_pattern_clause] = STATE(2697), + [sym_relational_pattern] = STATE(5512), + [sym_negated_pattern] = STATE(5512), + [sym_and_pattern] = STATE(5512), + [sym_or_pattern] = STATE(5512), + [sym_declaration_pattern] = STATE(5512), + [sym_expression] = STATE(5118), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5519), + [sym_postfix_unary_expression] = STATE(5521), + [sym_prefix_unary_expression] = STATE(5521), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5519), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5521), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5519), + [sym_member_access_expression] = STATE(3401), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5521), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5519), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5519), + [sym_typeof_expression] = STATE(5519), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3401), + [sym_literal] = STATE(5519), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(397), [sym_preproc_endregion] = STATE(397), [sym_preproc_line] = STATE(397), @@ -114216,53 +114238,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2839), - [anon_sym_GT] = ACTIONS(2839), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_GT] = ACTIONS(2801), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2841), - [anon_sym_LT_EQ] = ACTIONS(2841), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2701), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2843), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2805), + [anon_sym_GT_EQ] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -114276,19 +114298,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -114299,104 +114321,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [398] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3214), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2366), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2537), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5925), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2695), - [sym_property_pattern_clause] = STATE(2900), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2679), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2281), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4456), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5151), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(398), [sym_preproc_endregion] = STATE(398), [sym_preproc_line] = STATE(398), @@ -114406,53 +114428,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2839), - [anon_sym_GT] = ACTIONS(2839), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2769), + [anon_sym_GT] = ACTIONS(2769), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2841), - [anon_sym_LT_EQ] = ACTIONS(2841), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(77), [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2843), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -114466,19 +114488,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -114489,104 +114511,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [399] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2738), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2280), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5975), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4624), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6016), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5854), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5112), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5906), + [sym_postfix_unary_expression] = STATE(5899), + [sym_prefix_unary_expression] = STATE(5899), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5906), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5899), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5906), + [sym_member_access_expression] = STATE(4603), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5899), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5906), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5906), + [sym_typeof_expression] = STATE(5906), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(4603), + [sym_literal] = STATE(5906), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2275), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(399), [sym_preproc_endregion] = STATE(399), [sym_preproc_line] = STATE(399), @@ -114596,53 +114618,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_ref] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2821), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(2783), - [anon_sym_LT_EQ] = ACTIONS(2783), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2823), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2785), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2581), + [anon_sym_GT_EQ] = ACTIONS(2581), + [anon_sym_not] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -114667,8 +114689,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -114685,98 +114707,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [400] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2491), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5048), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2659), - [sym_property_pattern_clause] = STATE(2787), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4612), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6016), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5854), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6980), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5112), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5906), + [sym_postfix_unary_expression] = STATE(5899), + [sym_prefix_unary_expression] = STATE(5899), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5906), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5899), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5906), + [sym_member_access_expression] = STATE(4603), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5899), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5906), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5906), + [sym_typeof_expression] = STATE(5906), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(4603), + [sym_literal] = STATE(5906), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2275), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(400), [sym_preproc_endregion] = STATE(400), [sym_preproc_line] = STATE(400), @@ -114786,53 +114808,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(400), [sym_preproc_define] = STATE(400), [sym_preproc_undef] = STATE(400), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2615), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_ref] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2821), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2619), - [anon_sym_GT] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2623), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2823), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2625), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2581), + [anon_sym_GT_EQ] = ACTIONS(2581), + [anon_sym_not] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -114857,8 +114879,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -114875,98 +114897,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [401] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3134), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2320), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2477), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5923), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2625), - [sym_property_pattern_clause] = STATE(2705), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2958), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2335), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2488), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5227), + [sym_constant_pattern] = STATE(5193), + [sym_parenthesized_pattern] = STATE(5193), + [sym_var_pattern] = STATE(5193), + [sym_type_pattern] = STATE(5193), + [sym_list_pattern] = STATE(5193), + [sym_recursive_pattern] = STATE(5193), + [sym_positional_pattern_clause] = STATE(2605), + [sym_property_pattern_clause] = STATE(2672), + [sym_relational_pattern] = STATE(5193), + [sym_negated_pattern] = STATE(5193), + [sym_and_pattern] = STATE(5193), + [sym_or_pattern] = STATE(5193), + [sym_declaration_pattern] = STATE(5193), + [sym_expression] = STATE(5129), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5276), + [sym_postfix_unary_expression] = STATE(5195), + [sym_prefix_unary_expression] = STATE(5195), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5276), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5195), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5276), + [sym_member_access_expression] = STATE(3063), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5195), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5276), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5276), + [sym_typeof_expression] = STATE(5276), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3063), + [sym_literal] = STATE(5276), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(401), [sym_preproc_endregion] = STATE(401), [sym_preproc_line] = STATE(401), @@ -114976,53 +114998,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_GT] = ACTIONS(2839), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2577), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2597), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2599), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2581), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2601), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2841), + [anon_sym_GT_EQ] = ACTIONS(2841), + [anon_sym_not] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -115036,19 +115058,19 @@ static const uint16_t ts_parse_table[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(1795), + [anon_sym_typeof] = ACTIONS(1797), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -115059,104 +115081,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [402] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7030), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2958), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2335), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2488), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5247), + [sym_constant_pattern] = STATE(5193), + [sym_parenthesized_pattern] = STATE(5193), + [sym_var_pattern] = STATE(5193), + [sym_type_pattern] = STATE(5193), + [sym_list_pattern] = STATE(5193), + [sym_recursive_pattern] = STATE(5193), + [sym_positional_pattern_clause] = STATE(2605), + [sym_property_pattern_clause] = STATE(2672), + [sym_relational_pattern] = STATE(5193), + [sym_negated_pattern] = STATE(5193), + [sym_and_pattern] = STATE(5193), + [sym_or_pattern] = STATE(5193), + [sym_declaration_pattern] = STATE(5193), + [sym_expression] = STATE(5129), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5276), + [sym_postfix_unary_expression] = STATE(5195), + [sym_prefix_unary_expression] = STATE(5195), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5276), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5195), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5276), + [sym_member_access_expression] = STATE(3063), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5195), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5276), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5276), + [sym_typeof_expression] = STATE(5276), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3063), + [sym_literal] = STATE(5276), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(402), [sym_preproc_endregion] = STATE(402), [sym_preproc_line] = STATE(402), @@ -115166,53 +115188,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(402), [sym_preproc_define] = STATE(402), [sym_preproc_undef] = STATE(402), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_GT] = ACTIONS(2839), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2543), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2597), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2599), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2601), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2841), + [anon_sym_GT_EQ] = ACTIONS(2841), + [anon_sym_not] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -115226,19 +115248,19 @@ static const uint16_t ts_parse_table[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(1795), + [anon_sym_typeof] = ACTIONS(1797), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -115249,104 +115271,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [403] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2766), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2264), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5643), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4621), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2958), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2335), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2488), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5188), + [sym_constant_pattern] = STATE(5193), + [sym_parenthesized_pattern] = STATE(5193), + [sym_var_pattern] = STATE(5193), + [sym_type_pattern] = STATE(5193), + [sym_list_pattern] = STATE(5193), + [sym_recursive_pattern] = STATE(5193), + [sym_positional_pattern_clause] = STATE(2605), + [sym_property_pattern_clause] = STATE(2672), + [sym_relational_pattern] = STATE(5193), + [sym_negated_pattern] = STATE(5193), + [sym_and_pattern] = STATE(5193), + [sym_or_pattern] = STATE(5193), + [sym_declaration_pattern] = STATE(5193), + [sym_expression] = STATE(5129), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5276), + [sym_postfix_unary_expression] = STATE(5195), + [sym_prefix_unary_expression] = STATE(5195), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5276), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5195), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5276), + [sym_member_access_expression] = STATE(3063), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5195), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5276), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5276), + [sym_typeof_expression] = STATE(5276), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3063), + [sym_literal] = STATE(5276), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(403), [sym_preproc_endregion] = STATE(403), [sym_preproc_line] = STATE(403), @@ -115356,53 +115378,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(403), [sym_preproc_define] = STATE(403), [sym_preproc_undef] = STATE(403), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_GT] = ACTIONS(2839), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_GT_EQ] = ACTIONS(2683), - [anon_sym_LT_EQ] = ACTIONS(2683), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2597), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2599), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2687), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2601), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2841), + [anon_sym_GT_EQ] = ACTIONS(2841), + [anon_sym_not] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -115416,19 +115438,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -115439,104 +115461,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [404] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2911), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2305), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2435), + [sym_implicit_type] = STATE(2708), + [sym_array_type] = STATE(2704), + [sym__array_base_type] = STATE(7506), + [sym_nullable_type] = STATE(2703), + [sym_pointer_type] = STATE(2703), + [sym__pointer_base_type] = STATE(7811), + [sym_function_pointer_type] = STATE(2703), + [sym_ref_type] = STATE(2708), + [sym_scoped_type] = STATE(2708), + [sym_tuple_type] = STATE(2702), + [sym_pattern] = STATE(5799), + [sym_constant_pattern] = STATE(5675), + [sym_parenthesized_pattern] = STATE(5675), + [sym_var_pattern] = STATE(5675), + [sym_type_pattern] = STATE(5675), + [sym_list_pattern] = STATE(5675), + [sym_recursive_pattern] = STATE(5675), + [sym_positional_pattern_clause] = STATE(2550), + [sym_property_pattern_clause] = STATE(2615), + [sym_relational_pattern] = STATE(5675), + [sym_negated_pattern] = STATE(5675), + [sym_and_pattern] = STATE(5675), + [sym_or_pattern] = STATE(5675), + [sym_declaration_pattern] = STATE(5675), + [sym_expression] = STATE(5132), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5743), + [sym_postfix_unary_expression] = STATE(5792), + [sym_prefix_unary_expression] = STATE(5792), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5743), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5792), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5743), + [sym_member_access_expression] = STATE(3812), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5792), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5743), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5743), + [sym_typeof_expression] = STATE(5743), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3812), + [sym_literal] = STATE(5743), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(404), [sym_preproc_endregion] = STATE(404), [sym_preproc_line] = STATE(404), @@ -115546,79 +115568,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(404), [sym_preproc_define] = STATE(404), [sym_preproc_undef] = STATE(404), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_ref] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_delegate] = ACTIONS(2677), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2831), + [anon_sym_GT] = ACTIONS(2831), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2543), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2681), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2685), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1305), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_not] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -115629,104 +115651,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [405] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3144), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2325), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2504), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4785), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2600), - [sym_property_pattern_clause] = STATE(2723), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4625), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2988), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2521), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5526), + [sym_constant_pattern] = STATE(5512), + [sym_parenthesized_pattern] = STATE(5512), + [sym_var_pattern] = STATE(5512), + [sym_type_pattern] = STATE(5512), + [sym_list_pattern] = STATE(5512), + [sym_recursive_pattern] = STATE(5512), + [sym_positional_pattern_clause] = STATE(2623), + [sym_property_pattern_clause] = STATE(2842), + [sym_relational_pattern] = STATE(5512), + [sym_negated_pattern] = STATE(5512), + [sym_and_pattern] = STATE(5512), + [sym_or_pattern] = STATE(5512), + [sym_declaration_pattern] = STATE(5512), + [sym_expression] = STATE(5108), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5519), + [sym_postfix_unary_expression] = STATE(5521), + [sym_prefix_unary_expression] = STATE(5521), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5519), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5521), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5519), + [sym_member_access_expression] = STATE(3401), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5521), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5519), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5519), + [sym_typeof_expression] = STATE(5519), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3401), + [sym_literal] = STATE(5519), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(405), [sym_preproc_endregion] = STATE(405), [sym_preproc_line] = STATE(405), @@ -115736,53 +115758,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(405), [sym_preproc_define] = STATE(405), [sym_preproc_undef] = STATE(405), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2771), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_GT] = ACTIONS(2697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_GT_EQ] = ACTIONS(2775), - [anon_sym_LT_EQ] = ACTIONS(2775), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2701), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2777), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2705), + [anon_sym_not] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -115796,19 +115818,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -115819,104 +115841,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [406] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3004), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2296), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(2438), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7499), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7860), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5815), - [sym_constant_pattern] = STATE(5726), - [sym_parenthesized_pattern] = STATE(5726), - [sym_var_pattern] = STATE(5726), - [sym_type_pattern] = STATE(5726), - [sym_list_pattern] = STATE(5726), - [sym_recursive_pattern] = STATE(5726), - [sym_positional_pattern_clause] = STATE(2543), - [sym_property_pattern_clause] = STATE(2666), - [sym_relational_pattern] = STATE(5726), - [sym_negated_pattern] = STATE(5726), - [sym_and_pattern] = STATE(5726), - [sym_or_pattern] = STATE(5726), - [sym_declaration_pattern] = STATE(5726), - [sym_expression] = STATE(4639), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5649), - [sym_postfix_unary_expression] = STATE(5685), - [sym_prefix_unary_expression] = STATE(5685), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5649), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5685), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5649), - [sym_member_access_expression] = STATE(4701), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5685), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5649), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5649), - [sym_typeof_expression] = STATE(5649), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4701), - [sym_literal] = STATE(5649), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6955), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(406), [sym_preproc_endregion] = STATE(406), [sym_preproc_line] = STATE(406), @@ -115926,79 +115948,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(406), [sym_preproc_define] = STATE(406), [sym_preproc_undef] = STATE(406), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_ref] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_delegate] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_GT] = ACTIONS(2717), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_GT_EQ] = ACTIONS(2719), - [anon_sym_LT_EQ] = ACTIONS(2719), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2641), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2643), - [sym_predefined_type] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2647), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2721), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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(1649), - [anon_sym_typeof] = ACTIONS(1651), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -116009,104 +116031,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [407] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2738), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2275), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5048), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4624), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2500), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5927), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5145), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(407), [sym_preproc_endregion] = STATE(407), [sym_preproc_line] = STATE(407), @@ -116116,53 +116138,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(407), [sym_preproc_define] = STATE(407), [sym_preproc_undef] = STATE(407), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_ref] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_GT] = ACTIONS(2613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(2783), - [anon_sym_LT_EQ] = ACTIONS(2783), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2785), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -116176,19 +116198,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -116199,104 +116221,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [408] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3004), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2296), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(2442), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7499), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7860), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5847), - [sym_constant_pattern] = STATE(5726), - [sym_parenthesized_pattern] = STATE(5726), - [sym_var_pattern] = STATE(5726), - [sym_type_pattern] = STATE(5726), - [sym_list_pattern] = STATE(5726), - [sym_recursive_pattern] = STATE(5726), - [sym_positional_pattern_clause] = STATE(2543), - [sym_property_pattern_clause] = STATE(2666), - [sym_relational_pattern] = STATE(5726), - [sym_negated_pattern] = STATE(5726), - [sym_and_pattern] = STATE(5726), - [sym_or_pattern] = STATE(5726), - [sym_declaration_pattern] = STATE(5726), - [sym_expression] = STATE(4639), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5649), - [sym_postfix_unary_expression] = STATE(5685), - [sym_prefix_unary_expression] = STATE(5685), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5649), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5685), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5649), - [sym_member_access_expression] = STATE(4701), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5685), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5649), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5649), - [sym_typeof_expression] = STATE(5649), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4701), - [sym_literal] = STATE(5649), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2911), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2305), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2436), + [sym_implicit_type] = STATE(2708), + [sym_array_type] = STATE(2704), + [sym__array_base_type] = STATE(7506), + [sym_nullable_type] = STATE(2703), + [sym_pointer_type] = STATE(2703), + [sym__pointer_base_type] = STATE(7811), + [sym_function_pointer_type] = STATE(2703), + [sym_ref_type] = STATE(2708), + [sym_scoped_type] = STATE(2708), + [sym_tuple_type] = STATE(2702), + [sym_pattern] = STATE(5665), + [sym_constant_pattern] = STATE(5675), + [sym_parenthesized_pattern] = STATE(5675), + [sym_var_pattern] = STATE(5675), + [sym_type_pattern] = STATE(5675), + [sym_list_pattern] = STATE(5675), + [sym_recursive_pattern] = STATE(5675), + [sym_positional_pattern_clause] = STATE(2550), + [sym_property_pattern_clause] = STATE(2615), + [sym_relational_pattern] = STATE(5675), + [sym_negated_pattern] = STATE(5675), + [sym_and_pattern] = STATE(5675), + [sym_or_pattern] = STATE(5675), + [sym_declaration_pattern] = STATE(5675), + [sym_expression] = STATE(5132), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5743), + [sym_postfix_unary_expression] = STATE(5792), + [sym_prefix_unary_expression] = STATE(5792), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5743), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5792), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5743), + [sym_member_access_expression] = STATE(3812), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5792), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5743), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5743), + [sym_typeof_expression] = STATE(5743), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3812), + [sym_literal] = STATE(5743), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(408), [sym_preproc_endregion] = STATE(408), [sym_preproc_line] = STATE(408), @@ -116306,53 +116328,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_ref] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_delegate] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_ref] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_delegate] = ACTIONS(2677), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_GT] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2831), + [anon_sym_GT] = ACTIONS(2831), [anon_sym_where] = ACTIONS(1603), [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_GT_EQ] = ACTIONS(2719), - [anon_sym_LT_EQ] = ACTIONS(2719), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2641), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2643), - [sym_predefined_type] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2681), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2685), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2647), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2721), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_not] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -116378,7 +116400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1665), [sym_verbatim_string_literal] = ACTIONS(1663), [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -116395,98 +116417,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [409] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3189), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2385), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2577), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5892), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2714), - [sym_property_pattern_clause] = STATE(2857), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4631), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2679), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2280), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5658), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5114), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(409), [sym_preproc_endregion] = STATE(409), [sym_preproc_line] = STATE(409), @@ -116496,53 +116518,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2763), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_GT] = ACTIONS(2653), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_GT_EQ] = ACTIONS(2767), - [anon_sym_LT_EQ] = ACTIONS(2767), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2769), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2655), + [anon_sym_GT_EQ] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -116556,19 +116578,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -116579,104 +116601,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [410] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3004), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2296), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(2438), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7499), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7860), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5670), - [sym_constant_pattern] = STATE(5726), - [sym_parenthesized_pattern] = STATE(5726), - [sym_var_pattern] = STATE(5726), - [sym_type_pattern] = STATE(5726), - [sym_list_pattern] = STATE(5726), - [sym_recursive_pattern] = STATE(5726), - [sym_positional_pattern_clause] = STATE(2543), - [sym_property_pattern_clause] = STATE(2666), - [sym_relational_pattern] = STATE(5726), - [sym_negated_pattern] = STATE(5726), - [sym_and_pattern] = STATE(5726), - [sym_or_pattern] = STATE(5726), - [sym_declaration_pattern] = STATE(5726), - [sym_expression] = STATE(4639), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5649), - [sym_postfix_unary_expression] = STATE(5685), - [sym_prefix_unary_expression] = STATE(5685), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5649), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5685), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5649), - [sym_member_access_expression] = STATE(4701), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5685), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5649), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5649), - [sym_typeof_expression] = STATE(5649), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4701), - [sym_literal] = STATE(5649), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2949), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2515), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4142), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2594), + [sym_property_pattern_clause] = STATE(2641), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5136), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(410), [sym_preproc_endregion] = STATE(410), [sym_preproc_line] = STATE(410), @@ -116686,79 +116708,79 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_ref] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_delegate] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_GT] = ACTIONS(2717), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_GT] = ACTIONS(2719), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_GT_EQ] = ACTIONS(2719), - [anon_sym_LT_EQ] = ACTIONS(2719), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2641), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2643), - [sym_predefined_type] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2647), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2721), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2721), + [anon_sym_GT_EQ] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -116769,104 +116791,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [411] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2333), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5876), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(6987), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5911), - [sym_postfix_unary_expression] = STATE(5910), - [sym_prefix_unary_expression] = STATE(5910), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5911), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5910), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5911), - [sym_member_access_expression] = STATE(5010), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5910), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5911), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5911), - [sym_typeof_expression] = STATE(5911), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(5010), - [sym_literal] = STATE(5911), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2679), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2280), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5114), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(411), [sym_preproc_endregion] = STATE(411), [sym_preproc_line] = STATE(411), @@ -116876,53 +116898,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_ref] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_GT] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_GT] = ACTIONS(2653), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(2591), - [anon_sym_LT_EQ] = ACTIONS(2591), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2593), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2595), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2575), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2597), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2655), + [anon_sym_GT_EQ] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -116947,8 +116969,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -116965,98 +116987,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [412] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3224), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2576), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5513), - [sym_constant_pattern] = STATE(5506), - [sym_parenthesized_pattern] = STATE(5506), - [sym_var_pattern] = STATE(5506), - [sym_type_pattern] = STATE(5506), - [sym_list_pattern] = STATE(5506), - [sym_recursive_pattern] = STATE(5506), - [sym_positional_pattern_clause] = STATE(2722), - [sym_property_pattern_clause] = STATE(2833), - [sym_relational_pattern] = STATE(5506), - [sym_negated_pattern] = STATE(5506), - [sym_and_pattern] = STATE(5506), - [sym_or_pattern] = STATE(5506), - [sym_declaration_pattern] = STATE(5506), - [sym_expression] = STATE(4611), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5495), - [sym_postfix_unary_expression] = STATE(5514), - [sym_prefix_unary_expression] = STATE(5514), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5495), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5514), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5495), - [sym_member_access_expression] = STATE(4237), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5514), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5495), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5495), - [sym_typeof_expression] = STATE(5495), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4237), - [sym_literal] = STATE(5495), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2949), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2515), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5813), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2594), + [sym_property_pattern_clause] = STATE(2641), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5136), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(412), [sym_preproc_endregion] = STATE(412), [sym_preproc_line] = STATE(412), @@ -117066,53 +117088,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2829), - [anon_sym_GT] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_GT] = ACTIONS(2719), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2831), - [anon_sym_LT_EQ] = ACTIONS(2831), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2833), - [sym_predefined_type] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2739), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2835), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2721), + [anon_sym_GT_EQ] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -117126,19 +117148,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -117149,104 +117171,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [413] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2475), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5968), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4623), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(413), [sym_preproc_endregion] = STATE(413), [sym_preproc_line] = STATE(413), @@ -117256,53 +117278,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2707), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2709), - [anon_sym_GT] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(2711), - [anon_sym_LT_EQ] = ACTIONS(2711), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2577), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2555), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2713), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -117327,8 +117349,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -117345,98 +117367,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [414] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3189), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2385), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2553), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4785), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2714), - [sym_property_pattern_clause] = STATE(2857), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4631), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2958), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2335), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2485), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5192), + [sym_constant_pattern] = STATE(5193), + [sym_parenthesized_pattern] = STATE(5193), + [sym_var_pattern] = STATE(5193), + [sym_type_pattern] = STATE(5193), + [sym_list_pattern] = STATE(5193), + [sym_recursive_pattern] = STATE(5193), + [sym_positional_pattern_clause] = STATE(2605), + [sym_property_pattern_clause] = STATE(2672), + [sym_relational_pattern] = STATE(5193), + [sym_negated_pattern] = STATE(5193), + [sym_and_pattern] = STATE(5193), + [sym_or_pattern] = STATE(5193), + [sym_declaration_pattern] = STATE(5193), + [sym_expression] = STATE(5129), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5276), + [sym_postfix_unary_expression] = STATE(5195), + [sym_prefix_unary_expression] = STATE(5195), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5276), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5195), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5276), + [sym_member_access_expression] = STATE(3063), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5195), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5276), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5276), + [sym_typeof_expression] = STATE(5276), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3063), + [sym_literal] = STATE(5276), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(414), [sym_preproc_endregion] = STATE(414), [sym_preproc_line] = STATE(414), @@ -117446,53 +117468,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(414), [sym_preproc_define] = STATE(414), [sym_preproc_undef] = STATE(414), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2763), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_GT] = ACTIONS(2839), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_GT_EQ] = ACTIONS(2767), - [anon_sym_LT_EQ] = ACTIONS(2767), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2597), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2599), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2769), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2601), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2841), + [anon_sym_GT_EQ] = ACTIONS(2841), + [anon_sym_not] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -117506,19 +117528,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -117529,104 +117551,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [415] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3233), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2538), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5048), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2706), - [sym_property_pattern_clause] = STATE(2895), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4605), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(415), [sym_preproc_endregion] = STATE(415), [sym_preproc_line] = STATE(415), @@ -117636,53 +117658,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_GT] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_GT_EQ] = ACTIONS(2823), - [anon_sym_LT_EQ] = ACTIONS(2823), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2825), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -117707,8 +117729,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -117725,98 +117747,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [416] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3004), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2296), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(2438), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7499), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7860), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5870), - [sym_constant_pattern] = STATE(5726), - [sym_parenthesized_pattern] = STATE(5726), - [sym_var_pattern] = STATE(5726), - [sym_type_pattern] = STATE(5726), - [sym_list_pattern] = STATE(5726), - [sym_recursive_pattern] = STATE(5726), - [sym_positional_pattern_clause] = STATE(2543), - [sym_property_pattern_clause] = STATE(2666), - [sym_relational_pattern] = STATE(5726), - [sym_negated_pattern] = STATE(5726), - [sym_and_pattern] = STATE(5726), - [sym_or_pattern] = STATE(5726), - [sym_declaration_pattern] = STATE(5726), - [sym_expression] = STATE(4639), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5649), - [sym_postfix_unary_expression] = STATE(5685), - [sym_prefix_unary_expression] = STATE(5685), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5649), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5685), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5649), - [sym_member_access_expression] = STATE(4701), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5685), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5649), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5649), - [sym_typeof_expression] = STATE(5649), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4701), - [sym_literal] = STATE(5649), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6015), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(7035), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5533), + [sym_postfix_unary_expression] = STATE(5546), + [sym_prefix_unary_expression] = STATE(5546), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5533), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5546), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5533), + [sym_member_access_expression] = STATE(3461), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5546), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5533), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5533), + [sym_typeof_expression] = STATE(5533), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3461), + [sym_literal] = STATE(5533), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(416), [sym_preproc_endregion] = STATE(416), [sym_preproc_line] = STATE(416), @@ -117826,79 +117848,79 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_ref] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_delegate] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_GT] = ACTIONS(2717), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_GT_EQ] = ACTIONS(2719), - [anon_sym_LT_EQ] = ACTIONS(2719), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2641), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2643), - [sym_predefined_type] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2647), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2721), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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(1649), - [anon_sym_typeof] = ACTIONS(1651), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -117909,104 +117931,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [417] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3233), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2521), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5934), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2706), - [sym_property_pattern_clause] = STATE(2895), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4605), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2264), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5476), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5110), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(417), [sym_preproc_endregion] = STATE(417), [sym_preproc_line] = STATE(417), @@ -118016,53 +118038,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_GT] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_GT] = ACTIONS(2751), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_GT_EQ] = ACTIONS(2823), - [anon_sym_LT_EQ] = ACTIONS(2823), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2825), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2753), + [anon_sym_GT_EQ] = ACTIONS(2753), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -118076,19 +118098,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -118099,104 +118121,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [418] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3233), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2521), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2706), - [sym_property_pattern_clause] = STATE(2895), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4605), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2999), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2520), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5932), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2624), + [sym_property_pattern_clause] = STATE(2913), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5137), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(418), [sym_preproc_endregion] = STATE(418), [sym_preproc_line] = STATE(418), @@ -118206,53 +118228,53 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_GT] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2811), + [anon_sym_GT] = ACTIONS(2811), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2137), [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_GT_EQ] = ACTIONS(2823), - [anon_sym_LT_EQ] = ACTIONS(2823), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2825), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2813), + [anon_sym_GT_EQ] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -118266,19 +118288,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -118289,104 +118311,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [419] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2264), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5489), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4627), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2999), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2520), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4142), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2624), + [sym_property_pattern_clause] = STATE(2913), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5137), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(419), [sym_preproc_endregion] = STATE(419), [sym_preproc_line] = STATE(419), @@ -118396,53 +118418,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2811), + [anon_sym_GT] = ACTIONS(2811), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(2671), - [anon_sym_LT_EQ] = ACTIONS(2671), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2675), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2813), + [anon_sym_GT_EQ] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -118467,8 +118489,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -118485,98 +118507,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [420] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2264), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4887), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4627), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2999), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2520), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5902), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2624), + [sym_property_pattern_clause] = STATE(2913), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5137), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(420), [sym_preproc_endregion] = STATE(420), [sym_preproc_line] = STATE(420), @@ -118586,53 +118608,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2811), + [anon_sym_GT] = ACTIONS(2811), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(2671), - [anon_sym_LT_EQ] = ACTIONS(2671), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2675), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2813), + [anon_sym_GT_EQ] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -118657,8 +118679,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -118675,98 +118697,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [421] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3166), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2327), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2496), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5280), - [sym_constant_pattern] = STATE(5206), - [sym_parenthesized_pattern] = STATE(5206), - [sym_var_pattern] = STATE(5206), - [sym_type_pattern] = STATE(5206), - [sym_list_pattern] = STATE(5206), - [sym_recursive_pattern] = STATE(5206), - [sym_positional_pattern_clause] = STATE(2668), - [sym_property_pattern_clause] = STATE(2765), - [sym_relational_pattern] = STATE(5206), - [sym_negated_pattern] = STATE(5206), - [sym_and_pattern] = STATE(5206), - [sym_or_pattern] = STATE(5206), - [sym_declaration_pattern] = STATE(5206), - [sym_expression] = STATE(4613), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5274), - [sym_postfix_unary_expression] = STATE(5273), - [sym_prefix_unary_expression] = STATE(5273), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5274), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5273), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5274), - [sym_member_access_expression] = STATE(3288), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5273), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5274), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5274), - [sym_typeof_expression] = STATE(5274), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3288), - [sym_literal] = STATE(5274), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2988), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2521), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5501), + [sym_constant_pattern] = STATE(5512), + [sym_parenthesized_pattern] = STATE(5512), + [sym_var_pattern] = STATE(5512), + [sym_type_pattern] = STATE(5512), + [sym_list_pattern] = STATE(5512), + [sym_recursive_pattern] = STATE(5512), + [sym_positional_pattern_clause] = STATE(2623), + [sym_property_pattern_clause] = STATE(2842), + [sym_relational_pattern] = STATE(5512), + [sym_negated_pattern] = STATE(5512), + [sym_and_pattern] = STATE(5512), + [sym_or_pattern] = STATE(5512), + [sym_declaration_pattern] = STATE(5512), + [sym_expression] = STATE(5108), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5519), + [sym_postfix_unary_expression] = STATE(5521), + [sym_prefix_unary_expression] = STATE(5521), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5519), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5521), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5519), + [sym_member_access_expression] = STATE(3401), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5521), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5519), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5519), + [sym_typeof_expression] = STATE(5519), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3401), + [sym_literal] = STATE(5519), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(421), [sym_preproc_endregion] = STATE(421), [sym_preproc_line] = STATE(421), @@ -118776,53 +118798,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(421), [sym_preproc_define] = STATE(421), [sym_preproc_undef] = STATE(421), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_GT] = ACTIONS(2697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_GT_EQ] = ACTIONS(2657), - [anon_sym_LT_EQ] = ACTIONS(2657), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2659), - [sym_predefined_type] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2701), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2663), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2665), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2705), + [anon_sym_not] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -118836,19 +118858,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -118859,104 +118881,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [422] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3224), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2528), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5494), - [sym_constant_pattern] = STATE(5506), - [sym_parenthesized_pattern] = STATE(5506), - [sym_var_pattern] = STATE(5506), - [sym_type_pattern] = STATE(5506), - [sym_list_pattern] = STATE(5506), - [sym_recursive_pattern] = STATE(5506), - [sym_positional_pattern_clause] = STATE(2722), - [sym_property_pattern_clause] = STATE(2833), - [sym_relational_pattern] = STATE(5506), - [sym_negated_pattern] = STATE(5506), - [sym_and_pattern] = STATE(5506), - [sym_or_pattern] = STATE(5506), - [sym_declaration_pattern] = STATE(5506), - [sym_expression] = STATE(4611), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5495), - [sym_postfix_unary_expression] = STATE(5514), - [sym_prefix_unary_expression] = STATE(5514), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5495), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5514), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5495), - [sym_member_access_expression] = STATE(4237), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5514), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5495), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5495), - [sym_typeof_expression] = STATE(5495), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4237), - [sym_literal] = STATE(5495), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2956), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2513), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4200), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2594), + [sym_property_pattern_clause] = STATE(2641), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5144), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(422), [sym_preproc_endregion] = STATE(422), [sym_preproc_line] = STATE(422), @@ -118966,53 +118988,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2829), - [anon_sym_GT] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2777), + [anon_sym_GT] = ACTIONS(2777), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2831), - [anon_sym_LT_EQ] = ACTIONS(2831), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(77), [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2833), - [sym_predefined_type] = ACTIONS(2737), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2739), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2835), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2779), + [anon_sym_GT_EQ] = ACTIONS(2779), + [anon_sym_not] = ACTIONS(2781), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -119026,19 +119048,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -119049,104 +119071,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [423] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3233), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2521), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5958), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2706), - [sym_property_pattern_clause] = STATE(2895), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4605), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2952), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2324), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2483), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2584), + [sym_property_pattern_clause] = STATE(2630), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5112), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(423), [sym_preproc_endregion] = STATE(423), [sym_preproc_line] = STATE(423), @@ -119156,53 +119178,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_GT] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_GT_EQ] = ACTIONS(2823), - [anon_sym_LT_EQ] = ACTIONS(2823), - [anon_sym_this] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(77), [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2825), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2581), + [anon_sym_GT_EQ] = ACTIONS(2581), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -119227,8 +119249,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -119245,98 +119267,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [424] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3190), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2570), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4785), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2704), - [sym_property_pattern_clause] = STATE(2891), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4610), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6873), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(424), [sym_preproc_endregion] = STATE(424), [sym_preproc_line] = STATE(424), @@ -119346,53 +119368,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_GT] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_GT_EQ] = ACTIONS(2799), - [anon_sym_LT_EQ] = ACTIONS(2799), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2801), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -119406,19 +119428,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -119429,104 +119451,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [425] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3212), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2379), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2550), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5048), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2693), - [sym_property_pattern_clause] = STATE(2837), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4600), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(425), [sym_preproc_endregion] = STATE(425), [sym_preproc_line] = STATE(425), @@ -119536,53 +119558,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_GT] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_GT_EQ] = ACTIONS(2807), - [anon_sym_LT_EQ] = ACTIONS(2807), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2809), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -119607,8 +119629,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -119625,98 +119647,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [426] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3214), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2366), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2561), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4785), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2695), - [sym_property_pattern_clause] = STATE(2900), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2280), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5642), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(426), [sym_preproc_endregion] = STATE(426), [sym_preproc_line] = STATE(426), @@ -119726,53 +119748,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2839), - [anon_sym_GT] = ACTIONS(2839), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2841), - [anon_sym_LT_EQ] = ACTIONS(2841), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2843), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -119786,19 +119808,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -119809,104 +119831,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [427] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3218), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2363), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2556), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5048), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2701), - [sym_property_pattern_clause] = STATE(2844), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4614), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2280), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(427), [sym_preproc_endregion] = STATE(427), [sym_preproc_line] = STATE(427), @@ -119916,53 +119938,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_GT_EQ] = ACTIONS(2751), - [anon_sym_LT_EQ] = ACTIONS(2751), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2753), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -119987,8 +120009,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -120005,98 +120027,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [428] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3166), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2327), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2516), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5205), - [sym_constant_pattern] = STATE(5206), - [sym_parenthesized_pattern] = STATE(5206), - [sym_var_pattern] = STATE(5206), - [sym_type_pattern] = STATE(5206), - [sym_list_pattern] = STATE(5206), - [sym_recursive_pattern] = STATE(5206), - [sym_positional_pattern_clause] = STATE(2668), - [sym_property_pattern_clause] = STATE(2765), - [sym_relational_pattern] = STATE(5206), - [sym_negated_pattern] = STATE(5206), - [sym_and_pattern] = STATE(5206), - [sym_or_pattern] = STATE(5206), - [sym_declaration_pattern] = STATE(5206), - [sym_expression] = STATE(4613), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5274), - [sym_postfix_unary_expression] = STATE(5273), - [sym_prefix_unary_expression] = STATE(5273), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5274), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5273), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5274), - [sym_member_access_expression] = STATE(3288), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5273), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5274), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5274), - [sym_typeof_expression] = STATE(5274), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3288), - [sym_literal] = STATE(5274), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2281), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4456), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(428), [sym_preproc_endregion] = STATE(428), [sym_preproc_line] = STATE(428), @@ -120106,53 +120128,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_GT_EQ] = ACTIONS(2657), - [anon_sym_LT_EQ] = ACTIONS(2657), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2659), - [sym_predefined_type] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2663), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2665), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -120166,19 +120188,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -120189,104 +120211,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [429] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3166), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2327), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2496), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5330), - [sym_constant_pattern] = STATE(5206), - [sym_parenthesized_pattern] = STATE(5206), - [sym_var_pattern] = STATE(5206), - [sym_type_pattern] = STATE(5206), - [sym_list_pattern] = STATE(5206), - [sym_recursive_pattern] = STATE(5206), - [sym_positional_pattern_clause] = STATE(2668), - [sym_property_pattern_clause] = STATE(2765), - [sym_relational_pattern] = STATE(5206), - [sym_negated_pattern] = STATE(5206), - [sym_and_pattern] = STATE(5206), - [sym_or_pattern] = STATE(5206), - [sym_declaration_pattern] = STATE(5206), - [sym_expression] = STATE(4613), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5274), - [sym_postfix_unary_expression] = STATE(5273), - [sym_prefix_unary_expression] = STATE(5273), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5274), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5273), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5274), - [sym_member_access_expression] = STATE(3288), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5273), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5274), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5274), - [sym_typeof_expression] = STATE(5274), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3288), - [sym_literal] = STATE(5274), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2981), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2352), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2553), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4456), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2643), + [sym_property_pattern_clause] = STATE(2752), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5121), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(429), [sym_preproc_endregion] = STATE(429), [sym_preproc_line] = STATE(429), @@ -120296,53 +120318,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_GT_EQ] = ACTIONS(2657), - [anon_sym_LT_EQ] = ACTIONS(2657), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2659), - [sym_predefined_type] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2663), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2665), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -120356,19 +120378,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -120379,104 +120401,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [430] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2264), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5481), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4627), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2269), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5925), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5135), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(430), [sym_preproc_endregion] = STATE(430), [sym_preproc_line] = STATE(430), @@ -120486,53 +120508,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2793), + [anon_sym_GT] = ACTIONS(2793), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(2671), - [anon_sym_LT_EQ] = ACTIONS(2671), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2675), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2795), + [anon_sym_GT_EQ] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -120557,8 +120579,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -120575,98 +120597,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [431] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2275), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5048), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6959), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(431), [sym_preproc_endregion] = STATE(431), [sym_preproc_line] = STATE(431), @@ -120676,53 +120698,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_LT] = ACTIONS(1275), [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2555), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2745), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -120747,8 +120769,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -120765,98 +120787,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [432] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2476), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5048), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4623), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2999), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2537), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4200), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2624), + [sym_property_pattern_clause] = STATE(2913), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5137), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(432), [sym_preproc_endregion] = STATE(432), [sym_preproc_line] = STATE(432), @@ -120866,53 +120888,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2707), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2709), - [anon_sym_GT] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2811), + [anon_sym_GT] = ACTIONS(2811), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(2711), - [anon_sym_LT_EQ] = ACTIONS(2711), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2577), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2713), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2813), + [anon_sym_GT_EQ] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -120926,19 +120948,19 @@ static const uint16_t ts_parse_table[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(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -120949,104 +120971,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [433] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2333), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5876), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(4941), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5911), - [sym_postfix_unary_expression] = STATE(5910), - [sym_prefix_unary_expression] = STATE(5910), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5911), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5910), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5911), - [sym_member_access_expression] = STATE(5010), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5910), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5911), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5911), - [sym_typeof_expression] = STATE(5911), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(5010), - [sym_literal] = STATE(5911), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2952), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2324), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2487), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4456), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2584), + [sym_property_pattern_clause] = STATE(2630), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5112), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(433), [sym_preproc_endregion] = STATE(433), [sym_preproc_line] = STATE(433), @@ -121056,53 +121078,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_ref] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_GT] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(2591), - [anon_sym_LT_EQ] = ACTIONS(2591), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2593), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2595), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2575), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2597), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2581), + [anon_sym_GT_EQ] = ACTIONS(2581), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -121127,8 +121149,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -121145,98 +121167,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [434] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2478), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(3003), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2355), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2555), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), [sym_pattern] = STATE(5955), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2659), - [sym_property_pattern_clause] = STATE(2787), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4612), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2621), + [sym_property_pattern_clause] = STATE(2866), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5107), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(434), [sym_preproc_endregion] = STATE(434), [sym_preproc_line] = STATE(434), @@ -121246,53 +121268,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2615), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2725), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2619), - [anon_sym_GT] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2623), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2625), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -121317,8 +121339,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -121335,98 +121357,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [435] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3166), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2327), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2496), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5328), - [sym_constant_pattern] = STATE(5206), - [sym_parenthesized_pattern] = STATE(5206), - [sym_var_pattern] = STATE(5206), - [sym_type_pattern] = STATE(5206), - [sym_list_pattern] = STATE(5206), - [sym_recursive_pattern] = STATE(5206), - [sym_positional_pattern_clause] = STATE(2668), - [sym_property_pattern_clause] = STATE(2765), - [sym_relational_pattern] = STATE(5206), - [sym_negated_pattern] = STATE(5206), - [sym_and_pattern] = STATE(5206), - [sym_or_pattern] = STATE(5206), - [sym_declaration_pattern] = STATE(5206), - [sym_expression] = STATE(4613), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5274), - [sym_postfix_unary_expression] = STATE(5273), - [sym_prefix_unary_expression] = STATE(5273), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5274), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5273), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5274), - [sym_member_access_expression] = STATE(3288), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5273), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5274), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5274), - [sym_typeof_expression] = STATE(5274), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3288), - [sym_literal] = STATE(5274), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2478), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5977), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2618), + [sym_property_pattern_clause] = STATE(2680), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5096), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(435), [sym_preproc_endregion] = STATE(435), [sym_preproc_line] = STATE(435), @@ -121436,53 +121458,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(435), [sym_preproc_define] = STATE(435), [sym_preproc_undef] = STATE(435), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2757), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_GT_EQ] = ACTIONS(2657), - [anon_sym_LT_EQ] = ACTIONS(2657), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2659), - [sym_predefined_type] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2663), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2665), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2763), + [anon_sym_GT_EQ] = ACTIONS(2763), + [anon_sym_not] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -121496,19 +121518,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -121519,104 +121541,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [436] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2333), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5876), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7008), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5983), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5911), - [sym_postfix_unary_expression] = STATE(5910), - [sym_prefix_unary_expression] = STATE(5910), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5911), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5910), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5911), - [sym_member_access_expression] = STATE(5010), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5910), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5911), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5911), - [sym_typeof_expression] = STATE(5911), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(5010), - [sym_literal] = STATE(5911), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(3003), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2355), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2555), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4530), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2621), + [sym_property_pattern_clause] = STATE(2866), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5107), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(436), [sym_preproc_endregion] = STATE(436), [sym_preproc_line] = STATE(436), @@ -121626,53 +121648,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(436), [sym_preproc_define] = STATE(436), [sym_preproc_undef] = STATE(436), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_ref] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2725), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_GT] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(2591), - [anon_sym_LT_EQ] = ACTIONS(2591), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2593), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2595), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2597), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -121697,8 +121719,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -121715,98 +121737,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [437] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5560), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_pattern] = STATE(7031), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(5866), - [sym_property_pattern_clause] = STATE(5976), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5626), - [sym_postfix_unary_expression] = STATE(5625), - [sym_prefix_unary_expression] = STATE(5625), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5626), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5625), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5626), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5625), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5626), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5626), - [sym_typeof_expression] = STATE(5626), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5626), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(3003), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2355), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2555), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5974), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2621), + [sym_property_pattern_clause] = STATE(2866), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5107), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(437), [sym_preproc_endregion] = STATE(437), [sym_preproc_line] = STATE(437), @@ -121816,53 +121838,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(437), [sym_preproc_define] = STATE(437), [sym_preproc_undef] = STATE(437), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(2725), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2543), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1295), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -121887,8 +121909,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -121905,98 +121927,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [438] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2898), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2300), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(2449), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7499), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7860), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5770), - [sym_constant_pattern] = STATE(5726), - [sym_parenthesized_pattern] = STATE(5726), - [sym_var_pattern] = STATE(5726), - [sym_type_pattern] = STATE(5726), - [sym_list_pattern] = STATE(5726), - [sym_recursive_pattern] = STATE(5726), - [sym_positional_pattern_clause] = STATE(2568), - [sym_property_pattern_clause] = STATE(2642), - [sym_relational_pattern] = STATE(5726), - [sym_negated_pattern] = STATE(5726), - [sym_and_pattern] = STATE(5726), - [sym_or_pattern] = STATE(5726), - [sym_declaration_pattern] = STATE(5726), - [sym_expression] = STATE(4635), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5649), - [sym_postfix_unary_expression] = STATE(5685), - [sym_prefix_unary_expression] = STATE(5685), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5649), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5685), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5649), - [sym_member_access_expression] = STATE(4701), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5685), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5649), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5649), - [sym_typeof_expression] = STATE(5649), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4701), - [sym_literal] = STATE(5649), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2269), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4142), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5135), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(438), [sym_preproc_endregion] = STATE(438), [sym_preproc_line] = STATE(438), @@ -122006,79 +122028,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(438), [sym_preproc_define] = STATE(438), [sym_preproc_undef] = STATE(438), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2629), - [anon_sym_ref] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_delegate] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2793), + [anon_sym_GT] = ACTIONS(2793), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(2639), - [anon_sym_LT_EQ] = ACTIONS(2639), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2641), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2643), - [sym_predefined_type] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2647), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2795), + [anon_sym_GT_EQ] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -122089,104 +122111,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [439] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3142), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2348), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2505), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5430), - [sym_constant_pattern] = STATE(5206), - [sym_parenthesized_pattern] = STATE(5206), - [sym_var_pattern] = STATE(5206), - [sym_type_pattern] = STATE(5206), - [sym_list_pattern] = STATE(5206), - [sym_recursive_pattern] = STATE(5206), - [sym_positional_pattern_clause] = STATE(2646), - [sym_property_pattern_clause] = STATE(2739), - [sym_relational_pattern] = STATE(5206), - [sym_negated_pattern] = STATE(5206), - [sym_and_pattern] = STATE(5206), - [sym_or_pattern] = STATE(5206), - [sym_declaration_pattern] = STATE(5206), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5274), - [sym_postfix_unary_expression] = STATE(5273), - [sym_prefix_unary_expression] = STATE(5273), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5274), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5273), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5274), - [sym_member_access_expression] = STATE(3288), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5273), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5274), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5274), - [sym_typeof_expression] = STATE(5274), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3288), - [sym_literal] = STATE(5274), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2269), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5935), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5135), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(439), [sym_preproc_endregion] = STATE(439), [sym_preproc_line] = STATE(439), @@ -122196,53 +122218,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(439), [sym_preproc_define] = STATE(439), [sym_preproc_undef] = STATE(439), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2793), + [anon_sym_GT] = ACTIONS(2793), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2659), - [sym_predefined_type] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2663), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2695), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2795), + [anon_sym_GT_EQ] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -122256,19 +122278,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -122279,104 +122301,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [440] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2463), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2223), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2282), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5645), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2311), - [sym_property_pattern_clause] = STATE(2374), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2497), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4456), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2618), + [sym_property_pattern_clause] = STATE(2680), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5096), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(440), [sym_preproc_endregion] = STATE(440), [sym_preproc_line] = STATE(440), @@ -122386,53 +122408,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(440), [sym_preproc_define] = STATE(440), [sym_preproc_undef] = STATE(440), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2757), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2745), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2763), + [anon_sym_GT_EQ] = ACTIONS(2763), + [anon_sym_not] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -122457,8 +122479,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -122475,98 +122497,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [441] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3142), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2348), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2505), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5330), - [sym_constant_pattern] = STATE(5206), - [sym_parenthesized_pattern] = STATE(5206), - [sym_var_pattern] = STATE(5206), - [sym_type_pattern] = STATE(5206), - [sym_list_pattern] = STATE(5206), - [sym_recursive_pattern] = STATE(5206), - [sym_positional_pattern_clause] = STATE(2646), - [sym_property_pattern_clause] = STATE(2739), - [sym_relational_pattern] = STATE(5206), - [sym_negated_pattern] = STATE(5206), - [sym_and_pattern] = STATE(5206), - [sym_or_pattern] = STATE(5206), - [sym_declaration_pattern] = STATE(5206), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5274), - [sym_postfix_unary_expression] = STATE(5273), - [sym_prefix_unary_expression] = STATE(5273), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5274), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5273), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5274), - [sym_member_access_expression] = STATE(3288), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5273), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5274), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5274), - [sym_typeof_expression] = STATE(5274), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3288), - [sym_literal] = STATE(5274), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(3003), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2355), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2543), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4456), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2621), + [sym_property_pattern_clause] = STATE(2866), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5107), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(441), [sym_preproc_endregion] = STATE(441), [sym_preproc_line] = STATE(441), @@ -122576,53 +122598,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(441), [sym_preproc_define] = STATE(441), [sym_preproc_undef] = STATE(441), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2725), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2659), - [sym_predefined_type] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2663), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2695), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -122636,19 +122658,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -122659,104 +122681,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [442] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3212), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2379), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2554), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5993), - [sym_constant_pattern] = STATE(4939), - [sym_parenthesized_pattern] = STATE(4939), - [sym_var_pattern] = STATE(4939), - [sym_type_pattern] = STATE(4939), - [sym_list_pattern] = STATE(4939), - [sym_recursive_pattern] = STATE(4939), - [sym_positional_pattern_clause] = STATE(2693), - [sym_property_pattern_clause] = STATE(2837), - [sym_relational_pattern] = STATE(4939), - [sym_negated_pattern] = STATE(4939), - [sym_and_pattern] = STATE(4939), - [sym_or_pattern] = STATE(4939), - [sym_declaration_pattern] = STATE(4939), - [sym_expression] = STATE(4600), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4943), - [sym_postfix_unary_expression] = STATE(5046), - [sym_prefix_unary_expression] = STATE(5046), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4943), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5046), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4943), - [sym_member_access_expression] = STATE(3109), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5046), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4943), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4943), - [sym_typeof_expression] = STATE(4943), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3109), - [sym_literal] = STATE(4943), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2464), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2280), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5628), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(442), [sym_preproc_endregion] = STATE(442), [sym_preproc_line] = STATE(442), @@ -122766,53 +122788,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(442), [sym_preproc_define] = STATE(442), [sym_preproc_undef] = STATE(442), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_GT] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_GT_EQ] = ACTIONS(2807), - [anon_sym_LT_EQ] = ACTIONS(2807), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2809), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -122837,8 +122859,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -122855,98 +122877,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [443] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2487), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5909), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2290), - [sym_property_pattern_clause] = STATE(2344), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4636), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2993), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2358), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2575), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5919), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2649), + [sym_property_pattern_clause] = STATE(2830), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5130), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(443), [sym_preproc_endregion] = STATE(443), [sym_preproc_line] = STATE(443), @@ -122956,53 +122978,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(443), [sym_preproc_define] = STATE(443), [sym_preproc_undef] = STATE(443), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_GT] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_GT] = ACTIONS(2661), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2605), - [anon_sym_LT_EQ] = ACTIONS(2605), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2607), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2613), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2665), + [anon_sym_GT_EQ] = ACTIONS(2665), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -123027,8 +123049,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -123045,98 +123067,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [444] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3168), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2325), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2514), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4785), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2600), - [sym_property_pattern_clause] = STATE(2723), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4607), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2988), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2521), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5529), + [sym_constant_pattern] = STATE(5512), + [sym_parenthesized_pattern] = STATE(5512), + [sym_var_pattern] = STATE(5512), + [sym_type_pattern] = STATE(5512), + [sym_list_pattern] = STATE(5512), + [sym_recursive_pattern] = STATE(5512), + [sym_positional_pattern_clause] = STATE(2623), + [sym_property_pattern_clause] = STATE(2842), + [sym_relational_pattern] = STATE(5512), + [sym_negated_pattern] = STATE(5512), + [sym_and_pattern] = STATE(5512), + [sym_or_pattern] = STATE(5512), + [sym_declaration_pattern] = STATE(5512), + [sym_expression] = STATE(5108), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5519), + [sym_postfix_unary_expression] = STATE(5521), + [sym_prefix_unary_expression] = STATE(5521), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5519), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5521), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5519), + [sym_member_access_expression] = STATE(3401), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5521), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5519), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5519), + [sym_typeof_expression] = STATE(5519), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3401), + [sym_literal] = STATE(5519), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(444), [sym_preproc_endregion] = STATE(444), [sym_preproc_line] = STATE(444), @@ -123146,243 +123168,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(444), [sym_preproc_define] = STATE(444), [sym_preproc_undef] = STATE(444), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2573), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2813), - [anon_sym_GT] = ACTIONS(2813), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_GT_EQ] = ACTIONS(2815), - [anon_sym_LT_EQ] = ACTIONS(2815), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2607), - [sym_predefined_type] = ACTIONS(2609), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2817), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), - }, - [445] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3232), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2360), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2573), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5542), - [sym_constant_pattern] = STATE(5506), - [sym_parenthesized_pattern] = STATE(5506), - [sym_var_pattern] = STATE(5506), - [sym_type_pattern] = STATE(5506), - [sym_list_pattern] = STATE(5506), - [sym_recursive_pattern] = STATE(5506), - [sym_positional_pattern_clause] = STATE(2712), - [sym_property_pattern_clause] = STATE(2826), - [sym_relational_pattern] = STATE(5506), - [sym_negated_pattern] = STATE(5506), - [sym_and_pattern] = STATE(5506), - [sym_or_pattern] = STATE(5506), - [sym_declaration_pattern] = STATE(5506), - [sym_expression] = STATE(4633), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5495), - [sym_postfix_unary_expression] = STATE(5514), - [sym_prefix_unary_expression] = STATE(5514), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5495), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5514), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5495), - [sym_member_access_expression] = STATE(4237), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5514), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5495), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5495), - [sym_typeof_expression] = STATE(5495), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4237), - [sym_literal] = STATE(5495), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_GT] = ACTIONS(2697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_GT_EQ] = ACTIONS(2733), - [anon_sym_LT_EQ] = ACTIONS(2733), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2735), - [sym_predefined_type] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2701), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2739), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2741), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2705), + [anon_sym_not] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -123407,8 +123239,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -123424,99 +123256,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1517), [sym_raw_string_start] = ACTIONS(1519), }, - [446] = { - [sym_attribute_list] = STATE(5927), + [445] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3232), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2360), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2573), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5515), - [sym_constant_pattern] = STATE(5506), - [sym_parenthesized_pattern] = STATE(5506), - [sym_var_pattern] = STATE(5506), - [sym_type_pattern] = STATE(5506), - [sym_list_pattern] = STATE(5506), - [sym_recursive_pattern] = STATE(5506), - [sym_positional_pattern_clause] = STATE(2712), - [sym_property_pattern_clause] = STATE(2826), - [sym_relational_pattern] = STATE(5506), - [sym_negated_pattern] = STATE(5506), - [sym_and_pattern] = STATE(5506), - [sym_or_pattern] = STATE(5506), - [sym_declaration_pattern] = STATE(5506), - [sym_expression] = STATE(4633), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5495), - [sym_postfix_unary_expression] = STATE(5514), - [sym_prefix_unary_expression] = STATE(5514), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5495), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5514), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5495), - [sym_member_access_expression] = STATE(4237), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5514), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5495), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5495), - [sym_typeof_expression] = STATE(5495), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4237), - [sym_literal] = STATE(5495), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2679), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2220), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2274), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5994), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(2312), + [sym_property_pattern_clause] = STATE(2366), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5151), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4449), + [sym_postfix_unary_expression] = STATE(4450), + [sym_prefix_unary_expression] = STATE(4450), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4449), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4450), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4449), + [sym_member_access_expression] = STATE(2940), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4450), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4449), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4449), + [sym_typeof_expression] = STATE(4449), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2940), + [sym_literal] = STATE(4449), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [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(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_ref] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2769), + [anon_sym_GT] = ACTIONS(2769), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2575), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), + }, + [446] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2993), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2358), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2541), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(4200), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2649), + [sym_property_pattern_clause] = STATE(2830), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5130), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(446), [sym_preproc_endregion] = STATE(446), [sym_preproc_line] = STATE(446), @@ -123526,53 +123548,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(446), [sym_preproc_define] = STATE(446), [sym_preproc_undef] = STATE(446), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_GT] = ACTIONS(2661), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_GT_EQ] = ACTIONS(2733), - [anon_sym_LT_EQ] = ACTIONS(2733), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2735), - [sym_predefined_type] = ACTIONS(2737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2739), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2741), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2665), + [anon_sym_GT_EQ] = ACTIONS(2665), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -123586,19 +123608,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -123609,104 +123631,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [447] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3232), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2360), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2573), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5545), - [sym_constant_pattern] = STATE(5506), - [sym_parenthesized_pattern] = STATE(5506), - [sym_var_pattern] = STATE(5506), - [sym_type_pattern] = STATE(5506), - [sym_list_pattern] = STATE(5506), - [sym_recursive_pattern] = STATE(5506), - [sym_positional_pattern_clause] = STATE(2712), - [sym_property_pattern_clause] = STATE(2826), - [sym_relational_pattern] = STATE(5506), - [sym_negated_pattern] = STATE(5506), - [sym_and_pattern] = STATE(5506), - [sym_or_pattern] = STATE(5506), - [sym_declaration_pattern] = STATE(5506), - [sym_expression] = STATE(4633), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5495), - [sym_postfix_unary_expression] = STATE(5514), - [sym_prefix_unary_expression] = STATE(5514), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5495), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5514), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5495), - [sym_member_access_expression] = STATE(4237), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5514), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5495), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5495), - [sym_typeof_expression] = STATE(5495), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4237), - [sym_literal] = STATE(5495), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6016), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5854), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6799), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(6000), + [sym_property_pattern_clause] = STATE(6037), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5027), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5897), + [sym_postfix_unary_expression] = STATE(5895), + [sym_prefix_unary_expression] = STATE(5895), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5897), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5895), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5897), + [sym_member_access_expression] = STATE(4658), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5895), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5897), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5897), + [sym_typeof_expression] = STATE(5897), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(4658), + [sym_literal] = STATE(5897), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2275), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(447), [sym_preproc_endregion] = STATE(447), [sym_preproc_line] = STATE(447), @@ -123716,53 +123738,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(447), [sym_preproc_define] = STATE(447), [sym_preproc_undef] = STATE(447), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_ref] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2821), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_GT_EQ] = ACTIONS(2733), - [anon_sym_LT_EQ] = ACTIONS(2733), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2735), - [sym_predefined_type] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2823), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2739), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2741), + [anon_sym_await] = ACTIONS(1449), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(2581), + [anon_sym_GT_EQ] = ACTIONS(2581), + [anon_sym_not] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -123776,19 +123798,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -123799,104 +123821,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [448] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3190), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2541), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5915), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2704), - [sym_property_pattern_clause] = STATE(2891), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4610), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2473), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2264), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5933), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2298), + [sym_property_pattern_clause] = STATE(2342), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5135), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(448), [sym_preproc_endregion] = STATE(448), [sym_preproc_line] = STATE(448), @@ -123906,53 +123928,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(448), [sym_preproc_define] = STATE(448), [sym_preproc_undef] = STATE(448), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_GT] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2793), + [anon_sym_GT] = ACTIONS(2793), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_GT_EQ] = ACTIONS(2799), - [anon_sym_LT_EQ] = ACTIONS(2799), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2801), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2795), + [anon_sym_GT_EQ] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -123977,8 +123999,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -123995,98 +124017,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [449] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3190), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2541), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(4887), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2704), - [sym_property_pattern_clause] = STATE(2891), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4610), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2990), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2378), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2563), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5937), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2636), + [sym_property_pattern_clause] = STATE(2864), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5140), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(449), [sym_preproc_endregion] = STATE(449), [sym_preproc_line] = STATE(449), @@ -124096,53 +124118,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(449), [sym_preproc_define] = STATE(449), [sym_preproc_undef] = STATE(449), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_GT] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_GT_EQ] = ACTIONS(2799), - [anon_sym_LT_EQ] = ACTIONS(2799), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2801), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2745), + [anon_sym_GT_EQ] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -124167,8 +124189,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -124185,98 +124207,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [450] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3190), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2541), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5895), - [sym_constant_pattern] = STATE(4793), - [sym_parenthesized_pattern] = STATE(4793), - [sym_var_pattern] = STATE(4793), - [sym_type_pattern] = STATE(4793), - [sym_list_pattern] = STATE(4793), - [sym_recursive_pattern] = STATE(4793), - [sym_positional_pattern_clause] = STATE(2704), - [sym_property_pattern_clause] = STATE(2891), - [sym_relational_pattern] = STATE(4793), - [sym_negated_pattern] = STATE(4793), - [sym_and_pattern] = STATE(4793), - [sym_or_pattern] = STATE(4793), - [sym_declaration_pattern] = STATE(4793), - [sym_expression] = STATE(4610), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4869), - [sym_postfix_unary_expression] = STATE(4874), - [sym_prefix_unary_expression] = STATE(4874), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4869), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4874), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4869), - [sym_member_access_expression] = STATE(2893), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4874), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4869), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4869), - [sym_typeof_expression] = STATE(4869), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2893), - [sym_literal] = STATE(4869), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5559), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_pattern] = STATE(6894), + [sym_constant_pattern] = STATE(4455), + [sym_parenthesized_pattern] = STATE(4455), + [sym_var_pattern] = STATE(4455), + [sym_type_pattern] = STATE(4455), + [sym_list_pattern] = STATE(4455), + [sym_recursive_pattern] = STATE(4455), + [sym_positional_pattern_clause] = STATE(5837), + [sym_property_pattern_clause] = STATE(5946), + [sym_relational_pattern] = STATE(4455), + [sym_negated_pattern] = STATE(4455), + [sym_and_pattern] = STATE(4455), + [sym_or_pattern] = STATE(4455), + [sym_declaration_pattern] = STATE(4455), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(5646), + [sym_postfix_unary_expression] = STATE(5637), + [sym_prefix_unary_expression] = STATE(5637), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(5646), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(5637), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(5646), + [sym_member_access_expression] = STATE(3582), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(5637), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(5646), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(5646), + [sym_typeof_expression] = STATE(5646), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3582), + [sym_literal] = STATE(5646), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(450), [sym_preproc_endregion] = STATE(450), [sym_preproc_line] = STATE(450), @@ -124286,53 +124308,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(450), [sym_preproc_define] = STATE(450), [sym_preproc_undef] = STATE(450), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(1271), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_GT] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_GT_EQ] = ACTIONS(2799), - [anon_sym_LT_EQ] = ACTIONS(2799), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2673), - [sym_predefined_type] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2801), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -124346,19 +124368,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -124369,104 +124391,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [451] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3142), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2348), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2505), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_pattern] = STATE(5428), - [sym_constant_pattern] = STATE(5206), - [sym_parenthesized_pattern] = STATE(5206), - [sym_var_pattern] = STATE(5206), - [sym_type_pattern] = STATE(5206), - [sym_list_pattern] = STATE(5206), - [sym_recursive_pattern] = STATE(5206), - [sym_positional_pattern_clause] = STATE(2646), - [sym_property_pattern_clause] = STATE(2739), - [sym_relational_pattern] = STATE(5206), - [sym_negated_pattern] = STATE(5206), - [sym_and_pattern] = STATE(5206), - [sym_or_pattern] = STATE(5206), - [sym_declaration_pattern] = STATE(5206), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(5274), - [sym_postfix_unary_expression] = STATE(5273), - [sym_prefix_unary_expression] = STATE(5273), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(5274), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(5273), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(5274), - [sym_member_access_expression] = STATE(3288), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(5273), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(5274), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(5274), - [sym_typeof_expression] = STATE(5274), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3288), - [sym_literal] = STATE(5274), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2949), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2515), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_pattern] = STATE(5844), + [sym_constant_pattern] = STATE(4368), + [sym_parenthesized_pattern] = STATE(4368), + [sym_var_pattern] = STATE(4368), + [sym_type_pattern] = STATE(4368), + [sym_list_pattern] = STATE(4368), + [sym_recursive_pattern] = STATE(4368), + [sym_positional_pattern_clause] = STATE(2594), + [sym_property_pattern_clause] = STATE(2641), + [sym_relational_pattern] = STATE(4368), + [sym_negated_pattern] = STATE(4368), + [sym_and_pattern] = STATE(4368), + [sym_or_pattern] = STATE(4368), + [sym_declaration_pattern] = STATE(4368), + [sym_expression] = STATE(5136), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(4261), + [sym_postfix_unary_expression] = STATE(4260), + [sym_prefix_unary_expression] = STATE(4260), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(4261), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(4260), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(4261), + [sym_member_access_expression] = STATE(2865), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(4260), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(4261), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(4261), + [sym_typeof_expression] = STATE(4261), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2865), + [sym_literal] = STATE(4261), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(451), [sym_preproc_endregion] = STATE(451), [sym_preproc_line] = STATE(451), @@ -124476,53 +124498,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(451), [sym_preproc_define] = STATE(451), [sym_preproc_undef] = STATE(451), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2571), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_GT] = ACTIONS(2719), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2659), - [sym_predefined_type] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2617), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [sym_discard] = ACTIONS(2663), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2695), + [anon_sym_await] = ACTIONS(1955), + [sym_discard] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(2721), + [anon_sym_GT_EQ] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -124536,19 +124558,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -124559,94 +124581,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [452] = { [sym_attribute] = STATE(7184), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6088), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6059), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_attribute_target_specifier] = STATE(6097), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7185), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6075), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(452), [sym_preproc_endregion] = STATE(452), [sym_preproc_line] = STATE(452), @@ -124656,8 +124678,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(452), [sym_preproc_define] = STATE(452), [sym_preproc_undef] = STATE(452), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -124666,48 +124688,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assembly] = ACTIONS(2847), [anon_sym_module] = ACTIONS(2847), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_field] = ACTIONS(1315), - [anon_sym_event] = ACTIONS(1315), - [anon_sym_method] = ACTIONS(1315), - [anon_sym_param] = ACTIONS(1315), - [anon_sym_property] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), + [anon_sym_field] = ACTIONS(1267), + [anon_sym_event] = ACTIONS(1267), + [anon_sym_method] = ACTIONS(1267), + [anon_sym_param] = ACTIONS(1267), + [anon_sym_property] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -124732,8 +124754,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -124751,87 +124773,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [453] = { [sym_attribute] = STATE(7184), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6088), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6059), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_attribute_target_specifier] = STATE(6097), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7185), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6075), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(453), [sym_preproc_endregion] = STATE(453), [sym_preproc_line] = STATE(453), @@ -124841,8 +124863,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(453), [sym_preproc_define] = STATE(453), [sym_preproc_undef] = STATE(453), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -124851,48 +124873,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assembly] = ACTIONS(2851), [anon_sym_module] = ACTIONS(2851), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_field] = ACTIONS(1315), - [anon_sym_event] = ACTIONS(1315), - [anon_sym_method] = ACTIONS(1315), - [anon_sym_param] = ACTIONS(1315), - [anon_sym_property] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), + [anon_sym_field] = ACTIONS(1267), + [anon_sym_event] = ACTIONS(1267), + [anon_sym_method] = ACTIONS(1267), + [anon_sym_param] = ACTIONS(1267), + [anon_sym_property] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -124917,8 +124939,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -124935,88 +124957,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [454] = { - [sym_attribute] = STATE(7234), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6092), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6059), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute] = STATE(7330), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_attribute_target_specifier] = STATE(6090), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7332), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6075), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(454), [sym_preproc_endregion] = STATE(454), [sym_preproc_line] = STATE(454), @@ -125026,56 +125048,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(454), [sym_preproc_define] = STATE(454), [sym_preproc_undef] = STATE(454), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_field] = ACTIONS(1315), - [anon_sym_event] = ACTIONS(1315), - [anon_sym_method] = ACTIONS(1315), - [anon_sym_param] = ACTIONS(1315), - [anon_sym_property] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), + [anon_sym_field] = ACTIONS(1267), + [anon_sym_event] = ACTIONS(1267), + [anon_sym_method] = ACTIONS(1267), + [anon_sym_param] = ACTIONS(1267), + [anon_sym_property] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -125100,8 +125122,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -125118,88 +125140,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [455] = { - [sym_attribute] = STATE(7369), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6081), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6059), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute] = STATE(7330), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_attribute_target_specifier] = STATE(6090), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7185), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6075), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(455), [sym_preproc_endregion] = STATE(455), [sym_preproc_line] = STATE(455), @@ -125209,56 +125231,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(455), [sym_preproc_define] = STATE(455), [sym_preproc_undef] = STATE(455), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_field] = ACTIONS(1315), - [anon_sym_event] = ACTIONS(1315), - [anon_sym_method] = ACTIONS(1315), - [anon_sym_param] = ACTIONS(1315), - [anon_sym_property] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), + [anon_sym_field] = ACTIONS(1267), + [anon_sym_event] = ACTIONS(1267), + [anon_sym_method] = ACTIONS(1267), + [anon_sym_param] = ACTIONS(1267), + [anon_sym_property] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -125283,8 +125305,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -125301,88 +125323,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [456] = { - [sym_attribute] = STATE(7369), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6081), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7058), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6059), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute] = STATE(7330), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_attribute_target_specifier] = STATE(6090), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7177), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6075), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(456), [sym_preproc_endregion] = STATE(456), [sym_preproc_line] = STATE(456), @@ -125392,56 +125414,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(456), [sym_preproc_define] = STATE(456), [sym_preproc_undef] = STATE(456), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_field] = ACTIONS(1315), - [anon_sym_event] = ACTIONS(1315), - [anon_sym_method] = ACTIONS(1315), - [anon_sym_param] = ACTIONS(1315), - [anon_sym_property] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), + [anon_sym_field] = ACTIONS(1267), + [anon_sym_event] = ACTIONS(1267), + [anon_sym_method] = ACTIONS(1267), + [anon_sym_param] = ACTIONS(1267), + [anon_sym_property] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -125466,8 +125488,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -125484,88 +125506,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [457] = { - [sym_attribute] = STATE(7369), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6081), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7337), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6059), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute] = STATE(7330), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_attribute_target_specifier] = STATE(6090), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7266), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6075), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(457), [sym_preproc_endregion] = STATE(457), [sym_preproc_line] = STATE(457), @@ -125575,56 +125597,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(457), [sym_preproc_define] = STATE(457), [sym_preproc_undef] = STATE(457), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_field] = ACTIONS(1315), - [anon_sym_event] = ACTIONS(1315), - [anon_sym_method] = ACTIONS(1315), - [anon_sym_param] = ACTIONS(1315), - [anon_sym_property] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), + [anon_sym_field] = ACTIONS(1267), + [anon_sym_event] = ACTIONS(1267), + [anon_sym_method] = ACTIONS(1267), + [anon_sym_param] = ACTIONS(1267), + [anon_sym_property] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -125649,8 +125671,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -125667,88 +125689,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [458] = { - [sym_attribute] = STATE(7369), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6081), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7138), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6059), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute] = STATE(7330), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_attribute_target_specifier] = STATE(6090), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7093), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6075), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(458), [sym_preproc_endregion] = STATE(458), [sym_preproc_line] = STATE(458), @@ -125758,56 +125780,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(458), [sym_preproc_define] = STATE(458), [sym_preproc_undef] = STATE(458), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_field] = ACTIONS(1315), - [anon_sym_event] = ACTIONS(1315), - [anon_sym_method] = ACTIONS(1315), - [anon_sym_param] = ACTIONS(1315), - [anon_sym_property] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), + [anon_sym_field] = ACTIONS(1267), + [anon_sym_event] = ACTIONS(1267), + [anon_sym_method] = ACTIONS(1267), + [anon_sym_param] = ACTIONS(1267), + [anon_sym_property] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -125832,8 +125854,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -125850,88 +125872,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [459] = { - [sym_attribute] = STATE(7369), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6081), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7370), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6059), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute] = STATE(7330), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_attribute_target_specifier] = STATE(6090), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7118), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6075), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(459), [sym_preproc_endregion] = STATE(459), [sym_preproc_line] = STATE(459), @@ -125941,56 +125963,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(459), [sym_preproc_define] = STATE(459), [sym_preproc_undef] = STATE(459), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_field] = ACTIONS(1315), - [anon_sym_event] = ACTIONS(1315), - [anon_sym_method] = ACTIONS(1315), - [anon_sym_param] = ACTIONS(1315), - [anon_sym_property] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), + [anon_sym_field] = ACTIONS(1267), + [anon_sym_event] = ACTIONS(1267), + [anon_sym_method] = ACTIONS(1267), + [anon_sym_param] = ACTIONS(1267), + [anon_sym_property] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -126015,8 +126037,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126033,88 +126055,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [460] = { - [sym_attribute] = STATE(7369), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6081), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7213), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6059), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute] = STATE(7174), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_attribute_target_specifier] = STATE(6085), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7185), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6075), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(460), [sym_preproc_endregion] = STATE(460), [sym_preproc_line] = STATE(460), @@ -126124,56 +126146,56 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_field] = ACTIONS(1315), - [anon_sym_event] = ACTIONS(1315), - [anon_sym_method] = ACTIONS(1315), - [anon_sym_param] = ACTIONS(1315), - [anon_sym_property] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), + [anon_sym_field] = ACTIONS(1267), + [anon_sym_event] = ACTIONS(1267), + [anon_sym_method] = ACTIONS(1267), + [anon_sym_param] = ACTIONS(1267), + [anon_sym_property] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -126198,8 +126220,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126216,89 +126238,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [461] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6121), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6130), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(5148), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(461), [sym_preproc_endregion] = STATE(461), [sym_preproc_line] = STATE(461), @@ -126308,9 +126330,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -126321,40 +126343,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -126379,8 +126401,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126397,89 +126419,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [462] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7495), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6156), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6157), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5970), + [sym_lvalue_expression] = STATE(5142), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(462), [sym_preproc_endregion] = STATE(462), [sym_preproc_line] = STATE(462), @@ -126489,9 +126511,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -126502,40 +126524,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -126560,8 +126582,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126578,89 +126600,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [463] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7472), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6103), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5973), - [sym_lvalue_expression] = STATE(5164), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6135), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(463), [sym_preproc_endregion] = STATE(463), [sym_preproc_line] = STATE(463), @@ -126670,9 +126692,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -126683,40 +126705,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -126741,8 +126763,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126759,89 +126781,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [464] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7587), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6129), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6146), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5157), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(464), [sym_preproc_endregion] = STATE(464), [sym_preproc_line] = STATE(464), @@ -126851,9 +126873,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -126864,40 +126886,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -126922,8 +126944,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126940,89 +126962,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [465] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6104), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6146), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(465), [sym_preproc_endregion] = STATE(465), [sym_preproc_line] = STATE(465), @@ -127032,9 +127054,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -127045,40 +127067,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -127103,8 +127125,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127121,89 +127143,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [466] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7411), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6152), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5974), - [sym_lvalue_expression] = STATE(5158), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6146), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7508), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(466), [sym_preproc_endregion] = STATE(466), [sym_preproc_line] = STATE(466), @@ -127213,9 +127235,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -127226,40 +127248,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -127284,8 +127306,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127302,89 +127324,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [467] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6127), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6152), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(467), [sym_preproc_endregion] = STATE(467), [sym_preproc_line] = STATE(467), @@ -127394,9 +127416,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -127407,40 +127429,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -127465,8 +127487,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127483,89 +127505,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [468] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6113), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6165), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(468), [sym_preproc_endregion] = STATE(468), [sym_preproc_line] = STATE(468), @@ -127575,9 +127597,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -127588,40 +127610,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -127646,8 +127668,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127664,89 +127686,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [469] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6141), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6104), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(469), [sym_preproc_endregion] = STATE(469), [sym_preproc_line] = STATE(469), @@ -127756,9 +127778,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -127769,40 +127791,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -127827,8 +127849,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127845,89 +127867,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [470] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6159), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5992), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6173), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(470), [sym_preproc_endregion] = STATE(470), [sym_preproc_line] = STATE(470), @@ -127937,9 +127959,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -127950,40 +127972,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -128008,8 +128030,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -128026,89 +128048,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [471] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6109), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5992), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6116), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5944), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(471), [sym_preproc_endregion] = STATE(471), [sym_preproc_line] = STATE(471), @@ -128118,9 +128140,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -128131,40 +128153,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -128189,8 +128211,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -128207,89 +128229,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [472] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6150), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6133), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5944), + [sym_lvalue_expression] = STATE(5155), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(472), [sym_preproc_endregion] = STATE(472), [sym_preproc_line] = STATE(472), @@ -128299,9 +128321,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -128312,40 +128334,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -128370,8 +128392,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -128388,89 +128410,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [473] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7587), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6154), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5992), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6172), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5954), + [sym_lvalue_expression] = STATE(5157), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(473), [sym_preproc_endregion] = STATE(473), [sym_preproc_line] = STATE(473), @@ -128480,9 +128502,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -128493,40 +128515,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -128551,8 +128573,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -128569,89 +128591,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [474] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6146), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(474), [sym_preproc_endregion] = STATE(474), [sym_preproc_line] = STATE(474), @@ -128661,9 +128683,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -128674,40 +128696,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -128732,8 +128754,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -128750,89 +128772,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [475] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6168), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6146), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(475), [sym_preproc_endregion] = STATE(475), [sym_preproc_line] = STATE(475), @@ -128842,9 +128864,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -128855,40 +128877,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -128913,8 +128935,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -128931,89 +128953,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [476] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7472), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6165), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5973), - [sym_lvalue_expression] = STATE(5164), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6144), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(476), [sym_preproc_endregion] = STATE(476), [sym_preproc_line] = STATE(476), @@ -129023,9 +129045,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -129036,40 +129058,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -129094,8 +129116,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -129112,89 +129134,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [477] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7472), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6126), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5973), - [sym_lvalue_expression] = STATE(5164), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6146), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5155), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(477), [sym_preproc_endregion] = STATE(477), [sym_preproc_line] = STATE(477), @@ -129204,9 +129226,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -129217,40 +129239,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -129275,8 +129297,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -129293,89 +129315,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [478] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6160), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6137), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(478), [sym_preproc_endregion] = STATE(478), [sym_preproc_line] = STATE(478), @@ -129385,9 +129407,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -129398,40 +129420,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -129456,8 +129478,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -129474,89 +129496,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [479] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6166), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6114), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(479), [sym_preproc_endregion] = STATE(479), [sym_preproc_line] = STATE(479), @@ -129566,9 +129588,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -129579,40 +129601,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -129637,8 +129659,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -129655,89 +129677,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [480] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7411), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6164), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5974), - [sym_lvalue_expression] = STATE(5158), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6120), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(480), [sym_preproc_endregion] = STATE(480), [sym_preproc_line] = STATE(480), @@ -129747,9 +129769,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -129760,40 +129782,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -129818,8 +129840,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -129836,89 +129858,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [481] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6157), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6145), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(5148), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(481), [sym_preproc_endregion] = STATE(481), [sym_preproc_line] = STATE(481), @@ -129928,9 +129950,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -129941,40 +129963,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -129999,8 +130021,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -130017,89 +130039,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [482] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7495), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6146), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6123), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5970), + [sym_lvalue_expression] = STATE(5142), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(482), [sym_preproc_endregion] = STATE(482), [sym_preproc_line] = STATE(482), @@ -130109,9 +130131,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -130122,40 +130144,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -130180,8 +130202,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -130198,89 +130220,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [483] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6139), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6159), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5944), + [sym_lvalue_expression] = STATE(5155), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(483), [sym_preproc_endregion] = STATE(483), [sym_preproc_line] = STATE(483), @@ -130290,9 +130312,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -130303,40 +130325,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -130361,8 +130383,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -130379,89 +130401,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [484] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6134), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6166), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5944), + [sym_lvalue_expression] = STATE(5155), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(484), [sym_preproc_endregion] = STATE(484), [sym_preproc_line] = STATE(484), @@ -130471,9 +130493,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -130484,40 +130506,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -130542,8 +130564,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -130560,89 +130582,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [485] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6119), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5992), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6138), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5117), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(485), [sym_preproc_endregion] = STATE(485), [sym_preproc_line] = STATE(485), @@ -130652,9 +130674,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -130665,40 +130687,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -130723,8 +130745,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -130741,89 +130763,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [486] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7495), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6141), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6146), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5142), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(486), [sym_preproc_endregion] = STATE(486), [sym_preproc_line] = STATE(486), @@ -130833,9 +130855,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -130846,40 +130868,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -130904,8 +130926,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -130922,89 +130944,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [487] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6097), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6102), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5117), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(487), [sym_preproc_endregion] = STATE(487), [sym_preproc_line] = STATE(487), @@ -131014,9 +131036,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -131027,40 +131049,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -131085,8 +131107,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -131103,89 +131125,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [488] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6128), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5992), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6170), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(488), [sym_preproc_endregion] = STATE(488), [sym_preproc_line] = STATE(488), @@ -131195,9 +131217,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -131208,40 +131230,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -131266,8 +131288,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -131284,89 +131306,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [489] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6107), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6140), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(5148), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(489), [sym_preproc_endregion] = STATE(489), [sym_preproc_line] = STATE(489), @@ -131376,9 +131398,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -131389,40 +131411,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -131447,8 +131469,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -131465,89 +131487,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [490] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7411), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6147), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5974), - [sym_lvalue_expression] = STATE(5158), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6139), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(5148), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(490), [sym_preproc_endregion] = STATE(490), [sym_preproc_line] = STATE(490), @@ -131557,9 +131579,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -131570,40 +131592,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -131628,8 +131650,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -131646,89 +131668,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [491] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7495), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6114), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5992), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6101), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5970), + [sym_lvalue_expression] = STATE(5142), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(491), [sym_preproc_endregion] = STATE(491), [sym_preproc_line] = STATE(491), @@ -131738,9 +131760,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -131751,40 +131773,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -131809,8 +131831,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -131827,89 +131849,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [492] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6158), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5961), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6129), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5997), [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(492), [sym_preproc_endregion] = STATE(492), [sym_preproc_line] = STATE(492), @@ -131919,9 +131941,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -131932,40 +131954,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -131990,8 +132012,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -132008,89 +132030,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [493] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6133), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6121), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5117), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(493), [sym_preproc_endregion] = STATE(493), [sym_preproc_line] = STATE(493), @@ -132100,9 +132122,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -132113,40 +132135,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -132171,8 +132193,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -132189,89 +132211,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [494] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7411), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7587), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6141), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5158), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6154), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5954), + [sym_lvalue_expression] = STATE(5157), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(494), [sym_preproc_endregion] = STATE(494), [sym_preproc_line] = STATE(494), @@ -132281,9 +132303,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -132294,40 +132316,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -132352,8 +132374,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -132370,89 +132392,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [495] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6141), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6118), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(5148), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(495), [sym_preproc_endregion] = STATE(495), [sym_preproc_line] = STATE(495), @@ -132462,9 +132484,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -132475,40 +132497,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -132533,8 +132555,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -132551,89 +132573,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [496] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6153), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5992), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6171), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5117), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(496), [sym_preproc_endregion] = STATE(496), [sym_preproc_line] = STATE(496), @@ -132643,9 +132665,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -132656,40 +132678,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -132714,8 +132736,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -132732,89 +132754,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [497] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6141), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7497), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6115), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5117), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(497), [sym_preproc_endregion] = STATE(497), [sym_preproc_line] = STATE(497), @@ -132824,9 +132846,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -132837,40 +132859,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -132895,8 +132917,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -132913,89 +132935,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [498] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7472), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6141), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5164), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6113), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5117), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(498), [sym_preproc_endregion] = STATE(498), [sym_preproc_line] = STATE(498), @@ -133005,9 +133027,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -133018,40 +133040,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -133076,8 +133098,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -133094,89 +133116,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [499] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6162), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6168), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5117), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(499), [sym_preproc_endregion] = STATE(499), [sym_preproc_line] = STATE(499), @@ -133186,9 +133208,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -133199,40 +133221,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -133257,8 +133279,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -133275,89 +133297,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [500] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6144), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6106), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5944), + [sym_lvalue_expression] = STATE(5155), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(500), [sym_preproc_endregion] = STATE(500), [sym_preproc_line] = STATE(500), @@ -133367,9 +133389,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -133380,40 +133402,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -133438,8 +133460,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -133456,89 +133478,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [501] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6101), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5992), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6107), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5117), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(501), [sym_preproc_endregion] = STATE(501), [sym_preproc_line] = STATE(501), @@ -133548,9 +133570,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -133561,40 +133583,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -133619,8 +133641,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -133637,89 +133659,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [502] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6143), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5992), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6105), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(5148), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(502), [sym_preproc_endregion] = STATE(502), [sym_preproc_line] = STATE(502), @@ -133729,9 +133751,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -133742,40 +133764,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -133800,8 +133822,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -133818,89 +133840,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [503] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7376), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6148), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6127), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5944), + [sym_lvalue_expression] = STATE(5155), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(503), [sym_preproc_endregion] = STATE(503), [sym_preproc_line] = STATE(503), @@ -133910,9 +133932,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -133923,40 +133945,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -133981,8 +134003,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -133999,89 +134021,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [504] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6100), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6156), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5944), + [sym_lvalue_expression] = STATE(5155), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(504), [sym_preproc_endregion] = STATE(504), [sym_preproc_line] = STATE(504), @@ -134091,9 +134113,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -134104,40 +134126,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -134162,8 +134184,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -134180,89 +134202,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [505] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6117), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5992), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6134), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(505), [sym_preproc_endregion] = STATE(505), [sym_preproc_line] = STATE(505), @@ -134272,9 +134294,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -134285,40 +134307,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -134343,8 +134365,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -134361,89 +134383,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [506] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6108), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6146), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5148), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(506), [sym_preproc_endregion] = STATE(506), [sym_preproc_line] = STATE(506), @@ -134453,9 +134475,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -134466,40 +134488,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -134524,8 +134546,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -134542,89 +134564,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [507] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6110), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6150), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5944), + [sym_lvalue_expression] = STATE(5155), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(507), [sym_preproc_endregion] = STATE(507), [sym_preproc_line] = STATE(507), @@ -134634,9 +134656,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -134647,40 +134669,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -134705,8 +134727,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -134723,89 +134745,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [508] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6125), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6141), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5117), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(508), [sym_preproc_endregion] = STATE(508), [sym_preproc_line] = STATE(508), @@ -134815,9 +134837,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -134828,40 +134850,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -134886,8 +134908,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -134904,89 +134926,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [509] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6163), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6124), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5117), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(509), [sym_preproc_endregion] = STATE(509), [sym_preproc_line] = STATE(509), @@ -134996,9 +135018,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -135009,40 +135031,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -135067,8 +135089,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -135085,89 +135107,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [510] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6141), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6146), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5117), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(510), [sym_preproc_endregion] = STATE(510), [sym_preproc_line] = STATE(510), @@ -135177,9 +135199,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -135190,40 +135212,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -135248,8 +135270,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -135266,89 +135288,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [511] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7587), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6141), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6164), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5954), + [sym_lvalue_expression] = STATE(5157), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(511), [sym_preproc_endregion] = STATE(511), [sym_preproc_line] = STATE(511), @@ -135358,9 +135380,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -135371,40 +135393,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -135429,8 +135451,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -135447,89 +135469,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [512] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7472), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6098), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5973), - [sym_lvalue_expression] = STATE(5164), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6128), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(5148), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(512), [sym_preproc_endregion] = STATE(512), [sym_preproc_line] = STATE(512), @@ -135539,9 +135561,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -135552,40 +135574,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -135610,8 +135632,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -135628,89 +135650,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [513] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6141), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6112), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5944), + [sym_lvalue_expression] = STATE(5155), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(513), [sym_preproc_endregion] = STATE(513), [sym_preproc_line] = STATE(513), @@ -135720,9 +135742,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -135733,40 +135755,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -135791,8 +135813,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -135809,89 +135831,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [514] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7389), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6138), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6163), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5997), + [sym_lvalue_expression] = STATE(5148), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(514), [sym_preproc_endregion] = STATE(514), [sym_preproc_line] = STATE(514), @@ -135901,9 +135923,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -135914,40 +135936,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -135972,8 +135994,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -135990,89 +136012,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [515] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7495), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6136), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6160), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5970), [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(515), [sym_preproc_endregion] = STATE(515), [sym_preproc_line] = STATE(515), @@ -136082,9 +136104,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -136095,40 +136117,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -136153,8 +136175,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -136171,89 +136193,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [516] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6167), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6111), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5944), + [sym_lvalue_expression] = STATE(5155), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(516), [sym_preproc_endregion] = STATE(516), [sym_preproc_line] = STATE(516), @@ -136263,9 +136285,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -136276,40 +136298,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -136334,8 +136356,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -136352,89 +136374,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [517] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7592), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7587), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6124), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5992), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6174), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5954), + [sym_lvalue_expression] = STATE(5157), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(517), [sym_preproc_endregion] = STATE(517), [sym_preproc_line] = STATE(517), @@ -136444,9 +136466,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -136457,40 +136479,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -136515,8 +136537,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -136533,89 +136555,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [518] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7570), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6132), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5960), - [sym_lvalue_expression] = STATE(5142), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6136), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5944), + [sym_lvalue_expression] = STATE(5127), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(518), [sym_preproc_endregion] = STATE(518), [sym_preproc_line] = STATE(518), @@ -136625,9 +136647,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -136638,40 +136660,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -136696,8 +136718,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -136714,89 +136736,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [519] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7411), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6145), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5974), - [sym_lvalue_expression] = STATE(5158), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2257), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6132), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(5991), + [sym_lvalue_expression] = STATE(5117), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(519), [sym_preproc_endregion] = STATE(519), [sym_preproc_line] = STATE(519), @@ -136806,9 +136828,9 @@ 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(3097), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2927), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -136819,40 +136841,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_readonly] = ACTIONS(1311), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_out] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(1289), - [anon_sym_scoped] = ACTIONS(1291), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(1319), + [anon_sym_scoped] = ACTIONS(1321), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -136877,8 +136899,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -136895,88 +136917,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [520] = { - [sym_attribute_list] = STATE(5926), + [sym_attribute_list] = STATE(5915), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3425), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(7921), - [sym_preproc_elif_in_expression] = STATE(7921), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_else_in_attribute_list] = STATE(7823), - [sym_preproc_elif_in_attribute_list] = STATE(7823), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3611), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7929), + [sym_preproc_elif_in_expression] = STATE(7929), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_else_in_attribute_list] = STATE(7741), + [sym_preproc_elif_in_attribute_list] = STATE(7741), [sym_preproc_region] = STATE(520), [sym_preproc_endregion] = STATE(520), [sym_preproc_line] = STATE(520), @@ -136986,47 +137008,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -137051,8 +137073,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_if_token3] = ACTIONS(2859), [aux_sym_preproc_else_token1] = ACTIONS(2861), [aux_sym_preproc_elif_token1] = ACTIONS(2863), @@ -137072,88 +137094,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [521] = { - [sym_attribute_list] = STATE(5926), + [sym_attribute_list] = STATE(5915), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3355), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(8057), - [sym_preproc_elif_in_expression] = STATE(8057), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_else_in_attribute_list] = STATE(7823), - [sym_preproc_elif_in_attribute_list] = STATE(7823), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3672), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(8031), + [sym_preproc_elif_in_expression] = STATE(8031), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_else_in_attribute_list] = STATE(7741), + [sym_preproc_elif_in_attribute_list] = STATE(7741), [sym_preproc_region] = STATE(521), [sym_preproc_endregion] = STATE(521), [sym_preproc_line] = STATE(521), @@ -137163,47 +137185,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -137228,8 +137250,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_if_token3] = ACTIONS(2865), [aux_sym_preproc_else_token1] = ACTIONS(2861), [aux_sym_preproc_elif_token1] = ACTIONS(2863), @@ -137251,86 +137273,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [522] = { [sym_attribute_list] = STATE(5926), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3425), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(7921), - [sym_preproc_elif_in_expression] = STATE(7921), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_else_in_attribute_list] = STATE(7823), - [sym_preproc_elif_in_attribute_list] = STATE(7823), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3623), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7891), + [sym_preproc_elif_in_expression] = STATE(7891), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_else_in_attribute_list] = STATE(7890), + [sym_preproc_elif_in_attribute_list] = STATE(7890), [sym_preproc_region] = STATE(522), [sym_preproc_endregion] = STATE(522), [sym_preproc_line] = STATE(522), @@ -137340,47 +137362,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -137405,9 +137427,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token3] = ACTIONS(2865), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token3] = ACTIONS(2867), [aux_sym_preproc_else_token1] = ACTIONS(2861), [aux_sym_preproc_elif_token1] = ACTIONS(2863), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -137426,88 +137448,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [523] = { - [sym_attribute_list] = STATE(5926), + [sym_attribute_list] = STATE(5915), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3402), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_else_in_attribute_list] = STATE(7823), - [sym_preproc_elif_in_attribute_list] = STATE(7823), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3595), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(8115), + [sym_preproc_elif_in_expression] = STATE(8115), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_else_in_attribute_list] = STATE(7741), + [sym_preproc_elif_in_attribute_list] = STATE(7741), [sym_preproc_region] = STATE(523), [sym_preproc_endregion] = STATE(523), [sym_preproc_line] = STATE(523), @@ -137517,47 +137539,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -137582,8 +137604,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_if_token3] = ACTIONS(2859), [aux_sym_preproc_else_token1] = ACTIONS(2861), [aux_sym_preproc_elif_token1] = ACTIONS(2863), @@ -137603,88 +137625,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [524] = { - [sym_attribute_list] = STATE(5926), + [sym_attribute_list] = STATE(5915), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3358), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(7822), - [sym_preproc_elif_in_expression] = STATE(7822), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_else_in_attribute_list] = STATE(7823), - [sym_preproc_elif_in_attribute_list] = STATE(7823), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3611), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7929), + [sym_preproc_elif_in_expression] = STATE(7929), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_else_in_attribute_list] = STATE(7741), + [sym_preproc_elif_in_attribute_list] = STATE(7741), [sym_preproc_region] = STATE(524), [sym_preproc_endregion] = STATE(524), [sym_preproc_line] = STATE(524), @@ -137694,47 +137716,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -137759,8 +137781,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_if_token3] = ACTIONS(2865), [aux_sym_preproc_else_token1] = ACTIONS(2861), [aux_sym_preproc_elif_token1] = ACTIONS(2863), @@ -137780,88 +137802,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [525] = { - [sym_attribute_list] = STATE(5888), + [sym_attribute_list] = STATE(5915), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3414), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(7929), - [sym_preproc_elif_in_expression] = STATE(7929), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_else_in_attribute_list] = STATE(7926), - [sym_preproc_elif_in_attribute_list] = STATE(7926), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3630), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7803), + [sym_preproc_elif_in_expression] = STATE(7803), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_else_in_attribute_list] = STATE(7741), + [sym_preproc_elif_in_attribute_list] = STATE(7741), [sym_preproc_region] = STATE(525), [sym_preproc_endregion] = STATE(525), [sym_preproc_line] = STATE(525), @@ -137871,47 +137893,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -137936,9 +137958,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token3] = ACTIONS(2867), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token3] = ACTIONS(2869), [aux_sym_preproc_else_token1] = ACTIONS(2861), [aux_sym_preproc_elif_token1] = ACTIONS(2863), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -137957,88 +137979,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [526] = { - [sym_attribute_list] = STATE(5926), + [sym_attribute_list] = STATE(5915), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3428), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(7958), - [sym_preproc_elif_in_expression] = STATE(7958), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_else_in_attribute_list] = STATE(7823), - [sym_preproc_elif_in_attribute_list] = STATE(7823), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3670), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7791), + [sym_preproc_elif_in_expression] = STATE(7791), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_else_in_attribute_list] = STATE(7741), + [sym_preproc_elif_in_attribute_list] = STATE(7741), [sym_preproc_region] = STATE(526), [sym_preproc_endregion] = STATE(526), [sym_preproc_line] = STATE(526), @@ -138048,47 +138070,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -138113,8 +138135,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_if_token3] = ACTIONS(2865), [aux_sym_preproc_else_token1] = ACTIONS(2861), [aux_sym_preproc_elif_token1] = ACTIONS(2863), @@ -138134,88 +138156,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [527] = { - [sym_attribute_list] = STATE(5926), + [sym_attribute_list] = STATE(5915), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3402), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_else_in_attribute_list] = STATE(7823), - [sym_preproc_elif_in_attribute_list] = STATE(7823), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3595), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(8115), + [sym_preproc_elif_in_expression] = STATE(8115), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_else_in_attribute_list] = STATE(7741), + [sym_preproc_elif_in_attribute_list] = STATE(7741), [sym_preproc_region] = STATE(527), [sym_preproc_endregion] = STATE(527), [sym_preproc_line] = STATE(527), @@ -138225,47 +138247,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -138290,8 +138312,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_if_token3] = ACTIONS(2865), [aux_sym_preproc_else_token1] = ACTIONS(2861), [aux_sym_preproc_elif_token1] = ACTIONS(2863), @@ -138311,88 +138333,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [528] = { - [sym_attribute_list] = STATE(5926), + [sym_attribute_list] = STATE(5915), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3428), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(7958), - [sym_preproc_elif_in_expression] = STATE(7958), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_else_in_attribute_list] = STATE(7823), - [sym_preproc_elif_in_attribute_list] = STATE(7823), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3672), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(8031), + [sym_preproc_elif_in_expression] = STATE(8031), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_else_in_attribute_list] = STATE(7741), + [sym_preproc_elif_in_attribute_list] = STATE(7741), [sym_preproc_region] = STATE(528), [sym_preproc_endregion] = STATE(528), [sym_preproc_line] = STATE(528), @@ -138402,47 +138424,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -138467,8 +138489,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_if_token3] = ACTIONS(2859), [aux_sym_preproc_else_token1] = ACTIONS(2861), [aux_sym_preproc_elif_token1] = ACTIONS(2863), @@ -138488,88 +138510,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [529] = { - [sym_attribute_list] = STATE(5926), + [sym_attribute_list] = STATE(5915), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3364), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(8128), - [sym_preproc_elif_in_expression] = STATE(8128), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_else_in_attribute_list] = STATE(7823), - [sym_preproc_elif_in_attribute_list] = STATE(7823), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3670), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7791), + [sym_preproc_elif_in_expression] = STATE(7791), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_else_in_attribute_list] = STATE(7741), + [sym_preproc_elif_in_attribute_list] = STATE(7741), [sym_preproc_region] = STATE(529), [sym_preproc_endregion] = STATE(529), [sym_preproc_line] = STATE(529), @@ -138579,47 +138601,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -138644,9 +138666,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token3] = ACTIONS(2869), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token3] = ACTIONS(2859), [aux_sym_preproc_else_token1] = ACTIONS(2861), [aux_sym_preproc_elif_token1] = ACTIONS(2863), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -138665,88 +138687,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [530] = { - [sym_attribute_list] = STATE(5926), + [sym_attribute_list] = STATE(5915), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3355), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(8057), - [sym_preproc_elif_in_expression] = STATE(8057), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_else_in_attribute_list] = STATE(7823), - [sym_preproc_elif_in_attribute_list] = STATE(7823), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3622), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7737), + [sym_preproc_elif_in_expression] = STATE(7737), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_else_in_attribute_list] = STATE(7741), + [sym_preproc_elif_in_attribute_list] = STATE(7741), [sym_preproc_region] = STATE(530), [sym_preproc_endregion] = STATE(530), [sym_preproc_line] = STATE(530), @@ -138756,47 +138778,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -138821,8 +138843,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_if_token3] = ACTIONS(2859), [aux_sym_preproc_else_token1] = ACTIONS(2861), [aux_sym_preproc_elif_token1] = ACTIONS(2863), @@ -138842,87 +138864,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [531] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7245), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5949), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2265), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7340), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5999), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(6187), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7443), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7575), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(531), [sym_preproc_endregion] = STATE(531), [sym_preproc_line] = STATE(531), @@ -138932,8 +138954,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -138946,36 +138968,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2875), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -139000,8 +139022,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -139018,87 +139040,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [532] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7276), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5949), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2265), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7340), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5999), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(6187), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7591), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7566), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(532), [sym_preproc_endregion] = STATE(532), [sym_preproc_line] = STATE(532), @@ -139108,50 +139130,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(2877), + [anon_sym_RPAREN] = ACTIONS(2871), [anon_sym_ref] = ACTIONS(2873), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2875), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -139176,8 +139198,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -139194,87 +139216,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [533] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7290), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5949), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2265), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7114), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5999), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(6187), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7566), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(533), [sym_preproc_endregion] = STATE(533), [sym_preproc_line] = STATE(533), @@ -139284,50 +139306,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(2879), + [anon_sym_RPAREN] = ACTIONS(2877), [anon_sym_ref] = ACTIONS(2873), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2875), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -139352,8 +139374,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -139370,87 +139392,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [534] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7276), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5949), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2265), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7114), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5999), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(6187), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7410), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7454), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(534), [sym_preproc_endregion] = STATE(534), [sym_preproc_line] = STATE(534), @@ -139460,8 +139482,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -139474,36 +139496,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2875), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -139528,8 +139550,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -139546,87 +139568,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [535] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7069), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5949), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2265), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7218), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5999), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(6187), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7534), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7391), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(535), [sym_preproc_endregion] = STATE(535), [sym_preproc_line] = STATE(535), @@ -139636,50 +139658,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(2881), + [anon_sym_RPAREN] = ACTIONS(2879), [anon_sym_ref] = ACTIONS(2873), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2875), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -139704,8 +139726,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -139722,87 +139744,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [536] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7245), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5949), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2265), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7307), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5999), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(6187), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7591), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(536), [sym_preproc_endregion] = STATE(536), [sym_preproc_line] = STATE(536), @@ -139812,50 +139834,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(2871), + [anon_sym_RPAREN] = ACTIONS(2881), [anon_sym_ref] = ACTIONS(2873), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2875), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -139880,8 +139902,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -139898,87 +139920,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [537] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5949), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2265), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7059), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5999), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(6187), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7378), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7545), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(537), [sym_preproc_endregion] = STATE(537), [sym_preproc_line] = STATE(537), @@ -139988,8 +140010,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -140002,36 +140024,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2875), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140056,8 +140078,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -140074,86 +140096,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [538] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7069), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7522), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(538), [sym_preproc_endregion] = STATE(538), [sym_preproc_line] = STATE(538), @@ -140163,50 +140185,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_RBRACK] = ACTIONS(2885), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(2881), - [anon_sym_ref] = ACTIONS(2885), + [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140231,8 +140253,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -140249,86 +140271,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [539] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7218), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(539), [sym_preproc_endregion] = STATE(539), [sym_preproc_line] = STATE(539), @@ -140338,50 +140360,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_RBRACK] = ACTIONS(2887), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2849), + [anon_sym_RPAREN] = ACTIONS(2879), + [anon_sym_ref] = ACTIONS(2887), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140406,8 +140428,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -140424,86 +140446,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [540] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7522), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(540), [sym_preproc_endregion] = STATE(540), [sym_preproc_line] = STATE(540), @@ -140513,8 +140535,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -140527,36 +140549,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140581,8 +140603,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -140599,86 +140621,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [541] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7245), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7522), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(541), [sym_preproc_endregion] = STATE(541), [sym_preproc_line] = STATE(541), @@ -140688,50 +140710,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_RBRACK] = ACTIONS(2891), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(2871), - [anon_sym_ref] = ACTIONS(2885), + [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140756,8 +140778,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -140774,86 +140796,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [542] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7522), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(542), [sym_preproc_endregion] = STATE(542), [sym_preproc_line] = STATE(542), @@ -140863,50 +140885,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_RBRACK] = ACTIONS(2891), + [anon_sym_RBRACK] = ACTIONS(2893), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140931,8 +140953,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -140949,86 +140971,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [543] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3623), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_else_in_expression] = STATE(7891), + [sym_preproc_elif_in_expression] = STATE(7891), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(543), [sym_preproc_endregion] = STATE(543), [sym_preproc_line] = STATE(543), @@ -141038,50 +141060,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_RBRACK] = ACTIONS(2893), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141106,8 +141125,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token3] = ACTIONS(2895), + [aux_sym_preproc_else_token1] = ACTIONS(2897), + [aux_sym_preproc_elif_token1] = ACTIONS(2899), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -141124,86 +141146,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [544] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7522), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(544), [sym_preproc_endregion] = STATE(544), [sym_preproc_line] = STATE(544), @@ -141213,50 +141235,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(544), [sym_preproc_define] = STATE(544), [sym_preproc_undef] = STATE(544), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_RBRACK] = ACTIONS(2901), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(2883), - [anon_sym_ref] = ACTIONS(2885), + [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141281,8 +141303,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -141299,86 +141321,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [545] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7522), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(545), [sym_preproc_endregion] = STATE(545), [sym_preproc_line] = STATE(545), @@ -141388,50 +141410,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_RBRACK] = ACTIONS(2895), + [anon_sym_RBRACK] = ACTIONS(2903), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141456,8 +141478,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -141474,86 +141496,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [546] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3414), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_else_in_expression] = STATE(7929), - [sym_preproc_elif_in_expression] = STATE(7929), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7114), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(546), [sym_preproc_endregion] = STATE(546), [sym_preproc_line] = STATE(546), @@ -141563,47 +141585,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_RPAREN] = ACTIONS(2877), + [anon_sym_ref] = ACTIONS(2887), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141628,11 +141653,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token3] = ACTIONS(2897), - [aux_sym_preproc_else_token1] = ACTIONS(2899), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -141649,86 +141671,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [547] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7522), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(547), [sym_preproc_endregion] = STATE(547), [sym_preproc_line] = STATE(547), @@ -141738,50 +141760,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_RBRACK] = ACTIONS(2903), + [anon_sym_RBRACK] = ACTIONS(2905), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141806,8 +141828,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -141824,86 +141846,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [548] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7059), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(548), [sym_preproc_endregion] = STATE(548), [sym_preproc_line] = STATE(548), @@ -141913,50 +141935,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(548), [sym_preproc_define] = STATE(548), [sym_preproc_undef] = STATE(548), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_RBRACK] = ACTIONS(2905), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2849), + [anon_sym_RPAREN] = ACTIONS(2883), + [anon_sym_ref] = ACTIONS(2887), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141981,8 +142003,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -141999,86 +142021,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [549] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7290), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7522), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(549), [sym_preproc_endregion] = STATE(549), [sym_preproc_line] = STATE(549), @@ -142088,50 +142110,50 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_RBRACK] = ACTIONS(2907), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(2879), - [anon_sym_ref] = ACTIONS(2885), + [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -142156,8 +142178,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -142174,86 +142196,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [550] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7340), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(550), [sym_preproc_endregion] = STATE(550), [sym_preproc_line] = STATE(550), @@ -142263,50 +142285,50 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_RBRACK] = ACTIONS(2907), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2849), + [anon_sym_RPAREN] = ACTIONS(2871), + [anon_sym_ref] = ACTIONS(2887), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -142331,8 +142353,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -142349,86 +142371,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [551] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7522), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(551), [sym_preproc_endregion] = STATE(551), [sym_preproc_line] = STATE(551), @@ -142438,8 +142460,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -142452,36 +142474,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -142506,8 +142528,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -142524,86 +142546,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [552] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7276), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7522), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(552), [sym_preproc_endregion] = STATE(552), [sym_preproc_line] = STATE(552), @@ -142613,50 +142635,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_RBRACK] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(2877), - [anon_sym_ref] = ACTIONS(2885), + [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -142681,8 +142703,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -142699,86 +142721,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [553] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7522), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(553), [sym_preproc_endregion] = STATE(553), [sym_preproc_line] = STATE(553), @@ -142788,50 +142810,50 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_RBRACK] = ACTIONS(2911), + [anon_sym_RBRACK] = ACTIONS(2913), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -142856,8 +142878,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -142874,86 +142896,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [554] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7307), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(554), [sym_preproc_endregion] = STATE(554), [sym_preproc_line] = STATE(554), @@ -142963,50 +142985,50 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_RBRACK] = ACTIONS(2913), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2849), + [anon_sym_RPAREN] = ACTIONS(2881), + [anon_sym_ref] = ACTIONS(2887), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143031,8 +143053,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -143049,86 +143071,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [555] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7522), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(555), [sym_preproc_endregion] = STATE(555), [sym_preproc_line] = STATE(555), @@ -143138,8 +143160,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -143152,36 +143174,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143206,8 +143228,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -143224,86 +143246,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [556] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4227), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7177), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(556), [sym_preproc_endregion] = STATE(556), [sym_preproc_line] = STATE(556), @@ -143313,8 +143335,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -143326,36 +143348,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143380,8 +143402,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -143398,86 +143420,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [557] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7213), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7332), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(557), [sym_preproc_endregion] = STATE(557), [sym_preproc_line] = STATE(557), @@ -143487,8 +143509,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -143500,36 +143522,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143554,8 +143576,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -143572,86 +143594,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [558] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7138), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7266), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(558), [sym_preproc_endregion] = STATE(558), [sym_preproc_line] = STATE(558), @@ -143661,8 +143683,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -143674,36 +143696,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143728,8 +143750,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -143746,86 +143768,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [559] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7561), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4560), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(559), [sym_preproc_endregion] = STATE(559), [sym_preproc_line] = STATE(559), @@ -143835,49 +143857,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2885), + [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143902,8 +143924,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -143920,86 +143942,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [560] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7058), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4542), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(560), [sym_preproc_endregion] = STATE(560), [sym_preproc_line] = STATE(560), @@ -144009,8 +144031,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -144022,36 +144044,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144076,8 +144098,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -144094,86 +144116,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [561] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4201), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7493), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(561), [sym_preproc_endregion] = STATE(561), [sym_preproc_line] = STATE(561), @@ -144183,49 +144205,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(561), [sym_preproc_define] = STATE(561), [sym_preproc_undef] = STATE(561), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2849), + [anon_sym_ref] = ACTIONS(2887), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144250,8 +144272,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -144268,86 +144290,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [562] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7370), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7093), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(562), [sym_preproc_endregion] = STATE(562), [sym_preproc_line] = STATE(562), @@ -144357,8 +144379,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -144370,36 +144392,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144424,8 +144446,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -144442,85 +144464,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [563] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3917), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7156), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7584), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(563), [sym_preproc_endregion] = STATE(563), [sym_preproc_line] = STATE(563), @@ -144530,50 +144553,49 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2917), + [anon_sym_ref] = ACTIONS(2887), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2919), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_out] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2543), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144598,8 +144620,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -144616,85 +144638,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [564] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5989), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2294), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3996), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7156), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5996), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2297), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5989), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4073), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7217), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(564), [sym_preproc_endregion] = STATE(564), [sym_preproc_line] = STATE(564), @@ -144704,50 +144726,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(2921), + [anon_sym_ref] = ACTIONS(2917), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_readonly] = ACTIONS(2919), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_in] = ACTIONS(2919), [anon_sym_out] = ACTIONS(2919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2543), - [anon_sym_base] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2555), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144772,8 +144794,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -144790,85 +144812,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [565] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3918), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7156), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4657), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(565), [sym_preproc_endregion] = STATE(565), [sym_preproc_line] = STATE(565), @@ -144878,50 +144901,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_ref] = ACTIONS(2849), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2919), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_out] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144946,8 +144968,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -144964,86 +144986,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [566] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7337), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7185), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(566), [sym_preproc_endregion] = STATE(566), [sym_preproc_line] = STATE(566), @@ -145053,8 +145075,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -145066,36 +145088,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145120,8 +145142,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -145138,86 +145160,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [567] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4146), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7507), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4708), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(567), [sym_preproc_endregion] = STATE(567), [sym_preproc_line] = STATE(567), @@ -145227,8 +145249,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -145240,36 +145262,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145294,8 +145316,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -145312,86 +145334,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [568] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7505), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4284), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5989), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4118), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7217), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(568), [sym_preproc_endregion] = STATE(568), [sym_preproc_line] = STATE(568), @@ -145401,49 +145422,50 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2849), + [anon_sym_ref] = ACTIONS(2921), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(2919), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(2919), + [anon_sym_out] = ACTIONS(2919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2555), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145468,8 +145490,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -145486,86 +145508,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [569] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7522), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(569), [sym_preproc_endregion] = STATE(569), [sym_preproc_line] = STATE(569), @@ -145575,8 +145597,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -145588,36 +145610,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145642,8 +145664,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -145660,86 +145682,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [570] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7462), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4120), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7217), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(570), [sym_preproc_endregion] = STATE(570), [sym_preproc_line] = STATE(570), @@ -145749,49 +145770,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2885), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(2919), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(2919), + [anon_sym_out] = ACTIONS(2919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145816,8 +145838,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -145834,86 +145856,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [571] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2245), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_argument] = STATE(7118), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7186), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2247), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(571), [sym_preproc_endregion] = STATE(571), [sym_preproc_line] = STATE(571), @@ -145923,8 +145945,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -145936,36 +145958,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1277), + [anon_sym_out] = ACTIONS(1277), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145990,8 +146012,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -146008,85 +146030,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [572] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7218), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4424), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(572), [sym_preproc_endregion] = STATE(572), [sym_preproc_line] = STATE(572), @@ -146096,49 +146117,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym_array_rank_specifier_repeat1] = STATE(7211), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(2925), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(2925), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146163,8 +146185,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -146181,84 +146203,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [573] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3937), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7125), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(573), [sym_preproc_endregion] = STATE(573), [sym_preproc_line] = STATE(573), @@ -146268,50 +146291,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(4055), - [aux_sym_array_rank_specifier_repeat1] = STATE(7125), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(2929), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(2929), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146336,8 +146358,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -146354,84 +146376,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [574] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3909), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7068), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(574), [sym_preproc_endregion] = STATE(574), [sym_preproc_line] = STATE(574), @@ -146441,50 +146464,49 @@ 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(4055), - [aux_sym_array_rank_specifier_repeat1] = STATE(7365), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(2931), + [anon_sym_COMMA] = ACTIONS(2931), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(2933), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146509,8 +146531,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -146527,85 +146549,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [575] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7300), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4403), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(575), [sym_preproc_endregion] = STATE(575), [sym_preproc_line] = STATE(575), @@ -146615,49 +146636,50 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym_array_rank_specifier_repeat1] = STATE(7111), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(2933), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(2935), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(2935), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146682,8 +146704,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -146700,84 +146722,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [576] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3821), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7311), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(576), [sym_preproc_endregion] = STATE(576), [sym_preproc_line] = STATE(576), @@ -146787,50 +146810,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(576), [sym_preproc_define] = STATE(576), [sym_preproc_undef] = STATE(576), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym_array_rank_specifier_repeat1] = STATE(7315), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2937), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(2939), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146855,8 +146877,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -146873,84 +146895,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [577] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3991), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7060), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(577), [sym_preproc_endregion] = STATE(577), [sym_preproc_line] = STATE(577), @@ -146960,50 +146983,49 @@ 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(4055), - [aux_sym_array_rank_specifier_repeat1] = STATE(7092), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(2939), + [anon_sym_COMMA] = ACTIONS(2941), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(2943), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147028,8 +147050,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -147046,85 +147068,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [578] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4002), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7150), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4269), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(578), [sym_preproc_endregion] = STATE(578), [sym_preproc_line] = STATE(578), @@ -147134,49 +147155,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(578), [sym_preproc_define] = STATE(578), [sym_preproc_undef] = STATE(578), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym_array_rank_specifier_repeat1] = STATE(7256), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(2945), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2941), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(2943), - [anon_sym_out] = ACTIONS(2943), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147201,8 +147223,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -147219,84 +147241,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [579] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3877), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4027), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(579), [sym_preproc_endregion] = STATE(579), [sym_preproc_line] = STATE(579), @@ -147306,50 +147328,50 @@ 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(4055), - [aux_sym_array_rank_specifier_repeat1] = STATE(7279), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym_array_rank_specifier_repeat1] = STATE(7061), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(2945), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(2947), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147374,8 +147396,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -147392,85 +147414,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [580] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7165), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4170), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(580), [sym_preproc_endregion] = STATE(580), [sym_preproc_line] = STATE(580), @@ -147480,49 +147501,50 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym_array_rank_specifier_repeat1] = STATE(7331), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(2947), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(2949), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(2949), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147547,8 +147569,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -147565,85 +147587,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [581] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7275), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7216), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(581), [sym_preproc_endregion] = STATE(581), [sym_preproc_line] = STATE(581), @@ -147653,8 +147675,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -147668,34 +147690,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147720,8 +147742,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -147738,85 +147760,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [582] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7057), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4026), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(582), [sym_preproc_endregion] = STATE(582), [sym_preproc_line] = STATE(582), @@ -147826,49 +147847,50 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym_array_rank_specifier_repeat1] = STATE(7126), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(2955), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(2955), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(2957), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147893,8 +147915,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -147911,84 +147933,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [583] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3813), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4201), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7289), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(583), [sym_preproc_endregion] = STATE(583), [sym_preproc_line] = STATE(583), @@ -147998,50 +148021,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(583), [sym_preproc_define] = STATE(583), [sym_preproc_undef] = STATE(583), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym_array_rank_specifier_repeat1] = STATE(7072), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(2959), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_ref] = ACTIONS(2957), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(2959), + [anon_sym_out] = ACTIONS(2959), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148066,8 +148088,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -148084,84 +148106,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [584] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4037), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4050), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(584), [sym_preproc_endregion] = STATE(584), [sym_preproc_line] = STATE(584), @@ -148171,15 +148193,15 @@ 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(4055), - [aux_sym_array_rank_specifier_repeat1] = STATE(7255), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym_array_rank_specifier_repeat1] = STATE(7302), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_COMMA] = ACTIONS(2923), [anon_sym_RBRACK] = ACTIONS(2961), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), @@ -148187,34 +148209,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148239,8 +148261,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -148257,85 +148279,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [585] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7343), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4394), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(585), [sym_preproc_endregion] = STATE(585), [sym_preproc_line] = STATE(585), @@ -148345,49 +148366,50 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym_array_rank_specifier_repeat1] = STATE(7197), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(2963), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(2965), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148412,8 +148434,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -148430,84 +148452,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [586] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3777), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7338), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(586), [sym_preproc_endregion] = STATE(586), [sym_preproc_line] = STATE(586), @@ -148517,50 +148540,49 @@ 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(4055), - [aux_sym_array_rank_specifier_repeat1] = STATE(7334), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(2967), + [anon_sym_COMMA] = ACTIONS(2965), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(2967), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148585,8 +148607,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -148603,84 +148625,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [587] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5998), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4311), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4830), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(587), [sym_preproc_endregion] = STATE(587), [sym_preproc_line] = STATE(587), @@ -148690,8 +148712,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(2919), [anon_sym_alias] = ACTIONS(2919), [anon_sym_global] = ACTIONS(2919), @@ -148704,36 +148726,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2919), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_in] = ACTIONS(2919), [anon_sym_out] = ACTIONS(2919), [anon_sym_where] = ACTIONS(2919), [anon_sym_notnull] = ACTIONS(2919), [anon_sym_unmanaged] = ACTIONS(2919), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2187), [anon_sym_this] = ACTIONS(2919), [anon_sym_scoped] = ACTIONS(2919), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(81), [anon_sym_var] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(1445), [sym_predefined_type] = ACTIONS(2919), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(2919), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(2919), [anon_sym_into] = ACTIONS(2919), [anon_sym_join] = ACTIONS(2919), @@ -148759,7 +148781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [sym_grit_metavariable] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -148776,84 +148798,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [588] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2800), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4587), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4814), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4311), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(588), [sym_preproc_endregion] = STATE(588), [sym_preproc_line] = STATE(588), @@ -148863,49 +148886,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2971), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(2973), - [anon_sym_default] = ACTIONS(2975), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148930,8 +148952,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -148948,85 +148970,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [589] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5949), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2265), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4282), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7156), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7567), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(589), [sym_preproc_endregion] = STATE(589), [sym_preproc_line] = STATE(589), @@ -149036,48 +149058,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(2973), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2979), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149102,8 +149124,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -149120,85 +149142,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [590] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3510), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4492), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4184), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4762), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4550), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(590), [sym_preproc_endregion] = STATE(590), [sym_preproc_line] = STATE(590), @@ -149208,48 +149230,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149274,8 +149296,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -149292,85 +149314,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [591] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7563), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_using_variable_declaration] = STATE(7889), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5825), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6119), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(5068), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(591), [sym_preproc_endregion] = STATE(591), [sym_preproc_line] = STATE(591), @@ -149380,48 +149403,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(591), [sym_preproc_define] = STATE(591), [sym_preproc_undef] = STATE(591), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_ref] = ACTIONS(2977), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(2985), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149446,8 +149468,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -149464,85 +149486,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [592] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3267), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2484), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4551), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5333), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4883), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3336), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(592), [sym_preproc_endregion] = STATE(592), [sym_preproc_line] = STATE(592), @@ -149552,48 +149574,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2987), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149618,8 +149640,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -149636,86 +149658,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [593] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(7955), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5867), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6102), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4307), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2484), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4786), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3336), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(593), [sym_preproc_endregion] = STATE(593), [sym_preproc_line] = STATE(593), @@ -149725,47 +149746,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(593), [sym_preproc_define] = STATE(593), [sym_preproc_undef] = STATE(593), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149790,8 +149812,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -149808,85 +149830,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [594] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4369), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4184), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7567), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(594), [sym_preproc_endregion] = STATE(594), [sym_preproc_line] = STATE(594), @@ -149896,16 +149918,17 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(2983), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), @@ -149914,30 +149937,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149962,8 +149984,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -149980,85 +150002,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [595] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3829), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4318), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4053), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4794), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(5739), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(595), [sym_preproc_endregion] = STATE(595), [sym_preproc_line] = STATE(595), @@ -150068,48 +150090,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2991), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150134,8 +150156,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -150152,85 +150174,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [596] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4424), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4184), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_argument] = STATE(7272), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4586), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2318), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(596), [sym_preproc_endregion] = STATE(596), [sym_preproc_line] = STATE(596), @@ -150240,15 +150262,16 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_RPAREN] = ACTIONS(2987), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), @@ -150258,30 +150281,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150306,8 +150328,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -150324,84 +150346,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [597] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3976), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2932), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5064), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4550), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(597), [sym_preproc_endregion] = STATE(597), [sym_preproc_line] = STATE(597), @@ -150411,49 +150434,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(2993), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150478,8 +150500,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -150496,85 +150518,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [598] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4619), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2523), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4524), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4053), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4940), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3416), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(598), [sym_preproc_endregion] = STATE(598), [sym_preproc_line] = STATE(598), @@ -150584,48 +150606,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2991), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150650,8 +150672,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -150668,84 +150690,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [599] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3828), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7567), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(599), [sym_preproc_endregion] = STATE(599), [sym_preproc_line] = STATE(599), @@ -150755,49 +150778,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_struct] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(2991), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150822,8 +150844,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -150840,85 +150862,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [600] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4533), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4184), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7567), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(600), [sym_preproc_endregion] = STATE(600), [sym_preproc_line] = STATE(600), @@ -150928,16 +150950,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(600), [sym_preproc_define] = STATE(600), [sym_preproc_undef] = STATE(600), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(2993), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), @@ -150946,30 +150969,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150994,8 +151016,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -151012,85 +151034,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [601] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3917), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7156), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3510), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4804), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4550), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(601), [sym_preproc_endregion] = STATE(601), [sym_preproc_line] = STATE(601), @@ -151100,48 +151122,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(601), [sym_preproc_define] = STATE(601), [sym_preproc_undef] = STATE(601), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151166,8 +151188,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -151184,85 +151206,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [602] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4619), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3019), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4504), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5052), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4845), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(5218), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(602), [sym_preproc_endregion] = STATE(602), [sym_preproc_line] = STATE(602), @@ -151272,48 +151294,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151338,8 +151360,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -151356,85 +151378,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [603] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4507), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4184), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_variable_declaration] = STATE(8125), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6147), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4214), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(603), [sym_preproc_endregion] = STATE(603), [sym_preproc_line] = STATE(603), @@ -151444,48 +151466,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2997), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151510,8 +151532,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -151528,85 +151550,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [604] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2820), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4344), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4879), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5999), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5989), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4460), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7217), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(604), [sym_preproc_endregion] = STATE(604), [sym_preproc_line] = STATE(604), @@ -151616,17 +151638,18 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(2999), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3001), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1273), @@ -151634,30 +151657,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151682,8 +151704,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -151700,85 +151722,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [605] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3019), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4509), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4184), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4781), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(5218), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(605), [sym_preproc_endregion] = STATE(605), [sym_preproc_line] = STATE(605), @@ -151788,48 +151810,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(605), [sym_preproc_define] = STATE(605), [sym_preproc_undef] = STATE(605), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151854,8 +151876,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -151872,86 +151894,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [606] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(7907), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5867), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6102), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4567), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2484), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4872), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3336), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(606), [sym_preproc_endregion] = STATE(606), [sym_preproc_line] = STATE(606), @@ -151961,47 +151982,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152026,8 +152048,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -152044,85 +152066,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [607] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4303), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4184), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4280), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(607), [sym_preproc_endregion] = STATE(607), [sym_preproc_line] = STATE(607), @@ -152132,16 +152153,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(607), [sym_preproc_define] = STATE(607), [sym_preproc_undef] = STATE(607), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3003), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), @@ -152150,30 +152173,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152198,8 +152220,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -152216,85 +152238,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [608] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4372), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4184), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4944), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(608), [sym_preproc_endregion] = STATE(608), [sym_preproc_line] = STATE(608), @@ -152304,48 +152325,221 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3005), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_case] = ACTIONS(3007), + [anon_sym_default] = ACTIONS(3009), + [anon_sym_throw] = ACTIONS(1731), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), + }, + [609] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4189), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(609), + [sym_preproc_endregion] = STATE(609), + [sym_preproc_line] = STATE(609), + [sym_preproc_pragma] = STATE(609), + [sym_preproc_nullable] = STATE(609), + [sym_preproc_error] = STATE(609), + [sym_preproc_warning] = STATE(609), + [sym_preproc_define] = STATE(609), + [sym_preproc_undef] = STATE(609), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152370,180 +152564,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), - }, - [609] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2820), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4564), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4879), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(609), - [sym_preproc_endregion] = STATE(609), - [sym_preproc_line] = STATE(609), - [sym_preproc_pragma] = STATE(609), - [sym_preproc_nullable] = STATE(609), - [sym_preproc_error] = STATE(609), - [sym_preproc_warning] = STATE(609), - [sym_preproc_define] = STATE(609), - [sym_preproc_undef] = STATE(609), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -152560,85 +152582,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [610] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7563), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2932), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4902), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4550), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(610), [sym_preproc_endregion] = STATE(610), [sym_preproc_line] = STATE(610), @@ -152648,48 +152670,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3003), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(3013), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152714,8 +152736,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -152732,86 +152754,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [611] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(8075), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5867), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6102), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4503), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2800), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4914), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4311), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(611), [sym_preproc_endregion] = STATE(611), [sym_preproc_line] = STATE(611), @@ -152821,47 +152842,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152886,8 +152908,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -152904,85 +152926,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [612] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4619), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4447), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4879), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5999), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5989), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4118), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7217), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(612), [sym_preproc_endregion] = STATE(612), [sym_preproc_line] = STATE(612), @@ -152992,17 +153014,18 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(2999), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3001), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1273), @@ -153010,30 +153033,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153058,8 +153080,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -153076,85 +153098,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [613] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4517), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4053), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7567), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(613), [sym_preproc_endregion] = STATE(613), [sym_preproc_line] = STATE(613), @@ -153164,16 +153186,17 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3015), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), @@ -153182,30 +153205,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153230,8 +153252,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -153248,85 +153270,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [614] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7563), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7567), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(614), [sym_preproc_endregion] = STATE(614), [sym_preproc_line] = STATE(614), @@ -153336,8 +153358,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -153346,38 +153368,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3007), + [anon_sym_RBRACE] = ACTIONS(3017), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153402,8 +153424,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -153420,86 +153442,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [615] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(8121), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5867), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6102), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4461), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3510), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4867), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4311), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(615), [sym_preproc_endregion] = STATE(615), [sym_preproc_line] = STATE(615), @@ -153509,47 +153530,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153574,8 +153596,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -153592,85 +153614,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [616] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4665), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4440), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5703), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7567), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(616), [sym_preproc_endregion] = STATE(616), [sym_preproc_line] = STATE(616), @@ -153680,16 +153702,17 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3019), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), @@ -153698,30 +153721,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153746,8 +153768,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -153764,85 +153786,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [617] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2820), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4491), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4879), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4162), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(617), [sym_preproc_endregion] = STATE(617), [sym_preproc_line] = STATE(617), @@ -153852,16 +153873,18 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3021), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), @@ -153870,30 +153893,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153918,8 +153940,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -153936,85 +153958,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [618] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4619), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4454), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5052), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5989), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4118), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7217), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(618), [sym_preproc_endregion] = STATE(618), [sym_preproc_line] = STATE(618), @@ -154024,17 +154046,18 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1273), @@ -154042,30 +154065,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154090,8 +154112,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -154108,85 +154130,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [619] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3267), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4475), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5333), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_using_variable_declaration] = STATE(7797), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5825), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6119), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4765), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(619), [sym_preproc_endregion] = STATE(619), [sym_preproc_line] = STATE(619), @@ -154196,15 +154219,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(2977), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), @@ -154214,30 +154237,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2987), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), + }, + [620] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2800), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4831), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4311), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(620), + [sym_preproc_endregion] = STATE(620), + [sym_preproc_line] = STATE(620), + [sym_preproc_pragma] = STATE(620), + [sym_preproc_nullable] = STATE(620), + [sym_preproc_error] = STATE(620), + [sym_preproc_warning] = STATE(620), + [sym_preproc_define] = STATE(620), + [sym_preproc_undef] = STATE(620), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_async] = ACTIONS(1259), + [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(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154262,180 +154456,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), - }, - [620] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5949), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2265), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3917), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7156), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(620), - [sym_preproc_endregion] = STATE(620), - [sym_preproc_line] = STATE(620), - [sym_preproc_pragma] = STATE(620), - [sym_preproc_nullable] = STATE(620), - [sym_preproc_error] = STATE(620), - [sym_preproc_warning] = STATE(620), - [sym_preproc_define] = STATE(620), - [sym_preproc_undef] = STATE(620), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2979), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -154452,85 +154474,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [621] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4519), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4053), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7567), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(621), [sym_preproc_endregion] = STATE(621), [sym_preproc_line] = STATE(621), @@ -154540,16 +154562,17 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3025), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), @@ -154558,30 +154581,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2991), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154606,8 +154628,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -154624,85 +154646,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [622] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3078), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3510), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4427), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5052), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5085), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3416), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(622), [sym_preproc_endregion] = STATE(622), [sym_preproc_line] = STATE(622), @@ -154712,48 +154734,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154778,8 +154800,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -154796,85 +154818,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [623] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2820), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4394), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4879), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_using_variable_declaration] = STATE(7702), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5825), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6119), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4811), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(623), [sym_preproc_endregion] = STATE(623), [sym_preproc_line] = STATE(623), @@ -154884,15 +154907,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(2977), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), @@ -154902,30 +154925,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154950,8 +154972,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -154968,86 +154990,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [624] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(8101), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5867), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6102), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4316), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7567), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(624), [sym_preproc_endregion] = STATE(624), [sym_preproc_line] = STATE(624), @@ -155057,47 +155078,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2989), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3029), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155122,8 +155144,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -155140,85 +155162,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [625] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3078), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4381), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5052), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4949), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(625), [sym_preproc_endregion] = STATE(625), [sym_preproc_line] = STATE(625), @@ -155228,48 +155249,49 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3031), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_case] = ACTIONS(3033), + [anon_sym_default] = ACTIONS(3035), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155294,8 +155316,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -155312,85 +155334,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [626] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4000), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7326), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3019), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4923), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(5218), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(626), [sym_preproc_endregion] = STATE(626), [sym_preproc_line] = STATE(626), @@ -155400,48 +155422,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(626), [sym_preproc_define] = STATE(626), [sym_preproc_undef] = STATE(626), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155466,8 +155488,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -155484,85 +155506,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [627] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2523), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4469), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4053), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4896), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3416), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(627), [sym_preproc_endregion] = STATE(627), [sym_preproc_line] = STATE(627), @@ -155572,48 +155594,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2991), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155638,8 +155660,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -155656,85 +155678,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [628] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7563), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3510), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4857), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3416), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(628), [sym_preproc_endregion] = STATE(628), [sym_preproc_line] = STATE(628), @@ -155744,48 +155766,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(628), [sym_preproc_define] = STATE(628), [sym_preproc_undef] = STATE(628), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3013), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155810,8 +155832,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -155828,85 +155850,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [629] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4665), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2523), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4449), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5703), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4975), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3416), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(629), [sym_preproc_endregion] = STATE(629), [sym_preproc_line] = STATE(629), @@ -155916,48 +155938,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155982,8 +156004,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -156000,85 +156022,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [630] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4619), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4554), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4184), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4245), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(630), [sym_preproc_endregion] = STATE(630), [sym_preproc_line] = STATE(630), @@ -156088,16 +156109,18 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3037), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), @@ -156106,30 +156129,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3015), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156154,8 +156176,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -156172,85 +156194,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [631] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3078), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2484), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4571), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5052), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5026), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3336), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(631), [sym_preproc_endregion] = STATE(631), [sym_preproc_line] = STATE(631), @@ -156260,48 +156282,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156326,8 +156348,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -156344,85 +156366,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [632] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2820), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3510), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4458), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4879), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4960), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3336), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(632), [sym_preproc_endregion] = STATE(632), [sym_preproc_line] = STATE(632), @@ -156432,48 +156454,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156498,8 +156520,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -156516,85 +156538,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [633] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3267), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2484), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4426), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5333), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4769), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3336), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(633), [sym_preproc_endregion] = STATE(633), [sym_preproc_line] = STATE(633), @@ -156604,48 +156626,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2987), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156670,8 +156692,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -156688,85 +156710,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [634] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7563), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4601), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(634), [sym_preproc_endregion] = STATE(634), [sym_preproc_line] = STATE(634), @@ -156776,48 +156797,49 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_RBRACK] = ACTIONS(3041), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3017), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156842,8 +156864,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -156860,85 +156882,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [635] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7563), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7567), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(635), [sym_preproc_endregion] = STATE(635), [sym_preproc_line] = STATE(635), @@ -156948,8 +156970,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -156958,38 +156980,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_RBRACE] = ACTIONS(3043), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157014,8 +157036,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -157032,85 +157054,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [636] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7563), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4164), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(636), [sym_preproc_endregion] = STATE(636), [sym_preproc_line] = STATE(636), @@ -157120,48 +157141,49 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(926), [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3021), + [anon_sym_RBRACE] = ACTIONS(3045), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157186,8 +157208,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -157204,85 +157226,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [637] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4305), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4053), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5989), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4460), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7217), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(637), [sym_preproc_endregion] = STATE(637), [sym_preproc_line] = STATE(637), @@ -157292,17 +157314,18 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1273), @@ -157310,30 +157333,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157358,8 +157380,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -157376,85 +157398,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [638] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3829), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4438), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4184), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4907), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(5739), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(638), [sym_preproc_endregion] = STATE(638), [sym_preproc_line] = STATE(638), @@ -157464,48 +157486,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157530,8 +157552,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -157548,85 +157570,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [639] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4619), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4384), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4879), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4881), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(639), [sym_preproc_endregion] = STATE(639), [sym_preproc_line] = STATE(639), @@ -157636,48 +157657,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(639), [sym_preproc_define] = STATE(639), [sym_preproc_undef] = STATE(639), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3047), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_case] = ACTIONS(3049), + [anon_sym_default] = ACTIONS(3051), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157702,8 +157724,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -157720,84 +157742,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [640] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4190), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2484), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5073), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3336), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(640), [sym_preproc_endregion] = STATE(640), [sym_preproc_line] = STATE(640), @@ -157807,49 +157830,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_RBRACK] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157874,8 +157896,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -157892,85 +157914,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [641] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3267), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2523), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4355), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5333), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5010), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3416), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(641), [sym_preproc_endregion] = STATE(641), [sym_preproc_line] = STATE(641), @@ -157980,48 +158002,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2987), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158046,8 +158068,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -158064,85 +158086,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [642] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3078), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3510), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4322), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5052), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4891), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4311), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(642), [sym_preproc_endregion] = STATE(642), [sym_preproc_line] = STATE(642), @@ -158152,48 +158174,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158218,8 +158240,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -158236,85 +158258,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [643] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2820), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2932), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4402), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4879), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4912), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4550), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(643), [sym_preproc_endregion] = STATE(643), [sym_preproc_line] = STATE(643), @@ -158324,48 +158346,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158390,8 +158412,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -158408,85 +158430,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [644] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3078), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3829), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4363), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5052), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4895), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(5739), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(644), [sym_preproc_endregion] = STATE(644), [sym_preproc_line] = STATE(644), @@ -158496,48 +158518,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158562,8 +158584,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -158580,85 +158602,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [645] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7563), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2932), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4905), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4550), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(645), [sym_preproc_endregion] = STATE(645), [sym_preproc_line] = STATE(645), @@ -158668,48 +158690,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3025), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158734,8 +158756,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -158752,85 +158774,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [646] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2523), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4308), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4053), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4888), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3416), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(646), [sym_preproc_endregion] = STATE(646), [sym_preproc_line] = STATE(646), @@ -158840,48 +158862,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2991), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158906,8 +158928,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -158924,84 +158946,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [647] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3854), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_using_variable_declaration] = STATE(8057), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5825), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6119), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4793), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(647), [sym_preproc_endregion] = STATE(647), [sym_preproc_line] = STATE(647), @@ -159011,49 +159035,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(741), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_ref] = ACTIONS(2977), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3027), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159078,8 +159100,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -159096,85 +159118,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [648] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_variable_declaration] = STATE(7940), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6131), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4081), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2800), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4917), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4311), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(648), [sym_preproc_endregion] = STATE(648), [sym_preproc_line] = STATE(648), @@ -159184,48 +159206,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3029), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159250,8 +159272,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -159268,85 +159290,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [649] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7563), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2523), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4795), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3416), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(649), [sym_preproc_endregion] = STATE(649), [sym_preproc_line] = STATE(649), @@ -159356,48 +159378,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(649), [sym_preproc_define] = STATE(649), [sym_preproc_undef] = STATE(649), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3031), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159422,8 +159444,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -159440,85 +159462,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [650] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4619), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2932), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4434), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4184), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4863), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4550), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(650), [sym_preproc_endregion] = STATE(650), [sym_preproc_line] = STATE(650), @@ -159528,48 +159550,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3015), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159594,8 +159616,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -159612,85 +159634,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [651] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3078), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2523), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4317), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5052), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4965), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3416), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(651), [sym_preproc_endregion] = STATE(651), [sym_preproc_line] = STATE(651), @@ -159700,48 +159722,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(651), [sym_preproc_define] = STATE(651), [sym_preproc_undef] = STATE(651), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159766,8 +159788,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -159784,85 +159806,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [652] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7563), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3510), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4809), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4550), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(652), [sym_preproc_endregion] = STATE(652), [sym_preproc_line] = STATE(652), @@ -159872,48 +159894,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3033), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159938,8 +159960,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -159956,84 +159978,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [653] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2523), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4550), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5093), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3416), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(653), [sym_preproc_endregion] = STATE(653), [sym_preproc_line] = STATE(653), @@ -160043,49 +160066,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3035), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(3037), - [anon_sym_default] = ACTIONS(3039), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160110,8 +160132,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160128,85 +160150,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [654] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2820), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2800), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4486), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4879), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4908), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4311), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(654), [sym_preproc_endregion] = STATE(654), [sym_preproc_line] = STATE(654), @@ -160216,48 +160238,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160282,8 +160304,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160300,85 +160322,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [655] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4665), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2523), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4495), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5703), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5043), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3416), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(655), [sym_preproc_endregion] = STATE(655), [sym_preproc_line] = STATE(655), @@ -160388,48 +160410,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160454,8 +160476,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160472,85 +160494,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [656] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3078), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2932), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4393), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5052), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4901), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4550), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(656), [sym_preproc_endregion] = STATE(656), [sym_preproc_line] = STATE(656), @@ -160560,48 +160582,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160626,8 +160648,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160644,86 +160666,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [657] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(8073), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5867), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6102), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4423), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(5989), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4271), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7237), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(657), [sym_preproc_endregion] = STATE(657), [sym_preproc_line] = STATE(657), @@ -160733,47 +160754,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2989), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160798,8 +160820,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160816,84 +160838,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [658] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3920), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2484), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4894), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3336), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(658), [sym_preproc_endregion] = STATE(658), [sym_preproc_line] = STATE(658), @@ -160903,49 +160926,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3041), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160970,8 +160992,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160988,85 +161010,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [659] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7563), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4827), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(659), [sym_preproc_endregion] = STATE(659), [sym_preproc_line] = STATE(659), @@ -161076,48 +161097,221 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3053), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_case] = ACTIONS(3055), + [anon_sym_default] = ACTIONS(3057), + [anon_sym_throw] = ACTIONS(1731), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), + }, + [660] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_using_variable_declaration] = STATE(7690), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5825), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6119), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4909), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(660), + [sym_preproc_endregion] = STATE(660), + [sym_preproc_line] = STATE(660), + [sym_preproc_pragma] = STATE(660), + [sym_preproc_nullable] = STATE(660), + [sym_preproc_error] = STATE(660), + [sym_preproc_warning] = STATE(660), + [sym_preproc_define] = STATE(660), + [sym_preproc_undef] = STATE(660), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_ref] = ACTIONS(2977), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3043), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -161142,180 +161336,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), - }, - [660] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4364), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4053), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(660), - [sym_preproc_endregion] = STATE(660), - [sym_preproc_line] = STATE(660), - [sym_preproc_pragma] = STATE(660), - [sym_preproc_nullable] = STATE(660), - [sym_preproc_error] = STATE(660), - [sym_preproc_warning] = STATE(660), - [sym_preproc_define] = STATE(660), - [sym_preproc_undef] = STATE(660), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2991), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -161332,85 +161354,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [661] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4619), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4387), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5052), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7567), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(661), [sym_preproc_endregion] = STATE(661), [sym_preproc_line] = STATE(661), @@ -161420,16 +161442,17 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3059), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), @@ -161438,30 +161461,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -161486,8 +161508,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -161504,84 +161526,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [662] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3879), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2523), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5029), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3416), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(662), [sym_preproc_endregion] = STATE(662), [sym_preproc_line] = STATE(662), @@ -161591,49 +161614,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3045), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -161658,8 +161680,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -161676,84 +161698,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [663] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4523), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7567), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(663), [sym_preproc_endregion] = STATE(663), [sym_preproc_line] = STATE(663), @@ -161763,49 +161786,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3047), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3061), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(3049), - [anon_sym_default] = ACTIONS(3051), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -161830,8 +161852,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -161848,85 +161870,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [664] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4505), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4184), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_using_variable_declaration] = STATE(7719), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5825), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6119), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4987), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(664), [sym_preproc_endregion] = STATE(664), [sym_preproc_line] = STATE(664), @@ -161936,15 +161959,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(2977), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), @@ -161954,30 +161977,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162002,8 +162024,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -162020,86 +162042,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [665] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(7787), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5867), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6102), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4484), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_using_variable_declaration] = STATE(8048), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5825), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6119), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4812), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(665), [sym_preproc_endregion] = STATE(665), [sym_preproc_line] = STATE(665), @@ -162109,47 +162131,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2989), + [anon_sym_ref] = ACTIONS(2977), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162174,8 +162196,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -162192,84 +162214,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [666] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3932), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4067), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(666), [sym_preproc_endregion] = STATE(666), [sym_preproc_line] = STATE(666), @@ -162279,8 +162301,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -162290,38 +162312,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(671), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3053), + [anon_sym_RBRACE] = ACTIONS(3063), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162346,8 +162368,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -162364,85 +162386,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [667] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4282), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7156), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2523), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4802), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3416), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(667), [sym_preproc_endregion] = STATE(667), [sym_preproc_line] = STATE(667), @@ -162452,48 +162474,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162518,8 +162540,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -162536,85 +162558,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [668] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3078), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2800), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4334), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5052), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4916), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4311), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(668), [sym_preproc_endregion] = STATE(668), [sym_preproc_line] = STATE(668), @@ -162624,48 +162646,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162690,8 +162712,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -162708,84 +162730,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [669] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3929), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_using_variable_declaration] = STATE(7728), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5825), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6119), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_expression] = STATE(4873), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(669), [sym_preproc_endregion] = STATE(669), [sym_preproc_line] = STATE(669), @@ -162795,49 +162819,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(733), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_ref] = ACTIONS(2977), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3055), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162862,8 +162884,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -162880,84 +162902,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [670] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3829), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4494), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4733), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(5739), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(670), [sym_preproc_endregion] = STATE(670), [sym_preproc_line] = STATE(670), @@ -162967,49 +162990,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3057), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(3059), - [anon_sym_default] = ACTIONS(3061), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -163034,8 +163056,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163052,85 +163074,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [671] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4563), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4053), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4165), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(671), [sym_preproc_endregion] = STATE(671), [sym_preproc_line] = STATE(671), @@ -163140,17 +163161,19 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(3065), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1273), @@ -163158,30 +163181,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2991), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), + }, + [672] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2932), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4798), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4550), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(672), + [sym_preproc_endregion] = STATE(672), + [sym_preproc_line] = STATE(672), + [sym_preproc_pragma] = STATE(672), + [sym_preproc_nullable] = STATE(672), + [sym_preproc_error] = STATE(672), + [sym_preproc_warning] = STATE(672), + [sym_preproc_define] = STATE(672), + [sym_preproc_undef] = STATE(672), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_async] = ACTIONS(1259), + [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(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -163206,180 +163400,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), - }, - [672] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4468), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(4184), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(672), - [sym_preproc_endregion] = STATE(672), - [sym_preproc_line] = STATE(672), - [sym_preproc_pragma] = STATE(672), - [sym_preproc_nullable] = STATE(672), - [sym_preproc_error] = STATE(672), - [sym_preproc_warning] = STATE(672), - [sym_preproc_define] = STATE(672), - [sym_preproc_undef] = STATE(672), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163396,85 +163418,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [673] = { - [sym_attribute_argument] = STATE(7257), - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4253), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3019), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4898), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(5218), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(673), [sym_preproc_endregion] = STATE(673), [sym_preproc_line] = STATE(673), @@ -163484,48 +163506,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(3063), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -163550,8 +163572,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163568,85 +163590,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [674] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7563), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2484), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5077), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(3336), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(674), [sym_preproc_endregion] = STATE(674), [sym_preproc_line] = STATE(674), @@ -163656,48 +163678,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(674), [sym_preproc_define] = STATE(674), [sym_preproc_undef] = STATE(674), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3065), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -163722,8 +163744,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163740,86 +163762,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [675] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(7819), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5867), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6102), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_expression] = STATE(4442), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2800), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5063), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4311), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(675), [sym_preproc_endregion] = STATE(675), [sym_preproc_line] = STATE(675), @@ -163829,47 +163850,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(675), [sym_preproc_define] = STATE(675), [sym_preproc_undef] = STATE(675), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -163894,8 +163916,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163912,85 +163934,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [676] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4665), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2932), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4419), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_member_binding_expression] = STATE(5703), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5005), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_member_binding_expression] = STATE(4550), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(676), [sym_preproc_endregion] = STATE(676), [sym_preproc_line] = STATE(676), @@ -164000,48 +164022,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1449), [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164066,8 +164088,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -164084,85 +164106,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [677] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4872), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3209), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4830), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(677), [sym_preproc_endregion] = STATE(677), [sym_preproc_line] = STATE(677), @@ -164172,47 +164193,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164225,20 +164247,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -164249,90 +164271,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(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [678] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3790), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4454), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4077), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(678), [sym_preproc_endregion] = STATE(678), [sym_preproc_line] = STATE(678), @@ -164342,48 +164365,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(3067), [anon_sym_delegate] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(2997), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164408,7 +164430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -164426,85 +164448,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [679] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4123), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3984), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(5738), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4236), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(679), [sym_preproc_endregion] = STATE(679), [sym_preproc_line] = STATE(679), @@ -164514,73 +164536,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -164591,90 +164613,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [680] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4515), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3103), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(680), [sym_preproc_endregion] = STATE(680), [sym_preproc_line] = STATE(680), @@ -164684,48 +164706,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(680), [sym_preproc_define] = STATE(680), [sym_preproc_undef] = STATE(680), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3071), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164738,20 +164760,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -164762,90 +164784,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [681] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4825), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(681), [sym_preproc_endregion] = STATE(681), [sym_preproc_line] = STATE(681), @@ -164855,48 +164877,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3071), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3073), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164921,8 +164943,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -164939,84 +164961,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [682] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3873), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3280), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(682), [sym_preproc_endregion] = STATE(682), [sym_preproc_line] = STATE(682), @@ -165026,48 +165048,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165080,20 +165102,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165104,90 +165126,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [683] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3423), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4454), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3539), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(683), [sym_preproc_endregion] = STATE(683), [sym_preproc_line] = STATE(683), @@ -165197,219 +165220,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(683), [sym_preproc_define] = STATE(683), [sym_preproc_undef] = STATE(683), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), - [anon_sym_readonly] = ACTIONS(2997), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), - }, - [684] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5044), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3858), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(3067), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165434,8 +165285,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165451,106 +165302,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [685] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5663), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3421), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [684] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4191), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [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(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(1603), [anon_sym_new] = ACTIONS(1683), @@ -165558,29 +165409,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -165622,85 +165473,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1675), [sym_raw_string_start] = ACTIONS(1677), }, - [686] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2662), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), + [685] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4237), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3116), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [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(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1377), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), + }, + [686] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3276), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3286), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(686), [sym_preproc_endregion] = STATE(686), [sym_preproc_line] = STATE(686), @@ -165710,48 +165733,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(686), [sym_preproc_define] = STATE(686), [sym_preproc_undef] = STATE(686), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165764,20 +165786,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165788,90 +165810,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [687] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2773), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3504), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(687), [sym_preproc_endregion] = STATE(687), [sym_preproc_line] = STATE(687), @@ -165881,48 +165903,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165935,20 +165957,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165959,90 +165981,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [688] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4819), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(688), [sym_preproc_endregion] = STATE(688), [sym_preproc_line] = STATE(688), @@ -166052,48 +166074,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3077), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3079), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -166118,8 +166140,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -166136,84 +166158,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [689] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3102), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3429), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(689), [sym_preproc_endregion] = STATE(689), [sym_preproc_line] = STATE(689), @@ -166223,48 +166245,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -166289,8 +166311,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -166307,84 +166329,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [690] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(3052), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2304), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(2623), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7499), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7860), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(3011), - [sym_expression] = STATE(3828), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2914), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2583), + [sym_implicit_type] = STATE(2708), + [sym_array_type] = STATE(2704), + [sym__array_base_type] = STATE(7506), + [sym_nullable_type] = STATE(2703), + [sym_pointer_type] = STATE(2703), + [sym__pointer_base_type] = STATE(7811), + [sym_function_pointer_type] = STATE(2703), + [sym_ref_type] = STATE(2708), + [sym_scoped_type] = STATE(2708), + [sym_tuple_type] = STATE(2702), + [sym_expression] = STATE(4165), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(690), [sym_preproc_endregion] = STATE(690), [sym_preproc_line] = STATE(690), @@ -166394,48 +166416,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_ref] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_ref] = ACTIONS(2673), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(2635), - [anon_sym_readonly] = ACTIONS(3083), + [anon_sym_delegate] = ACTIONS(2677), + [anon_sym_readonly] = ACTIONS(3081), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(1603), [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2641), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(3085), - [sym_predefined_type] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2681), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(3085), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -166461,7 +166483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -166478,84 +166500,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [691] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4380), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3361), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3329), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(691), [sym_preproc_endregion] = STATE(691), [sym_preproc_line] = STATE(691), @@ -166565,48 +166588,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3089), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(3087), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -166620,19 +166642,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -166643,91 +166665,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [692] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5340), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2664), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3119), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(692), [sym_preproc_endregion] = STATE(692), [sym_preproc_line] = STATE(692), @@ -166737,47 +166758,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -166790,20 +166812,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -166814,90 +166836,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(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [693] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3270), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(5269), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3083), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(693), [sym_preproc_endregion] = STATE(693), [sym_preproc_line] = STATE(693), @@ -166907,48 +166930,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -166961,20 +166983,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -166985,91 +167007,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [694] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4123), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3088), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4911), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(694), [sym_preproc_endregion] = STATE(694), [sym_preproc_line] = STATE(694), @@ -167079,47 +167100,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3091), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167133,19 +167155,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -167156,90 +167178,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [695] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5867), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3828), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4158), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(695), [sym_preproc_endregion] = STATE(695), [sym_preproc_line] = STATE(695), @@ -167249,48 +167271,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3093), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2979), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(3093), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167315,8 +167337,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -167333,85 +167355,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [696] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4872), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2754), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3132), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(696), [sym_preproc_endregion] = STATE(696), [sym_preproc_line] = STATE(696), @@ -167421,47 +167442,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(696), [sym_preproc_define] = STATE(696), [sym_preproc_undef] = STATE(696), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167474,20 +167496,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -167498,90 +167520,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [697] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2467), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2226), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3891), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_expression] = STATE(4165), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(697), [sym_preproc_endregion] = STATE(697), [sym_preproc_line] = STATE(697), @@ -167591,169 +167613,168 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_ref] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3097), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), [aux_sym_preproc_error_token1] = ACTIONS(13), [aux_sym_preproc_warning_token1] = ACTIONS(15), [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [698] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3774), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4296), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4165), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(698), [sym_preproc_endregion] = STATE(698), [sym_preproc_line] = STATE(698), @@ -167763,47 +167784,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167816,20 +167838,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -167840,90 +167862,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [699] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4258), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4782), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(699), [sym_preproc_endregion] = STATE(699), [sym_preproc_line] = STATE(699), @@ -167933,48 +167955,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(699), [sym_preproc_define] = STATE(699), [sym_preproc_undef] = STATE(699), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2277), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167987,20 +168009,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -168011,91 +168033,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(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [700] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5044), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3344), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3276), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3159), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(700), [sym_preproc_endregion] = STATE(700), [sym_preproc_line] = STATE(700), @@ -168105,47 +168127,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(700), [sym_preproc_define] = STATE(700), [sym_preproc_undef] = STATE(700), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -168158,20 +168180,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -168182,91 +168204,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [701] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5044), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3341), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3361), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3988), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(701), [sym_preproc_endregion] = STATE(701), [sym_preproc_line] = STATE(701), @@ -168276,47 +168298,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(701), [sym_preproc_define] = STATE(701), [sym_preproc_undef] = STATE(701), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -168329,20 +168351,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -168359,84 +168381,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [702] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3080), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(702), [sym_preproc_endregion] = STATE(702), [sym_preproc_line] = STATE(702), @@ -168446,48 +168468,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(702), [sym_preproc_define] = STATE(702), [sym_preproc_undef] = STATE(702), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -168500,20 +168522,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -168524,90 +168546,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [703] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3828), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4929), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(703), [sym_preproc_endregion] = STATE(703), [sym_preproc_line] = STATE(703), @@ -168617,48 +168639,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -168683,8 +168705,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -168701,85 +168723,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [704] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4872), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3383), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3827), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(704), [sym_preproc_endregion] = STATE(704), [sym_preproc_line] = STATE(704), @@ -168789,47 +168810,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(704), [sym_preproc_define] = STATE(704), [sym_preproc_undef] = STATE(704), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -168854,8 +168876,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -168872,84 +168894,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [705] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3346), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(705), [sym_preproc_endregion] = STATE(705), [sym_preproc_line] = STATE(705), @@ -168959,48 +168981,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -169013,20 +169035,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -169043,84 +169065,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [706] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3378), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4120), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7217), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(706), [sym_preproc_endregion] = STATE(706), [sym_preproc_line] = STATE(706), @@ -169130,48 +169153,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(706), [sym_preproc_define] = STATE(706), [sym_preproc_undef] = STATE(706), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -169184,20 +169206,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -169208,91 +169230,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(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [707] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5663), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3947), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4237), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3820), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(707), [sym_preproc_endregion] = STATE(707), [sym_preproc_line] = STATE(707), @@ -169302,73 +169324,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1377), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -169379,90 +169401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [708] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3485), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3957), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(708), [sym_preproc_endregion] = STATE(708), [sym_preproc_line] = STATE(708), @@ -169472,48 +169494,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(2921), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(3105), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2555), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -169538,8 +169560,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -169556,84 +169578,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [709] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4337), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2664), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2226), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_expression] = STATE(4165), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2239), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(709), [sym_preproc_endregion] = STATE(709), [sym_preproc_line] = STATE(709), @@ -169643,48 +169665,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2343), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_ref] = ACTIONS(2569), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3107), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2575), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -169709,8 +169731,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -169727,84 +169749,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [710] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2771), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4700), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(710), [sym_preproc_endregion] = STATE(710), [sym_preproc_line] = STATE(710), @@ -169814,48 +169836,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -169868,20 +169890,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -169892,90 +169914,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(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [711] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4311), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(5269), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3058), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(711), [sym_preproc_endregion] = STATE(711), [sym_preproc_line] = STATE(711), @@ -169985,48 +170008,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(711), [sym_preproc_define] = STATE(711), [sym_preproc_undef] = STATE(711), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170039,20 +170061,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170063,90 +170085,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [712] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4506), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3775), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(712), [sym_preproc_endregion] = STATE(712), [sym_preproc_line] = STATE(712), @@ -170156,48 +170178,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3097), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170222,8 +170244,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170240,85 +170262,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [713] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5340), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2597), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3276), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3580), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(713), [sym_preproc_endregion] = STATE(713), [sym_preproc_line] = STATE(713), @@ -170328,47 +170350,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170381,20 +170403,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170405,90 +170427,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [714] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3802), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3033), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(714), [sym_preproc_endregion] = STATE(714), [sym_preproc_line] = STATE(714), @@ -170498,48 +170520,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170552,20 +170574,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170576,90 +170598,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [715] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4400), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(5738), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3854), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(715), [sym_preproc_endregion] = STATE(715), [sym_preproc_line] = STATE(715), @@ -170669,74 +170692,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170747,90 +170769,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [716] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2628), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3654), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(716), [sym_preproc_endregion] = STATE(716), [sym_preproc_line] = STATE(716), @@ -170840,48 +170862,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(716), [sym_preproc_define] = STATE(716), [sym_preproc_undef] = STATE(716), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170894,20 +170916,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170918,91 +170940,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(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [717] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4123), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4557), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4454), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3466), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(717), [sym_preproc_endregion] = STATE(717), [sym_preproc_line] = STATE(717), @@ -171012,47 +171034,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171065,20 +171087,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -171095,84 +171117,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [718] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3791), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(718), [sym_preproc_endregion] = STATE(718), [sym_preproc_line] = STATE(718), @@ -171182,74 +171204,74 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -171260,90 +171282,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [719] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3361), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3457), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(719), [sym_preproc_endregion] = STATE(719), [sym_preproc_line] = STATE(719), @@ -171353,48 +171376,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(719), [sym_preproc_define] = STATE(719), [sym_preproc_undef] = STATE(719), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(3087), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171408,19 +171430,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -171431,91 +171453,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [720] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5663), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3275), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4237), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3578), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(720), [sym_preproc_endregion] = STATE(720), [sym_preproc_line] = STATE(720), @@ -171525,73 +171547,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(720), [sym_preproc_define] = STATE(720), [sym_preproc_undef] = STATE(720), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [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(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -171602,90 +171624,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [721] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4513), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3469), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(721), [sym_preproc_endregion] = STATE(721), [sym_preproc_line] = STATE(721), @@ -171695,48 +171717,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(721), [sym_preproc_define] = STATE(721), [sym_preproc_undef] = STATE(721), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3103), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171749,20 +171771,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -171779,84 +171801,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [722] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5962), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2299), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4311), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3276), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4640), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(722), [sym_preproc_endregion] = STATE(722), [sym_preproc_line] = STATE(722), @@ -171866,48 +171889,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(722), [sym_preproc_define] = STATE(722), [sym_preproc_undef] = STATE(722), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2543), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171920,20 +171942,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -171944,91 +171966,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [723] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3774), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3103), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3689), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(723), [sym_preproc_endregion] = STATE(723), [sym_preproc_line] = STATE(723), @@ -172038,47 +172059,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(723), [sym_preproc_define] = STATE(723), [sym_preproc_undef] = STATE(723), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -172091,20 +172113,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172115,90 +172137,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [724] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2265), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3500), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4976), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(724), [sym_preproc_endregion] = STATE(724), [sym_preproc_line] = STATE(724), @@ -172208,48 +172230,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(724), [sym_preproc_define] = STATE(724), [sym_preproc_undef] = STATE(724), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3109), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2979), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -172274,8 +172296,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172292,84 +172314,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [725] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4961), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(725), [sym_preproc_endregion] = STATE(725), [sym_preproc_line] = STATE(725), @@ -172379,48 +172401,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3111), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3107), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -172445,8 +172467,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172463,85 +172485,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [726] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3774), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4161), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3957), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(726), [sym_preproc_endregion] = STATE(726), [sym_preproc_line] = STATE(726), @@ -172551,47 +172572,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -172604,20 +172626,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172628,90 +172650,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [727] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5825), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3230), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3957), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(727), [sym_preproc_endregion] = STATE(727), [sym_preproc_line] = STATE(727), @@ -172721,48 +172743,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(2977), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(3001), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -172776,19 +172798,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172799,90 +172821,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [728] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4116), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4869), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(728), [sym_preproc_endregion] = STATE(728), [sym_preproc_line] = STATE(728), @@ -172892,48 +172914,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(728), [sym_preproc_define] = STATE(728), [sym_preproc_undef] = STATE(728), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2291), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -172946,20 +172968,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172970,91 +172992,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(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [729] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5044), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3551), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3361), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3757), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(729), [sym_preproc_endregion] = STATE(729), [sym_preproc_line] = STATE(729), @@ -173064,47 +173086,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(729), [sym_preproc_define] = STATE(729), [sym_preproc_undef] = STATE(729), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173117,20 +173139,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173147,84 +173169,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [730] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6017), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2346), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3828), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(730), [sym_preproc_endregion] = STATE(730), [sym_preproc_line] = STATE(730), @@ -173234,48 +173256,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3113), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(3109), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2593), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173300,8 +173322,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173318,85 +173340,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [731] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4872), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3661), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3361), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4974), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(731), [sym_preproc_endregion] = STATE(731), [sym_preproc_line] = STATE(731), @@ -173406,47 +173428,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173459,20 +173481,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173483,90 +173505,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [732] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3537), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(732), [sym_preproc_endregion] = STATE(732), [sym_preproc_line] = STATE(732), @@ -173576,48 +173598,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(732), [sym_preproc_define] = STATE(732), [sym_preproc_undef] = STATE(732), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173630,20 +173652,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173660,84 +173682,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [733] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5999), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3659), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3957), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(733), [sym_preproc_endregion] = STATE(733), [sym_preproc_line] = STATE(733), @@ -173747,48 +173769,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(733), [sym_preproc_define] = STATE(733), [sym_preproc_undef] = STATE(733), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3001), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173801,20 +173823,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173825,90 +173847,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [734] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3778), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4989), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(734), [sym_preproc_endregion] = STATE(734), [sym_preproc_line] = STATE(734), @@ -173918,48 +173940,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2325), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173972,20 +173994,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174002,85 +174024,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [735] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5044), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3986), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(2467), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2226), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_expression] = STATE(4165), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2284), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(735), [sym_preproc_endregion] = STATE(735), [sym_preproc_line] = STATE(735), @@ -174090,47 +174111,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(735), [sym_preproc_define] = STATE(735), [sym_preproc_undef] = STATE(735), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_ref] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3097), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2595), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(2579), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -174143,20 +174165,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174173,84 +174195,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [736] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3300), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3276), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3404), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(736), [sym_preproc_endregion] = STATE(736), [sym_preproc_line] = STATE(736), @@ -174260,74 +174283,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2025), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174338,90 +174360,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [737] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4498), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3352), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(737), [sym_preproc_endregion] = STATE(737), [sym_preproc_line] = STATE(737), @@ -174431,48 +174453,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(737), [sym_preproc_define] = STATE(737), [sym_preproc_undef] = STATE(737), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -174485,20 +174507,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174509,90 +174531,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [738] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4311), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4454), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3716), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(738), [sym_preproc_endregion] = STATE(738), [sym_preproc_line] = STATE(738), @@ -174602,48 +174625,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -174656,20 +174678,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174686,85 +174708,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [739] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4123), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3668), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4237), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3485), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(739), [sym_preproc_endregion] = STATE(739), [sym_preproc_line] = STATE(739), @@ -174774,47 +174796,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -174827,20 +174849,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174851,90 +174873,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [740] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4497), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3713), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(740), [sym_preproc_endregion] = STATE(740), [sym_preproc_line] = STATE(740), @@ -174944,48 +174966,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(740), [sym_preproc_define] = STATE(740), [sym_preproc_undef] = STATE(740), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3111), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -174998,20 +175020,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175028,85 +175050,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [741] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5340), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2777), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3443), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(741), [sym_preproc_endregion] = STATE(741), [sym_preproc_line] = STATE(741), @@ -175116,47 +175137,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -175169,20 +175191,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175193,90 +175215,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [742] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4933), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(742), [sym_preproc_endregion] = STATE(742), [sym_preproc_line] = STATE(742), @@ -175286,48 +175308,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(742), [sym_preproc_define] = STATE(742), [sym_preproc_undef] = STATE(742), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3119), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3113), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -175352,8 +175374,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175370,85 +175392,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [743] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4123), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4595), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5038), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(743), [sym_preproc_endregion] = STATE(743), [sym_preproc_line] = STATE(743), @@ -175458,47 +175479,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(743), [sym_preproc_define] = STATE(743), [sym_preproc_undef] = STATE(743), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3093), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -175523,8 +175545,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175541,85 +175563,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [744] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4123), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4310), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4063), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(744), [sym_preproc_endregion] = STATE(744), [sym_preproc_line] = STATE(744), @@ -175629,47 +175650,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -175694,8 +175716,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175712,84 +175734,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [745] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5015), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(745), [sym_preproc_endregion] = STATE(745), [sym_preproc_line] = STATE(745), @@ -175799,48 +175821,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2285), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3115), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -175865,8 +175887,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175883,84 +175905,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [746] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2465), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2227), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_expression] = STATE(3828), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3361), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4406), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(746), [sym_preproc_endregion] = STATE(746), [sym_preproc_line] = STATE(746), @@ -175970,48 +175993,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(3087), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(3119), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(3121), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -176036,8 +176058,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -176054,84 +176076,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [747] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3211), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(747), [sym_preproc_endregion] = STATE(747), [sym_preproc_line] = STATE(747), @@ -176141,48 +176163,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(747), [sym_preproc_define] = STATE(747), [sym_preproc_undef] = STATE(747), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3121), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -176195,20 +176217,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -176219,90 +176241,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [748] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3656), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(748), [sym_preproc_endregion] = STATE(748), [sym_preproc_line] = STATE(748), @@ -176312,48 +176334,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(748), [sym_preproc_define] = STATE(748), [sym_preproc_undef] = STATE(748), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -176366,20 +176388,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -176396,85 +176418,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [749] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4123), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4314), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3117), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym__ordering] = STATE(6618), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(749), [sym_preproc_endregion] = STATE(749), [sym_preproc_line] = STATE(749), @@ -176484,47 +176506,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(749), [sym_preproc_define] = STATE(749), [sym_preproc_undef] = STATE(749), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -176537,20 +176559,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -176561,91 +176583,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [750] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3774), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4139), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3361), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4332), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(750), [sym_preproc_endregion] = STATE(750), [sym_preproc_line] = STATE(750), @@ -176655,218 +176677,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(750), [sym_preproc_define] = STATE(750), [sym_preproc_undef] = STATE(750), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_delegate] = ACTIONS(1463), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), - }, - [751] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4407), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(751), - [sym_preproc_endregion] = STATE(751), - [sym_preproc_line] = STATE(751), - [sym_preproc_pragma] = STATE(751), - [sym_preproc_nullable] = STATE(751), - [sym_preproc_error] = STATE(751), - [sym_preproc_warning] = STATE(751), - [sym_preproc_define] = STATE(751), - [sym_preproc_undef] = STATE(751), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(3087), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -176891,8 +176742,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -176908,136 +176759,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [752] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4123), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3911), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(752), - [sym_preproc_endregion] = STATE(752), - [sym_preproc_line] = STATE(752), - [sym_preproc_pragma] = STATE(752), - [sym_preproc_nullable] = STATE(752), - [sym_preproc_error] = STATE(752), - [sym_preproc_warning] = STATE(752), - [sym_preproc_define] = STATE(752), - [sym_preproc_undef] = STATE(752), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [751] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5825), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4165), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(751), + [sym_preproc_endregion] = STATE(751), + [sym_preproc_line] = STATE(751), + [sym_preproc_pragma] = STATE(751), + [sym_preproc_nullable] = STATE(751), + [sym_preproc_error] = STATE(751), + [sym_preproc_warning] = STATE(751), + [sym_preproc_define] = STATE(751), + [sym_preproc_undef] = STATE(751), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_ref] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3001), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -177062,8 +176913,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -177079,136 +176930,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [753] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(753), - [sym_preproc_endregion] = STATE(753), - [sym_preproc_line] = STATE(753), - [sym_preproc_pragma] = STATE(753), - [sym_preproc_nullable] = STATE(753), - [sym_preproc_error] = STATE(753), - [sym_preproc_warning] = STATE(753), - [sym_preproc_define] = STATE(753), - [sym_preproc_undef] = STATE(753), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [752] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4172), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(752), + [sym_preproc_endregion] = STATE(752), + [sym_preproc_line] = STATE(752), + [sym_preproc_pragma] = STATE(752), + [sym_preproc_nullable] = STATE(752), + [sym_preproc_error] = STATE(752), + [sym_preproc_warning] = STATE(752), + [sym_preproc_define] = STATE(752), + [sym_preproc_undef] = STATE(752), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_RPAREN] = ACTIONS(3127), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3123), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -177233,8 +177084,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -177250,85 +177101,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, + [753] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3276), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4546), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(753), + [sym_preproc_endregion] = STATE(753), + [sym_preproc_line] = STATE(753), + [sym_preproc_pragma] = STATE(753), + [sym_preproc_nullable] = STATE(753), + [sym_preproc_error] = STATE(753), + [sym_preproc_warning] = STATE(753), + [sym_preproc_define] = STATE(753), + [sym_preproc_undef] = STATE(753), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), + }, [754] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4270), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4680), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(754), [sym_preproc_endregion] = STATE(754), [sym_preproc_line] = STATE(754), @@ -177338,48 +177360,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -177404,8 +177426,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -177422,85 +177444,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [755] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4872), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3766), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4454), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3556), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(755), [sym_preproc_endregion] = STATE(755), [sym_preproc_line] = STATE(755), @@ -177510,47 +177532,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(755), [sym_preproc_define] = STATE(755), [sym_preproc_undef] = STATE(755), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -177563,20 +177585,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -177587,90 +177609,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(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [756] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4520), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4237), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3677), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(756), [sym_preproc_endregion] = STATE(756), [sym_preproc_line] = STATE(756), @@ -177680,48 +177703,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3125), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -177734,20 +177756,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -177758,91 +177780,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [757] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5044), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3654), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3570), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(757), [sym_preproc_endregion] = STATE(757), [sym_preproc_line] = STATE(757), @@ -177852,47 +177873,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(757), [sym_preproc_define] = STATE(757), [sym_preproc_undef] = STATE(757), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -177917,7 +177939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -177935,84 +177957,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [758] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3943), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3674), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(758), [sym_preproc_endregion] = STATE(758), [sym_preproc_line] = STATE(758), @@ -178022,48 +178044,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3103), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178076,20 +178098,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178100,91 +178122,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [759] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5044), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4047), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3790), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(759), [sym_preproc_endregion] = STATE(759), [sym_preproc_line] = STATE(759), @@ -178194,47 +178215,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(759), [sym_preproc_define] = STATE(759), [sym_preproc_undef] = STATE(759), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3129), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178247,20 +178269,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178277,84 +178299,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [760] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3759), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3361), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4773), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(760), [sym_preproc_endregion] = STATE(760), [sym_preproc_line] = STATE(760), @@ -178364,48 +178387,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(760), [sym_preproc_define] = STATE(760), [sym_preproc_undef] = STATE(760), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178418,20 +178440,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178442,91 +178464,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [761] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4123), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3198), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(761), [sym_preproc_endregion] = STATE(761), [sym_preproc_line] = STATE(761), @@ -178536,47 +178557,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3131), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178590,19 +178612,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178613,91 +178635,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [762] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2810), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym__ordering] = STATE(6611), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(762), [sym_preproc_endregion] = STATE(762), [sym_preproc_line] = STATE(762), @@ -178707,47 +178728,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3133), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178760,20 +178782,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178784,90 +178806,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [763] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6002), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2332), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5953), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4311), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3895), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(763), [sym_preproc_endregion] = STATE(763), [sym_preproc_line] = STATE(763), @@ -178877,48 +178899,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(2273), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(3109), + [anon_sym_readonly] = ACTIONS(3001), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2593), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178943,8 +178965,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178961,84 +178983,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [764] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4325), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4293), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(764), [sym_preproc_endregion] = STATE(764), [sym_preproc_line] = STATE(764), @@ -179048,48 +179070,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179114,8 +179136,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -179132,84 +179154,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [765] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5991), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2299), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3828), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6225), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4282), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_declaration_expression] = STATE(7237), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(765), [sym_preproc_endregion] = STATE(765), [sym_preproc_line] = STATE(765), @@ -179219,48 +179242,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(765), [sym_preproc_define] = STATE(765), [sym_preproc_undef] = STATE(765), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(3105), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2543), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179285,8 +179307,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -179303,84 +179325,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [766] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5867), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3692), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4292), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(766), [sym_preproc_endregion] = STATE(766), [sym_preproc_line] = STATE(766), @@ -179390,48 +179412,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(766), [sym_preproc_define] = STATE(766), [sym_preproc_undef] = STATE(766), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2989), + [anon_sym_RPAREN] = ACTIONS(3137), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2979), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179456,8 +179478,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -179474,84 +179496,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [767] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4287), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(767), [sym_preproc_endregion] = STATE(767), [sym_preproc_line] = STATE(767), @@ -179561,48 +179583,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(767), [sym_preproc_define] = STATE(767), [sym_preproc_undef] = STATE(767), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_RPAREN] = ACTIONS(3139), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3127), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179627,8 +179649,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -179645,84 +179667,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [768] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3143), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym__anonymous_object_member_declarator] = STATE(7567), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2334), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(768), [sym_preproc_endregion] = STATE(768), [sym_preproc_line] = STATE(768), @@ -179732,48 +179755,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(768), [sym_preproc_define] = STATE(768), [sym_preproc_undef] = STATE(768), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179786,20 +179808,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -179810,91 +179832,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(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [769] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3774), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4215), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3276), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4692), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(769), [sym_preproc_endregion] = STATE(769), [sym_preproc_line] = STATE(769), @@ -179904,47 +179926,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(769), [sym_preproc_define] = STATE(769), [sym_preproc_undef] = STATE(769), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(3075), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179969,7 +179991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -179987,85 +180009,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [770] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3774), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3149), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4661), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(770), [sym_preproc_endregion] = STATE(770), [sym_preproc_line] = STATE(770), @@ -180075,47 +180096,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180140,7 +180162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -180158,85 +180180,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [771] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4001), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7326), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4454), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3911), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(771), [sym_preproc_endregion] = STATE(771), [sym_preproc_line] = STATE(771), @@ -180246,47 +180268,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(771), [sym_preproc_define] = STATE(771), [sym_preproc_undef] = STATE(771), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180299,20 +180321,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -180329,84 +180351,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [772] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2465), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2227), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_expression] = STATE(3828), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2295), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4237), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3949), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(772), [sym_preproc_endregion] = STATE(772), [sym_preproc_line] = STATE(772), @@ -180416,48 +180439,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym_ref] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2575), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(3129), - [sym_predefined_type] = ACTIONS(2579), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180470,20 +180492,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -180494,91 +180516,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [773] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4123), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4415), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3875), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(773), [sym_preproc_endregion] = STATE(773), [sym_preproc_line] = STATE(773), @@ -180588,47 +180609,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(773), [sym_preproc_define] = STATE(773), [sym_preproc_undef] = STATE(773), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180641,20 +180663,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -180671,84 +180693,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [774] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5949), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2265), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3692), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3956), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(774), [sym_preproc_endregion] = STATE(774), [sym_preproc_line] = STATE(774), @@ -180758,48 +180780,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180812,20 +180834,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -180836,90 +180858,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [775] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4478), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(775), [sym_preproc_endregion] = STATE(775), [sym_preproc_line] = STATE(775), @@ -180929,48 +180951,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3131), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3141), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180995,8 +181017,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -181013,84 +181035,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [776] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4207), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4915), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(776), [sym_preproc_endregion] = STATE(776), [sym_preproc_line] = STATE(776), @@ -181100,48 +181122,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -181154,20 +181176,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -181178,91 +181200,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [777] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3774), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2998), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3506), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(777), [sym_preproc_endregion] = STATE(777), [sym_preproc_line] = STATE(777), @@ -181272,73 +181293,74 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -181349,90 +181371,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(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [778] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2964), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3361), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5052), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(778), [sym_preproc_endregion] = STATE(778), [sym_preproc_line] = STATE(778), @@ -181442,48 +181465,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(778), [sym_preproc_define] = STATE(778), [sym_preproc_undef] = STATE(778), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -181496,20 +181518,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -181520,90 +181542,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [779] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3692), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(779), [sym_preproc_endregion] = STATE(779), [sym_preproc_line] = STATE(779), @@ -181613,48 +181635,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(2917), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3143), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(3105), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2543), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -181679,8 +181701,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -181697,85 +181719,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [780] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5044), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4032), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(780), [sym_preproc_endregion] = STATE(780), [sym_preproc_line] = STATE(780), @@ -181785,47 +181806,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -181838,20 +181860,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -181868,84 +181890,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [781] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(2780), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2227), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6009), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2347), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_expression] = STATE(3828), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2241), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4830), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2275), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(781), [sym_preproc_endregion] = STATE(781), [sym_preproc_line] = STATE(781), @@ -181955,48 +181977,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(781), [sym_preproc_define] = STATE(781), [sym_preproc_undef] = STATE(781), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym_ref] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2845), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3147), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2685), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(3121), - [sym_predefined_type] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2823), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -182021,8 +182043,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -182039,84 +182061,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [782] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4003), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(5738), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3544), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(782), [sym_preproc_endregion] = STATE(782), [sym_preproc_line] = STATE(782), @@ -182126,74 +182149,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -182204,91 +182226,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [783] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5340), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2687), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2965), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(783), [sym_preproc_endregion] = STATE(783), [sym_preproc_line] = STATE(783), @@ -182298,47 +182319,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -182351,20 +182373,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -182375,90 +182397,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(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [784] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4448), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3276), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4495), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(784), [sym_preproc_endregion] = STATE(784), [sym_preproc_line] = STATE(784), @@ -182468,48 +182491,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(784), [sym_preproc_define] = STATE(784), [sym_preproc_undef] = STATE(784), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -182522,20 +182544,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -182546,91 +182568,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [785] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4872), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3600), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4521), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(785), [sym_preproc_endregion] = STATE(785), [sym_preproc_line] = STATE(785), @@ -182640,47 +182661,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -182693,20 +182715,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -182717,90 +182739,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(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [786] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4454), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4072), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4376), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(786), [sym_preproc_endregion] = STATE(786), [sym_preproc_line] = STATE(786), @@ -182810,18 +182833,17 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(3067), [anon_sym_delegate] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(2997), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1531), @@ -182829,29 +182851,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -182876,7 +182898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -182894,84 +182916,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [787] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3598), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4237), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3989), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(787), [sym_preproc_endregion] = STATE(787), [sym_preproc_line] = STATE(787), @@ -182981,48 +183004,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(3073), [anon_sym_delegate] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(2997), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -183047,7 +183069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -183065,84 +183087,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [788] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3743), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4380), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(788), [sym_preproc_endregion] = STATE(788), [sym_preproc_line] = STATE(788), @@ -183152,48 +183174,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -183206,20 +183228,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -183230,91 +183252,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [789] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3774), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3457), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4014), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(789), [sym_preproc_endregion] = STATE(789), [sym_preproc_line] = STATE(789), @@ -183324,47 +183345,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(789), [sym_preproc_define] = STATE(789), [sym_preproc_undef] = STATE(789), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -183377,20 +183399,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -183401,90 +183423,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [790] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3801), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3895), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(790), [sym_preproc_endregion] = STATE(790), [sym_preproc_line] = STATE(790), @@ -183494,48 +183516,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -183548,20 +183570,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -183578,85 +183600,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [791] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4872), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3523), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4726), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(791), [sym_preproc_endregion] = STATE(791), [sym_preproc_line] = STATE(791), @@ -183666,47 +183687,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3149), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -183719,114 +183741,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [792] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4843), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(792), [sym_preproc_endregion] = STATE(792), [sym_preproc_line] = STATE(792), @@ -183836,48 +183858,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(792), [sym_preproc_define] = STATE(792), [sym_preproc_undef] = STATE(792), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3137), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -183902,8 +183923,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token3] = ACTIONS(3151), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -183920,84 +183942,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [793] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3500), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(5269), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2994), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(793), [sym_preproc_endregion] = STATE(793), [sym_preproc_line] = STATE(793), @@ -184007,48 +184030,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(793), [sym_preproc_define] = STATE(793), [sym_preproc_undef] = STATE(793), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -184061,20 +184083,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -184085,90 +184107,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [794] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3978), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3361), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3830), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(794), [sym_preproc_endregion] = STATE(794), [sym_preproc_line] = STATE(794), @@ -184178,48 +184201,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(3087), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -184244,8 +184266,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -184262,84 +184284,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [795] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3977), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(5269), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2968), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(795), [sym_preproc_endregion] = STATE(795), [sym_preproc_line] = STATE(795), @@ -184349,48 +184372,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(3141), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -184403,20 +184425,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -184427,90 +184449,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [796] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3972), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5825), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4165), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(796), [sym_preproc_endregion] = STATE(796), [sym_preproc_line] = STATE(796), @@ -184520,48 +184542,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(2519), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3001), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -184586,8 +184608,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -184604,85 +184626,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [797] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym__anonymous_object_member_declarator] = STATE(7563), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2336), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4807), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(797), [sym_preproc_endregion] = STATE(797), [sym_preproc_line] = STATE(797), @@ -184692,47 +184713,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3153), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -184757,8 +184779,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -184775,84 +184797,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [798] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2711), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4068), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(798), [sym_preproc_endregion] = STATE(798), [sym_preproc_line] = STATE(798), @@ -184862,48 +184884,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(798), [sym_preproc_define] = STATE(798), [sym_preproc_undef] = STATE(798), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_RPAREN] = ACTIONS(3155), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -184916,20 +184938,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -184940,91 +184962,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [799] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5663), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3574), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4074), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(799), [sym_preproc_endregion] = STATE(799), [sym_preproc_line] = STATE(799), @@ -185034,73 +185055,74 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_RPAREN] = ACTIONS(3157), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -185111,91 +185133,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [800] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5044), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3820), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4075), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(800), [sym_preproc_endregion] = STATE(800), [sym_preproc_line] = STATE(800), @@ -185205,47 +185226,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_RPAREN] = ACTIONS(3159), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -185258,20 +185280,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -185288,84 +185310,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [801] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3367), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3276), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4533), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(801), [sym_preproc_endregion] = STATE(801), [sym_preproc_line] = STATE(801), @@ -185375,18 +185398,17 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(3075), [anon_sym_delegate] = ACTIONS(1463), - [anon_sym_readonly] = ACTIONS(2997), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1465), @@ -185394,29 +185416,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -185441,7 +185463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -185459,85 +185481,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [802] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5044), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3182), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4451), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(802), [sym_preproc_endregion] = STATE(802), [sym_preproc_line] = STATE(802), @@ -185547,47 +185568,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -185600,20 +185622,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -185624,90 +185646,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [803] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4481), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4454), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4307), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(803), [sym_preproc_endregion] = STATE(803), [sym_preproc_line] = STATE(803), @@ -185717,48 +185740,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3145), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -185771,20 +185793,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -185801,84 +185823,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [804] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4237), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3996), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(804), [sym_preproc_endregion] = STATE(804), [sym_preproc_line] = STATE(804), @@ -185888,48 +185911,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -185942,20 +185964,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -185966,90 +185988,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [805] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4500), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3244), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(805), [sym_preproc_endregion] = STATE(805), [sym_preproc_line] = STATE(805), @@ -186059,48 +186081,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3149), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186114,19 +186136,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186137,90 +186159,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [806] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5989), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2294), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3500), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4288), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(806), [sym_preproc_endregion] = STATE(806), [sym_preproc_line] = STATE(806), @@ -186230,48 +186252,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2543), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186284,20 +186306,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186314,84 +186336,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [807] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4343), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3993), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(807), [sym_preproc_endregion] = STATE(807), [sym_preproc_line] = STATE(807), @@ -186401,47 +186423,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186454,21 +186477,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token3] = ACTIONS(3151), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186479,91 +186501,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [808] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4123), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3647), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_argument] = STATE(7423), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4586), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2318), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(808), [sym_preproc_endregion] = STATE(808), [sym_preproc_line] = STATE(808), @@ -186573,16 +186595,16 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), @@ -186591,29 +186613,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186638,8 +186660,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186656,85 +186678,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [809] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(6062), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4123), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3478), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4843), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(809), [sym_preproc_endregion] = STATE(809), [sym_preproc_line] = STATE(809), @@ -186744,47 +186765,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(809), [sym_preproc_define] = STATE(809), [sym_preproc_undef] = STATE(809), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186809,8 +186830,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token3] = ACTIONS(3161), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186827,84 +186849,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [810] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5867), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3828), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4265), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(810), [sym_preproc_endregion] = STATE(810), [sym_preproc_line] = STATE(810), @@ -186914,48 +186936,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1327), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2981), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186968,20 +186990,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186998,84 +187020,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [811] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3694), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5087), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(811), [sym_preproc_endregion] = STATE(811), [sym_preproc_line] = STATE(811), @@ -187085,219 +187107,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), - [anon_sym_readonly] = ACTIONS(2997), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), - }, - [812] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4398), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(812), - [sym_preproc_endregion] = STATE(812), - [sym_preproc_line] = STATE(812), - [sym_preproc_pragma] = STATE(812), - [sym_preproc_nullable] = STATE(812), - [sym_preproc_error] = STATE(812), - [sym_preproc_warning] = STATE(812), - [sym_preproc_define] = STATE(812), - [sym_preproc_undef] = STATE(812), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3153), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -187322,8 +187173,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187339,136 +187190,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [813] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4025), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [812] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(812), + [sym_preproc_endregion] = STATE(812), + [sym_preproc_line] = STATE(812), + [sym_preproc_pragma] = STATE(812), + [sym_preproc_nullable] = STATE(812), + [sym_preproc_error] = STATE(812), + [sym_preproc_warning] = STATE(812), + [sym_preproc_define] = STATE(812), + [sym_preproc_undef] = STATE(812), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(3155), [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(3163), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -187493,8 +187344,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187510,85 +187361,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, + [813] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3621), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [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(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), + }, [814] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4026), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4454), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4267), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(814), [sym_preproc_endregion] = STATE(814), [sym_preproc_line] = STATE(814), @@ -187598,48 +187621,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(814), [sym_preproc_define] = STATE(814), [sym_preproc_undef] = STATE(814), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(3157), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -187652,20 +187674,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187682,84 +187704,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [815] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4030), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3361), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4945), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(815), [sym_preproc_endregion] = STATE(815), [sym_preproc_line] = STATE(815), @@ -187769,48 +187792,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(3159), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(3087), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -187835,8 +187857,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187853,85 +187875,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [816] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4872), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3438), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5996), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2297), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3895), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(816), [sym_preproc_endregion] = STATE(816), [sym_preproc_line] = STATE(816), @@ -187941,47 +187962,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3105), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2555), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -187994,20 +188016,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -188018,91 +188040,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(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [817] = { - [sym_attribute_argument] = STATE(7425), - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4253), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3117), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym__ordering] = STATE(6635), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(817), [sym_preproc_endregion] = STATE(817), [sym_preproc_line] = STATE(817), @@ -188112,47 +188134,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(817), [sym_preproc_define] = STATE(817), [sym_preproc_undef] = STATE(817), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -188165,20 +188187,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -188189,90 +188211,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [818] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4454), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4206), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(818), [sym_preproc_endregion] = STATE(818), [sym_preproc_line] = STATE(818), @@ -188282,48 +188305,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(818), [sym_preproc_define] = STATE(818), [sym_preproc_undef] = STATE(818), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -188336,20 +188358,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -188366,85 +188388,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [819] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3774), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4143), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4237), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3797), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(819), [sym_preproc_endregion] = STATE(819), [sym_preproc_line] = STATE(819), @@ -188454,47 +188476,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -188507,20 +188529,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -188531,90 +188553,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [820] = { - [sym_attribute_list] = STATE(6050), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4343), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5947), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2288), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4830), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(820), [sym_preproc_endregion] = STATE(820), [sym_preproc_line] = STATE(820), @@ -188624,47 +188646,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2553), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3105), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2555), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -188689,9 +188712,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token3] = ACTIONS(3163), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -188708,85 +188730,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [821] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2810), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym__ordering] = STATE(6643), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4204), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(821), [sym_preproc_endregion] = STATE(821), [sym_preproc_line] = STATE(821), @@ -188796,47 +188817,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -188849,20 +188871,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -188873,91 +188895,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [822] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4123), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4540), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3844), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(822), [sym_preproc_endregion] = STATE(822), [sym_preproc_line] = STATE(822), @@ -188967,47 +188988,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(822), [sym_preproc_define] = STATE(822), [sym_preproc_undef] = STATE(822), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189020,20 +189042,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189044,90 +189066,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [823] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(5738), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3682), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(823), [sym_preproc_endregion] = STATE(823), [sym_preproc_line] = STATE(823), @@ -189137,74 +189160,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189215,90 +189237,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [824] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4456), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5080), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(824), [sym_preproc_endregion] = STATE(824), [sym_preproc_line] = STATE(824), @@ -189308,49 +189330,49 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2167), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_from] = ACTIONS(125), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), + [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), [anon_sym_on] = ACTIONS(29), @@ -189374,8 +189396,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189392,85 +189414,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [825] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5044), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4015), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3007), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(825), [sym_preproc_endregion] = STATE(825), [sym_preproc_line] = STATE(825), @@ -189480,47 +189501,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189533,20 +189555,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189557,90 +189579,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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [826] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3185), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3361), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4847), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(826), [sym_preproc_endregion] = STATE(826), [sym_preproc_line] = STATE(826), @@ -189650,48 +189673,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189704,20 +189726,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189734,85 +189756,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [827] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4872), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3541), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2288), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4165), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(827), [sym_preproc_endregion] = STATE(827), [sym_preproc_line] = STATE(827), @@ -189822,47 +189843,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3105), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2555), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189875,20 +189897,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189899,90 +189921,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [828] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6019), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2343), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4008), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4165), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2275), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(828), [sym_preproc_endregion] = STATE(828), [sym_preproc_line] = STATE(828), @@ -189992,48 +190014,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3147), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(2823), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -190046,20 +190068,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -190076,84 +190098,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [829] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3539), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5022), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(829), [sym_preproc_endregion] = STATE(829), [sym_preproc_line] = STATE(829), @@ -190163,48 +190185,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(3165), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -190217,20 +190239,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -190241,90 +190263,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [830] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4375), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5024), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(830), [sym_preproc_endregion] = STATE(830), [sym_preproc_line] = STATE(830), @@ -190334,48 +190356,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3167), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -190400,8 +190422,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -190418,84 +190440,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [831] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(3361), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4598), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4734), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(831), [sym_preproc_endregion] = STATE(831), [sym_preproc_line] = STATE(831), @@ -190505,48 +190528,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2325), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(3087), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -190571,8 +190593,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -190589,84 +190611,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [832] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3692), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4095), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(832), [sym_preproc_endregion] = STATE(832), [sym_preproc_line] = STATE(832), @@ -190676,48 +190698,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -190730,20 +190752,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -190760,84 +190782,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [833] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3733), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5998), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(2315), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4830), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(833), [sym_preproc_endregion] = STATE(833), [sym_preproc_line] = STATE(833), @@ -190847,48 +190869,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(833), [sym_preproc_define] = STATE(833), [sym_preproc_undef] = STATE(833), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(3167), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2341), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), + [anon_sym_readonly] = ACTIONS(3001), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -190913,8 +190935,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -190931,84 +190953,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [834] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4416), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5062), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(834), [sym_preproc_endregion] = STATE(834), [sym_preproc_line] = STATE(834), @@ -191018,48 +191040,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(834), [sym_preproc_define] = STATE(834), [sym_preproc_undef] = STATE(834), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191084,8 +191106,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191102,84 +191124,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [835] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4051), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4414), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(835), [sym_preproc_endregion] = STATE(835), [sym_preproc_line] = STATE(835), @@ -191189,8 +191211,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -191203,34 +191225,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191255,8 +191277,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191273,84 +191295,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [836] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(2315), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3354), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4080), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(836), [sym_preproc_endregion] = STATE(836), [sym_preproc_line] = STATE(836), @@ -191360,48 +191382,48 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191414,20 +191436,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191438,91 +191460,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(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [837] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3918), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_declaration_expression] = STATE(7156), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_block] = STATE(4454), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4097), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(837), [sym_preproc_endregion] = STATE(837), [sym_preproc_line] = STATE(837), @@ -191532,47 +191554,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191585,20 +191607,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191615,84 +191637,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [838] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4430), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3738), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(838), [sym_preproc_endregion] = STATE(838), [sym_preproc_line] = STATE(838), @@ -191702,47 +191724,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191755,20 +191777,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191785,84 +191807,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [839] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2586), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4387), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(839), [sym_preproc_endregion] = STATE(839), [sym_preproc_line] = STATE(839), @@ -191872,47 +191894,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191925,20 +191947,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191949,90 +191971,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [840] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4549), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3000), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(840), [sym_preproc_endregion] = STATE(840), [sym_preproc_line] = STATE(840), @@ -192042,47 +192064,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192095,20 +192117,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192119,90 +192141,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [841] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4389), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3576), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(841), [sym_preproc_endregion] = STATE(841), [sym_preproc_line] = STATE(841), @@ -192212,47 +192234,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192265,20 +192287,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192289,90 +192311,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [842] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4397), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3025), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(842), [sym_preproc_endregion] = STATE(842), [sym_preproc_line] = STATE(842), @@ -192382,47 +192404,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192435,20 +192457,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192459,90 +192481,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [843] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4403), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3028), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(843), [sym_preproc_endregion] = STATE(843), [sym_preproc_line] = STATE(843), @@ -192552,47 +192574,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192605,20 +192627,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192629,90 +192651,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [844] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4412), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4602), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(844), [sym_preproc_endregion] = STATE(844), [sym_preproc_line] = STATE(844), @@ -192722,47 +192744,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192787,8 +192809,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192805,84 +192827,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [845] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4172), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3503), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(845), [sym_preproc_endregion] = STATE(845), [sym_preproc_line] = STATE(845), @@ -192892,47 +192914,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192945,20 +192967,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192969,90 +192991,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [846] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4178), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4079), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(846), [sym_preproc_endregion] = STATE(846), [sym_preproc_line] = STATE(846), @@ -193062,47 +193084,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -193115,20 +193137,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193139,90 +193161,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [847] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4182), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4076), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(847), [sym_preproc_endregion] = STATE(847), [sym_preproc_line] = STATE(847), @@ -193232,47 +193254,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -193285,20 +193307,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193309,90 +193331,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [848] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4160), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4174), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(848), [sym_preproc_endregion] = STATE(848), [sym_preproc_line] = STATE(848), @@ -193402,73 +193424,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193479,90 +193501,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [849] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4213), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4060), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(849), [sym_preproc_endregion] = STATE(849), [sym_preproc_line] = STATE(849), @@ -193572,47 +193594,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -193625,20 +193647,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193649,90 +193671,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [850] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4218), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4064), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(850), [sym_preproc_endregion] = STATE(850), [sym_preproc_line] = STATE(850), @@ -193742,47 +193764,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -193795,20 +193817,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193819,90 +193841,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [851] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4299), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2983), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(851), [sym_preproc_endregion] = STATE(851), [sym_preproc_line] = STATE(851), @@ -193912,47 +193934,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -193965,20 +193987,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193989,90 +194011,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [852] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4470), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2982), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(852), [sym_preproc_endregion] = STATE(852), [sym_preproc_line] = STATE(852), @@ -194082,47 +194104,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194135,20 +194157,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194159,90 +194181,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [853] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4453), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5131), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2916), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(853), [sym_preproc_endregion] = STATE(853), [sym_preproc_line] = STATE(853), @@ -194252,47 +194274,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194317,8 +194339,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194335,84 +194357,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [854] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4445), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4175), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(854), [sym_preproc_endregion] = STATE(854), [sym_preproc_line] = STATE(854), @@ -194422,47 +194444,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194475,20 +194497,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194505,84 +194527,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [855] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4444), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4059), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(855), [sym_preproc_endregion] = STATE(855), [sym_preproc_line] = STATE(855), @@ -194592,47 +194614,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194645,20 +194667,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194675,84 +194697,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [856] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4366), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4608), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(856), [sym_preproc_endregion] = STATE(856), [sym_preproc_line] = STATE(856), @@ -194762,47 +194784,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194827,8 +194849,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194845,84 +194867,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [857] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2745), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4058), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(857), [sym_preproc_endregion] = STATE(857), [sym_preproc_line] = STATE(857), @@ -194932,47 +194954,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194985,20 +195007,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -195009,90 +195031,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [858] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3458), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4056), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(858), [sym_preproc_endregion] = STATE(858), [sym_preproc_line] = STATE(858), @@ -195102,47 +195124,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195155,20 +195177,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -195179,90 +195201,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [859] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4321), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4053), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(859), [sym_preproc_endregion] = STATE(859), [sym_preproc_line] = STATE(859), @@ -195272,47 +195294,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(859), [sym_preproc_define] = STATE(859), [sym_preproc_undef] = STATE(859), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195325,20 +195347,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -195355,84 +195377,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [860] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3312), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4048), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(860), [sym_preproc_endregion] = STATE(860), [sym_preproc_line] = STATE(860), @@ -195442,15 +195464,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -195460,29 +195482,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195507,7 +195529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -195525,84 +195547,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [861] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4294), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2995), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(861), [sym_preproc_endregion] = STATE(861), [sym_preproc_line] = STATE(861), @@ -195612,47 +195634,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195665,20 +195687,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -195689,90 +195711,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [862] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4336), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4047), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(862), [sym_preproc_endregion] = STATE(862), [sym_preproc_line] = STATE(862), @@ -195782,47 +195804,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195835,20 +195857,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -195865,84 +195887,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [863] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3272), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4043), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(863), [sym_preproc_endregion] = STATE(863), [sym_preproc_line] = STATE(863), @@ -195952,15 +195974,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -195970,29 +195992,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -196017,7 +196039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -196035,84 +196057,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [864] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4246), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4457), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(864), [sym_preproc_endregion] = STATE(864), [sym_preproc_line] = STATE(864), @@ -196122,47 +196144,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -196175,20 +196197,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -196199,90 +196221,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [865] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4263), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2992), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(865), [sym_preproc_endregion] = STATE(865), [sym_preproc_line] = STATE(865), @@ -196292,47 +196314,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -196345,20 +196367,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -196369,90 +196391,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [866] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4333), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4040), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(866), [sym_preproc_endregion] = STATE(866), [sym_preproc_line] = STATE(866), @@ -196462,47 +196484,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -196515,20 +196537,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -196545,84 +196567,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [867] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4324), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5019), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(867), [sym_preproc_endregion] = STATE(867), [sym_preproc_line] = STATE(867), @@ -196632,47 +196654,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -196697,8 +196719,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -196715,84 +196737,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [868] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4120), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3249), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(868), [sym_preproc_endregion] = STATE(868), [sym_preproc_line] = STATE(868), @@ -196802,47 +196824,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -196855,20 +196877,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -196879,90 +196901,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [869] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2764), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4039), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(869), [sym_preproc_endregion] = STATE(869), [sym_preproc_line] = STATE(869), @@ -196972,47 +196994,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -197025,20 +197047,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197049,90 +197071,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [870] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4596), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4452), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(870), [sym_preproc_endregion] = STATE(870), [sym_preproc_line] = STATE(870), @@ -197142,47 +197164,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -197207,8 +197229,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197225,84 +197247,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [871] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4417), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4038), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(871), [sym_preproc_endregion] = STATE(871), [sym_preproc_line] = STATE(871), @@ -197312,47 +197334,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -197365,20 +197387,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197395,84 +197417,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [872] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3282), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3246), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(872), [sym_preproc_endregion] = STATE(872), [sym_preproc_line] = STATE(872), @@ -197482,47 +197504,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -197535,114 +197557,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [873] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4175), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3243), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(873), [sym_preproc_endregion] = STATE(873), [sym_preproc_line] = STATE(873), @@ -197652,47 +197674,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -197705,20 +197727,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197729,90 +197751,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [874] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4103), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4034), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(874), [sym_preproc_endregion] = STATE(874), [sym_preproc_line] = STATE(874), @@ -197822,47 +197844,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -197875,20 +197897,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197899,90 +197921,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [875] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4566), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3242), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(875), [sym_preproc_endregion] = STATE(875), [sym_preproc_line] = STATE(875), @@ -197992,47 +198014,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -198045,20 +198067,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198069,90 +198091,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [876] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4345), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3301), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(876), [sym_preproc_endregion] = STATE(876), [sym_preproc_line] = STATE(876), @@ -198162,47 +198184,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -198216,19 +198238,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198239,90 +198261,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [877] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3111), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4522), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(877), [sym_preproc_endregion] = STATE(877), [sym_preproc_line] = STATE(877), @@ -198332,47 +198354,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -198397,7 +198419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -198415,84 +198437,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [878] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3279), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4727), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(878), [sym_preproc_endregion] = STATE(878), [sym_preproc_line] = STATE(878), @@ -198502,47 +198524,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -198555,20 +198577,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198585,84 +198607,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [879] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3280), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4444), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(879), [sym_preproc_endregion] = STATE(879), [sym_preproc_line] = STATE(879), @@ -198672,15 +198694,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -198690,29 +198712,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -198737,7 +198759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -198755,84 +198777,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [880] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2808), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4910), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(880), [sym_preproc_endregion] = STATE(880), [sym_preproc_line] = STATE(880), @@ -198842,47 +198864,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -198895,20 +198917,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198919,90 +198941,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [881] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3281), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4815), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(881), [sym_preproc_endregion] = STATE(881), [sym_preproc_line] = STATE(881), @@ -199012,47 +199034,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -199065,20 +199087,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -199095,84 +199117,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [882] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4309), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4435), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(882), [sym_preproc_endregion] = STATE(882), [sym_preproc_line] = STATE(882), @@ -199182,73 +199204,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -199259,90 +199281,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [883] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4313), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4558), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(883), [sym_preproc_endregion] = STATE(883), [sym_preproc_line] = STATE(883), @@ -199352,47 +199374,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -199405,20 +199427,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -199429,90 +199451,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [884] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2807), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4921), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(884), [sym_preproc_endregion] = STATE(884), [sym_preproc_line] = STATE(884), @@ -199522,47 +199544,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -199575,20 +199597,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -199599,90 +199621,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [885] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4328), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3202), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(885), [sym_preproc_endregion] = STATE(885), [sym_preproc_line] = STATE(885), @@ -199692,47 +199714,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(885), [sym_preproc_define] = STATE(885), [sym_preproc_undef] = STATE(885), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -199745,20 +199767,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -199769,90 +199791,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [886] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4329), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3223), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(886), [sym_preproc_endregion] = STATE(886), [sym_preproc_line] = STATE(886), @@ -199862,47 +199884,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(886), [sym_preproc_define] = STATE(886), [sym_preproc_undef] = STATE(886), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -199915,20 +199937,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -199939,90 +199961,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [887] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2806), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5051), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(887), [sym_preproc_endregion] = STATE(887), [sym_preproc_line] = STATE(887), @@ -200032,47 +200054,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(887), [sym_preproc_define] = STATE(887), [sym_preproc_undef] = STATE(887), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -200085,20 +200107,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200109,90 +200131,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [888] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2805), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4736), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(888), [sym_preproc_endregion] = STATE(888), [sym_preproc_line] = STATE(888), @@ -200202,47 +200224,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(888), [sym_preproc_define] = STATE(888), [sym_preproc_undef] = STATE(888), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -200255,20 +200277,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200279,90 +200301,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [889] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2804), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3224), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(889), [sym_preproc_endregion] = STATE(889), [sym_preproc_line] = STATE(889), @@ -200372,47 +200394,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(889), [sym_preproc_define] = STATE(889), [sym_preproc_undef] = STATE(889), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -200425,20 +200447,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200449,90 +200471,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [890] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4330), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4737), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(890), [sym_preproc_endregion] = STATE(890), [sym_preproc_line] = STATE(890), @@ -200542,47 +200564,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(890), [sym_preproc_define] = STATE(890), [sym_preproc_undef] = STATE(890), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -200607,8 +200629,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200625,84 +200647,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [891] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3283), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4738), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(891), [sym_preproc_endregion] = STATE(891), [sym_preproc_line] = STATE(891), @@ -200712,47 +200734,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(891), [sym_preproc_define] = STATE(891), [sym_preproc_undef] = STATE(891), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -200765,20 +200787,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200795,84 +200817,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [892] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2803), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4739), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(892), [sym_preproc_endregion] = STATE(892), [sym_preproc_line] = STATE(892), @@ -200882,47 +200904,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(892), [sym_preproc_define] = STATE(892), [sym_preproc_undef] = STATE(892), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -200935,20 +200957,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200959,90 +200981,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [893] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4464), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4740), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(893), [sym_preproc_endregion] = STATE(893), [sym_preproc_line] = STATE(893), @@ -201052,47 +201074,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(893), [sym_preproc_define] = STATE(893), [sym_preproc_undef] = STATE(893), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201117,8 +201139,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201135,84 +201157,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [894] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4332), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4741), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(894), [sym_preproc_endregion] = STATE(894), [sym_preproc_line] = STATE(894), @@ -201222,47 +201244,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(894), [sym_preproc_define] = STATE(894), [sym_preproc_undef] = STATE(894), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201287,8 +201309,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201305,84 +201327,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [895] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3285), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5055), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(895), [sym_preproc_endregion] = STATE(895), [sym_preproc_line] = STATE(895), @@ -201392,47 +201414,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(895), [sym_preproc_define] = STATE(895), [sym_preproc_undef] = STATE(895), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201445,20 +201467,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201475,84 +201497,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [896] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4451), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3225), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(896), [sym_preproc_endregion] = STATE(896), [sym_preproc_line] = STATE(896), @@ -201562,47 +201584,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(896), [sym_preproc_define] = STATE(896), [sym_preproc_undef] = STATE(896), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201615,20 +201637,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201639,90 +201661,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [897] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4353), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4743), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(897), [sym_preproc_endregion] = STATE(897), [sym_preproc_line] = STATE(897), @@ -201732,47 +201754,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(897), [sym_preproc_define] = STATE(897), [sym_preproc_undef] = STATE(897), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201797,8 +201819,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201815,84 +201837,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [898] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4349), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4922), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(898), [sym_preproc_endregion] = STATE(898), [sym_preproc_line] = STATE(898), @@ -201902,8 +201924,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(898), [sym_preproc_define] = STATE(898), [sym_preproc_undef] = STATE(898), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -201915,34 +201937,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201967,8 +201989,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201985,84 +202007,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [899] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2802), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3275), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(899), [sym_preproc_endregion] = STATE(899), [sym_preproc_line] = STATE(899), @@ -202072,47 +202094,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202125,20 +202147,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -202149,90 +202171,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [900] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3289), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3492), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(900), [sym_preproc_endregion] = STATE(900), [sym_preproc_line] = STATE(900), @@ -202242,47 +202264,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202295,20 +202317,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -202319,90 +202341,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [901] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3294), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4744), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(901), [sym_preproc_endregion] = STATE(901), [sym_preproc_line] = STATE(901), @@ -202412,47 +202434,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202465,20 +202487,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -202495,84 +202517,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [902] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4356), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4746), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(902), [sym_preproc_endregion] = STATE(902), [sym_preproc_line] = STATE(902), @@ -202582,47 +202604,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202647,8 +202669,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -202665,84 +202687,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [903] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3252), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4747), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(903), [sym_preproc_endregion] = STATE(903), [sym_preproc_line] = STATE(903), @@ -202752,47 +202774,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202806,19 +202828,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -202829,90 +202851,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [904] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3295), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4748), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(904), [sym_preproc_endregion] = STATE(904), [sym_preproc_line] = STATE(904), @@ -202922,47 +202944,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202975,20 +202997,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -203005,84 +203027,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [905] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3296), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3272), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(905), [sym_preproc_endregion] = STATE(905), [sym_preproc_line] = STATE(905), @@ -203092,47 +203114,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(905), [sym_preproc_define] = STATE(905), [sym_preproc_undef] = STATE(905), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203145,20 +203167,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -203169,90 +203191,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [906] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3299), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3252), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(906), [sym_preproc_endregion] = STATE(906), [sym_preproc_line] = STATE(906), @@ -203262,47 +203284,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203315,20 +203337,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -203339,90 +203361,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [907] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3302), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3337), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(907), [sym_preproc_endregion] = STATE(907), [sym_preproc_line] = STATE(907), @@ -203432,47 +203454,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203485,20 +203507,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -203509,90 +203531,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [908] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4200), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5042), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(908), [sym_preproc_endregion] = STATE(908), [sym_preproc_line] = STATE(908), @@ -203602,47 +203624,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203655,20 +203677,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -203679,90 +203701,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [909] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4142), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4938), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(909), [sym_preproc_endregion] = STATE(909), [sym_preproc_line] = STATE(909), @@ -203772,47 +203794,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203825,20 +203847,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -203849,90 +203871,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [910] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2801), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3330), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(910), [sym_preproc_endregion] = STATE(910), [sym_preproc_line] = STATE(910), @@ -203942,47 +203964,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203995,20 +204017,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204019,90 +204041,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [911] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4147), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3789), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(911), [sym_preproc_endregion] = STATE(911), [sym_preproc_line] = STATE(911), @@ -204112,47 +204134,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204165,20 +204187,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204189,90 +204211,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [912] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4420), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(912), [sym_preproc_endregion] = STATE(912), [sym_preproc_line] = STATE(912), @@ -204282,47 +204304,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204347,8 +204369,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204365,84 +204387,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [913] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2800), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3647), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(913), [sym_preproc_endregion] = STATE(913), [sym_preproc_line] = STATE(913), @@ -204452,73 +204474,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204529,90 +204551,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [914] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2799), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4173), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(914), [sym_preproc_endregion] = STATE(914), [sym_preproc_line] = STATE(914), @@ -204622,73 +204644,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204699,90 +204721,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [915] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4594), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4824), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(915), [sym_preproc_endregion] = STATE(915), [sym_preproc_line] = STATE(915), @@ -204792,47 +204814,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204857,8 +204879,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204875,84 +204897,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [916] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4460), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3509), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(916), [sym_preproc_endregion] = STATE(916), [sym_preproc_line] = STATE(916), @@ -204962,47 +204984,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205015,20 +205037,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205045,84 +205067,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [917] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2789), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3558), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(917), [sym_preproc_endregion] = STATE(917), [sym_preproc_line] = STATE(917), @@ -205132,47 +205154,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205185,20 +205207,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205209,90 +205231,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [918] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4151), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4096), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(918), [sym_preproc_endregion] = STATE(918), [sym_preproc_line] = STATE(918), @@ -205302,47 +205324,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205355,20 +205377,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205379,90 +205401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [919] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4399), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4098), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(919), [sym_preproc_endregion] = STATE(919), [sym_preproc_line] = STATE(919), @@ -205472,47 +205494,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205525,20 +205547,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205555,84 +205577,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [920] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4154), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3230), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(920), [sym_preproc_endregion] = STATE(920), [sym_preproc_line] = STATE(920), @@ -205642,47 +205664,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205695,20 +205717,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(1491), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1503), [anon_sym_SQUOTE] = ACTIONS(1505), [sym_integer_literal] = ACTIONS(1503), [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205725,84 +205747,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [921] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3343), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4301), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(921), [sym_preproc_endregion] = STATE(921), [sym_preproc_line] = STATE(921), @@ -205812,73 +205834,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205889,90 +205911,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [922] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4320), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4106), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(922), [sym_preproc_endregion] = STATE(922), [sym_preproc_line] = STATE(922), @@ -205982,47 +206004,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206035,20 +206057,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206065,84 +206087,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [923] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2684), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4101), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(923), [sym_preproc_endregion] = STATE(923), [sym_preproc_line] = STATE(923), @@ -206152,47 +206174,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206205,20 +206227,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206229,90 +206251,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [924] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4565), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4300), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(924), [sym_preproc_endregion] = STATE(924), [sym_preproc_line] = STATE(924), @@ -206322,73 +206344,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206399,90 +206421,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [925] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3345), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5131), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2916), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(925), [sym_preproc_endregion] = STATE(925), [sym_preproc_line] = STATE(925), @@ -206492,47 +206514,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206545,20 +206567,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206575,84 +206597,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [926] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4508), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4169), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(926), [sym_preproc_endregion] = STATE(926), [sym_preproc_line] = STATE(926), @@ -206662,47 +206684,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206715,20 +206737,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206745,84 +206767,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [927] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3981), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4107), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(927), [sym_preproc_endregion] = STATE(927), [sym_preproc_line] = STATE(927), @@ -206832,47 +206854,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206885,20 +206907,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206915,84 +206937,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [928] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3413), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4113), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(928), [sym_preproc_endregion] = STATE(928), [sym_preproc_line] = STATE(928), @@ -207002,47 +207024,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207055,20 +207077,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207079,90 +207101,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [929] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4443), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4115), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(929), [sym_preproc_endregion] = STATE(929), [sym_preproc_line] = STATE(929), @@ -207172,47 +207194,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207225,20 +207247,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207255,84 +207277,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [930] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3362), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4116), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(930), [sym_preproc_endregion] = STATE(930), [sym_preproc_line] = STATE(930), @@ -207342,47 +207364,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207395,20 +207417,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207419,90 +207441,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [931] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4304), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4119), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(931), [sym_preproc_endregion] = STATE(931), [sym_preproc_line] = STATE(931), @@ -207512,47 +207534,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207565,20 +207587,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207595,84 +207617,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [932] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4455), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4297), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(932), [sym_preproc_endregion] = STATE(932), [sym_preproc_line] = STATE(932), @@ -207682,73 +207704,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207759,90 +207781,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [933] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3664), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3283), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(933), [sym_preproc_endregion] = STATE(933), [sym_preproc_line] = STATE(933), @@ -207852,47 +207874,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207905,20 +207927,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207929,90 +207951,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [934] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4306), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4132), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(934), [sym_preproc_endregion] = STATE(934), [sym_preproc_line] = STATE(934), @@ -208022,47 +208044,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208075,20 +208097,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -208105,84 +208127,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [935] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3683), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4140), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(935), [sym_preproc_endregion] = STATE(935), [sym_preproc_line] = STATE(935), @@ -208192,47 +208214,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208245,20 +208267,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -208269,90 +208291,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [936] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3666), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3686), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(936), [sym_preproc_endregion] = STATE(936), [sym_preproc_line] = STATE(936), @@ -208362,73 +208384,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -208439,90 +208461,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [937] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2499), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4154), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(937), [sym_preproc_endregion] = STATE(937), [sym_preproc_line] = STATE(937), @@ -208532,47 +208554,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208585,20 +208607,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -208615,84 +208637,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [938] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3667), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4159), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(938), [sym_preproc_endregion] = STATE(938), [sym_preproc_line] = STATE(938), @@ -208702,47 +208724,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208755,20 +208777,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -208779,90 +208801,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [939] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3811), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4160), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(939), [sym_preproc_endregion] = STATE(939), [sym_preproc_line] = STATE(939), @@ -208872,47 +208894,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208925,20 +208947,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -208955,84 +208977,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [940] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3716), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4161), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(940), [sym_preproc_endregion] = STATE(940), [sym_preproc_line] = STATE(940), @@ -209042,47 +209064,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209095,20 +209117,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209125,84 +209147,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [941] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4367), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5116), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2915), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(941), [sym_preproc_endregion] = STATE(941), [sym_preproc_line] = STATE(941), @@ -209212,47 +209234,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209277,8 +209299,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209295,84 +209317,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [942] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3669), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4664), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(942), [sym_preproc_endregion] = STATE(942), [sym_preproc_line] = STATE(942), @@ -209382,47 +209404,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209435,20 +209457,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209459,90 +209481,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [943] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3680), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4844), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(943), [sym_preproc_endregion] = STATE(943), [sym_preproc_line] = STATE(943), @@ -209552,47 +209574,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209605,20 +209627,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209629,90 +209651,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [944] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4370), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4426), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(944), [sym_preproc_endregion] = STATE(944), [sym_preproc_line] = STATE(944), @@ -209722,47 +209744,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209775,20 +209797,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209805,84 +209827,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [945] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3682), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3685), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(945), [sym_preproc_endregion] = STATE(945), [sym_preproc_line] = STATE(945), @@ -209892,73 +209914,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209969,90 +209991,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [946] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2544), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4296), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(946), [sym_preproc_endregion] = STATE(946), [sym_preproc_line] = STATE(946), @@ -210062,73 +210084,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210139,90 +210161,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [947] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3730), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4805), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(947), [sym_preproc_endregion] = STATE(947), [sym_preproc_line] = STATE(947), @@ -210232,47 +210254,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(947), [sym_preproc_define] = STATE(947), [sym_preproc_undef] = STATE(947), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210285,20 +210307,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210315,84 +210337,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [948] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3906), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3022), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(948), [sym_preproc_endregion] = STATE(948), [sym_preproc_line] = STATE(948), @@ -210402,47 +210424,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(948), [sym_preproc_define] = STATE(948), [sym_preproc_undef] = STATE(948), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210455,20 +210477,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210479,90 +210501,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [949] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3686), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4668), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(949), [sym_preproc_endregion] = STATE(949), [sym_preproc_line] = STATE(949), @@ -210572,47 +210594,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(949), [sym_preproc_define] = STATE(949), [sym_preproc_undef] = STATE(949), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210625,20 +210647,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210649,90 +210671,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [950] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4009), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4903), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(950), [sym_preproc_endregion] = STATE(950), [sym_preproc_line] = STATE(950), @@ -210742,47 +210764,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(950), [sym_preproc_define] = STATE(950), [sym_preproc_undef] = STATE(950), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210795,20 +210817,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210825,84 +210847,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [951] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3684), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4848), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(951), [sym_preproc_endregion] = STATE(951), [sym_preproc_line] = STATE(951), @@ -210912,47 +210934,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210965,20 +210987,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210989,90 +211011,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [952] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3125), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4258), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(952), [sym_preproc_endregion] = STATE(952), [sym_preproc_line] = STATE(952), @@ -211082,73 +211104,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211159,90 +211181,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [953] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3685), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4850), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(953), [sym_preproc_endregion] = STATE(953), [sym_preproc_line] = STATE(953), @@ -211252,47 +211274,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(953), [sym_preproc_define] = STATE(953), [sym_preproc_undef] = STATE(953), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211305,20 +211327,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211329,90 +211351,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [954] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3689), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4851), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(954), [sym_preproc_endregion] = STATE(954), [sym_preproc_line] = STATE(954), @@ -211422,47 +211444,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211475,20 +211497,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211499,90 +211521,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [955] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3384), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4853), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(955), [sym_preproc_endregion] = STATE(955), [sym_preproc_line] = STATE(955), @@ -211592,47 +211614,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211645,20 +211667,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211669,90 +211691,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [956] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3564), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4854), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(956), [sym_preproc_endregion] = STATE(956), [sym_preproc_line] = STATE(956), @@ -211762,47 +211784,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211815,20 +211837,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211839,90 +211861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [957] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4049), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4855), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(957), [sym_preproc_endregion] = STATE(957), [sym_preproc_line] = STATE(957), @@ -211932,47 +211954,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(957), [sym_preproc_define] = STATE(957), [sym_preproc_undef] = STATE(957), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211985,20 +212007,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212015,84 +212037,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [958] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3091), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4856), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(958), [sym_preproc_endregion] = STATE(958), [sym_preproc_line] = STATE(958), @@ -212102,47 +212124,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -212155,114 +212177,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), [aux_sym_preproc_error_token1] = ACTIONS(13), [aux_sym_preproc_warning_token1] = ACTIONS(15), [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [959] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3381), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4257), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(959), [sym_preproc_endregion] = STATE(959), [sym_preproc_line] = STATE(959), @@ -212272,73 +212294,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212349,90 +212371,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [960] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3806), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4858), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(960), [sym_preproc_endregion] = STATE(960), [sym_preproc_line] = STATE(960), @@ -212442,47 +212464,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -212507,8 +212529,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212525,84 +212547,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [961] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3187), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4859), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(961), [sym_preproc_endregion] = STATE(961), [sym_preproc_line] = STATE(961), @@ -212612,47 +212634,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(961), [sym_preproc_define] = STATE(961), [sym_preproc_undef] = STATE(961), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -212666,19 +212688,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212689,90 +212711,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [962] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4580), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4494), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(962), [sym_preproc_endregion] = STATE(962), [sym_preproc_line] = STATE(962), @@ -212782,47 +212804,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -212847,8 +212869,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212865,84 +212887,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [963] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3469), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4860), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(963), [sym_preproc_endregion] = STATE(963), [sym_preproc_line] = STATE(963), @@ -212952,47 +212974,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -213005,20 +213027,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213029,90 +213051,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [964] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2544), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4861), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(964), [sym_preproc_endregion] = STATE(964), [sym_preproc_line] = STATE(964), @@ -213122,47 +213144,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -213187,8 +213209,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213205,84 +213227,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [965] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2867), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4255), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(965), [sym_preproc_endregion] = STATE(965), [sym_preproc_line] = STATE(965), @@ -213292,73 +213314,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213369,90 +213391,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [966] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3108), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4254), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(966), [sym_preproc_endregion] = STATE(966), [sym_preproc_line] = STATE(966), @@ -213462,73 +213484,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213539,90 +213561,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [967] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3967), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4502), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(967), [sym_preproc_endregion] = STATE(967), [sym_preproc_line] = STATE(967), @@ -213632,47 +213654,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -213685,20 +213707,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213715,84 +213737,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [968] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4136), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4253), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(968), [sym_preproc_endregion] = STATE(968), [sym_preproc_line] = STATE(968), @@ -213802,73 +213824,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213879,90 +213901,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [969] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3593), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3869), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(969), [sym_preproc_endregion] = STATE(969), [sym_preproc_line] = STATE(969), @@ -213972,47 +213994,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -214037,7 +214059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -214055,84 +214077,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [970] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4275), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5078), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(970), [sym_preproc_endregion] = STATE(970), [sym_preproc_line] = STATE(970), @@ -214142,47 +214164,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -214195,20 +214217,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214219,90 +214241,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [971] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4570), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4942), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(971), [sym_preproc_endregion] = STATE(971), [sym_preproc_line] = STATE(971), @@ -214312,47 +214334,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -214377,8 +214399,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214395,84 +214417,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [972] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3474), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3683), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(972), [sym_preproc_endregion] = STATE(972), [sym_preproc_line] = STATE(972), @@ -214482,73 +214504,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214559,90 +214581,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [973] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4205), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4321), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(973), [sym_preproc_endregion] = STATE(973), [sym_preproc_line] = STATE(973), @@ -214652,47 +214674,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -214717,8 +214739,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214735,84 +214757,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [974] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4421), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3488), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(974), [sym_preproc_endregion] = STATE(974), [sym_preproc_line] = STATE(974), @@ -214822,47 +214844,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(974), [sym_preproc_define] = STATE(974), [sym_preproc_undef] = STATE(974), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -214875,20 +214897,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214905,84 +214927,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [975] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3479), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3026), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(975), [sym_preproc_endregion] = STATE(975), [sym_preproc_line] = STATE(975), @@ -214992,47 +215014,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(975), [sym_preproc_define] = STATE(975), [sym_preproc_undef] = STATE(975), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215045,20 +215067,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215069,90 +215091,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [976] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4075), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4694), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(976), [sym_preproc_endregion] = STATE(976), [sym_preproc_line] = STATE(976), @@ -215162,47 +215184,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215215,20 +215237,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215239,90 +215261,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [977] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4433), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3027), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(977), [sym_preproc_endregion] = STATE(977), [sym_preproc_line] = STATE(977), @@ -215332,47 +215354,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215385,20 +215407,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215409,90 +215431,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [978] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3810), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3796), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(978), [sym_preproc_endregion] = STATE(978), [sym_preproc_line] = STATE(978), @@ -215502,47 +215524,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215555,20 +215577,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215579,90 +215601,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [979] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3884), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3843), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(979), [sym_preproc_endregion] = STATE(979), [sym_preproc_line] = STATE(979), @@ -215672,47 +215694,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(979), [sym_preproc_define] = STATE(979), [sym_preproc_undef] = STATE(979), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215725,20 +215747,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215749,90 +215771,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [980] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4534), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3679), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(980), [sym_preproc_endregion] = STATE(980), [sym_preproc_line] = STATE(980), @@ -215842,73 +215864,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215919,90 +215941,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [981] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4544), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4618), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(981), [sym_preproc_endregion] = STATE(981), [sym_preproc_line] = STATE(981), @@ -216012,47 +216034,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(981), [sym_preproc_define] = STATE(981), [sym_preproc_undef] = STATE(981), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216065,20 +216087,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216089,90 +216111,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [982] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4545), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3798), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(982), [sym_preproc_endregion] = STATE(982), [sym_preproc_line] = STATE(982), @@ -216182,47 +216204,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(982), [sym_preproc_define] = STATE(982), [sym_preproc_undef] = STATE(982), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216235,20 +216257,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216259,90 +216281,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [983] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4568), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4251), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(983), [sym_preproc_endregion] = STATE(983), [sym_preproc_line] = STATE(983), @@ -216352,73 +216374,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(983), [sym_preproc_define] = STATE(983), [sym_preproc_undef] = STATE(983), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216429,90 +216451,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [984] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4588), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3698), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(984), [sym_preproc_endregion] = STATE(984), [sym_preproc_line] = STATE(984), @@ -216522,47 +216544,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(984), [sym_preproc_define] = STATE(984), [sym_preproc_undef] = STATE(984), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216575,20 +216597,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216599,90 +216621,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [985] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4585), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3799), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(985), [sym_preproc_endregion] = STATE(985), [sym_preproc_line] = STATE(985), @@ -216692,47 +216714,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216745,20 +216767,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216769,90 +216791,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [986] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4576), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3801), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(986), [sym_preproc_endregion] = STATE(986), [sym_preproc_line] = STATE(986), @@ -216862,47 +216884,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216915,20 +216937,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216939,90 +216961,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [987] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2870), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3802), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(987), [sym_preproc_endregion] = STATE(987), [sym_preproc_line] = STATE(987), @@ -217032,47 +217054,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(987), [sym_preproc_define] = STATE(987), [sym_preproc_undef] = STATE(987), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -217085,20 +217107,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217109,90 +217131,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [988] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2872), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3803), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(988), [sym_preproc_endregion] = STATE(988), [sym_preproc_line] = STATE(988), @@ -217202,47 +217224,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(988), [sym_preproc_define] = STATE(988), [sym_preproc_undef] = STATE(988), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -217255,20 +217277,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217279,90 +217301,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [989] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3961), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4971), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(989), [sym_preproc_endregion] = STATE(989), [sym_preproc_line] = STATE(989), @@ -217372,47 +217394,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -217425,20 +217447,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217455,84 +217477,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [990] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2873), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3804), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(990), [sym_preproc_endregion] = STATE(990), [sym_preproc_line] = STATE(990), @@ -217542,47 +217564,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -217595,20 +217617,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217619,90 +217641,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [991] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2875), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3697), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(991), [sym_preproc_endregion] = STATE(991), [sym_preproc_line] = STATE(991), @@ -217712,47 +217734,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -217765,20 +217787,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217789,90 +217811,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [992] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3015), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3805), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(992), [sym_preproc_endregion] = STATE(992), [sym_preproc_line] = STATE(992), @@ -217882,47 +217904,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -217935,20 +217957,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217959,90 +217981,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [993] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4575), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3696), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(993), [sym_preproc_endregion] = STATE(993), [sym_preproc_line] = STATE(993), @@ -218052,47 +218074,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -218105,20 +218127,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218129,90 +218151,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [994] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3014), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3695), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(994), [sym_preproc_endregion] = STATE(994), [sym_preproc_line] = STATE(994), @@ -218222,47 +218244,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -218275,20 +218297,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218299,90 +218321,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [995] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3958), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3806), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(995), [sym_preproc_endregion] = STATE(995), [sym_preproc_line] = STATE(995), @@ -218392,47 +218414,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -218445,20 +218467,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218469,90 +218491,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [996] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3007), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4302), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(996), [sym_preproc_endregion] = STATE(996), [sym_preproc_line] = STATE(996), @@ -218562,47 +218584,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -218615,20 +218637,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218639,90 +218661,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [997] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3006), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3841), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(997), [sym_preproc_endregion] = STATE(997), [sym_preproc_line] = STATE(997), @@ -218732,47 +218754,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -218785,20 +218807,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218809,90 +218831,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [998] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4573), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3807), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(998), [sym_preproc_endregion] = STATE(998), [sym_preproc_line] = STATE(998), @@ -218902,47 +218924,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -218955,20 +218977,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218979,90 +219001,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [999] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4572), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4365), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(999), [sym_preproc_endregion] = STATE(999), [sym_preproc_line] = STATE(999), @@ -219072,47 +219094,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -219125,20 +219147,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219155,84 +219177,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1000] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3003), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3639), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1000), [sym_preproc_endregion] = STATE(1000), [sym_preproc_line] = STATE(1000), @@ -219242,73 +219264,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219319,90 +219341,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1001] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4569), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4152), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1001), [sym_preproc_endregion] = STATE(1001), [sym_preproc_line] = STATE(1001), @@ -219412,73 +219434,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219489,90 +219511,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1002] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4466), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4994), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1002), [sym_preproc_endregion] = STATE(1002), [sym_preproc_line] = STATE(1002), @@ -219582,47 +219604,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -219647,8 +219669,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219665,84 +219687,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1003] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4288), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3605), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1003), [sym_preproc_endregion] = STATE(1003), [sym_preproc_line] = STATE(1003), @@ -219752,73 +219774,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219829,90 +219851,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1004] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3002), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4205), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1004), [sym_preproc_endregion] = STATE(1004), [sym_preproc_line] = STATE(1004), @@ -219922,47 +219944,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_checked] = ACTIONS(1533), [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(2125), [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -219975,20 +219997,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219999,90 +220021,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1005] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4042), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3606), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1005), [sym_preproc_endregion] = STATE(1005), [sym_preproc_line] = STATE(1005), @@ -220092,73 +220114,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220169,90 +220191,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1006] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2878), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3642), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1006), [sym_preproc_endregion] = STATE(1006), [sym_preproc_line] = STATE(1006), @@ -220262,73 +220284,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220339,90 +220361,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1007] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3952), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4885), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1007), [sym_preproc_endregion] = STATE(1007), [sym_preproc_line] = STATE(1007), @@ -220432,47 +220454,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -220485,20 +220507,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220515,84 +220537,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1008] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4542), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3020), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1008), [sym_preproc_endregion] = STATE(1008), [sym_preproc_line] = STATE(1008), @@ -220602,47 +220624,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -220655,20 +220677,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220679,90 +220701,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1009] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4552), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4207), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1009), [sym_preproc_endregion] = STATE(1009), [sym_preproc_line] = STATE(1009), @@ -220772,47 +220794,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -220825,20 +220847,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220855,84 +220877,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1010] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3925), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3607), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1010), [sym_preproc_endregion] = STATE(1010), [sym_preproc_line] = STATE(1010), @@ -220942,51 +220964,221 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), + }, + [1011] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4212), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1011), + [sym_preproc_endregion] = STATE(1011), + [sym_preproc_line] = STATE(1011), + [sym_preproc_pragma] = STATE(1011), + [sym_preproc_nullable] = STATE(1011), + [sym_preproc_error] = STATE(1011), + [sym_preproc_warning] = STATE(1011), + [sym_preproc_define] = STATE(1011), + [sym_preproc_undef] = STATE(1011), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), @@ -221007,7 +221199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -221024,255 +221216,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [1011] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3001), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1011), - [sym_preproc_endregion] = STATE(1011), - [sym_preproc_line] = STATE(1011), - [sym_preproc_pragma] = STATE(1011), - [sym_preproc_nullable] = STATE(1011), - [sym_preproc_error] = STATE(1011), - [sym_preproc_warning] = STATE(1011), - [sym_preproc_define] = STATE(1011), - [sym_preproc_undef] = STATE(1011), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), - }, [1012] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3000), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4209), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1012), [sym_preproc_endregion] = STATE(1012), [sym_preproc_line] = STATE(1012), @@ -221282,47 +221304,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_checked] = ACTIONS(1533), [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(2125), [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221335,20 +221357,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -221359,90 +221381,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1013] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4211), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3643), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1013), [sym_preproc_endregion] = STATE(1013), [sym_preproc_line] = STATE(1013), @@ -221452,73 +221474,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -221529,90 +221551,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1014] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3951), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5054), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1014), [sym_preproc_endregion] = STATE(1014), [sym_preproc_line] = STATE(1014), @@ -221622,47 +221644,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221675,20 +221697,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -221705,84 +221727,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1015] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2694), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3809), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1015), [sym_preproc_endregion] = STATE(1015), [sym_preproc_line] = STATE(1015), @@ -221792,47 +221814,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1015), [sym_preproc_define] = STATE(1015), [sym_preproc_undef] = STATE(1015), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221845,20 +221867,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -221869,90 +221891,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1016] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3966), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5053), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1016), [sym_preproc_endregion] = STATE(1016), [sym_preproc_line] = STATE(1016), @@ -221962,47 +221984,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222027,8 +222049,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -222045,84 +222067,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1017] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3971), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3491), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1017), [sym_preproc_endregion] = STATE(1017), [sym_preproc_line] = STATE(1017), @@ -222132,47 +222154,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222186,19 +222208,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -222209,90 +222231,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1018] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3969), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5141), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1018), [sym_preproc_endregion] = STATE(1018), [sym_preproc_line] = STATE(1018), @@ -222302,47 +222324,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222367,8 +222389,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -222385,84 +222407,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1019] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2996), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5131), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2916), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1019), [sym_preproc_endregion] = STATE(1019), [sym_preproc_line] = STATE(1019), @@ -222472,47 +222494,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222525,20 +222547,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -222549,90 +222571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1020] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4581), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4148), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1020), [sym_preproc_endregion] = STATE(1020), [sym_preproc_line] = STATE(1020), @@ -222642,47 +222664,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222695,20 +222717,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -222725,84 +222747,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1021] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2866), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3258), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1021), [sym_preproc_endregion] = STATE(1021), [sym_preproc_line] = STATE(1021), @@ -222812,47 +222834,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222877,7 +222899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -222895,84 +222917,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1022] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4578), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4213), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1022), [sym_preproc_endregion] = STATE(1022), [sym_preproc_line] = STATE(1022), @@ -222982,47 +223004,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223035,20 +223057,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223065,84 +223087,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1023] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3221), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4216), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1023), [sym_preproc_endregion] = STATE(1023), [sym_preproc_line] = STATE(1023), @@ -223152,47 +223174,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223205,20 +223227,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223229,90 +223251,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1024] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2995), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4217), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1024), [sym_preproc_endregion] = STATE(1024), [sym_preproc_line] = STATE(1024), @@ -223322,47 +223344,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_checked] = ACTIONS(1533), [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(2125), [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223375,20 +223397,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223399,90 +223421,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1025] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2966), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4218), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1025), [sym_preproc_endregion] = STATE(1025), [sym_preproc_line] = STATE(1025), @@ -223492,47 +223514,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_checked] = ACTIONS(1533), [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), + [anon_sym_default] = ACTIONS(105), [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(2125), [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223545,20 +223567,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223569,90 +223591,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1026] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2969), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3540), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1026), [sym_preproc_endregion] = STATE(1026), [sym_preproc_line] = STATE(1026), @@ -223662,47 +223684,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223715,20 +223737,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223739,90 +223761,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1027] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3107), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4238), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1027), [sym_preproc_endregion] = STATE(1027), [sym_preproc_line] = STATE(1027), @@ -223832,47 +223854,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223885,20 +223907,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223909,90 +223931,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1028] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3946), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2989), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1028), [sym_preproc_endregion] = STATE(1028), [sym_preproc_line] = STATE(1028), @@ -224002,47 +224024,217 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), + }, + [1029] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4239), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1029), + [sym_preproc_endregion] = STATE(1029), + [sym_preproc_line] = STATE(1029), + [sym_preproc_pragma] = STATE(1029), + [sym_preproc_nullable] = STATE(1029), + [sym_preproc_error] = STATE(1029), + [sym_preproc_warning] = STATE(1029), + [sym_preproc_define] = STATE(1029), + [sym_preproc_undef] = STATE(1029), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224067,7 +224259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -224084,135 +224276,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [1029] = { - [sym_attribute_list] = STATE(5927), + [1030] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3968), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1029), - [sym_preproc_endregion] = STATE(1029), - [sym_preproc_line] = STATE(1029), - [sym_preproc_pragma] = STATE(1029), - [sym_preproc_nullable] = STATE(1029), - [sym_preproc_error] = STATE(1029), - [sym_preproc_warning] = STATE(1029), - [sym_preproc_define] = STATE(1029), - [sym_preproc_undef] = STATE(1029), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4241), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1030), + [sym_preproc_endregion] = STATE(1030), + [sym_preproc_line] = STATE(1030), + [sym_preproc_pragma] = STATE(1030), + [sym_preproc_nullable] = STATE(1030), + [sym_preproc_error] = STATE(1030), + [sym_preproc_warning] = STATE(1030), + [sym_preproc_define] = STATE(1030), + [sym_preproc_undef] = STATE(1030), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224225,20 +224417,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -224254,135 +224446,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [1030] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3290), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1030), - [sym_preproc_endregion] = STATE(1030), - [sym_preproc_line] = STATE(1030), - [sym_preproc_pragma] = STATE(1030), - [sym_preproc_nullable] = STATE(1030), - [sym_preproc_error] = STATE(1030), - [sym_preproc_warning] = STATE(1030), - [sym_preproc_define] = STATE(1030), - [sym_preproc_undef] = STATE(1030), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [1031] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3644), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1031), + [sym_preproc_endregion] = STATE(1031), + [sym_preproc_line] = STATE(1031), + [sym_preproc_pragma] = STATE(1031), + [sym_preproc_nullable] = STATE(1031), + [sym_preproc_error] = STATE(1031), + [sym_preproc_warning] = STATE(1031), + [sym_preproc_define] = STATE(1031), + [sym_preproc_undef] = STATE(1031), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), + [anon_sym_new] = ACTIONS(1683), [anon_sym_where] = ACTIONS(1603), [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -224424,255 +224616,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1675), [sym_raw_string_start] = ACTIONS(1677), }, - [1031] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3965), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1031), - [sym_preproc_endregion] = STATE(1031), - [sym_preproc_line] = STATE(1031), - [sym_preproc_pragma] = STATE(1031), - [sym_preproc_nullable] = STATE(1031), - [sym_preproc_error] = STATE(1031), - [sym_preproc_warning] = STATE(1031), - [sym_preproc_define] = STATE(1031), - [sym_preproc_undef] = STATE(1031), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), - }, [1032] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3839), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4244), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1032), [sym_preproc_endregion] = STATE(1032), [sym_preproc_line] = STATE(1032), @@ -224682,47 +224704,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224747,7 +224769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -224765,84 +224787,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1033] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3964), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4247), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1033), [sym_preproc_endregion] = STATE(1033), [sym_preproc_line] = STATE(1033), @@ -224852,47 +224874,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224905,20 +224927,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -224935,84 +224957,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1034] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3842), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4252), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1034), [sym_preproc_endregion] = STATE(1034), [sym_preproc_line] = STATE(1034), @@ -225022,47 +225044,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225087,7 +225109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -225105,84 +225127,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1035] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3962), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4263), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1035), [sym_preproc_endregion] = STATE(1035), [sym_preproc_line] = STATE(1035), @@ -225192,47 +225214,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1035), [sym_preproc_define] = STATE(1035), [sym_preproc_undef] = STATE(1035), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225245,20 +225267,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -225275,84 +225297,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1036] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3954), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4388), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1036), [sym_preproc_endregion] = STATE(1036), [sym_preproc_line] = STATE(1036), @@ -225362,47 +225384,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225415,20 +225437,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -225445,84 +225467,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1037] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3765), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3499), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1037), [sym_preproc_endregion] = STATE(1037), [sym_preproc_line] = STATE(1037), @@ -225532,15 +225554,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1037), [sym_preproc_define] = STATE(1037), [sym_preproc_undef] = STATE(1037), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), @@ -225550,29 +225572,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225597,8 +225619,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -225615,84 +225637,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1038] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3948), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3645), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1038), [sym_preproc_endregion] = STATE(1038), [sym_preproc_line] = STATE(1038), @@ -225702,73 +225724,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -225779,90 +225801,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1039] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3931), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3646), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1039), [sym_preproc_endregion] = STATE(1039), [sym_preproc_line] = STATE(1039), @@ -225872,73 +225894,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -225949,90 +225971,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1040] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3930), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4943), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1040), [sym_preproc_endregion] = STATE(1040), [sym_preproc_line] = STATE(1040), @@ -226042,47 +226064,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226107,8 +226129,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -226125,84 +226147,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1041] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3843), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3648), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1041), [sym_preproc_endregion] = STATE(1041), [sym_preproc_line] = STATE(1041), @@ -226212,73 +226234,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -226289,90 +226311,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1042] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3905), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4389), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1042), [sym_preproc_endregion] = STATE(1042), [sym_preproc_line] = STATE(1042), @@ -226382,47 +226404,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226435,20 +226457,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -226465,84 +226487,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1043] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4548), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3608), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1043), [sym_preproc_endregion] = STATE(1043), [sym_preproc_line] = STATE(1043), @@ -226552,73 +226574,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -226629,90 +226651,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1044] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4297), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4797), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1044), [sym_preproc_endregion] = STATE(1044), [sym_preproc_line] = STATE(1044), @@ -226722,47 +226744,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226775,20 +226797,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -226799,90 +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(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1045] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4286), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1045), [sym_preproc_endregion] = STATE(1045), [sym_preproc_line] = STATE(1045), @@ -226892,15 +226914,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), @@ -226910,29 +226932,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -226975,84 +226997,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [1046] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3715), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3497), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1046), [sym_preproc_endregion] = STATE(1046), [sym_preproc_line] = STATE(1046), @@ -227062,47 +227084,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227115,20 +227137,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227139,90 +227161,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1047] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3714), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4732), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1047), [sym_preproc_endregion] = STATE(1047), [sym_preproc_line] = STATE(1047), @@ -227232,47 +227254,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227285,20 +227307,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227315,84 +227337,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1048] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3713), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4947), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1048), [sym_preproc_endregion] = STATE(1048), [sym_preproc_line] = STATE(1048), @@ -227402,47 +227424,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227455,20 +227477,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227485,84 +227507,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1049] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3848), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4948), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1049), [sym_preproc_endregion] = STATE(1049), [sym_preproc_line] = STATE(1049), @@ -227572,47 +227594,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227625,20 +227647,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227655,84 +227677,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1050] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3712), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4950), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1050), [sym_preproc_endregion] = STATE(1050), [sym_preproc_line] = STATE(1050), @@ -227742,47 +227764,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227795,20 +227817,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227825,84 +227847,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1051] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3711), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4951), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1051), [sym_preproc_endregion] = STATE(1051), [sym_preproc_line] = STATE(1051), @@ -227912,47 +227934,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227965,20 +227987,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227995,84 +228017,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1052] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3467), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4952), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1052), [sym_preproc_endregion] = STATE(1052), [sym_preproc_line] = STATE(1052), @@ -228082,47 +228104,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228135,20 +228157,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228159,90 +228181,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1053] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3709), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4953), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1053), [sym_preproc_endregion] = STATE(1053), [sym_preproc_line] = STATE(1053), @@ -228252,47 +228274,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228305,20 +228327,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228335,84 +228357,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1054] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3747), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1054), [sym_preproc_endregion] = STATE(1054), [sym_preproc_line] = STATE(1054), @@ -228422,47 +228444,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228475,20 +228497,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228499,90 +228521,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1055] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3748), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4275), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1055), [sym_preproc_endregion] = STATE(1055), [sym_preproc_line] = STATE(1055), @@ -228592,47 +228614,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228645,20 +228667,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228669,90 +228691,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1056] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3753), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4955), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1056), [sym_preproc_endregion] = STATE(1056), [sym_preproc_line] = STATE(1056), @@ -228762,47 +228784,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228815,20 +228837,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228839,90 +228861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1057] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3757), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4956), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1057), [sym_preproc_endregion] = STATE(1057), [sym_preproc_line] = STATE(1057), @@ -228932,47 +228954,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228985,20 +229007,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229009,90 +229031,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1058] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3756), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4957), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1058), [sym_preproc_endregion] = STATE(1058), [sym_preproc_line] = STATE(1058), @@ -229102,47 +229124,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -229155,20 +229177,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229179,90 +229201,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1059] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3708), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4958), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1059), [sym_preproc_endregion] = STATE(1059), [sym_preproc_line] = STATE(1059), @@ -229272,47 +229294,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -229325,20 +229347,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229355,84 +229377,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1060] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3738), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4019), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1060), [sym_preproc_endregion] = STATE(1060), [sym_preproc_line] = STATE(1060), @@ -229442,47 +229464,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -229507,8 +229529,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229525,84 +229547,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1061] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3736), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4645), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1061), [sym_preproc_endregion] = STATE(1061), [sym_preproc_line] = STATE(1061), @@ -229612,73 +229634,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229689,90 +229711,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1062] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3734), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3681), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1062), [sym_preproc_endregion] = STATE(1062), [sym_preproc_line] = STATE(1062), @@ -229782,73 +229804,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229859,90 +229881,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1063] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3732), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4266), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1063), [sym_preproc_endregion] = STATE(1063), [sym_preproc_line] = STATE(1063), @@ -229952,47 +229974,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230005,20 +230027,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230029,90 +230051,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1064] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3731), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5000), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1064), [sym_preproc_endregion] = STATE(1064), [sym_preproc_line] = STATE(1064), @@ -230122,47 +230144,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230175,20 +230197,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230199,90 +230221,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1065] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3729), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4016), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1065), [sym_preproc_endregion] = STATE(1065), [sym_preproc_line] = STATE(1065), @@ -230292,47 +230314,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230357,8 +230379,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230375,84 +230397,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1066] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3728), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3142), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1066), [sym_preproc_endregion] = STATE(1066), [sym_preproc_line] = STATE(1066), @@ -230462,47 +230484,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230515,20 +230537,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230539,90 +230561,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1067] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4204), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5002), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1067), [sym_preproc_endregion] = STATE(1067), [sym_preproc_line] = STATE(1067), @@ -230632,73 +230654,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2377), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230709,90 +230731,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1068] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4028), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5090), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1068), [sym_preproc_endregion] = STATE(1068), [sym_preproc_line] = STATE(1068), @@ -230802,47 +230824,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230855,20 +230877,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230885,84 +230907,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1069] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3466), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4745), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1069), [sym_preproc_endregion] = STATE(1069), [sym_preproc_line] = STATE(1069), @@ -230972,47 +230994,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231025,20 +231047,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -231049,90 +231071,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1070] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3725), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4646), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1070), [sym_preproc_endregion] = STATE(1070), [sym_preproc_line] = STATE(1070), @@ -231142,47 +231164,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231195,20 +231217,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -231219,90 +231241,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1071] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3935), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4934), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1071), [sym_preproc_endregion] = STATE(1071), [sym_preproc_line] = STATE(1071), @@ -231312,47 +231334,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231365,20 +231387,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -231395,84 +231417,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1072] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4018), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1072), [sym_preproc_endregion] = STATE(1072), [sym_preproc_line] = STATE(1072), @@ -231482,15 +231504,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -231500,29 +231522,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231547,7 +231569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -231565,84 +231587,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1073] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4019), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5003), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1073), [sym_preproc_endregion] = STATE(1073), [sym_preproc_line] = STATE(1073), @@ -231652,47 +231674,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231705,20 +231727,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -231735,84 +231757,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1074] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3707), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3494), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1074), [sym_preproc_endregion] = STATE(1074), [sym_preproc_line] = STATE(1074), @@ -231822,47 +231844,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231875,20 +231897,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -231899,90 +231921,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1075] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3706), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3753), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1075), [sym_preproc_endregion] = STATE(1075), [sym_preproc_line] = STATE(1075), @@ -231992,47 +232014,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232045,20 +232067,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232075,84 +232097,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1076] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4196), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5116), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2915), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1076), [sym_preproc_endregion] = STATE(1076), [sym_preproc_line] = STATE(1076), @@ -232162,47 +232184,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232227,8 +232249,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232245,84 +232267,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1077] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4071), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2527), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1077), [sym_preproc_endregion] = STATE(1077), [sym_preproc_line] = STATE(1077), @@ -232332,47 +232354,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232385,20 +232407,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232415,84 +232437,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1078] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3705), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3096), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1078), [sym_preproc_endregion] = STATE(1078), [sym_preproc_line] = STATE(1078), @@ -232502,47 +232524,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232555,20 +232577,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232579,90 +232601,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1079] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4069), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3228), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1079), [sym_preproc_endregion] = STATE(1079), [sym_preproc_line] = STATE(1079), @@ -232672,47 +232694,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232725,20 +232747,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232749,90 +232771,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1080] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3702), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3093), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1080), [sym_preproc_endregion] = STATE(1080), [sym_preproc_line] = STATE(1080), @@ -232842,47 +232864,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232895,20 +232917,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232919,90 +232941,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1081] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3983), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3098), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1081), [sym_preproc_endregion] = STATE(1081), [sym_preproc_line] = STATE(1081), @@ -233012,47 +233034,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233065,20 +233087,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233089,90 +233111,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1082] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3597), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3101), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1082), [sym_preproc_endregion] = STATE(1082), [sym_preproc_line] = STATE(1082), @@ -233182,47 +233204,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233235,20 +233257,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233259,90 +233281,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1083] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3786), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3104), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1083), [sym_preproc_endregion] = STATE(1083), [sym_preproc_line] = STATE(1083), @@ -233352,47 +233374,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233405,20 +233427,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233429,90 +233451,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1084] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3982), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3105), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1084), [sym_preproc_endregion] = STATE(1084), [sym_preproc_line] = STATE(1084), @@ -233522,47 +233544,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233575,20 +233597,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233599,90 +233621,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1085] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3938), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3653), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1085), [sym_preproc_endregion] = STATE(1085), [sym_preproc_line] = STATE(1085), @@ -233692,47 +233714,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233745,20 +233767,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233769,90 +233791,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1086] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4170), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3106), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1086), [sym_preproc_endregion] = STATE(1086), [sym_preproc_line] = STATE(1086), @@ -233862,47 +233884,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233915,20 +233937,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233939,90 +233961,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1087] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4119), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3952), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1087), [sym_preproc_endregion] = STATE(1087), [sym_preproc_line] = STATE(1087), @@ -234032,47 +234054,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234085,20 +234107,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234109,90 +234131,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1088] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4162), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4650), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1088), [sym_preproc_endregion] = STATE(1088), [sym_preproc_line] = STATE(1088), @@ -234202,47 +234224,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234255,20 +234277,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234279,90 +234301,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1089] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3878), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3994), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1089), [sym_preproc_endregion] = STATE(1089), [sym_preproc_line] = STATE(1089), @@ -234372,47 +234394,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234425,20 +234447,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234449,90 +234471,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), - }, - [1090] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3568), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), + }, + [1090] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3870), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1090), [sym_preproc_endregion] = STATE(1090), [sym_preproc_line] = STATE(1090), @@ -234542,47 +234564,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234607,7 +234629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -234625,84 +234647,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1091] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4144), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3954), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1091), [sym_preproc_endregion] = STATE(1091), [sym_preproc_line] = STATE(1091), @@ -234712,47 +234734,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234765,20 +234787,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234789,90 +234811,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1092] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4164), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3997), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1092), [sym_preproc_endregion] = STATE(1092), [sym_preproc_line] = STATE(1092), @@ -234882,47 +234904,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234935,20 +234957,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234959,90 +234981,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1093] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4243), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3811), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1093), [sym_preproc_endregion] = STATE(1093), [sym_preproc_line] = STATE(1093), @@ -235052,47 +235074,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235105,20 +235127,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -235129,90 +235151,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1094] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4134), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4145), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1094), [sym_preproc_endregion] = STATE(1094), [sym_preproc_line] = STATE(1094), @@ -235222,8 +235244,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -235235,34 +235257,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235287,8 +235309,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -235305,84 +235327,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1095] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4177), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3998), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1095), [sym_preproc_endregion] = STATE(1095), [sym_preproc_line] = STATE(1095), @@ -235392,47 +235414,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235445,20 +235467,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -235469,90 +235491,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1096] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4102), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3999), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1096), [sym_preproc_endregion] = STATE(1096), [sym_preproc_line] = STATE(1096), @@ -235562,47 +235584,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235615,20 +235637,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -235639,90 +235661,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1097] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4620), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(3317), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4139), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1097), [sym_preproc_endregion] = STATE(1097), [sym_preproc_line] = STATE(1097), @@ -235732,47 +235754,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235797,8 +235819,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -235815,84 +235837,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1098] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3287), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4000), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1098), [sym_preproc_endregion] = STATE(1098), [sym_preproc_line] = STATE(1098), @@ -235902,47 +235924,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235955,20 +235977,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -235979,90 +236001,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1099] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4199), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4001), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1099), [sym_preproc_endregion] = STATE(1099), [sym_preproc_line] = STATE(1099), @@ -236072,47 +236094,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236125,20 +236147,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236149,90 +236171,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1100] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4033), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4002), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1100), [sym_preproc_endregion] = STATE(1100), [sym_preproc_line] = STATE(1100), @@ -236242,47 +236264,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236295,20 +236317,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236319,90 +236341,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1101] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4183), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3813), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1101), [sym_preproc_endregion] = STATE(1101), [sym_preproc_line] = STATE(1101), @@ -236412,47 +236434,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236465,20 +236487,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236489,90 +236511,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1102] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4194), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4003), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1102), [sym_preproc_endregion] = STATE(1102), [sym_preproc_line] = STATE(1102), @@ -236582,47 +236604,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236635,20 +236657,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236659,90 +236681,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1103] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4040), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3816), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1103), [sym_preproc_endregion] = STATE(1103), [sym_preproc_line] = STATE(1103), @@ -236752,47 +236774,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236805,20 +236827,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236829,90 +236851,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1104] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4192), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3819), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1104), [sym_preproc_endregion] = STATE(1104), [sym_preproc_line] = STATE(1104), @@ -236922,47 +236944,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236975,20 +236997,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236999,90 +237021,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1105] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4191), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4004), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1105), [sym_preproc_endregion] = STATE(1105), [sym_preproc_line] = STATE(1105), @@ -237092,47 +237114,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237145,20 +237167,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237169,90 +237191,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1106] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4141), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3107), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1106), [sym_preproc_endregion] = STATE(1106), [sym_preproc_line] = STATE(1106), @@ -237262,47 +237284,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237315,20 +237337,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237339,90 +237361,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1107] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4189), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3868), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1107), [sym_preproc_endregion] = STATE(1107), [sym_preproc_line] = STATE(1107), @@ -237432,47 +237454,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237485,20 +237507,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237509,90 +237531,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1108] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4173), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4005), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1108), [sym_preproc_endregion] = STATE(1108), [sym_preproc_line] = STATE(1108), @@ -237602,47 +237624,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237655,20 +237677,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237679,90 +237701,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1109] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4171), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3108), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1109), [sym_preproc_endregion] = STATE(1109), [sym_preproc_line] = STATE(1109), @@ -237772,47 +237794,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237825,20 +237847,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237849,90 +237871,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1110] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4163), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4290), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1110), [sym_preproc_endregion] = STATE(1110), [sym_preproc_line] = STATE(1110), @@ -237942,47 +237964,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237995,20 +238017,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -238019,90 +238041,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1111] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4159), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5141), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1111), [sym_preproc_endregion] = STATE(1111), [sym_preproc_line] = STATE(1111), @@ -238112,47 +238134,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238165,20 +238187,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -238189,90 +238211,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1112] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3831), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4687), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1112), [sym_preproc_endregion] = STATE(1112), [sym_preproc_line] = STATE(1112), @@ -238282,47 +238304,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238335,20 +238357,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -238365,84 +238387,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1113] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3782), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4312), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1113), [sym_preproc_endregion] = STATE(1113), [sym_preproc_line] = STATE(1113), @@ -238452,47 +238474,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238517,7 +238539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -238535,84 +238557,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1114] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4140), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3109), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1114), [sym_preproc_endregion] = STATE(1114), [sym_preproc_line] = STATE(1114), @@ -238622,47 +238644,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238675,20 +238697,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -238699,90 +238721,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1115] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4229), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3110), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1115), [sym_preproc_endregion] = STATE(1115), [sym_preproc_line] = STATE(1115), @@ -238792,47 +238814,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238845,20 +238867,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -238869,90 +238891,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1116] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4254), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1116), [sym_preproc_endregion] = STATE(1116), [sym_preproc_line] = STATE(1116), @@ -238962,47 +238984,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239015,20 +239037,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -239039,90 +239061,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1117] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3844), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3111), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1117), [sym_preproc_endregion] = STATE(1117), [sym_preproc_line] = STATE(1117), @@ -239132,47 +239154,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239185,20 +239207,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -239209,90 +239231,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1118] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4112), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4371), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1118), [sym_preproc_endregion] = STATE(1118), [sym_preproc_line] = STATE(1118), @@ -239302,47 +239324,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239355,20 +239377,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -239385,84 +239407,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1119] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3477), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4931), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4323), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1119), [sym_preproc_endregion] = STATE(1119), [sym_preproc_line] = STATE(1119), @@ -239472,47 +239494,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239525,20 +239547,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1945), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -239549,90 +239571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1120] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3941), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2975), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1120), [sym_preproc_endregion] = STATE(1120), [sym_preproc_line] = STATE(1120), @@ -239642,47 +239664,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239695,20 +239717,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -239719,90 +239741,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1121] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4255), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4564), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1121), [sym_preproc_endregion] = STATE(1121), [sym_preproc_line] = STATE(1121), @@ -239812,47 +239834,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239877,7 +239899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -239895,84 +239917,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1122] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4504), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1122), [sym_preproc_endregion] = STATE(1122), [sym_preproc_line] = STATE(1122), @@ -239982,47 +240004,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240035,20 +240057,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -240059,90 +240081,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1123] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4256), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4551), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1123), [sym_preproc_endregion] = STATE(1123), [sym_preproc_line] = STATE(1123), @@ -240152,47 +240174,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1123), [sym_preproc_define] = STATE(1123), [sym_preproc_undef] = STATE(1123), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240217,7 +240239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -240235,84 +240257,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1124] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4261), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4552), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1124), [sym_preproc_endregion] = STATE(1124), [sym_preproc_line] = STATE(1124), @@ -240322,47 +240344,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1124), [sym_preproc_define] = STATE(1124), [sym_preproc_undef] = STATE(1124), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240387,7 +240409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -240405,84 +240427,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1125] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4429), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3112), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1125), [sym_preproc_endregion] = STATE(1125), [sym_preproc_line] = STATE(1125), @@ -240492,47 +240514,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240545,20 +240567,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -240569,90 +240591,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1126] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4138), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4464), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1126), [sym_preproc_endregion] = STATE(1126), [sym_preproc_line] = STATE(1126), @@ -240662,15 +240684,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), @@ -240680,29 +240702,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240727,8 +240749,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -240745,84 +240767,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1127] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3939), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4597), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1127), [sym_preproc_endregion] = STATE(1127), [sym_preproc_line] = STATE(1127), @@ -240832,47 +240854,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240885,20 +240907,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -240909,90 +240931,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1128] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4276), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4600), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1128), [sym_preproc_endregion] = STATE(1128), [sym_preproc_line] = STATE(1128), @@ -241002,15 +241024,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), @@ -241020,29 +241042,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241067,8 +241089,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241085,84 +241107,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1129] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4130), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4503), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1129), [sym_preproc_endregion] = STATE(1129), [sym_preproc_line] = STATE(1129), @@ -241172,15 +241194,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), @@ -241190,29 +241212,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241237,8 +241259,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241255,84 +241277,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1130] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3210), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4607), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1130), [sym_preproc_endregion] = STATE(1130), [sym_preproc_line] = STATE(1130), @@ -241342,47 +241364,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241395,20 +241417,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241419,90 +241441,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1131] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4425), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4500), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1131), [sym_preproc_endregion] = STATE(1131), [sym_preproc_line] = STATE(1131), @@ -241512,47 +241534,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241565,20 +241587,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241589,90 +241611,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1132] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4115), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4498), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1132), [sym_preproc_endregion] = STATE(1132), [sym_preproc_line] = STATE(1132), @@ -241682,47 +241704,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1132), [sym_preproc_define] = STATE(1132), [sym_preproc_undef] = STATE(1132), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241747,7 +241769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -241765,84 +241787,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1133] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4476), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4609), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1133), [sym_preproc_endregion] = STATE(1133), [sym_preproc_line] = STATE(1133), @@ -241852,47 +241874,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241905,20 +241927,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241929,90 +241951,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1134] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4267), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4524), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1134), [sym_preproc_endregion] = STATE(1134), [sym_preproc_line] = STATE(1134), @@ -242022,47 +242044,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242087,7 +242109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -242105,84 +242127,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1135] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3454), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1135), [sym_preproc_endregion] = STATE(1135), [sym_preproc_line] = STATE(1135), @@ -242192,47 +242214,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242257,7 +242279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -242275,84 +242297,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1136] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3208), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5116), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2915), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1136), [sym_preproc_endregion] = STATE(1136), [sym_preproc_line] = STATE(1136), @@ -242362,47 +242384,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242415,20 +242437,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242439,90 +242461,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1137] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3386), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4534), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1137), [sym_preproc_endregion] = STATE(1137), [sym_preproc_line] = STATE(1137), @@ -242532,47 +242554,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242585,20 +242607,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242609,90 +242631,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1138] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3388), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6175), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4766), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1138), [sym_preproc_endregion] = STATE(1138), [sym_preproc_line] = STATE(1138), @@ -242702,47 +242724,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242755,20 +242777,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242779,90 +242801,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1139] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3389), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4490), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1139), [sym_preproc_endregion] = STATE(1139), [sym_preproc_line] = STATE(1139), @@ -242872,47 +242894,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1139), [sym_preproc_define] = STATE(1139), [sym_preproc_undef] = STATE(1139), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242925,20 +242947,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242949,90 +242971,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1140] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3440), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3113), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1140), [sym_preproc_endregion] = STATE(1140), [sym_preproc_line] = STATE(1140), @@ -243042,47 +243064,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1140), [sym_preproc_define] = STATE(1140), [sym_preproc_undef] = STATE(1140), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243107,7 +243129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -243125,84 +243147,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1141] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3441), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4625), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1141), [sym_preproc_endregion] = STATE(1141), [sym_preproc_line] = STATE(1141), @@ -243212,47 +243234,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243265,20 +243287,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243289,90 +243311,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1142] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3348), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3115), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1142), [sym_preproc_endregion] = STATE(1142), [sym_preproc_line] = STATE(1142), @@ -243382,73 +243404,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1377), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243459,90 +243481,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1143] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3442), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5141), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1143), [sym_preproc_endregion] = STATE(1143), [sym_preproc_line] = STATE(1143), @@ -243552,47 +243574,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243605,20 +243627,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243629,90 +243651,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1144] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3443), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4131), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1144), [sym_preproc_endregion] = STATE(1144), [sym_preproc_line] = STATE(1144), @@ -243722,47 +243744,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243775,20 +243797,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243799,90 +243821,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1145] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3444), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4398), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1145), [sym_preproc_endregion] = STATE(1145), [sym_preproc_line] = STATE(1145), @@ -243892,47 +243914,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243945,20 +243967,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243969,90 +243991,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1146] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4014), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4447), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1146), [sym_preproc_endregion] = STATE(1146), [sym_preproc_line] = STATE(1146), @@ -244062,73 +244084,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2045), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244139,90 +244161,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1147] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3445), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2971), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1147), [sym_preproc_endregion] = STATE(1147), [sym_preproc_line] = STATE(1147), @@ -244232,47 +244254,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244285,20 +244307,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244309,90 +244331,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1148] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3392), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4446), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1148), [sym_preproc_endregion] = STATE(1148), [sym_preproc_line] = STATE(1148), @@ -244402,47 +244424,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244455,20 +244477,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244479,90 +244501,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1149] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3447), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4445), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1149), [sym_preproc_endregion] = STATE(1149), [sym_preproc_line] = STATE(1149), @@ -244572,47 +244594,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244625,20 +244647,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244649,90 +244671,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1150] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3350), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4443), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1150), [sym_preproc_endregion] = STATE(1150), [sym_preproc_line] = STATE(1150), @@ -244742,73 +244764,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2045), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244819,90 +244841,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1151] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4272), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4442), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1151), [sym_preproc_endregion] = STATE(1151), [sym_preproc_line] = STATE(1151), @@ -244912,47 +244934,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244965,114 +244987,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1152] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3987), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3120), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1152), [sym_preproc_endregion] = STATE(1152), [sym_preproc_line] = STATE(1152), @@ -245082,73 +245104,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1377), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245159,90 +245181,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1153] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6175), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4463), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3087), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1153), [sym_preproc_endregion] = STATE(1153), [sym_preproc_line] = STATE(1153), @@ -245252,47 +245274,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -245305,20 +245327,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245329,90 +245351,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1154] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3266), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4441), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1154), [sym_preproc_endregion] = STATE(1154), [sym_preproc_line] = STATE(1154), @@ -245422,47 +245444,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -245475,20 +245497,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245499,90 +245521,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1155] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3903), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3894), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1155), [sym_preproc_endregion] = STATE(1155), [sym_preproc_line] = STATE(1155), @@ -245592,47 +245614,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(105), + [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(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -245645,20 +245667,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245675,84 +245697,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1156] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3186), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3029), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1156), [sym_preproc_endregion] = STATE(1156), [sym_preproc_line] = STATE(1156), @@ -245762,47 +245784,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -245815,20 +245837,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245839,90 +245861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1157] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4280), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3122), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1157), [sym_preproc_endregion] = STATE(1157), [sym_preproc_line] = STATE(1157), @@ -245932,47 +245954,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -245985,20 +246007,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -246009,90 +246031,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1158] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3933), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3908), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1158), [sym_preproc_endregion] = STATE(1158), [sym_preproc_line] = STATE(1158), @@ -246102,47 +246124,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -246155,20 +246177,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -246179,90 +246201,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1159] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3835), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4440), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1159), [sym_preproc_endregion] = STATE(1159), [sym_preproc_line] = STATE(1159), @@ -246272,47 +246294,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -246337,7 +246359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -246355,84 +246377,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1160] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3655), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4432), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1160), [sym_preproc_endregion] = STATE(1160), [sym_preproc_line] = STATE(1160), @@ -246442,47 +246464,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -246507,7 +246529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -246525,84 +246547,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1161] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4226), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4930), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1161), [sym_preproc_endregion] = STATE(1161), [sym_preproc_line] = STATE(1161), @@ -246612,47 +246634,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -246665,20 +246687,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -246689,90 +246711,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1162] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3653), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4431), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1162), [sym_preproc_endregion] = STATE(1162), [sym_preproc_line] = STATE(1162), @@ -246782,47 +246804,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -246847,7 +246869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -246865,84 +246887,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1163] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3613), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2980), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1163), [sym_preproc_endregion] = STATE(1163), [sym_preproc_line] = STATE(1163), @@ -246952,47 +246974,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247005,20 +247027,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247029,90 +247051,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1164] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3919), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2527), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1164), [sym_preproc_endregion] = STATE(1164), [sym_preproc_line] = STATE(1164), @@ -247122,47 +247144,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247175,20 +247197,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247205,84 +247227,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1165] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3624), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4430), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1165), [sym_preproc_endregion] = STATE(1165), [sym_preproc_line] = STATE(1165), @@ -247292,47 +247314,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247357,7 +247379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -247375,84 +247397,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1166] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3163), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3906), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1166), [sym_preproc_endregion] = STATE(1166), [sym_preproc_line] = STATE(1166), @@ -247462,47 +247484,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247515,20 +247537,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247539,90 +247561,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1167] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4457), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3271), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1167), [sym_preproc_endregion] = STATE(1167), [sym_preproc_line] = STATE(1167), @@ -247632,47 +247654,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247685,20 +247707,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247709,90 +247731,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1168] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3417), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3077), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1168), [sym_preproc_endregion] = STATE(1168), [sym_preproc_line] = STATE(1168), @@ -247802,73 +247824,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247879,90 +247901,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1169] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3098), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3684), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1169), [sym_preproc_endregion] = STATE(1169), [sym_preproc_line] = STATE(1169), @@ -247972,47 +247994,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248025,20 +248047,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248049,90 +248071,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1170] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3773), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3076), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1170), [sym_preproc_endregion] = STATE(1170), [sym_preproc_line] = STATE(1170), @@ -248142,47 +248164,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248195,20 +248217,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248219,90 +248241,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1171] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4260), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4788), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1171), [sym_preproc_endregion] = STATE(1171), [sym_preproc_line] = STATE(1171), @@ -248312,47 +248334,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248365,20 +248387,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248389,90 +248411,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1172] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3161), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3075), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1172), [sym_preproc_endregion] = STATE(1172), [sym_preproc_line] = STATE(1172), @@ -248482,47 +248504,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248535,20 +248557,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248559,90 +248581,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1173] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4386), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2973), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1173), [sym_preproc_endregion] = STATE(1173), [sym_preproc_line] = STATE(1173), @@ -248652,47 +248674,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248705,20 +248727,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248729,90 +248751,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1174] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4107), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3074), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1174), [sym_preproc_endregion] = STATE(1174), [sym_preproc_line] = STATE(1174), @@ -248822,47 +248844,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248875,20 +248897,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248899,90 +248921,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1175] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4323), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3072), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1175), [sym_preproc_endregion] = STATE(1175), [sym_preproc_line] = STATE(1175), @@ -248992,47 +249014,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249045,20 +249067,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249069,90 +249091,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1176] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3164), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3828), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1176), [sym_preproc_endregion] = STATE(1176), [sym_preproc_line] = STATE(1176), @@ -249162,47 +249184,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249215,20 +249237,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249239,90 +249261,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1177] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4392), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3211), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1177), [sym_preproc_endregion] = STATE(1177), [sym_preproc_line] = STATE(1177), @@ -249332,47 +249354,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249386,19 +249408,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249409,90 +249431,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1178] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3105), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4787), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1178), [sym_preproc_endregion] = STATE(1178), [sym_preproc_line] = STATE(1178), @@ -249502,47 +249524,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249555,20 +249577,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249579,90 +249601,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1179] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3167), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4784), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1179), [sym_preproc_endregion] = STATE(1179), [sym_preproc_line] = STATE(1179), @@ -249672,47 +249694,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249725,20 +249747,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249749,90 +249771,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1180] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3165), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3511), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1180), [sym_preproc_endregion] = STATE(1180), [sym_preproc_line] = STATE(1180), @@ -249842,47 +249864,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249895,20 +249917,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249919,90 +249941,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1181] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3092), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3070), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1181), [sym_preproc_endregion] = STATE(1181), [sym_preproc_line] = STATE(1181), @@ -250012,47 +250034,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250065,20 +250087,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250089,90 +250111,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1182] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3160), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3080), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1182), [sym_preproc_endregion] = STATE(1182), [sym_preproc_line] = STATE(1182), @@ -250182,47 +250204,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1182), [sym_preproc_define] = STATE(1182), [sym_preproc_undef] = STATE(1182), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250235,20 +250257,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250259,90 +250281,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1183] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3159), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5004), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1183), [sym_preproc_endregion] = STATE(1183), [sym_preproc_line] = STATE(1183), @@ -250352,47 +250374,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1183), [sym_preproc_define] = STATE(1183), [sym_preproc_undef] = STATE(1183), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250405,20 +250427,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250429,90 +250451,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1184] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4391), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3755), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1184), [sym_preproc_endregion] = STATE(1184), [sym_preproc_line] = STATE(1184), @@ -250522,47 +250544,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250587,8 +250609,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250605,84 +250627,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1185] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4390), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5141), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1185), [sym_preproc_endregion] = STATE(1185), [sym_preproc_line] = STATE(1185), @@ -250692,47 +250714,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250757,8 +250779,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250775,84 +250797,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1186] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3158), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3660), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1186), [sym_preproc_endregion] = STATE(1186), [sym_preproc_line] = STATE(1186), @@ -250862,47 +250884,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250915,20 +250937,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250939,90 +250961,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1187] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3139), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2945), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1187), [sym_preproc_endregion] = STATE(1187), [sym_preproc_line] = STATE(1187), @@ -251032,47 +251054,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251085,20 +251107,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251109,90 +251131,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1188] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3269), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3932), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1188), [sym_preproc_endregion] = STATE(1188), [sym_preproc_line] = STATE(1188), @@ -251202,47 +251224,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251255,20 +251277,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251285,84 +251307,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1189] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3157), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3832), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1189), [sym_preproc_endregion] = STATE(1189), [sym_preproc_line] = STATE(1189), @@ -251372,47 +251394,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251425,20 +251447,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251449,90 +251471,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1190] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3155), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3835), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1190), [sym_preproc_endregion] = STATE(1190), [sym_preproc_line] = STATE(1190), @@ -251542,47 +251564,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251595,20 +251617,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251619,90 +251641,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1191] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3154), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3837), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1191), [sym_preproc_endregion] = STATE(1191), [sym_preproc_line] = STATE(1191), @@ -251712,47 +251734,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251765,20 +251787,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251789,90 +251811,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1192] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3152), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3838), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1192), [sym_preproc_endregion] = STATE(1192), [sym_preproc_line] = STATE(1192), @@ -251882,47 +251904,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251935,20 +251957,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251959,90 +251981,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1193] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4357), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3842), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1193), [sym_preproc_endregion] = STATE(1193), [sym_preproc_line] = STATE(1193), @@ -252052,47 +252074,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252117,8 +252139,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -252135,84 +252157,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1194] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4235), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3393), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1194), [sym_preproc_endregion] = STATE(1194), [sym_preproc_line] = STATE(1194), @@ -252222,47 +252244,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252287,8 +252309,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2275), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -252305,84 +252327,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1195] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(3095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3847), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1195), [sym_preproc_endregion] = STATE(1195), [sym_preproc_line] = STATE(1195), @@ -252392,47 +252414,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252457,8 +252479,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -252475,84 +252497,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1196] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4347), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3849), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1196), [sym_preproc_endregion] = STATE(1196), [sym_preproc_line] = STATE(1196), @@ -252562,47 +252584,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252627,8 +252649,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -252645,84 +252667,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1197] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4301), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3085), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1197), [sym_preproc_endregion] = STATE(1197), [sym_preproc_line] = STATE(1197), @@ -252732,47 +252754,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252785,20 +252807,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -252809,90 +252831,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1198] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4352), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3091), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1198), [sym_preproc_endregion] = STATE(1198), [sym_preproc_line] = STATE(1198), @@ -252902,47 +252924,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252955,20 +252977,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -252979,90 +253001,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1199] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3061), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3853), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1199), [sym_preproc_endregion] = STATE(1199), [sym_preproc_line] = STATE(1199), @@ -253072,47 +253094,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253125,20 +253147,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -253149,90 +253171,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1200] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4351), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3090), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1200), [sym_preproc_endregion] = STATE(1200), [sym_preproc_line] = STATE(1200), @@ -253242,47 +253264,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253295,20 +253317,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -253319,90 +253341,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1201] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4374), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2966), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1201), [sym_preproc_endregion] = STATE(1201), [sym_preproc_line] = STATE(1201), @@ -253412,47 +253434,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253465,20 +253487,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -253489,90 +253511,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1202] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4377), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3777), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1202), [sym_preproc_endregion] = STATE(1202), [sym_preproc_line] = STATE(1202), @@ -253582,47 +253604,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253647,8 +253669,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -253665,84 +253687,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1203] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3116), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3858), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1203), [sym_preproc_endregion] = STATE(1203), [sym_preproc_line] = STATE(1203), @@ -253752,47 +253774,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253805,20 +253827,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -253829,90 +253851,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1204] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3117), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2954), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1204), [sym_preproc_endregion] = STATE(1204), [sym_preproc_line] = STATE(1204), @@ -253922,47 +253944,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253975,20 +253997,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -253999,90 +254021,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1205] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3118), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3693), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1205), [sym_preproc_endregion] = STATE(1205), [sym_preproc_line] = STATE(1205), @@ -254092,47 +254114,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1205), [sym_preproc_define] = STATE(1205), [sym_preproc_undef] = STATE(1205), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254145,20 +254167,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254169,90 +254191,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1206] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3119), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3092), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1206), [sym_preproc_endregion] = STATE(1206), [sym_preproc_line] = STATE(1206), @@ -254262,47 +254284,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1206), [sym_preproc_define] = STATE(1206), [sym_preproc_undef] = STATE(1206), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254315,20 +254337,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254339,90 +254361,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1207] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4379), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4995), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1207), [sym_preproc_endregion] = STATE(1207), [sym_preproc_line] = STATE(1207), @@ -254432,47 +254454,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1207), [sym_preproc_define] = STATE(1207), [sym_preproc_undef] = STATE(1207), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254497,8 +254519,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254515,84 +254537,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1208] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4431), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2957), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1208), [sym_preproc_endregion] = STATE(1208), [sym_preproc_line] = STATE(1208), @@ -254602,47 +254624,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254655,20 +254677,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254679,90 +254701,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1209] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4432), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2960), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1209), [sym_preproc_endregion] = STATE(1209), [sym_preproc_line] = STATE(1209), @@ -254772,47 +254794,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1209), [sym_preproc_define] = STATE(1209), [sym_preproc_undef] = STATE(1209), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254825,20 +254847,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254849,90 +254871,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1210] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4435), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3855), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1210), [sym_preproc_endregion] = STATE(1210), [sym_preproc_line] = STATE(1210), @@ -254942,47 +254964,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254995,20 +255017,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255019,90 +255041,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1211] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4350), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3505), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1211), [sym_preproc_endregion] = STATE(1211), [sym_preproc_line] = STATE(1211), @@ -255112,47 +255134,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255165,20 +255187,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255195,84 +255217,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1212] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3120), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3893), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1212), [sym_preproc_endregion] = STATE(1212), [sym_preproc_line] = STATE(1212), @@ -255282,47 +255304,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255335,20 +255357,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255359,90 +255381,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1213] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4437), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3931), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4487), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7814), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1213), [sym_preproc_endregion] = STATE(1213), [sym_preproc_line] = STATE(1213), @@ -255452,47 +255474,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1213), [sym_preproc_define] = STATE(1213), [sym_preproc_undef] = STATE(1213), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255517,8 +255539,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255535,84 +255557,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1214] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3437), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3332), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1214), [sym_preproc_endregion] = STATE(1214), [sym_preproc_line] = STATE(1214), @@ -255622,47 +255644,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1214), [sym_preproc_define] = STATE(1214), [sym_preproc_undef] = STATE(1214), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255675,20 +255697,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255699,90 +255721,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1215] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3615), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2978), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1215), [sym_preproc_endregion] = STATE(1215), [sym_preproc_line] = STATE(1215), @@ -255792,47 +255814,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1215), [sym_preproc_define] = STATE(1215), [sym_preproc_undef] = STATE(1215), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255845,20 +255867,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255869,90 +255891,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1216] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3121), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2950), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1216), [sym_preproc_endregion] = STATE(1216), [sym_preproc_line] = STATE(1216), @@ -255962,47 +255984,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256015,20 +256037,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256039,90 +256061,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1217] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3151), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2527), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1217), [sym_preproc_endregion] = STATE(1217), [sym_preproc_line] = STATE(1217), @@ -256132,47 +256154,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256185,20 +256207,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256209,90 +256231,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1218] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3122), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4919), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1218), [sym_preproc_endregion] = STATE(1218), [sym_preproc_line] = STATE(1218), @@ -256302,47 +256324,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256355,20 +256377,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256379,90 +256401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1219] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3147), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5070), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1219), [sym_preproc_endregion] = STATE(1219), [sym_preproc_line] = STATE(1219), @@ -256472,47 +256494,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256525,20 +256547,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256549,90 +256571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1220] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3944), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3851), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1220), [sym_preproc_endregion] = STATE(1220), [sym_preproc_line] = STATE(1220), @@ -256642,217 +256664,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1220), [sym_preproc_define] = STATE(1220), [sym_preproc_undef] = STATE(1220), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), - }, - [1221] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3448), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1221), - [sym_preproc_endregion] = STATE(1221), - [sym_preproc_line] = STATE(1221), - [sym_preproc_pragma] = STATE(1221), - [sym_preproc_nullable] = STATE(1221), - [sym_preproc_error] = STATE(1221), - [sym_preproc_warning] = STATE(1221), - [sym_preproc_define] = STATE(1221), - [sym_preproc_undef] = STATE(1221), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256877,7 +256729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -256894,135 +256746,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1431), [sym_raw_string_start] = ACTIONS(1433), }, - [1222] = { - [sym_attribute_list] = STATE(5927), + [1221] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3496), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1222), - [sym_preproc_endregion] = STATE(1222), - [sym_preproc_line] = STATE(1222), - [sym_preproc_pragma] = STATE(1222), - [sym_preproc_nullable] = STATE(1222), - [sym_preproc_error] = STATE(1222), - [sym_preproc_warning] = STATE(1222), - [sym_preproc_define] = STATE(1222), - [sym_preproc_undef] = STATE(1222), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1221), + [sym_preproc_endregion] = STATE(1221), + [sym_preproc_line] = STATE(1221), + [sym_preproc_pragma] = STATE(1221), + [sym_preproc_nullable] = STATE(1221), + [sym_preproc_error] = STATE(1221), + [sym_preproc_warning] = STATE(1221), + [sym_preproc_define] = STATE(1221), + [sym_preproc_undef] = STATE(1221), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257035,20 +256887,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257064,85 +256916,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, + [1222] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3553), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1222), + [sym_preproc_endregion] = STATE(1222), + [sym_preproc_line] = STATE(1222), + [sym_preproc_pragma] = STATE(1222), + [sym_preproc_nullable] = STATE(1222), + [sym_preproc_error] = STATE(1222), + [sym_preproc_warning] = STATE(1222), + [sym_preproc_define] = STATE(1222), + [sym_preproc_undef] = STATE(1222), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), + }, [1223] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3146), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4149), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1223), [sym_preproc_endregion] = STATE(1223), [sym_preproc_line] = STATE(1223), @@ -257152,47 +257174,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257205,20 +257227,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257229,90 +257251,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1224] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(3095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2946), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1224), [sym_preproc_endregion] = STATE(1224), [sym_preproc_line] = STATE(1224), @@ -257322,47 +257344,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257375,20 +257397,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257399,90 +257421,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1225] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4436), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4011), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1225), [sym_preproc_endregion] = STATE(1225), [sym_preproc_line] = STATE(1225), @@ -257492,47 +257514,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257545,20 +257567,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257569,90 +257591,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1226] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4414), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2961), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1226), [sym_preproc_endregion] = STATE(1226), [sym_preproc_line] = STATE(1226), @@ -257662,47 +257684,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257715,20 +257737,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257739,90 +257761,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1227] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3087), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3903), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1227), [sym_preproc_endregion] = STATE(1227), [sym_preproc_line] = STATE(1227), @@ -257832,47 +257854,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257885,20 +257907,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257909,90 +257931,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1228] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4413), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3206), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1228), [sym_preproc_endregion] = STATE(1228), [sym_preproc_line] = STATE(1228), @@ -258002,47 +258024,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258055,20 +258077,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258079,90 +258101,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1229] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4527), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5131), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2916), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1229), [sym_preproc_endregion] = STATE(1229), [sym_preproc_line] = STATE(1229), @@ -258172,47 +258194,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1229), [sym_preproc_define] = STATE(1229), [sym_preproc_undef] = STATE(1229), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258237,8 +258259,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258255,84 +258277,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1230] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4118), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3987), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1230), [sym_preproc_endregion] = STATE(1230), [sym_preproc_line] = STATE(1230), @@ -258342,47 +258364,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258395,20 +258417,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258419,90 +258441,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1231] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3353), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3284), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1231), [sym_preproc_endregion] = STATE(1231), [sym_preproc_line] = STATE(1231), @@ -258512,73 +258534,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258589,90 +258611,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1232] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4541), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3861), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1232), [sym_preproc_endregion] = STATE(1232), [sym_preproc_line] = STATE(1232), @@ -258682,47 +258704,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258735,20 +258757,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258759,90 +258781,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1233] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3558), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3985), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1233), [sym_preproc_endregion] = STATE(1233), [sym_preproc_line] = STATE(1233), @@ -258852,47 +258874,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258905,20 +258927,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258929,90 +258951,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1234] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4202), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3984), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1234), [sym_preproc_endregion] = STATE(1234), [sym_preproc_line] = STATE(1234), @@ -259022,47 +259044,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259075,20 +259097,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259099,90 +259121,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1235] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4406), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3983), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1235), [sym_preproc_endregion] = STATE(1235), [sym_preproc_line] = STATE(1235), @@ -259192,47 +259214,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259245,20 +259267,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259269,90 +259291,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1236] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3697), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3982), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1236), [sym_preproc_endregion] = STATE(1236), [sym_preproc_line] = STATE(1236), @@ -259362,47 +259384,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259415,20 +259437,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259439,90 +259461,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1237] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4556), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3981), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1237), [sym_preproc_endregion] = STATE(1237), [sym_preproc_line] = STATE(1237), @@ -259532,47 +259554,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259585,20 +259607,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259609,90 +259631,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1238] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3552), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3862), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1238), [sym_preproc_endregion] = STATE(1238), [sym_preproc_line] = STATE(1238), @@ -259702,47 +259724,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1238), [sym_preproc_define] = STATE(1238), [sym_preproc_undef] = STATE(1238), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259755,20 +259777,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259779,90 +259801,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1239] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4547), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3980), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1239), [sym_preproc_endregion] = STATE(1239), [sym_preproc_line] = STATE(1239), @@ -259872,47 +259894,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259925,20 +259947,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259949,90 +259971,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1240] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3534), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3863), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1240), [sym_preproc_endregion] = STATE(1240), [sym_preproc_line] = STATE(1240), @@ -260042,47 +260064,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260095,20 +260117,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260119,90 +260141,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1241] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3596), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3323), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1241), [sym_preproc_endregion] = STATE(1241), [sym_preproc_line] = STATE(1241), @@ -260212,47 +260234,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260265,20 +260287,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260289,90 +260311,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1242] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3595), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3864), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1242), [sym_preproc_endregion] = STATE(1242), [sym_preproc_line] = STATE(1242), @@ -260382,47 +260404,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260435,20 +260457,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260459,90 +260481,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1243] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3594), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3979), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1243), [sym_preproc_endregion] = STATE(1243), [sym_preproc_line] = STATE(1243), @@ -260552,47 +260574,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260605,20 +260627,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260629,90 +260651,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1244] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3592), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2953), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1244), [sym_preproc_endregion] = STATE(1244), [sym_preproc_line] = STATE(1244), @@ -260722,47 +260744,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1244), [sym_preproc_define] = STATE(1244), [sym_preproc_undef] = STATE(1244), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260775,20 +260797,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260799,90 +260821,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1245] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3590), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3901), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1245), [sym_preproc_endregion] = STATE(1245), [sym_preproc_line] = STATE(1245), @@ -260892,47 +260914,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260945,20 +260967,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260969,90 +260991,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1246] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3978), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1246), [sym_preproc_endregion] = STATE(1246), [sym_preproc_line] = STATE(1246), @@ -261062,47 +261084,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261115,20 +261137,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261139,90 +261161,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1247] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3585), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2964), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1247), [sym_preproc_endregion] = STATE(1247), [sym_preproc_line] = STATE(1247), @@ -261232,47 +261254,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261285,20 +261307,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261309,90 +261331,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1248] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3584), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4378), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1248), [sym_preproc_endregion] = STATE(1248), [sym_preproc_line] = STATE(1248), @@ -261402,47 +261424,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261467,7 +261489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -261485,84 +261507,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1249] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3582), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5089), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5279), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6467), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7774), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1249), [sym_preproc_endregion] = STATE(1249), [sym_preproc_line] = STATE(1249), @@ -261572,47 +261594,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_ref] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(2355), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261625,20 +261647,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261655,84 +261677,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1250] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3581), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4375), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1250), [sym_preproc_endregion] = STATE(1250), [sym_preproc_line] = STATE(1250), @@ -261742,47 +261764,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261807,7 +261829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -261825,84 +261847,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1251] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3578), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2967), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1251), [sym_preproc_endregion] = STATE(1251), [sym_preproc_line] = STATE(1251), @@ -261912,47 +261934,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261965,20 +261987,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261989,90 +262011,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1252] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3538), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4951), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7677), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4285), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1252), [sym_preproc_endregion] = STATE(1252), [sym_preproc_line] = STATE(1252), @@ -262082,47 +262104,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262135,20 +262157,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262165,84 +262187,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1253] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3897), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4342), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1253), [sym_preproc_endregion] = STATE(1253), [sym_preproc_line] = STATE(1253), @@ -262252,15 +262274,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -262270,29 +262292,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262317,7 +262339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -262335,84 +262357,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1254] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2499), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5067), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1254), [sym_preproc_endregion] = STATE(1254), [sym_preproc_line] = STATE(1254), @@ -262422,47 +262444,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262487,8 +262509,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262505,84 +262527,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1255] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3665), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4373), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1255), [sym_preproc_endregion] = STATE(1255), [sym_preproc_line] = STATE(1255), @@ -262592,47 +262614,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262645,20 +262667,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262669,90 +262691,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1256] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3514), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4966), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1256), [sym_preproc_endregion] = STATE(1256), [sym_preproc_line] = STATE(1256), @@ -262762,47 +262784,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262815,20 +262837,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262839,90 +262861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1257] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3371), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4462), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1257), [sym_preproc_endregion] = STATE(1257), [sym_preproc_line] = STATE(1257), @@ -262932,47 +262954,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262985,20 +263007,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263009,90 +263031,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1258] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3446), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4472), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1258), [sym_preproc_endregion] = STATE(1258), [sym_preproc_line] = STATE(1258), @@ -263102,47 +263124,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263155,20 +263177,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263179,90 +263201,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1259] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3370), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4473), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1259), [sym_preproc_endregion] = STATE(1259), [sym_preproc_line] = STATE(1259), @@ -263272,47 +263294,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263325,20 +263347,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263349,90 +263371,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1260] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3366), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4475), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1260), [sym_preproc_endregion] = STATE(1260), [sym_preproc_line] = STATE(1260), @@ -263442,47 +263464,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263495,20 +263517,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263519,90 +263541,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1261] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3365), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4476), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1261), [sym_preproc_endregion] = STATE(1261), [sym_preproc_line] = STATE(1261), @@ -263612,47 +263634,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1261), [sym_preproc_define] = STATE(1261), [sym_preproc_undef] = STATE(1261), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263665,20 +263687,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263689,90 +263711,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1262] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3356), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4477), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1262), [sym_preproc_endregion] = STATE(1262), [sym_preproc_line] = STATE(1262), @@ -263782,47 +263804,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263835,20 +263857,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263859,90 +263881,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1263] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3351), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4478), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1263), [sym_preproc_endregion] = STATE(1263), [sym_preproc_line] = STATE(1263), @@ -263952,47 +263974,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264005,20 +264027,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264029,90 +264051,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1264] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3352), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4479), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1264), [sym_preproc_endregion] = STATE(1264), [sym_preproc_line] = STATE(1264), @@ -264122,47 +264144,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264175,20 +264197,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264199,90 +264221,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1265] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3452), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4480), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1265), [sym_preproc_endregion] = STATE(1265), [sym_preproc_line] = STATE(1265), @@ -264292,47 +264314,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264345,20 +264367,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264369,90 +264391,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1266] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3453), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4481), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1266), [sym_preproc_endregion] = STATE(1266), [sym_preproc_line] = STATE(1266), @@ -264462,47 +264484,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264515,20 +264537,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264539,90 +264561,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1267] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3460), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4482), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1267), [sym_preproc_endregion] = STATE(1267), [sym_preproc_line] = STATE(1267), @@ -264632,47 +264654,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264685,20 +264707,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264709,90 +264731,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1268] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3662), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4483), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1268), [sym_preproc_endregion] = STATE(1268), [sym_preproc_line] = STATE(1268), @@ -264802,47 +264824,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264855,20 +264877,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264879,90 +264901,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1269] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3456), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4492), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1269), [sym_preproc_endregion] = STATE(1269), [sym_preproc_line] = STATE(1269), @@ -264972,47 +264994,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265025,20 +265047,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265049,90 +265071,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1270] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3660), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3953), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1270), [sym_preproc_endregion] = STATE(1270), [sym_preproc_line] = STATE(1270), @@ -265142,47 +265164,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1393), [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(2071), [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265207,7 +265229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -265225,84 +265247,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1271] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2763), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5126), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3887), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1271), [sym_preproc_endregion] = STATE(1271), [sym_preproc_line] = STATE(1271), @@ -265312,73 +265334,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(3177), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265389,90 +265411,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1272] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2499), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4501), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1272), [sym_preproc_endregion] = STATE(1272), [sym_preproc_line] = STATE(1272), @@ -265482,47 +265504,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265535,20 +265557,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265559,90 +265581,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1273] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3569), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2951), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1273), [sym_preproc_endregion] = STATE(1273), [sym_preproc_line] = STATE(1273), @@ -265652,47 +265674,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265705,20 +265727,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265729,90 +265751,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1274] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4493), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4519), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1274), [sym_preproc_endregion] = STATE(1274), [sym_preproc_line] = STATE(1274), @@ -265822,47 +265844,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265875,20 +265897,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265899,90 +265921,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1275] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4312), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4870), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1275), [sym_preproc_endregion] = STATE(1275), [sym_preproc_line] = STATE(1275), @@ -265992,47 +266014,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266057,8 +266079,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -266075,84 +266097,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1276] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4315), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4889), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1276), [sym_preproc_endregion] = STATE(1276), [sym_preproc_line] = STATE(1276), @@ -266162,47 +266184,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266227,8 +266249,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -266245,84 +266267,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1277] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4274), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4653), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1277), [sym_preproc_endregion] = STATE(1277), [sym_preproc_line] = STATE(1277), @@ -266332,8 +266354,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -266345,34 +266367,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266397,8 +266419,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -266415,84 +266437,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1278] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4501), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4511), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1278), [sym_preproc_endregion] = STATE(1278), [sym_preproc_line] = STATE(1278), @@ -266502,217 +266524,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), - }, - [1279] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3138), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1279), - [sym_preproc_endregion] = STATE(1279), - [sym_preproc_line] = STATE(1279), - [sym_preproc_pragma] = STATE(1279), - [sym_preproc_nullable] = STATE(1279), - [sym_preproc_error] = STATE(1279), - [sym_preproc_warning] = STATE(1279), - [sym_preproc_define] = STATE(1279), - [sym_preproc_undef] = STATE(1279), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266737,7 +266589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -266754,135 +266606,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1517), [sym_raw_string_start] = ACTIONS(1519), }, - [1280] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4382), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1280), - [sym_preproc_endregion] = STATE(1280), - [sym_preproc_line] = STATE(1280), - [sym_preproc_pragma] = STATE(1280), - [sym_preproc_nullable] = STATE(1280), - [sym_preproc_error] = STATE(1280), - [sym_preproc_warning] = STATE(1280), - [sym_preproc_define] = STATE(1280), - [sym_preproc_undef] = STATE(1280), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [1279] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4770), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1279), + [sym_preproc_endregion] = STATE(1279), + [sym_preproc_line] = STATE(1279), + [sym_preproc_pragma] = STATE(1279), + [sym_preproc_nullable] = STATE(1279), + [sym_preproc_error] = STATE(1279), + [sym_preproc_warning] = STATE(1279), + [sym_preproc_define] = STATE(1279), + [sym_preproc_undef] = STATE(1279), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266907,8 +266759,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -266924,135 +266776,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [1281] = { - [sym_attribute_list] = STATE(5927), + [1280] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4385), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1281), - [sym_preproc_endregion] = STATE(1281), - [sym_preproc_line] = STATE(1281), - [sym_preproc_pragma] = STATE(1281), - [sym_preproc_nullable] = STATE(1281), - [sym_preproc_error] = STATE(1281), - [sym_preproc_warning] = STATE(1281), - [sym_preproc_define] = STATE(1281), - [sym_preproc_undef] = STATE(1281), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4789), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1280), + [sym_preproc_endregion] = STATE(1280), + [sym_preproc_line] = STATE(1280), + [sym_preproc_pragma] = STATE(1280), + [sym_preproc_nullable] = STATE(1280), + [sym_preproc_error] = STATE(1280), + [sym_preproc_warning] = STATE(1280), + [sym_preproc_define] = STATE(1280), + [sym_preproc_undef] = STATE(1280), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267077,8 +266929,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267094,135 +266946,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [1282] = { - [sym_attribute_list] = STATE(5927), + [1281] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4459), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1282), - [sym_preproc_endregion] = STATE(1282), - [sym_preproc_line] = STATE(1282), - [sym_preproc_pragma] = STATE(1282), - [sym_preproc_nullable] = STATE(1282), - [sym_preproc_error] = STATE(1282), - [sym_preproc_warning] = STATE(1282), - [sym_preproc_define] = STATE(1282), - [sym_preproc_undef] = STATE(1282), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5025), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1281), + [sym_preproc_endregion] = STATE(1281), + [sym_preproc_line] = STATE(1281), + [sym_preproc_pragma] = STATE(1281), + [sym_preproc_nullable] = STATE(1281), + [sym_preproc_error] = STATE(1281), + [sym_preproc_warning] = STATE(1281), + [sym_preproc_define] = STATE(1281), + [sym_preproc_undef] = STATE(1281), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267247,8 +267099,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), + }, + [1282] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5131), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2916), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1282), + [sym_preproc_endregion] = STATE(1282), + [sym_preproc_line] = STATE(1282), + [sym_preproc_pragma] = STATE(1282), + [sym_preproc_nullable] = STATE(1282), + [sym_preproc_error] = STATE(1282), + [sym_preproc_warning] = STATE(1282), + [sym_preproc_define] = STATE(1282), + [sym_preproc_undef] = STATE(1282), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267265,84 +267287,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1283] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4516), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4090), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1283), [sym_preproc_endregion] = STATE(1283), [sym_preproc_line] = STATE(1283), @@ -267352,47 +267374,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267405,20 +267427,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267435,84 +267457,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1284] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4543), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4315), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1284), [sym_preproc_endregion] = STATE(1284), [sym_preproc_line] = STATE(1284), @@ -267522,47 +267544,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267575,20 +267597,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267605,84 +267627,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1285] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4553), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4314), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1285), [sym_preproc_endregion] = STATE(1285), [sym_preproc_line] = STATE(1285), @@ -267692,47 +267714,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267745,20 +267767,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267775,84 +267797,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1286] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4555), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4313), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1286), [sym_preproc_endregion] = STATE(1286), [sym_preproc_line] = STATE(1286), @@ -267862,47 +267884,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267915,20 +267937,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267945,84 +267967,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1287] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4577), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4310), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1287), [sym_preproc_endregion] = STATE(1287), [sym_preproc_line] = STATE(1287), @@ -268032,47 +268054,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1287), [sym_preproc_define] = STATE(1287), [sym_preproc_undef] = STATE(1287), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268085,20 +268107,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268115,84 +268137,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1288] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3511), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4884), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1288), [sym_preproc_endregion] = STATE(1288), [sym_preproc_line] = STATE(1288), @@ -268202,47 +268224,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1288), [sym_preproc_define] = STATE(1288), [sym_preproc_undef] = STATE(1288), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268267,8 +268289,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268285,84 +268307,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1289] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4584), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4308), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1289), [sym_preproc_endregion] = STATE(1289), [sym_preproc_line] = STATE(1289), @@ -268372,47 +268394,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1289), [sym_preproc_define] = STATE(1289), [sym_preproc_undef] = STATE(1289), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268425,20 +268447,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268455,84 +268477,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1290] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2794), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3542), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1290), [sym_preproc_endregion] = STATE(1290), [sym_preproc_line] = STATE(1290), @@ -268542,73 +268564,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1290), [sym_preproc_define] = STATE(1290), [sym_preproc_undef] = STATE(1290), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268619,90 +268641,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1291] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3567), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3089), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1291), [sym_preproc_endregion] = STATE(1291), [sym_preproc_line] = STATE(1291), @@ -268712,47 +268734,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1291), [sym_preproc_define] = STATE(1291), [sym_preproc_undef] = STATE(1291), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268765,20 +268787,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268789,90 +268811,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1292] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4586), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3518), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1292), [sym_preproc_endregion] = STATE(1292), [sym_preproc_line] = STATE(1292), @@ -268882,73 +268904,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268959,90 +268981,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1293] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3368), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5033), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1293), [sym_preproc_endregion] = STATE(1293), [sym_preproc_line] = STATE(1293), @@ -269052,47 +269074,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269105,20 +269127,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269129,90 +269151,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1294] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3997), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4305), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1294), [sym_preproc_endregion] = STATE(1294), [sym_preproc_line] = STATE(1294), @@ -269222,47 +269244,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269275,20 +269297,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269305,84 +269327,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1295] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4593), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4304), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1295), [sym_preproc_endregion] = STATE(1295), [sym_preproc_line] = STATE(1295), @@ -269392,47 +269414,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269445,20 +269467,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269475,84 +269497,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1296] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2544), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5116), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2915), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1296), [sym_preproc_endregion] = STATE(1296), [sym_preproc_line] = STATE(1296), @@ -269562,47 +269584,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269627,8 +269649,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269645,84 +269667,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1297] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4597), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3543), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1297), [sym_preproc_endregion] = STATE(1297), [sym_preproc_line] = STATE(1297), @@ -269732,73 +269754,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269809,90 +269831,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1298] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3519), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4875), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1298), [sym_preproc_endregion] = STATE(1298), [sym_preproc_line] = STATE(1298), @@ -269902,47 +269924,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269955,20 +269977,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269979,90 +270001,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1299] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4489), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5079), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1299), [sym_preproc_endregion] = STATE(1299), [sym_preproc_line] = STATE(1299), @@ -270072,47 +270094,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270137,8 +270159,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270155,84 +270177,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1300] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2809), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4299), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1300), [sym_preproc_endregion] = STATE(1300), [sym_preproc_line] = STATE(1300), @@ -270242,47 +270264,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270295,20 +270317,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270319,90 +270341,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1301] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4404), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4298), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1301), [sym_preproc_endregion] = STATE(1301), [sym_preproc_line] = STATE(1301), @@ -270412,47 +270434,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270465,20 +270487,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270495,84 +270517,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1302] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4005), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4295), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1302), [sym_preproc_endregion] = STATE(1302), [sym_preproc_line] = STATE(1302), @@ -270582,73 +270604,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270659,90 +270681,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1303] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4371), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3004), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1303), [sym_preproc_endregion] = STATE(1303), [sym_preproc_line] = STATE(1303), @@ -270752,47 +270774,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270805,20 +270827,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270829,90 +270851,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1304] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3852), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4294), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1304), [sym_preproc_endregion] = STATE(1304), [sym_preproc_line] = STATE(1304), @@ -270922,47 +270944,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270987,7 +271009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -271005,84 +271027,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1305] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3516), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3456), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1305), [sym_preproc_endregion] = STATE(1305), [sym_preproc_line] = STATE(1305), @@ -271092,47 +271114,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271145,20 +271167,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271169,90 +271191,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1306] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3499), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3182), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1306), [sym_preproc_endregion] = STATE(1306), [sym_preproc_line] = STATE(1306), @@ -271262,47 +271284,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271315,20 +271337,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271339,90 +271361,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1307] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2544), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5141), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1307), [sym_preproc_endregion] = STATE(1307), [sym_preproc_line] = STATE(1307), @@ -271432,47 +271454,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271497,8 +271519,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271515,84 +271537,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1308] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4365), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3545), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1308), [sym_preproc_endregion] = STATE(1308), [sym_preproc_line] = STATE(1308), @@ -271602,73 +271624,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271679,90 +271701,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1309] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3508), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3549), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1309), [sym_preproc_endregion] = STATE(1309), [sym_preproc_line] = STATE(1309), @@ -271772,73 +271794,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271849,90 +271871,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1310] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3619), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5034), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7737), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3536), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1310), [sym_preproc_endregion] = STATE(1310), [sym_preproc_line] = STATE(1310), @@ -271942,73 +271964,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_ref] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1899), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -272019,90 +272041,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1311] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4583), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3121), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1311), [sym_preproc_endregion] = STATE(1311), [sym_preproc_line] = STATE(1311), @@ -272112,178 +272134,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1311), [sym_preproc_define] = STATE(1311), [sym_preproc_undef] = STATE(1311), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), - }, - [1312] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2783), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -272300,29 +272152,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272347,7 +272199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -272364,85 +272216,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1431), [sym_raw_string_start] = ACTIONS(1433), }, + [1312] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3535), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [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(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), + }, [1313] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3065), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3551), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1313), [sym_preproc_endregion] = STATE(1313), [sym_preproc_line] = STATE(1313), @@ -272452,73 +272474,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1313), [sym_preproc_define] = STATE(1313), [sym_preproc_undef] = STATE(1313), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -272529,90 +272551,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1314] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4488), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5057), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1314), [sym_preproc_endregion] = STATE(1314), [sym_preproc_line] = STATE(1314), @@ -272622,47 +272644,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1314), [sym_preproc_define] = STATE(1314), [sym_preproc_undef] = STATE(1314), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272687,8 +272709,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -272705,84 +272727,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1315] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4248), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4623), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1315), [sym_preproc_endregion] = STATE(1315), [sym_preproc_line] = STATE(1315), @@ -272792,8 +272814,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -272805,34 +272827,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272857,8 +272879,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -272875,84 +272897,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1316] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4331), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4918), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5261), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6461), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7740), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1316), [sym_preproc_endregion] = STATE(1316), [sym_preproc_line] = STATE(1316), @@ -272962,47 +272984,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_ref] = ACTIONS(2475), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273027,8 +273049,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -273045,84 +273067,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1317] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3859), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3534), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1317), [sym_preproc_endregion] = STATE(1317), [sym_preproc_line] = STATE(1317), @@ -273132,73 +273154,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -273209,90 +273231,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1318] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3860), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3035), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1318), [sym_preproc_endregion] = STATE(1318), [sym_preproc_line] = STATE(1318), @@ -273302,47 +273324,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273355,20 +273377,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -273379,90 +273401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1319] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3861), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3552), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1319), [sym_preproc_endregion] = STATE(1319), [sym_preproc_line] = STATE(1319), @@ -273472,73 +273494,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -273549,90 +273571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1320] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3473), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4996), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1320), [sym_preproc_endregion] = STATE(1320), [sym_preproc_line] = STATE(1320), @@ -273642,47 +273664,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273707,8 +273729,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -273725,84 +273747,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1321] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3862), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4355), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1321), [sym_preproc_endregion] = STATE(1321), [sym_preproc_line] = STATE(1321), @@ -273812,47 +273834,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273877,8 +273899,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -273895,84 +273917,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1322] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3864), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4333), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1322), [sym_preproc_endregion] = STATE(1322), [sym_preproc_line] = STATE(1322), @@ -273982,47 +274004,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274047,7 +274069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -274065,84 +274087,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1323] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4360), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3554), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1323), [sym_preproc_endregion] = STATE(1323), [sym_preproc_line] = STATE(1323), @@ -274152,73 +274174,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -274229,90 +274251,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1324] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3865), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3555), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1324), [sym_preproc_endregion] = STATE(1324), [sym_preproc_line] = STATE(1324), @@ -274322,73 +274344,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -274399,90 +274421,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1325] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3866), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5131), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2916), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1325), [sym_preproc_endregion] = STATE(1325), [sym_preproc_line] = STATE(1325), @@ -274492,47 +274514,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274545,20 +274567,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -274575,84 +274597,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1326] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3869), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5035), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1326), [sym_preproc_endregion] = STATE(1326), [sym_preproc_line] = STATE(1326), @@ -274662,47 +274684,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274715,20 +274737,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -274745,84 +274767,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1327] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3888), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3568), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1327), [sym_preproc_endregion] = STATE(1327), [sym_preproc_line] = STATE(1327), @@ -274832,73 +274854,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1327), [sym_preproc_define] = STATE(1327), [sym_preproc_undef] = STATE(1327), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -274909,90 +274931,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1328] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3507), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3081), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1328), [sym_preproc_endregion] = STATE(1328), [sym_preproc_line] = STATE(1328), @@ -275002,47 +275024,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275055,20 +275077,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -275079,90 +275101,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1329] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3889), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4270), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5086), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6447), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7993), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1329), [sym_preproc_endregion] = STATE(1329), [sym_preproc_line] = STATE(1329), @@ -275172,47 +275194,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2043), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2045), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2049), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275237,7 +275259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -275255,84 +275277,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1330] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3892), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3079), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1330), [sym_preproc_endregion] = STATE(1330), [sym_preproc_line] = STATE(1330), @@ -275342,47 +275364,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275395,20 +275417,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -275419,90 +275441,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1331] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3921), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5047), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1331), [sym_preproc_endregion] = STATE(1331), [sym_preproc_line] = STATE(1331), @@ -275512,47 +275534,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1331), [sym_preproc_define] = STATE(1331), [sym_preproc_undef] = STATE(1331), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275565,20 +275587,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -275595,84 +275617,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1332] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3136), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5049), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1332), [sym_preproc_endregion] = STATE(1332), [sym_preproc_line] = STATE(1332), @@ -275682,47 +275704,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1332), [sym_preproc_define] = STATE(1332), [sym_preproc_undef] = STATE(1332), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275735,20 +275757,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -275759,90 +275781,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1333] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4065), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5046), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1333), [sym_preproc_endregion] = STATE(1333), [sym_preproc_line] = STATE(1333), @@ -275852,47 +275874,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275917,8 +275939,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -275935,84 +275957,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1334] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3480), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5045), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1334), [sym_preproc_endregion] = STATE(1334), [sym_preproc_line] = STATE(1334), @@ -276022,47 +276044,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276087,8 +276109,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -276105,84 +276127,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1335] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3145), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3439), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1335), [sym_preproc_endregion] = STATE(1335), [sym_preproc_line] = STATE(1335), @@ -276192,47 +276214,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276245,20 +276267,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(1491), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1503), [anon_sym_SQUOTE] = ACTIONS(1505), [sym_integer_literal] = ACTIONS(1503), [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -276275,84 +276297,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1336] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3481), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5044), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1336), [sym_preproc_endregion] = STATE(1336), [sym_preproc_line] = STATE(1336), @@ -276362,47 +276384,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276427,8 +276449,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -276445,84 +276467,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1337] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3482), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5041), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1337), [sym_preproc_endregion] = STATE(1337), [sym_preproc_line] = STATE(1337), @@ -276532,47 +276554,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276597,8 +276619,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -276615,84 +276637,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1338] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3483), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5040), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1338), [sym_preproc_endregion] = STATE(1338), [sym_preproc_line] = STATE(1338), @@ -276702,47 +276724,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276767,8 +276789,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -276785,84 +276807,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1339] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3484), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5039), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1339), [sym_preproc_endregion] = STATE(1339), [sym_preproc_line] = STATE(1339), @@ -276872,47 +276894,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276937,8 +276959,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -276955,84 +276977,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1340] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3486), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3533), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1340), [sym_preproc_endregion] = STATE(1340), [sym_preproc_line] = STATE(1340), @@ -277042,73 +277064,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -277119,90 +277141,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1341] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3487), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5030), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1341), [sym_preproc_endregion] = STATE(1341), [sym_preproc_line] = STATE(1341), @@ -277212,47 +277234,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277277,8 +277299,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -277295,84 +277317,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1342] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3488), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5028), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1342), [sym_preproc_endregion] = STATE(1342), [sym_preproc_line] = STATE(1342), @@ -277382,47 +277404,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277447,8 +277469,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -277465,84 +277487,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1343] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3489), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5014), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1343), [sym_preproc_endregion] = STATE(1343), [sym_preproc_line] = STATE(1343), @@ -277552,47 +277574,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277617,8 +277639,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -277635,84 +277657,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1344] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3492), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5013), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1344), [sym_preproc_endregion] = STATE(1344), [sym_preproc_line] = STATE(1344), @@ -277722,47 +277744,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277787,8 +277809,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -277805,84 +277827,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1345] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3494), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3513), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1345), [sym_preproc_endregion] = STATE(1345), [sym_preproc_line] = STATE(1345), @@ -277892,73 +277914,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -277969,90 +277991,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1346] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4620), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(3317), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4283), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1346), [sym_preproc_endregion] = STATE(1346), [sym_preproc_line] = STATE(1346), @@ -278062,47 +278084,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278127,8 +278149,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -278145,84 +278167,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1347] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4359), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5034), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1347), [sym_preproc_endregion] = STATE(1347), [sym_preproc_line] = STATE(1347), @@ -278232,47 +278254,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278297,8 +278319,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -278315,84 +278337,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1348] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4221), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5060), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1348), [sym_preproc_endregion] = STATE(1348), [sym_preproc_line] = STATE(1348), @@ -278402,47 +278424,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278455,20 +278477,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -278479,90 +278501,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1349] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4223), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3438), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1349), [sym_preproc_endregion] = STATE(1349), [sym_preproc_line] = STATE(1349), @@ -278572,47 +278594,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278625,20 +278647,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(1491), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1503), [anon_sym_SQUOTE] = ACTIONS(1505), [sym_integer_literal] = ACTIONS(1503), [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -278655,84 +278677,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1350] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4216), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3437), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1350), [sym_preproc_endregion] = STATE(1350), [sym_preproc_line] = STATE(1350), @@ -278742,47 +278764,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278795,20 +278817,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(1491), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1503), [anon_sym_SQUOTE] = ACTIONS(1505), [sym_integer_literal] = ACTIONS(1503), [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -278825,84 +278847,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1351] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3244), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4194), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5092), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6470), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7753), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1351), [sym_preproc_endregion] = STATE(1351), [sym_preproc_line] = STATE(1351), @@ -278912,47 +278934,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1351), [sym_preproc_define] = STATE(1351), [sym_preproc_undef] = STATE(1351), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_ref] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2117), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2121), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278965,20 +278987,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -278989,90 +279011,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1352] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3518), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4925), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1352), [sym_preproc_endregion] = STATE(1352), [sym_preproc_line] = STATE(1352), @@ -279082,47 +279104,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279135,20 +279157,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -279159,90 +279181,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1353] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4214), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4990), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1353), [sym_preproc_endregion] = STATE(1353), [sym_preproc_line] = STATE(1353), @@ -279252,47 +279274,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279305,20 +279327,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -279329,90 +279351,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1354] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4358), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3436), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1354), [sym_preproc_endregion] = STATE(1354), [sym_preproc_line] = STATE(1354), @@ -279422,47 +279444,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279476,19 +279498,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -279499,90 +279521,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1355] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4197), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3435), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1355), [sym_preproc_endregion] = STATE(1355), [sym_preproc_line] = STATE(1355), @@ -279592,47 +279614,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279645,20 +279667,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(1491), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1503), [anon_sym_SQUOTE] = ACTIONS(1505), [sym_integer_literal] = ACTIONS(1503), [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -279675,84 +279697,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1356] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4195), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4704), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1356), [sym_preproc_endregion] = STATE(1356), [sym_preproc_line] = STATE(1356), @@ -279762,47 +279784,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279827,7 +279849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -279845,84 +279867,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1357] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4340), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6209), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2421), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2527), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1357), [sym_preproc_endregion] = STATE(1357), [sym_preproc_line] = STATE(1357), @@ -279932,47 +279954,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2359), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279997,8 +280019,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -280015,84 +280037,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1358] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4186), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3102), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1358), [sym_preproc_endregion] = STATE(1358), [sym_preproc_line] = STATE(1358), @@ -280102,47 +280124,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280155,20 +280177,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -280179,90 +280201,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1359] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4441), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4249), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1359), [sym_preproc_endregion] = STATE(1359), [sym_preproc_line] = STATE(1359), @@ -280272,47 +280294,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280325,20 +280347,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -280355,84 +280377,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1360] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4181), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3434), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1360), [sym_preproc_endregion] = STATE(1360), [sym_preproc_line] = STATE(1360), @@ -280442,47 +280464,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280495,20 +280517,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(1491), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1503), [anon_sym_SQUOTE] = ACTIONS(1505), [sym_integer_literal] = ACTIONS(1503), [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -280525,84 +280547,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1361] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4180), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5116), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2915), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1361), [sym_preproc_endregion] = STATE(1361), [sym_preproc_line] = STATE(1361), @@ -280612,47 +280634,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280665,20 +280687,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -280689,90 +280711,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1362] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4179), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2947), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1362), [sym_preproc_endregion] = STATE(1362), [sym_preproc_line] = STATE(1362), @@ -280782,47 +280804,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1362), [sym_preproc_define] = STATE(1362), [sym_preproc_undef] = STATE(1362), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280835,20 +280857,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -280859,90 +280881,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1363] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3575), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3433), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1363), [sym_preproc_endregion] = STATE(1363), [sym_preproc_line] = STATE(1363), @@ -280952,47 +280974,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1363), [sym_preproc_define] = STATE(1363), [sym_preproc_undef] = STATE(1363), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281005,20 +281027,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281029,90 +281051,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1364] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4176), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3950), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1364), [sym_preproc_endregion] = STATE(1364), [sym_preproc_line] = STATE(1364), @@ -281122,47 +281144,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281175,20 +281197,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281199,90 +281221,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1365] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4341), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2944), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1365), [sym_preproc_endregion] = STATE(1365), [sym_preproc_line] = STATE(1365), @@ -281292,47 +281314,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281345,20 +281367,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281369,90 +281391,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1366] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4339), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3617), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1366), [sym_preproc_endregion] = STATE(1366), [sym_preproc_line] = STATE(1366), @@ -281462,47 +281484,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281515,20 +281537,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281539,90 +281561,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1367] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4167), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3084), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3260), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6472), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7971), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1367), [sym_preproc_endregion] = STATE(1367), [sym_preproc_line] = STATE(1367), @@ -281632,47 +281654,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281685,20 +281707,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281709,90 +281731,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1368] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4166), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3948), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1368), [sym_preproc_endregion] = STATE(1368), [sym_preproc_line] = STATE(1368), @@ -281802,47 +281824,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281855,20 +281877,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281879,90 +281901,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1369] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4157), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3594), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1369), [sym_preproc_endregion] = STATE(1369), [sym_preproc_line] = STATE(1369), @@ -281972,47 +281994,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282025,20 +282047,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282049,90 +282071,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1370] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4152), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3619), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1370), [sym_preproc_endregion] = STATE(1370), [sym_preproc_line] = STATE(1370), @@ -282142,47 +282164,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282195,20 +282217,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282219,90 +282241,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1371] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3988), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4701), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1371), [sym_preproc_endregion] = STATE(1371), [sym_preproc_line] = STATE(1371), @@ -282312,47 +282334,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282365,20 +282387,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282389,90 +282411,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1372] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4338), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3618), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1372), [sym_preproc_endregion] = STATE(1372), [sym_preproc_line] = STATE(1372), @@ -282482,47 +282504,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282535,20 +282557,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282559,90 +282581,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1373] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4105), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3616), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1373), [sym_preproc_endregion] = STATE(1373), [sym_preproc_line] = STATE(1373), @@ -282652,47 +282674,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282705,20 +282727,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282729,90 +282751,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1374] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(3095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3615), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1374), [sym_preproc_endregion] = STATE(1374), [sym_preproc_line] = STATE(1374), @@ -282822,47 +282844,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282875,20 +282897,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282899,90 +282921,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1375] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3571), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3614), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1375), [sym_preproc_endregion] = STATE(1375), [sym_preproc_line] = STATE(1375), @@ -282992,47 +283014,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283057,7 +283079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -283075,84 +283097,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1376] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4452), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3428), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1376), [sym_preproc_endregion] = STATE(1376), [sym_preproc_line] = STATE(1376), @@ -283162,47 +283184,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283216,19 +283238,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283239,90 +283261,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1377] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2499), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3593), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1377), [sym_preproc_endregion] = STATE(1377), [sym_preproc_line] = STATE(1377), @@ -283332,47 +283354,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283385,20 +283407,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283409,90 +283431,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1378] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4024), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3613), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1378), [sym_preproc_endregion] = STATE(1378), [sym_preproc_line] = STATE(1378), @@ -283502,47 +283524,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283555,20 +283577,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283579,90 +283601,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1379] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3915), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3592), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1379), [sym_preproc_endregion] = STATE(1379), [sym_preproc_line] = STATE(1379), @@ -283672,47 +283694,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283725,20 +283747,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283749,90 +283771,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1380] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3605), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3591), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1380), [sym_preproc_endregion] = STATE(1380), [sym_preproc_line] = STATE(1380), @@ -283842,47 +283864,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283895,20 +283917,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283919,90 +283941,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1381] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3926), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3426), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1381), [sym_preproc_endregion] = STATE(1381), [sym_preproc_line] = STATE(1381), @@ -284012,47 +284034,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284066,19 +284088,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284089,90 +284111,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1382] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4031), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3612), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1382), [sym_preproc_endregion] = STATE(1382), [sym_preproc_line] = STATE(1382), @@ -284182,47 +284204,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284235,20 +284257,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284259,90 +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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1383] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3993), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3261), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1383), [sym_preproc_endregion] = STATE(1383), [sym_preproc_line] = STATE(1383), @@ -284352,47 +284374,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284406,19 +284428,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284429,90 +284451,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1384] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6195), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4410), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3941), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1384), [sym_preproc_endregion] = STATE(1384), [sym_preproc_line] = STATE(1384), @@ -284522,47 +284544,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284575,20 +284597,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284599,90 +284621,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1385] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4035), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7673), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3934), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1385), [sym_preproc_endregion] = STATE(1385), [sym_preproc_line] = STATE(1385), @@ -284692,47 +284714,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284745,20 +284767,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284769,90 +284791,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1386] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4023), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2997), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1386), [sym_preproc_endregion] = STATE(1386), [sym_preproc_line] = STATE(1386), @@ -284862,47 +284884,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284915,20 +284937,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284939,90 +284961,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1387] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3945), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4256), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1387), [sym_preproc_endregion] = STATE(1387), [sym_preproc_line] = STATE(1387), @@ -285032,8 +285054,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -285045,34 +285067,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285097,8 +285119,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285115,84 +285137,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1388] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4616), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2544), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3910), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1388), [sym_preproc_endregion] = STATE(1388), [sym_preproc_line] = STATE(1388), @@ -285202,47 +285224,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285255,20 +285277,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285285,84 +285307,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1389] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3800), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5131), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2916), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1389), [sym_preproc_endregion] = STATE(1389), [sym_preproc_line] = STATE(1389), @@ -285372,47 +285394,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285437,8 +285459,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285455,84 +285477,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1390] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3610), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3912), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1390), [sym_preproc_endregion] = STATE(1390), [sym_preproc_line] = STATE(1390), @@ -285542,47 +285564,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285595,20 +285617,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285619,90 +285641,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1391] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3291), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3425), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1391), [sym_preproc_endregion] = STATE(1391), [sym_preproc_line] = STATE(1391), @@ -285712,47 +285734,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285765,20 +285787,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285789,90 +285811,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1392] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3311), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5048), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5194), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6464), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7724), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1392), [sym_preproc_endregion] = STATE(1392), [sym_preproc_line] = STATE(1392), @@ -285882,47 +285904,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2173), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285935,20 +285957,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285965,84 +285987,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1393] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3216), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3916), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1393), [sym_preproc_endregion] = STATE(1393), [sym_preproc_line] = STATE(1393), @@ -286052,47 +286074,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286117,7 +286139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -286135,84 +286157,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1394] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3522), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3914), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1394), [sym_preproc_endregion] = STATE(1394), [sym_preproc_line] = STATE(1394), @@ -286222,47 +286244,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286275,20 +286297,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286299,90 +286321,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1395] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3815), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3442), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1395), [sym_preproc_endregion] = STATE(1395), [sym_preproc_line] = STATE(1395), @@ -286392,73 +286414,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2099), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286469,90 +286491,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1396] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3502), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4513), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1396), [sym_preproc_endregion] = STATE(1396), [sym_preproc_line] = STATE(1396), @@ -286562,47 +286584,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286615,20 +286637,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286639,90 +286661,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1397] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3998), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4662), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1397), [sym_preproc_endregion] = STATE(1397), [sym_preproc_line] = STATE(1397), @@ -286732,47 +286754,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286785,20 +286807,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286809,90 +286831,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1398] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3609), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4663), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1398), [sym_preproc_endregion] = STATE(1398), [sym_preproc_line] = STATE(1398), @@ -286902,47 +286924,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1398), [sym_preproc_define] = STATE(1398), [sym_preproc_undef] = STATE(1398), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286955,20 +286977,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286979,90 +287001,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1399] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3226), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4665), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1399), [sym_preproc_endregion] = STATE(1399), [sym_preproc_line] = STATE(1399), @@ -287072,47 +287094,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1399), [sym_preproc_define] = STATE(1399), [sym_preproc_undef] = STATE(1399), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287125,20 +287147,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(127), + [anon_sym_stackalloc] = ACTIONS(1491), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), [sym_null_literal] = ACTIONS(1503), [anon_sym_SQUOTE] = ACTIONS(1505), [sym_integer_literal] = ACTIONS(1503), [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287155,84 +287177,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1400] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3799), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4667), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1400), [sym_preproc_endregion] = STATE(1400), [sym_preproc_line] = STATE(1400), @@ -287242,73 +287264,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1400), [sym_preproc_define] = STATE(1400), [sym_preproc_undef] = STATE(1400), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2435), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287319,90 +287341,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1401] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3570), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4669), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1401), [sym_preproc_endregion] = STATE(1401), [sym_preproc_line] = STATE(1401), @@ -287412,47 +287434,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287465,20 +287487,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287489,90 +287511,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1402] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4187), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4531), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1402), [sym_preproc_endregion] = STATE(1402), [sym_preproc_line] = STATE(1402), @@ -287582,8 +287604,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -287595,34 +287617,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287647,8 +287669,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287665,84 +287687,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1403] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3798), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3966), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1403), [sym_preproc_endregion] = STATE(1403), [sym_preproc_line] = STATE(1403), @@ -287752,73 +287774,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1377), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287829,90 +287851,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1404] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3608), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4673), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1404), [sym_preproc_endregion] = STATE(1404), [sym_preproc_line] = STATE(1404), @@ -287922,47 +287944,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287975,20 +287997,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287999,90 +288021,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1405] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3607), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4678), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1405), [sym_preproc_endregion] = STATE(1405), [sym_preproc_line] = STATE(1405), @@ -288092,47 +288114,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288145,20 +288167,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288169,90 +288191,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1406] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3606), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4682), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1406), [sym_preproc_endregion] = STATE(1406), [sym_preproc_line] = STATE(1406), @@ -288262,47 +288284,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1406), [sym_preproc_define] = STATE(1406), [sym_preproc_undef] = STATE(1406), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288315,20 +288337,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288339,90 +288361,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1407] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3797), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4684), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1407), [sym_preproc_endregion] = STATE(1407), [sym_preproc_line] = STATE(1407), @@ -288432,73 +288454,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2435), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288509,90 +288531,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1408] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3604), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4685), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1408), [sym_preproc_endregion] = STATE(1408), [sym_preproc_line] = STATE(1408), @@ -288602,47 +288624,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288655,20 +288677,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288679,90 +288701,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1409] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3603), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4686), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1409), [sym_preproc_endregion] = STATE(1409), [sym_preproc_line] = STATE(1409), @@ -288772,47 +288794,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288825,20 +288847,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288849,90 +288871,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1410] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4487), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4691), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1410), [sym_preproc_endregion] = STATE(1410), [sym_preproc_line] = STATE(1410), @@ -288942,47 +288964,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288995,20 +289017,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -289019,90 +289041,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1411] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4483), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4018), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1411), [sym_preproc_endregion] = STATE(1411), [sym_preproc_line] = STATE(1411), @@ -289112,47 +289134,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -289165,20 +289187,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -289189,90 +289211,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1412] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3794), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5116), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2915), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1412), [sym_preproc_endregion] = STATE(1412), [sym_preproc_line] = STATE(1412), @@ -289282,73 +289304,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1412), [sym_preproc_define] = STATE(1412), [sym_preproc_undef] = STATE(1412), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -289359,90 +289381,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1413] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3435), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3487), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1413), [sym_preproc_endregion] = STATE(1413), [sym_preproc_line] = STATE(1413), @@ -289452,47 +289474,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1413), [sym_preproc_define] = STATE(1413), [sym_preproc_undef] = STATE(1413), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -289517,7 +289539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -289535,84 +289557,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1414] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3793), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4693), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1414), [sym_preproc_endregion] = STATE(1414), [sym_preproc_line] = STATE(1414), @@ -289622,73 +289644,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2435), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -289699,90 +289721,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1415] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4446), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5329), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7731), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3964), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1415), [sym_preproc_endregion] = STATE(1415), [sym_preproc_line] = STATE(1415), @@ -289792,47 +289814,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -289845,20 +289867,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -289869,90 +289891,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1416] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3192), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2948), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1416), [sym_preproc_endregion] = STATE(1416), [sym_preproc_line] = STATE(1416), @@ -289962,47 +289984,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290015,20 +290037,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290039,90 +290061,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1417] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2351), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(3095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4353), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1417), [sym_preproc_endregion] = STATE(1417), [sym_preproc_line] = STATE(1417), @@ -290132,47 +290154,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290185,20 +290207,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290215,84 +290237,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1418] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3439), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4656), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1418), [sym_preproc_endregion] = STATE(1418), [sym_preproc_line] = STATE(1418), @@ -290302,47 +290324,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290355,20 +290377,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290379,90 +290401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1419] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3792), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3778), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1419), [sym_preproc_endregion] = STATE(1419), [sym_preproc_line] = STATE(1419), @@ -290472,73 +290494,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290549,90 +290571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1420] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3207), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4697), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1420), [sym_preproc_endregion] = STATE(1420), [sym_preproc_line] = STATE(1420), @@ -290642,47 +290664,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290695,20 +290717,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290719,90 +290741,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1421] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4465), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5116), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2915), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1421), [sym_preproc_endregion] = STATE(1421), [sym_preproc_line] = STATE(1421), @@ -290812,47 +290834,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290877,8 +290899,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290895,84 +290917,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1422] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3791), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2527), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1422), [sym_preproc_endregion] = STATE(1422), [sym_preproc_line] = STATE(1422), @@ -290982,73 +291004,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291059,90 +291081,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1423] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3206), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5061), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1423), [sym_preproc_endregion] = STATE(1423), [sym_preproc_line] = STATE(1423), @@ -291152,47 +291174,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291205,20 +291227,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291229,90 +291251,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1424] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3205), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3636), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1424), [sym_preproc_endregion] = STATE(1424), [sym_preproc_line] = STATE(1424), @@ -291322,47 +291344,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291387,7 +291409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -291405,84 +291427,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1425] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2644), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5116), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2915), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1425), [sym_preproc_endregion] = STATE(1425), [sym_preproc_line] = STATE(1425), @@ -291492,47 +291514,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291545,20 +291567,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291569,90 +291591,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1426] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3204), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5131), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2916), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1426), [sym_preproc_endregion] = STATE(1426), [sym_preproc_line] = STATE(1426), @@ -291662,47 +291684,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291715,20 +291737,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291739,90 +291761,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1427] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3203), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4351), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1427), [sym_preproc_endregion] = STATE(1427), [sym_preproc_line] = STATE(1427), @@ -291832,47 +291854,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291885,20 +291907,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291909,90 +291931,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1428] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3202), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3754), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1428), [sym_preproc_endregion] = STATE(1428), [sym_preproc_line] = STATE(1428), @@ -292002,47 +292024,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292055,20 +292077,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292079,90 +292101,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1429] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3201), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4349), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1429), [sym_preproc_endregion] = STATE(1429), [sym_preproc_line] = STATE(1429), @@ -292172,47 +292194,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1429), [sym_preproc_define] = STATE(1429), [sym_preproc_undef] = STATE(1429), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292225,20 +292247,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292249,90 +292271,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1430] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3788), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3168), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1430), [sym_preproc_endregion] = STATE(1430), [sym_preproc_line] = STATE(1430), @@ -292342,73 +292364,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1430), [sym_preproc_define] = STATE(1430), [sym_preproc_undef] = STATE(1430), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2025), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292419,90 +292441,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1431] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3893), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4156), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1431), [sym_preproc_endregion] = STATE(1431), [sym_preproc_line] = STATE(1431), @@ -292512,8 +292534,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1431), [sym_preproc_define] = STATE(1431), [sym_preproc_undef] = STATE(1431), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -292525,34 +292547,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292577,8 +292599,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292595,84 +292617,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1432] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3200), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3917), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1432), [sym_preproc_endregion] = STATE(1432), [sym_preproc_line] = STATE(1432), @@ -292682,47 +292704,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1432), [sym_preproc_define] = STATE(1432), [sym_preproc_undef] = STATE(1432), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292735,20 +292757,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292759,90 +292781,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1433] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3199), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3920), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1433), [sym_preproc_endregion] = STATE(1433), [sym_preproc_line] = STATE(1433), @@ -292852,47 +292874,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292905,20 +292927,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292929,90 +292951,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1434] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3194), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3921), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1434), [sym_preproc_endregion] = STATE(1434), [sym_preproc_line] = STATE(1434), @@ -293022,47 +293044,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -293075,20 +293097,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -293099,90 +293121,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1435] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3787), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3167), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1435), [sym_preproc_endregion] = STATE(1435), [sym_preproc_line] = STATE(1435), @@ -293192,73 +293214,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2025), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -293269,90 +293291,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1436] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4376), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5072), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1436), [sym_preproc_endregion] = STATE(1436), [sym_preproc_line] = STATE(1436), @@ -293362,8 +293384,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -293375,34 +293397,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -293427,8 +293449,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -293445,84 +293467,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1437] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3188), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3925), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1437), [sym_preproc_endregion] = STATE(1437), [sym_preproc_line] = STATE(1437), @@ -293532,47 +293554,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -293585,20 +293607,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -293609,90 +293631,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1438] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3602), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3943), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1438), [sym_preproc_endregion] = STATE(1438), [sym_preproc_line] = STATE(1438), @@ -293702,47 +293724,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -293755,20 +293777,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -293779,90 +293801,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1439] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), [sym_expression] = STATE(3785), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1439), [sym_preproc_endregion] = STATE(1439), [sym_preproc_line] = STATE(1439), @@ -293872,167 +293894,167 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1440] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3573), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3780), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1440), [sym_preproc_endregion] = STATE(1440), [sym_preproc_line] = STATE(1440), @@ -294042,47 +294064,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294095,20 +294117,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294119,90 +294141,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1441] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3408), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3944), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1441), [sym_preproc_endregion] = STATE(1441), [sym_preproc_line] = STATE(1441), @@ -294212,47 +294234,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294265,20 +294287,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294289,90 +294311,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1442] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3449), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3969), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1442), [sym_preproc_endregion] = STATE(1442), [sym_preproc_line] = STATE(1442), @@ -294382,47 +294404,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294447,8 +294469,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294465,84 +294487,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1443] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3588), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3967), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1443), [sym_preproc_endregion] = STATE(1443), [sym_preproc_line] = STATE(1443), @@ -294552,47 +294574,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294605,20 +294627,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294629,90 +294651,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1444] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3589), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4359), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1444), [sym_preproc_endregion] = STATE(1444), [sym_preproc_line] = STATE(1444), @@ -294722,47 +294744,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294775,20 +294797,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294799,90 +294821,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1445] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3601), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3968), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1445), [sym_preproc_endregion] = STATE(1445), [sym_preproc_line] = STATE(1445), @@ -294892,47 +294914,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294945,20 +294967,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294969,90 +294991,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1446] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4045), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3972), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1446), [sym_preproc_endregion] = STATE(1446), [sym_preproc_line] = STATE(1446), @@ -295062,47 +295084,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295115,20 +295137,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295145,84 +295167,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1447] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3184), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3974), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1447), [sym_preproc_endregion] = STATE(1447), [sym_preproc_line] = STATE(1447), @@ -295232,47 +295254,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295297,7 +295319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -295315,84 +295337,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1448] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3503), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3975), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1448), [sym_preproc_endregion] = STATE(1448), [sym_preproc_line] = STATE(1448), @@ -295402,47 +295424,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295455,20 +295477,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295479,90 +295501,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1449] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2710), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3100), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1449), [sym_preproc_endregion] = STATE(1449), [sym_preproc_line] = STATE(1449), @@ -295572,47 +295594,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295625,20 +295647,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295649,90 +295671,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1450] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3754), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2986), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1450), [sym_preproc_endregion] = STATE(1450), [sym_preproc_line] = STATE(1450), @@ -295742,73 +295764,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295819,90 +295841,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1451] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3181), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4177), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1451), [sym_preproc_endregion] = STATE(1451), [sym_preproc_line] = STATE(1451), @@ -295912,47 +295934,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295965,20 +295987,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295995,84 +296017,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1452] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3553), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3073), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3240), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7866), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1452), [sym_preproc_endregion] = STATE(1452), [sym_preproc_line] = STATE(1452), @@ -296082,73 +296104,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -296159,90 +296181,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1453] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3554), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3197), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1453), [sym_preproc_endregion] = STATE(1453), [sym_preproc_line] = STATE(1453), @@ -296252,73 +296274,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2025), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -296329,90 +296351,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1454] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3555), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3124), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1454), [sym_preproc_endregion] = STATE(1454), [sym_preproc_line] = STATE(1454), @@ -296422,73 +296444,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2025), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -296499,90 +296521,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1455] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3651), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3152), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1455), [sym_preproc_endregion] = STATE(1455), [sym_preproc_line] = STATE(1455), @@ -296592,73 +296614,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2025), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -296669,90 +296691,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1456] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3649), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4347), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1456), [sym_preproc_endregion] = STATE(1456), [sym_preproc_line] = STATE(1456), @@ -296762,73 +296784,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [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(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -296839,90 +296861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1457] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3339), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3153), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1457), [sym_preproc_endregion] = STATE(1457), [sym_preproc_line] = STATE(1457), @@ -296932,47 +296954,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296985,20 +297007,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -297009,90 +297031,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1458] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(3095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3166), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1458), [sym_preproc_endregion] = STATE(1458), [sym_preproc_line] = STATE(1458), @@ -297102,47 +297124,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297155,20 +297177,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -297179,90 +297201,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1459] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3648), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4880), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1459), [sym_preproc_endregion] = STATE(1459), [sym_preproc_line] = STATE(1459), @@ -297272,73 +297294,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -297349,90 +297371,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1460] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4038), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3154), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1460), [sym_preproc_endregion] = STATE(1460), [sym_preproc_line] = STATE(1460), @@ -297442,73 +297464,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2025), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -297519,90 +297541,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1461] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3631), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4879), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1461), [sym_preproc_endregion] = STATE(1461), [sym_preproc_line] = STATE(1461), @@ -297612,73 +297634,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -297689,90 +297711,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1462] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3629), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4878), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1462), [sym_preproc_endregion] = STATE(1462), [sym_preproc_line] = STATE(1462), @@ -297782,73 +297804,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -297859,90 +297881,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1463] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3627), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4720), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1463), [sym_preproc_endregion] = STATE(1463), [sym_preproc_line] = STATE(1463), @@ -297952,73 +297974,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -298029,90 +298051,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1464] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3559), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4877), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1464), [sym_preproc_endregion] = STATE(1464), [sym_preproc_line] = STATE(1464), @@ -298122,73 +298144,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -298199,90 +298221,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1465] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3626), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3165), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1465), [sym_preproc_endregion] = STATE(1465), [sym_preproc_line] = STATE(1465), @@ -298292,73 +298314,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1465), [sym_preproc_define] = STATE(1465), [sym_preproc_undef] = STATE(1465), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2025), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -298369,90 +298391,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1466] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4077), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3157), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1466), [sym_preproc_endregion] = STATE(1466), [sym_preproc_line] = STATE(1466), @@ -298462,47 +298484,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298515,20 +298537,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -298539,90 +298561,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1467] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3260), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4768), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1467), [sym_preproc_endregion] = STATE(1467), [sym_preproc_line] = STATE(1467), @@ -298632,47 +298654,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1467), [sym_preproc_define] = STATE(1467), [sym_preproc_undef] = STATE(1467), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298685,20 +298707,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -298715,84 +298737,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1468] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3169), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4868), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1468), [sym_preproc_endregion] = STATE(1468), [sym_preproc_line] = STATE(1468), @@ -298802,47 +298824,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298855,20 +298877,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -298885,84 +298907,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1469] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3572), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3141), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1469), [sym_preproc_endregion] = STATE(1469), [sym_preproc_line] = STATE(1469), @@ -298972,217 +298994,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), - }, - [1470] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2865), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4121), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1470), - [sym_preproc_endregion] = STATE(1470), - [sym_preproc_line] = STATE(1470), - [sym_preproc_pragma] = STATE(1470), - [sym_preproc_nullable] = STATE(1470), - [sym_preproc_error] = STATE(1470), - [sym_preproc_warning] = STATE(1470), - [sym_preproc_define] = STATE(1470), - [sym_preproc_undef] = STATE(1470), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -299207,7 +299059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -299224,135 +299076,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1517), [sym_raw_string_start] = ACTIONS(1519), }, - [1471] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3950), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1471), - [sym_preproc_endregion] = STATE(1471), - [sym_preproc_line] = STATE(1471), - [sym_preproc_pragma] = STATE(1471), - [sym_preproc_nullable] = STATE(1471), - [sym_preproc_error] = STATE(1471), - [sym_preproc_warning] = STATE(1471), - [sym_preproc_define] = STATE(1471), - [sym_preproc_undef] = STATE(1471), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [1470] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4864), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1470), + [sym_preproc_endregion] = STATE(1470), + [sym_preproc_line] = STATE(1470), + [sym_preproc_pragma] = STATE(1470), + [sym_preproc_nullable] = STATE(1470), + [sym_preproc_error] = STATE(1470), + [sym_preproc_warning] = STATE(1470), + [sym_preproc_define] = STATE(1470), + [sym_preproc_undef] = STATE(1470), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -299365,20 +299217,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -299394,85 +299246,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, + [1471] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3158), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1471), + [sym_preproc_endregion] = STATE(1471), + [sym_preproc_line] = STATE(1471), + [sym_preproc_pragma] = STATE(1471), + [sym_preproc_nullable] = STATE(1471), + [sym_preproc_error] = STATE(1471), + [sym_preproc_warning] = STATE(1471), + [sym_preproc_define] = STATE(1471), + [sym_preproc_undef] = STATE(1471), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2025), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), + }, [1472] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3337), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4852), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1472), [sym_preproc_endregion] = STATE(1472), [sym_preproc_line] = STATE(1472), @@ -299482,73 +299504,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -299559,90 +299581,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1473] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3429), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4022), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1473), [sym_preproc_endregion] = STATE(1473), [sym_preproc_line] = STATE(1473), @@ -299652,47 +299674,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1473), [sym_preproc_define] = STATE(1473), [sym_preproc_undef] = STATE(1473), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -299705,20 +299727,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -299729,90 +299751,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1474] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2544), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4021), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1474), [sym_preproc_endregion] = STATE(1474), [sym_preproc_line] = STATE(1474), @@ -299822,47 +299844,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -299887,8 +299909,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -299905,84 +299927,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1475] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3576), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4020), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1475), [sym_preproc_endregion] = STATE(1475), [sym_preproc_line] = STATE(1475), @@ -299992,73 +300014,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300069,90 +300091,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1476] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3390), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4248), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5082), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8107), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1476), [sym_preproc_endregion] = STATE(1476), [sym_preproc_line] = STATE(1476), @@ -300162,47 +300184,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_ref] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1747), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -300215,20 +300237,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300239,90 +300261,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1477] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3391), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4761), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1477), [sym_preproc_endregion] = STATE(1477), [sym_preproc_line] = STATE(1477), @@ -300332,47 +300354,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -300385,20 +300407,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300409,90 +300431,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1478] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3395), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4345), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1478), [sym_preproc_endregion] = STATE(1478), [sym_preproc_line] = STATE(1478), @@ -300502,47 +300524,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -300555,20 +300577,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300579,90 +300601,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1479] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3396), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4017), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1479), [sym_preproc_endregion] = STATE(1479), [sym_preproc_line] = STATE(1479), @@ -300672,47 +300694,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -300725,20 +300747,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300749,90 +300771,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1480] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3401), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5141), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1480), [sym_preproc_endregion] = STATE(1480), [sym_preproc_line] = STATE(1480), @@ -300842,47 +300864,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -300895,20 +300917,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300919,90 +300941,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1481] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3403), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3160), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1481), [sym_preproc_endregion] = STATE(1481), [sym_preproc_line] = STATE(1481), @@ -301012,47 +301034,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1481), [sym_preproc_define] = STATE(1481), [sym_preproc_undef] = STATE(1481), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301077,7 +301099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -301095,84 +301117,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1482] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4418), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5036), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1482), [sym_preproc_endregion] = STATE(1482), [sym_preproc_line] = STATE(1482), @@ -301182,47 +301204,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1482), [sym_preproc_define] = STATE(1482), [sym_preproc_undef] = STATE(1482), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301247,8 +301269,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301265,84 +301287,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1483] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3406), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4010), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1483), [sym_preproc_endregion] = STATE(1483), [sym_preproc_line] = STATE(1483), @@ -301352,47 +301374,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1483), [sym_preproc_define] = STATE(1483), [sym_preproc_undef] = STATE(1483), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301405,20 +301427,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301429,90 +301451,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1484] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4247), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4009), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1484), [sym_preproc_endregion] = STATE(1484), [sym_preproc_line] = STATE(1484), @@ -301522,47 +301544,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1484), [sym_preproc_define] = STATE(1484), [sym_preproc_undef] = STATE(1484), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301575,20 +301597,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301599,90 +301621,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1485] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3407), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4006), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1485), [sym_preproc_endregion] = STATE(1485), [sym_preproc_line] = STATE(1485), @@ -301692,47 +301714,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1485), [sym_preproc_define] = STATE(1485), [sym_preproc_undef] = STATE(1485), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301745,20 +301767,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301769,90 +301791,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1486] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3409), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4763), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1486), [sym_preproc_endregion] = STATE(1486), [sym_preproc_line] = STATE(1486), @@ -301862,47 +301884,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1486), [sym_preproc_define] = STATE(1486), [sym_preproc_undef] = STATE(1486), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301915,20 +301937,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301939,90 +301961,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1487] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3411), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3995), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1487), [sym_preproc_endregion] = STATE(1487), [sym_preproc_line] = STATE(1487), @@ -302032,47 +302054,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302085,20 +302107,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302109,90 +302131,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1488] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3412), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3992), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1488), [sym_preproc_endregion] = STATE(1488), [sym_preproc_line] = STATE(1488), @@ -302202,47 +302224,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1488), [sym_preproc_define] = STATE(1488), [sym_preproc_undef] = STATE(1488), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302255,21 +302277,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), - [aux_sym_preproc_region_token1] = ACTIONS(3), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), @@ -302279,90 +302301,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1489] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3599), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6199), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4660), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5128), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6468), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7848), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1489), [sym_preproc_endregion] = STATE(1489), [sym_preproc_line] = STATE(1489), @@ -302372,47 +302394,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1489), [sym_preproc_define] = STATE(1489), [sym_preproc_undef] = STATE(1489), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2435), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2439), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302425,20 +302447,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302449,90 +302471,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1490] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4073), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4711), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1490), [sym_preproc_endregion] = STATE(1490), [sym_preproc_line] = STATE(1490), @@ -302542,47 +302564,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1490), [sym_preproc_define] = STATE(1490), [sym_preproc_undef] = STATE(1490), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302595,20 +302617,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302619,90 +302641,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1491] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3703), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4820), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1491), [sym_preproc_endregion] = STATE(1491), [sym_preproc_line] = STATE(1491), @@ -302712,73 +302734,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [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(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302789,90 +302811,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1492] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3580), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4735), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1492), [sym_preproc_endregion] = STATE(1492), [sym_preproc_line] = STATE(1492), @@ -302882,73 +302904,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [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(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302959,90 +302981,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1493] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3989), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4750), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1493), [sym_preproc_endregion] = STATE(1493), [sym_preproc_line] = STATE(1493), @@ -303052,47 +303074,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303117,8 +303139,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303135,84 +303157,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1494] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3872), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4753), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1494), [sym_preproc_endregion] = STATE(1494), [sym_preproc_line] = STATE(1494), @@ -303222,47 +303244,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303287,8 +303309,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303305,84 +303327,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1495] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3436), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4756), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1495), [sym_preproc_endregion] = STATE(1495), [sym_preproc_line] = STATE(1495), @@ -303392,47 +303414,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303445,20 +303467,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303469,90 +303491,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1496] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4626), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2938), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4757), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1496), [sym_preproc_endregion] = STATE(1496), [sym_preproc_line] = STATE(1496), @@ -303562,47 +303584,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303627,8 +303649,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303645,84 +303667,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1497] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3322), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4759), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1497), [sym_preproc_endregion] = STATE(1497), [sym_preproc_line] = STATE(1497), @@ -303732,47 +303754,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1497), [sym_preproc_define] = STATE(1497), [sym_preproc_undef] = STATE(1497), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303785,20 +303807,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303815,84 +303837,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1498] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2795), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4760), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1498), [sym_preproc_endregion] = STATE(1498), [sym_preproc_line] = STATE(1498), @@ -303902,47 +303924,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1498), [sym_preproc_define] = STATE(1498), [sym_preproc_undef] = STATE(1498), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303955,20 +303977,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303979,90 +304001,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1499] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(3095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3991), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1499), [sym_preproc_endregion] = STATE(1499), [sym_preproc_line] = STATE(1499), @@ -304072,47 +304094,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1499), [sym_preproc_define] = STATE(1499), [sym_preproc_undef] = STATE(1499), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304137,8 +304159,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -304155,84 +304177,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1500] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3515), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3990), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1500), [sym_preproc_endregion] = STATE(1500), [sym_preproc_line] = STATE(1500), @@ -304242,47 +304264,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1500), [sym_preproc_define] = STATE(1500), [sym_preproc_undef] = STATE(1500), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304295,20 +304317,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -304319,90 +304341,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1501] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4558), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4778), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1501), [sym_preproc_endregion] = STATE(1501), [sym_preproc_line] = STATE(1501), @@ -304412,47 +304434,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1501), [sym_preproc_define] = STATE(1501), [sym_preproc_undef] = STATE(1501), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304477,8 +304499,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -304495,84 +304517,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1502] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4560), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4779), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1502), [sym_preproc_endregion] = STATE(1502), [sym_preproc_line] = STATE(1502), @@ -304582,47 +304604,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1502), [sym_preproc_define] = STATE(1502), [sym_preproc_undef] = STATE(1502), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304647,8 +304669,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -304665,84 +304687,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1503] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4405), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5032), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1503), [sym_preproc_endregion] = STATE(1503), [sym_preproc_line] = STATE(1503), @@ -304752,47 +304774,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1503), [sym_preproc_define] = STATE(1503), [sym_preproc_undef] = STATE(1503), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304817,8 +304839,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -304835,84 +304857,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1504] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4319), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4729), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1504), [sym_preproc_endregion] = STATE(1504), [sym_preproc_line] = STATE(1504), @@ -304922,47 +304944,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1504), [sym_preproc_define] = STATE(1504), [sym_preproc_undef] = STATE(1504), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304987,8 +305009,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -305005,84 +305027,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1505] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4626), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2938), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3787), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1505), [sym_preproc_endregion] = STATE(1505), [sym_preproc_line] = STATE(1505), @@ -305092,47 +305114,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1505), [sym_preproc_define] = STATE(1505), [sym_preproc_undef] = STATE(1505), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305157,8 +305179,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -305175,84 +305197,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1506] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3220), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3662), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1506), [sym_preproc_endregion] = STATE(1506), [sym_preproc_line] = STATE(1506), @@ -305262,47 +305284,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1506), [sym_preproc_define] = STATE(1506), [sym_preproc_undef] = STATE(1506), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305315,20 +305337,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(127), + [anon_sym_stackalloc] = ACTIONS(1491), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), [sym_null_literal] = ACTIONS(1503), [anon_sym_SQUOTE] = ACTIONS(1505), [sym_integer_literal] = ACTIONS(1503), [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -305345,84 +305367,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1507] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3524), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4344), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1507), [sym_preproc_endregion] = STATE(1507), [sym_preproc_line] = STATE(1507), @@ -305432,47 +305454,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1507), [sym_preproc_define] = STATE(1507), [sym_preproc_undef] = STATE(1507), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305485,20 +305507,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -305509,90 +305531,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1508] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3180), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3183), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1508), [sym_preproc_endregion] = STATE(1508), [sym_preproc_line] = STATE(1508), @@ -305602,47 +305624,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1508), [sym_preproc_define] = STATE(1508), [sym_preproc_undef] = STATE(1508), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305655,20 +305677,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -305679,90 +305701,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1509] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4342), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3977), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1509), [sym_preproc_endregion] = STATE(1509), [sym_preproc_line] = STATE(1509), @@ -305772,47 +305794,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1509), [sym_preproc_define] = STATE(1509), [sym_preproc_undef] = STATE(1509), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305837,8 +305859,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -305855,84 +305877,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1510] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4348), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4343), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1510), [sym_preproc_endregion] = STATE(1510), [sym_preproc_line] = STATE(1510), @@ -305942,47 +305964,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1510), [sym_preproc_define] = STATE(1510), [sym_preproc_undef] = STATE(1510), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305995,20 +306017,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -306025,84 +306047,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1511] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4354), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3161), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1511), [sym_preproc_endregion] = STATE(1511), [sym_preproc_line] = STATE(1511), @@ -306112,47 +306134,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1511), [sym_preproc_define] = STATE(1511), [sym_preproc_undef] = STATE(1511), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -306165,20 +306187,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -306189,90 +306211,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1512] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4626), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2938), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4517), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1512), [sym_preproc_endregion] = STATE(1512), [sym_preproc_line] = STATE(1512), @@ -306282,47 +306304,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1512), [sym_preproc_define] = STATE(1512), [sym_preproc_undef] = STATE(1512), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -306347,8 +306369,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -306365,84 +306387,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1513] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2749), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4516), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1513), [sym_preproc_endregion] = STATE(1513), [sym_preproc_line] = STATE(1513), @@ -306452,47 +306474,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1513), [sym_preproc_define] = STATE(1513), [sym_preproc_undef] = STATE(1513), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -306505,20 +306527,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -306529,90 +306551,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1514] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4361), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3133), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1514), [sym_preproc_endregion] = STATE(1514), [sym_preproc_line] = STATE(1514), @@ -306622,47 +306644,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1514), [sym_preproc_define] = STATE(1514), [sym_preproc_undef] = STATE(1514), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -306675,20 +306697,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -306699,90 +306721,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1515] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2784), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4336), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1515), [sym_preproc_endregion] = STATE(1515), [sym_preproc_line] = STATE(1515), @@ -306792,73 +306814,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1515), [sym_preproc_define] = STATE(1515), [sym_preproc_undef] = STATE(1515), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -306869,90 +306891,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1516] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3763), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4838), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1516), [sym_preproc_endregion] = STATE(1516), [sym_preproc_line] = STATE(1516), @@ -306962,47 +306984,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1516), [sym_preproc_define] = STATE(1516), [sym_preproc_undef] = STATE(1516), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307015,20 +307037,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307039,90 +307061,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1517] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3750), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4906), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1517), [sym_preproc_endregion] = STATE(1517), [sym_preproc_line] = STATE(1517), @@ -307132,47 +307154,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1517), [sym_preproc_define] = STATE(1517), [sym_preproc_undef] = STATE(1517), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307185,20 +307207,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307209,90 +307231,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1518] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3758), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4832), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1518), [sym_preproc_endregion] = STATE(1518), [sym_preproc_line] = STATE(1518), @@ -307302,47 +307324,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1518), [sym_preproc_define] = STATE(1518), [sym_preproc_undef] = STATE(1518), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307355,20 +307377,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307379,90 +307401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1519] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3525), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3134), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1519), [sym_preproc_endregion] = STATE(1519), [sym_preproc_line] = STATE(1519), @@ -307472,47 +307494,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1519), [sym_preproc_define] = STATE(1519), [sym_preproc_undef] = STATE(1519), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307525,20 +307547,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307549,90 +307571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1520] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3451), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3519), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1520), [sym_preproc_endregion] = STATE(1520), [sym_preproc_line] = STATE(1520), @@ -307642,73 +307664,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1520), [sym_preproc_define] = STATE(1520), [sym_preproc_undef] = STATE(1520), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307719,90 +307741,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1521] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3175), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4340), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1521), [sym_preproc_endregion] = STATE(1521), [sym_preproc_line] = STATE(1521), @@ -307812,47 +307834,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1521), [sym_preproc_define] = STATE(1521), [sym_preproc_undef] = STATE(1521), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307865,20 +307887,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307889,90 +307911,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1522] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2499), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6215), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4087), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5069), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6453), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7723), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1522), [sym_preproc_endregion] = STATE(1522), [sym_preproc_line] = STATE(1522), @@ -307982,47 +308004,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1522), [sym_preproc_define] = STATE(1522), [sym_preproc_undef] = STATE(1522), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2153), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2157), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308035,20 +308057,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -308065,84 +308087,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1523] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2718), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2527), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1523), [sym_preproc_endregion] = STATE(1523), [sym_preproc_line] = STATE(1523), @@ -308152,47 +308174,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1523), [sym_preproc_define] = STATE(1523), [sym_preproc_undef] = STATE(1523), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1325), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308205,20 +308227,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -308229,90 +308251,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1524] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3526), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3455), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1524), [sym_preproc_endregion] = STATE(1524), [sym_preproc_line] = STATE(1524), @@ -308322,47 +308344,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1524), [sym_preproc_define] = STATE(1524), [sym_preproc_undef] = STATE(1524), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308375,20 +308397,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -308399,90 +308421,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1525] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2743), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3495), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1525), [sym_preproc_endregion] = STATE(1525), [sym_preproc_line] = STATE(1525), @@ -308492,47 +308514,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1525), [sym_preproc_define] = STATE(1525), [sym_preproc_undef] = STATE(1525), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308545,20 +308567,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -308569,90 +308591,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1526] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2735), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6182), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4631), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5134), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6448), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7817), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1526), [sym_preproc_endregion] = STATE(1526), [sym_preproc_line] = STATE(1526), @@ -308662,47 +308684,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1526), [sym_preproc_define] = STATE(1526), [sym_preproc_undef] = STATE(1526), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2455), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2459), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308715,20 +308737,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -308739,90 +308761,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1527] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4408), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4339), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1527), [sym_preproc_endregion] = STATE(1527), [sym_preproc_line] = STATE(1527), @@ -308832,47 +308854,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1527), [sym_preproc_define] = STATE(1527), [sym_preproc_undef] = STATE(1527), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308885,20 +308907,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -308915,84 +308937,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1528] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3461), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3826), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1528), [sym_preproc_endregion] = STATE(1528), [sym_preproc_line] = STATE(1528), @@ -309002,47 +309024,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1528), [sym_preproc_define] = STATE(1528), [sym_preproc_undef] = STATE(1528), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309055,20 +309077,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309079,90 +309101,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1529] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2724), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3233), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1529), [sym_preproc_endregion] = STATE(1529), [sym_preproc_line] = STATE(1529), @@ -309172,47 +309194,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1529), [sym_preproc_define] = STATE(1529), [sym_preproc_undef] = STATE(1529), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309225,20 +309247,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309249,90 +309271,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1530] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4131), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4577), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1530), [sym_preproc_endregion] = STATE(1530), [sym_preproc_line] = STATE(1530), @@ -309342,8 +309364,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1530), [sym_preproc_define] = STATE(1530), [sym_preproc_undef] = STATE(1530), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -309355,34 +309377,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309407,8 +309429,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309425,84 +309447,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1531] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2683), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3676), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1531), [sym_preproc_endregion] = STATE(1531), [sym_preproc_line] = STATE(1531), @@ -309512,47 +309534,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1531), [sym_preproc_define] = STATE(1531), [sym_preproc_undef] = STATE(1531), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309565,20 +309587,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309589,90 +309611,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1532] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2703), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5006), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1532), [sym_preproc_endregion] = STATE(1532), [sym_preproc_line] = STATE(1532), @@ -309682,47 +309704,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1532), [sym_preproc_define] = STATE(1532), [sym_preproc_undef] = STATE(1532), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309735,20 +309757,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309759,90 +309781,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1533] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3650), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5007), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1533), [sym_preproc_endregion] = STATE(1533), [sym_preproc_line] = STATE(1533), @@ -309852,8 +309874,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1533), [sym_preproc_define] = STATE(1533), [sym_preproc_undef] = STATE(1533), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -309865,34 +309887,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309917,8 +309939,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309935,84 +309957,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1534] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2697), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4012), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1534), [sym_preproc_endregion] = STATE(1534), [sym_preproc_line] = STATE(1534), @@ -310022,47 +310044,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1534), [sym_preproc_define] = STATE(1534), [sym_preproc_undef] = STATE(1534), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310075,20 +310097,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310099,90 +310121,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1535] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2692), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3291), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1535), [sym_preproc_endregion] = STATE(1535), [sym_preproc_line] = STATE(1535), @@ -310192,47 +310214,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1535), [sym_preproc_define] = STATE(1535), [sym_preproc_undef] = STATE(1535), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310245,20 +310267,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310269,90 +310291,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1536] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2699), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5008), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1536), [sym_preproc_endregion] = STATE(1536), [sym_preproc_line] = STATE(1536), @@ -310362,47 +310384,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1536), [sym_preproc_define] = STATE(1536), [sym_preproc_undef] = STATE(1536), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310415,20 +310437,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310439,90 +310461,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1537] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2675), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3678), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1537), [sym_preproc_endregion] = STATE(1537), [sym_preproc_line] = STATE(1537), @@ -310532,47 +310554,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1537), [sym_preproc_define] = STATE(1537), [sym_preproc_undef] = STATE(1537), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310585,20 +310607,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310609,90 +310631,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1538] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2677), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5009), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1538), [sym_preproc_endregion] = STATE(1538), [sym_preproc_line] = STATE(1538), @@ -310702,47 +310724,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1538), [sym_preproc_define] = STATE(1538), [sym_preproc_undef] = STATE(1538), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310755,20 +310777,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310779,90 +310801,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1539] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2678), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3896), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1539), [sym_preproc_endregion] = STATE(1539), [sym_preproc_line] = STATE(1539), @@ -310872,47 +310894,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1539), [sym_preproc_define] = STATE(1539), [sym_preproc_undef] = STATE(1539), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310925,20 +310947,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310949,90 +310971,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1540] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2681), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3701), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1540), [sym_preproc_endregion] = STATE(1540), [sym_preproc_line] = STATE(1540), @@ -311042,47 +311064,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1540), [sym_preproc_define] = STATE(1540), [sym_preproc_undef] = STATE(1540), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311095,20 +311117,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -311119,90 +311141,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1541] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3880), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4508), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1541), [sym_preproc_endregion] = STATE(1541), [sym_preproc_line] = STATE(1541), @@ -311212,47 +311234,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1541), [sym_preproc_define] = STATE(1541), [sym_preproc_undef] = STATE(1541), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311277,8 +311299,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -311295,84 +311317,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1542] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2679), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3702), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1542), [sym_preproc_endregion] = STATE(1542), [sym_preproc_line] = STATE(1542), @@ -311382,47 +311404,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1542), [sym_preproc_define] = STATE(1542), [sym_preproc_undef] = STATE(1542), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311435,20 +311457,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -311459,90 +311481,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1543] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2779), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3705), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1543), [sym_preproc_endregion] = STATE(1543), [sym_preproc_line] = STATE(1543), @@ -311552,47 +311574,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1543), [sym_preproc_define] = STATE(1543), [sym_preproc_undef] = STATE(1543), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311605,20 +311627,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -311629,90 +311651,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1544] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3234), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3970), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1544), [sym_preproc_endregion] = STATE(1544), [sym_preproc_line] = STATE(1544), @@ -311722,47 +311744,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1544), [sym_preproc_define] = STATE(1544), [sym_preproc_undef] = STATE(1544), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311775,20 +311797,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -311799,90 +311821,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1545] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3235), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3707), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1545), [sym_preproc_endregion] = STATE(1545), [sym_preproc_line] = STATE(1545), @@ -311892,47 +311914,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1545), [sym_preproc_define] = STATE(1545), [sym_preproc_undef] = STATE(1545), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311945,20 +311967,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -311969,90 +311991,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1546] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3373), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3710), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1546), [sym_preproc_endregion] = STATE(1546), [sym_preproc_line] = STATE(1546), @@ -312062,47 +312084,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1546), [sym_preproc_define] = STATE(1546), [sym_preproc_undef] = STATE(1546), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -312115,20 +312137,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -312139,90 +312161,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1547] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3236), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4506), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1547), [sym_preproc_endregion] = STATE(1547), [sym_preproc_line] = STATE(1547), @@ -312232,47 +312254,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1547), [sym_preproc_define] = STATE(1547), [sym_preproc_undef] = STATE(1547), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -312286,19 +312308,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -312309,90 +312331,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1548] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3361), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5016), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1548), [sym_preproc_endregion] = STATE(1548), [sym_preproc_line] = STATE(1548), @@ -312402,47 +312424,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1548), [sym_preproc_define] = STATE(1548), [sym_preproc_undef] = STATE(1548), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -312455,20 +312477,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -312479,90 +312501,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1549] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4499), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3891), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1549), [sym_preproc_endregion] = STATE(1549), [sym_preproc_line] = STATE(1549), @@ -312572,47 +312594,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1549), [sym_preproc_define] = STATE(1549), [sym_preproc_undef] = STATE(1549), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -312625,20 +312647,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -312649,90 +312671,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1550] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3238), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3711), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1550), [sym_preproc_endregion] = STATE(1550), [sym_preproc_line] = STATE(1550), @@ -312742,47 +312764,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1550), [sym_preproc_define] = STATE(1550), [sym_preproc_undef] = STATE(1550), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -312795,20 +312817,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -312819,90 +312841,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1551] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3243), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3889), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1551), [sym_preproc_endregion] = STATE(1551), [sym_preproc_line] = STATE(1551), @@ -312912,47 +312934,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1551), [sym_preproc_define] = STATE(1551), [sym_preproc_undef] = STATE(1551), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -312965,20 +312987,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -312989,90 +313011,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1552] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3249), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4505), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1552), [sym_preproc_endregion] = STATE(1552), [sym_preproc_line] = STATE(1552), @@ -313082,47 +313104,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1552), [sym_preproc_define] = STATE(1552), [sym_preproc_undef] = STATE(1552), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313136,19 +313158,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -313159,90 +313181,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1553] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3250), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3882), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1553), [sym_preproc_endregion] = STATE(1553), [sym_preproc_line] = STATE(1553), @@ -313252,47 +313274,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1553), [sym_preproc_define] = STATE(1553), [sym_preproc_undef] = STATE(1553), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313305,20 +313327,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -313329,90 +313351,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1554] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2686), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3712), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1554), [sym_preproc_endregion] = STATE(1554), [sym_preproc_line] = STATE(1554), @@ -313422,47 +313444,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1554), [sym_preproc_define] = STATE(1554), [sym_preproc_undef] = STATE(1554), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313475,20 +313497,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -313499,90 +313521,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1555] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3254), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5020), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1555), [sym_preproc_endregion] = STATE(1555), [sym_preproc_line] = STATE(1555), @@ -313592,47 +313614,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1555), [sym_preproc_define] = STATE(1555), [sym_preproc_undef] = STATE(1555), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313646,19 +313668,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -313669,90 +313691,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1556] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3255), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3664), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1556), [sym_preproc_endregion] = STATE(1556), [sym_preproc_line] = STATE(1556), @@ -313762,47 +313784,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1556), [sym_preproc_define] = STATE(1556), [sym_preproc_undef] = STATE(1556), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313815,20 +313837,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -313839,90 +313861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1557] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3491), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3671), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1557), [sym_preproc_endregion] = STATE(1557), [sym_preproc_line] = STATE(1557), @@ -313932,47 +313954,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1557), [sym_preproc_define] = STATE(1557), [sym_preproc_undef] = STATE(1557), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313985,20 +314007,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314009,90 +314031,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1558] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2622), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3955), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1558), [sym_preproc_endregion] = STATE(1558), [sym_preproc_line] = STATE(1558), @@ -314102,47 +314124,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1558), [sym_preproc_define] = STATE(1558), [sym_preproc_undef] = STATE(1558), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314155,20 +314177,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314179,90 +314201,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1559] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3257), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3574), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1559), [sym_preproc_endregion] = STATE(1559), [sym_preproc_line] = STATE(1559), @@ -314272,47 +314294,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1559), [sym_preproc_define] = STATE(1559), [sym_preproc_undef] = STATE(1559), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314325,20 +314347,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314349,90 +314371,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1560] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6188), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2413), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3156), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4637), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7708), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3420), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1560), [sym_preproc_endregion] = STATE(1560), [sym_preproc_line] = STATE(1560), @@ -314442,47 +314464,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1560), [sym_preproc_define] = STATE(1560), [sym_preproc_undef] = STATE(1560), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314507,7 +314529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -314525,84 +314547,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1561] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2544), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4013), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1561), [sym_preproc_endregion] = STATE(1561), [sym_preproc_line] = STATE(1561), @@ -314612,47 +314634,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1561), [sym_preproc_define] = STATE(1561), [sym_preproc_undef] = STATE(1561), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314665,20 +314687,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314689,90 +314711,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1562] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2734), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3561), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1562), [sym_preproc_endregion] = STATE(1562), [sym_preproc_line] = STATE(1562), @@ -314782,47 +314804,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1562), [sym_preproc_define] = STATE(1562), [sym_preproc_undef] = STATE(1562), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314835,20 +314857,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314859,90 +314881,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1563] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2688), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3960), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1563), [sym_preproc_endregion] = STATE(1563), [sym_preproc_line] = STATE(1563), @@ -314952,47 +314974,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1563), [sym_preproc_define] = STATE(1563), [sym_preproc_undef] = STATE(1563), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -315005,20 +315027,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -315029,90 +315051,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1564] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3726), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3783), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1564), [sym_preproc_endregion] = STATE(1564), [sym_preproc_line] = STATE(1564), @@ -315122,15 +315144,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1564), [sym_preproc_define] = STATE(1564), [sym_preproc_undef] = STATE(1564), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), @@ -315140,29 +315162,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -315187,8 +315209,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -315205,84 +315227,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1565] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3975), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3818), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1565), [sym_preproc_endregion] = STATE(1565), [sym_preproc_line] = STATE(1565), @@ -315292,47 +315314,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1565), [sym_preproc_define] = STATE(1565), [sym_preproc_undef] = STATE(1565), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -315345,20 +315367,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -315369,90 +315391,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1566] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2499), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3538), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1566), [sym_preproc_endregion] = STATE(1566), [sym_preproc_line] = STATE(1566), @@ -315462,47 +315484,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -315515,20 +315537,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -315545,84 +315567,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1567] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3498), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3546), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1567), [sym_preproc_endregion] = STATE(1567), [sym_preproc_line] = STATE(1567), @@ -315632,47 +315654,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -315685,20 +315707,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -315715,84 +315737,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1568] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2709), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3666), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1568), [sym_preproc_endregion] = STATE(1568), [sym_preproc_line] = STATE(1568), @@ -315802,73 +315824,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -315879,90 +315901,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1569] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2690), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3646), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7691), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4699), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1569), [sym_preproc_endregion] = STATE(1569), [sym_preproc_line] = STATE(1569), @@ -315972,47 +315994,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -316025,20 +316047,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -316049,90 +316071,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1570] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3959), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4448), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1570), [sym_preproc_endregion] = STATE(1570), [sym_preproc_line] = STATE(1570), @@ -316142,47 +316164,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -316195,20 +316217,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -316219,90 +316241,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1571] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3263), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4523), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1571), [sym_preproc_endregion] = STATE(1571), [sym_preproc_line] = STATE(1571), @@ -316312,47 +316334,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -316365,20 +316387,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(127), + [anon_sym_stackalloc] = ACTIONS(1491), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), [sym_null_literal] = ACTIONS(1503), [anon_sym_SQUOTE] = ACTIONS(1505), [sym_integer_literal] = ACTIONS(1503), [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -316395,84 +316417,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1572] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2733), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4590), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1572), [sym_preproc_endregion] = STATE(1572), [sym_preproc_line] = STATE(1572), @@ -316482,47 +316504,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -316535,20 +316557,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -316559,90 +316581,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1573] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2730), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4576), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1573), [sym_preproc_endregion] = STATE(1573), [sym_preproc_line] = STATE(1573), @@ -316652,47 +316674,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -316705,20 +316727,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -316729,90 +316751,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1574] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3237), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4571), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1574), [sym_preproc_endregion] = STATE(1574), [sym_preproc_line] = STATE(1574), @@ -316822,47 +316844,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -316875,20 +316897,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -316899,90 +316921,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1575] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3262), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4567), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1575), [sym_preproc_endregion] = STATE(1575), [sym_preproc_line] = STATE(1575), @@ -316992,47 +317014,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -317045,20 +317067,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317069,90 +317091,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1576] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2729), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3661), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1576), [sym_preproc_endregion] = STATE(1576), [sym_preproc_line] = STATE(1576), @@ -317162,47 +317184,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -317215,20 +317237,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317239,90 +317261,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1577] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3261), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4566), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1577), [sym_preproc_endregion] = STATE(1577), [sym_preproc_line] = STATE(1577), @@ -317332,47 +317354,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -317385,20 +317407,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317409,90 +317431,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1578] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3259), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4563), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1578), [sym_preproc_endregion] = STATE(1578), [sym_preproc_line] = STATE(1578), @@ -317502,47 +317524,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -317555,20 +317577,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317579,90 +317601,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1579] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2728), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4562), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1579), [sym_preproc_endregion] = STATE(1579), [sym_preproc_line] = STATE(1579), @@ -317672,47 +317694,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -317725,20 +317747,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317749,90 +317771,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1580] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3258), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4557), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1580), [sym_preproc_endregion] = STATE(1580), [sym_preproc_line] = STATE(1580), @@ -317842,47 +317864,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -317895,20 +317917,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317919,90 +317941,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1581] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3256), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4555), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1581), [sym_preproc_endregion] = STATE(1581), [sym_preproc_line] = STATE(1581), @@ -318012,47 +318034,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318065,20 +318087,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318089,90 +318111,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1582] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3253), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4549), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1582), [sym_preproc_endregion] = STATE(1582), [sym_preproc_line] = STATE(1582), @@ -318182,47 +318204,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318235,20 +318257,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318259,90 +318281,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1583] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3251), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4181), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1583), [sym_preproc_endregion] = STATE(1583), [sym_preproc_line] = STATE(1583), @@ -318352,47 +318374,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318405,20 +318427,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318435,84 +318457,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1584] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3248), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3817), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1584), [sym_preproc_endregion] = STATE(1584), [sym_preproc_line] = STATE(1584), @@ -318522,47 +318544,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318575,20 +318597,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318599,90 +318621,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1585] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3247), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4926), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5231), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6463), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8118), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1585), [sym_preproc_endregion] = STATE(1585), [sym_preproc_line] = STATE(1585), @@ -318692,47 +318714,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_ref] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1313), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318745,20 +318767,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318775,84 +318797,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1586] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6186), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4117), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7647), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3814), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1586), [sym_preproc_endregion] = STATE(1586), [sym_preproc_line] = STATE(1586), @@ -318862,47 +318884,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318915,20 +318937,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318939,90 +318961,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1587] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4626), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2938), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3810), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1587), [sym_preproc_endregion] = STATE(1587), [sym_preproc_line] = STATE(1587), @@ -319032,47 +319054,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319085,20 +319107,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -319109,90 +319131,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1588] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2736), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3610), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1588), [sym_preproc_endregion] = STATE(1588), [sym_preproc_line] = STATE(1588), @@ -319202,47 +319224,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319267,7 +319289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -319285,84 +319307,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1589] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2744), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3808), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1589), [sym_preproc_endregion] = STATE(1589), [sym_preproc_line] = STATE(1589), @@ -319372,15 +319394,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), @@ -319390,29 +319412,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319437,8 +319459,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -319455,84 +319477,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1590] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2748), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3763), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1590), [sym_preproc_endregion] = STATE(1590), [sym_preproc_line] = STATE(1590), @@ -319542,15 +319564,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), @@ -319560,29 +319582,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319607,8 +319629,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -319625,84 +319647,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1591] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2750), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3694), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1591), [sym_preproc_endregion] = STATE(1591), [sym_preproc_line] = STATE(1591), @@ -319712,15 +319734,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), @@ -319730,29 +319752,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319777,8 +319799,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -319795,84 +319817,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1592] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4004), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4192), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1592), [sym_preproc_endregion] = STATE(1592), [sym_preproc_line] = STATE(1592), @@ -319882,47 +319904,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1592), [sym_preproc_define] = STATE(1592), [sym_preproc_undef] = STATE(1592), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319947,8 +319969,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -319965,84 +319987,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1593] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3246), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3699), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1593), [sym_preproc_endregion] = STATE(1593), [sym_preproc_line] = STATE(1593), @@ -320052,47 +320074,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320105,20 +320127,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320129,90 +320151,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1594] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3953), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5126), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7652), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3620), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1594), [sym_preproc_endregion] = STATE(1594), [sym_preproc_line] = STATE(1594), @@ -320222,47 +320244,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320275,20 +320297,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320299,90 +320321,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1595] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3245), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4543), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1595), [sym_preproc_endregion] = STATE(1595), [sym_preproc_line] = STATE(1595), @@ -320392,47 +320414,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320445,20 +320467,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320469,90 +320491,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1596] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3623), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3700), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1596), [sym_preproc_endregion] = STATE(1596), [sym_preproc_line] = STATE(1596), @@ -320562,47 +320584,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1596), [sym_preproc_define] = STATE(1596), [sym_preproc_undef] = STATE(1596), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320615,20 +320637,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320639,90 +320661,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1597] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2751), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3155), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3380), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6460), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7636), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1597), [sym_preproc_endregion] = STATE(1597), [sym_preproc_line] = STATE(1597), @@ -320732,47 +320754,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2027), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320785,20 +320807,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320809,90 +320831,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1598] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3630), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4703), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1598), [sym_preproc_endregion] = STATE(1598), [sym_preproc_line] = STATE(1598), @@ -320902,47 +320924,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320955,20 +320977,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320979,90 +321001,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1599] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2499), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6188), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4535), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5138), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6457), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7970), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1599), [sym_preproc_endregion] = STATE(1599), [sym_preproc_line] = STATE(1599), @@ -321072,47 +321094,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1599), [sym_preproc_define] = STATE(1599), [sym_preproc_undef] = STATE(1599), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_ref] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2411), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2415), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321125,20 +321147,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321149,90 +321171,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1600] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3527), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3792), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1600), [sym_preproc_endregion] = STATE(1600), [sym_preproc_line] = STATE(1600), @@ -321242,73 +321264,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321319,90 +321341,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1601] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3634), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5124), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3046), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1601), [sym_preproc_endregion] = STATE(1601), [sym_preproc_line] = STATE(1601), @@ -321412,15 +321434,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), @@ -321430,29 +321452,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321477,8 +321499,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321495,84 +321517,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1602] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4601), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4111), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5075), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6476), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8029), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1602), [sym_preproc_endregion] = STATE(1602), [sym_preproc_line] = STATE(1602), @@ -321582,73 +321604,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(127), + [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(1533), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321665,84 +321687,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1603] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3696), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3444), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1603), [sym_preproc_endregion] = STATE(1603), [sym_preproc_line] = STATE(1603), @@ -321752,73 +321774,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321829,90 +321851,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1604] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3528), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3445), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1604), [sym_preproc_endregion] = STATE(1604), [sym_preproc_line] = STATE(1604), @@ -321922,47 +321944,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1604), [sym_preproc_define] = STATE(1604), [sym_preproc_undef] = STATE(1604), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321975,20 +321997,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321999,90 +322021,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1605] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3635), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3446), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1605), [sym_preproc_endregion] = STATE(1605), [sym_preproc_line] = STATE(1605), @@ -322092,47 +322114,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1605), [sym_preproc_define] = STATE(1605), [sym_preproc_undef] = STATE(1605), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -322145,20 +322167,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -322175,84 +322197,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1606] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4222), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5139), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7646), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3781), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1606), [sym_preproc_endregion] = STATE(1606), [sym_preproc_line] = STATE(1606), @@ -322262,73 +322284,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2455), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2463), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -322339,90 +322361,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1607] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3636), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5141), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1607), [sym_preproc_endregion] = STATE(1607), [sym_preproc_line] = STATE(1607), @@ -322432,15 +322454,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), @@ -322450,29 +322472,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -322497,8 +322519,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -322515,84 +322537,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1608] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(3095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3447), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1608), [sym_preproc_endregion] = STATE(1608), [sym_preproc_line] = STATE(1608), @@ -322602,47 +322624,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1608), [sym_preproc_define] = STATE(1608), [sym_preproc_undef] = STATE(1608), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -322655,20 +322677,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -322685,84 +322707,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1609] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3565), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4949), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7663), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3448), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1609), [sym_preproc_endregion] = STATE(1609), [sym_preproc_line] = STATE(1609), @@ -322772,47 +322794,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1609), [sym_preproc_define] = STATE(1609), [sym_preproc_undef] = STATE(1609), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -322825,20 +322847,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -322849,90 +322871,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1610] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6208), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(3095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3449), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1610), [sym_preproc_endregion] = STATE(1610), [sym_preproc_line] = STATE(1610), @@ -322942,47 +322964,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1610), [sym_preproc_define] = STATE(1610), [sym_preproc_undef] = STATE(1610), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -322995,20 +323017,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323025,84 +323047,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1611] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2741), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3502), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1611), [sym_preproc_endregion] = STATE(1611), [sym_preproc_line] = STATE(1611), @@ -323112,47 +323134,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1611), [sym_preproc_define] = STATE(1611), [sym_preproc_undef] = STATE(1611), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -323165,20 +323187,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323189,90 +323211,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1612] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3529), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3704), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1612), [sym_preproc_endregion] = STATE(1612), [sym_preproc_line] = STATE(1612), @@ -323282,15 +323304,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1612), [sym_preproc_define] = STATE(1612), [sym_preproc_undef] = STATE(1612), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), @@ -323300,29 +323322,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -323347,8 +323369,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323365,84 +323387,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1613] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3459), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3531), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1613), [sym_preproc_endregion] = STATE(1613), [sym_preproc_line] = STATE(1613), @@ -323452,47 +323474,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1613), [sym_preproc_define] = STATE(1613), [sym_preproc_undef] = STATE(1613), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -323505,20 +323527,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323529,90 +323551,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1614] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4626), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2938), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3706), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1614), [sym_preproc_endregion] = STATE(1614), [sym_preproc_line] = STATE(1614), @@ -323622,47 +323644,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1614), [sym_preproc_define] = STATE(1614), [sym_preproc_undef] = STATE(1614), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -323675,20 +323697,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323699,90 +323721,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1615] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3637), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3530), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1615), [sym_preproc_endregion] = STATE(1615), [sym_preproc_line] = STATE(1615), @@ -323792,47 +323814,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1615), [sym_preproc_define] = STATE(1615), [sym_preproc_undef] = STATE(1615), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -323845,20 +323867,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323875,84 +323897,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1616] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3781), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7670), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3450), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1616), [sym_preproc_endregion] = STATE(1616), [sym_preproc_line] = STATE(1616), @@ -323962,15 +323984,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1616), [sym_preproc_define] = STATE(1616), [sym_preproc_undef] = STATE(1616), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -323980,29 +324002,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -324027,7 +324049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -324045,84 +324067,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1617] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(3095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3529), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1617), [sym_preproc_endregion] = STATE(1617), [sym_preproc_line] = STATE(1617), @@ -324132,47 +324154,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1617), [sym_preproc_define] = STATE(1617), [sym_preproc_undef] = STATE(1617), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -324185,20 +324207,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324215,84 +324237,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1618] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4245), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3451), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1618), [sym_preproc_endregion] = STATE(1618), [sym_preproc_line] = STATE(1618), @@ -324302,47 +324324,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1618), [sym_preproc_define] = STATE(1618), [sym_preproc_undef] = STATE(1618), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -324355,20 +324377,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324379,90 +324401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1619] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3638), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3527), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1619), [sym_preproc_endregion] = STATE(1619), [sym_preproc_line] = STATE(1619), @@ -324472,47 +324494,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -324525,20 +324547,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324555,84 +324577,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1620] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4626), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2938), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3452), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1620), [sym_preproc_endregion] = STATE(1620), [sym_preproc_line] = STATE(1620), @@ -324642,47 +324664,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -324695,20 +324717,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324725,84 +324747,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1621] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3641), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3526), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1621), [sym_preproc_endregion] = STATE(1621), [sym_preproc_line] = STATE(1621), @@ -324812,47 +324834,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1621), [sym_preproc_define] = STATE(1621), [sym_preproc_undef] = STATE(1621), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -324865,20 +324887,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324895,84 +324917,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1622] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3642), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3453), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1622), [sym_preproc_endregion] = STATE(1622), [sym_preproc_line] = STATE(1622), @@ -324982,47 +325004,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325035,20 +325057,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325065,84 +325087,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1623] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3970), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4755), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1623), [sym_preproc_endregion] = STATE(1623), [sym_preproc_line] = STATE(1623), @@ -325152,47 +325174,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1623), [sym_preproc_define] = STATE(1623), [sym_preproc_undef] = STATE(1623), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325217,8 +325239,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325235,84 +325257,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1624] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3644), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4754), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1624), [sym_preproc_endregion] = STATE(1624), [sym_preproc_line] = STATE(1624), @@ -325322,15 +325344,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), @@ -325340,29 +325362,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325387,8 +325409,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325405,84 +325427,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1625] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3530), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3454), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1625), [sym_preproc_endregion] = STATE(1625), [sym_preproc_line] = STATE(1625), @@ -325492,47 +325514,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1625), [sym_preproc_define] = STATE(1625), [sym_preproc_undef] = STATE(1625), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325545,20 +325567,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325569,90 +325591,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1626] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4579), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3493), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1626), [sym_preproc_endregion] = STATE(1626), [sym_preproc_line] = STATE(1626), @@ -325662,47 +325684,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1626), [sym_preproc_define] = STATE(1626), [sym_preproc_undef] = STATE(1626), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325715,20 +325737,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325745,84 +325767,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1627] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4582), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3525), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1627), [sym_preproc_endregion] = STATE(1627), [sym_preproc_line] = STATE(1627), @@ -325832,47 +325854,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1627), [sym_preproc_define] = STATE(1627), [sym_preproc_undef] = STATE(1627), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325885,20 +325907,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325915,84 +325937,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1628] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3645), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3524), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1628), [sym_preproc_endregion] = STATE(1628), [sym_preproc_line] = STATE(1628), @@ -326002,47 +326024,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1628), [sym_preproc_define] = STATE(1628), [sym_preproc_undef] = STATE(1628), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326055,20 +326077,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326085,84 +326107,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1629] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3691), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5131), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2916), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1629), [sym_preproc_endregion] = STATE(1629), [sym_preproc_line] = STATE(1629), @@ -326172,15 +326194,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1629), [sym_preproc_define] = STATE(1629), [sym_preproc_undef] = STATE(1629), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), @@ -326190,29 +326212,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326237,8 +326259,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326255,84 +326277,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1630] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2759), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3976), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1630), [sym_preproc_endregion] = STATE(1630), [sym_preproc_line] = STATE(1630), @@ -326342,47 +326364,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326395,20 +326417,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326419,90 +326441,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1631] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2790), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3830), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7880), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3061), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1631), [sym_preproc_endregion] = STATE(1631), [sym_preproc_line] = STATE(1631), @@ -326512,47 +326534,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1631), [sym_preproc_define] = STATE(1631), [sym_preproc_undef] = STATE(1631), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326565,20 +326587,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326589,90 +326611,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1632] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3504), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4942), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3031), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1632), [sym_preproc_endregion] = STATE(1632), [sym_preproc_line] = STATE(1632), @@ -326682,47 +326704,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [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(1387), - [anon_sym_false] = ACTIONS(1387), - [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(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326735,20 +326757,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326759,90 +326781,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1633] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3420), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3024), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3086), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8133), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1633), [sym_preproc_endregion] = STATE(1633), [sym_preproc_line] = STATE(1633), @@ -326852,47 +326874,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_ref] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1889), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326905,20 +326927,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326929,90 +326951,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1634] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4626), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2938), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3523), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1634), [sym_preproc_endregion] = STATE(1634), [sym_preproc_line] = STATE(1634), @@ -327022,47 +327044,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -327075,20 +327097,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327105,84 +327127,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1635] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4599), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3520), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1635), [sym_preproc_endregion] = STATE(1635), [sym_preproc_line] = STATE(1635), @@ -327192,47 +327214,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -327245,20 +327267,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327275,84 +327297,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1636] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3556), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3516), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1636), [sym_preproc_endregion] = STATE(1636), [sym_preproc_line] = STATE(1636), @@ -327362,47 +327384,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -327415,20 +327437,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327445,84 +327467,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1637] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3475), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6197), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3514), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4015), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6474), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7782), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1637), [sym_preproc_endregion] = STATE(1637), [sym_preproc_line] = STATE(1637), @@ -327532,47 +327554,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1577), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -327585,20 +327607,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327609,90 +327631,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1638] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4592), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3432), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1638), [sym_preproc_endregion] = STATE(1638), [sym_preproc_line] = STATE(1638), @@ -327702,47 +327724,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -327756,19 +327778,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327779,90 +327801,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1639] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4591), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4082), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(5011), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6451), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7699), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1639), [sym_preproc_endregion] = STATE(1639), [sym_preproc_line] = STATE(1639), @@ -327872,47 +327894,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_ref] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1979), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -327925,20 +327947,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327955,84 +327977,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1640] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4590), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4991), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1640), [sym_preproc_endregion] = STATE(1640), [sym_preproc_line] = STATE(1640), @@ -328042,8 +328064,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -328055,34 +328077,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -328107,8 +328129,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328125,84 +328147,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1641] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4626), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2938), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4998), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1641), [sym_preproc_endregion] = STATE(1641), [sym_preproc_line] = STATE(1641), @@ -328212,47 +328234,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -328277,8 +328299,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328295,84 +328317,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1642] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3506), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3709), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1642), [sym_preproc_endregion] = STATE(1642), [sym_preproc_line] = STATE(1642), @@ -328382,15 +328404,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), @@ -328400,29 +328422,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -328447,8 +328469,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328465,84 +328487,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1643] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3749), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3227), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1643), [sym_preproc_endregion] = STATE(1643), [sym_preproc_line] = STATE(1643), @@ -328552,47 +328574,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -328605,20 +328627,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328629,90 +328651,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1644] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3990), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3059), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1644), [sym_preproc_endregion] = STATE(1644), [sym_preproc_line] = STATE(1644), @@ -328722,47 +328744,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -328775,20 +328797,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328799,90 +328821,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1645] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3286), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4729), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7727), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(2963), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3065), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6477), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(8017), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1645), [sym_preproc_endregion] = STATE(1645), [sym_preproc_line] = STATE(1645), @@ -328892,47 +328914,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -328945,20 +328967,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328969,90 +328991,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1646] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3531), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3057), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1646), [sym_preproc_endregion] = STATE(1646), [sym_preproc_line] = STATE(1646), @@ -329062,47 +329084,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -329115,20 +329137,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329139,90 +329161,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1647] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4589), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4999), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1647), [sym_preproc_endregion] = STATE(1647), [sym_preproc_line] = STATE(1647), @@ -329232,8 +329254,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -329245,34 +329267,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -329297,8 +329319,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329315,84 +329337,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1648] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2544), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5126), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3887), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1648), [sym_preproc_endregion] = STATE(1648), [sym_preproc_line] = STATE(1648), @@ -329402,59 +329424,59 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(3177), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [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_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), @@ -329467,8 +329489,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329485,84 +329507,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1649] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3520), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4453), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1649), [sym_preproc_endregion] = STATE(1649), [sym_preproc_line] = STATE(1649), @@ -329572,47 +329594,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -329625,20 +329647,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329649,90 +329671,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1650] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2769), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(3913), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3604), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1650), [sym_preproc_endregion] = STATE(1650), [sym_preproc_line] = STATE(1650), @@ -329742,47 +329764,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -329795,20 +329817,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329819,90 +329841,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1651] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3532), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3652), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1651), [sym_preproc_endregion] = STATE(1651), [sym_preproc_line] = STATE(1651), @@ -329912,47 +329934,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -329965,20 +329987,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329989,90 +330011,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1652] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4480), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4611), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1652), [sym_preproc_endregion] = STATE(1652), [sym_preproc_line] = STATE(1652), @@ -330082,47 +330104,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330135,20 +330157,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330159,90 +330181,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1653] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4373), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5211), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8109), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4493), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5097), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6479), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7765), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1653), [sym_preproc_endregion] = STATE(1653), [sym_preproc_line] = STATE(1653), @@ -330252,47 +330274,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_ref] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2197), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330305,20 +330327,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330329,90 +330351,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1654] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3985), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5070), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3043), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1654), [sym_preproc_endregion] = STATE(1654), [sym_preproc_line] = STATE(1654), @@ -330422,47 +330444,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330475,20 +330497,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330499,90 +330521,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1655] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3652), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4933), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7867), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3314), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3470), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6446), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1655), [sym_preproc_endregion] = STATE(1655), [sym_preproc_line] = STATE(1655), @@ -330592,47 +330614,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330645,20 +330667,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330669,90 +330691,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1656] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4479), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4992), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1656), [sym_preproc_endregion] = STATE(1656), [sym_preproc_line] = STATE(1656), @@ -330762,47 +330784,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330827,8 +330849,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330845,84 +330867,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1657] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4302), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3062), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1657), [sym_preproc_endregion] = STATE(1657), [sym_preproc_line] = STATE(1657), @@ -330932,47 +330954,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330985,20 +331007,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331009,90 +331031,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1658] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4477), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3055), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1658), [sym_preproc_endregion] = STATE(1658), [sym_preproc_line] = STATE(1658), @@ -331102,47 +331124,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -331155,20 +331177,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331179,90 +331201,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1659] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4473), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3496), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1659), [sym_preproc_endregion] = STATE(1659), [sym_preproc_line] = STATE(1659), @@ -331272,47 +331294,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -331326,19 +331348,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331349,90 +331371,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1660] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3434), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4900), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7662), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3054), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1660), [sym_preproc_endregion] = STATE(1660), [sym_preproc_line] = STATE(1660), @@ -331442,47 +331464,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -331495,20 +331517,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331519,90 +331541,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1661] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4084), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4350), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1661), [sym_preproc_endregion] = STATE(1661), [sym_preproc_line] = STATE(1661), @@ -331612,47 +331634,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -331665,20 +331687,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331695,84 +331717,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1662] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3814), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3042), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1662), [sym_preproc_endregion] = STATE(1662), [sym_preproc_line] = STATE(1662), @@ -331782,47 +331804,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -331835,20 +331857,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331859,90 +331881,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1663] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4472), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3345), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1663), [sym_preproc_endregion] = STATE(1663), [sym_preproc_line] = STATE(1663), @@ -331952,47 +331974,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -332006,19 +332028,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332029,90 +332051,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1664] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4471), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3795), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1664), [sym_preproc_endregion] = STATE(1664), [sym_preproc_line] = STATE(1664), @@ -332122,47 +332144,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -332187,8 +332209,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332205,84 +332227,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1665] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4485), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4826), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1665), [sym_preproc_endregion] = STATE(1665), [sym_preproc_line] = STATE(1665), @@ -332292,47 +332314,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -332357,8 +332379,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332375,84 +332397,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1666] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3416), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4613), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1666), [sym_preproc_endregion] = STATE(1666), [sym_preproc_line] = STATE(1666), @@ -332462,15 +332484,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), @@ -332480,29 +332502,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -332527,8 +332549,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332545,84 +332567,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1667] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4462), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5250), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8013), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6178), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2408), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3904), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4514), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6445), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7661), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1667), [sym_preproc_endregion] = STATE(1667), [sym_preproc_line] = STATE(1667), @@ -332632,47 +332654,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_ref] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(2135), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_CARET] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2139), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -332685,20 +332707,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332709,90 +332731,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1668] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4087), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3053), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1668), [sym_preproc_endregion] = STATE(1668), [sym_preproc_line] = STATE(1668), @@ -332802,47 +332824,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -332855,20 +332877,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332879,90 +332901,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1669] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3845), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4381), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1669), [sym_preproc_endregion] = STATE(1669), [sym_preproc_line] = STATE(1669), @@ -332972,47 +332994,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -333025,20 +333047,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333055,84 +333077,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1670] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4482), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4382), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1670), [sym_preproc_endregion] = STATE(1670), [sym_preproc_line] = STATE(1670), @@ -333142,47 +333164,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -333207,8 +333229,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333225,84 +333247,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1671] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4089), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4385), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1671), [sym_preproc_endregion] = STATE(1671), [sym_preproc_line] = STATE(1671), @@ -333312,47 +333334,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -333365,20 +333387,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333395,84 +333417,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1672] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4092), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3041), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1672), [sym_preproc_endregion] = STATE(1672), [sym_preproc_line] = STATE(1672), @@ -333482,47 +333504,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -333535,20 +333557,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333559,90 +333581,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1673] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4048), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3040), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1673), [sym_preproc_endregion] = STATE(1673), [sym_preproc_line] = STATE(1673), @@ -333652,47 +333674,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -333705,20 +333727,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333729,90 +333751,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1674] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4080), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3039), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1674), [sym_preproc_endregion] = STATE(1674), [sym_preproc_line] = STATE(1674), @@ -333822,47 +333844,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -333875,20 +333897,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333899,90 +333921,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1675] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3890), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3038), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1675), [sym_preproc_endregion] = STATE(1675), [sym_preproc_line] = STATE(1675), @@ -333992,47 +334014,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334045,20 +334067,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334069,90 +334091,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1676] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2633), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6185), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3897), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4635), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6452), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(8075), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1676), [sym_preproc_endregion] = STATE(1676), [sym_preproc_line] = STATE(1676), @@ -334162,47 +334184,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1865), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334215,20 +334237,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334239,90 +334261,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1677] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4168), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4386), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1677), [sym_preproc_endregion] = STATE(1677), [sym_preproc_line] = STATE(1677), @@ -334332,47 +334354,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334397,8 +334419,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334415,84 +334437,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1678] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4096), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3037), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1678), [sym_preproc_endregion] = STATE(1678), [sym_preproc_line] = STATE(1678), @@ -334502,47 +334524,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334555,20 +334577,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334579,90 +334601,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1679] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4101), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3959), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1679), [sym_preproc_endregion] = STATE(1679), [sym_preproc_line] = STATE(1679), @@ -334672,47 +334694,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334737,7 +334759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -334755,84 +334777,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1680] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4100), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4397), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1680), [sym_preproc_endregion] = STATE(1680), [sym_preproc_line] = STATE(1680), @@ -334842,47 +334864,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334895,20 +334917,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334925,84 +334947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1681] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3533), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4950), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7675), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4404), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1681), [sym_preproc_endregion] = STATE(1681), [sym_preproc_line] = STATE(1681), @@ -335012,47 +335034,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -335065,20 +335087,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335089,90 +335111,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1682] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4099), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3052), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1682), [sym_preproc_endregion] = STATE(1682), [sym_preproc_line] = STATE(1682), @@ -335182,47 +335204,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -335235,20 +335257,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335259,90 +335281,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1683] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4098), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3600), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1683), [sym_preproc_endregion] = STATE(1683), [sym_preproc_line] = STATE(1683), @@ -335352,47 +335374,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -335405,20 +335427,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335429,90 +335451,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1684] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4095), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4614), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1684), [sym_preproc_endregion] = STATE(1684), [sym_preproc_line] = STATE(1684), @@ -335522,47 +335544,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -335575,20 +335597,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335599,90 +335621,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1685] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4093), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4828), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1685), [sym_preproc_endregion] = STATE(1685), [sym_preproc_line] = STATE(1685), @@ -335692,47 +335714,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(2377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -335745,20 +335767,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335775,84 +335797,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1686] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3934), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6203), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2410), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3871), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4488), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6465), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7648), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1686), [sym_preproc_endregion] = STATE(1686), [sym_preproc_line] = STATE(1686), @@ -335862,47 +335884,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_ref] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2067), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -335915,20 +335937,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335939,90 +335961,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1687] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3113), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4400), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1687), [sym_preproc_endregion] = STATE(1687), [sym_preproc_line] = STATE(1687), @@ -336032,47 +336054,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -336086,19 +336108,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336109,90 +336131,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1688] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3633), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3034), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1688), [sym_preproc_endregion] = STATE(1688), [sym_preproc_line] = STATE(1688), @@ -336202,47 +336224,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -336255,20 +336277,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336279,90 +336301,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1689] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2643), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4437), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1689), [sym_preproc_endregion] = STATE(1689), [sym_preproc_line] = STATE(1689), @@ -336372,47 +336394,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -336425,20 +336447,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336449,90 +336471,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1690] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4153), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3498), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1690), [sym_preproc_endregion] = STATE(1690), [sym_preproc_line] = STATE(1690), @@ -336542,47 +336564,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -336595,20 +336617,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336619,90 +336641,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1691] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4228), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6186), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3050), + [sym_non_lvalue_expression] = STATE(5212), + [sym_lvalue_expression] = STATE(3123), + [sym__expression_statement_expression] = STATE(5196), + [sym_assignment_expression] = STATE(5211), + [sym_binary_expression] = STATE(5196), + [sym_postfix_unary_expression] = STATE(5211), + [sym_prefix_unary_expression] = STATE(5211), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(5196), + [sym_from_clause] = STATE(6475), + [sym_conditional_expression] = STATE(5196), + [sym_conditional_access_expression] = STATE(5196), + [sym_as_expression] = STATE(5196), + [sym_is_expression] = STATE(5196), + [sym_is_pattern_expression] = STATE(5196), + [sym_cast_expression] = STATE(5196), + [sym_checked_expression] = STATE(5196), + [sym_invocation_expression] = STATE(5211), + [sym_switch_expression] = STATE(5196), + [sym_await_expression] = STATE(5211), + [sym_throw_expression] = STATE(5196), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(5196), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(5211), + [sym_parenthesized_expression] = STATE(5211), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(5196), + [sym__lambda_expression_init] = STATE(7935), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5196), + [sym_anonymous_method_expression] = STATE(5196), + [sym_anonymous_object_creation_expression] = STATE(5196), + [sym_implicit_array_creation_expression] = STATE(5196), + [sym_implicit_object_creation_expression] = STATE(5196), + [sym_implicit_stackalloc_expression] = STATE(5196), + [sym_initializer_expression] = STATE(5196), + [sym_default_expression] = STATE(5196), + [sym_with_expression] = STATE(5196), + [sym_sizeof_expression] = STATE(5196), + [sym_typeof_expression] = STATE(5196), + [sym_makeref_expression] = STATE(5196), + [sym_ref_expression] = STATE(5196), + [sym_reftype_expression] = STATE(5196), + [sym_refvalue_expression] = STATE(5196), + [sym_stackalloc_expression] = STATE(5196), + [sym_range_expression] = STATE(5196), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(5196), + [sym_character_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_raw_string_literal] = STATE(5220), + [sym_boolean_literal] = STATE(5220), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(5196), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1691), [sym_preproc_endregion] = STATE(1691), [sym_preproc_line] = STATE(1691), @@ -336712,47 +336734,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4210), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_delegate] = ACTIONS(1765), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1777), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1769), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -336765,20 +336787,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym___makeref] = ACTIONS(1799), + [anon_sym___reftype] = ACTIONS(1801), + [anon_sym___refvalue] = ACTIONS(1803), + [sym_null_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [sym_real_literal] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym_verbatim_string_literal] = ACTIONS(1809), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336789,90 +336811,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, [1692] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3127), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4130), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1692), [sym_preproc_endregion] = STATE(1692), [sym_preproc_line] = STATE(1692), @@ -336882,47 +336904,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -336936,19 +336958,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336959,90 +336981,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1693] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3536), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3581), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1693), [sym_preproc_endregion] = STATE(1693), [sym_preproc_line] = STATE(1693), @@ -337052,73 +337074,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337129,90 +337151,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1694] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3104), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4407), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1694), [sym_preproc_endregion] = STATE(1694), [sym_preproc_line] = STATE(1694), @@ -337222,47 +337244,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -337276,19 +337298,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337299,90 +337321,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1695] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2616), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4408), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1695), [sym_preproc_endregion] = STATE(1695), [sym_preproc_line] = STATE(1695), @@ -337392,47 +337414,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -337445,20 +337467,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337469,90 +337491,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1696] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2610), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4409), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1696), [sym_preproc_endregion] = STATE(1696), [sym_preproc_line] = STATE(1696), @@ -337562,47 +337584,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -337615,20 +337637,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337639,90 +337661,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1697] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4490), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4800), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1697), [sym_preproc_endregion] = STATE(1697), [sym_preproc_line] = STATE(1697), @@ -337732,47 +337754,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -337797,8 +337819,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337815,84 +337837,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1698] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4239), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3879), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1698), [sym_preproc_endregion] = STATE(1698), [sym_preproc_line] = STATE(1698), @@ -337902,73 +337924,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337979,90 +338001,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1699] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3927), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4410), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1699), [sym_preproc_endregion] = STATE(1699), [sym_preproc_line] = STATE(1699), @@ -338072,47 +338094,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1699), [sym_preproc_define] = STATE(1699), [sym_preproc_undef] = STATE(1699), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -338125,20 +338147,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338155,84 +338177,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1700] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4232), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3793), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1700), [sym_preproc_endregion] = STATE(1700), [sym_preproc_line] = STATE(1700), @@ -338242,73 +338264,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1700), [sym_preproc_define] = STATE(1700), [sym_preproc_undef] = STATE(1700), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338319,90 +338341,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1701] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4250), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3344), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1701), [sym_preproc_endregion] = STATE(1701), [sym_preproc_line] = STATE(1701), @@ -338412,47 +338434,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -338465,20 +338487,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(1491), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1503), [anon_sym_SQUOTE] = ACTIONS(1505), [sym_integer_literal] = ACTIONS(1503), [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338495,84 +338517,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1702] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4067), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4411), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1702), [sym_preproc_endregion] = STATE(1702), [sym_preproc_line] = STATE(1702), @@ -338582,47 +338604,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -338635,20 +338657,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338665,84 +338687,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1703] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4271), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4412), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1703), [sym_preproc_endregion] = STATE(1703), [sym_preproc_line] = STATE(1703), @@ -338752,47 +338774,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -338805,20 +338827,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338829,90 +338851,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1704] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4090), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4413), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1704), [sym_preproc_endregion] = STATE(1704), [sym_preproc_line] = STATE(1704), @@ -338922,47 +338944,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -338975,20 +338997,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339005,84 +339027,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1705] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4209), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8065), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4434), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1705), [sym_preproc_endregion] = STATE(1705), [sym_preproc_line] = STATE(1705), @@ -339092,47 +339114,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_ref] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -339157,8 +339179,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339175,84 +339197,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1706] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6209), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3415), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4754), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7645), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4415), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1706), [sym_preproc_endregion] = STATE(1706), [sym_preproc_line] = STATE(1706), @@ -339262,47 +339284,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -339315,20 +339337,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339339,90 +339361,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1707] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4257), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4416), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1707), [sym_preproc_endregion] = STATE(1707), [sym_preproc_line] = STATE(1707), @@ -339432,47 +339454,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -339485,20 +339507,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339509,90 +339531,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1708] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4264), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4418), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1708), [sym_preproc_endregion] = STATE(1708), [sym_preproc_line] = STATE(1708), @@ -339602,47 +339624,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -339655,20 +339677,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339679,90 +339701,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1709] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4086), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4420), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1709), [sym_preproc_endregion] = STATE(1709), [sym_preproc_line] = STATE(1709), @@ -339772,47 +339794,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -339825,20 +339847,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339855,84 +339877,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1710] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4126), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4617), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1710), [sym_preproc_endregion] = STATE(1710), [sym_preproc_line] = STATE(1710), @@ -339942,15 +339964,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), @@ -339960,29 +339982,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340007,8 +340029,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340025,84 +340047,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1711] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4293), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3587), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1711), [sym_preproc_endregion] = STATE(1711), [sym_preproc_line] = STATE(1711), @@ -340112,15 +340134,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), @@ -340130,29 +340152,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340177,7 +340199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -340195,84 +340217,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1712] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4085), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3588), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1712), [sym_preproc_endregion] = STATE(1712), [sym_preproc_line] = STATE(1712), @@ -340282,47 +340304,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340335,20 +340357,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340359,90 +340381,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1713] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4292), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4421), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1713), [sym_preproc_endregion] = STATE(1713), [sym_preproc_line] = STATE(1713), @@ -340452,47 +340474,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340505,20 +340527,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340529,90 +340551,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1714] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4291), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3589), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1714), [sym_preproc_endregion] = STATE(1714), [sym_preproc_line] = STATE(1714), @@ -340622,15 +340644,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), @@ -340640,29 +340662,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340687,7 +340709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -340705,84 +340727,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1715] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4290), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4419), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1715), [sym_preproc_endregion] = STATE(1715), [sym_preproc_line] = STATE(1715), @@ -340792,47 +340814,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340845,20 +340867,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340869,90 +340891,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1716] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4289), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3590), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1716), [sym_preproc_endregion] = STATE(1716), [sym_preproc_line] = STATE(1716), @@ -340962,15 +340984,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), @@ -340980,29 +341002,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341027,7 +341049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -341045,84 +341067,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1717] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4287), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4619), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1717), [sym_preproc_endregion] = STATE(1717), [sym_preproc_line] = STATE(1717), @@ -341132,15 +341154,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), @@ -341150,29 +341172,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341197,8 +341219,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -341215,84 +341237,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1718] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4127), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3625), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1718), [sym_preproc_endregion] = STATE(1718), [sym_preproc_line] = STATE(1718), @@ -341302,15 +341324,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), @@ -341320,29 +341342,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341367,7 +341389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -341385,84 +341407,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1719] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4064), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3626), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1719), [sym_preproc_endregion] = STATE(1719), [sym_preproc_line] = STATE(1719), @@ -341472,47 +341494,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341525,20 +341547,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -341549,90 +341571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1720] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4062), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3627), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1720), [sym_preproc_endregion] = STATE(1720), [sym_preproc_line] = STATE(1720), @@ -341642,47 +341664,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341695,20 +341717,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -341719,90 +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(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1721] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3628), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1721), [sym_preproc_endregion] = STATE(1721), [sym_preproc_line] = STATE(1721), @@ -341812,15 +341834,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), @@ -341830,29 +341852,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341877,7 +341899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -341895,84 +341917,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1722] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4061), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4620), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1722), [sym_preproc_endregion] = STATE(1722), [sym_preproc_line] = STATE(1722), @@ -341982,47 +342004,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342035,20 +342057,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342059,90 +342081,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1723] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4060), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3631), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1723), [sym_preproc_endregion] = STATE(1723), [sym_preproc_line] = STATE(1723), @@ -342152,47 +342174,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342205,20 +342227,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342229,90 +342251,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1724] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4129), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3333), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1724), [sym_preproc_endregion] = STATE(1724), [sym_preproc_line] = STATE(1724), @@ -342322,47 +342344,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342375,20 +342397,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(1491), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1503), [anon_sym_SQUOTE] = ACTIONS(1505), [sym_integer_literal] = ACTIONS(1503), [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342405,84 +342427,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1725] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3853), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3845), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4470), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6442), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7657), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1725), [sym_preproc_endregion] = STATE(1725), [sym_preproc_line] = STATE(1725), @@ -342492,47 +342514,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_ref] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1847), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342545,20 +342567,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342569,90 +342591,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1726] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3265), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4642), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7859), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4051), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1726), [sym_preproc_endregion] = STATE(1726), [sym_preproc_line] = STATE(1726), @@ -342662,47 +342684,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342715,20 +342737,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342745,84 +342767,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1727] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4510), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4767), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1727), [sym_preproc_endregion] = STATE(1727), [sym_preproc_line] = STATE(1727), @@ -342832,47 +342854,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342897,8 +342919,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342915,84 +342937,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1728] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4193), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5149), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3632), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), [sym__lambda_expression_init] = STATE(7696), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1728), [sym_preproc_endregion] = STATE(1728), [sym_preproc_line] = STATE(1728), @@ -343002,15 +343024,15 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_ref] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), [anon_sym_LBRACE] = ACTIONS(1461), [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), @@ -343020,29 +343042,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [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(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343067,7 +343089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -343085,84 +343107,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1729] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4266), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4134), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1729), [sym_preproc_endregion] = STATE(1729), [sym_preproc_line] = STATE(1729), @@ -343172,47 +343194,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343237,8 +343259,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -343255,84 +343277,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1730] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4268), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3633), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1730), [sym_preproc_endregion] = STATE(1730), [sym_preproc_line] = STATE(1730), @@ -343342,47 +343364,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343395,20 +343417,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -343419,90 +343441,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1731] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4059), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3856), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1731), [sym_preproc_endregion] = STATE(1731), [sym_preproc_line] = STATE(1731), @@ -343512,73 +343534,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -343589,90 +343611,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1732] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4058), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6195), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3673), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(4025), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6444), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7696), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1732), [sym_preproc_endregion] = STATE(1732), [sym_preproc_line] = STATE(1732), @@ -343682,47 +343704,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_ref] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1715), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343735,20 +343757,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -343759,90 +343781,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1733] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4022), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3512), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1733), [sym_preproc_endregion] = STATE(1733), [sym_preproc_line] = STATE(1733), @@ -343852,73 +343874,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -343929,90 +343951,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1734] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4079), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5065), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1734), [sym_preproc_endregion] = STATE(1734), [sym_preproc_line] = STATE(1734), @@ -344022,47 +344044,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344075,20 +344097,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -344105,84 +344127,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1735] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4056), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3852), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1735), [sym_preproc_endregion] = STATE(1735), [sym_preproc_line] = STATE(1735), @@ -344192,73 +344214,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -344269,90 +344291,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1736] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3264), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3703), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1736), [sym_preproc_endregion] = STATE(1736), [sym_preproc_line] = STATE(1736), @@ -344362,47 +344384,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344415,20 +344437,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -344439,90 +344461,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1737] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4017), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3463), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1737), [sym_preproc_endregion] = STATE(1737), [sym_preproc_line] = STATE(1737), @@ -344532,47 +344554,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344597,7 +344619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -344615,84 +344637,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1738] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3089), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3459), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1738), [sym_preproc_endregion] = STATE(1738), [sym_preproc_line] = STATE(1738), @@ -344702,47 +344724,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344755,20 +344777,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -344779,90 +344801,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1739] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2436), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4013), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5092), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7666), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2527), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1739), [sym_preproc_endregion] = STATE(1739), [sym_preproc_line] = STATE(1739), @@ -344872,47 +344894,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_ref] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344925,20 +344947,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -344955,84 +344977,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1740] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4082), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3342), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1740), [sym_preproc_endregion] = STATE(1740), [sym_preproc_line] = STATE(1740), @@ -345042,47 +345064,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -345095,20 +345117,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345119,90 +345141,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1741] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3563), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3522), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1741), [sym_preproc_endregion] = STATE(1741), [sym_preproc_line] = STATE(1741), @@ -345212,47 +345234,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -345265,20 +345287,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345289,90 +345311,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1742] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3471), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4624), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1742), [sym_preproc_endregion] = STATE(1742), [sym_preproc_line] = STATE(1742), @@ -345382,47 +345404,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -345435,20 +345457,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345459,90 +345481,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1743] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4496), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3726), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1743), [sym_preproc_endregion] = STATE(1743), [sym_preproc_line] = STATE(1743), @@ -345552,73 +345574,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345629,90 +345651,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1744] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3900), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3222), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1744), [sym_preproc_endregion] = STATE(1744), [sym_preproc_line] = STATE(1744), @@ -345722,47 +345744,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -345775,20 +345797,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345799,90 +345821,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1745] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4518), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4138), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1745), [sym_preproc_endregion] = STATE(1745), [sym_preproc_line] = STATE(1745), @@ -345892,47 +345914,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -345957,8 +345979,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345975,84 +345997,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1746] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4511), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5174), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3836), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1746), [sym_preproc_endregion] = STATE(1746), [sym_preproc_line] = STATE(1746), @@ -346062,73 +346084,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_ref] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2317), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2323), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346139,90 +346161,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1747] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3086), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5056), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1747), [sym_preproc_endregion] = STATE(1747), [sym_preproc_line] = STATE(1747), @@ -346232,47 +346254,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -346286,19 +346308,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346309,90 +346331,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1748] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2654), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3833), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1748), [sym_preproc_endregion] = STATE(1748), [sym_preproc_line] = STATE(1748), @@ -346402,73 +346424,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346479,90 +346501,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1749] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3561), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3486), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1749), [sym_preproc_endregion] = STATE(1749), [sym_preproc_line] = STATE(1749), @@ -346572,47 +346594,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1749), [sym_preproc_define] = STATE(1749), [sym_preproc_undef] = STATE(1749), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -346637,7 +346659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -346655,84 +346677,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1750] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3698), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3725), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1750), [sym_preproc_endregion] = STATE(1750), [sym_preproc_line] = STATE(1750), @@ -346742,73 +346764,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1750), [sym_preproc_define] = STATE(1750), [sym_preproc_undef] = STATE(1750), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346819,90 +346841,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1751] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3663), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3831), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1751), [sym_preproc_endregion] = STATE(1751), [sym_preproc_line] = STATE(1751), @@ -346912,73 +346934,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346989,90 +347011,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1752] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3550), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3650), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1752), [sym_preproc_endregion] = STATE(1752), [sym_preproc_line] = STATE(1752), @@ -347082,47 +347104,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -347147,7 +347169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -347165,84 +347187,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1753] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3277), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3722), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1753), [sym_preproc_endregion] = STATE(1753), [sym_preproc_line] = STATE(1753), @@ -347252,15 +347274,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1753), [sym_preproc_define] = STATE(1753), [sym_preproc_undef] = STATE(1753), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), @@ -347270,29 +347292,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -347335,84 +347357,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [1754] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3292), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3483), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1754), [sym_preproc_endregion] = STATE(1754), [sym_preproc_line] = STATE(1754), @@ -347422,73 +347444,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1754), [sym_preproc_define] = STATE(1754), [sym_preproc_undef] = STATE(1754), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1377), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -347499,90 +347521,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1755] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3307), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3680), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1755), [sym_preproc_endregion] = STATE(1755), [sym_preproc_line] = STATE(1755), @@ -347592,73 +347614,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1755), [sym_preproc_define] = STATE(1755), [sym_preproc_undef] = STATE(1755), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [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(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -347669,90 +347691,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1756] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3304), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3634), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1756), [sym_preproc_endregion] = STATE(1756), [sym_preproc_line] = STATE(1756), @@ -347762,73 +347784,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [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(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -347839,90 +347861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1757] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3340), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3596), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1757), [sym_preproc_endregion] = STATE(1757), [sym_preproc_line] = STATE(1757), @@ -347932,167 +347954,167 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1758] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3338), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3597), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1758), [sym_preproc_endregion] = STATE(1758), [sym_preproc_line] = STATE(1758), @@ -348102,73 +348124,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [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(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -348179,90 +348201,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1759] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3332), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3598), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1759), [sym_preproc_endregion] = STATE(1759), [sym_preproc_line] = STATE(1759), @@ -348272,15 +348294,525 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1259), + [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(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), + }, + [1760] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3599), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1760), + [sym_preproc_endregion] = STATE(1760), + [sym_preproc_line] = STATE(1760), + [sym_preproc_pragma] = STATE(1760), + [sym_preproc_nullable] = STATE(1760), + [sym_preproc_error] = STATE(1760), + [sym_preproc_warning] = STATE(1760), + [sym_preproc_define] = STATE(1760), + [sym_preproc_undef] = STATE(1760), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1259), + [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(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), + }, + [1761] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3691), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1761), + [sym_preproc_endregion] = STATE(1761), + [sym_preproc_line] = STATE(1761), + [sym_preproc_pragma] = STATE(1761), + [sym_preproc_nullable] = STATE(1761), + [sym_preproc_error] = STATE(1761), + [sym_preproc_warning] = STATE(1761), + [sym_preproc_define] = STATE(1761), + [sym_preproc_undef] = STATE(1761), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1259), + [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(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), + }, + [1762] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3721), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1762), + [sym_preproc_endregion] = STATE(1762), + [sym_preproc_line] = STATE(1762), + [sym_preproc_pragma] = STATE(1762), + [sym_preproc_nullable] = STATE(1762), + [sym_preproc_error] = STATE(1762), + [sym_preproc_warning] = STATE(1762), + [sym_preproc_define] = STATE(1762), + [sym_preproc_undef] = STATE(1762), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), @@ -348290,29 +348822,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -348354,103 +348886,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1675), [sym_raw_string_start] = ACTIONS(1677), }, - [1760] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3331), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1760), - [sym_preproc_endregion] = STATE(1760), - [sym_preproc_line] = STATE(1760), - [sym_preproc_pragma] = STATE(1760), - [sym_preproc_nullable] = STATE(1760), - [sym_preproc_error] = STATE(1760), - [sym_preproc_warning] = STATE(1760), - [sym_preproc_define] = STATE(1760), - [sym_preproc_undef] = STATE(1760), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [1763] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3720), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1763), + [sym_preproc_endregion] = STATE(1763), + [sym_preproc_line] = STATE(1763), + [sym_preproc_pragma] = STATE(1763), + [sym_preproc_nullable] = STATE(1763), + [sym_preproc_error] = STATE(1763), + [sym_preproc_warning] = STATE(1763), + [sym_preproc_define] = STATE(1763), + [sym_preproc_undef] = STATE(1763), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), @@ -348460,29 +348992,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -348524,103 +349056,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1675), [sym_raw_string_start] = ACTIONS(1677), }, - [1761] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3330), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1761), - [sym_preproc_endregion] = STATE(1761), - [sym_preproc_line] = STATE(1761), - [sym_preproc_pragma] = STATE(1761), - [sym_preproc_nullable] = STATE(1761), - [sym_preproc_error] = STATE(1761), - [sym_preproc_warning] = STATE(1761), - [sym_preproc_define] = STATE(1761), - [sym_preproc_undef] = STATE(1761), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [1764] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3719), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1764), + [sym_preproc_endregion] = STATE(1764), + [sym_preproc_line] = STATE(1764), + [sym_preproc_pragma] = STATE(1764), + [sym_preproc_nullable] = STATE(1764), + [sym_preproc_error] = STATE(1764), + [sym_preproc_warning] = STATE(1764), + [sym_preproc_define] = STATE(1764), + [sym_preproc_undef] = STATE(1764), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), @@ -348630,29 +349162,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -348694,305 +349226,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1675), [sym_raw_string_start] = ACTIONS(1677), }, - [1762] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2637), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1762), - [sym_preproc_endregion] = STATE(1762), - [sym_preproc_line] = STATE(1762), - [sym_preproc_pragma] = STATE(1762), - [sym_preproc_nullable] = STATE(1762), - [sym_preproc_error] = STATE(1762), - [sym_preproc_warning] = STATE(1762), - [sym_preproc_define] = STATE(1762), - [sym_preproc_undef] = STATE(1762), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), - }, - [1763] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3075), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1763), - [sym_preproc_endregion] = STATE(1763), - [sym_preproc_line] = STATE(1763), - [sym_preproc_pragma] = STATE(1763), - [sym_preproc_nullable] = STATE(1763), - [sym_preproc_error] = STATE(1763), - [sym_preproc_warning] = STATE(1763), - [sym_preproc_define] = STATE(1763), - [sym_preproc_undef] = STATE(1763), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [1765] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3665), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1765), + [sym_preproc_endregion] = STATE(1765), + [sym_preproc_line] = STATE(1765), + [sym_preproc_pragma] = STATE(1765), + [sym_preproc_nullable] = STATE(1765), + [sym_preproc_error] = STATE(1765), + [sym_preproc_warning] = STATE(1765), + [sym_preproc_define] = STATE(1765), + [sym_preproc_undef] = STATE(1765), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -349005,20 +349367,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -349029,278 +349391,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, - [1764] = { - [sym_attribute_list] = STATE(5927), + [1766] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3085), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1764), - [sym_preproc_endregion] = STATE(1764), - [sym_preproc_line] = STATE(1764), - [sym_preproc_pragma] = STATE(1764), - [sym_preproc_nullable] = STATE(1764), - [sym_preproc_error] = STATE(1764), - [sym_preproc_warning] = STATE(1764), - [sym_preproc_define] = STATE(1764), - [sym_preproc_undef] = STATE(1764), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), - }, - [1765] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3320), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1765), - [sym_preproc_endregion] = STATE(1765), - [sym_preproc_line] = STATE(1765), - [sym_preproc_pragma] = STATE(1765), - [sym_preproc_nullable] = STATE(1765), - [sym_preproc_error] = STATE(1765), - [sym_preproc_warning] = STATE(1765), - [sym_preproc_define] = STATE(1765), - [sym_preproc_undef] = STATE(1765), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3718), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1766), + [sym_preproc_endregion] = STATE(1766), + [sym_preproc_line] = STATE(1766), + [sym_preproc_pragma] = STATE(1766), + [sym_preproc_nullable] = STATE(1766), + [sym_preproc_error] = STATE(1766), + [sym_preproc_warning] = STATE(1766), + [sym_preproc_define] = STATE(1766), + [sym_preproc_undef] = STATE(1766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), @@ -349310,29 +349502,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -349374,255 +349566,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1675), [sym_raw_string_start] = ACTIONS(1677), }, - [1766] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3073), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1766), - [sym_preproc_endregion] = STATE(1766), - [sym_preproc_line] = STATE(1766), - [sym_preproc_pragma] = STATE(1766), - [sym_preproc_nullable] = STATE(1766), - [sym_preproc_error] = STATE(1766), - [sym_preproc_warning] = STATE(1766), - [sym_preproc_define] = STATE(1766), - [sym_preproc_undef] = STATE(1766), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), - }, [1767] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3072), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3825), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1767), [sym_preproc_endregion] = STATE(1767), [sym_preproc_line] = STATE(1767), @@ -349632,185 +349654,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1767), [sym_preproc_define] = STATE(1767), [sym_preproc_undef] = STATE(1767), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), - }, - [1768] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3298), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1768), - [sym_preproc_endregion] = STATE(1768), - [sym_preproc_line] = STATE(1768), - [sym_preproc_pragma] = STATE(1768), - [sym_preproc_nullable] = STATE(1768), - [sym_preproc_error] = STATE(1768), - [sym_preproc_warning] = STATE(1768), - [sym_preproc_define] = STATE(1768), - [sym_preproc_undef] = STATE(1768), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), @@ -349820,29 +349672,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -349884,85 +349736,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1675), [sym_raw_string_start] = ACTIONS(1677), }, + [1768] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3668), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1768), + [sym_preproc_endregion] = STATE(1768), + [sym_preproc_line] = STATE(1768), + [sym_preproc_pragma] = STATE(1768), + [sym_preproc_nullable] = STATE(1768), + [sym_preproc_error] = STATE(1768), + [sym_preproc_warning] = STATE(1768), + [sym_preproc_define] = STATE(1768), + [sym_preproc_undef] = STATE(1768), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1259), + [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(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), + }, [1769] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3070), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3465), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1769), [sym_preproc_endregion] = STATE(1769), [sym_preproc_line] = STATE(1769), @@ -349972,47 +349994,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350025,20 +350047,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350049,90 +350071,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1770] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3315), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3669), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1770), [sym_preproc_endregion] = STATE(1770), [sym_preproc_line] = STATE(1770), @@ -350142,73 +350164,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [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(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350219,90 +350241,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1771] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3069), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4799), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1771), [sym_preproc_endregion] = STATE(1771), [sym_preproc_line] = STATE(1771), @@ -350312,47 +350334,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350366,19 +350388,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350389,90 +350411,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1772] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3549), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3667), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1772), [sym_preproc_endregion] = STATE(1772), [sym_preproc_line] = STATE(1772), @@ -350482,47 +350504,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350547,7 +350569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -350565,84 +350587,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1773] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3547), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3839), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1773), [sym_preproc_endregion] = STATE(1773), [sym_preproc_line] = STATE(1773), @@ -350652,47 +350674,217 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), + }, + [1774] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3467), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7810), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1774), + [sym_preproc_endregion] = STATE(1774), + [sym_preproc_line] = STATE(1774), + [sym_preproc_pragma] = STATE(1774), + [sym_preproc_nullable] = STATE(1774), + [sym_preproc_error] = STATE(1774), + [sym_preproc_warning] = STATE(1774), + [sym_preproc_define] = STATE(1774), + [sym_preproc_undef] = STATE(1774), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350705,20 +350897,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350729,140 +350921,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, - [1774] = { - [sym_attribute_list] = STATE(5927), + [1775] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3068), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1774), - [sym_preproc_endregion] = STATE(1774), - [sym_preproc_line] = STATE(1774), - [sym_preproc_pragma] = STATE(1774), - [sym_preproc_nullable] = STATE(1774), - [sym_preproc_error] = STATE(1774), - [sym_preproc_warning] = STATE(1774), - [sym_preproc_define] = STATE(1774), - [sym_preproc_undef] = STATE(1774), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4626), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(1775), + [sym_preproc_endregion] = STATE(1775), + [sym_preproc_line] = STATE(1775), + [sym_preproc_pragma] = STATE(1775), + [sym_preproc_nullable] = STATE(1775), + [sym_preproc_error] = STATE(1775), + [sym_preproc_warning] = STATE(1775), + [sym_preproc_define] = STATE(1775), + [sym_preproc_undef] = STATE(1775), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350875,20 +351067,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(127), + [anon_sym_stackalloc] = ACTIONS(1491), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), [sym_null_literal] = ACTIONS(1503), [anon_sym_SQUOTE] = ACTIONS(1505), [sym_integer_literal] = ACTIONS(1503), [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350904,255 +351096,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1517), [sym_raw_string_start] = ACTIONS(1519), }, - [1775] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3273), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(1775), - [sym_preproc_endregion] = STATE(1775), - [sym_preproc_line] = STATE(1775), - [sym_preproc_pragma] = STATE(1775), - [sym_preproc_nullable] = STATE(1775), - [sym_preproc_error] = STATE(1775), - [sym_preproc_warning] = STATE(1775), - [sym_preproc_define] = STATE(1775), - [sym_preproc_undef] = STATE(1775), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), - }, [1776] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3546), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3430), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1776), [sym_preproc_endregion] = STATE(1776), [sym_preproc_line] = STATE(1776), @@ -351162,47 +351184,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -351227,7 +351249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -351245,84 +351267,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1777] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3067), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3471), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1777), [sym_preproc_endregion] = STATE(1777), [sym_preproc_line] = STATE(1777), @@ -351332,47 +351354,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -351385,20 +351407,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -351409,90 +351431,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1778] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3276), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4627), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1778), [sym_preproc_endregion] = STATE(1778), [sym_preproc_line] = STATE(1778), @@ -351502,73 +351524,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -351579,90 +351601,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1779] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3084), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3532), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1779), [sym_preproc_endregion] = STATE(1779), [sym_preproc_line] = STATE(1779), @@ -351672,47 +351694,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -351725,20 +351747,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -351749,90 +351771,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1780] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3545), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3715), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1780), [sym_preproc_endregion] = STATE(1780), [sym_preproc_line] = STATE(1780), @@ -351842,47 +351864,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -351895,20 +351917,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -351919,90 +351941,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1781] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3544), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4628), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1781), [sym_preproc_endregion] = STATE(1781), [sym_preproc_line] = STATE(1781), @@ -352012,47 +352034,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -352065,20 +352087,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352089,90 +352111,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1782] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3699), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3688), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1782), [sym_preproc_endregion] = STATE(1782), [sym_preproc_line] = STATE(1782), @@ -352182,47 +352204,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -352247,7 +352269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -352265,84 +352287,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1783] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3284), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5908), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2527), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1783), [sym_preproc_endregion] = STATE(1783), [sym_preproc_line] = STATE(1783), @@ -352352,73 +352374,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1445), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352429,90 +352451,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1784] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3305), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4691), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7873), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3717), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1784), [sym_preproc_endregion] = STATE(1784), [sym_preproc_line] = STATE(1784), @@ -352522,73 +352544,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1639), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1861), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352599,90 +352621,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1785] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3082), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3584), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1785), [sym_preproc_endregion] = STATE(1785), [sym_preproc_line] = STATE(1785), @@ -352692,47 +352714,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -352745,20 +352767,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352769,90 +352791,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1786] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3079), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4796), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1786), [sym_preproc_endregion] = STATE(1786), [sym_preproc_line] = STATE(1786), @@ -352862,47 +352884,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -352916,19 +352938,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352939,90 +352961,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1787] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2636), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3734), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1787), [sym_preproc_endregion] = STATE(1787), [sym_preproc_line] = STATE(1787), @@ -353032,47 +353054,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353085,20 +353107,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353109,90 +353131,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1788] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3131), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3728), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1788), [sym_preproc_endregion] = STATE(1788), [sym_preproc_line] = STATE(1788), @@ -353202,47 +353224,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353255,20 +353277,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353279,90 +353301,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1789] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3700), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3472), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1789), [sym_preproc_endregion] = STATE(1789), [sym_preproc_line] = STATE(1789), @@ -353372,47 +353394,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353437,7 +353459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -353455,84 +353477,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1790] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3701), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3473), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1790), [sym_preproc_endregion] = STATE(1790), [sym_preproc_line] = STATE(1790), @@ -353542,47 +353564,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353607,7 +353629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(1423), [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -353625,84 +353647,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1791] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2618), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3474), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1791), [sym_preproc_endregion] = STATE(1791), [sym_preproc_line] = STATE(1791), @@ -353712,47 +353734,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353765,20 +353787,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353789,90 +353811,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1792] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3542), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3366), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1792), [sym_preproc_endregion] = STATE(1792), [sym_preproc_line] = STATE(1792), @@ -353882,47 +353904,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353935,20 +353957,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353959,90 +353981,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1793] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3096), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4514), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7813), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3475), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1793), [sym_preproc_endregion] = STATE(1793), [sym_preproc_line] = STATE(1793), @@ -354052,47 +354074,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_ref] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -354105,20 +354127,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(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354129,90 +354151,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1794] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3470), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3419), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1794), [sym_preproc_endregion] = STATE(1794), [sym_preproc_line] = STATE(1794), @@ -354222,47 +354244,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -354275,20 +354297,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354299,90 +354321,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1795] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2584), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3418), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1795), [sym_preproc_endregion] = STATE(1795), [sym_preproc_line] = STATE(1795), @@ -354392,47 +354414,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -354445,20 +354467,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354469,90 +354491,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1796] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2415), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3540), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4944), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3415), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1796), [sym_preproc_endregion] = STATE(1796), [sym_preproc_line] = STATE(1796), @@ -354562,47 +354584,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -354615,20 +354637,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354639,90 +354661,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1797] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3885), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3476), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1797), [sym_preproc_endregion] = STATE(1797), [sym_preproc_line] = STATE(1797), @@ -354732,47 +354754,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -354785,20 +354807,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354809,90 +354831,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1798] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3826), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3477), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1798), [sym_preproc_endregion] = STATE(1798), [sym_preproc_line] = STATE(1798), @@ -354902,47 +354924,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -354955,20 +354977,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354979,90 +355001,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1799] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3431), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4866), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7777), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3478), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1799), [sym_preproc_endregion] = STATE(1799), [sym_preproc_line] = STATE(1799), @@ -355072,47 +355094,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355125,20 +355147,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -355149,90 +355171,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1800] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3562), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3479), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1800), [sym_preproc_endregion] = STATE(1800), [sym_preproc_line] = STATE(1800), @@ -355242,47 +355264,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355295,20 +355317,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -355319,90 +355341,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1801] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3670), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3480), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1801), [sym_preproc_endregion] = STATE(1801), [sym_preproc_line] = STATE(1801), @@ -355412,47 +355434,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355465,20 +355487,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -355489,90 +355511,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1802] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3671), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4783), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1802), [sym_preproc_endregion] = STATE(1802), [sym_preproc_line] = STATE(1802), @@ -355582,8 +355604,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -355595,34 +355617,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355647,8 +355669,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -355665,84 +355687,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1803] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3672), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3414), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1803), [sym_preproc_endregion] = STATE(1803), [sym_preproc_line] = STATE(1803), @@ -355752,47 +355774,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355805,20 +355827,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -355829,90 +355851,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1804] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2591), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3481), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1804), [sym_preproc_endregion] = STATE(1804), [sym_preproc_line] = STATE(1804), @@ -355922,47 +355944,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355975,20 +355997,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -355999,90 +356021,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1805] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3673), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3482), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1805), [sym_preproc_endregion] = STATE(1805), [sym_preproc_line] = STATE(1805), @@ -356092,47 +356114,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356145,20 +356167,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -356169,90 +356191,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1806] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2595), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3412), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1806), [sym_preproc_endregion] = STATE(1806), [sym_preproc_line] = STATE(1806), @@ -356262,47 +356284,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1806), [sym_preproc_define] = STATE(1806), [sym_preproc_undef] = STATE(1806), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356315,20 +356337,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -356339,90 +356361,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1807] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3674), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3577), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1807), [sym_preproc_endregion] = STATE(1807), [sym_preproc_line] = STATE(1807), @@ -356432,47 +356454,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1807), [sym_preproc_define] = STATE(1807), [sym_preproc_undef] = STATE(1807), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356485,20 +356507,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -356509,90 +356531,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1808] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2605), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3411), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1808), [sym_preproc_endregion] = STATE(1808), [sym_preproc_line] = STATE(1808), @@ -356602,47 +356624,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356655,20 +356677,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -356679,90 +356701,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1809] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2632), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3364), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1809), [sym_preproc_endregion] = STATE(1809), [sym_preproc_line] = STATE(1809), @@ -356772,47 +356794,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356825,20 +356847,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -356849,90 +356871,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1810] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4522), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4742), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1810), [sym_preproc_endregion] = STATE(1810), [sym_preproc_line] = STATE(1810), @@ -356942,47 +356964,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357007,8 +357029,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -357025,84 +357047,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1811] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3675), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6190), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3464), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(3656), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6480), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7911), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1811), [sym_preproc_endregion] = STATE(1811), [sym_preproc_line] = STATE(1811), @@ -357112,47 +357134,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1563), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357165,20 +357187,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -357189,90 +357211,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1812] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2621), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3788), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4474), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8024), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1812), [sym_preproc_endregion] = STATE(1812), [sym_preproc_line] = STATE(1812), @@ -357282,73 +357304,73 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_ref] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1963), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1965), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_CARET] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -357359,90 +357381,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1813] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3676), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3458), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1813), [sym_preproc_endregion] = STATE(1813), [sym_preproc_line] = STATE(1813), @@ -357452,47 +357474,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357506,19 +357528,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -357529,90 +357551,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1814] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3677), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3562), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1814), [sym_preproc_endregion] = STATE(1814), [sym_preproc_line] = STATE(1814), @@ -357622,47 +357644,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357675,20 +357697,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -357705,84 +357727,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1815] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2611), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3410), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1815), [sym_preproc_endregion] = STATE(1815), [sym_preproc_line] = STATE(1815), @@ -357792,47 +357814,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357845,20 +357867,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -357869,90 +357891,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1816] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3678), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3409), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1816), [sym_preproc_endregion] = STATE(1816), [sym_preproc_line] = STATE(1816), @@ -357962,47 +357984,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -358015,20 +358037,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -358039,90 +358061,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1817] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3679), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3563), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1817), [sym_preproc_endregion] = STATE(1817), [sym_preproc_line] = STATE(1817), @@ -358132,47 +358154,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -358185,20 +358207,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -358215,84 +358237,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1818] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2604), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3407), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1818), [sym_preproc_endregion] = STATE(1818), [sym_preproc_line] = STATE(1818), @@ -358302,47 +358324,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -358355,20 +358377,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -358379,90 +358401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1819] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3090), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(4368), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1819), [sym_preproc_endregion] = STATE(1819), [sym_preproc_line] = STATE(1819), @@ -358472,47 +358494,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [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(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -358525,20 +358547,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -358549,90 +358571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1820] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(3095), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3565), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1820), [sym_preproc_endregion] = STATE(1820), [sym_preproc_line] = STATE(1820), @@ -358642,47 +358664,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -358695,20 +358717,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -358725,84 +358747,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1821] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2599), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3406), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1821), [sym_preproc_endregion] = STATE(1821), [sym_preproc_line] = STATE(1821), @@ -358812,47 +358834,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -358865,20 +358887,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -358889,90 +358911,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1822] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2583), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3405), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1822), [sym_preproc_endregion] = STATE(1822), [sym_preproc_line] = STATE(1822), @@ -358982,47 +359004,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -359035,20 +359057,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -359059,90 +359081,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1823] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2594), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6177), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2451), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3971), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4698), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6469), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7709), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1823), [sym_preproc_endregion] = STATE(1823), [sym_preproc_line] = STATE(1823), @@ -359152,47 +359174,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_ref] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2085), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -359205,20 +359227,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -359229,90 +359251,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1824] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3687), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3566), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1824), [sym_preproc_endregion] = STATE(1824), [sym_preproc_line] = STATE(1824), @@ -359322,47 +359344,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -359375,20 +359397,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -359405,84 +359427,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1825] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2669), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3567), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1825), [sym_preproc_endregion] = STATE(1825), [sym_preproc_line] = STATE(1825), @@ -359492,47 +359514,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -359545,20 +359567,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -359569,90 +359591,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1826] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4378), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5178), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7707), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3403), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1826), [sym_preproc_endregion] = STATE(1826), [sym_preproc_line] = STATE(1826), @@ -359662,47 +359684,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_ref] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -359715,20 +359737,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -359739,90 +359761,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1827] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3274), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3569), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1827), [sym_preproc_endregion] = STATE(1827), [sym_preproc_line] = STATE(1827), @@ -359832,8 +359854,8 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -359850,29 +359872,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -359897,7 +359919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -359915,84 +359937,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1828] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2670), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4632), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1828), [sym_preproc_endregion] = STATE(1828), [sym_preproc_line] = STATE(1828), @@ -360002,47 +360024,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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -360055,20 +360077,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360079,90 +360101,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1829] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2647), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3573), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1829), [sym_preproc_endregion] = STATE(1829), [sym_preproc_line] = STATE(1829), @@ -360172,47 +360194,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -360225,20 +360247,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360249,90 +360271,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1830] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2620), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3394), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1830), [sym_preproc_endregion] = STATE(1830), [sym_preproc_line] = STATE(1830), @@ -360342,47 +360364,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1830), [sym_preproc_define] = STATE(1830), [sym_preproc_undef] = STATE(1830), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -360395,20 +360417,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360419,90 +360441,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1831] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2615), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3365), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1831), [sym_preproc_endregion] = STATE(1831), [sym_preproc_line] = STATE(1831), @@ -360512,47 +360534,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1831), [sym_preproc_define] = STATE(1831), [sym_preproc_undef] = STATE(1831), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -360565,20 +360587,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360589,90 +360611,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1832] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6207), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2391), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2619), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3293), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5081), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1832), [sym_preproc_endregion] = STATE(1832), [sym_preproc_line] = STATE(1832), @@ -360682,47 +360704,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1832), [sym_preproc_define] = STATE(1832), [sym_preproc_undef] = STATE(1832), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_ref] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -360735,20 +360757,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360759,90 +360781,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1833] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4559), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4731), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1833), [sym_preproc_endregion] = STATE(1833), [sym_preproc_line] = STATE(1833), @@ -360852,47 +360874,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1833), [sym_preproc_define] = STATE(1833), [sym_preproc_undef] = STATE(1833), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -360917,8 +360939,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360935,84 +360957,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1834] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4467), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3557), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1834), [sym_preproc_endregion] = STATE(1834), [sym_preproc_line] = STATE(1834), @@ -361022,47 +361044,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1834), [sym_preproc_define] = STATE(1834), [sym_preproc_undef] = STATE(1834), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -361075,20 +361097,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -361105,84 +361127,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1835] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4409), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6205), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3585), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4356), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6449), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7932), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1835), [sym_preproc_endregion] = STATE(1835), [sym_preproc_line] = STATE(1835), @@ -361192,47 +361214,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_ref] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2011), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_CARET] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -361245,20 +361267,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -361269,90 +361291,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1836] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4521), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3559), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1836), [sym_preproc_endregion] = STATE(1836), [sym_preproc_line] = STATE(1836), @@ -361362,47 +361384,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -361415,20 +361437,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -361445,84 +361467,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1837] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2658), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3571), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6455), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7994), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1837), [sym_preproc_endregion] = STATE(1837), [sym_preproc_line] = STATE(1837), @@ -361532,47 +361554,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1591), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_PLUS_PLUS] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -361585,20 +361607,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -361609,90 +361631,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1838] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2645), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6191), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3965), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4718), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6458), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(7909), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1838), [sym_preproc_endregion] = STATE(1838), [sym_preproc_line] = STATE(1838), @@ -361702,47 +361724,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_ref] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1377), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1389), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -361755,20 +361777,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -361779,90 +361801,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1839] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2657), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4780), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1839), [sym_preproc_endregion] = STATE(1839), [sym_preproc_line] = STATE(1839), @@ -361872,47 +361894,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -361925,20 +361947,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -361949,90 +361971,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1840] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3347), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4772), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1840), [sym_preproc_endregion] = STATE(1840), [sym_preproc_line] = STATE(1840), @@ -362042,47 +362064,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -362095,20 +362117,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -362125,84 +362147,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1841] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2672), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4642), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1841), [sym_preproc_endregion] = STATE(1841), [sym_preproc_line] = STATE(1841), @@ -362212,47 +362234,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -362265,20 +362287,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -362289,90 +362311,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1842] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4526), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4705), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1842), [sym_preproc_endregion] = STATE(1842), [sym_preproc_line] = STATE(1842), @@ -362382,47 +362404,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -362435,20 +362457,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -362459,90 +362481,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1843] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4562), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4725), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1843), [sym_preproc_endregion] = STATE(1843), [sym_preproc_line] = STATE(1843), @@ -362552,47 +362574,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -362617,8 +362639,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -362635,84 +362657,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1844] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4474), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4655), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1844), [sym_preproc_endregion] = STATE(1844), [sym_preproc_line] = STATE(1844), @@ -362722,47 +362744,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -362775,20 +362797,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -362799,90 +362821,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1845] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4528), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3500), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1845), [sym_preproc_endregion] = STATE(1845), [sym_preproc_line] = STATE(1845), @@ -362892,73 +362914,73 @@ 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__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -362969,90 +362991,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1846] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2655), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4771), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1846), [sym_preproc_endregion] = STATE(1846), [sym_preproc_line] = STATE(1846), @@ -363062,47 +363084,47 @@ 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__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -363115,20 +363137,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -363139,90 +363161,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1847] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2656), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6196), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2333), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3508), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(3962), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(8008), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1847), [sym_preproc_endregion] = STATE(1847), [sym_preproc_line] = STATE(1847), @@ -363232,73 +363254,73 @@ 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__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -363309,90 +363331,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1848] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4529), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4977), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1848), [sym_preproc_endregion] = STATE(1848), [sym_preproc_line] = STATE(1848), @@ -363402,47 +363424,47 @@ 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__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -363467,8 +363489,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -363485,84 +363507,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1849] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4530), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5074), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1849), [sym_preproc_endregion] = STATE(1849), [sym_preproc_line] = STATE(1849), @@ -363572,47 +363594,47 @@ 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__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -363637,8 +363659,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -363655,84 +363677,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1850] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2648), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4751), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1850), [sym_preproc_endregion] = STATE(1850), [sym_preproc_line] = STATE(1850), @@ -363742,47 +363764,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -363795,20 +363817,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -363819,90 +363841,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1851] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4531), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4054), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4806), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7714), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1851), [sym_preproc_endregion] = STATE(1851), [sym_preproc_line] = STATE(1851), @@ -363912,47 +363934,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -363977,8 +363999,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -363995,84 +364017,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1852] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2650), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5131), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2916), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1852), [sym_preproc_endregion] = STATE(1852), [sym_preproc_line] = STATE(1852), @@ -364082,47 +364104,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1539), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -364135,20 +364157,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -364159,90 +364181,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1853] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2652), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3714), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1853), [sym_preproc_endregion] = STATE(1853), [sym_preproc_line] = STATE(1853), @@ -364252,47 +364274,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -364305,20 +364327,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -364329,90 +364351,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1854] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4535), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3338), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1854), [sym_preproc_endregion] = STATE(1854), [sym_preproc_line] = STATE(1854), @@ -364422,47 +364444,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -364476,19 +364498,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -364499,90 +364521,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1855] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4536), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3739), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1855), [sym_preproc_endregion] = STATE(1855), [sym_preproc_line] = STATE(1855), @@ -364592,47 +364614,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -364645,20 +364667,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -364675,84 +364697,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1856] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3306), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2402), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(2635), - [sym_non_lvalue_expression] = STATE(5305), - [sym_lvalue_expression] = STATE(3418), - [sym__expression_statement_expression] = STATE(5296), - [sym_assignment_expression] = STATE(5306), - [sym_binary_expression] = STATE(5296), - [sym_postfix_unary_expression] = STATE(5306), - [sym_prefix_unary_expression] = STATE(5306), - [sym__pointer_indirection_expression] = STATE(3301), - [sym_query_expression] = STATE(5296), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(5296), - [sym_conditional_access_expression] = STATE(5296), - [sym_as_expression] = STATE(5296), - [sym_is_expression] = STATE(5296), - [sym_is_pattern_expression] = STATE(5296), - [sym_cast_expression] = STATE(5296), - [sym_checked_expression] = STATE(5296), - [sym_invocation_expression] = STATE(5306), - [sym_switch_expression] = STATE(5296), - [sym_await_expression] = STATE(5306), - [sym_throw_expression] = STATE(5296), - [sym_element_access_expression] = STATE(3301), - [sym_interpolated_string_expression] = STATE(5296), - [sym_member_access_expression] = STATE(3301), - [sym_object_creation_expression] = STATE(5306), - [sym_parenthesized_expression] = STATE(5306), - [sym__parenthesized_lvalue_expression] = STATE(3301), - [sym_lambda_expression] = STATE(5296), - [sym__lambda_expression_init] = STATE(7812), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5296), - [sym_anonymous_method_expression] = STATE(5296), - [sym_anonymous_object_creation_expression] = STATE(5296), - [sym_implicit_array_creation_expression] = STATE(5296), - [sym_implicit_object_creation_expression] = STATE(5296), - [sym_implicit_stackalloc_expression] = STATE(5296), - [sym_initializer_expression] = STATE(5296), - [sym_default_expression] = STATE(5296), - [sym_with_expression] = STATE(5296), - [sym_sizeof_expression] = STATE(5296), - [sym_typeof_expression] = STATE(5296), - [sym_makeref_expression] = STATE(5296), - [sym_ref_expression] = STATE(5296), - [sym_reftype_expression] = STATE(5296), - [sym_refvalue_expression] = STATE(5296), - [sym_stackalloc_expression] = STATE(5296), - [sym_range_expression] = STATE(5296), - [sym_tuple_expression] = STATE(3301), - [sym_literal] = STATE(5296), - [sym_character_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_raw_string_literal] = STATE(5299), - [sym_boolean_literal] = STATE(5299), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5296), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5147), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(2527), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1856), [sym_preproc_endregion] = STATE(1856), [sym_preproc_line] = STATE(1856), @@ -364762,47 +364784,47 @@ 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__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_delegate] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1753), - [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(1759), - [anon_sym_false] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1763), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1767), - [anon_sym_unchecked] = ACTIONS(1753), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -364815,20 +364837,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(1777), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym___makeref] = ACTIONS(1783), - [anon_sym___reftype] = ACTIONS(1785), - [anon_sym___refvalue] = ACTIONS(1787), - [sym_null_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1791), - [sym_integer_literal] = ACTIONS(1789), - [sym_real_literal] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym_verbatim_string_literal] = ACTIONS(1793), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1797), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -364839,90 +364861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1799), - [sym_interpolation_verbatim_start] = ACTIONS(1801), - [sym_interpolation_raw_start] = ACTIONS(1803), - [sym_raw_string_start] = ACTIONS(1805), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1857] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3719), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5047), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4622), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1857), [sym_preproc_endregion] = STATE(1857), [sym_preproc_line] = STATE(1857), @@ -364932,73 +364954,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1973), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -365009,90 +365031,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1858] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3196), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4072), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1858), [sym_preproc_endregion] = STATE(1858), [sym_preproc_line] = STATE(1858), @@ -365102,47 +365124,47 @@ 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(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -365156,19 +365178,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -365179,90 +365201,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1859] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3318), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4137), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1859), [sym_preproc_endregion] = STATE(1859), [sym_preproc_line] = STATE(1859), @@ -365272,47 +365294,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -365325,20 +365347,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -365355,84 +365377,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1860] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4537), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3740), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1860), [sym_preproc_endregion] = STATE(1860), [sym_preproc_line] = STATE(1860), @@ -365442,47 +365464,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -365495,20 +365517,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -365525,84 +365547,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1861] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4538), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3741), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1861), [sym_preproc_endregion] = STATE(1861), [sym_preproc_line] = STATE(1861), @@ -365612,47 +365634,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -365665,20 +365687,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -365695,84 +365717,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1862] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3319), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3687), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4028), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6466), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7902), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1862), [sym_preproc_endregion] = STATE(1862), [sym_preproc_line] = STATE(1862), @@ -365782,73 +365804,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), + [sym__identifier_token] = ACTIONS(1601), + [anon_sym_alias] = ACTIONS(1603), + [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_file] = ACTIONS(1603), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_where] = ACTIONS(1603), + [anon_sym_notnull] = ACTIONS(1603), + [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_checked] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), + [anon_sym_unchecked] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1689), + [anon_sym_when] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_into] = ACTIONS(1603), + [anon_sym_join] = ACTIONS(1603), + [anon_sym_on] = ACTIONS(1603), + [anon_sym_equals] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_orderby] = ACTIONS(1603), + [anon_sym_ascending] = ACTIONS(1603), + [anon_sym_descending] = ACTIONS(1603), + [anon_sym_group] = ACTIONS(1603), + [anon_sym_by] = ACTIONS(1603), + [anon_sym_select] = ACTIONS(1603), + [anon_sym_stackalloc] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1651), + [anon_sym___makeref] = ACTIONS(1653), + [anon_sym___reftype] = ACTIONS(1655), + [anon_sym___refvalue] = ACTIONS(1657), + [sym_null_literal] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_verbatim_string_literal] = ACTIONS(1663), + [sym_grit_metavariable] = ACTIONS(1667), + [aux_sym_preproc_if_token1] = ACTIONS(1669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -365859,90 +365881,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1671), + [sym_interpolation_verbatim_start] = ACTIONS(1673), + [sym_interpolation_raw_start] = ACTIONS(1675), + [sym_raw_string_start] = ACTIONS(1677), }, [1863] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3321), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3427), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1863), [sym_preproc_endregion] = STATE(1863), [sym_preproc_line] = STATE(1863), @@ -365952,47 +365974,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -366005,20 +366027,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -366029,90 +366051,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1864] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4539), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3468), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3601), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6459), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7846), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1864), [sym_preproc_endregion] = STATE(1864), [sym_preproc_line] = STATE(1864), @@ -366122,47 +366144,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2395), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -366176,19 +366198,19 @@ static const uint16_t ts_parse_table[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(1493), + [anon_sym_typeof] = ACTIONS(1495), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -366199,90 +366221,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1865] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4561), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4690), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1865), [sym_preproc_endregion] = STATE(1865), [sym_preproc_line] = STATE(1865), @@ -366292,47 +366314,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -366345,20 +366367,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -366369,90 +366391,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1866] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3323), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4979), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1866), [sym_preproc_endregion] = STATE(1866), [sym_preproc_line] = STATE(1866), @@ -366462,47 +366484,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -366515,20 +366537,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -366545,84 +366567,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1867] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3174), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3742), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1867), [sym_preproc_endregion] = STATE(1867), [sym_preproc_line] = STATE(1867), @@ -366632,47 +366654,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -366685,20 +366707,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -366709,90 +366731,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1868] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3591), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4980), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1868), [sym_preproc_endregion] = STATE(1868), [sym_preproc_line] = STATE(1868), @@ -366802,47 +366824,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -366867,8 +366889,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -366885,84 +366907,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1869] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3543), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3743), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1869), [sym_preproc_endregion] = STATE(1869), [sym_preproc_line] = STATE(1869), @@ -366972,47 +366994,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [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(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -367025,20 +367047,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -367055,84 +367077,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1870] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4450), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4984), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1870), [sym_preproc_endregion] = STATE(1870), [sym_preproc_line] = STATE(1870), @@ -367142,47 +367164,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -367207,8 +367229,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -367225,84 +367247,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1871] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3324), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4985), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1871), [sym_preproc_endregion] = STATE(1871), [sym_preproc_line] = STATE(1871), @@ -367312,47 +367334,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1871), [sym_preproc_define] = STATE(1871), [sym_preproc_undef] = STATE(1871), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -367365,20 +367387,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -367395,84 +367417,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1872] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3325), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3744), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1872), [sym_preproc_endregion] = STATE(1872), [sym_preproc_line] = STATE(1872), @@ -367482,47 +367504,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -367547,7 +367569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -367565,84 +367587,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1873] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4068), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4983), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1873), [sym_preproc_endregion] = STATE(1873), [sym_preproc_line] = STATE(1873), @@ -367652,47 +367674,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -367705,20 +367727,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -367735,84 +367757,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1874] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3326), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3773), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1874), [sym_preproc_endregion] = STATE(1874), [sym_preproc_line] = STATE(1874), @@ -367822,47 +367844,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -367875,20 +367897,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -367905,84 +367927,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1875] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4546), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(5281), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7794), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3772), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1875), [sym_preproc_endregion] = STATE(1875), [sym_preproc_line] = STATE(1875), @@ -367992,47 +368014,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -368057,8 +368079,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -368075,84 +368097,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1876] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3327), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3766), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1876), [sym_preproc_endregion] = STATE(1876), [sym_preproc_line] = STATE(1876), @@ -368162,47 +368184,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -368215,20 +368237,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -368245,84 +368267,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1877] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2952), - [sym__name] = STATE(6194), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2232), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3176), - [sym_non_lvalue_expression] = STATE(4920), - [sym_lvalue_expression] = STATE(4647), - [sym__expression_statement_expression] = STATE(4918), - [sym_assignment_expression] = STATE(4921), - [sym_binary_expression] = STATE(4918), - [sym_postfix_unary_expression] = STATE(4921), - [sym_prefix_unary_expression] = STATE(4921), - [sym__pointer_indirection_expression] = STATE(2959), - [sym_query_expression] = STATE(4918), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4918), - [sym_conditional_access_expression] = STATE(4918), - [sym_as_expression] = STATE(4918), - [sym_is_expression] = STATE(4918), - [sym_is_pattern_expression] = STATE(4918), - [sym_cast_expression] = STATE(4918), - [sym_checked_expression] = STATE(4918), - [sym_invocation_expression] = STATE(4921), - [sym_switch_expression] = STATE(4918), - [sym_await_expression] = STATE(4921), - [sym_throw_expression] = STATE(4918), - [sym_element_access_expression] = STATE(2959), - [sym_interpolated_string_expression] = STATE(4918), - [sym_member_access_expression] = STATE(2959), - [sym_object_creation_expression] = STATE(4921), - [sym_parenthesized_expression] = STATE(4921), - [sym__parenthesized_lvalue_expression] = STATE(2959), - [sym_lambda_expression] = STATE(4918), - [sym__lambda_expression_init] = STATE(7901), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4918), - [sym_anonymous_method_expression] = STATE(4918), - [sym_anonymous_object_creation_expression] = STATE(4918), - [sym_implicit_array_creation_expression] = STATE(4918), - [sym_implicit_object_creation_expression] = STATE(4918), - [sym_implicit_stackalloc_expression] = STATE(4918), - [sym_initializer_expression] = STATE(4918), - [sym_default_expression] = STATE(4918), - [sym_with_expression] = STATE(4918), - [sym_sizeof_expression] = STATE(4918), - [sym_typeof_expression] = STATE(4918), - [sym_makeref_expression] = STATE(4918), - [sym_ref_expression] = STATE(4918), - [sym_reftype_expression] = STATE(4918), - [sym_refvalue_expression] = STATE(4918), - [sym_stackalloc_expression] = STATE(4918), - [sym_range_expression] = STATE(4918), - [sym_tuple_expression] = STATE(2959), - [sym_literal] = STATE(4918), - [sym_character_literal] = STATE(4748), - [sym_string_literal] = STATE(4748), - [sym_raw_string_literal] = STATE(4748), - [sym_boolean_literal] = STATE(4748), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4918), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3765), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1877), [sym_preproc_endregion] = STATE(1877), [sym_preproc_line] = STATE(1877), @@ -368332,47 +368354,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_delegate] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_this] = ACTIONS(1391), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1395), - [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -368385,20 +368407,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_verbatim_string_literal] = ACTIONS(1421), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1425), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -368409,90 +368431,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1427), - [sym_interpolation_verbatim_start] = ACTIONS(1429), - [sym_interpolation_raw_start] = ACTIONS(1431), - [sym_raw_string_start] = ACTIONS(1433), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1878] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4011), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4821), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1878), [sym_preproc_endregion] = STATE(1878), [sym_preproc_line] = STATE(1878), @@ -368502,47 +368524,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -368555,20 +368577,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -368585,84 +368607,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1879] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4010), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3764), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1879), [sym_preproc_endregion] = STATE(1879), [sym_preproc_line] = STATE(1879), @@ -368672,47 +368694,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -368725,20 +368747,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -368755,84 +368777,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1880] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3994), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3745), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1880), [sym_preproc_endregion] = STATE(1880), [sym_preproc_line] = STATE(1880), @@ -368842,47 +368864,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -368907,7 +368929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -368925,84 +368947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1881] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3329), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3692), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1881), [sym_preproc_endregion] = STATE(1881), [sym_preproc_line] = STATE(1881), @@ -369012,47 +369034,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -369065,20 +369087,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -369095,84 +369117,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1882] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3829), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3762), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1882), [sym_preproc_endregion] = STATE(1882), [sym_preproc_line] = STATE(1882), @@ -369182,47 +369204,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -369235,20 +369257,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -369265,84 +369287,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1883] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3780), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3746), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1883), [sym_preproc_endregion] = STATE(1883), [sym_preproc_line] = STATE(1883), @@ -369352,47 +369374,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -369417,7 +369439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -369435,84 +369457,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1884] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3779), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3761), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1884), [sym_preproc_endregion] = STATE(1884), [sym_preproc_line] = STATE(1884), @@ -369522,47 +369544,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -369575,20 +369597,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -369605,84 +369627,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1885] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(2544), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3747), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1885), [sym_preproc_endregion] = STATE(1885), [sym_preproc_line] = STATE(1885), @@ -369692,47 +369714,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -369745,20 +369767,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -369775,84 +369797,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1886] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3490), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7693), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), + [sym__name] = STATE(6181), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2380), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3749), + [sym_non_lvalue_expression] = STATE(4466), + [sym_lvalue_expression] = STATE(4671), + [sym__expression_statement_expression] = STATE(4538), + [sym_assignment_expression] = STATE(4459), + [sym_binary_expression] = STATE(4538), + [sym_postfix_unary_expression] = STATE(4459), + [sym_prefix_unary_expression] = STATE(4459), + [sym__pointer_indirection_expression] = STATE(2933), + [sym_query_expression] = STATE(4538), + [sym_from_clause] = STATE(6454), + [sym_conditional_expression] = STATE(4538), + [sym_conditional_access_expression] = STATE(4538), + [sym_as_expression] = STATE(4538), + [sym_is_expression] = STATE(4538), + [sym_is_pattern_expression] = STATE(4538), + [sym_cast_expression] = STATE(4538), + [sym_checked_expression] = STATE(4538), + [sym_invocation_expression] = STATE(4459), + [sym_switch_expression] = STATE(4538), + [sym_await_expression] = STATE(4459), + [sym_throw_expression] = STATE(4538), + [sym_element_access_expression] = STATE(2933), + [sym_interpolated_string_expression] = STATE(4538), + [sym_member_access_expression] = STATE(2933), + [sym_object_creation_expression] = STATE(4459), + [sym_parenthesized_expression] = STATE(4459), + [sym__parenthesized_lvalue_expression] = STATE(2933), + [sym_lambda_expression] = STATE(4538), + [sym__lambda_expression_init] = STATE(7703), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4538), + [sym_anonymous_method_expression] = STATE(4538), + [sym_anonymous_object_creation_expression] = STATE(4538), + [sym_implicit_array_creation_expression] = STATE(4538), + [sym_implicit_object_creation_expression] = STATE(4538), + [sym_implicit_stackalloc_expression] = STATE(4538), + [sym_initializer_expression] = STATE(4538), + [sym_default_expression] = STATE(4538), + [sym_with_expression] = STATE(4538), + [sym_sizeof_expression] = STATE(4538), + [sym_typeof_expression] = STATE(4538), + [sym_makeref_expression] = STATE(4538), + [sym_ref_expression] = STATE(4538), + [sym_reftype_expression] = STATE(4538), + [sym_refvalue_expression] = STATE(4538), + [sym_stackalloc_expression] = STATE(4538), + [sym_range_expression] = STATE(4538), + [sym_tuple_expression] = STATE(2933), + [sym_literal] = STATE(4538), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2306), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4538), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1886), [sym_preproc_endregion] = STATE(1886), [sym_preproc_line] = STATE(1886), @@ -369862,47 +369884,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4081), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_ref] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1535), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1533), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -369915,20 +369937,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(127), + [anon_sym_stackalloc] = ACTIONS(1547), [anon_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(1549), + [anon_sym___reftype] = ACTIONS(1551), + [anon_sym___refvalue] = ACTIONS(1553), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1555), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -369945,84 +369967,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1887] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(5826), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4574), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4995), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4775), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1887), [sym_preproc_endregion] = STATE(1887), [sym_preproc_line] = STATE(1887), @@ -370032,47 +370054,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_ref] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -370097,8 +370119,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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -370115,84 +370137,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1888] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3772), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3760), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1888), [sym_preproc_endregion] = STATE(1888), [sym_preproc_line] = STATE(1888), @@ -370202,47 +370224,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1888), [sym_preproc_define] = STATE(1888), [sym_preproc_undef] = STATE(1888), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -370255,20 +370277,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -370285,84 +370307,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1889] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3333), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3339), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1889), [sym_preproc_endregion] = STATE(1889), [sym_preproc_line] = STATE(1889), @@ -370372,47 +370394,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1889), [sym_preproc_define] = STATE(1889), [sym_preproc_undef] = STATE(1889), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -370425,20 +370447,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -370449,90 +370471,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1890] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3335), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(4668), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7978), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3759), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1890), [sym_preproc_endregion] = STATE(1890), [sym_preproc_line] = STATE(1890), @@ -370542,47 +370564,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1890), [sym_preproc_define] = STATE(1890), [sym_preproc_undef] = STATE(1890), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_ref] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1531), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -370595,20 +370617,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -370625,84 +370647,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1891] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3424), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3758), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1891), [sym_preproc_endregion] = STATE(1891), [sym_preproc_line] = STATE(1891), @@ -370712,73 +370734,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -370789,90 +370811,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1892] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3393), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4078), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4892), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1892), [sym_preproc_endregion] = STATE(1892), [sym_preproc_line] = STATE(1892), @@ -370882,73 +370904,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -370959,90 +370981,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1893] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6174), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3812), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5100), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7650), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3045), + [sym__name] = STATE(6204), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2398), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5124), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3046), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(3044), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(3044), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(3044), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(3044), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7897), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(3044), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1893), [sym_preproc_endregion] = STATE(1893), [sym_preproc_line] = STATE(1893), @@ -371052,47 +371074,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_ref] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_this] = ACTIONS(1773), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1893), + [sym_predefined_type] = ACTIONS(1779), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(119), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1951), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -371105,20 +371127,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1555), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -371135,84 +371157,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1894] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3225), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3382), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1894), [sym_preproc_endregion] = STATE(1894), [sym_preproc_line] = STATE(1894), @@ -371222,47 +371244,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2025), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -371275,20 +371297,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(127), + [anon_sym_stackalloc] = ACTIONS(1491), [anon_sym_sizeof] = ACTIONS(1493), [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), [sym_null_literal] = ACTIONS(1503), [anon_sym_SQUOTE] = ACTIONS(1505), [sym_integer_literal] = ACTIONS(1503), [sym_real_literal] = ACTIONS(1507), [anon_sym_DQUOTE] = ACTIONS(1509), [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -371305,84 +371327,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1895] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2557), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2410), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3170), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4645), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(2562), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(2562), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(2562), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(2562), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7759), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(2562), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3756), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1895), [sym_preproc_endregion] = STATE(1895), [sym_preproc_line] = STATE(1895), @@ -371392,47 +371414,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_ref] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -371446,19 +371468,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -371469,90 +371491,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1896] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3422), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), + [sym__name] = STATE(6176), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2309), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4320), + [sym_non_lvalue_expression] = STATE(5706), + [sym_lvalue_expression] = STATE(4890), + [sym__expression_statement_expression] = STATE(5690), + [sym_assignment_expression] = STATE(5707), + [sym_binary_expression] = STATE(5690), + [sym_postfix_unary_expression] = STATE(5707), + [sym_prefix_unary_expression] = STATE(5707), + [sym__pointer_indirection_expression] = STATE(3986), + [sym_query_expression] = STATE(5690), + [sym_from_clause] = STATE(6443), + [sym_conditional_expression] = STATE(5690), + [sym_conditional_access_expression] = STATE(5690), + [sym_as_expression] = STATE(5690), + [sym_is_expression] = STATE(5690), + [sym_is_pattern_expression] = STATE(5690), + [sym_cast_expression] = STATE(5690), + [sym_checked_expression] = STATE(5690), + [sym_invocation_expression] = STATE(5707), + [sym_switch_expression] = STATE(5690), + [sym_await_expression] = STATE(5707), + [sym_throw_expression] = STATE(5690), + [sym_element_access_expression] = STATE(3986), + [sym_interpolated_string_expression] = STATE(5690), + [sym_member_access_expression] = STATE(3986), + [sym_object_creation_expression] = STATE(5707), + [sym_parenthesized_expression] = STATE(5707), + [sym__parenthesized_lvalue_expression] = STATE(3986), + [sym_lambda_expression] = STATE(5690), + [sym__lambda_expression_init] = STATE(7969), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(5690), + [sym_anonymous_method_expression] = STATE(5690), + [sym_anonymous_object_creation_expression] = STATE(5690), + [sym_implicit_array_creation_expression] = STATE(5690), + [sym_implicit_object_creation_expression] = STATE(5690), + [sym_implicit_stackalloc_expression] = STATE(5690), + [sym_initializer_expression] = STATE(5690), + [sym_default_expression] = STATE(5690), + [sym_with_expression] = STATE(5690), + [sym_sizeof_expression] = STATE(5690), + [sym_typeof_expression] = STATE(5690), + [sym_makeref_expression] = STATE(5690), + [sym_ref_expression] = STATE(5690), + [sym_reftype_expression] = STATE(5690), + [sym_refvalue_expression] = STATE(5690), + [sym_stackalloc_expression] = STATE(5690), + [sym_range_expression] = STATE(5690), + [sym_tuple_expression] = STATE(3986), + [sym_literal] = STATE(5690), + [sym_character_literal] = STATE(5663), + [sym_string_literal] = STATE(5663), + [sym_raw_string_literal] = STATE(5663), + [sym_boolean_literal] = STATE(5663), + [sym_identifier] = STATE(2278), + [sym__reserved_identifier] = STATE(2266), + [sym_preproc_if_in_expression] = STATE(5690), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1896), [sym_preproc_endregion] = STATE(1896), [sym_preproc_line] = STATE(1896), @@ -371562,15 +371584,15 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), [anon_sym_static] = ACTIONS(1259), [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), [anon_sym_async] = ACTIONS(1259), @@ -371580,29 +371602,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1603), [anon_sym_unmanaged] = ACTIONS(1603), [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_this] = ACTIONS(1621), + [anon_sym_scoped] = ACTIONS(1623), + [anon_sym_base] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1687), + [sym_predefined_type] = ACTIONS(1631), [anon_sym_unchecked] = ACTIONS(1617), [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), [anon_sym_from] = ACTIONS(1645), [anon_sym_into] = ACTIONS(1603), [anon_sym_join] = ACTIONS(1603), @@ -371645,84 +371667,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [1897] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3867), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4941), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1897), [sym_preproc_endregion] = STATE(1897), [sym_preproc_line] = STATE(1897), @@ -371732,47 +371754,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -371785,20 +371807,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -371815,84 +371837,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1898] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3419), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4822), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1898), [sym_preproc_endregion] = STATE(1898), [sym_preproc_line] = STATE(1898), @@ -371902,73 +371924,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -371979,90 +372001,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1899] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3847), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6194), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2414), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3341), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(3489), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6456), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8097), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1899), [sym_preproc_endregion] = STATE(1899), [sym_preproc_line] = STATE(1899), @@ -372072,47 +372094,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_ref] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(2099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2103), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -372125,20 +372147,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -372149,90 +372171,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1900] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3825), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6189), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2230), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4659), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(5113), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6471), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7888), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1900), [sym_preproc_endregion] = STATE(1900), [sym_preproc_line] = STATE(1900), @@ -372242,47 +372264,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_ref] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1465), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1475), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -372295,20 +372317,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(1547), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -372319,90 +372341,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(153), - [sym_interpolation_verbatim_start] = ACTIONS(155), - [sym_interpolation_raw_start] = ACTIONS(157), - [sym_raw_string_start] = ACTIONS(159), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1901] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3400), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6202), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2411), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4973), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5287), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6478), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7940), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1901), [sym_preproc_endregion] = STATE(1901), [sym_preproc_line] = STATE(1901), @@ -372412,73 +372434,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1901), [sym_preproc_define] = STATE(1901), [sym_preproc_undef] = STATE(1901), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2377), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2381), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -372489,90 +372511,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1902] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4601), - [sym_non_lvalue_expression] = STATE(4277), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(4108), - [sym_assignment_expression] = STATE(4278), - [sym_binary_expression] = STATE(4108), - [sym_postfix_unary_expression] = STATE(4278), - [sym_prefix_unary_expression] = STATE(4278), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(4108), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(4108), - [sym_conditional_access_expression] = STATE(4108), - [sym_as_expression] = STATE(4108), - [sym_is_expression] = STATE(4108), - [sym_is_pattern_expression] = STATE(4108), - [sym_cast_expression] = STATE(4108), - [sym_checked_expression] = STATE(4108), - [sym_invocation_expression] = STATE(4278), - [sym_switch_expression] = STATE(4108), - [sym_await_expression] = STATE(4278), - [sym_throw_expression] = STATE(4108), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(4108), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(4278), - [sym_parenthesized_expression] = STATE(4278), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(4108), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4108), - [sym_anonymous_method_expression] = STATE(4108), - [sym_anonymous_object_creation_expression] = STATE(4108), - [sym_implicit_array_creation_expression] = STATE(4108), - [sym_implicit_object_creation_expression] = STATE(4108), - [sym_implicit_stackalloc_expression] = STATE(4108), - [sym_initializer_expression] = STATE(4108), - [sym_default_expression] = STATE(4108), - [sym_with_expression] = STATE(4108), - [sym_sizeof_expression] = STATE(4108), - [sym_typeof_expression] = STATE(4108), - [sym_makeref_expression] = STATE(4108), - [sym_ref_expression] = STATE(4108), - [sym_reftype_expression] = STATE(4108), - [sym_refvalue_expression] = STATE(4108), - [sym_stackalloc_expression] = STATE(4108), - [sym_range_expression] = STATE(4108), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(4108), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(4108), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4935), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1902), [sym_preproc_endregion] = STATE(1902), [sym_preproc_line] = STATE(1902), @@ -372582,59 +372604,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1902), [sym_preproc_define] = STATE(1902), [sym_preproc_undef] = STATE(1902), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4755), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym_ref] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1319), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), [anon_sym_unchecked] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1983), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), @@ -372647,8 +372669,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), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -372665,84 +372687,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1903] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3426), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4818), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1903), [sym_preproc_endregion] = STATE(1903), [sym_preproc_line] = STATE(1903), @@ -372752,74 +372774,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1903), [sym_preproc_define] = STATE(1903), [sym_preproc_undef] = STATE(1903), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_region_token1] = ACTIONS(3), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), + [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), @@ -372829,90 +372851,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1904] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3804), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(5098), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(8113), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4810), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1904), [sym_preproc_endregion] = STATE(1904), [sym_preproc_line] = STATE(1904), @@ -372922,73 +372944,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1904), [sym_preproc_define] = STATE(1904), [sym_preproc_undef] = STATE(1904), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_ref] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [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(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -372999,90 +373021,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1905] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3375), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4963), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1905), [sym_preproc_endregion] = STATE(1905), [sym_preproc_line] = STATE(1905), @@ -373092,73 +373114,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -373169,90 +373191,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1906] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3376), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6212), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4988), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1906), [sym_preproc_endregion] = STATE(1906), [sym_preproc_line] = STATE(1906), @@ -373262,73 +373284,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -373339,90 +373361,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1907] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3380), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), + [sym__name] = STATE(6193), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2406), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3360), + [sym_non_lvalue_expression] = STATE(3317), + [sym_lvalue_expression] = STATE(3515), + [sym__expression_statement_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3285), + [sym_binary_expression] = STATE(3241), + [sym_postfix_unary_expression] = STATE(3285), + [sym_prefix_unary_expression] = STATE(3285), + [sym__pointer_indirection_expression] = STATE(2499), + [sym_query_expression] = STATE(3241), + [sym_from_clause] = STATE(6473), + [sym_conditional_expression] = STATE(3241), + [sym_conditional_access_expression] = STATE(3241), + [sym_as_expression] = STATE(3241), + [sym_is_expression] = STATE(3241), + [sym_is_pattern_expression] = STATE(3241), + [sym_cast_expression] = STATE(3241), + [sym_checked_expression] = STATE(3241), + [sym_invocation_expression] = STATE(3285), + [sym_switch_expression] = STATE(3241), + [sym_await_expression] = STATE(3285), + [sym_throw_expression] = STATE(3241), + [sym_element_access_expression] = STATE(2499), + [sym_interpolated_string_expression] = STATE(3241), + [sym_member_access_expression] = STATE(2499), + [sym_object_creation_expression] = STATE(3285), + [sym_parenthesized_expression] = STATE(3285), + [sym__parenthesized_lvalue_expression] = STATE(2499), + [sym_lambda_expression] = STATE(3241), + [sym__lambda_expression_init] = STATE(7892), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3241), + [sym_anonymous_method_expression] = STATE(3241), + [sym_anonymous_object_creation_expression] = STATE(3241), + [sym_implicit_array_creation_expression] = STATE(3241), + [sym_implicit_object_creation_expression] = STATE(3241), + [sym_implicit_stackalloc_expression] = STATE(3241), + [sym_initializer_expression] = STATE(3241), + [sym_default_expression] = STATE(3241), + [sym_with_expression] = STATE(3241), + [sym_sizeof_expression] = STATE(3241), + [sym_typeof_expression] = STATE(3241), + [sym_makeref_expression] = STATE(3241), + [sym_ref_expression] = STATE(3241), + [sym_reftype_expression] = STATE(3241), + [sym_refvalue_expression] = STATE(3241), + [sym_stackalloc_expression] = STATE(3241), + [sym_range_expression] = STATE(3241), + [sym_tuple_expression] = STATE(2499), + [sym_literal] = STATE(3241), + [sym_character_literal] = STATE(3313), + [sym_string_literal] = STATE(3313), + [sym_raw_string_literal] = STATE(3313), + [sym_boolean_literal] = STATE(3313), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3241), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1907), [sym_preproc_endregion] = STATE(1907), [sym_preproc_line] = STATE(1907), @@ -373432,73 +373454,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4144), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_delegate] = ACTIONS(1463), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2025), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_this] = ACTIONS(1471), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(2029), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym_verbatim_string_literal] = ACTIONS(1507), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -373509,90 +373531,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1513), + [sym_interpolation_verbatim_start] = ACTIONS(1515), + [sym_interpolation_raw_start] = ACTIONS(1517), + [sym_raw_string_start] = ACTIONS(1519), }, [1908] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3385), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), + [sym__name] = STATE(6207), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3635), + [sym_non_lvalue_expression] = STATE(4354), + [sym_lvalue_expression] = STATE(4071), + [sym__expression_statement_expression] = STATE(4309), + [sym_assignment_expression] = STATE(4360), + [sym_binary_expression] = STATE(4309), + [sym_postfix_unary_expression] = STATE(4360), + [sym_prefix_unary_expression] = STATE(4360), + [sym__pointer_indirection_expression] = STATE(2878), + [sym_query_expression] = STATE(4309), + [sym_from_clause] = STATE(6450), + [sym_conditional_expression] = STATE(4309), + [sym_conditional_access_expression] = STATE(4309), + [sym_as_expression] = STATE(4309), + [sym_is_expression] = STATE(4309), + [sym_is_pattern_expression] = STATE(4309), + [sym_cast_expression] = STATE(4309), + [sym_checked_expression] = STATE(4309), + [sym_invocation_expression] = STATE(4360), + [sym_switch_expression] = STATE(4309), + [sym_await_expression] = STATE(4360), + [sym_throw_expression] = STATE(4309), + [sym_element_access_expression] = STATE(2878), + [sym_interpolated_string_expression] = STATE(4309), + [sym_member_access_expression] = STATE(2878), + [sym_object_creation_expression] = STATE(4360), + [sym_parenthesized_expression] = STATE(4360), + [sym__parenthesized_lvalue_expression] = STATE(2878), + [sym_lambda_expression] = STATE(4309), + [sym__lambda_expression_init] = STATE(8087), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(4309), + [sym_anonymous_method_expression] = STATE(4309), + [sym_anonymous_object_creation_expression] = STATE(4309), + [sym_implicit_array_creation_expression] = STATE(4309), + [sym_implicit_object_creation_expression] = STATE(4309), + [sym_implicit_stackalloc_expression] = STATE(4309), + [sym_initializer_expression] = STATE(4309), + [sym_default_expression] = STATE(4309), + [sym_with_expression] = STATE(4309), + [sym_sizeof_expression] = STATE(4309), + [sym_typeof_expression] = STATE(4309), + [sym_makeref_expression] = STATE(4309), + [sym_ref_expression] = STATE(4309), + [sym_reftype_expression] = STATE(4309), + [sym_refvalue_expression] = STATE(4309), + [sym_stackalloc_expression] = STATE(4309), + [sym_range_expression] = STATE(4309), + [sym_tuple_expression] = STATE(2878), + [sym_literal] = STATE(4309), + [sym_character_literal] = STATE(4187), + [sym_string_literal] = STATE(4187), + [sym_raw_string_literal] = STATE(4187), + [sym_boolean_literal] = STATE(4187), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(4309), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1908), [sym_preproc_endregion] = STATE(1908), [sym_preproc_line] = STATE(1908), @@ -373602,73 +373624,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4171), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_ref] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_delegate] = ACTIONS(1375), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [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(1381), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1385), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(1941), + [sym_predefined_type] = ACTIONS(1391), + [anon_sym_unchecked] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_verbatim_string_literal] = ACTIONS(1421), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -373679,90 +373701,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(1427), + [sym_interpolation_verbatim_start] = ACTIONS(1429), + [sym_interpolation_raw_start] = ACTIONS(1431), + [sym_raw_string_start] = ACTIONS(1433), }, [1909] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3387), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5021), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1909), [sym_preproc_endregion] = STATE(1909), [sym_preproc_line] = STATE(1909), @@ -373772,73 +373794,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -373849,90 +373871,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1910] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3397), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4791), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1910), [sym_preproc_endregion] = STATE(1910), [sym_preproc_line] = STATE(1910), @@ -373942,73 +373964,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374019,90 +374041,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1911] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3430), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(6201), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2279), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(5001), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4573), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1911), [sym_preproc_endregion] = STATE(1911), [sym_preproc_line] = STATE(1911), @@ -374112,73 +374134,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_ref] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(693), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374189,90 +374211,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1912] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3432), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4967), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1912), [sym_preproc_endregion] = STATE(1912), [sym_preproc_line] = STATE(1912), @@ -374282,73 +374304,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374359,90 +374381,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1913] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3433), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4972), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1913), [sym_preproc_endregion] = STATE(1913), [sym_preproc_line] = STATE(1913), @@ -374452,73 +374474,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374529,90 +374551,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1914] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3066), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5468), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3857), - [sym_non_lvalue_expression] = STATE(4964), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(4960), - [sym_assignment_expression] = STATE(4947), - [sym_binary_expression] = STATE(4960), - [sym_postfix_unary_expression] = STATE(4947), - [sym_prefix_unary_expression] = STATE(4947), - [sym__pointer_indirection_expression] = STATE(3101), - [sym_query_expression] = STATE(4960), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(4960), - [sym_conditional_access_expression] = STATE(4960), - [sym_as_expression] = STATE(4960), - [sym_is_expression] = STATE(4960), - [sym_is_pattern_expression] = STATE(4960), - [sym_cast_expression] = STATE(4960), - [sym_checked_expression] = STATE(4960), - [sym_invocation_expression] = STATE(4947), - [sym_switch_expression] = STATE(4960), - [sym_await_expression] = STATE(4947), - [sym_throw_expression] = STATE(4960), - [sym_element_access_expression] = STATE(3101), - [sym_interpolated_string_expression] = STATE(4960), - [sym_member_access_expression] = STATE(3101), - [sym_object_creation_expression] = STATE(4947), - [sym_parenthesized_expression] = STATE(4947), - [sym__parenthesized_lvalue_expression] = STATE(3101), - [sym_lambda_expression] = STATE(4960), - [sym__lambda_expression_init] = STATE(7861), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(4960), - [sym_anonymous_method_expression] = STATE(4960), - [sym_anonymous_object_creation_expression] = STATE(4960), - [sym_implicit_array_creation_expression] = STATE(4960), - [sym_implicit_object_creation_expression] = STATE(4960), - [sym_implicit_stackalloc_expression] = STATE(4960), - [sym_initializer_expression] = STATE(4960), - [sym_default_expression] = STATE(4960), - [sym_with_expression] = STATE(4960), - [sym_sizeof_expression] = STATE(4960), - [sym_typeof_expression] = STATE(4960), - [sym_makeref_expression] = STATE(4960), - [sym_ref_expression] = STATE(4960), - [sym_reftype_expression] = STATE(4960), - [sym_refvalue_expression] = STATE(4960), - [sym_stackalloc_expression] = STATE(4960), - [sym_range_expression] = STATE(4960), - [sym_tuple_expression] = STATE(3101), - [sym_literal] = STATE(4960), - [sym_character_literal] = STATE(4952), - [sym_string_literal] = STATE(4952), - [sym_raw_string_literal] = STATE(4952), - [sym_boolean_literal] = STATE(4952), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4960), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4969), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1914), [sym_preproc_endregion] = STATE(1914), [sym_preproc_line] = STATE(1914), @@ -374622,47 +374644,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1273), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_this] = ACTIONS(1537), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1533), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -374675,20 +374697,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(1547), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1549), - [anon_sym___reftype] = ACTIONS(1551), - [anon_sym___refvalue] = ACTIONS(1553), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(2003), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374705,84 +374727,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1915] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4666), - [sym__name] = STATE(6198), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2298), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(3377), - [sym_non_lvalue_expression] = STATE(5789), - [sym_lvalue_expression] = STATE(4845), - [sym__expression_statement_expression] = STATE(5766), - [sym_assignment_expression] = STATE(5784), - [sym_binary_expression] = STATE(5766), - [sym_postfix_unary_expression] = STATE(5784), - [sym_prefix_unary_expression] = STATE(5784), - [sym__pointer_indirection_expression] = STATE(4659), - [sym_query_expression] = STATE(5766), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(5766), - [sym_conditional_access_expression] = STATE(5766), - [sym_as_expression] = STATE(5766), - [sym_is_expression] = STATE(5766), - [sym_is_pattern_expression] = STATE(5766), - [sym_cast_expression] = STATE(5766), - [sym_checked_expression] = STATE(5766), - [sym_invocation_expression] = STATE(5784), - [sym_switch_expression] = STATE(5766), - [sym_await_expression] = STATE(5784), - [sym_throw_expression] = STATE(5766), - [sym_element_access_expression] = STATE(4659), - [sym_interpolated_string_expression] = STATE(5766), - [sym_member_access_expression] = STATE(4659), - [sym_object_creation_expression] = STATE(5784), - [sym_parenthesized_expression] = STATE(5784), - [sym__parenthesized_lvalue_expression] = STATE(4659), - [sym_lambda_expression] = STATE(5766), - [sym__lambda_expression_init] = STATE(7858), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(5766), - [sym_anonymous_method_expression] = STATE(5766), - [sym_anonymous_object_creation_expression] = STATE(5766), - [sym_implicit_array_creation_expression] = STATE(5766), - [sym_implicit_object_creation_expression] = STATE(5766), - [sym_implicit_stackalloc_expression] = STATE(5766), - [sym_initializer_expression] = STATE(5766), - [sym_default_expression] = STATE(5766), - [sym_with_expression] = STATE(5766), - [sym_sizeof_expression] = STATE(5766), - [sym_typeof_expression] = STATE(5766), - [sym_makeref_expression] = STATE(5766), - [sym_ref_expression] = STATE(5766), - [sym_reftype_expression] = STATE(5766), - [sym_refvalue_expression] = STATE(5766), - [sym_stackalloc_expression] = STATE(5766), - [sym_range_expression] = STATE(5766), - [sym_tuple_expression] = STATE(4659), - [sym_literal] = STATE(5766), - [sym_character_literal] = STATE(5774), - [sym_string_literal] = STATE(5774), - [sym_raw_string_literal] = STATE(5774), - [sym_boolean_literal] = STATE(5774), - [sym_identifier] = STATE(2274), - [sym__reserved_identifier] = STATE(2273), - [sym_preproc_if_in_expression] = STATE(5766), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(4968), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(5283), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6462), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(8091), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1915), [sym_preproc_endregion] = STATE(1915), [sym_preproc_line] = STATE(1915), @@ -374792,73 +374814,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4765), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_ref] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_where] = ACTIONS(1603), - [anon_sym_notnull] = ACTIONS(1603), - [anon_sym_unmanaged] = ACTIONS(1603), - [anon_sym_checked] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(1627), - [anon_sym_scoped] = ACTIONS(1629), - [anon_sym_base] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1633), - [sym_predefined_type] = ACTIONS(1635), - [anon_sym_unchecked] = ACTIONS(1617), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1645), - [anon_sym_into] = ACTIONS(1603), - [anon_sym_join] = ACTIONS(1603), - [anon_sym_on] = ACTIONS(1603), - [anon_sym_equals] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_orderby] = ACTIONS(1603), - [anon_sym_ascending] = ACTIONS(1603), - [anon_sym_descending] = ACTIONS(1603), - [anon_sym_group] = ACTIONS(1603), - [anon_sym_by] = ACTIONS(1603), - [anon_sym_select] = ACTIONS(1603), - [anon_sym_stackalloc] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym___makeref] = ACTIONS(1653), - [anon_sym___reftype] = ACTIONS(1655), - [anon_sym___refvalue] = ACTIONS(1657), - [sym_null_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_verbatim_string_literal] = ACTIONS(1663), - [sym_grit_metavariable] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_CARET] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = 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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374869,90 +374891,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1671), - [sym_interpolation_verbatim_start] = ACTIONS(1673), - [sym_interpolation_raw_start] = ACTIONS(1675), - [sym_raw_string_start] = ACTIONS(1677), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1916] = { - [sym_attribute_list] = STATE(5927), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(6203), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(2443), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_type] = STATE(6222), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_expression] = STATE(4156), - [sym_non_lvalue_expression] = STATE(3942), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(3855), - [sym_assignment_expression] = STATE(4097), - [sym_binary_expression] = STATE(3855), - [sym_postfix_unary_expression] = STATE(4097), - [sym_prefix_unary_expression] = STATE(4097), - [sym__pointer_indirection_expression] = STATE(2481), - [sym_query_expression] = STATE(3855), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(3855), - [sym_conditional_access_expression] = STATE(3855), - [sym_as_expression] = STATE(3855), - [sym_is_expression] = STATE(3855), - [sym_is_pattern_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_checked_expression] = STATE(3855), - [sym_invocation_expression] = STATE(4097), - [sym_switch_expression] = STATE(3855), - [sym_await_expression] = STATE(4097), - [sym_throw_expression] = STATE(3855), - [sym_element_access_expression] = STATE(2481), - [sym_interpolated_string_expression] = STATE(3855), - [sym_member_access_expression] = STATE(2481), - [sym_object_creation_expression] = STATE(4097), - [sym_parenthesized_expression] = STATE(4097), - [sym__parenthesized_lvalue_expression] = STATE(2481), - [sym_lambda_expression] = STATE(3855), - [sym__lambda_expression_init] = STATE(7689), - [sym__lambda_parameters] = STATE(7669), - [sym_array_creation_expression] = STATE(3855), - [sym_anonymous_method_expression] = STATE(3855), - [sym_anonymous_object_creation_expression] = STATE(3855), - [sym_implicit_array_creation_expression] = STATE(3855), - [sym_implicit_object_creation_expression] = STATE(3855), - [sym_implicit_stackalloc_expression] = STATE(3855), - [sym_initializer_expression] = STATE(3855), - [sym_default_expression] = STATE(3855), - [sym_with_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_typeof_expression] = STATE(3855), - [sym_makeref_expression] = STATE(3855), - [sym_ref_expression] = STATE(3855), - [sym_reftype_expression] = STATE(3855), - [sym_refvalue_expression] = STATE(3855), - [sym_stackalloc_expression] = STATE(3855), - [sym_range_expression] = STATE(3855), - [sym_tuple_expression] = STATE(2481), - [sym_literal] = STATE(3855), - [sym_character_literal] = STATE(3928), - [sym_string_literal] = STATE(3928), - [sym_raw_string_literal] = STATE(3928), - [sym_boolean_literal] = STATE(3928), - [sym_identifier] = STATE(2211), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3855), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), + [sym__name] = STATE(5871), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_expression] = STATE(3752), + [sym_non_lvalue_expression] = STATE(3379), + [sym_lvalue_expression] = STATE(4525), + [sym__expression_statement_expression] = STATE(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7922), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_expression] = STATE(3417), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(1916), [sym_preproc_endregion] = STATE(1916), [sym_preproc_line] = STATE(1916), @@ -374962,47 +374984,47 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4055), - [aux_sym__lambda_expression_init_repeat1] = STATE(4824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2427), + [anon_sym_new] = ACTIONS(1729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_this] = ACTIONS(1477), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1481), - [anon_sym_unchecked] = ACTIONS(1467), + [anon_sym_checked] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(85), + [sym_predefined_type] = ACTIONS(87), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -375015,20 +375037,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_verbatim_string_literal] = ACTIONS(1507), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1511), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -375039,10 +375061,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(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), + [sym_interpolation_regular_start] = ACTIONS(153), + [sym_interpolation_verbatim_start] = ACTIONS(155), + [sym_interpolation_raw_start] = ACTIONS(157), + [sym_raw_string_start] = ACTIONS(159), }, [1917] = { [sym_preproc_region] = STATE(1917), @@ -375100,27 +375122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3183), [anon_sym_unmanaged] = ACTIONS(3183), [anon_sym_checked] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3183), [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(3183), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), [anon_sym_this] = ACTIONS(3183), [anon_sym_DOT] = ACTIONS(3187), [anon_sym_scoped] = ACTIONS(3183), @@ -375128,6 +375130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(3189), [anon_sym_COLON_COLON] = ACTIONS(3189), [anon_sym_var] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3183), [sym_predefined_type] = ACTIONS(3183), [anon_sym_break] = ACTIONS(3183), [anon_sym_unchecked] = ACTIONS(3183), @@ -375148,6 +375151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3183), [anon_sym_else] = ACTIONS(3183), [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), [anon_sym_PLUS_EQ] = ACTIONS(3189), [anon_sym_DASH_EQ] = ACTIONS(3189), [anon_sym_STAR_EQ] = ACTIONS(3189), @@ -375160,9 +375165,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3189), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), [anon_sym_AMP_AMP] = ACTIONS(3189), [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3183), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3183), + [sym_op_left_shift] = ACTIONS(3187), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3187), [sym_op_coalescing] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), [anon_sym_from] = ACTIONS(3183), [anon_sym_into] = ACTIONS(3183), [anon_sym_join] = ACTIONS(3183), @@ -375268,27 +375290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3183), [anon_sym_unmanaged] = ACTIONS(3183), [anon_sym_checked] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3183), [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(3183), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), [anon_sym_this] = ACTIONS(3183), [anon_sym_DOT] = ACTIONS(3187), [anon_sym_scoped] = ACTIONS(3183), @@ -375296,6 +375298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(3189), [anon_sym_COLON_COLON] = ACTIONS(3189), [anon_sym_var] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3183), [sym_predefined_type] = ACTIONS(3183), [anon_sym_break] = ACTIONS(3183), [anon_sym_unchecked] = ACTIONS(3183), @@ -375316,6 +375319,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3183), [anon_sym_else] = ACTIONS(3183), [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), [anon_sym_PLUS_EQ] = ACTIONS(3189), [anon_sym_DASH_EQ] = ACTIONS(3189), [anon_sym_STAR_EQ] = ACTIONS(3189), @@ -375328,9 +375333,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3189), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), [anon_sym_AMP_AMP] = ACTIONS(3189), [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3183), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3183), + [sym_op_left_shift] = ACTIONS(3187), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3187), [sym_op_coalescing] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), [anon_sym_from] = ACTIONS(3183), [anon_sym_into] = ACTIONS(3183), [anon_sym_join] = ACTIONS(3183), @@ -375428,27 +375450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3183), [anon_sym_unmanaged] = ACTIONS(3183), [anon_sym_checked] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3183), [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(3183), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), [anon_sym_this] = ACTIONS(3183), [anon_sym_DOT] = ACTIONS(3187), [anon_sym_scoped] = ACTIONS(3183), @@ -375456,6 +375458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(3189), [anon_sym_COLON_COLON] = ACTIONS(3189), [anon_sym_var] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3183), [sym_predefined_type] = ACTIONS(3183), [anon_sym_break] = ACTIONS(3183), [anon_sym_unchecked] = ACTIONS(3183), @@ -375477,6 +375480,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3183), [anon_sym_else] = ACTIONS(3183), [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), [anon_sym_PLUS_EQ] = ACTIONS(3189), [anon_sym_DASH_EQ] = ACTIONS(3189), [anon_sym_STAR_EQ] = ACTIONS(3189), @@ -375489,9 +375494,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3189), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), [anon_sym_AMP_AMP] = ACTIONS(3189), [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3183), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3183), + [sym_op_left_shift] = ACTIONS(3187), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3187), [sym_op_coalescing] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), [anon_sym_from] = ACTIONS(3183), [anon_sym_into] = ACTIONS(3183), [anon_sym_join] = ACTIONS(3183), @@ -375591,32 +375613,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3191), [anon_sym_unmanaged] = ACTIONS(3191), [anon_sym_checked] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), [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_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), [anon_sym_this] = ACTIONS(3191), [anon_sym_DOT] = ACTIONS(3195), [anon_sym_scoped] = ACTIONS(3191), [anon_sym_base] = ACTIONS(3191), [anon_sym_var] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3193), [sym_predefined_type] = ACTIONS(3191), [anon_sym_break] = ACTIONS(3191), [anon_sym_unchecked] = ACTIONS(3191), @@ -375637,9 +375640,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3191), [anon_sym_else] = ACTIONS(3191), [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), [anon_sym_AMP_AMP] = ACTIONS(3197), [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3191), + [sym_op_bitwise_or] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3193), + [sym_op_left_shift] = ACTIONS(3197), + [sym_op_right_shift] = ACTIONS(3195), + [sym_op_unsigned_right_shift] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [sym_op_divide] = ACTIONS(3195), + [sym_op_modulo] = ACTIONS(3197), [sym_op_coalescing] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), [anon_sym_from] = ACTIONS(3191), [anon_sym_into] = ACTIONS(3191), [anon_sym_join] = ACTIONS(3191), @@ -375742,32 +375764,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3199), [anon_sym_unmanaged] = ACTIONS(3199), [anon_sym_checked] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3205), - [anon_sym_EQ_EQ] = ACTIONS(3205), - [anon_sym_BANG_EQ] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3205), - [anon_sym_LT_EQ] = ACTIONS(3205), [anon_sym_this] = ACTIONS(3199), [anon_sym_DOT] = ACTIONS(3203), [anon_sym_scoped] = ACTIONS(3199), [anon_sym_base] = ACTIONS(3199), [anon_sym_var] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3201), [sym_predefined_type] = ACTIONS(3199), [anon_sym_break] = ACTIONS(3199), [anon_sym_unchecked] = ACTIONS(3199), @@ -375788,9 +375791,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3199), [anon_sym_else] = ACTIONS(3199), [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LT_EQ] = ACTIONS(3205), + [anon_sym_GT_EQ] = ACTIONS(3205), + [anon_sym_EQ_EQ] = ACTIONS(3205), + [anon_sym_BANG_EQ] = ACTIONS(3205), [anon_sym_AMP_AMP] = ACTIONS(3205), [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3199), + [sym_op_bitwise_or] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3201), + [sym_op_left_shift] = ACTIONS(3205), + [sym_op_right_shift] = ACTIONS(3203), + [sym_op_unsigned_right_shift] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3199), + [sym_op_divide] = ACTIONS(3203), + [sym_op_modulo] = ACTIONS(3205), [sym_op_coalescing] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3199), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), [anon_sym_from] = ACTIONS(3199), [anon_sym_into] = ACTIONS(3199), [anon_sym_join] = ACTIONS(3199), @@ -375894,32 +375916,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3191), [anon_sym_unmanaged] = ACTIONS(3191), [anon_sym_checked] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), [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_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), [anon_sym_this] = ACTIONS(3191), [anon_sym_DOT] = ACTIONS(3195), [anon_sym_scoped] = ACTIONS(3191), [anon_sym_base] = ACTIONS(3191), [anon_sym_var] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3193), [sym_predefined_type] = ACTIONS(3191), [anon_sym_break] = ACTIONS(3191), [anon_sym_unchecked] = ACTIONS(3191), @@ -375940,9 +375943,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3191), [anon_sym_else] = ACTIONS(3191), [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), [anon_sym_AMP_AMP] = ACTIONS(3197), [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3191), + [sym_op_bitwise_or] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3193), + [sym_op_left_shift] = ACTIONS(3197), + [sym_op_right_shift] = ACTIONS(3195), + [sym_op_unsigned_right_shift] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [sym_op_divide] = ACTIONS(3195), + [sym_op_modulo] = ACTIONS(3197), [sym_op_coalescing] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), [anon_sym_from] = ACTIONS(3191), [anon_sym_into] = ACTIONS(3191), [anon_sym_join] = ACTIONS(3191), @@ -376043,32 +376065,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3199), [anon_sym_unmanaged] = ACTIONS(3199), [anon_sym_checked] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3205), - [anon_sym_EQ_EQ] = ACTIONS(3205), - [anon_sym_BANG_EQ] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3205), - [anon_sym_LT_EQ] = ACTIONS(3205), [anon_sym_this] = ACTIONS(3199), [anon_sym_DOT] = ACTIONS(3203), [anon_sym_scoped] = ACTIONS(3199), [anon_sym_base] = ACTIONS(3199), [anon_sym_var] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3201), [sym_predefined_type] = ACTIONS(3199), [anon_sym_break] = ACTIONS(3199), [anon_sym_unchecked] = ACTIONS(3199), @@ -376089,9 +376092,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3199), [anon_sym_else] = ACTIONS(3199), [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LT_EQ] = ACTIONS(3205), + [anon_sym_GT_EQ] = ACTIONS(3205), + [anon_sym_EQ_EQ] = ACTIONS(3205), + [anon_sym_BANG_EQ] = ACTIONS(3205), [anon_sym_AMP_AMP] = ACTIONS(3205), [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3199), + [sym_op_bitwise_or] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3201), + [sym_op_left_shift] = ACTIONS(3205), + [sym_op_right_shift] = ACTIONS(3203), + [sym_op_unsigned_right_shift] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3199), + [sym_op_divide] = ACTIONS(3203), + [sym_op_modulo] = ACTIONS(3205), [sym_op_coalescing] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3199), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), [anon_sym_from] = ACTIONS(3199), [anon_sym_into] = ACTIONS(3199), [anon_sym_join] = ACTIONS(3199), @@ -376187,32 +376209,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3199), [anon_sym_unmanaged] = ACTIONS(3199), [anon_sym_checked] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3205), - [anon_sym_EQ_EQ] = ACTIONS(3205), - [anon_sym_BANG_EQ] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3205), - [anon_sym_LT_EQ] = ACTIONS(3205), [anon_sym_this] = ACTIONS(3199), [anon_sym_DOT] = ACTIONS(3203), [anon_sym_scoped] = ACTIONS(3199), [anon_sym_base] = ACTIONS(3199), [anon_sym_var] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3201), [sym_predefined_type] = ACTIONS(3199), [anon_sym_break] = ACTIONS(3199), [anon_sym_unchecked] = ACTIONS(3199), @@ -376234,9 +376237,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3199), [anon_sym_else] = ACTIONS(3199), [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LT_EQ] = ACTIONS(3205), + [anon_sym_GT_EQ] = ACTIONS(3205), + [anon_sym_EQ_EQ] = ACTIONS(3205), + [anon_sym_BANG_EQ] = ACTIONS(3205), [anon_sym_AMP_AMP] = ACTIONS(3205), [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3199), + [sym_op_bitwise_or] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3201), + [sym_op_left_shift] = ACTIONS(3205), + [sym_op_right_shift] = ACTIONS(3203), + [sym_op_unsigned_right_shift] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3199), + [sym_op_divide] = ACTIONS(3203), + [sym_op_modulo] = ACTIONS(3205), [sym_op_coalescing] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3199), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), [anon_sym_from] = ACTIONS(3199), [anon_sym_into] = ACTIONS(3199), [anon_sym_join] = ACTIONS(3199), @@ -376332,32 +376354,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3191), [anon_sym_unmanaged] = ACTIONS(3191), [anon_sym_checked] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), [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_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), [anon_sym_this] = ACTIONS(3191), [anon_sym_DOT] = ACTIONS(3195), [anon_sym_scoped] = ACTIONS(3191), [anon_sym_base] = ACTIONS(3191), [anon_sym_var] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3193), [sym_predefined_type] = ACTIONS(3191), [anon_sym_break] = ACTIONS(3191), [anon_sym_unchecked] = ACTIONS(3191), @@ -376379,9 +376382,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3191), [anon_sym_else] = ACTIONS(3191), [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), [anon_sym_AMP_AMP] = ACTIONS(3197), [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3191), + [sym_op_bitwise_or] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3193), + [sym_op_left_shift] = ACTIONS(3197), + [sym_op_right_shift] = ACTIONS(3195), + [sym_op_unsigned_right_shift] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [sym_op_divide] = ACTIONS(3195), + [sym_op_modulo] = ACTIONS(3197), [sym_op_coalescing] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), [anon_sym_from] = ACTIONS(3191), [anon_sym_into] = ACTIONS(3191), [anon_sym_join] = ACTIONS(3191), @@ -376428,59 +376450,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(3193), }, [1926] = { - [sym_using_directive] = STATE(3059), - [sym_attribute_list] = STATE(3132), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(3059), - [sym_class_declaration] = STATE(3059), - [sym__class_declaration_initializer] = STATE(7753), - [sym_struct_declaration] = STATE(3059), - [sym__struct_declaration_initializer] = STATE(7598), - [sym_enum_declaration] = STATE(3059), - [sym_interface_declaration] = STATE(3059), - [sym__interface_declaration_initializer] = STATE(7597), - [sym_delegate_declaration] = STATE(3059), - [sym__delegate_declaration_initializer] = STATE(6939), - [sym_record_declaration] = STATE(3059), - [sym__record_declaration_initializer] = STATE(7067), - [sym_modifier] = STATE(4327), - [sym_operator_declaration] = STATE(3059), - [sym_conversion_operator_declaration] = STATE(3059), - [sym_declaration] = STATE(3056), - [sym_field_declaration] = STATE(3059), - [sym_constructor_declaration] = STATE(3059), - [sym__constructor_declaration_initializer] = STATE(6732), - [sym_destructor_declaration] = STATE(3059), - [sym_method_declaration] = STATE(3059), - [sym_event_declaration] = STATE(3059), - [sym_event_field_declaration] = STATE(3059), - [sym_indexer_declaration] = STATE(3059), - [sym_property_declaration] = STATE(3059), - [sym_variable_declaration] = STATE(7855), + [sym_using_directive] = STATE(2692), + [sym_attribute_list] = STATE(2922), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2692), + [sym_class_declaration] = STATE(2692), + [sym__class_declaration_initializer] = STATE(8120), + [sym_struct_declaration] = STATE(2692), + [sym__struct_declaration_initializer] = STATE(7590), + [sym_enum_declaration] = STATE(2692), + [sym_interface_declaration] = STATE(2692), + [sym__interface_declaration_initializer] = STATE(7586), + [sym_delegate_declaration] = STATE(2692), + [sym__delegate_declaration_initializer] = STATE(6987), + [sym_record_declaration] = STATE(2692), + [sym__record_declaration_initializer] = STATE(7227), + [sym_modifier] = STATE(3484), + [sym_operator_declaration] = STATE(2692), + [sym_conversion_operator_declaration] = STATE(2692), + [sym_declaration] = STATE(2903), + [sym_field_declaration] = STATE(2692), + [sym_constructor_declaration] = STATE(2692), + [sym__constructor_declaration_initializer] = STATE(6742), + [sym_destructor_declaration] = STATE(2692), + [sym_method_declaration] = STATE(2692), + [sym_event_declaration] = STATE(2692), + [sym_event_field_declaration] = STATE(2692), + [sym_indexer_declaration] = STATE(2692), + [sym_property_declaration] = STATE(2692), + [sym_variable_declaration] = STATE(8043), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6011), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if] = STATE(3059), - [sym_preproc_else] = STATE(7747), - [sym_preproc_elif] = STATE(7747), - [sym_preproc_if_in_attribute_list] = STATE(3690), - [sym_preproc_else_in_attribute_list] = STATE(7926), - [sym_preproc_elif_in_attribute_list] = STATE(7926), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5912), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6003), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if] = STATE(2692), + [sym_preproc_else] = STATE(7799), + [sym_preproc_elif] = STATE(7799), + [sym_preproc_if_in_attribute_list] = STATE(3187), + [sym_preproc_else_in_attribute_list] = STATE(7890), + [sym_preproc_elif_in_attribute_list] = STATE(7890), [sym_preproc_region] = STATE(1926), [sym_preproc_endregion] = STATE(1926), [sym_preproc_line] = STATE(1926), @@ -376490,9 +376512,9 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2230), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2312), - [aux_sym_declaration_list_repeat1] = STATE(1928), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2232), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2310), + [aux_sym_declaration_list_repeat1] = STATE(1930), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(3209), [anon_sym_alias] = ACTIONS(3211), @@ -376531,9 +376553,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_implicit] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), + [anon_sym_implicit] = ACTIONS(3233), + [anon_sym_explicit] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3235), [anon_sym_scoped] = ACTIONS(3237), [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), @@ -376568,59 +376590,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1927] = { - [sym_using_directive] = STATE(3059), - [sym_attribute_list] = STATE(3106), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(3059), - [sym_class_declaration] = STATE(3059), - [sym__class_declaration_initializer] = STATE(7753), - [sym_struct_declaration] = STATE(3059), - [sym__struct_declaration_initializer] = STATE(7598), - [sym_enum_declaration] = STATE(3059), - [sym_interface_declaration] = STATE(3059), - [sym__interface_declaration_initializer] = STATE(7597), - [sym_delegate_declaration] = STATE(3059), - [sym__delegate_declaration_initializer] = STATE(6939), - [sym_record_declaration] = STATE(3059), - [sym__record_declaration_initializer] = STATE(7067), - [sym_modifier] = STATE(4327), - [sym_operator_declaration] = STATE(3059), - [sym_conversion_operator_declaration] = STATE(3059), - [sym_declaration] = STATE(3056), - [sym_field_declaration] = STATE(3059), - [sym_constructor_declaration] = STATE(3059), - [sym__constructor_declaration_initializer] = STATE(6732), - [sym_destructor_declaration] = STATE(3059), - [sym_method_declaration] = STATE(3059), - [sym_event_declaration] = STATE(3059), - [sym_event_field_declaration] = STATE(3059), - [sym_indexer_declaration] = STATE(3059), - [sym_property_declaration] = STATE(3059), - [sym_variable_declaration] = STATE(7855), + [sym_using_directive] = STATE(2692), + [sym_attribute_list] = STATE(2921), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2692), + [sym_class_declaration] = STATE(2692), + [sym__class_declaration_initializer] = STATE(8120), + [sym_struct_declaration] = STATE(2692), + [sym__struct_declaration_initializer] = STATE(7590), + [sym_enum_declaration] = STATE(2692), + [sym_interface_declaration] = STATE(2692), + [sym__interface_declaration_initializer] = STATE(7586), + [sym_delegate_declaration] = STATE(2692), + [sym__delegate_declaration_initializer] = STATE(6987), + [sym_record_declaration] = STATE(2692), + [sym__record_declaration_initializer] = STATE(7227), + [sym_modifier] = STATE(3484), + [sym_operator_declaration] = STATE(2692), + [sym_conversion_operator_declaration] = STATE(2692), + [sym_declaration] = STATE(2903), + [sym_field_declaration] = STATE(2692), + [sym_constructor_declaration] = STATE(2692), + [sym__constructor_declaration_initializer] = STATE(6742), + [sym_destructor_declaration] = STATE(2692), + [sym_method_declaration] = STATE(2692), + [sym_event_declaration] = STATE(2692), + [sym_event_field_declaration] = STATE(2692), + [sym_indexer_declaration] = STATE(2692), + [sym_property_declaration] = STATE(2692), + [sym_variable_declaration] = STATE(8043), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6011), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if] = STATE(3059), - [sym_preproc_else] = STATE(8103), - [sym_preproc_elif] = STATE(8103), - [sym_preproc_if_in_attribute_list] = STATE(3690), - [sym_preproc_else_in_attribute_list] = STATE(8040), - [sym_preproc_elif_in_attribute_list] = STATE(8040), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5912), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6003), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if] = STATE(2692), + [sym_preproc_else] = STATE(7637), + [sym_preproc_elif] = STATE(7637), + [sym_preproc_if_in_attribute_list] = STATE(3187), + [sym_preproc_else_in_attribute_list] = STATE(7771), + [sym_preproc_elif_in_attribute_list] = STATE(7771), [sym_preproc_region] = STATE(1927), [sym_preproc_endregion] = STATE(1927), [sym_preproc_line] = STATE(1927), @@ -376630,9 +376652,9 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2230), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2312), - [aux_sym_declaration_list_repeat1] = STATE(1930), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2232), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2310), + [aux_sym_declaration_list_repeat1] = STATE(1929), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(3209), [anon_sym_alias] = ACTIONS(3211), @@ -376671,9 +376693,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_implicit] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), + [anon_sym_implicit] = ACTIONS(3233), + [anon_sym_explicit] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3235), [anon_sym_scoped] = ACTIONS(3237), [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), @@ -376708,57 +376730,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1928] = { - [sym_using_directive] = STATE(3059), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(3059), - [sym_class_declaration] = STATE(3059), - [sym__class_declaration_initializer] = STATE(7753), - [sym_struct_declaration] = STATE(3059), - [sym__struct_declaration_initializer] = STATE(7598), - [sym_enum_declaration] = STATE(3059), - [sym_interface_declaration] = STATE(3059), - [sym__interface_declaration_initializer] = STATE(7597), - [sym_delegate_declaration] = STATE(3059), - [sym__delegate_declaration_initializer] = STATE(6939), - [sym_record_declaration] = STATE(3059), - [sym__record_declaration_initializer] = STATE(7067), - [sym_modifier] = STATE(4327), - [sym_operator_declaration] = STATE(3059), - [sym_conversion_operator_declaration] = STATE(3059), - [sym_declaration] = STATE(3056), - [sym_field_declaration] = STATE(3059), - [sym_constructor_declaration] = STATE(3059), - [sym__constructor_declaration_initializer] = STATE(6732), - [sym_destructor_declaration] = STATE(3059), - [sym_method_declaration] = STATE(3059), - [sym_event_declaration] = STATE(3059), - [sym_event_field_declaration] = STATE(3059), - [sym_indexer_declaration] = STATE(3059), - [sym_property_declaration] = STATE(3059), - [sym_variable_declaration] = STATE(7855), + [sym_using_directive] = STATE(2692), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2692), + [sym_class_declaration] = STATE(2692), + [sym__class_declaration_initializer] = STATE(8120), + [sym_struct_declaration] = STATE(2692), + [sym__struct_declaration_initializer] = STATE(7590), + [sym_enum_declaration] = STATE(2692), + [sym_interface_declaration] = STATE(2692), + [sym__interface_declaration_initializer] = STATE(7586), + [sym_delegate_declaration] = STATE(2692), + [sym__delegate_declaration_initializer] = STATE(6987), + [sym_record_declaration] = STATE(2692), + [sym__record_declaration_initializer] = STATE(7227), + [sym_modifier] = STATE(3484), + [sym_operator_declaration] = STATE(2692), + [sym_conversion_operator_declaration] = STATE(2692), + [sym_declaration] = STATE(2903), + [sym_field_declaration] = STATE(2692), + [sym_constructor_declaration] = STATE(2692), + [sym__constructor_declaration_initializer] = STATE(6742), + [sym_destructor_declaration] = STATE(2692), + [sym_method_declaration] = STATE(2692), + [sym_event_declaration] = STATE(2692), + [sym_event_field_declaration] = STATE(2692), + [sym_indexer_declaration] = STATE(2692), + [sym_property_declaration] = STATE(2692), + [sym_variable_declaration] = STATE(8043), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6011), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if] = STATE(3059), - [sym_preproc_else] = STATE(7734), - [sym_preproc_elif] = STATE(7734), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5912), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6003), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if] = STATE(2692), + [sym_preproc_else] = STATE(7799), + [sym_preproc_elif] = STATE(7799), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(1928), [sym_preproc_endregion] = STATE(1928), [sym_preproc_line] = STATE(1928), @@ -376768,9 +376790,9 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2230), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2312), - [aux_sym_declaration_list_repeat1] = STATE(1931), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2232), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2310), + [aux_sym_declaration_list_repeat1] = STATE(1930), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(3209), [anon_sym_alias] = ACTIONS(3211), @@ -376809,9 +376831,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_implicit] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), + [anon_sym_implicit] = ACTIONS(3233), + [anon_sym_explicit] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3235), [anon_sym_scoped] = ACTIONS(3237), [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), @@ -376831,9 +376853,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3211), [sym_grit_metavariable] = ACTIONS(3243), [aux_sym_preproc_if_token1] = ACTIONS(3245), - [aux_sym_preproc_if_token3] = ACTIONS(3255), - [aux_sym_preproc_else_token1] = ACTIONS(3257), - [aux_sym_preproc_elif_token1] = ACTIONS(3259), + [aux_sym_preproc_if_token3] = ACTIONS(3247), + [aux_sym_preproc_else_token1] = ACTIONS(3255), + [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), @@ -376846,57 +376868,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1929] = { - [sym_using_directive] = STATE(3059), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(3059), - [sym_class_declaration] = STATE(3059), - [sym__class_declaration_initializer] = STATE(7753), - [sym_struct_declaration] = STATE(3059), - [sym__struct_declaration_initializer] = STATE(7598), - [sym_enum_declaration] = STATE(3059), - [sym_interface_declaration] = STATE(3059), - [sym__interface_declaration_initializer] = STATE(7597), - [sym_delegate_declaration] = STATE(3059), - [sym__delegate_declaration_initializer] = STATE(6939), - [sym_record_declaration] = STATE(3059), - [sym__record_declaration_initializer] = STATE(7067), - [sym_modifier] = STATE(4327), - [sym_operator_declaration] = STATE(3059), - [sym_conversion_operator_declaration] = STATE(3059), - [sym_declaration] = STATE(3056), - [sym_field_declaration] = STATE(3059), - [sym_constructor_declaration] = STATE(3059), - [sym__constructor_declaration_initializer] = STATE(6732), - [sym_destructor_declaration] = STATE(3059), - [sym_method_declaration] = STATE(3059), - [sym_event_declaration] = STATE(3059), - [sym_event_field_declaration] = STATE(3059), - [sym_indexer_declaration] = STATE(3059), - [sym_property_declaration] = STATE(3059), - [sym_variable_declaration] = STATE(7855), + [sym_using_directive] = STATE(2692), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2692), + [sym_class_declaration] = STATE(2692), + [sym__class_declaration_initializer] = STATE(8120), + [sym_struct_declaration] = STATE(2692), + [sym__struct_declaration_initializer] = STATE(7590), + [sym_enum_declaration] = STATE(2692), + [sym_interface_declaration] = STATE(2692), + [sym__interface_declaration_initializer] = STATE(7586), + [sym_delegate_declaration] = STATE(2692), + [sym__delegate_declaration_initializer] = STATE(6987), + [sym_record_declaration] = STATE(2692), + [sym__record_declaration_initializer] = STATE(7227), + [sym_modifier] = STATE(3484), + [sym_operator_declaration] = STATE(2692), + [sym_conversion_operator_declaration] = STATE(2692), + [sym_declaration] = STATE(2903), + [sym_field_declaration] = STATE(2692), + [sym_constructor_declaration] = STATE(2692), + [sym__constructor_declaration_initializer] = STATE(6742), + [sym_destructor_declaration] = STATE(2692), + [sym_method_declaration] = STATE(2692), + [sym_event_declaration] = STATE(2692), + [sym_event_field_declaration] = STATE(2692), + [sym_indexer_declaration] = STATE(2692), + [sym_property_declaration] = STATE(2692), + [sym_variable_declaration] = STATE(8043), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6011), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if] = STATE(3059), - [sym_preproc_else] = STATE(7747), - [sym_preproc_elif] = STATE(7747), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5912), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6003), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if] = STATE(2692), + [sym_preproc_else] = STATE(7882), + [sym_preproc_elif] = STATE(7882), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(1929), [sym_preproc_endregion] = STATE(1929), [sym_preproc_line] = STATE(1929), @@ -376906,9 +376928,9 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2230), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2312), - [aux_sym_declaration_list_repeat1] = STATE(1928), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2232), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2310), + [aux_sym_declaration_list_repeat1] = STATE(1931), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(3209), [anon_sym_alias] = ACTIONS(3211), @@ -376947,9 +376969,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_implicit] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), + [anon_sym_implicit] = ACTIONS(3233), + [anon_sym_explicit] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3235), [anon_sym_scoped] = ACTIONS(3237), [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), @@ -376969,9 +376991,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3211), [sym_grit_metavariable] = ACTIONS(3243), [aux_sym_preproc_if_token1] = ACTIONS(3245), - [aux_sym_preproc_if_token3] = ACTIONS(3247), - [aux_sym_preproc_else_token1] = ACTIONS(3257), - [aux_sym_preproc_elif_token1] = ACTIONS(3259), + [aux_sym_preproc_if_token3] = ACTIONS(3259), + [aux_sym_preproc_else_token1] = ACTIONS(3255), + [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), @@ -376984,57 +377006,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1930] = { - [sym_using_directive] = STATE(3059), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(3059), - [sym_class_declaration] = STATE(3059), - [sym__class_declaration_initializer] = STATE(7753), - [sym_struct_declaration] = STATE(3059), - [sym__struct_declaration_initializer] = STATE(7598), - [sym_enum_declaration] = STATE(3059), - [sym_interface_declaration] = STATE(3059), - [sym__interface_declaration_initializer] = STATE(7597), - [sym_delegate_declaration] = STATE(3059), - [sym__delegate_declaration_initializer] = STATE(6939), - [sym_record_declaration] = STATE(3059), - [sym__record_declaration_initializer] = STATE(7067), - [sym_modifier] = STATE(4327), - [sym_operator_declaration] = STATE(3059), - [sym_conversion_operator_declaration] = STATE(3059), - [sym_declaration] = STATE(3056), - [sym_field_declaration] = STATE(3059), - [sym_constructor_declaration] = STATE(3059), - [sym__constructor_declaration_initializer] = STATE(6732), - [sym_destructor_declaration] = STATE(3059), - [sym_method_declaration] = STATE(3059), - [sym_event_declaration] = STATE(3059), - [sym_event_field_declaration] = STATE(3059), - [sym_indexer_declaration] = STATE(3059), - [sym_property_declaration] = STATE(3059), - [sym_variable_declaration] = STATE(7855), + [sym_using_directive] = STATE(2692), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2692), + [sym_class_declaration] = STATE(2692), + [sym__class_declaration_initializer] = STATE(8120), + [sym_struct_declaration] = STATE(2692), + [sym__struct_declaration_initializer] = STATE(7590), + [sym_enum_declaration] = STATE(2692), + [sym_interface_declaration] = STATE(2692), + [sym__interface_declaration_initializer] = STATE(7586), + [sym_delegate_declaration] = STATE(2692), + [sym__delegate_declaration_initializer] = STATE(6987), + [sym_record_declaration] = STATE(2692), + [sym__record_declaration_initializer] = STATE(7227), + [sym_modifier] = STATE(3484), + [sym_operator_declaration] = STATE(2692), + [sym_conversion_operator_declaration] = STATE(2692), + [sym_declaration] = STATE(2903), + [sym_field_declaration] = STATE(2692), + [sym_constructor_declaration] = STATE(2692), + [sym__constructor_declaration_initializer] = STATE(6742), + [sym_destructor_declaration] = STATE(2692), + [sym_method_declaration] = STATE(2692), + [sym_event_declaration] = STATE(2692), + [sym_event_field_declaration] = STATE(2692), + [sym_indexer_declaration] = STATE(2692), + [sym_property_declaration] = STATE(2692), + [sym_variable_declaration] = STATE(8043), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6011), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if] = STATE(3059), - [sym_preproc_else] = STATE(7925), - [sym_preproc_elif] = STATE(7925), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5912), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6003), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if] = STATE(2692), + [sym_preproc_else] = STATE(7883), + [sym_preproc_elif] = STATE(7883), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(1930), [sym_preproc_endregion] = STATE(1930), [sym_preproc_line] = STATE(1930), @@ -377044,8 +377066,8 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2230), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2312), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2232), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2310), [aux_sym_declaration_list_repeat1] = STATE(1931), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(3209), @@ -377085,9 +377107,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_implicit] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), + [anon_sym_implicit] = ACTIONS(3233), + [anon_sym_explicit] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3235), [anon_sym_scoped] = ACTIONS(3237), [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), @@ -377108,8 +377130,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grit_metavariable] = ACTIONS(3243), [aux_sym_preproc_if_token1] = ACTIONS(3245), [aux_sym_preproc_if_token3] = ACTIONS(3261), - [aux_sym_preproc_else_token1] = ACTIONS(3257), - [aux_sym_preproc_elif_token1] = ACTIONS(3259), + [aux_sym_preproc_else_token1] = ACTIONS(3255), + [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), @@ -377122,55 +377144,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1931] = { - [sym_using_directive] = STATE(3059), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(3059), - [sym_class_declaration] = STATE(3059), - [sym__class_declaration_initializer] = STATE(7753), - [sym_struct_declaration] = STATE(3059), - [sym__struct_declaration_initializer] = STATE(7598), - [sym_enum_declaration] = STATE(3059), - [sym_interface_declaration] = STATE(3059), - [sym__interface_declaration_initializer] = STATE(7597), - [sym_delegate_declaration] = STATE(3059), - [sym__delegate_declaration_initializer] = STATE(6939), - [sym_record_declaration] = STATE(3059), - [sym__record_declaration_initializer] = STATE(7067), - [sym_modifier] = STATE(4327), - [sym_operator_declaration] = STATE(3059), - [sym_conversion_operator_declaration] = STATE(3059), - [sym_declaration] = STATE(3056), - [sym_field_declaration] = STATE(3059), - [sym_constructor_declaration] = STATE(3059), - [sym__constructor_declaration_initializer] = STATE(6732), - [sym_destructor_declaration] = STATE(3059), - [sym_method_declaration] = STATE(3059), - [sym_event_declaration] = STATE(3059), - [sym_event_field_declaration] = STATE(3059), - [sym_indexer_declaration] = STATE(3059), - [sym_property_declaration] = STATE(3059), - [sym_variable_declaration] = STATE(7855), + [sym_using_directive] = STATE(2692), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2692), + [sym_class_declaration] = STATE(2692), + [sym__class_declaration_initializer] = STATE(8120), + [sym_struct_declaration] = STATE(2692), + [sym__struct_declaration_initializer] = STATE(7590), + [sym_enum_declaration] = STATE(2692), + [sym_interface_declaration] = STATE(2692), + [sym__interface_declaration_initializer] = STATE(7586), + [sym_delegate_declaration] = STATE(2692), + [sym__delegate_declaration_initializer] = STATE(6987), + [sym_record_declaration] = STATE(2692), + [sym__record_declaration_initializer] = STATE(7227), + [sym_modifier] = STATE(3484), + [sym_operator_declaration] = STATE(2692), + [sym_conversion_operator_declaration] = STATE(2692), + [sym_declaration] = STATE(2903), + [sym_field_declaration] = STATE(2692), + [sym_constructor_declaration] = STATE(2692), + [sym__constructor_declaration_initializer] = STATE(6742), + [sym_destructor_declaration] = STATE(2692), + [sym_method_declaration] = STATE(2692), + [sym_event_declaration] = STATE(2692), + [sym_event_field_declaration] = STATE(2692), + [sym_indexer_declaration] = STATE(2692), + [sym_property_declaration] = STATE(2692), + [sym_variable_declaration] = STATE(8043), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6011), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if] = STATE(3059), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5912), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6003), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if] = STATE(2692), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(1931), [sym_preproc_endregion] = STATE(1931), [sym_preproc_line] = STATE(1931), @@ -377180,8 +377202,8 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2230), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2312), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2232), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2310), [aux_sym_declaration_list_repeat1] = STATE(1931), [sym__identifier_token] = ACTIONS(3263), [anon_sym_extern] = ACTIONS(3266), @@ -377222,9 +377244,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(3269), [anon_sym_notnull] = ACTIONS(3269), [anon_sym_unmanaged] = ACTIONS(3269), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_implicit] = ACTIONS(3322), - [anon_sym_explicit] = ACTIONS(3322), + [anon_sym_implicit] = ACTIONS(3319), + [anon_sym_explicit] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3322), [anon_sym_scoped] = ACTIONS(3325), [anon_sym_var] = ACTIONS(3328), [sym_predefined_type] = ACTIONS(3331), @@ -377259,8 +377281,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1932] = { - [sym_catch_clause] = STATE(1947), - [sym_finally_clause] = STATE(1952), + [sym_catch_clause] = STATE(1944), + [sym_finally_clause] = STATE(1990), [sym_preproc_region] = STATE(1932), [sym_preproc_endregion] = STATE(1932), [sym_preproc_line] = STATE(1932), @@ -377312,21 +377334,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3340), [anon_sym_unmanaged] = ACTIONS(3340), [anon_sym_checked] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3342), [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3342), - [anon_sym_CARET] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3342), [anon_sym_this] = ACTIONS(3340), [anon_sym_scoped] = ACTIONS(3340), [anon_sym_base] = ACTIONS(3340), [anon_sym_var] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), [sym_predefined_type] = ACTIONS(3340), [anon_sym_break] = ACTIONS(3340), [anon_sym_unchecked] = ACTIONS(3340), @@ -377349,6 +377362,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3340), [anon_sym_else] = ACTIONS(3340), [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), [anon_sym_from] = ACTIONS(3340), [anon_sym_into] = ACTIONS(3340), [anon_sym_join] = ACTIONS(3340), @@ -377394,8 +377416,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(3342), }, [1933] = { - [sym_catch_clause] = STATE(1947), - [sym_finally_clause] = STATE(1959), + [sym_catch_clause] = STATE(1944), + [sym_finally_clause] = STATE(1964), [sym_preproc_region] = STATE(1933), [sym_preproc_endregion] = STATE(1933), [sym_preproc_line] = STATE(1933), @@ -377405,7 +377427,7 @@ 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), - [aux_sym_try_statement_repeat1] = STATE(1934), + [aux_sym_try_statement_repeat1] = STATE(1935), [sym__identifier_token] = ACTIONS(3348), [anon_sym_extern] = ACTIONS(3348), [anon_sym_alias] = ACTIONS(3348), @@ -377447,21 +377469,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3348), [anon_sym_unmanaged] = ACTIONS(3348), [anon_sym_checked] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3350), [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_true] = ACTIONS(3348), - [anon_sym_false] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3350), - [anon_sym_CARET] = ACTIONS(3350), - [anon_sym_AMP] = ACTIONS(3350), [anon_sym_this] = ACTIONS(3348), [anon_sym_scoped] = ACTIONS(3348), [anon_sym_base] = ACTIONS(3348), [anon_sym_var] = ACTIONS(3348), + [anon_sym_STAR] = ACTIONS(3350), [sym_predefined_type] = ACTIONS(3348), [anon_sym_break] = ACTIONS(3348), [anon_sym_unchecked] = ACTIONS(3348), @@ -377484,6 +377497,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3348), [anon_sym_else] = ACTIONS(3348), [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), [anon_sym_from] = ACTIONS(3348), [anon_sym_into] = ACTIONS(3348), [anon_sym_join] = ACTIONS(3348), @@ -377529,7 +377551,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(3350), }, [1934] = { - [sym_catch_clause] = STATE(1947), + [sym_using_directive] = STATE(2692), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2692), + [sym_class_declaration] = STATE(2692), + [sym__class_declaration_initializer] = STATE(8120), + [sym_struct_declaration] = STATE(2692), + [sym__struct_declaration_initializer] = STATE(7590), + [sym_enum_declaration] = STATE(2692), + [sym_interface_declaration] = STATE(2692), + [sym__interface_declaration_initializer] = STATE(7586), + [sym_delegate_declaration] = STATE(2692), + [sym__delegate_declaration_initializer] = STATE(6987), + [sym_record_declaration] = STATE(2692), + [sym__record_declaration_initializer] = STATE(7227), + [sym_modifier] = STATE(3484), + [sym_operator_declaration] = STATE(2692), + [sym_conversion_operator_declaration] = STATE(2692), + [sym_declaration] = STATE(2903), + [sym_field_declaration] = STATE(2692), + [sym_constructor_declaration] = STATE(2692), + [sym__constructor_declaration_initializer] = STATE(6742), + [sym_destructor_declaration] = STATE(2692), + [sym_method_declaration] = STATE(2692), + [sym_event_declaration] = STATE(2692), + [sym_event_field_declaration] = STATE(2692), + [sym_indexer_declaration] = STATE(2692), + [sym_property_declaration] = STATE(2692), + [sym_variable_declaration] = STATE(8043), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5912), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6003), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if] = STATE(2692), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(1934), [sym_preproc_endregion] = STATE(1934), [sym_preproc_line] = STATE(1934), @@ -377539,179 +377609,83 @@ 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), - [aux_sym_try_statement_repeat1] = STATE(1934), - [sym__identifier_token] = ACTIONS(3352), - [anon_sym_extern] = ACTIONS(3352), - [anon_sym_alias] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_global] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_namespace] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_ref] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3352), - [anon_sym_delegate] = ACTIONS(3352), - [anon_sym_record] = ACTIONS(3352), - [anon_sym_public] = ACTIONS(3352), - [anon_sym_private] = ACTIONS(3352), - [anon_sym_readonly] = ACTIONS(3352), - [anon_sym_abstract] = ACTIONS(3352), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_file] = ACTIONS(3352), - [anon_sym_fixed] = ACTIONS(3352), - [anon_sym_internal] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3352), - [anon_sym_override] = ACTIONS(3352), - [anon_sym_partial] = ACTIONS(3352), - [anon_sym_protected] = ACTIONS(3352), - [anon_sym_required] = ACTIONS(3352), - [anon_sym_sealed] = ACTIONS(3352), - [anon_sym_virtual] = ACTIONS(3352), - [anon_sym_volatile] = ACTIONS(3352), - [anon_sym_where] = ACTIONS(3352), - [anon_sym_notnull] = ACTIONS(3352), - [anon_sym_unmanaged] = ACTIONS(3352), - [anon_sym_checked] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_true] = ACTIONS(3352), - [anon_sym_false] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_this] = ACTIONS(3352), - [anon_sym_scoped] = ACTIONS(3352), - [anon_sym_base] = ACTIONS(3352), - [anon_sym_var] = ACTIONS(3352), - [sym_predefined_type] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_unchecked] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_do] = ACTIONS(3352), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3352), - [anon_sym_default] = ACTIONS(3352), - [anon_sym_throw] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_catch] = ACTIONS(3356), - [anon_sym_when] = ACTIONS(3352), - [anon_sym_finally] = ACTIONS(3352), - [anon_sym_await] = ACTIONS(3352), - [anon_sym_foreach] = ACTIONS(3352), - [anon_sym_goto] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_else] = ACTIONS(3352), - [anon_sym_DOT_DOT] = ACTIONS(3354), - [anon_sym_from] = ACTIONS(3352), - [anon_sym_into] = ACTIONS(3352), - [anon_sym_join] = ACTIONS(3352), - [anon_sym_on] = ACTIONS(3352), - [anon_sym_equals] = ACTIONS(3352), - [anon_sym_let] = ACTIONS(3352), - [anon_sym_orderby] = ACTIONS(3352), - [anon_sym_ascending] = ACTIONS(3352), - [anon_sym_descending] = ACTIONS(3352), - [anon_sym_group] = ACTIONS(3352), - [anon_sym_by] = ACTIONS(3352), - [anon_sym_select] = ACTIONS(3352), - [anon_sym_stackalloc] = ACTIONS(3352), - [anon_sym_sizeof] = ACTIONS(3352), - [anon_sym_typeof] = ACTIONS(3352), - [anon_sym___makeref] = ACTIONS(3352), - [anon_sym___reftype] = ACTIONS(3352), - [anon_sym___refvalue] = ACTIONS(3352), - [sym_null_literal] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(3354), - [sym_integer_literal] = ACTIONS(3352), - [sym_real_literal] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [sym_verbatim_string_literal] = ACTIONS(3354), - [sym_grit_metavariable] = ACTIONS(3354), - [aux_sym_preproc_if_token1] = ACTIONS(3354), - [aux_sym_preproc_if_token3] = ACTIONS(3354), - [aux_sym_preproc_else_token1] = ACTIONS(3354), - [aux_sym_preproc_elif_token1] = ACTIONS(3354), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3354), - [sym_interpolation_verbatim_start] = ACTIONS(3354), - [sym_interpolation_raw_start] = ACTIONS(3354), - [sym_raw_string_start] = ACTIONS(3354), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2232), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2310), + [aux_sym_declaration_list_repeat1] = STATE(1938), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(3209), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_event] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(3225), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(3229), + [anon_sym_record] = ACTIONS(63), + [anon_sym_public] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3231), + [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_protected] = 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(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_implicit] = ACTIONS(3233), + [anon_sym_explicit] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(3243), + [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), }, [1935] = { - [sym_using_directive] = STATE(3059), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(3059), - [sym_class_declaration] = STATE(3059), - [sym__class_declaration_initializer] = STATE(7753), - [sym_struct_declaration] = STATE(3059), - [sym__struct_declaration_initializer] = STATE(7598), - [sym_enum_declaration] = STATE(3059), - [sym_interface_declaration] = STATE(3059), - [sym__interface_declaration_initializer] = STATE(7597), - [sym_delegate_declaration] = STATE(3059), - [sym__delegate_declaration_initializer] = STATE(6939), - [sym_record_declaration] = STATE(3059), - [sym__record_declaration_initializer] = STATE(7067), - [sym_modifier] = STATE(4327), - [sym_operator_declaration] = STATE(3059), - [sym_conversion_operator_declaration] = STATE(3059), - [sym_declaration] = STATE(3056), - [sym_field_declaration] = STATE(3059), - [sym_constructor_declaration] = STATE(3059), - [sym__constructor_declaration_initializer] = STATE(6732), - [sym_destructor_declaration] = STATE(3059), - [sym_method_declaration] = STATE(3059), - [sym_event_declaration] = STATE(3059), - [sym_event_field_declaration] = STATE(3059), - [sym_indexer_declaration] = STATE(3059), - [sym_property_declaration] = STATE(3059), - [sym_variable_declaration] = STATE(7855), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6011), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if] = STATE(3059), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_catch_clause] = STATE(1944), [sym_preproc_region] = STATE(1935), [sym_preproc_endregion] = STATE(1935), [sym_preproc_line] = STATE(1935), @@ -377721,9 +377695,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1935), [sym_preproc_define] = STATE(1935), [sym_preproc_undef] = STATE(1935), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2230), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2312), - [aux_sym_declaration_list_repeat1] = STATE(1938), + [aux_sym_try_statement_repeat1] = STATE(1935), + [sym__identifier_token] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_alias] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_ref] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_delegate] = ACTIONS(3354), + [anon_sym_record] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_file] = ACTIONS(3354), + [anon_sym_fixed] = ACTIONS(3354), + [anon_sym_internal] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_partial] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_required] = ACTIONS(3354), + [anon_sym_sealed] = ACTIONS(3354), + [anon_sym_virtual] = ACTIONS(3354), + [anon_sym_volatile] = ACTIONS(3354), + [anon_sym_where] = ACTIONS(3354), + [anon_sym_notnull] = ACTIONS(3354), + [anon_sym_unmanaged] = ACTIONS(3354), + [anon_sym_checked] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_this] = ACTIONS(3354), + [anon_sym_scoped] = ACTIONS(3354), + [anon_sym_base] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3356), + [sym_predefined_type] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_unchecked] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_lock] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3354), + [anon_sym_finally] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_foreach] = ACTIONS(3354), + [anon_sym_goto] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [anon_sym_from] = ACTIONS(3354), + [anon_sym_into] = ACTIONS(3354), + [anon_sym_join] = ACTIONS(3354), + [anon_sym_on] = ACTIONS(3354), + [anon_sym_equals] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_orderby] = ACTIONS(3354), + [anon_sym_ascending] = ACTIONS(3354), + [anon_sym_descending] = ACTIONS(3354), + [anon_sym_group] = ACTIONS(3354), + [anon_sym_by] = ACTIONS(3354), + [anon_sym_select] = ACTIONS(3354), + [anon_sym_stackalloc] = ACTIONS(3354), + [anon_sym_sizeof] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym___makeref] = ACTIONS(3354), + [anon_sym___reftype] = ACTIONS(3354), + [anon_sym___refvalue] = ACTIONS(3354), + [sym_null_literal] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3356), + [sym_integer_literal] = ACTIONS(3354), + [sym_real_literal] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [sym_verbatim_string_literal] = ACTIONS(3356), + [sym_grit_metavariable] = ACTIONS(3356), + [aux_sym_preproc_if_token1] = ACTIONS(3356), + [aux_sym_preproc_if_token3] = ACTIONS(3356), + [aux_sym_preproc_else_token1] = ACTIONS(3356), + [aux_sym_preproc_elif_token1] = ACTIONS(3356), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3356), + [sym_interpolation_verbatim_start] = ACTIONS(3356), + [sym_interpolation_raw_start] = ACTIONS(3356), + [sym_raw_string_start] = ACTIONS(3356), + }, + [1936] = { + [sym_using_directive] = STATE(2692), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2692), + [sym_class_declaration] = STATE(2692), + [sym__class_declaration_initializer] = STATE(8120), + [sym_struct_declaration] = STATE(2692), + [sym__struct_declaration_initializer] = STATE(7590), + [sym_enum_declaration] = STATE(2692), + [sym_interface_declaration] = STATE(2692), + [sym__interface_declaration_initializer] = STATE(7586), + [sym_delegate_declaration] = STATE(2692), + [sym__delegate_declaration_initializer] = STATE(6987), + [sym_record_declaration] = STATE(2692), + [sym__record_declaration_initializer] = STATE(7227), + [sym_modifier] = STATE(3484), + [sym_operator_declaration] = STATE(2692), + [sym_conversion_operator_declaration] = STATE(2692), + [sym_declaration] = STATE(2903), + [sym_field_declaration] = STATE(2692), + [sym_constructor_declaration] = STATE(2692), + [sym__constructor_declaration_initializer] = STATE(6742), + [sym_destructor_declaration] = STATE(2692), + [sym_method_declaration] = STATE(2692), + [sym_event_declaration] = STATE(2692), + [sym_event_field_declaration] = STATE(2692), + [sym_indexer_declaration] = STATE(2692), + [sym_property_declaration] = STATE(2692), + [sym_variable_declaration] = STATE(8043), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5912), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6003), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if] = STATE(2692), + [sym_preproc_if_in_attribute_list] = STATE(3187), + [sym_preproc_region] = STATE(1936), + [sym_preproc_endregion] = STATE(1936), + [sym_preproc_line] = STATE(1936), + [sym_preproc_pragma] = STATE(1936), + [sym_preproc_nullable] = STATE(1936), + [sym_preproc_error] = STATE(1936), + [sym_preproc_warning] = STATE(1936), + [sym_preproc_define] = STATE(1936), + [sym_preproc_undef] = STATE(1936), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2232), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2310), + [aux_sym_declaration_list_repeat1] = STATE(1931), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(3209), [anon_sym_alias] = ACTIONS(3211), @@ -377762,144 +377918,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_implicit] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(3243), - [aux_sym_preproc_if_token1] = ACTIONS(3245), - [aux_sym_preproc_if_token3] = 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), - }, - [1936] = { - [sym_using_directive] = STATE(3059), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(3059), - [sym_class_declaration] = STATE(3059), - [sym__class_declaration_initializer] = STATE(7753), - [sym_struct_declaration] = STATE(3059), - [sym__struct_declaration_initializer] = STATE(7598), - [sym_enum_declaration] = STATE(3059), - [sym_interface_declaration] = STATE(3059), - [sym__interface_declaration_initializer] = STATE(7597), - [sym_delegate_declaration] = STATE(3059), - [sym__delegate_declaration_initializer] = STATE(6939), - [sym_record_declaration] = STATE(3059), - [sym__record_declaration_initializer] = STATE(7067), - [sym_modifier] = STATE(4327), - [sym_operator_declaration] = STATE(3059), - [sym_conversion_operator_declaration] = STATE(3059), - [sym_declaration] = STATE(3056), - [sym_field_declaration] = STATE(3059), - [sym_constructor_declaration] = STATE(3059), - [sym__constructor_declaration_initializer] = STATE(6732), - [sym_destructor_declaration] = STATE(3059), - [sym_method_declaration] = STATE(3059), - [sym_event_declaration] = STATE(3059), - [sym_event_field_declaration] = STATE(3059), - [sym_indexer_declaration] = STATE(3059), - [sym_property_declaration] = STATE(3059), - [sym_variable_declaration] = STATE(7855), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6011), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if] = STATE(3059), - [sym_preproc_if_in_attribute_list] = STATE(3690), - [sym_preproc_region] = STATE(1936), - [sym_preproc_endregion] = STATE(1936), - [sym_preproc_line] = STATE(1936), - [sym_preproc_pragma] = STATE(1936), - [sym_preproc_nullable] = STATE(1936), - [sym_preproc_error] = STATE(1936), - [sym_preproc_warning] = STATE(1936), - [sym_preproc_define] = STATE(1936), - [sym_preproc_undef] = STATE(1936), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2230), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2312), - [aux_sym_declaration_list_repeat1] = STATE(1939), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3209), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3213), - [anon_sym_using] = ACTIONS(3215), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_event] = ACTIONS(3221), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(3225), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(3229), - [anon_sym_record] = ACTIONS(63), - [anon_sym_public] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3231), - [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_protected] = 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(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_implicit] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), + [anon_sym_implicit] = ACTIONS(3233), + [anon_sym_explicit] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3235), [anon_sym_scoped] = ACTIONS(3237), [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), @@ -377919,6 +377940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3211), [sym_grit_metavariable] = ACTIONS(3243), [aux_sym_preproc_if_token1] = ACTIONS(3245), + [aux_sym_preproc_if_token3] = ACTIONS(3361), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -377931,55 +377953,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1937] = { - [sym_using_directive] = STATE(3059), - [sym_attribute_list] = STATE(3427), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(3059), - [sym_class_declaration] = STATE(3059), - [sym__class_declaration_initializer] = STATE(7753), - [sym_struct_declaration] = STATE(3059), - [sym__struct_declaration_initializer] = STATE(7598), - [sym_enum_declaration] = STATE(3059), - [sym_interface_declaration] = STATE(3059), - [sym__interface_declaration_initializer] = STATE(7597), - [sym_delegate_declaration] = STATE(3059), - [sym__delegate_declaration_initializer] = STATE(6939), - [sym_record_declaration] = STATE(3059), - [sym__record_declaration_initializer] = STATE(7067), - [sym_modifier] = STATE(4327), - [sym_operator_declaration] = STATE(3059), - [sym_conversion_operator_declaration] = STATE(3059), - [sym_declaration] = STATE(3056), - [sym_field_declaration] = STATE(3059), - [sym_constructor_declaration] = STATE(3059), - [sym__constructor_declaration_initializer] = STATE(6732), - [sym_destructor_declaration] = STATE(3059), - [sym_method_declaration] = STATE(3059), - [sym_event_declaration] = STATE(3059), - [sym_event_field_declaration] = STATE(3059), - [sym_indexer_declaration] = STATE(3059), - [sym_property_declaration] = STATE(3059), - [sym_variable_declaration] = STATE(7855), + [sym_using_directive] = STATE(2692), + [sym_attribute_list] = STATE(3114), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2692), + [sym_class_declaration] = STATE(2692), + [sym__class_declaration_initializer] = STATE(8120), + [sym_struct_declaration] = STATE(2692), + [sym__struct_declaration_initializer] = STATE(7590), + [sym_enum_declaration] = STATE(2692), + [sym_interface_declaration] = STATE(2692), + [sym__interface_declaration_initializer] = STATE(7586), + [sym_delegate_declaration] = STATE(2692), + [sym__delegate_declaration_initializer] = STATE(6987), + [sym_record_declaration] = STATE(2692), + [sym__record_declaration_initializer] = STATE(7227), + [sym_modifier] = STATE(3484), + [sym_operator_declaration] = STATE(2692), + [sym_conversion_operator_declaration] = STATE(2692), + [sym_declaration] = STATE(2903), + [sym_field_declaration] = STATE(2692), + [sym_constructor_declaration] = STATE(2692), + [sym__constructor_declaration_initializer] = STATE(6742), + [sym_destructor_declaration] = STATE(2692), + [sym_method_declaration] = STATE(2692), + [sym_event_declaration] = STATE(2692), + [sym_event_field_declaration] = STATE(2692), + [sym_indexer_declaration] = STATE(2692), + [sym_property_declaration] = STATE(2692), + [sym_variable_declaration] = STATE(8043), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6011), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if] = STATE(3059), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5912), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6003), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if] = STATE(2692), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(1937), [sym_preproc_endregion] = STATE(1937), [sym_preproc_line] = STATE(1937), @@ -377989,9 +378011,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1937), [sym_preproc_define] = STATE(1937), [sym_preproc_undef] = STATE(1937), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2230), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2312), - [aux_sym_declaration_list_repeat1] = STATE(1938), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2232), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2310), + [aux_sym_declaration_list_repeat1] = STATE(1936), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(3209), [anon_sym_alias] = ACTIONS(3211), @@ -378030,9 +378052,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_implicit] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), + [anon_sym_implicit] = ACTIONS(3233), + [anon_sym_explicit] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3235), [anon_sym_scoped] = ACTIONS(3237), [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), @@ -378052,7 +378074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3211), [sym_grit_metavariable] = ACTIONS(3243), [aux_sym_preproc_if_token1] = ACTIONS(3245), - [aux_sym_preproc_if_token3] = ACTIONS(3359), + [aux_sym_preproc_if_token3] = ACTIONS(3363), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -378065,55 +378087,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1938] = { - [sym_using_directive] = STATE(3059), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(3059), - [sym_class_declaration] = STATE(3059), - [sym__class_declaration_initializer] = STATE(7753), - [sym_struct_declaration] = STATE(3059), - [sym__struct_declaration_initializer] = STATE(7598), - [sym_enum_declaration] = STATE(3059), - [sym_interface_declaration] = STATE(3059), - [sym__interface_declaration_initializer] = STATE(7597), - [sym_delegate_declaration] = STATE(3059), - [sym__delegate_declaration_initializer] = STATE(6939), - [sym_record_declaration] = STATE(3059), - [sym__record_declaration_initializer] = STATE(7067), - [sym_modifier] = STATE(4327), - [sym_operator_declaration] = STATE(3059), - [sym_conversion_operator_declaration] = STATE(3059), - [sym_declaration] = STATE(3056), - [sym_field_declaration] = STATE(3059), - [sym_constructor_declaration] = STATE(3059), - [sym__constructor_declaration_initializer] = STATE(6732), - [sym_destructor_declaration] = STATE(3059), - [sym_method_declaration] = STATE(3059), - [sym_event_declaration] = STATE(3059), - [sym_event_field_declaration] = STATE(3059), - [sym_indexer_declaration] = STATE(3059), - [sym_property_declaration] = STATE(3059), - [sym_variable_declaration] = STATE(7855), + [sym_using_directive] = STATE(2692), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2692), + [sym_class_declaration] = STATE(2692), + [sym__class_declaration_initializer] = STATE(8120), + [sym_struct_declaration] = STATE(2692), + [sym__struct_declaration_initializer] = STATE(7590), + [sym_enum_declaration] = STATE(2692), + [sym_interface_declaration] = STATE(2692), + [sym__interface_declaration_initializer] = STATE(7586), + [sym_delegate_declaration] = STATE(2692), + [sym__delegate_declaration_initializer] = STATE(6987), + [sym_record_declaration] = STATE(2692), + [sym__record_declaration_initializer] = STATE(7227), + [sym_modifier] = STATE(3484), + [sym_operator_declaration] = STATE(2692), + [sym_conversion_operator_declaration] = STATE(2692), + [sym_declaration] = STATE(2903), + [sym_field_declaration] = STATE(2692), + [sym_constructor_declaration] = STATE(2692), + [sym__constructor_declaration_initializer] = STATE(6742), + [sym_destructor_declaration] = STATE(2692), + [sym_method_declaration] = STATE(2692), + [sym_event_declaration] = STATE(2692), + [sym_event_field_declaration] = STATE(2692), + [sym_indexer_declaration] = STATE(2692), + [sym_property_declaration] = STATE(2692), + [sym_variable_declaration] = STATE(8043), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6011), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if] = STATE(3059), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5912), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6003), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if] = STATE(2692), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(1938), [sym_preproc_endregion] = STATE(1938), [sym_preproc_line] = STATE(1938), @@ -378123,8 +378145,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1938), [sym_preproc_define] = STATE(1938), [sym_preproc_undef] = STATE(1938), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2230), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2312), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2232), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2310), [aux_sym_declaration_list_repeat1] = STATE(1931), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(3209), @@ -378141,6 +378163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(3225), [anon_sym_struct] = ACTIONS(53), [anon_sym_enum] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3365), [anon_sym_interface] = ACTIONS(59), [anon_sym_delegate] = ACTIONS(3229), [anon_sym_record] = ACTIONS(63), @@ -378164,9 +378187,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_implicit] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), + [anon_sym_implicit] = ACTIONS(3233), + [anon_sym_explicit] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3235), [anon_sym_scoped] = ACTIONS(3237), [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), @@ -378186,7 +378209,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3211), [sym_grit_metavariable] = ACTIONS(3243), [aux_sym_preproc_if_token1] = ACTIONS(3245), - [aux_sym_preproc_if_token3] = ACTIONS(3363), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -378199,55 +378221,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1939] = { - [sym_using_directive] = STATE(3059), - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_namespace_declaration] = STATE(3059), - [sym_class_declaration] = STATE(3059), - [sym__class_declaration_initializer] = STATE(7753), - [sym_struct_declaration] = STATE(3059), - [sym__struct_declaration_initializer] = STATE(7598), - [sym_enum_declaration] = STATE(3059), - [sym_interface_declaration] = STATE(3059), - [sym__interface_declaration_initializer] = STATE(7597), - [sym_delegate_declaration] = STATE(3059), - [sym__delegate_declaration_initializer] = STATE(6939), - [sym_record_declaration] = STATE(3059), - [sym__record_declaration_initializer] = STATE(7067), - [sym_modifier] = STATE(4327), - [sym_operator_declaration] = STATE(3059), - [sym_conversion_operator_declaration] = STATE(3059), - [sym_declaration] = STATE(3056), - [sym_field_declaration] = STATE(3059), - [sym_constructor_declaration] = STATE(3059), - [sym__constructor_declaration_initializer] = STATE(6732), - [sym_destructor_declaration] = STATE(3059), - [sym_method_declaration] = STATE(3059), - [sym_event_declaration] = STATE(3059), - [sym_event_field_declaration] = STATE(3059), - [sym_indexer_declaration] = STATE(3059), - [sym_property_declaration] = STATE(3059), - [sym_variable_declaration] = STATE(7855), + [sym_using_directive] = STATE(2692), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_namespace_declaration] = STATE(2692), + [sym_class_declaration] = STATE(2692), + [sym__class_declaration_initializer] = STATE(8120), + [sym_struct_declaration] = STATE(2692), + [sym__struct_declaration_initializer] = STATE(7590), + [sym_enum_declaration] = STATE(2692), + [sym_interface_declaration] = STATE(2692), + [sym__interface_declaration_initializer] = STATE(7586), + [sym_delegate_declaration] = STATE(2692), + [sym__delegate_declaration_initializer] = STATE(6987), + [sym_record_declaration] = STATE(2692), + [sym__record_declaration_initializer] = STATE(7227), + [sym_modifier] = STATE(3484), + [sym_operator_declaration] = STATE(2692), + [sym_conversion_operator_declaration] = STATE(2692), + [sym_declaration] = STATE(2903), + [sym_field_declaration] = STATE(2692), + [sym_constructor_declaration] = STATE(2692), + [sym__constructor_declaration_initializer] = STATE(6742), + [sym_destructor_declaration] = STATE(2692), + [sym_method_declaration] = STATE(2692), + [sym_event_declaration] = STATE(2692), + [sym_event_field_declaration] = STATE(2692), + [sym_indexer_declaration] = STATE(2692), + [sym_property_declaration] = STATE(2692), + [sym_variable_declaration] = STATE(8043), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6011), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if] = STATE(3059), - [sym_preproc_if_in_attribute_list] = STATE(3690), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5912), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6003), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if] = STATE(2692), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(1939), [sym_preproc_endregion] = STATE(1939), [sym_preproc_line] = STATE(1939), @@ -378257,9 +378279,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1939), [sym_preproc_define] = STATE(1939), [sym_preproc_undef] = STATE(1939), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2230), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2312), - [aux_sym_declaration_list_repeat1] = STATE(1931), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2232), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2310), + [aux_sym_declaration_list_repeat1] = STATE(1936), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(3209), [anon_sym_alias] = ACTIONS(3211), @@ -378275,7 +378297,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(3225), [anon_sym_struct] = ACTIONS(53), [anon_sym_enum] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3365), [anon_sym_interface] = ACTIONS(59), [anon_sym_delegate] = ACTIONS(3229), [anon_sym_record] = ACTIONS(63), @@ -378299,9 +378320,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_implicit] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), + [anon_sym_implicit] = ACTIONS(3233), + [anon_sym_explicit] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3235), [anon_sym_scoped] = ACTIONS(3237), [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), @@ -378321,6 +378342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3211), [sym_grit_metavariable] = ACTIONS(3243), [aux_sym_preproc_if_token1] = ACTIONS(3245), + [aux_sym_preproc_if_token3] = ACTIONS(3363), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -378333,8 +378355,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1940] = { - [sym_catch_clause] = STATE(1950), - [sym_finally_clause] = STATE(2044), + [sym_catch_clause] = STATE(1991), + [sym_finally_clause] = STATE(2042), [sym_preproc_region] = STATE(1940), [sym_preproc_endregion] = STATE(1940), [sym_preproc_line] = STATE(1940), @@ -378344,140 +378366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1940), [sym_preproc_define] = STATE(1940), [sym_preproc_undef] = STATE(1940), - [aux_sym_try_statement_repeat1] = STATE(1944), - [ts_builtin_sym_end] = ACTIONS(3350), - [sym__identifier_token] = ACTIONS(3348), - [anon_sym_extern] = ACTIONS(3348), - [anon_sym_alias] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_global] = ACTIONS(3348), - [anon_sym_using] = ACTIONS(3348), - [anon_sym_unsafe] = ACTIONS(3348), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_class] = ACTIONS(3348), - [anon_sym_ref] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_interface] = ACTIONS(3348), - [anon_sym_delegate] = ACTIONS(3348), - [anon_sym_record] = ACTIONS(3348), - [anon_sym_public] = ACTIONS(3348), - [anon_sym_private] = ACTIONS(3348), - [anon_sym_readonly] = ACTIONS(3348), - [anon_sym_abstract] = ACTIONS(3348), - [anon_sym_async] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_file] = ACTIONS(3348), - [anon_sym_fixed] = ACTIONS(3348), - [anon_sym_internal] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_override] = ACTIONS(3348), - [anon_sym_partial] = ACTIONS(3348), - [anon_sym_protected] = ACTIONS(3348), - [anon_sym_required] = ACTIONS(3348), - [anon_sym_sealed] = ACTIONS(3348), - [anon_sym_virtual] = ACTIONS(3348), - [anon_sym_volatile] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(3348), - [anon_sym_notnull] = ACTIONS(3348), - [anon_sym_unmanaged] = ACTIONS(3348), - [anon_sym_checked] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_true] = ACTIONS(3348), - [anon_sym_false] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3350), - [anon_sym_CARET] = ACTIONS(3350), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_this] = ACTIONS(3348), - [anon_sym_scoped] = ACTIONS(3348), - [anon_sym_base] = ACTIONS(3348), - [anon_sym_var] = ACTIONS(3348), - [sym_predefined_type] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_unchecked] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_lock] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_catch] = ACTIONS(3367), - [anon_sym_when] = ACTIONS(3348), - [anon_sym_finally] = ACTIONS(3369), - [anon_sym_await] = ACTIONS(3348), - [anon_sym_foreach] = ACTIONS(3348), - [anon_sym_goto] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_from] = ACTIONS(3348), - [anon_sym_into] = ACTIONS(3348), - [anon_sym_join] = ACTIONS(3348), - [anon_sym_on] = ACTIONS(3348), - [anon_sym_equals] = ACTIONS(3348), - [anon_sym_let] = ACTIONS(3348), - [anon_sym_orderby] = ACTIONS(3348), - [anon_sym_ascending] = ACTIONS(3348), - [anon_sym_descending] = ACTIONS(3348), - [anon_sym_group] = ACTIONS(3348), - [anon_sym_by] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3348), - [anon_sym_stackalloc] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3348), - [anon_sym_typeof] = ACTIONS(3348), - [anon_sym___makeref] = ACTIONS(3348), - [anon_sym___reftype] = ACTIONS(3348), - [anon_sym___refvalue] = ACTIONS(3348), - [sym_null_literal] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3350), - [sym_integer_literal] = ACTIONS(3348), - [sym_real_literal] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [sym_verbatim_string_literal] = ACTIONS(3350), - [sym_grit_metavariable] = ACTIONS(3350), - [aux_sym_preproc_if_token1] = ACTIONS(3350), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3350), - [sym_interpolation_verbatim_start] = ACTIONS(3350), - [sym_interpolation_raw_start] = ACTIONS(3350), - [sym_raw_string_start] = ACTIONS(3350), - }, - [1941] = { - [sym_catch_clause] = STATE(1950), - [sym_finally_clause] = STATE(2059), - [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), - [aux_sym_try_statement_repeat1] = STATE(1940), + [aux_sym_try_statement_repeat1] = STATE(1941), [ts_builtin_sym_end] = ACTIONS(3342), [sym__identifier_token] = ACTIONS(3340), [anon_sym_extern] = ACTIONS(3340), @@ -378520,21 +378409,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3340), [anon_sym_unmanaged] = ACTIONS(3340), [anon_sym_checked] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3342), [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3342), - [anon_sym_CARET] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3342), [anon_sym_this] = ACTIONS(3340), [anon_sym_scoped] = ACTIONS(3340), [anon_sym_base] = ACTIONS(3340), [anon_sym_var] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), [sym_predefined_type] = ACTIONS(3340), [anon_sym_break] = ACTIONS(3340), [anon_sym_unchecked] = ACTIONS(3340), @@ -378557,6 +378437,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3340), [anon_sym_else] = ACTIONS(3340), [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), [anon_sym_from] = ACTIONS(3340), [anon_sym_into] = ACTIONS(3340), [anon_sym_join] = ACTIONS(3340), @@ -378598,123 +378487,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3342), [sym_raw_string_start] = ACTIONS(3342), }, - [1942] = { - [sym_preproc_region] = STATE(1942), - [sym_preproc_endregion] = STATE(1942), - [sym_preproc_line] = STATE(1942), - [sym_preproc_pragma] = STATE(1942), - [sym_preproc_nullable] = STATE(1942), - [sym_preproc_error] = STATE(1942), - [sym_preproc_warning] = STATE(1942), - [sym_preproc_define] = STATE(1942), - [sym_preproc_undef] = STATE(1942), - [sym__identifier_token] = ACTIONS(3199), - [anon_sym_extern] = ACTIONS(3199), - [anon_sym_alias] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_global] = ACTIONS(3199), - [anon_sym_using] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_static] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_namespace] = ACTIONS(3199), - [anon_sym_class] = ACTIONS(3199), - [anon_sym_ref] = ACTIONS(3199), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_enum] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_interface] = ACTIONS(3199), - [anon_sym_delegate] = ACTIONS(3199), - [anon_sym_record] = ACTIONS(3199), - [anon_sym_public] = ACTIONS(3199), - [anon_sym_private] = ACTIONS(3199), - [anon_sym_readonly] = ACTIONS(3199), - [anon_sym_abstract] = ACTIONS(3199), - [anon_sym_async] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_file] = ACTIONS(3199), - [anon_sym_fixed] = ACTIONS(3199), - [anon_sym_internal] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3199), - [anon_sym_override] = ACTIONS(3199), - [anon_sym_partial] = ACTIONS(3199), - [anon_sym_protected] = ACTIONS(3199), - [anon_sym_required] = ACTIONS(3199), - [anon_sym_sealed] = ACTIONS(3199), - [anon_sym_virtual] = ACTIONS(3199), - [anon_sym_volatile] = ACTIONS(3199), - [anon_sym_where] = ACTIONS(3199), - [anon_sym_notnull] = ACTIONS(3199), - [anon_sym_unmanaged] = ACTIONS(3199), - [anon_sym_checked] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_this] = ACTIONS(3199), - [anon_sym_scoped] = ACTIONS(3199), - [anon_sym_base] = ACTIONS(3199), - [anon_sym_var] = ACTIONS(3199), - [sym_predefined_type] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_unchecked] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_do] = ACTIONS(3199), - [anon_sym_while] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3199), - [anon_sym_switch] = ACTIONS(3199), - [anon_sym_default] = ACTIONS(3199), - [anon_sym_throw] = ACTIONS(3199), - [anon_sym_try] = ACTIONS(3199), - [anon_sym_catch] = ACTIONS(3199), - [anon_sym_when] = ACTIONS(3199), - [anon_sym_finally] = ACTIONS(3199), - [anon_sym_await] = ACTIONS(3199), - [anon_sym_foreach] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_else] = ACTIONS(3199), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_from] = ACTIONS(3199), - [anon_sym_into] = ACTIONS(3199), - [anon_sym_join] = ACTIONS(3199), - [anon_sym_on] = ACTIONS(3199), - [anon_sym_equals] = ACTIONS(3199), - [anon_sym_let] = ACTIONS(3199), - [anon_sym_orderby] = ACTIONS(3199), - [anon_sym_ascending] = ACTIONS(3199), - [anon_sym_descending] = ACTIONS(3199), - [anon_sym_group] = ACTIONS(3199), - [anon_sym_by] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_stackalloc] = ACTIONS(3199), - [anon_sym_sizeof] = ACTIONS(3199), - [anon_sym_typeof] = ACTIONS(3199), - [anon_sym___makeref] = ACTIONS(3199), - [anon_sym___reftype] = ACTIONS(3199), - [anon_sym___refvalue] = ACTIONS(3199), - [sym_null_literal] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3201), - [sym_integer_literal] = ACTIONS(3199), - [sym_real_literal] = ACTIONS(3201), - [anon_sym_DQUOTE] = ACTIONS(3201), - [sym_verbatim_string_literal] = ACTIONS(3201), - [sym_grit_metavariable] = ACTIONS(3201), - [aux_sym_preproc_if_token1] = ACTIONS(3201), - [aux_sym_preproc_if_token3] = ACTIONS(3201), - [aux_sym_preproc_else_token1] = ACTIONS(3201), - [aux_sym_preproc_elif_token1] = ACTIONS(3201), + [1941] = { + [sym_catch_clause] = STATE(1991), + [sym_finally_clause] = STATE(2055), + [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), + [aux_sym_try_statement_repeat1] = STATE(1942), + [ts_builtin_sym_end] = ACTIONS(3350), + [sym__identifier_token] = ACTIONS(3348), + [anon_sym_extern] = ACTIONS(3348), + [anon_sym_alias] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_global] = ACTIONS(3348), + [anon_sym_using] = ACTIONS(3348), + [anon_sym_unsafe] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_namespace] = ACTIONS(3348), + [anon_sym_class] = ACTIONS(3348), + [anon_sym_ref] = ACTIONS(3348), + [anon_sym_struct] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3348), + [anon_sym_delegate] = ACTIONS(3348), + [anon_sym_record] = ACTIONS(3348), + [anon_sym_public] = ACTIONS(3348), + [anon_sym_private] = ACTIONS(3348), + [anon_sym_readonly] = ACTIONS(3348), + [anon_sym_abstract] = ACTIONS(3348), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_file] = ACTIONS(3348), + [anon_sym_fixed] = ACTIONS(3348), + [anon_sym_internal] = ACTIONS(3348), + [anon_sym_new] = ACTIONS(3348), + [anon_sym_override] = ACTIONS(3348), + [anon_sym_partial] = ACTIONS(3348), + [anon_sym_protected] = ACTIONS(3348), + [anon_sym_required] = ACTIONS(3348), + [anon_sym_sealed] = ACTIONS(3348), + [anon_sym_virtual] = ACTIONS(3348), + [anon_sym_volatile] = ACTIONS(3348), + [anon_sym_where] = ACTIONS(3348), + [anon_sym_notnull] = ACTIONS(3348), + [anon_sym_unmanaged] = ACTIONS(3348), + [anon_sym_checked] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(3348), + [anon_sym_scoped] = ACTIONS(3348), + [anon_sym_base] = ACTIONS(3348), + [anon_sym_var] = ACTIONS(3348), + [anon_sym_STAR] = ACTIONS(3350), + [sym_predefined_type] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_unchecked] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_do] = ACTIONS(3348), + [anon_sym_while] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_lock] = ACTIONS(3348), + [anon_sym_yield] = ACTIONS(3348), + [anon_sym_switch] = ACTIONS(3348), + [anon_sym_default] = ACTIONS(3348), + [anon_sym_throw] = ACTIONS(3348), + [anon_sym_try] = ACTIONS(3348), + [anon_sym_catch] = ACTIONS(3367), + [anon_sym_when] = ACTIONS(3348), + [anon_sym_finally] = ACTIONS(3369), + [anon_sym_await] = ACTIONS(3348), + [anon_sym_foreach] = ACTIONS(3348), + [anon_sym_goto] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_else] = ACTIONS(3348), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [anon_sym_from] = ACTIONS(3348), + [anon_sym_into] = ACTIONS(3348), + [anon_sym_join] = ACTIONS(3348), + [anon_sym_on] = ACTIONS(3348), + [anon_sym_equals] = ACTIONS(3348), + [anon_sym_let] = ACTIONS(3348), + [anon_sym_orderby] = ACTIONS(3348), + [anon_sym_ascending] = ACTIONS(3348), + [anon_sym_descending] = ACTIONS(3348), + [anon_sym_group] = ACTIONS(3348), + [anon_sym_by] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3348), + [anon_sym_stackalloc] = ACTIONS(3348), + [anon_sym_sizeof] = ACTIONS(3348), + [anon_sym_typeof] = ACTIONS(3348), + [anon_sym___makeref] = ACTIONS(3348), + [anon_sym___reftype] = ACTIONS(3348), + [anon_sym___refvalue] = ACTIONS(3348), + [sym_null_literal] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(3350), + [sym_integer_literal] = ACTIONS(3348), + [sym_real_literal] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [sym_verbatim_string_literal] = ACTIONS(3350), + [sym_grit_metavariable] = ACTIONS(3350), + [aux_sym_preproc_if_token1] = ACTIONS(3350), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -378725,10 +378615,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3201), - [sym_interpolation_verbatim_start] = ACTIONS(3201), - [sym_interpolation_raw_start] = ACTIONS(3201), - [sym_raw_string_start] = ACTIONS(3201), + [sym_interpolation_regular_start] = ACTIONS(3350), + [sym_interpolation_verbatim_start] = ACTIONS(3350), + [sym_interpolation_raw_start] = ACTIONS(3350), + [sym_raw_string_start] = ACTIONS(3350), + }, + [1942] = { + [sym_catch_clause] = STATE(1991), + [sym_preproc_region] = STATE(1942), + [sym_preproc_endregion] = STATE(1942), + [sym_preproc_line] = STATE(1942), + [sym_preproc_pragma] = STATE(1942), + [sym_preproc_nullable] = STATE(1942), + [sym_preproc_error] = STATE(1942), + [sym_preproc_warning] = STATE(1942), + [sym_preproc_define] = STATE(1942), + [sym_preproc_undef] = STATE(1942), + [aux_sym_try_statement_repeat1] = STATE(1942), + [ts_builtin_sym_end] = ACTIONS(3356), + [sym__identifier_token] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_alias] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_ref] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_delegate] = ACTIONS(3354), + [anon_sym_record] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_file] = ACTIONS(3354), + [anon_sym_fixed] = ACTIONS(3354), + [anon_sym_internal] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_partial] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_required] = ACTIONS(3354), + [anon_sym_sealed] = ACTIONS(3354), + [anon_sym_virtual] = ACTIONS(3354), + [anon_sym_volatile] = ACTIONS(3354), + [anon_sym_where] = ACTIONS(3354), + [anon_sym_notnull] = ACTIONS(3354), + [anon_sym_unmanaged] = ACTIONS(3354), + [anon_sym_checked] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_this] = ACTIONS(3354), + [anon_sym_scoped] = ACTIONS(3354), + [anon_sym_base] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3356), + [sym_predefined_type] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_unchecked] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_lock] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3371), + [anon_sym_when] = ACTIONS(3354), + [anon_sym_finally] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_foreach] = ACTIONS(3354), + [anon_sym_goto] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [anon_sym_from] = ACTIONS(3354), + [anon_sym_into] = ACTIONS(3354), + [anon_sym_join] = ACTIONS(3354), + [anon_sym_on] = ACTIONS(3354), + [anon_sym_equals] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_orderby] = ACTIONS(3354), + [anon_sym_ascending] = ACTIONS(3354), + [anon_sym_descending] = ACTIONS(3354), + [anon_sym_group] = ACTIONS(3354), + [anon_sym_by] = ACTIONS(3354), + [anon_sym_select] = ACTIONS(3354), + [anon_sym_stackalloc] = ACTIONS(3354), + [anon_sym_sizeof] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym___makeref] = ACTIONS(3354), + [anon_sym___reftype] = ACTIONS(3354), + [anon_sym___refvalue] = ACTIONS(3354), + [sym_null_literal] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3356), + [sym_integer_literal] = ACTIONS(3354), + [sym_real_literal] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [sym_verbatim_string_literal] = ACTIONS(3356), + [sym_grit_metavariable] = ACTIONS(3356), + [aux_sym_preproc_if_token1] = ACTIONS(3356), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3356), + [sym_interpolation_verbatim_start] = ACTIONS(3356), + [sym_interpolation_raw_start] = ACTIONS(3356), + [sym_raw_string_start] = ACTIONS(3356), }, [1943] = { [sym_preproc_region] = STATE(1943), @@ -378740,130 +378762,129 @@ 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), - [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_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_readonly] = 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_protected] = 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_catch] = ACTIONS(3371), - [anon_sym_when] = ACTIONS(3371), - [anon_sym_finally] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_foreach] = ACTIONS(3371), - [anon_sym_goto] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_else] = 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), - [sym_grit_metavariable] = 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), + [sym__identifier_token] = ACTIONS(3374), + [anon_sym_extern] = ACTIONS(3374), + [anon_sym_alias] = ACTIONS(3374), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_global] = ACTIONS(3374), + [anon_sym_using] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(3374), + [anon_sym_static] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_namespace] = ACTIONS(3374), + [anon_sym_class] = ACTIONS(3374), + [anon_sym_ref] = ACTIONS(3374), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3376), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_delegate] = ACTIONS(3374), + [anon_sym_record] = ACTIONS(3374), + [anon_sym_public] = ACTIONS(3374), + [anon_sym_private] = ACTIONS(3374), + [anon_sym_readonly] = ACTIONS(3374), + [anon_sym_abstract] = ACTIONS(3374), + [anon_sym_async] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_file] = ACTIONS(3374), + [anon_sym_fixed] = ACTIONS(3374), + [anon_sym_internal] = ACTIONS(3374), + [anon_sym_new] = ACTIONS(3374), + [anon_sym_override] = ACTIONS(3374), + [anon_sym_partial] = ACTIONS(3374), + [anon_sym_protected] = ACTIONS(3374), + [anon_sym_required] = ACTIONS(3374), + [anon_sym_sealed] = ACTIONS(3374), + [anon_sym_virtual] = ACTIONS(3374), + [anon_sym_volatile] = ACTIONS(3374), + [anon_sym_where] = ACTIONS(3374), + [anon_sym_notnull] = ACTIONS(3374), + [anon_sym_unmanaged] = ACTIONS(3374), + [anon_sym_checked] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_this] = ACTIONS(3374), + [anon_sym_scoped] = ACTIONS(3374), + [anon_sym_base] = ACTIONS(3374), + [anon_sym_var] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3376), + [sym_predefined_type] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_unchecked] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_do] = ACTIONS(3374), + [anon_sym_while] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_yield] = ACTIONS(3374), + [anon_sym_switch] = ACTIONS(3374), + [anon_sym_default] = ACTIONS(3374), + [anon_sym_throw] = ACTIONS(3374), + [anon_sym_try] = ACTIONS(3374), + [anon_sym_catch] = ACTIONS(3374), + [anon_sym_when] = ACTIONS(3374), + [anon_sym_finally] = ACTIONS(3374), + [anon_sym_await] = ACTIONS(3374), + [anon_sym_foreach] = ACTIONS(3374), + [anon_sym_goto] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_else] = ACTIONS(3374), + [anon_sym_DOT_DOT] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3376), + [anon_sym_PLUS_PLUS] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3376), + [anon_sym_true] = ACTIONS(3374), + [anon_sym_false] = ACTIONS(3374), + [anon_sym_from] = ACTIONS(3374), + [anon_sym_into] = ACTIONS(3374), + [anon_sym_join] = ACTIONS(3374), + [anon_sym_on] = ACTIONS(3374), + [anon_sym_equals] = ACTIONS(3374), + [anon_sym_let] = ACTIONS(3374), + [anon_sym_orderby] = ACTIONS(3374), + [anon_sym_ascending] = ACTIONS(3374), + [anon_sym_descending] = ACTIONS(3374), + [anon_sym_group] = ACTIONS(3374), + [anon_sym_by] = ACTIONS(3374), + [anon_sym_select] = ACTIONS(3374), + [anon_sym_stackalloc] = ACTIONS(3374), + [anon_sym_sizeof] = ACTIONS(3374), + [anon_sym_typeof] = ACTIONS(3374), + [anon_sym___makeref] = ACTIONS(3374), + [anon_sym___reftype] = ACTIONS(3374), + [anon_sym___refvalue] = ACTIONS(3374), + [sym_null_literal] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3376), + [sym_integer_literal] = ACTIONS(3374), + [sym_real_literal] = ACTIONS(3376), + [anon_sym_DQUOTE] = ACTIONS(3376), + [sym_verbatim_string_literal] = ACTIONS(3376), + [sym_grit_metavariable] = ACTIONS(3376), + [aux_sym_preproc_if_token1] = ACTIONS(3376), + [aux_sym_preproc_if_token3] = ACTIONS(3376), + [aux_sym_preproc_else_token1] = ACTIONS(3376), + [aux_sym_preproc_elif_token1] = ACTIONS(3376), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3376), + [sym_interpolation_verbatim_start] = ACTIONS(3376), + [sym_interpolation_raw_start] = ACTIONS(3376), + [sym_raw_string_start] = ACTIONS(3376), }, [1944] = { - [sym_catch_clause] = STATE(1950), [sym_preproc_region] = STATE(1944), [sym_preproc_endregion] = STATE(1944), [sym_preproc_line] = STATE(1944), @@ -378873,137 +378894,6 @@ 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), - [aux_sym_try_statement_repeat1] = STATE(1944), - [ts_builtin_sym_end] = ACTIONS(3354), - [sym__identifier_token] = ACTIONS(3352), - [anon_sym_extern] = ACTIONS(3352), - [anon_sym_alias] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_global] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_namespace] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_ref] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3352), - [anon_sym_delegate] = ACTIONS(3352), - [anon_sym_record] = ACTIONS(3352), - [anon_sym_public] = ACTIONS(3352), - [anon_sym_private] = ACTIONS(3352), - [anon_sym_readonly] = ACTIONS(3352), - [anon_sym_abstract] = ACTIONS(3352), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_file] = ACTIONS(3352), - [anon_sym_fixed] = ACTIONS(3352), - [anon_sym_internal] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3352), - [anon_sym_override] = ACTIONS(3352), - [anon_sym_partial] = ACTIONS(3352), - [anon_sym_protected] = ACTIONS(3352), - [anon_sym_required] = ACTIONS(3352), - [anon_sym_sealed] = ACTIONS(3352), - [anon_sym_virtual] = ACTIONS(3352), - [anon_sym_volatile] = ACTIONS(3352), - [anon_sym_where] = ACTIONS(3352), - [anon_sym_notnull] = ACTIONS(3352), - [anon_sym_unmanaged] = ACTIONS(3352), - [anon_sym_checked] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_true] = ACTIONS(3352), - [anon_sym_false] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_this] = ACTIONS(3352), - [anon_sym_scoped] = ACTIONS(3352), - [anon_sym_base] = ACTIONS(3352), - [anon_sym_var] = ACTIONS(3352), - [sym_predefined_type] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_unchecked] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_do] = ACTIONS(3352), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3352), - [anon_sym_default] = ACTIONS(3352), - [anon_sym_throw] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_catch] = ACTIONS(3375), - [anon_sym_when] = ACTIONS(3352), - [anon_sym_finally] = ACTIONS(3352), - [anon_sym_await] = ACTIONS(3352), - [anon_sym_foreach] = ACTIONS(3352), - [anon_sym_goto] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_else] = ACTIONS(3352), - [anon_sym_DOT_DOT] = ACTIONS(3354), - [anon_sym_from] = ACTIONS(3352), - [anon_sym_into] = ACTIONS(3352), - [anon_sym_join] = ACTIONS(3352), - [anon_sym_on] = ACTIONS(3352), - [anon_sym_equals] = ACTIONS(3352), - [anon_sym_let] = ACTIONS(3352), - [anon_sym_orderby] = ACTIONS(3352), - [anon_sym_ascending] = ACTIONS(3352), - [anon_sym_descending] = ACTIONS(3352), - [anon_sym_group] = ACTIONS(3352), - [anon_sym_by] = ACTIONS(3352), - [anon_sym_select] = ACTIONS(3352), - [anon_sym_stackalloc] = ACTIONS(3352), - [anon_sym_sizeof] = ACTIONS(3352), - [anon_sym_typeof] = ACTIONS(3352), - [anon_sym___makeref] = ACTIONS(3352), - [anon_sym___reftype] = ACTIONS(3352), - [anon_sym___refvalue] = ACTIONS(3352), - [sym_null_literal] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(3354), - [sym_integer_literal] = ACTIONS(3352), - [sym_real_literal] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [sym_verbatim_string_literal] = ACTIONS(3354), - [sym_grit_metavariable] = ACTIONS(3354), - [aux_sym_preproc_if_token1] = ACTIONS(3354), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3354), - [sym_interpolation_verbatim_start] = ACTIONS(3354), - [sym_interpolation_raw_start] = ACTIONS(3354), - [sym_raw_string_start] = ACTIONS(3354), - }, - [1945] = { - [sym_preproc_region] = STATE(1945), - [sym_preproc_endregion] = STATE(1945), - [sym_preproc_line] = STATE(1945), - [sym_preproc_pragma] = STATE(1945), - [sym_preproc_nullable] = STATE(1945), - [sym_preproc_error] = STATE(1945), - [sym_preproc_warning] = STATE(1945), - [sym_preproc_define] = STATE(1945), - [sym_preproc_undef] = STATE(1945), [sym__identifier_token] = ACTIONS(3378), [anon_sym_extern] = ACTIONS(3378), [anon_sym_alias] = ACTIONS(3378), @@ -379045,21 +378935,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3378), [anon_sym_unmanaged] = ACTIONS(3378), [anon_sym_checked] = ACTIONS(3378), - [anon_sym_BANG] = ACTIONS(3380), [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_PLUS_PLUS] = ACTIONS(3380), - [anon_sym_DASH_DASH] = ACTIONS(3380), - [anon_sym_true] = ACTIONS(3378), - [anon_sym_false] = ACTIONS(3378), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3380), [anon_sym_this] = ACTIONS(3378), [anon_sym_scoped] = ACTIONS(3378), [anon_sym_base] = ACTIONS(3378), [anon_sym_var] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3380), [sym_predefined_type] = ACTIONS(3378), [anon_sym_break] = ACTIONS(3378), [anon_sym_unchecked] = ACTIONS(3378), @@ -379082,6 +378963,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3378), [anon_sym_else] = ACTIONS(3378), [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym_CARET] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [anon_sym_true] = ACTIONS(3378), + [anon_sym_false] = ACTIONS(3378), [anon_sym_from] = ACTIONS(3378), [anon_sym_into] = ACTIONS(3378), [anon_sym_join] = ACTIONS(3378), @@ -379126,16 +379016,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3380), [sym_raw_string_start] = ACTIONS(3380), }, - [1946] = { - [sym_preproc_region] = STATE(1946), - [sym_preproc_endregion] = STATE(1946), - [sym_preproc_line] = STATE(1946), - [sym_preproc_pragma] = STATE(1946), - [sym_preproc_nullable] = STATE(1946), - [sym_preproc_error] = STATE(1946), - [sym_preproc_warning] = STATE(1946), - [sym_preproc_define] = STATE(1946), - [sym_preproc_undef] = STATE(1946), + [1945] = { + [sym_preproc_region] = STATE(1945), + [sym_preproc_endregion] = STATE(1945), + [sym_preproc_line] = STATE(1945), + [sym_preproc_pragma] = STATE(1945), + [sym_preproc_nullable] = STATE(1945), + [sym_preproc_error] = STATE(1945), + [sym_preproc_warning] = STATE(1945), + [sym_preproc_define] = STATE(1945), + [sym_preproc_undef] = STATE(1945), [sym__identifier_token] = ACTIONS(3382), [anon_sym_extern] = ACTIONS(3382), [anon_sym_alias] = ACTIONS(3382), @@ -379177,21 +379067,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3382), [anon_sym_unmanaged] = ACTIONS(3382), [anon_sym_checked] = ACTIONS(3382), - [anon_sym_BANG] = ACTIONS(3384), [anon_sym_TILDE] = ACTIONS(3384), - [anon_sym_PLUS_PLUS] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3382), - [anon_sym_false] = ACTIONS(3382), - [anon_sym_PLUS] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3382), - [anon_sym_STAR] = ACTIONS(3384), - [anon_sym_CARET] = ACTIONS(3384), - [anon_sym_AMP] = ACTIONS(3384), [anon_sym_this] = ACTIONS(3382), [anon_sym_scoped] = ACTIONS(3382), [anon_sym_base] = ACTIONS(3382), [anon_sym_var] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3384), [sym_predefined_type] = ACTIONS(3382), [anon_sym_break] = ACTIONS(3382), [anon_sym_unchecked] = ACTIONS(3382), @@ -379214,6 +379095,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3382), [anon_sym_else] = ACTIONS(3382), [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_CARET] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [anon_sym_true] = ACTIONS(3382), + [anon_sym_false] = ACTIONS(3382), [anon_sym_from] = ACTIONS(3382), [anon_sym_into] = ACTIONS(3382), [anon_sym_join] = ACTIONS(3382), @@ -379258,6 +379148,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3384), [sym_raw_string_start] = ACTIONS(3384), }, + [1946] = { + [sym_preproc_region] = STATE(1946), + [sym_preproc_endregion] = STATE(1946), + [sym_preproc_line] = STATE(1946), + [sym_preproc_pragma] = STATE(1946), + [sym_preproc_nullable] = STATE(1946), + [sym_preproc_error] = STATE(1946), + [sym_preproc_warning] = STATE(1946), + [sym_preproc_define] = STATE(1946), + [sym_preproc_undef] = STATE(1946), + [sym__identifier_token] = ACTIONS(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_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_readonly] = 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_protected] = 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_TILDE] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3191), + [anon_sym_scoped] = ACTIONS(3191), + [anon_sym_base] = ACTIONS(3191), + [anon_sym_var] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3193), + [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_catch] = ACTIONS(3191), + [anon_sym_when] = ACTIONS(3191), + [anon_sym_finally] = 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_AMP] = ACTIONS(3193), + [anon_sym_CARET] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_BANG] = 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_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), + [sym_grit_metavariable] = 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), + }, [1947] = { [sym_preproc_region] = STATE(1947), [sym_preproc_endregion] = STATE(1947), @@ -379309,21 +379331,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3386), [anon_sym_unmanaged] = ACTIONS(3386), [anon_sym_checked] = ACTIONS(3386), - [anon_sym_BANG] = ACTIONS(3388), [anon_sym_TILDE] = ACTIONS(3388), - [anon_sym_PLUS_PLUS] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_CARET] = ACTIONS(3388), - [anon_sym_AMP] = ACTIONS(3388), [anon_sym_this] = ACTIONS(3386), [anon_sym_scoped] = ACTIONS(3386), [anon_sym_base] = ACTIONS(3386), [anon_sym_var] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), [sym_predefined_type] = ACTIONS(3386), [anon_sym_break] = ACTIONS(3386), [anon_sym_unchecked] = ACTIONS(3386), @@ -379346,6 +379359,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3386), [anon_sym_else] = ACTIONS(3386), [anon_sym_DOT_DOT] = ACTIONS(3388), + [anon_sym_AMP] = ACTIONS(3388), + [anon_sym_CARET] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_true] = ACTIONS(3386), + [anon_sym_false] = ACTIONS(3386), [anon_sym_from] = ACTIONS(3386), [anon_sym_into] = ACTIONS(3386), [anon_sym_join] = ACTIONS(3386), @@ -379441,21 +379463,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3390), [anon_sym_unmanaged] = ACTIONS(3390), [anon_sym_checked] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3392), [anon_sym_TILDE] = ACTIONS(3392), - [anon_sym_PLUS_PLUS] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3392), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [anon_sym_PLUS] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3390), - [anon_sym_STAR] = ACTIONS(3392), - [anon_sym_CARET] = ACTIONS(3392), - [anon_sym_AMP] = ACTIONS(3392), [anon_sym_this] = ACTIONS(3390), [anon_sym_scoped] = ACTIONS(3390), [anon_sym_base] = ACTIONS(3390), [anon_sym_var] = ACTIONS(3390), + [anon_sym_STAR] = ACTIONS(3392), [sym_predefined_type] = ACTIONS(3390), [anon_sym_break] = ACTIONS(3390), [anon_sym_unchecked] = ACTIONS(3390), @@ -379476,6 +379489,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3390), [anon_sym_else] = ACTIONS(3390), [anon_sym_DOT_DOT] = ACTIONS(3392), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_CARET] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3390), + [anon_sym_DASH] = ACTIONS(3390), + [anon_sym_BANG] = ACTIONS(3392), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3390), + [anon_sym_false] = ACTIONS(3390), [anon_sym_from] = ACTIONS(3390), [anon_sym_into] = ACTIONS(3390), [anon_sym_join] = ACTIONS(3390), @@ -379571,21 +379593,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3394), [anon_sym_unmanaged] = ACTIONS(3394), [anon_sym_checked] = ACTIONS(3394), - [anon_sym_BANG] = ACTIONS(3396), [anon_sym_TILDE] = ACTIONS(3396), - [anon_sym_PLUS_PLUS] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3396), - [anon_sym_true] = ACTIONS(3394), - [anon_sym_false] = ACTIONS(3394), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_CARET] = ACTIONS(3396), - [anon_sym_AMP] = ACTIONS(3396), [anon_sym_this] = ACTIONS(3394), [anon_sym_scoped] = ACTIONS(3394), [anon_sym_base] = ACTIONS(3394), [anon_sym_var] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), [sym_predefined_type] = ACTIONS(3394), [anon_sym_break] = ACTIONS(3394), [anon_sym_unchecked] = ACTIONS(3394), @@ -379606,6 +379619,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3394), [anon_sym_else] = ACTIONS(3394), [anon_sym_DOT_DOT] = ACTIONS(3396), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_CARET] = ACTIONS(3396), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3396), + [anon_sym_PLUS_PLUS] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3396), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), [anon_sym_from] = ACTIONS(3394), [anon_sym_into] = ACTIONS(3394), [anon_sym_join] = ACTIONS(3394), @@ -379660,136 +379682,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1950), [sym_preproc_define] = STATE(1950), [sym_preproc_undef] = STATE(1950), - [ts_builtin_sym_end] = ACTIONS(3388), - [sym__identifier_token] = ACTIONS(3386), - [anon_sym_extern] = ACTIONS(3386), - [anon_sym_alias] = ACTIONS(3386), - [anon_sym_SEMI] = ACTIONS(3388), - [anon_sym_global] = ACTIONS(3386), - [anon_sym_using] = ACTIONS(3386), - [anon_sym_unsafe] = ACTIONS(3386), - [anon_sym_static] = ACTIONS(3386), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_LPAREN] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3386), - [anon_sym_namespace] = ACTIONS(3386), - [anon_sym_class] = ACTIONS(3386), - [anon_sym_ref] = ACTIONS(3386), - [anon_sym_struct] = ACTIONS(3386), - [anon_sym_enum] = ACTIONS(3386), - [anon_sym_LBRACE] = ACTIONS(3388), - [anon_sym_interface] = ACTIONS(3386), - [anon_sym_delegate] = ACTIONS(3386), - [anon_sym_record] = ACTIONS(3386), - [anon_sym_public] = ACTIONS(3386), - [anon_sym_private] = ACTIONS(3386), - [anon_sym_readonly] = ACTIONS(3386), - [anon_sym_abstract] = ACTIONS(3386), - [anon_sym_async] = ACTIONS(3386), - [anon_sym_const] = ACTIONS(3386), - [anon_sym_file] = ACTIONS(3386), - [anon_sym_fixed] = ACTIONS(3386), - [anon_sym_internal] = ACTIONS(3386), - [anon_sym_new] = ACTIONS(3386), - [anon_sym_override] = ACTIONS(3386), - [anon_sym_partial] = ACTIONS(3386), - [anon_sym_protected] = ACTIONS(3386), - [anon_sym_required] = ACTIONS(3386), - [anon_sym_sealed] = ACTIONS(3386), - [anon_sym_virtual] = ACTIONS(3386), - [anon_sym_volatile] = ACTIONS(3386), - [anon_sym_where] = ACTIONS(3386), - [anon_sym_notnull] = ACTIONS(3386), - [anon_sym_unmanaged] = ACTIONS(3386), - [anon_sym_checked] = ACTIONS(3386), - [anon_sym_BANG] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3388), - [anon_sym_PLUS_PLUS] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_CARET] = ACTIONS(3388), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym_this] = ACTIONS(3386), - [anon_sym_scoped] = ACTIONS(3386), - [anon_sym_base] = ACTIONS(3386), - [anon_sym_var] = ACTIONS(3386), - [sym_predefined_type] = ACTIONS(3386), - [anon_sym_break] = ACTIONS(3386), - [anon_sym_unchecked] = ACTIONS(3386), - [anon_sym_continue] = ACTIONS(3386), - [anon_sym_do] = ACTIONS(3386), - [anon_sym_while] = ACTIONS(3386), - [anon_sym_for] = ACTIONS(3386), - [anon_sym_lock] = ACTIONS(3386), - [anon_sym_yield] = ACTIONS(3386), - [anon_sym_switch] = ACTIONS(3386), - [anon_sym_default] = ACTIONS(3386), - [anon_sym_throw] = ACTIONS(3386), - [anon_sym_try] = ACTIONS(3386), - [anon_sym_catch] = ACTIONS(3386), - [anon_sym_when] = ACTIONS(3386), - [anon_sym_finally] = ACTIONS(3386), - [anon_sym_await] = ACTIONS(3386), - [anon_sym_foreach] = ACTIONS(3386), - [anon_sym_goto] = ACTIONS(3386), - [anon_sym_if] = ACTIONS(3386), - [anon_sym_else] = ACTIONS(3386), - [anon_sym_DOT_DOT] = ACTIONS(3388), - [anon_sym_from] = ACTIONS(3386), - [anon_sym_into] = ACTIONS(3386), - [anon_sym_join] = ACTIONS(3386), - [anon_sym_on] = ACTIONS(3386), - [anon_sym_equals] = ACTIONS(3386), - [anon_sym_let] = ACTIONS(3386), - [anon_sym_orderby] = ACTIONS(3386), - [anon_sym_ascending] = ACTIONS(3386), - [anon_sym_descending] = ACTIONS(3386), - [anon_sym_group] = ACTIONS(3386), - [anon_sym_by] = ACTIONS(3386), - [anon_sym_select] = ACTIONS(3386), - [anon_sym_stackalloc] = ACTIONS(3386), - [anon_sym_sizeof] = ACTIONS(3386), - [anon_sym_typeof] = ACTIONS(3386), - [anon_sym___makeref] = ACTIONS(3386), - [anon_sym___reftype] = ACTIONS(3386), - [anon_sym___refvalue] = ACTIONS(3386), - [sym_null_literal] = ACTIONS(3386), - [anon_sym_SQUOTE] = ACTIONS(3388), - [sym_integer_literal] = ACTIONS(3386), - [sym_real_literal] = ACTIONS(3388), - [anon_sym_DQUOTE] = ACTIONS(3388), - [sym_verbatim_string_literal] = ACTIONS(3388), - [sym_grit_metavariable] = ACTIONS(3388), - [aux_sym_preproc_if_token1] = ACTIONS(3388), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3388), - [sym_interpolation_verbatim_start] = ACTIONS(3388), - [sym_interpolation_raw_start] = ACTIONS(3388), - [sym_raw_string_start] = ACTIONS(3388), - }, - [1951] = { - [sym_preproc_region] = STATE(1951), - [sym_preproc_endregion] = STATE(1951), - [sym_preproc_line] = STATE(1951), - [sym_preproc_pragma] = STATE(1951), - [sym_preproc_nullable] = STATE(1951), - [sym_preproc_error] = STATE(1951), - [sym_preproc_warning] = STATE(1951), - [sym_preproc_define] = STATE(1951), - [sym_preproc_undef] = STATE(1951), [sym__identifier_token] = ACTIONS(3398), [anon_sym_extern] = ACTIONS(3398), [anon_sym_alias] = ACTIONS(3398), @@ -379831,21 +379723,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3398), [anon_sym_unmanaged] = ACTIONS(3398), [anon_sym_checked] = ACTIONS(3398), - [anon_sym_BANG] = ACTIONS(3400), [anon_sym_TILDE] = ACTIONS(3400), - [anon_sym_PLUS_PLUS] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3400), - [anon_sym_true] = ACTIONS(3398), - [anon_sym_false] = ACTIONS(3398), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_CARET] = ACTIONS(3400), - [anon_sym_AMP] = ACTIONS(3400), [anon_sym_this] = ACTIONS(3398), [anon_sym_scoped] = ACTIONS(3398), [anon_sym_base] = ACTIONS(3398), [anon_sym_var] = ACTIONS(3398), + [anon_sym_STAR] = ACTIONS(3400), [sym_predefined_type] = ACTIONS(3398), [anon_sym_break] = ACTIONS(3398), [anon_sym_unchecked] = ACTIONS(3398), @@ -379864,8 +379747,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_foreach] = ACTIONS(3398), [anon_sym_goto] = ACTIONS(3398), [anon_sym_if] = ACTIONS(3398), - [anon_sym_else] = ACTIONS(3398), + [anon_sym_else] = ACTIONS(3402), [anon_sym_DOT_DOT] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(3400), + [anon_sym_CARET] = ACTIONS(3400), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3400), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3398), + [anon_sym_false] = ACTIONS(3398), [anon_sym_from] = ACTIONS(3398), [anon_sym_into] = ACTIONS(3398), [anon_sym_join] = ACTIONS(3398), @@ -379910,6 +379802,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3400), [sym_raw_string_start] = ACTIONS(3400), }, + [1951] = { + [sym_preproc_region] = STATE(1951), + [sym_preproc_endregion] = STATE(1951), + [sym_preproc_line] = STATE(1951), + [sym_preproc_pragma] = STATE(1951), + [sym_preproc_nullable] = STATE(1951), + [sym_preproc_error] = STATE(1951), + [sym_preproc_warning] = STATE(1951), + [sym_preproc_define] = STATE(1951), + [sym_preproc_undef] = STATE(1951), + [sym__identifier_token] = ACTIONS(3404), + [anon_sym_extern] = ACTIONS(3404), + [anon_sym_alias] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3406), + [anon_sym_global] = ACTIONS(3404), + [anon_sym_using] = ACTIONS(3404), + [anon_sym_unsafe] = ACTIONS(3404), + [anon_sym_static] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_namespace] = ACTIONS(3404), + [anon_sym_class] = ACTIONS(3404), + [anon_sym_ref] = ACTIONS(3404), + [anon_sym_struct] = ACTIONS(3404), + [anon_sym_enum] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_interface] = ACTIONS(3404), + [anon_sym_delegate] = ACTIONS(3404), + [anon_sym_record] = ACTIONS(3404), + [anon_sym_public] = ACTIONS(3404), + [anon_sym_private] = ACTIONS(3404), + [anon_sym_readonly] = ACTIONS(3404), + [anon_sym_abstract] = ACTIONS(3404), + [anon_sym_async] = ACTIONS(3404), + [anon_sym_const] = ACTIONS(3404), + [anon_sym_file] = ACTIONS(3404), + [anon_sym_fixed] = ACTIONS(3404), + [anon_sym_internal] = ACTIONS(3404), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_override] = ACTIONS(3404), + [anon_sym_partial] = ACTIONS(3404), + [anon_sym_protected] = ACTIONS(3404), + [anon_sym_required] = ACTIONS(3404), + [anon_sym_sealed] = ACTIONS(3404), + [anon_sym_virtual] = ACTIONS(3404), + [anon_sym_volatile] = ACTIONS(3404), + [anon_sym_where] = ACTIONS(3404), + [anon_sym_notnull] = ACTIONS(3404), + [anon_sym_unmanaged] = ACTIONS(3404), + [anon_sym_checked] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(3404), + [anon_sym_scoped] = ACTIONS(3404), + [anon_sym_base] = ACTIONS(3404), + [anon_sym_var] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [sym_predefined_type] = ACTIONS(3404), + [anon_sym_break] = ACTIONS(3404), + [anon_sym_unchecked] = ACTIONS(3404), + [anon_sym_continue] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_lock] = ACTIONS(3404), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_switch] = ACTIONS(3404), + [anon_sym_default] = ACTIONS(3404), + [anon_sym_throw] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_when] = ACTIONS(3404), + [anon_sym_await] = ACTIONS(3404), + [anon_sym_foreach] = ACTIONS(3404), + [anon_sym_goto] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_else] = ACTIONS(3404), + [anon_sym_DOT_DOT] = ACTIONS(3406), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_CARET] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3406), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_from] = ACTIONS(3404), + [anon_sym_into] = ACTIONS(3404), + [anon_sym_join] = ACTIONS(3404), + [anon_sym_on] = ACTIONS(3404), + [anon_sym_equals] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_orderby] = ACTIONS(3404), + [anon_sym_ascending] = ACTIONS(3404), + [anon_sym_descending] = ACTIONS(3404), + [anon_sym_group] = ACTIONS(3404), + [anon_sym_by] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3404), + [anon_sym_stackalloc] = ACTIONS(3404), + [anon_sym_sizeof] = ACTIONS(3404), + [anon_sym_typeof] = ACTIONS(3404), + [anon_sym___makeref] = ACTIONS(3404), + [anon_sym___reftype] = ACTIONS(3404), + [anon_sym___refvalue] = ACTIONS(3404), + [sym_null_literal] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(3406), + [sym_integer_literal] = ACTIONS(3404), + [sym_real_literal] = ACTIONS(3406), + [anon_sym_DQUOTE] = ACTIONS(3406), + [sym_verbatim_string_literal] = ACTIONS(3406), + [sym_grit_metavariable] = ACTIONS(3406), + [aux_sym_preproc_if_token1] = ACTIONS(3406), + [aux_sym_preproc_if_token3] = ACTIONS(3406), + [aux_sym_preproc_else_token1] = ACTIONS(3406), + [aux_sym_preproc_elif_token1] = ACTIONS(3406), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3406), + [sym_interpolation_verbatim_start] = ACTIONS(3406), + [sym_interpolation_raw_start] = ACTIONS(3406), + [sym_raw_string_start] = ACTIONS(3406), + }, [1952] = { [sym_preproc_region] = STATE(1952), [sym_preproc_endregion] = STATE(1952), @@ -379920,125 +379942,125 @@ 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), - [sym__identifier_token] = ACTIONS(3402), - [anon_sym_extern] = ACTIONS(3402), - [anon_sym_alias] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_global] = ACTIONS(3402), - [anon_sym_using] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(3402), - [anon_sym_static] = ACTIONS(3402), - [anon_sym_LBRACK] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(3404), - [anon_sym_return] = ACTIONS(3402), - [anon_sym_namespace] = ACTIONS(3402), - [anon_sym_class] = ACTIONS(3402), - [anon_sym_ref] = ACTIONS(3402), - [anon_sym_struct] = ACTIONS(3402), - [anon_sym_enum] = ACTIONS(3402), - [anon_sym_LBRACE] = ACTIONS(3404), - [anon_sym_interface] = ACTIONS(3402), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_record] = ACTIONS(3402), - [anon_sym_public] = ACTIONS(3402), - [anon_sym_private] = ACTIONS(3402), - [anon_sym_readonly] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(3402), - [anon_sym_async] = ACTIONS(3402), - [anon_sym_const] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(3402), - [anon_sym_fixed] = ACTIONS(3402), - [anon_sym_internal] = ACTIONS(3402), - [anon_sym_new] = ACTIONS(3402), - [anon_sym_override] = ACTIONS(3402), - [anon_sym_partial] = ACTIONS(3402), - [anon_sym_protected] = ACTIONS(3402), - [anon_sym_required] = ACTIONS(3402), - [anon_sym_sealed] = ACTIONS(3402), - [anon_sym_virtual] = ACTIONS(3402), - [anon_sym_volatile] = ACTIONS(3402), - [anon_sym_where] = ACTIONS(3402), - [anon_sym_notnull] = ACTIONS(3402), - [anon_sym_unmanaged] = ACTIONS(3402), - [anon_sym_checked] = ACTIONS(3402), - [anon_sym_BANG] = ACTIONS(3404), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_PLUS_PLUS] = ACTIONS(3404), - [anon_sym_DASH_DASH] = ACTIONS(3404), - [anon_sym_true] = ACTIONS(3402), - [anon_sym_false] = ACTIONS(3402), - [anon_sym_PLUS] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3402), - [anon_sym_STAR] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_this] = ACTIONS(3402), - [anon_sym_scoped] = ACTIONS(3402), - [anon_sym_base] = ACTIONS(3402), - [anon_sym_var] = ACTIONS(3402), - [sym_predefined_type] = ACTIONS(3402), - [anon_sym_break] = ACTIONS(3402), - [anon_sym_unchecked] = ACTIONS(3402), - [anon_sym_continue] = ACTIONS(3402), - [anon_sym_do] = ACTIONS(3402), - [anon_sym_while] = ACTIONS(3402), - [anon_sym_for] = ACTIONS(3402), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_yield] = ACTIONS(3402), - [anon_sym_switch] = ACTIONS(3402), - [anon_sym_default] = ACTIONS(3402), - [anon_sym_throw] = ACTIONS(3402), - [anon_sym_try] = ACTIONS(3402), - [anon_sym_when] = ACTIONS(3402), - [anon_sym_await] = ACTIONS(3402), - [anon_sym_foreach] = ACTIONS(3402), - [anon_sym_goto] = ACTIONS(3402), - [anon_sym_if] = ACTIONS(3402), - [anon_sym_else] = ACTIONS(3402), - [anon_sym_DOT_DOT] = ACTIONS(3404), - [anon_sym_from] = ACTIONS(3402), - [anon_sym_into] = ACTIONS(3402), - [anon_sym_join] = ACTIONS(3402), - [anon_sym_on] = ACTIONS(3402), - [anon_sym_equals] = ACTIONS(3402), - [anon_sym_let] = ACTIONS(3402), - [anon_sym_orderby] = ACTIONS(3402), - [anon_sym_ascending] = ACTIONS(3402), - [anon_sym_descending] = ACTIONS(3402), - [anon_sym_group] = ACTIONS(3402), - [anon_sym_by] = ACTIONS(3402), - [anon_sym_select] = ACTIONS(3402), - [anon_sym_stackalloc] = ACTIONS(3402), - [anon_sym_sizeof] = ACTIONS(3402), - [anon_sym_typeof] = ACTIONS(3402), - [anon_sym___makeref] = ACTIONS(3402), - [anon_sym___reftype] = ACTIONS(3402), - [anon_sym___refvalue] = ACTIONS(3402), - [sym_null_literal] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3404), - [sym_integer_literal] = ACTIONS(3402), - [sym_real_literal] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [sym_verbatim_string_literal] = ACTIONS(3404), - [sym_grit_metavariable] = ACTIONS(3404), - [aux_sym_preproc_if_token1] = ACTIONS(3404), - [aux_sym_preproc_if_token3] = ACTIONS(3404), - [aux_sym_preproc_else_token1] = ACTIONS(3404), - [aux_sym_preproc_elif_token1] = ACTIONS(3404), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3404), - [sym_interpolation_verbatim_start] = ACTIONS(3404), - [sym_interpolation_raw_start] = ACTIONS(3404), - [sym_raw_string_start] = ACTIONS(3404), + [sym__identifier_token] = ACTIONS(3408), + [anon_sym_extern] = ACTIONS(3408), + [anon_sym_alias] = ACTIONS(3408), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_global] = ACTIONS(3408), + [anon_sym_using] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_namespace] = ACTIONS(3408), + [anon_sym_class] = ACTIONS(3408), + [anon_sym_ref] = ACTIONS(3408), + [anon_sym_struct] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_interface] = ACTIONS(3408), + [anon_sym_delegate] = ACTIONS(3408), + [anon_sym_record] = ACTIONS(3408), + [anon_sym_public] = ACTIONS(3408), + [anon_sym_private] = ACTIONS(3408), + [anon_sym_readonly] = ACTIONS(3408), + [anon_sym_abstract] = ACTIONS(3408), + [anon_sym_async] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_file] = ACTIONS(3408), + [anon_sym_fixed] = ACTIONS(3408), + [anon_sym_internal] = ACTIONS(3408), + [anon_sym_new] = ACTIONS(3408), + [anon_sym_override] = ACTIONS(3408), + [anon_sym_partial] = ACTIONS(3408), + [anon_sym_protected] = ACTIONS(3408), + [anon_sym_required] = ACTIONS(3408), + [anon_sym_sealed] = ACTIONS(3408), + [anon_sym_virtual] = ACTIONS(3408), + [anon_sym_volatile] = ACTIONS(3408), + [anon_sym_where] = ACTIONS(3408), + [anon_sym_notnull] = ACTIONS(3408), + [anon_sym_unmanaged] = ACTIONS(3408), + [anon_sym_checked] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(3408), + [anon_sym_scoped] = ACTIONS(3408), + [anon_sym_base] = ACTIONS(3408), + [anon_sym_var] = ACTIONS(3408), + [anon_sym_STAR] = ACTIONS(3410), + [sym_predefined_type] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_unchecked] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_do] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_yield] = ACTIONS(3408), + [anon_sym_switch] = ACTIONS(3408), + [anon_sym_default] = ACTIONS(3408), + [anon_sym_throw] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [anon_sym_when] = ACTIONS(3408), + [anon_sym_await] = ACTIONS(3408), + [anon_sym_foreach] = ACTIONS(3408), + [anon_sym_goto] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_else] = ACTIONS(3408), + [anon_sym_DOT_DOT] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym_CARET] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3408), + [anon_sym_false] = ACTIONS(3408), + [anon_sym_from] = ACTIONS(3408), + [anon_sym_into] = ACTIONS(3408), + [anon_sym_join] = ACTIONS(3408), + [anon_sym_on] = ACTIONS(3408), + [anon_sym_equals] = ACTIONS(3408), + [anon_sym_let] = ACTIONS(3408), + [anon_sym_orderby] = ACTIONS(3408), + [anon_sym_ascending] = ACTIONS(3408), + [anon_sym_descending] = ACTIONS(3408), + [anon_sym_group] = ACTIONS(3408), + [anon_sym_by] = ACTIONS(3408), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_stackalloc] = ACTIONS(3408), + [anon_sym_sizeof] = ACTIONS(3408), + [anon_sym_typeof] = ACTIONS(3408), + [anon_sym___makeref] = ACTIONS(3408), + [anon_sym___reftype] = ACTIONS(3408), + [anon_sym___refvalue] = ACTIONS(3408), + [sym_null_literal] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3410), + [sym_integer_literal] = ACTIONS(3408), + [sym_real_literal] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3410), + [sym_verbatim_string_literal] = ACTIONS(3410), + [sym_grit_metavariable] = ACTIONS(3410), + [aux_sym_preproc_if_token1] = ACTIONS(3410), + [aux_sym_preproc_if_token3] = ACTIONS(3410), + [aux_sym_preproc_else_token1] = ACTIONS(3410), + [aux_sym_preproc_elif_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), }, [1953] = { [sym_preproc_region] = STATE(1953), @@ -380050,125 +380072,125 @@ 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), - [sym__identifier_token] = ACTIONS(3406), - [anon_sym_extern] = ACTIONS(3406), - [anon_sym_alias] = ACTIONS(3406), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym_global] = ACTIONS(3406), - [anon_sym_using] = ACTIONS(3406), - [anon_sym_unsafe] = ACTIONS(3406), - [anon_sym_static] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_LPAREN] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3406), - [anon_sym_namespace] = ACTIONS(3406), - [anon_sym_class] = ACTIONS(3406), - [anon_sym_ref] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3406), - [anon_sym_enum] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(3408), - [anon_sym_interface] = ACTIONS(3406), - [anon_sym_delegate] = ACTIONS(3406), - [anon_sym_record] = ACTIONS(3406), - [anon_sym_public] = ACTIONS(3406), - [anon_sym_private] = ACTIONS(3406), - [anon_sym_readonly] = ACTIONS(3406), - [anon_sym_abstract] = ACTIONS(3406), - [anon_sym_async] = ACTIONS(3406), - [anon_sym_const] = ACTIONS(3406), - [anon_sym_file] = ACTIONS(3406), - [anon_sym_fixed] = ACTIONS(3406), - [anon_sym_internal] = ACTIONS(3406), - [anon_sym_new] = ACTIONS(3406), - [anon_sym_override] = ACTIONS(3406), - [anon_sym_partial] = ACTIONS(3406), - [anon_sym_protected] = ACTIONS(3406), - [anon_sym_required] = ACTIONS(3406), - [anon_sym_sealed] = ACTIONS(3406), - [anon_sym_virtual] = ACTIONS(3406), - [anon_sym_volatile] = ACTIONS(3406), - [anon_sym_where] = ACTIONS(3406), - [anon_sym_notnull] = ACTIONS(3406), - [anon_sym_unmanaged] = ACTIONS(3406), - [anon_sym_checked] = ACTIONS(3406), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_PLUS_PLUS] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3408), - [anon_sym_true] = ACTIONS(3406), - [anon_sym_false] = ACTIONS(3406), - [anon_sym_PLUS] = ACTIONS(3406), - [anon_sym_DASH] = ACTIONS(3406), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_this] = ACTIONS(3406), - [anon_sym_scoped] = ACTIONS(3406), - [anon_sym_base] = ACTIONS(3406), - [anon_sym_var] = ACTIONS(3406), - [sym_predefined_type] = ACTIONS(3406), - [anon_sym_break] = ACTIONS(3406), - [anon_sym_unchecked] = ACTIONS(3406), - [anon_sym_continue] = ACTIONS(3406), - [anon_sym_do] = ACTIONS(3406), - [anon_sym_while] = ACTIONS(3406), - [anon_sym_for] = ACTIONS(3406), - [anon_sym_lock] = ACTIONS(3406), - [anon_sym_yield] = ACTIONS(3406), - [anon_sym_switch] = ACTIONS(3406), - [anon_sym_default] = ACTIONS(3406), - [anon_sym_throw] = ACTIONS(3406), - [anon_sym_try] = ACTIONS(3406), - [anon_sym_when] = ACTIONS(3406), - [anon_sym_await] = ACTIONS(3406), - [anon_sym_foreach] = ACTIONS(3406), - [anon_sym_goto] = ACTIONS(3406), - [anon_sym_if] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3406), - [anon_sym_DOT_DOT] = ACTIONS(3408), - [anon_sym_from] = ACTIONS(3406), - [anon_sym_into] = ACTIONS(3406), - [anon_sym_join] = ACTIONS(3406), - [anon_sym_on] = ACTIONS(3406), - [anon_sym_equals] = ACTIONS(3406), - [anon_sym_let] = ACTIONS(3406), - [anon_sym_orderby] = ACTIONS(3406), - [anon_sym_ascending] = ACTIONS(3406), - [anon_sym_descending] = ACTIONS(3406), - [anon_sym_group] = ACTIONS(3406), - [anon_sym_by] = ACTIONS(3406), - [anon_sym_select] = ACTIONS(3406), - [anon_sym_stackalloc] = ACTIONS(3406), - [anon_sym_sizeof] = ACTIONS(3406), - [anon_sym_typeof] = ACTIONS(3406), - [anon_sym___makeref] = ACTIONS(3406), - [anon_sym___reftype] = ACTIONS(3406), - [anon_sym___refvalue] = ACTIONS(3406), - [sym_null_literal] = ACTIONS(3406), - [anon_sym_SQUOTE] = ACTIONS(3408), - [sym_integer_literal] = ACTIONS(3406), - [sym_real_literal] = ACTIONS(3408), - [anon_sym_DQUOTE] = ACTIONS(3408), - [sym_verbatim_string_literal] = ACTIONS(3408), - [sym_grit_metavariable] = ACTIONS(3408), - [aux_sym_preproc_if_token1] = ACTIONS(3408), - [aux_sym_preproc_if_token3] = ACTIONS(3408), - [aux_sym_preproc_else_token1] = ACTIONS(3408), - [aux_sym_preproc_elif_token1] = ACTIONS(3408), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3408), - [sym_interpolation_verbatim_start] = ACTIONS(3408), - [sym_interpolation_raw_start] = ACTIONS(3408), - [sym_raw_string_start] = ACTIONS(3408), + [sym__identifier_token] = ACTIONS(3412), + [anon_sym_extern] = ACTIONS(3412), + [anon_sym_alias] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_global] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_unsafe] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3414), + [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(3414), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_delegate] = ACTIONS(3412), + [anon_sym_record] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_readonly] = 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_protected] = 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_TILDE] = ACTIONS(3414), + [anon_sym_this] = ACTIONS(3412), + [anon_sym_scoped] = ACTIONS(3412), + [anon_sym_base] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3414), + [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_else] = ACTIONS(3412), + [anon_sym_DOT_DOT] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3414), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [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(3414), + [sym_integer_literal] = ACTIONS(3412), + [sym_real_literal] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [sym_verbatim_string_literal] = ACTIONS(3414), + [sym_grit_metavariable] = ACTIONS(3414), + [aux_sym_preproc_if_token1] = ACTIONS(3414), + [aux_sym_preproc_if_token3] = ACTIONS(3414), + [aux_sym_preproc_else_token1] = ACTIONS(3414), + [aux_sym_preproc_elif_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), }, [1954] = { [sym_preproc_region] = STATE(1954), @@ -380180,125 +380202,125 @@ 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), - [sym__identifier_token] = ACTIONS(3410), - [anon_sym_extern] = ACTIONS(3410), - [anon_sym_alias] = ACTIONS(3410), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_global] = ACTIONS(3410), - [anon_sym_using] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(3410), - [anon_sym_static] = ACTIONS(3410), - [anon_sym_LBRACK] = ACTIONS(3412), - [anon_sym_LPAREN] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3410), - [anon_sym_namespace] = ACTIONS(3410), - [anon_sym_class] = ACTIONS(3410), - [anon_sym_ref] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3410), - [anon_sym_enum] = ACTIONS(3410), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_interface] = ACTIONS(3410), - [anon_sym_delegate] = ACTIONS(3410), - [anon_sym_record] = ACTIONS(3410), - [anon_sym_public] = ACTIONS(3410), - [anon_sym_private] = ACTIONS(3410), - [anon_sym_readonly] = ACTIONS(3410), - [anon_sym_abstract] = ACTIONS(3410), - [anon_sym_async] = ACTIONS(3410), - [anon_sym_const] = ACTIONS(3410), - [anon_sym_file] = ACTIONS(3410), - [anon_sym_fixed] = ACTIONS(3410), - [anon_sym_internal] = ACTIONS(3410), - [anon_sym_new] = ACTIONS(3410), - [anon_sym_override] = ACTIONS(3410), - [anon_sym_partial] = ACTIONS(3410), - [anon_sym_protected] = ACTIONS(3410), - [anon_sym_required] = ACTIONS(3410), - [anon_sym_sealed] = ACTIONS(3410), - [anon_sym_virtual] = ACTIONS(3410), - [anon_sym_volatile] = ACTIONS(3410), - [anon_sym_where] = ACTIONS(3410), - [anon_sym_notnull] = ACTIONS(3410), - [anon_sym_unmanaged] = ACTIONS(3410), - [anon_sym_checked] = ACTIONS(3410), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3412), - [anon_sym_DASH_DASH] = ACTIONS(3412), - [anon_sym_true] = ACTIONS(3410), - [anon_sym_false] = ACTIONS(3410), - [anon_sym_PLUS] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_CARET] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_this] = ACTIONS(3410), - [anon_sym_scoped] = ACTIONS(3410), - [anon_sym_base] = ACTIONS(3410), - [anon_sym_var] = ACTIONS(3410), - [sym_predefined_type] = ACTIONS(3410), - [anon_sym_break] = ACTIONS(3410), - [anon_sym_unchecked] = ACTIONS(3410), - [anon_sym_continue] = ACTIONS(3410), - [anon_sym_do] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3410), - [anon_sym_for] = ACTIONS(3410), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_yield] = ACTIONS(3410), - [anon_sym_switch] = ACTIONS(3410), - [anon_sym_default] = ACTIONS(3410), - [anon_sym_throw] = ACTIONS(3410), - [anon_sym_try] = ACTIONS(3410), - [anon_sym_when] = ACTIONS(3410), - [anon_sym_await] = ACTIONS(3410), - [anon_sym_foreach] = ACTIONS(3410), - [anon_sym_goto] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3410), - [anon_sym_else] = ACTIONS(3410), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_from] = ACTIONS(3410), - [anon_sym_into] = ACTIONS(3410), - [anon_sym_join] = ACTIONS(3410), - [anon_sym_on] = ACTIONS(3410), - [anon_sym_equals] = ACTIONS(3410), - [anon_sym_let] = ACTIONS(3410), - [anon_sym_orderby] = ACTIONS(3410), - [anon_sym_ascending] = ACTIONS(3410), - [anon_sym_descending] = ACTIONS(3410), - [anon_sym_group] = ACTIONS(3410), - [anon_sym_by] = ACTIONS(3410), - [anon_sym_select] = ACTIONS(3410), - [anon_sym_stackalloc] = ACTIONS(3410), - [anon_sym_sizeof] = ACTIONS(3410), - [anon_sym_typeof] = ACTIONS(3410), - [anon_sym___makeref] = ACTIONS(3410), - [anon_sym___reftype] = ACTIONS(3410), - [anon_sym___refvalue] = ACTIONS(3410), - [sym_null_literal] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3412), - [sym_integer_literal] = ACTIONS(3410), - [sym_real_literal] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [sym_verbatim_string_literal] = ACTIONS(3412), - [sym_grit_metavariable] = ACTIONS(3412), - [aux_sym_preproc_if_token1] = ACTIONS(3412), - [aux_sym_preproc_if_token3] = ACTIONS(3412), - [aux_sym_preproc_else_token1] = ACTIONS(3412), - [aux_sym_preproc_elif_token1] = ACTIONS(3412), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3412), - [sym_interpolation_verbatim_start] = ACTIONS(3412), - [sym_interpolation_raw_start] = ACTIONS(3412), - [sym_raw_string_start] = ACTIONS(3412), + [sym__identifier_token] = ACTIONS(3416), + [anon_sym_extern] = ACTIONS(3416), + [anon_sym_alias] = ACTIONS(3416), + [anon_sym_SEMI] = ACTIONS(3418), + [anon_sym_global] = ACTIONS(3416), + [anon_sym_using] = ACTIONS(3416), + [anon_sym_unsafe] = ACTIONS(3416), + [anon_sym_static] = ACTIONS(3416), + [anon_sym_LBRACK] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3418), + [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(3418), + [anon_sym_interface] = ACTIONS(3416), + [anon_sym_delegate] = ACTIONS(3416), + [anon_sym_record] = ACTIONS(3416), + [anon_sym_public] = ACTIONS(3416), + [anon_sym_private] = ACTIONS(3416), + [anon_sym_readonly] = 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_protected] = 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_TILDE] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(3416), + [anon_sym_scoped] = ACTIONS(3416), + [anon_sym_base] = ACTIONS(3416), + [anon_sym_var] = ACTIONS(3416), + [anon_sym_STAR] = ACTIONS(3418), + [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_else] = ACTIONS(3416), + [anon_sym_DOT_DOT] = ACTIONS(3418), + [anon_sym_AMP] = ACTIONS(3418), + [anon_sym_CARET] = ACTIONS(3418), + [anon_sym_PLUS] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_PLUS_PLUS] = ACTIONS(3418), + [anon_sym_DASH_DASH] = ACTIONS(3418), + [anon_sym_true] = ACTIONS(3416), + [anon_sym_false] = ACTIONS(3416), + [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(3418), + [sym_integer_literal] = ACTIONS(3416), + [sym_real_literal] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(3418), + [sym_verbatim_string_literal] = ACTIONS(3418), + [sym_grit_metavariable] = ACTIONS(3418), + [aux_sym_preproc_if_token1] = ACTIONS(3418), + [aux_sym_preproc_if_token3] = ACTIONS(3418), + [aux_sym_preproc_else_token1] = ACTIONS(3418), + [aux_sym_preproc_elif_token1] = ACTIONS(3418), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3418), + [sym_interpolation_verbatim_start] = ACTIONS(3418), + [sym_interpolation_raw_start] = ACTIONS(3418), + [sym_raw_string_start] = ACTIONS(3418), }, [1955] = { [sym_preproc_region] = STATE(1955), @@ -380310,125 +380332,125 @@ 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), - [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_public] = ACTIONS(3183), - [anon_sym_private] = ACTIONS(3183), - [anon_sym_readonly] = 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_protected] = 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), - [sym_grit_metavariable] = 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), + [sym__identifier_token] = ACTIONS(3420), + [anon_sym_extern] = ACTIONS(3420), + [anon_sym_alias] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_global] = ACTIONS(3420), + [anon_sym_using] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3420), + [anon_sym_static] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_namespace] = ACTIONS(3420), + [anon_sym_class] = ACTIONS(3420), + [anon_sym_ref] = ACTIONS(3420), + [anon_sym_struct] = ACTIONS(3420), + [anon_sym_enum] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_interface] = ACTIONS(3420), + [anon_sym_delegate] = ACTIONS(3420), + [anon_sym_record] = ACTIONS(3420), + [anon_sym_public] = ACTIONS(3420), + [anon_sym_private] = ACTIONS(3420), + [anon_sym_readonly] = ACTIONS(3420), + [anon_sym_abstract] = ACTIONS(3420), + [anon_sym_async] = ACTIONS(3420), + [anon_sym_const] = ACTIONS(3420), + [anon_sym_file] = ACTIONS(3420), + [anon_sym_fixed] = ACTIONS(3420), + [anon_sym_internal] = ACTIONS(3420), + [anon_sym_new] = ACTIONS(3420), + [anon_sym_override] = ACTIONS(3420), + [anon_sym_partial] = ACTIONS(3420), + [anon_sym_protected] = ACTIONS(3420), + [anon_sym_required] = ACTIONS(3420), + [anon_sym_sealed] = ACTIONS(3420), + [anon_sym_virtual] = ACTIONS(3420), + [anon_sym_volatile] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_notnull] = ACTIONS(3420), + [anon_sym_unmanaged] = ACTIONS(3420), + [anon_sym_checked] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_scoped] = ACTIONS(3420), + [anon_sym_base] = ACTIONS(3420), + [anon_sym_var] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3422), + [sym_predefined_type] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_unchecked] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_do] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_for] = ACTIONS(3420), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_yield] = ACTIONS(3420), + [anon_sym_switch] = ACTIONS(3420), + [anon_sym_default] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_await] = ACTIONS(3420), + [anon_sym_foreach] = ACTIONS(3420), + [anon_sym_goto] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_CARET] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_from] = ACTIONS(3420), + [anon_sym_into] = ACTIONS(3420), + [anon_sym_join] = ACTIONS(3420), + [anon_sym_on] = ACTIONS(3420), + [anon_sym_equals] = ACTIONS(3420), + [anon_sym_let] = ACTIONS(3420), + [anon_sym_orderby] = ACTIONS(3420), + [anon_sym_ascending] = ACTIONS(3420), + [anon_sym_descending] = ACTIONS(3420), + [anon_sym_group] = ACTIONS(3420), + [anon_sym_by] = ACTIONS(3420), + [anon_sym_select] = ACTIONS(3420), + [anon_sym_stackalloc] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(3420), + [anon_sym_typeof] = ACTIONS(3420), + [anon_sym___makeref] = ACTIONS(3420), + [anon_sym___reftype] = ACTIONS(3420), + [anon_sym___refvalue] = ACTIONS(3420), + [sym_null_literal] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_real_literal] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(3422), + [sym_verbatim_string_literal] = ACTIONS(3422), + [sym_grit_metavariable] = ACTIONS(3422), + [aux_sym_preproc_if_token1] = ACTIONS(3422), + [aux_sym_preproc_if_token3] = ACTIONS(3422), + [aux_sym_preproc_else_token1] = ACTIONS(3422), + [aux_sym_preproc_elif_token1] = ACTIONS(3422), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3422), + [sym_interpolation_verbatim_start] = ACTIONS(3422), + [sym_interpolation_raw_start] = ACTIONS(3422), + [sym_raw_string_start] = ACTIONS(3422), }, [1956] = { [sym_preproc_region] = STATE(1956), @@ -380440,266 +380462,6 @@ 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), - [sym__identifier_token] = ACTIONS(3414), - [anon_sym_extern] = ACTIONS(3414), - [anon_sym_alias] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3416), - [anon_sym_global] = ACTIONS(3414), - [anon_sym_using] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3414), - [anon_sym_static] = ACTIONS(3414), - [anon_sym_LBRACK] = ACTIONS(3416), - [anon_sym_LPAREN] = ACTIONS(3416), - [anon_sym_return] = ACTIONS(3414), - [anon_sym_namespace] = ACTIONS(3414), - [anon_sym_class] = ACTIONS(3414), - [anon_sym_ref] = ACTIONS(3414), - [anon_sym_struct] = ACTIONS(3414), - [anon_sym_enum] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_interface] = ACTIONS(3414), - [anon_sym_delegate] = ACTIONS(3414), - [anon_sym_record] = ACTIONS(3414), - [anon_sym_public] = ACTIONS(3414), - [anon_sym_private] = ACTIONS(3414), - [anon_sym_readonly] = ACTIONS(3414), - [anon_sym_abstract] = ACTIONS(3414), - [anon_sym_async] = ACTIONS(3414), - [anon_sym_const] = ACTIONS(3414), - [anon_sym_file] = ACTIONS(3414), - [anon_sym_fixed] = ACTIONS(3414), - [anon_sym_internal] = ACTIONS(3414), - [anon_sym_new] = ACTIONS(3414), - [anon_sym_override] = ACTIONS(3414), - [anon_sym_partial] = ACTIONS(3414), - [anon_sym_protected] = ACTIONS(3414), - [anon_sym_required] = ACTIONS(3414), - [anon_sym_sealed] = ACTIONS(3414), - [anon_sym_virtual] = ACTIONS(3414), - [anon_sym_volatile] = ACTIONS(3414), - [anon_sym_where] = ACTIONS(3414), - [anon_sym_notnull] = ACTIONS(3414), - [anon_sym_unmanaged] = ACTIONS(3414), - [anon_sym_checked] = ACTIONS(3414), - [anon_sym_BANG] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3416), - [anon_sym_true] = ACTIONS(3414), - [anon_sym_false] = ACTIONS(3414), - [anon_sym_PLUS] = ACTIONS(3414), - [anon_sym_DASH] = ACTIONS(3414), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_CARET] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_this] = ACTIONS(3414), - [anon_sym_scoped] = ACTIONS(3414), - [anon_sym_base] = ACTIONS(3414), - [anon_sym_var] = ACTIONS(3414), - [sym_predefined_type] = ACTIONS(3414), - [anon_sym_break] = ACTIONS(3414), - [anon_sym_unchecked] = ACTIONS(3414), - [anon_sym_continue] = ACTIONS(3414), - [anon_sym_do] = ACTIONS(3414), - [anon_sym_while] = ACTIONS(3414), - [anon_sym_for] = ACTIONS(3414), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_yield] = ACTIONS(3414), - [anon_sym_switch] = ACTIONS(3414), - [anon_sym_default] = ACTIONS(3414), - [anon_sym_throw] = ACTIONS(3414), - [anon_sym_try] = ACTIONS(3414), - [anon_sym_when] = ACTIONS(3414), - [anon_sym_await] = ACTIONS(3414), - [anon_sym_foreach] = ACTIONS(3414), - [anon_sym_goto] = ACTIONS(3414), - [anon_sym_if] = ACTIONS(3414), - [anon_sym_else] = ACTIONS(3414), - [anon_sym_DOT_DOT] = ACTIONS(3416), - [anon_sym_from] = ACTIONS(3414), - [anon_sym_into] = ACTIONS(3414), - [anon_sym_join] = ACTIONS(3414), - [anon_sym_on] = ACTIONS(3414), - [anon_sym_equals] = ACTIONS(3414), - [anon_sym_let] = ACTIONS(3414), - [anon_sym_orderby] = ACTIONS(3414), - [anon_sym_ascending] = ACTIONS(3414), - [anon_sym_descending] = ACTIONS(3414), - [anon_sym_group] = ACTIONS(3414), - [anon_sym_by] = ACTIONS(3414), - [anon_sym_select] = ACTIONS(3414), - [anon_sym_stackalloc] = ACTIONS(3414), - [anon_sym_sizeof] = ACTIONS(3414), - [anon_sym_typeof] = ACTIONS(3414), - [anon_sym___makeref] = ACTIONS(3414), - [anon_sym___reftype] = ACTIONS(3414), - [anon_sym___refvalue] = ACTIONS(3414), - [sym_null_literal] = ACTIONS(3414), - [anon_sym_SQUOTE] = ACTIONS(3416), - [sym_integer_literal] = ACTIONS(3414), - [sym_real_literal] = ACTIONS(3416), - [anon_sym_DQUOTE] = ACTIONS(3416), - [sym_verbatim_string_literal] = ACTIONS(3416), - [sym_grit_metavariable] = ACTIONS(3416), - [aux_sym_preproc_if_token1] = ACTIONS(3416), - [aux_sym_preproc_if_token3] = ACTIONS(3416), - [aux_sym_preproc_else_token1] = ACTIONS(3416), - [aux_sym_preproc_elif_token1] = ACTIONS(3416), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3416), - [sym_interpolation_verbatim_start] = ACTIONS(3416), - [sym_interpolation_raw_start] = ACTIONS(3416), - [sym_raw_string_start] = ACTIONS(3416), - }, - [1957] = { - [sym_preproc_region] = STATE(1957), - [sym_preproc_endregion] = STATE(1957), - [sym_preproc_line] = STATE(1957), - [sym_preproc_pragma] = STATE(1957), - [sym_preproc_nullable] = STATE(1957), - [sym_preproc_error] = STATE(1957), - [sym_preproc_warning] = STATE(1957), - [sym_preproc_define] = STATE(1957), - [sym_preproc_undef] = STATE(1957), - [sym__identifier_token] = ACTIONS(3418), - [anon_sym_extern] = ACTIONS(3418), - [anon_sym_alias] = ACTIONS(3418), - [anon_sym_SEMI] = ACTIONS(3420), - [anon_sym_global] = ACTIONS(3418), - [anon_sym_using] = ACTIONS(3418), - [anon_sym_unsafe] = ACTIONS(3418), - [anon_sym_static] = ACTIONS(3418), - [anon_sym_LBRACK] = ACTIONS(3420), - [anon_sym_LPAREN] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3418), - [anon_sym_namespace] = ACTIONS(3418), - [anon_sym_class] = ACTIONS(3418), - [anon_sym_ref] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(3418), - [anon_sym_enum] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(3420), - [anon_sym_interface] = ACTIONS(3418), - [anon_sym_delegate] = ACTIONS(3418), - [anon_sym_record] = ACTIONS(3418), - [anon_sym_public] = ACTIONS(3418), - [anon_sym_private] = ACTIONS(3418), - [anon_sym_readonly] = ACTIONS(3418), - [anon_sym_abstract] = ACTIONS(3418), - [anon_sym_async] = ACTIONS(3418), - [anon_sym_const] = ACTIONS(3418), - [anon_sym_file] = ACTIONS(3418), - [anon_sym_fixed] = ACTIONS(3418), - [anon_sym_internal] = ACTIONS(3418), - [anon_sym_new] = ACTIONS(3418), - [anon_sym_override] = ACTIONS(3418), - [anon_sym_partial] = ACTIONS(3418), - [anon_sym_protected] = ACTIONS(3418), - [anon_sym_required] = ACTIONS(3418), - [anon_sym_sealed] = ACTIONS(3418), - [anon_sym_virtual] = ACTIONS(3418), - [anon_sym_volatile] = ACTIONS(3418), - [anon_sym_where] = ACTIONS(3418), - [anon_sym_notnull] = ACTIONS(3418), - [anon_sym_unmanaged] = ACTIONS(3418), - [anon_sym_checked] = ACTIONS(3418), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3420), - [anon_sym_true] = ACTIONS(3418), - [anon_sym_false] = ACTIONS(3418), - [anon_sym_PLUS] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3418), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_CARET] = ACTIONS(3420), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_this] = ACTIONS(3418), - [anon_sym_scoped] = ACTIONS(3418), - [anon_sym_base] = ACTIONS(3418), - [anon_sym_var] = ACTIONS(3418), - [sym_predefined_type] = ACTIONS(3418), - [anon_sym_break] = ACTIONS(3418), - [anon_sym_unchecked] = ACTIONS(3418), - [anon_sym_continue] = ACTIONS(3418), - [anon_sym_do] = ACTIONS(3418), - [anon_sym_while] = ACTIONS(3418), - [anon_sym_for] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3418), - [anon_sym_yield] = ACTIONS(3418), - [anon_sym_switch] = ACTIONS(3418), - [anon_sym_default] = ACTIONS(3418), - [anon_sym_throw] = ACTIONS(3418), - [anon_sym_try] = ACTIONS(3418), - [anon_sym_when] = ACTIONS(3418), - [anon_sym_await] = ACTIONS(3418), - [anon_sym_foreach] = ACTIONS(3418), - [anon_sym_goto] = ACTIONS(3418), - [anon_sym_if] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_DOT_DOT] = ACTIONS(3420), - [anon_sym_from] = ACTIONS(3418), - [anon_sym_into] = ACTIONS(3418), - [anon_sym_join] = ACTIONS(3418), - [anon_sym_on] = ACTIONS(3418), - [anon_sym_equals] = ACTIONS(3418), - [anon_sym_let] = ACTIONS(3418), - [anon_sym_orderby] = ACTIONS(3418), - [anon_sym_ascending] = ACTIONS(3418), - [anon_sym_descending] = ACTIONS(3418), - [anon_sym_group] = ACTIONS(3418), - [anon_sym_by] = ACTIONS(3418), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_stackalloc] = ACTIONS(3418), - [anon_sym_sizeof] = ACTIONS(3418), - [anon_sym_typeof] = ACTIONS(3418), - [anon_sym___makeref] = ACTIONS(3418), - [anon_sym___reftype] = ACTIONS(3418), - [anon_sym___refvalue] = ACTIONS(3418), - [sym_null_literal] = ACTIONS(3418), - [anon_sym_SQUOTE] = ACTIONS(3420), - [sym_integer_literal] = ACTIONS(3418), - [sym_real_literal] = ACTIONS(3420), - [anon_sym_DQUOTE] = ACTIONS(3420), - [sym_verbatim_string_literal] = ACTIONS(3420), - [sym_grit_metavariable] = ACTIONS(3420), - [aux_sym_preproc_if_token1] = ACTIONS(3420), - [aux_sym_preproc_if_token3] = ACTIONS(3420), - [aux_sym_preproc_else_token1] = ACTIONS(3420), - [aux_sym_preproc_elif_token1] = ACTIONS(3420), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3420), - [sym_interpolation_verbatim_start] = ACTIONS(3420), - [sym_interpolation_raw_start] = ACTIONS(3420), - [sym_raw_string_start] = ACTIONS(3420), - }, - [1958] = { - [sym_preproc_region] = STATE(1958), - [sym_preproc_endregion] = STATE(1958), - [sym_preproc_line] = STATE(1958), - [sym_preproc_pragma] = STATE(1958), - [sym_preproc_nullable] = STATE(1958), - [sym_preproc_error] = STATE(1958), - [sym_preproc_warning] = STATE(1958), - [sym_preproc_define] = STATE(1958), - [sym_preproc_undef] = STATE(1958), [sym__identifier_token] = ACTIONS(3424), [anon_sym_extern] = ACTIONS(3424), [anon_sym_alias] = ACTIONS(3424), @@ -380741,21 +380503,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3424), [anon_sym_unmanaged] = ACTIONS(3424), [anon_sym_checked] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3426), [anon_sym_TILDE] = ACTIONS(3426), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(3426), - [anon_sym_CARET] = ACTIONS(3426), - [anon_sym_AMP] = ACTIONS(3426), [anon_sym_this] = ACTIONS(3424), [anon_sym_scoped] = ACTIONS(3424), [anon_sym_base] = ACTIONS(3424), [anon_sym_var] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3426), [sym_predefined_type] = ACTIONS(3424), [anon_sym_break] = ACTIONS(3424), [anon_sym_unchecked] = ACTIONS(3424), @@ -380776,6 +380529,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3424), [anon_sym_else] = ACTIONS(3424), [anon_sym_DOT_DOT] = ACTIONS(3426), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_CARET] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3426), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), [anon_sym_from] = ACTIONS(3424), [anon_sym_into] = ACTIONS(3424), [anon_sym_join] = ACTIONS(3424), @@ -380820,16 +380582,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3426), [sym_raw_string_start] = ACTIONS(3426), }, - [1959] = { - [sym_preproc_region] = STATE(1959), - [sym_preproc_endregion] = STATE(1959), - [sym_preproc_line] = STATE(1959), - [sym_preproc_pragma] = STATE(1959), - [sym_preproc_nullable] = STATE(1959), - [sym_preproc_error] = STATE(1959), - [sym_preproc_warning] = STATE(1959), - [sym_preproc_define] = STATE(1959), - [sym_preproc_undef] = STATE(1959), + [1957] = { + [sym_preproc_region] = STATE(1957), + [sym_preproc_endregion] = STATE(1957), + [sym_preproc_line] = STATE(1957), + [sym_preproc_pragma] = STATE(1957), + [sym_preproc_nullable] = STATE(1957), + [sym_preproc_error] = STATE(1957), + [sym_preproc_warning] = STATE(1957), + [sym_preproc_define] = STATE(1957), + [sym_preproc_undef] = STATE(1957), [sym__identifier_token] = ACTIONS(3428), [anon_sym_extern] = ACTIONS(3428), [anon_sym_alias] = ACTIONS(3428), @@ -380871,21 +380633,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3428), [anon_sym_unmanaged] = ACTIONS(3428), [anon_sym_checked] = ACTIONS(3428), - [anon_sym_BANG] = ACTIONS(3430), [anon_sym_TILDE] = ACTIONS(3430), - [anon_sym_PLUS_PLUS] = ACTIONS(3430), - [anon_sym_DASH_DASH] = ACTIONS(3430), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_STAR] = ACTIONS(3430), - [anon_sym_CARET] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3430), [anon_sym_this] = ACTIONS(3428), [anon_sym_scoped] = ACTIONS(3428), [anon_sym_base] = ACTIONS(3428), [anon_sym_var] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3430), [sym_predefined_type] = ACTIONS(3428), [anon_sym_break] = ACTIONS(3428), [anon_sym_unchecked] = ACTIONS(3428), @@ -380906,6 +380659,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3428), [anon_sym_else] = ACTIONS(3428), [anon_sym_DOT_DOT] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_CARET] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_BANG] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3430), + [anon_sym_DASH_DASH] = ACTIONS(3430), + [anon_sym_true] = ACTIONS(3428), + [anon_sym_false] = ACTIONS(3428), [anon_sym_from] = ACTIONS(3428), [anon_sym_into] = ACTIONS(3428), [anon_sym_join] = ACTIONS(3428), @@ -380950,16 +380712,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3430), [sym_raw_string_start] = ACTIONS(3430), }, - [1960] = { - [sym_preproc_region] = STATE(1960), - [sym_preproc_endregion] = STATE(1960), - [sym_preproc_line] = STATE(1960), - [sym_preproc_pragma] = STATE(1960), - [sym_preproc_nullable] = STATE(1960), - [sym_preproc_error] = STATE(1960), - [sym_preproc_warning] = STATE(1960), - [sym_preproc_define] = STATE(1960), - [sym_preproc_undef] = STATE(1960), + [1958] = { + [sym_preproc_region] = STATE(1958), + [sym_preproc_endregion] = STATE(1958), + [sym_preproc_line] = STATE(1958), + [sym_preproc_pragma] = STATE(1958), + [sym_preproc_nullable] = STATE(1958), + [sym_preproc_error] = STATE(1958), + [sym_preproc_warning] = STATE(1958), + [sym_preproc_define] = STATE(1958), + [sym_preproc_undef] = STATE(1958), [sym__identifier_token] = ACTIONS(3432), [anon_sym_extern] = ACTIONS(3432), [anon_sym_alias] = ACTIONS(3432), @@ -381001,21 +380763,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3432), [anon_sym_unmanaged] = ACTIONS(3432), [anon_sym_checked] = ACTIONS(3432), - [anon_sym_BANG] = ACTIONS(3434), [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_PLUS_PLUS] = ACTIONS(3434), - [anon_sym_DASH_DASH] = ACTIONS(3434), - [anon_sym_true] = ACTIONS(3432), - [anon_sym_false] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(3434), - [anon_sym_CARET] = ACTIONS(3434), - [anon_sym_AMP] = ACTIONS(3434), [anon_sym_this] = ACTIONS(3432), [anon_sym_scoped] = ACTIONS(3432), [anon_sym_base] = ACTIONS(3432), [anon_sym_var] = ACTIONS(3432), + [anon_sym_STAR] = ACTIONS(3434), [sym_predefined_type] = ACTIONS(3432), [anon_sym_break] = ACTIONS(3432), [anon_sym_unchecked] = ACTIONS(3432), @@ -381036,6 +380789,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3432), [anon_sym_else] = ACTIONS(3432), [anon_sym_DOT_DOT] = ACTIONS(3434), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym_CARET] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3432), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3434), + [anon_sym_true] = ACTIONS(3432), + [anon_sym_false] = ACTIONS(3432), [anon_sym_from] = ACTIONS(3432), [anon_sym_into] = ACTIONS(3432), [anon_sym_join] = ACTIONS(3432), @@ -381080,16 +380842,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3434), [sym_raw_string_start] = ACTIONS(3434), }, - [1961] = { - [sym_preproc_region] = STATE(1961), - [sym_preproc_endregion] = STATE(1961), - [sym_preproc_line] = STATE(1961), - [sym_preproc_pragma] = STATE(1961), - [sym_preproc_nullable] = STATE(1961), - [sym_preproc_error] = STATE(1961), - [sym_preproc_warning] = STATE(1961), - [sym_preproc_define] = STATE(1961), - [sym_preproc_undef] = STATE(1961), + [1959] = { + [sym_preproc_region] = STATE(1959), + [sym_preproc_endregion] = STATE(1959), + [sym_preproc_line] = STATE(1959), + [sym_preproc_pragma] = STATE(1959), + [sym_preproc_nullable] = STATE(1959), + [sym_preproc_error] = STATE(1959), + [sym_preproc_warning] = STATE(1959), + [sym_preproc_define] = STATE(1959), + [sym_preproc_undef] = STATE(1959), [sym__identifier_token] = ACTIONS(3436), [anon_sym_extern] = ACTIONS(3436), [anon_sym_alias] = ACTIONS(3436), @@ -381131,21 +380893,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3436), [anon_sym_unmanaged] = ACTIONS(3436), [anon_sym_checked] = ACTIONS(3436), - [anon_sym_BANG] = ACTIONS(3438), [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_CARET] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3438), [anon_sym_this] = ACTIONS(3436), [anon_sym_scoped] = ACTIONS(3436), [anon_sym_base] = ACTIONS(3436), [anon_sym_var] = ACTIONS(3436), + [anon_sym_STAR] = ACTIONS(3438), [sym_predefined_type] = ACTIONS(3436), [anon_sym_break] = ACTIONS(3436), [anon_sym_unchecked] = ACTIONS(3436), @@ -381166,6 +380919,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3436), [anon_sym_else] = ACTIONS(3436), [anon_sym_DOT_DOT] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_CARET] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3438), + [anon_sym_PLUS_PLUS] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3438), + [anon_sym_true] = ACTIONS(3436), + [anon_sym_false] = ACTIONS(3436), [anon_sym_from] = ACTIONS(3436), [anon_sym_into] = ACTIONS(3436), [anon_sym_join] = ACTIONS(3436), @@ -381210,16 +380972,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3438), [sym_raw_string_start] = ACTIONS(3438), }, - [1962] = { - [sym_preproc_region] = STATE(1962), - [sym_preproc_endregion] = STATE(1962), - [sym_preproc_line] = STATE(1962), - [sym_preproc_pragma] = STATE(1962), - [sym_preproc_nullable] = STATE(1962), - [sym_preproc_error] = STATE(1962), - [sym_preproc_warning] = STATE(1962), - [sym_preproc_define] = STATE(1962), - [sym_preproc_undef] = STATE(1962), + [1960] = { + [sym_preproc_region] = STATE(1960), + [sym_preproc_endregion] = STATE(1960), + [sym_preproc_line] = STATE(1960), + [sym_preproc_pragma] = STATE(1960), + [sym_preproc_nullable] = STATE(1960), + [sym_preproc_error] = STATE(1960), + [sym_preproc_warning] = STATE(1960), + [sym_preproc_define] = STATE(1960), + [sym_preproc_undef] = STATE(1960), [sym__identifier_token] = ACTIONS(3440), [anon_sym_extern] = ACTIONS(3440), [anon_sym_alias] = ACTIONS(3440), @@ -381261,21 +381023,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3440), [anon_sym_unmanaged] = ACTIONS(3440), [anon_sym_checked] = ACTIONS(3440), - [anon_sym_BANG] = ACTIONS(3442), [anon_sym_TILDE] = ACTIONS(3442), - [anon_sym_PLUS_PLUS] = ACTIONS(3442), - [anon_sym_DASH_DASH] = ACTIONS(3442), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_PLUS] = ACTIONS(3440), - [anon_sym_DASH] = ACTIONS(3440), - [anon_sym_STAR] = ACTIONS(3442), - [anon_sym_CARET] = ACTIONS(3442), - [anon_sym_AMP] = ACTIONS(3442), [anon_sym_this] = ACTIONS(3440), [anon_sym_scoped] = ACTIONS(3440), [anon_sym_base] = ACTIONS(3440), [anon_sym_var] = ACTIONS(3440), + [anon_sym_STAR] = ACTIONS(3442), [sym_predefined_type] = ACTIONS(3440), [anon_sym_break] = ACTIONS(3440), [anon_sym_unchecked] = ACTIONS(3440), @@ -381296,6 +381049,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3440), [anon_sym_else] = ACTIONS(3440), [anon_sym_DOT_DOT] = ACTIONS(3442), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_CARET] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), [anon_sym_from] = ACTIONS(3440), [anon_sym_into] = ACTIONS(3440), [anon_sym_join] = ACTIONS(3440), @@ -381340,16 +381102,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3442), [sym_raw_string_start] = ACTIONS(3442), }, - [1963] = { - [sym_preproc_region] = STATE(1963), - [sym_preproc_endregion] = STATE(1963), - [sym_preproc_line] = STATE(1963), - [sym_preproc_pragma] = STATE(1963), - [sym_preproc_nullable] = STATE(1963), - [sym_preproc_error] = STATE(1963), - [sym_preproc_warning] = STATE(1963), - [sym_preproc_define] = STATE(1963), - [sym_preproc_undef] = STATE(1963), + [1961] = { + [sym_preproc_region] = STATE(1961), + [sym_preproc_endregion] = STATE(1961), + [sym_preproc_line] = STATE(1961), + [sym_preproc_pragma] = STATE(1961), + [sym_preproc_nullable] = STATE(1961), + [sym_preproc_error] = STATE(1961), + [sym_preproc_warning] = STATE(1961), + [sym_preproc_define] = STATE(1961), + [sym_preproc_undef] = STATE(1961), + [ts_builtin_sym_end] = ACTIONS(3388), + [sym__identifier_token] = ACTIONS(3386), + [anon_sym_extern] = ACTIONS(3386), + [anon_sym_alias] = ACTIONS(3386), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_global] = ACTIONS(3386), + [anon_sym_using] = ACTIONS(3386), + [anon_sym_unsafe] = ACTIONS(3386), + [anon_sym_static] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_return] = ACTIONS(3386), + [anon_sym_namespace] = ACTIONS(3386), + [anon_sym_class] = ACTIONS(3386), + [anon_sym_ref] = ACTIONS(3386), + [anon_sym_struct] = ACTIONS(3386), + [anon_sym_enum] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_interface] = ACTIONS(3386), + [anon_sym_delegate] = ACTIONS(3386), + [anon_sym_record] = ACTIONS(3386), + [anon_sym_public] = ACTIONS(3386), + [anon_sym_private] = ACTIONS(3386), + [anon_sym_readonly] = ACTIONS(3386), + [anon_sym_abstract] = ACTIONS(3386), + [anon_sym_async] = ACTIONS(3386), + [anon_sym_const] = ACTIONS(3386), + [anon_sym_file] = ACTIONS(3386), + [anon_sym_fixed] = ACTIONS(3386), + [anon_sym_internal] = ACTIONS(3386), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_override] = ACTIONS(3386), + [anon_sym_partial] = ACTIONS(3386), + [anon_sym_protected] = ACTIONS(3386), + [anon_sym_required] = ACTIONS(3386), + [anon_sym_sealed] = ACTIONS(3386), + [anon_sym_virtual] = ACTIONS(3386), + [anon_sym_volatile] = ACTIONS(3386), + [anon_sym_where] = ACTIONS(3386), + [anon_sym_notnull] = ACTIONS(3386), + [anon_sym_unmanaged] = ACTIONS(3386), + [anon_sym_checked] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_this] = ACTIONS(3386), + [anon_sym_scoped] = ACTIONS(3386), + [anon_sym_base] = ACTIONS(3386), + [anon_sym_var] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [sym_predefined_type] = ACTIONS(3386), + [anon_sym_break] = ACTIONS(3386), + [anon_sym_unchecked] = ACTIONS(3386), + [anon_sym_continue] = ACTIONS(3386), + [anon_sym_do] = ACTIONS(3386), + [anon_sym_while] = ACTIONS(3386), + [anon_sym_for] = ACTIONS(3386), + [anon_sym_lock] = ACTIONS(3386), + [anon_sym_yield] = ACTIONS(3386), + [anon_sym_switch] = ACTIONS(3386), + [anon_sym_default] = ACTIONS(3386), + [anon_sym_throw] = ACTIONS(3386), + [anon_sym_try] = ACTIONS(3386), + [anon_sym_catch] = ACTIONS(3386), + [anon_sym_when] = ACTIONS(3386), + [anon_sym_finally] = ACTIONS(3386), + [anon_sym_await] = ACTIONS(3386), + [anon_sym_foreach] = ACTIONS(3386), + [anon_sym_goto] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_else] = ACTIONS(3386), + [anon_sym_DOT_DOT] = ACTIONS(3388), + [anon_sym_AMP] = ACTIONS(3388), + [anon_sym_CARET] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_true] = ACTIONS(3386), + [anon_sym_false] = ACTIONS(3386), + [anon_sym_from] = ACTIONS(3386), + [anon_sym_into] = ACTIONS(3386), + [anon_sym_join] = ACTIONS(3386), + [anon_sym_on] = ACTIONS(3386), + [anon_sym_equals] = ACTIONS(3386), + [anon_sym_let] = ACTIONS(3386), + [anon_sym_orderby] = ACTIONS(3386), + [anon_sym_ascending] = ACTIONS(3386), + [anon_sym_descending] = ACTIONS(3386), + [anon_sym_group] = ACTIONS(3386), + [anon_sym_by] = ACTIONS(3386), + [anon_sym_select] = ACTIONS(3386), + [anon_sym_stackalloc] = ACTIONS(3386), + [anon_sym_sizeof] = ACTIONS(3386), + [anon_sym_typeof] = ACTIONS(3386), + [anon_sym___makeref] = ACTIONS(3386), + [anon_sym___reftype] = ACTIONS(3386), + [anon_sym___refvalue] = ACTIONS(3386), + [sym_null_literal] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3388), + [sym_integer_literal] = ACTIONS(3386), + [sym_real_literal] = ACTIONS(3388), + [anon_sym_DQUOTE] = ACTIONS(3388), + [sym_verbatim_string_literal] = ACTIONS(3388), + [sym_grit_metavariable] = ACTIONS(3388), + [aux_sym_preproc_if_token1] = ACTIONS(3388), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3388), + [sym_interpolation_verbatim_start] = ACTIONS(3388), + [sym_interpolation_raw_start] = ACTIONS(3388), + [sym_raw_string_start] = ACTIONS(3388), + }, + [1962] = { + [sym_preproc_region] = STATE(1962), + [sym_preproc_endregion] = STATE(1962), + [sym_preproc_line] = STATE(1962), + [sym_preproc_pragma] = STATE(1962), + [sym_preproc_nullable] = STATE(1962), + [sym_preproc_error] = STATE(1962), + [sym_preproc_warning] = STATE(1962), + [sym_preproc_define] = STATE(1962), + [sym_preproc_undef] = STATE(1962), [sym__identifier_token] = ACTIONS(3444), [anon_sym_extern] = ACTIONS(3444), [anon_sym_alias] = ACTIONS(3444), @@ -381391,21 +381283,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3444), [anon_sym_unmanaged] = ACTIONS(3444), [anon_sym_checked] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3446), [anon_sym_TILDE] = ACTIONS(3446), - [anon_sym_PLUS_PLUS] = ACTIONS(3446), - [anon_sym_DASH_DASH] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3444), - [anon_sym_false] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_CARET] = ACTIONS(3446), - [anon_sym_AMP] = ACTIONS(3446), [anon_sym_this] = ACTIONS(3444), [anon_sym_scoped] = ACTIONS(3444), [anon_sym_base] = ACTIONS(3444), [anon_sym_var] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), [sym_predefined_type] = ACTIONS(3444), [anon_sym_break] = ACTIONS(3444), [anon_sym_unchecked] = ACTIONS(3444), @@ -381426,6 +381309,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3444), [anon_sym_else] = ACTIONS(3444), [anon_sym_DOT_DOT] = ACTIONS(3446), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_CARET] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [anon_sym_true] = ACTIONS(3444), + [anon_sym_false] = ACTIONS(3444), [anon_sym_from] = ACTIONS(3444), [anon_sym_into] = ACTIONS(3444), [anon_sym_join] = ACTIONS(3444), @@ -381470,16 +381362,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3446), [sym_raw_string_start] = ACTIONS(3446), }, - [1964] = { - [sym_preproc_region] = STATE(1964), - [sym_preproc_endregion] = STATE(1964), - [sym_preproc_line] = STATE(1964), - [sym_preproc_pragma] = STATE(1964), - [sym_preproc_nullable] = STATE(1964), - [sym_preproc_error] = STATE(1964), - [sym_preproc_warning] = STATE(1964), - [sym_preproc_define] = STATE(1964), - [sym_preproc_undef] = STATE(1964), + [1963] = { + [sym_preproc_region] = STATE(1963), + [sym_preproc_endregion] = STATE(1963), + [sym_preproc_line] = STATE(1963), + [sym_preproc_pragma] = STATE(1963), + [sym_preproc_nullable] = STATE(1963), + [sym_preproc_error] = STATE(1963), + [sym_preproc_warning] = STATE(1963), + [sym_preproc_define] = STATE(1963), + [sym_preproc_undef] = STATE(1963), [sym__identifier_token] = ACTIONS(3448), [anon_sym_extern] = ACTIONS(3448), [anon_sym_alias] = ACTIONS(3448), @@ -381521,21 +381413,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3448), [anon_sym_unmanaged] = ACTIONS(3448), [anon_sym_checked] = ACTIONS(3448), - [anon_sym_BANG] = ACTIONS(3450), [anon_sym_TILDE] = ACTIONS(3450), - [anon_sym_PLUS_PLUS] = ACTIONS(3450), - [anon_sym_DASH_DASH] = ACTIONS(3450), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [anon_sym_PLUS] = ACTIONS(3448), - [anon_sym_DASH] = ACTIONS(3448), - [anon_sym_STAR] = ACTIONS(3450), - [anon_sym_CARET] = ACTIONS(3450), - [anon_sym_AMP] = ACTIONS(3450), [anon_sym_this] = ACTIONS(3448), [anon_sym_scoped] = ACTIONS(3448), [anon_sym_base] = ACTIONS(3448), [anon_sym_var] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3450), [sym_predefined_type] = ACTIONS(3448), [anon_sym_break] = ACTIONS(3448), [anon_sym_unchecked] = ACTIONS(3448), @@ -381556,6 +381439,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3448), [anon_sym_else] = ACTIONS(3448), [anon_sym_DOT_DOT] = ACTIONS(3450), + [anon_sym_AMP] = ACTIONS(3450), + [anon_sym_CARET] = ACTIONS(3450), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3450), + [anon_sym_true] = ACTIONS(3448), + [anon_sym_false] = ACTIONS(3448), [anon_sym_from] = ACTIONS(3448), [anon_sym_into] = ACTIONS(3448), [anon_sym_join] = ACTIONS(3448), @@ -381600,16 +381492,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3450), [sym_raw_string_start] = ACTIONS(3450), }, - [1965] = { - [sym_preproc_region] = STATE(1965), - [sym_preproc_endregion] = STATE(1965), - [sym_preproc_line] = STATE(1965), - [sym_preproc_pragma] = STATE(1965), - [sym_preproc_nullable] = STATE(1965), - [sym_preproc_error] = STATE(1965), - [sym_preproc_warning] = STATE(1965), - [sym_preproc_define] = STATE(1965), - [sym_preproc_undef] = STATE(1965), + [1964] = { + [sym_preproc_region] = STATE(1964), + [sym_preproc_endregion] = STATE(1964), + [sym_preproc_line] = STATE(1964), + [sym_preproc_pragma] = STATE(1964), + [sym_preproc_nullable] = STATE(1964), + [sym_preproc_error] = STATE(1964), + [sym_preproc_warning] = STATE(1964), + [sym_preproc_define] = STATE(1964), + [sym_preproc_undef] = STATE(1964), [sym__identifier_token] = ACTIONS(3452), [anon_sym_extern] = ACTIONS(3452), [anon_sym_alias] = ACTIONS(3452), @@ -381651,21 +381543,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3452), [anon_sym_unmanaged] = ACTIONS(3452), [anon_sym_checked] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3454), [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_PLUS_PLUS] = ACTIONS(3454), - [anon_sym_DASH_DASH] = ACTIONS(3454), - [anon_sym_true] = ACTIONS(3452), - [anon_sym_false] = ACTIONS(3452), - [anon_sym_PLUS] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3452), - [anon_sym_STAR] = ACTIONS(3454), - [anon_sym_CARET] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3454), [anon_sym_this] = ACTIONS(3452), [anon_sym_scoped] = ACTIONS(3452), [anon_sym_base] = ACTIONS(3452), [anon_sym_var] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3454), [sym_predefined_type] = ACTIONS(3452), [anon_sym_break] = ACTIONS(3452), [anon_sym_unchecked] = ACTIONS(3452), @@ -381686,6 +381569,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3452), [anon_sym_else] = ACTIONS(3452), [anon_sym_DOT_DOT] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3454), + [anon_sym_CARET] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [anon_sym_true] = ACTIONS(3452), + [anon_sym_false] = ACTIONS(3452), [anon_sym_from] = ACTIONS(3452), [anon_sym_into] = ACTIONS(3452), [anon_sym_join] = ACTIONS(3452), @@ -381730,16 +381622,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3454), [sym_raw_string_start] = ACTIONS(3454), }, - [1966] = { - [sym_preproc_region] = STATE(1966), - [sym_preproc_endregion] = STATE(1966), - [sym_preproc_line] = STATE(1966), - [sym_preproc_pragma] = STATE(1966), - [sym_preproc_nullable] = STATE(1966), - [sym_preproc_error] = STATE(1966), - [sym_preproc_warning] = STATE(1966), - [sym_preproc_define] = STATE(1966), - [sym_preproc_undef] = STATE(1966), + [1965] = { + [sym_preproc_region] = STATE(1965), + [sym_preproc_endregion] = STATE(1965), + [sym_preproc_line] = STATE(1965), + [sym_preproc_pragma] = STATE(1965), + [sym_preproc_nullable] = STATE(1965), + [sym_preproc_error] = STATE(1965), + [sym_preproc_warning] = STATE(1965), + [sym_preproc_define] = STATE(1965), + [sym_preproc_undef] = STATE(1965), [sym__identifier_token] = ACTIONS(3456), [anon_sym_extern] = ACTIONS(3456), [anon_sym_alias] = ACTIONS(3456), @@ -381781,21 +381673,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3456), [anon_sym_unmanaged] = ACTIONS(3456), [anon_sym_checked] = ACTIONS(3456), - [anon_sym_BANG] = ACTIONS(3458), [anon_sym_TILDE] = ACTIONS(3458), - [anon_sym_PLUS_PLUS] = ACTIONS(3458), - [anon_sym_DASH_DASH] = ACTIONS(3458), - [anon_sym_true] = ACTIONS(3456), - [anon_sym_false] = ACTIONS(3456), - [anon_sym_PLUS] = ACTIONS(3456), - [anon_sym_DASH] = ACTIONS(3456), - [anon_sym_STAR] = ACTIONS(3458), - [anon_sym_CARET] = ACTIONS(3458), - [anon_sym_AMP] = ACTIONS(3458), [anon_sym_this] = ACTIONS(3456), [anon_sym_scoped] = ACTIONS(3456), [anon_sym_base] = ACTIONS(3456), [anon_sym_var] = ACTIONS(3456), + [anon_sym_STAR] = ACTIONS(3458), [sym_predefined_type] = ACTIONS(3456), [anon_sym_break] = ACTIONS(3456), [anon_sym_unchecked] = ACTIONS(3456), @@ -381816,6 +381699,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3456), [anon_sym_else] = ACTIONS(3456), [anon_sym_DOT_DOT] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3456), + [anon_sym_DASH] = ACTIONS(3456), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_true] = ACTIONS(3456), + [anon_sym_false] = ACTIONS(3456), [anon_sym_from] = ACTIONS(3456), [anon_sym_into] = ACTIONS(3456), [anon_sym_join] = ACTIONS(3456), @@ -381860,16 +381752,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3458), [sym_raw_string_start] = ACTIONS(3458), }, - [1967] = { - [sym_preproc_region] = STATE(1967), - [sym_preproc_endregion] = STATE(1967), - [sym_preproc_line] = STATE(1967), - [sym_preproc_pragma] = STATE(1967), - [sym_preproc_nullable] = STATE(1967), - [sym_preproc_error] = STATE(1967), - [sym_preproc_warning] = STATE(1967), - [sym_preproc_define] = STATE(1967), - [sym_preproc_undef] = STATE(1967), + [1966] = { + [sym_preproc_region] = STATE(1966), + [sym_preproc_endregion] = STATE(1966), + [sym_preproc_line] = STATE(1966), + [sym_preproc_pragma] = STATE(1966), + [sym_preproc_nullable] = STATE(1966), + [sym_preproc_error] = STATE(1966), + [sym_preproc_warning] = STATE(1966), + [sym_preproc_define] = STATE(1966), + [sym_preproc_undef] = STATE(1966), [sym__identifier_token] = ACTIONS(3460), [anon_sym_extern] = ACTIONS(3460), [anon_sym_alias] = ACTIONS(3460), @@ -381911,21 +381803,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3460), [anon_sym_unmanaged] = ACTIONS(3460), [anon_sym_checked] = ACTIONS(3460), - [anon_sym_BANG] = ACTIONS(3462), [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_true] = ACTIONS(3460), - [anon_sym_false] = ACTIONS(3460), - [anon_sym_PLUS] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3460), - [anon_sym_STAR] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3462), [anon_sym_this] = ACTIONS(3460), [anon_sym_scoped] = ACTIONS(3460), [anon_sym_base] = ACTIONS(3460), [anon_sym_var] = ACTIONS(3460), + [anon_sym_STAR] = ACTIONS(3462), [sym_predefined_type] = ACTIONS(3460), [anon_sym_break] = ACTIONS(3460), [anon_sym_unchecked] = ACTIONS(3460), @@ -381946,6 +381829,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3460), [anon_sym_else] = ACTIONS(3460), [anon_sym_DOT_DOT] = ACTIONS(3462), + [anon_sym_AMP] = ACTIONS(3462), + [anon_sym_CARET] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3460), + [anon_sym_DASH] = ACTIONS(3460), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_true] = ACTIONS(3460), + [anon_sym_false] = ACTIONS(3460), [anon_sym_from] = ACTIONS(3460), [anon_sym_into] = ACTIONS(3460), [anon_sym_join] = ACTIONS(3460), @@ -381990,16 +381882,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3462), [sym_raw_string_start] = ACTIONS(3462), }, - [1968] = { - [sym_preproc_region] = STATE(1968), - [sym_preproc_endregion] = STATE(1968), - [sym_preproc_line] = STATE(1968), - [sym_preproc_pragma] = STATE(1968), - [sym_preproc_nullable] = STATE(1968), - [sym_preproc_error] = STATE(1968), - [sym_preproc_warning] = STATE(1968), - [sym_preproc_define] = STATE(1968), - [sym_preproc_undef] = STATE(1968), + [1967] = { + [sym_preproc_region] = STATE(1967), + [sym_preproc_endregion] = STATE(1967), + [sym_preproc_line] = STATE(1967), + [sym_preproc_pragma] = STATE(1967), + [sym_preproc_nullable] = STATE(1967), + [sym_preproc_error] = STATE(1967), + [sym_preproc_warning] = STATE(1967), + [sym_preproc_define] = STATE(1967), + [sym_preproc_undef] = STATE(1967), [sym__identifier_token] = ACTIONS(3464), [anon_sym_extern] = ACTIONS(3464), [anon_sym_alias] = ACTIONS(3464), @@ -382041,21 +381933,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3464), [anon_sym_unmanaged] = ACTIONS(3464), [anon_sym_checked] = ACTIONS(3464), - [anon_sym_BANG] = ACTIONS(3466), [anon_sym_TILDE] = ACTIONS(3466), - [anon_sym_PLUS_PLUS] = ACTIONS(3466), - [anon_sym_DASH_DASH] = ACTIONS(3466), - [anon_sym_true] = ACTIONS(3464), - [anon_sym_false] = ACTIONS(3464), - [anon_sym_PLUS] = ACTIONS(3464), - [anon_sym_DASH] = ACTIONS(3464), - [anon_sym_STAR] = ACTIONS(3466), - [anon_sym_CARET] = ACTIONS(3466), - [anon_sym_AMP] = ACTIONS(3466), [anon_sym_this] = ACTIONS(3464), [anon_sym_scoped] = ACTIONS(3464), [anon_sym_base] = ACTIONS(3464), [anon_sym_var] = ACTIONS(3464), + [anon_sym_STAR] = ACTIONS(3466), [sym_predefined_type] = ACTIONS(3464), [anon_sym_break] = ACTIONS(3464), [anon_sym_unchecked] = ACTIONS(3464), @@ -382076,6 +381959,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3464), [anon_sym_else] = ACTIONS(3464), [anon_sym_DOT_DOT] = ACTIONS(3466), + [anon_sym_AMP] = ACTIONS(3466), + [anon_sym_CARET] = ACTIONS(3466), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_true] = ACTIONS(3464), + [anon_sym_false] = ACTIONS(3464), [anon_sym_from] = ACTIONS(3464), [anon_sym_into] = ACTIONS(3464), [anon_sym_join] = ACTIONS(3464), @@ -382120,16 +382012,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3466), [sym_raw_string_start] = ACTIONS(3466), }, - [1969] = { - [sym_preproc_region] = STATE(1969), - [sym_preproc_endregion] = STATE(1969), - [sym_preproc_line] = STATE(1969), - [sym_preproc_pragma] = STATE(1969), - [sym_preproc_nullable] = STATE(1969), - [sym_preproc_error] = STATE(1969), - [sym_preproc_warning] = STATE(1969), - [sym_preproc_define] = STATE(1969), - [sym_preproc_undef] = STATE(1969), + [1968] = { + [sym_preproc_region] = STATE(1968), + [sym_preproc_endregion] = STATE(1968), + [sym_preproc_line] = STATE(1968), + [sym_preproc_pragma] = STATE(1968), + [sym_preproc_nullable] = STATE(1968), + [sym_preproc_error] = STATE(1968), + [sym_preproc_warning] = STATE(1968), + [sym_preproc_define] = STATE(1968), + [sym_preproc_undef] = STATE(1968), [sym__identifier_token] = ACTIONS(3468), [anon_sym_extern] = ACTIONS(3468), [anon_sym_alias] = ACTIONS(3468), @@ -382171,21 +382063,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3468), [anon_sym_unmanaged] = ACTIONS(3468), [anon_sym_checked] = ACTIONS(3468), - [anon_sym_BANG] = ACTIONS(3470), [anon_sym_TILDE] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_true] = ACTIONS(3468), - [anon_sym_false] = ACTIONS(3468), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_STAR] = ACTIONS(3470), - [anon_sym_CARET] = ACTIONS(3470), - [anon_sym_AMP] = ACTIONS(3470), [anon_sym_this] = ACTIONS(3468), [anon_sym_scoped] = ACTIONS(3468), [anon_sym_base] = ACTIONS(3468), [anon_sym_var] = ACTIONS(3468), + [anon_sym_STAR] = ACTIONS(3470), [sym_predefined_type] = ACTIONS(3468), [anon_sym_break] = ACTIONS(3468), [anon_sym_unchecked] = ACTIONS(3468), @@ -382206,6 +382089,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3468), [anon_sym_else] = ACTIONS(3468), [anon_sym_DOT_DOT] = ACTIONS(3470), + [anon_sym_AMP] = ACTIONS(3470), + [anon_sym_CARET] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [anon_sym_true] = ACTIONS(3468), + [anon_sym_false] = ACTIONS(3468), [anon_sym_from] = ACTIONS(3468), [anon_sym_into] = ACTIONS(3468), [anon_sym_join] = ACTIONS(3468), @@ -382250,6 +382142,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3470), [sym_raw_string_start] = ACTIONS(3470), }, + [1969] = { + [sym_preproc_region] = STATE(1969), + [sym_preproc_endregion] = STATE(1969), + [sym_preproc_line] = STATE(1969), + [sym_preproc_pragma] = STATE(1969), + [sym_preproc_nullable] = STATE(1969), + [sym_preproc_error] = STATE(1969), + [sym_preproc_warning] = STATE(1969), + [sym_preproc_define] = STATE(1969), + [sym_preproc_undef] = STATE(1969), + [ts_builtin_sym_end] = ACTIONS(3376), + [sym__identifier_token] = ACTIONS(3374), + [anon_sym_extern] = ACTIONS(3374), + [anon_sym_alias] = ACTIONS(3374), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_global] = ACTIONS(3374), + [anon_sym_using] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(3374), + [anon_sym_static] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_namespace] = ACTIONS(3374), + [anon_sym_class] = ACTIONS(3374), + [anon_sym_ref] = ACTIONS(3374), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3376), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_delegate] = ACTIONS(3374), + [anon_sym_record] = ACTIONS(3374), + [anon_sym_public] = ACTIONS(3374), + [anon_sym_private] = ACTIONS(3374), + [anon_sym_readonly] = ACTIONS(3374), + [anon_sym_abstract] = ACTIONS(3374), + [anon_sym_async] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_file] = ACTIONS(3374), + [anon_sym_fixed] = ACTIONS(3374), + [anon_sym_internal] = ACTIONS(3374), + [anon_sym_new] = ACTIONS(3374), + [anon_sym_override] = ACTIONS(3374), + [anon_sym_partial] = ACTIONS(3374), + [anon_sym_protected] = ACTIONS(3374), + [anon_sym_required] = ACTIONS(3374), + [anon_sym_sealed] = ACTIONS(3374), + [anon_sym_virtual] = ACTIONS(3374), + [anon_sym_volatile] = ACTIONS(3374), + [anon_sym_where] = ACTIONS(3374), + [anon_sym_notnull] = ACTIONS(3374), + [anon_sym_unmanaged] = ACTIONS(3374), + [anon_sym_checked] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_this] = ACTIONS(3374), + [anon_sym_scoped] = ACTIONS(3374), + [anon_sym_base] = ACTIONS(3374), + [anon_sym_var] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3376), + [sym_predefined_type] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_unchecked] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_do] = ACTIONS(3374), + [anon_sym_while] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_yield] = ACTIONS(3374), + [anon_sym_switch] = ACTIONS(3374), + [anon_sym_default] = ACTIONS(3374), + [anon_sym_throw] = ACTIONS(3374), + [anon_sym_try] = ACTIONS(3374), + [anon_sym_catch] = ACTIONS(3374), + [anon_sym_when] = ACTIONS(3374), + [anon_sym_finally] = ACTIONS(3374), + [anon_sym_await] = ACTIONS(3374), + [anon_sym_foreach] = ACTIONS(3374), + [anon_sym_goto] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_else] = ACTIONS(3374), + [anon_sym_DOT_DOT] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3376), + [anon_sym_PLUS_PLUS] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3376), + [anon_sym_true] = ACTIONS(3374), + [anon_sym_false] = ACTIONS(3374), + [anon_sym_from] = ACTIONS(3374), + [anon_sym_into] = ACTIONS(3374), + [anon_sym_join] = ACTIONS(3374), + [anon_sym_on] = ACTIONS(3374), + [anon_sym_equals] = ACTIONS(3374), + [anon_sym_let] = ACTIONS(3374), + [anon_sym_orderby] = ACTIONS(3374), + [anon_sym_ascending] = ACTIONS(3374), + [anon_sym_descending] = ACTIONS(3374), + [anon_sym_group] = ACTIONS(3374), + [anon_sym_by] = ACTIONS(3374), + [anon_sym_select] = ACTIONS(3374), + [anon_sym_stackalloc] = ACTIONS(3374), + [anon_sym_sizeof] = ACTIONS(3374), + [anon_sym_typeof] = ACTIONS(3374), + [anon_sym___makeref] = ACTIONS(3374), + [anon_sym___reftype] = ACTIONS(3374), + [anon_sym___refvalue] = ACTIONS(3374), + [sym_null_literal] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3376), + [sym_integer_literal] = ACTIONS(3374), + [sym_real_literal] = ACTIONS(3376), + [anon_sym_DQUOTE] = ACTIONS(3376), + [sym_verbatim_string_literal] = ACTIONS(3376), + [sym_grit_metavariable] = ACTIONS(3376), + [aux_sym_preproc_if_token1] = ACTIONS(3376), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3376), + [sym_interpolation_verbatim_start] = ACTIONS(3376), + [sym_interpolation_raw_start] = ACTIONS(3376), + [sym_raw_string_start] = ACTIONS(3376), + }, [1970] = { [sym_preproc_region] = STATE(1970), [sym_preproc_endregion] = STATE(1970), @@ -382301,21 +382323,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3472), [anon_sym_unmanaged] = ACTIONS(3472), [anon_sym_checked] = ACTIONS(3472), - [anon_sym_BANG] = ACTIONS(3474), [anon_sym_TILDE] = ACTIONS(3474), - [anon_sym_PLUS_PLUS] = ACTIONS(3474), - [anon_sym_DASH_DASH] = ACTIONS(3474), - [anon_sym_true] = ACTIONS(3472), - [anon_sym_false] = ACTIONS(3472), - [anon_sym_PLUS] = ACTIONS(3472), - [anon_sym_DASH] = ACTIONS(3472), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_CARET] = ACTIONS(3474), - [anon_sym_AMP] = ACTIONS(3474), [anon_sym_this] = ACTIONS(3472), [anon_sym_scoped] = ACTIONS(3472), [anon_sym_base] = ACTIONS(3472), [anon_sym_var] = ACTIONS(3472), + [anon_sym_STAR] = ACTIONS(3474), [sym_predefined_type] = ACTIONS(3472), [anon_sym_break] = ACTIONS(3472), [anon_sym_unchecked] = ACTIONS(3472), @@ -382336,6 +382349,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3472), [anon_sym_else] = ACTIONS(3472), [anon_sym_DOT_DOT] = ACTIONS(3474), + [anon_sym_AMP] = ACTIONS(3474), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_PLUS] = ACTIONS(3472), + [anon_sym_DASH] = ACTIONS(3472), + [anon_sym_BANG] = ACTIONS(3474), + [anon_sym_PLUS_PLUS] = ACTIONS(3474), + [anon_sym_DASH_DASH] = ACTIONS(3474), + [anon_sym_true] = ACTIONS(3472), + [anon_sym_false] = ACTIONS(3472), [anon_sym_from] = ACTIONS(3472), [anon_sym_into] = ACTIONS(3472), [anon_sym_join] = ACTIONS(3472), @@ -382431,21 +382453,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3476), [anon_sym_unmanaged] = ACTIONS(3476), [anon_sym_checked] = ACTIONS(3476), - [anon_sym_BANG] = ACTIONS(3478), [anon_sym_TILDE] = ACTIONS(3478), - [anon_sym_PLUS_PLUS] = ACTIONS(3478), - [anon_sym_DASH_DASH] = ACTIONS(3478), - [anon_sym_true] = ACTIONS(3476), - [anon_sym_false] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_STAR] = ACTIONS(3478), - [anon_sym_CARET] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3478), [anon_sym_this] = ACTIONS(3476), [anon_sym_scoped] = ACTIONS(3476), [anon_sym_base] = ACTIONS(3476), [anon_sym_var] = ACTIONS(3476), + [anon_sym_STAR] = ACTIONS(3478), [sym_predefined_type] = ACTIONS(3476), [anon_sym_break] = ACTIONS(3476), [anon_sym_unchecked] = ACTIONS(3476), @@ -382466,6 +382479,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3476), [anon_sym_else] = ACTIONS(3476), [anon_sym_DOT_DOT] = ACTIONS(3478), + [anon_sym_AMP] = ACTIONS(3478), + [anon_sym_CARET] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [anon_sym_true] = ACTIONS(3476), + [anon_sym_false] = ACTIONS(3476), [anon_sym_from] = ACTIONS(3476), [anon_sym_into] = ACTIONS(3476), [anon_sym_join] = ACTIONS(3476), @@ -382561,21 +382583,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3480), [anon_sym_unmanaged] = ACTIONS(3480), [anon_sym_checked] = ACTIONS(3480), - [anon_sym_BANG] = ACTIONS(3482), [anon_sym_TILDE] = ACTIONS(3482), - [anon_sym_PLUS_PLUS] = ACTIONS(3482), - [anon_sym_DASH_DASH] = ACTIONS(3482), - [anon_sym_true] = ACTIONS(3480), - [anon_sym_false] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_STAR] = ACTIONS(3482), - [anon_sym_CARET] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3482), [anon_sym_this] = ACTIONS(3480), [anon_sym_scoped] = ACTIONS(3480), [anon_sym_base] = ACTIONS(3480), [anon_sym_var] = ACTIONS(3480), + [anon_sym_STAR] = ACTIONS(3482), [sym_predefined_type] = ACTIONS(3480), [anon_sym_break] = ACTIONS(3480), [anon_sym_unchecked] = ACTIONS(3480), @@ -382596,6 +382609,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3480), [anon_sym_else] = ACTIONS(3480), [anon_sym_DOT_DOT] = ACTIONS(3482), + [anon_sym_AMP] = ACTIONS(3482), + [anon_sym_CARET] = ACTIONS(3482), + [anon_sym_PLUS] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_BANG] = ACTIONS(3482), + [anon_sym_PLUS_PLUS] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(3482), + [anon_sym_true] = ACTIONS(3480), + [anon_sym_false] = ACTIONS(3480), [anon_sym_from] = ACTIONS(3480), [anon_sym_into] = ACTIONS(3480), [anon_sym_join] = ACTIONS(3480), @@ -382691,21 +382713,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3484), [anon_sym_unmanaged] = ACTIONS(3484), [anon_sym_checked] = ACTIONS(3484), - [anon_sym_BANG] = ACTIONS(3486), [anon_sym_TILDE] = ACTIONS(3486), - [anon_sym_PLUS_PLUS] = ACTIONS(3486), - [anon_sym_DASH_DASH] = ACTIONS(3486), - [anon_sym_true] = ACTIONS(3484), - [anon_sym_false] = ACTIONS(3484), - [anon_sym_PLUS] = ACTIONS(3484), - [anon_sym_DASH] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3486), - [anon_sym_CARET] = ACTIONS(3486), - [anon_sym_AMP] = ACTIONS(3486), [anon_sym_this] = ACTIONS(3484), [anon_sym_scoped] = ACTIONS(3484), [anon_sym_base] = ACTIONS(3484), [anon_sym_var] = ACTIONS(3484), + [anon_sym_STAR] = ACTIONS(3486), [sym_predefined_type] = ACTIONS(3484), [anon_sym_break] = ACTIONS(3484), [anon_sym_unchecked] = ACTIONS(3484), @@ -382726,6 +382739,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3484), [anon_sym_else] = ACTIONS(3484), [anon_sym_DOT_DOT] = ACTIONS(3486), + [anon_sym_AMP] = ACTIONS(3486), + [anon_sym_CARET] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3484), + [anon_sym_DASH] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3486), + [anon_sym_PLUS_PLUS] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3486), + [anon_sym_true] = ACTIONS(3484), + [anon_sym_false] = ACTIONS(3484), [anon_sym_from] = ACTIONS(3484), [anon_sym_into] = ACTIONS(3484), [anon_sym_join] = ACTIONS(3484), @@ -382821,21 +382843,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3488), [anon_sym_unmanaged] = ACTIONS(3488), [anon_sym_checked] = ACTIONS(3488), - [anon_sym_BANG] = ACTIONS(3490), [anon_sym_TILDE] = ACTIONS(3490), - [anon_sym_PLUS_PLUS] = ACTIONS(3490), - [anon_sym_DASH_DASH] = ACTIONS(3490), - [anon_sym_true] = ACTIONS(3488), - [anon_sym_false] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_CARET] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3490), [anon_sym_this] = ACTIONS(3488), [anon_sym_scoped] = ACTIONS(3488), [anon_sym_base] = ACTIONS(3488), [anon_sym_var] = ACTIONS(3488), + [anon_sym_STAR] = ACTIONS(3490), [sym_predefined_type] = ACTIONS(3488), [anon_sym_break] = ACTIONS(3488), [anon_sym_unchecked] = ACTIONS(3488), @@ -382856,6 +382869,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3488), [anon_sym_else] = ACTIONS(3488), [anon_sym_DOT_DOT] = ACTIONS(3490), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_CARET] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3490), + [anon_sym_PLUS_PLUS] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3490), + [anon_sym_true] = ACTIONS(3488), + [anon_sym_false] = ACTIONS(3488), [anon_sym_from] = ACTIONS(3488), [anon_sym_into] = ACTIONS(3488), [anon_sym_join] = ACTIONS(3488), @@ -382951,21 +382973,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3492), [anon_sym_unmanaged] = ACTIONS(3492), [anon_sym_checked] = ACTIONS(3492), - [anon_sym_BANG] = ACTIONS(3494), [anon_sym_TILDE] = ACTIONS(3494), - [anon_sym_PLUS_PLUS] = ACTIONS(3494), - [anon_sym_DASH_DASH] = ACTIONS(3494), - [anon_sym_true] = ACTIONS(3492), - [anon_sym_false] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_STAR] = ACTIONS(3494), - [anon_sym_CARET] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3494), [anon_sym_this] = ACTIONS(3492), [anon_sym_scoped] = ACTIONS(3492), [anon_sym_base] = ACTIONS(3492), [anon_sym_var] = ACTIONS(3492), + [anon_sym_STAR] = ACTIONS(3494), [sym_predefined_type] = ACTIONS(3492), [anon_sym_break] = ACTIONS(3492), [anon_sym_unchecked] = ACTIONS(3492), @@ -382986,6 +382999,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3492), [anon_sym_else] = ACTIONS(3492), [anon_sym_DOT_DOT] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3494), + [anon_sym_CARET] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_PLUS_PLUS] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3494), + [anon_sym_true] = ACTIONS(3492), + [anon_sym_false] = ACTIONS(3492), [anon_sym_from] = ACTIONS(3492), [anon_sym_into] = ACTIONS(3492), [anon_sym_join] = ACTIONS(3492), @@ -383081,21 +383103,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3496), [anon_sym_unmanaged] = ACTIONS(3496), [anon_sym_checked] = ACTIONS(3496), - [anon_sym_BANG] = ACTIONS(3498), [anon_sym_TILDE] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_true] = ACTIONS(3496), - [anon_sym_false] = ACTIONS(3496), - [anon_sym_PLUS] = ACTIONS(3496), - [anon_sym_DASH] = ACTIONS(3496), - [anon_sym_STAR] = ACTIONS(3498), - [anon_sym_CARET] = ACTIONS(3498), - [anon_sym_AMP] = ACTIONS(3498), [anon_sym_this] = ACTIONS(3496), [anon_sym_scoped] = ACTIONS(3496), [anon_sym_base] = ACTIONS(3496), [anon_sym_var] = ACTIONS(3496), + [anon_sym_STAR] = ACTIONS(3498), [sym_predefined_type] = ACTIONS(3496), [anon_sym_break] = ACTIONS(3496), [anon_sym_unchecked] = ACTIONS(3496), @@ -383116,6 +383129,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3496), [anon_sym_else] = ACTIONS(3496), [anon_sym_DOT_DOT] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3498), + [anon_sym_CARET] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_true] = ACTIONS(3496), + [anon_sym_false] = ACTIONS(3496), [anon_sym_from] = ACTIONS(3496), [anon_sym_into] = ACTIONS(3496), [anon_sym_join] = ACTIONS(3496), @@ -383211,21 +383233,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3500), [anon_sym_unmanaged] = ACTIONS(3500), [anon_sym_checked] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), [anon_sym_TILDE] = ACTIONS(3502), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3502), - [anon_sym_true] = ACTIONS(3500), - [anon_sym_false] = ACTIONS(3500), - [anon_sym_PLUS] = ACTIONS(3500), - [anon_sym_DASH] = ACTIONS(3500), - [anon_sym_STAR] = ACTIONS(3502), - [anon_sym_CARET] = ACTIONS(3502), - [anon_sym_AMP] = ACTIONS(3502), [anon_sym_this] = ACTIONS(3500), [anon_sym_scoped] = ACTIONS(3500), [anon_sym_base] = ACTIONS(3500), [anon_sym_var] = ACTIONS(3500), + [anon_sym_STAR] = ACTIONS(3502), [sym_predefined_type] = ACTIONS(3500), [anon_sym_break] = ACTIONS(3500), [anon_sym_unchecked] = ACTIONS(3500), @@ -383246,6 +383259,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3500), [anon_sym_else] = ACTIONS(3500), [anon_sym_DOT_DOT] = ACTIONS(3502), + [anon_sym_AMP] = ACTIONS(3502), + [anon_sym_CARET] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3502), + [anon_sym_true] = ACTIONS(3500), + [anon_sym_false] = ACTIONS(3500), [anon_sym_from] = ACTIONS(3500), [anon_sym_into] = ACTIONS(3500), [anon_sym_join] = ACTIONS(3500), @@ -383341,21 +383363,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3504), [anon_sym_unmanaged] = ACTIONS(3504), [anon_sym_checked] = ACTIONS(3504), - [anon_sym_BANG] = ACTIONS(3506), [anon_sym_TILDE] = ACTIONS(3506), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3506), - [anon_sym_true] = ACTIONS(3504), - [anon_sym_false] = ACTIONS(3504), - [anon_sym_PLUS] = ACTIONS(3504), - [anon_sym_DASH] = ACTIONS(3504), - [anon_sym_STAR] = ACTIONS(3506), - [anon_sym_CARET] = ACTIONS(3506), - [anon_sym_AMP] = ACTIONS(3506), [anon_sym_this] = ACTIONS(3504), [anon_sym_scoped] = ACTIONS(3504), [anon_sym_base] = ACTIONS(3504), [anon_sym_var] = ACTIONS(3504), + [anon_sym_STAR] = ACTIONS(3506), [sym_predefined_type] = ACTIONS(3504), [anon_sym_break] = ACTIONS(3504), [anon_sym_unchecked] = ACTIONS(3504), @@ -383376,6 +383389,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3504), [anon_sym_else] = ACTIONS(3504), [anon_sym_DOT_DOT] = ACTIONS(3506), + [anon_sym_AMP] = ACTIONS(3506), + [anon_sym_CARET] = ACTIONS(3506), + [anon_sym_PLUS] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3504), + [anon_sym_BANG] = ACTIONS(3506), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3506), + [anon_sym_true] = ACTIONS(3504), + [anon_sym_false] = ACTIONS(3504), [anon_sym_from] = ACTIONS(3504), [anon_sym_into] = ACTIONS(3504), [anon_sym_join] = ACTIONS(3504), @@ -383430,136 +383452,6 @@ 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(3384), - [sym__identifier_token] = ACTIONS(3382), - [anon_sym_extern] = ACTIONS(3382), - [anon_sym_alias] = ACTIONS(3382), - [anon_sym_SEMI] = ACTIONS(3384), - [anon_sym_global] = ACTIONS(3382), - [anon_sym_using] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(3382), - [anon_sym_static] = ACTIONS(3382), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_LPAREN] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3382), - [anon_sym_namespace] = ACTIONS(3382), - [anon_sym_class] = ACTIONS(3382), - [anon_sym_ref] = ACTIONS(3382), - [anon_sym_struct] = ACTIONS(3382), - [anon_sym_enum] = ACTIONS(3382), - [anon_sym_LBRACE] = ACTIONS(3384), - [anon_sym_interface] = ACTIONS(3382), - [anon_sym_delegate] = ACTIONS(3382), - [anon_sym_record] = ACTIONS(3382), - [anon_sym_public] = ACTIONS(3382), - [anon_sym_private] = ACTIONS(3382), - [anon_sym_readonly] = ACTIONS(3382), - [anon_sym_abstract] = ACTIONS(3382), - [anon_sym_async] = ACTIONS(3382), - [anon_sym_const] = ACTIONS(3382), - [anon_sym_file] = ACTIONS(3382), - [anon_sym_fixed] = ACTIONS(3382), - [anon_sym_internal] = ACTIONS(3382), - [anon_sym_new] = ACTIONS(3382), - [anon_sym_override] = ACTIONS(3382), - [anon_sym_partial] = ACTIONS(3382), - [anon_sym_protected] = ACTIONS(3382), - [anon_sym_required] = ACTIONS(3382), - [anon_sym_sealed] = ACTIONS(3382), - [anon_sym_virtual] = ACTIONS(3382), - [anon_sym_volatile] = ACTIONS(3382), - [anon_sym_where] = ACTIONS(3382), - [anon_sym_notnull] = ACTIONS(3382), - [anon_sym_unmanaged] = ACTIONS(3382), - [anon_sym_checked] = ACTIONS(3382), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_TILDE] = ACTIONS(3384), - [anon_sym_PLUS_PLUS] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3382), - [anon_sym_false] = ACTIONS(3382), - [anon_sym_PLUS] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3382), - [anon_sym_STAR] = ACTIONS(3384), - [anon_sym_CARET] = ACTIONS(3384), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym_this] = ACTIONS(3382), - [anon_sym_scoped] = ACTIONS(3382), - [anon_sym_base] = ACTIONS(3382), - [anon_sym_var] = ACTIONS(3382), - [sym_predefined_type] = ACTIONS(3382), - [anon_sym_break] = ACTIONS(3382), - [anon_sym_unchecked] = ACTIONS(3382), - [anon_sym_continue] = ACTIONS(3382), - [anon_sym_do] = ACTIONS(3382), - [anon_sym_while] = ACTIONS(3382), - [anon_sym_for] = ACTIONS(3382), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_yield] = ACTIONS(3382), - [anon_sym_switch] = ACTIONS(3382), - [anon_sym_default] = ACTIONS(3382), - [anon_sym_throw] = ACTIONS(3382), - [anon_sym_try] = ACTIONS(3382), - [anon_sym_catch] = ACTIONS(3382), - [anon_sym_when] = ACTIONS(3382), - [anon_sym_finally] = ACTIONS(3382), - [anon_sym_await] = ACTIONS(3382), - [anon_sym_foreach] = ACTIONS(3382), - [anon_sym_goto] = ACTIONS(3382), - [anon_sym_if] = ACTIONS(3382), - [anon_sym_else] = ACTIONS(3382), - [anon_sym_DOT_DOT] = ACTIONS(3384), - [anon_sym_from] = ACTIONS(3382), - [anon_sym_into] = ACTIONS(3382), - [anon_sym_join] = ACTIONS(3382), - [anon_sym_on] = ACTIONS(3382), - [anon_sym_equals] = ACTIONS(3382), - [anon_sym_let] = ACTIONS(3382), - [anon_sym_orderby] = ACTIONS(3382), - [anon_sym_ascending] = ACTIONS(3382), - [anon_sym_descending] = ACTIONS(3382), - [anon_sym_group] = ACTIONS(3382), - [anon_sym_by] = ACTIONS(3382), - [anon_sym_select] = ACTIONS(3382), - [anon_sym_stackalloc] = ACTIONS(3382), - [anon_sym_sizeof] = ACTIONS(3382), - [anon_sym_typeof] = ACTIONS(3382), - [anon_sym___makeref] = ACTIONS(3382), - [anon_sym___reftype] = ACTIONS(3382), - [anon_sym___refvalue] = ACTIONS(3382), - [sym_null_literal] = ACTIONS(3382), - [anon_sym_SQUOTE] = ACTIONS(3384), - [sym_integer_literal] = ACTIONS(3382), - [sym_real_literal] = ACTIONS(3384), - [anon_sym_DQUOTE] = ACTIONS(3384), - [sym_verbatim_string_literal] = ACTIONS(3384), - [sym_grit_metavariable] = ACTIONS(3384), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3384), - [sym_interpolation_verbatim_start] = ACTIONS(3384), - [sym_interpolation_raw_start] = ACTIONS(3384), - [sym_raw_string_start] = ACTIONS(3384), - }, - [1980] = { - [sym_preproc_region] = STATE(1980), - [sym_preproc_endregion] = STATE(1980), - [sym_preproc_line] = STATE(1980), - [sym_preproc_pragma] = STATE(1980), - [sym_preproc_nullable] = STATE(1980), - [sym_preproc_error] = STATE(1980), - [sym_preproc_warning] = STATE(1980), - [sym_preproc_define] = STATE(1980), - [sym_preproc_undef] = STATE(1980), [sym__identifier_token] = ACTIONS(3508), [anon_sym_extern] = ACTIONS(3508), [anon_sym_alias] = ACTIONS(3508), @@ -383601,21 +383493,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3508), [anon_sym_unmanaged] = ACTIONS(3508), [anon_sym_checked] = ACTIONS(3508), - [anon_sym_BANG] = ACTIONS(3510), [anon_sym_TILDE] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_true] = ACTIONS(3508), - [anon_sym_false] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_STAR] = ACTIONS(3510), - [anon_sym_CARET] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3510), [anon_sym_this] = ACTIONS(3508), [anon_sym_scoped] = ACTIONS(3508), [anon_sym_base] = ACTIONS(3508), [anon_sym_var] = ACTIONS(3508), + [anon_sym_STAR] = ACTIONS(3510), [sym_predefined_type] = ACTIONS(3508), [anon_sym_break] = ACTIONS(3508), [anon_sym_unchecked] = ACTIONS(3508), @@ -383636,6 +383519,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3508), [anon_sym_else] = ACTIONS(3508), [anon_sym_DOT_DOT] = ACTIONS(3510), + [anon_sym_AMP] = ACTIONS(3510), + [anon_sym_CARET] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3508), + [anon_sym_DASH] = ACTIONS(3508), + [anon_sym_BANG] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_true] = ACTIONS(3508), + [anon_sym_false] = ACTIONS(3508), [anon_sym_from] = ACTIONS(3508), [anon_sym_into] = ACTIONS(3508), [anon_sym_join] = ACTIONS(3508), @@ -383680,16 +383572,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3510), [sym_raw_string_start] = ACTIONS(3510), }, - [1981] = { - [sym_preproc_region] = STATE(1981), - [sym_preproc_endregion] = STATE(1981), - [sym_preproc_line] = STATE(1981), - [sym_preproc_pragma] = STATE(1981), - [sym_preproc_nullable] = STATE(1981), - [sym_preproc_error] = STATE(1981), - [sym_preproc_warning] = STATE(1981), - [sym_preproc_define] = STATE(1981), - [sym_preproc_undef] = STATE(1981), + [1980] = { + [sym_preproc_region] = STATE(1980), + [sym_preproc_endregion] = STATE(1980), + [sym_preproc_line] = STATE(1980), + [sym_preproc_pragma] = STATE(1980), + [sym_preproc_nullable] = STATE(1980), + [sym_preproc_error] = STATE(1980), + [sym_preproc_warning] = STATE(1980), + [sym_preproc_define] = STATE(1980), + [sym_preproc_undef] = STATE(1980), [sym__identifier_token] = ACTIONS(3512), [anon_sym_extern] = ACTIONS(3512), [anon_sym_alias] = ACTIONS(3512), @@ -383731,21 +383623,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3512), [anon_sym_unmanaged] = ACTIONS(3512), [anon_sym_checked] = ACTIONS(3512), - [anon_sym_BANG] = ACTIONS(3514), [anon_sym_TILDE] = ACTIONS(3514), - [anon_sym_PLUS_PLUS] = ACTIONS(3514), - [anon_sym_DASH_DASH] = ACTIONS(3514), - [anon_sym_true] = ACTIONS(3512), - [anon_sym_false] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_STAR] = ACTIONS(3514), - [anon_sym_CARET] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3514), [anon_sym_this] = ACTIONS(3512), [anon_sym_scoped] = ACTIONS(3512), [anon_sym_base] = ACTIONS(3512), [anon_sym_var] = ACTIONS(3512), + [anon_sym_STAR] = ACTIONS(3514), [sym_predefined_type] = ACTIONS(3512), [anon_sym_break] = ACTIONS(3512), [anon_sym_unchecked] = ACTIONS(3512), @@ -383766,6 +383649,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3512), [anon_sym_else] = ACTIONS(3512), [anon_sym_DOT_DOT] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_CARET] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3514), + [anon_sym_true] = ACTIONS(3512), + [anon_sym_false] = ACTIONS(3512), [anon_sym_from] = ACTIONS(3512), [anon_sym_into] = ACTIONS(3512), [anon_sym_join] = ACTIONS(3512), @@ -383810,121 +383702,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3514), [sym_raw_string_start] = ACTIONS(3514), }, - [1982] = { - [sym_preproc_region] = STATE(1982), - [sym_preproc_endregion] = STATE(1982), - [sym_preproc_line] = STATE(1982), - [sym_preproc_pragma] = STATE(1982), - [sym_preproc_nullable] = STATE(1982), - [sym_preproc_error] = STATE(1982), - [sym_preproc_warning] = STATE(1982), - [sym_preproc_define] = STATE(1982), - [sym_preproc_undef] = STATE(1982), - [ts_builtin_sym_end] = ACTIONS(3380), - [sym__identifier_token] = ACTIONS(3378), - [anon_sym_extern] = ACTIONS(3378), - [anon_sym_alias] = ACTIONS(3378), - [anon_sym_SEMI] = ACTIONS(3380), - [anon_sym_global] = ACTIONS(3378), - [anon_sym_using] = ACTIONS(3378), - [anon_sym_unsafe] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(3378), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_LPAREN] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3378), - [anon_sym_namespace] = ACTIONS(3378), - [anon_sym_class] = ACTIONS(3378), - [anon_sym_ref] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3378), - [anon_sym_enum] = ACTIONS(3378), - [anon_sym_LBRACE] = ACTIONS(3380), - [anon_sym_interface] = ACTIONS(3378), - [anon_sym_delegate] = ACTIONS(3378), - [anon_sym_record] = ACTIONS(3378), - [anon_sym_public] = ACTIONS(3378), - [anon_sym_private] = ACTIONS(3378), - [anon_sym_readonly] = ACTIONS(3378), - [anon_sym_abstract] = ACTIONS(3378), - [anon_sym_async] = ACTIONS(3378), - [anon_sym_const] = ACTIONS(3378), - [anon_sym_file] = ACTIONS(3378), - [anon_sym_fixed] = ACTIONS(3378), - [anon_sym_internal] = ACTIONS(3378), - [anon_sym_new] = ACTIONS(3378), - [anon_sym_override] = ACTIONS(3378), - [anon_sym_partial] = ACTIONS(3378), - [anon_sym_protected] = ACTIONS(3378), - [anon_sym_required] = ACTIONS(3378), - [anon_sym_sealed] = ACTIONS(3378), - [anon_sym_virtual] = ACTIONS(3378), - [anon_sym_volatile] = ACTIONS(3378), - [anon_sym_where] = ACTIONS(3378), - [anon_sym_notnull] = ACTIONS(3378), - [anon_sym_unmanaged] = ACTIONS(3378), - [anon_sym_checked] = ACTIONS(3378), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_PLUS_PLUS] = ACTIONS(3380), - [anon_sym_DASH_DASH] = ACTIONS(3380), - [anon_sym_true] = ACTIONS(3378), - [anon_sym_false] = ACTIONS(3378), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym_this] = ACTIONS(3378), - [anon_sym_scoped] = ACTIONS(3378), - [anon_sym_base] = ACTIONS(3378), - [anon_sym_var] = ACTIONS(3378), - [sym_predefined_type] = ACTIONS(3378), - [anon_sym_break] = ACTIONS(3378), - [anon_sym_unchecked] = ACTIONS(3378), - [anon_sym_continue] = ACTIONS(3378), - [anon_sym_do] = ACTIONS(3378), - [anon_sym_while] = ACTIONS(3378), - [anon_sym_for] = ACTIONS(3378), - [anon_sym_lock] = ACTIONS(3378), - [anon_sym_yield] = ACTIONS(3378), - [anon_sym_switch] = ACTIONS(3378), - [anon_sym_default] = ACTIONS(3378), - [anon_sym_throw] = ACTIONS(3378), - [anon_sym_try] = ACTIONS(3378), - [anon_sym_catch] = ACTIONS(3378), - [anon_sym_when] = ACTIONS(3378), - [anon_sym_finally] = ACTIONS(3378), - [anon_sym_await] = ACTIONS(3378), - [anon_sym_foreach] = ACTIONS(3378), - [anon_sym_goto] = ACTIONS(3378), - [anon_sym_if] = ACTIONS(3378), - [anon_sym_else] = ACTIONS(3378), - [anon_sym_DOT_DOT] = ACTIONS(3380), - [anon_sym_from] = ACTIONS(3378), - [anon_sym_into] = ACTIONS(3378), - [anon_sym_join] = ACTIONS(3378), - [anon_sym_on] = ACTIONS(3378), - [anon_sym_equals] = ACTIONS(3378), - [anon_sym_let] = ACTIONS(3378), - [anon_sym_orderby] = ACTIONS(3378), - [anon_sym_ascending] = ACTIONS(3378), - [anon_sym_descending] = ACTIONS(3378), - [anon_sym_group] = ACTIONS(3378), - [anon_sym_by] = ACTIONS(3378), - [anon_sym_select] = ACTIONS(3378), - [anon_sym_stackalloc] = ACTIONS(3378), - [anon_sym_sizeof] = ACTIONS(3378), - [anon_sym_typeof] = ACTIONS(3378), - [anon_sym___makeref] = ACTIONS(3378), - [anon_sym___reftype] = ACTIONS(3378), - [anon_sym___refvalue] = ACTIONS(3378), - [sym_null_literal] = ACTIONS(3378), - [anon_sym_SQUOTE] = ACTIONS(3380), - [sym_integer_literal] = ACTIONS(3378), - [sym_real_literal] = ACTIONS(3380), - [anon_sym_DQUOTE] = ACTIONS(3380), - [sym_verbatim_string_literal] = ACTIONS(3380), - [sym_grit_metavariable] = ACTIONS(3380), - [aux_sym_preproc_if_token1] = ACTIONS(3380), + [1981] = { + [sym_preproc_region] = STATE(1981), + [sym_preproc_endregion] = STATE(1981), + [sym_preproc_line] = STATE(1981), + [sym_preproc_pragma] = STATE(1981), + [sym_preproc_nullable] = STATE(1981), + [sym_preproc_error] = STATE(1981), + [sym_preproc_warning] = STATE(1981), + [sym_preproc_define] = STATE(1981), + [sym_preproc_undef] = STATE(1981), + [sym__identifier_token] = ACTIONS(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_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_readonly] = 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_protected] = 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_TILDE] = ACTIONS(3185), + [anon_sym_this] = ACTIONS(3183), + [anon_sym_scoped] = ACTIONS(3183), + [anon_sym_base] = ACTIONS(3183), + [anon_sym_var] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [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_AMP] = ACTIONS(3185), + [anon_sym_CARET] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_BANG] = 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_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), + [sym_grit_metavariable] = 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), @@ -383935,21 +383827,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3380), - [sym_interpolation_verbatim_start] = ACTIONS(3380), - [sym_interpolation_raw_start] = ACTIONS(3380), - [sym_raw_string_start] = ACTIONS(3380), + [sym_interpolation_regular_start] = ACTIONS(3185), + [sym_interpolation_verbatim_start] = ACTIONS(3185), + [sym_interpolation_raw_start] = ACTIONS(3185), + [sym_raw_string_start] = ACTIONS(3185), }, - [1983] = { - [sym_preproc_region] = STATE(1983), - [sym_preproc_endregion] = STATE(1983), - [sym_preproc_line] = STATE(1983), - [sym_preproc_pragma] = STATE(1983), - [sym_preproc_nullable] = STATE(1983), - [sym_preproc_error] = STATE(1983), - [sym_preproc_warning] = STATE(1983), - [sym_preproc_define] = STATE(1983), - [sym_preproc_undef] = STATE(1983), + [1982] = { + [sym_preproc_region] = STATE(1982), + [sym_preproc_endregion] = STATE(1982), + [sym_preproc_line] = STATE(1982), + [sym_preproc_pragma] = STATE(1982), + [sym_preproc_nullable] = STATE(1982), + [sym_preproc_error] = STATE(1982), + [sym_preproc_warning] = STATE(1982), + [sym_preproc_define] = STATE(1982), + [sym_preproc_undef] = STATE(1982), [sym__identifier_token] = ACTIONS(3516), [anon_sym_extern] = ACTIONS(3516), [anon_sym_alias] = ACTIONS(3516), @@ -383991,21 +383883,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3516), [anon_sym_unmanaged] = ACTIONS(3516), [anon_sym_checked] = ACTIONS(3516), - [anon_sym_BANG] = ACTIONS(3518), [anon_sym_TILDE] = ACTIONS(3518), - [anon_sym_PLUS_PLUS] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3516), - [anon_sym_false] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_STAR] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3518), [anon_sym_this] = ACTIONS(3516), [anon_sym_scoped] = ACTIONS(3516), [anon_sym_base] = ACTIONS(3516), [anon_sym_var] = ACTIONS(3516), + [anon_sym_STAR] = ACTIONS(3518), [sym_predefined_type] = ACTIONS(3516), [anon_sym_break] = ACTIONS(3516), [anon_sym_unchecked] = ACTIONS(3516), @@ -384026,6 +383909,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3516), [anon_sym_else] = ACTIONS(3516), [anon_sym_DOT_DOT] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3518), + [anon_sym_PLUS_PLUS] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3518), + [anon_sym_true] = ACTIONS(3516), + [anon_sym_false] = ACTIONS(3516), [anon_sym_from] = ACTIONS(3516), [anon_sym_into] = ACTIONS(3516), [anon_sym_join] = ACTIONS(3516), @@ -384070,16 +383962,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3518), [sym_raw_string_start] = ACTIONS(3518), }, - [1984] = { - [sym_preproc_region] = STATE(1984), - [sym_preproc_endregion] = STATE(1984), - [sym_preproc_line] = STATE(1984), - [sym_preproc_pragma] = STATE(1984), - [sym_preproc_nullable] = STATE(1984), - [sym_preproc_error] = STATE(1984), - [sym_preproc_warning] = STATE(1984), - [sym_preproc_define] = STATE(1984), - [sym_preproc_undef] = STATE(1984), + [1983] = { + [sym_preproc_region] = STATE(1983), + [sym_preproc_endregion] = STATE(1983), + [sym_preproc_line] = STATE(1983), + [sym_preproc_pragma] = STATE(1983), + [sym_preproc_nullable] = STATE(1983), + [sym_preproc_error] = STATE(1983), + [sym_preproc_warning] = STATE(1983), + [sym_preproc_define] = STATE(1983), + [sym_preproc_undef] = STATE(1983), [sym__identifier_token] = ACTIONS(3520), [anon_sym_extern] = ACTIONS(3520), [anon_sym_alias] = ACTIONS(3520), @@ -384121,21 +384013,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3520), [anon_sym_unmanaged] = ACTIONS(3520), [anon_sym_checked] = ACTIONS(3520), - [anon_sym_BANG] = ACTIONS(3522), [anon_sym_TILDE] = ACTIONS(3522), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3522), - [anon_sym_true] = ACTIONS(3520), - [anon_sym_false] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_STAR] = ACTIONS(3522), - [anon_sym_CARET] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3522), [anon_sym_this] = ACTIONS(3520), [anon_sym_scoped] = ACTIONS(3520), [anon_sym_base] = ACTIONS(3520), [anon_sym_var] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3522), [sym_predefined_type] = ACTIONS(3520), [anon_sym_break] = ACTIONS(3520), [anon_sym_unchecked] = ACTIONS(3520), @@ -384156,6 +384039,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3520), [anon_sym_else] = ACTIONS(3520), [anon_sym_DOT_DOT] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3522), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3522), + [anon_sym_true] = ACTIONS(3520), + [anon_sym_false] = ACTIONS(3520), [anon_sym_from] = ACTIONS(3520), [anon_sym_into] = ACTIONS(3520), [anon_sym_join] = ACTIONS(3520), @@ -384200,146 +384092,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3522), [sym_raw_string_start] = ACTIONS(3522), }, - [1985] = { - [sym_preproc_region] = STATE(1985), - [sym_preproc_endregion] = STATE(1985), - [sym_preproc_line] = STATE(1985), - [sym_preproc_pragma] = STATE(1985), - [sym_preproc_nullable] = STATE(1985), - [sym_preproc_error] = STATE(1985), - [sym_preproc_warning] = STATE(1985), - [sym_preproc_define] = STATE(1985), - [sym_preproc_undef] = STATE(1985), - [ts_builtin_sym_end] = ACTIONS(3201), - [sym__identifier_token] = ACTIONS(3199), - [anon_sym_extern] = ACTIONS(3199), - [anon_sym_alias] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_global] = ACTIONS(3199), - [anon_sym_using] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_static] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_namespace] = ACTIONS(3199), - [anon_sym_class] = ACTIONS(3199), - [anon_sym_ref] = ACTIONS(3199), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_enum] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_interface] = ACTIONS(3199), - [anon_sym_delegate] = ACTIONS(3199), - [anon_sym_record] = ACTIONS(3199), - [anon_sym_public] = ACTIONS(3199), - [anon_sym_private] = ACTIONS(3199), - [anon_sym_readonly] = ACTIONS(3199), - [anon_sym_abstract] = ACTIONS(3199), - [anon_sym_async] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_file] = ACTIONS(3199), - [anon_sym_fixed] = ACTIONS(3199), - [anon_sym_internal] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3199), - [anon_sym_override] = ACTIONS(3199), - [anon_sym_partial] = ACTIONS(3199), - [anon_sym_protected] = ACTIONS(3199), - [anon_sym_required] = ACTIONS(3199), - [anon_sym_sealed] = ACTIONS(3199), - [anon_sym_virtual] = ACTIONS(3199), - [anon_sym_volatile] = ACTIONS(3199), - [anon_sym_where] = ACTIONS(3199), - [anon_sym_notnull] = ACTIONS(3199), - [anon_sym_unmanaged] = ACTIONS(3199), - [anon_sym_checked] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_this] = ACTIONS(3199), - [anon_sym_scoped] = ACTIONS(3199), - [anon_sym_base] = ACTIONS(3199), - [anon_sym_var] = ACTIONS(3199), - [sym_predefined_type] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_unchecked] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_do] = ACTIONS(3199), - [anon_sym_while] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3199), - [anon_sym_switch] = ACTIONS(3199), - [anon_sym_default] = ACTIONS(3199), - [anon_sym_throw] = ACTIONS(3199), - [anon_sym_try] = ACTIONS(3199), - [anon_sym_catch] = ACTIONS(3199), - [anon_sym_when] = ACTIONS(3199), - [anon_sym_finally] = ACTIONS(3199), - [anon_sym_await] = ACTIONS(3199), - [anon_sym_foreach] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_else] = ACTIONS(3199), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_from] = ACTIONS(3199), - [anon_sym_into] = ACTIONS(3199), - [anon_sym_join] = ACTIONS(3199), - [anon_sym_on] = ACTIONS(3199), - [anon_sym_equals] = ACTIONS(3199), - [anon_sym_let] = ACTIONS(3199), - [anon_sym_orderby] = ACTIONS(3199), - [anon_sym_ascending] = ACTIONS(3199), - [anon_sym_descending] = ACTIONS(3199), - [anon_sym_group] = ACTIONS(3199), - [anon_sym_by] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_stackalloc] = ACTIONS(3199), - [anon_sym_sizeof] = ACTIONS(3199), - [anon_sym_typeof] = ACTIONS(3199), - [anon_sym___makeref] = ACTIONS(3199), - [anon_sym___reftype] = ACTIONS(3199), - [anon_sym___refvalue] = ACTIONS(3199), - [sym_null_literal] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3201), - [sym_integer_literal] = ACTIONS(3199), - [sym_real_literal] = ACTIONS(3201), - [anon_sym_DQUOTE] = ACTIONS(3201), - [sym_verbatim_string_literal] = ACTIONS(3201), - [sym_grit_metavariable] = ACTIONS(3201), - [aux_sym_preproc_if_token1] = ACTIONS(3201), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3201), - [sym_interpolation_verbatim_start] = ACTIONS(3201), - [sym_interpolation_raw_start] = ACTIONS(3201), - [sym_raw_string_start] = ACTIONS(3201), - }, - [1986] = { - [sym_preproc_region] = STATE(1986), - [sym_preproc_endregion] = STATE(1986), - [sym_preproc_line] = STATE(1986), - [sym_preproc_pragma] = STATE(1986), - [sym_preproc_nullable] = STATE(1986), - [sym_preproc_error] = STATE(1986), - [sym_preproc_warning] = STATE(1986), - [sym_preproc_define] = STATE(1986), - [sym_preproc_undef] = STATE(1986), + [1984] = { + [sym_preproc_region] = STATE(1984), + [sym_preproc_endregion] = STATE(1984), + [sym_preproc_line] = STATE(1984), + [sym_preproc_pragma] = STATE(1984), + [sym_preproc_nullable] = STATE(1984), + [sym_preproc_error] = STATE(1984), + [sym_preproc_warning] = STATE(1984), + [sym_preproc_define] = STATE(1984), + [sym_preproc_undef] = STATE(1984), [sym__identifier_token] = ACTIONS(3524), [anon_sym_extern] = ACTIONS(3524), [anon_sym_alias] = ACTIONS(3524), @@ -384381,21 +384143,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3524), [anon_sym_unmanaged] = ACTIONS(3524), [anon_sym_checked] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3526), [anon_sym_TILDE] = ACTIONS(3526), - [anon_sym_PLUS_PLUS] = ACTIONS(3526), - [anon_sym_DASH_DASH] = ACTIONS(3526), - [anon_sym_true] = ACTIONS(3524), - [anon_sym_false] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_CARET] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3526), [anon_sym_this] = ACTIONS(3524), [anon_sym_scoped] = ACTIONS(3524), [anon_sym_base] = ACTIONS(3524), [anon_sym_var] = ACTIONS(3524), + [anon_sym_STAR] = ACTIONS(3526), [sym_predefined_type] = ACTIONS(3524), [anon_sym_break] = ACTIONS(3524), [anon_sym_unchecked] = ACTIONS(3524), @@ -384416,6 +384169,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3524), [anon_sym_else] = ACTIONS(3524), [anon_sym_DOT_DOT] = ACTIONS(3526), + [anon_sym_AMP] = ACTIONS(3526), + [anon_sym_CARET] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3526), + [anon_sym_true] = ACTIONS(3524), + [anon_sym_false] = ACTIONS(3524), [anon_sym_from] = ACTIONS(3524), [anon_sym_into] = ACTIONS(3524), [anon_sym_join] = ACTIONS(3524), @@ -384460,16 +384222,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3526), [sym_raw_string_start] = ACTIONS(3526), }, - [1987] = { - [sym_preproc_region] = STATE(1987), - [sym_preproc_endregion] = STATE(1987), - [sym_preproc_line] = STATE(1987), - [sym_preproc_pragma] = STATE(1987), - [sym_preproc_nullable] = STATE(1987), - [sym_preproc_error] = STATE(1987), - [sym_preproc_warning] = STATE(1987), - [sym_preproc_define] = STATE(1987), - [sym_preproc_undef] = STATE(1987), + [1985] = { + [sym_preproc_region] = STATE(1985), + [sym_preproc_endregion] = STATE(1985), + [sym_preproc_line] = STATE(1985), + [sym_preproc_pragma] = STATE(1985), + [sym_preproc_nullable] = STATE(1985), + [sym_preproc_error] = STATE(1985), + [sym_preproc_warning] = STATE(1985), + [sym_preproc_define] = STATE(1985), + [sym_preproc_undef] = STATE(1985), [sym__identifier_token] = ACTIONS(3528), [anon_sym_extern] = ACTIONS(3528), [anon_sym_alias] = ACTIONS(3528), @@ -384511,21 +384273,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3528), [anon_sym_unmanaged] = ACTIONS(3528), [anon_sym_checked] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(3530), [anon_sym_TILDE] = ACTIONS(3530), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3530), - [anon_sym_true] = ACTIONS(3528), - [anon_sym_false] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_STAR] = ACTIONS(3530), - [anon_sym_CARET] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3530), [anon_sym_this] = ACTIONS(3528), [anon_sym_scoped] = ACTIONS(3528), [anon_sym_base] = ACTIONS(3528), [anon_sym_var] = ACTIONS(3528), + [anon_sym_STAR] = ACTIONS(3530), [sym_predefined_type] = ACTIONS(3528), [anon_sym_break] = ACTIONS(3528), [anon_sym_unchecked] = ACTIONS(3528), @@ -384546,6 +384299,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3528), [anon_sym_else] = ACTIONS(3528), [anon_sym_DOT_DOT] = ACTIONS(3530), + [anon_sym_AMP] = ACTIONS(3530), + [anon_sym_CARET] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3530), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3530), + [anon_sym_true] = ACTIONS(3528), + [anon_sym_false] = ACTIONS(3528), [anon_sym_from] = ACTIONS(3528), [anon_sym_into] = ACTIONS(3528), [anon_sym_join] = ACTIONS(3528), @@ -384590,16 +384352,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3530), [sym_raw_string_start] = ACTIONS(3530), }, - [1988] = { - [sym_preproc_region] = STATE(1988), - [sym_preproc_endregion] = STATE(1988), - [sym_preproc_line] = STATE(1988), - [sym_preproc_pragma] = STATE(1988), - [sym_preproc_nullable] = STATE(1988), - [sym_preproc_error] = STATE(1988), - [sym_preproc_warning] = STATE(1988), - [sym_preproc_define] = STATE(1988), - [sym_preproc_undef] = STATE(1988), + [1986] = { + [sym_preproc_region] = STATE(1986), + [sym_preproc_endregion] = STATE(1986), + [sym_preproc_line] = STATE(1986), + [sym_preproc_pragma] = STATE(1986), + [sym_preproc_nullable] = STATE(1986), + [sym_preproc_error] = STATE(1986), + [sym_preproc_warning] = STATE(1986), + [sym_preproc_define] = STATE(1986), + [sym_preproc_undef] = STATE(1986), [sym__identifier_token] = ACTIONS(3532), [anon_sym_extern] = ACTIONS(3532), [anon_sym_alias] = ACTIONS(3532), @@ -384641,21 +384403,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3532), [anon_sym_unmanaged] = ACTIONS(3532), [anon_sym_checked] = ACTIONS(3532), - [anon_sym_BANG] = ACTIONS(3534), [anon_sym_TILDE] = ACTIONS(3534), - [anon_sym_PLUS_PLUS] = ACTIONS(3534), - [anon_sym_DASH_DASH] = ACTIONS(3534), - [anon_sym_true] = ACTIONS(3532), - [anon_sym_false] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_STAR] = ACTIONS(3534), - [anon_sym_CARET] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3534), [anon_sym_this] = ACTIONS(3532), [anon_sym_scoped] = ACTIONS(3532), [anon_sym_base] = ACTIONS(3532), [anon_sym_var] = ACTIONS(3532), + [anon_sym_STAR] = ACTIONS(3534), [sym_predefined_type] = ACTIONS(3532), [anon_sym_break] = ACTIONS(3532), [anon_sym_unchecked] = ACTIONS(3532), @@ -384676,6 +384429,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3532), [anon_sym_else] = ACTIONS(3532), [anon_sym_DOT_DOT] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_CARET] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3534), + [anon_sym_true] = ACTIONS(3532), + [anon_sym_false] = ACTIONS(3532), [anon_sym_from] = ACTIONS(3532), [anon_sym_into] = ACTIONS(3532), [anon_sym_join] = ACTIONS(3532), @@ -384720,16 +384482,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3534), [sym_raw_string_start] = ACTIONS(3534), }, - [1989] = { - [sym_preproc_region] = STATE(1989), - [sym_preproc_endregion] = STATE(1989), - [sym_preproc_line] = STATE(1989), - [sym_preproc_pragma] = STATE(1989), - [sym_preproc_nullable] = STATE(1989), - [sym_preproc_error] = STATE(1989), - [sym_preproc_warning] = STATE(1989), - [sym_preproc_define] = STATE(1989), - [sym_preproc_undef] = STATE(1989), + [1987] = { + [sym_preproc_region] = STATE(1987), + [sym_preproc_endregion] = STATE(1987), + [sym_preproc_line] = STATE(1987), + [sym_preproc_pragma] = STATE(1987), + [sym_preproc_nullable] = STATE(1987), + [sym_preproc_error] = STATE(1987), + [sym_preproc_warning] = STATE(1987), + [sym_preproc_define] = STATE(1987), + [sym_preproc_undef] = STATE(1987), [sym__identifier_token] = ACTIONS(3536), [anon_sym_extern] = ACTIONS(3536), [anon_sym_alias] = ACTIONS(3536), @@ -384771,21 +384533,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3536), [anon_sym_unmanaged] = ACTIONS(3536), [anon_sym_checked] = ACTIONS(3536), - [anon_sym_BANG] = ACTIONS(3538), [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_PLUS_PLUS] = ACTIONS(3538), - [anon_sym_DASH_DASH] = ACTIONS(3538), - [anon_sym_true] = ACTIONS(3536), - [anon_sym_false] = ACTIONS(3536), - [anon_sym_PLUS] = ACTIONS(3536), - [anon_sym_DASH] = ACTIONS(3536), - [anon_sym_STAR] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3538), [anon_sym_this] = ACTIONS(3536), [anon_sym_scoped] = ACTIONS(3536), [anon_sym_base] = ACTIONS(3536), [anon_sym_var] = ACTIONS(3536), + [anon_sym_STAR] = ACTIONS(3538), [sym_predefined_type] = ACTIONS(3536), [anon_sym_break] = ACTIONS(3536), [anon_sym_unchecked] = ACTIONS(3536), @@ -384806,6 +384559,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3536), [anon_sym_else] = ACTIONS(3536), [anon_sym_DOT_DOT] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3538), + [anon_sym_CARET] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3538), + [anon_sym_PLUS_PLUS] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3538), + [anon_sym_true] = ACTIONS(3536), + [anon_sym_false] = ACTIONS(3536), [anon_sym_from] = ACTIONS(3536), [anon_sym_into] = ACTIONS(3536), [anon_sym_join] = ACTIONS(3536), @@ -384850,146 +384612,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3538), [sym_raw_string_start] = ACTIONS(3538), }, - [1990] = { - [sym_preproc_region] = STATE(1990), - [sym_preproc_endregion] = STATE(1990), - [sym_preproc_line] = STATE(1990), - [sym_preproc_pragma] = STATE(1990), - [sym_preproc_nullable] = STATE(1990), - [sym_preproc_error] = STATE(1990), - [sym_preproc_warning] = STATE(1990), - [sym_preproc_define] = STATE(1990), - [sym_preproc_undef] = STATE(1990), - [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_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_readonly] = 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_protected] = 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_catch] = ACTIONS(3371), - [anon_sym_when] = ACTIONS(3371), - [anon_sym_finally] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_foreach] = ACTIONS(3371), - [anon_sym_goto] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_else] = 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), - [sym_grit_metavariable] = 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), - }, - [1991] = { - [sym_preproc_region] = STATE(1991), - [sym_preproc_endregion] = STATE(1991), - [sym_preproc_line] = STATE(1991), - [sym_preproc_pragma] = STATE(1991), - [sym_preproc_nullable] = STATE(1991), - [sym_preproc_error] = STATE(1991), - [sym_preproc_warning] = STATE(1991), - [sym_preproc_define] = STATE(1991), - [sym_preproc_undef] = STATE(1991), + [1988] = { + [sym_preproc_region] = STATE(1988), + [sym_preproc_endregion] = STATE(1988), + [sym_preproc_line] = STATE(1988), + [sym_preproc_pragma] = STATE(1988), + [sym_preproc_nullable] = STATE(1988), + [sym_preproc_error] = STATE(1988), + [sym_preproc_warning] = STATE(1988), + [sym_preproc_define] = STATE(1988), + [sym_preproc_undef] = STATE(1988), [sym__identifier_token] = ACTIONS(3540), [anon_sym_extern] = ACTIONS(3540), [anon_sym_alias] = ACTIONS(3540), @@ -385031,21 +384663,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3540), [anon_sym_unmanaged] = ACTIONS(3540), [anon_sym_checked] = ACTIONS(3540), - [anon_sym_BANG] = ACTIONS(3542), [anon_sym_TILDE] = ACTIONS(3542), - [anon_sym_PLUS_PLUS] = ACTIONS(3542), - [anon_sym_DASH_DASH] = ACTIONS(3542), - [anon_sym_true] = ACTIONS(3540), - [anon_sym_false] = ACTIONS(3540), - [anon_sym_PLUS] = ACTIONS(3540), - [anon_sym_DASH] = ACTIONS(3540), - [anon_sym_STAR] = ACTIONS(3542), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3542), [anon_sym_this] = ACTIONS(3540), [anon_sym_scoped] = ACTIONS(3540), [anon_sym_base] = ACTIONS(3540), [anon_sym_var] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), [sym_predefined_type] = ACTIONS(3540), [anon_sym_break] = ACTIONS(3540), [anon_sym_unchecked] = ACTIONS(3540), @@ -385066,6 +384689,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3540), [anon_sym_else] = ACTIONS(3540), [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_CARET] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3542), + [anon_sym_true] = ACTIONS(3540), + [anon_sym_false] = ACTIONS(3540), [anon_sym_from] = ACTIONS(3540), [anon_sym_into] = ACTIONS(3540), [anon_sym_join] = ACTIONS(3540), @@ -385110,16 +384742,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3542), [sym_raw_string_start] = ACTIONS(3542), }, - [1992] = { - [sym_preproc_region] = STATE(1992), - [sym_preproc_endregion] = STATE(1992), - [sym_preproc_line] = STATE(1992), - [sym_preproc_pragma] = STATE(1992), - [sym_preproc_nullable] = STATE(1992), - [sym_preproc_error] = STATE(1992), - [sym_preproc_warning] = STATE(1992), - [sym_preproc_define] = STATE(1992), - [sym_preproc_undef] = STATE(1992), + [1989] = { + [sym_preproc_region] = STATE(1989), + [sym_preproc_endregion] = STATE(1989), + [sym_preproc_line] = STATE(1989), + [sym_preproc_pragma] = STATE(1989), + [sym_preproc_nullable] = STATE(1989), + [sym_preproc_error] = STATE(1989), + [sym_preproc_warning] = STATE(1989), + [sym_preproc_define] = STATE(1989), + [sym_preproc_undef] = STATE(1989), + [ts_builtin_sym_end] = ACTIONS(3384), + [sym__identifier_token] = ACTIONS(3382), + [anon_sym_extern] = ACTIONS(3382), + [anon_sym_alias] = ACTIONS(3382), + [anon_sym_SEMI] = ACTIONS(3384), + [anon_sym_global] = ACTIONS(3382), + [anon_sym_using] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(3382), + [anon_sym_static] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_namespace] = ACTIONS(3382), + [anon_sym_class] = ACTIONS(3382), + [anon_sym_ref] = ACTIONS(3382), + [anon_sym_struct] = ACTIONS(3382), + [anon_sym_enum] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_interface] = ACTIONS(3382), + [anon_sym_delegate] = ACTIONS(3382), + [anon_sym_record] = ACTIONS(3382), + [anon_sym_public] = ACTIONS(3382), + [anon_sym_private] = ACTIONS(3382), + [anon_sym_readonly] = ACTIONS(3382), + [anon_sym_abstract] = ACTIONS(3382), + [anon_sym_async] = ACTIONS(3382), + [anon_sym_const] = ACTIONS(3382), + [anon_sym_file] = ACTIONS(3382), + [anon_sym_fixed] = ACTIONS(3382), + [anon_sym_internal] = ACTIONS(3382), + [anon_sym_new] = ACTIONS(3382), + [anon_sym_override] = ACTIONS(3382), + [anon_sym_partial] = ACTIONS(3382), + [anon_sym_protected] = ACTIONS(3382), + [anon_sym_required] = ACTIONS(3382), + [anon_sym_sealed] = ACTIONS(3382), + [anon_sym_virtual] = ACTIONS(3382), + [anon_sym_volatile] = ACTIONS(3382), + [anon_sym_where] = ACTIONS(3382), + [anon_sym_notnull] = ACTIONS(3382), + [anon_sym_unmanaged] = ACTIONS(3382), + [anon_sym_checked] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_this] = ACTIONS(3382), + [anon_sym_scoped] = ACTIONS(3382), + [anon_sym_base] = ACTIONS(3382), + [anon_sym_var] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3384), + [sym_predefined_type] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_unchecked] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_while] = ACTIONS(3382), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_yield] = ACTIONS(3382), + [anon_sym_switch] = ACTIONS(3382), + [anon_sym_default] = ACTIONS(3382), + [anon_sym_throw] = ACTIONS(3382), + [anon_sym_try] = ACTIONS(3382), + [anon_sym_catch] = ACTIONS(3382), + [anon_sym_when] = ACTIONS(3382), + [anon_sym_finally] = ACTIONS(3382), + [anon_sym_await] = ACTIONS(3382), + [anon_sym_foreach] = ACTIONS(3382), + [anon_sym_goto] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3382), + [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_CARET] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [anon_sym_true] = ACTIONS(3382), + [anon_sym_false] = ACTIONS(3382), + [anon_sym_from] = ACTIONS(3382), + [anon_sym_into] = ACTIONS(3382), + [anon_sym_join] = ACTIONS(3382), + [anon_sym_on] = ACTIONS(3382), + [anon_sym_equals] = ACTIONS(3382), + [anon_sym_let] = ACTIONS(3382), + [anon_sym_orderby] = ACTIONS(3382), + [anon_sym_ascending] = ACTIONS(3382), + [anon_sym_descending] = ACTIONS(3382), + [anon_sym_group] = ACTIONS(3382), + [anon_sym_by] = ACTIONS(3382), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_stackalloc] = ACTIONS(3382), + [anon_sym_sizeof] = ACTIONS(3382), + [anon_sym_typeof] = ACTIONS(3382), + [anon_sym___makeref] = ACTIONS(3382), + [anon_sym___reftype] = ACTIONS(3382), + [anon_sym___refvalue] = ACTIONS(3382), + [sym_null_literal] = ACTIONS(3382), + [anon_sym_SQUOTE] = ACTIONS(3384), + [sym_integer_literal] = ACTIONS(3382), + [sym_real_literal] = ACTIONS(3384), + [anon_sym_DQUOTE] = ACTIONS(3384), + [sym_verbatim_string_literal] = ACTIONS(3384), + [sym_grit_metavariable] = ACTIONS(3384), + [aux_sym_preproc_if_token1] = ACTIONS(3384), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3384), + [sym_interpolation_verbatim_start] = ACTIONS(3384), + [sym_interpolation_raw_start] = ACTIONS(3384), + [sym_raw_string_start] = ACTIONS(3384), + }, + [1990] = { + [sym_preproc_region] = STATE(1990), + [sym_preproc_endregion] = STATE(1990), + [sym_preproc_line] = STATE(1990), + [sym_preproc_pragma] = STATE(1990), + [sym_preproc_nullable] = STATE(1990), + [sym_preproc_error] = STATE(1990), + [sym_preproc_warning] = STATE(1990), + [sym_preproc_define] = STATE(1990), + [sym_preproc_undef] = STATE(1990), [sym__identifier_token] = ACTIONS(3544), [anon_sym_extern] = ACTIONS(3544), [anon_sym_alias] = ACTIONS(3544), @@ -385161,21 +384923,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3544), [anon_sym_unmanaged] = ACTIONS(3544), [anon_sym_checked] = ACTIONS(3544), - [anon_sym_BANG] = ACTIONS(3546), [anon_sym_TILDE] = ACTIONS(3546), - [anon_sym_PLUS_PLUS] = ACTIONS(3546), - [anon_sym_DASH_DASH] = ACTIONS(3546), - [anon_sym_true] = ACTIONS(3544), - [anon_sym_false] = ACTIONS(3544), - [anon_sym_PLUS] = ACTIONS(3544), - [anon_sym_DASH] = ACTIONS(3544), - [anon_sym_STAR] = ACTIONS(3546), - [anon_sym_CARET] = ACTIONS(3546), - [anon_sym_AMP] = ACTIONS(3546), [anon_sym_this] = ACTIONS(3544), [anon_sym_scoped] = ACTIONS(3544), [anon_sym_base] = ACTIONS(3544), [anon_sym_var] = ACTIONS(3544), + [anon_sym_STAR] = ACTIONS(3546), [sym_predefined_type] = ACTIONS(3544), [anon_sym_break] = ACTIONS(3544), [anon_sym_unchecked] = ACTIONS(3544), @@ -385196,6 +384949,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3544), [anon_sym_else] = ACTIONS(3544), [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3546), + [anon_sym_CARET] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3544), + [anon_sym_false] = ACTIONS(3544), [anon_sym_from] = ACTIONS(3544), [anon_sym_into] = ACTIONS(3544), [anon_sym_join] = ACTIONS(3544), @@ -385240,146 +385002,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3546), [sym_raw_string_start] = ACTIONS(3546), }, - [1993] = { - [sym_preproc_region] = STATE(1993), - [sym_preproc_endregion] = STATE(1993), - [sym_preproc_line] = STATE(1993), - [sym_preproc_pragma] = STATE(1993), - [sym_preproc_nullable] = STATE(1993), - [sym_preproc_error] = STATE(1993), - [sym_preproc_warning] = STATE(1993), - [sym_preproc_define] = STATE(1993), - [sym_preproc_undef] = STATE(1993), - [sym__identifier_token] = ACTIONS(3548), - [anon_sym_extern] = ACTIONS(3548), - [anon_sym_alias] = ACTIONS(3548), - [anon_sym_SEMI] = ACTIONS(3550), - [anon_sym_global] = ACTIONS(3548), - [anon_sym_using] = ACTIONS(3548), - [anon_sym_unsafe] = ACTIONS(3548), - [anon_sym_static] = ACTIONS(3548), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3548), - [anon_sym_namespace] = ACTIONS(3548), - [anon_sym_class] = ACTIONS(3548), - [anon_sym_ref] = ACTIONS(3548), - [anon_sym_struct] = ACTIONS(3548), - [anon_sym_enum] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_interface] = ACTIONS(3548), - [anon_sym_delegate] = ACTIONS(3548), - [anon_sym_record] = ACTIONS(3548), - [anon_sym_public] = ACTIONS(3548), - [anon_sym_private] = ACTIONS(3548), - [anon_sym_readonly] = ACTIONS(3548), - [anon_sym_abstract] = ACTIONS(3548), - [anon_sym_async] = ACTIONS(3548), - [anon_sym_const] = ACTIONS(3548), - [anon_sym_file] = ACTIONS(3548), - [anon_sym_fixed] = ACTIONS(3548), - [anon_sym_internal] = ACTIONS(3548), - [anon_sym_new] = ACTIONS(3548), - [anon_sym_override] = ACTIONS(3548), - [anon_sym_partial] = ACTIONS(3548), - [anon_sym_protected] = ACTIONS(3548), - [anon_sym_required] = ACTIONS(3548), - [anon_sym_sealed] = ACTIONS(3548), - [anon_sym_virtual] = ACTIONS(3548), - [anon_sym_volatile] = ACTIONS(3548), - [anon_sym_where] = ACTIONS(3548), - [anon_sym_notnull] = ACTIONS(3548), - [anon_sym_unmanaged] = ACTIONS(3548), - [anon_sym_checked] = ACTIONS(3548), - [anon_sym_BANG] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3550), - [anon_sym_PLUS_PLUS] = ACTIONS(3550), - [anon_sym_DASH_DASH] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3548), - [anon_sym_false] = ACTIONS(3548), - [anon_sym_PLUS] = ACTIONS(3548), - [anon_sym_DASH] = ACTIONS(3548), - [anon_sym_STAR] = ACTIONS(3550), - [anon_sym_CARET] = ACTIONS(3550), - [anon_sym_AMP] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(3548), - [anon_sym_scoped] = ACTIONS(3548), - [anon_sym_base] = ACTIONS(3548), - [anon_sym_var] = ACTIONS(3548), - [sym_predefined_type] = ACTIONS(3548), - [anon_sym_break] = ACTIONS(3548), - [anon_sym_unchecked] = ACTIONS(3548), - [anon_sym_continue] = ACTIONS(3548), - [anon_sym_do] = ACTIONS(3548), - [anon_sym_while] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3548), - [anon_sym_lock] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3548), - [anon_sym_switch] = ACTIONS(3548), - [anon_sym_default] = ACTIONS(3548), - [anon_sym_throw] = ACTIONS(3548), - [anon_sym_try] = ACTIONS(3548), - [anon_sym_when] = ACTIONS(3548), - [anon_sym_await] = ACTIONS(3548), - [anon_sym_foreach] = ACTIONS(3548), - [anon_sym_goto] = ACTIONS(3548), - [anon_sym_if] = ACTIONS(3548), - [anon_sym_else] = ACTIONS(3548), - [anon_sym_DOT_DOT] = ACTIONS(3550), - [anon_sym_from] = ACTIONS(3548), - [anon_sym_into] = ACTIONS(3548), - [anon_sym_join] = ACTIONS(3548), - [anon_sym_on] = ACTIONS(3548), - [anon_sym_equals] = ACTIONS(3548), - [anon_sym_let] = ACTIONS(3548), - [anon_sym_orderby] = ACTIONS(3548), - [anon_sym_ascending] = ACTIONS(3548), - [anon_sym_descending] = ACTIONS(3548), - [anon_sym_group] = ACTIONS(3548), - [anon_sym_by] = ACTIONS(3548), - [anon_sym_select] = ACTIONS(3548), - [anon_sym_stackalloc] = ACTIONS(3548), - [anon_sym_sizeof] = ACTIONS(3548), - [anon_sym_typeof] = ACTIONS(3548), - [anon_sym___makeref] = ACTIONS(3548), - [anon_sym___reftype] = ACTIONS(3548), - [anon_sym___refvalue] = ACTIONS(3548), - [sym_null_literal] = ACTIONS(3548), - [anon_sym_SQUOTE] = ACTIONS(3550), - [sym_integer_literal] = ACTIONS(3548), - [sym_real_literal] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [sym_verbatim_string_literal] = ACTIONS(3550), - [sym_grit_metavariable] = ACTIONS(3550), - [aux_sym_preproc_if_token1] = ACTIONS(3550), - [aux_sym_preproc_if_token3] = ACTIONS(3550), - [aux_sym_preproc_else_token1] = ACTIONS(3550), - [aux_sym_preproc_elif_token1] = ACTIONS(3550), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3550), - [sym_interpolation_verbatim_start] = ACTIONS(3550), - [sym_interpolation_raw_start] = ACTIONS(3550), - [sym_raw_string_start] = ACTIONS(3550), - }, - [1994] = { - [sym_preproc_region] = STATE(1994), - [sym_preproc_endregion] = STATE(1994), - [sym_preproc_line] = STATE(1994), - [sym_preproc_pragma] = STATE(1994), - [sym_preproc_nullable] = STATE(1994), - [sym_preproc_error] = STATE(1994), - [sym_preproc_warning] = STATE(1994), - [sym_preproc_define] = STATE(1994), - [sym_preproc_undef] = STATE(1994), + [1991] = { + [sym_preproc_region] = STATE(1991), + [sym_preproc_endregion] = STATE(1991), + [sym_preproc_line] = STATE(1991), + [sym_preproc_pragma] = STATE(1991), + [sym_preproc_nullable] = STATE(1991), + [sym_preproc_error] = STATE(1991), + [sym_preproc_warning] = STATE(1991), + [sym_preproc_define] = STATE(1991), + [sym_preproc_undef] = STATE(1991), + [ts_builtin_sym_end] = ACTIONS(3380), + [sym__identifier_token] = ACTIONS(3378), + [anon_sym_extern] = ACTIONS(3378), + [anon_sym_alias] = ACTIONS(3378), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_global] = ACTIONS(3378), + [anon_sym_using] = ACTIONS(3378), + [anon_sym_unsafe] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_namespace] = ACTIONS(3378), + [anon_sym_class] = ACTIONS(3378), + [anon_sym_ref] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_interface] = ACTIONS(3378), + [anon_sym_delegate] = ACTIONS(3378), + [anon_sym_record] = ACTIONS(3378), + [anon_sym_public] = ACTIONS(3378), + [anon_sym_private] = ACTIONS(3378), + [anon_sym_readonly] = ACTIONS(3378), + [anon_sym_abstract] = ACTIONS(3378), + [anon_sym_async] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_file] = ACTIONS(3378), + [anon_sym_fixed] = ACTIONS(3378), + [anon_sym_internal] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3378), + [anon_sym_override] = ACTIONS(3378), + [anon_sym_partial] = ACTIONS(3378), + [anon_sym_protected] = ACTIONS(3378), + [anon_sym_required] = ACTIONS(3378), + [anon_sym_sealed] = ACTIONS(3378), + [anon_sym_virtual] = ACTIONS(3378), + [anon_sym_volatile] = ACTIONS(3378), + [anon_sym_where] = ACTIONS(3378), + [anon_sym_notnull] = ACTIONS(3378), + [anon_sym_unmanaged] = ACTIONS(3378), + [anon_sym_checked] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_this] = ACTIONS(3378), + [anon_sym_scoped] = ACTIONS(3378), + [anon_sym_base] = ACTIONS(3378), + [anon_sym_var] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3380), + [sym_predefined_type] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_unchecked] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_lock] = ACTIONS(3378), + [anon_sym_yield] = ACTIONS(3378), + [anon_sym_switch] = ACTIONS(3378), + [anon_sym_default] = ACTIONS(3378), + [anon_sym_throw] = ACTIONS(3378), + [anon_sym_try] = ACTIONS(3378), + [anon_sym_catch] = ACTIONS(3378), + [anon_sym_when] = ACTIONS(3378), + [anon_sym_finally] = ACTIONS(3378), + [anon_sym_await] = ACTIONS(3378), + [anon_sym_foreach] = ACTIONS(3378), + [anon_sym_goto] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_else] = ACTIONS(3378), + [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym_CARET] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [anon_sym_true] = ACTIONS(3378), + [anon_sym_false] = ACTIONS(3378), + [anon_sym_from] = ACTIONS(3378), + [anon_sym_into] = ACTIONS(3378), + [anon_sym_join] = ACTIONS(3378), + [anon_sym_on] = ACTIONS(3378), + [anon_sym_equals] = ACTIONS(3378), + [anon_sym_let] = ACTIONS(3378), + [anon_sym_orderby] = ACTIONS(3378), + [anon_sym_ascending] = ACTIONS(3378), + [anon_sym_descending] = ACTIONS(3378), + [anon_sym_group] = ACTIONS(3378), + [anon_sym_by] = ACTIONS(3378), + [anon_sym_select] = ACTIONS(3378), + [anon_sym_stackalloc] = ACTIONS(3378), + [anon_sym_sizeof] = ACTIONS(3378), + [anon_sym_typeof] = ACTIONS(3378), + [anon_sym___makeref] = ACTIONS(3378), + [anon_sym___reftype] = ACTIONS(3378), + [anon_sym___refvalue] = ACTIONS(3378), + [sym_null_literal] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3380), + [sym_integer_literal] = ACTIONS(3378), + [sym_real_literal] = ACTIONS(3380), + [anon_sym_DQUOTE] = ACTIONS(3380), + [sym_verbatim_string_literal] = ACTIONS(3380), + [sym_grit_metavariable] = ACTIONS(3380), + [aux_sym_preproc_if_token1] = ACTIONS(3380), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3380), + [sym_interpolation_verbatim_start] = ACTIONS(3380), + [sym_interpolation_raw_start] = ACTIONS(3380), + [sym_raw_string_start] = ACTIONS(3380), + }, + [1992] = { + [sym_preproc_region] = STATE(1992), + [sym_preproc_endregion] = STATE(1992), + [sym_preproc_line] = STATE(1992), + [sym_preproc_pragma] = STATE(1992), + [sym_preproc_nullable] = STATE(1992), + [sym_preproc_error] = STATE(1992), + [sym_preproc_warning] = STATE(1992), + [sym_preproc_define] = STATE(1992), + [sym_preproc_undef] = STATE(1992), + [sym__identifier_token] = ACTIONS(3548), + [anon_sym_extern] = ACTIONS(3548), + [anon_sym_alias] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_global] = ACTIONS(3548), + [anon_sym_using] = ACTIONS(3548), + [anon_sym_unsafe] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3550), + [anon_sym_LPAREN] = ACTIONS(3550), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_ref] = ACTIONS(3548), + [anon_sym_struct] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_interface] = ACTIONS(3548), + [anon_sym_delegate] = ACTIONS(3548), + [anon_sym_record] = ACTIONS(3548), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_readonly] = ACTIONS(3548), + [anon_sym_abstract] = ACTIONS(3548), + [anon_sym_async] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_file] = ACTIONS(3548), + [anon_sym_fixed] = ACTIONS(3548), + [anon_sym_internal] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_override] = ACTIONS(3548), + [anon_sym_partial] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_required] = ACTIONS(3548), + [anon_sym_sealed] = ACTIONS(3548), + [anon_sym_virtual] = ACTIONS(3548), + [anon_sym_volatile] = ACTIONS(3548), + [anon_sym_where] = ACTIONS(3548), + [anon_sym_notnull] = ACTIONS(3548), + [anon_sym_unmanaged] = ACTIONS(3548), + [anon_sym_checked] = ACTIONS(3548), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_this] = ACTIONS(3548), + [anon_sym_scoped] = ACTIONS(3548), + [anon_sym_base] = ACTIONS(3548), + [anon_sym_var] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [sym_predefined_type] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_unchecked] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_lock] = ACTIONS(3548), + [anon_sym_yield] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_when] = ACTIONS(3548), + [anon_sym_await] = ACTIONS(3548), + [anon_sym_foreach] = ACTIONS(3548), + [anon_sym_goto] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3548), + [anon_sym_DOT_DOT] = ACTIONS(3550), + [anon_sym_AMP] = ACTIONS(3550), + [anon_sym_CARET] = ACTIONS(3550), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_DASH_DASH] = ACTIONS(3550), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [anon_sym_from] = ACTIONS(3548), + [anon_sym_into] = ACTIONS(3548), + [anon_sym_join] = ACTIONS(3548), + [anon_sym_on] = ACTIONS(3548), + [anon_sym_equals] = ACTIONS(3548), + [anon_sym_let] = ACTIONS(3548), + [anon_sym_orderby] = ACTIONS(3548), + [anon_sym_ascending] = ACTIONS(3548), + [anon_sym_descending] = ACTIONS(3548), + [anon_sym_group] = ACTIONS(3548), + [anon_sym_by] = ACTIONS(3548), + [anon_sym_select] = ACTIONS(3548), + [anon_sym_stackalloc] = ACTIONS(3548), + [anon_sym_sizeof] = ACTIONS(3548), + [anon_sym_typeof] = ACTIONS(3548), + [anon_sym___makeref] = ACTIONS(3548), + [anon_sym___reftype] = ACTIONS(3548), + [anon_sym___refvalue] = ACTIONS(3548), + [sym_null_literal] = ACTIONS(3548), + [anon_sym_SQUOTE] = ACTIONS(3550), + [sym_integer_literal] = ACTIONS(3548), + [sym_real_literal] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [sym_verbatim_string_literal] = ACTIONS(3550), + [sym_grit_metavariable] = ACTIONS(3550), + [aux_sym_preproc_if_token1] = ACTIONS(3550), + [aux_sym_preproc_if_token3] = ACTIONS(3550), + [aux_sym_preproc_else_token1] = ACTIONS(3550), + [aux_sym_preproc_elif_token1] = ACTIONS(3550), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3550), + [sym_interpolation_verbatim_start] = ACTIONS(3550), + [sym_interpolation_raw_start] = ACTIONS(3550), + [sym_raw_string_start] = ACTIONS(3550), + }, + [1993] = { + [sym_preproc_region] = STATE(1993), + [sym_preproc_endregion] = STATE(1993), + [sym_preproc_line] = STATE(1993), + [sym_preproc_pragma] = STATE(1993), + [sym_preproc_nullable] = STATE(1993), + [sym_preproc_error] = STATE(1993), + [sym_preproc_warning] = STATE(1993), + [sym_preproc_define] = STATE(1993), + [sym_preproc_undef] = STATE(1993), [sym__identifier_token] = ACTIONS(3552), [anon_sym_extern] = ACTIONS(3552), [anon_sym_alias] = ACTIONS(3552), @@ -385421,21 +385313,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3552), [anon_sym_unmanaged] = ACTIONS(3552), [anon_sym_checked] = ACTIONS(3552), - [anon_sym_BANG] = ACTIONS(3554), [anon_sym_TILDE] = ACTIONS(3554), - [anon_sym_PLUS_PLUS] = ACTIONS(3554), - [anon_sym_DASH_DASH] = ACTIONS(3554), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [anon_sym_PLUS] = ACTIONS(3552), - [anon_sym_DASH] = ACTIONS(3552), - [anon_sym_STAR] = ACTIONS(3554), - [anon_sym_CARET] = ACTIONS(3554), - [anon_sym_AMP] = ACTIONS(3554), [anon_sym_this] = ACTIONS(3552), [anon_sym_scoped] = ACTIONS(3552), [anon_sym_base] = ACTIONS(3552), [anon_sym_var] = ACTIONS(3552), + [anon_sym_STAR] = ACTIONS(3554), [sym_predefined_type] = ACTIONS(3552), [anon_sym_break] = ACTIONS(3552), [anon_sym_unchecked] = ACTIONS(3552), @@ -385456,6 +385339,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3552), [anon_sym_else] = ACTIONS(3552), [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_CARET] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_PLUS_PLUS] = ACTIONS(3554), + [anon_sym_DASH_DASH] = ACTIONS(3554), + [anon_sym_true] = ACTIONS(3552), + [anon_sym_false] = ACTIONS(3552), [anon_sym_from] = ACTIONS(3552), [anon_sym_into] = ACTIONS(3552), [anon_sym_join] = ACTIONS(3552), @@ -385500,16 +385392,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3554), [sym_raw_string_start] = ACTIONS(3554), }, - [1995] = { - [sym_preproc_region] = STATE(1995), - [sym_preproc_endregion] = STATE(1995), - [sym_preproc_line] = STATE(1995), - [sym_preproc_pragma] = STATE(1995), - [sym_preproc_nullable] = STATE(1995), - [sym_preproc_error] = STATE(1995), - [sym_preproc_warning] = STATE(1995), - [sym_preproc_define] = STATE(1995), - [sym_preproc_undef] = STATE(1995), + [1994] = { + [sym_preproc_region] = STATE(1994), + [sym_preproc_endregion] = STATE(1994), + [sym_preproc_line] = STATE(1994), + [sym_preproc_pragma] = STATE(1994), + [sym_preproc_nullable] = STATE(1994), + [sym_preproc_error] = STATE(1994), + [sym_preproc_warning] = STATE(1994), + [sym_preproc_define] = STATE(1994), + [sym_preproc_undef] = STATE(1994), [sym__identifier_token] = ACTIONS(3556), [anon_sym_extern] = ACTIONS(3556), [anon_sym_alias] = ACTIONS(3556), @@ -385551,21 +385443,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3556), [anon_sym_unmanaged] = ACTIONS(3556), [anon_sym_checked] = ACTIONS(3556), - [anon_sym_BANG] = ACTIONS(3558), [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_DASH_DASH] = ACTIONS(3558), - [anon_sym_true] = ACTIONS(3556), - [anon_sym_false] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3556), - [anon_sym_DASH] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_CARET] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3558), [anon_sym_this] = ACTIONS(3556), [anon_sym_scoped] = ACTIONS(3556), [anon_sym_base] = ACTIONS(3556), [anon_sym_var] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), [sym_predefined_type] = ACTIONS(3556), [anon_sym_break] = ACTIONS(3556), [anon_sym_unchecked] = ACTIONS(3556), @@ -385586,6 +385469,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3556), [anon_sym_else] = ACTIONS(3556), [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_CARET] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [anon_sym_true] = ACTIONS(3556), + [anon_sym_false] = ACTIONS(3556), [anon_sym_from] = ACTIONS(3556), [anon_sym_into] = ACTIONS(3556), [anon_sym_join] = ACTIONS(3556), @@ -385630,16 +385522,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3558), [sym_raw_string_start] = ACTIONS(3558), }, - [1996] = { - [sym_preproc_region] = STATE(1996), - [sym_preproc_endregion] = STATE(1996), - [sym_preproc_line] = STATE(1996), - [sym_preproc_pragma] = STATE(1996), - [sym_preproc_nullable] = STATE(1996), - [sym_preproc_error] = STATE(1996), - [sym_preproc_warning] = STATE(1996), - [sym_preproc_define] = STATE(1996), - [sym_preproc_undef] = STATE(1996), + [1995] = { + [sym_preproc_region] = STATE(1995), + [sym_preproc_endregion] = STATE(1995), + [sym_preproc_line] = STATE(1995), + [sym_preproc_pragma] = STATE(1995), + [sym_preproc_nullable] = STATE(1995), + [sym_preproc_error] = STATE(1995), + [sym_preproc_warning] = STATE(1995), + [sym_preproc_define] = STATE(1995), + [sym_preproc_undef] = STATE(1995), [sym__identifier_token] = ACTIONS(3560), [anon_sym_extern] = ACTIONS(3560), [anon_sym_alias] = ACTIONS(3560), @@ -385681,21 +385573,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3560), [anon_sym_unmanaged] = ACTIONS(3560), [anon_sym_checked] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_true] = ACTIONS(3560), - [anon_sym_false] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_CARET] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3562), [anon_sym_this] = ACTIONS(3560), [anon_sym_scoped] = ACTIONS(3560), [anon_sym_base] = ACTIONS(3560), [anon_sym_var] = ACTIONS(3560), + [anon_sym_STAR] = ACTIONS(3562), [sym_predefined_type] = ACTIONS(3560), [anon_sym_break] = ACTIONS(3560), [anon_sym_unchecked] = ACTIONS(3560), @@ -385716,6 +385599,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3560), [anon_sym_else] = ACTIONS(3560), [anon_sym_DOT_DOT] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3562), + [anon_sym_CARET] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3562), + [anon_sym_DASH_DASH] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3560), + [anon_sym_false] = ACTIONS(3560), [anon_sym_from] = ACTIONS(3560), [anon_sym_into] = ACTIONS(3560), [anon_sym_join] = ACTIONS(3560), @@ -385760,16 +385652,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3562), [sym_raw_string_start] = ACTIONS(3562), }, - [1997] = { - [sym_preproc_region] = STATE(1997), - [sym_preproc_endregion] = STATE(1997), - [sym_preproc_line] = STATE(1997), - [sym_preproc_pragma] = STATE(1997), - [sym_preproc_nullable] = STATE(1997), - [sym_preproc_error] = STATE(1997), - [sym_preproc_warning] = STATE(1997), - [sym_preproc_define] = STATE(1997), - [sym_preproc_undef] = STATE(1997), + [1996] = { + [sym_preproc_region] = STATE(1996), + [sym_preproc_endregion] = STATE(1996), + [sym_preproc_line] = STATE(1996), + [sym_preproc_pragma] = STATE(1996), + [sym_preproc_nullable] = STATE(1996), + [sym_preproc_error] = STATE(1996), + [sym_preproc_warning] = STATE(1996), + [sym_preproc_define] = STATE(1996), + [sym_preproc_undef] = STATE(1996), [sym__identifier_token] = ACTIONS(3564), [anon_sym_extern] = ACTIONS(3564), [anon_sym_alias] = ACTIONS(3564), @@ -385811,21 +385703,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3564), [anon_sym_unmanaged] = ACTIONS(3564), [anon_sym_checked] = ACTIONS(3564), - [anon_sym_BANG] = ACTIONS(3566), [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_PLUS_PLUS] = ACTIONS(3566), - [anon_sym_DASH_DASH] = ACTIONS(3566), - [anon_sym_true] = ACTIONS(3564), - [anon_sym_false] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3566), [anon_sym_this] = ACTIONS(3564), [anon_sym_scoped] = ACTIONS(3564), [anon_sym_base] = ACTIONS(3564), [anon_sym_var] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3566), [sym_predefined_type] = ACTIONS(3564), [anon_sym_break] = ACTIONS(3564), [anon_sym_unchecked] = ACTIONS(3564), @@ -385846,6 +385729,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3564), [anon_sym_else] = ACTIONS(3564), [anon_sym_DOT_DOT] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3566), + [anon_sym_CARET] = ACTIONS(3566), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), [anon_sym_from] = ACTIONS(3564), [anon_sym_into] = ACTIONS(3564), [anon_sym_join] = ACTIONS(3564), @@ -385890,16 +385782,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3566), [sym_raw_string_start] = ACTIONS(3566), }, - [1998] = { - [sym_preproc_region] = STATE(1998), - [sym_preproc_endregion] = STATE(1998), - [sym_preproc_line] = STATE(1998), - [sym_preproc_pragma] = STATE(1998), - [sym_preproc_nullable] = STATE(1998), - [sym_preproc_error] = STATE(1998), - [sym_preproc_warning] = STATE(1998), - [sym_preproc_define] = STATE(1998), - [sym_preproc_undef] = STATE(1998), + [1997] = { + [sym_preproc_region] = STATE(1997), + [sym_preproc_endregion] = STATE(1997), + [sym_preproc_line] = STATE(1997), + [sym_preproc_pragma] = STATE(1997), + [sym_preproc_nullable] = STATE(1997), + [sym_preproc_error] = STATE(1997), + [sym_preproc_warning] = STATE(1997), + [sym_preproc_define] = STATE(1997), + [sym_preproc_undef] = STATE(1997), [sym__identifier_token] = ACTIONS(3568), [anon_sym_extern] = ACTIONS(3568), [anon_sym_alias] = ACTIONS(3568), @@ -385941,21 +385833,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3568), [anon_sym_unmanaged] = ACTIONS(3568), [anon_sym_checked] = ACTIONS(3568), - [anon_sym_BANG] = ACTIONS(3570), [anon_sym_TILDE] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [anon_sym_true] = ACTIONS(3568), - [anon_sym_false] = ACTIONS(3568), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_CARET] = ACTIONS(3570), - [anon_sym_AMP] = ACTIONS(3570), [anon_sym_this] = ACTIONS(3568), [anon_sym_scoped] = ACTIONS(3568), [anon_sym_base] = ACTIONS(3568), [anon_sym_var] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), [sym_predefined_type] = ACTIONS(3568), [anon_sym_break] = ACTIONS(3568), [anon_sym_unchecked] = ACTIONS(3568), @@ -385976,6 +385859,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3568), [anon_sym_else] = ACTIONS(3568), [anon_sym_DOT_DOT] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_CARET] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_BANG] = ACTIONS(3570), + [anon_sym_PLUS_PLUS] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3570), + [anon_sym_true] = ACTIONS(3568), + [anon_sym_false] = ACTIONS(3568), [anon_sym_from] = ACTIONS(3568), [anon_sym_into] = ACTIONS(3568), [anon_sym_join] = ACTIONS(3568), @@ -386020,16 +385912,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3570), [sym_raw_string_start] = ACTIONS(3570), }, - [1999] = { - [sym_preproc_region] = STATE(1999), - [sym_preproc_endregion] = STATE(1999), - [sym_preproc_line] = STATE(1999), - [sym_preproc_pragma] = STATE(1999), - [sym_preproc_nullable] = STATE(1999), - [sym_preproc_error] = STATE(1999), - [sym_preproc_warning] = STATE(1999), - [sym_preproc_define] = STATE(1999), - [sym_preproc_undef] = STATE(1999), + [1998] = { + [sym_preproc_region] = STATE(1998), + [sym_preproc_endregion] = STATE(1998), + [sym_preproc_line] = STATE(1998), + [sym_preproc_pragma] = STATE(1998), + [sym_preproc_nullable] = STATE(1998), + [sym_preproc_error] = STATE(1998), + [sym_preproc_warning] = STATE(1998), + [sym_preproc_define] = STATE(1998), + [sym_preproc_undef] = STATE(1998), [sym__identifier_token] = ACTIONS(3572), [anon_sym_extern] = ACTIONS(3572), [anon_sym_alias] = ACTIONS(3572), @@ -386071,21 +385963,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3572), [anon_sym_unmanaged] = ACTIONS(3572), [anon_sym_checked] = ACTIONS(3572), - [anon_sym_BANG] = ACTIONS(3574), [anon_sym_TILDE] = ACTIONS(3574), - [anon_sym_PLUS_PLUS] = ACTIONS(3574), - [anon_sym_DASH_DASH] = ACTIONS(3574), - [anon_sym_true] = ACTIONS(3572), - [anon_sym_false] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_STAR] = ACTIONS(3574), - [anon_sym_CARET] = ACTIONS(3574), - [anon_sym_AMP] = ACTIONS(3574), [anon_sym_this] = ACTIONS(3572), [anon_sym_scoped] = ACTIONS(3572), [anon_sym_base] = ACTIONS(3572), [anon_sym_var] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3574), [sym_predefined_type] = ACTIONS(3572), [anon_sym_break] = ACTIONS(3572), [anon_sym_unchecked] = ACTIONS(3572), @@ -386106,6 +385989,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3572), [anon_sym_else] = ACTIONS(3572), [anon_sym_DOT_DOT] = ACTIONS(3574), + [anon_sym_AMP] = ACTIONS(3574), + [anon_sym_CARET] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [anon_sym_true] = ACTIONS(3572), + [anon_sym_false] = ACTIONS(3572), [anon_sym_from] = ACTIONS(3572), [anon_sym_into] = ACTIONS(3572), [anon_sym_join] = ACTIONS(3572), @@ -386150,16 +386042,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3574), [sym_raw_string_start] = ACTIONS(3574), }, - [2000] = { - [sym_preproc_region] = STATE(2000), - [sym_preproc_endregion] = STATE(2000), - [sym_preproc_line] = STATE(2000), - [sym_preproc_pragma] = STATE(2000), - [sym_preproc_nullable] = STATE(2000), - [sym_preproc_error] = STATE(2000), - [sym_preproc_warning] = STATE(2000), - [sym_preproc_define] = STATE(2000), - [sym_preproc_undef] = STATE(2000), + [1999] = { + [sym_preproc_region] = STATE(1999), + [sym_preproc_endregion] = STATE(1999), + [sym_preproc_line] = STATE(1999), + [sym_preproc_pragma] = STATE(1999), + [sym_preproc_nullable] = STATE(1999), + [sym_preproc_error] = STATE(1999), + [sym_preproc_warning] = STATE(1999), + [sym_preproc_define] = STATE(1999), + [sym_preproc_undef] = STATE(1999), [sym__identifier_token] = ACTIONS(3576), [anon_sym_extern] = ACTIONS(3576), [anon_sym_alias] = ACTIONS(3576), @@ -386201,21 +386093,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3576), [anon_sym_unmanaged] = ACTIONS(3576), [anon_sym_checked] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3578), [anon_sym_TILDE] = ACTIONS(3578), - [anon_sym_PLUS_PLUS] = ACTIONS(3578), - [anon_sym_DASH_DASH] = ACTIONS(3578), - [anon_sym_true] = ACTIONS(3576), - [anon_sym_false] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(3578), - [anon_sym_CARET] = ACTIONS(3578), - [anon_sym_AMP] = ACTIONS(3578), [anon_sym_this] = ACTIONS(3576), [anon_sym_scoped] = ACTIONS(3576), [anon_sym_base] = ACTIONS(3576), [anon_sym_var] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3578), [sym_predefined_type] = ACTIONS(3576), [anon_sym_break] = ACTIONS(3576), [anon_sym_unchecked] = ACTIONS(3576), @@ -386236,6 +386119,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3576), [anon_sym_else] = ACTIONS(3576), [anon_sym_DOT_DOT] = ACTIONS(3578), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_CARET] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [anon_sym_true] = ACTIONS(3576), + [anon_sym_false] = ACTIONS(3576), [anon_sym_from] = ACTIONS(3576), [anon_sym_into] = ACTIONS(3576), [anon_sym_join] = ACTIONS(3576), @@ -386280,6 +386172,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3578), [sym_raw_string_start] = ACTIONS(3578), }, + [2000] = { + [sym_preproc_region] = STATE(2000), + [sym_preproc_endregion] = STATE(2000), + [sym_preproc_line] = STATE(2000), + [sym_preproc_pragma] = STATE(2000), + [sym_preproc_nullable] = STATE(2000), + [sym_preproc_error] = STATE(2000), + [sym_preproc_warning] = STATE(2000), + [sym_preproc_define] = STATE(2000), + [sym_preproc_undef] = STATE(2000), + [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_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_readonly] = 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_protected] = 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_TILDE] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3191), + [anon_sym_scoped] = ACTIONS(3191), + [anon_sym_base] = ACTIONS(3191), + [anon_sym_var] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3193), + [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_catch] = ACTIONS(3191), + [anon_sym_when] = ACTIONS(3191), + [anon_sym_finally] = 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_AMP] = ACTIONS(3193), + [anon_sym_CARET] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_BANG] = 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_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), + [sym_grit_metavariable] = 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), + }, [2001] = { [sym_preproc_region] = STATE(2001), [sym_preproc_endregion] = STATE(2001), @@ -386331,21 +386353,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3580), [anon_sym_unmanaged] = ACTIONS(3580), [anon_sym_checked] = ACTIONS(3580), - [anon_sym_BANG] = ACTIONS(3582), [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_DASH_DASH] = ACTIONS(3582), - [anon_sym_true] = ACTIONS(3580), - [anon_sym_false] = ACTIONS(3580), - [anon_sym_PLUS] = ACTIONS(3580), - [anon_sym_DASH] = ACTIONS(3580), - [anon_sym_STAR] = ACTIONS(3582), - [anon_sym_CARET] = ACTIONS(3582), - [anon_sym_AMP] = ACTIONS(3582), [anon_sym_this] = ACTIONS(3580), [anon_sym_scoped] = ACTIONS(3580), [anon_sym_base] = ACTIONS(3580), [anon_sym_var] = ACTIONS(3580), + [anon_sym_STAR] = ACTIONS(3582), [sym_predefined_type] = ACTIONS(3580), [anon_sym_break] = ACTIONS(3580), [anon_sym_unchecked] = ACTIONS(3580), @@ -386365,6 +386378,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3580), [anon_sym_if] = ACTIONS(3580), [anon_sym_DOT_DOT] = ACTIONS(3582), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_CARET] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_true] = ACTIONS(3580), + [anon_sym_false] = ACTIONS(3580), [anon_sym_from] = ACTIONS(3580), [anon_sym_into] = ACTIONS(3580), [anon_sym_join] = ACTIONS(3580), @@ -386460,21 +386482,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3584), [anon_sym_unmanaged] = ACTIONS(3584), [anon_sym_checked] = ACTIONS(3584), - [anon_sym_BANG] = ACTIONS(3586), [anon_sym_TILDE] = ACTIONS(3586), - [anon_sym_PLUS_PLUS] = ACTIONS(3586), - [anon_sym_DASH_DASH] = ACTIONS(3586), - [anon_sym_true] = ACTIONS(3584), - [anon_sym_false] = ACTIONS(3584), - [anon_sym_PLUS] = ACTIONS(3584), - [anon_sym_DASH] = ACTIONS(3584), - [anon_sym_STAR] = ACTIONS(3586), - [anon_sym_CARET] = ACTIONS(3586), - [anon_sym_AMP] = ACTIONS(3586), [anon_sym_this] = ACTIONS(3584), [anon_sym_scoped] = ACTIONS(3584), [anon_sym_base] = ACTIONS(3584), [anon_sym_var] = ACTIONS(3584), + [anon_sym_STAR] = ACTIONS(3586), [sym_predefined_type] = ACTIONS(3584), [anon_sym_break] = ACTIONS(3584), [anon_sym_unchecked] = ACTIONS(3584), @@ -386494,6 +386507,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3584), [anon_sym_if] = ACTIONS(3584), [anon_sym_DOT_DOT] = ACTIONS(3586), + [anon_sym_AMP] = ACTIONS(3586), + [anon_sym_CARET] = ACTIONS(3586), + [anon_sym_PLUS] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3584), + [anon_sym_BANG] = ACTIONS(3586), + [anon_sym_PLUS_PLUS] = ACTIONS(3586), + [anon_sym_DASH_DASH] = ACTIONS(3586), + [anon_sym_true] = ACTIONS(3584), + [anon_sym_false] = ACTIONS(3584), [anon_sym_from] = ACTIONS(3584), [anon_sym_into] = ACTIONS(3584), [anon_sym_join] = ACTIONS(3584), @@ -386589,21 +386611,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3588), [anon_sym_unmanaged] = ACTIONS(3588), [anon_sym_checked] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_PLUS_PLUS] = ACTIONS(3590), - [anon_sym_DASH_DASH] = ACTIONS(3590), - [anon_sym_true] = ACTIONS(3588), - [anon_sym_false] = ACTIONS(3588), - [anon_sym_PLUS] = ACTIONS(3588), - [anon_sym_DASH] = ACTIONS(3588), - [anon_sym_STAR] = ACTIONS(3590), - [anon_sym_CARET] = ACTIONS(3590), - [anon_sym_AMP] = ACTIONS(3590), [anon_sym_this] = ACTIONS(3588), [anon_sym_scoped] = ACTIONS(3588), [anon_sym_base] = ACTIONS(3588), [anon_sym_var] = ACTIONS(3588), + [anon_sym_STAR] = ACTIONS(3590), [sym_predefined_type] = ACTIONS(3588), [anon_sym_break] = ACTIONS(3588), [anon_sym_unchecked] = ACTIONS(3588), @@ -386623,6 +386636,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3588), [anon_sym_if] = ACTIONS(3588), [anon_sym_DOT_DOT] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3590), + [anon_sym_CARET] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_PLUS_PLUS] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3590), + [anon_sym_true] = ACTIONS(3588), + [anon_sym_false] = ACTIONS(3588), [anon_sym_from] = ACTIONS(3588), [anon_sym_into] = ACTIONS(3588), [anon_sym_join] = ACTIONS(3588), @@ -386718,21 +386740,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3592), [anon_sym_unmanaged] = ACTIONS(3592), [anon_sym_checked] = ACTIONS(3592), - [anon_sym_BANG] = ACTIONS(3594), [anon_sym_TILDE] = ACTIONS(3594), - [anon_sym_PLUS_PLUS] = ACTIONS(3594), - [anon_sym_DASH_DASH] = ACTIONS(3594), - [anon_sym_true] = ACTIONS(3592), - [anon_sym_false] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3594), - [anon_sym_CARET] = ACTIONS(3594), - [anon_sym_AMP] = ACTIONS(3594), [anon_sym_this] = ACTIONS(3592), [anon_sym_scoped] = ACTIONS(3592), [anon_sym_base] = ACTIONS(3592), [anon_sym_var] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3594), [sym_predefined_type] = ACTIONS(3592), [anon_sym_break] = ACTIONS(3592), [anon_sym_unchecked] = ACTIONS(3592), @@ -386752,6 +386765,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3592), [anon_sym_if] = ACTIONS(3592), [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_AMP] = ACTIONS(3594), + [anon_sym_CARET] = ACTIONS(3594), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_DASH_DASH] = ACTIONS(3594), + [anon_sym_true] = ACTIONS(3592), + [anon_sym_false] = ACTIONS(3592), [anon_sym_from] = ACTIONS(3592), [anon_sym_into] = ACTIONS(3592), [anon_sym_join] = ACTIONS(3592), @@ -386847,21 +386869,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3596), [anon_sym_unmanaged] = ACTIONS(3596), [anon_sym_checked] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3598), [anon_sym_TILDE] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_true] = ACTIONS(3596), - [anon_sym_false] = ACTIONS(3596), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3598), - [anon_sym_CARET] = ACTIONS(3598), - [anon_sym_AMP] = ACTIONS(3598), [anon_sym_this] = ACTIONS(3596), [anon_sym_scoped] = ACTIONS(3596), [anon_sym_base] = ACTIONS(3596), [anon_sym_var] = ACTIONS(3596), + [anon_sym_STAR] = ACTIONS(3598), [sym_predefined_type] = ACTIONS(3596), [anon_sym_break] = ACTIONS(3596), [anon_sym_unchecked] = ACTIONS(3596), @@ -386881,6 +386894,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3596), [anon_sym_if] = ACTIONS(3596), [anon_sym_DOT_DOT] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_CARET] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_true] = ACTIONS(3596), + [anon_sym_false] = ACTIONS(3596), [anon_sym_from] = ACTIONS(3596), [anon_sym_into] = ACTIONS(3596), [anon_sym_join] = ACTIONS(3596), @@ -386976,21 +386998,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3600), [anon_sym_unmanaged] = ACTIONS(3600), [anon_sym_checked] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3602), [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_true] = ACTIONS(3600), - [anon_sym_false] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3602), [anon_sym_this] = ACTIONS(3600), [anon_sym_scoped] = ACTIONS(3600), [anon_sym_base] = ACTIONS(3600), [anon_sym_var] = ACTIONS(3600), + [anon_sym_STAR] = ACTIONS(3602), [sym_predefined_type] = ACTIONS(3600), [anon_sym_break] = ACTIONS(3600), [anon_sym_unchecked] = ACTIONS(3600), @@ -387010,6 +387023,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3600), [anon_sym_if] = ACTIONS(3600), [anon_sym_DOT_DOT] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_CARET] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), + [anon_sym_DASH_DASH] = ACTIONS(3602), + [anon_sym_true] = ACTIONS(3600), + [anon_sym_false] = ACTIONS(3600), [anon_sym_from] = ACTIONS(3600), [anon_sym_into] = ACTIONS(3600), [anon_sym_join] = ACTIONS(3600), @@ -387105,21 +387127,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3604), [anon_sym_unmanaged] = ACTIONS(3604), [anon_sym_checked] = ACTIONS(3604), - [anon_sym_BANG] = ACTIONS(3606), [anon_sym_TILDE] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3606), - [anon_sym_DASH_DASH] = ACTIONS(3606), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_PLUS] = ACTIONS(3604), - [anon_sym_DASH] = ACTIONS(3604), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_CARET] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), [anon_sym_this] = ACTIONS(3604), [anon_sym_scoped] = ACTIONS(3604), [anon_sym_base] = ACTIONS(3604), [anon_sym_var] = ACTIONS(3604), + [anon_sym_STAR] = ACTIONS(3606), [sym_predefined_type] = ACTIONS(3604), [anon_sym_break] = ACTIONS(3604), [anon_sym_unchecked] = ACTIONS(3604), @@ -387139,6 +387152,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3604), [anon_sym_if] = ACTIONS(3604), [anon_sym_DOT_DOT] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3606), + [anon_sym_CARET] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3604), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), [anon_sym_from] = ACTIONS(3604), [anon_sym_into] = ACTIONS(3604), [anon_sym_join] = ACTIONS(3604), @@ -387234,21 +387256,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3608), [anon_sym_unmanaged] = ACTIONS(3608), [anon_sym_checked] = ACTIONS(3608), - [anon_sym_BANG] = ACTIONS(3610), [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [anon_sym_true] = ACTIONS(3608), - [anon_sym_false] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3608), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_CARET] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), [anon_sym_this] = ACTIONS(3608), [anon_sym_scoped] = ACTIONS(3608), [anon_sym_base] = ACTIONS(3608), [anon_sym_var] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3610), [sym_predefined_type] = ACTIONS(3608), [anon_sym_break] = ACTIONS(3608), [anon_sym_unchecked] = ACTIONS(3608), @@ -387268,6 +387281,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3608), [anon_sym_if] = ACTIONS(3608), [anon_sym_DOT_DOT] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_PLUS_PLUS] = ACTIONS(3610), + [anon_sym_DASH_DASH] = ACTIONS(3610), + [anon_sym_true] = ACTIONS(3608), + [anon_sym_false] = ACTIONS(3608), [anon_sym_from] = ACTIONS(3608), [anon_sym_into] = ACTIONS(3608), [anon_sym_join] = ACTIONS(3608), @@ -387322,135 +387344,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2009), [sym_preproc_define] = STATE(2009), [sym_preproc_undef] = STATE(2009), - [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_public] = ACTIONS(3183), - [anon_sym_private] = ACTIONS(3183), - [anon_sym_readonly] = 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_protected] = 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_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), - [sym_grit_metavariable] = 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), - }, - [2010] = { - [sym_preproc_region] = STATE(2010), - [sym_preproc_endregion] = STATE(2010), - [sym_preproc_line] = STATE(2010), - [sym_preproc_pragma] = STATE(2010), - [sym_preproc_nullable] = STATE(2010), - [sym_preproc_error] = STATE(2010), - [sym_preproc_warning] = STATE(2010), - [sym_preproc_define] = STATE(2010), - [sym_preproc_undef] = STATE(2010), [sym__identifier_token] = ACTIONS(3612), [anon_sym_extern] = ACTIONS(3612), [anon_sym_alias] = ACTIONS(3612), @@ -387492,21 +387385,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3612), [anon_sym_unmanaged] = ACTIONS(3612), [anon_sym_checked] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3614), [anon_sym_TILDE] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3614), - [anon_sym_true] = ACTIONS(3612), - [anon_sym_false] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_STAR] = ACTIONS(3614), - [anon_sym_CARET] = ACTIONS(3614), - [anon_sym_AMP] = ACTIONS(3614), [anon_sym_this] = ACTIONS(3612), [anon_sym_scoped] = ACTIONS(3612), [anon_sym_base] = ACTIONS(3612), [anon_sym_var] = ACTIONS(3612), + [anon_sym_STAR] = ACTIONS(3614), [sym_predefined_type] = ACTIONS(3612), [anon_sym_break] = ACTIONS(3612), [anon_sym_unchecked] = ACTIONS(3612), @@ -387526,6 +387410,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3612), [anon_sym_if] = ACTIONS(3612), [anon_sym_DOT_DOT] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3614), + [anon_sym_CARET] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3614), + [anon_sym_true] = ACTIONS(3612), + [anon_sym_false] = ACTIONS(3612), [anon_sym_from] = ACTIONS(3612), [anon_sym_into] = ACTIONS(3612), [anon_sym_join] = ACTIONS(3612), @@ -387570,16 +387463,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3614), [sym_raw_string_start] = ACTIONS(3614), }, - [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), + [2010] = { + [sym_preproc_region] = STATE(2010), + [sym_preproc_endregion] = STATE(2010), + [sym_preproc_line] = STATE(2010), + [sym_preproc_pragma] = STATE(2010), + [sym_preproc_nullable] = STATE(2010), + [sym_preproc_error] = STATE(2010), + [sym_preproc_warning] = STATE(2010), + [sym_preproc_define] = STATE(2010), + [sym_preproc_undef] = STATE(2010), [sym__identifier_token] = ACTIONS(3616), [anon_sym_extern] = ACTIONS(3616), [anon_sym_alias] = ACTIONS(3616), @@ -387621,21 +387514,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3616), [anon_sym_unmanaged] = ACTIONS(3616), [anon_sym_checked] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3618), [anon_sym_TILDE] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3618), - [anon_sym_true] = ACTIONS(3616), - [anon_sym_false] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_STAR] = ACTIONS(3618), - [anon_sym_CARET] = ACTIONS(3618), - [anon_sym_AMP] = ACTIONS(3618), [anon_sym_this] = ACTIONS(3616), [anon_sym_scoped] = ACTIONS(3616), [anon_sym_base] = ACTIONS(3616), [anon_sym_var] = ACTIONS(3616), + [anon_sym_STAR] = ACTIONS(3618), [sym_predefined_type] = ACTIONS(3616), [anon_sym_break] = ACTIONS(3616), [anon_sym_unchecked] = ACTIONS(3616), @@ -387655,6 +387539,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3616), [anon_sym_if] = ACTIONS(3616), [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_CARET] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [anon_sym_true] = ACTIONS(3616), + [anon_sym_false] = ACTIONS(3616), [anon_sym_from] = ACTIONS(3616), [anon_sym_into] = ACTIONS(3616), [anon_sym_join] = ACTIONS(3616), @@ -387699,16 +387592,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3618), [sym_raw_string_start] = ACTIONS(3618), }, - [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), + [2011] = { + [sym_preproc_region] = STATE(2011), + [sym_preproc_endregion] = STATE(2011), + [sym_preproc_line] = STATE(2011), + [sym_preproc_pragma] = STATE(2011), + [sym_preproc_nullable] = STATE(2011), + [sym_preproc_error] = STATE(2011), + [sym_preproc_warning] = STATE(2011), + [sym_preproc_define] = STATE(2011), + [sym_preproc_undef] = STATE(2011), [sym__identifier_token] = ACTIONS(3620), [anon_sym_extern] = ACTIONS(3620), [anon_sym_alias] = ACTIONS(3620), @@ -387750,21 +387643,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3620), [anon_sym_unmanaged] = ACTIONS(3620), [anon_sym_checked] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3622), [anon_sym_TILDE] = ACTIONS(3622), - [anon_sym_PLUS_PLUS] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3620), - [anon_sym_false] = ACTIONS(3620), - [anon_sym_PLUS] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3620), - [anon_sym_STAR] = ACTIONS(3622), - [anon_sym_CARET] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3622), [anon_sym_this] = ACTIONS(3620), [anon_sym_scoped] = ACTIONS(3620), [anon_sym_base] = ACTIONS(3620), [anon_sym_var] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3622), [sym_predefined_type] = ACTIONS(3620), [anon_sym_break] = ACTIONS(3620), [anon_sym_unchecked] = ACTIONS(3620), @@ -387784,6 +387668,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3620), [anon_sym_if] = ACTIONS(3620), [anon_sym_DOT_DOT] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_CARET] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3620), + [anon_sym_false] = ACTIONS(3620), [anon_sym_from] = ACTIONS(3620), [anon_sym_into] = ACTIONS(3620), [anon_sym_join] = ACTIONS(3620), @@ -387828,16 +387721,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3622), [sym_raw_string_start] = ACTIONS(3622), }, - [2013] = { - [sym_preproc_region] = STATE(2013), - [sym_preproc_endregion] = STATE(2013), - [sym_preproc_line] = STATE(2013), - [sym_preproc_pragma] = STATE(2013), - [sym_preproc_nullable] = STATE(2013), - [sym_preproc_error] = STATE(2013), - [sym_preproc_warning] = STATE(2013), - [sym_preproc_define] = STATE(2013), - [sym_preproc_undef] = STATE(2013), + [2012] = { + [sym_preproc_region] = STATE(2012), + [sym_preproc_endregion] = STATE(2012), + [sym_preproc_line] = STATE(2012), + [sym_preproc_pragma] = STATE(2012), + [sym_preproc_nullable] = STATE(2012), + [sym_preproc_error] = STATE(2012), + [sym_preproc_warning] = STATE(2012), + [sym_preproc_define] = STATE(2012), + [sym_preproc_undef] = STATE(2012), [sym__identifier_token] = ACTIONS(3624), [anon_sym_extern] = ACTIONS(3624), [anon_sym_alias] = ACTIONS(3624), @@ -387879,21 +387772,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3624), [anon_sym_unmanaged] = ACTIONS(3624), [anon_sym_checked] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3626), [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [anon_sym_PLUS] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3626), - [anon_sym_CARET] = ACTIONS(3626), - [anon_sym_AMP] = ACTIONS(3626), [anon_sym_this] = ACTIONS(3624), [anon_sym_scoped] = ACTIONS(3624), [anon_sym_base] = ACTIONS(3624), [anon_sym_var] = ACTIONS(3624), + [anon_sym_STAR] = ACTIONS(3626), [sym_predefined_type] = ACTIONS(3624), [anon_sym_break] = ACTIONS(3624), [anon_sym_unchecked] = ACTIONS(3624), @@ -387913,6 +387797,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3624), [anon_sym_if] = ACTIONS(3624), [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_CARET] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3626), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), [anon_sym_from] = ACTIONS(3624), [anon_sym_into] = ACTIONS(3624), [anon_sym_join] = ACTIONS(3624), @@ -387957,16 +387850,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3626), [sym_raw_string_start] = ACTIONS(3626), }, - [2014] = { - [sym_preproc_region] = STATE(2014), - [sym_preproc_endregion] = STATE(2014), - [sym_preproc_line] = STATE(2014), - [sym_preproc_pragma] = STATE(2014), - [sym_preproc_nullable] = STATE(2014), - [sym_preproc_error] = STATE(2014), - [sym_preproc_warning] = STATE(2014), - [sym_preproc_define] = STATE(2014), - [sym_preproc_undef] = STATE(2014), + [2013] = { + [sym_preproc_region] = STATE(2013), + [sym_preproc_endregion] = STATE(2013), + [sym_preproc_line] = STATE(2013), + [sym_preproc_pragma] = STATE(2013), + [sym_preproc_nullable] = STATE(2013), + [sym_preproc_error] = STATE(2013), + [sym_preproc_warning] = STATE(2013), + [sym_preproc_define] = STATE(2013), + [sym_preproc_undef] = STATE(2013), [sym__identifier_token] = ACTIONS(3628), [anon_sym_extern] = ACTIONS(3628), [anon_sym_alias] = ACTIONS(3628), @@ -388008,21 +387901,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3628), [anon_sym_unmanaged] = ACTIONS(3628), [anon_sym_checked] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3630), [anon_sym_TILDE] = ACTIONS(3630), - [anon_sym_PLUS_PLUS] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3630), - [anon_sym_true] = ACTIONS(3628), - [anon_sym_false] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_CARET] = ACTIONS(3630), - [anon_sym_AMP] = ACTIONS(3630), [anon_sym_this] = ACTIONS(3628), [anon_sym_scoped] = ACTIONS(3628), [anon_sym_base] = ACTIONS(3628), [anon_sym_var] = ACTIONS(3628), + [anon_sym_STAR] = ACTIONS(3630), [sym_predefined_type] = ACTIONS(3628), [anon_sym_break] = ACTIONS(3628), [anon_sym_unchecked] = ACTIONS(3628), @@ -388042,6 +387926,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3628), [anon_sym_if] = ACTIONS(3628), [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_CARET] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3628), + [anon_sym_false] = ACTIONS(3628), [anon_sym_from] = ACTIONS(3628), [anon_sym_into] = ACTIONS(3628), [anon_sym_join] = ACTIONS(3628), @@ -388086,16 +387979,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3630), [sym_raw_string_start] = ACTIONS(3630), }, - [2015] = { - [sym_preproc_region] = STATE(2015), - [sym_preproc_endregion] = STATE(2015), - [sym_preproc_line] = STATE(2015), - [sym_preproc_pragma] = STATE(2015), - [sym_preproc_nullable] = STATE(2015), - [sym_preproc_error] = STATE(2015), - [sym_preproc_warning] = STATE(2015), - [sym_preproc_define] = STATE(2015), - [sym_preproc_undef] = STATE(2015), + [2014] = { + [sym_preproc_region] = STATE(2014), + [sym_preproc_endregion] = STATE(2014), + [sym_preproc_line] = STATE(2014), + [sym_preproc_pragma] = STATE(2014), + [sym_preproc_nullable] = STATE(2014), + [sym_preproc_error] = STATE(2014), + [sym_preproc_warning] = STATE(2014), + [sym_preproc_define] = STATE(2014), + [sym_preproc_undef] = STATE(2014), [sym__identifier_token] = ACTIONS(3632), [anon_sym_extern] = ACTIONS(3632), [anon_sym_alias] = ACTIONS(3632), @@ -388137,21 +388030,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3632), [anon_sym_unmanaged] = ACTIONS(3632), [anon_sym_checked] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3634), [anon_sym_TILDE] = ACTIONS(3634), - [anon_sym_PLUS_PLUS] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3634), - [anon_sym_true] = ACTIONS(3632), - [anon_sym_false] = ACTIONS(3632), - [anon_sym_PLUS] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3632), - [anon_sym_STAR] = ACTIONS(3634), - [anon_sym_CARET] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(3634), [anon_sym_this] = ACTIONS(3632), [anon_sym_scoped] = ACTIONS(3632), [anon_sym_base] = ACTIONS(3632), [anon_sym_var] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3634), [sym_predefined_type] = ACTIONS(3632), [anon_sym_break] = ACTIONS(3632), [anon_sym_unchecked] = ACTIONS(3632), @@ -388171,6 +388055,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3632), [anon_sym_if] = ACTIONS(3632), [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_CARET] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3634), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), [anon_sym_from] = ACTIONS(3632), [anon_sym_into] = ACTIONS(3632), [anon_sym_join] = ACTIONS(3632), @@ -388215,16 +388108,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3634), [sym_raw_string_start] = ACTIONS(3634), }, - [2016] = { - [sym_preproc_region] = STATE(2016), - [sym_preproc_endregion] = STATE(2016), - [sym_preproc_line] = STATE(2016), - [sym_preproc_pragma] = STATE(2016), - [sym_preproc_nullable] = STATE(2016), - [sym_preproc_error] = STATE(2016), - [sym_preproc_warning] = STATE(2016), - [sym_preproc_define] = STATE(2016), - [sym_preproc_undef] = STATE(2016), + [2015] = { + [sym_preproc_region] = STATE(2015), + [sym_preproc_endregion] = STATE(2015), + [sym_preproc_line] = STATE(2015), + [sym_preproc_pragma] = STATE(2015), + [sym_preproc_nullable] = STATE(2015), + [sym_preproc_error] = STATE(2015), + [sym_preproc_warning] = STATE(2015), + [sym_preproc_define] = STATE(2015), + [sym_preproc_undef] = STATE(2015), [sym__identifier_token] = ACTIONS(3636), [anon_sym_extern] = ACTIONS(3636), [anon_sym_alias] = ACTIONS(3636), @@ -388266,21 +388159,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3636), [anon_sym_unmanaged] = ACTIONS(3636), [anon_sym_checked] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3638), [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_true] = ACTIONS(3636), - [anon_sym_false] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3638), - [anon_sym_CARET] = ACTIONS(3638), - [anon_sym_AMP] = ACTIONS(3638), [anon_sym_this] = ACTIONS(3636), [anon_sym_scoped] = ACTIONS(3636), [anon_sym_base] = ACTIONS(3636), [anon_sym_var] = ACTIONS(3636), + [anon_sym_STAR] = ACTIONS(3638), [sym_predefined_type] = ACTIONS(3636), [anon_sym_break] = ACTIONS(3636), [anon_sym_unchecked] = ACTIONS(3636), @@ -388300,6 +388184,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3636), [anon_sym_if] = ACTIONS(3636), [anon_sym_DOT_DOT] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [anon_sym_true] = ACTIONS(3636), + [anon_sym_false] = ACTIONS(3636), [anon_sym_from] = ACTIONS(3636), [anon_sym_into] = ACTIONS(3636), [anon_sym_join] = ACTIONS(3636), @@ -388344,16 +388237,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3638), [sym_raw_string_start] = ACTIONS(3638), }, - [2017] = { - [sym_preproc_region] = STATE(2017), - [sym_preproc_endregion] = STATE(2017), - [sym_preproc_line] = STATE(2017), - [sym_preproc_pragma] = STATE(2017), - [sym_preproc_nullable] = STATE(2017), - [sym_preproc_error] = STATE(2017), - [sym_preproc_warning] = STATE(2017), - [sym_preproc_define] = STATE(2017), - [sym_preproc_undef] = STATE(2017), + [2016] = { + [sym_preproc_region] = STATE(2016), + [sym_preproc_endregion] = STATE(2016), + [sym_preproc_line] = STATE(2016), + [sym_preproc_pragma] = STATE(2016), + [sym_preproc_nullable] = STATE(2016), + [sym_preproc_error] = STATE(2016), + [sym_preproc_warning] = STATE(2016), + [sym_preproc_define] = STATE(2016), + [sym_preproc_undef] = STATE(2016), [sym__identifier_token] = ACTIONS(3640), [anon_sym_extern] = ACTIONS(3640), [anon_sym_alias] = ACTIONS(3640), @@ -388395,21 +388288,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3640), [anon_sym_unmanaged] = ACTIONS(3640), [anon_sym_checked] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3642), [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3640), - [anon_sym_false] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(3642), - [anon_sym_CARET] = ACTIONS(3642), - [anon_sym_AMP] = ACTIONS(3642), [anon_sym_this] = ACTIONS(3640), [anon_sym_scoped] = ACTIONS(3640), [anon_sym_base] = ACTIONS(3640), [anon_sym_var] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), [sym_predefined_type] = ACTIONS(3640), [anon_sym_break] = ACTIONS(3640), [anon_sym_unchecked] = ACTIONS(3640), @@ -388429,6 +388313,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3640), [anon_sym_if] = ACTIONS(3640), [anon_sym_DOT_DOT] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_CARET] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_true] = ACTIONS(3640), + [anon_sym_false] = ACTIONS(3640), [anon_sym_from] = ACTIONS(3640), [anon_sym_into] = ACTIONS(3640), [anon_sym_join] = ACTIONS(3640), @@ -388473,16 +388366,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3642), [sym_raw_string_start] = ACTIONS(3642), }, - [2018] = { - [sym_preproc_region] = STATE(2018), - [sym_preproc_endregion] = STATE(2018), - [sym_preproc_line] = STATE(2018), - [sym_preproc_pragma] = STATE(2018), - [sym_preproc_nullable] = STATE(2018), - [sym_preproc_error] = STATE(2018), - [sym_preproc_warning] = STATE(2018), - [sym_preproc_define] = STATE(2018), - [sym_preproc_undef] = STATE(2018), + [2017] = { + [sym_preproc_region] = STATE(2017), + [sym_preproc_endregion] = STATE(2017), + [sym_preproc_line] = STATE(2017), + [sym_preproc_pragma] = STATE(2017), + [sym_preproc_nullable] = STATE(2017), + [sym_preproc_error] = STATE(2017), + [sym_preproc_warning] = STATE(2017), + [sym_preproc_define] = STATE(2017), + [sym_preproc_undef] = STATE(2017), [sym__identifier_token] = ACTIONS(3644), [anon_sym_extern] = ACTIONS(3644), [anon_sym_alias] = ACTIONS(3644), @@ -388524,21 +388417,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3644), [anon_sym_unmanaged] = ACTIONS(3644), [anon_sym_checked] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3646), [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_DASH_DASH] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3646), - [anon_sym_CARET] = ACTIONS(3646), - [anon_sym_AMP] = ACTIONS(3646), [anon_sym_this] = ACTIONS(3644), [anon_sym_scoped] = ACTIONS(3644), [anon_sym_base] = ACTIONS(3644), [anon_sym_var] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3646), [sym_predefined_type] = ACTIONS(3644), [anon_sym_break] = ACTIONS(3644), [anon_sym_unchecked] = ACTIONS(3644), @@ -388558,6 +388442,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3644), [anon_sym_if] = ACTIONS(3644), [anon_sym_DOT_DOT] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_CARET] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [anon_sym_true] = ACTIONS(3644), + [anon_sym_false] = ACTIONS(3644), [anon_sym_from] = ACTIONS(3644), [anon_sym_into] = ACTIONS(3644), [anon_sym_join] = ACTIONS(3644), @@ -388602,16 +388495,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3646), [sym_raw_string_start] = ACTIONS(3646), }, - [2019] = { - [sym_preproc_region] = STATE(2019), - [sym_preproc_endregion] = STATE(2019), - [sym_preproc_line] = STATE(2019), - [sym_preproc_pragma] = STATE(2019), - [sym_preproc_nullable] = STATE(2019), - [sym_preproc_error] = STATE(2019), - [sym_preproc_warning] = STATE(2019), - [sym_preproc_define] = STATE(2019), - [sym_preproc_undef] = STATE(2019), + [2018] = { + [sym_preproc_region] = STATE(2018), + [sym_preproc_endregion] = STATE(2018), + [sym_preproc_line] = STATE(2018), + [sym_preproc_pragma] = STATE(2018), + [sym_preproc_nullable] = STATE(2018), + [sym_preproc_error] = STATE(2018), + [sym_preproc_warning] = STATE(2018), + [sym_preproc_define] = STATE(2018), + [sym_preproc_undef] = STATE(2018), [sym__identifier_token] = ACTIONS(3648), [anon_sym_extern] = ACTIONS(3648), [anon_sym_alias] = ACTIONS(3648), @@ -388653,21 +388546,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3648), [anon_sym_unmanaged] = ACTIONS(3648), [anon_sym_checked] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(3650), [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_DASH_DASH] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3648), - [anon_sym_false] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_CARET] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), [anon_sym_this] = ACTIONS(3648), [anon_sym_scoped] = ACTIONS(3648), [anon_sym_base] = ACTIONS(3648), [anon_sym_var] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), [sym_predefined_type] = ACTIONS(3648), [anon_sym_break] = ACTIONS(3648), [anon_sym_unchecked] = ACTIONS(3648), @@ -388687,6 +388571,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3648), [anon_sym_if] = ACTIONS(3648), [anon_sym_DOT_DOT] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_CARET] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_true] = ACTIONS(3648), + [anon_sym_false] = ACTIONS(3648), [anon_sym_from] = ACTIONS(3648), [anon_sym_into] = ACTIONS(3648), [anon_sym_join] = ACTIONS(3648), @@ -388731,16 +388624,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3650), [sym_raw_string_start] = ACTIONS(3650), }, - [2020] = { - [sym_preproc_region] = STATE(2020), - [sym_preproc_endregion] = STATE(2020), - [sym_preproc_line] = STATE(2020), - [sym_preproc_pragma] = STATE(2020), - [sym_preproc_nullable] = STATE(2020), - [sym_preproc_error] = STATE(2020), - [sym_preproc_warning] = STATE(2020), - [sym_preproc_define] = STATE(2020), - [sym_preproc_undef] = STATE(2020), + [2019] = { + [sym_preproc_region] = STATE(2019), + [sym_preproc_endregion] = STATE(2019), + [sym_preproc_line] = STATE(2019), + [sym_preproc_pragma] = STATE(2019), + [sym_preproc_nullable] = STATE(2019), + [sym_preproc_error] = STATE(2019), + [sym_preproc_warning] = STATE(2019), + [sym_preproc_define] = STATE(2019), + [sym_preproc_undef] = STATE(2019), [sym__identifier_token] = ACTIONS(3652), [anon_sym_extern] = ACTIONS(3652), [anon_sym_alias] = ACTIONS(3652), @@ -388782,21 +388675,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3652), [anon_sym_unmanaged] = ACTIONS(3652), [anon_sym_checked] = ACTIONS(3652), - [anon_sym_BANG] = ACTIONS(3654), [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_true] = ACTIONS(3652), - [anon_sym_false] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_CARET] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), [anon_sym_this] = ACTIONS(3652), [anon_sym_scoped] = ACTIONS(3652), [anon_sym_base] = ACTIONS(3652), [anon_sym_var] = ACTIONS(3652), + [anon_sym_STAR] = ACTIONS(3654), [sym_predefined_type] = ACTIONS(3652), [anon_sym_break] = ACTIONS(3652), [anon_sym_unchecked] = ACTIONS(3652), @@ -388816,6 +388700,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3652), [anon_sym_if] = ACTIONS(3652), [anon_sym_DOT_DOT] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3654), + [anon_sym_CARET] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3652), + [anon_sym_false] = ACTIONS(3652), [anon_sym_from] = ACTIONS(3652), [anon_sym_into] = ACTIONS(3652), [anon_sym_join] = ACTIONS(3652), @@ -388860,16 +388753,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3654), [sym_raw_string_start] = ACTIONS(3654), }, - [2021] = { - [sym_preproc_region] = STATE(2021), - [sym_preproc_endregion] = STATE(2021), - [sym_preproc_line] = STATE(2021), - [sym_preproc_pragma] = STATE(2021), - [sym_preproc_nullable] = STATE(2021), - [sym_preproc_error] = STATE(2021), - [sym_preproc_warning] = STATE(2021), - [sym_preproc_define] = STATE(2021), - [sym_preproc_undef] = STATE(2021), + [2020] = { + [sym_preproc_region] = STATE(2020), + [sym_preproc_endregion] = STATE(2020), + [sym_preproc_line] = STATE(2020), + [sym_preproc_pragma] = STATE(2020), + [sym_preproc_nullable] = STATE(2020), + [sym_preproc_error] = STATE(2020), + [sym_preproc_warning] = STATE(2020), + [sym_preproc_define] = STATE(2020), + [sym_preproc_undef] = STATE(2020), [sym__identifier_token] = ACTIONS(3656), [anon_sym_extern] = ACTIONS(3656), [anon_sym_alias] = ACTIONS(3656), @@ -388911,21 +388804,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3656), [anon_sym_unmanaged] = ACTIONS(3656), [anon_sym_checked] = ACTIONS(3656), - [anon_sym_BANG] = ACTIONS(3658), [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3658), - [anon_sym_DASH_DASH] = ACTIONS(3658), - [anon_sym_true] = ACTIONS(3656), - [anon_sym_false] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3656), - [anon_sym_DASH] = ACTIONS(3656), - [anon_sym_STAR] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), [anon_sym_this] = ACTIONS(3656), [anon_sym_scoped] = ACTIONS(3656), [anon_sym_base] = ACTIONS(3656), [anon_sym_var] = ACTIONS(3656), + [anon_sym_STAR] = ACTIONS(3658), [sym_predefined_type] = ACTIONS(3656), [anon_sym_break] = ACTIONS(3656), [anon_sym_unchecked] = ACTIONS(3656), @@ -388945,6 +388829,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3656), [anon_sym_if] = ACTIONS(3656), [anon_sym_DOT_DOT] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3658), + [anon_sym_CARET] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3656), + [anon_sym_false] = ACTIONS(3656), [anon_sym_from] = ACTIONS(3656), [anon_sym_into] = ACTIONS(3656), [anon_sym_join] = ACTIONS(3656), @@ -388989,16 +388882,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3658), [sym_raw_string_start] = ACTIONS(3658), }, - [2022] = { - [sym_preproc_region] = STATE(2022), - [sym_preproc_endregion] = STATE(2022), - [sym_preproc_line] = STATE(2022), - [sym_preproc_pragma] = STATE(2022), - [sym_preproc_nullable] = STATE(2022), - [sym_preproc_error] = STATE(2022), - [sym_preproc_warning] = STATE(2022), - [sym_preproc_define] = STATE(2022), - [sym_preproc_undef] = STATE(2022), + [2021] = { + [sym_preproc_region] = STATE(2021), + [sym_preproc_endregion] = STATE(2021), + [sym_preproc_line] = STATE(2021), + [sym_preproc_pragma] = STATE(2021), + [sym_preproc_nullable] = STATE(2021), + [sym_preproc_error] = STATE(2021), + [sym_preproc_warning] = STATE(2021), + [sym_preproc_define] = STATE(2021), + [sym_preproc_undef] = STATE(2021), [sym__identifier_token] = ACTIONS(3660), [anon_sym_extern] = ACTIONS(3660), [anon_sym_alias] = ACTIONS(3660), @@ -389040,21 +388933,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3660), [anon_sym_unmanaged] = ACTIONS(3660), [anon_sym_checked] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), [anon_sym_TILDE] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_true] = ACTIONS(3660), - [anon_sym_false] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), [anon_sym_this] = ACTIONS(3660), [anon_sym_scoped] = ACTIONS(3660), [anon_sym_base] = ACTIONS(3660), [anon_sym_var] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), [sym_predefined_type] = ACTIONS(3660), [anon_sym_break] = ACTIONS(3660), [anon_sym_unchecked] = ACTIONS(3660), @@ -389074,6 +388958,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3660), [anon_sym_if] = ACTIONS(3660), [anon_sym_DOT_DOT] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_CARET] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_true] = ACTIONS(3660), + [anon_sym_false] = ACTIONS(3660), [anon_sym_from] = ACTIONS(3660), [anon_sym_into] = ACTIONS(3660), [anon_sym_join] = ACTIONS(3660), @@ -389118,16 +389011,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3662), [sym_raw_string_start] = ACTIONS(3662), }, - [2023] = { - [sym_preproc_region] = STATE(2023), - [sym_preproc_endregion] = STATE(2023), - [sym_preproc_line] = STATE(2023), - [sym_preproc_pragma] = STATE(2023), - [sym_preproc_nullable] = STATE(2023), - [sym_preproc_error] = STATE(2023), - [sym_preproc_warning] = STATE(2023), - [sym_preproc_define] = STATE(2023), - [sym_preproc_undef] = STATE(2023), + [2022] = { + [sym_preproc_region] = STATE(2022), + [sym_preproc_endregion] = STATE(2022), + [sym_preproc_line] = STATE(2022), + [sym_preproc_pragma] = STATE(2022), + [sym_preproc_nullable] = STATE(2022), + [sym_preproc_error] = STATE(2022), + [sym_preproc_warning] = STATE(2022), + [sym_preproc_define] = STATE(2022), + [sym_preproc_undef] = STATE(2022), [sym__identifier_token] = ACTIONS(3664), [anon_sym_extern] = ACTIONS(3664), [anon_sym_alias] = ACTIONS(3664), @@ -389169,21 +389062,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3664), [anon_sym_unmanaged] = ACTIONS(3664), [anon_sym_checked] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3666), [anon_sym_TILDE] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3666), - [anon_sym_DASH_DASH] = ACTIONS(3666), - [anon_sym_true] = ACTIONS(3664), - [anon_sym_false] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3664), - [anon_sym_STAR] = ACTIONS(3666), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3666), [anon_sym_this] = ACTIONS(3664), [anon_sym_scoped] = ACTIONS(3664), [anon_sym_base] = ACTIONS(3664), [anon_sym_var] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), [sym_predefined_type] = ACTIONS(3664), [anon_sym_break] = ACTIONS(3664), [anon_sym_unchecked] = ACTIONS(3664), @@ -389203,6 +389087,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3664), [anon_sym_if] = ACTIONS(3664), [anon_sym_DOT_DOT] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_true] = ACTIONS(3664), + [anon_sym_false] = ACTIONS(3664), [anon_sym_from] = ACTIONS(3664), [anon_sym_into] = ACTIONS(3664), [anon_sym_join] = ACTIONS(3664), @@ -389247,16 +389140,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3666), [sym_raw_string_start] = ACTIONS(3666), }, - [2024] = { - [sym_preproc_region] = STATE(2024), - [sym_preproc_endregion] = STATE(2024), - [sym_preproc_line] = STATE(2024), - [sym_preproc_pragma] = STATE(2024), - [sym_preproc_nullable] = STATE(2024), - [sym_preproc_error] = STATE(2024), - [sym_preproc_warning] = STATE(2024), - [sym_preproc_define] = STATE(2024), - [sym_preproc_undef] = STATE(2024), + [2023] = { + [sym_preproc_region] = STATE(2023), + [sym_preproc_endregion] = STATE(2023), + [sym_preproc_line] = STATE(2023), + [sym_preproc_pragma] = STATE(2023), + [sym_preproc_nullable] = STATE(2023), + [sym_preproc_error] = STATE(2023), + [sym_preproc_warning] = STATE(2023), + [sym_preproc_define] = STATE(2023), + [sym_preproc_undef] = STATE(2023), [sym__identifier_token] = ACTIONS(3668), [anon_sym_extern] = ACTIONS(3668), [anon_sym_alias] = ACTIONS(3668), @@ -389298,21 +389191,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3668), [anon_sym_unmanaged] = ACTIONS(3668), [anon_sym_checked] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3670), [anon_sym_TILDE] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3670), - [anon_sym_DASH_DASH] = ACTIONS(3670), - [anon_sym_true] = ACTIONS(3668), - [anon_sym_false] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_CARET] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), [anon_sym_this] = ACTIONS(3668), [anon_sym_scoped] = ACTIONS(3668), [anon_sym_base] = ACTIONS(3668), [anon_sym_var] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [sym_predefined_type] = ACTIONS(3668), [anon_sym_break] = ACTIONS(3668), [anon_sym_unchecked] = ACTIONS(3668), @@ -389332,6 +389216,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3668), [anon_sym_if] = ACTIONS(3668), [anon_sym_DOT_DOT] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_true] = ACTIONS(3668), + [anon_sym_false] = ACTIONS(3668), [anon_sym_from] = ACTIONS(3668), [anon_sym_into] = ACTIONS(3668), [anon_sym_join] = ACTIONS(3668), @@ -389376,16 +389269,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3670), [sym_raw_string_start] = ACTIONS(3670), }, - [2025] = { - [sym_preproc_region] = STATE(2025), - [sym_preproc_endregion] = STATE(2025), - [sym_preproc_line] = STATE(2025), - [sym_preproc_pragma] = STATE(2025), - [sym_preproc_nullable] = STATE(2025), - [sym_preproc_error] = STATE(2025), - [sym_preproc_warning] = STATE(2025), - [sym_preproc_define] = STATE(2025), - [sym_preproc_undef] = STATE(2025), + [2024] = { + [sym_preproc_region] = STATE(2024), + [sym_preproc_endregion] = STATE(2024), + [sym_preproc_line] = STATE(2024), + [sym_preproc_pragma] = STATE(2024), + [sym_preproc_nullable] = STATE(2024), + [sym_preproc_error] = STATE(2024), + [sym_preproc_warning] = STATE(2024), + [sym_preproc_define] = STATE(2024), + [sym_preproc_undef] = STATE(2024), [sym__identifier_token] = ACTIONS(3672), [anon_sym_extern] = ACTIONS(3672), [anon_sym_alias] = ACTIONS(3672), @@ -389427,21 +389320,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3672), [anon_sym_unmanaged] = ACTIONS(3672), [anon_sym_checked] = ACTIONS(3672), - [anon_sym_BANG] = ACTIONS(3674), [anon_sym_TILDE] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3674), - [anon_sym_true] = ACTIONS(3672), - [anon_sym_false] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_STAR] = ACTIONS(3674), - [anon_sym_CARET] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3674), [anon_sym_this] = ACTIONS(3672), [anon_sym_scoped] = ACTIONS(3672), [anon_sym_base] = ACTIONS(3672), [anon_sym_var] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), [sym_predefined_type] = ACTIONS(3672), [anon_sym_break] = ACTIONS(3672), [anon_sym_unchecked] = ACTIONS(3672), @@ -389461,6 +389345,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3672), [anon_sym_if] = ACTIONS(3672), [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_CARET] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_true] = ACTIONS(3672), + [anon_sym_false] = ACTIONS(3672), [anon_sym_from] = ACTIONS(3672), [anon_sym_into] = ACTIONS(3672), [anon_sym_join] = ACTIONS(3672), @@ -389505,16 +389398,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3674), [sym_raw_string_start] = ACTIONS(3674), }, - [2026] = { - [sym_preproc_region] = STATE(2026), - [sym_preproc_endregion] = STATE(2026), - [sym_preproc_line] = STATE(2026), - [sym_preproc_pragma] = STATE(2026), - [sym_preproc_nullable] = STATE(2026), - [sym_preproc_error] = STATE(2026), - [sym_preproc_warning] = STATE(2026), - [sym_preproc_define] = STATE(2026), - [sym_preproc_undef] = STATE(2026), + [2025] = { + [sym_preproc_region] = STATE(2025), + [sym_preproc_endregion] = STATE(2025), + [sym_preproc_line] = STATE(2025), + [sym_preproc_pragma] = STATE(2025), + [sym_preproc_nullable] = STATE(2025), + [sym_preproc_error] = STATE(2025), + [sym_preproc_warning] = STATE(2025), + [sym_preproc_define] = STATE(2025), + [sym_preproc_undef] = STATE(2025), [sym__identifier_token] = ACTIONS(3676), [anon_sym_extern] = ACTIONS(3676), [anon_sym_alias] = ACTIONS(3676), @@ -389556,21 +389449,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3676), [anon_sym_unmanaged] = ACTIONS(3676), [anon_sym_checked] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3678), - [anon_sym_DASH_DASH] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3676), - [anon_sym_false] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_CARET] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(3678), [anon_sym_this] = ACTIONS(3676), [anon_sym_scoped] = ACTIONS(3676), [anon_sym_base] = ACTIONS(3676), [anon_sym_var] = ACTIONS(3676), + [anon_sym_STAR] = ACTIONS(3678), [sym_predefined_type] = ACTIONS(3676), [anon_sym_break] = ACTIONS(3676), [anon_sym_unchecked] = ACTIONS(3676), @@ -389590,6 +389474,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3676), [anon_sym_if] = ACTIONS(3676), [anon_sym_DOT_DOT] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [anon_sym_true] = ACTIONS(3676), + [anon_sym_false] = ACTIONS(3676), [anon_sym_from] = ACTIONS(3676), [anon_sym_into] = ACTIONS(3676), [anon_sym_join] = ACTIONS(3676), @@ -389634,16 +389527,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3678), [sym_raw_string_start] = ACTIONS(3678), }, - [2027] = { - [sym_preproc_region] = STATE(2027), - [sym_preproc_endregion] = STATE(2027), - [sym_preproc_line] = STATE(2027), - [sym_preproc_pragma] = STATE(2027), - [sym_preproc_nullable] = STATE(2027), - [sym_preproc_error] = STATE(2027), - [sym_preproc_warning] = STATE(2027), - [sym_preproc_define] = STATE(2027), - [sym_preproc_undef] = STATE(2027), + [2026] = { + [sym_preproc_region] = STATE(2026), + [sym_preproc_endregion] = STATE(2026), + [sym_preproc_line] = STATE(2026), + [sym_preproc_pragma] = STATE(2026), + [sym_preproc_nullable] = STATE(2026), + [sym_preproc_error] = STATE(2026), + [sym_preproc_warning] = STATE(2026), + [sym_preproc_define] = STATE(2026), + [sym_preproc_undef] = STATE(2026), [sym__identifier_token] = ACTIONS(3680), [anon_sym_extern] = ACTIONS(3680), [anon_sym_alias] = ACTIONS(3680), @@ -389685,21 +389578,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3680), [anon_sym_unmanaged] = ACTIONS(3680), [anon_sym_checked] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3682), [anon_sym_TILDE] = ACTIONS(3682), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_AMP] = ACTIONS(3682), [anon_sym_this] = ACTIONS(3680), [anon_sym_scoped] = ACTIONS(3680), [anon_sym_base] = ACTIONS(3680), [anon_sym_var] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3682), [sym_predefined_type] = ACTIONS(3680), [anon_sym_break] = ACTIONS(3680), [anon_sym_unchecked] = ACTIONS(3680), @@ -389719,6 +389603,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3680), [anon_sym_if] = ACTIONS(3680), [anon_sym_DOT_DOT] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_CARET] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [anon_sym_true] = ACTIONS(3680), + [anon_sym_false] = ACTIONS(3680), [anon_sym_from] = ACTIONS(3680), [anon_sym_into] = ACTIONS(3680), [anon_sym_join] = ACTIONS(3680), @@ -389763,16 +389656,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3682), [sym_raw_string_start] = ACTIONS(3682), }, - [2028] = { - [sym_preproc_region] = STATE(2028), - [sym_preproc_endregion] = STATE(2028), - [sym_preproc_line] = STATE(2028), - [sym_preproc_pragma] = STATE(2028), - [sym_preproc_nullable] = STATE(2028), - [sym_preproc_error] = STATE(2028), - [sym_preproc_warning] = STATE(2028), - [sym_preproc_define] = STATE(2028), - [sym_preproc_undef] = STATE(2028), + [2027] = { + [sym_preproc_region] = STATE(2027), + [sym_preproc_endregion] = STATE(2027), + [sym_preproc_line] = STATE(2027), + [sym_preproc_pragma] = STATE(2027), + [sym_preproc_nullable] = STATE(2027), + [sym_preproc_error] = STATE(2027), + [sym_preproc_warning] = STATE(2027), + [sym_preproc_define] = STATE(2027), + [sym_preproc_undef] = STATE(2027), [sym__identifier_token] = ACTIONS(3684), [anon_sym_extern] = ACTIONS(3684), [anon_sym_alias] = ACTIONS(3684), @@ -389814,21 +389707,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3684), [anon_sym_unmanaged] = ACTIONS(3684), [anon_sym_checked] = ACTIONS(3684), - [anon_sym_BANG] = ACTIONS(3686), [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_true] = ACTIONS(3684), - [anon_sym_false] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3686), [anon_sym_this] = ACTIONS(3684), [anon_sym_scoped] = ACTIONS(3684), [anon_sym_base] = ACTIONS(3684), [anon_sym_var] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), [sym_predefined_type] = ACTIONS(3684), [anon_sym_break] = ACTIONS(3684), [anon_sym_unchecked] = ACTIONS(3684), @@ -389848,6 +389732,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3684), [anon_sym_if] = ACTIONS(3684), [anon_sym_DOT_DOT] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_CARET] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_true] = ACTIONS(3684), + [anon_sym_false] = ACTIONS(3684), [anon_sym_from] = ACTIONS(3684), [anon_sym_into] = ACTIONS(3684), [anon_sym_join] = ACTIONS(3684), @@ -389892,6 +389785,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3686), [sym_raw_string_start] = ACTIONS(3686), }, + [2028] = { + [sym_preproc_region] = STATE(2028), + [sym_preproc_endregion] = STATE(2028), + [sym_preproc_line] = STATE(2028), + [sym_preproc_pragma] = STATE(2028), + [sym_preproc_nullable] = STATE(2028), + [sym_preproc_error] = STATE(2028), + [sym_preproc_warning] = STATE(2028), + [sym_preproc_define] = STATE(2028), + [sym_preproc_undef] = STATE(2028), + [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_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_readonly] = 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_protected] = 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_TILDE] = ACTIONS(3185), + [anon_sym_this] = ACTIONS(3183), + [anon_sym_scoped] = ACTIONS(3183), + [anon_sym_base] = ACTIONS(3183), + [anon_sym_var] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [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_DOT_DOT] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_CARET] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_BANG] = 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_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), + [sym_grit_metavariable] = 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), + }, [2029] = { [sym_preproc_region] = STATE(2029), [sym_preproc_endregion] = STATE(2029), @@ -389902,123 +389924,123 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3420), - [sym__identifier_token] = ACTIONS(3418), - [anon_sym_extern] = ACTIONS(3418), - [anon_sym_alias] = ACTIONS(3418), - [anon_sym_SEMI] = ACTIONS(3420), - [anon_sym_global] = ACTIONS(3418), - [anon_sym_using] = ACTIONS(3418), - [anon_sym_unsafe] = ACTIONS(3418), - [anon_sym_static] = ACTIONS(3418), - [anon_sym_LBRACK] = ACTIONS(3420), - [anon_sym_LPAREN] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3418), - [anon_sym_namespace] = ACTIONS(3418), - [anon_sym_class] = ACTIONS(3418), - [anon_sym_ref] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(3418), - [anon_sym_enum] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(3420), - [anon_sym_interface] = ACTIONS(3418), - [anon_sym_delegate] = ACTIONS(3418), - [anon_sym_record] = ACTIONS(3418), - [anon_sym_public] = ACTIONS(3418), - [anon_sym_private] = ACTIONS(3418), - [anon_sym_readonly] = ACTIONS(3418), - [anon_sym_abstract] = ACTIONS(3418), - [anon_sym_async] = ACTIONS(3418), - [anon_sym_const] = ACTIONS(3418), - [anon_sym_file] = ACTIONS(3418), - [anon_sym_fixed] = ACTIONS(3418), - [anon_sym_internal] = ACTIONS(3418), - [anon_sym_new] = ACTIONS(3418), - [anon_sym_override] = ACTIONS(3418), - [anon_sym_partial] = ACTIONS(3418), - [anon_sym_protected] = ACTIONS(3418), - [anon_sym_required] = ACTIONS(3418), - [anon_sym_sealed] = ACTIONS(3418), - [anon_sym_virtual] = ACTIONS(3418), - [anon_sym_volatile] = ACTIONS(3418), - [anon_sym_where] = ACTIONS(3418), - [anon_sym_notnull] = ACTIONS(3418), - [anon_sym_unmanaged] = ACTIONS(3418), - [anon_sym_checked] = ACTIONS(3418), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3420), - [anon_sym_true] = ACTIONS(3418), - [anon_sym_false] = ACTIONS(3418), - [anon_sym_PLUS] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3418), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_CARET] = ACTIONS(3420), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_this] = ACTIONS(3418), - [anon_sym_scoped] = ACTIONS(3418), - [anon_sym_base] = ACTIONS(3418), - [anon_sym_var] = ACTIONS(3418), - [sym_predefined_type] = ACTIONS(3418), - [anon_sym_break] = ACTIONS(3418), - [anon_sym_unchecked] = ACTIONS(3418), - [anon_sym_continue] = ACTIONS(3418), - [anon_sym_do] = ACTIONS(3418), - [anon_sym_while] = ACTIONS(3418), - [anon_sym_for] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3418), - [anon_sym_yield] = ACTIONS(3418), - [anon_sym_switch] = ACTIONS(3418), - [anon_sym_default] = ACTIONS(3418), - [anon_sym_throw] = ACTIONS(3418), - [anon_sym_try] = ACTIONS(3418), - [anon_sym_when] = ACTIONS(3418), - [anon_sym_await] = ACTIONS(3418), - [anon_sym_foreach] = ACTIONS(3418), - [anon_sym_goto] = ACTIONS(3418), - [anon_sym_if] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(3688), - [anon_sym_DOT_DOT] = ACTIONS(3420), - [anon_sym_from] = ACTIONS(3418), - [anon_sym_into] = ACTIONS(3418), - [anon_sym_join] = ACTIONS(3418), - [anon_sym_on] = ACTIONS(3418), - [anon_sym_equals] = ACTIONS(3418), - [anon_sym_let] = ACTIONS(3418), - [anon_sym_orderby] = ACTIONS(3418), - [anon_sym_ascending] = ACTIONS(3418), - [anon_sym_descending] = ACTIONS(3418), - [anon_sym_group] = ACTIONS(3418), - [anon_sym_by] = ACTIONS(3418), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_stackalloc] = ACTIONS(3418), - [anon_sym_sizeof] = ACTIONS(3418), - [anon_sym_typeof] = ACTIONS(3418), - [anon_sym___makeref] = ACTIONS(3418), - [anon_sym___reftype] = ACTIONS(3418), - [anon_sym___refvalue] = ACTIONS(3418), - [sym_null_literal] = ACTIONS(3418), - [anon_sym_SQUOTE] = ACTIONS(3420), - [sym_integer_literal] = ACTIONS(3418), - [sym_real_literal] = ACTIONS(3420), - [anon_sym_DQUOTE] = ACTIONS(3420), - [sym_verbatim_string_literal] = ACTIONS(3420), - [sym_grit_metavariable] = ACTIONS(3420), - [aux_sym_preproc_if_token1] = ACTIONS(3420), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3420), - [sym_interpolation_verbatim_start] = ACTIONS(3420), - [sym_interpolation_raw_start] = ACTIONS(3420), - [sym_raw_string_start] = ACTIONS(3420), + [ts_builtin_sym_end] = ACTIONS(3506), + [sym__identifier_token] = ACTIONS(3504), + [anon_sym_extern] = ACTIONS(3504), + [anon_sym_alias] = ACTIONS(3504), + [anon_sym_SEMI] = ACTIONS(3506), + [anon_sym_global] = ACTIONS(3504), + [anon_sym_using] = ACTIONS(3504), + [anon_sym_unsafe] = ACTIONS(3504), + [anon_sym_static] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3506), + [anon_sym_LPAREN] = ACTIONS(3506), + [anon_sym_return] = ACTIONS(3504), + [anon_sym_namespace] = ACTIONS(3504), + [anon_sym_class] = ACTIONS(3504), + [anon_sym_ref] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(3504), + [anon_sym_enum] = ACTIONS(3504), + [anon_sym_LBRACE] = ACTIONS(3506), + [anon_sym_interface] = ACTIONS(3504), + [anon_sym_delegate] = ACTIONS(3504), + [anon_sym_record] = ACTIONS(3504), + [anon_sym_public] = ACTIONS(3504), + [anon_sym_private] = ACTIONS(3504), + [anon_sym_readonly] = ACTIONS(3504), + [anon_sym_abstract] = ACTIONS(3504), + [anon_sym_async] = ACTIONS(3504), + [anon_sym_const] = ACTIONS(3504), + [anon_sym_file] = ACTIONS(3504), + [anon_sym_fixed] = ACTIONS(3504), + [anon_sym_internal] = ACTIONS(3504), + [anon_sym_new] = ACTIONS(3504), + [anon_sym_override] = ACTIONS(3504), + [anon_sym_partial] = ACTIONS(3504), + [anon_sym_protected] = ACTIONS(3504), + [anon_sym_required] = ACTIONS(3504), + [anon_sym_sealed] = ACTIONS(3504), + [anon_sym_virtual] = ACTIONS(3504), + [anon_sym_volatile] = ACTIONS(3504), + [anon_sym_where] = ACTIONS(3504), + [anon_sym_notnull] = ACTIONS(3504), + [anon_sym_unmanaged] = ACTIONS(3504), + [anon_sym_checked] = ACTIONS(3504), + [anon_sym_TILDE] = ACTIONS(3506), + [anon_sym_this] = ACTIONS(3504), + [anon_sym_scoped] = ACTIONS(3504), + [anon_sym_base] = ACTIONS(3504), + [anon_sym_var] = ACTIONS(3504), + [anon_sym_STAR] = ACTIONS(3506), + [sym_predefined_type] = ACTIONS(3504), + [anon_sym_break] = ACTIONS(3504), + [anon_sym_unchecked] = ACTIONS(3504), + [anon_sym_continue] = ACTIONS(3504), + [anon_sym_do] = ACTIONS(3504), + [anon_sym_while] = ACTIONS(3504), + [anon_sym_for] = ACTIONS(3504), + [anon_sym_lock] = ACTIONS(3504), + [anon_sym_yield] = ACTIONS(3504), + [anon_sym_switch] = ACTIONS(3504), + [anon_sym_default] = ACTIONS(3504), + [anon_sym_throw] = ACTIONS(3504), + [anon_sym_try] = ACTIONS(3504), + [anon_sym_when] = ACTIONS(3504), + [anon_sym_await] = ACTIONS(3504), + [anon_sym_foreach] = ACTIONS(3504), + [anon_sym_goto] = ACTIONS(3504), + [anon_sym_if] = ACTIONS(3504), + [anon_sym_else] = ACTIONS(3504), + [anon_sym_DOT_DOT] = ACTIONS(3506), + [anon_sym_AMP] = ACTIONS(3506), + [anon_sym_CARET] = ACTIONS(3506), + [anon_sym_PLUS] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3504), + [anon_sym_BANG] = ACTIONS(3506), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3506), + [anon_sym_true] = ACTIONS(3504), + [anon_sym_false] = ACTIONS(3504), + [anon_sym_from] = ACTIONS(3504), + [anon_sym_into] = ACTIONS(3504), + [anon_sym_join] = ACTIONS(3504), + [anon_sym_on] = ACTIONS(3504), + [anon_sym_equals] = ACTIONS(3504), + [anon_sym_let] = ACTIONS(3504), + [anon_sym_orderby] = ACTIONS(3504), + [anon_sym_ascending] = ACTIONS(3504), + [anon_sym_descending] = ACTIONS(3504), + [anon_sym_group] = ACTIONS(3504), + [anon_sym_by] = ACTIONS(3504), + [anon_sym_select] = ACTIONS(3504), + [anon_sym_stackalloc] = ACTIONS(3504), + [anon_sym_sizeof] = ACTIONS(3504), + [anon_sym_typeof] = ACTIONS(3504), + [anon_sym___makeref] = ACTIONS(3504), + [anon_sym___reftype] = ACTIONS(3504), + [anon_sym___refvalue] = ACTIONS(3504), + [sym_null_literal] = ACTIONS(3504), + [anon_sym_SQUOTE] = ACTIONS(3506), + [sym_integer_literal] = ACTIONS(3504), + [sym_real_literal] = ACTIONS(3506), + [anon_sym_DQUOTE] = ACTIONS(3506), + [sym_verbatim_string_literal] = ACTIONS(3506), + [sym_grit_metavariable] = ACTIONS(3506), + [aux_sym_preproc_if_token1] = ACTIONS(3506), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3506), + [sym_interpolation_verbatim_start] = ACTIONS(3506), + [sym_interpolation_raw_start] = ACTIONS(3506), + [sym_raw_string_start] = ACTIONS(3506), }, [2030] = { [sym_preproc_region] = STATE(2030), @@ -390030,109 +390052,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3558), - [sym__identifier_token] = ACTIONS(3556), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym_alias] = ACTIONS(3556), - [anon_sym_SEMI] = ACTIONS(3558), - [anon_sym_global] = ACTIONS(3556), - [anon_sym_using] = ACTIONS(3556), - [anon_sym_unsafe] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_LBRACK] = ACTIONS(3558), - [anon_sym_LPAREN] = ACTIONS(3558), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_namespace] = ACTIONS(3556), - [anon_sym_class] = ACTIONS(3556), - [anon_sym_ref] = ACTIONS(3556), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_interface] = ACTIONS(3556), - [anon_sym_delegate] = ACTIONS(3556), - [anon_sym_record] = ACTIONS(3556), - [anon_sym_public] = ACTIONS(3556), - [anon_sym_private] = ACTIONS(3556), - [anon_sym_readonly] = ACTIONS(3556), - [anon_sym_abstract] = ACTIONS(3556), - [anon_sym_async] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_file] = ACTIONS(3556), - [anon_sym_fixed] = ACTIONS(3556), - [anon_sym_internal] = ACTIONS(3556), - [anon_sym_new] = ACTIONS(3556), - [anon_sym_override] = ACTIONS(3556), - [anon_sym_partial] = ACTIONS(3556), - [anon_sym_protected] = ACTIONS(3556), - [anon_sym_required] = ACTIONS(3556), - [anon_sym_sealed] = ACTIONS(3556), - [anon_sym_virtual] = ACTIONS(3556), - [anon_sym_volatile] = ACTIONS(3556), - [anon_sym_where] = ACTIONS(3556), - [anon_sym_notnull] = ACTIONS(3556), - [anon_sym_unmanaged] = ACTIONS(3556), - [anon_sym_checked] = ACTIONS(3556), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_DASH_DASH] = ACTIONS(3558), - [anon_sym_true] = ACTIONS(3556), - [anon_sym_false] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3556), - [anon_sym_DASH] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_CARET] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(3556), - [anon_sym_scoped] = ACTIONS(3556), - [anon_sym_base] = ACTIONS(3556), - [anon_sym_var] = ACTIONS(3556), - [sym_predefined_type] = ACTIONS(3556), - [anon_sym_break] = ACTIONS(3556), - [anon_sym_unchecked] = ACTIONS(3556), - [anon_sym_continue] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_lock] = ACTIONS(3556), - [anon_sym_yield] = ACTIONS(3556), - [anon_sym_switch] = ACTIONS(3556), - [anon_sym_default] = ACTIONS(3556), - [anon_sym_throw] = ACTIONS(3556), - [anon_sym_try] = ACTIONS(3556), - [anon_sym_when] = ACTIONS(3556), - [anon_sym_await] = ACTIONS(3556), - [anon_sym_foreach] = ACTIONS(3556), - [anon_sym_goto] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_else] = ACTIONS(3556), - [anon_sym_DOT_DOT] = ACTIONS(3558), - [anon_sym_from] = ACTIONS(3556), - [anon_sym_into] = ACTIONS(3556), - [anon_sym_join] = ACTIONS(3556), - [anon_sym_on] = ACTIONS(3556), - [anon_sym_equals] = ACTIONS(3556), - [anon_sym_let] = ACTIONS(3556), - [anon_sym_orderby] = ACTIONS(3556), - [anon_sym_ascending] = ACTIONS(3556), - [anon_sym_descending] = ACTIONS(3556), - [anon_sym_group] = ACTIONS(3556), - [anon_sym_by] = ACTIONS(3556), - [anon_sym_select] = ACTIONS(3556), - [anon_sym_stackalloc] = ACTIONS(3556), - [anon_sym_sizeof] = ACTIONS(3556), - [anon_sym_typeof] = ACTIONS(3556), - [anon_sym___makeref] = ACTIONS(3556), - [anon_sym___reftype] = ACTIONS(3556), - [anon_sym___refvalue] = ACTIONS(3556), - [sym_null_literal] = ACTIONS(3556), - [anon_sym_SQUOTE] = ACTIONS(3558), - [sym_integer_literal] = ACTIONS(3556), - [sym_real_literal] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [sym_verbatim_string_literal] = ACTIONS(3558), - [sym_grit_metavariable] = ACTIONS(3558), - [aux_sym_preproc_if_token1] = ACTIONS(3558), + [ts_builtin_sym_end] = ACTIONS(3446), + [sym__identifier_token] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(3444), + [anon_sym_alias] = ACTIONS(3444), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_global] = ACTIONS(3444), + [anon_sym_using] = ACTIONS(3444), + [anon_sym_unsafe] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_namespace] = ACTIONS(3444), + [anon_sym_class] = ACTIONS(3444), + [anon_sym_ref] = ACTIONS(3444), + [anon_sym_struct] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3444), + [anon_sym_delegate] = ACTIONS(3444), + [anon_sym_record] = ACTIONS(3444), + [anon_sym_public] = ACTIONS(3444), + [anon_sym_private] = ACTIONS(3444), + [anon_sym_readonly] = ACTIONS(3444), + [anon_sym_abstract] = ACTIONS(3444), + [anon_sym_async] = ACTIONS(3444), + [anon_sym_const] = ACTIONS(3444), + [anon_sym_file] = ACTIONS(3444), + [anon_sym_fixed] = ACTIONS(3444), + [anon_sym_internal] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3444), + [anon_sym_override] = ACTIONS(3444), + [anon_sym_partial] = ACTIONS(3444), + [anon_sym_protected] = ACTIONS(3444), + [anon_sym_required] = ACTIONS(3444), + [anon_sym_sealed] = ACTIONS(3444), + [anon_sym_virtual] = ACTIONS(3444), + [anon_sym_volatile] = ACTIONS(3444), + [anon_sym_where] = ACTIONS(3444), + [anon_sym_notnull] = ACTIONS(3444), + [anon_sym_unmanaged] = ACTIONS(3444), + [anon_sym_checked] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_this] = ACTIONS(3444), + [anon_sym_scoped] = ACTIONS(3444), + [anon_sym_base] = ACTIONS(3444), + [anon_sym_var] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [sym_predefined_type] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_unchecked] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_do] = ACTIONS(3444), + [anon_sym_while] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_lock] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3444), + [anon_sym_switch] = ACTIONS(3444), + [anon_sym_default] = ACTIONS(3444), + [anon_sym_throw] = ACTIONS(3444), + [anon_sym_try] = ACTIONS(3444), + [anon_sym_when] = ACTIONS(3444), + [anon_sym_await] = ACTIONS(3444), + [anon_sym_foreach] = ACTIONS(3444), + [anon_sym_goto] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_else] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(3446), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_CARET] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [anon_sym_true] = ACTIONS(3444), + [anon_sym_false] = ACTIONS(3444), + [anon_sym_from] = ACTIONS(3444), + [anon_sym_into] = ACTIONS(3444), + [anon_sym_join] = ACTIONS(3444), + [anon_sym_on] = ACTIONS(3444), + [anon_sym_equals] = ACTIONS(3444), + [anon_sym_let] = ACTIONS(3444), + [anon_sym_orderby] = ACTIONS(3444), + [anon_sym_ascending] = ACTIONS(3444), + [anon_sym_descending] = ACTIONS(3444), + [anon_sym_group] = ACTIONS(3444), + [anon_sym_by] = ACTIONS(3444), + [anon_sym_select] = ACTIONS(3444), + [anon_sym_stackalloc] = ACTIONS(3444), + [anon_sym_sizeof] = ACTIONS(3444), + [anon_sym_typeof] = ACTIONS(3444), + [anon_sym___makeref] = ACTIONS(3444), + [anon_sym___reftype] = ACTIONS(3444), + [anon_sym___refvalue] = ACTIONS(3444), + [sym_null_literal] = ACTIONS(3444), + [anon_sym_SQUOTE] = ACTIONS(3446), + [sym_integer_literal] = ACTIONS(3444), + [sym_real_literal] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [sym_verbatim_string_literal] = ACTIONS(3446), + [sym_grit_metavariable] = ACTIONS(3446), + [aux_sym_preproc_if_token1] = ACTIONS(3446), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -390143,10 +390165,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(3558), - [sym_interpolation_verbatim_start] = ACTIONS(3558), - [sym_interpolation_raw_start] = ACTIONS(3558), - [sym_raw_string_start] = ACTIONS(3558), + [sym_interpolation_regular_start] = ACTIONS(3446), + [sym_interpolation_verbatim_start] = ACTIONS(3446), + [sym_interpolation_raw_start] = ACTIONS(3446), + [sym_raw_string_start] = ACTIONS(3446), }, [2031] = { [sym_preproc_region] = STATE(2031), @@ -390158,109 +390180,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3482), - [sym__identifier_token] = ACTIONS(3480), - [anon_sym_extern] = ACTIONS(3480), - [anon_sym_alias] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3480), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_unsafe] = ACTIONS(3480), - [anon_sym_static] = ACTIONS(3480), - [anon_sym_LBRACK] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(3482), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_namespace] = ACTIONS(3480), - [anon_sym_class] = ACTIONS(3480), - [anon_sym_ref] = ACTIONS(3480), - [anon_sym_struct] = ACTIONS(3480), - [anon_sym_enum] = ACTIONS(3480), - [anon_sym_LBRACE] = ACTIONS(3482), - [anon_sym_interface] = ACTIONS(3480), - [anon_sym_delegate] = ACTIONS(3480), - [anon_sym_record] = ACTIONS(3480), - [anon_sym_public] = ACTIONS(3480), - [anon_sym_private] = ACTIONS(3480), - [anon_sym_readonly] = ACTIONS(3480), - [anon_sym_abstract] = ACTIONS(3480), - [anon_sym_async] = ACTIONS(3480), - [anon_sym_const] = ACTIONS(3480), - [anon_sym_file] = ACTIONS(3480), - [anon_sym_fixed] = ACTIONS(3480), - [anon_sym_internal] = ACTIONS(3480), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_override] = ACTIONS(3480), - [anon_sym_partial] = ACTIONS(3480), - [anon_sym_protected] = ACTIONS(3480), - [anon_sym_required] = ACTIONS(3480), - [anon_sym_sealed] = ACTIONS(3480), - [anon_sym_virtual] = ACTIONS(3480), - [anon_sym_volatile] = ACTIONS(3480), - [anon_sym_where] = ACTIONS(3480), - [anon_sym_notnull] = ACTIONS(3480), - [anon_sym_unmanaged] = ACTIONS(3480), - [anon_sym_checked] = ACTIONS(3480), - [anon_sym_BANG] = ACTIONS(3482), - [anon_sym_TILDE] = ACTIONS(3482), - [anon_sym_PLUS_PLUS] = ACTIONS(3482), - [anon_sym_DASH_DASH] = ACTIONS(3482), - [anon_sym_true] = ACTIONS(3480), - [anon_sym_false] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_STAR] = ACTIONS(3482), - [anon_sym_CARET] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3482), - [anon_sym_this] = ACTIONS(3480), - [anon_sym_scoped] = ACTIONS(3480), - [anon_sym_base] = ACTIONS(3480), - [anon_sym_var] = ACTIONS(3480), - [sym_predefined_type] = ACTIONS(3480), - [anon_sym_break] = ACTIONS(3480), - [anon_sym_unchecked] = ACTIONS(3480), - [anon_sym_continue] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_lock] = ACTIONS(3480), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_switch] = ACTIONS(3480), - [anon_sym_default] = ACTIONS(3480), - [anon_sym_throw] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_when] = ACTIONS(3480), - [anon_sym_await] = ACTIONS(3480), - [anon_sym_foreach] = ACTIONS(3480), - [anon_sym_goto] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_else] = ACTIONS(3480), - [anon_sym_DOT_DOT] = ACTIONS(3482), - [anon_sym_from] = ACTIONS(3480), - [anon_sym_into] = ACTIONS(3480), - [anon_sym_join] = ACTIONS(3480), - [anon_sym_on] = ACTIONS(3480), - [anon_sym_equals] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_orderby] = ACTIONS(3480), - [anon_sym_ascending] = ACTIONS(3480), - [anon_sym_descending] = ACTIONS(3480), - [anon_sym_group] = ACTIONS(3480), - [anon_sym_by] = ACTIONS(3480), - [anon_sym_select] = ACTIONS(3480), - [anon_sym_stackalloc] = ACTIONS(3480), - [anon_sym_sizeof] = ACTIONS(3480), - [anon_sym_typeof] = ACTIONS(3480), - [anon_sym___makeref] = ACTIONS(3480), - [anon_sym___reftype] = ACTIONS(3480), - [anon_sym___refvalue] = ACTIONS(3480), - [sym_null_literal] = ACTIONS(3480), - [anon_sym_SQUOTE] = ACTIONS(3482), - [sym_integer_literal] = ACTIONS(3480), - [sym_real_literal] = ACTIONS(3482), - [anon_sym_DQUOTE] = ACTIONS(3482), - [sym_verbatim_string_literal] = ACTIONS(3482), - [sym_grit_metavariable] = ACTIONS(3482), - [aux_sym_preproc_if_token1] = ACTIONS(3482), + [ts_builtin_sym_end] = ACTIONS(3526), + [sym__identifier_token] = ACTIONS(3524), + [anon_sym_extern] = ACTIONS(3524), + [anon_sym_alias] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_global] = ACTIONS(3524), + [anon_sym_using] = ACTIONS(3524), + [anon_sym_unsafe] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3524), + [anon_sym_namespace] = ACTIONS(3524), + [anon_sym_class] = ACTIONS(3524), + [anon_sym_ref] = ACTIONS(3524), + [anon_sym_struct] = ACTIONS(3524), + [anon_sym_enum] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_interface] = ACTIONS(3524), + [anon_sym_delegate] = ACTIONS(3524), + [anon_sym_record] = ACTIONS(3524), + [anon_sym_public] = ACTIONS(3524), + [anon_sym_private] = ACTIONS(3524), + [anon_sym_readonly] = ACTIONS(3524), + [anon_sym_abstract] = ACTIONS(3524), + [anon_sym_async] = ACTIONS(3524), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_file] = ACTIONS(3524), + [anon_sym_fixed] = ACTIONS(3524), + [anon_sym_internal] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_override] = ACTIONS(3524), + [anon_sym_partial] = ACTIONS(3524), + [anon_sym_protected] = ACTIONS(3524), + [anon_sym_required] = ACTIONS(3524), + [anon_sym_sealed] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(3524), + [anon_sym_volatile] = ACTIONS(3524), + [anon_sym_where] = ACTIONS(3524), + [anon_sym_notnull] = ACTIONS(3524), + [anon_sym_unmanaged] = ACTIONS(3524), + [anon_sym_checked] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3526), + [anon_sym_this] = ACTIONS(3524), + [anon_sym_scoped] = ACTIONS(3524), + [anon_sym_base] = ACTIONS(3524), + [anon_sym_var] = ACTIONS(3524), + [anon_sym_STAR] = ACTIONS(3526), + [sym_predefined_type] = ACTIONS(3524), + [anon_sym_break] = ACTIONS(3524), + [anon_sym_unchecked] = ACTIONS(3524), + [anon_sym_continue] = ACTIONS(3524), + [anon_sym_do] = ACTIONS(3524), + [anon_sym_while] = ACTIONS(3524), + [anon_sym_for] = ACTIONS(3524), + [anon_sym_lock] = ACTIONS(3524), + [anon_sym_yield] = ACTIONS(3524), + [anon_sym_switch] = ACTIONS(3524), + [anon_sym_default] = ACTIONS(3524), + [anon_sym_throw] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3524), + [anon_sym_when] = ACTIONS(3524), + [anon_sym_await] = ACTIONS(3524), + [anon_sym_foreach] = ACTIONS(3524), + [anon_sym_goto] = ACTIONS(3524), + [anon_sym_if] = ACTIONS(3524), + [anon_sym_else] = ACTIONS(3524), + [anon_sym_DOT_DOT] = ACTIONS(3526), + [anon_sym_AMP] = ACTIONS(3526), + [anon_sym_CARET] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3526), + [anon_sym_true] = ACTIONS(3524), + [anon_sym_false] = ACTIONS(3524), + [anon_sym_from] = ACTIONS(3524), + [anon_sym_into] = ACTIONS(3524), + [anon_sym_join] = ACTIONS(3524), + [anon_sym_on] = ACTIONS(3524), + [anon_sym_equals] = ACTIONS(3524), + [anon_sym_let] = ACTIONS(3524), + [anon_sym_orderby] = ACTIONS(3524), + [anon_sym_ascending] = ACTIONS(3524), + [anon_sym_descending] = ACTIONS(3524), + [anon_sym_group] = ACTIONS(3524), + [anon_sym_by] = ACTIONS(3524), + [anon_sym_select] = ACTIONS(3524), + [anon_sym_stackalloc] = ACTIONS(3524), + [anon_sym_sizeof] = ACTIONS(3524), + [anon_sym_typeof] = ACTIONS(3524), + [anon_sym___makeref] = ACTIONS(3524), + [anon_sym___reftype] = ACTIONS(3524), + [anon_sym___refvalue] = ACTIONS(3524), + [sym_null_literal] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3526), + [sym_integer_literal] = ACTIONS(3524), + [sym_real_literal] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [sym_verbatim_string_literal] = ACTIONS(3526), + [sym_grit_metavariable] = ACTIONS(3526), + [aux_sym_preproc_if_token1] = ACTIONS(3526), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -390271,10 +390293,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(3482), - [sym_interpolation_verbatim_start] = ACTIONS(3482), - [sym_interpolation_raw_start] = ACTIONS(3482), - [sym_raw_string_start] = ACTIONS(3482), + [sym_interpolation_regular_start] = ACTIONS(3526), + [sym_interpolation_verbatim_start] = ACTIONS(3526), + [sym_interpolation_raw_start] = ACTIONS(3526), + [sym_raw_string_start] = ACTIONS(3526), }, [2032] = { [sym_preproc_region] = STATE(2032), @@ -390286,109 +390308,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3534), - [sym__identifier_token] = ACTIONS(3532), - [anon_sym_extern] = ACTIONS(3532), - [anon_sym_alias] = ACTIONS(3532), - [anon_sym_SEMI] = ACTIONS(3534), - [anon_sym_global] = ACTIONS(3532), - [anon_sym_using] = ACTIONS(3532), - [anon_sym_unsafe] = ACTIONS(3532), - [anon_sym_static] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_namespace] = ACTIONS(3532), - [anon_sym_class] = ACTIONS(3532), - [anon_sym_ref] = ACTIONS(3532), - [anon_sym_struct] = ACTIONS(3532), - [anon_sym_enum] = ACTIONS(3532), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_interface] = ACTIONS(3532), - [anon_sym_delegate] = ACTIONS(3532), - [anon_sym_record] = ACTIONS(3532), - [anon_sym_public] = ACTIONS(3532), - [anon_sym_private] = ACTIONS(3532), - [anon_sym_readonly] = ACTIONS(3532), - [anon_sym_abstract] = ACTIONS(3532), - [anon_sym_async] = ACTIONS(3532), - [anon_sym_const] = ACTIONS(3532), - [anon_sym_file] = ACTIONS(3532), - [anon_sym_fixed] = ACTIONS(3532), - [anon_sym_internal] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_override] = ACTIONS(3532), - [anon_sym_partial] = ACTIONS(3532), - [anon_sym_protected] = ACTIONS(3532), - [anon_sym_required] = ACTIONS(3532), - [anon_sym_sealed] = ACTIONS(3532), - [anon_sym_virtual] = ACTIONS(3532), - [anon_sym_volatile] = ACTIONS(3532), - [anon_sym_where] = ACTIONS(3532), - [anon_sym_notnull] = ACTIONS(3532), - [anon_sym_unmanaged] = ACTIONS(3532), - [anon_sym_checked] = ACTIONS(3532), - [anon_sym_BANG] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3534), - [anon_sym_PLUS_PLUS] = ACTIONS(3534), - [anon_sym_DASH_DASH] = ACTIONS(3534), - [anon_sym_true] = ACTIONS(3532), - [anon_sym_false] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_STAR] = ACTIONS(3534), - [anon_sym_CARET] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_this] = ACTIONS(3532), - [anon_sym_scoped] = ACTIONS(3532), - [anon_sym_base] = ACTIONS(3532), - [anon_sym_var] = ACTIONS(3532), - [sym_predefined_type] = ACTIONS(3532), - [anon_sym_break] = ACTIONS(3532), - [anon_sym_unchecked] = ACTIONS(3532), - [anon_sym_continue] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_lock] = ACTIONS(3532), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_switch] = ACTIONS(3532), - [anon_sym_default] = ACTIONS(3532), - [anon_sym_throw] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_when] = ACTIONS(3532), - [anon_sym_await] = ACTIONS(3532), - [anon_sym_foreach] = ACTIONS(3532), - [anon_sym_goto] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_else] = ACTIONS(3532), - [anon_sym_DOT_DOT] = ACTIONS(3534), - [anon_sym_from] = ACTIONS(3532), - [anon_sym_into] = ACTIONS(3532), - [anon_sym_join] = ACTIONS(3532), - [anon_sym_on] = ACTIONS(3532), - [anon_sym_equals] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_orderby] = ACTIONS(3532), - [anon_sym_ascending] = ACTIONS(3532), - [anon_sym_descending] = ACTIONS(3532), - [anon_sym_group] = ACTIONS(3532), - [anon_sym_by] = ACTIONS(3532), - [anon_sym_select] = ACTIONS(3532), - [anon_sym_stackalloc] = ACTIONS(3532), - [anon_sym_sizeof] = ACTIONS(3532), - [anon_sym_typeof] = ACTIONS(3532), - [anon_sym___makeref] = ACTIONS(3532), - [anon_sym___reftype] = ACTIONS(3532), - [anon_sym___refvalue] = ACTIONS(3532), - [sym_null_literal] = ACTIONS(3532), - [anon_sym_SQUOTE] = ACTIONS(3534), - [sym_integer_literal] = ACTIONS(3532), - [sym_real_literal] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [sym_verbatim_string_literal] = ACTIONS(3534), - [sym_grit_metavariable] = ACTIONS(3534), - [aux_sym_preproc_if_token1] = ACTIONS(3534), + [ts_builtin_sym_end] = ACTIONS(3562), + [sym__identifier_token] = ACTIONS(3560), + [anon_sym_extern] = ACTIONS(3560), + [anon_sym_alias] = ACTIONS(3560), + [anon_sym_SEMI] = ACTIONS(3562), + [anon_sym_global] = ACTIONS(3560), + [anon_sym_using] = ACTIONS(3560), + [anon_sym_unsafe] = ACTIONS(3560), + [anon_sym_static] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3562), + [anon_sym_LPAREN] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_namespace] = ACTIONS(3560), + [anon_sym_class] = ACTIONS(3560), + [anon_sym_ref] = ACTIONS(3560), + [anon_sym_struct] = ACTIONS(3560), + [anon_sym_enum] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3562), + [anon_sym_interface] = ACTIONS(3560), + [anon_sym_delegate] = ACTIONS(3560), + [anon_sym_record] = ACTIONS(3560), + [anon_sym_public] = ACTIONS(3560), + [anon_sym_private] = ACTIONS(3560), + [anon_sym_readonly] = ACTIONS(3560), + [anon_sym_abstract] = ACTIONS(3560), + [anon_sym_async] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_file] = ACTIONS(3560), + [anon_sym_fixed] = ACTIONS(3560), + [anon_sym_internal] = ACTIONS(3560), + [anon_sym_new] = ACTIONS(3560), + [anon_sym_override] = ACTIONS(3560), + [anon_sym_partial] = ACTIONS(3560), + [anon_sym_protected] = ACTIONS(3560), + [anon_sym_required] = ACTIONS(3560), + [anon_sym_sealed] = ACTIONS(3560), + [anon_sym_virtual] = ACTIONS(3560), + [anon_sym_volatile] = ACTIONS(3560), + [anon_sym_where] = ACTIONS(3560), + [anon_sym_notnull] = ACTIONS(3560), + [anon_sym_unmanaged] = ACTIONS(3560), + [anon_sym_checked] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_this] = ACTIONS(3560), + [anon_sym_scoped] = ACTIONS(3560), + [anon_sym_base] = ACTIONS(3560), + [anon_sym_var] = ACTIONS(3560), + [anon_sym_STAR] = ACTIONS(3562), + [sym_predefined_type] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_unchecked] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_do] = ACTIONS(3560), + [anon_sym_while] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_lock] = ACTIONS(3560), + [anon_sym_yield] = ACTIONS(3560), + [anon_sym_switch] = ACTIONS(3560), + [anon_sym_default] = ACTIONS(3560), + [anon_sym_throw] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3560), + [anon_sym_when] = ACTIONS(3560), + [anon_sym_await] = ACTIONS(3560), + [anon_sym_foreach] = ACTIONS(3560), + [anon_sym_goto] = ACTIONS(3560), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3560), + [anon_sym_DOT_DOT] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3562), + [anon_sym_CARET] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3562), + [anon_sym_DASH_DASH] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3560), + [anon_sym_false] = ACTIONS(3560), + [anon_sym_from] = ACTIONS(3560), + [anon_sym_into] = ACTIONS(3560), + [anon_sym_join] = ACTIONS(3560), + [anon_sym_on] = ACTIONS(3560), + [anon_sym_equals] = ACTIONS(3560), + [anon_sym_let] = ACTIONS(3560), + [anon_sym_orderby] = ACTIONS(3560), + [anon_sym_ascending] = ACTIONS(3560), + [anon_sym_descending] = ACTIONS(3560), + [anon_sym_group] = ACTIONS(3560), + [anon_sym_by] = ACTIONS(3560), + [anon_sym_select] = ACTIONS(3560), + [anon_sym_stackalloc] = ACTIONS(3560), + [anon_sym_sizeof] = ACTIONS(3560), + [anon_sym_typeof] = ACTIONS(3560), + [anon_sym___makeref] = ACTIONS(3560), + [anon_sym___reftype] = ACTIONS(3560), + [anon_sym___refvalue] = ACTIONS(3560), + [sym_null_literal] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3562), + [sym_integer_literal] = ACTIONS(3560), + [sym_real_literal] = ACTIONS(3562), + [anon_sym_DQUOTE] = ACTIONS(3562), + [sym_verbatim_string_literal] = ACTIONS(3562), + [sym_grit_metavariable] = ACTIONS(3562), + [aux_sym_preproc_if_token1] = ACTIONS(3562), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -390399,10 +390421,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(3534), - [sym_interpolation_verbatim_start] = ACTIONS(3534), - [sym_interpolation_raw_start] = ACTIONS(3534), - [sym_raw_string_start] = ACTIONS(3534), + [sym_interpolation_regular_start] = ACTIONS(3562), + [sym_interpolation_verbatim_start] = ACTIONS(3562), + [sym_interpolation_raw_start] = ACTIONS(3562), + [sym_raw_string_start] = ACTIONS(3562), }, [2033] = { [sym_preproc_region] = STATE(2033), @@ -390414,262 +390436,6 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3514), - [sym__identifier_token] = ACTIONS(3512), - [anon_sym_extern] = ACTIONS(3512), - [anon_sym_alias] = ACTIONS(3512), - [anon_sym_SEMI] = ACTIONS(3514), - [anon_sym_global] = ACTIONS(3512), - [anon_sym_using] = ACTIONS(3512), - [anon_sym_unsafe] = ACTIONS(3512), - [anon_sym_static] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(3514), - [anon_sym_return] = ACTIONS(3512), - [anon_sym_namespace] = ACTIONS(3512), - [anon_sym_class] = ACTIONS(3512), - [anon_sym_ref] = ACTIONS(3512), - [anon_sym_struct] = ACTIONS(3512), - [anon_sym_enum] = ACTIONS(3512), - [anon_sym_LBRACE] = ACTIONS(3514), - [anon_sym_interface] = ACTIONS(3512), - [anon_sym_delegate] = ACTIONS(3512), - [anon_sym_record] = ACTIONS(3512), - [anon_sym_public] = ACTIONS(3512), - [anon_sym_private] = ACTIONS(3512), - [anon_sym_readonly] = ACTIONS(3512), - [anon_sym_abstract] = ACTIONS(3512), - [anon_sym_async] = ACTIONS(3512), - [anon_sym_const] = ACTIONS(3512), - [anon_sym_file] = ACTIONS(3512), - [anon_sym_fixed] = ACTIONS(3512), - [anon_sym_internal] = ACTIONS(3512), - [anon_sym_new] = ACTIONS(3512), - [anon_sym_override] = ACTIONS(3512), - [anon_sym_partial] = ACTIONS(3512), - [anon_sym_protected] = ACTIONS(3512), - [anon_sym_required] = ACTIONS(3512), - [anon_sym_sealed] = ACTIONS(3512), - [anon_sym_virtual] = ACTIONS(3512), - [anon_sym_volatile] = ACTIONS(3512), - [anon_sym_where] = ACTIONS(3512), - [anon_sym_notnull] = ACTIONS(3512), - [anon_sym_unmanaged] = ACTIONS(3512), - [anon_sym_checked] = ACTIONS(3512), - [anon_sym_BANG] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(3514), - [anon_sym_PLUS_PLUS] = ACTIONS(3514), - [anon_sym_DASH_DASH] = ACTIONS(3514), - [anon_sym_true] = ACTIONS(3512), - [anon_sym_false] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_STAR] = ACTIONS(3514), - [anon_sym_CARET] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(3512), - [anon_sym_scoped] = ACTIONS(3512), - [anon_sym_base] = ACTIONS(3512), - [anon_sym_var] = ACTIONS(3512), - [sym_predefined_type] = ACTIONS(3512), - [anon_sym_break] = ACTIONS(3512), - [anon_sym_unchecked] = ACTIONS(3512), - [anon_sym_continue] = ACTIONS(3512), - [anon_sym_do] = ACTIONS(3512), - [anon_sym_while] = ACTIONS(3512), - [anon_sym_for] = ACTIONS(3512), - [anon_sym_lock] = ACTIONS(3512), - [anon_sym_yield] = ACTIONS(3512), - [anon_sym_switch] = ACTIONS(3512), - [anon_sym_default] = ACTIONS(3512), - [anon_sym_throw] = ACTIONS(3512), - [anon_sym_try] = ACTIONS(3512), - [anon_sym_when] = ACTIONS(3512), - [anon_sym_await] = ACTIONS(3512), - [anon_sym_foreach] = ACTIONS(3512), - [anon_sym_goto] = ACTIONS(3512), - [anon_sym_if] = ACTIONS(3512), - [anon_sym_else] = ACTIONS(3512), - [anon_sym_DOT_DOT] = ACTIONS(3514), - [anon_sym_from] = ACTIONS(3512), - [anon_sym_into] = ACTIONS(3512), - [anon_sym_join] = ACTIONS(3512), - [anon_sym_on] = ACTIONS(3512), - [anon_sym_equals] = ACTIONS(3512), - [anon_sym_let] = ACTIONS(3512), - [anon_sym_orderby] = ACTIONS(3512), - [anon_sym_ascending] = ACTIONS(3512), - [anon_sym_descending] = ACTIONS(3512), - [anon_sym_group] = ACTIONS(3512), - [anon_sym_by] = ACTIONS(3512), - [anon_sym_select] = ACTIONS(3512), - [anon_sym_stackalloc] = ACTIONS(3512), - [anon_sym_sizeof] = ACTIONS(3512), - [anon_sym_typeof] = ACTIONS(3512), - [anon_sym___makeref] = ACTIONS(3512), - [anon_sym___reftype] = ACTIONS(3512), - [anon_sym___refvalue] = ACTIONS(3512), - [sym_null_literal] = ACTIONS(3512), - [anon_sym_SQUOTE] = ACTIONS(3514), - [sym_integer_literal] = ACTIONS(3512), - [sym_real_literal] = ACTIONS(3514), - [anon_sym_DQUOTE] = ACTIONS(3514), - [sym_verbatim_string_literal] = ACTIONS(3514), - [sym_grit_metavariable] = ACTIONS(3514), - [aux_sym_preproc_if_token1] = ACTIONS(3514), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3514), - [sym_interpolation_verbatim_start] = ACTIONS(3514), - [sym_interpolation_raw_start] = ACTIONS(3514), - [sym_raw_string_start] = ACTIONS(3514), - }, - [2034] = { - [sym_preproc_region] = STATE(2034), - [sym_preproc_endregion] = STATE(2034), - [sym_preproc_line] = STATE(2034), - [sym_preproc_pragma] = STATE(2034), - [sym_preproc_nullable] = STATE(2034), - [sym_preproc_error] = STATE(2034), - [sym_preproc_warning] = STATE(2034), - [sym_preproc_define] = STATE(2034), - [sym_preproc_undef] = STATE(2034), - [ts_builtin_sym_end] = ACTIONS(3434), - [sym__identifier_token] = ACTIONS(3432), - [anon_sym_extern] = ACTIONS(3432), - [anon_sym_alias] = ACTIONS(3432), - [anon_sym_SEMI] = ACTIONS(3434), - [anon_sym_global] = ACTIONS(3432), - [anon_sym_using] = ACTIONS(3432), - [anon_sym_unsafe] = ACTIONS(3432), - [anon_sym_static] = ACTIONS(3432), - [anon_sym_LBRACK] = ACTIONS(3434), - [anon_sym_LPAREN] = ACTIONS(3434), - [anon_sym_return] = ACTIONS(3432), - [anon_sym_namespace] = ACTIONS(3432), - [anon_sym_class] = ACTIONS(3432), - [anon_sym_ref] = ACTIONS(3432), - [anon_sym_struct] = ACTIONS(3432), - [anon_sym_enum] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3434), - [anon_sym_interface] = ACTIONS(3432), - [anon_sym_delegate] = ACTIONS(3432), - [anon_sym_record] = ACTIONS(3432), - [anon_sym_public] = ACTIONS(3432), - [anon_sym_private] = ACTIONS(3432), - [anon_sym_readonly] = ACTIONS(3432), - [anon_sym_abstract] = ACTIONS(3432), - [anon_sym_async] = ACTIONS(3432), - [anon_sym_const] = ACTIONS(3432), - [anon_sym_file] = ACTIONS(3432), - [anon_sym_fixed] = ACTIONS(3432), - [anon_sym_internal] = ACTIONS(3432), - [anon_sym_new] = ACTIONS(3432), - [anon_sym_override] = ACTIONS(3432), - [anon_sym_partial] = ACTIONS(3432), - [anon_sym_protected] = ACTIONS(3432), - [anon_sym_required] = ACTIONS(3432), - [anon_sym_sealed] = ACTIONS(3432), - [anon_sym_virtual] = ACTIONS(3432), - [anon_sym_volatile] = ACTIONS(3432), - [anon_sym_where] = ACTIONS(3432), - [anon_sym_notnull] = ACTIONS(3432), - [anon_sym_unmanaged] = ACTIONS(3432), - [anon_sym_checked] = ACTIONS(3432), - [anon_sym_BANG] = ACTIONS(3434), - [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_PLUS_PLUS] = ACTIONS(3434), - [anon_sym_DASH_DASH] = ACTIONS(3434), - [anon_sym_true] = ACTIONS(3432), - [anon_sym_false] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(3434), - [anon_sym_CARET] = ACTIONS(3434), - [anon_sym_AMP] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(3432), - [anon_sym_scoped] = ACTIONS(3432), - [anon_sym_base] = ACTIONS(3432), - [anon_sym_var] = ACTIONS(3432), - [sym_predefined_type] = ACTIONS(3432), - [anon_sym_break] = ACTIONS(3432), - [anon_sym_unchecked] = ACTIONS(3432), - [anon_sym_continue] = ACTIONS(3432), - [anon_sym_do] = ACTIONS(3432), - [anon_sym_while] = ACTIONS(3432), - [anon_sym_for] = ACTIONS(3432), - [anon_sym_lock] = ACTIONS(3432), - [anon_sym_yield] = ACTIONS(3432), - [anon_sym_switch] = ACTIONS(3432), - [anon_sym_default] = ACTIONS(3432), - [anon_sym_throw] = ACTIONS(3432), - [anon_sym_try] = ACTIONS(3432), - [anon_sym_when] = ACTIONS(3432), - [anon_sym_await] = ACTIONS(3432), - [anon_sym_foreach] = ACTIONS(3432), - [anon_sym_goto] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3432), - [anon_sym_else] = ACTIONS(3432), - [anon_sym_DOT_DOT] = ACTIONS(3434), - [anon_sym_from] = ACTIONS(3432), - [anon_sym_into] = ACTIONS(3432), - [anon_sym_join] = ACTIONS(3432), - [anon_sym_on] = ACTIONS(3432), - [anon_sym_equals] = ACTIONS(3432), - [anon_sym_let] = ACTIONS(3432), - [anon_sym_orderby] = ACTIONS(3432), - [anon_sym_ascending] = ACTIONS(3432), - [anon_sym_descending] = ACTIONS(3432), - [anon_sym_group] = ACTIONS(3432), - [anon_sym_by] = ACTIONS(3432), - [anon_sym_select] = ACTIONS(3432), - [anon_sym_stackalloc] = ACTIONS(3432), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_typeof] = ACTIONS(3432), - [anon_sym___makeref] = ACTIONS(3432), - [anon_sym___reftype] = ACTIONS(3432), - [anon_sym___refvalue] = ACTIONS(3432), - [sym_null_literal] = ACTIONS(3432), - [anon_sym_SQUOTE] = ACTIONS(3434), - [sym_integer_literal] = ACTIONS(3432), - [sym_real_literal] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(3434), - [sym_verbatim_string_literal] = ACTIONS(3434), - [sym_grit_metavariable] = ACTIONS(3434), - [aux_sym_preproc_if_token1] = ACTIONS(3434), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3434), - [sym_interpolation_verbatim_start] = ACTIONS(3434), - [sym_interpolation_raw_start] = ACTIONS(3434), - [sym_raw_string_start] = ACTIONS(3434), - }, - [2035] = { - [sym_preproc_region] = STATE(2035), - [sym_preproc_endregion] = STATE(2035), - [sym_preproc_line] = STATE(2035), - [sym_preproc_pragma] = STATE(2035), - [sym_preproc_nullable] = STATE(2035), - [sym_preproc_error] = STATE(2035), - [sym_preproc_warning] = STATE(2035), - [sym_preproc_define] = STATE(2035), - [sym_preproc_undef] = STATE(2035), [ts_builtin_sym_end] = ACTIONS(3462), [sym__identifier_token] = ACTIONS(3460), [anon_sym_extern] = ACTIONS(3460), @@ -390712,21 +390478,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3460), [anon_sym_unmanaged] = ACTIONS(3460), [anon_sym_checked] = ACTIONS(3460), - [anon_sym_BANG] = ACTIONS(3462), [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_true] = ACTIONS(3460), - [anon_sym_false] = ACTIONS(3460), - [anon_sym_PLUS] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3460), - [anon_sym_STAR] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3462), [anon_sym_this] = ACTIONS(3460), [anon_sym_scoped] = ACTIONS(3460), [anon_sym_base] = ACTIONS(3460), [anon_sym_var] = ACTIONS(3460), + [anon_sym_STAR] = ACTIONS(3462), [sym_predefined_type] = ACTIONS(3460), [anon_sym_break] = ACTIONS(3460), [anon_sym_unchecked] = ACTIONS(3460), @@ -390747,6 +390504,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3460), [anon_sym_else] = ACTIONS(3460), [anon_sym_DOT_DOT] = ACTIONS(3462), + [anon_sym_AMP] = ACTIONS(3462), + [anon_sym_CARET] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3460), + [anon_sym_DASH] = ACTIONS(3460), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_true] = ACTIONS(3460), + [anon_sym_false] = ACTIONS(3460), [anon_sym_from] = ACTIONS(3460), [anon_sym_into] = ACTIONS(3460), [anon_sym_join] = ACTIONS(3460), @@ -390788,7 +390554,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3462), [sym_raw_string_start] = ACTIONS(3462), }, + [2034] = { + [sym_preproc_region] = STATE(2034), + [sym_preproc_endregion] = STATE(2034), + [sym_preproc_line] = STATE(2034), + [sym_preproc_pragma] = STATE(2034), + [sym_preproc_nullable] = STATE(2034), + [sym_preproc_error] = STATE(2034), + [sym_preproc_warning] = STATE(2034), + [sym_preproc_define] = STATE(2034), + [sym_preproc_undef] = STATE(2034), + [ts_builtin_sym_end] = ACTIONS(3494), + [sym__identifier_token] = ACTIONS(3492), + [anon_sym_extern] = ACTIONS(3492), + [anon_sym_alias] = ACTIONS(3492), + [anon_sym_SEMI] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3492), + [anon_sym_using] = ACTIONS(3492), + [anon_sym_unsafe] = ACTIONS(3492), + [anon_sym_static] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3492), + [anon_sym_namespace] = ACTIONS(3492), + [anon_sym_class] = ACTIONS(3492), + [anon_sym_ref] = ACTIONS(3492), + [anon_sym_struct] = ACTIONS(3492), + [anon_sym_enum] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3492), + [anon_sym_delegate] = ACTIONS(3492), + [anon_sym_record] = ACTIONS(3492), + [anon_sym_public] = ACTIONS(3492), + [anon_sym_private] = ACTIONS(3492), + [anon_sym_readonly] = ACTIONS(3492), + [anon_sym_abstract] = ACTIONS(3492), + [anon_sym_async] = ACTIONS(3492), + [anon_sym_const] = ACTIONS(3492), + [anon_sym_file] = ACTIONS(3492), + [anon_sym_fixed] = ACTIONS(3492), + [anon_sym_internal] = ACTIONS(3492), + [anon_sym_new] = ACTIONS(3492), + [anon_sym_override] = ACTIONS(3492), + [anon_sym_partial] = ACTIONS(3492), + [anon_sym_protected] = ACTIONS(3492), + [anon_sym_required] = ACTIONS(3492), + [anon_sym_sealed] = ACTIONS(3492), + [anon_sym_virtual] = ACTIONS(3492), + [anon_sym_volatile] = ACTIONS(3492), + [anon_sym_where] = ACTIONS(3492), + [anon_sym_notnull] = ACTIONS(3492), + [anon_sym_unmanaged] = ACTIONS(3492), + [anon_sym_checked] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3494), + [anon_sym_this] = ACTIONS(3492), + [anon_sym_scoped] = ACTIONS(3492), + [anon_sym_base] = ACTIONS(3492), + [anon_sym_var] = ACTIONS(3492), + [anon_sym_STAR] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3492), + [anon_sym_break] = ACTIONS(3492), + [anon_sym_unchecked] = ACTIONS(3492), + [anon_sym_continue] = ACTIONS(3492), + [anon_sym_do] = ACTIONS(3492), + [anon_sym_while] = ACTIONS(3492), + [anon_sym_for] = ACTIONS(3492), + [anon_sym_lock] = ACTIONS(3492), + [anon_sym_yield] = ACTIONS(3492), + [anon_sym_switch] = ACTIONS(3492), + [anon_sym_default] = ACTIONS(3492), + [anon_sym_throw] = ACTIONS(3492), + [anon_sym_try] = ACTIONS(3492), + [anon_sym_when] = ACTIONS(3492), + [anon_sym_await] = ACTIONS(3492), + [anon_sym_foreach] = ACTIONS(3492), + [anon_sym_goto] = ACTIONS(3492), + [anon_sym_if] = ACTIONS(3492), + [anon_sym_else] = ACTIONS(3492), + [anon_sym_DOT_DOT] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3494), + [anon_sym_CARET] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_PLUS_PLUS] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3494), + [anon_sym_true] = ACTIONS(3492), + [anon_sym_false] = ACTIONS(3492), + [anon_sym_from] = ACTIONS(3492), + [anon_sym_into] = ACTIONS(3492), + [anon_sym_join] = ACTIONS(3492), + [anon_sym_on] = ACTIONS(3492), + [anon_sym_equals] = ACTIONS(3492), + [anon_sym_let] = ACTIONS(3492), + [anon_sym_orderby] = ACTIONS(3492), + [anon_sym_ascending] = ACTIONS(3492), + [anon_sym_descending] = ACTIONS(3492), + [anon_sym_group] = ACTIONS(3492), + [anon_sym_by] = ACTIONS(3492), + [anon_sym_select] = ACTIONS(3492), + [anon_sym_stackalloc] = ACTIONS(3492), + [anon_sym_sizeof] = ACTIONS(3492), + [anon_sym_typeof] = ACTIONS(3492), + [anon_sym___makeref] = ACTIONS(3492), + [anon_sym___reftype] = ACTIONS(3492), + [anon_sym___refvalue] = ACTIONS(3492), + [sym_null_literal] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3494), + [sym_integer_literal] = ACTIONS(3492), + [sym_real_literal] = ACTIONS(3494), + [anon_sym_DQUOTE] = ACTIONS(3494), + [sym_verbatim_string_literal] = ACTIONS(3494), + [sym_grit_metavariable] = ACTIONS(3494), + [aux_sym_preproc_if_token1] = ACTIONS(3494), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3494), + [sym_interpolation_verbatim_start] = ACTIONS(3494), + [sym_interpolation_raw_start] = ACTIONS(3494), + [sym_raw_string_start] = ACTIONS(3494), + }, + [2035] = { + [sym_preproc_region] = STATE(2035), + [sym_preproc_endregion] = STATE(2035), + [sym_preproc_line] = STATE(2035), + [sym_preproc_pragma] = STATE(2035), + [sym_preproc_nullable] = STATE(2035), + [sym_preproc_error] = STATE(2035), + [sym_preproc_warning] = STATE(2035), + [sym_preproc_define] = STATE(2035), + [sym_preproc_undef] = STATE(2035), + [ts_builtin_sym_end] = ACTIONS(3466), + [sym__identifier_token] = ACTIONS(3464), + [anon_sym_extern] = ACTIONS(3464), + [anon_sym_alias] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_unsafe] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(3466), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_ref] = ACTIONS(3464), + [anon_sym_struct] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3464), + [anon_sym_delegate] = ACTIONS(3464), + [anon_sym_record] = ACTIONS(3464), + [anon_sym_public] = ACTIONS(3464), + [anon_sym_private] = ACTIONS(3464), + [anon_sym_readonly] = ACTIONS(3464), + [anon_sym_abstract] = ACTIONS(3464), + [anon_sym_async] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_file] = ACTIONS(3464), + [anon_sym_fixed] = ACTIONS(3464), + [anon_sym_internal] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_override] = ACTIONS(3464), + [anon_sym_partial] = ACTIONS(3464), + [anon_sym_protected] = ACTIONS(3464), + [anon_sym_required] = ACTIONS(3464), + [anon_sym_sealed] = ACTIONS(3464), + [anon_sym_virtual] = ACTIONS(3464), + [anon_sym_volatile] = ACTIONS(3464), + [anon_sym_where] = ACTIONS(3464), + [anon_sym_notnull] = ACTIONS(3464), + [anon_sym_unmanaged] = ACTIONS(3464), + [anon_sym_checked] = ACTIONS(3464), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(3464), + [anon_sym_scoped] = ACTIONS(3464), + [anon_sym_base] = ACTIONS(3464), + [anon_sym_var] = ACTIONS(3464), + [anon_sym_STAR] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_unchecked] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_lock] = ACTIONS(3464), + [anon_sym_yield] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_default] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_when] = ACTIONS(3464), + [anon_sym_await] = ACTIONS(3464), + [anon_sym_foreach] = ACTIONS(3464), + [anon_sym_goto] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_else] = ACTIONS(3464), + [anon_sym_DOT_DOT] = ACTIONS(3466), + [anon_sym_AMP] = ACTIONS(3466), + [anon_sym_CARET] = ACTIONS(3466), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_true] = ACTIONS(3464), + [anon_sym_false] = ACTIONS(3464), + [anon_sym_from] = ACTIONS(3464), + [anon_sym_into] = ACTIONS(3464), + [anon_sym_join] = ACTIONS(3464), + [anon_sym_on] = ACTIONS(3464), + [anon_sym_equals] = ACTIONS(3464), + [anon_sym_let] = ACTIONS(3464), + [anon_sym_orderby] = ACTIONS(3464), + [anon_sym_ascending] = ACTIONS(3464), + [anon_sym_descending] = ACTIONS(3464), + [anon_sym_group] = ACTIONS(3464), + [anon_sym_by] = ACTIONS(3464), + [anon_sym_select] = ACTIONS(3464), + [anon_sym_stackalloc] = ACTIONS(3464), + [anon_sym_sizeof] = ACTIONS(3464), + [anon_sym_typeof] = ACTIONS(3464), + [anon_sym___makeref] = ACTIONS(3464), + [anon_sym___reftype] = ACTIONS(3464), + [anon_sym___refvalue] = ACTIONS(3464), + [sym_null_literal] = ACTIONS(3464), + [anon_sym_SQUOTE] = ACTIONS(3466), + [sym_integer_literal] = ACTIONS(3464), + [sym_real_literal] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [sym_verbatim_string_literal] = ACTIONS(3466), + [sym_grit_metavariable] = ACTIONS(3466), + [aux_sym_preproc_if_token1] = ACTIONS(3466), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3466), + [sym_interpolation_verbatim_start] = ACTIONS(3466), + [sym_interpolation_raw_start] = ACTIONS(3466), + [sym_raw_string_start] = ACTIONS(3466), + }, [2036] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6406), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6096), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2036), [sym_preproc_endregion] = STATE(2036), [sym_preproc_line] = STATE(2036), @@ -390798,143 +390838,107 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3416), - [sym__identifier_token] = ACTIONS(3414), - [anon_sym_extern] = ACTIONS(3414), - [anon_sym_alias] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3416), - [anon_sym_global] = ACTIONS(3414), - [anon_sym_using] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3414), - [anon_sym_static] = ACTIONS(3414), - [anon_sym_LBRACK] = ACTIONS(3416), - [anon_sym_LPAREN] = ACTIONS(3416), - [anon_sym_return] = ACTIONS(3414), - [anon_sym_namespace] = ACTIONS(3414), - [anon_sym_class] = ACTIONS(3414), - [anon_sym_ref] = ACTIONS(3414), - [anon_sym_struct] = ACTIONS(3414), - [anon_sym_enum] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_interface] = ACTIONS(3414), - [anon_sym_delegate] = ACTIONS(3414), - [anon_sym_record] = ACTIONS(3414), - [anon_sym_public] = ACTIONS(3414), - [anon_sym_private] = ACTIONS(3414), - [anon_sym_readonly] = ACTIONS(3414), - [anon_sym_abstract] = ACTIONS(3414), - [anon_sym_async] = ACTIONS(3414), - [anon_sym_const] = ACTIONS(3414), - [anon_sym_file] = ACTIONS(3414), - [anon_sym_fixed] = ACTIONS(3414), - [anon_sym_internal] = ACTIONS(3414), - [anon_sym_new] = ACTIONS(3414), - [anon_sym_override] = ACTIONS(3414), - [anon_sym_partial] = ACTIONS(3414), - [anon_sym_protected] = ACTIONS(3414), - [anon_sym_required] = ACTIONS(3414), - [anon_sym_sealed] = ACTIONS(3414), - [anon_sym_virtual] = ACTIONS(3414), - [anon_sym_volatile] = ACTIONS(3414), - [anon_sym_where] = ACTIONS(3414), - [anon_sym_notnull] = ACTIONS(3414), - [anon_sym_unmanaged] = ACTIONS(3414), - [anon_sym_checked] = ACTIONS(3414), - [anon_sym_BANG] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3416), - [anon_sym_true] = ACTIONS(3414), - [anon_sym_false] = ACTIONS(3414), - [anon_sym_PLUS] = ACTIONS(3414), - [anon_sym_DASH] = ACTIONS(3414), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_CARET] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_this] = ACTIONS(3414), - [anon_sym_scoped] = ACTIONS(3414), - [anon_sym_base] = ACTIONS(3414), - [anon_sym_var] = ACTIONS(3414), - [sym_predefined_type] = ACTIONS(3414), - [anon_sym_break] = ACTIONS(3414), - [anon_sym_unchecked] = ACTIONS(3414), - [anon_sym_continue] = ACTIONS(3414), - [anon_sym_do] = ACTIONS(3414), - [anon_sym_while] = ACTIONS(3414), - [anon_sym_for] = ACTIONS(3414), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_yield] = ACTIONS(3414), - [anon_sym_switch] = ACTIONS(3414), - [anon_sym_default] = ACTIONS(3414), - [anon_sym_throw] = ACTIONS(3414), - [anon_sym_try] = ACTIONS(3414), - [anon_sym_when] = ACTIONS(3414), - [anon_sym_await] = ACTIONS(3414), - [anon_sym_foreach] = ACTIONS(3414), - [anon_sym_goto] = ACTIONS(3414), - [anon_sym_if] = ACTIONS(3414), - [anon_sym_else] = ACTIONS(3414), - [anon_sym_DOT_DOT] = ACTIONS(3416), - [anon_sym_from] = ACTIONS(3414), - [anon_sym_into] = ACTIONS(3414), - [anon_sym_join] = ACTIONS(3414), - [anon_sym_on] = ACTIONS(3414), - [anon_sym_equals] = ACTIONS(3414), - [anon_sym_let] = ACTIONS(3414), - [anon_sym_orderby] = ACTIONS(3414), - [anon_sym_ascending] = ACTIONS(3414), - [anon_sym_descending] = ACTIONS(3414), - [anon_sym_group] = ACTIONS(3414), - [anon_sym_by] = ACTIONS(3414), - [anon_sym_select] = ACTIONS(3414), - [anon_sym_stackalloc] = ACTIONS(3414), - [anon_sym_sizeof] = ACTIONS(3414), - [anon_sym_typeof] = ACTIONS(3414), - [anon_sym___makeref] = ACTIONS(3414), - [anon_sym___reftype] = ACTIONS(3414), - [anon_sym___refvalue] = ACTIONS(3414), - [sym_null_literal] = ACTIONS(3414), - [anon_sym_SQUOTE] = ACTIONS(3416), - [sym_integer_literal] = ACTIONS(3414), - [sym_real_literal] = ACTIONS(3416), - [anon_sym_DQUOTE] = ACTIONS(3416), - [sym_verbatim_string_literal] = ACTIONS(3416), - [sym_grit_metavariable] = ACTIONS(3416), - [aux_sym_preproc_if_token1] = ACTIONS(3416), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3416), - [sym_interpolation_verbatim_start] = ACTIONS(3416), - [sym_interpolation_raw_start] = ACTIONS(3416), - [sym_raw_string_start] = ACTIONS(3416), + [sym__identifier_token] = ACTIONS(3688), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3705), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3696), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3711), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = 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), }, [2037] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6383), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6087), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(2037), [sym_preproc_endregion] = STATE(2037), [sym_preproc_line] = STATE(2037), @@ -390944,95 +390948,109 @@ 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(3690), - [anon_sym_alias] = ACTIONS(3693), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(3693), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3693), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3693), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3693), - [anon_sym_unmanaged] = ACTIONS(3693), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3707), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3710), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3693), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3693), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3693), - [anon_sym_into] = ACTIONS(3693), - [anon_sym_join] = ACTIONS(3693), - [anon_sym_on] = ACTIONS(3693), - [anon_sym_equals] = ACTIONS(3693), - [anon_sym_let] = ACTIONS(3693), - [anon_sym_orderby] = ACTIONS(3693), - [anon_sym_ascending] = ACTIONS(3693), - [anon_sym_descending] = ACTIONS(3693), - [anon_sym_group] = ACTIONS(3693), - [anon_sym_by] = ACTIONS(3693), - [anon_sym_select] = ACTIONS(3693), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3713), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [ts_builtin_sym_end] = ACTIONS(3400), + [sym__identifier_token] = ACTIONS(3398), + [anon_sym_extern] = ACTIONS(3398), + [anon_sym_alias] = ACTIONS(3398), + [anon_sym_SEMI] = ACTIONS(3400), + [anon_sym_global] = ACTIONS(3398), + [anon_sym_using] = ACTIONS(3398), + [anon_sym_unsafe] = ACTIONS(3398), + [anon_sym_static] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym_return] = ACTIONS(3398), + [anon_sym_namespace] = ACTIONS(3398), + [anon_sym_class] = ACTIONS(3398), + [anon_sym_ref] = ACTIONS(3398), + [anon_sym_struct] = ACTIONS(3398), + [anon_sym_enum] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_interface] = ACTIONS(3398), + [anon_sym_delegate] = ACTIONS(3398), + [anon_sym_record] = ACTIONS(3398), + [anon_sym_public] = ACTIONS(3398), + [anon_sym_private] = ACTIONS(3398), + [anon_sym_readonly] = ACTIONS(3398), + [anon_sym_abstract] = ACTIONS(3398), + [anon_sym_async] = ACTIONS(3398), + [anon_sym_const] = ACTIONS(3398), + [anon_sym_file] = ACTIONS(3398), + [anon_sym_fixed] = ACTIONS(3398), + [anon_sym_internal] = ACTIONS(3398), + [anon_sym_new] = ACTIONS(3398), + [anon_sym_override] = ACTIONS(3398), + [anon_sym_partial] = ACTIONS(3398), + [anon_sym_protected] = ACTIONS(3398), + [anon_sym_required] = ACTIONS(3398), + [anon_sym_sealed] = ACTIONS(3398), + [anon_sym_virtual] = ACTIONS(3398), + [anon_sym_volatile] = ACTIONS(3398), + [anon_sym_where] = ACTIONS(3398), + [anon_sym_notnull] = ACTIONS(3398), + [anon_sym_unmanaged] = ACTIONS(3398), + [anon_sym_checked] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(3398), + [anon_sym_scoped] = ACTIONS(3398), + [anon_sym_base] = ACTIONS(3398), + [anon_sym_var] = ACTIONS(3398), + [anon_sym_STAR] = ACTIONS(3400), + [sym_predefined_type] = ACTIONS(3398), + [anon_sym_break] = ACTIONS(3398), + [anon_sym_unchecked] = ACTIONS(3398), + [anon_sym_continue] = ACTIONS(3398), + [anon_sym_do] = ACTIONS(3398), + [anon_sym_while] = ACTIONS(3398), + [anon_sym_for] = ACTIONS(3398), + [anon_sym_lock] = ACTIONS(3398), + [anon_sym_yield] = ACTIONS(3398), + [anon_sym_switch] = ACTIONS(3398), + [anon_sym_default] = ACTIONS(3398), + [anon_sym_throw] = ACTIONS(3398), + [anon_sym_try] = ACTIONS(3398), + [anon_sym_when] = ACTIONS(3398), + [anon_sym_await] = ACTIONS(3398), + [anon_sym_foreach] = ACTIONS(3398), + [anon_sym_goto] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_else] = ACTIONS(3714), + [anon_sym_DOT_DOT] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(3400), + [anon_sym_CARET] = ACTIONS(3400), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3400), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3398), + [anon_sym_false] = ACTIONS(3398), + [anon_sym_from] = ACTIONS(3398), + [anon_sym_into] = ACTIONS(3398), + [anon_sym_join] = ACTIONS(3398), + [anon_sym_on] = ACTIONS(3398), + [anon_sym_equals] = ACTIONS(3398), + [anon_sym_let] = ACTIONS(3398), + [anon_sym_orderby] = ACTIONS(3398), + [anon_sym_ascending] = ACTIONS(3398), + [anon_sym_descending] = ACTIONS(3398), + [anon_sym_group] = ACTIONS(3398), + [anon_sym_by] = ACTIONS(3398), + [anon_sym_select] = ACTIONS(3398), + [anon_sym_stackalloc] = ACTIONS(3398), + [anon_sym_sizeof] = ACTIONS(3398), + [anon_sym_typeof] = ACTIONS(3398), + [anon_sym___makeref] = ACTIONS(3398), + [anon_sym___reftype] = ACTIONS(3398), + [anon_sym___refvalue] = ACTIONS(3398), + [sym_null_literal] = ACTIONS(3398), + [anon_sym_SQUOTE] = ACTIONS(3400), + [sym_integer_literal] = ACTIONS(3398), + [sym_real_literal] = ACTIONS(3400), + [anon_sym_DQUOTE] = ACTIONS(3400), + [sym_verbatim_string_literal] = ACTIONS(3400), + [sym_grit_metavariable] = ACTIONS(3400), + [aux_sym_preproc_if_token1] = ACTIONS(3400), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391043,6 +391061,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(3400), + [sym_interpolation_verbatim_start] = ACTIONS(3400), + [sym_interpolation_raw_start] = ACTIONS(3400), + [sym_raw_string_start] = ACTIONS(3400), }, [2038] = { [sym_preproc_region] = STATE(2038), @@ -391054,109 +391076,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3542), - [sym__identifier_token] = ACTIONS(3540), - [anon_sym_extern] = ACTIONS(3540), - [anon_sym_alias] = ACTIONS(3540), - [anon_sym_SEMI] = ACTIONS(3542), - [anon_sym_global] = ACTIONS(3540), - [anon_sym_using] = ACTIONS(3540), - [anon_sym_unsafe] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3542), - [anon_sym_LPAREN] = ACTIONS(3542), - [anon_sym_return] = ACTIONS(3540), - [anon_sym_namespace] = ACTIONS(3540), - [anon_sym_class] = ACTIONS(3540), - [anon_sym_ref] = ACTIONS(3540), - [anon_sym_struct] = ACTIONS(3540), - [anon_sym_enum] = ACTIONS(3540), - [anon_sym_LBRACE] = ACTIONS(3542), - [anon_sym_interface] = ACTIONS(3540), - [anon_sym_delegate] = ACTIONS(3540), - [anon_sym_record] = ACTIONS(3540), - [anon_sym_public] = ACTIONS(3540), - [anon_sym_private] = ACTIONS(3540), - [anon_sym_readonly] = ACTIONS(3540), - [anon_sym_abstract] = ACTIONS(3540), - [anon_sym_async] = ACTIONS(3540), - [anon_sym_const] = ACTIONS(3540), - [anon_sym_file] = ACTIONS(3540), - [anon_sym_fixed] = ACTIONS(3540), - [anon_sym_internal] = ACTIONS(3540), - [anon_sym_new] = ACTIONS(3540), - [anon_sym_override] = ACTIONS(3540), - [anon_sym_partial] = ACTIONS(3540), - [anon_sym_protected] = ACTIONS(3540), - [anon_sym_required] = ACTIONS(3540), - [anon_sym_sealed] = ACTIONS(3540), - [anon_sym_virtual] = ACTIONS(3540), - [anon_sym_volatile] = ACTIONS(3540), - [anon_sym_where] = ACTIONS(3540), - [anon_sym_notnull] = ACTIONS(3540), - [anon_sym_unmanaged] = ACTIONS(3540), - [anon_sym_checked] = ACTIONS(3540), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_TILDE] = ACTIONS(3542), - [anon_sym_PLUS_PLUS] = ACTIONS(3542), - [anon_sym_DASH_DASH] = ACTIONS(3542), - [anon_sym_true] = ACTIONS(3540), - [anon_sym_false] = ACTIONS(3540), - [anon_sym_PLUS] = ACTIONS(3540), - [anon_sym_DASH] = ACTIONS(3540), - [anon_sym_STAR] = ACTIONS(3542), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3542), - [anon_sym_this] = ACTIONS(3540), - [anon_sym_scoped] = ACTIONS(3540), - [anon_sym_base] = ACTIONS(3540), - [anon_sym_var] = ACTIONS(3540), - [sym_predefined_type] = ACTIONS(3540), - [anon_sym_break] = ACTIONS(3540), - [anon_sym_unchecked] = ACTIONS(3540), - [anon_sym_continue] = ACTIONS(3540), - [anon_sym_do] = ACTIONS(3540), - [anon_sym_while] = ACTIONS(3540), - [anon_sym_for] = ACTIONS(3540), - [anon_sym_lock] = ACTIONS(3540), - [anon_sym_yield] = ACTIONS(3540), - [anon_sym_switch] = ACTIONS(3540), - [anon_sym_default] = ACTIONS(3540), - [anon_sym_throw] = ACTIONS(3540), - [anon_sym_try] = ACTIONS(3540), - [anon_sym_when] = ACTIONS(3540), - [anon_sym_await] = ACTIONS(3540), - [anon_sym_foreach] = ACTIONS(3540), - [anon_sym_goto] = ACTIONS(3540), - [anon_sym_if] = ACTIONS(3540), - [anon_sym_else] = ACTIONS(3540), - [anon_sym_DOT_DOT] = ACTIONS(3542), - [anon_sym_from] = ACTIONS(3540), - [anon_sym_into] = ACTIONS(3540), - [anon_sym_join] = ACTIONS(3540), - [anon_sym_on] = ACTIONS(3540), - [anon_sym_equals] = ACTIONS(3540), - [anon_sym_let] = ACTIONS(3540), - [anon_sym_orderby] = ACTIONS(3540), - [anon_sym_ascending] = ACTIONS(3540), - [anon_sym_descending] = ACTIONS(3540), - [anon_sym_group] = ACTIONS(3540), - [anon_sym_by] = ACTIONS(3540), - [anon_sym_select] = ACTIONS(3540), - [anon_sym_stackalloc] = ACTIONS(3540), - [anon_sym_sizeof] = ACTIONS(3540), - [anon_sym_typeof] = ACTIONS(3540), - [anon_sym___makeref] = ACTIONS(3540), - [anon_sym___reftype] = ACTIONS(3540), - [anon_sym___refvalue] = ACTIONS(3540), - [sym_null_literal] = ACTIONS(3540), - [anon_sym_SQUOTE] = ACTIONS(3542), - [sym_integer_literal] = ACTIONS(3540), - [sym_real_literal] = ACTIONS(3542), - [anon_sym_DQUOTE] = ACTIONS(3542), - [sym_verbatim_string_literal] = ACTIONS(3542), - [sym_grit_metavariable] = ACTIONS(3542), - [aux_sym_preproc_if_token1] = ACTIONS(3542), + [ts_builtin_sym_end] = ACTIONS(3554), + [sym__identifier_token] = ACTIONS(3552), + [anon_sym_extern] = ACTIONS(3552), + [anon_sym_alias] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3554), + [anon_sym_global] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_unsafe] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_ref] = ACTIONS(3552), + [anon_sym_struct] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_delegate] = ACTIONS(3552), + [anon_sym_record] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_file] = ACTIONS(3552), + [anon_sym_fixed] = ACTIONS(3552), + [anon_sym_internal] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_partial] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_sealed] = ACTIONS(3552), + [anon_sym_virtual] = ACTIONS(3552), + [anon_sym_volatile] = ACTIONS(3552), + [anon_sym_where] = ACTIONS(3552), + [anon_sym_notnull] = ACTIONS(3552), + [anon_sym_unmanaged] = ACTIONS(3552), + [anon_sym_checked] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(3552), + [anon_sym_scoped] = ACTIONS(3552), + [anon_sym_base] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_STAR] = ACTIONS(3554), + [sym_predefined_type] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_unchecked] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_lock] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_default] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_when] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_foreach] = ACTIONS(3552), + [anon_sym_goto] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_else] = ACTIONS(3552), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_CARET] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_PLUS_PLUS] = ACTIONS(3554), + [anon_sym_DASH_DASH] = ACTIONS(3554), + [anon_sym_true] = ACTIONS(3552), + [anon_sym_false] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_into] = ACTIONS(3552), + [anon_sym_join] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_equals] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_orderby] = ACTIONS(3552), + [anon_sym_ascending] = ACTIONS(3552), + [anon_sym_descending] = ACTIONS(3552), + [anon_sym_group] = ACTIONS(3552), + [anon_sym_by] = ACTIONS(3552), + [anon_sym_select] = ACTIONS(3552), + [anon_sym_stackalloc] = ACTIONS(3552), + [anon_sym_sizeof] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym___makeref] = ACTIONS(3552), + [anon_sym___reftype] = ACTIONS(3552), + [anon_sym___refvalue] = ACTIONS(3552), + [sym_null_literal] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3554), + [sym_integer_literal] = ACTIONS(3552), + [sym_real_literal] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [sym_verbatim_string_literal] = ACTIONS(3554), + [sym_grit_metavariable] = ACTIONS(3554), + [aux_sym_preproc_if_token1] = ACTIONS(3554), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391167,10 +391189,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(3542), - [sym_interpolation_verbatim_start] = ACTIONS(3542), - [sym_interpolation_raw_start] = ACTIONS(3542), - [sym_raw_string_start] = ACTIONS(3542), + [sym_interpolation_regular_start] = ACTIONS(3554), + [sym_interpolation_verbatim_start] = ACTIONS(3554), + [sym_interpolation_raw_start] = ACTIONS(3554), + [sym_raw_string_start] = ACTIONS(3554), }, [2039] = { [sym_preproc_region] = STATE(2039), @@ -391182,123 +391204,123 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3502), - [sym__identifier_token] = ACTIONS(3500), - [anon_sym_extern] = ACTIONS(3500), - [anon_sym_alias] = ACTIONS(3500), - [anon_sym_SEMI] = ACTIONS(3502), - [anon_sym_global] = ACTIONS(3500), - [anon_sym_using] = ACTIONS(3500), - [anon_sym_unsafe] = ACTIONS(3500), - [anon_sym_static] = ACTIONS(3500), - [anon_sym_LBRACK] = ACTIONS(3502), - [anon_sym_LPAREN] = ACTIONS(3502), - [anon_sym_return] = ACTIONS(3500), - [anon_sym_namespace] = ACTIONS(3500), - [anon_sym_class] = ACTIONS(3500), - [anon_sym_ref] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(3500), - [anon_sym_enum] = ACTIONS(3500), - [anon_sym_LBRACE] = ACTIONS(3502), - [anon_sym_interface] = ACTIONS(3500), - [anon_sym_delegate] = ACTIONS(3500), - [anon_sym_record] = ACTIONS(3500), - [anon_sym_public] = ACTIONS(3500), - [anon_sym_private] = ACTIONS(3500), - [anon_sym_readonly] = ACTIONS(3500), - [anon_sym_abstract] = ACTIONS(3500), - [anon_sym_async] = ACTIONS(3500), - [anon_sym_const] = ACTIONS(3500), - [anon_sym_file] = ACTIONS(3500), - [anon_sym_fixed] = ACTIONS(3500), - [anon_sym_internal] = ACTIONS(3500), - [anon_sym_new] = ACTIONS(3500), - [anon_sym_override] = ACTIONS(3500), - [anon_sym_partial] = ACTIONS(3500), - [anon_sym_protected] = ACTIONS(3500), - [anon_sym_required] = ACTIONS(3500), - [anon_sym_sealed] = ACTIONS(3500), - [anon_sym_virtual] = ACTIONS(3500), - [anon_sym_volatile] = ACTIONS(3500), - [anon_sym_where] = ACTIONS(3500), - [anon_sym_notnull] = ACTIONS(3500), - [anon_sym_unmanaged] = ACTIONS(3500), - [anon_sym_checked] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_TILDE] = ACTIONS(3502), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3502), - [anon_sym_true] = ACTIONS(3500), - [anon_sym_false] = ACTIONS(3500), - [anon_sym_PLUS] = ACTIONS(3500), - [anon_sym_DASH] = ACTIONS(3500), - [anon_sym_STAR] = ACTIONS(3502), - [anon_sym_CARET] = ACTIONS(3502), - [anon_sym_AMP] = ACTIONS(3502), - [anon_sym_this] = ACTIONS(3500), - [anon_sym_scoped] = ACTIONS(3500), - [anon_sym_base] = ACTIONS(3500), - [anon_sym_var] = ACTIONS(3500), - [sym_predefined_type] = ACTIONS(3500), - [anon_sym_break] = ACTIONS(3500), - [anon_sym_unchecked] = ACTIONS(3500), - [anon_sym_continue] = ACTIONS(3500), - [anon_sym_do] = ACTIONS(3500), - [anon_sym_while] = ACTIONS(3500), - [anon_sym_for] = ACTIONS(3500), - [anon_sym_lock] = ACTIONS(3500), - [anon_sym_yield] = ACTIONS(3500), - [anon_sym_switch] = ACTIONS(3500), - [anon_sym_default] = ACTIONS(3500), - [anon_sym_throw] = ACTIONS(3500), - [anon_sym_try] = ACTIONS(3500), - [anon_sym_when] = ACTIONS(3500), - [anon_sym_await] = ACTIONS(3500), - [anon_sym_foreach] = ACTIONS(3500), - [anon_sym_goto] = ACTIONS(3500), - [anon_sym_if] = ACTIONS(3500), - [anon_sym_else] = ACTIONS(3500), - [anon_sym_DOT_DOT] = ACTIONS(3502), - [anon_sym_from] = ACTIONS(3500), - [anon_sym_into] = ACTIONS(3500), - [anon_sym_join] = ACTIONS(3500), - [anon_sym_on] = ACTIONS(3500), - [anon_sym_equals] = ACTIONS(3500), - [anon_sym_let] = ACTIONS(3500), - [anon_sym_orderby] = ACTIONS(3500), - [anon_sym_ascending] = ACTIONS(3500), - [anon_sym_descending] = ACTIONS(3500), - [anon_sym_group] = ACTIONS(3500), - [anon_sym_by] = ACTIONS(3500), - [anon_sym_select] = ACTIONS(3500), - [anon_sym_stackalloc] = ACTIONS(3500), - [anon_sym_sizeof] = ACTIONS(3500), - [anon_sym_typeof] = ACTIONS(3500), - [anon_sym___makeref] = ACTIONS(3500), - [anon_sym___reftype] = ACTIONS(3500), - [anon_sym___refvalue] = ACTIONS(3500), - [sym_null_literal] = ACTIONS(3500), - [anon_sym_SQUOTE] = ACTIONS(3502), - [sym_integer_literal] = ACTIONS(3500), - [sym_real_literal] = ACTIONS(3502), - [anon_sym_DQUOTE] = ACTIONS(3502), - [sym_verbatim_string_literal] = ACTIONS(3502), - [sym_grit_metavariable] = ACTIONS(3502), - [aux_sym_preproc_if_token1] = ACTIONS(3502), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3502), - [sym_interpolation_verbatim_start] = ACTIONS(3502), - [sym_interpolation_raw_start] = ACTIONS(3502), - [sym_raw_string_start] = ACTIONS(3502), + [ts_builtin_sym_end] = ACTIONS(3406), + [sym__identifier_token] = ACTIONS(3404), + [anon_sym_extern] = ACTIONS(3404), + [anon_sym_alias] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3406), + [anon_sym_global] = ACTIONS(3404), + [anon_sym_using] = ACTIONS(3404), + [anon_sym_unsafe] = ACTIONS(3404), + [anon_sym_static] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_namespace] = ACTIONS(3404), + [anon_sym_class] = ACTIONS(3404), + [anon_sym_ref] = ACTIONS(3404), + [anon_sym_struct] = ACTIONS(3404), + [anon_sym_enum] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_interface] = ACTIONS(3404), + [anon_sym_delegate] = ACTIONS(3404), + [anon_sym_record] = ACTIONS(3404), + [anon_sym_public] = ACTIONS(3404), + [anon_sym_private] = ACTIONS(3404), + [anon_sym_readonly] = ACTIONS(3404), + [anon_sym_abstract] = ACTIONS(3404), + [anon_sym_async] = ACTIONS(3404), + [anon_sym_const] = ACTIONS(3404), + [anon_sym_file] = ACTIONS(3404), + [anon_sym_fixed] = ACTIONS(3404), + [anon_sym_internal] = ACTIONS(3404), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_override] = ACTIONS(3404), + [anon_sym_partial] = ACTIONS(3404), + [anon_sym_protected] = ACTIONS(3404), + [anon_sym_required] = ACTIONS(3404), + [anon_sym_sealed] = ACTIONS(3404), + [anon_sym_virtual] = ACTIONS(3404), + [anon_sym_volatile] = ACTIONS(3404), + [anon_sym_where] = ACTIONS(3404), + [anon_sym_notnull] = ACTIONS(3404), + [anon_sym_unmanaged] = ACTIONS(3404), + [anon_sym_checked] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(3404), + [anon_sym_scoped] = ACTIONS(3404), + [anon_sym_base] = ACTIONS(3404), + [anon_sym_var] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [sym_predefined_type] = ACTIONS(3404), + [anon_sym_break] = ACTIONS(3404), + [anon_sym_unchecked] = ACTIONS(3404), + [anon_sym_continue] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_lock] = ACTIONS(3404), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_switch] = ACTIONS(3404), + [anon_sym_default] = ACTIONS(3404), + [anon_sym_throw] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_when] = ACTIONS(3404), + [anon_sym_await] = ACTIONS(3404), + [anon_sym_foreach] = ACTIONS(3404), + [anon_sym_goto] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_else] = ACTIONS(3404), + [anon_sym_DOT_DOT] = ACTIONS(3406), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_CARET] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3406), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_from] = ACTIONS(3404), + [anon_sym_into] = ACTIONS(3404), + [anon_sym_join] = ACTIONS(3404), + [anon_sym_on] = ACTIONS(3404), + [anon_sym_equals] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_orderby] = ACTIONS(3404), + [anon_sym_ascending] = ACTIONS(3404), + [anon_sym_descending] = ACTIONS(3404), + [anon_sym_group] = ACTIONS(3404), + [anon_sym_by] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3404), + [anon_sym_stackalloc] = ACTIONS(3404), + [anon_sym_sizeof] = ACTIONS(3404), + [anon_sym_typeof] = ACTIONS(3404), + [anon_sym___makeref] = ACTIONS(3404), + [anon_sym___reftype] = ACTIONS(3404), + [anon_sym___refvalue] = ACTIONS(3404), + [sym_null_literal] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(3406), + [sym_integer_literal] = ACTIONS(3404), + [sym_real_literal] = ACTIONS(3406), + [anon_sym_DQUOTE] = ACTIONS(3406), + [sym_verbatim_string_literal] = ACTIONS(3406), + [sym_grit_metavariable] = ACTIONS(3406), + [aux_sym_preproc_if_token1] = ACTIONS(3406), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3406), + [sym_interpolation_verbatim_start] = ACTIONS(3406), + [sym_interpolation_raw_start] = ACTIONS(3406), + [sym_raw_string_start] = ACTIONS(3406), }, [2040] = { [sym_preproc_region] = STATE(2040), @@ -391310,109 +391332,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3450), - [sym__identifier_token] = ACTIONS(3448), - [anon_sym_extern] = ACTIONS(3448), - [anon_sym_alias] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3450), - [anon_sym_global] = ACTIONS(3448), - [anon_sym_using] = ACTIONS(3448), - [anon_sym_unsafe] = ACTIONS(3448), - [anon_sym_static] = ACTIONS(3448), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_LPAREN] = ACTIONS(3450), - [anon_sym_return] = ACTIONS(3448), - [anon_sym_namespace] = ACTIONS(3448), - [anon_sym_class] = ACTIONS(3448), - [anon_sym_ref] = ACTIONS(3448), - [anon_sym_struct] = ACTIONS(3448), - [anon_sym_enum] = ACTIONS(3448), - [anon_sym_LBRACE] = ACTIONS(3450), - [anon_sym_interface] = ACTIONS(3448), - [anon_sym_delegate] = ACTIONS(3448), - [anon_sym_record] = ACTIONS(3448), - [anon_sym_public] = ACTIONS(3448), - [anon_sym_private] = ACTIONS(3448), - [anon_sym_readonly] = ACTIONS(3448), - [anon_sym_abstract] = ACTIONS(3448), - [anon_sym_async] = ACTIONS(3448), - [anon_sym_const] = ACTIONS(3448), - [anon_sym_file] = ACTIONS(3448), - [anon_sym_fixed] = ACTIONS(3448), - [anon_sym_internal] = ACTIONS(3448), - [anon_sym_new] = ACTIONS(3448), - [anon_sym_override] = ACTIONS(3448), - [anon_sym_partial] = ACTIONS(3448), - [anon_sym_protected] = ACTIONS(3448), - [anon_sym_required] = ACTIONS(3448), - [anon_sym_sealed] = ACTIONS(3448), - [anon_sym_virtual] = ACTIONS(3448), - [anon_sym_volatile] = ACTIONS(3448), - [anon_sym_where] = ACTIONS(3448), - [anon_sym_notnull] = ACTIONS(3448), - [anon_sym_unmanaged] = ACTIONS(3448), - [anon_sym_checked] = ACTIONS(3448), - [anon_sym_BANG] = ACTIONS(3450), - [anon_sym_TILDE] = ACTIONS(3450), - [anon_sym_PLUS_PLUS] = ACTIONS(3450), - [anon_sym_DASH_DASH] = ACTIONS(3450), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [anon_sym_PLUS] = ACTIONS(3448), - [anon_sym_DASH] = ACTIONS(3448), - [anon_sym_STAR] = ACTIONS(3450), - [anon_sym_CARET] = ACTIONS(3450), - [anon_sym_AMP] = ACTIONS(3450), - [anon_sym_this] = ACTIONS(3448), - [anon_sym_scoped] = ACTIONS(3448), - [anon_sym_base] = ACTIONS(3448), - [anon_sym_var] = ACTIONS(3448), - [sym_predefined_type] = ACTIONS(3448), - [anon_sym_break] = ACTIONS(3448), - [anon_sym_unchecked] = ACTIONS(3448), - [anon_sym_continue] = ACTIONS(3448), - [anon_sym_do] = ACTIONS(3448), - [anon_sym_while] = ACTIONS(3448), - [anon_sym_for] = ACTIONS(3448), - [anon_sym_lock] = ACTIONS(3448), - [anon_sym_yield] = ACTIONS(3448), - [anon_sym_switch] = ACTIONS(3448), - [anon_sym_default] = ACTIONS(3448), - [anon_sym_throw] = ACTIONS(3448), - [anon_sym_try] = ACTIONS(3448), - [anon_sym_when] = ACTIONS(3448), - [anon_sym_await] = ACTIONS(3448), - [anon_sym_foreach] = ACTIONS(3448), - [anon_sym_goto] = ACTIONS(3448), - [anon_sym_if] = ACTIONS(3448), - [anon_sym_else] = ACTIONS(3448), - [anon_sym_DOT_DOT] = ACTIONS(3450), - [anon_sym_from] = ACTIONS(3448), - [anon_sym_into] = ACTIONS(3448), - [anon_sym_join] = ACTIONS(3448), - [anon_sym_on] = ACTIONS(3448), - [anon_sym_equals] = ACTIONS(3448), - [anon_sym_let] = ACTIONS(3448), - [anon_sym_orderby] = ACTIONS(3448), - [anon_sym_ascending] = ACTIONS(3448), - [anon_sym_descending] = ACTIONS(3448), - [anon_sym_group] = ACTIONS(3448), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_select] = ACTIONS(3448), - [anon_sym_stackalloc] = ACTIONS(3448), - [anon_sym_sizeof] = ACTIONS(3448), - [anon_sym_typeof] = ACTIONS(3448), - [anon_sym___makeref] = ACTIONS(3448), - [anon_sym___reftype] = ACTIONS(3448), - [anon_sym___refvalue] = ACTIONS(3448), - [sym_null_literal] = ACTIONS(3448), - [anon_sym_SQUOTE] = ACTIONS(3450), - [sym_integer_literal] = ACTIONS(3448), - [sym_real_literal] = ACTIONS(3450), - [anon_sym_DQUOTE] = ACTIONS(3450), - [sym_verbatim_string_literal] = ACTIONS(3450), - [sym_grit_metavariable] = ACTIONS(3450), - [aux_sym_preproc_if_token1] = ACTIONS(3450), + [ts_builtin_sym_end] = ACTIONS(3550), + [sym__identifier_token] = ACTIONS(3548), + [anon_sym_extern] = ACTIONS(3548), + [anon_sym_alias] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_global] = ACTIONS(3548), + [anon_sym_using] = ACTIONS(3548), + [anon_sym_unsafe] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3550), + [anon_sym_LPAREN] = ACTIONS(3550), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_ref] = ACTIONS(3548), + [anon_sym_struct] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_interface] = ACTIONS(3548), + [anon_sym_delegate] = ACTIONS(3548), + [anon_sym_record] = ACTIONS(3548), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_readonly] = ACTIONS(3548), + [anon_sym_abstract] = ACTIONS(3548), + [anon_sym_async] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_file] = ACTIONS(3548), + [anon_sym_fixed] = ACTIONS(3548), + [anon_sym_internal] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_override] = ACTIONS(3548), + [anon_sym_partial] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_required] = ACTIONS(3548), + [anon_sym_sealed] = ACTIONS(3548), + [anon_sym_virtual] = ACTIONS(3548), + [anon_sym_volatile] = ACTIONS(3548), + [anon_sym_where] = ACTIONS(3548), + [anon_sym_notnull] = ACTIONS(3548), + [anon_sym_unmanaged] = ACTIONS(3548), + [anon_sym_checked] = ACTIONS(3548), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_this] = ACTIONS(3548), + [anon_sym_scoped] = ACTIONS(3548), + [anon_sym_base] = ACTIONS(3548), + [anon_sym_var] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [sym_predefined_type] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_unchecked] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_lock] = ACTIONS(3548), + [anon_sym_yield] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_when] = ACTIONS(3548), + [anon_sym_await] = ACTIONS(3548), + [anon_sym_foreach] = ACTIONS(3548), + [anon_sym_goto] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3548), + [anon_sym_DOT_DOT] = ACTIONS(3550), + [anon_sym_AMP] = ACTIONS(3550), + [anon_sym_CARET] = ACTIONS(3550), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_DASH_DASH] = ACTIONS(3550), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [anon_sym_from] = ACTIONS(3548), + [anon_sym_into] = ACTIONS(3548), + [anon_sym_join] = ACTIONS(3548), + [anon_sym_on] = ACTIONS(3548), + [anon_sym_equals] = ACTIONS(3548), + [anon_sym_let] = ACTIONS(3548), + [anon_sym_orderby] = ACTIONS(3548), + [anon_sym_ascending] = ACTIONS(3548), + [anon_sym_descending] = ACTIONS(3548), + [anon_sym_group] = ACTIONS(3548), + [anon_sym_by] = ACTIONS(3548), + [anon_sym_select] = ACTIONS(3548), + [anon_sym_stackalloc] = ACTIONS(3548), + [anon_sym_sizeof] = ACTIONS(3548), + [anon_sym_typeof] = ACTIONS(3548), + [anon_sym___makeref] = ACTIONS(3548), + [anon_sym___reftype] = ACTIONS(3548), + [anon_sym___refvalue] = ACTIONS(3548), + [sym_null_literal] = ACTIONS(3548), + [anon_sym_SQUOTE] = ACTIONS(3550), + [sym_integer_literal] = ACTIONS(3548), + [sym_real_literal] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [sym_verbatim_string_literal] = ACTIONS(3550), + [sym_grit_metavariable] = ACTIONS(3550), + [aux_sym_preproc_if_token1] = ACTIONS(3550), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391423,10 +391445,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(3450), - [sym_interpolation_verbatim_start] = ACTIONS(3450), - [sym_interpolation_raw_start] = ACTIONS(3450), - [sym_raw_string_start] = ACTIONS(3450), + [sym_interpolation_regular_start] = ACTIONS(3550), + [sym_interpolation_verbatim_start] = ACTIONS(3550), + [sym_interpolation_raw_start] = ACTIONS(3550), + [sym_raw_string_start] = ACTIONS(3550), }, [2041] = { [sym_preproc_region] = STATE(2041), @@ -391438,123 +391460,123 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3442), - [sym__identifier_token] = ACTIONS(3440), - [anon_sym_extern] = ACTIONS(3440), - [anon_sym_alias] = ACTIONS(3440), - [anon_sym_SEMI] = ACTIONS(3442), - [anon_sym_global] = ACTIONS(3440), - [anon_sym_using] = ACTIONS(3440), - [anon_sym_unsafe] = ACTIONS(3440), - [anon_sym_static] = ACTIONS(3440), - [anon_sym_LBRACK] = ACTIONS(3442), - [anon_sym_LPAREN] = ACTIONS(3442), - [anon_sym_return] = ACTIONS(3440), - [anon_sym_namespace] = ACTIONS(3440), - [anon_sym_class] = ACTIONS(3440), - [anon_sym_ref] = ACTIONS(3440), - [anon_sym_struct] = ACTIONS(3440), - [anon_sym_enum] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3442), - [anon_sym_interface] = ACTIONS(3440), - [anon_sym_delegate] = ACTIONS(3440), - [anon_sym_record] = ACTIONS(3440), - [anon_sym_public] = ACTIONS(3440), - [anon_sym_private] = ACTIONS(3440), - [anon_sym_readonly] = ACTIONS(3440), - [anon_sym_abstract] = ACTIONS(3440), - [anon_sym_async] = ACTIONS(3440), - [anon_sym_const] = ACTIONS(3440), - [anon_sym_file] = ACTIONS(3440), - [anon_sym_fixed] = ACTIONS(3440), - [anon_sym_internal] = ACTIONS(3440), - [anon_sym_new] = ACTIONS(3440), - [anon_sym_override] = ACTIONS(3440), - [anon_sym_partial] = ACTIONS(3440), - [anon_sym_protected] = ACTIONS(3440), - [anon_sym_required] = ACTIONS(3440), - [anon_sym_sealed] = ACTIONS(3440), - [anon_sym_virtual] = ACTIONS(3440), - [anon_sym_volatile] = ACTIONS(3440), - [anon_sym_where] = ACTIONS(3440), - [anon_sym_notnull] = ACTIONS(3440), - [anon_sym_unmanaged] = ACTIONS(3440), - [anon_sym_checked] = ACTIONS(3440), - [anon_sym_BANG] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3442), - [anon_sym_PLUS_PLUS] = ACTIONS(3442), - [anon_sym_DASH_DASH] = ACTIONS(3442), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_PLUS] = ACTIONS(3440), - [anon_sym_DASH] = ACTIONS(3440), - [anon_sym_STAR] = ACTIONS(3442), - [anon_sym_CARET] = ACTIONS(3442), - [anon_sym_AMP] = ACTIONS(3442), - [anon_sym_this] = ACTIONS(3440), - [anon_sym_scoped] = ACTIONS(3440), - [anon_sym_base] = ACTIONS(3440), - [anon_sym_var] = ACTIONS(3440), - [sym_predefined_type] = ACTIONS(3440), - [anon_sym_break] = ACTIONS(3440), - [anon_sym_unchecked] = ACTIONS(3440), - [anon_sym_continue] = ACTIONS(3440), - [anon_sym_do] = ACTIONS(3440), - [anon_sym_while] = ACTIONS(3440), - [anon_sym_for] = ACTIONS(3440), - [anon_sym_lock] = ACTIONS(3440), - [anon_sym_yield] = ACTIONS(3440), - [anon_sym_switch] = ACTIONS(3440), - [anon_sym_default] = ACTIONS(3440), - [anon_sym_throw] = ACTIONS(3440), - [anon_sym_try] = ACTIONS(3440), - [anon_sym_when] = ACTIONS(3440), - [anon_sym_await] = ACTIONS(3440), - [anon_sym_foreach] = ACTIONS(3440), - [anon_sym_goto] = ACTIONS(3440), - [anon_sym_if] = ACTIONS(3440), - [anon_sym_else] = ACTIONS(3440), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [anon_sym_from] = ACTIONS(3440), - [anon_sym_into] = ACTIONS(3440), - [anon_sym_join] = ACTIONS(3440), - [anon_sym_on] = ACTIONS(3440), - [anon_sym_equals] = ACTIONS(3440), - [anon_sym_let] = ACTIONS(3440), - [anon_sym_orderby] = ACTIONS(3440), - [anon_sym_ascending] = ACTIONS(3440), - [anon_sym_descending] = ACTIONS(3440), - [anon_sym_group] = ACTIONS(3440), - [anon_sym_by] = ACTIONS(3440), - [anon_sym_select] = ACTIONS(3440), - [anon_sym_stackalloc] = ACTIONS(3440), - [anon_sym_sizeof] = ACTIONS(3440), - [anon_sym_typeof] = ACTIONS(3440), - [anon_sym___makeref] = ACTIONS(3440), - [anon_sym___reftype] = ACTIONS(3440), - [anon_sym___refvalue] = ACTIONS(3440), - [sym_null_literal] = ACTIONS(3440), - [anon_sym_SQUOTE] = ACTIONS(3442), - [sym_integer_literal] = ACTIONS(3440), - [sym_real_literal] = ACTIONS(3442), - [anon_sym_DQUOTE] = ACTIONS(3442), - [sym_verbatim_string_literal] = ACTIONS(3442), - [sym_grit_metavariable] = ACTIONS(3442), - [aux_sym_preproc_if_token1] = ACTIONS(3442), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3442), - [sym_interpolation_verbatim_start] = ACTIONS(3442), - [sym_interpolation_raw_start] = ACTIONS(3442), - [sym_raw_string_start] = ACTIONS(3442), + [ts_builtin_sym_end] = ACTIONS(3410), + [sym__identifier_token] = ACTIONS(3408), + [anon_sym_extern] = ACTIONS(3408), + [anon_sym_alias] = ACTIONS(3408), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_global] = ACTIONS(3408), + [anon_sym_using] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_namespace] = ACTIONS(3408), + [anon_sym_class] = ACTIONS(3408), + [anon_sym_ref] = ACTIONS(3408), + [anon_sym_struct] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_interface] = ACTIONS(3408), + [anon_sym_delegate] = ACTIONS(3408), + [anon_sym_record] = ACTIONS(3408), + [anon_sym_public] = ACTIONS(3408), + [anon_sym_private] = ACTIONS(3408), + [anon_sym_readonly] = ACTIONS(3408), + [anon_sym_abstract] = ACTIONS(3408), + [anon_sym_async] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_file] = ACTIONS(3408), + [anon_sym_fixed] = ACTIONS(3408), + [anon_sym_internal] = ACTIONS(3408), + [anon_sym_new] = ACTIONS(3408), + [anon_sym_override] = ACTIONS(3408), + [anon_sym_partial] = ACTIONS(3408), + [anon_sym_protected] = ACTIONS(3408), + [anon_sym_required] = ACTIONS(3408), + [anon_sym_sealed] = ACTIONS(3408), + [anon_sym_virtual] = ACTIONS(3408), + [anon_sym_volatile] = ACTIONS(3408), + [anon_sym_where] = ACTIONS(3408), + [anon_sym_notnull] = ACTIONS(3408), + [anon_sym_unmanaged] = ACTIONS(3408), + [anon_sym_checked] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(3408), + [anon_sym_scoped] = ACTIONS(3408), + [anon_sym_base] = ACTIONS(3408), + [anon_sym_var] = ACTIONS(3408), + [anon_sym_STAR] = ACTIONS(3410), + [sym_predefined_type] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_unchecked] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_do] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_yield] = ACTIONS(3408), + [anon_sym_switch] = ACTIONS(3408), + [anon_sym_default] = ACTIONS(3408), + [anon_sym_throw] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [anon_sym_when] = ACTIONS(3408), + [anon_sym_await] = ACTIONS(3408), + [anon_sym_foreach] = ACTIONS(3408), + [anon_sym_goto] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_else] = ACTIONS(3408), + [anon_sym_DOT_DOT] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym_CARET] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3408), + [anon_sym_false] = ACTIONS(3408), + [anon_sym_from] = ACTIONS(3408), + [anon_sym_into] = ACTIONS(3408), + [anon_sym_join] = ACTIONS(3408), + [anon_sym_on] = ACTIONS(3408), + [anon_sym_equals] = ACTIONS(3408), + [anon_sym_let] = ACTIONS(3408), + [anon_sym_orderby] = ACTIONS(3408), + [anon_sym_ascending] = ACTIONS(3408), + [anon_sym_descending] = ACTIONS(3408), + [anon_sym_group] = ACTIONS(3408), + [anon_sym_by] = ACTIONS(3408), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_stackalloc] = ACTIONS(3408), + [anon_sym_sizeof] = ACTIONS(3408), + [anon_sym_typeof] = ACTIONS(3408), + [anon_sym___makeref] = ACTIONS(3408), + [anon_sym___reftype] = ACTIONS(3408), + [anon_sym___refvalue] = ACTIONS(3408), + [sym_null_literal] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3410), + [sym_integer_literal] = ACTIONS(3408), + [sym_real_literal] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3410), + [sym_verbatim_string_literal] = ACTIONS(3410), + [sym_grit_metavariable] = 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), }, [2042] = { [sym_preproc_region] = STATE(2042), @@ -391566,109 +391588,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym__identifier_token] = ACTIONS(3436), - [anon_sym_extern] = ACTIONS(3436), - [anon_sym_alias] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_global] = ACTIONS(3436), - [anon_sym_using] = ACTIONS(3436), - [anon_sym_unsafe] = ACTIONS(3436), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_namespace] = ACTIONS(3436), - [anon_sym_class] = ACTIONS(3436), - [anon_sym_ref] = ACTIONS(3436), - [anon_sym_struct] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_interface] = ACTIONS(3436), - [anon_sym_delegate] = ACTIONS(3436), - [anon_sym_record] = ACTIONS(3436), - [anon_sym_public] = ACTIONS(3436), - [anon_sym_private] = ACTIONS(3436), - [anon_sym_readonly] = ACTIONS(3436), - [anon_sym_abstract] = ACTIONS(3436), - [anon_sym_async] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_file] = ACTIONS(3436), - [anon_sym_fixed] = ACTIONS(3436), - [anon_sym_internal] = ACTIONS(3436), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_override] = ACTIONS(3436), - [anon_sym_partial] = ACTIONS(3436), - [anon_sym_protected] = ACTIONS(3436), - [anon_sym_required] = ACTIONS(3436), - [anon_sym_sealed] = ACTIONS(3436), - [anon_sym_virtual] = ACTIONS(3436), - [anon_sym_volatile] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_notnull] = ACTIONS(3436), - [anon_sym_unmanaged] = ACTIONS(3436), - [anon_sym_checked] = ACTIONS(3436), - [anon_sym_BANG] = ACTIONS(3438), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_CARET] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3438), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_scoped] = ACTIONS(3436), - [anon_sym_base] = ACTIONS(3436), - [anon_sym_var] = ACTIONS(3436), - [sym_predefined_type] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_unchecked] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_do] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_for] = ACTIONS(3436), - [anon_sym_lock] = ACTIONS(3436), - [anon_sym_yield] = ACTIONS(3436), - [anon_sym_switch] = ACTIONS(3436), - [anon_sym_default] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_when] = ACTIONS(3436), - [anon_sym_await] = ACTIONS(3436), - [anon_sym_foreach] = ACTIONS(3436), - [anon_sym_goto] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_from] = ACTIONS(3436), - [anon_sym_into] = ACTIONS(3436), - [anon_sym_join] = ACTIONS(3436), - [anon_sym_on] = ACTIONS(3436), - [anon_sym_equals] = ACTIONS(3436), - [anon_sym_let] = ACTIONS(3436), - [anon_sym_orderby] = ACTIONS(3436), - [anon_sym_ascending] = ACTIONS(3436), - [anon_sym_descending] = ACTIONS(3436), - [anon_sym_group] = ACTIONS(3436), - [anon_sym_by] = ACTIONS(3436), - [anon_sym_select] = ACTIONS(3436), - [anon_sym_stackalloc] = ACTIONS(3436), - [anon_sym_sizeof] = ACTIONS(3436), - [anon_sym_typeof] = ACTIONS(3436), - [anon_sym___makeref] = ACTIONS(3436), - [anon_sym___reftype] = ACTIONS(3436), - [anon_sym___refvalue] = ACTIONS(3436), - [sym_null_literal] = ACTIONS(3436), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym_integer_literal] = ACTIONS(3436), - [sym_real_literal] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(3438), - [sym_verbatim_string_literal] = ACTIONS(3438), - [sym_grit_metavariable] = ACTIONS(3438), - [aux_sym_preproc_if_token1] = ACTIONS(3438), + [ts_builtin_sym_end] = ACTIONS(3546), + [sym__identifier_token] = ACTIONS(3544), + [anon_sym_extern] = ACTIONS(3544), + [anon_sym_alias] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym_global] = ACTIONS(3544), + [anon_sym_using] = ACTIONS(3544), + [anon_sym_unsafe] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3546), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_namespace] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3544), + [anon_sym_ref] = ACTIONS(3544), + [anon_sym_struct] = ACTIONS(3544), + [anon_sym_enum] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_interface] = ACTIONS(3544), + [anon_sym_delegate] = ACTIONS(3544), + [anon_sym_record] = ACTIONS(3544), + [anon_sym_public] = ACTIONS(3544), + [anon_sym_private] = ACTIONS(3544), + [anon_sym_readonly] = ACTIONS(3544), + [anon_sym_abstract] = ACTIONS(3544), + [anon_sym_async] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_file] = ACTIONS(3544), + [anon_sym_fixed] = ACTIONS(3544), + [anon_sym_internal] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_override] = ACTIONS(3544), + [anon_sym_partial] = ACTIONS(3544), + [anon_sym_protected] = ACTIONS(3544), + [anon_sym_required] = ACTIONS(3544), + [anon_sym_sealed] = ACTIONS(3544), + [anon_sym_virtual] = ACTIONS(3544), + [anon_sym_volatile] = ACTIONS(3544), + [anon_sym_where] = ACTIONS(3544), + [anon_sym_notnull] = ACTIONS(3544), + [anon_sym_unmanaged] = ACTIONS(3544), + [anon_sym_checked] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_this] = ACTIONS(3544), + [anon_sym_scoped] = ACTIONS(3544), + [anon_sym_base] = ACTIONS(3544), + [anon_sym_var] = ACTIONS(3544), + [anon_sym_STAR] = ACTIONS(3546), + [sym_predefined_type] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_unchecked] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_lock] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_default] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_when] = ACTIONS(3544), + [anon_sym_await] = ACTIONS(3544), + [anon_sym_foreach] = ACTIONS(3544), + [anon_sym_goto] = ACTIONS(3544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_else] = ACTIONS(3544), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3546), + [anon_sym_CARET] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3544), + [anon_sym_false] = ACTIONS(3544), + [anon_sym_from] = ACTIONS(3544), + [anon_sym_into] = ACTIONS(3544), + [anon_sym_join] = ACTIONS(3544), + [anon_sym_on] = ACTIONS(3544), + [anon_sym_equals] = ACTIONS(3544), + [anon_sym_let] = ACTIONS(3544), + [anon_sym_orderby] = ACTIONS(3544), + [anon_sym_ascending] = ACTIONS(3544), + [anon_sym_descending] = ACTIONS(3544), + [anon_sym_group] = ACTIONS(3544), + [anon_sym_by] = ACTIONS(3544), + [anon_sym_select] = ACTIONS(3544), + [anon_sym_stackalloc] = ACTIONS(3544), + [anon_sym_sizeof] = ACTIONS(3544), + [anon_sym_typeof] = ACTIONS(3544), + [anon_sym___makeref] = ACTIONS(3544), + [anon_sym___reftype] = ACTIONS(3544), + [anon_sym___refvalue] = ACTIONS(3544), + [sym_null_literal] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(3546), + [sym_integer_literal] = ACTIONS(3544), + [sym_real_literal] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [sym_verbatim_string_literal] = ACTIONS(3546), + [sym_grit_metavariable] = ACTIONS(3546), + [aux_sym_preproc_if_token1] = ACTIONS(3546), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391679,10 +391701,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(3438), - [sym_interpolation_verbatim_start] = ACTIONS(3438), - [sym_interpolation_raw_start] = ACTIONS(3438), - [sym_raw_string_start] = ACTIONS(3438), + [sym_interpolation_regular_start] = ACTIONS(3546), + [sym_interpolation_verbatim_start] = ACTIONS(3546), + [sym_interpolation_raw_start] = ACTIONS(3546), + [sym_raw_string_start] = ACTIONS(3546), }, [2043] = { [sym_preproc_region] = STATE(2043), @@ -391694,125 +391716,127 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3454), - [sym__identifier_token] = ACTIONS(3452), - [anon_sym_extern] = ACTIONS(3452), - [anon_sym_alias] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_global] = ACTIONS(3452), - [anon_sym_using] = ACTIONS(3452), - [anon_sym_unsafe] = ACTIONS(3452), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3452), - [anon_sym_namespace] = ACTIONS(3452), - [anon_sym_class] = ACTIONS(3452), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_struct] = ACTIONS(3452), - [anon_sym_enum] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_interface] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3452), - [anon_sym_record] = ACTIONS(3452), - [anon_sym_public] = ACTIONS(3452), - [anon_sym_private] = ACTIONS(3452), - [anon_sym_readonly] = ACTIONS(3452), - [anon_sym_abstract] = ACTIONS(3452), - [anon_sym_async] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_file] = ACTIONS(3452), - [anon_sym_fixed] = ACTIONS(3452), - [anon_sym_internal] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3452), - [anon_sym_override] = ACTIONS(3452), - [anon_sym_partial] = ACTIONS(3452), - [anon_sym_protected] = ACTIONS(3452), - [anon_sym_required] = ACTIONS(3452), - [anon_sym_sealed] = ACTIONS(3452), - [anon_sym_virtual] = ACTIONS(3452), - [anon_sym_volatile] = ACTIONS(3452), - [anon_sym_where] = ACTIONS(3452), - [anon_sym_notnull] = ACTIONS(3452), - [anon_sym_unmanaged] = ACTIONS(3452), - [anon_sym_checked] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_PLUS_PLUS] = ACTIONS(3454), - [anon_sym_DASH_DASH] = ACTIONS(3454), - [anon_sym_true] = ACTIONS(3452), - [anon_sym_false] = ACTIONS(3452), - [anon_sym_PLUS] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3452), - [anon_sym_STAR] = ACTIONS(3454), - [anon_sym_CARET] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(3452), - [anon_sym_scoped] = ACTIONS(3452), - [anon_sym_base] = ACTIONS(3452), - [anon_sym_var] = ACTIONS(3452), - [sym_predefined_type] = ACTIONS(3452), - [anon_sym_break] = ACTIONS(3452), - [anon_sym_unchecked] = ACTIONS(3452), - [anon_sym_continue] = ACTIONS(3452), - [anon_sym_do] = ACTIONS(3452), - [anon_sym_while] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3452), - [anon_sym_lock] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3452), - [anon_sym_switch] = ACTIONS(3452), - [anon_sym_default] = ACTIONS(3452), - [anon_sym_throw] = ACTIONS(3452), - [anon_sym_try] = ACTIONS(3452), - [anon_sym_when] = ACTIONS(3452), - [anon_sym_await] = ACTIONS(3452), - [anon_sym_foreach] = ACTIONS(3452), - [anon_sym_goto] = ACTIONS(3452), - [anon_sym_if] = ACTIONS(3452), - [anon_sym_else] = ACTIONS(3452), - [anon_sym_DOT_DOT] = ACTIONS(3454), - [anon_sym_from] = ACTIONS(3452), - [anon_sym_into] = ACTIONS(3452), - [anon_sym_join] = ACTIONS(3452), - [anon_sym_on] = ACTIONS(3452), - [anon_sym_equals] = ACTIONS(3452), - [anon_sym_let] = ACTIONS(3452), - [anon_sym_orderby] = ACTIONS(3452), - [anon_sym_ascending] = ACTIONS(3452), - [anon_sym_descending] = ACTIONS(3452), - [anon_sym_group] = ACTIONS(3452), - [anon_sym_by] = ACTIONS(3452), - [anon_sym_select] = ACTIONS(3452), - [anon_sym_stackalloc] = ACTIONS(3452), - [anon_sym_sizeof] = ACTIONS(3452), - [anon_sym_typeof] = ACTIONS(3452), - [anon_sym___makeref] = ACTIONS(3452), - [anon_sym___reftype] = ACTIONS(3452), - [anon_sym___refvalue] = ACTIONS(3452), - [sym_null_literal] = ACTIONS(3452), - [anon_sym_SQUOTE] = ACTIONS(3454), - [sym_integer_literal] = ACTIONS(3452), - [sym_real_literal] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [sym_verbatim_string_literal] = ACTIONS(3454), - [sym_grit_metavariable] = ACTIONS(3454), - [aux_sym_preproc_if_token1] = ACTIONS(3454), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3454), - [sym_interpolation_verbatim_start] = ACTIONS(3454), - [sym_interpolation_raw_start] = ACTIONS(3454), - [sym_raw_string_start] = ACTIONS(3454), + [ts_builtin_sym_end] = ACTIONS(3414), + [sym__identifier_token] = ACTIONS(3412), + [anon_sym_extern] = ACTIONS(3412), + [anon_sym_alias] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_global] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_unsafe] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3414), + [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(3414), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_delegate] = ACTIONS(3412), + [anon_sym_record] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_readonly] = 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_protected] = 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_TILDE] = ACTIONS(3414), + [anon_sym_this] = ACTIONS(3412), + [anon_sym_scoped] = ACTIONS(3412), + [anon_sym_base] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3414), + [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_else] = ACTIONS(3412), + [anon_sym_DOT_DOT] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3414), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [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(3414), + [sym_integer_literal] = ACTIONS(3412), + [sym_real_literal] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [sym_verbatim_string_literal] = ACTIONS(3414), + [sym_grit_metavariable] = 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), }, [2044] = { + [sym_catch_clause] = STATE(2111), + [sym_finally_clause] = STATE(2152), [sym_preproc_region] = STATE(2044), [sym_preproc_endregion] = STATE(2044), [sym_preproc_line] = STATE(2044), @@ -391822,393 +391846,7 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3430), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_SEMI] = ACTIONS(3430), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_using] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3430), - [anon_sym_LPAREN] = ACTIONS(3430), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_namespace] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3430), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_readonly] = 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_protected] = 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_checked] = ACTIONS(3428), - [anon_sym_BANG] = ACTIONS(3430), - [anon_sym_TILDE] = ACTIONS(3430), - [anon_sym_PLUS_PLUS] = ACTIONS(3430), - [anon_sym_DASH_DASH] = ACTIONS(3430), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_STAR] = ACTIONS(3430), - [anon_sym_CARET] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3430), - [anon_sym_this] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_base] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_unchecked] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_lock] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_switch] = ACTIONS(3428), - [anon_sym_default] = ACTIONS(3428), - [anon_sym_throw] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_await] = ACTIONS(3428), - [anon_sym_foreach] = ACTIONS(3428), - [anon_sym_goto] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_else] = ACTIONS(3428), - [anon_sym_DOT_DOT] = ACTIONS(3430), - [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_stackalloc] = ACTIONS(3428), - [anon_sym_sizeof] = ACTIONS(3428), - [anon_sym_typeof] = ACTIONS(3428), - [anon_sym___makeref] = ACTIONS(3428), - [anon_sym___reftype] = ACTIONS(3428), - [anon_sym___refvalue] = ACTIONS(3428), - [sym_null_literal] = ACTIONS(3428), - [anon_sym_SQUOTE] = ACTIONS(3430), - [sym_integer_literal] = ACTIONS(3428), - [sym_real_literal] = ACTIONS(3430), - [anon_sym_DQUOTE] = ACTIONS(3430), - [sym_verbatim_string_literal] = ACTIONS(3430), - [sym_grit_metavariable] = ACTIONS(3430), - [aux_sym_preproc_if_token1] = ACTIONS(3430), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3430), - [sym_interpolation_verbatim_start] = ACTIONS(3430), - [sym_interpolation_raw_start] = ACTIONS(3430), - [sym_raw_string_start] = ACTIONS(3430), - }, - [2045] = { - [sym_preproc_region] = STATE(2045), - [sym_preproc_endregion] = STATE(2045), - [sym_preproc_line] = STATE(2045), - [sym_preproc_pragma] = STATE(2045), - [sym_preproc_nullable] = STATE(2045), - [sym_preproc_error] = STATE(2045), - [sym_preproc_warning] = STATE(2045), - [sym_preproc_define] = STATE(2045), - [sym_preproc_undef] = STATE(2045), - [ts_builtin_sym_end] = ACTIONS(3412), - [sym__identifier_token] = ACTIONS(3410), - [anon_sym_extern] = ACTIONS(3410), - [anon_sym_alias] = ACTIONS(3410), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_global] = ACTIONS(3410), - [anon_sym_using] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(3410), - [anon_sym_static] = ACTIONS(3410), - [anon_sym_LBRACK] = ACTIONS(3412), - [anon_sym_LPAREN] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3410), - [anon_sym_namespace] = ACTIONS(3410), - [anon_sym_class] = ACTIONS(3410), - [anon_sym_ref] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3410), - [anon_sym_enum] = ACTIONS(3410), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_interface] = ACTIONS(3410), - [anon_sym_delegate] = ACTIONS(3410), - [anon_sym_record] = ACTIONS(3410), - [anon_sym_public] = ACTIONS(3410), - [anon_sym_private] = ACTIONS(3410), - [anon_sym_readonly] = ACTIONS(3410), - [anon_sym_abstract] = ACTIONS(3410), - [anon_sym_async] = ACTIONS(3410), - [anon_sym_const] = ACTIONS(3410), - [anon_sym_file] = ACTIONS(3410), - [anon_sym_fixed] = ACTIONS(3410), - [anon_sym_internal] = ACTIONS(3410), - [anon_sym_new] = ACTIONS(3410), - [anon_sym_override] = ACTIONS(3410), - [anon_sym_partial] = ACTIONS(3410), - [anon_sym_protected] = ACTIONS(3410), - [anon_sym_required] = ACTIONS(3410), - [anon_sym_sealed] = ACTIONS(3410), - [anon_sym_virtual] = ACTIONS(3410), - [anon_sym_volatile] = ACTIONS(3410), - [anon_sym_where] = ACTIONS(3410), - [anon_sym_notnull] = ACTIONS(3410), - [anon_sym_unmanaged] = ACTIONS(3410), - [anon_sym_checked] = ACTIONS(3410), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3412), - [anon_sym_DASH_DASH] = ACTIONS(3412), - [anon_sym_true] = ACTIONS(3410), - [anon_sym_false] = ACTIONS(3410), - [anon_sym_PLUS] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_CARET] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_this] = ACTIONS(3410), - [anon_sym_scoped] = ACTIONS(3410), - [anon_sym_base] = ACTIONS(3410), - [anon_sym_var] = ACTIONS(3410), - [sym_predefined_type] = ACTIONS(3410), - [anon_sym_break] = ACTIONS(3410), - [anon_sym_unchecked] = ACTIONS(3410), - [anon_sym_continue] = ACTIONS(3410), - [anon_sym_do] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3410), - [anon_sym_for] = ACTIONS(3410), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_yield] = ACTIONS(3410), - [anon_sym_switch] = ACTIONS(3410), - [anon_sym_default] = ACTIONS(3410), - [anon_sym_throw] = ACTIONS(3410), - [anon_sym_try] = ACTIONS(3410), - [anon_sym_when] = ACTIONS(3410), - [anon_sym_await] = ACTIONS(3410), - [anon_sym_foreach] = ACTIONS(3410), - [anon_sym_goto] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3410), - [anon_sym_else] = ACTIONS(3410), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_from] = ACTIONS(3410), - [anon_sym_into] = ACTIONS(3410), - [anon_sym_join] = ACTIONS(3410), - [anon_sym_on] = ACTIONS(3410), - [anon_sym_equals] = ACTIONS(3410), - [anon_sym_let] = ACTIONS(3410), - [anon_sym_orderby] = ACTIONS(3410), - [anon_sym_ascending] = ACTIONS(3410), - [anon_sym_descending] = ACTIONS(3410), - [anon_sym_group] = ACTIONS(3410), - [anon_sym_by] = ACTIONS(3410), - [anon_sym_select] = ACTIONS(3410), - [anon_sym_stackalloc] = ACTIONS(3410), - [anon_sym_sizeof] = ACTIONS(3410), - [anon_sym_typeof] = ACTIONS(3410), - [anon_sym___makeref] = ACTIONS(3410), - [anon_sym___reftype] = ACTIONS(3410), - [anon_sym___refvalue] = ACTIONS(3410), - [sym_null_literal] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3412), - [sym_integer_literal] = ACTIONS(3410), - [sym_real_literal] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [sym_verbatim_string_literal] = ACTIONS(3412), - [sym_grit_metavariable] = ACTIONS(3412), - [aux_sym_preproc_if_token1] = ACTIONS(3412), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3412), - [sym_interpolation_verbatim_start] = ACTIONS(3412), - [sym_interpolation_raw_start] = ACTIONS(3412), - [sym_raw_string_start] = ACTIONS(3412), - }, - [2046] = { - [sym_preproc_region] = STATE(2046), - [sym_preproc_endregion] = STATE(2046), - [sym_preproc_line] = STATE(2046), - [sym_preproc_pragma] = STATE(2046), - [sym_preproc_nullable] = STATE(2046), - [sym_preproc_error] = STATE(2046), - [sym_preproc_warning] = STATE(2046), - [sym_preproc_define] = STATE(2046), - [sym_preproc_undef] = STATE(2046), - [ts_builtin_sym_end] = ACTIONS(3396), - [sym__identifier_token] = ACTIONS(3394), - [anon_sym_extern] = ACTIONS(3394), - [anon_sym_alias] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3396), - [anon_sym_global] = ACTIONS(3394), - [anon_sym_using] = ACTIONS(3394), - [anon_sym_unsafe] = ACTIONS(3394), - [anon_sym_static] = ACTIONS(3394), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_LPAREN] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3394), - [anon_sym_namespace] = ACTIONS(3394), - [anon_sym_class] = ACTIONS(3394), - [anon_sym_ref] = ACTIONS(3394), - [anon_sym_struct] = ACTIONS(3394), - [anon_sym_enum] = ACTIONS(3394), - [anon_sym_LBRACE] = ACTIONS(3396), - [anon_sym_interface] = ACTIONS(3394), - [anon_sym_delegate] = ACTIONS(3394), - [anon_sym_record] = ACTIONS(3394), - [anon_sym_public] = ACTIONS(3394), - [anon_sym_private] = ACTIONS(3394), - [anon_sym_readonly] = ACTIONS(3394), - [anon_sym_abstract] = ACTIONS(3394), - [anon_sym_async] = ACTIONS(3394), - [anon_sym_const] = ACTIONS(3394), - [anon_sym_file] = ACTIONS(3394), - [anon_sym_fixed] = ACTIONS(3394), - [anon_sym_internal] = ACTIONS(3394), - [anon_sym_new] = ACTIONS(3394), - [anon_sym_override] = ACTIONS(3394), - [anon_sym_partial] = ACTIONS(3394), - [anon_sym_protected] = ACTIONS(3394), - [anon_sym_required] = ACTIONS(3394), - [anon_sym_sealed] = ACTIONS(3394), - [anon_sym_virtual] = ACTIONS(3394), - [anon_sym_volatile] = ACTIONS(3394), - [anon_sym_where] = ACTIONS(3394), - [anon_sym_notnull] = ACTIONS(3394), - [anon_sym_unmanaged] = ACTIONS(3394), - [anon_sym_checked] = ACTIONS(3394), - [anon_sym_BANG] = ACTIONS(3396), - [anon_sym_TILDE] = ACTIONS(3396), - [anon_sym_PLUS_PLUS] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3396), - [anon_sym_true] = ACTIONS(3394), - [anon_sym_false] = ACTIONS(3394), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_CARET] = ACTIONS(3396), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_this] = ACTIONS(3394), - [anon_sym_scoped] = ACTIONS(3394), - [anon_sym_base] = ACTIONS(3394), - [anon_sym_var] = ACTIONS(3394), - [sym_predefined_type] = ACTIONS(3394), - [anon_sym_break] = ACTIONS(3394), - [anon_sym_unchecked] = ACTIONS(3394), - [anon_sym_continue] = ACTIONS(3394), - [anon_sym_do] = ACTIONS(3394), - [anon_sym_while] = ACTIONS(3394), - [anon_sym_for] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3394), - [anon_sym_yield] = ACTIONS(3394), - [anon_sym_switch] = ACTIONS(3394), - [anon_sym_default] = ACTIONS(3394), - [anon_sym_throw] = ACTIONS(3394), - [anon_sym_try] = ACTIONS(3394), - [anon_sym_when] = ACTIONS(3394), - [anon_sym_await] = ACTIONS(3394), - [anon_sym_foreach] = ACTIONS(3394), - [anon_sym_goto] = ACTIONS(3394), - [anon_sym_if] = ACTIONS(3394), - [anon_sym_else] = ACTIONS(3394), - [anon_sym_DOT_DOT] = ACTIONS(3396), - [anon_sym_from] = ACTIONS(3394), - [anon_sym_into] = ACTIONS(3394), - [anon_sym_join] = ACTIONS(3394), - [anon_sym_on] = ACTIONS(3394), - [anon_sym_equals] = ACTIONS(3394), - [anon_sym_let] = ACTIONS(3394), - [anon_sym_orderby] = ACTIONS(3394), - [anon_sym_ascending] = ACTIONS(3394), - [anon_sym_descending] = ACTIONS(3394), - [anon_sym_group] = ACTIONS(3394), - [anon_sym_by] = ACTIONS(3394), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_stackalloc] = ACTIONS(3394), - [anon_sym_sizeof] = ACTIONS(3394), - [anon_sym_typeof] = ACTIONS(3394), - [anon_sym___makeref] = ACTIONS(3394), - [anon_sym___reftype] = ACTIONS(3394), - [anon_sym___refvalue] = ACTIONS(3394), - [sym_null_literal] = ACTIONS(3394), - [anon_sym_SQUOTE] = ACTIONS(3396), - [sym_integer_literal] = ACTIONS(3394), - [sym_real_literal] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(3396), - [sym_verbatim_string_literal] = ACTIONS(3396), - [sym_grit_metavariable] = ACTIONS(3396), - [aux_sym_preproc_if_token1] = ACTIONS(3396), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3396), - [sym_interpolation_verbatim_start] = ACTIONS(3396), - [sym_interpolation_raw_start] = ACTIONS(3396), - [sym_raw_string_start] = ACTIONS(3396), - }, - [2047] = { - [sym_catch_clause] = STATE(2114), - [sym_finally_clause] = STATE(2132), - [sym_preproc_region] = STATE(2047), - [sym_preproc_endregion] = STATE(2047), - [sym_preproc_line] = STATE(2047), - [sym_preproc_pragma] = STATE(2047), - [sym_preproc_nullable] = STATE(2047), - [sym_preproc_error] = STATE(2047), - [sym_preproc_warning] = STATE(2047), - [sym_preproc_define] = STATE(2047), - [sym_preproc_undef] = STATE(2047), - [aux_sym_try_statement_repeat1] = STATE(2073), + [aux_sym_try_statement_repeat1] = STATE(2059), [sym__identifier_token] = ACTIONS(3340), [anon_sym_extern] = ACTIONS(3340), [anon_sym_alias] = ACTIONS(3340), @@ -392245,21 +391883,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3340), [anon_sym_unmanaged] = ACTIONS(3340), [anon_sym_checked] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3342), [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3342), - [anon_sym_CARET] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3342), [anon_sym_this] = ACTIONS(3340), [anon_sym_scoped] = ACTIONS(3340), [anon_sym_base] = ACTIONS(3340), [anon_sym_var] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), [sym_predefined_type] = ACTIONS(3340), [anon_sym_break] = ACTIONS(3340), [anon_sym_unchecked] = ACTIONS(3340), @@ -392283,6 +391912,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3340), [anon_sym_else] = ACTIONS(3340), [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), [anon_sym_from] = ACTIONS(3340), [anon_sym_into] = ACTIONS(3340), [anon_sym_join] = ACTIONS(3340), @@ -392324,119 +391962,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3342), [sym_raw_string_start] = ACTIONS(3342), }, - [2048] = { - [sym_preproc_region] = STATE(2048), - [sym_preproc_endregion] = STATE(2048), - [sym_preproc_line] = STATE(2048), - [sym_preproc_pragma] = STATE(2048), - [sym_preproc_nullable] = STATE(2048), - [sym_preproc_error] = STATE(2048), - [sym_preproc_warning] = STATE(2048), - [sym_preproc_define] = STATE(2048), - [sym_preproc_undef] = STATE(2048), - [ts_builtin_sym_end] = ACTIONS(3566), - [sym__identifier_token] = ACTIONS(3564), - [anon_sym_extern] = ACTIONS(3564), - [anon_sym_alias] = ACTIONS(3564), - [anon_sym_SEMI] = ACTIONS(3566), - [anon_sym_global] = ACTIONS(3564), - [anon_sym_using] = ACTIONS(3564), - [anon_sym_unsafe] = ACTIONS(3564), - [anon_sym_static] = ACTIONS(3564), - [anon_sym_LBRACK] = ACTIONS(3566), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_return] = ACTIONS(3564), - [anon_sym_namespace] = ACTIONS(3564), - [anon_sym_class] = ACTIONS(3564), - [anon_sym_ref] = ACTIONS(3564), - [anon_sym_struct] = ACTIONS(3564), - [anon_sym_enum] = ACTIONS(3564), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_interface] = ACTIONS(3564), - [anon_sym_delegate] = ACTIONS(3564), - [anon_sym_record] = ACTIONS(3564), - [anon_sym_public] = ACTIONS(3564), - [anon_sym_private] = ACTIONS(3564), - [anon_sym_readonly] = ACTIONS(3564), - [anon_sym_abstract] = ACTIONS(3564), - [anon_sym_async] = ACTIONS(3564), - [anon_sym_const] = ACTIONS(3564), - [anon_sym_file] = ACTIONS(3564), - [anon_sym_fixed] = ACTIONS(3564), - [anon_sym_internal] = ACTIONS(3564), - [anon_sym_new] = ACTIONS(3564), - [anon_sym_override] = ACTIONS(3564), - [anon_sym_partial] = ACTIONS(3564), - [anon_sym_protected] = ACTIONS(3564), - [anon_sym_required] = ACTIONS(3564), - [anon_sym_sealed] = ACTIONS(3564), - [anon_sym_virtual] = ACTIONS(3564), - [anon_sym_volatile] = ACTIONS(3564), - [anon_sym_where] = ACTIONS(3564), - [anon_sym_notnull] = ACTIONS(3564), - [anon_sym_unmanaged] = ACTIONS(3564), - [anon_sym_checked] = ACTIONS(3564), - [anon_sym_BANG] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_PLUS_PLUS] = ACTIONS(3566), - [anon_sym_DASH_DASH] = ACTIONS(3566), - [anon_sym_true] = ACTIONS(3564), - [anon_sym_false] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3566), - [anon_sym_this] = ACTIONS(3564), - [anon_sym_scoped] = ACTIONS(3564), - [anon_sym_base] = ACTIONS(3564), - [anon_sym_var] = ACTIONS(3564), - [sym_predefined_type] = ACTIONS(3564), - [anon_sym_break] = ACTIONS(3564), - [anon_sym_unchecked] = ACTIONS(3564), - [anon_sym_continue] = ACTIONS(3564), - [anon_sym_do] = ACTIONS(3564), - [anon_sym_while] = ACTIONS(3564), - [anon_sym_for] = ACTIONS(3564), - [anon_sym_lock] = ACTIONS(3564), - [anon_sym_yield] = ACTIONS(3564), - [anon_sym_switch] = ACTIONS(3564), - [anon_sym_default] = ACTIONS(3564), - [anon_sym_throw] = ACTIONS(3564), - [anon_sym_try] = ACTIONS(3564), - [anon_sym_when] = ACTIONS(3564), - [anon_sym_await] = ACTIONS(3564), - [anon_sym_foreach] = ACTIONS(3564), - [anon_sym_goto] = ACTIONS(3564), - [anon_sym_if] = ACTIONS(3564), - [anon_sym_else] = ACTIONS(3564), - [anon_sym_DOT_DOT] = ACTIONS(3566), - [anon_sym_from] = ACTIONS(3564), - [anon_sym_into] = ACTIONS(3564), - [anon_sym_join] = ACTIONS(3564), - [anon_sym_on] = ACTIONS(3564), - [anon_sym_equals] = ACTIONS(3564), - [anon_sym_let] = ACTIONS(3564), - [anon_sym_orderby] = ACTIONS(3564), - [anon_sym_ascending] = ACTIONS(3564), - [anon_sym_descending] = ACTIONS(3564), - [anon_sym_group] = ACTIONS(3564), - [anon_sym_by] = ACTIONS(3564), - [anon_sym_select] = ACTIONS(3564), - [anon_sym_stackalloc] = ACTIONS(3564), - [anon_sym_sizeof] = ACTIONS(3564), - [anon_sym_typeof] = ACTIONS(3564), - [anon_sym___makeref] = ACTIONS(3564), - [anon_sym___reftype] = ACTIONS(3564), - [anon_sym___refvalue] = ACTIONS(3564), - [sym_null_literal] = ACTIONS(3564), - [anon_sym_SQUOTE] = ACTIONS(3566), - [sym_integer_literal] = ACTIONS(3564), - [sym_real_literal] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [sym_verbatim_string_literal] = ACTIONS(3566), - [sym_grit_metavariable] = ACTIONS(3566), - [aux_sym_preproc_if_token1] = ACTIONS(3566), + [2045] = { + [sym_preproc_region] = STATE(2045), + [sym_preproc_endregion] = STATE(2045), + [sym_preproc_line] = STATE(2045), + [sym_preproc_pragma] = STATE(2045), + [sym_preproc_nullable] = STATE(2045), + [sym_preproc_error] = STATE(2045), + [sym_preproc_warning] = STATE(2045), + [sym_preproc_define] = STATE(2045), + [sym_preproc_undef] = STATE(2045), + [ts_builtin_sym_end] = ACTIONS(3486), + [sym__identifier_token] = ACTIONS(3484), + [anon_sym_extern] = ACTIONS(3484), + [anon_sym_alias] = ACTIONS(3484), + [anon_sym_SEMI] = ACTIONS(3486), + [anon_sym_global] = ACTIONS(3484), + [anon_sym_using] = ACTIONS(3484), + [anon_sym_unsafe] = ACTIONS(3484), + [anon_sym_static] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3484), + [anon_sym_namespace] = ACTIONS(3484), + [anon_sym_class] = ACTIONS(3484), + [anon_sym_ref] = ACTIONS(3484), + [anon_sym_struct] = ACTIONS(3484), + [anon_sym_enum] = ACTIONS(3484), + [anon_sym_LBRACE] = ACTIONS(3486), + [anon_sym_interface] = ACTIONS(3484), + [anon_sym_delegate] = ACTIONS(3484), + [anon_sym_record] = ACTIONS(3484), + [anon_sym_public] = ACTIONS(3484), + [anon_sym_private] = ACTIONS(3484), + [anon_sym_readonly] = ACTIONS(3484), + [anon_sym_abstract] = ACTIONS(3484), + [anon_sym_async] = ACTIONS(3484), + [anon_sym_const] = ACTIONS(3484), + [anon_sym_file] = ACTIONS(3484), + [anon_sym_fixed] = ACTIONS(3484), + [anon_sym_internal] = ACTIONS(3484), + [anon_sym_new] = ACTIONS(3484), + [anon_sym_override] = ACTIONS(3484), + [anon_sym_partial] = ACTIONS(3484), + [anon_sym_protected] = ACTIONS(3484), + [anon_sym_required] = ACTIONS(3484), + [anon_sym_sealed] = ACTIONS(3484), + [anon_sym_virtual] = ACTIONS(3484), + [anon_sym_volatile] = ACTIONS(3484), + [anon_sym_where] = ACTIONS(3484), + [anon_sym_notnull] = ACTIONS(3484), + [anon_sym_unmanaged] = ACTIONS(3484), + [anon_sym_checked] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3486), + [anon_sym_this] = ACTIONS(3484), + [anon_sym_scoped] = ACTIONS(3484), + [anon_sym_base] = ACTIONS(3484), + [anon_sym_var] = ACTIONS(3484), + [anon_sym_STAR] = ACTIONS(3486), + [sym_predefined_type] = ACTIONS(3484), + [anon_sym_break] = ACTIONS(3484), + [anon_sym_unchecked] = ACTIONS(3484), + [anon_sym_continue] = ACTIONS(3484), + [anon_sym_do] = ACTIONS(3484), + [anon_sym_while] = ACTIONS(3484), + [anon_sym_for] = ACTIONS(3484), + [anon_sym_lock] = ACTIONS(3484), + [anon_sym_yield] = ACTIONS(3484), + [anon_sym_switch] = ACTIONS(3484), + [anon_sym_default] = ACTIONS(3484), + [anon_sym_throw] = ACTIONS(3484), + [anon_sym_try] = ACTIONS(3484), + [anon_sym_when] = ACTIONS(3484), + [anon_sym_await] = ACTIONS(3484), + [anon_sym_foreach] = ACTIONS(3484), + [anon_sym_goto] = ACTIONS(3484), + [anon_sym_if] = ACTIONS(3484), + [anon_sym_else] = ACTIONS(3484), + [anon_sym_DOT_DOT] = ACTIONS(3486), + [anon_sym_AMP] = ACTIONS(3486), + [anon_sym_CARET] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3484), + [anon_sym_DASH] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3486), + [anon_sym_PLUS_PLUS] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3486), + [anon_sym_true] = ACTIONS(3484), + [anon_sym_false] = ACTIONS(3484), + [anon_sym_from] = ACTIONS(3484), + [anon_sym_into] = ACTIONS(3484), + [anon_sym_join] = ACTIONS(3484), + [anon_sym_on] = ACTIONS(3484), + [anon_sym_equals] = ACTIONS(3484), + [anon_sym_let] = ACTIONS(3484), + [anon_sym_orderby] = ACTIONS(3484), + [anon_sym_ascending] = ACTIONS(3484), + [anon_sym_descending] = ACTIONS(3484), + [anon_sym_group] = ACTIONS(3484), + [anon_sym_by] = ACTIONS(3484), + [anon_sym_select] = ACTIONS(3484), + [anon_sym_stackalloc] = ACTIONS(3484), + [anon_sym_sizeof] = ACTIONS(3484), + [anon_sym_typeof] = ACTIONS(3484), + [anon_sym___makeref] = ACTIONS(3484), + [anon_sym___reftype] = ACTIONS(3484), + [anon_sym___refvalue] = ACTIONS(3484), + [sym_null_literal] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3486), + [sym_integer_literal] = ACTIONS(3484), + [sym_real_literal] = ACTIONS(3486), + [anon_sym_DQUOTE] = ACTIONS(3486), + [sym_verbatim_string_literal] = ACTIONS(3486), + [sym_grit_metavariable] = ACTIONS(3486), + [aux_sym_preproc_if_token1] = ACTIONS(3486), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392447,10 +392085,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3566), - [sym_interpolation_verbatim_start] = ACTIONS(3566), - [sym_interpolation_raw_start] = ACTIONS(3566), - [sym_raw_string_start] = ACTIONS(3566), + [sym_interpolation_regular_start] = ACTIONS(3486), + [sym_interpolation_verbatim_start] = ACTIONS(3486), + [sym_interpolation_raw_start] = ACTIONS(3486), + [sym_raw_string_start] = ACTIONS(3486), + }, + [2046] = { + [sym_preproc_region] = STATE(2046), + [sym_preproc_endregion] = STATE(2046), + [sym_preproc_line] = STATE(2046), + [sym_preproc_pragma] = STATE(2046), + [sym_preproc_nullable] = STATE(2046), + [sym_preproc_error] = STATE(2046), + [sym_preproc_warning] = STATE(2046), + [sym_preproc_define] = STATE(2046), + [sym_preproc_undef] = STATE(2046), + [ts_builtin_sym_end] = ACTIONS(3510), + [sym__identifier_token] = ACTIONS(3508), + [anon_sym_extern] = ACTIONS(3508), + [anon_sym_alias] = ACTIONS(3508), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_global] = ACTIONS(3508), + [anon_sym_using] = ACTIONS(3508), + [anon_sym_unsafe] = ACTIONS(3508), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3508), + [anon_sym_namespace] = ACTIONS(3508), + [anon_sym_class] = ACTIONS(3508), + [anon_sym_ref] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(3508), + [anon_sym_enum] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3510), + [anon_sym_interface] = ACTIONS(3508), + [anon_sym_delegate] = ACTIONS(3508), + [anon_sym_record] = ACTIONS(3508), + [anon_sym_public] = ACTIONS(3508), + [anon_sym_private] = ACTIONS(3508), + [anon_sym_readonly] = ACTIONS(3508), + [anon_sym_abstract] = ACTIONS(3508), + [anon_sym_async] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_file] = ACTIONS(3508), + [anon_sym_fixed] = ACTIONS(3508), + [anon_sym_internal] = ACTIONS(3508), + [anon_sym_new] = ACTIONS(3508), + [anon_sym_override] = ACTIONS(3508), + [anon_sym_partial] = ACTIONS(3508), + [anon_sym_protected] = ACTIONS(3508), + [anon_sym_required] = ACTIONS(3508), + [anon_sym_sealed] = ACTIONS(3508), + [anon_sym_virtual] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3508), + [anon_sym_where] = ACTIONS(3508), + [anon_sym_notnull] = ACTIONS(3508), + [anon_sym_unmanaged] = ACTIONS(3508), + [anon_sym_checked] = ACTIONS(3508), + [anon_sym_TILDE] = ACTIONS(3510), + [anon_sym_this] = ACTIONS(3508), + [anon_sym_scoped] = ACTIONS(3508), + [anon_sym_base] = ACTIONS(3508), + [anon_sym_var] = ACTIONS(3508), + [anon_sym_STAR] = ACTIONS(3510), + [sym_predefined_type] = ACTIONS(3508), + [anon_sym_break] = ACTIONS(3508), + [anon_sym_unchecked] = ACTIONS(3508), + [anon_sym_continue] = ACTIONS(3508), + [anon_sym_do] = ACTIONS(3508), + [anon_sym_while] = ACTIONS(3508), + [anon_sym_for] = ACTIONS(3508), + [anon_sym_lock] = ACTIONS(3508), + [anon_sym_yield] = ACTIONS(3508), + [anon_sym_switch] = ACTIONS(3508), + [anon_sym_default] = ACTIONS(3508), + [anon_sym_throw] = ACTIONS(3508), + [anon_sym_try] = ACTIONS(3508), + [anon_sym_when] = ACTIONS(3508), + [anon_sym_await] = ACTIONS(3508), + [anon_sym_foreach] = ACTIONS(3508), + [anon_sym_goto] = ACTIONS(3508), + [anon_sym_if] = ACTIONS(3508), + [anon_sym_else] = ACTIONS(3508), + [anon_sym_DOT_DOT] = ACTIONS(3510), + [anon_sym_AMP] = ACTIONS(3510), + [anon_sym_CARET] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3508), + [anon_sym_DASH] = ACTIONS(3508), + [anon_sym_BANG] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_true] = ACTIONS(3508), + [anon_sym_false] = ACTIONS(3508), + [anon_sym_from] = ACTIONS(3508), + [anon_sym_into] = ACTIONS(3508), + [anon_sym_join] = ACTIONS(3508), + [anon_sym_on] = ACTIONS(3508), + [anon_sym_equals] = ACTIONS(3508), + [anon_sym_let] = ACTIONS(3508), + [anon_sym_orderby] = ACTIONS(3508), + [anon_sym_ascending] = ACTIONS(3508), + [anon_sym_descending] = ACTIONS(3508), + [anon_sym_group] = ACTIONS(3508), + [anon_sym_by] = ACTIONS(3508), + [anon_sym_select] = ACTIONS(3508), + [anon_sym_stackalloc] = ACTIONS(3508), + [anon_sym_sizeof] = ACTIONS(3508), + [anon_sym_typeof] = ACTIONS(3508), + [anon_sym___makeref] = ACTIONS(3508), + [anon_sym___reftype] = ACTIONS(3508), + [anon_sym___refvalue] = ACTIONS(3508), + [sym_null_literal] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3510), + [sym_integer_literal] = ACTIONS(3508), + [sym_real_literal] = ACTIONS(3510), + [anon_sym_DQUOTE] = ACTIONS(3510), + [sym_verbatim_string_literal] = ACTIONS(3510), + [sym_grit_metavariable] = ACTIONS(3510), + [aux_sym_preproc_if_token1] = ACTIONS(3510), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3510), + [sym_interpolation_verbatim_start] = ACTIONS(3510), + [sym_interpolation_raw_start] = ACTIONS(3510), + [sym_raw_string_start] = ACTIONS(3510), + }, + [2047] = { + [sym_preproc_region] = STATE(2047), + [sym_preproc_endregion] = STATE(2047), + [sym_preproc_line] = STATE(2047), + [sym_preproc_pragma] = STATE(2047), + [sym_preproc_nullable] = STATE(2047), + [sym_preproc_error] = STATE(2047), + [sym_preproc_warning] = STATE(2047), + [sym_preproc_define] = STATE(2047), + [sym_preproc_undef] = STATE(2047), + [ts_builtin_sym_end] = ACTIONS(3458), + [sym__identifier_token] = ACTIONS(3456), + [anon_sym_extern] = ACTIONS(3456), + [anon_sym_alias] = ACTIONS(3456), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_global] = ACTIONS(3456), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_unsafe] = ACTIONS(3456), + [anon_sym_static] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3458), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_namespace] = ACTIONS(3456), + [anon_sym_class] = ACTIONS(3456), + [anon_sym_ref] = ACTIONS(3456), + [anon_sym_struct] = ACTIONS(3456), + [anon_sym_enum] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_interface] = ACTIONS(3456), + [anon_sym_delegate] = ACTIONS(3456), + [anon_sym_record] = ACTIONS(3456), + [anon_sym_public] = ACTIONS(3456), + [anon_sym_private] = ACTIONS(3456), + [anon_sym_readonly] = ACTIONS(3456), + [anon_sym_abstract] = ACTIONS(3456), + [anon_sym_async] = ACTIONS(3456), + [anon_sym_const] = ACTIONS(3456), + [anon_sym_file] = ACTIONS(3456), + [anon_sym_fixed] = ACTIONS(3456), + [anon_sym_internal] = ACTIONS(3456), + [anon_sym_new] = ACTIONS(3456), + [anon_sym_override] = ACTIONS(3456), + [anon_sym_partial] = ACTIONS(3456), + [anon_sym_protected] = ACTIONS(3456), + [anon_sym_required] = ACTIONS(3456), + [anon_sym_sealed] = ACTIONS(3456), + [anon_sym_virtual] = ACTIONS(3456), + [anon_sym_volatile] = ACTIONS(3456), + [anon_sym_where] = ACTIONS(3456), + [anon_sym_notnull] = ACTIONS(3456), + [anon_sym_unmanaged] = ACTIONS(3456), + [anon_sym_checked] = ACTIONS(3456), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_this] = ACTIONS(3456), + [anon_sym_scoped] = ACTIONS(3456), + [anon_sym_base] = ACTIONS(3456), + [anon_sym_var] = ACTIONS(3456), + [anon_sym_STAR] = ACTIONS(3458), + [sym_predefined_type] = ACTIONS(3456), + [anon_sym_break] = ACTIONS(3456), + [anon_sym_unchecked] = ACTIONS(3456), + [anon_sym_continue] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_lock] = ACTIONS(3456), + [anon_sym_yield] = ACTIONS(3456), + [anon_sym_switch] = ACTIONS(3456), + [anon_sym_default] = ACTIONS(3456), + [anon_sym_throw] = ACTIONS(3456), + [anon_sym_try] = ACTIONS(3456), + [anon_sym_when] = ACTIONS(3456), + [anon_sym_await] = ACTIONS(3456), + [anon_sym_foreach] = ACTIONS(3456), + [anon_sym_goto] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_DOT_DOT] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3456), + [anon_sym_DASH] = ACTIONS(3456), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_true] = ACTIONS(3456), + [anon_sym_false] = ACTIONS(3456), + [anon_sym_from] = ACTIONS(3456), + [anon_sym_into] = ACTIONS(3456), + [anon_sym_join] = ACTIONS(3456), + [anon_sym_on] = ACTIONS(3456), + [anon_sym_equals] = ACTIONS(3456), + [anon_sym_let] = ACTIONS(3456), + [anon_sym_orderby] = ACTIONS(3456), + [anon_sym_ascending] = ACTIONS(3456), + [anon_sym_descending] = ACTIONS(3456), + [anon_sym_group] = ACTIONS(3456), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_select] = ACTIONS(3456), + [anon_sym_stackalloc] = ACTIONS(3456), + [anon_sym_sizeof] = ACTIONS(3456), + [anon_sym_typeof] = ACTIONS(3456), + [anon_sym___makeref] = ACTIONS(3456), + [anon_sym___reftype] = ACTIONS(3456), + [anon_sym___refvalue] = ACTIONS(3456), + [sym_null_literal] = ACTIONS(3456), + [anon_sym_SQUOTE] = ACTIONS(3458), + [sym_integer_literal] = ACTIONS(3456), + [sym_real_literal] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [sym_verbatim_string_literal] = ACTIONS(3458), + [sym_grit_metavariable] = ACTIONS(3458), + [aux_sym_preproc_if_token1] = ACTIONS(3458), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3458), + [sym_interpolation_verbatim_start] = ACTIONS(3458), + [sym_interpolation_raw_start] = ACTIONS(3458), + [sym_raw_string_start] = ACTIONS(3458), + }, + [2048] = { + [sym_preproc_region] = STATE(2048), + [sym_preproc_endregion] = STATE(2048), + [sym_preproc_line] = STATE(2048), + [sym_preproc_pragma] = STATE(2048), + [sym_preproc_nullable] = STATE(2048), + [sym_preproc_error] = STATE(2048), + [sym_preproc_warning] = STATE(2048), + [sym_preproc_define] = STATE(2048), + [sym_preproc_undef] = STATE(2048), + [ts_builtin_sym_end] = ACTIONS(3418), + [sym__identifier_token] = ACTIONS(3416), + [anon_sym_extern] = ACTIONS(3416), + [anon_sym_alias] = ACTIONS(3416), + [anon_sym_SEMI] = ACTIONS(3418), + [anon_sym_global] = ACTIONS(3416), + [anon_sym_using] = ACTIONS(3416), + [anon_sym_unsafe] = ACTIONS(3416), + [anon_sym_static] = ACTIONS(3416), + [anon_sym_LBRACK] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3418), + [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(3418), + [anon_sym_interface] = ACTIONS(3416), + [anon_sym_delegate] = ACTIONS(3416), + [anon_sym_record] = ACTIONS(3416), + [anon_sym_public] = ACTIONS(3416), + [anon_sym_private] = ACTIONS(3416), + [anon_sym_readonly] = 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_protected] = 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_TILDE] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(3416), + [anon_sym_scoped] = ACTIONS(3416), + [anon_sym_base] = ACTIONS(3416), + [anon_sym_var] = ACTIONS(3416), + [anon_sym_STAR] = ACTIONS(3418), + [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_else] = ACTIONS(3416), + [anon_sym_DOT_DOT] = ACTIONS(3418), + [anon_sym_AMP] = ACTIONS(3418), + [anon_sym_CARET] = ACTIONS(3418), + [anon_sym_PLUS] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_PLUS_PLUS] = ACTIONS(3418), + [anon_sym_DASH_DASH] = ACTIONS(3418), + [anon_sym_true] = ACTIONS(3416), + [anon_sym_false] = ACTIONS(3416), + [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(3418), + [sym_integer_literal] = ACTIONS(3416), + [sym_real_literal] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(3418), + [sym_verbatim_string_literal] = ACTIONS(3418), + [sym_grit_metavariable] = ACTIONS(3418), + [aux_sym_preproc_if_token1] = ACTIONS(3418), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3418), + [sym_interpolation_verbatim_start] = ACTIONS(3418), + [sym_interpolation_raw_start] = ACTIONS(3418), + [sym_raw_string_start] = ACTIONS(3418), }, [2049] = { [sym_preproc_region] = STATE(2049), @@ -392462,109 +392484,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3530), - [sym__identifier_token] = ACTIONS(3528), - [anon_sym_extern] = ACTIONS(3528), - [anon_sym_alias] = ACTIONS(3528), - [anon_sym_SEMI] = ACTIONS(3530), - [anon_sym_global] = ACTIONS(3528), - [anon_sym_using] = ACTIONS(3528), - [anon_sym_unsafe] = ACTIONS(3528), - [anon_sym_static] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3530), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_namespace] = ACTIONS(3528), - [anon_sym_class] = ACTIONS(3528), - [anon_sym_ref] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(3528), - [anon_sym_enum] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(3530), - [anon_sym_interface] = ACTIONS(3528), - [anon_sym_delegate] = ACTIONS(3528), - [anon_sym_record] = ACTIONS(3528), - [anon_sym_public] = ACTIONS(3528), - [anon_sym_private] = ACTIONS(3528), - [anon_sym_readonly] = ACTIONS(3528), - [anon_sym_abstract] = ACTIONS(3528), - [anon_sym_async] = ACTIONS(3528), - [anon_sym_const] = ACTIONS(3528), - [anon_sym_file] = ACTIONS(3528), - [anon_sym_fixed] = ACTIONS(3528), - [anon_sym_internal] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_override] = ACTIONS(3528), - [anon_sym_partial] = ACTIONS(3528), - [anon_sym_protected] = ACTIONS(3528), - [anon_sym_required] = ACTIONS(3528), - [anon_sym_sealed] = ACTIONS(3528), - [anon_sym_virtual] = ACTIONS(3528), - [anon_sym_volatile] = ACTIONS(3528), - [anon_sym_where] = ACTIONS(3528), - [anon_sym_notnull] = ACTIONS(3528), - [anon_sym_unmanaged] = ACTIONS(3528), - [anon_sym_checked] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3530), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3530), - [anon_sym_true] = ACTIONS(3528), - [anon_sym_false] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_STAR] = ACTIONS(3530), - [anon_sym_CARET] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(3528), - [anon_sym_scoped] = ACTIONS(3528), - [anon_sym_base] = ACTIONS(3528), - [anon_sym_var] = ACTIONS(3528), - [sym_predefined_type] = ACTIONS(3528), - [anon_sym_break] = ACTIONS(3528), - [anon_sym_unchecked] = ACTIONS(3528), - [anon_sym_continue] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_lock] = ACTIONS(3528), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_switch] = ACTIONS(3528), - [anon_sym_default] = ACTIONS(3528), - [anon_sym_throw] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_when] = ACTIONS(3528), - [anon_sym_await] = ACTIONS(3528), - [anon_sym_foreach] = ACTIONS(3528), - [anon_sym_goto] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_else] = ACTIONS(3528), - [anon_sym_DOT_DOT] = ACTIONS(3530), - [anon_sym_from] = ACTIONS(3528), - [anon_sym_into] = ACTIONS(3528), - [anon_sym_join] = ACTIONS(3528), - [anon_sym_on] = ACTIONS(3528), - [anon_sym_equals] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_orderby] = ACTIONS(3528), - [anon_sym_ascending] = ACTIONS(3528), - [anon_sym_descending] = ACTIONS(3528), - [anon_sym_group] = ACTIONS(3528), - [anon_sym_by] = ACTIONS(3528), - [anon_sym_select] = ACTIONS(3528), - [anon_sym_stackalloc] = ACTIONS(3528), - [anon_sym_sizeof] = ACTIONS(3528), - [anon_sym_typeof] = ACTIONS(3528), - [anon_sym___makeref] = ACTIONS(3528), - [anon_sym___reftype] = ACTIONS(3528), - [anon_sym___refvalue] = ACTIONS(3528), - [sym_null_literal] = ACTIONS(3528), - [anon_sym_SQUOTE] = ACTIONS(3530), - [sym_integer_literal] = ACTIONS(3528), - [sym_real_literal] = ACTIONS(3530), - [anon_sym_DQUOTE] = ACTIONS(3530), - [sym_verbatim_string_literal] = ACTIONS(3530), - [sym_grit_metavariable] = ACTIONS(3530), - [aux_sym_preproc_if_token1] = ACTIONS(3530), + [ts_builtin_sym_end] = ACTIONS(3434), + [sym__identifier_token] = ACTIONS(3432), + [anon_sym_extern] = ACTIONS(3432), + [anon_sym_alias] = ACTIONS(3432), + [anon_sym_SEMI] = ACTIONS(3434), + [anon_sym_global] = ACTIONS(3432), + [anon_sym_using] = ACTIONS(3432), + [anon_sym_unsafe] = ACTIONS(3432), + [anon_sym_static] = ACTIONS(3432), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3432), + [anon_sym_namespace] = ACTIONS(3432), + [anon_sym_class] = ACTIONS(3432), + [anon_sym_ref] = ACTIONS(3432), + [anon_sym_struct] = ACTIONS(3432), + [anon_sym_enum] = ACTIONS(3432), + [anon_sym_LBRACE] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3432), + [anon_sym_delegate] = ACTIONS(3432), + [anon_sym_record] = ACTIONS(3432), + [anon_sym_public] = ACTIONS(3432), + [anon_sym_private] = ACTIONS(3432), + [anon_sym_readonly] = ACTIONS(3432), + [anon_sym_abstract] = ACTIONS(3432), + [anon_sym_async] = ACTIONS(3432), + [anon_sym_const] = ACTIONS(3432), + [anon_sym_file] = ACTIONS(3432), + [anon_sym_fixed] = ACTIONS(3432), + [anon_sym_internal] = ACTIONS(3432), + [anon_sym_new] = ACTIONS(3432), + [anon_sym_override] = ACTIONS(3432), + [anon_sym_partial] = ACTIONS(3432), + [anon_sym_protected] = ACTIONS(3432), + [anon_sym_required] = ACTIONS(3432), + [anon_sym_sealed] = ACTIONS(3432), + [anon_sym_virtual] = ACTIONS(3432), + [anon_sym_volatile] = ACTIONS(3432), + [anon_sym_where] = ACTIONS(3432), + [anon_sym_notnull] = ACTIONS(3432), + [anon_sym_unmanaged] = ACTIONS(3432), + [anon_sym_checked] = ACTIONS(3432), + [anon_sym_TILDE] = ACTIONS(3434), + [anon_sym_this] = ACTIONS(3432), + [anon_sym_scoped] = ACTIONS(3432), + [anon_sym_base] = ACTIONS(3432), + [anon_sym_var] = ACTIONS(3432), + [anon_sym_STAR] = ACTIONS(3434), + [sym_predefined_type] = ACTIONS(3432), + [anon_sym_break] = ACTIONS(3432), + [anon_sym_unchecked] = ACTIONS(3432), + [anon_sym_continue] = ACTIONS(3432), + [anon_sym_do] = ACTIONS(3432), + [anon_sym_while] = ACTIONS(3432), + [anon_sym_for] = ACTIONS(3432), + [anon_sym_lock] = ACTIONS(3432), + [anon_sym_yield] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3432), + [anon_sym_default] = ACTIONS(3432), + [anon_sym_throw] = ACTIONS(3432), + [anon_sym_try] = ACTIONS(3432), + [anon_sym_when] = ACTIONS(3432), + [anon_sym_await] = ACTIONS(3432), + [anon_sym_foreach] = ACTIONS(3432), + [anon_sym_goto] = ACTIONS(3432), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_else] = ACTIONS(3432), + [anon_sym_DOT_DOT] = ACTIONS(3434), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym_CARET] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3432), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3434), + [anon_sym_true] = ACTIONS(3432), + [anon_sym_false] = ACTIONS(3432), + [anon_sym_from] = ACTIONS(3432), + [anon_sym_into] = ACTIONS(3432), + [anon_sym_join] = ACTIONS(3432), + [anon_sym_on] = ACTIONS(3432), + [anon_sym_equals] = ACTIONS(3432), + [anon_sym_let] = ACTIONS(3432), + [anon_sym_orderby] = ACTIONS(3432), + [anon_sym_ascending] = ACTIONS(3432), + [anon_sym_descending] = ACTIONS(3432), + [anon_sym_group] = ACTIONS(3432), + [anon_sym_by] = ACTIONS(3432), + [anon_sym_select] = ACTIONS(3432), + [anon_sym_stackalloc] = ACTIONS(3432), + [anon_sym_sizeof] = ACTIONS(3432), + [anon_sym_typeof] = ACTIONS(3432), + [anon_sym___makeref] = ACTIONS(3432), + [anon_sym___reftype] = ACTIONS(3432), + [anon_sym___refvalue] = ACTIONS(3432), + [sym_null_literal] = ACTIONS(3432), + [anon_sym_SQUOTE] = ACTIONS(3434), + [sym_integer_literal] = ACTIONS(3432), + [sym_real_literal] = ACTIONS(3434), + [anon_sym_DQUOTE] = ACTIONS(3434), + [sym_verbatim_string_literal] = ACTIONS(3434), + [sym_grit_metavariable] = ACTIONS(3434), + [aux_sym_preproc_if_token1] = ACTIONS(3434), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392575,10 +392597,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(3530), - [sym_interpolation_verbatim_start] = ACTIONS(3530), - [sym_interpolation_raw_start] = ACTIONS(3530), - [sym_raw_string_start] = ACTIONS(3530), + [sym_interpolation_regular_start] = ACTIONS(3434), + [sym_interpolation_verbatim_start] = ACTIONS(3434), + [sym_interpolation_raw_start] = ACTIONS(3434), + [sym_raw_string_start] = ACTIONS(3434), }, [2050] = { [sym_preproc_region] = STATE(2050), @@ -392590,109 +392612,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3400), - [sym__identifier_token] = ACTIONS(3398), - [anon_sym_extern] = ACTIONS(3398), - [anon_sym_alias] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_global] = ACTIONS(3398), - [anon_sym_using] = ACTIONS(3398), - [anon_sym_unsafe] = ACTIONS(3398), - [anon_sym_static] = ACTIONS(3398), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_LPAREN] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3398), - [anon_sym_namespace] = ACTIONS(3398), - [anon_sym_class] = ACTIONS(3398), - [anon_sym_ref] = ACTIONS(3398), - [anon_sym_struct] = ACTIONS(3398), - [anon_sym_enum] = ACTIONS(3398), - [anon_sym_LBRACE] = ACTIONS(3400), - [anon_sym_interface] = ACTIONS(3398), - [anon_sym_delegate] = ACTIONS(3398), - [anon_sym_record] = ACTIONS(3398), - [anon_sym_public] = ACTIONS(3398), - [anon_sym_private] = ACTIONS(3398), - [anon_sym_readonly] = ACTIONS(3398), - [anon_sym_abstract] = ACTIONS(3398), - [anon_sym_async] = ACTIONS(3398), - [anon_sym_const] = ACTIONS(3398), - [anon_sym_file] = ACTIONS(3398), - [anon_sym_fixed] = ACTIONS(3398), - [anon_sym_internal] = ACTIONS(3398), - [anon_sym_new] = ACTIONS(3398), - [anon_sym_override] = ACTIONS(3398), - [anon_sym_partial] = ACTIONS(3398), - [anon_sym_protected] = ACTIONS(3398), - [anon_sym_required] = ACTIONS(3398), - [anon_sym_sealed] = ACTIONS(3398), - [anon_sym_virtual] = ACTIONS(3398), - [anon_sym_volatile] = ACTIONS(3398), - [anon_sym_where] = ACTIONS(3398), - [anon_sym_notnull] = ACTIONS(3398), - [anon_sym_unmanaged] = ACTIONS(3398), - [anon_sym_checked] = ACTIONS(3398), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(3400), - [anon_sym_PLUS_PLUS] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3400), - [anon_sym_true] = ACTIONS(3398), - [anon_sym_false] = ACTIONS(3398), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_CARET] = ACTIONS(3400), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(3398), - [anon_sym_scoped] = ACTIONS(3398), - [anon_sym_base] = ACTIONS(3398), - [anon_sym_var] = ACTIONS(3398), - [sym_predefined_type] = ACTIONS(3398), - [anon_sym_break] = ACTIONS(3398), - [anon_sym_unchecked] = ACTIONS(3398), - [anon_sym_continue] = ACTIONS(3398), - [anon_sym_do] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3398), - [anon_sym_for] = ACTIONS(3398), - [anon_sym_lock] = ACTIONS(3398), - [anon_sym_yield] = ACTIONS(3398), - [anon_sym_switch] = ACTIONS(3398), - [anon_sym_default] = ACTIONS(3398), - [anon_sym_throw] = ACTIONS(3398), - [anon_sym_try] = ACTIONS(3398), - [anon_sym_when] = ACTIONS(3398), - [anon_sym_await] = ACTIONS(3398), - [anon_sym_foreach] = ACTIONS(3398), - [anon_sym_goto] = ACTIONS(3398), - [anon_sym_if] = ACTIONS(3398), - [anon_sym_else] = ACTIONS(3398), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_from] = ACTIONS(3398), - [anon_sym_into] = ACTIONS(3398), - [anon_sym_join] = ACTIONS(3398), - [anon_sym_on] = ACTIONS(3398), - [anon_sym_equals] = ACTIONS(3398), - [anon_sym_let] = ACTIONS(3398), - [anon_sym_orderby] = ACTIONS(3398), - [anon_sym_ascending] = ACTIONS(3398), - [anon_sym_descending] = ACTIONS(3398), - [anon_sym_group] = ACTIONS(3398), - [anon_sym_by] = ACTIONS(3398), - [anon_sym_select] = ACTIONS(3398), - [anon_sym_stackalloc] = ACTIONS(3398), - [anon_sym_sizeof] = ACTIONS(3398), - [anon_sym_typeof] = ACTIONS(3398), - [anon_sym___makeref] = ACTIONS(3398), - [anon_sym___reftype] = ACTIONS(3398), - [anon_sym___refvalue] = ACTIONS(3398), - [sym_null_literal] = ACTIONS(3398), - [anon_sym_SQUOTE] = ACTIONS(3400), - [sym_integer_literal] = ACTIONS(3398), - [sym_real_literal] = ACTIONS(3400), - [anon_sym_DQUOTE] = ACTIONS(3400), - [sym_verbatim_string_literal] = ACTIONS(3400), - [sym_grit_metavariable] = ACTIONS(3400), - [aux_sym_preproc_if_token1] = ACTIONS(3400), + [ts_builtin_sym_end] = ACTIONS(3502), + [sym__identifier_token] = ACTIONS(3500), + [anon_sym_extern] = ACTIONS(3500), + [anon_sym_alias] = ACTIONS(3500), + [anon_sym_SEMI] = ACTIONS(3502), + [anon_sym_global] = ACTIONS(3500), + [anon_sym_using] = ACTIONS(3500), + [anon_sym_unsafe] = ACTIONS(3500), + [anon_sym_static] = ACTIONS(3500), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3500), + [anon_sym_namespace] = ACTIONS(3500), + [anon_sym_class] = ACTIONS(3500), + [anon_sym_ref] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(3500), + [anon_sym_enum] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(3502), + [anon_sym_interface] = ACTIONS(3500), + [anon_sym_delegate] = ACTIONS(3500), + [anon_sym_record] = ACTIONS(3500), + [anon_sym_public] = ACTIONS(3500), + [anon_sym_private] = ACTIONS(3500), + [anon_sym_readonly] = ACTIONS(3500), + [anon_sym_abstract] = ACTIONS(3500), + [anon_sym_async] = ACTIONS(3500), + [anon_sym_const] = ACTIONS(3500), + [anon_sym_file] = ACTIONS(3500), + [anon_sym_fixed] = ACTIONS(3500), + [anon_sym_internal] = ACTIONS(3500), + [anon_sym_new] = ACTIONS(3500), + [anon_sym_override] = ACTIONS(3500), + [anon_sym_partial] = ACTIONS(3500), + [anon_sym_protected] = ACTIONS(3500), + [anon_sym_required] = ACTIONS(3500), + [anon_sym_sealed] = ACTIONS(3500), + [anon_sym_virtual] = ACTIONS(3500), + [anon_sym_volatile] = ACTIONS(3500), + [anon_sym_where] = ACTIONS(3500), + [anon_sym_notnull] = ACTIONS(3500), + [anon_sym_unmanaged] = ACTIONS(3500), + [anon_sym_checked] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3502), + [anon_sym_this] = ACTIONS(3500), + [anon_sym_scoped] = ACTIONS(3500), + [anon_sym_base] = ACTIONS(3500), + [anon_sym_var] = ACTIONS(3500), + [anon_sym_STAR] = ACTIONS(3502), + [sym_predefined_type] = ACTIONS(3500), + [anon_sym_break] = ACTIONS(3500), + [anon_sym_unchecked] = ACTIONS(3500), + [anon_sym_continue] = ACTIONS(3500), + [anon_sym_do] = ACTIONS(3500), + [anon_sym_while] = ACTIONS(3500), + [anon_sym_for] = ACTIONS(3500), + [anon_sym_lock] = ACTIONS(3500), + [anon_sym_yield] = ACTIONS(3500), + [anon_sym_switch] = ACTIONS(3500), + [anon_sym_default] = ACTIONS(3500), + [anon_sym_throw] = ACTIONS(3500), + [anon_sym_try] = ACTIONS(3500), + [anon_sym_when] = ACTIONS(3500), + [anon_sym_await] = ACTIONS(3500), + [anon_sym_foreach] = ACTIONS(3500), + [anon_sym_goto] = ACTIONS(3500), + [anon_sym_if] = ACTIONS(3500), + [anon_sym_else] = ACTIONS(3500), + [anon_sym_DOT_DOT] = ACTIONS(3502), + [anon_sym_AMP] = ACTIONS(3502), + [anon_sym_CARET] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3502), + [anon_sym_true] = ACTIONS(3500), + [anon_sym_false] = ACTIONS(3500), + [anon_sym_from] = ACTIONS(3500), + [anon_sym_into] = ACTIONS(3500), + [anon_sym_join] = ACTIONS(3500), + [anon_sym_on] = ACTIONS(3500), + [anon_sym_equals] = ACTIONS(3500), + [anon_sym_let] = ACTIONS(3500), + [anon_sym_orderby] = ACTIONS(3500), + [anon_sym_ascending] = ACTIONS(3500), + [anon_sym_descending] = ACTIONS(3500), + [anon_sym_group] = ACTIONS(3500), + [anon_sym_by] = ACTIONS(3500), + [anon_sym_select] = ACTIONS(3500), + [anon_sym_stackalloc] = ACTIONS(3500), + [anon_sym_sizeof] = ACTIONS(3500), + [anon_sym_typeof] = ACTIONS(3500), + [anon_sym___makeref] = ACTIONS(3500), + [anon_sym___reftype] = ACTIONS(3500), + [anon_sym___refvalue] = ACTIONS(3500), + [sym_null_literal] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3502), + [sym_integer_literal] = ACTIONS(3500), + [sym_real_literal] = ACTIONS(3502), + [anon_sym_DQUOTE] = ACTIONS(3502), + [sym_verbatim_string_literal] = ACTIONS(3502), + [sym_grit_metavariable] = ACTIONS(3502), + [aux_sym_preproc_if_token1] = ACTIONS(3502), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392703,10 +392725,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(3400), - [sym_interpolation_verbatim_start] = ACTIONS(3400), - [sym_interpolation_raw_start] = ACTIONS(3400), - [sym_raw_string_start] = ACTIONS(3400), + [sym_interpolation_regular_start] = ACTIONS(3502), + [sym_interpolation_verbatim_start] = ACTIONS(3502), + [sym_interpolation_raw_start] = ACTIONS(3502), + [sym_raw_string_start] = ACTIONS(3502), }, [2051] = { [sym_preproc_region] = STATE(2051), @@ -392718,237 +392740,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3466), - [sym__identifier_token] = ACTIONS(3464), - [anon_sym_extern] = ACTIONS(3464), - [anon_sym_alias] = ACTIONS(3464), - [anon_sym_SEMI] = ACTIONS(3466), - [anon_sym_global] = ACTIONS(3464), - [anon_sym_using] = ACTIONS(3464), - [anon_sym_unsafe] = ACTIONS(3464), - [anon_sym_static] = ACTIONS(3464), - [anon_sym_LBRACK] = ACTIONS(3466), - [anon_sym_LPAREN] = ACTIONS(3466), - [anon_sym_return] = ACTIONS(3464), - [anon_sym_namespace] = ACTIONS(3464), - [anon_sym_class] = ACTIONS(3464), - [anon_sym_ref] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(3464), - [anon_sym_enum] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_interface] = ACTIONS(3464), - [anon_sym_delegate] = ACTIONS(3464), - [anon_sym_record] = ACTIONS(3464), - [anon_sym_public] = ACTIONS(3464), - [anon_sym_private] = ACTIONS(3464), - [anon_sym_readonly] = ACTIONS(3464), - [anon_sym_abstract] = ACTIONS(3464), - [anon_sym_async] = ACTIONS(3464), - [anon_sym_const] = ACTIONS(3464), - [anon_sym_file] = ACTIONS(3464), - [anon_sym_fixed] = ACTIONS(3464), - [anon_sym_internal] = ACTIONS(3464), - [anon_sym_new] = ACTIONS(3464), - [anon_sym_override] = ACTIONS(3464), - [anon_sym_partial] = ACTIONS(3464), - [anon_sym_protected] = ACTIONS(3464), - [anon_sym_required] = ACTIONS(3464), - [anon_sym_sealed] = ACTIONS(3464), - [anon_sym_virtual] = ACTIONS(3464), - [anon_sym_volatile] = ACTIONS(3464), - [anon_sym_where] = ACTIONS(3464), - [anon_sym_notnull] = ACTIONS(3464), - [anon_sym_unmanaged] = ACTIONS(3464), - [anon_sym_checked] = ACTIONS(3464), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_TILDE] = ACTIONS(3466), - [anon_sym_PLUS_PLUS] = ACTIONS(3466), - [anon_sym_DASH_DASH] = ACTIONS(3466), - [anon_sym_true] = ACTIONS(3464), - [anon_sym_false] = ACTIONS(3464), - [anon_sym_PLUS] = ACTIONS(3464), - [anon_sym_DASH] = ACTIONS(3464), - [anon_sym_STAR] = ACTIONS(3466), - [anon_sym_CARET] = ACTIONS(3466), - [anon_sym_AMP] = ACTIONS(3466), - [anon_sym_this] = ACTIONS(3464), - [anon_sym_scoped] = ACTIONS(3464), - [anon_sym_base] = ACTIONS(3464), - [anon_sym_var] = ACTIONS(3464), - [sym_predefined_type] = ACTIONS(3464), - [anon_sym_break] = ACTIONS(3464), - [anon_sym_unchecked] = ACTIONS(3464), - [anon_sym_continue] = ACTIONS(3464), - [anon_sym_do] = ACTIONS(3464), - [anon_sym_while] = ACTIONS(3464), - [anon_sym_for] = ACTIONS(3464), - [anon_sym_lock] = ACTIONS(3464), - [anon_sym_yield] = ACTIONS(3464), - [anon_sym_switch] = ACTIONS(3464), - [anon_sym_default] = ACTIONS(3464), - [anon_sym_throw] = ACTIONS(3464), - [anon_sym_try] = ACTIONS(3464), - [anon_sym_when] = ACTIONS(3464), - [anon_sym_await] = ACTIONS(3464), - [anon_sym_foreach] = ACTIONS(3464), - [anon_sym_goto] = ACTIONS(3464), - [anon_sym_if] = ACTIONS(3464), - [anon_sym_else] = ACTIONS(3464), - [anon_sym_DOT_DOT] = ACTIONS(3466), - [anon_sym_from] = ACTIONS(3464), - [anon_sym_into] = ACTIONS(3464), - [anon_sym_join] = ACTIONS(3464), - [anon_sym_on] = ACTIONS(3464), - [anon_sym_equals] = ACTIONS(3464), - [anon_sym_let] = ACTIONS(3464), - [anon_sym_orderby] = ACTIONS(3464), - [anon_sym_ascending] = ACTIONS(3464), - [anon_sym_descending] = ACTIONS(3464), - [anon_sym_group] = ACTIONS(3464), - [anon_sym_by] = ACTIONS(3464), - [anon_sym_select] = ACTIONS(3464), - [anon_sym_stackalloc] = ACTIONS(3464), - [anon_sym_sizeof] = ACTIONS(3464), - [anon_sym_typeof] = ACTIONS(3464), - [anon_sym___makeref] = ACTIONS(3464), - [anon_sym___reftype] = ACTIONS(3464), - [anon_sym___refvalue] = ACTIONS(3464), - [sym_null_literal] = ACTIONS(3464), - [anon_sym_SQUOTE] = ACTIONS(3466), - [sym_integer_literal] = ACTIONS(3464), - [sym_real_literal] = ACTIONS(3466), - [anon_sym_DQUOTE] = ACTIONS(3466), - [sym_verbatim_string_literal] = ACTIONS(3466), - [sym_grit_metavariable] = ACTIONS(3466), - [aux_sym_preproc_if_token1] = ACTIONS(3466), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3466), - [sym_interpolation_verbatim_start] = ACTIONS(3466), - [sym_interpolation_raw_start] = ACTIONS(3466), - [sym_raw_string_start] = ACTIONS(3466), - }, - [2052] = { - [sym_preproc_region] = STATE(2052), - [sym_preproc_endregion] = STATE(2052), - [sym_preproc_line] = STATE(2052), - [sym_preproc_pragma] = STATE(2052), - [sym_preproc_nullable] = STATE(2052), - [sym_preproc_error] = STATE(2052), - [sym_preproc_warning] = STATE(2052), - [sym_preproc_define] = STATE(2052), - [sym_preproc_undef] = STATE(2052), - [ts_builtin_sym_end] = ACTIONS(3554), - [sym__identifier_token] = ACTIONS(3552), - [anon_sym_extern] = ACTIONS(3552), - [anon_sym_alias] = ACTIONS(3552), - [anon_sym_SEMI] = ACTIONS(3554), - [anon_sym_global] = ACTIONS(3552), - [anon_sym_using] = ACTIONS(3552), - [anon_sym_unsafe] = ACTIONS(3552), - [anon_sym_static] = ACTIONS(3552), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_return] = ACTIONS(3552), - [anon_sym_namespace] = ACTIONS(3552), - [anon_sym_class] = ACTIONS(3552), - [anon_sym_ref] = ACTIONS(3552), - [anon_sym_struct] = ACTIONS(3552), - [anon_sym_enum] = ACTIONS(3552), - [anon_sym_LBRACE] = ACTIONS(3554), - [anon_sym_interface] = ACTIONS(3552), - [anon_sym_delegate] = ACTIONS(3552), - [anon_sym_record] = ACTIONS(3552), - [anon_sym_public] = ACTIONS(3552), - [anon_sym_private] = ACTIONS(3552), - [anon_sym_readonly] = ACTIONS(3552), - [anon_sym_abstract] = ACTIONS(3552), - [anon_sym_async] = ACTIONS(3552), - [anon_sym_const] = ACTIONS(3552), - [anon_sym_file] = ACTIONS(3552), - [anon_sym_fixed] = ACTIONS(3552), - [anon_sym_internal] = ACTIONS(3552), - [anon_sym_new] = ACTIONS(3552), - [anon_sym_override] = ACTIONS(3552), - [anon_sym_partial] = ACTIONS(3552), - [anon_sym_protected] = ACTIONS(3552), - [anon_sym_required] = ACTIONS(3552), - [anon_sym_sealed] = ACTIONS(3552), - [anon_sym_virtual] = ACTIONS(3552), - [anon_sym_volatile] = ACTIONS(3552), - [anon_sym_where] = ACTIONS(3552), - [anon_sym_notnull] = ACTIONS(3552), - [anon_sym_unmanaged] = ACTIONS(3552), - [anon_sym_checked] = ACTIONS(3552), - [anon_sym_BANG] = ACTIONS(3554), - [anon_sym_TILDE] = ACTIONS(3554), - [anon_sym_PLUS_PLUS] = ACTIONS(3554), - [anon_sym_DASH_DASH] = ACTIONS(3554), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [anon_sym_PLUS] = ACTIONS(3552), - [anon_sym_DASH] = ACTIONS(3552), - [anon_sym_STAR] = ACTIONS(3554), - [anon_sym_CARET] = ACTIONS(3554), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_this] = ACTIONS(3552), - [anon_sym_scoped] = ACTIONS(3552), - [anon_sym_base] = ACTIONS(3552), - [anon_sym_var] = ACTIONS(3552), - [sym_predefined_type] = ACTIONS(3552), - [anon_sym_break] = ACTIONS(3552), - [anon_sym_unchecked] = ACTIONS(3552), - [anon_sym_continue] = ACTIONS(3552), - [anon_sym_do] = ACTIONS(3552), - [anon_sym_while] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3552), - [anon_sym_switch] = ACTIONS(3552), - [anon_sym_default] = ACTIONS(3552), - [anon_sym_throw] = ACTIONS(3552), - [anon_sym_try] = ACTIONS(3552), - [anon_sym_when] = ACTIONS(3552), - [anon_sym_await] = ACTIONS(3552), - [anon_sym_foreach] = ACTIONS(3552), - [anon_sym_goto] = ACTIONS(3552), - [anon_sym_if] = ACTIONS(3552), - [anon_sym_else] = ACTIONS(3552), - [anon_sym_DOT_DOT] = ACTIONS(3554), - [anon_sym_from] = ACTIONS(3552), - [anon_sym_into] = ACTIONS(3552), - [anon_sym_join] = ACTIONS(3552), - [anon_sym_on] = ACTIONS(3552), - [anon_sym_equals] = ACTIONS(3552), - [anon_sym_let] = ACTIONS(3552), - [anon_sym_orderby] = ACTIONS(3552), - [anon_sym_ascending] = ACTIONS(3552), - [anon_sym_descending] = ACTIONS(3552), - [anon_sym_group] = ACTIONS(3552), - [anon_sym_by] = ACTIONS(3552), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_stackalloc] = ACTIONS(3552), - [anon_sym_sizeof] = ACTIONS(3552), - [anon_sym_typeof] = ACTIONS(3552), - [anon_sym___makeref] = ACTIONS(3552), - [anon_sym___reftype] = ACTIONS(3552), - [anon_sym___refvalue] = ACTIONS(3552), - [sym_null_literal] = ACTIONS(3552), - [anon_sym_SQUOTE] = ACTIONS(3554), - [sym_integer_literal] = ACTIONS(3552), - [sym_real_literal] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [sym_verbatim_string_literal] = ACTIONS(3554), - [sym_grit_metavariable] = ACTIONS(3554), - [aux_sym_preproc_if_token1] = ACTIONS(3554), + [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_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_readonly] = 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_protected] = 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_TILDE] = ACTIONS(3185), + [anon_sym_this] = ACTIONS(3183), + [anon_sym_scoped] = ACTIONS(3183), + [anon_sym_base] = ACTIONS(3183), + [anon_sym_var] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [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_AMP] = ACTIONS(3185), + [anon_sym_CARET] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_BANG] = 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_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), + [sym_grit_metavariable] = 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), @@ -392959,10 +392853,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3554), - [sym_interpolation_verbatim_start] = ACTIONS(3554), - [sym_interpolation_raw_start] = ACTIONS(3554), - [sym_raw_string_start] = ACTIONS(3554), + [sym_interpolation_regular_start] = ACTIONS(3185), + [sym_interpolation_verbatim_start] = ACTIONS(3185), + [sym_interpolation_raw_start] = ACTIONS(3185), + [sym_raw_string_start] = ACTIONS(3185), + }, + [2052] = { + [sym_preproc_region] = STATE(2052), + [sym_preproc_endregion] = STATE(2052), + [sym_preproc_line] = STATE(2052), + [sym_preproc_pragma] = STATE(2052), + [sym_preproc_nullable] = STATE(2052), + [sym_preproc_error] = STATE(2052), + [sym_preproc_warning] = STATE(2052), + [sym_preproc_define] = STATE(2052), + [sym_preproc_undef] = STATE(2052), + [ts_builtin_sym_end] = ACTIONS(3422), + [sym__identifier_token] = ACTIONS(3420), + [anon_sym_extern] = ACTIONS(3420), + [anon_sym_alias] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_global] = ACTIONS(3420), + [anon_sym_using] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3420), + [anon_sym_static] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_namespace] = ACTIONS(3420), + [anon_sym_class] = ACTIONS(3420), + [anon_sym_ref] = ACTIONS(3420), + [anon_sym_struct] = ACTIONS(3420), + [anon_sym_enum] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_interface] = ACTIONS(3420), + [anon_sym_delegate] = ACTIONS(3420), + [anon_sym_record] = ACTIONS(3420), + [anon_sym_public] = ACTIONS(3420), + [anon_sym_private] = ACTIONS(3420), + [anon_sym_readonly] = ACTIONS(3420), + [anon_sym_abstract] = ACTIONS(3420), + [anon_sym_async] = ACTIONS(3420), + [anon_sym_const] = ACTIONS(3420), + [anon_sym_file] = ACTIONS(3420), + [anon_sym_fixed] = ACTIONS(3420), + [anon_sym_internal] = ACTIONS(3420), + [anon_sym_new] = ACTIONS(3420), + [anon_sym_override] = ACTIONS(3420), + [anon_sym_partial] = ACTIONS(3420), + [anon_sym_protected] = ACTIONS(3420), + [anon_sym_required] = ACTIONS(3420), + [anon_sym_sealed] = ACTIONS(3420), + [anon_sym_virtual] = ACTIONS(3420), + [anon_sym_volatile] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_notnull] = ACTIONS(3420), + [anon_sym_unmanaged] = ACTIONS(3420), + [anon_sym_checked] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_scoped] = ACTIONS(3420), + [anon_sym_base] = ACTIONS(3420), + [anon_sym_var] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3422), + [sym_predefined_type] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_unchecked] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_do] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_for] = ACTIONS(3420), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_yield] = ACTIONS(3420), + [anon_sym_switch] = ACTIONS(3420), + [anon_sym_default] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_await] = ACTIONS(3420), + [anon_sym_foreach] = ACTIONS(3420), + [anon_sym_goto] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_CARET] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_from] = ACTIONS(3420), + [anon_sym_into] = ACTIONS(3420), + [anon_sym_join] = ACTIONS(3420), + [anon_sym_on] = ACTIONS(3420), + [anon_sym_equals] = ACTIONS(3420), + [anon_sym_let] = ACTIONS(3420), + [anon_sym_orderby] = ACTIONS(3420), + [anon_sym_ascending] = ACTIONS(3420), + [anon_sym_descending] = ACTIONS(3420), + [anon_sym_group] = ACTIONS(3420), + [anon_sym_by] = ACTIONS(3420), + [anon_sym_select] = ACTIONS(3420), + [anon_sym_stackalloc] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(3420), + [anon_sym_typeof] = ACTIONS(3420), + [anon_sym___makeref] = ACTIONS(3420), + [anon_sym___reftype] = ACTIONS(3420), + [anon_sym___refvalue] = ACTIONS(3420), + [sym_null_literal] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_real_literal] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(3422), + [sym_verbatim_string_literal] = ACTIONS(3422), + [sym_grit_metavariable] = ACTIONS(3422), + [aux_sym_preproc_if_token1] = ACTIONS(3422), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3422), + [sym_interpolation_verbatim_start] = ACTIONS(3422), + [sym_interpolation_raw_start] = ACTIONS(3422), + [sym_raw_string_start] = ACTIONS(3422), }, [2053] = { [sym_preproc_region] = STATE(2053), @@ -392974,109 +392996,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3518), - [sym__identifier_token] = ACTIONS(3516), - [anon_sym_extern] = ACTIONS(3516), - [anon_sym_alias] = ACTIONS(3516), - [anon_sym_SEMI] = ACTIONS(3518), - [anon_sym_global] = ACTIONS(3516), - [anon_sym_using] = ACTIONS(3516), - [anon_sym_unsafe] = ACTIONS(3516), - [anon_sym_static] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_namespace] = ACTIONS(3516), - [anon_sym_class] = ACTIONS(3516), - [anon_sym_ref] = ACTIONS(3516), - [anon_sym_struct] = ACTIONS(3516), - [anon_sym_enum] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_interface] = ACTIONS(3516), - [anon_sym_delegate] = ACTIONS(3516), - [anon_sym_record] = ACTIONS(3516), - [anon_sym_public] = ACTIONS(3516), - [anon_sym_private] = ACTIONS(3516), - [anon_sym_readonly] = ACTIONS(3516), - [anon_sym_abstract] = ACTIONS(3516), - [anon_sym_async] = ACTIONS(3516), - [anon_sym_const] = ACTIONS(3516), - [anon_sym_file] = ACTIONS(3516), - [anon_sym_fixed] = ACTIONS(3516), - [anon_sym_internal] = ACTIONS(3516), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_override] = ACTIONS(3516), - [anon_sym_partial] = ACTIONS(3516), - [anon_sym_protected] = ACTIONS(3516), - [anon_sym_required] = ACTIONS(3516), - [anon_sym_sealed] = ACTIONS(3516), - [anon_sym_virtual] = ACTIONS(3516), - [anon_sym_volatile] = ACTIONS(3516), - [anon_sym_where] = ACTIONS(3516), - [anon_sym_notnull] = ACTIONS(3516), - [anon_sym_unmanaged] = ACTIONS(3516), - [anon_sym_checked] = ACTIONS(3516), - [anon_sym_BANG] = ACTIONS(3518), - [anon_sym_TILDE] = ACTIONS(3518), - [anon_sym_PLUS_PLUS] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3516), - [anon_sym_false] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_STAR] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3518), - [anon_sym_this] = ACTIONS(3516), - [anon_sym_scoped] = ACTIONS(3516), - [anon_sym_base] = ACTIONS(3516), - [anon_sym_var] = ACTIONS(3516), - [sym_predefined_type] = ACTIONS(3516), - [anon_sym_break] = ACTIONS(3516), - [anon_sym_unchecked] = ACTIONS(3516), - [anon_sym_continue] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_lock] = ACTIONS(3516), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_switch] = ACTIONS(3516), - [anon_sym_default] = ACTIONS(3516), - [anon_sym_throw] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_when] = ACTIONS(3516), - [anon_sym_await] = ACTIONS(3516), - [anon_sym_foreach] = ACTIONS(3516), - [anon_sym_goto] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_else] = ACTIONS(3516), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_from] = ACTIONS(3516), - [anon_sym_into] = ACTIONS(3516), - [anon_sym_join] = ACTIONS(3516), - [anon_sym_on] = ACTIONS(3516), - [anon_sym_equals] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_orderby] = ACTIONS(3516), - [anon_sym_ascending] = ACTIONS(3516), - [anon_sym_descending] = ACTIONS(3516), - [anon_sym_group] = ACTIONS(3516), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_select] = ACTIONS(3516), - [anon_sym_stackalloc] = ACTIONS(3516), - [anon_sym_sizeof] = ACTIONS(3516), - [anon_sym_typeof] = ACTIONS(3516), - [anon_sym___makeref] = ACTIONS(3516), - [anon_sym___reftype] = ACTIONS(3516), - [anon_sym___refvalue] = ACTIONS(3516), - [sym_null_literal] = ACTIONS(3516), - [anon_sym_SQUOTE] = ACTIONS(3518), - [sym_integer_literal] = ACTIONS(3516), - [sym_real_literal] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [sym_verbatim_string_literal] = ACTIONS(3518), - [sym_grit_metavariable] = ACTIONS(3518), - [aux_sym_preproc_if_token1] = ACTIONS(3518), + [ts_builtin_sym_end] = ACTIONS(3396), + [sym__identifier_token] = ACTIONS(3394), + [anon_sym_extern] = ACTIONS(3394), + [anon_sym_alias] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3396), + [anon_sym_global] = ACTIONS(3394), + [anon_sym_using] = ACTIONS(3394), + [anon_sym_unsafe] = ACTIONS(3394), + [anon_sym_static] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_LPAREN] = ACTIONS(3396), + [anon_sym_return] = ACTIONS(3394), + [anon_sym_namespace] = ACTIONS(3394), + [anon_sym_class] = ACTIONS(3394), + [anon_sym_ref] = ACTIONS(3394), + [anon_sym_struct] = ACTIONS(3394), + [anon_sym_enum] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3396), + [anon_sym_interface] = ACTIONS(3394), + [anon_sym_delegate] = ACTIONS(3394), + [anon_sym_record] = ACTIONS(3394), + [anon_sym_public] = ACTIONS(3394), + [anon_sym_private] = ACTIONS(3394), + [anon_sym_readonly] = ACTIONS(3394), + [anon_sym_abstract] = ACTIONS(3394), + [anon_sym_async] = ACTIONS(3394), + [anon_sym_const] = ACTIONS(3394), + [anon_sym_file] = ACTIONS(3394), + [anon_sym_fixed] = ACTIONS(3394), + [anon_sym_internal] = ACTIONS(3394), + [anon_sym_new] = ACTIONS(3394), + [anon_sym_override] = ACTIONS(3394), + [anon_sym_partial] = ACTIONS(3394), + [anon_sym_protected] = ACTIONS(3394), + [anon_sym_required] = ACTIONS(3394), + [anon_sym_sealed] = ACTIONS(3394), + [anon_sym_virtual] = ACTIONS(3394), + [anon_sym_volatile] = ACTIONS(3394), + [anon_sym_where] = ACTIONS(3394), + [anon_sym_notnull] = ACTIONS(3394), + [anon_sym_unmanaged] = ACTIONS(3394), + [anon_sym_checked] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(3394), + [anon_sym_scoped] = ACTIONS(3394), + [anon_sym_base] = ACTIONS(3394), + [anon_sym_var] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [sym_predefined_type] = ACTIONS(3394), + [anon_sym_break] = ACTIONS(3394), + [anon_sym_unchecked] = ACTIONS(3394), + [anon_sym_continue] = ACTIONS(3394), + [anon_sym_do] = ACTIONS(3394), + [anon_sym_while] = ACTIONS(3394), + [anon_sym_for] = ACTIONS(3394), + [anon_sym_lock] = ACTIONS(3394), + [anon_sym_yield] = ACTIONS(3394), + [anon_sym_switch] = ACTIONS(3394), + [anon_sym_default] = ACTIONS(3394), + [anon_sym_throw] = ACTIONS(3394), + [anon_sym_try] = ACTIONS(3394), + [anon_sym_when] = ACTIONS(3394), + [anon_sym_await] = ACTIONS(3394), + [anon_sym_foreach] = ACTIONS(3394), + [anon_sym_goto] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(3394), + [anon_sym_else] = ACTIONS(3394), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_CARET] = ACTIONS(3396), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3396), + [anon_sym_PLUS_PLUS] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3396), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [anon_sym_from] = ACTIONS(3394), + [anon_sym_into] = ACTIONS(3394), + [anon_sym_join] = ACTIONS(3394), + [anon_sym_on] = ACTIONS(3394), + [anon_sym_equals] = ACTIONS(3394), + [anon_sym_let] = ACTIONS(3394), + [anon_sym_orderby] = ACTIONS(3394), + [anon_sym_ascending] = ACTIONS(3394), + [anon_sym_descending] = ACTIONS(3394), + [anon_sym_group] = ACTIONS(3394), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_select] = ACTIONS(3394), + [anon_sym_stackalloc] = ACTIONS(3394), + [anon_sym_sizeof] = ACTIONS(3394), + [anon_sym_typeof] = ACTIONS(3394), + [anon_sym___makeref] = ACTIONS(3394), + [anon_sym___reftype] = ACTIONS(3394), + [anon_sym___refvalue] = ACTIONS(3394), + [sym_null_literal] = ACTIONS(3394), + [anon_sym_SQUOTE] = ACTIONS(3396), + [sym_integer_literal] = ACTIONS(3394), + [sym_real_literal] = ACTIONS(3396), + [anon_sym_DQUOTE] = ACTIONS(3396), + [sym_verbatim_string_literal] = ACTIONS(3396), + [sym_grit_metavariable] = ACTIONS(3396), + [aux_sym_preproc_if_token1] = ACTIONS(3396), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -393087,10 +393109,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(3518), - [sym_interpolation_verbatim_start] = ACTIONS(3518), - [sym_interpolation_raw_start] = ACTIONS(3518), - [sym_raw_string_start] = ACTIONS(3518), + [sym_interpolation_regular_start] = ACTIONS(3396), + [sym_interpolation_verbatim_start] = ACTIONS(3396), + [sym_interpolation_raw_start] = ACTIONS(3396), + [sym_raw_string_start] = ACTIONS(3396), }, [2054] = { [sym_preproc_region] = STATE(2054), @@ -393102,109 +393124,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3494), - [sym__identifier_token] = ACTIONS(3492), - [anon_sym_extern] = ACTIONS(3492), - [anon_sym_alias] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3492), - [anon_sym_using] = ACTIONS(3492), - [anon_sym_unsafe] = ACTIONS(3492), - [anon_sym_static] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3494), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_namespace] = ACTIONS(3492), - [anon_sym_class] = ACTIONS(3492), - [anon_sym_ref] = ACTIONS(3492), - [anon_sym_struct] = ACTIONS(3492), - [anon_sym_enum] = ACTIONS(3492), - [anon_sym_LBRACE] = ACTIONS(3494), - [anon_sym_interface] = ACTIONS(3492), - [anon_sym_delegate] = ACTIONS(3492), - [anon_sym_record] = ACTIONS(3492), - [anon_sym_public] = ACTIONS(3492), - [anon_sym_private] = ACTIONS(3492), - [anon_sym_readonly] = ACTIONS(3492), - [anon_sym_abstract] = ACTIONS(3492), - [anon_sym_async] = ACTIONS(3492), - [anon_sym_const] = ACTIONS(3492), - [anon_sym_file] = ACTIONS(3492), - [anon_sym_fixed] = ACTIONS(3492), - [anon_sym_internal] = ACTIONS(3492), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_override] = ACTIONS(3492), - [anon_sym_partial] = ACTIONS(3492), - [anon_sym_protected] = ACTIONS(3492), - [anon_sym_required] = ACTIONS(3492), - [anon_sym_sealed] = ACTIONS(3492), - [anon_sym_virtual] = ACTIONS(3492), - [anon_sym_volatile] = ACTIONS(3492), - [anon_sym_where] = ACTIONS(3492), - [anon_sym_notnull] = ACTIONS(3492), - [anon_sym_unmanaged] = ACTIONS(3492), - [anon_sym_checked] = ACTIONS(3492), - [anon_sym_BANG] = ACTIONS(3494), - [anon_sym_TILDE] = ACTIONS(3494), - [anon_sym_PLUS_PLUS] = ACTIONS(3494), - [anon_sym_DASH_DASH] = ACTIONS(3494), - [anon_sym_true] = ACTIONS(3492), - [anon_sym_false] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_STAR] = ACTIONS(3494), - [anon_sym_CARET] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3494), - [anon_sym_this] = ACTIONS(3492), - [anon_sym_scoped] = ACTIONS(3492), - [anon_sym_base] = ACTIONS(3492), - [anon_sym_var] = ACTIONS(3492), - [sym_predefined_type] = ACTIONS(3492), - [anon_sym_break] = ACTIONS(3492), - [anon_sym_unchecked] = ACTIONS(3492), - [anon_sym_continue] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_lock] = ACTIONS(3492), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_switch] = ACTIONS(3492), - [anon_sym_default] = ACTIONS(3492), - [anon_sym_throw] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_when] = ACTIONS(3492), - [anon_sym_await] = ACTIONS(3492), - [anon_sym_foreach] = ACTIONS(3492), - [anon_sym_goto] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_else] = ACTIONS(3492), - [anon_sym_DOT_DOT] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3492), - [anon_sym_into] = ACTIONS(3492), - [anon_sym_join] = ACTIONS(3492), - [anon_sym_on] = ACTIONS(3492), - [anon_sym_equals] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_orderby] = ACTIONS(3492), - [anon_sym_ascending] = ACTIONS(3492), - [anon_sym_descending] = ACTIONS(3492), - [anon_sym_group] = ACTIONS(3492), - [anon_sym_by] = ACTIONS(3492), - [anon_sym_select] = ACTIONS(3492), - [anon_sym_stackalloc] = ACTIONS(3492), - [anon_sym_sizeof] = ACTIONS(3492), - [anon_sym_typeof] = ACTIONS(3492), - [anon_sym___makeref] = ACTIONS(3492), - [anon_sym___reftype] = ACTIONS(3492), - [anon_sym___refvalue] = ACTIONS(3492), - [sym_null_literal] = ACTIONS(3492), - [anon_sym_SQUOTE] = ACTIONS(3494), - [sym_integer_literal] = ACTIONS(3492), - [sym_real_literal] = ACTIONS(3494), - [anon_sym_DQUOTE] = ACTIONS(3494), - [sym_verbatim_string_literal] = ACTIONS(3494), - [sym_grit_metavariable] = ACTIONS(3494), - [aux_sym_preproc_if_token1] = ACTIONS(3494), + [ts_builtin_sym_end] = ACTIONS(3426), + [sym__identifier_token] = ACTIONS(3424), + [anon_sym_extern] = ACTIONS(3424), + [anon_sym_alias] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3426), + [anon_sym_global] = ACTIONS(3424), + [anon_sym_using] = ACTIONS(3424), + [anon_sym_unsafe] = ACTIONS(3424), + [anon_sym_static] = ACTIONS(3424), + [anon_sym_LBRACK] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3426), + [anon_sym_return] = ACTIONS(3424), + [anon_sym_namespace] = ACTIONS(3424), + [anon_sym_class] = ACTIONS(3424), + [anon_sym_ref] = ACTIONS(3424), + [anon_sym_struct] = ACTIONS(3424), + [anon_sym_enum] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_interface] = ACTIONS(3424), + [anon_sym_delegate] = ACTIONS(3424), + [anon_sym_record] = ACTIONS(3424), + [anon_sym_public] = ACTIONS(3424), + [anon_sym_private] = ACTIONS(3424), + [anon_sym_readonly] = ACTIONS(3424), + [anon_sym_abstract] = ACTIONS(3424), + [anon_sym_async] = ACTIONS(3424), + [anon_sym_const] = ACTIONS(3424), + [anon_sym_file] = ACTIONS(3424), + [anon_sym_fixed] = ACTIONS(3424), + [anon_sym_internal] = ACTIONS(3424), + [anon_sym_new] = ACTIONS(3424), + [anon_sym_override] = ACTIONS(3424), + [anon_sym_partial] = ACTIONS(3424), + [anon_sym_protected] = ACTIONS(3424), + [anon_sym_required] = ACTIONS(3424), + [anon_sym_sealed] = ACTIONS(3424), + [anon_sym_virtual] = ACTIONS(3424), + [anon_sym_volatile] = ACTIONS(3424), + [anon_sym_where] = ACTIONS(3424), + [anon_sym_notnull] = ACTIONS(3424), + [anon_sym_unmanaged] = ACTIONS(3424), + [anon_sym_checked] = ACTIONS(3424), + [anon_sym_TILDE] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(3424), + [anon_sym_scoped] = ACTIONS(3424), + [anon_sym_base] = ACTIONS(3424), + [anon_sym_var] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3426), + [sym_predefined_type] = ACTIONS(3424), + [anon_sym_break] = ACTIONS(3424), + [anon_sym_unchecked] = ACTIONS(3424), + [anon_sym_continue] = ACTIONS(3424), + [anon_sym_do] = ACTIONS(3424), + [anon_sym_while] = ACTIONS(3424), + [anon_sym_for] = ACTIONS(3424), + [anon_sym_lock] = ACTIONS(3424), + [anon_sym_yield] = ACTIONS(3424), + [anon_sym_switch] = ACTIONS(3424), + [anon_sym_default] = ACTIONS(3424), + [anon_sym_throw] = ACTIONS(3424), + [anon_sym_try] = ACTIONS(3424), + [anon_sym_when] = ACTIONS(3424), + [anon_sym_await] = ACTIONS(3424), + [anon_sym_foreach] = ACTIONS(3424), + [anon_sym_goto] = ACTIONS(3424), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3424), + [anon_sym_DOT_DOT] = ACTIONS(3426), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_CARET] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3426), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_from] = ACTIONS(3424), + [anon_sym_into] = ACTIONS(3424), + [anon_sym_join] = ACTIONS(3424), + [anon_sym_on] = ACTIONS(3424), + [anon_sym_equals] = ACTIONS(3424), + [anon_sym_let] = ACTIONS(3424), + [anon_sym_orderby] = ACTIONS(3424), + [anon_sym_ascending] = ACTIONS(3424), + [anon_sym_descending] = ACTIONS(3424), + [anon_sym_group] = ACTIONS(3424), + [anon_sym_by] = ACTIONS(3424), + [anon_sym_select] = ACTIONS(3424), + [anon_sym_stackalloc] = ACTIONS(3424), + [anon_sym_sizeof] = ACTIONS(3424), + [anon_sym_typeof] = ACTIONS(3424), + [anon_sym___makeref] = ACTIONS(3424), + [anon_sym___reftype] = ACTIONS(3424), + [anon_sym___refvalue] = ACTIONS(3424), + [sym_null_literal] = ACTIONS(3424), + [anon_sym_SQUOTE] = ACTIONS(3426), + [sym_integer_literal] = ACTIONS(3424), + [sym_real_literal] = ACTIONS(3426), + [anon_sym_DQUOTE] = ACTIONS(3426), + [sym_verbatim_string_literal] = ACTIONS(3426), + [sym_grit_metavariable] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3426), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -393215,10 +393237,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(3494), - [sym_interpolation_verbatim_start] = ACTIONS(3494), - [sym_interpolation_raw_start] = ACTIONS(3494), - [sym_raw_string_start] = ACTIONS(3494), + [sym_interpolation_regular_start] = ACTIONS(3426), + [sym_interpolation_verbatim_start] = ACTIONS(3426), + [sym_interpolation_raw_start] = ACTIONS(3426), + [sym_raw_string_start] = ACTIONS(3426), }, [2055] = { [sym_preproc_region] = STATE(2055), @@ -393230,6 +393252,134 @@ 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), + [ts_builtin_sym_end] = ACTIONS(3454), + [sym__identifier_token] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym_alias] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym_global] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_unsafe] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_namespace] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_ref] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3452), + [anon_sym_delegate] = ACTIONS(3452), + [anon_sym_record] = ACTIONS(3452), + [anon_sym_public] = ACTIONS(3452), + [anon_sym_private] = ACTIONS(3452), + [anon_sym_readonly] = ACTIONS(3452), + [anon_sym_abstract] = ACTIONS(3452), + [anon_sym_async] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_file] = ACTIONS(3452), + [anon_sym_fixed] = ACTIONS(3452), + [anon_sym_internal] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_override] = ACTIONS(3452), + [anon_sym_partial] = ACTIONS(3452), + [anon_sym_protected] = ACTIONS(3452), + [anon_sym_required] = ACTIONS(3452), + [anon_sym_sealed] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_where] = ACTIONS(3452), + [anon_sym_notnull] = ACTIONS(3452), + [anon_sym_unmanaged] = ACTIONS(3452), + [anon_sym_checked] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_this] = ACTIONS(3452), + [anon_sym_scoped] = ACTIONS(3452), + [anon_sym_base] = ACTIONS(3452), + [anon_sym_var] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3454), + [sym_predefined_type] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_unchecked] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_lock] = ACTIONS(3452), + [anon_sym_yield] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_default] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_when] = ACTIONS(3452), + [anon_sym_await] = ACTIONS(3452), + [anon_sym_foreach] = ACTIONS(3452), + [anon_sym_goto] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3452), + [anon_sym_DOT_DOT] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3454), + [anon_sym_CARET] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [anon_sym_true] = ACTIONS(3452), + [anon_sym_false] = ACTIONS(3452), + [anon_sym_from] = ACTIONS(3452), + [anon_sym_into] = ACTIONS(3452), + [anon_sym_join] = ACTIONS(3452), + [anon_sym_on] = ACTIONS(3452), + [anon_sym_equals] = ACTIONS(3452), + [anon_sym_let] = ACTIONS(3452), + [anon_sym_orderby] = ACTIONS(3452), + [anon_sym_ascending] = ACTIONS(3452), + [anon_sym_descending] = ACTIONS(3452), + [anon_sym_group] = ACTIONS(3452), + [anon_sym_by] = ACTIONS(3452), + [anon_sym_select] = ACTIONS(3452), + [anon_sym_stackalloc] = ACTIONS(3452), + [anon_sym_sizeof] = ACTIONS(3452), + [anon_sym_typeof] = ACTIONS(3452), + [anon_sym___makeref] = ACTIONS(3452), + [anon_sym___reftype] = ACTIONS(3452), + [anon_sym___refvalue] = ACTIONS(3452), + [sym_null_literal] = ACTIONS(3452), + [anon_sym_SQUOTE] = ACTIONS(3454), + [sym_integer_literal] = ACTIONS(3452), + [sym_real_literal] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [sym_verbatim_string_literal] = ACTIONS(3454), + [sym_grit_metavariable] = ACTIONS(3454), + [aux_sym_preproc_if_token1] = ACTIONS(3454), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3454), + [sym_interpolation_verbatim_start] = ACTIONS(3454), + [sym_interpolation_raw_start] = ACTIONS(3454), + [sym_raw_string_start] = ACTIONS(3454), + }, + [2056] = { + [sym_preproc_region] = STATE(2056), + [sym_preproc_endregion] = STATE(2056), + [sym_preproc_line] = STATE(2056), + [sym_preproc_pragma] = STATE(2056), + [sym_preproc_nullable] = STATE(2056), + [sym_preproc_error] = STATE(2056), + [sym_preproc_warning] = STATE(2056), + [sym_preproc_define] = STATE(2056), + [sym_preproc_undef] = STATE(2056), [ts_builtin_sym_end] = ACTIONS(3490), [sym__identifier_token] = ACTIONS(3488), [anon_sym_extern] = ACTIONS(3488), @@ -393272,21 +393422,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3488), [anon_sym_unmanaged] = ACTIONS(3488), [anon_sym_checked] = ACTIONS(3488), - [anon_sym_BANG] = ACTIONS(3490), [anon_sym_TILDE] = ACTIONS(3490), - [anon_sym_PLUS_PLUS] = ACTIONS(3490), - [anon_sym_DASH_DASH] = ACTIONS(3490), - [anon_sym_true] = ACTIONS(3488), - [anon_sym_false] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_CARET] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3490), [anon_sym_this] = ACTIONS(3488), [anon_sym_scoped] = ACTIONS(3488), [anon_sym_base] = ACTIONS(3488), [anon_sym_var] = ACTIONS(3488), + [anon_sym_STAR] = ACTIONS(3490), [sym_predefined_type] = ACTIONS(3488), [anon_sym_break] = ACTIONS(3488), [anon_sym_unchecked] = ACTIONS(3488), @@ -393307,6 +393448,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3488), [anon_sym_else] = ACTIONS(3488), [anon_sym_DOT_DOT] = ACTIONS(3490), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_CARET] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3490), + [anon_sym_PLUS_PLUS] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3490), + [anon_sym_true] = ACTIONS(3488), + [anon_sym_false] = ACTIONS(3488), [anon_sym_from] = ACTIONS(3488), [anon_sym_into] = ACTIONS(3488), [anon_sym_join] = ACTIONS(3488), @@ -393348,119 +393498,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3490), [sym_raw_string_start] = ACTIONS(3490), }, - [2056] = { - [sym_preproc_region] = STATE(2056), - [sym_preproc_endregion] = STATE(2056), - [sym_preproc_line] = STATE(2056), - [sym_preproc_pragma] = STATE(2056), - [sym_preproc_nullable] = STATE(2056), - [sym_preproc_error] = STATE(2056), - [sym_preproc_warning] = STATE(2056), - [sym_preproc_define] = STATE(2056), - [sym_preproc_undef] = STATE(2056), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym__identifier_token] = ACTIONS(3520), - [anon_sym_extern] = ACTIONS(3520), - [anon_sym_alias] = ACTIONS(3520), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym_global] = ACTIONS(3520), - [anon_sym_using] = ACTIONS(3520), - [anon_sym_unsafe] = ACTIONS(3520), - [anon_sym_static] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3522), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_namespace] = ACTIONS(3520), - [anon_sym_class] = ACTIONS(3520), - [anon_sym_ref] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(3520), - [anon_sym_enum] = ACTIONS(3520), - [anon_sym_LBRACE] = ACTIONS(3522), - [anon_sym_interface] = ACTIONS(3520), - [anon_sym_delegate] = ACTIONS(3520), - [anon_sym_record] = ACTIONS(3520), - [anon_sym_public] = ACTIONS(3520), - [anon_sym_private] = ACTIONS(3520), - [anon_sym_readonly] = ACTIONS(3520), - [anon_sym_abstract] = ACTIONS(3520), - [anon_sym_async] = ACTIONS(3520), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_file] = ACTIONS(3520), - [anon_sym_fixed] = ACTIONS(3520), - [anon_sym_internal] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_override] = ACTIONS(3520), - [anon_sym_partial] = ACTIONS(3520), - [anon_sym_protected] = ACTIONS(3520), - [anon_sym_required] = ACTIONS(3520), - [anon_sym_sealed] = ACTIONS(3520), - [anon_sym_virtual] = ACTIONS(3520), - [anon_sym_volatile] = ACTIONS(3520), - [anon_sym_where] = ACTIONS(3520), - [anon_sym_notnull] = ACTIONS(3520), - [anon_sym_unmanaged] = ACTIONS(3520), - [anon_sym_checked] = ACTIONS(3520), - [anon_sym_BANG] = ACTIONS(3522), - [anon_sym_TILDE] = ACTIONS(3522), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3522), - [anon_sym_true] = ACTIONS(3520), - [anon_sym_false] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_STAR] = ACTIONS(3522), - [anon_sym_CARET] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(3520), - [anon_sym_scoped] = ACTIONS(3520), - [anon_sym_base] = ACTIONS(3520), - [anon_sym_var] = ACTIONS(3520), - [sym_predefined_type] = ACTIONS(3520), - [anon_sym_break] = ACTIONS(3520), - [anon_sym_unchecked] = ACTIONS(3520), - [anon_sym_continue] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_lock] = ACTIONS(3520), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_switch] = ACTIONS(3520), - [anon_sym_default] = ACTIONS(3520), - [anon_sym_throw] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_when] = ACTIONS(3520), - [anon_sym_await] = ACTIONS(3520), - [anon_sym_foreach] = ACTIONS(3520), - [anon_sym_goto] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_else] = ACTIONS(3520), - [anon_sym_DOT_DOT] = ACTIONS(3522), - [anon_sym_from] = ACTIONS(3520), - [anon_sym_into] = ACTIONS(3520), - [anon_sym_join] = ACTIONS(3520), - [anon_sym_on] = ACTIONS(3520), - [anon_sym_equals] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_orderby] = ACTIONS(3520), - [anon_sym_ascending] = ACTIONS(3520), - [anon_sym_descending] = ACTIONS(3520), - [anon_sym_group] = ACTIONS(3520), - [anon_sym_by] = ACTIONS(3520), - [anon_sym_select] = ACTIONS(3520), - [anon_sym_stackalloc] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(3520), - [anon_sym_typeof] = ACTIONS(3520), - [anon_sym___makeref] = ACTIONS(3520), - [anon_sym___reftype] = ACTIONS(3520), - [anon_sym___refvalue] = ACTIONS(3520), - [sym_null_literal] = ACTIONS(3520), - [anon_sym_SQUOTE] = ACTIONS(3522), - [sym_integer_literal] = ACTIONS(3520), - [sym_real_literal] = ACTIONS(3522), - [anon_sym_DQUOTE] = ACTIONS(3522), - [sym_verbatim_string_literal] = ACTIONS(3522), - [sym_grit_metavariable] = ACTIONS(3522), - [aux_sym_preproc_if_token1] = ACTIONS(3522), + [2057] = { + [sym_preproc_region] = STATE(2057), + [sym_preproc_endregion] = STATE(2057), + [sym_preproc_line] = STATE(2057), + [sym_preproc_pragma] = STATE(2057), + [sym_preproc_nullable] = STATE(2057), + [sym_preproc_error] = STATE(2057), + [sym_preproc_warning] = STATE(2057), + [sym_preproc_define] = STATE(2057), + [sym_preproc_undef] = STATE(2057), + [ts_builtin_sym_end] = ACTIONS(3438), + [sym__identifier_token] = ACTIONS(3436), + [anon_sym_extern] = ACTIONS(3436), + [anon_sym_alias] = ACTIONS(3436), + [anon_sym_SEMI] = ACTIONS(3438), + [anon_sym_global] = ACTIONS(3436), + [anon_sym_using] = ACTIONS(3436), + [anon_sym_unsafe] = ACTIONS(3436), + [anon_sym_static] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3436), + [anon_sym_namespace] = ACTIONS(3436), + [anon_sym_class] = ACTIONS(3436), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_struct] = ACTIONS(3436), + [anon_sym_enum] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_interface] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3436), + [anon_sym_record] = ACTIONS(3436), + [anon_sym_public] = ACTIONS(3436), + [anon_sym_private] = ACTIONS(3436), + [anon_sym_readonly] = ACTIONS(3436), + [anon_sym_abstract] = ACTIONS(3436), + [anon_sym_async] = ACTIONS(3436), + [anon_sym_const] = ACTIONS(3436), + [anon_sym_file] = ACTIONS(3436), + [anon_sym_fixed] = ACTIONS(3436), + [anon_sym_internal] = ACTIONS(3436), + [anon_sym_new] = ACTIONS(3436), + [anon_sym_override] = ACTIONS(3436), + [anon_sym_partial] = ACTIONS(3436), + [anon_sym_protected] = ACTIONS(3436), + [anon_sym_required] = ACTIONS(3436), + [anon_sym_sealed] = ACTIONS(3436), + [anon_sym_virtual] = ACTIONS(3436), + [anon_sym_volatile] = ACTIONS(3436), + [anon_sym_where] = ACTIONS(3436), + [anon_sym_notnull] = ACTIONS(3436), + [anon_sym_unmanaged] = ACTIONS(3436), + [anon_sym_checked] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3438), + [anon_sym_this] = ACTIONS(3436), + [anon_sym_scoped] = ACTIONS(3436), + [anon_sym_base] = ACTIONS(3436), + [anon_sym_var] = ACTIONS(3436), + [anon_sym_STAR] = ACTIONS(3438), + [sym_predefined_type] = ACTIONS(3436), + [anon_sym_break] = ACTIONS(3436), + [anon_sym_unchecked] = ACTIONS(3436), + [anon_sym_continue] = ACTIONS(3436), + [anon_sym_do] = ACTIONS(3436), + [anon_sym_while] = ACTIONS(3436), + [anon_sym_for] = ACTIONS(3436), + [anon_sym_lock] = ACTIONS(3436), + [anon_sym_yield] = ACTIONS(3436), + [anon_sym_switch] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3436), + [anon_sym_throw] = ACTIONS(3436), + [anon_sym_try] = ACTIONS(3436), + [anon_sym_when] = ACTIONS(3436), + [anon_sym_await] = ACTIONS(3436), + [anon_sym_foreach] = ACTIONS(3436), + [anon_sym_goto] = ACTIONS(3436), + [anon_sym_if] = ACTIONS(3436), + [anon_sym_else] = ACTIONS(3436), + [anon_sym_DOT_DOT] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_CARET] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3438), + [anon_sym_PLUS_PLUS] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3438), + [anon_sym_true] = ACTIONS(3436), + [anon_sym_false] = ACTIONS(3436), + [anon_sym_from] = ACTIONS(3436), + [anon_sym_into] = ACTIONS(3436), + [anon_sym_join] = ACTIONS(3436), + [anon_sym_on] = ACTIONS(3436), + [anon_sym_equals] = ACTIONS(3436), + [anon_sym_let] = ACTIONS(3436), + [anon_sym_orderby] = ACTIONS(3436), + [anon_sym_ascending] = ACTIONS(3436), + [anon_sym_descending] = ACTIONS(3436), + [anon_sym_group] = ACTIONS(3436), + [anon_sym_by] = ACTIONS(3436), + [anon_sym_select] = ACTIONS(3436), + [anon_sym_stackalloc] = ACTIONS(3436), + [anon_sym_sizeof] = ACTIONS(3436), + [anon_sym_typeof] = ACTIONS(3436), + [anon_sym___makeref] = ACTIONS(3436), + [anon_sym___reftype] = ACTIONS(3436), + [anon_sym___refvalue] = ACTIONS(3436), + [sym_null_literal] = ACTIONS(3436), + [anon_sym_SQUOTE] = ACTIONS(3438), + [sym_integer_literal] = ACTIONS(3436), + [sym_real_literal] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [sym_verbatim_string_literal] = ACTIONS(3438), + [sym_grit_metavariable] = ACTIONS(3438), + [aux_sym_preproc_if_token1] = ACTIONS(3438), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -393471,124 +393621,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3522), - [sym_interpolation_verbatim_start] = ACTIONS(3522), - [sym_interpolation_raw_start] = ACTIONS(3522), - [sym_raw_string_start] = ACTIONS(3522), + [sym_interpolation_regular_start] = ACTIONS(3438), + [sym_interpolation_verbatim_start] = ACTIONS(3438), + [sym_interpolation_raw_start] = ACTIONS(3438), + [sym_raw_string_start] = ACTIONS(3438), }, - [2057] = { - [sym_preproc_region] = STATE(2057), - [sym_preproc_endregion] = STATE(2057), - [sym_preproc_line] = STATE(2057), - [sym_preproc_pragma] = STATE(2057), - [sym_preproc_nullable] = STATE(2057), - [sym_preproc_error] = STATE(2057), - [sym_preproc_warning] = STATE(2057), - [sym_preproc_define] = STATE(2057), - [sym_preproc_undef] = STATE(2057), - [ts_builtin_sym_end] = ACTIONS(3486), - [sym__identifier_token] = ACTIONS(3484), - [anon_sym_extern] = ACTIONS(3484), - [anon_sym_alias] = ACTIONS(3484), - [anon_sym_SEMI] = ACTIONS(3486), - [anon_sym_global] = ACTIONS(3484), - [anon_sym_using] = ACTIONS(3484), - [anon_sym_unsafe] = ACTIONS(3484), - [anon_sym_static] = ACTIONS(3484), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3484), - [anon_sym_namespace] = ACTIONS(3484), - [anon_sym_class] = ACTIONS(3484), - [anon_sym_ref] = ACTIONS(3484), - [anon_sym_struct] = ACTIONS(3484), - [anon_sym_enum] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_interface] = ACTIONS(3484), - [anon_sym_delegate] = ACTIONS(3484), - [anon_sym_record] = ACTIONS(3484), - [anon_sym_public] = ACTIONS(3484), - [anon_sym_private] = ACTIONS(3484), - [anon_sym_readonly] = ACTIONS(3484), - [anon_sym_abstract] = ACTIONS(3484), - [anon_sym_async] = ACTIONS(3484), - [anon_sym_const] = ACTIONS(3484), - [anon_sym_file] = ACTIONS(3484), - [anon_sym_fixed] = ACTIONS(3484), - [anon_sym_internal] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3484), - [anon_sym_override] = ACTIONS(3484), - [anon_sym_partial] = ACTIONS(3484), - [anon_sym_protected] = ACTIONS(3484), - [anon_sym_required] = ACTIONS(3484), - [anon_sym_sealed] = ACTIONS(3484), - [anon_sym_virtual] = ACTIONS(3484), - [anon_sym_volatile] = ACTIONS(3484), - [anon_sym_where] = ACTIONS(3484), - [anon_sym_notnull] = ACTIONS(3484), - [anon_sym_unmanaged] = ACTIONS(3484), - [anon_sym_checked] = ACTIONS(3484), - [anon_sym_BANG] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3486), - [anon_sym_PLUS_PLUS] = ACTIONS(3486), - [anon_sym_DASH_DASH] = ACTIONS(3486), - [anon_sym_true] = ACTIONS(3484), - [anon_sym_false] = ACTIONS(3484), - [anon_sym_PLUS] = ACTIONS(3484), - [anon_sym_DASH] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3486), - [anon_sym_CARET] = ACTIONS(3486), - [anon_sym_AMP] = ACTIONS(3486), - [anon_sym_this] = ACTIONS(3484), - [anon_sym_scoped] = ACTIONS(3484), - [anon_sym_base] = ACTIONS(3484), - [anon_sym_var] = ACTIONS(3484), - [sym_predefined_type] = ACTIONS(3484), - [anon_sym_break] = ACTIONS(3484), - [anon_sym_unchecked] = ACTIONS(3484), - [anon_sym_continue] = ACTIONS(3484), - [anon_sym_do] = ACTIONS(3484), - [anon_sym_while] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3484), - [anon_sym_lock] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3484), - [anon_sym_switch] = ACTIONS(3484), - [anon_sym_default] = ACTIONS(3484), - [anon_sym_throw] = ACTIONS(3484), - [anon_sym_try] = ACTIONS(3484), - [anon_sym_when] = ACTIONS(3484), - [anon_sym_await] = ACTIONS(3484), - [anon_sym_foreach] = ACTIONS(3484), - [anon_sym_goto] = ACTIONS(3484), - [anon_sym_if] = ACTIONS(3484), - [anon_sym_else] = ACTIONS(3484), - [anon_sym_DOT_DOT] = ACTIONS(3486), - [anon_sym_from] = ACTIONS(3484), - [anon_sym_into] = ACTIONS(3484), - [anon_sym_join] = ACTIONS(3484), - [anon_sym_on] = ACTIONS(3484), - [anon_sym_equals] = ACTIONS(3484), - [anon_sym_let] = ACTIONS(3484), - [anon_sym_orderby] = ACTIONS(3484), - [anon_sym_ascending] = ACTIONS(3484), - [anon_sym_descending] = ACTIONS(3484), - [anon_sym_group] = ACTIONS(3484), - [anon_sym_by] = ACTIONS(3484), - [anon_sym_select] = ACTIONS(3484), - [anon_sym_stackalloc] = ACTIONS(3484), - [anon_sym_sizeof] = ACTIONS(3484), - [anon_sym_typeof] = ACTIONS(3484), - [anon_sym___makeref] = ACTIONS(3484), - [anon_sym___reftype] = ACTIONS(3484), - [anon_sym___refvalue] = ACTIONS(3484), - [sym_null_literal] = ACTIONS(3484), - [anon_sym_SQUOTE] = ACTIONS(3486), - [sym_integer_literal] = ACTIONS(3484), - [sym_real_literal] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [sym_verbatim_string_literal] = ACTIONS(3486), - [sym_grit_metavariable] = ACTIONS(3486), - [aux_sym_preproc_if_token1] = ACTIONS(3486), + [2058] = { + [sym_preproc_region] = STATE(2058), + [sym_preproc_endregion] = STATE(2058), + [sym_preproc_line] = STATE(2058), + [sym_preproc_pragma] = STATE(2058), + [sym_preproc_nullable] = STATE(2058), + [sym_preproc_error] = STATE(2058), + [sym_preproc_warning] = STATE(2058), + [sym_preproc_define] = STATE(2058), + [sym_preproc_undef] = STATE(2058), + [ts_builtin_sym_end] = ACTIONS(3570), + [sym__identifier_token] = ACTIONS(3568), + [anon_sym_extern] = ACTIONS(3568), + [anon_sym_alias] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym_global] = ACTIONS(3568), + [anon_sym_using] = ACTIONS(3568), + [anon_sym_unsafe] = ACTIONS(3568), + [anon_sym_static] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_namespace] = ACTIONS(3568), + [anon_sym_class] = ACTIONS(3568), + [anon_sym_ref] = ACTIONS(3568), + [anon_sym_struct] = ACTIONS(3568), + [anon_sym_enum] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_interface] = ACTIONS(3568), + [anon_sym_delegate] = ACTIONS(3568), + [anon_sym_record] = ACTIONS(3568), + [anon_sym_public] = ACTIONS(3568), + [anon_sym_private] = ACTIONS(3568), + [anon_sym_readonly] = ACTIONS(3568), + [anon_sym_abstract] = ACTIONS(3568), + [anon_sym_async] = ACTIONS(3568), + [anon_sym_const] = ACTIONS(3568), + [anon_sym_file] = ACTIONS(3568), + [anon_sym_fixed] = ACTIONS(3568), + [anon_sym_internal] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_override] = ACTIONS(3568), + [anon_sym_partial] = ACTIONS(3568), + [anon_sym_protected] = ACTIONS(3568), + [anon_sym_required] = ACTIONS(3568), + [anon_sym_sealed] = ACTIONS(3568), + [anon_sym_virtual] = ACTIONS(3568), + [anon_sym_volatile] = ACTIONS(3568), + [anon_sym_where] = ACTIONS(3568), + [anon_sym_notnull] = ACTIONS(3568), + [anon_sym_unmanaged] = ACTIONS(3568), + [anon_sym_checked] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3570), + [anon_sym_this] = ACTIONS(3568), + [anon_sym_scoped] = ACTIONS(3568), + [anon_sym_base] = ACTIONS(3568), + [anon_sym_var] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [sym_predefined_type] = ACTIONS(3568), + [anon_sym_break] = ACTIONS(3568), + [anon_sym_unchecked] = ACTIONS(3568), + [anon_sym_continue] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_lock] = ACTIONS(3568), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_switch] = ACTIONS(3568), + [anon_sym_default] = ACTIONS(3568), + [anon_sym_throw] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_when] = ACTIONS(3568), + [anon_sym_await] = ACTIONS(3568), + [anon_sym_foreach] = ACTIONS(3568), + [anon_sym_goto] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_else] = ACTIONS(3568), + [anon_sym_DOT_DOT] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_CARET] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_BANG] = ACTIONS(3570), + [anon_sym_PLUS_PLUS] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3570), + [anon_sym_true] = ACTIONS(3568), + [anon_sym_false] = ACTIONS(3568), + [anon_sym_from] = ACTIONS(3568), + [anon_sym_into] = ACTIONS(3568), + [anon_sym_join] = ACTIONS(3568), + [anon_sym_on] = ACTIONS(3568), + [anon_sym_equals] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_orderby] = ACTIONS(3568), + [anon_sym_ascending] = ACTIONS(3568), + [anon_sym_descending] = ACTIONS(3568), + [anon_sym_group] = ACTIONS(3568), + [anon_sym_by] = ACTIONS(3568), + [anon_sym_select] = ACTIONS(3568), + [anon_sym_stackalloc] = ACTIONS(3568), + [anon_sym_sizeof] = ACTIONS(3568), + [anon_sym_typeof] = ACTIONS(3568), + [anon_sym___makeref] = ACTIONS(3568), + [anon_sym___reftype] = ACTIONS(3568), + [anon_sym___refvalue] = ACTIONS(3568), + [sym_null_literal] = ACTIONS(3568), + [anon_sym_SQUOTE] = ACTIONS(3570), + [sym_integer_literal] = ACTIONS(3568), + [sym_real_literal] = ACTIONS(3570), + [anon_sym_DQUOTE] = ACTIONS(3570), + [sym_verbatim_string_literal] = ACTIONS(3570), + [sym_grit_metavariable] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -393599,21 +393749,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3486), - [sym_interpolation_verbatim_start] = ACTIONS(3486), - [sym_interpolation_raw_start] = ACTIONS(3486), - [sym_raw_string_start] = ACTIONS(3486), + [sym_interpolation_regular_start] = ACTIONS(3570), + [sym_interpolation_verbatim_start] = ACTIONS(3570), + [sym_interpolation_raw_start] = ACTIONS(3570), + [sym_raw_string_start] = ACTIONS(3570), }, - [2058] = { - [sym_preproc_region] = STATE(2058), - [sym_preproc_endregion] = STATE(2058), - [sym_preproc_line] = STATE(2058), - [sym_preproc_pragma] = STATE(2058), - [sym_preproc_nullable] = STATE(2058), - [sym_preproc_error] = STATE(2058), - [sym_preproc_warning] = STATE(2058), - [sym_preproc_define] = STATE(2058), - [sym_preproc_undef] = STATE(2058), + [2059] = { + [sym_catch_clause] = STATE(2111), + [sym_finally_clause] = STATE(2129), + [sym_preproc_region] = STATE(2059), + [sym_preproc_endregion] = STATE(2059), + [sym_preproc_line] = STATE(2059), + [sym_preproc_pragma] = STATE(2059), + [sym_preproc_nullable] = STATE(2059), + [sym_preproc_error] = STATE(2059), + [sym_preproc_warning] = STATE(2059), + [sym_preproc_define] = STATE(2059), + [sym_preproc_undef] = STATE(2059), + [aux_sym_try_statement_repeat1] = STATE(2101), + [sym__identifier_token] = ACTIONS(3348), + [anon_sym_extern] = ACTIONS(3348), + [anon_sym_alias] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_global] = ACTIONS(3348), + [anon_sym_using] = ACTIONS(3348), + [anon_sym_unsafe] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_ref] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_delegate] = ACTIONS(3348), + [anon_sym_public] = ACTIONS(3348), + [anon_sym_private] = ACTIONS(3348), + [anon_sym_readonly] = ACTIONS(3348), + [anon_sym_abstract] = ACTIONS(3348), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_file] = ACTIONS(3348), + [anon_sym_fixed] = ACTIONS(3348), + [anon_sym_internal] = ACTIONS(3348), + [anon_sym_new] = ACTIONS(3348), + [anon_sym_override] = ACTIONS(3348), + [anon_sym_partial] = ACTIONS(3348), + [anon_sym_protected] = ACTIONS(3348), + [anon_sym_required] = ACTIONS(3348), + [anon_sym_sealed] = ACTIONS(3348), + [anon_sym_virtual] = ACTIONS(3348), + [anon_sym_volatile] = ACTIONS(3348), + [anon_sym_where] = ACTIONS(3348), + [anon_sym_notnull] = ACTIONS(3348), + [anon_sym_unmanaged] = ACTIONS(3348), + [anon_sym_checked] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(3348), + [anon_sym_scoped] = ACTIONS(3348), + [anon_sym_base] = ACTIONS(3348), + [anon_sym_var] = ACTIONS(3348), + [anon_sym_STAR] = ACTIONS(3350), + [sym_predefined_type] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_unchecked] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_do] = ACTIONS(3348), + [anon_sym_while] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_lock] = ACTIONS(3348), + [anon_sym_yield] = ACTIONS(3348), + [anon_sym_switch] = ACTIONS(3348), + [anon_sym_case] = ACTIONS(3348), + [anon_sym_default] = ACTIONS(3348), + [anon_sym_throw] = ACTIONS(3348), + [anon_sym_try] = ACTIONS(3348), + [anon_sym_catch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3348), + [anon_sym_finally] = ACTIONS(3718), + [anon_sym_await] = ACTIONS(3348), + [anon_sym_foreach] = ACTIONS(3348), + [anon_sym_goto] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_else] = ACTIONS(3348), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [anon_sym_from] = ACTIONS(3348), + [anon_sym_into] = ACTIONS(3348), + [anon_sym_join] = ACTIONS(3348), + [anon_sym_on] = ACTIONS(3348), + [anon_sym_equals] = ACTIONS(3348), + [anon_sym_let] = ACTIONS(3348), + [anon_sym_orderby] = ACTIONS(3348), + [anon_sym_ascending] = ACTIONS(3348), + [anon_sym_descending] = ACTIONS(3348), + [anon_sym_group] = ACTIONS(3348), + [anon_sym_by] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3348), + [anon_sym_stackalloc] = ACTIONS(3348), + [anon_sym_sizeof] = ACTIONS(3348), + [anon_sym_typeof] = ACTIONS(3348), + [anon_sym___makeref] = ACTIONS(3348), + [anon_sym___reftype] = ACTIONS(3348), + [anon_sym___refvalue] = ACTIONS(3348), + [sym_null_literal] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(3350), + [sym_integer_literal] = ACTIONS(3348), + [sym_real_literal] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [sym_verbatim_string_literal] = ACTIONS(3350), + [sym_grit_metavariable] = ACTIONS(3350), + [aux_sym_preproc_if_token1] = ACTIONS(3350), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3350), + [sym_interpolation_verbatim_start] = ACTIONS(3350), + [sym_interpolation_raw_start] = ACTIONS(3350), + [sym_raw_string_start] = ACTIONS(3350), + }, + [2060] = { + [sym_preproc_region] = STATE(2060), + [sym_preproc_endregion] = STATE(2060), + [sym_preproc_line] = STATE(2060), + [sym_preproc_pragma] = STATE(2060), + [sym_preproc_nullable] = STATE(2060), + [sym_preproc_error] = STATE(2060), + [sym_preproc_warning] = STATE(2060), + [sym_preproc_define] = STATE(2060), + [sym_preproc_undef] = STATE(2060), + [ts_builtin_sym_end] = ACTIONS(3442), + [sym__identifier_token] = ACTIONS(3440), + [anon_sym_extern] = ACTIONS(3440), + [anon_sym_alias] = ACTIONS(3440), + [anon_sym_SEMI] = ACTIONS(3442), + [anon_sym_global] = ACTIONS(3440), + [anon_sym_using] = ACTIONS(3440), + [anon_sym_unsafe] = ACTIONS(3440), + [anon_sym_static] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3440), + [anon_sym_namespace] = ACTIONS(3440), + [anon_sym_class] = ACTIONS(3440), + [anon_sym_ref] = ACTIONS(3440), + [anon_sym_struct] = ACTIONS(3440), + [anon_sym_enum] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_interface] = ACTIONS(3440), + [anon_sym_delegate] = ACTIONS(3440), + [anon_sym_record] = ACTIONS(3440), + [anon_sym_public] = ACTIONS(3440), + [anon_sym_private] = ACTIONS(3440), + [anon_sym_readonly] = ACTIONS(3440), + [anon_sym_abstract] = ACTIONS(3440), + [anon_sym_async] = ACTIONS(3440), + [anon_sym_const] = ACTIONS(3440), + [anon_sym_file] = ACTIONS(3440), + [anon_sym_fixed] = ACTIONS(3440), + [anon_sym_internal] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3440), + [anon_sym_override] = ACTIONS(3440), + [anon_sym_partial] = ACTIONS(3440), + [anon_sym_protected] = ACTIONS(3440), + [anon_sym_required] = ACTIONS(3440), + [anon_sym_sealed] = ACTIONS(3440), + [anon_sym_virtual] = ACTIONS(3440), + [anon_sym_volatile] = ACTIONS(3440), + [anon_sym_where] = ACTIONS(3440), + [anon_sym_notnull] = ACTIONS(3440), + [anon_sym_unmanaged] = ACTIONS(3440), + [anon_sym_checked] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_this] = ACTIONS(3440), + [anon_sym_scoped] = ACTIONS(3440), + [anon_sym_base] = ACTIONS(3440), + [anon_sym_var] = ACTIONS(3440), + [anon_sym_STAR] = ACTIONS(3442), + [sym_predefined_type] = ACTIONS(3440), + [anon_sym_break] = ACTIONS(3440), + [anon_sym_unchecked] = ACTIONS(3440), + [anon_sym_continue] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(3440), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3440), + [anon_sym_lock] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3440), + [anon_sym_switch] = ACTIONS(3440), + [anon_sym_default] = ACTIONS(3440), + [anon_sym_throw] = ACTIONS(3440), + [anon_sym_try] = ACTIONS(3440), + [anon_sym_when] = ACTIONS(3440), + [anon_sym_await] = ACTIONS(3440), + [anon_sym_foreach] = ACTIONS(3440), + [anon_sym_goto] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(3440), + [anon_sym_else] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3442), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_CARET] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_from] = ACTIONS(3440), + [anon_sym_into] = ACTIONS(3440), + [anon_sym_join] = ACTIONS(3440), + [anon_sym_on] = ACTIONS(3440), + [anon_sym_equals] = ACTIONS(3440), + [anon_sym_let] = ACTIONS(3440), + [anon_sym_orderby] = ACTIONS(3440), + [anon_sym_ascending] = ACTIONS(3440), + [anon_sym_descending] = ACTIONS(3440), + [anon_sym_group] = ACTIONS(3440), + [anon_sym_by] = ACTIONS(3440), + [anon_sym_select] = ACTIONS(3440), + [anon_sym_stackalloc] = ACTIONS(3440), + [anon_sym_sizeof] = ACTIONS(3440), + [anon_sym_typeof] = ACTIONS(3440), + [anon_sym___makeref] = ACTIONS(3440), + [anon_sym___reftype] = ACTIONS(3440), + [anon_sym___refvalue] = ACTIONS(3440), + [sym_null_literal] = ACTIONS(3440), + [anon_sym_SQUOTE] = ACTIONS(3442), + [sym_integer_literal] = ACTIONS(3440), + [sym_real_literal] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [sym_verbatim_string_literal] = ACTIONS(3442), + [sym_grit_metavariable] = ACTIONS(3442), + [aux_sym_preproc_if_token1] = ACTIONS(3442), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3442), + [sym_interpolation_verbatim_start] = ACTIONS(3442), + [sym_interpolation_raw_start] = ACTIONS(3442), + [sym_raw_string_start] = ACTIONS(3442), + }, + [2061] = { + [sym_preproc_region] = STATE(2061), + [sym_preproc_endregion] = STATE(2061), + [sym_preproc_line] = STATE(2061), + [sym_preproc_pragma] = STATE(2061), + [sym_preproc_nullable] = STATE(2061), + [sym_preproc_error] = STATE(2061), + [sym_preproc_warning] = STATE(2061), + [sym_preproc_define] = STATE(2061), + [sym_preproc_undef] = STATE(2061), [ts_builtin_sym_end] = ACTIONS(3392), [sym__identifier_token] = ACTIONS(3390), [anon_sym_extern] = ACTIONS(3390), @@ -393656,21 +394062,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3390), [anon_sym_unmanaged] = ACTIONS(3390), [anon_sym_checked] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3392), [anon_sym_TILDE] = ACTIONS(3392), - [anon_sym_PLUS_PLUS] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3392), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [anon_sym_PLUS] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3390), - [anon_sym_STAR] = ACTIONS(3392), - [anon_sym_CARET] = ACTIONS(3392), - [anon_sym_AMP] = ACTIONS(3392), [anon_sym_this] = ACTIONS(3390), [anon_sym_scoped] = ACTIONS(3390), [anon_sym_base] = ACTIONS(3390), [anon_sym_var] = ACTIONS(3390), + [anon_sym_STAR] = ACTIONS(3392), [sym_predefined_type] = ACTIONS(3390), [anon_sym_break] = ACTIONS(3390), [anon_sym_unchecked] = ACTIONS(3390), @@ -393691,6 +394088,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3390), [anon_sym_else] = ACTIONS(3390), [anon_sym_DOT_DOT] = ACTIONS(3392), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_CARET] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3390), + [anon_sym_DASH] = ACTIONS(3390), + [anon_sym_BANG] = ACTIONS(3392), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3390), + [anon_sym_false] = ACTIONS(3390), [anon_sym_from] = ACTIONS(3390), [anon_sym_into] = ACTIONS(3390), [anon_sym_join] = ACTIONS(3390), @@ -393732,390 +394138,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3392), [sym_raw_string_start] = ACTIONS(3392), }, - [2059] = { - [sym_preproc_region] = STATE(2059), - [sym_preproc_endregion] = STATE(2059), - [sym_preproc_line] = STATE(2059), - [sym_preproc_pragma] = STATE(2059), - [sym_preproc_nullable] = STATE(2059), - [sym_preproc_error] = STATE(2059), - [sym_preproc_warning] = STATE(2059), - [sym_preproc_define] = STATE(2059), - [sym_preproc_undef] = STATE(2059), - [ts_builtin_sym_end] = ACTIONS(3404), - [sym__identifier_token] = ACTIONS(3402), - [anon_sym_extern] = ACTIONS(3402), - [anon_sym_alias] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_global] = ACTIONS(3402), - [anon_sym_using] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(3402), - [anon_sym_static] = ACTIONS(3402), - [anon_sym_LBRACK] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(3404), - [anon_sym_return] = ACTIONS(3402), - [anon_sym_namespace] = ACTIONS(3402), - [anon_sym_class] = ACTIONS(3402), - [anon_sym_ref] = ACTIONS(3402), - [anon_sym_struct] = ACTIONS(3402), - [anon_sym_enum] = ACTIONS(3402), - [anon_sym_LBRACE] = ACTIONS(3404), - [anon_sym_interface] = ACTIONS(3402), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_record] = ACTIONS(3402), - [anon_sym_public] = ACTIONS(3402), - [anon_sym_private] = ACTIONS(3402), - [anon_sym_readonly] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(3402), - [anon_sym_async] = ACTIONS(3402), - [anon_sym_const] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(3402), - [anon_sym_fixed] = ACTIONS(3402), - [anon_sym_internal] = ACTIONS(3402), - [anon_sym_new] = ACTIONS(3402), - [anon_sym_override] = ACTIONS(3402), - [anon_sym_partial] = ACTIONS(3402), - [anon_sym_protected] = ACTIONS(3402), - [anon_sym_required] = ACTIONS(3402), - [anon_sym_sealed] = ACTIONS(3402), - [anon_sym_virtual] = ACTIONS(3402), - [anon_sym_volatile] = ACTIONS(3402), - [anon_sym_where] = ACTIONS(3402), - [anon_sym_notnull] = ACTIONS(3402), - [anon_sym_unmanaged] = ACTIONS(3402), - [anon_sym_checked] = ACTIONS(3402), - [anon_sym_BANG] = ACTIONS(3404), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_PLUS_PLUS] = ACTIONS(3404), - [anon_sym_DASH_DASH] = ACTIONS(3404), - [anon_sym_true] = ACTIONS(3402), - [anon_sym_false] = ACTIONS(3402), - [anon_sym_PLUS] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3402), - [anon_sym_STAR] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_this] = ACTIONS(3402), - [anon_sym_scoped] = ACTIONS(3402), - [anon_sym_base] = ACTIONS(3402), - [anon_sym_var] = ACTIONS(3402), - [sym_predefined_type] = ACTIONS(3402), - [anon_sym_break] = ACTIONS(3402), - [anon_sym_unchecked] = ACTIONS(3402), - [anon_sym_continue] = ACTIONS(3402), - [anon_sym_do] = ACTIONS(3402), - [anon_sym_while] = ACTIONS(3402), - [anon_sym_for] = ACTIONS(3402), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_yield] = ACTIONS(3402), - [anon_sym_switch] = ACTIONS(3402), - [anon_sym_default] = ACTIONS(3402), - [anon_sym_throw] = ACTIONS(3402), - [anon_sym_try] = ACTIONS(3402), - [anon_sym_when] = ACTIONS(3402), - [anon_sym_await] = ACTIONS(3402), - [anon_sym_foreach] = ACTIONS(3402), - [anon_sym_goto] = ACTIONS(3402), - [anon_sym_if] = ACTIONS(3402), - [anon_sym_else] = ACTIONS(3402), - [anon_sym_DOT_DOT] = ACTIONS(3404), - [anon_sym_from] = ACTIONS(3402), - [anon_sym_into] = ACTIONS(3402), - [anon_sym_join] = ACTIONS(3402), - [anon_sym_on] = ACTIONS(3402), - [anon_sym_equals] = ACTIONS(3402), - [anon_sym_let] = ACTIONS(3402), - [anon_sym_orderby] = ACTIONS(3402), - [anon_sym_ascending] = ACTIONS(3402), - [anon_sym_descending] = ACTIONS(3402), - [anon_sym_group] = ACTIONS(3402), - [anon_sym_by] = ACTIONS(3402), - [anon_sym_select] = ACTIONS(3402), - [anon_sym_stackalloc] = ACTIONS(3402), - [anon_sym_sizeof] = ACTIONS(3402), - [anon_sym_typeof] = ACTIONS(3402), - [anon_sym___makeref] = ACTIONS(3402), - [anon_sym___reftype] = ACTIONS(3402), - [anon_sym___refvalue] = ACTIONS(3402), - [sym_null_literal] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3404), - [sym_integer_literal] = ACTIONS(3402), - [sym_real_literal] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [sym_verbatim_string_literal] = ACTIONS(3404), - [sym_grit_metavariable] = ACTIONS(3404), - [aux_sym_preproc_if_token1] = ACTIONS(3404), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3404), - [sym_interpolation_verbatim_start] = ACTIONS(3404), - [sym_interpolation_raw_start] = ACTIONS(3404), - [sym_raw_string_start] = ACTIONS(3404), - }, - [2060] = { - [sym_preproc_region] = STATE(2060), - [sym_preproc_endregion] = STATE(2060), - [sym_preproc_line] = STATE(2060), - [sym_preproc_pragma] = STATE(2060), - [sym_preproc_nullable] = STATE(2060), - [sym_preproc_error] = STATE(2060), - [sym_preproc_warning] = STATE(2060), - [sym_preproc_define] = STATE(2060), - [sym_preproc_undef] = STATE(2060), - [ts_builtin_sym_end] = ACTIONS(3426), - [sym__identifier_token] = ACTIONS(3424), - [anon_sym_extern] = ACTIONS(3424), - [anon_sym_alias] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3426), - [anon_sym_global] = ACTIONS(3424), - [anon_sym_using] = ACTIONS(3424), - [anon_sym_unsafe] = ACTIONS(3424), - [anon_sym_static] = ACTIONS(3424), - [anon_sym_LBRACK] = ACTIONS(3426), - [anon_sym_LPAREN] = ACTIONS(3426), - [anon_sym_return] = ACTIONS(3424), - [anon_sym_namespace] = ACTIONS(3424), - [anon_sym_class] = ACTIONS(3424), - [anon_sym_ref] = ACTIONS(3424), - [anon_sym_struct] = ACTIONS(3424), - [anon_sym_enum] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_interface] = ACTIONS(3424), - [anon_sym_delegate] = ACTIONS(3424), - [anon_sym_record] = ACTIONS(3424), - [anon_sym_public] = ACTIONS(3424), - [anon_sym_private] = ACTIONS(3424), - [anon_sym_readonly] = ACTIONS(3424), - [anon_sym_abstract] = ACTIONS(3424), - [anon_sym_async] = ACTIONS(3424), - [anon_sym_const] = ACTIONS(3424), - [anon_sym_file] = ACTIONS(3424), - [anon_sym_fixed] = ACTIONS(3424), - [anon_sym_internal] = ACTIONS(3424), - [anon_sym_new] = ACTIONS(3424), - [anon_sym_override] = ACTIONS(3424), - [anon_sym_partial] = ACTIONS(3424), - [anon_sym_protected] = ACTIONS(3424), - [anon_sym_required] = ACTIONS(3424), - [anon_sym_sealed] = ACTIONS(3424), - [anon_sym_virtual] = ACTIONS(3424), - [anon_sym_volatile] = ACTIONS(3424), - [anon_sym_where] = ACTIONS(3424), - [anon_sym_notnull] = ACTIONS(3424), - [anon_sym_unmanaged] = ACTIONS(3424), - [anon_sym_checked] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3426), - [anon_sym_TILDE] = ACTIONS(3426), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(3426), - [anon_sym_CARET] = ACTIONS(3426), - [anon_sym_AMP] = ACTIONS(3426), - [anon_sym_this] = ACTIONS(3424), - [anon_sym_scoped] = ACTIONS(3424), - [anon_sym_base] = ACTIONS(3424), - [anon_sym_var] = ACTIONS(3424), - [sym_predefined_type] = ACTIONS(3424), - [anon_sym_break] = ACTIONS(3424), - [anon_sym_unchecked] = ACTIONS(3424), - [anon_sym_continue] = ACTIONS(3424), - [anon_sym_do] = ACTIONS(3424), - [anon_sym_while] = ACTIONS(3424), - [anon_sym_for] = ACTIONS(3424), - [anon_sym_lock] = ACTIONS(3424), - [anon_sym_yield] = ACTIONS(3424), - [anon_sym_switch] = ACTIONS(3424), - [anon_sym_default] = ACTIONS(3424), - [anon_sym_throw] = ACTIONS(3424), - [anon_sym_try] = ACTIONS(3424), - [anon_sym_when] = ACTIONS(3424), - [anon_sym_await] = ACTIONS(3424), - [anon_sym_foreach] = ACTIONS(3424), - [anon_sym_goto] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3424), - [anon_sym_else] = ACTIONS(3424), - [anon_sym_DOT_DOT] = ACTIONS(3426), - [anon_sym_from] = ACTIONS(3424), - [anon_sym_into] = ACTIONS(3424), - [anon_sym_join] = ACTIONS(3424), - [anon_sym_on] = ACTIONS(3424), - [anon_sym_equals] = ACTIONS(3424), - [anon_sym_let] = ACTIONS(3424), - [anon_sym_orderby] = ACTIONS(3424), - [anon_sym_ascending] = ACTIONS(3424), - [anon_sym_descending] = ACTIONS(3424), - [anon_sym_group] = ACTIONS(3424), - [anon_sym_by] = ACTIONS(3424), - [anon_sym_select] = ACTIONS(3424), - [anon_sym_stackalloc] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3424), - [anon_sym_typeof] = ACTIONS(3424), - [anon_sym___makeref] = ACTIONS(3424), - [anon_sym___reftype] = ACTIONS(3424), - [anon_sym___refvalue] = ACTIONS(3424), - [sym_null_literal] = ACTIONS(3424), - [anon_sym_SQUOTE] = ACTIONS(3426), - [sym_integer_literal] = ACTIONS(3424), - [sym_real_literal] = ACTIONS(3426), - [anon_sym_DQUOTE] = ACTIONS(3426), - [sym_verbatim_string_literal] = ACTIONS(3426), - [sym_grit_metavariable] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3426), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3426), - [sym_interpolation_verbatim_start] = ACTIONS(3426), - [sym_interpolation_raw_start] = ACTIONS(3426), - [sym_raw_string_start] = ACTIONS(3426), - }, - [2061] = { - [sym_preproc_region] = STATE(2061), - [sym_preproc_endregion] = STATE(2061), - [sym_preproc_line] = STATE(2061), - [sym_preproc_pragma] = STATE(2061), - [sym_preproc_nullable] = STATE(2061), - [sym_preproc_error] = STATE(2061), - [sym_preproc_warning] = STATE(2061), - [sym_preproc_define] = STATE(2061), - [sym_preproc_undef] = STATE(2061), - [ts_builtin_sym_end] = ACTIONS(3546), - [sym__identifier_token] = ACTIONS(3544), - [anon_sym_extern] = ACTIONS(3544), - [anon_sym_alias] = ACTIONS(3544), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym_global] = ACTIONS(3544), - [anon_sym_using] = ACTIONS(3544), - [anon_sym_unsafe] = ACTIONS(3544), - [anon_sym_static] = ACTIONS(3544), - [anon_sym_LBRACK] = ACTIONS(3546), - [anon_sym_LPAREN] = ACTIONS(3546), - [anon_sym_return] = ACTIONS(3544), - [anon_sym_namespace] = ACTIONS(3544), - [anon_sym_class] = ACTIONS(3544), - [anon_sym_ref] = ACTIONS(3544), - [anon_sym_struct] = ACTIONS(3544), - [anon_sym_enum] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_interface] = ACTIONS(3544), - [anon_sym_delegate] = ACTIONS(3544), - [anon_sym_record] = ACTIONS(3544), - [anon_sym_public] = ACTIONS(3544), - [anon_sym_private] = ACTIONS(3544), - [anon_sym_readonly] = ACTIONS(3544), - [anon_sym_abstract] = ACTIONS(3544), - [anon_sym_async] = ACTIONS(3544), - [anon_sym_const] = ACTIONS(3544), - [anon_sym_file] = ACTIONS(3544), - [anon_sym_fixed] = ACTIONS(3544), - [anon_sym_internal] = ACTIONS(3544), - [anon_sym_new] = ACTIONS(3544), - [anon_sym_override] = ACTIONS(3544), - [anon_sym_partial] = ACTIONS(3544), - [anon_sym_protected] = ACTIONS(3544), - [anon_sym_required] = ACTIONS(3544), - [anon_sym_sealed] = ACTIONS(3544), - [anon_sym_virtual] = ACTIONS(3544), - [anon_sym_volatile] = ACTIONS(3544), - [anon_sym_where] = ACTIONS(3544), - [anon_sym_notnull] = ACTIONS(3544), - [anon_sym_unmanaged] = ACTIONS(3544), - [anon_sym_checked] = ACTIONS(3544), - [anon_sym_BANG] = ACTIONS(3546), - [anon_sym_TILDE] = ACTIONS(3546), - [anon_sym_PLUS_PLUS] = ACTIONS(3546), - [anon_sym_DASH_DASH] = ACTIONS(3546), - [anon_sym_true] = ACTIONS(3544), - [anon_sym_false] = ACTIONS(3544), - [anon_sym_PLUS] = ACTIONS(3544), - [anon_sym_DASH] = ACTIONS(3544), - [anon_sym_STAR] = ACTIONS(3546), - [anon_sym_CARET] = ACTIONS(3546), - [anon_sym_AMP] = ACTIONS(3546), - [anon_sym_this] = ACTIONS(3544), - [anon_sym_scoped] = ACTIONS(3544), - [anon_sym_base] = ACTIONS(3544), - [anon_sym_var] = ACTIONS(3544), - [sym_predefined_type] = ACTIONS(3544), - [anon_sym_break] = ACTIONS(3544), - [anon_sym_unchecked] = ACTIONS(3544), - [anon_sym_continue] = ACTIONS(3544), - [anon_sym_do] = ACTIONS(3544), - [anon_sym_while] = ACTIONS(3544), - [anon_sym_for] = ACTIONS(3544), - [anon_sym_lock] = ACTIONS(3544), - [anon_sym_yield] = ACTIONS(3544), - [anon_sym_switch] = ACTIONS(3544), - [anon_sym_default] = ACTIONS(3544), - [anon_sym_throw] = ACTIONS(3544), - [anon_sym_try] = ACTIONS(3544), - [anon_sym_when] = ACTIONS(3544), - [anon_sym_await] = ACTIONS(3544), - [anon_sym_foreach] = ACTIONS(3544), - [anon_sym_goto] = ACTIONS(3544), - [anon_sym_if] = ACTIONS(3544), - [anon_sym_else] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_from] = ACTIONS(3544), - [anon_sym_into] = ACTIONS(3544), - [anon_sym_join] = ACTIONS(3544), - [anon_sym_on] = ACTIONS(3544), - [anon_sym_equals] = ACTIONS(3544), - [anon_sym_let] = ACTIONS(3544), - [anon_sym_orderby] = ACTIONS(3544), - [anon_sym_ascending] = ACTIONS(3544), - [anon_sym_descending] = ACTIONS(3544), - [anon_sym_group] = ACTIONS(3544), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_select] = ACTIONS(3544), - [anon_sym_stackalloc] = ACTIONS(3544), - [anon_sym_sizeof] = ACTIONS(3544), - [anon_sym_typeof] = ACTIONS(3544), - [anon_sym___makeref] = ACTIONS(3544), - [anon_sym___reftype] = ACTIONS(3544), - [anon_sym___refvalue] = ACTIONS(3544), - [sym_null_literal] = ACTIONS(3544), - [anon_sym_SQUOTE] = ACTIONS(3546), - [sym_integer_literal] = ACTIONS(3544), - [sym_real_literal] = ACTIONS(3546), - [anon_sym_DQUOTE] = ACTIONS(3546), - [sym_verbatim_string_literal] = ACTIONS(3546), - [sym_grit_metavariable] = ACTIONS(3546), - [aux_sym_preproc_if_token1] = ACTIONS(3546), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3546), - [sym_interpolation_verbatim_start] = ACTIONS(3546), - [sym_interpolation_raw_start] = ACTIONS(3546), - [sym_raw_string_start] = ACTIONS(3546), - }, [2062] = { [sym_preproc_region] = STATE(2062), [sym_preproc_endregion] = STATE(2062), @@ -394126,109 +394148,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3474), - [sym__identifier_token] = ACTIONS(3472), - [anon_sym_extern] = ACTIONS(3472), - [anon_sym_alias] = ACTIONS(3472), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym_global] = ACTIONS(3472), - [anon_sym_using] = ACTIONS(3472), - [anon_sym_unsafe] = ACTIONS(3472), - [anon_sym_static] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3472), - [anon_sym_namespace] = ACTIONS(3472), - [anon_sym_class] = ACTIONS(3472), - [anon_sym_ref] = ACTIONS(3472), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_enum] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_interface] = ACTIONS(3472), - [anon_sym_delegate] = ACTIONS(3472), - [anon_sym_record] = ACTIONS(3472), - [anon_sym_public] = ACTIONS(3472), - [anon_sym_private] = ACTIONS(3472), - [anon_sym_readonly] = ACTIONS(3472), - [anon_sym_abstract] = ACTIONS(3472), - [anon_sym_async] = ACTIONS(3472), - [anon_sym_const] = ACTIONS(3472), - [anon_sym_file] = ACTIONS(3472), - [anon_sym_fixed] = ACTIONS(3472), - [anon_sym_internal] = ACTIONS(3472), - [anon_sym_new] = ACTIONS(3472), - [anon_sym_override] = ACTIONS(3472), - [anon_sym_partial] = ACTIONS(3472), - [anon_sym_protected] = ACTIONS(3472), - [anon_sym_required] = ACTIONS(3472), - [anon_sym_sealed] = ACTIONS(3472), - [anon_sym_virtual] = ACTIONS(3472), - [anon_sym_volatile] = ACTIONS(3472), - [anon_sym_where] = ACTIONS(3472), - [anon_sym_notnull] = ACTIONS(3472), - [anon_sym_unmanaged] = ACTIONS(3472), - [anon_sym_checked] = ACTIONS(3472), - [anon_sym_BANG] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3474), - [anon_sym_PLUS_PLUS] = ACTIONS(3474), - [anon_sym_DASH_DASH] = ACTIONS(3474), - [anon_sym_true] = ACTIONS(3472), - [anon_sym_false] = ACTIONS(3472), - [anon_sym_PLUS] = ACTIONS(3472), - [anon_sym_DASH] = ACTIONS(3472), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_CARET] = ACTIONS(3474), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym_this] = ACTIONS(3472), - [anon_sym_scoped] = ACTIONS(3472), - [anon_sym_base] = ACTIONS(3472), - [anon_sym_var] = ACTIONS(3472), - [sym_predefined_type] = ACTIONS(3472), - [anon_sym_break] = ACTIONS(3472), - [anon_sym_unchecked] = ACTIONS(3472), - [anon_sym_continue] = ACTIONS(3472), - [anon_sym_do] = ACTIONS(3472), - [anon_sym_while] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3472), - [anon_sym_lock] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3472), - [anon_sym_switch] = ACTIONS(3472), - [anon_sym_default] = ACTIONS(3472), - [anon_sym_throw] = ACTIONS(3472), - [anon_sym_try] = ACTIONS(3472), - [anon_sym_when] = ACTIONS(3472), - [anon_sym_await] = ACTIONS(3472), - [anon_sym_foreach] = ACTIONS(3472), - [anon_sym_goto] = ACTIONS(3472), - [anon_sym_if] = ACTIONS(3472), - [anon_sym_else] = ACTIONS(3472), - [anon_sym_DOT_DOT] = ACTIONS(3474), - [anon_sym_from] = ACTIONS(3472), - [anon_sym_into] = ACTIONS(3472), - [anon_sym_join] = ACTIONS(3472), - [anon_sym_on] = ACTIONS(3472), - [anon_sym_equals] = ACTIONS(3472), - [anon_sym_let] = ACTIONS(3472), - [anon_sym_orderby] = ACTIONS(3472), - [anon_sym_ascending] = ACTIONS(3472), - [anon_sym_descending] = ACTIONS(3472), - [anon_sym_group] = ACTIONS(3472), - [anon_sym_by] = ACTIONS(3472), - [anon_sym_select] = ACTIONS(3472), - [anon_sym_stackalloc] = ACTIONS(3472), - [anon_sym_sizeof] = ACTIONS(3472), - [anon_sym_typeof] = ACTIONS(3472), - [anon_sym___makeref] = ACTIONS(3472), - [anon_sym___reftype] = ACTIONS(3472), - [anon_sym___refvalue] = ACTIONS(3472), - [sym_null_literal] = ACTIONS(3472), - [anon_sym_SQUOTE] = ACTIONS(3474), - [sym_integer_literal] = ACTIONS(3472), - [sym_real_literal] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [sym_verbatim_string_literal] = ACTIONS(3474), - [sym_grit_metavariable] = ACTIONS(3474), - [aux_sym_preproc_if_token1] = ACTIONS(3474), + [ts_builtin_sym_end] = ACTIONS(3566), + [sym__identifier_token] = ACTIONS(3564), + [anon_sym_extern] = ACTIONS(3564), + [anon_sym_alias] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym_global] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_unsafe] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_ref] = ACTIONS(3564), + [anon_sym_struct] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_interface] = ACTIONS(3564), + [anon_sym_delegate] = ACTIONS(3564), + [anon_sym_record] = ACTIONS(3564), + [anon_sym_public] = ACTIONS(3564), + [anon_sym_private] = ACTIONS(3564), + [anon_sym_readonly] = ACTIONS(3564), + [anon_sym_abstract] = ACTIONS(3564), + [anon_sym_async] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_file] = ACTIONS(3564), + [anon_sym_fixed] = ACTIONS(3564), + [anon_sym_internal] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_override] = ACTIONS(3564), + [anon_sym_partial] = ACTIONS(3564), + [anon_sym_protected] = ACTIONS(3564), + [anon_sym_required] = ACTIONS(3564), + [anon_sym_sealed] = ACTIONS(3564), + [anon_sym_virtual] = ACTIONS(3564), + [anon_sym_volatile] = ACTIONS(3564), + [anon_sym_where] = ACTIONS(3564), + [anon_sym_notnull] = ACTIONS(3564), + [anon_sym_unmanaged] = ACTIONS(3564), + [anon_sym_checked] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3566), + [anon_sym_this] = ACTIONS(3564), + [anon_sym_scoped] = ACTIONS(3564), + [anon_sym_base] = ACTIONS(3564), + [anon_sym_var] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3566), + [sym_predefined_type] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_unchecked] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_lock] = ACTIONS(3564), + [anon_sym_yield] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_default] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_when] = ACTIONS(3564), + [anon_sym_await] = ACTIONS(3564), + [anon_sym_foreach] = ACTIONS(3564), + [anon_sym_goto] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_else] = ACTIONS(3564), + [anon_sym_DOT_DOT] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3566), + [anon_sym_CARET] = ACTIONS(3566), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [anon_sym_from] = ACTIONS(3564), + [anon_sym_into] = ACTIONS(3564), + [anon_sym_join] = ACTIONS(3564), + [anon_sym_on] = ACTIONS(3564), + [anon_sym_equals] = ACTIONS(3564), + [anon_sym_let] = ACTIONS(3564), + [anon_sym_orderby] = ACTIONS(3564), + [anon_sym_ascending] = ACTIONS(3564), + [anon_sym_descending] = ACTIONS(3564), + [anon_sym_group] = ACTIONS(3564), + [anon_sym_by] = ACTIONS(3564), + [anon_sym_select] = ACTIONS(3564), + [anon_sym_stackalloc] = ACTIONS(3564), + [anon_sym_sizeof] = ACTIONS(3564), + [anon_sym_typeof] = ACTIONS(3564), + [anon_sym___makeref] = ACTIONS(3564), + [anon_sym___reftype] = ACTIONS(3564), + [anon_sym___refvalue] = ACTIONS(3564), + [sym_null_literal] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3566), + [sym_integer_literal] = ACTIONS(3564), + [sym_real_literal] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [sym_verbatim_string_literal] = ACTIONS(3566), + [sym_grit_metavariable] = ACTIONS(3566), + [aux_sym_preproc_if_token1] = ACTIONS(3566), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -394239,10 +394261,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(3474), - [sym_interpolation_verbatim_start] = ACTIONS(3474), - [sym_interpolation_raw_start] = ACTIONS(3474), - [sym_raw_string_start] = ACTIONS(3474), + [sym_interpolation_regular_start] = ACTIONS(3566), + [sym_interpolation_verbatim_start] = ACTIONS(3566), + [sym_interpolation_raw_start] = ACTIONS(3566), + [sym_raw_string_start] = ACTIONS(3566), }, [2063] = { [sym_preproc_region] = STATE(2063), @@ -394254,109 +394276,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3458), - [sym__identifier_token] = ACTIONS(3456), - [anon_sym_extern] = ACTIONS(3456), - [anon_sym_alias] = ACTIONS(3456), - [anon_sym_SEMI] = ACTIONS(3458), - [anon_sym_global] = ACTIONS(3456), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_unsafe] = ACTIONS(3456), - [anon_sym_static] = ACTIONS(3456), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3456), - [anon_sym_namespace] = ACTIONS(3456), - [anon_sym_class] = ACTIONS(3456), - [anon_sym_ref] = ACTIONS(3456), - [anon_sym_struct] = ACTIONS(3456), - [anon_sym_enum] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_interface] = ACTIONS(3456), - [anon_sym_delegate] = ACTIONS(3456), - [anon_sym_record] = ACTIONS(3456), - [anon_sym_public] = ACTIONS(3456), - [anon_sym_private] = ACTIONS(3456), - [anon_sym_readonly] = ACTIONS(3456), - [anon_sym_abstract] = ACTIONS(3456), - [anon_sym_async] = ACTIONS(3456), - [anon_sym_const] = ACTIONS(3456), - [anon_sym_file] = ACTIONS(3456), - [anon_sym_fixed] = ACTIONS(3456), - [anon_sym_internal] = ACTIONS(3456), - [anon_sym_new] = ACTIONS(3456), - [anon_sym_override] = ACTIONS(3456), - [anon_sym_partial] = ACTIONS(3456), - [anon_sym_protected] = ACTIONS(3456), - [anon_sym_required] = ACTIONS(3456), - [anon_sym_sealed] = ACTIONS(3456), - [anon_sym_virtual] = ACTIONS(3456), - [anon_sym_volatile] = ACTIONS(3456), - [anon_sym_where] = ACTIONS(3456), - [anon_sym_notnull] = ACTIONS(3456), - [anon_sym_unmanaged] = ACTIONS(3456), - [anon_sym_checked] = ACTIONS(3456), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3458), - [anon_sym_PLUS_PLUS] = ACTIONS(3458), - [anon_sym_DASH_DASH] = ACTIONS(3458), - [anon_sym_true] = ACTIONS(3456), - [anon_sym_false] = ACTIONS(3456), - [anon_sym_PLUS] = ACTIONS(3456), - [anon_sym_DASH] = ACTIONS(3456), - [anon_sym_STAR] = ACTIONS(3458), - [anon_sym_CARET] = ACTIONS(3458), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_this] = ACTIONS(3456), - [anon_sym_scoped] = ACTIONS(3456), - [anon_sym_base] = ACTIONS(3456), - [anon_sym_var] = ACTIONS(3456), - [sym_predefined_type] = ACTIONS(3456), - [anon_sym_break] = ACTIONS(3456), - [anon_sym_unchecked] = ACTIONS(3456), - [anon_sym_continue] = ACTIONS(3456), - [anon_sym_do] = ACTIONS(3456), - [anon_sym_while] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3456), - [anon_sym_lock] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3456), - [anon_sym_switch] = ACTIONS(3456), - [anon_sym_default] = ACTIONS(3456), - [anon_sym_throw] = ACTIONS(3456), - [anon_sym_try] = ACTIONS(3456), - [anon_sym_when] = ACTIONS(3456), - [anon_sym_await] = ACTIONS(3456), - [anon_sym_foreach] = ACTIONS(3456), - [anon_sym_goto] = ACTIONS(3456), - [anon_sym_if] = ACTIONS(3456), - [anon_sym_else] = ACTIONS(3456), - [anon_sym_DOT_DOT] = ACTIONS(3458), - [anon_sym_from] = ACTIONS(3456), - [anon_sym_into] = ACTIONS(3456), - [anon_sym_join] = ACTIONS(3456), - [anon_sym_on] = ACTIONS(3456), - [anon_sym_equals] = ACTIONS(3456), - [anon_sym_let] = ACTIONS(3456), - [anon_sym_orderby] = ACTIONS(3456), - [anon_sym_ascending] = ACTIONS(3456), - [anon_sym_descending] = ACTIONS(3456), - [anon_sym_group] = ACTIONS(3456), - [anon_sym_by] = ACTIONS(3456), - [anon_sym_select] = ACTIONS(3456), - [anon_sym_stackalloc] = ACTIONS(3456), - [anon_sym_sizeof] = ACTIONS(3456), - [anon_sym_typeof] = ACTIONS(3456), - [anon_sym___makeref] = ACTIONS(3456), - [anon_sym___reftype] = ACTIONS(3456), - [anon_sym___refvalue] = ACTIONS(3456), - [sym_null_literal] = ACTIONS(3456), - [anon_sym_SQUOTE] = ACTIONS(3458), - [sym_integer_literal] = ACTIONS(3456), - [sym_real_literal] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [sym_verbatim_string_literal] = ACTIONS(3458), - [sym_grit_metavariable] = ACTIONS(3458), - [aux_sym_preproc_if_token1] = ACTIONS(3458), + [ts_builtin_sym_end] = ACTIONS(3430), + [sym__identifier_token] = ACTIONS(3428), + [anon_sym_extern] = ACTIONS(3428), + [anon_sym_alias] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(3430), + [anon_sym_global] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3428), + [anon_sym_unsafe] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3430), + [anon_sym_LPAREN] = ACTIONS(3430), + [anon_sym_return] = ACTIONS(3428), + [anon_sym_namespace] = ACTIONS(3428), + [anon_sym_class] = ACTIONS(3428), + [anon_sym_ref] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3430), + [anon_sym_interface] = ACTIONS(3428), + [anon_sym_delegate] = ACTIONS(3428), + [anon_sym_record] = ACTIONS(3428), + [anon_sym_public] = ACTIONS(3428), + [anon_sym_private] = ACTIONS(3428), + [anon_sym_readonly] = 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_protected] = 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_checked] = ACTIONS(3428), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_this] = ACTIONS(3428), + [anon_sym_scoped] = ACTIONS(3428), + [anon_sym_base] = ACTIONS(3428), + [anon_sym_var] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3430), + [sym_predefined_type] = ACTIONS(3428), + [anon_sym_break] = ACTIONS(3428), + [anon_sym_unchecked] = ACTIONS(3428), + [anon_sym_continue] = ACTIONS(3428), + [anon_sym_do] = ACTIONS(3428), + [anon_sym_while] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3428), + [anon_sym_lock] = ACTIONS(3428), + [anon_sym_yield] = ACTIONS(3428), + [anon_sym_switch] = ACTIONS(3428), + [anon_sym_default] = ACTIONS(3428), + [anon_sym_throw] = ACTIONS(3428), + [anon_sym_try] = ACTIONS(3428), + [anon_sym_when] = ACTIONS(3428), + [anon_sym_await] = ACTIONS(3428), + [anon_sym_foreach] = ACTIONS(3428), + [anon_sym_goto] = ACTIONS(3428), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_else] = ACTIONS(3428), + [anon_sym_DOT_DOT] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_CARET] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_BANG] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3430), + [anon_sym_DASH_DASH] = ACTIONS(3430), + [anon_sym_true] = ACTIONS(3428), + [anon_sym_false] = 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_stackalloc] = ACTIONS(3428), + [anon_sym_sizeof] = ACTIONS(3428), + [anon_sym_typeof] = ACTIONS(3428), + [anon_sym___makeref] = ACTIONS(3428), + [anon_sym___reftype] = ACTIONS(3428), + [anon_sym___refvalue] = ACTIONS(3428), + [sym_null_literal] = ACTIONS(3428), + [anon_sym_SQUOTE] = ACTIONS(3430), + [sym_integer_literal] = ACTIONS(3428), + [sym_real_literal] = ACTIONS(3430), + [anon_sym_DQUOTE] = ACTIONS(3430), + [sym_verbatim_string_literal] = ACTIONS(3430), + [sym_grit_metavariable] = ACTIONS(3430), + [aux_sym_preproc_if_token1] = ACTIONS(3430), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -394367,10 +394389,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(3458), - [sym_interpolation_verbatim_start] = ACTIONS(3458), - [sym_interpolation_raw_start] = ACTIONS(3458), - [sym_raw_string_start] = ACTIONS(3458), + [sym_interpolation_regular_start] = ACTIONS(3430), + [sym_interpolation_verbatim_start] = ACTIONS(3430), + [sym_interpolation_raw_start] = ACTIONS(3430), + [sym_raw_string_start] = ACTIONS(3430), }, [2064] = { [sym_preproc_region] = STATE(2064), @@ -394382,109 +394404,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3446), - [sym__identifier_token] = ACTIONS(3444), - [anon_sym_extern] = ACTIONS(3444), - [anon_sym_alias] = ACTIONS(3444), - [anon_sym_SEMI] = ACTIONS(3446), - [anon_sym_global] = ACTIONS(3444), - [anon_sym_using] = ACTIONS(3444), - [anon_sym_unsafe] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3446), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_namespace] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_ref] = ACTIONS(3444), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3446), - [anon_sym_interface] = ACTIONS(3444), - [anon_sym_delegate] = ACTIONS(3444), - [anon_sym_record] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3444), - [anon_sym_private] = ACTIONS(3444), - [anon_sym_readonly] = ACTIONS(3444), - [anon_sym_abstract] = ACTIONS(3444), - [anon_sym_async] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_file] = ACTIONS(3444), - [anon_sym_fixed] = ACTIONS(3444), - [anon_sym_internal] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_override] = ACTIONS(3444), - [anon_sym_partial] = ACTIONS(3444), - [anon_sym_protected] = ACTIONS(3444), - [anon_sym_required] = ACTIONS(3444), - [anon_sym_sealed] = ACTIONS(3444), - [anon_sym_virtual] = ACTIONS(3444), - [anon_sym_volatile] = ACTIONS(3444), - [anon_sym_where] = ACTIONS(3444), - [anon_sym_notnull] = ACTIONS(3444), - [anon_sym_unmanaged] = ACTIONS(3444), - [anon_sym_checked] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3446), - [anon_sym_TILDE] = ACTIONS(3446), - [anon_sym_PLUS_PLUS] = ACTIONS(3446), - [anon_sym_DASH_DASH] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3444), - [anon_sym_false] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_CARET] = ACTIONS(3446), - [anon_sym_AMP] = ACTIONS(3446), - [anon_sym_this] = ACTIONS(3444), - [anon_sym_scoped] = ACTIONS(3444), - [anon_sym_base] = ACTIONS(3444), - [anon_sym_var] = ACTIONS(3444), - [sym_predefined_type] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_unchecked] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_lock] = ACTIONS(3444), - [anon_sym_yield] = ACTIONS(3444), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_default] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_when] = ACTIONS(3444), - [anon_sym_await] = ACTIONS(3444), - [anon_sym_foreach] = ACTIONS(3444), - [anon_sym_goto] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_else] = ACTIONS(3444), - [anon_sym_DOT_DOT] = ACTIONS(3446), - [anon_sym_from] = ACTIONS(3444), - [anon_sym_into] = ACTIONS(3444), - [anon_sym_join] = ACTIONS(3444), - [anon_sym_on] = ACTIONS(3444), - [anon_sym_equals] = ACTIONS(3444), - [anon_sym_let] = ACTIONS(3444), - [anon_sym_orderby] = ACTIONS(3444), - [anon_sym_ascending] = ACTIONS(3444), - [anon_sym_descending] = ACTIONS(3444), - [anon_sym_group] = ACTIONS(3444), - [anon_sym_by] = ACTIONS(3444), - [anon_sym_select] = ACTIONS(3444), - [anon_sym_stackalloc] = ACTIONS(3444), - [anon_sym_sizeof] = ACTIONS(3444), - [anon_sym_typeof] = ACTIONS(3444), - [anon_sym___makeref] = ACTIONS(3444), - [anon_sym___reftype] = ACTIONS(3444), - [anon_sym___refvalue] = ACTIONS(3444), - [sym_null_literal] = ACTIONS(3444), - [anon_sym_SQUOTE] = ACTIONS(3446), - [sym_integer_literal] = ACTIONS(3444), - [sym_real_literal] = ACTIONS(3446), - [anon_sym_DQUOTE] = ACTIONS(3446), - [sym_verbatim_string_literal] = ACTIONS(3446), - [sym_grit_metavariable] = ACTIONS(3446), - [aux_sym_preproc_if_token1] = ACTIONS(3446), + [ts_builtin_sym_end] = ACTIONS(3450), + [sym__identifier_token] = ACTIONS(3448), + [anon_sym_extern] = ACTIONS(3448), + [anon_sym_alias] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym_global] = ACTIONS(3448), + [anon_sym_using] = ACTIONS(3448), + [anon_sym_unsafe] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3450), + [anon_sym_return] = ACTIONS(3448), + [anon_sym_namespace] = ACTIONS(3448), + [anon_sym_class] = ACTIONS(3448), + [anon_sym_ref] = ACTIONS(3448), + [anon_sym_struct] = ACTIONS(3448), + [anon_sym_enum] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3450), + [anon_sym_interface] = ACTIONS(3448), + [anon_sym_delegate] = ACTIONS(3448), + [anon_sym_record] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3448), + [anon_sym_private] = ACTIONS(3448), + [anon_sym_readonly] = ACTIONS(3448), + [anon_sym_abstract] = ACTIONS(3448), + [anon_sym_async] = ACTIONS(3448), + [anon_sym_const] = ACTIONS(3448), + [anon_sym_file] = ACTIONS(3448), + [anon_sym_fixed] = ACTIONS(3448), + [anon_sym_internal] = ACTIONS(3448), + [anon_sym_new] = ACTIONS(3448), + [anon_sym_override] = ACTIONS(3448), + [anon_sym_partial] = ACTIONS(3448), + [anon_sym_protected] = ACTIONS(3448), + [anon_sym_required] = ACTIONS(3448), + [anon_sym_sealed] = ACTIONS(3448), + [anon_sym_virtual] = ACTIONS(3448), + [anon_sym_volatile] = ACTIONS(3448), + [anon_sym_where] = ACTIONS(3448), + [anon_sym_notnull] = ACTIONS(3448), + [anon_sym_unmanaged] = ACTIONS(3448), + [anon_sym_checked] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(3450), + [anon_sym_this] = ACTIONS(3448), + [anon_sym_scoped] = ACTIONS(3448), + [anon_sym_base] = ACTIONS(3448), + [anon_sym_var] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3450), + [sym_predefined_type] = ACTIONS(3448), + [anon_sym_break] = ACTIONS(3448), + [anon_sym_unchecked] = ACTIONS(3448), + [anon_sym_continue] = ACTIONS(3448), + [anon_sym_do] = ACTIONS(3448), + [anon_sym_while] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3448), + [anon_sym_lock] = ACTIONS(3448), + [anon_sym_yield] = ACTIONS(3448), + [anon_sym_switch] = ACTIONS(3448), + [anon_sym_default] = ACTIONS(3448), + [anon_sym_throw] = ACTIONS(3448), + [anon_sym_try] = ACTIONS(3448), + [anon_sym_when] = ACTIONS(3448), + [anon_sym_await] = ACTIONS(3448), + [anon_sym_foreach] = ACTIONS(3448), + [anon_sym_goto] = ACTIONS(3448), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_else] = ACTIONS(3448), + [anon_sym_DOT_DOT] = ACTIONS(3450), + [anon_sym_AMP] = ACTIONS(3450), + [anon_sym_CARET] = ACTIONS(3450), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3450), + [anon_sym_true] = ACTIONS(3448), + [anon_sym_false] = ACTIONS(3448), + [anon_sym_from] = ACTIONS(3448), + [anon_sym_into] = ACTIONS(3448), + [anon_sym_join] = ACTIONS(3448), + [anon_sym_on] = ACTIONS(3448), + [anon_sym_equals] = ACTIONS(3448), + [anon_sym_let] = ACTIONS(3448), + [anon_sym_orderby] = ACTIONS(3448), + [anon_sym_ascending] = ACTIONS(3448), + [anon_sym_descending] = ACTIONS(3448), + [anon_sym_group] = ACTIONS(3448), + [anon_sym_by] = ACTIONS(3448), + [anon_sym_select] = ACTIONS(3448), + [anon_sym_stackalloc] = ACTIONS(3448), + [anon_sym_sizeof] = ACTIONS(3448), + [anon_sym_typeof] = ACTIONS(3448), + [anon_sym___makeref] = ACTIONS(3448), + [anon_sym___reftype] = ACTIONS(3448), + [anon_sym___refvalue] = ACTIONS(3448), + [sym_null_literal] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(3450), + [sym_integer_literal] = ACTIONS(3448), + [sym_real_literal] = ACTIONS(3450), + [anon_sym_DQUOTE] = ACTIONS(3450), + [sym_verbatim_string_literal] = ACTIONS(3450), + [sym_grit_metavariable] = ACTIONS(3450), + [aux_sym_preproc_if_token1] = ACTIONS(3450), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -394495,10 +394517,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(3446), - [sym_interpolation_verbatim_start] = ACTIONS(3446), - [sym_interpolation_raw_start] = ACTIONS(3446), - [sym_raw_string_start] = ACTIONS(3446), + [sym_interpolation_regular_start] = ACTIONS(3450), + [sym_interpolation_verbatim_start] = ACTIONS(3450), + [sym_interpolation_raw_start] = ACTIONS(3450), + [sym_raw_string_start] = ACTIONS(3450), }, [2065] = { [sym_preproc_region] = STATE(2065), @@ -394510,123 +394532,123 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3408), - [sym__identifier_token] = ACTIONS(3406), - [anon_sym_extern] = ACTIONS(3406), - [anon_sym_alias] = ACTIONS(3406), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym_global] = ACTIONS(3406), - [anon_sym_using] = ACTIONS(3406), - [anon_sym_unsafe] = ACTIONS(3406), - [anon_sym_static] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_LPAREN] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3406), - [anon_sym_namespace] = ACTIONS(3406), - [anon_sym_class] = ACTIONS(3406), - [anon_sym_ref] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3406), - [anon_sym_enum] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(3408), - [anon_sym_interface] = ACTIONS(3406), - [anon_sym_delegate] = ACTIONS(3406), - [anon_sym_record] = ACTIONS(3406), - [anon_sym_public] = ACTIONS(3406), - [anon_sym_private] = ACTIONS(3406), - [anon_sym_readonly] = ACTIONS(3406), - [anon_sym_abstract] = ACTIONS(3406), - [anon_sym_async] = ACTIONS(3406), - [anon_sym_const] = ACTIONS(3406), - [anon_sym_file] = ACTIONS(3406), - [anon_sym_fixed] = ACTIONS(3406), - [anon_sym_internal] = ACTIONS(3406), - [anon_sym_new] = ACTIONS(3406), - [anon_sym_override] = ACTIONS(3406), - [anon_sym_partial] = ACTIONS(3406), - [anon_sym_protected] = ACTIONS(3406), - [anon_sym_required] = ACTIONS(3406), - [anon_sym_sealed] = ACTIONS(3406), - [anon_sym_virtual] = ACTIONS(3406), - [anon_sym_volatile] = ACTIONS(3406), - [anon_sym_where] = ACTIONS(3406), - [anon_sym_notnull] = ACTIONS(3406), - [anon_sym_unmanaged] = ACTIONS(3406), - [anon_sym_checked] = ACTIONS(3406), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_PLUS_PLUS] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3408), - [anon_sym_true] = ACTIONS(3406), - [anon_sym_false] = ACTIONS(3406), - [anon_sym_PLUS] = ACTIONS(3406), - [anon_sym_DASH] = ACTIONS(3406), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_this] = ACTIONS(3406), - [anon_sym_scoped] = ACTIONS(3406), - [anon_sym_base] = ACTIONS(3406), - [anon_sym_var] = ACTIONS(3406), - [sym_predefined_type] = ACTIONS(3406), - [anon_sym_break] = ACTIONS(3406), - [anon_sym_unchecked] = ACTIONS(3406), - [anon_sym_continue] = ACTIONS(3406), - [anon_sym_do] = ACTIONS(3406), - [anon_sym_while] = ACTIONS(3406), - [anon_sym_for] = ACTIONS(3406), - [anon_sym_lock] = ACTIONS(3406), - [anon_sym_yield] = ACTIONS(3406), - [anon_sym_switch] = ACTIONS(3406), - [anon_sym_default] = ACTIONS(3406), - [anon_sym_throw] = ACTIONS(3406), - [anon_sym_try] = ACTIONS(3406), - [anon_sym_when] = ACTIONS(3406), - [anon_sym_await] = ACTIONS(3406), - [anon_sym_foreach] = ACTIONS(3406), - [anon_sym_goto] = ACTIONS(3406), - [anon_sym_if] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3406), - [anon_sym_DOT_DOT] = ACTIONS(3408), - [anon_sym_from] = ACTIONS(3406), - [anon_sym_into] = ACTIONS(3406), - [anon_sym_join] = ACTIONS(3406), - [anon_sym_on] = ACTIONS(3406), - [anon_sym_equals] = ACTIONS(3406), - [anon_sym_let] = ACTIONS(3406), - [anon_sym_orderby] = ACTIONS(3406), - [anon_sym_ascending] = ACTIONS(3406), - [anon_sym_descending] = ACTIONS(3406), - [anon_sym_group] = ACTIONS(3406), - [anon_sym_by] = ACTIONS(3406), - [anon_sym_select] = ACTIONS(3406), - [anon_sym_stackalloc] = ACTIONS(3406), - [anon_sym_sizeof] = ACTIONS(3406), - [anon_sym_typeof] = ACTIONS(3406), - [anon_sym___makeref] = ACTIONS(3406), - [anon_sym___reftype] = ACTIONS(3406), - [anon_sym___refvalue] = ACTIONS(3406), - [sym_null_literal] = ACTIONS(3406), - [anon_sym_SQUOTE] = ACTIONS(3408), - [sym_integer_literal] = ACTIONS(3406), - [sym_real_literal] = ACTIONS(3408), - [anon_sym_DQUOTE] = ACTIONS(3408), - [sym_verbatim_string_literal] = ACTIONS(3408), - [sym_grit_metavariable] = ACTIONS(3408), - [aux_sym_preproc_if_token1] = ACTIONS(3408), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3408), - [sym_interpolation_verbatim_start] = ACTIONS(3408), - [sym_interpolation_raw_start] = ACTIONS(3408), - [sym_raw_string_start] = ACTIONS(3408), + [ts_builtin_sym_end] = ACTIONS(3518), + [sym__identifier_token] = ACTIONS(3516), + [anon_sym_extern] = ACTIONS(3516), + [anon_sym_alias] = ACTIONS(3516), + [anon_sym_SEMI] = ACTIONS(3518), + [anon_sym_global] = ACTIONS(3516), + [anon_sym_using] = ACTIONS(3516), + [anon_sym_unsafe] = ACTIONS(3516), + [anon_sym_static] = ACTIONS(3516), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_LPAREN] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3516), + [anon_sym_namespace] = ACTIONS(3516), + [anon_sym_class] = ACTIONS(3516), + [anon_sym_ref] = ACTIONS(3516), + [anon_sym_struct] = ACTIONS(3516), + [anon_sym_enum] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3518), + [anon_sym_interface] = ACTIONS(3516), + [anon_sym_delegate] = ACTIONS(3516), + [anon_sym_record] = ACTIONS(3516), + [anon_sym_public] = ACTIONS(3516), + [anon_sym_private] = ACTIONS(3516), + [anon_sym_readonly] = ACTIONS(3516), + [anon_sym_abstract] = ACTIONS(3516), + [anon_sym_async] = ACTIONS(3516), + [anon_sym_const] = ACTIONS(3516), + [anon_sym_file] = ACTIONS(3516), + [anon_sym_fixed] = ACTIONS(3516), + [anon_sym_internal] = ACTIONS(3516), + [anon_sym_new] = ACTIONS(3516), + [anon_sym_override] = ACTIONS(3516), + [anon_sym_partial] = ACTIONS(3516), + [anon_sym_protected] = ACTIONS(3516), + [anon_sym_required] = ACTIONS(3516), + [anon_sym_sealed] = ACTIONS(3516), + [anon_sym_virtual] = ACTIONS(3516), + [anon_sym_volatile] = ACTIONS(3516), + [anon_sym_where] = ACTIONS(3516), + [anon_sym_notnull] = ACTIONS(3516), + [anon_sym_unmanaged] = ACTIONS(3516), + [anon_sym_checked] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3518), + [anon_sym_this] = ACTIONS(3516), + [anon_sym_scoped] = ACTIONS(3516), + [anon_sym_base] = ACTIONS(3516), + [anon_sym_var] = ACTIONS(3516), + [anon_sym_STAR] = ACTIONS(3518), + [sym_predefined_type] = ACTIONS(3516), + [anon_sym_break] = ACTIONS(3516), + [anon_sym_unchecked] = ACTIONS(3516), + [anon_sym_continue] = ACTIONS(3516), + [anon_sym_do] = ACTIONS(3516), + [anon_sym_while] = ACTIONS(3516), + [anon_sym_for] = ACTIONS(3516), + [anon_sym_lock] = ACTIONS(3516), + [anon_sym_yield] = ACTIONS(3516), + [anon_sym_switch] = ACTIONS(3516), + [anon_sym_default] = ACTIONS(3516), + [anon_sym_throw] = ACTIONS(3516), + [anon_sym_try] = ACTIONS(3516), + [anon_sym_when] = ACTIONS(3516), + [anon_sym_await] = ACTIONS(3516), + [anon_sym_foreach] = ACTIONS(3516), + [anon_sym_goto] = ACTIONS(3516), + [anon_sym_if] = ACTIONS(3516), + [anon_sym_else] = ACTIONS(3516), + [anon_sym_DOT_DOT] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3518), + [anon_sym_PLUS_PLUS] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3518), + [anon_sym_true] = ACTIONS(3516), + [anon_sym_false] = ACTIONS(3516), + [anon_sym_from] = ACTIONS(3516), + [anon_sym_into] = ACTIONS(3516), + [anon_sym_join] = ACTIONS(3516), + [anon_sym_on] = ACTIONS(3516), + [anon_sym_equals] = ACTIONS(3516), + [anon_sym_let] = ACTIONS(3516), + [anon_sym_orderby] = ACTIONS(3516), + [anon_sym_ascending] = ACTIONS(3516), + [anon_sym_descending] = ACTIONS(3516), + [anon_sym_group] = ACTIONS(3516), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_select] = ACTIONS(3516), + [anon_sym_stackalloc] = ACTIONS(3516), + [anon_sym_sizeof] = ACTIONS(3516), + [anon_sym_typeof] = ACTIONS(3516), + [anon_sym___makeref] = ACTIONS(3516), + [anon_sym___reftype] = ACTIONS(3516), + [anon_sym___refvalue] = ACTIONS(3516), + [sym_null_literal] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3518), + [sym_integer_literal] = ACTIONS(3516), + [sym_real_literal] = ACTIONS(3518), + [anon_sym_DQUOTE] = ACTIONS(3518), + [sym_verbatim_string_literal] = ACTIONS(3518), + [sym_grit_metavariable] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3518), + [sym_interpolation_verbatim_start] = ACTIONS(3518), + [sym_interpolation_raw_start] = ACTIONS(3518), + [sym_raw_string_start] = ACTIONS(3518), }, [2066] = { [sym_preproc_region] = STATE(2066), @@ -394638,109 +394660,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2066), [sym_preproc_define] = STATE(2066), [sym_preproc_undef] = STATE(2066), - [ts_builtin_sym_end] = ACTIONS(3510), - [sym__identifier_token] = ACTIONS(3508), - [anon_sym_extern] = ACTIONS(3508), - [anon_sym_alias] = ACTIONS(3508), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_global] = ACTIONS(3508), - [anon_sym_using] = ACTIONS(3508), - [anon_sym_unsafe] = ACTIONS(3508), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3510), - [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_namespace] = ACTIONS(3508), - [anon_sym_class] = ACTIONS(3508), - [anon_sym_ref] = ACTIONS(3508), - [anon_sym_struct] = ACTIONS(3508), - [anon_sym_enum] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3510), - [anon_sym_interface] = ACTIONS(3508), - [anon_sym_delegate] = ACTIONS(3508), - [anon_sym_record] = ACTIONS(3508), - [anon_sym_public] = ACTIONS(3508), - [anon_sym_private] = ACTIONS(3508), - [anon_sym_readonly] = ACTIONS(3508), - [anon_sym_abstract] = ACTIONS(3508), - [anon_sym_async] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_file] = ACTIONS(3508), - [anon_sym_fixed] = ACTIONS(3508), - [anon_sym_internal] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_override] = ACTIONS(3508), - [anon_sym_partial] = ACTIONS(3508), - [anon_sym_protected] = ACTIONS(3508), - [anon_sym_required] = ACTIONS(3508), - [anon_sym_sealed] = ACTIONS(3508), - [anon_sym_virtual] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3508), - [anon_sym_where] = ACTIONS(3508), - [anon_sym_notnull] = ACTIONS(3508), - [anon_sym_unmanaged] = ACTIONS(3508), - [anon_sym_checked] = ACTIONS(3508), - [anon_sym_BANG] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_true] = ACTIONS(3508), - [anon_sym_false] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_STAR] = ACTIONS(3510), - [anon_sym_CARET] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3510), - [anon_sym_this] = ACTIONS(3508), - [anon_sym_scoped] = ACTIONS(3508), - [anon_sym_base] = ACTIONS(3508), - [anon_sym_var] = ACTIONS(3508), - [sym_predefined_type] = ACTIONS(3508), - [anon_sym_break] = ACTIONS(3508), - [anon_sym_unchecked] = ACTIONS(3508), - [anon_sym_continue] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_lock] = ACTIONS(3508), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_switch] = ACTIONS(3508), - [anon_sym_default] = ACTIONS(3508), - [anon_sym_throw] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_when] = ACTIONS(3508), - [anon_sym_await] = ACTIONS(3508), - [anon_sym_foreach] = ACTIONS(3508), - [anon_sym_goto] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_else] = ACTIONS(3508), - [anon_sym_DOT_DOT] = ACTIONS(3510), - [anon_sym_from] = ACTIONS(3508), - [anon_sym_into] = ACTIONS(3508), - [anon_sym_join] = ACTIONS(3508), - [anon_sym_on] = ACTIONS(3508), - [anon_sym_equals] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_orderby] = ACTIONS(3508), - [anon_sym_ascending] = ACTIONS(3508), - [anon_sym_descending] = ACTIONS(3508), - [anon_sym_group] = ACTIONS(3508), - [anon_sym_by] = ACTIONS(3508), - [anon_sym_select] = ACTIONS(3508), - [anon_sym_stackalloc] = ACTIONS(3508), - [anon_sym_sizeof] = ACTIONS(3508), - [anon_sym_typeof] = ACTIONS(3508), - [anon_sym___makeref] = ACTIONS(3508), - [anon_sym___reftype] = ACTIONS(3508), - [anon_sym___refvalue] = ACTIONS(3508), - [sym_null_literal] = ACTIONS(3508), - [anon_sym_SQUOTE] = ACTIONS(3510), - [sym_integer_literal] = ACTIONS(3508), - [sym_real_literal] = ACTIONS(3510), - [anon_sym_DQUOTE] = ACTIONS(3510), - [sym_verbatim_string_literal] = ACTIONS(3510), - [sym_grit_metavariable] = ACTIONS(3510), - [aux_sym_preproc_if_token1] = ACTIONS(3510), + [ts_builtin_sym_end] = ACTIONS(3470), + [sym__identifier_token] = ACTIONS(3468), + [anon_sym_extern] = ACTIONS(3468), + [anon_sym_alias] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_global] = ACTIONS(3468), + [anon_sym_using] = ACTIONS(3468), + [anon_sym_unsafe] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_namespace] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_ref] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_interface] = ACTIONS(3468), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_record] = ACTIONS(3468), + [anon_sym_public] = ACTIONS(3468), + [anon_sym_private] = ACTIONS(3468), + [anon_sym_readonly] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(3468), + [anon_sym_async] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(3468), + [anon_sym_fixed] = ACTIONS(3468), + [anon_sym_internal] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_override] = ACTIONS(3468), + [anon_sym_partial] = ACTIONS(3468), + [anon_sym_protected] = ACTIONS(3468), + [anon_sym_required] = ACTIONS(3468), + [anon_sym_sealed] = ACTIONS(3468), + [anon_sym_virtual] = ACTIONS(3468), + [anon_sym_volatile] = ACTIONS(3468), + [anon_sym_where] = ACTIONS(3468), + [anon_sym_notnull] = ACTIONS(3468), + [anon_sym_unmanaged] = ACTIONS(3468), + [anon_sym_checked] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_this] = ACTIONS(3468), + [anon_sym_scoped] = ACTIONS(3468), + [anon_sym_base] = ACTIONS(3468), + [anon_sym_var] = ACTIONS(3468), + [anon_sym_STAR] = ACTIONS(3470), + [sym_predefined_type] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_unchecked] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_lock] = ACTIONS(3468), + [anon_sym_yield] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_default] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_when] = ACTIONS(3468), + [anon_sym_await] = ACTIONS(3468), + [anon_sym_foreach] = ACTIONS(3468), + [anon_sym_goto] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_else] = ACTIONS(3468), + [anon_sym_DOT_DOT] = ACTIONS(3470), + [anon_sym_AMP] = ACTIONS(3470), + [anon_sym_CARET] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [anon_sym_true] = ACTIONS(3468), + [anon_sym_false] = ACTIONS(3468), + [anon_sym_from] = ACTIONS(3468), + [anon_sym_into] = ACTIONS(3468), + [anon_sym_join] = ACTIONS(3468), + [anon_sym_on] = ACTIONS(3468), + [anon_sym_equals] = ACTIONS(3468), + [anon_sym_let] = ACTIONS(3468), + [anon_sym_orderby] = ACTIONS(3468), + [anon_sym_ascending] = ACTIONS(3468), + [anon_sym_descending] = ACTIONS(3468), + [anon_sym_group] = ACTIONS(3468), + [anon_sym_by] = ACTIONS(3468), + [anon_sym_select] = ACTIONS(3468), + [anon_sym_stackalloc] = ACTIONS(3468), + [anon_sym_sizeof] = ACTIONS(3468), + [anon_sym_typeof] = ACTIONS(3468), + [anon_sym___makeref] = ACTIONS(3468), + [anon_sym___reftype] = ACTIONS(3468), + [anon_sym___refvalue] = ACTIONS(3468), + [sym_null_literal] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3470), + [sym_integer_literal] = ACTIONS(3468), + [sym_real_literal] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [sym_verbatim_string_literal] = ACTIONS(3470), + [sym_grit_metavariable] = ACTIONS(3470), + [aux_sym_preproc_if_token1] = ACTIONS(3470), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -394751,10 +394773,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(3510), - [sym_interpolation_verbatim_start] = ACTIONS(3510), - [sym_interpolation_raw_start] = ACTIONS(3510), - [sym_raw_string_start] = ACTIONS(3510), + [sym_interpolation_regular_start] = ACTIONS(3470), + [sym_interpolation_verbatim_start] = ACTIONS(3470), + [sym_interpolation_raw_start] = ACTIONS(3470), + [sym_raw_string_start] = ACTIONS(3470), }, [2067] = { [sym_preproc_region] = STATE(2067), @@ -394766,109 +394788,109 @@ 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), - [ts_builtin_sym_end] = ACTIONS(3506), - [sym__identifier_token] = ACTIONS(3504), - [anon_sym_extern] = ACTIONS(3504), - [anon_sym_alias] = ACTIONS(3504), - [anon_sym_SEMI] = ACTIONS(3506), - [anon_sym_global] = ACTIONS(3504), - [anon_sym_using] = ACTIONS(3504), - [anon_sym_unsafe] = ACTIONS(3504), - [anon_sym_static] = ACTIONS(3504), - [anon_sym_LBRACK] = ACTIONS(3506), - [anon_sym_LPAREN] = ACTIONS(3506), - [anon_sym_return] = ACTIONS(3504), - [anon_sym_namespace] = ACTIONS(3504), - [anon_sym_class] = ACTIONS(3504), - [anon_sym_ref] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(3504), - [anon_sym_enum] = ACTIONS(3504), - [anon_sym_LBRACE] = ACTIONS(3506), - [anon_sym_interface] = ACTIONS(3504), - [anon_sym_delegate] = ACTIONS(3504), - [anon_sym_record] = ACTIONS(3504), - [anon_sym_public] = ACTIONS(3504), - [anon_sym_private] = ACTIONS(3504), - [anon_sym_readonly] = ACTIONS(3504), - [anon_sym_abstract] = ACTIONS(3504), - [anon_sym_async] = ACTIONS(3504), - [anon_sym_const] = ACTIONS(3504), - [anon_sym_file] = ACTIONS(3504), - [anon_sym_fixed] = ACTIONS(3504), - [anon_sym_internal] = ACTIONS(3504), - [anon_sym_new] = ACTIONS(3504), - [anon_sym_override] = ACTIONS(3504), - [anon_sym_partial] = ACTIONS(3504), - [anon_sym_protected] = ACTIONS(3504), - [anon_sym_required] = ACTIONS(3504), - [anon_sym_sealed] = ACTIONS(3504), - [anon_sym_virtual] = ACTIONS(3504), - [anon_sym_volatile] = ACTIONS(3504), - [anon_sym_where] = ACTIONS(3504), - [anon_sym_notnull] = ACTIONS(3504), - [anon_sym_unmanaged] = ACTIONS(3504), - [anon_sym_checked] = ACTIONS(3504), - [anon_sym_BANG] = ACTIONS(3506), - [anon_sym_TILDE] = ACTIONS(3506), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3506), - [anon_sym_true] = ACTIONS(3504), - [anon_sym_false] = ACTIONS(3504), - [anon_sym_PLUS] = ACTIONS(3504), - [anon_sym_DASH] = ACTIONS(3504), - [anon_sym_STAR] = ACTIONS(3506), - [anon_sym_CARET] = ACTIONS(3506), - [anon_sym_AMP] = ACTIONS(3506), - [anon_sym_this] = ACTIONS(3504), - [anon_sym_scoped] = ACTIONS(3504), - [anon_sym_base] = ACTIONS(3504), - [anon_sym_var] = ACTIONS(3504), - [sym_predefined_type] = ACTIONS(3504), - [anon_sym_break] = ACTIONS(3504), - [anon_sym_unchecked] = ACTIONS(3504), - [anon_sym_continue] = ACTIONS(3504), - [anon_sym_do] = ACTIONS(3504), - [anon_sym_while] = ACTIONS(3504), - [anon_sym_for] = ACTIONS(3504), - [anon_sym_lock] = ACTIONS(3504), - [anon_sym_yield] = ACTIONS(3504), - [anon_sym_switch] = ACTIONS(3504), - [anon_sym_default] = ACTIONS(3504), - [anon_sym_throw] = ACTIONS(3504), - [anon_sym_try] = ACTIONS(3504), - [anon_sym_when] = ACTIONS(3504), - [anon_sym_await] = ACTIONS(3504), - [anon_sym_foreach] = ACTIONS(3504), - [anon_sym_goto] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(3504), - [anon_sym_else] = ACTIONS(3504), - [anon_sym_DOT_DOT] = ACTIONS(3506), - [anon_sym_from] = ACTIONS(3504), - [anon_sym_into] = ACTIONS(3504), - [anon_sym_join] = ACTIONS(3504), - [anon_sym_on] = ACTIONS(3504), - [anon_sym_equals] = ACTIONS(3504), - [anon_sym_let] = ACTIONS(3504), - [anon_sym_orderby] = ACTIONS(3504), - [anon_sym_ascending] = ACTIONS(3504), - [anon_sym_descending] = ACTIONS(3504), - [anon_sym_group] = ACTIONS(3504), - [anon_sym_by] = ACTIONS(3504), - [anon_sym_select] = ACTIONS(3504), - [anon_sym_stackalloc] = ACTIONS(3504), - [anon_sym_sizeof] = ACTIONS(3504), - [anon_sym_typeof] = ACTIONS(3504), - [anon_sym___makeref] = ACTIONS(3504), - [anon_sym___reftype] = ACTIONS(3504), - [anon_sym___refvalue] = ACTIONS(3504), - [sym_null_literal] = ACTIONS(3504), - [anon_sym_SQUOTE] = ACTIONS(3506), - [sym_integer_literal] = ACTIONS(3504), - [sym_real_literal] = ACTIONS(3506), - [anon_sym_DQUOTE] = ACTIONS(3506), - [sym_verbatim_string_literal] = ACTIONS(3506), - [sym_grit_metavariable] = ACTIONS(3506), - [aux_sym_preproc_if_token1] = ACTIONS(3506), + [ts_builtin_sym_end] = ACTIONS(3558), + [sym__identifier_token] = ACTIONS(3556), + [anon_sym_extern] = ACTIONS(3556), + [anon_sym_alias] = ACTIONS(3556), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym_global] = ACTIONS(3556), + [anon_sym_using] = ACTIONS(3556), + [anon_sym_unsafe] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_namespace] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3556), + [anon_sym_ref] = ACTIONS(3556), + [anon_sym_struct] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_interface] = ACTIONS(3556), + [anon_sym_delegate] = ACTIONS(3556), + [anon_sym_record] = ACTIONS(3556), + [anon_sym_public] = ACTIONS(3556), + [anon_sym_private] = ACTIONS(3556), + [anon_sym_readonly] = ACTIONS(3556), + [anon_sym_abstract] = ACTIONS(3556), + [anon_sym_async] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_file] = ACTIONS(3556), + [anon_sym_fixed] = ACTIONS(3556), + [anon_sym_internal] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_override] = ACTIONS(3556), + [anon_sym_partial] = ACTIONS(3556), + [anon_sym_protected] = ACTIONS(3556), + [anon_sym_required] = ACTIONS(3556), + [anon_sym_sealed] = ACTIONS(3556), + [anon_sym_virtual] = ACTIONS(3556), + [anon_sym_volatile] = ACTIONS(3556), + [anon_sym_where] = ACTIONS(3556), + [anon_sym_notnull] = ACTIONS(3556), + [anon_sym_unmanaged] = ACTIONS(3556), + [anon_sym_checked] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_this] = ACTIONS(3556), + [anon_sym_scoped] = ACTIONS(3556), + [anon_sym_base] = ACTIONS(3556), + [anon_sym_var] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [sym_predefined_type] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_unchecked] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_lock] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_default] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_when] = ACTIONS(3556), + [anon_sym_await] = ACTIONS(3556), + [anon_sym_foreach] = ACTIONS(3556), + [anon_sym_goto] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_else] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_CARET] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [anon_sym_true] = ACTIONS(3556), + [anon_sym_false] = ACTIONS(3556), + [anon_sym_from] = ACTIONS(3556), + [anon_sym_into] = ACTIONS(3556), + [anon_sym_join] = ACTIONS(3556), + [anon_sym_on] = ACTIONS(3556), + [anon_sym_equals] = ACTIONS(3556), + [anon_sym_let] = ACTIONS(3556), + [anon_sym_orderby] = ACTIONS(3556), + [anon_sym_ascending] = ACTIONS(3556), + [anon_sym_descending] = ACTIONS(3556), + [anon_sym_group] = ACTIONS(3556), + [anon_sym_by] = ACTIONS(3556), + [anon_sym_select] = ACTIONS(3556), + [anon_sym_stackalloc] = ACTIONS(3556), + [anon_sym_sizeof] = ACTIONS(3556), + [anon_sym_typeof] = ACTIONS(3556), + [anon_sym___makeref] = ACTIONS(3556), + [anon_sym___reftype] = ACTIONS(3556), + [anon_sym___refvalue] = ACTIONS(3556), + [sym_null_literal] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3558), + [sym_integer_literal] = ACTIONS(3556), + [sym_real_literal] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [sym_verbatim_string_literal] = ACTIONS(3558), + [sym_grit_metavariable] = ACTIONS(3558), + [aux_sym_preproc_if_token1] = ACTIONS(3558), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -394879,10 +394901,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(3506), - [sym_interpolation_verbatim_start] = ACTIONS(3506), - [sym_interpolation_raw_start] = ACTIONS(3506), - [sym_raw_string_start] = ACTIONS(3506), + [sym_interpolation_regular_start] = ACTIONS(3558), + [sym_interpolation_verbatim_start] = ACTIONS(3558), + [sym_interpolation_raw_start] = ACTIONS(3558), + [sym_raw_string_start] = ACTIONS(3558), }, [2068] = { [sym_preproc_region] = STATE(2068), @@ -394894,123 +394916,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2068), [sym_preproc_define] = STATE(2068), [sym_preproc_undef] = STATE(2068), - [ts_builtin_sym_end] = ACTIONS(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_public] = ACTIONS(3183), - [anon_sym_private] = ACTIONS(3183), - [anon_sym_readonly] = 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_protected] = 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), - [sym_grit_metavariable] = 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), + [ts_builtin_sym_end] = ACTIONS(3514), + [sym__identifier_token] = ACTIONS(3512), + [anon_sym_extern] = ACTIONS(3512), + [anon_sym_alias] = ACTIONS(3512), + [anon_sym_SEMI] = ACTIONS(3514), + [anon_sym_global] = ACTIONS(3512), + [anon_sym_using] = ACTIONS(3512), + [anon_sym_unsafe] = ACTIONS(3512), + [anon_sym_static] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_LPAREN] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3512), + [anon_sym_namespace] = ACTIONS(3512), + [anon_sym_class] = ACTIONS(3512), + [anon_sym_ref] = ACTIONS(3512), + [anon_sym_struct] = ACTIONS(3512), + [anon_sym_enum] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_interface] = ACTIONS(3512), + [anon_sym_delegate] = ACTIONS(3512), + [anon_sym_record] = ACTIONS(3512), + [anon_sym_public] = ACTIONS(3512), + [anon_sym_private] = ACTIONS(3512), + [anon_sym_readonly] = ACTIONS(3512), + [anon_sym_abstract] = ACTIONS(3512), + [anon_sym_async] = ACTIONS(3512), + [anon_sym_const] = ACTIONS(3512), + [anon_sym_file] = ACTIONS(3512), + [anon_sym_fixed] = ACTIONS(3512), + [anon_sym_internal] = ACTIONS(3512), + [anon_sym_new] = ACTIONS(3512), + [anon_sym_override] = ACTIONS(3512), + [anon_sym_partial] = ACTIONS(3512), + [anon_sym_protected] = ACTIONS(3512), + [anon_sym_required] = ACTIONS(3512), + [anon_sym_sealed] = ACTIONS(3512), + [anon_sym_virtual] = ACTIONS(3512), + [anon_sym_volatile] = ACTIONS(3512), + [anon_sym_where] = ACTIONS(3512), + [anon_sym_notnull] = ACTIONS(3512), + [anon_sym_unmanaged] = ACTIONS(3512), + [anon_sym_checked] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_this] = ACTIONS(3512), + [anon_sym_scoped] = ACTIONS(3512), + [anon_sym_base] = ACTIONS(3512), + [anon_sym_var] = ACTIONS(3512), + [anon_sym_STAR] = ACTIONS(3514), + [sym_predefined_type] = ACTIONS(3512), + [anon_sym_break] = ACTIONS(3512), + [anon_sym_unchecked] = ACTIONS(3512), + [anon_sym_continue] = ACTIONS(3512), + [anon_sym_do] = ACTIONS(3512), + [anon_sym_while] = ACTIONS(3512), + [anon_sym_for] = ACTIONS(3512), + [anon_sym_lock] = ACTIONS(3512), + [anon_sym_yield] = ACTIONS(3512), + [anon_sym_switch] = ACTIONS(3512), + [anon_sym_default] = ACTIONS(3512), + [anon_sym_throw] = ACTIONS(3512), + [anon_sym_try] = ACTIONS(3512), + [anon_sym_when] = ACTIONS(3512), + [anon_sym_await] = ACTIONS(3512), + [anon_sym_foreach] = ACTIONS(3512), + [anon_sym_goto] = ACTIONS(3512), + [anon_sym_if] = ACTIONS(3512), + [anon_sym_else] = ACTIONS(3512), + [anon_sym_DOT_DOT] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_CARET] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3514), + [anon_sym_true] = ACTIONS(3512), + [anon_sym_false] = ACTIONS(3512), + [anon_sym_from] = ACTIONS(3512), + [anon_sym_into] = ACTIONS(3512), + [anon_sym_join] = ACTIONS(3512), + [anon_sym_on] = ACTIONS(3512), + [anon_sym_equals] = ACTIONS(3512), + [anon_sym_let] = ACTIONS(3512), + [anon_sym_orderby] = ACTIONS(3512), + [anon_sym_ascending] = ACTIONS(3512), + [anon_sym_descending] = ACTIONS(3512), + [anon_sym_group] = ACTIONS(3512), + [anon_sym_by] = ACTIONS(3512), + [anon_sym_select] = ACTIONS(3512), + [anon_sym_stackalloc] = ACTIONS(3512), + [anon_sym_sizeof] = ACTIONS(3512), + [anon_sym_typeof] = ACTIONS(3512), + [anon_sym___makeref] = ACTIONS(3512), + [anon_sym___reftype] = ACTIONS(3512), + [anon_sym___refvalue] = ACTIONS(3512), + [sym_null_literal] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3514), + [sym_integer_literal] = ACTIONS(3512), + [sym_real_literal] = ACTIONS(3514), + [anon_sym_DQUOTE] = ACTIONS(3514), + [sym_verbatim_string_literal] = ACTIONS(3514), + [sym_grit_metavariable] = ACTIONS(3514), + [aux_sym_preproc_if_token1] = ACTIONS(3514), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), [aux_sym_preproc_error_token1] = ACTIONS(13), [aux_sym_preproc_warning_token1] = ACTIONS(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_interpolation_regular_start] = ACTIONS(3514), + [sym_interpolation_verbatim_start] = ACTIONS(3514), + [sym_interpolation_raw_start] = ACTIONS(3514), + [sym_raw_string_start] = ACTIONS(3514), }, [2069] = { [sym_preproc_region] = STATE(2069), @@ -395022,109 +395044,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2069), [sym_preproc_define] = STATE(2069), [sym_preproc_undef] = STATE(2069), - [ts_builtin_sym_end] = ACTIONS(3562), - [sym__identifier_token] = ACTIONS(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym_alias] = ACTIONS(3560), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_global] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_unsafe] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_namespace] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_ref] = ACTIONS(3560), - [anon_sym_struct] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_interface] = ACTIONS(3560), - [anon_sym_delegate] = ACTIONS(3560), - [anon_sym_record] = ACTIONS(3560), - [anon_sym_public] = ACTIONS(3560), - [anon_sym_private] = ACTIONS(3560), - [anon_sym_readonly] = ACTIONS(3560), - [anon_sym_abstract] = ACTIONS(3560), - [anon_sym_async] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_file] = ACTIONS(3560), - [anon_sym_fixed] = ACTIONS(3560), - [anon_sym_internal] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_override] = ACTIONS(3560), - [anon_sym_partial] = ACTIONS(3560), - [anon_sym_protected] = ACTIONS(3560), - [anon_sym_required] = ACTIONS(3560), - [anon_sym_sealed] = ACTIONS(3560), - [anon_sym_virtual] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym_where] = ACTIONS(3560), - [anon_sym_notnull] = ACTIONS(3560), - [anon_sym_unmanaged] = ACTIONS(3560), - [anon_sym_checked] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_true] = ACTIONS(3560), - [anon_sym_false] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_CARET] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3562), - [anon_sym_this] = ACTIONS(3560), - [anon_sym_scoped] = ACTIONS(3560), - [anon_sym_base] = ACTIONS(3560), - [anon_sym_var] = ACTIONS(3560), - [sym_predefined_type] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_unchecked] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_lock] = ACTIONS(3560), - [anon_sym_yield] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_default] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_when] = ACTIONS(3560), - [anon_sym_await] = ACTIONS(3560), - [anon_sym_foreach] = ACTIONS(3560), - [anon_sym_goto] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_else] = ACTIONS(3560), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_from] = ACTIONS(3560), - [anon_sym_into] = ACTIONS(3560), - [anon_sym_join] = ACTIONS(3560), - [anon_sym_on] = ACTIONS(3560), - [anon_sym_equals] = ACTIONS(3560), - [anon_sym_let] = ACTIONS(3560), - [anon_sym_orderby] = ACTIONS(3560), - [anon_sym_ascending] = ACTIONS(3560), - [anon_sym_descending] = ACTIONS(3560), - [anon_sym_group] = ACTIONS(3560), - [anon_sym_by] = ACTIONS(3560), - [anon_sym_select] = ACTIONS(3560), - [anon_sym_stackalloc] = ACTIONS(3560), - [anon_sym_sizeof] = ACTIONS(3560), - [anon_sym_typeof] = ACTIONS(3560), - [anon_sym___makeref] = ACTIONS(3560), - [anon_sym___reftype] = ACTIONS(3560), - [anon_sym___refvalue] = ACTIONS(3560), - [sym_null_literal] = ACTIONS(3560), - [anon_sym_SQUOTE] = ACTIONS(3562), - [sym_integer_literal] = ACTIONS(3560), - [sym_real_literal] = ACTIONS(3562), - [anon_sym_DQUOTE] = ACTIONS(3562), - [sym_verbatim_string_literal] = ACTIONS(3562), - [sym_grit_metavariable] = ACTIONS(3562), - [aux_sym_preproc_if_token1] = ACTIONS(3562), + [ts_builtin_sym_end] = ACTIONS(3578), + [sym__identifier_token] = ACTIONS(3576), + [anon_sym_extern] = ACTIONS(3576), + [anon_sym_alias] = ACTIONS(3576), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym_global] = ACTIONS(3576), + [anon_sym_using] = ACTIONS(3576), + [anon_sym_unsafe] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3576), + [anon_sym_namespace] = ACTIONS(3576), + [anon_sym_class] = ACTIONS(3576), + [anon_sym_ref] = ACTIONS(3576), + [anon_sym_struct] = ACTIONS(3576), + [anon_sym_enum] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_interface] = ACTIONS(3576), + [anon_sym_delegate] = ACTIONS(3576), + [anon_sym_record] = ACTIONS(3576), + [anon_sym_public] = ACTIONS(3576), + [anon_sym_private] = ACTIONS(3576), + [anon_sym_readonly] = ACTIONS(3576), + [anon_sym_abstract] = ACTIONS(3576), + [anon_sym_async] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_file] = ACTIONS(3576), + [anon_sym_fixed] = ACTIONS(3576), + [anon_sym_internal] = ACTIONS(3576), + [anon_sym_new] = ACTIONS(3576), + [anon_sym_override] = ACTIONS(3576), + [anon_sym_partial] = ACTIONS(3576), + [anon_sym_protected] = ACTIONS(3576), + [anon_sym_required] = ACTIONS(3576), + [anon_sym_sealed] = ACTIONS(3576), + [anon_sym_virtual] = ACTIONS(3576), + [anon_sym_volatile] = ACTIONS(3576), + [anon_sym_where] = ACTIONS(3576), + [anon_sym_notnull] = ACTIONS(3576), + [anon_sym_unmanaged] = ACTIONS(3576), + [anon_sym_checked] = ACTIONS(3576), + [anon_sym_TILDE] = ACTIONS(3578), + [anon_sym_this] = ACTIONS(3576), + [anon_sym_scoped] = ACTIONS(3576), + [anon_sym_base] = ACTIONS(3576), + [anon_sym_var] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3578), + [sym_predefined_type] = ACTIONS(3576), + [anon_sym_break] = ACTIONS(3576), + [anon_sym_unchecked] = ACTIONS(3576), + [anon_sym_continue] = ACTIONS(3576), + [anon_sym_do] = ACTIONS(3576), + [anon_sym_while] = ACTIONS(3576), + [anon_sym_for] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3576), + [anon_sym_yield] = ACTIONS(3576), + [anon_sym_switch] = ACTIONS(3576), + [anon_sym_default] = ACTIONS(3576), + [anon_sym_throw] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3576), + [anon_sym_when] = ACTIONS(3576), + [anon_sym_await] = ACTIONS(3576), + [anon_sym_foreach] = ACTIONS(3576), + [anon_sym_goto] = ACTIONS(3576), + [anon_sym_if] = ACTIONS(3576), + [anon_sym_else] = ACTIONS(3576), + [anon_sym_DOT_DOT] = ACTIONS(3578), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_CARET] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [anon_sym_true] = ACTIONS(3576), + [anon_sym_false] = ACTIONS(3576), + [anon_sym_from] = ACTIONS(3576), + [anon_sym_into] = ACTIONS(3576), + [anon_sym_join] = ACTIONS(3576), + [anon_sym_on] = ACTIONS(3576), + [anon_sym_equals] = ACTIONS(3576), + [anon_sym_let] = ACTIONS(3576), + [anon_sym_orderby] = ACTIONS(3576), + [anon_sym_ascending] = ACTIONS(3576), + [anon_sym_descending] = ACTIONS(3576), + [anon_sym_group] = ACTIONS(3576), + [anon_sym_by] = ACTIONS(3576), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_stackalloc] = ACTIONS(3576), + [anon_sym_sizeof] = ACTIONS(3576), + [anon_sym_typeof] = ACTIONS(3576), + [anon_sym___makeref] = ACTIONS(3576), + [anon_sym___reftype] = ACTIONS(3576), + [anon_sym___refvalue] = ACTIONS(3576), + [sym_null_literal] = ACTIONS(3576), + [anon_sym_SQUOTE] = ACTIONS(3578), + [sym_integer_literal] = ACTIONS(3576), + [sym_real_literal] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [sym_verbatim_string_literal] = ACTIONS(3578), + [sym_grit_metavariable] = ACTIONS(3578), + [aux_sym_preproc_if_token1] = ACTIONS(3578), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -395135,10 +395157,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(3562), - [sym_interpolation_verbatim_start] = ACTIONS(3562), - [sym_interpolation_raw_start] = ACTIONS(3562), - [sym_raw_string_start] = ACTIONS(3562), + [sym_interpolation_regular_start] = ACTIONS(3578), + [sym_interpolation_verbatim_start] = ACTIONS(3578), + [sym_interpolation_raw_start] = ACTIONS(3578), + [sym_raw_string_start] = ACTIONS(3578), }, [2070] = { [sym_preproc_region] = STATE(2070), @@ -395150,109 +395172,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2070), [sym_preproc_define] = STATE(2070), [sym_preproc_undef] = STATE(2070), - [ts_builtin_sym_end] = ACTIONS(3538), - [sym__identifier_token] = ACTIONS(3536), - [anon_sym_extern] = ACTIONS(3536), - [anon_sym_alias] = ACTIONS(3536), - [anon_sym_SEMI] = ACTIONS(3538), - [anon_sym_global] = ACTIONS(3536), - [anon_sym_using] = ACTIONS(3536), - [anon_sym_unsafe] = ACTIONS(3536), - [anon_sym_static] = ACTIONS(3536), - [anon_sym_LBRACK] = ACTIONS(3538), - [anon_sym_LPAREN] = ACTIONS(3538), - [anon_sym_return] = ACTIONS(3536), - [anon_sym_namespace] = ACTIONS(3536), - [anon_sym_class] = ACTIONS(3536), - [anon_sym_ref] = ACTIONS(3536), - [anon_sym_struct] = ACTIONS(3536), - [anon_sym_enum] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3538), - [anon_sym_interface] = ACTIONS(3536), - [anon_sym_delegate] = ACTIONS(3536), - [anon_sym_record] = ACTIONS(3536), - [anon_sym_public] = ACTIONS(3536), - [anon_sym_private] = ACTIONS(3536), - [anon_sym_readonly] = ACTIONS(3536), - [anon_sym_abstract] = ACTIONS(3536), - [anon_sym_async] = ACTIONS(3536), - [anon_sym_const] = ACTIONS(3536), - [anon_sym_file] = ACTIONS(3536), - [anon_sym_fixed] = ACTIONS(3536), - [anon_sym_internal] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3536), - [anon_sym_override] = ACTIONS(3536), - [anon_sym_partial] = ACTIONS(3536), - [anon_sym_protected] = ACTIONS(3536), - [anon_sym_required] = ACTIONS(3536), - [anon_sym_sealed] = ACTIONS(3536), - [anon_sym_virtual] = ACTIONS(3536), - [anon_sym_volatile] = ACTIONS(3536), - [anon_sym_where] = ACTIONS(3536), - [anon_sym_notnull] = ACTIONS(3536), - [anon_sym_unmanaged] = ACTIONS(3536), - [anon_sym_checked] = ACTIONS(3536), - [anon_sym_BANG] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_PLUS_PLUS] = ACTIONS(3538), - [anon_sym_DASH_DASH] = ACTIONS(3538), - [anon_sym_true] = ACTIONS(3536), - [anon_sym_false] = ACTIONS(3536), - [anon_sym_PLUS] = ACTIONS(3536), - [anon_sym_DASH] = ACTIONS(3536), - [anon_sym_STAR] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3538), - [anon_sym_this] = ACTIONS(3536), - [anon_sym_scoped] = ACTIONS(3536), - [anon_sym_base] = ACTIONS(3536), - [anon_sym_var] = ACTIONS(3536), - [sym_predefined_type] = ACTIONS(3536), - [anon_sym_break] = ACTIONS(3536), - [anon_sym_unchecked] = ACTIONS(3536), - [anon_sym_continue] = ACTIONS(3536), - [anon_sym_do] = ACTIONS(3536), - [anon_sym_while] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3536), - [anon_sym_lock] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3536), - [anon_sym_switch] = ACTIONS(3536), - [anon_sym_default] = ACTIONS(3536), - [anon_sym_throw] = ACTIONS(3536), - [anon_sym_try] = ACTIONS(3536), - [anon_sym_when] = ACTIONS(3536), - [anon_sym_await] = ACTIONS(3536), - [anon_sym_foreach] = ACTIONS(3536), - [anon_sym_goto] = ACTIONS(3536), - [anon_sym_if] = ACTIONS(3536), - [anon_sym_else] = ACTIONS(3536), - [anon_sym_DOT_DOT] = ACTIONS(3538), - [anon_sym_from] = ACTIONS(3536), - [anon_sym_into] = ACTIONS(3536), - [anon_sym_join] = ACTIONS(3536), - [anon_sym_on] = ACTIONS(3536), - [anon_sym_equals] = ACTIONS(3536), - [anon_sym_let] = ACTIONS(3536), - [anon_sym_orderby] = ACTIONS(3536), - [anon_sym_ascending] = ACTIONS(3536), - [anon_sym_descending] = ACTIONS(3536), - [anon_sym_group] = ACTIONS(3536), - [anon_sym_by] = ACTIONS(3536), - [anon_sym_select] = ACTIONS(3536), - [anon_sym_stackalloc] = ACTIONS(3536), - [anon_sym_sizeof] = ACTIONS(3536), - [anon_sym_typeof] = ACTIONS(3536), - [anon_sym___makeref] = ACTIONS(3536), - [anon_sym___reftype] = ACTIONS(3536), - [anon_sym___refvalue] = ACTIONS(3536), - [sym_null_literal] = ACTIONS(3536), - [anon_sym_SQUOTE] = ACTIONS(3538), - [sym_integer_literal] = ACTIONS(3536), - [sym_real_literal] = ACTIONS(3538), - [anon_sym_DQUOTE] = ACTIONS(3538), - [sym_verbatim_string_literal] = ACTIONS(3538), - [sym_grit_metavariable] = ACTIONS(3538), - [aux_sym_preproc_if_token1] = ACTIONS(3538), + [ts_builtin_sym_end] = ACTIONS(3530), + [sym__identifier_token] = ACTIONS(3528), + [anon_sym_extern] = ACTIONS(3528), + [anon_sym_alias] = ACTIONS(3528), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym_global] = ACTIONS(3528), + [anon_sym_using] = ACTIONS(3528), + [anon_sym_unsafe] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_LPAREN] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_namespace] = ACTIONS(3528), + [anon_sym_class] = ACTIONS(3528), + [anon_sym_ref] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3530), + [anon_sym_interface] = ACTIONS(3528), + [anon_sym_delegate] = ACTIONS(3528), + [anon_sym_record] = ACTIONS(3528), + [anon_sym_public] = ACTIONS(3528), + [anon_sym_private] = ACTIONS(3528), + [anon_sym_readonly] = ACTIONS(3528), + [anon_sym_abstract] = ACTIONS(3528), + [anon_sym_async] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_file] = ACTIONS(3528), + [anon_sym_fixed] = ACTIONS(3528), + [anon_sym_internal] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_override] = ACTIONS(3528), + [anon_sym_partial] = ACTIONS(3528), + [anon_sym_protected] = ACTIONS(3528), + [anon_sym_required] = ACTIONS(3528), + [anon_sym_sealed] = ACTIONS(3528), + [anon_sym_virtual] = ACTIONS(3528), + [anon_sym_volatile] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3528), + [anon_sym_notnull] = ACTIONS(3528), + [anon_sym_unmanaged] = ACTIONS(3528), + [anon_sym_checked] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(3528), + [anon_sym_scoped] = ACTIONS(3528), + [anon_sym_base] = ACTIONS(3528), + [anon_sym_var] = ACTIONS(3528), + [anon_sym_STAR] = ACTIONS(3530), + [sym_predefined_type] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_unchecked] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_do] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_lock] = ACTIONS(3528), + [anon_sym_yield] = ACTIONS(3528), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_default] = ACTIONS(3528), + [anon_sym_throw] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3528), + [anon_sym_when] = ACTIONS(3528), + [anon_sym_await] = ACTIONS(3528), + [anon_sym_foreach] = ACTIONS(3528), + [anon_sym_goto] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_else] = ACTIONS(3528), + [anon_sym_DOT_DOT] = ACTIONS(3530), + [anon_sym_AMP] = ACTIONS(3530), + [anon_sym_CARET] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3530), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3530), + [anon_sym_true] = ACTIONS(3528), + [anon_sym_false] = ACTIONS(3528), + [anon_sym_from] = ACTIONS(3528), + [anon_sym_into] = ACTIONS(3528), + [anon_sym_join] = ACTIONS(3528), + [anon_sym_on] = ACTIONS(3528), + [anon_sym_equals] = ACTIONS(3528), + [anon_sym_let] = ACTIONS(3528), + [anon_sym_orderby] = ACTIONS(3528), + [anon_sym_ascending] = ACTIONS(3528), + [anon_sym_descending] = ACTIONS(3528), + [anon_sym_group] = ACTIONS(3528), + [anon_sym_by] = ACTIONS(3528), + [anon_sym_select] = ACTIONS(3528), + [anon_sym_stackalloc] = ACTIONS(3528), + [anon_sym_sizeof] = ACTIONS(3528), + [anon_sym_typeof] = ACTIONS(3528), + [anon_sym___makeref] = ACTIONS(3528), + [anon_sym___reftype] = ACTIONS(3528), + [anon_sym___refvalue] = ACTIONS(3528), + [sym_null_literal] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3530), + [sym_integer_literal] = ACTIONS(3528), + [sym_real_literal] = ACTIONS(3530), + [anon_sym_DQUOTE] = ACTIONS(3530), + [sym_verbatim_string_literal] = ACTIONS(3530), + [sym_grit_metavariable] = ACTIONS(3530), + [aux_sym_preproc_if_token1] = ACTIONS(3530), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -395263,10 +395285,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(3538), - [sym_interpolation_verbatim_start] = ACTIONS(3538), - [sym_interpolation_raw_start] = ACTIONS(3538), - [sym_raw_string_start] = ACTIONS(3538), + [sym_interpolation_regular_start] = ACTIONS(3530), + [sym_interpolation_verbatim_start] = ACTIONS(3530), + [sym_interpolation_raw_start] = ACTIONS(3530), + [sym_raw_string_start] = ACTIONS(3530), }, [2071] = { [sym_preproc_region] = STATE(2071), @@ -395278,109 +395300,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2071), [sym_preproc_define] = STATE(2071), [sym_preproc_undef] = STATE(2071), - [ts_builtin_sym_end] = ACTIONS(3550), - [sym__identifier_token] = ACTIONS(3548), - [anon_sym_extern] = ACTIONS(3548), - [anon_sym_alias] = ACTIONS(3548), - [anon_sym_SEMI] = ACTIONS(3550), - [anon_sym_global] = ACTIONS(3548), - [anon_sym_using] = ACTIONS(3548), - [anon_sym_unsafe] = ACTIONS(3548), - [anon_sym_static] = ACTIONS(3548), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3548), - [anon_sym_namespace] = ACTIONS(3548), - [anon_sym_class] = ACTIONS(3548), - [anon_sym_ref] = ACTIONS(3548), - [anon_sym_struct] = ACTIONS(3548), - [anon_sym_enum] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_interface] = ACTIONS(3548), - [anon_sym_delegate] = ACTIONS(3548), - [anon_sym_record] = ACTIONS(3548), - [anon_sym_public] = ACTIONS(3548), - [anon_sym_private] = ACTIONS(3548), - [anon_sym_readonly] = ACTIONS(3548), - [anon_sym_abstract] = ACTIONS(3548), - [anon_sym_async] = ACTIONS(3548), - [anon_sym_const] = ACTIONS(3548), - [anon_sym_file] = ACTIONS(3548), - [anon_sym_fixed] = ACTIONS(3548), - [anon_sym_internal] = ACTIONS(3548), - [anon_sym_new] = ACTIONS(3548), - [anon_sym_override] = ACTIONS(3548), - [anon_sym_partial] = ACTIONS(3548), - [anon_sym_protected] = ACTIONS(3548), - [anon_sym_required] = ACTIONS(3548), - [anon_sym_sealed] = ACTIONS(3548), - [anon_sym_virtual] = ACTIONS(3548), - [anon_sym_volatile] = ACTIONS(3548), - [anon_sym_where] = ACTIONS(3548), - [anon_sym_notnull] = ACTIONS(3548), - [anon_sym_unmanaged] = ACTIONS(3548), - [anon_sym_checked] = ACTIONS(3548), - [anon_sym_BANG] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3550), - [anon_sym_PLUS_PLUS] = ACTIONS(3550), - [anon_sym_DASH_DASH] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3548), - [anon_sym_false] = ACTIONS(3548), - [anon_sym_PLUS] = ACTIONS(3548), - [anon_sym_DASH] = ACTIONS(3548), - [anon_sym_STAR] = ACTIONS(3550), - [anon_sym_CARET] = ACTIONS(3550), - [anon_sym_AMP] = ACTIONS(3550), - [anon_sym_this] = ACTIONS(3548), - [anon_sym_scoped] = ACTIONS(3548), - [anon_sym_base] = ACTIONS(3548), - [anon_sym_var] = ACTIONS(3548), - [sym_predefined_type] = ACTIONS(3548), - [anon_sym_break] = ACTIONS(3548), - [anon_sym_unchecked] = ACTIONS(3548), - [anon_sym_continue] = ACTIONS(3548), - [anon_sym_do] = ACTIONS(3548), - [anon_sym_while] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3548), - [anon_sym_lock] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3548), - [anon_sym_switch] = ACTIONS(3548), - [anon_sym_default] = ACTIONS(3548), - [anon_sym_throw] = ACTIONS(3548), - [anon_sym_try] = ACTIONS(3548), - [anon_sym_when] = ACTIONS(3548), - [anon_sym_await] = ACTIONS(3548), - [anon_sym_foreach] = ACTIONS(3548), - [anon_sym_goto] = ACTIONS(3548), - [anon_sym_if] = ACTIONS(3548), - [anon_sym_else] = ACTIONS(3548), - [anon_sym_DOT_DOT] = ACTIONS(3550), - [anon_sym_from] = ACTIONS(3548), - [anon_sym_into] = ACTIONS(3548), - [anon_sym_join] = ACTIONS(3548), - [anon_sym_on] = ACTIONS(3548), - [anon_sym_equals] = ACTIONS(3548), - [anon_sym_let] = ACTIONS(3548), - [anon_sym_orderby] = ACTIONS(3548), - [anon_sym_ascending] = ACTIONS(3548), - [anon_sym_descending] = ACTIONS(3548), - [anon_sym_group] = ACTIONS(3548), - [anon_sym_by] = ACTIONS(3548), - [anon_sym_select] = ACTIONS(3548), - [anon_sym_stackalloc] = ACTIONS(3548), - [anon_sym_sizeof] = ACTIONS(3548), - [anon_sym_typeof] = ACTIONS(3548), - [anon_sym___makeref] = ACTIONS(3548), - [anon_sym___reftype] = ACTIONS(3548), - [anon_sym___refvalue] = ACTIONS(3548), - [sym_null_literal] = ACTIONS(3548), - [anon_sym_SQUOTE] = ACTIONS(3550), - [sym_integer_literal] = ACTIONS(3548), - [sym_real_literal] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [sym_verbatim_string_literal] = ACTIONS(3550), - [sym_grit_metavariable] = ACTIONS(3550), - [aux_sym_preproc_if_token1] = ACTIONS(3550), + [ts_builtin_sym_end] = ACTIONS(3482), + [sym__identifier_token] = ACTIONS(3480), + [anon_sym_extern] = ACTIONS(3480), + [anon_sym_alias] = ACTIONS(3480), + [anon_sym_SEMI] = ACTIONS(3482), + [anon_sym_global] = ACTIONS(3480), + [anon_sym_using] = ACTIONS(3480), + [anon_sym_unsafe] = ACTIONS(3480), + [anon_sym_static] = ACTIONS(3480), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_LPAREN] = ACTIONS(3482), + [anon_sym_return] = ACTIONS(3480), + [anon_sym_namespace] = ACTIONS(3480), + [anon_sym_class] = ACTIONS(3480), + [anon_sym_ref] = ACTIONS(3480), + [anon_sym_struct] = ACTIONS(3480), + [anon_sym_enum] = ACTIONS(3480), + [anon_sym_LBRACE] = ACTIONS(3482), + [anon_sym_interface] = ACTIONS(3480), + [anon_sym_delegate] = ACTIONS(3480), + [anon_sym_record] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3480), + [anon_sym_readonly] = ACTIONS(3480), + [anon_sym_abstract] = ACTIONS(3480), + [anon_sym_async] = ACTIONS(3480), + [anon_sym_const] = ACTIONS(3480), + [anon_sym_file] = ACTIONS(3480), + [anon_sym_fixed] = ACTIONS(3480), + [anon_sym_internal] = ACTIONS(3480), + [anon_sym_new] = ACTIONS(3480), + [anon_sym_override] = ACTIONS(3480), + [anon_sym_partial] = ACTIONS(3480), + [anon_sym_protected] = ACTIONS(3480), + [anon_sym_required] = ACTIONS(3480), + [anon_sym_sealed] = ACTIONS(3480), + [anon_sym_virtual] = ACTIONS(3480), + [anon_sym_volatile] = ACTIONS(3480), + [anon_sym_where] = ACTIONS(3480), + [anon_sym_notnull] = ACTIONS(3480), + [anon_sym_unmanaged] = ACTIONS(3480), + [anon_sym_checked] = ACTIONS(3480), + [anon_sym_TILDE] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(3480), + [anon_sym_scoped] = ACTIONS(3480), + [anon_sym_base] = ACTIONS(3480), + [anon_sym_var] = ACTIONS(3480), + [anon_sym_STAR] = ACTIONS(3482), + [sym_predefined_type] = ACTIONS(3480), + [anon_sym_break] = ACTIONS(3480), + [anon_sym_unchecked] = ACTIONS(3480), + [anon_sym_continue] = ACTIONS(3480), + [anon_sym_do] = ACTIONS(3480), + [anon_sym_while] = ACTIONS(3480), + [anon_sym_for] = ACTIONS(3480), + [anon_sym_lock] = ACTIONS(3480), + [anon_sym_yield] = ACTIONS(3480), + [anon_sym_switch] = ACTIONS(3480), + [anon_sym_default] = ACTIONS(3480), + [anon_sym_throw] = ACTIONS(3480), + [anon_sym_try] = ACTIONS(3480), + [anon_sym_when] = ACTIONS(3480), + [anon_sym_await] = ACTIONS(3480), + [anon_sym_foreach] = ACTIONS(3480), + [anon_sym_goto] = ACTIONS(3480), + [anon_sym_if] = ACTIONS(3480), + [anon_sym_else] = ACTIONS(3480), + [anon_sym_DOT_DOT] = ACTIONS(3482), + [anon_sym_AMP] = ACTIONS(3482), + [anon_sym_CARET] = ACTIONS(3482), + [anon_sym_PLUS] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_BANG] = ACTIONS(3482), + [anon_sym_PLUS_PLUS] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(3482), + [anon_sym_true] = ACTIONS(3480), + [anon_sym_false] = ACTIONS(3480), + [anon_sym_from] = ACTIONS(3480), + [anon_sym_into] = ACTIONS(3480), + [anon_sym_join] = ACTIONS(3480), + [anon_sym_on] = ACTIONS(3480), + [anon_sym_equals] = ACTIONS(3480), + [anon_sym_let] = ACTIONS(3480), + [anon_sym_orderby] = ACTIONS(3480), + [anon_sym_ascending] = ACTIONS(3480), + [anon_sym_descending] = ACTIONS(3480), + [anon_sym_group] = ACTIONS(3480), + [anon_sym_by] = ACTIONS(3480), + [anon_sym_select] = ACTIONS(3480), + [anon_sym_stackalloc] = ACTIONS(3480), + [anon_sym_sizeof] = ACTIONS(3480), + [anon_sym_typeof] = ACTIONS(3480), + [anon_sym___makeref] = ACTIONS(3480), + [anon_sym___reftype] = ACTIONS(3480), + [anon_sym___refvalue] = ACTIONS(3480), + [sym_null_literal] = ACTIONS(3480), + [anon_sym_SQUOTE] = ACTIONS(3482), + [sym_integer_literal] = ACTIONS(3480), + [sym_real_literal] = ACTIONS(3482), + [anon_sym_DQUOTE] = ACTIONS(3482), + [sym_verbatim_string_literal] = ACTIONS(3482), + [sym_grit_metavariable] = ACTIONS(3482), + [aux_sym_preproc_if_token1] = ACTIONS(3482), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -395391,10 +395413,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(3550), - [sym_interpolation_verbatim_start] = ACTIONS(3550), - [sym_interpolation_raw_start] = ACTIONS(3550), - [sym_raw_string_start] = ACTIONS(3550), + [sym_interpolation_regular_start] = ACTIONS(3482), + [sym_interpolation_verbatim_start] = ACTIONS(3482), + [sym_interpolation_raw_start] = ACTIONS(3482), + [sym_raw_string_start] = ACTIONS(3482), }, [2072] = { [sym_preproc_region] = STATE(2072), @@ -395406,109 +395428,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2072), [sym_preproc_define] = STATE(2072), [sym_preproc_undef] = STATE(2072), - [ts_builtin_sym_end] = ACTIONS(3526), - [sym__identifier_token] = ACTIONS(3524), - [anon_sym_extern] = ACTIONS(3524), - [anon_sym_alias] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym_global] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_unsafe] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3526), - [anon_sym_LPAREN] = ACTIONS(3526), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_ref] = ACTIONS(3524), - [anon_sym_struct] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3526), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_delegate] = ACTIONS(3524), - [anon_sym_record] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_file] = ACTIONS(3524), - [anon_sym_fixed] = ACTIONS(3524), - [anon_sym_internal] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_partial] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_sealed] = ACTIONS(3524), - [anon_sym_virtual] = ACTIONS(3524), - [anon_sym_volatile] = ACTIONS(3524), - [anon_sym_where] = ACTIONS(3524), - [anon_sym_notnull] = ACTIONS(3524), - [anon_sym_unmanaged] = ACTIONS(3524), - [anon_sym_checked] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_TILDE] = ACTIONS(3526), - [anon_sym_PLUS_PLUS] = ACTIONS(3526), - [anon_sym_DASH_DASH] = ACTIONS(3526), - [anon_sym_true] = ACTIONS(3524), - [anon_sym_false] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_CARET] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3526), - [anon_sym_this] = ACTIONS(3524), - [anon_sym_scoped] = ACTIONS(3524), - [anon_sym_base] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [sym_predefined_type] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_unchecked] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_lock] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_when] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_foreach] = ACTIONS(3524), - [anon_sym_goto] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_DOT_DOT] = ACTIONS(3526), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_into] = ACTIONS(3524), - [anon_sym_join] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_equals] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_orderby] = ACTIONS(3524), - [anon_sym_ascending] = ACTIONS(3524), - [anon_sym_descending] = ACTIONS(3524), - [anon_sym_group] = ACTIONS(3524), - [anon_sym_by] = ACTIONS(3524), - [anon_sym_select] = ACTIONS(3524), - [anon_sym_stackalloc] = ACTIONS(3524), - [anon_sym_sizeof] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym___makeref] = ACTIONS(3524), - [anon_sym___reftype] = ACTIONS(3524), - [anon_sym___refvalue] = ACTIONS(3524), - [sym_null_literal] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3526), - [sym_integer_literal] = ACTIONS(3524), - [sym_real_literal] = ACTIONS(3526), - [anon_sym_DQUOTE] = ACTIONS(3526), - [sym_verbatim_string_literal] = ACTIONS(3526), - [sym_grit_metavariable] = ACTIONS(3526), - [aux_sym_preproc_if_token1] = ACTIONS(3526), + [ts_builtin_sym_end] = ACTIONS(3542), + [sym__identifier_token] = ACTIONS(3540), + [anon_sym_extern] = ACTIONS(3540), + [anon_sym_alias] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym_global] = ACTIONS(3540), + [anon_sym_using] = ACTIONS(3540), + [anon_sym_unsafe] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_namespace] = ACTIONS(3540), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_ref] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_interface] = ACTIONS(3540), + [anon_sym_delegate] = ACTIONS(3540), + [anon_sym_record] = ACTIONS(3540), + [anon_sym_public] = ACTIONS(3540), + [anon_sym_private] = ACTIONS(3540), + [anon_sym_readonly] = ACTIONS(3540), + [anon_sym_abstract] = ACTIONS(3540), + [anon_sym_async] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_file] = ACTIONS(3540), + [anon_sym_fixed] = ACTIONS(3540), + [anon_sym_internal] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_override] = ACTIONS(3540), + [anon_sym_partial] = ACTIONS(3540), + [anon_sym_protected] = ACTIONS(3540), + [anon_sym_required] = ACTIONS(3540), + [anon_sym_sealed] = ACTIONS(3540), + [anon_sym_virtual] = ACTIONS(3540), + [anon_sym_volatile] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(3540), + [anon_sym_notnull] = ACTIONS(3540), + [anon_sym_unmanaged] = ACTIONS(3540), + [anon_sym_checked] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_this] = ACTIONS(3540), + [anon_sym_scoped] = ACTIONS(3540), + [anon_sym_base] = ACTIONS(3540), + [anon_sym_var] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [sym_predefined_type] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_unchecked] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_lock] = ACTIONS(3540), + [anon_sym_yield] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_default] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_when] = ACTIONS(3540), + [anon_sym_await] = ACTIONS(3540), + [anon_sym_foreach] = ACTIONS(3540), + [anon_sym_goto] = ACTIONS(3540), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_else] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_CARET] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3542), + [anon_sym_true] = ACTIONS(3540), + [anon_sym_false] = ACTIONS(3540), + [anon_sym_from] = ACTIONS(3540), + [anon_sym_into] = ACTIONS(3540), + [anon_sym_join] = ACTIONS(3540), + [anon_sym_on] = ACTIONS(3540), + [anon_sym_equals] = ACTIONS(3540), + [anon_sym_let] = ACTIONS(3540), + [anon_sym_orderby] = ACTIONS(3540), + [anon_sym_ascending] = ACTIONS(3540), + [anon_sym_descending] = ACTIONS(3540), + [anon_sym_group] = ACTIONS(3540), + [anon_sym_by] = ACTIONS(3540), + [anon_sym_select] = ACTIONS(3540), + [anon_sym_stackalloc] = ACTIONS(3540), + [anon_sym_sizeof] = ACTIONS(3540), + [anon_sym_typeof] = ACTIONS(3540), + [anon_sym___makeref] = ACTIONS(3540), + [anon_sym___reftype] = ACTIONS(3540), + [anon_sym___refvalue] = ACTIONS(3540), + [sym_null_literal] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3542), + [sym_integer_literal] = ACTIONS(3540), + [sym_real_literal] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [sym_verbatim_string_literal] = ACTIONS(3542), + [sym_grit_metavariable] = ACTIONS(3542), + [aux_sym_preproc_if_token1] = ACTIONS(3542), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -395519,14 +395541,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(3526), - [sym_interpolation_verbatim_start] = ACTIONS(3526), - [sym_interpolation_raw_start] = ACTIONS(3526), - [sym_raw_string_start] = ACTIONS(3526), + [sym_interpolation_regular_start] = ACTIONS(3542), + [sym_interpolation_verbatim_start] = ACTIONS(3542), + [sym_interpolation_raw_start] = ACTIONS(3542), + [sym_raw_string_start] = ACTIONS(3542), }, [2073] = { - [sym_catch_clause] = STATE(2114), - [sym_finally_clause] = STATE(2152), [sym_preproc_region] = STATE(2073), [sym_preproc_endregion] = STATE(2073), [sym_preproc_line] = STATE(2073), @@ -395536,260 +395556,6 @@ 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), - [aux_sym_try_statement_repeat1] = STATE(2094), - [sym__identifier_token] = ACTIONS(3348), - [anon_sym_extern] = ACTIONS(3348), - [anon_sym_alias] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_global] = ACTIONS(3348), - [anon_sym_using] = ACTIONS(3348), - [anon_sym_unsafe] = ACTIONS(3348), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_ref] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_delegate] = ACTIONS(3348), - [anon_sym_public] = ACTIONS(3348), - [anon_sym_private] = ACTIONS(3348), - [anon_sym_readonly] = ACTIONS(3348), - [anon_sym_abstract] = ACTIONS(3348), - [anon_sym_async] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_file] = ACTIONS(3348), - [anon_sym_fixed] = ACTIONS(3348), - [anon_sym_internal] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_override] = ACTIONS(3348), - [anon_sym_partial] = ACTIONS(3348), - [anon_sym_protected] = ACTIONS(3348), - [anon_sym_required] = ACTIONS(3348), - [anon_sym_sealed] = ACTIONS(3348), - [anon_sym_virtual] = ACTIONS(3348), - [anon_sym_volatile] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(3348), - [anon_sym_notnull] = ACTIONS(3348), - [anon_sym_unmanaged] = ACTIONS(3348), - [anon_sym_checked] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_true] = ACTIONS(3348), - [anon_sym_false] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3350), - [anon_sym_CARET] = ACTIONS(3350), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_this] = ACTIONS(3348), - [anon_sym_scoped] = ACTIONS(3348), - [anon_sym_base] = ACTIONS(3348), - [anon_sym_var] = ACTIONS(3348), - [sym_predefined_type] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_unchecked] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_lock] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_case] = ACTIONS(3348), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_catch] = ACTIONS(3716), - [anon_sym_when] = ACTIONS(3348), - [anon_sym_finally] = ACTIONS(3718), - [anon_sym_await] = ACTIONS(3348), - [anon_sym_foreach] = ACTIONS(3348), - [anon_sym_goto] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_from] = ACTIONS(3348), - [anon_sym_into] = ACTIONS(3348), - [anon_sym_join] = ACTIONS(3348), - [anon_sym_on] = ACTIONS(3348), - [anon_sym_equals] = ACTIONS(3348), - [anon_sym_let] = ACTIONS(3348), - [anon_sym_orderby] = ACTIONS(3348), - [anon_sym_ascending] = ACTIONS(3348), - [anon_sym_descending] = ACTIONS(3348), - [anon_sym_group] = ACTIONS(3348), - [anon_sym_by] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3348), - [anon_sym_stackalloc] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3348), - [anon_sym_typeof] = ACTIONS(3348), - [anon_sym___makeref] = ACTIONS(3348), - [anon_sym___reftype] = ACTIONS(3348), - [anon_sym___refvalue] = ACTIONS(3348), - [sym_null_literal] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3350), - [sym_integer_literal] = ACTIONS(3348), - [sym_real_literal] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [sym_verbatim_string_literal] = ACTIONS(3350), - [sym_grit_metavariable] = ACTIONS(3350), - [aux_sym_preproc_if_token1] = ACTIONS(3350), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3350), - [sym_interpolation_verbatim_start] = ACTIONS(3350), - [sym_interpolation_raw_start] = ACTIONS(3350), - [sym_raw_string_start] = ACTIONS(3350), - }, - [2074] = { - [sym_preproc_region] = STATE(2074), - [sym_preproc_endregion] = STATE(2074), - [sym_preproc_line] = STATE(2074), - [sym_preproc_pragma] = STATE(2074), - [sym_preproc_nullable] = STATE(2074), - [sym_preproc_error] = STATE(2074), - [sym_preproc_warning] = STATE(2074), - [sym_preproc_define] = STATE(2074), - [sym_preproc_undef] = STATE(2074), - [ts_builtin_sym_end] = ACTIONS(3570), - [sym__identifier_token] = ACTIONS(3568), - [anon_sym_extern] = ACTIONS(3568), - [anon_sym_alias] = ACTIONS(3568), - [anon_sym_SEMI] = ACTIONS(3570), - [anon_sym_global] = ACTIONS(3568), - [anon_sym_using] = ACTIONS(3568), - [anon_sym_unsafe] = ACTIONS(3568), - [anon_sym_static] = ACTIONS(3568), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3568), - [anon_sym_namespace] = ACTIONS(3568), - [anon_sym_class] = ACTIONS(3568), - [anon_sym_ref] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3568), - [anon_sym_enum] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_interface] = ACTIONS(3568), - [anon_sym_delegate] = ACTIONS(3568), - [anon_sym_record] = ACTIONS(3568), - [anon_sym_public] = ACTIONS(3568), - [anon_sym_private] = ACTIONS(3568), - [anon_sym_readonly] = ACTIONS(3568), - [anon_sym_abstract] = ACTIONS(3568), - [anon_sym_async] = ACTIONS(3568), - [anon_sym_const] = ACTIONS(3568), - [anon_sym_file] = ACTIONS(3568), - [anon_sym_fixed] = ACTIONS(3568), - [anon_sym_internal] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3568), - [anon_sym_override] = ACTIONS(3568), - [anon_sym_partial] = ACTIONS(3568), - [anon_sym_protected] = ACTIONS(3568), - [anon_sym_required] = ACTIONS(3568), - [anon_sym_sealed] = ACTIONS(3568), - [anon_sym_virtual] = ACTIONS(3568), - [anon_sym_volatile] = ACTIONS(3568), - [anon_sym_where] = ACTIONS(3568), - [anon_sym_notnull] = ACTIONS(3568), - [anon_sym_unmanaged] = ACTIONS(3568), - [anon_sym_checked] = ACTIONS(3568), - [anon_sym_BANG] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [anon_sym_true] = ACTIONS(3568), - [anon_sym_false] = ACTIONS(3568), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_CARET] = ACTIONS(3570), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_this] = ACTIONS(3568), - [anon_sym_scoped] = ACTIONS(3568), - [anon_sym_base] = ACTIONS(3568), - [anon_sym_var] = ACTIONS(3568), - [sym_predefined_type] = ACTIONS(3568), - [anon_sym_break] = ACTIONS(3568), - [anon_sym_unchecked] = ACTIONS(3568), - [anon_sym_continue] = ACTIONS(3568), - [anon_sym_do] = ACTIONS(3568), - [anon_sym_while] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3568), - [anon_sym_lock] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3568), - [anon_sym_switch] = ACTIONS(3568), - [anon_sym_default] = ACTIONS(3568), - [anon_sym_throw] = ACTIONS(3568), - [anon_sym_try] = ACTIONS(3568), - [anon_sym_when] = ACTIONS(3568), - [anon_sym_await] = ACTIONS(3568), - [anon_sym_foreach] = ACTIONS(3568), - [anon_sym_goto] = ACTIONS(3568), - [anon_sym_if] = ACTIONS(3568), - [anon_sym_else] = ACTIONS(3568), - [anon_sym_DOT_DOT] = ACTIONS(3570), - [anon_sym_from] = ACTIONS(3568), - [anon_sym_into] = ACTIONS(3568), - [anon_sym_join] = ACTIONS(3568), - [anon_sym_on] = ACTIONS(3568), - [anon_sym_equals] = ACTIONS(3568), - [anon_sym_let] = ACTIONS(3568), - [anon_sym_orderby] = ACTIONS(3568), - [anon_sym_ascending] = ACTIONS(3568), - [anon_sym_descending] = ACTIONS(3568), - [anon_sym_group] = ACTIONS(3568), - [anon_sym_by] = ACTIONS(3568), - [anon_sym_select] = ACTIONS(3568), - [anon_sym_stackalloc] = ACTIONS(3568), - [anon_sym_sizeof] = ACTIONS(3568), - [anon_sym_typeof] = ACTIONS(3568), - [anon_sym___makeref] = ACTIONS(3568), - [anon_sym___reftype] = ACTIONS(3568), - [anon_sym___refvalue] = ACTIONS(3568), - [sym_null_literal] = ACTIONS(3568), - [anon_sym_SQUOTE] = ACTIONS(3570), - [sym_integer_literal] = ACTIONS(3568), - [sym_real_literal] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [sym_verbatim_string_literal] = ACTIONS(3570), - [sym_grit_metavariable] = ACTIONS(3570), - [aux_sym_preproc_if_token1] = ACTIONS(3570), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3570), - [sym_interpolation_verbatim_start] = ACTIONS(3570), - [sym_interpolation_raw_start] = ACTIONS(3570), - [sym_raw_string_start] = ACTIONS(3570), - }, - [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(3498), [sym__identifier_token] = ACTIONS(3496), [anon_sym_extern] = ACTIONS(3496), @@ -395832,21 +395598,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3496), [anon_sym_unmanaged] = ACTIONS(3496), [anon_sym_checked] = ACTIONS(3496), - [anon_sym_BANG] = ACTIONS(3498), [anon_sym_TILDE] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_true] = ACTIONS(3496), - [anon_sym_false] = ACTIONS(3496), - [anon_sym_PLUS] = ACTIONS(3496), - [anon_sym_DASH] = ACTIONS(3496), - [anon_sym_STAR] = ACTIONS(3498), - [anon_sym_CARET] = ACTIONS(3498), - [anon_sym_AMP] = ACTIONS(3498), [anon_sym_this] = ACTIONS(3496), [anon_sym_scoped] = ACTIONS(3496), [anon_sym_base] = ACTIONS(3496), [anon_sym_var] = ACTIONS(3496), + [anon_sym_STAR] = ACTIONS(3498), [sym_predefined_type] = ACTIONS(3496), [anon_sym_break] = ACTIONS(3496), [anon_sym_unchecked] = ACTIONS(3496), @@ -395867,6 +395624,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3496), [anon_sym_else] = ACTIONS(3496), [anon_sym_DOT_DOT] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3498), + [anon_sym_CARET] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_true] = ACTIONS(3496), + [anon_sym_false] = ACTIONS(3496), [anon_sym_from] = ACTIONS(3496), [anon_sym_into] = ACTIONS(3496), [anon_sym_join] = ACTIONS(3496), @@ -395908,119 +395674,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3498), [sym_raw_string_start] = ACTIONS(3498), }, - [2076] = { - [sym_preproc_region] = STATE(2076), - [sym_preproc_endregion] = STATE(2076), - [sym_preproc_line] = STATE(2076), - [sym_preproc_pragma] = STATE(2076), - [sym_preproc_nullable] = STATE(2076), - [sym_preproc_error] = STATE(2076), - [sym_preproc_warning] = STATE(2076), - [sym_preproc_define] = STATE(2076), - [sym_preproc_undef] = STATE(2076), - [ts_builtin_sym_end] = ACTIONS(3578), - [sym__identifier_token] = ACTIONS(3576), - [anon_sym_extern] = ACTIONS(3576), - [anon_sym_alias] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym_global] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_unsafe] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3578), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_ref] = ACTIONS(3576), - [anon_sym_struct] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3578), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_delegate] = ACTIONS(3576), - [anon_sym_record] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_file] = ACTIONS(3576), - [anon_sym_fixed] = ACTIONS(3576), - [anon_sym_internal] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_partial] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_sealed] = ACTIONS(3576), - [anon_sym_virtual] = ACTIONS(3576), - [anon_sym_volatile] = ACTIONS(3576), - [anon_sym_where] = ACTIONS(3576), - [anon_sym_notnull] = ACTIONS(3576), - [anon_sym_unmanaged] = ACTIONS(3576), - [anon_sym_checked] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3578), - [anon_sym_TILDE] = ACTIONS(3578), - [anon_sym_PLUS_PLUS] = ACTIONS(3578), - [anon_sym_DASH_DASH] = ACTIONS(3578), - [anon_sym_true] = ACTIONS(3576), - [anon_sym_false] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(3578), - [anon_sym_CARET] = ACTIONS(3578), - [anon_sym_AMP] = ACTIONS(3578), - [anon_sym_this] = ACTIONS(3576), - [anon_sym_scoped] = ACTIONS(3576), - [anon_sym_base] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [sym_predefined_type] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_unchecked] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_lock] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_when] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_foreach] = ACTIONS(3576), - [anon_sym_goto] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_DOT_DOT] = ACTIONS(3578), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_into] = ACTIONS(3576), - [anon_sym_join] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_equals] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_orderby] = ACTIONS(3576), - [anon_sym_ascending] = ACTIONS(3576), - [anon_sym_descending] = ACTIONS(3576), - [anon_sym_group] = ACTIONS(3576), - [anon_sym_by] = ACTIONS(3576), - [anon_sym_select] = ACTIONS(3576), - [anon_sym_stackalloc] = ACTIONS(3576), - [anon_sym_sizeof] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym___makeref] = ACTIONS(3576), - [anon_sym___reftype] = ACTIONS(3576), - [anon_sym___refvalue] = ACTIONS(3576), - [sym_null_literal] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3578), - [sym_integer_literal] = ACTIONS(3576), - [sym_real_literal] = ACTIONS(3578), - [anon_sym_DQUOTE] = ACTIONS(3578), - [sym_verbatim_string_literal] = ACTIONS(3578), - [sym_grit_metavariable] = ACTIONS(3578), - [aux_sym_preproc_if_token1] = ACTIONS(3578), + [2074] = { + [sym_preproc_region] = STATE(2074), + [sym_preproc_endregion] = STATE(2074), + [sym_preproc_line] = STATE(2074), + [sym_preproc_pragma] = STATE(2074), + [sym_preproc_nullable] = STATE(2074), + [sym_preproc_error] = STATE(2074), + [sym_preproc_warning] = STATE(2074), + [sym_preproc_define] = STATE(2074), + [sym_preproc_undef] = STATE(2074), + [ts_builtin_sym_end] = ACTIONS(3574), + [sym__identifier_token] = ACTIONS(3572), + [anon_sym_extern] = ACTIONS(3572), + [anon_sym_alias] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym_global] = ACTIONS(3572), + [anon_sym_using] = ACTIONS(3572), + [anon_sym_unsafe] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3574), + [anon_sym_LPAREN] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_namespace] = ACTIONS(3572), + [anon_sym_class] = ACTIONS(3572), + [anon_sym_ref] = ACTIONS(3572), + [anon_sym_struct] = ACTIONS(3572), + [anon_sym_enum] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_interface] = ACTIONS(3572), + [anon_sym_delegate] = ACTIONS(3572), + [anon_sym_record] = ACTIONS(3572), + [anon_sym_public] = ACTIONS(3572), + [anon_sym_private] = ACTIONS(3572), + [anon_sym_readonly] = ACTIONS(3572), + [anon_sym_abstract] = ACTIONS(3572), + [anon_sym_async] = ACTIONS(3572), + [anon_sym_const] = ACTIONS(3572), + [anon_sym_file] = ACTIONS(3572), + [anon_sym_fixed] = ACTIONS(3572), + [anon_sym_internal] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_override] = ACTIONS(3572), + [anon_sym_partial] = ACTIONS(3572), + [anon_sym_protected] = ACTIONS(3572), + [anon_sym_required] = ACTIONS(3572), + [anon_sym_sealed] = ACTIONS(3572), + [anon_sym_virtual] = ACTIONS(3572), + [anon_sym_volatile] = ACTIONS(3572), + [anon_sym_where] = ACTIONS(3572), + [anon_sym_notnull] = ACTIONS(3572), + [anon_sym_unmanaged] = ACTIONS(3572), + [anon_sym_checked] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3574), + [anon_sym_this] = ACTIONS(3572), + [anon_sym_scoped] = ACTIONS(3572), + [anon_sym_base] = ACTIONS(3572), + [anon_sym_var] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3574), + [sym_predefined_type] = ACTIONS(3572), + [anon_sym_break] = ACTIONS(3572), + [anon_sym_unchecked] = ACTIONS(3572), + [anon_sym_continue] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_lock] = ACTIONS(3572), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_switch] = ACTIONS(3572), + [anon_sym_default] = ACTIONS(3572), + [anon_sym_throw] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_when] = ACTIONS(3572), + [anon_sym_await] = ACTIONS(3572), + [anon_sym_foreach] = ACTIONS(3572), + [anon_sym_goto] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_else] = ACTIONS(3572), + [anon_sym_DOT_DOT] = ACTIONS(3574), + [anon_sym_AMP] = ACTIONS(3574), + [anon_sym_CARET] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [anon_sym_true] = ACTIONS(3572), + [anon_sym_false] = ACTIONS(3572), + [anon_sym_from] = ACTIONS(3572), + [anon_sym_into] = ACTIONS(3572), + [anon_sym_join] = ACTIONS(3572), + [anon_sym_on] = ACTIONS(3572), + [anon_sym_equals] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_orderby] = ACTIONS(3572), + [anon_sym_ascending] = ACTIONS(3572), + [anon_sym_descending] = ACTIONS(3572), + [anon_sym_group] = ACTIONS(3572), + [anon_sym_by] = ACTIONS(3572), + [anon_sym_select] = ACTIONS(3572), + [anon_sym_stackalloc] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3572), + [anon_sym_typeof] = ACTIONS(3572), + [anon_sym___makeref] = ACTIONS(3572), + [anon_sym___reftype] = ACTIONS(3572), + [anon_sym___refvalue] = ACTIONS(3572), + [sym_null_literal] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3574), + [sym_integer_literal] = ACTIONS(3572), + [sym_real_literal] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym_verbatim_string_literal] = ACTIONS(3574), + [sym_grit_metavariable] = ACTIONS(3574), + [aux_sym_preproc_if_token1] = ACTIONS(3574), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396031,21 +395797,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3578), - [sym_interpolation_verbatim_start] = ACTIONS(3578), - [sym_interpolation_raw_start] = ACTIONS(3578), - [sym_raw_string_start] = ACTIONS(3578), + [sym_interpolation_regular_start] = ACTIONS(3574), + [sym_interpolation_verbatim_start] = ACTIONS(3574), + [sym_interpolation_raw_start] = ACTIONS(3574), + [sym_raw_string_start] = ACTIONS(3574), }, - [2077] = { - [sym_preproc_region] = STATE(2077), - [sym_preproc_endregion] = STATE(2077), - [sym_preproc_line] = STATE(2077), - [sym_preproc_pragma] = STATE(2077), - [sym_preproc_nullable] = STATE(2077), - [sym_preproc_error] = STATE(2077), - [sym_preproc_warning] = STATE(2077), - [sym_preproc_define] = STATE(2077), - [sym_preproc_undef] = STATE(2077), + [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(3478), [sym__identifier_token] = ACTIONS(3476), [anon_sym_extern] = ACTIONS(3476), @@ -396088,21 +395854,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3476), [anon_sym_unmanaged] = ACTIONS(3476), [anon_sym_checked] = ACTIONS(3476), - [anon_sym_BANG] = ACTIONS(3478), [anon_sym_TILDE] = ACTIONS(3478), - [anon_sym_PLUS_PLUS] = ACTIONS(3478), - [anon_sym_DASH_DASH] = ACTIONS(3478), - [anon_sym_true] = ACTIONS(3476), - [anon_sym_false] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_STAR] = ACTIONS(3478), - [anon_sym_CARET] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3478), [anon_sym_this] = ACTIONS(3476), [anon_sym_scoped] = ACTIONS(3476), [anon_sym_base] = ACTIONS(3476), [anon_sym_var] = ACTIONS(3476), + [anon_sym_STAR] = ACTIONS(3478), [sym_predefined_type] = ACTIONS(3476), [anon_sym_break] = ACTIONS(3476), [anon_sym_unchecked] = ACTIONS(3476), @@ -396123,6 +395880,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3476), [anon_sym_else] = ACTIONS(3476), [anon_sym_DOT_DOT] = ACTIONS(3478), + [anon_sym_AMP] = ACTIONS(3478), + [anon_sym_CARET] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [anon_sym_true] = ACTIONS(3476), + [anon_sym_false] = ACTIONS(3476), [anon_sym_from] = ACTIONS(3476), [anon_sym_into] = ACTIONS(3476), [anon_sym_join] = ACTIONS(3476), @@ -396164,6 +395930,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3478), [sym_raw_string_start] = ACTIONS(3478), }, + [2076] = { + [sym_preproc_region] = STATE(2076), + [sym_preproc_endregion] = STATE(2076), + [sym_preproc_line] = STATE(2076), + [sym_preproc_pragma] = STATE(2076), + [sym_preproc_nullable] = STATE(2076), + [sym_preproc_error] = STATE(2076), + [sym_preproc_warning] = STATE(2076), + [sym_preproc_define] = STATE(2076), + [sym_preproc_undef] = STATE(2076), + [ts_builtin_sym_end] = ACTIONS(3538), + [sym__identifier_token] = ACTIONS(3536), + [anon_sym_extern] = ACTIONS(3536), + [anon_sym_alias] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3538), + [anon_sym_global] = ACTIONS(3536), + [anon_sym_using] = ACTIONS(3536), + [anon_sym_unsafe] = ACTIONS(3536), + [anon_sym_static] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3536), + [anon_sym_namespace] = ACTIONS(3536), + [anon_sym_class] = ACTIONS(3536), + [anon_sym_ref] = ACTIONS(3536), + [anon_sym_struct] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_interface] = ACTIONS(3536), + [anon_sym_delegate] = ACTIONS(3536), + [anon_sym_record] = ACTIONS(3536), + [anon_sym_public] = ACTIONS(3536), + [anon_sym_private] = ACTIONS(3536), + [anon_sym_readonly] = ACTIONS(3536), + [anon_sym_abstract] = ACTIONS(3536), + [anon_sym_async] = ACTIONS(3536), + [anon_sym_const] = ACTIONS(3536), + [anon_sym_file] = ACTIONS(3536), + [anon_sym_fixed] = ACTIONS(3536), + [anon_sym_internal] = ACTIONS(3536), + [anon_sym_new] = ACTIONS(3536), + [anon_sym_override] = ACTIONS(3536), + [anon_sym_partial] = ACTIONS(3536), + [anon_sym_protected] = ACTIONS(3536), + [anon_sym_required] = ACTIONS(3536), + [anon_sym_sealed] = ACTIONS(3536), + [anon_sym_virtual] = ACTIONS(3536), + [anon_sym_volatile] = ACTIONS(3536), + [anon_sym_where] = ACTIONS(3536), + [anon_sym_notnull] = ACTIONS(3536), + [anon_sym_unmanaged] = ACTIONS(3536), + [anon_sym_checked] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3538), + [anon_sym_this] = ACTIONS(3536), + [anon_sym_scoped] = ACTIONS(3536), + [anon_sym_base] = ACTIONS(3536), + [anon_sym_var] = ACTIONS(3536), + [anon_sym_STAR] = ACTIONS(3538), + [sym_predefined_type] = ACTIONS(3536), + [anon_sym_break] = ACTIONS(3536), + [anon_sym_unchecked] = ACTIONS(3536), + [anon_sym_continue] = ACTIONS(3536), + [anon_sym_do] = ACTIONS(3536), + [anon_sym_while] = ACTIONS(3536), + [anon_sym_for] = ACTIONS(3536), + [anon_sym_lock] = ACTIONS(3536), + [anon_sym_yield] = ACTIONS(3536), + [anon_sym_switch] = ACTIONS(3536), + [anon_sym_default] = ACTIONS(3536), + [anon_sym_throw] = ACTIONS(3536), + [anon_sym_try] = ACTIONS(3536), + [anon_sym_when] = ACTIONS(3536), + [anon_sym_await] = ACTIONS(3536), + [anon_sym_foreach] = ACTIONS(3536), + [anon_sym_goto] = ACTIONS(3536), + [anon_sym_if] = ACTIONS(3536), + [anon_sym_else] = ACTIONS(3536), + [anon_sym_DOT_DOT] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3538), + [anon_sym_CARET] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3538), + [anon_sym_PLUS_PLUS] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3538), + [anon_sym_true] = ACTIONS(3536), + [anon_sym_false] = ACTIONS(3536), + [anon_sym_from] = ACTIONS(3536), + [anon_sym_into] = ACTIONS(3536), + [anon_sym_join] = ACTIONS(3536), + [anon_sym_on] = ACTIONS(3536), + [anon_sym_equals] = ACTIONS(3536), + [anon_sym_let] = ACTIONS(3536), + [anon_sym_orderby] = ACTIONS(3536), + [anon_sym_ascending] = ACTIONS(3536), + [anon_sym_descending] = ACTIONS(3536), + [anon_sym_group] = ACTIONS(3536), + [anon_sym_by] = ACTIONS(3536), + [anon_sym_select] = ACTIONS(3536), + [anon_sym_stackalloc] = ACTIONS(3536), + [anon_sym_sizeof] = ACTIONS(3536), + [anon_sym_typeof] = ACTIONS(3536), + [anon_sym___makeref] = ACTIONS(3536), + [anon_sym___reftype] = ACTIONS(3536), + [anon_sym___refvalue] = ACTIONS(3536), + [sym_null_literal] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3538), + [sym_integer_literal] = ACTIONS(3536), + [sym_real_literal] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [sym_verbatim_string_literal] = ACTIONS(3538), + [sym_grit_metavariable] = ACTIONS(3538), + [aux_sym_preproc_if_token1] = ACTIONS(3538), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3538), + [sym_interpolation_verbatim_start] = ACTIONS(3538), + [sym_interpolation_raw_start] = ACTIONS(3538), + [sym_raw_string_start] = ACTIONS(3538), + }, + [2077] = { + [sym_preproc_region] = STATE(2077), + [sym_preproc_endregion] = STATE(2077), + [sym_preproc_line] = STATE(2077), + [sym_preproc_pragma] = STATE(2077), + [sym_preproc_nullable] = STATE(2077), + [sym_preproc_error] = STATE(2077), + [sym_preproc_warning] = STATE(2077), + [sym_preproc_define] = STATE(2077), + [sym_preproc_undef] = STATE(2077), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym__identifier_token] = ACTIONS(3520), + [anon_sym_extern] = ACTIONS(3520), + [anon_sym_alias] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym_global] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3520), + [anon_sym_unsafe] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_LPAREN] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3520), + [anon_sym_namespace] = ACTIONS(3520), + [anon_sym_class] = ACTIONS(3520), + [anon_sym_ref] = ACTIONS(3520), + [anon_sym_struct] = ACTIONS(3520), + [anon_sym_enum] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3522), + [anon_sym_interface] = ACTIONS(3520), + [anon_sym_delegate] = ACTIONS(3520), + [anon_sym_record] = ACTIONS(3520), + [anon_sym_public] = ACTIONS(3520), + [anon_sym_private] = ACTIONS(3520), + [anon_sym_readonly] = ACTIONS(3520), + [anon_sym_abstract] = ACTIONS(3520), + [anon_sym_async] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_file] = ACTIONS(3520), + [anon_sym_fixed] = ACTIONS(3520), + [anon_sym_internal] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_override] = ACTIONS(3520), + [anon_sym_partial] = ACTIONS(3520), + [anon_sym_protected] = ACTIONS(3520), + [anon_sym_required] = ACTIONS(3520), + [anon_sym_sealed] = ACTIONS(3520), + [anon_sym_virtual] = ACTIONS(3520), + [anon_sym_volatile] = ACTIONS(3520), + [anon_sym_where] = ACTIONS(3520), + [anon_sym_notnull] = ACTIONS(3520), + [anon_sym_unmanaged] = ACTIONS(3520), + [anon_sym_checked] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(3520), + [anon_sym_scoped] = ACTIONS(3520), + [anon_sym_base] = ACTIONS(3520), + [anon_sym_var] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3522), + [sym_predefined_type] = ACTIONS(3520), + [anon_sym_break] = ACTIONS(3520), + [anon_sym_unchecked] = ACTIONS(3520), + [anon_sym_continue] = ACTIONS(3520), + [anon_sym_do] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(3520), + [anon_sym_for] = ACTIONS(3520), + [anon_sym_lock] = ACTIONS(3520), + [anon_sym_yield] = ACTIONS(3520), + [anon_sym_switch] = ACTIONS(3520), + [anon_sym_default] = ACTIONS(3520), + [anon_sym_throw] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3520), + [anon_sym_when] = ACTIONS(3520), + [anon_sym_await] = ACTIONS(3520), + [anon_sym_foreach] = ACTIONS(3520), + [anon_sym_goto] = ACTIONS(3520), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_else] = ACTIONS(3520), + [anon_sym_DOT_DOT] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3522), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3522), + [anon_sym_true] = ACTIONS(3520), + [anon_sym_false] = ACTIONS(3520), + [anon_sym_from] = ACTIONS(3520), + [anon_sym_into] = ACTIONS(3520), + [anon_sym_join] = ACTIONS(3520), + [anon_sym_on] = ACTIONS(3520), + [anon_sym_equals] = ACTIONS(3520), + [anon_sym_let] = ACTIONS(3520), + [anon_sym_orderby] = ACTIONS(3520), + [anon_sym_ascending] = ACTIONS(3520), + [anon_sym_descending] = ACTIONS(3520), + [anon_sym_group] = ACTIONS(3520), + [anon_sym_by] = ACTIONS(3520), + [anon_sym_select] = ACTIONS(3520), + [anon_sym_stackalloc] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3520), + [anon_sym_typeof] = ACTIONS(3520), + [anon_sym___makeref] = ACTIONS(3520), + [anon_sym___reftype] = ACTIONS(3520), + [anon_sym___refvalue] = ACTIONS(3520), + [sym_null_literal] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3522), + [sym_integer_literal] = ACTIONS(3520), + [sym_real_literal] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(3522), + [sym_verbatim_string_literal] = ACTIONS(3522), + [sym_grit_metavariable] = ACTIONS(3522), + [aux_sym_preproc_if_token1] = ACTIONS(3522), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3522), + [sym_interpolation_verbatim_start] = ACTIONS(3522), + [sym_interpolation_raw_start] = ACTIONS(3522), + [sym_raw_string_start] = ACTIONS(3522), + }, [2078] = { [sym_preproc_region] = STATE(2078), [sym_preproc_endregion] = STATE(2078), @@ -396174,109 +396196,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2078), [sym_preproc_define] = STATE(2078), [sym_preproc_undef] = STATE(2078), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym__identifier_token] = ACTIONS(3468), - [anon_sym_extern] = ACTIONS(3468), - [anon_sym_alias] = ACTIONS(3468), - [anon_sym_SEMI] = ACTIONS(3470), - [anon_sym_global] = ACTIONS(3468), - [anon_sym_using] = ACTIONS(3468), - [anon_sym_unsafe] = ACTIONS(3468), - [anon_sym_static] = ACTIONS(3468), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3468), - [anon_sym_namespace] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3468), - [anon_sym_ref] = ACTIONS(3468), - [anon_sym_struct] = ACTIONS(3468), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_interface] = ACTIONS(3468), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_record] = ACTIONS(3468), - [anon_sym_public] = ACTIONS(3468), - [anon_sym_private] = ACTIONS(3468), - [anon_sym_readonly] = ACTIONS(3468), - [anon_sym_abstract] = ACTIONS(3468), - [anon_sym_async] = ACTIONS(3468), - [anon_sym_const] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(3468), - [anon_sym_fixed] = ACTIONS(3468), - [anon_sym_internal] = ACTIONS(3468), - [anon_sym_new] = ACTIONS(3468), - [anon_sym_override] = ACTIONS(3468), - [anon_sym_partial] = ACTIONS(3468), - [anon_sym_protected] = ACTIONS(3468), - [anon_sym_required] = ACTIONS(3468), - [anon_sym_sealed] = ACTIONS(3468), - [anon_sym_virtual] = ACTIONS(3468), - [anon_sym_volatile] = ACTIONS(3468), - [anon_sym_where] = ACTIONS(3468), - [anon_sym_notnull] = ACTIONS(3468), - [anon_sym_unmanaged] = ACTIONS(3468), - [anon_sym_checked] = ACTIONS(3468), - [anon_sym_BANG] = ACTIONS(3470), - [anon_sym_TILDE] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_true] = ACTIONS(3468), - [anon_sym_false] = ACTIONS(3468), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_STAR] = ACTIONS(3470), - [anon_sym_CARET] = ACTIONS(3470), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(3468), - [anon_sym_scoped] = ACTIONS(3468), - [anon_sym_base] = ACTIONS(3468), - [anon_sym_var] = ACTIONS(3468), - [sym_predefined_type] = ACTIONS(3468), - [anon_sym_break] = ACTIONS(3468), - [anon_sym_unchecked] = ACTIONS(3468), - [anon_sym_continue] = ACTIONS(3468), - [anon_sym_do] = ACTIONS(3468), - [anon_sym_while] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3468), - [anon_sym_lock] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3468), - [anon_sym_switch] = ACTIONS(3468), - [anon_sym_default] = ACTIONS(3468), - [anon_sym_throw] = ACTIONS(3468), - [anon_sym_try] = ACTIONS(3468), - [anon_sym_when] = ACTIONS(3468), - [anon_sym_await] = ACTIONS(3468), - [anon_sym_foreach] = ACTIONS(3468), - [anon_sym_goto] = ACTIONS(3468), - [anon_sym_if] = ACTIONS(3468), - [anon_sym_else] = ACTIONS(3468), - [anon_sym_DOT_DOT] = ACTIONS(3470), - [anon_sym_from] = ACTIONS(3468), - [anon_sym_into] = ACTIONS(3468), - [anon_sym_join] = ACTIONS(3468), - [anon_sym_on] = ACTIONS(3468), - [anon_sym_equals] = ACTIONS(3468), - [anon_sym_let] = ACTIONS(3468), - [anon_sym_orderby] = ACTIONS(3468), - [anon_sym_ascending] = ACTIONS(3468), - [anon_sym_descending] = ACTIONS(3468), - [anon_sym_group] = ACTIONS(3468), - [anon_sym_by] = ACTIONS(3468), - [anon_sym_select] = ACTIONS(3468), - [anon_sym_stackalloc] = ACTIONS(3468), - [anon_sym_sizeof] = ACTIONS(3468), - [anon_sym_typeof] = ACTIONS(3468), - [anon_sym___makeref] = ACTIONS(3468), - [anon_sym___reftype] = ACTIONS(3468), - [anon_sym___refvalue] = ACTIONS(3468), - [sym_null_literal] = ACTIONS(3468), - [anon_sym_SQUOTE] = ACTIONS(3470), - [sym_integer_literal] = ACTIONS(3468), - [sym_real_literal] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [sym_verbatim_string_literal] = ACTIONS(3470), - [sym_grit_metavariable] = ACTIONS(3470), - [aux_sym_preproc_if_token1] = ACTIONS(3470), + [ts_builtin_sym_end] = ACTIONS(3534), + [sym__identifier_token] = ACTIONS(3532), + [anon_sym_extern] = ACTIONS(3532), + [anon_sym_alias] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym_global] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3532), + [anon_sym_unsafe] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3532), + [anon_sym_namespace] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_ref] = ACTIONS(3532), + [anon_sym_struct] = ACTIONS(3532), + [anon_sym_enum] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_interface] = ACTIONS(3532), + [anon_sym_delegate] = ACTIONS(3532), + [anon_sym_record] = ACTIONS(3532), + [anon_sym_public] = ACTIONS(3532), + [anon_sym_private] = ACTIONS(3532), + [anon_sym_readonly] = ACTIONS(3532), + [anon_sym_abstract] = ACTIONS(3532), + [anon_sym_async] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_file] = ACTIONS(3532), + [anon_sym_fixed] = ACTIONS(3532), + [anon_sym_internal] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_override] = ACTIONS(3532), + [anon_sym_partial] = ACTIONS(3532), + [anon_sym_protected] = ACTIONS(3532), + [anon_sym_required] = ACTIONS(3532), + [anon_sym_sealed] = ACTIONS(3532), + [anon_sym_virtual] = ACTIONS(3532), + [anon_sym_volatile] = ACTIONS(3532), + [anon_sym_where] = ACTIONS(3532), + [anon_sym_notnull] = ACTIONS(3532), + [anon_sym_unmanaged] = ACTIONS(3532), + [anon_sym_checked] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_this] = ACTIONS(3532), + [anon_sym_scoped] = ACTIONS(3532), + [anon_sym_base] = ACTIONS(3532), + [anon_sym_var] = ACTIONS(3532), + [anon_sym_STAR] = ACTIONS(3534), + [sym_predefined_type] = ACTIONS(3532), + [anon_sym_break] = ACTIONS(3532), + [anon_sym_unchecked] = ACTIONS(3532), + [anon_sym_continue] = ACTIONS(3532), + [anon_sym_do] = ACTIONS(3532), + [anon_sym_while] = ACTIONS(3532), + [anon_sym_for] = ACTIONS(3532), + [anon_sym_lock] = ACTIONS(3532), + [anon_sym_yield] = ACTIONS(3532), + [anon_sym_switch] = ACTIONS(3532), + [anon_sym_default] = ACTIONS(3532), + [anon_sym_throw] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3532), + [anon_sym_when] = ACTIONS(3532), + [anon_sym_await] = ACTIONS(3532), + [anon_sym_foreach] = ACTIONS(3532), + [anon_sym_goto] = ACTIONS(3532), + [anon_sym_if] = ACTIONS(3532), + [anon_sym_else] = ACTIONS(3532), + [anon_sym_DOT_DOT] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_CARET] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3534), + [anon_sym_true] = ACTIONS(3532), + [anon_sym_false] = ACTIONS(3532), + [anon_sym_from] = ACTIONS(3532), + [anon_sym_into] = ACTIONS(3532), + [anon_sym_join] = ACTIONS(3532), + [anon_sym_on] = ACTIONS(3532), + [anon_sym_equals] = ACTIONS(3532), + [anon_sym_let] = ACTIONS(3532), + [anon_sym_orderby] = ACTIONS(3532), + [anon_sym_ascending] = ACTIONS(3532), + [anon_sym_descending] = ACTIONS(3532), + [anon_sym_group] = ACTIONS(3532), + [anon_sym_by] = ACTIONS(3532), + [anon_sym_select] = ACTIONS(3532), + [anon_sym_stackalloc] = ACTIONS(3532), + [anon_sym_sizeof] = ACTIONS(3532), + [anon_sym_typeof] = ACTIONS(3532), + [anon_sym___makeref] = ACTIONS(3532), + [anon_sym___reftype] = ACTIONS(3532), + [anon_sym___refvalue] = ACTIONS(3532), + [sym_null_literal] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3534), + [sym_integer_literal] = ACTIONS(3532), + [sym_real_literal] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [sym_verbatim_string_literal] = ACTIONS(3534), + [sym_grit_metavariable] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396287,10 +396309,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(3470), - [sym_interpolation_verbatim_start] = ACTIONS(3470), - [sym_interpolation_raw_start] = ACTIONS(3470), - [sym_raw_string_start] = ACTIONS(3470), + [sym_interpolation_regular_start] = ACTIONS(3534), + [sym_interpolation_verbatim_start] = ACTIONS(3534), + [sym_interpolation_raw_start] = ACTIONS(3534), + [sym_raw_string_start] = ACTIONS(3534), }, [2079] = { [sym_preproc_region] = STATE(2079), @@ -396302,109 +396324,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2079), [sym_preproc_define] = STATE(2079), [sym_preproc_undef] = STATE(2079), - [ts_builtin_sym_end] = ACTIONS(3574), - [sym__identifier_token] = ACTIONS(3572), - [anon_sym_extern] = ACTIONS(3572), - [anon_sym_alias] = ACTIONS(3572), - [anon_sym_SEMI] = ACTIONS(3574), - [anon_sym_global] = ACTIONS(3572), - [anon_sym_using] = ACTIONS(3572), - [anon_sym_unsafe] = ACTIONS(3572), - [anon_sym_static] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3572), - [anon_sym_namespace] = ACTIONS(3572), - [anon_sym_class] = ACTIONS(3572), - [anon_sym_ref] = ACTIONS(3572), - [anon_sym_struct] = ACTIONS(3572), - [anon_sym_enum] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_interface] = ACTIONS(3572), - [anon_sym_delegate] = ACTIONS(3572), - [anon_sym_record] = ACTIONS(3572), - [anon_sym_public] = ACTIONS(3572), - [anon_sym_private] = ACTIONS(3572), - [anon_sym_readonly] = ACTIONS(3572), - [anon_sym_abstract] = ACTIONS(3572), - [anon_sym_async] = ACTIONS(3572), - [anon_sym_const] = ACTIONS(3572), - [anon_sym_file] = ACTIONS(3572), - [anon_sym_fixed] = ACTIONS(3572), - [anon_sym_internal] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3572), - [anon_sym_override] = ACTIONS(3572), - [anon_sym_partial] = ACTIONS(3572), - [anon_sym_protected] = ACTIONS(3572), - [anon_sym_required] = ACTIONS(3572), - [anon_sym_sealed] = ACTIONS(3572), - [anon_sym_virtual] = ACTIONS(3572), - [anon_sym_volatile] = ACTIONS(3572), - [anon_sym_where] = ACTIONS(3572), - [anon_sym_notnull] = ACTIONS(3572), - [anon_sym_unmanaged] = ACTIONS(3572), - [anon_sym_checked] = ACTIONS(3572), - [anon_sym_BANG] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3574), - [anon_sym_PLUS_PLUS] = ACTIONS(3574), - [anon_sym_DASH_DASH] = ACTIONS(3574), - [anon_sym_true] = ACTIONS(3572), - [anon_sym_false] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_STAR] = ACTIONS(3574), - [anon_sym_CARET] = ACTIONS(3574), - [anon_sym_AMP] = ACTIONS(3574), - [anon_sym_this] = ACTIONS(3572), - [anon_sym_scoped] = ACTIONS(3572), - [anon_sym_base] = ACTIONS(3572), - [anon_sym_var] = ACTIONS(3572), - [sym_predefined_type] = ACTIONS(3572), - [anon_sym_break] = ACTIONS(3572), - [anon_sym_unchecked] = ACTIONS(3572), - [anon_sym_continue] = ACTIONS(3572), - [anon_sym_do] = ACTIONS(3572), - [anon_sym_while] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3572), - [anon_sym_lock] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3572), - [anon_sym_switch] = ACTIONS(3572), - [anon_sym_default] = ACTIONS(3572), - [anon_sym_throw] = ACTIONS(3572), - [anon_sym_try] = ACTIONS(3572), - [anon_sym_when] = ACTIONS(3572), - [anon_sym_await] = ACTIONS(3572), - [anon_sym_foreach] = ACTIONS(3572), - [anon_sym_goto] = ACTIONS(3572), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_else] = ACTIONS(3572), - [anon_sym_DOT_DOT] = ACTIONS(3574), - [anon_sym_from] = ACTIONS(3572), - [anon_sym_into] = ACTIONS(3572), - [anon_sym_join] = ACTIONS(3572), - [anon_sym_on] = ACTIONS(3572), - [anon_sym_equals] = ACTIONS(3572), - [anon_sym_let] = ACTIONS(3572), - [anon_sym_orderby] = ACTIONS(3572), - [anon_sym_ascending] = ACTIONS(3572), - [anon_sym_descending] = ACTIONS(3572), - [anon_sym_group] = ACTIONS(3572), - [anon_sym_by] = ACTIONS(3572), - [anon_sym_select] = ACTIONS(3572), - [anon_sym_stackalloc] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3572), - [anon_sym_typeof] = ACTIONS(3572), - [anon_sym___makeref] = ACTIONS(3572), - [anon_sym___reftype] = ACTIONS(3572), - [anon_sym___refvalue] = ACTIONS(3572), - [sym_null_literal] = ACTIONS(3572), - [anon_sym_SQUOTE] = ACTIONS(3574), - [sym_integer_literal] = ACTIONS(3572), - [sym_real_literal] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [sym_verbatim_string_literal] = ACTIONS(3574), - [sym_grit_metavariable] = ACTIONS(3574), - [aux_sym_preproc_if_token1] = ACTIONS(3574), + [ts_builtin_sym_end] = ACTIONS(3474), + [sym__identifier_token] = ACTIONS(3472), + [anon_sym_extern] = ACTIONS(3472), + [anon_sym_alias] = ACTIONS(3472), + [anon_sym_SEMI] = ACTIONS(3474), + [anon_sym_global] = ACTIONS(3472), + [anon_sym_using] = ACTIONS(3472), + [anon_sym_unsafe] = ACTIONS(3472), + [anon_sym_static] = ACTIONS(3472), + [anon_sym_LBRACK] = ACTIONS(3474), + [anon_sym_LPAREN] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3472), + [anon_sym_namespace] = ACTIONS(3472), + [anon_sym_class] = ACTIONS(3472), + [anon_sym_ref] = ACTIONS(3472), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_enum] = ACTIONS(3472), + [anon_sym_LBRACE] = ACTIONS(3474), + [anon_sym_interface] = ACTIONS(3472), + [anon_sym_delegate] = ACTIONS(3472), + [anon_sym_record] = ACTIONS(3472), + [anon_sym_public] = ACTIONS(3472), + [anon_sym_private] = ACTIONS(3472), + [anon_sym_readonly] = ACTIONS(3472), + [anon_sym_abstract] = ACTIONS(3472), + [anon_sym_async] = ACTIONS(3472), + [anon_sym_const] = ACTIONS(3472), + [anon_sym_file] = ACTIONS(3472), + [anon_sym_fixed] = ACTIONS(3472), + [anon_sym_internal] = ACTIONS(3472), + [anon_sym_new] = ACTIONS(3472), + [anon_sym_override] = ACTIONS(3472), + [anon_sym_partial] = ACTIONS(3472), + [anon_sym_protected] = ACTIONS(3472), + [anon_sym_required] = ACTIONS(3472), + [anon_sym_sealed] = ACTIONS(3472), + [anon_sym_virtual] = ACTIONS(3472), + [anon_sym_volatile] = ACTIONS(3472), + [anon_sym_where] = ACTIONS(3472), + [anon_sym_notnull] = ACTIONS(3472), + [anon_sym_unmanaged] = ACTIONS(3472), + [anon_sym_checked] = ACTIONS(3472), + [anon_sym_TILDE] = ACTIONS(3474), + [anon_sym_this] = ACTIONS(3472), + [anon_sym_scoped] = ACTIONS(3472), + [anon_sym_base] = ACTIONS(3472), + [anon_sym_var] = ACTIONS(3472), + [anon_sym_STAR] = ACTIONS(3474), + [sym_predefined_type] = ACTIONS(3472), + [anon_sym_break] = ACTIONS(3472), + [anon_sym_unchecked] = ACTIONS(3472), + [anon_sym_continue] = ACTIONS(3472), + [anon_sym_do] = ACTIONS(3472), + [anon_sym_while] = ACTIONS(3472), + [anon_sym_for] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3472), + [anon_sym_yield] = ACTIONS(3472), + [anon_sym_switch] = ACTIONS(3472), + [anon_sym_default] = ACTIONS(3472), + [anon_sym_throw] = ACTIONS(3472), + [anon_sym_try] = ACTIONS(3472), + [anon_sym_when] = ACTIONS(3472), + [anon_sym_await] = ACTIONS(3472), + [anon_sym_foreach] = ACTIONS(3472), + [anon_sym_goto] = ACTIONS(3472), + [anon_sym_if] = ACTIONS(3472), + [anon_sym_else] = ACTIONS(3472), + [anon_sym_DOT_DOT] = ACTIONS(3474), + [anon_sym_AMP] = ACTIONS(3474), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_PLUS] = ACTIONS(3472), + [anon_sym_DASH] = ACTIONS(3472), + [anon_sym_BANG] = ACTIONS(3474), + [anon_sym_PLUS_PLUS] = ACTIONS(3474), + [anon_sym_DASH_DASH] = ACTIONS(3474), + [anon_sym_true] = ACTIONS(3472), + [anon_sym_false] = ACTIONS(3472), + [anon_sym_from] = ACTIONS(3472), + [anon_sym_into] = ACTIONS(3472), + [anon_sym_join] = ACTIONS(3472), + [anon_sym_on] = ACTIONS(3472), + [anon_sym_equals] = ACTIONS(3472), + [anon_sym_let] = ACTIONS(3472), + [anon_sym_orderby] = ACTIONS(3472), + [anon_sym_ascending] = ACTIONS(3472), + [anon_sym_descending] = ACTIONS(3472), + [anon_sym_group] = ACTIONS(3472), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_stackalloc] = ACTIONS(3472), + [anon_sym_sizeof] = ACTIONS(3472), + [anon_sym_typeof] = ACTIONS(3472), + [anon_sym___makeref] = ACTIONS(3472), + [anon_sym___reftype] = ACTIONS(3472), + [anon_sym___refvalue] = ACTIONS(3472), + [sym_null_literal] = ACTIONS(3472), + [anon_sym_SQUOTE] = ACTIONS(3474), + [sym_integer_literal] = ACTIONS(3472), + [sym_real_literal] = ACTIONS(3474), + [anon_sym_DQUOTE] = ACTIONS(3474), + [sym_verbatim_string_literal] = ACTIONS(3474), + [sym_grit_metavariable] = ACTIONS(3474), + [aux_sym_preproc_if_token1] = ACTIONS(3474), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396415,10 +396437,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(3574), - [sym_interpolation_verbatim_start] = ACTIONS(3574), - [sym_interpolation_raw_start] = ACTIONS(3574), - [sym_raw_string_start] = ACTIONS(3574), + [sym_interpolation_regular_start] = ACTIONS(3474), + [sym_interpolation_verbatim_start] = ACTIONS(3474), + [sym_interpolation_raw_start] = ACTIONS(3474), + [sym_raw_string_start] = ACTIONS(3474), }, [2080] = { [sym_preproc_region] = STATE(2080), @@ -396430,108 +396452,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2080), [sym_preproc_define] = STATE(2080), [sym_preproc_undef] = STATE(2080), - [ts_builtin_sym_end] = ACTIONS(3662), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_extern] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_using] = ACTIONS(3660), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_static] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3660), - [anon_sym_namespace] = ACTIONS(3660), - [anon_sym_class] = ACTIONS(3660), - [anon_sym_ref] = ACTIONS(3660), - [anon_sym_struct] = ACTIONS(3660), - [anon_sym_enum] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_interface] = ACTIONS(3660), - [anon_sym_delegate] = ACTIONS(3660), - [anon_sym_record] = ACTIONS(3660), - [anon_sym_public] = ACTIONS(3660), - [anon_sym_private] = ACTIONS(3660), - [anon_sym_readonly] = ACTIONS(3660), - [anon_sym_abstract] = ACTIONS(3660), - [anon_sym_async] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_fixed] = ACTIONS(3660), - [anon_sym_internal] = ACTIONS(3660), - [anon_sym_new] = ACTIONS(3660), - [anon_sym_override] = ACTIONS(3660), - [anon_sym_partial] = ACTIONS(3660), - [anon_sym_protected] = ACTIONS(3660), - [anon_sym_required] = ACTIONS(3660), - [anon_sym_sealed] = ACTIONS(3660), - [anon_sym_virtual] = ACTIONS(3660), - [anon_sym_volatile] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_checked] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_TILDE] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_true] = ACTIONS(3660), - [anon_sym_false] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_this] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_base] = ACTIONS(3660), - [anon_sym_var] = ACTIONS(3660), - [sym_predefined_type] = ACTIONS(3660), - [anon_sym_break] = ACTIONS(3660), - [anon_sym_unchecked] = ACTIONS(3660), - [anon_sym_continue] = ACTIONS(3660), - [anon_sym_do] = ACTIONS(3660), - [anon_sym_while] = ACTIONS(3660), - [anon_sym_for] = ACTIONS(3660), - [anon_sym_lock] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_default] = ACTIONS(3660), - [anon_sym_throw] = ACTIONS(3660), - [anon_sym_try] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [anon_sym_await] = ACTIONS(3660), - [anon_sym_foreach] = ACTIONS(3660), - [anon_sym_goto] = ACTIONS(3660), - [anon_sym_if] = ACTIONS(3660), - [anon_sym_DOT_DOT] = 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_stackalloc] = ACTIONS(3660), - [anon_sym_sizeof] = ACTIONS(3660), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym___makeref] = ACTIONS(3660), - [anon_sym___reftype] = ACTIONS(3660), - [anon_sym___refvalue] = ACTIONS(3660), - [sym_null_literal] = ACTIONS(3660), - [anon_sym_SQUOTE] = ACTIONS(3662), - [sym_integer_literal] = ACTIONS(3660), - [sym_real_literal] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3662), - [sym_verbatim_string_literal] = ACTIONS(3662), - [sym_grit_metavariable] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), + [ts_builtin_sym_end] = ACTIONS(3618), + [sym__identifier_token] = ACTIONS(3616), + [anon_sym_extern] = ACTIONS(3616), + [anon_sym_alias] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_global] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_unsafe] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_ref] = ACTIONS(3616), + [anon_sym_struct] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3616), + [anon_sym_delegate] = ACTIONS(3616), + [anon_sym_record] = ACTIONS(3616), + [anon_sym_public] = ACTIONS(3616), + [anon_sym_private] = ACTIONS(3616), + [anon_sym_readonly] = ACTIONS(3616), + [anon_sym_abstract] = ACTIONS(3616), + [anon_sym_async] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_file] = ACTIONS(3616), + [anon_sym_fixed] = ACTIONS(3616), + [anon_sym_internal] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_override] = ACTIONS(3616), + [anon_sym_partial] = ACTIONS(3616), + [anon_sym_protected] = ACTIONS(3616), + [anon_sym_required] = ACTIONS(3616), + [anon_sym_sealed] = ACTIONS(3616), + [anon_sym_virtual] = ACTIONS(3616), + [anon_sym_volatile] = ACTIONS(3616), + [anon_sym_where] = ACTIONS(3616), + [anon_sym_notnull] = ACTIONS(3616), + [anon_sym_unmanaged] = ACTIONS(3616), + [anon_sym_checked] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_this] = ACTIONS(3616), + [anon_sym_scoped] = ACTIONS(3616), + [anon_sym_base] = ACTIONS(3616), + [anon_sym_var] = ACTIONS(3616), + [anon_sym_STAR] = ACTIONS(3618), + [sym_predefined_type] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_unchecked] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_lock] = ACTIONS(3616), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_default] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(3616), + [anon_sym_await] = ACTIONS(3616), + [anon_sym_foreach] = ACTIONS(3616), + [anon_sym_goto] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_CARET] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [anon_sym_true] = ACTIONS(3616), + [anon_sym_false] = 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_ascending] = ACTIONS(3616), + [anon_sym_descending] = ACTIONS(3616), + [anon_sym_group] = ACTIONS(3616), + [anon_sym_by] = ACTIONS(3616), + [anon_sym_select] = ACTIONS(3616), + [anon_sym_stackalloc] = ACTIONS(3616), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym_typeof] = ACTIONS(3616), + [anon_sym___makeref] = ACTIONS(3616), + [anon_sym___reftype] = ACTIONS(3616), + [anon_sym___refvalue] = ACTIONS(3616), + [sym_null_literal] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3618), + [sym_integer_literal] = ACTIONS(3616), + [sym_real_literal] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [sym_verbatim_string_literal] = ACTIONS(3618), + [sym_grit_metavariable] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396542,10 +396564,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(3662), - [sym_interpolation_verbatim_start] = ACTIONS(3662), - [sym_interpolation_raw_start] = ACTIONS(3662), - [sym_raw_string_start] = ACTIONS(3662), + [sym_interpolation_regular_start] = ACTIONS(3618), + [sym_interpolation_verbatim_start] = ACTIONS(3618), + [sym_interpolation_raw_start] = ACTIONS(3618), + [sym_raw_string_start] = ACTIONS(3618), }, [2081] = { [sym_preproc_region] = STATE(2081), @@ -396557,108 +396579,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2081), [sym_preproc_define] = STATE(2081), [sym_preproc_undef] = STATE(2081), - [ts_builtin_sym_end] = ACTIONS(3598), - [sym__identifier_token] = ACTIONS(3596), - [anon_sym_extern] = ACTIONS(3596), - [anon_sym_alias] = ACTIONS(3596), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_global] = ACTIONS(3596), - [anon_sym_using] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3596), - [anon_sym_static] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_return] = ACTIONS(3596), - [anon_sym_namespace] = ACTIONS(3596), - [anon_sym_class] = ACTIONS(3596), - [anon_sym_ref] = ACTIONS(3596), - [anon_sym_struct] = ACTIONS(3596), - [anon_sym_enum] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_interface] = ACTIONS(3596), - [anon_sym_delegate] = ACTIONS(3596), - [anon_sym_record] = ACTIONS(3596), - [anon_sym_public] = ACTIONS(3596), - [anon_sym_private] = ACTIONS(3596), - [anon_sym_readonly] = ACTIONS(3596), - [anon_sym_abstract] = ACTIONS(3596), - [anon_sym_async] = ACTIONS(3596), - [anon_sym_const] = ACTIONS(3596), - [anon_sym_file] = ACTIONS(3596), - [anon_sym_fixed] = ACTIONS(3596), - [anon_sym_internal] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3596), - [anon_sym_override] = ACTIONS(3596), - [anon_sym_partial] = ACTIONS(3596), - [anon_sym_protected] = ACTIONS(3596), - [anon_sym_required] = ACTIONS(3596), - [anon_sym_sealed] = ACTIONS(3596), - [anon_sym_virtual] = ACTIONS(3596), - [anon_sym_volatile] = ACTIONS(3596), - [anon_sym_where] = ACTIONS(3596), - [anon_sym_notnull] = ACTIONS(3596), - [anon_sym_unmanaged] = ACTIONS(3596), - [anon_sym_checked] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_true] = ACTIONS(3596), - [anon_sym_false] = ACTIONS(3596), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3598), - [anon_sym_CARET] = ACTIONS(3598), - [anon_sym_AMP] = ACTIONS(3598), - [anon_sym_this] = ACTIONS(3596), - [anon_sym_scoped] = ACTIONS(3596), - [anon_sym_base] = ACTIONS(3596), - [anon_sym_var] = ACTIONS(3596), - [sym_predefined_type] = ACTIONS(3596), - [anon_sym_break] = ACTIONS(3596), - [anon_sym_unchecked] = ACTIONS(3596), - [anon_sym_continue] = ACTIONS(3596), - [anon_sym_do] = ACTIONS(3596), - [anon_sym_while] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3596), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_default] = ACTIONS(3596), - [anon_sym_throw] = ACTIONS(3596), - [anon_sym_try] = ACTIONS(3596), - [anon_sym_when] = ACTIONS(3596), - [anon_sym_await] = ACTIONS(3596), - [anon_sym_foreach] = ACTIONS(3596), - [anon_sym_goto] = ACTIONS(3596), - [anon_sym_if] = ACTIONS(3596), - [anon_sym_DOT_DOT] = 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_stackalloc] = ACTIONS(3596), - [anon_sym_sizeof] = ACTIONS(3596), - [anon_sym_typeof] = ACTIONS(3596), - [anon_sym___makeref] = ACTIONS(3596), - [anon_sym___reftype] = ACTIONS(3596), - [anon_sym___refvalue] = ACTIONS(3596), - [sym_null_literal] = ACTIONS(3596), - [anon_sym_SQUOTE] = ACTIONS(3598), - [sym_integer_literal] = ACTIONS(3596), - [sym_real_literal] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [sym_verbatim_string_literal] = ACTIONS(3598), - [sym_grit_metavariable] = ACTIONS(3598), - [aux_sym_preproc_if_token1] = ACTIONS(3598), + [ts_builtin_sym_end] = ACTIONS(3638), + [sym__identifier_token] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym_alias] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_unsafe] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_ref] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_interface] = ACTIONS(3636), + [anon_sym_delegate] = ACTIONS(3636), + [anon_sym_record] = ACTIONS(3636), + [anon_sym_public] = ACTIONS(3636), + [anon_sym_private] = ACTIONS(3636), + [anon_sym_readonly] = ACTIONS(3636), + [anon_sym_abstract] = ACTIONS(3636), + [anon_sym_async] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_file] = ACTIONS(3636), + [anon_sym_fixed] = ACTIONS(3636), + [anon_sym_internal] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_override] = ACTIONS(3636), + [anon_sym_partial] = ACTIONS(3636), + [anon_sym_protected] = ACTIONS(3636), + [anon_sym_required] = ACTIONS(3636), + [anon_sym_sealed] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_where] = ACTIONS(3636), + [anon_sym_notnull] = ACTIONS(3636), + [anon_sym_unmanaged] = ACTIONS(3636), + [anon_sym_checked] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_this] = ACTIONS(3636), + [anon_sym_scoped] = ACTIONS(3636), + [anon_sym_base] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3636), + [anon_sym_STAR] = ACTIONS(3638), + [sym_predefined_type] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_unchecked] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_lock] = ACTIONS(3636), + [anon_sym_yield] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_default] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_when] = ACTIONS(3636), + [anon_sym_await] = ACTIONS(3636), + [anon_sym_foreach] = ACTIONS(3636), + [anon_sym_goto] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_DOT_DOT] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [anon_sym_true] = ACTIONS(3636), + [anon_sym_false] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3636), + [anon_sym_into] = ACTIONS(3636), + [anon_sym_join] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_equals] = ACTIONS(3636), + [anon_sym_let] = ACTIONS(3636), + [anon_sym_orderby] = ACTIONS(3636), + [anon_sym_ascending] = ACTIONS(3636), + [anon_sym_descending] = ACTIONS(3636), + [anon_sym_group] = ACTIONS(3636), + [anon_sym_by] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3636), + [anon_sym_stackalloc] = ACTIONS(3636), + [anon_sym_sizeof] = ACTIONS(3636), + [anon_sym_typeof] = ACTIONS(3636), + [anon_sym___makeref] = ACTIONS(3636), + [anon_sym___reftype] = ACTIONS(3636), + [anon_sym___refvalue] = ACTIONS(3636), + [sym_null_literal] = ACTIONS(3636), + [anon_sym_SQUOTE] = ACTIONS(3638), + [sym_integer_literal] = ACTIONS(3636), + [sym_real_literal] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [sym_verbatim_string_literal] = ACTIONS(3638), + [sym_grit_metavariable] = ACTIONS(3638), + [aux_sym_preproc_if_token1] = ACTIONS(3638), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396669,10 +396691,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(3598), - [sym_interpolation_verbatim_start] = ACTIONS(3598), - [sym_interpolation_raw_start] = ACTIONS(3598), - [sym_raw_string_start] = ACTIONS(3598), + [sym_interpolation_regular_start] = ACTIONS(3638), + [sym_interpolation_verbatim_start] = ACTIONS(3638), + [sym_interpolation_raw_start] = ACTIONS(3638), + [sym_raw_string_start] = ACTIONS(3638), }, [2082] = { [sym_preproc_region] = STATE(2082), @@ -396684,108 +396706,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2082), [sym_preproc_define] = STATE(2082), [sym_preproc_undef] = STATE(2082), - [ts_builtin_sym_end] = ACTIONS(3658), - [sym__identifier_token] = ACTIONS(3656), - [anon_sym_extern] = ACTIONS(3656), - [anon_sym_alias] = ACTIONS(3656), - [anon_sym_SEMI] = ACTIONS(3658), - [anon_sym_global] = ACTIONS(3656), - [anon_sym_using] = ACTIONS(3656), - [anon_sym_unsafe] = ACTIONS(3656), - [anon_sym_static] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_return] = ACTIONS(3656), - [anon_sym_namespace] = ACTIONS(3656), - [anon_sym_class] = ACTIONS(3656), - [anon_sym_ref] = ACTIONS(3656), - [anon_sym_struct] = ACTIONS(3656), - [anon_sym_enum] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_interface] = ACTIONS(3656), - [anon_sym_delegate] = ACTIONS(3656), - [anon_sym_record] = ACTIONS(3656), - [anon_sym_public] = ACTIONS(3656), - [anon_sym_private] = ACTIONS(3656), - [anon_sym_readonly] = ACTIONS(3656), - [anon_sym_abstract] = ACTIONS(3656), - [anon_sym_async] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_file] = ACTIONS(3656), - [anon_sym_fixed] = ACTIONS(3656), - [anon_sym_internal] = ACTIONS(3656), - [anon_sym_new] = ACTIONS(3656), - [anon_sym_override] = ACTIONS(3656), - [anon_sym_partial] = ACTIONS(3656), - [anon_sym_protected] = ACTIONS(3656), - [anon_sym_required] = ACTIONS(3656), - [anon_sym_sealed] = ACTIONS(3656), - [anon_sym_virtual] = ACTIONS(3656), - [anon_sym_volatile] = ACTIONS(3656), - [anon_sym_where] = ACTIONS(3656), - [anon_sym_notnull] = ACTIONS(3656), - [anon_sym_unmanaged] = ACTIONS(3656), - [anon_sym_checked] = ACTIONS(3656), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3658), - [anon_sym_DASH_DASH] = ACTIONS(3658), - [anon_sym_true] = ACTIONS(3656), - [anon_sym_false] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3656), - [anon_sym_DASH] = ACTIONS(3656), - [anon_sym_STAR] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_this] = ACTIONS(3656), - [anon_sym_scoped] = ACTIONS(3656), - [anon_sym_base] = ACTIONS(3656), - [anon_sym_var] = ACTIONS(3656), - [sym_predefined_type] = ACTIONS(3656), - [anon_sym_break] = ACTIONS(3656), - [anon_sym_unchecked] = ACTIONS(3656), - [anon_sym_continue] = ACTIONS(3656), - [anon_sym_do] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3656), - [anon_sym_for] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3656), - [anon_sym_yield] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_default] = ACTIONS(3656), - [anon_sym_throw] = ACTIONS(3656), - [anon_sym_try] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(3656), - [anon_sym_await] = ACTIONS(3656), - [anon_sym_foreach] = ACTIONS(3656), - [anon_sym_goto] = ACTIONS(3656), - [anon_sym_if] = ACTIONS(3656), - [anon_sym_DOT_DOT] = ACTIONS(3658), - [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_ascending] = ACTIONS(3656), - [anon_sym_descending] = ACTIONS(3656), - [anon_sym_group] = ACTIONS(3656), - [anon_sym_by] = ACTIONS(3656), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_stackalloc] = ACTIONS(3656), - [anon_sym_sizeof] = ACTIONS(3656), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym___makeref] = ACTIONS(3656), - [anon_sym___reftype] = ACTIONS(3656), - [anon_sym___refvalue] = ACTIONS(3656), - [sym_null_literal] = ACTIONS(3656), - [anon_sym_SQUOTE] = ACTIONS(3658), - [sym_integer_literal] = ACTIONS(3656), - [sym_real_literal] = ACTIONS(3658), - [anon_sym_DQUOTE] = ACTIONS(3658), - [sym_verbatim_string_literal] = ACTIONS(3658), - [sym_grit_metavariable] = ACTIONS(3658), - [aux_sym_preproc_if_token1] = ACTIONS(3658), + [ts_builtin_sym_end] = ACTIONS(3634), + [sym__identifier_token] = ACTIONS(3632), + [anon_sym_extern] = ACTIONS(3632), + [anon_sym_alias] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_global] = ACTIONS(3632), + [anon_sym_using] = ACTIONS(3632), + [anon_sym_unsafe] = ACTIONS(3632), + [anon_sym_static] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3634), + [anon_sym_LPAREN] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3632), + [anon_sym_namespace] = ACTIONS(3632), + [anon_sym_class] = ACTIONS(3632), + [anon_sym_ref] = ACTIONS(3632), + [anon_sym_struct] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3634), + [anon_sym_interface] = ACTIONS(3632), + [anon_sym_delegate] = ACTIONS(3632), + [anon_sym_record] = ACTIONS(3632), + [anon_sym_public] = ACTIONS(3632), + [anon_sym_private] = ACTIONS(3632), + [anon_sym_readonly] = ACTIONS(3632), + [anon_sym_abstract] = ACTIONS(3632), + [anon_sym_async] = ACTIONS(3632), + [anon_sym_const] = ACTIONS(3632), + [anon_sym_file] = ACTIONS(3632), + [anon_sym_fixed] = ACTIONS(3632), + [anon_sym_internal] = ACTIONS(3632), + [anon_sym_new] = ACTIONS(3632), + [anon_sym_override] = ACTIONS(3632), + [anon_sym_partial] = ACTIONS(3632), + [anon_sym_protected] = ACTIONS(3632), + [anon_sym_required] = ACTIONS(3632), + [anon_sym_sealed] = ACTIONS(3632), + [anon_sym_virtual] = ACTIONS(3632), + [anon_sym_volatile] = ACTIONS(3632), + [anon_sym_where] = ACTIONS(3632), + [anon_sym_notnull] = ACTIONS(3632), + [anon_sym_unmanaged] = ACTIONS(3632), + [anon_sym_checked] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3634), + [anon_sym_this] = ACTIONS(3632), + [anon_sym_scoped] = ACTIONS(3632), + [anon_sym_base] = ACTIONS(3632), + [anon_sym_var] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3634), + [sym_predefined_type] = ACTIONS(3632), + [anon_sym_break] = ACTIONS(3632), + [anon_sym_unchecked] = ACTIONS(3632), + [anon_sym_continue] = ACTIONS(3632), + [anon_sym_do] = ACTIONS(3632), + [anon_sym_while] = ACTIONS(3632), + [anon_sym_for] = ACTIONS(3632), + [anon_sym_lock] = ACTIONS(3632), + [anon_sym_yield] = ACTIONS(3632), + [anon_sym_switch] = ACTIONS(3632), + [anon_sym_default] = ACTIONS(3632), + [anon_sym_throw] = ACTIONS(3632), + [anon_sym_try] = ACTIONS(3632), + [anon_sym_when] = ACTIONS(3632), + [anon_sym_await] = ACTIONS(3632), + [anon_sym_foreach] = ACTIONS(3632), + [anon_sym_goto] = ACTIONS(3632), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_CARET] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3634), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [anon_sym_from] = ACTIONS(3632), + [anon_sym_into] = ACTIONS(3632), + [anon_sym_join] = ACTIONS(3632), + [anon_sym_on] = ACTIONS(3632), + [anon_sym_equals] = ACTIONS(3632), + [anon_sym_let] = ACTIONS(3632), + [anon_sym_orderby] = ACTIONS(3632), + [anon_sym_ascending] = ACTIONS(3632), + [anon_sym_descending] = ACTIONS(3632), + [anon_sym_group] = ACTIONS(3632), + [anon_sym_by] = ACTIONS(3632), + [anon_sym_select] = ACTIONS(3632), + [anon_sym_stackalloc] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3632), + [anon_sym_typeof] = ACTIONS(3632), + [anon_sym___makeref] = ACTIONS(3632), + [anon_sym___reftype] = ACTIONS(3632), + [anon_sym___refvalue] = ACTIONS(3632), + [sym_null_literal] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3634), + [sym_integer_literal] = ACTIONS(3632), + [sym_real_literal] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(3634), + [sym_verbatim_string_literal] = ACTIONS(3634), + [sym_grit_metavariable] = ACTIONS(3634), + [aux_sym_preproc_if_token1] = ACTIONS(3634), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396796,10 +396818,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(3658), - [sym_interpolation_verbatim_start] = ACTIONS(3658), - [sym_interpolation_raw_start] = ACTIONS(3658), - [sym_raw_string_start] = ACTIONS(3658), + [sym_interpolation_regular_start] = ACTIONS(3634), + [sym_interpolation_verbatim_start] = ACTIONS(3634), + [sym_interpolation_raw_start] = ACTIONS(3634), + [sym_raw_string_start] = ACTIONS(3634), }, [2083] = { [sym_preproc_region] = STATE(2083), @@ -396811,235 +396833,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2083), [sym_preproc_define] = STATE(2083), [sym_preproc_undef] = STATE(2083), - [ts_builtin_sym_end] = ACTIONS(3720), - [sym__identifier_token] = ACTIONS(3722), - [anon_sym_extern] = ACTIONS(3722), - [anon_sym_alias] = ACTIONS(3722), - [anon_sym_SEMI] = ACTIONS(3720), - [anon_sym_global] = ACTIONS(3722), - [anon_sym_using] = ACTIONS(3722), - [anon_sym_unsafe] = ACTIONS(3722), - [anon_sym_static] = ACTIONS(3722), - [anon_sym_LBRACK] = ACTIONS(3720), - [anon_sym_LPAREN] = ACTIONS(3720), - [anon_sym_return] = ACTIONS(3722), - [anon_sym_namespace] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3722), - [anon_sym_ref] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(3722), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_LBRACE] = ACTIONS(3720), - [anon_sym_interface] = ACTIONS(3722), - [anon_sym_delegate] = ACTIONS(3722), - [anon_sym_record] = ACTIONS(3722), - [anon_sym_public] = ACTIONS(3722), - [anon_sym_private] = ACTIONS(3722), - [anon_sym_readonly] = ACTIONS(3722), - [anon_sym_abstract] = ACTIONS(3722), - [anon_sym_async] = ACTIONS(3722), - [anon_sym_const] = ACTIONS(3722), - [anon_sym_file] = ACTIONS(3722), - [anon_sym_fixed] = ACTIONS(3722), - [anon_sym_internal] = ACTIONS(3722), - [anon_sym_new] = ACTIONS(3722), - [anon_sym_override] = ACTIONS(3722), - [anon_sym_partial] = ACTIONS(3722), - [anon_sym_protected] = ACTIONS(3722), - [anon_sym_required] = ACTIONS(3722), - [anon_sym_sealed] = ACTIONS(3722), - [anon_sym_virtual] = ACTIONS(3722), - [anon_sym_volatile] = ACTIONS(3722), - [anon_sym_where] = ACTIONS(3722), - [anon_sym_notnull] = ACTIONS(3722), - [anon_sym_unmanaged] = ACTIONS(3722), - [anon_sym_checked] = ACTIONS(3722), - [anon_sym_BANG] = ACTIONS(3720), - [anon_sym_TILDE] = ACTIONS(3720), - [anon_sym_PLUS_PLUS] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3720), - [anon_sym_true] = ACTIONS(3722), - [anon_sym_false] = ACTIONS(3722), - [anon_sym_PLUS] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3722), - [anon_sym_STAR] = ACTIONS(3720), - [anon_sym_CARET] = ACTIONS(3720), - [anon_sym_AMP] = ACTIONS(3720), - [anon_sym_this] = ACTIONS(3722), - [anon_sym_scoped] = ACTIONS(3722), - [anon_sym_base] = ACTIONS(3722), - [anon_sym_var] = ACTIONS(3722), - [sym_predefined_type] = ACTIONS(3722), - [anon_sym_break] = ACTIONS(3722), - [anon_sym_unchecked] = ACTIONS(3722), - [anon_sym_continue] = ACTIONS(3722), - [anon_sym_do] = ACTIONS(3722), - [anon_sym_while] = ACTIONS(3722), - [anon_sym_for] = ACTIONS(3722), - [anon_sym_lock] = ACTIONS(3722), - [anon_sym_yield] = ACTIONS(3722), - [anon_sym_switch] = ACTIONS(3722), - [anon_sym_default] = ACTIONS(3722), - [anon_sym_throw] = ACTIONS(3722), - [anon_sym_try] = ACTIONS(3722), - [anon_sym_when] = ACTIONS(3722), - [anon_sym_await] = ACTIONS(3722), - [anon_sym_foreach] = ACTIONS(3722), - [anon_sym_goto] = ACTIONS(3722), - [anon_sym_if] = ACTIONS(3722), - [anon_sym_DOT_DOT] = ACTIONS(3720), - [anon_sym_from] = ACTIONS(3722), - [anon_sym_into] = ACTIONS(3722), - [anon_sym_join] = ACTIONS(3722), - [anon_sym_on] = ACTIONS(3722), - [anon_sym_equals] = ACTIONS(3722), - [anon_sym_let] = ACTIONS(3722), - [anon_sym_orderby] = ACTIONS(3722), - [anon_sym_ascending] = ACTIONS(3722), - [anon_sym_descending] = ACTIONS(3722), - [anon_sym_group] = ACTIONS(3722), - [anon_sym_by] = ACTIONS(3722), - [anon_sym_select] = ACTIONS(3722), - [anon_sym_stackalloc] = ACTIONS(3722), - [anon_sym_sizeof] = ACTIONS(3722), - [anon_sym_typeof] = ACTIONS(3722), - [anon_sym___makeref] = ACTIONS(3722), - [anon_sym___reftype] = ACTIONS(3722), - [anon_sym___refvalue] = ACTIONS(3722), - [sym_null_literal] = ACTIONS(3722), - [anon_sym_SQUOTE] = ACTIONS(3720), - [sym_integer_literal] = ACTIONS(3722), - [sym_real_literal] = ACTIONS(3720), - [anon_sym_DQUOTE] = ACTIONS(3720), - [sym_verbatim_string_literal] = ACTIONS(3720), - [sym_grit_metavariable] = ACTIONS(3720), - [aux_sym_preproc_if_token1] = ACTIONS(3720), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3720), - [sym_interpolation_verbatim_start] = ACTIONS(3720), - [sym_interpolation_raw_start] = ACTIONS(3720), - [sym_raw_string_start] = ACTIONS(3720), - }, - [2084] = { - [sym_preproc_region] = STATE(2084), - [sym_preproc_endregion] = STATE(2084), - [sym_preproc_line] = STATE(2084), - [sym_preproc_pragma] = STATE(2084), - [sym_preproc_nullable] = STATE(2084), - [sym_preproc_error] = STATE(2084), - [sym_preproc_warning] = STATE(2084), - [sym_preproc_define] = STATE(2084), - [sym_preproc_undef] = STATE(2084), - [ts_builtin_sym_end] = ACTIONS(3586), - [sym__identifier_token] = ACTIONS(3584), - [anon_sym_extern] = ACTIONS(3584), - [anon_sym_alias] = ACTIONS(3584), - [anon_sym_SEMI] = ACTIONS(3586), - [anon_sym_global] = ACTIONS(3584), - [anon_sym_using] = ACTIONS(3584), - [anon_sym_unsafe] = ACTIONS(3584), - [anon_sym_static] = ACTIONS(3584), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3584), - [anon_sym_namespace] = ACTIONS(3584), - [anon_sym_class] = ACTIONS(3584), - [anon_sym_ref] = ACTIONS(3584), - [anon_sym_struct] = ACTIONS(3584), - [anon_sym_enum] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_interface] = ACTIONS(3584), - [anon_sym_delegate] = ACTIONS(3584), - [anon_sym_record] = ACTIONS(3584), - [anon_sym_public] = ACTIONS(3584), - [anon_sym_private] = ACTIONS(3584), - [anon_sym_readonly] = ACTIONS(3584), - [anon_sym_abstract] = ACTIONS(3584), - [anon_sym_async] = ACTIONS(3584), - [anon_sym_const] = ACTIONS(3584), - [anon_sym_file] = ACTIONS(3584), - [anon_sym_fixed] = ACTIONS(3584), - [anon_sym_internal] = ACTIONS(3584), - [anon_sym_new] = ACTIONS(3584), - [anon_sym_override] = ACTIONS(3584), - [anon_sym_partial] = ACTIONS(3584), - [anon_sym_protected] = ACTIONS(3584), - [anon_sym_required] = ACTIONS(3584), - [anon_sym_sealed] = ACTIONS(3584), - [anon_sym_virtual] = ACTIONS(3584), - [anon_sym_volatile] = ACTIONS(3584), - [anon_sym_where] = ACTIONS(3584), - [anon_sym_notnull] = ACTIONS(3584), - [anon_sym_unmanaged] = ACTIONS(3584), - [anon_sym_checked] = ACTIONS(3584), - [anon_sym_BANG] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3586), - [anon_sym_PLUS_PLUS] = ACTIONS(3586), - [anon_sym_DASH_DASH] = ACTIONS(3586), - [anon_sym_true] = ACTIONS(3584), - [anon_sym_false] = ACTIONS(3584), - [anon_sym_PLUS] = ACTIONS(3584), - [anon_sym_DASH] = ACTIONS(3584), - [anon_sym_STAR] = ACTIONS(3586), - [anon_sym_CARET] = ACTIONS(3586), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_this] = ACTIONS(3584), - [anon_sym_scoped] = ACTIONS(3584), - [anon_sym_base] = ACTIONS(3584), - [anon_sym_var] = ACTIONS(3584), - [sym_predefined_type] = ACTIONS(3584), - [anon_sym_break] = ACTIONS(3584), - [anon_sym_unchecked] = ACTIONS(3584), - [anon_sym_continue] = ACTIONS(3584), - [anon_sym_do] = ACTIONS(3584), - [anon_sym_while] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3584), - [anon_sym_lock] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3584), - [anon_sym_switch] = ACTIONS(3584), - [anon_sym_default] = ACTIONS(3584), - [anon_sym_throw] = ACTIONS(3584), - [anon_sym_try] = ACTIONS(3584), - [anon_sym_when] = ACTIONS(3584), - [anon_sym_await] = ACTIONS(3584), - [anon_sym_foreach] = ACTIONS(3584), - [anon_sym_goto] = ACTIONS(3584), - [anon_sym_if] = ACTIONS(3584), - [anon_sym_DOT_DOT] = ACTIONS(3586), - [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_stackalloc] = ACTIONS(3584), - [anon_sym_sizeof] = ACTIONS(3584), - [anon_sym_typeof] = ACTIONS(3584), - [anon_sym___makeref] = ACTIONS(3584), - [anon_sym___reftype] = ACTIONS(3584), - [anon_sym___refvalue] = ACTIONS(3584), - [sym_null_literal] = ACTIONS(3584), - [anon_sym_SQUOTE] = ACTIONS(3586), - [sym_integer_literal] = ACTIONS(3584), - [sym_real_literal] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [sym_verbatim_string_literal] = ACTIONS(3586), - [sym_grit_metavariable] = ACTIONS(3586), - [aux_sym_preproc_if_token1] = ACTIONS(3586), + [ts_builtin_sym_end] = ACTIONS(3582), + [sym__identifier_token] = ACTIONS(3580), + [anon_sym_extern] = ACTIONS(3580), + [anon_sym_alias] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_global] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LPAREN] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_ref] = ACTIONS(3580), + [anon_sym_struct] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_delegate] = ACTIONS(3580), + [anon_sym_record] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_file] = ACTIONS(3580), + [anon_sym_fixed] = ACTIONS(3580), + [anon_sym_internal] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_partial] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_sealed] = ACTIONS(3580), + [anon_sym_virtual] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(3580), + [anon_sym_notnull] = ACTIONS(3580), + [anon_sym_unmanaged] = ACTIONS(3580), + [anon_sym_checked] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_this] = ACTIONS(3580), + [anon_sym_scoped] = ACTIONS(3580), + [anon_sym_base] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_STAR] = ACTIONS(3582), + [sym_predefined_type] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_unchecked] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_lock] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_when] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_foreach] = ACTIONS(3580), + [anon_sym_goto] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_DOT_DOT] = ACTIONS(3582), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_CARET] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_true] = ACTIONS(3580), + [anon_sym_false] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_into] = ACTIONS(3580), + [anon_sym_join] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_equals] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_orderby] = ACTIONS(3580), + [anon_sym_ascending] = ACTIONS(3580), + [anon_sym_descending] = ACTIONS(3580), + [anon_sym_group] = ACTIONS(3580), + [anon_sym_by] = ACTIONS(3580), + [anon_sym_select] = ACTIONS(3580), + [anon_sym_stackalloc] = ACTIONS(3580), + [anon_sym_sizeof] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym___makeref] = ACTIONS(3580), + [anon_sym___reftype] = ACTIONS(3580), + [anon_sym___refvalue] = ACTIONS(3580), + [sym_null_literal] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3582), + [sym_integer_literal] = ACTIONS(3580), + [sym_real_literal] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [sym_verbatim_string_literal] = ACTIONS(3582), + [sym_grit_metavariable] = ACTIONS(3582), + [aux_sym_preproc_if_token1] = ACTIONS(3582), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397050,377 +396945,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3586), - [sym_interpolation_verbatim_start] = ACTIONS(3586), - [sym_interpolation_raw_start] = ACTIONS(3586), - [sym_raw_string_start] = ACTIONS(3586), + [sym_interpolation_regular_start] = ACTIONS(3582), + [sym_interpolation_verbatim_start] = ACTIONS(3582), + [sym_interpolation_raw_start] = ACTIONS(3582), + [sym_raw_string_start] = ACTIONS(3582), }, - [2085] = { - [sym_preproc_region] = STATE(2085), - [sym_preproc_endregion] = STATE(2085), - [sym_preproc_line] = STATE(2085), - [sym_preproc_pragma] = STATE(2085), - [sym_preproc_nullable] = STATE(2085), - [sym_preproc_error] = STATE(2085), - [sym_preproc_warning] = STATE(2085), - [sym_preproc_define] = STATE(2085), - [sym_preproc_undef] = STATE(2085), - [ts_builtin_sym_end] = ACTIONS(3724), - [sym__identifier_token] = ACTIONS(3726), - [anon_sym_extern] = ACTIONS(3726), - [anon_sym_alias] = ACTIONS(3726), - [anon_sym_SEMI] = ACTIONS(3724), - [anon_sym_global] = ACTIONS(3726), - [anon_sym_using] = ACTIONS(3726), - [anon_sym_unsafe] = ACTIONS(3726), - [anon_sym_static] = ACTIONS(3726), - [anon_sym_LBRACK] = ACTIONS(3724), - [anon_sym_LPAREN] = ACTIONS(3724), - [anon_sym_return] = ACTIONS(3726), - [anon_sym_namespace] = ACTIONS(3726), - [anon_sym_class] = ACTIONS(3726), - [anon_sym_ref] = ACTIONS(3726), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_enum] = ACTIONS(3726), - [anon_sym_LBRACE] = ACTIONS(3724), - [anon_sym_interface] = ACTIONS(3726), - [anon_sym_delegate] = ACTIONS(3726), - [anon_sym_record] = ACTIONS(3726), - [anon_sym_public] = ACTIONS(3726), - [anon_sym_private] = ACTIONS(3726), - [anon_sym_readonly] = ACTIONS(3726), - [anon_sym_abstract] = ACTIONS(3726), - [anon_sym_async] = ACTIONS(3726), - [anon_sym_const] = ACTIONS(3726), - [anon_sym_file] = ACTIONS(3726), - [anon_sym_fixed] = ACTIONS(3726), - [anon_sym_internal] = ACTIONS(3726), - [anon_sym_new] = ACTIONS(3726), - [anon_sym_override] = ACTIONS(3726), - [anon_sym_partial] = ACTIONS(3726), - [anon_sym_protected] = ACTIONS(3726), - [anon_sym_required] = ACTIONS(3726), - [anon_sym_sealed] = ACTIONS(3726), - [anon_sym_virtual] = ACTIONS(3726), - [anon_sym_volatile] = ACTIONS(3726), - [anon_sym_where] = ACTIONS(3726), - [anon_sym_notnull] = ACTIONS(3726), - [anon_sym_unmanaged] = ACTIONS(3726), - [anon_sym_checked] = ACTIONS(3726), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_TILDE] = ACTIONS(3724), - [anon_sym_PLUS_PLUS] = ACTIONS(3724), - [anon_sym_DASH_DASH] = ACTIONS(3724), - [anon_sym_true] = ACTIONS(3726), - [anon_sym_false] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3726), - [anon_sym_DASH] = ACTIONS(3726), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_CARET] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3724), - [anon_sym_this] = ACTIONS(3726), - [anon_sym_scoped] = ACTIONS(3726), - [anon_sym_base] = ACTIONS(3726), - [anon_sym_var] = ACTIONS(3726), - [sym_predefined_type] = ACTIONS(3726), - [anon_sym_break] = ACTIONS(3726), - [anon_sym_unchecked] = ACTIONS(3726), - [anon_sym_continue] = ACTIONS(3726), - [anon_sym_do] = ACTIONS(3726), - [anon_sym_while] = ACTIONS(3726), - [anon_sym_for] = ACTIONS(3726), - [anon_sym_lock] = ACTIONS(3726), - [anon_sym_yield] = ACTIONS(3726), - [anon_sym_switch] = ACTIONS(3726), - [anon_sym_default] = ACTIONS(3726), - [anon_sym_throw] = ACTIONS(3726), - [anon_sym_try] = ACTIONS(3726), - [anon_sym_when] = ACTIONS(3726), - [anon_sym_await] = ACTIONS(3726), - [anon_sym_foreach] = ACTIONS(3726), - [anon_sym_goto] = ACTIONS(3726), - [anon_sym_if] = ACTIONS(3726), - [anon_sym_DOT_DOT] = ACTIONS(3724), - [anon_sym_from] = ACTIONS(3726), - [anon_sym_into] = ACTIONS(3726), - [anon_sym_join] = ACTIONS(3726), - [anon_sym_on] = ACTIONS(3726), - [anon_sym_equals] = ACTIONS(3726), - [anon_sym_let] = ACTIONS(3726), - [anon_sym_orderby] = ACTIONS(3726), - [anon_sym_ascending] = ACTIONS(3726), - [anon_sym_descending] = ACTIONS(3726), - [anon_sym_group] = ACTIONS(3726), - [anon_sym_by] = ACTIONS(3726), - [anon_sym_select] = ACTIONS(3726), - [anon_sym_stackalloc] = ACTIONS(3726), - [anon_sym_sizeof] = ACTIONS(3726), - [anon_sym_typeof] = ACTIONS(3726), - [anon_sym___makeref] = ACTIONS(3726), - [anon_sym___reftype] = ACTIONS(3726), - [anon_sym___refvalue] = ACTIONS(3726), - [sym_null_literal] = ACTIONS(3726), - [anon_sym_SQUOTE] = ACTIONS(3724), - [sym_integer_literal] = ACTIONS(3726), - [sym_real_literal] = ACTIONS(3724), - [anon_sym_DQUOTE] = ACTIONS(3724), - [sym_verbatim_string_literal] = ACTIONS(3724), - [sym_grit_metavariable] = ACTIONS(3724), - [aux_sym_preproc_if_token1] = ACTIONS(3724), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3724), - [sym_interpolation_verbatim_start] = ACTIONS(3724), - [sym_interpolation_raw_start] = ACTIONS(3724), - [sym_raw_string_start] = ACTIONS(3724), - }, - [2086] = { - [sym_preproc_region] = STATE(2086), - [sym_preproc_endregion] = STATE(2086), - [sym_preproc_line] = STATE(2086), - [sym_preproc_pragma] = STATE(2086), - [sym_preproc_nullable] = STATE(2086), - [sym_preproc_error] = STATE(2086), - [sym_preproc_warning] = STATE(2086), - [sym_preproc_define] = STATE(2086), - [sym_preproc_undef] = STATE(2086), - [ts_builtin_sym_end] = ACTIONS(3614), - [sym__identifier_token] = ACTIONS(3612), - [anon_sym_extern] = ACTIONS(3612), - [anon_sym_alias] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3614), - [anon_sym_global] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_unsafe] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_ref] = ACTIONS(3612), - [anon_sym_struct] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_interface] = ACTIONS(3612), - [anon_sym_delegate] = ACTIONS(3612), - [anon_sym_record] = ACTIONS(3612), - [anon_sym_public] = ACTIONS(3612), - [anon_sym_private] = ACTIONS(3612), - [anon_sym_readonly] = ACTIONS(3612), - [anon_sym_abstract] = ACTIONS(3612), - [anon_sym_async] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_file] = ACTIONS(3612), - [anon_sym_fixed] = ACTIONS(3612), - [anon_sym_internal] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_override] = ACTIONS(3612), - [anon_sym_partial] = ACTIONS(3612), - [anon_sym_protected] = ACTIONS(3612), - [anon_sym_required] = ACTIONS(3612), - [anon_sym_sealed] = ACTIONS(3612), - [anon_sym_virtual] = ACTIONS(3612), - [anon_sym_volatile] = ACTIONS(3612), - [anon_sym_where] = ACTIONS(3612), - [anon_sym_notnull] = ACTIONS(3612), - [anon_sym_unmanaged] = ACTIONS(3612), - [anon_sym_checked] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3614), - [anon_sym_true] = ACTIONS(3612), - [anon_sym_false] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_STAR] = ACTIONS(3614), - [anon_sym_CARET] = ACTIONS(3614), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_this] = ACTIONS(3612), - [anon_sym_scoped] = ACTIONS(3612), - [anon_sym_base] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3612), - [sym_predefined_type] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_unchecked] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_lock] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_default] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_when] = ACTIONS(3612), - [anon_sym_await] = ACTIONS(3612), - [anon_sym_foreach] = ACTIONS(3612), - [anon_sym_goto] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_DOT_DOT] = ACTIONS(3614), - [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_stackalloc] = ACTIONS(3612), - [anon_sym_sizeof] = ACTIONS(3612), - [anon_sym_typeof] = ACTIONS(3612), - [anon_sym___makeref] = ACTIONS(3612), - [anon_sym___reftype] = ACTIONS(3612), - [anon_sym___refvalue] = ACTIONS(3612), - [sym_null_literal] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3614), - [sym_integer_literal] = ACTIONS(3612), - [sym_real_literal] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [sym_verbatim_string_literal] = ACTIONS(3614), - [sym_grit_metavariable] = ACTIONS(3614), - [aux_sym_preproc_if_token1] = ACTIONS(3614), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3614), - [sym_interpolation_verbatim_start] = ACTIONS(3614), - [sym_interpolation_raw_start] = ACTIONS(3614), - [sym_raw_string_start] = ACTIONS(3614), - }, - [2087] = { - [sym_preproc_region] = STATE(2087), - [sym_preproc_endregion] = STATE(2087), - [sym_preproc_line] = STATE(2087), - [sym_preproc_pragma] = STATE(2087), - [sym_preproc_nullable] = STATE(2087), - [sym_preproc_error] = STATE(2087), - [sym_preproc_warning] = STATE(2087), - [sym_preproc_define] = STATE(2087), - [sym_preproc_undef] = STATE(2087), - [ts_builtin_sym_end] = ACTIONS(3590), - [sym__identifier_token] = ACTIONS(3588), - [anon_sym_extern] = ACTIONS(3588), - [anon_sym_alias] = ACTIONS(3588), - [anon_sym_SEMI] = ACTIONS(3590), - [anon_sym_global] = ACTIONS(3588), - [anon_sym_using] = ACTIONS(3588), - [anon_sym_unsafe] = ACTIONS(3588), - [anon_sym_static] = ACTIONS(3588), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3588), - [anon_sym_namespace] = ACTIONS(3588), - [anon_sym_class] = ACTIONS(3588), - [anon_sym_ref] = ACTIONS(3588), - [anon_sym_struct] = ACTIONS(3588), - [anon_sym_enum] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_interface] = ACTIONS(3588), - [anon_sym_delegate] = ACTIONS(3588), - [anon_sym_record] = ACTIONS(3588), - [anon_sym_public] = ACTIONS(3588), - [anon_sym_private] = ACTIONS(3588), - [anon_sym_readonly] = ACTIONS(3588), - [anon_sym_abstract] = ACTIONS(3588), - [anon_sym_async] = ACTIONS(3588), - [anon_sym_const] = ACTIONS(3588), - [anon_sym_file] = ACTIONS(3588), - [anon_sym_fixed] = ACTIONS(3588), - [anon_sym_internal] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3588), - [anon_sym_override] = ACTIONS(3588), - [anon_sym_partial] = ACTIONS(3588), - [anon_sym_protected] = ACTIONS(3588), - [anon_sym_required] = ACTIONS(3588), - [anon_sym_sealed] = ACTIONS(3588), - [anon_sym_virtual] = ACTIONS(3588), - [anon_sym_volatile] = ACTIONS(3588), - [anon_sym_where] = ACTIONS(3588), - [anon_sym_notnull] = ACTIONS(3588), - [anon_sym_unmanaged] = ACTIONS(3588), - [anon_sym_checked] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_PLUS_PLUS] = ACTIONS(3590), - [anon_sym_DASH_DASH] = ACTIONS(3590), - [anon_sym_true] = ACTIONS(3588), - [anon_sym_false] = ACTIONS(3588), - [anon_sym_PLUS] = ACTIONS(3588), - [anon_sym_DASH] = ACTIONS(3588), - [anon_sym_STAR] = ACTIONS(3590), - [anon_sym_CARET] = ACTIONS(3590), - [anon_sym_AMP] = ACTIONS(3590), - [anon_sym_this] = ACTIONS(3588), - [anon_sym_scoped] = ACTIONS(3588), - [anon_sym_base] = ACTIONS(3588), - [anon_sym_var] = ACTIONS(3588), - [sym_predefined_type] = ACTIONS(3588), - [anon_sym_break] = ACTIONS(3588), - [anon_sym_unchecked] = ACTIONS(3588), - [anon_sym_continue] = ACTIONS(3588), - [anon_sym_do] = ACTIONS(3588), - [anon_sym_while] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3588), - [anon_sym_lock] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3588), - [anon_sym_switch] = ACTIONS(3588), - [anon_sym_default] = ACTIONS(3588), - [anon_sym_throw] = ACTIONS(3588), - [anon_sym_try] = ACTIONS(3588), - [anon_sym_when] = ACTIONS(3588), - [anon_sym_await] = ACTIONS(3588), - [anon_sym_foreach] = ACTIONS(3588), - [anon_sym_goto] = ACTIONS(3588), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3590), - [anon_sym_from] = ACTIONS(3588), - [anon_sym_into] = ACTIONS(3588), - [anon_sym_join] = ACTIONS(3588), - [anon_sym_on] = ACTIONS(3588), - [anon_sym_equals] = ACTIONS(3588), - [anon_sym_let] = ACTIONS(3588), - [anon_sym_orderby] = ACTIONS(3588), - [anon_sym_ascending] = ACTIONS(3588), - [anon_sym_descending] = ACTIONS(3588), - [anon_sym_group] = ACTIONS(3588), - [anon_sym_by] = ACTIONS(3588), - [anon_sym_select] = ACTIONS(3588), - [anon_sym_stackalloc] = ACTIONS(3588), - [anon_sym_sizeof] = ACTIONS(3588), - [anon_sym_typeof] = ACTIONS(3588), - [anon_sym___makeref] = ACTIONS(3588), - [anon_sym___reftype] = ACTIONS(3588), - [anon_sym___refvalue] = ACTIONS(3588), - [sym_null_literal] = ACTIONS(3588), - [anon_sym_SQUOTE] = ACTIONS(3590), - [sym_integer_literal] = ACTIONS(3588), - [sym_real_literal] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [sym_verbatim_string_literal] = ACTIONS(3590), - [sym_grit_metavariable] = ACTIONS(3590), - [aux_sym_preproc_if_token1] = ACTIONS(3590), + [2084] = { + [sym_preproc_region] = STATE(2084), + [sym_preproc_endregion] = STATE(2084), + [sym_preproc_line] = STATE(2084), + [sym_preproc_pragma] = STATE(2084), + [sym_preproc_nullable] = STATE(2084), + [sym_preproc_error] = STATE(2084), + [sym_preproc_warning] = STATE(2084), + [sym_preproc_define] = STATE(2084), + [sym_preproc_undef] = STATE(2084), + [ts_builtin_sym_end] = ACTIONS(3674), + [sym__identifier_token] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym_alias] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_global] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_unsafe] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_LPAREN] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_ref] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_interface] = ACTIONS(3672), + [anon_sym_delegate] = ACTIONS(3672), + [anon_sym_record] = ACTIONS(3672), + [anon_sym_public] = ACTIONS(3672), + [anon_sym_private] = ACTIONS(3672), + [anon_sym_readonly] = ACTIONS(3672), + [anon_sym_abstract] = ACTIONS(3672), + [anon_sym_async] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_file] = ACTIONS(3672), + [anon_sym_fixed] = ACTIONS(3672), + [anon_sym_internal] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_override] = ACTIONS(3672), + [anon_sym_partial] = ACTIONS(3672), + [anon_sym_protected] = ACTIONS(3672), + [anon_sym_required] = ACTIONS(3672), + [anon_sym_sealed] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_where] = ACTIONS(3672), + [anon_sym_notnull] = ACTIONS(3672), + [anon_sym_unmanaged] = ACTIONS(3672), + [anon_sym_checked] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_this] = ACTIONS(3672), + [anon_sym_scoped] = ACTIONS(3672), + [anon_sym_base] = ACTIONS(3672), + [anon_sym_var] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [sym_predefined_type] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_unchecked] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_lock] = ACTIONS(3672), + [anon_sym_yield] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_when] = ACTIONS(3672), + [anon_sym_await] = ACTIONS(3672), + [anon_sym_foreach] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_CARET] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_true] = ACTIONS(3672), + [anon_sym_false] = ACTIONS(3672), + [anon_sym_from] = ACTIONS(3672), + [anon_sym_into] = ACTIONS(3672), + [anon_sym_join] = ACTIONS(3672), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_equals] = ACTIONS(3672), + [anon_sym_let] = ACTIONS(3672), + [anon_sym_orderby] = ACTIONS(3672), + [anon_sym_ascending] = ACTIONS(3672), + [anon_sym_descending] = ACTIONS(3672), + [anon_sym_group] = ACTIONS(3672), + [anon_sym_by] = ACTIONS(3672), + [anon_sym_select] = ACTIONS(3672), + [anon_sym_stackalloc] = ACTIONS(3672), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym_typeof] = ACTIONS(3672), + [anon_sym___makeref] = ACTIONS(3672), + [anon_sym___reftype] = ACTIONS(3672), + [anon_sym___refvalue] = ACTIONS(3672), + [sym_null_literal] = ACTIONS(3672), + [anon_sym_SQUOTE] = ACTIONS(3674), + [sym_integer_literal] = ACTIONS(3672), + [sym_real_literal] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_verbatim_string_literal] = ACTIONS(3674), + [sym_grit_metavariable] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3674), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397431,123 +397072,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3590), - [sym_interpolation_verbatim_start] = ACTIONS(3590), - [sym_interpolation_raw_start] = ACTIONS(3590), - [sym_raw_string_start] = ACTIONS(3590), + [sym_interpolation_regular_start] = ACTIONS(3674), + [sym_interpolation_verbatim_start] = ACTIONS(3674), + [sym_interpolation_raw_start] = ACTIONS(3674), + [sym_raw_string_start] = ACTIONS(3674), }, - [2088] = { - [sym_preproc_region] = STATE(2088), - [sym_preproc_endregion] = STATE(2088), - [sym_preproc_line] = STATE(2088), - [sym_preproc_pragma] = STATE(2088), - [sym_preproc_nullable] = STATE(2088), - [sym_preproc_error] = STATE(2088), - [sym_preproc_warning] = STATE(2088), - [sym_preproc_define] = STATE(2088), - [sym_preproc_undef] = STATE(2088), - [ts_builtin_sym_end] = ACTIONS(3630), - [sym__identifier_token] = ACTIONS(3628), - [anon_sym_extern] = ACTIONS(3628), - [anon_sym_alias] = ACTIONS(3628), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_global] = ACTIONS(3628), - [anon_sym_using] = ACTIONS(3628), - [anon_sym_unsafe] = ACTIONS(3628), - [anon_sym_static] = ACTIONS(3628), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3628), - [anon_sym_namespace] = ACTIONS(3628), - [anon_sym_class] = ACTIONS(3628), - [anon_sym_ref] = ACTIONS(3628), - [anon_sym_struct] = ACTIONS(3628), - [anon_sym_enum] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_interface] = ACTIONS(3628), - [anon_sym_delegate] = ACTIONS(3628), - [anon_sym_record] = ACTIONS(3628), - [anon_sym_public] = ACTIONS(3628), - [anon_sym_private] = ACTIONS(3628), - [anon_sym_readonly] = ACTIONS(3628), - [anon_sym_abstract] = ACTIONS(3628), - [anon_sym_async] = ACTIONS(3628), - [anon_sym_const] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3628), - [anon_sym_fixed] = ACTIONS(3628), - [anon_sym_internal] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3628), - [anon_sym_override] = ACTIONS(3628), - [anon_sym_partial] = ACTIONS(3628), - [anon_sym_protected] = ACTIONS(3628), - [anon_sym_required] = ACTIONS(3628), - [anon_sym_sealed] = ACTIONS(3628), - [anon_sym_virtual] = ACTIONS(3628), - [anon_sym_volatile] = ACTIONS(3628), - [anon_sym_where] = ACTIONS(3628), - [anon_sym_notnull] = ACTIONS(3628), - [anon_sym_unmanaged] = ACTIONS(3628), - [anon_sym_checked] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3630), - [anon_sym_PLUS_PLUS] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3630), - [anon_sym_true] = ACTIONS(3628), - [anon_sym_false] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_CARET] = ACTIONS(3630), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_this] = ACTIONS(3628), - [anon_sym_scoped] = ACTIONS(3628), - [anon_sym_base] = ACTIONS(3628), - [anon_sym_var] = ACTIONS(3628), - [sym_predefined_type] = ACTIONS(3628), - [anon_sym_break] = ACTIONS(3628), - [anon_sym_unchecked] = ACTIONS(3628), - [anon_sym_continue] = ACTIONS(3628), - [anon_sym_do] = ACTIONS(3628), - [anon_sym_while] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3628), - [anon_sym_lock] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3628), - [anon_sym_switch] = ACTIONS(3628), - [anon_sym_default] = ACTIONS(3628), - [anon_sym_throw] = ACTIONS(3628), - [anon_sym_try] = ACTIONS(3628), - [anon_sym_when] = ACTIONS(3628), - [anon_sym_await] = ACTIONS(3628), - [anon_sym_foreach] = ACTIONS(3628), - [anon_sym_goto] = ACTIONS(3628), - [anon_sym_if] = ACTIONS(3628), - [anon_sym_DOT_DOT] = ACTIONS(3630), - [anon_sym_from] = ACTIONS(3628), - [anon_sym_into] = ACTIONS(3628), - [anon_sym_join] = ACTIONS(3628), - [anon_sym_on] = ACTIONS(3628), - [anon_sym_equals] = ACTIONS(3628), - [anon_sym_let] = ACTIONS(3628), - [anon_sym_orderby] = ACTIONS(3628), - [anon_sym_ascending] = ACTIONS(3628), - [anon_sym_descending] = ACTIONS(3628), - [anon_sym_group] = ACTIONS(3628), - [anon_sym_by] = ACTIONS(3628), - [anon_sym_select] = ACTIONS(3628), - [anon_sym_stackalloc] = ACTIONS(3628), - [anon_sym_sizeof] = ACTIONS(3628), - [anon_sym_typeof] = ACTIONS(3628), - [anon_sym___makeref] = ACTIONS(3628), - [anon_sym___reftype] = ACTIONS(3628), - [anon_sym___refvalue] = ACTIONS(3628), - [sym_null_literal] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3630), - [sym_integer_literal] = ACTIONS(3628), - [sym_real_literal] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [sym_verbatim_string_literal] = ACTIONS(3630), - [sym_grit_metavariable] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), + [2085] = { + [sym_preproc_region] = STATE(2085), + [sym_preproc_endregion] = STATE(2085), + [sym_preproc_line] = STATE(2085), + [sym_preproc_pragma] = STATE(2085), + [sym_preproc_nullable] = STATE(2085), + [sym_preproc_error] = STATE(2085), + [sym_preproc_warning] = STATE(2085), + [sym_preproc_define] = STATE(2085), + [sym_preproc_undef] = STATE(2085), + [ts_builtin_sym_end] = ACTIONS(3586), + [sym__identifier_token] = ACTIONS(3584), + [anon_sym_extern] = ACTIONS(3584), + [anon_sym_alias] = ACTIONS(3584), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_global] = ACTIONS(3584), + [anon_sym_using] = ACTIONS(3584), + [anon_sym_unsafe] = ACTIONS(3584), + [anon_sym_static] = ACTIONS(3584), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LPAREN] = ACTIONS(3586), + [anon_sym_return] = ACTIONS(3584), + [anon_sym_namespace] = ACTIONS(3584), + [anon_sym_class] = ACTIONS(3584), + [anon_sym_ref] = ACTIONS(3584), + [anon_sym_struct] = ACTIONS(3584), + [anon_sym_enum] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_interface] = ACTIONS(3584), + [anon_sym_delegate] = ACTIONS(3584), + [anon_sym_record] = ACTIONS(3584), + [anon_sym_public] = ACTIONS(3584), + [anon_sym_private] = ACTIONS(3584), + [anon_sym_readonly] = ACTIONS(3584), + [anon_sym_abstract] = ACTIONS(3584), + [anon_sym_async] = ACTIONS(3584), + [anon_sym_const] = ACTIONS(3584), + [anon_sym_file] = ACTIONS(3584), + [anon_sym_fixed] = ACTIONS(3584), + [anon_sym_internal] = ACTIONS(3584), + [anon_sym_new] = ACTIONS(3584), + [anon_sym_override] = ACTIONS(3584), + [anon_sym_partial] = ACTIONS(3584), + [anon_sym_protected] = ACTIONS(3584), + [anon_sym_required] = ACTIONS(3584), + [anon_sym_sealed] = ACTIONS(3584), + [anon_sym_virtual] = ACTIONS(3584), + [anon_sym_volatile] = ACTIONS(3584), + [anon_sym_where] = ACTIONS(3584), + [anon_sym_notnull] = ACTIONS(3584), + [anon_sym_unmanaged] = ACTIONS(3584), + [anon_sym_checked] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3586), + [anon_sym_this] = ACTIONS(3584), + [anon_sym_scoped] = ACTIONS(3584), + [anon_sym_base] = ACTIONS(3584), + [anon_sym_var] = ACTIONS(3584), + [anon_sym_STAR] = ACTIONS(3586), + [sym_predefined_type] = ACTIONS(3584), + [anon_sym_break] = ACTIONS(3584), + [anon_sym_unchecked] = ACTIONS(3584), + [anon_sym_continue] = ACTIONS(3584), + [anon_sym_do] = ACTIONS(3584), + [anon_sym_while] = ACTIONS(3584), + [anon_sym_for] = ACTIONS(3584), + [anon_sym_lock] = ACTIONS(3584), + [anon_sym_yield] = ACTIONS(3584), + [anon_sym_switch] = ACTIONS(3584), + [anon_sym_default] = ACTIONS(3584), + [anon_sym_throw] = ACTIONS(3584), + [anon_sym_try] = ACTIONS(3584), + [anon_sym_when] = ACTIONS(3584), + [anon_sym_await] = ACTIONS(3584), + [anon_sym_foreach] = ACTIONS(3584), + [anon_sym_goto] = ACTIONS(3584), + [anon_sym_if] = ACTIONS(3584), + [anon_sym_DOT_DOT] = ACTIONS(3586), + [anon_sym_AMP] = ACTIONS(3586), + [anon_sym_CARET] = ACTIONS(3586), + [anon_sym_PLUS] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3584), + [anon_sym_BANG] = ACTIONS(3586), + [anon_sym_PLUS_PLUS] = ACTIONS(3586), + [anon_sym_DASH_DASH] = ACTIONS(3586), + [anon_sym_true] = ACTIONS(3584), + [anon_sym_false] = ACTIONS(3584), + [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_stackalloc] = ACTIONS(3584), + [anon_sym_sizeof] = ACTIONS(3584), + [anon_sym_typeof] = ACTIONS(3584), + [anon_sym___makeref] = ACTIONS(3584), + [anon_sym___reftype] = ACTIONS(3584), + [anon_sym___refvalue] = ACTIONS(3584), + [sym_null_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [sym_integer_literal] = ACTIONS(3584), + [sym_real_literal] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3586), + [sym_verbatim_string_literal] = ACTIONS(3586), + [sym_grit_metavariable] = ACTIONS(3586), + [aux_sym_preproc_if_token1] = ACTIONS(3586), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397558,21 +397199,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3630), - [sym_interpolation_verbatim_start] = ACTIONS(3630), - [sym_interpolation_raw_start] = ACTIONS(3630), - [sym_raw_string_start] = ACTIONS(3630), + [sym_interpolation_regular_start] = ACTIONS(3586), + [sym_interpolation_verbatim_start] = ACTIONS(3586), + [sym_interpolation_raw_start] = ACTIONS(3586), + [sym_raw_string_start] = ACTIONS(3586), }, - [2089] = { - [sym_preproc_region] = STATE(2089), - [sym_preproc_endregion] = STATE(2089), - [sym_preproc_line] = STATE(2089), - [sym_preproc_pragma] = STATE(2089), - [sym_preproc_nullable] = STATE(2089), - [sym_preproc_error] = STATE(2089), - [sym_preproc_warning] = STATE(2089), - [sym_preproc_define] = STATE(2089), - [sym_preproc_undef] = STATE(2089), + [2086] = { + [sym_preproc_region] = STATE(2086), + [sym_preproc_endregion] = STATE(2086), + [sym_preproc_line] = STATE(2086), + [sym_preproc_pragma] = STATE(2086), + [sym_preproc_nullable] = STATE(2086), + [sym_preproc_error] = STATE(2086), + [sym_preproc_warning] = STATE(2086), + [sym_preproc_define] = STATE(2086), + [sym_preproc_undef] = STATE(2086), [ts_builtin_sym_end] = ACTIONS(3646), [sym__identifier_token] = ACTIONS(3644), [anon_sym_extern] = ACTIONS(3644), @@ -397615,21 +397256,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3644), [anon_sym_unmanaged] = ACTIONS(3644), [anon_sym_checked] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3646), [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_DASH_DASH] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3646), - [anon_sym_CARET] = ACTIONS(3646), - [anon_sym_AMP] = ACTIONS(3646), [anon_sym_this] = ACTIONS(3644), [anon_sym_scoped] = ACTIONS(3644), [anon_sym_base] = ACTIONS(3644), [anon_sym_var] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3646), [sym_predefined_type] = ACTIONS(3644), [anon_sym_break] = ACTIONS(3644), [anon_sym_unchecked] = ACTIONS(3644), @@ -397649,6 +397281,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3644), [anon_sym_if] = ACTIONS(3644), [anon_sym_DOT_DOT] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_CARET] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [anon_sym_true] = ACTIONS(3644), + [anon_sym_false] = ACTIONS(3644), [anon_sym_from] = ACTIONS(3644), [anon_sym_into] = ACTIONS(3644), [anon_sym_join] = ACTIONS(3644), @@ -397690,245 +397331,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3646), [sym_raw_string_start] = ACTIONS(3646), }, - [2090] = { - [sym_preproc_region] = STATE(2090), - [sym_preproc_endregion] = STATE(2090), - [sym_preproc_line] = STATE(2090), - [sym_preproc_pragma] = STATE(2090), - [sym_preproc_nullable] = STATE(2090), - [sym_preproc_error] = STATE(2090), - [sym_preproc_warning] = STATE(2090), - [sym_preproc_define] = STATE(2090), - [sym_preproc_undef] = STATE(2090), - [ts_builtin_sym_end] = ACTIONS(3618), - [sym__identifier_token] = ACTIONS(3616), - [anon_sym_extern] = ACTIONS(3616), - [anon_sym_alias] = ACTIONS(3616), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_global] = ACTIONS(3616), - [anon_sym_using] = ACTIONS(3616), - [anon_sym_unsafe] = ACTIONS(3616), - [anon_sym_static] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3616), - [anon_sym_namespace] = ACTIONS(3616), - [anon_sym_class] = ACTIONS(3616), - [anon_sym_ref] = ACTIONS(3616), - [anon_sym_struct] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_delegate] = ACTIONS(3616), - [anon_sym_record] = ACTIONS(3616), - [anon_sym_public] = ACTIONS(3616), - [anon_sym_private] = ACTIONS(3616), - [anon_sym_readonly] = ACTIONS(3616), - [anon_sym_abstract] = ACTIONS(3616), - [anon_sym_async] = ACTIONS(3616), - [anon_sym_const] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3616), - [anon_sym_fixed] = ACTIONS(3616), - [anon_sym_internal] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3616), - [anon_sym_override] = ACTIONS(3616), - [anon_sym_partial] = ACTIONS(3616), - [anon_sym_protected] = ACTIONS(3616), - [anon_sym_required] = ACTIONS(3616), - [anon_sym_sealed] = ACTIONS(3616), - [anon_sym_virtual] = ACTIONS(3616), - [anon_sym_volatile] = ACTIONS(3616), - [anon_sym_where] = ACTIONS(3616), - [anon_sym_notnull] = ACTIONS(3616), - [anon_sym_unmanaged] = ACTIONS(3616), - [anon_sym_checked] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3618), - [anon_sym_TILDE] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3618), - [anon_sym_true] = ACTIONS(3616), - [anon_sym_false] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_STAR] = ACTIONS(3618), - [anon_sym_CARET] = ACTIONS(3618), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_this] = ACTIONS(3616), - [anon_sym_scoped] = ACTIONS(3616), - [anon_sym_base] = ACTIONS(3616), - [anon_sym_var] = ACTIONS(3616), - [sym_predefined_type] = ACTIONS(3616), - [anon_sym_break] = ACTIONS(3616), - [anon_sym_unchecked] = ACTIONS(3616), - [anon_sym_continue] = ACTIONS(3616), - [anon_sym_do] = ACTIONS(3616), - [anon_sym_while] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3616), - [anon_sym_lock] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3616), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_default] = ACTIONS(3616), - [anon_sym_throw] = ACTIONS(3616), - [anon_sym_try] = ACTIONS(3616), - [anon_sym_when] = ACTIONS(3616), - [anon_sym_await] = ACTIONS(3616), - [anon_sym_foreach] = ACTIONS(3616), - [anon_sym_goto] = ACTIONS(3616), - [anon_sym_if] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [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_ascending] = ACTIONS(3616), - [anon_sym_descending] = ACTIONS(3616), - [anon_sym_group] = ACTIONS(3616), - [anon_sym_by] = ACTIONS(3616), - [anon_sym_select] = ACTIONS(3616), - [anon_sym_stackalloc] = ACTIONS(3616), - [anon_sym_sizeof] = ACTIONS(3616), - [anon_sym_typeof] = ACTIONS(3616), - [anon_sym___makeref] = ACTIONS(3616), - [anon_sym___reftype] = ACTIONS(3616), - [anon_sym___refvalue] = ACTIONS(3616), - [sym_null_literal] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3618), - [sym_integer_literal] = ACTIONS(3616), - [sym_real_literal] = ACTIONS(3618), - [anon_sym_DQUOTE] = ACTIONS(3618), - [sym_verbatim_string_literal] = ACTIONS(3618), - [sym_grit_metavariable] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3618), - [sym_interpolation_verbatim_start] = ACTIONS(3618), - [sym_interpolation_raw_start] = ACTIONS(3618), - [sym_raw_string_start] = ACTIONS(3618), - }, - [2091] = { - [sym_preproc_region] = STATE(2091), - [sym_preproc_endregion] = STATE(2091), - [sym_preproc_line] = STATE(2091), - [sym_preproc_pragma] = STATE(2091), - [sym_preproc_nullable] = STATE(2091), - [sym_preproc_error] = STATE(2091), - [sym_preproc_warning] = STATE(2091), - [sym_preproc_define] = STATE(2091), - [sym_preproc_undef] = STATE(2091), - [ts_builtin_sym_end] = ACTIONS(3634), - [sym__identifier_token] = ACTIONS(3632), - [anon_sym_extern] = ACTIONS(3632), - [anon_sym_alias] = ACTIONS(3632), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_global] = ACTIONS(3632), - [anon_sym_using] = ACTIONS(3632), - [anon_sym_unsafe] = ACTIONS(3632), - [anon_sym_static] = ACTIONS(3632), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3632), - [anon_sym_namespace] = ACTIONS(3632), - [anon_sym_class] = ACTIONS(3632), - [anon_sym_ref] = ACTIONS(3632), - [anon_sym_struct] = ACTIONS(3632), - [anon_sym_enum] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3634), - [anon_sym_interface] = ACTIONS(3632), - [anon_sym_delegate] = ACTIONS(3632), - [anon_sym_record] = ACTIONS(3632), - [anon_sym_public] = ACTIONS(3632), - [anon_sym_private] = ACTIONS(3632), - [anon_sym_readonly] = ACTIONS(3632), - [anon_sym_abstract] = ACTIONS(3632), - [anon_sym_async] = ACTIONS(3632), - [anon_sym_const] = ACTIONS(3632), - [anon_sym_file] = ACTIONS(3632), - [anon_sym_fixed] = ACTIONS(3632), - [anon_sym_internal] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3632), - [anon_sym_override] = ACTIONS(3632), - [anon_sym_partial] = ACTIONS(3632), - [anon_sym_protected] = ACTIONS(3632), - [anon_sym_required] = ACTIONS(3632), - [anon_sym_sealed] = ACTIONS(3632), - [anon_sym_virtual] = ACTIONS(3632), - [anon_sym_volatile] = ACTIONS(3632), - [anon_sym_where] = ACTIONS(3632), - [anon_sym_notnull] = ACTIONS(3632), - [anon_sym_unmanaged] = ACTIONS(3632), - [anon_sym_checked] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(3634), - [anon_sym_PLUS_PLUS] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3634), - [anon_sym_true] = ACTIONS(3632), - [anon_sym_false] = ACTIONS(3632), - [anon_sym_PLUS] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3632), - [anon_sym_STAR] = ACTIONS(3634), - [anon_sym_CARET] = ACTIONS(3634), - [anon_sym_AMP] = ACTIONS(3634), - [anon_sym_this] = ACTIONS(3632), - [anon_sym_scoped] = ACTIONS(3632), - [anon_sym_base] = ACTIONS(3632), - [anon_sym_var] = ACTIONS(3632), - [sym_predefined_type] = ACTIONS(3632), - [anon_sym_break] = ACTIONS(3632), - [anon_sym_unchecked] = ACTIONS(3632), - [anon_sym_continue] = ACTIONS(3632), - [anon_sym_do] = ACTIONS(3632), - [anon_sym_while] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3632), - [anon_sym_lock] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3632), - [anon_sym_switch] = ACTIONS(3632), - [anon_sym_default] = ACTIONS(3632), - [anon_sym_throw] = ACTIONS(3632), - [anon_sym_try] = ACTIONS(3632), - [anon_sym_when] = ACTIONS(3632), - [anon_sym_await] = ACTIONS(3632), - [anon_sym_foreach] = ACTIONS(3632), - [anon_sym_goto] = ACTIONS(3632), - [anon_sym_if] = ACTIONS(3632), - [anon_sym_DOT_DOT] = ACTIONS(3634), - [anon_sym_from] = ACTIONS(3632), - [anon_sym_into] = ACTIONS(3632), - [anon_sym_join] = ACTIONS(3632), - [anon_sym_on] = ACTIONS(3632), - [anon_sym_equals] = ACTIONS(3632), - [anon_sym_let] = ACTIONS(3632), - [anon_sym_orderby] = ACTIONS(3632), - [anon_sym_ascending] = ACTIONS(3632), - [anon_sym_descending] = ACTIONS(3632), - [anon_sym_group] = ACTIONS(3632), - [anon_sym_by] = ACTIONS(3632), - [anon_sym_select] = ACTIONS(3632), - [anon_sym_stackalloc] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3632), - [anon_sym_typeof] = ACTIONS(3632), - [anon_sym___makeref] = ACTIONS(3632), - [anon_sym___reftype] = ACTIONS(3632), - [anon_sym___refvalue] = ACTIONS(3632), - [sym_null_literal] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3634), - [sym_integer_literal] = ACTIONS(3632), - [sym_real_literal] = ACTIONS(3634), - [anon_sym_DQUOTE] = ACTIONS(3634), - [sym_verbatim_string_literal] = ACTIONS(3634), - [sym_grit_metavariable] = ACTIONS(3634), - [aux_sym_preproc_if_token1] = ACTIONS(3634), + [2087] = { + [sym_preproc_region] = STATE(2087), + [sym_preproc_endregion] = STATE(2087), + [sym_preproc_line] = STATE(2087), + [sym_preproc_pragma] = STATE(2087), + [sym_preproc_nullable] = STATE(2087), + [sym_preproc_error] = STATE(2087), + [sym_preproc_warning] = STATE(2087), + [sym_preproc_define] = STATE(2087), + [sym_preproc_undef] = STATE(2087), + [ts_builtin_sym_end] = ACTIONS(3598), + [sym__identifier_token] = ACTIONS(3596), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym_alias] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym_global] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_unsafe] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_namespace] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_ref] = ACTIONS(3596), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_interface] = ACTIONS(3596), + [anon_sym_delegate] = ACTIONS(3596), + [anon_sym_record] = ACTIONS(3596), + [anon_sym_public] = ACTIONS(3596), + [anon_sym_private] = ACTIONS(3596), + [anon_sym_readonly] = ACTIONS(3596), + [anon_sym_abstract] = ACTIONS(3596), + [anon_sym_async] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_file] = ACTIONS(3596), + [anon_sym_fixed] = ACTIONS(3596), + [anon_sym_internal] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_override] = ACTIONS(3596), + [anon_sym_partial] = ACTIONS(3596), + [anon_sym_protected] = ACTIONS(3596), + [anon_sym_required] = ACTIONS(3596), + [anon_sym_sealed] = ACTIONS(3596), + [anon_sym_virtual] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_where] = ACTIONS(3596), + [anon_sym_notnull] = ACTIONS(3596), + [anon_sym_unmanaged] = ACTIONS(3596), + [anon_sym_checked] = ACTIONS(3596), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_this] = ACTIONS(3596), + [anon_sym_scoped] = ACTIONS(3596), + [anon_sym_base] = ACTIONS(3596), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_STAR] = ACTIONS(3598), + [sym_predefined_type] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_unchecked] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_lock] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_default] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_when] = ACTIONS(3596), + [anon_sym_await] = ACTIONS(3596), + [anon_sym_foreach] = ACTIONS(3596), + [anon_sym_goto] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_DOT_DOT] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_CARET] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_true] = ACTIONS(3596), + [anon_sym_false] = 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_stackalloc] = ACTIONS(3596), + [anon_sym_sizeof] = ACTIONS(3596), + [anon_sym_typeof] = ACTIONS(3596), + [anon_sym___makeref] = ACTIONS(3596), + [anon_sym___reftype] = ACTIONS(3596), + [anon_sym___refvalue] = ACTIONS(3596), + [sym_null_literal] = ACTIONS(3596), + [anon_sym_SQUOTE] = ACTIONS(3598), + [sym_integer_literal] = ACTIONS(3596), + [sym_real_literal] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [sym_verbatim_string_literal] = ACTIONS(3598), + [sym_grit_metavariable] = ACTIONS(3598), + [aux_sym_preproc_if_token1] = ACTIONS(3598), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397939,123 +397453,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3634), - [sym_interpolation_verbatim_start] = ACTIONS(3634), - [sym_interpolation_raw_start] = ACTIONS(3634), - [sym_raw_string_start] = ACTIONS(3634), + [sym_interpolation_regular_start] = ACTIONS(3598), + [sym_interpolation_verbatim_start] = ACTIONS(3598), + [sym_interpolation_raw_start] = ACTIONS(3598), + [sym_raw_string_start] = ACTIONS(3598), }, - [2092] = { - [sym_preproc_region] = STATE(2092), - [sym_preproc_endregion] = STATE(2092), - [sym_preproc_line] = STATE(2092), - [sym_preproc_pragma] = STATE(2092), - [sym_preproc_nullable] = STATE(2092), - [sym_preproc_error] = STATE(2092), - [sym_preproc_warning] = STATE(2092), - [sym_preproc_define] = STATE(2092), - [sym_preproc_undef] = STATE(2092), - [ts_builtin_sym_end] = ACTIONS(3622), - [sym__identifier_token] = ACTIONS(3620), - [anon_sym_extern] = ACTIONS(3620), - [anon_sym_alias] = ACTIONS(3620), - [anon_sym_SEMI] = ACTIONS(3622), - [anon_sym_global] = ACTIONS(3620), - [anon_sym_using] = ACTIONS(3620), - [anon_sym_unsafe] = ACTIONS(3620), - [anon_sym_static] = ACTIONS(3620), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3620), - [anon_sym_namespace] = ACTIONS(3620), - [anon_sym_class] = ACTIONS(3620), - [anon_sym_ref] = ACTIONS(3620), - [anon_sym_struct] = ACTIONS(3620), - [anon_sym_enum] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_interface] = ACTIONS(3620), - [anon_sym_delegate] = ACTIONS(3620), - [anon_sym_record] = ACTIONS(3620), - [anon_sym_public] = ACTIONS(3620), - [anon_sym_private] = ACTIONS(3620), - [anon_sym_readonly] = ACTIONS(3620), - [anon_sym_abstract] = ACTIONS(3620), - [anon_sym_async] = ACTIONS(3620), - [anon_sym_const] = ACTIONS(3620), - [anon_sym_file] = ACTIONS(3620), - [anon_sym_fixed] = ACTIONS(3620), - [anon_sym_internal] = ACTIONS(3620), - [anon_sym_new] = ACTIONS(3620), - [anon_sym_override] = ACTIONS(3620), - [anon_sym_partial] = ACTIONS(3620), - [anon_sym_protected] = ACTIONS(3620), - [anon_sym_required] = ACTIONS(3620), - [anon_sym_sealed] = ACTIONS(3620), - [anon_sym_virtual] = ACTIONS(3620), - [anon_sym_volatile] = ACTIONS(3620), - [anon_sym_where] = ACTIONS(3620), - [anon_sym_notnull] = ACTIONS(3620), - [anon_sym_unmanaged] = ACTIONS(3620), - [anon_sym_checked] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3622), - [anon_sym_TILDE] = ACTIONS(3622), - [anon_sym_PLUS_PLUS] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3620), - [anon_sym_false] = ACTIONS(3620), - [anon_sym_PLUS] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3620), - [anon_sym_STAR] = ACTIONS(3622), - [anon_sym_CARET] = ACTIONS(3622), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_this] = ACTIONS(3620), - [anon_sym_scoped] = ACTIONS(3620), - [anon_sym_base] = ACTIONS(3620), - [anon_sym_var] = ACTIONS(3620), - [sym_predefined_type] = ACTIONS(3620), - [anon_sym_break] = ACTIONS(3620), - [anon_sym_unchecked] = ACTIONS(3620), - [anon_sym_continue] = ACTIONS(3620), - [anon_sym_do] = ACTIONS(3620), - [anon_sym_while] = ACTIONS(3620), - [anon_sym_for] = ACTIONS(3620), - [anon_sym_lock] = ACTIONS(3620), - [anon_sym_yield] = ACTIONS(3620), - [anon_sym_switch] = ACTIONS(3620), - [anon_sym_default] = ACTIONS(3620), - [anon_sym_throw] = ACTIONS(3620), - [anon_sym_try] = ACTIONS(3620), - [anon_sym_when] = ACTIONS(3620), - [anon_sym_await] = ACTIONS(3620), - [anon_sym_foreach] = ACTIONS(3620), - [anon_sym_goto] = ACTIONS(3620), - [anon_sym_if] = ACTIONS(3620), - [anon_sym_DOT_DOT] = ACTIONS(3622), - [anon_sym_from] = ACTIONS(3620), - [anon_sym_into] = ACTIONS(3620), - [anon_sym_join] = ACTIONS(3620), - [anon_sym_on] = ACTIONS(3620), - [anon_sym_equals] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3620), - [anon_sym_orderby] = ACTIONS(3620), - [anon_sym_ascending] = ACTIONS(3620), - [anon_sym_descending] = ACTIONS(3620), - [anon_sym_group] = ACTIONS(3620), - [anon_sym_by] = ACTIONS(3620), - [anon_sym_select] = ACTIONS(3620), - [anon_sym_stackalloc] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3620), - [anon_sym_typeof] = ACTIONS(3620), - [anon_sym___makeref] = ACTIONS(3620), - [anon_sym___reftype] = ACTIONS(3620), - [anon_sym___refvalue] = ACTIONS(3620), - [sym_null_literal] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3622), - [sym_integer_literal] = ACTIONS(3620), - [sym_real_literal] = ACTIONS(3622), - [anon_sym_DQUOTE] = ACTIONS(3622), - [sym_verbatim_string_literal] = ACTIONS(3622), - [sym_grit_metavariable] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), + [2088] = { + [sym_preproc_region] = STATE(2088), + [sym_preproc_endregion] = STATE(2088), + [sym_preproc_line] = STATE(2088), + [sym_preproc_pragma] = STATE(2088), + [sym_preproc_nullable] = STATE(2088), + [sym_preproc_error] = STATE(2088), + [sym_preproc_warning] = STATE(2088), + [sym_preproc_define] = STATE(2088), + [sym_preproc_undef] = STATE(2088), + [ts_builtin_sym_end] = ACTIONS(3666), + [sym__identifier_token] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym_alias] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym_global] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_ref] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_interface] = ACTIONS(3664), + [anon_sym_delegate] = ACTIONS(3664), + [anon_sym_record] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_readonly] = ACTIONS(3664), + [anon_sym_abstract] = ACTIONS(3664), + [anon_sym_async] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_file] = ACTIONS(3664), + [anon_sym_fixed] = ACTIONS(3664), + [anon_sym_internal] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_override] = ACTIONS(3664), + [anon_sym_partial] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_required] = ACTIONS(3664), + [anon_sym_sealed] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_where] = ACTIONS(3664), + [anon_sym_notnull] = ACTIONS(3664), + [anon_sym_unmanaged] = ACTIONS(3664), + [anon_sym_checked] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_this] = ACTIONS(3664), + [anon_sym_scoped] = ACTIONS(3664), + [anon_sym_base] = ACTIONS(3664), + [anon_sym_var] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [sym_predefined_type] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_unchecked] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_lock] = ACTIONS(3664), + [anon_sym_yield] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_when] = ACTIONS(3664), + [anon_sym_await] = ACTIONS(3664), + [anon_sym_foreach] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_DOT_DOT] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_true] = ACTIONS(3664), + [anon_sym_false] = ACTIONS(3664), + [anon_sym_from] = ACTIONS(3664), + [anon_sym_into] = ACTIONS(3664), + [anon_sym_join] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_equals] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(3664), + [anon_sym_orderby] = ACTIONS(3664), + [anon_sym_ascending] = ACTIONS(3664), + [anon_sym_descending] = ACTIONS(3664), + [anon_sym_group] = ACTIONS(3664), + [anon_sym_by] = ACTIONS(3664), + [anon_sym_select] = ACTIONS(3664), + [anon_sym_stackalloc] = ACTIONS(3664), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym_typeof] = ACTIONS(3664), + [anon_sym___makeref] = ACTIONS(3664), + [anon_sym___reftype] = ACTIONS(3664), + [anon_sym___refvalue] = ACTIONS(3664), + [sym_null_literal] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3666), + [sym_integer_literal] = ACTIONS(3664), + [sym_real_literal] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_verbatim_string_literal] = ACTIONS(3666), + [sym_grit_metavariable] = ACTIONS(3666), + [aux_sym_preproc_if_token1] = ACTIONS(3666), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398066,21 +397580,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3622), - [sym_interpolation_verbatim_start] = ACTIONS(3622), - [sym_interpolation_raw_start] = ACTIONS(3622), - [sym_raw_string_start] = ACTIONS(3622), + [sym_interpolation_regular_start] = ACTIONS(3666), + [sym_interpolation_verbatim_start] = ACTIONS(3666), + [sym_interpolation_raw_start] = ACTIONS(3666), + [sym_raw_string_start] = ACTIONS(3666), }, - [2093] = { - [sym_preproc_region] = STATE(2093), - [sym_preproc_endregion] = STATE(2093), - [sym_preproc_line] = STATE(2093), - [sym_preproc_pragma] = STATE(2093), - [sym_preproc_nullable] = STATE(2093), - [sym_preproc_error] = STATE(2093), - [sym_preproc_warning] = STATE(2093), - [sym_preproc_define] = STATE(2093), - [sym_preproc_undef] = STATE(2093), + [2089] = { + [sym_preproc_region] = STATE(2089), + [sym_preproc_endregion] = STATE(2089), + [sym_preproc_line] = STATE(2089), + [sym_preproc_pragma] = STATE(2089), + [sym_preproc_nullable] = STATE(2089), + [sym_preproc_error] = STATE(2089), + [sym_preproc_warning] = STATE(2089), + [sym_preproc_define] = STATE(2089), + [sym_preproc_undef] = STATE(2089), + [ts_builtin_sym_end] = ACTIONS(3658), + [sym__identifier_token] = ACTIONS(3656), + [anon_sym_extern] = ACTIONS(3656), + [anon_sym_alias] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_global] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_unsafe] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_ref] = ACTIONS(3656), + [anon_sym_struct] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_delegate] = ACTIONS(3656), + [anon_sym_record] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_file] = ACTIONS(3656), + [anon_sym_fixed] = ACTIONS(3656), + [anon_sym_internal] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_partial] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_sealed] = ACTIONS(3656), + [anon_sym_virtual] = ACTIONS(3656), + [anon_sym_volatile] = ACTIONS(3656), + [anon_sym_where] = ACTIONS(3656), + [anon_sym_notnull] = ACTIONS(3656), + [anon_sym_unmanaged] = ACTIONS(3656), + [anon_sym_checked] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3656), + [anon_sym_scoped] = ACTIONS(3656), + [anon_sym_base] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_STAR] = ACTIONS(3658), + [sym_predefined_type] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_unchecked] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_lock] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_when] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_foreach] = ACTIONS(3656), + [anon_sym_goto] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_DOT_DOT] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3658), + [anon_sym_CARET] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3656), + [anon_sym_false] = 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_ascending] = ACTIONS(3656), + [anon_sym_descending] = ACTIONS(3656), + [anon_sym_group] = ACTIONS(3656), + [anon_sym_by] = ACTIONS(3656), + [anon_sym_select] = ACTIONS(3656), + [anon_sym_stackalloc] = ACTIONS(3656), + [anon_sym_sizeof] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym___makeref] = ACTIONS(3656), + [anon_sym___reftype] = ACTIONS(3656), + [anon_sym___refvalue] = ACTIONS(3656), + [sym_null_literal] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3658), + [sym_integer_literal] = ACTIONS(3656), + [sym_real_literal] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [sym_verbatim_string_literal] = ACTIONS(3658), + [sym_grit_metavariable] = ACTIONS(3658), + [aux_sym_preproc_if_token1] = 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_regular_start] = ACTIONS(3658), + [sym_interpolation_verbatim_start] = ACTIONS(3658), + [sym_interpolation_raw_start] = ACTIONS(3658), + [sym_raw_string_start] = ACTIONS(3658), + }, + [2090] = { + [sym_preproc_region] = STATE(2090), + [sym_preproc_endregion] = STATE(2090), + [sym_preproc_line] = STATE(2090), + [sym_preproc_pragma] = STATE(2090), + [sym_preproc_nullable] = STATE(2090), + [sym_preproc_error] = STATE(2090), + [sym_preproc_warning] = STATE(2090), + [sym_preproc_define] = STATE(2090), + [sym_preproc_undef] = STATE(2090), + [ts_builtin_sym_end] = ACTIONS(3682), + [sym__identifier_token] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym_alias] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym_global] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_unsafe] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_ref] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_interface] = ACTIONS(3680), + [anon_sym_delegate] = ACTIONS(3680), + [anon_sym_record] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_readonly] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3680), + [anon_sym_async] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3680), + [anon_sym_fixed] = ACTIONS(3680), + [anon_sym_internal] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_override] = ACTIONS(3680), + [anon_sym_partial] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_required] = ACTIONS(3680), + [anon_sym_sealed] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3680), + [anon_sym_unmanaged] = ACTIONS(3680), + [anon_sym_checked] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_this] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3680), + [anon_sym_base] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3682), + [sym_predefined_type] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_unchecked] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_lock] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3680), + [anon_sym_await] = ACTIONS(3680), + [anon_sym_foreach] = ACTIONS(3680), + [anon_sym_goto] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_CARET] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [anon_sym_true] = ACTIONS(3680), + [anon_sym_false] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_orderby] = ACTIONS(3680), + [anon_sym_ascending] = ACTIONS(3680), + [anon_sym_descending] = ACTIONS(3680), + [anon_sym_group] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_stackalloc] = ACTIONS(3680), + [anon_sym_sizeof] = ACTIONS(3680), + [anon_sym_typeof] = ACTIONS(3680), + [anon_sym___makeref] = ACTIONS(3680), + [anon_sym___reftype] = ACTIONS(3680), + [anon_sym___refvalue] = ACTIONS(3680), + [sym_null_literal] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3682), + [sym_integer_literal] = ACTIONS(3680), + [sym_real_literal] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [sym_verbatim_string_literal] = ACTIONS(3682), + [sym_grit_metavariable] = ACTIONS(3682), + [aux_sym_preproc_if_token1] = ACTIONS(3682), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3682), + [sym_interpolation_verbatim_start] = ACTIONS(3682), + [sym_interpolation_raw_start] = ACTIONS(3682), + [sym_raw_string_start] = ACTIONS(3682), + }, + [2091] = { + [sym_preproc_region] = STATE(2091), + [sym_preproc_endregion] = STATE(2091), + [sym_preproc_line] = STATE(2091), + [sym_preproc_pragma] = STATE(2091), + [sym_preproc_nullable] = STATE(2091), + [sym_preproc_error] = STATE(2091), + [sym_preproc_warning] = STATE(2091), + [sym_preproc_define] = STATE(2091), + [sym_preproc_undef] = STATE(2091), + [ts_builtin_sym_end] = ACTIONS(3590), + [sym__identifier_token] = ACTIONS(3588), + [anon_sym_extern] = ACTIONS(3588), + [anon_sym_alias] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_global] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_unsafe] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3590), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_ref] = ACTIONS(3588), + [anon_sym_struct] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3590), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_delegate] = ACTIONS(3588), + [anon_sym_record] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_file] = ACTIONS(3588), + [anon_sym_fixed] = ACTIONS(3588), + [anon_sym_internal] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_partial] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_sealed] = ACTIONS(3588), + [anon_sym_virtual] = ACTIONS(3588), + [anon_sym_volatile] = ACTIONS(3588), + [anon_sym_where] = ACTIONS(3588), + [anon_sym_notnull] = ACTIONS(3588), + [anon_sym_unmanaged] = ACTIONS(3588), + [anon_sym_checked] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_this] = ACTIONS(3588), + [anon_sym_scoped] = ACTIONS(3588), + [anon_sym_base] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_STAR] = ACTIONS(3590), + [sym_predefined_type] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_unchecked] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_lock] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_default] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_when] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_foreach] = ACTIONS(3588), + [anon_sym_goto] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_DOT_DOT] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3590), + [anon_sym_CARET] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_PLUS_PLUS] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3590), + [anon_sym_true] = ACTIONS(3588), + [anon_sym_false] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_into] = ACTIONS(3588), + [anon_sym_join] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_equals] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_orderby] = ACTIONS(3588), + [anon_sym_ascending] = ACTIONS(3588), + [anon_sym_descending] = ACTIONS(3588), + [anon_sym_group] = ACTIONS(3588), + [anon_sym_by] = ACTIONS(3588), + [anon_sym_select] = ACTIONS(3588), + [anon_sym_stackalloc] = ACTIONS(3588), + [anon_sym_sizeof] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym___makeref] = ACTIONS(3588), + [anon_sym___reftype] = ACTIONS(3588), + [anon_sym___refvalue] = ACTIONS(3588), + [sym_null_literal] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3590), + [sym_integer_literal] = ACTIONS(3588), + [sym_real_literal] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3590), + [sym_verbatim_string_literal] = ACTIONS(3590), + [sym_grit_metavariable] = ACTIONS(3590), + [aux_sym_preproc_if_token1] = ACTIONS(3590), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3590), + [sym_interpolation_verbatim_start] = ACTIONS(3590), + [sym_interpolation_raw_start] = ACTIONS(3590), + [sym_raw_string_start] = ACTIONS(3590), + }, + [2092] = { + [sym_preproc_region] = STATE(2092), + [sym_preproc_endregion] = STATE(2092), + [sym_preproc_line] = STATE(2092), + [sym_preproc_pragma] = STATE(2092), + [sym_preproc_nullable] = STATE(2092), + [sym_preproc_error] = STATE(2092), + [sym_preproc_warning] = STATE(2092), + [sym_preproc_define] = STATE(2092), + [sym_preproc_undef] = STATE(2092), [ts_builtin_sym_end] = ACTIONS(3678), [sym__identifier_token] = ACTIONS(3676), [anon_sym_extern] = ACTIONS(3676), @@ -398123,21 +398018,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3676), [anon_sym_unmanaged] = ACTIONS(3676), [anon_sym_checked] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3678), - [anon_sym_DASH_DASH] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3676), - [anon_sym_false] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_CARET] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(3678), [anon_sym_this] = ACTIONS(3676), [anon_sym_scoped] = ACTIONS(3676), [anon_sym_base] = ACTIONS(3676), [anon_sym_var] = ACTIONS(3676), + [anon_sym_STAR] = ACTIONS(3678), [sym_predefined_type] = ACTIONS(3676), [anon_sym_break] = ACTIONS(3676), [anon_sym_unchecked] = ACTIONS(3676), @@ -398157,6 +398043,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3676), [anon_sym_if] = ACTIONS(3676), [anon_sym_DOT_DOT] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [anon_sym_true] = ACTIONS(3676), + [anon_sym_false] = ACTIONS(3676), [anon_sym_from] = ACTIONS(3676), [anon_sym_into] = ACTIONS(3676), [anon_sym_join] = ACTIONS(3676), @@ -398198,8 +398093,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3678), [sym_raw_string_start] = ACTIONS(3678), }, + [2093] = { + [sym_preproc_region] = STATE(2093), + [sym_preproc_endregion] = STATE(2093), + [sym_preproc_line] = STATE(2093), + [sym_preproc_pragma] = STATE(2093), + [sym_preproc_nullable] = STATE(2093), + [sym_preproc_error] = STATE(2093), + [sym_preproc_warning] = STATE(2093), + [sym_preproc_define] = STATE(2093), + [sym_preproc_undef] = STATE(2093), + [ts_builtin_sym_end] = ACTIONS(3650), + [sym__identifier_token] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym_alias] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym_global] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_unsafe] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_LPAREN] = ACTIONS(3650), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_ref] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_interface] = ACTIONS(3648), + [anon_sym_delegate] = ACTIONS(3648), + [anon_sym_record] = ACTIONS(3648), + [anon_sym_public] = ACTIONS(3648), + [anon_sym_private] = ACTIONS(3648), + [anon_sym_readonly] = ACTIONS(3648), + [anon_sym_abstract] = ACTIONS(3648), + [anon_sym_async] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_file] = ACTIONS(3648), + [anon_sym_fixed] = ACTIONS(3648), + [anon_sym_internal] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_override] = ACTIONS(3648), + [anon_sym_partial] = ACTIONS(3648), + [anon_sym_protected] = ACTIONS(3648), + [anon_sym_required] = ACTIONS(3648), + [anon_sym_sealed] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_where] = ACTIONS(3648), + [anon_sym_notnull] = ACTIONS(3648), + [anon_sym_unmanaged] = ACTIONS(3648), + [anon_sym_checked] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_this] = ACTIONS(3648), + [anon_sym_scoped] = ACTIONS(3648), + [anon_sym_base] = ACTIONS(3648), + [anon_sym_var] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), + [sym_predefined_type] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_unchecked] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_lock] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_when] = ACTIONS(3648), + [anon_sym_await] = ACTIONS(3648), + [anon_sym_foreach] = ACTIONS(3648), + [anon_sym_goto] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_DOT_DOT] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_CARET] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_true] = ACTIONS(3648), + [anon_sym_false] = ACTIONS(3648), + [anon_sym_from] = ACTIONS(3648), + [anon_sym_into] = ACTIONS(3648), + [anon_sym_join] = ACTIONS(3648), + [anon_sym_on] = ACTIONS(3648), + [anon_sym_equals] = ACTIONS(3648), + [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(3648), + [anon_sym_select] = ACTIONS(3648), + [anon_sym_stackalloc] = ACTIONS(3648), + [anon_sym_sizeof] = ACTIONS(3648), + [anon_sym_typeof] = ACTIONS(3648), + [anon_sym___makeref] = ACTIONS(3648), + [anon_sym___reftype] = ACTIONS(3648), + [anon_sym___refvalue] = ACTIONS(3648), + [sym_null_literal] = ACTIONS(3648), + [anon_sym_SQUOTE] = ACTIONS(3650), + [sym_integer_literal] = ACTIONS(3648), + [sym_real_literal] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [sym_verbatim_string_literal] = ACTIONS(3650), + [sym_grit_metavariable] = ACTIONS(3650), + [aux_sym_preproc_if_token1] = 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_regular_start] = ACTIONS(3650), + [sym_interpolation_verbatim_start] = ACTIONS(3650), + [sym_interpolation_raw_start] = ACTIONS(3650), + [sym_raw_string_start] = ACTIONS(3650), + }, [2094] = { - [sym_catch_clause] = STATE(2114), [sym_preproc_region] = STATE(2094), [sym_preproc_endregion] = STATE(2094), [sym_preproc_line] = STATE(2094), @@ -398209,132 +398230,6 @@ 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), - [aux_sym_try_statement_repeat1] = STATE(2094), - [sym__identifier_token] = ACTIONS(3352), - [anon_sym_extern] = ACTIONS(3352), - [anon_sym_alias] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_global] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_ref] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_delegate] = ACTIONS(3352), - [anon_sym_public] = ACTIONS(3352), - [anon_sym_private] = ACTIONS(3352), - [anon_sym_readonly] = ACTIONS(3352), - [anon_sym_abstract] = ACTIONS(3352), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_file] = ACTIONS(3352), - [anon_sym_fixed] = ACTIONS(3352), - [anon_sym_internal] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3352), - [anon_sym_override] = ACTIONS(3352), - [anon_sym_partial] = ACTIONS(3352), - [anon_sym_protected] = ACTIONS(3352), - [anon_sym_required] = ACTIONS(3352), - [anon_sym_sealed] = ACTIONS(3352), - [anon_sym_virtual] = ACTIONS(3352), - [anon_sym_volatile] = ACTIONS(3352), - [anon_sym_where] = ACTIONS(3352), - [anon_sym_notnull] = ACTIONS(3352), - [anon_sym_unmanaged] = ACTIONS(3352), - [anon_sym_checked] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_true] = ACTIONS(3352), - [anon_sym_false] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_this] = ACTIONS(3352), - [anon_sym_scoped] = ACTIONS(3352), - [anon_sym_base] = ACTIONS(3352), - [anon_sym_var] = ACTIONS(3352), - [sym_predefined_type] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_unchecked] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_do] = ACTIONS(3352), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3352), - [anon_sym_case] = ACTIONS(3352), - [anon_sym_default] = ACTIONS(3352), - [anon_sym_throw] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_catch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3352), - [anon_sym_finally] = ACTIONS(3352), - [anon_sym_await] = ACTIONS(3352), - [anon_sym_foreach] = ACTIONS(3352), - [anon_sym_goto] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_else] = ACTIONS(3352), - [anon_sym_DOT_DOT] = ACTIONS(3354), - [anon_sym_from] = ACTIONS(3352), - [anon_sym_into] = ACTIONS(3352), - [anon_sym_join] = ACTIONS(3352), - [anon_sym_on] = ACTIONS(3352), - [anon_sym_equals] = ACTIONS(3352), - [anon_sym_let] = ACTIONS(3352), - [anon_sym_orderby] = ACTIONS(3352), - [anon_sym_ascending] = ACTIONS(3352), - [anon_sym_descending] = ACTIONS(3352), - [anon_sym_group] = ACTIONS(3352), - [anon_sym_by] = ACTIONS(3352), - [anon_sym_select] = ACTIONS(3352), - [anon_sym_stackalloc] = ACTIONS(3352), - [anon_sym_sizeof] = ACTIONS(3352), - [anon_sym_typeof] = ACTIONS(3352), - [anon_sym___makeref] = ACTIONS(3352), - [anon_sym___reftype] = ACTIONS(3352), - [anon_sym___refvalue] = ACTIONS(3352), - [sym_null_literal] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(3354), - [sym_integer_literal] = ACTIONS(3352), - [sym_real_literal] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [sym_verbatim_string_literal] = ACTIONS(3354), - [sym_grit_metavariable] = ACTIONS(3354), - [aux_sym_preproc_if_token1] = ACTIONS(3354), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3354), - [sym_interpolation_verbatim_start] = ACTIONS(3354), - [sym_interpolation_raw_start] = ACTIONS(3354), - [sym_raw_string_start] = ACTIONS(3354), - }, - [2095] = { - [sym_preproc_region] = STATE(2095), - [sym_preproc_endregion] = STATE(2095), - [sym_preproc_line] = STATE(2095), - [sym_preproc_pragma] = STATE(2095), - [sym_preproc_nullable] = STATE(2095), - [sym_preproc_error] = STATE(2095), - [sym_preproc_warning] = STATE(2095), - [sym_preproc_define] = STATE(2095), - [sym_preproc_undef] = STATE(2095), [ts_builtin_sym_end] = ACTIONS(3602), [sym__identifier_token] = ACTIONS(3600), [anon_sym_extern] = ACTIONS(3600), @@ -398377,21 +398272,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3600), [anon_sym_unmanaged] = ACTIONS(3600), [anon_sym_checked] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3602), [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_true] = ACTIONS(3600), - [anon_sym_false] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3602), [anon_sym_this] = ACTIONS(3600), [anon_sym_scoped] = ACTIONS(3600), [anon_sym_base] = ACTIONS(3600), [anon_sym_var] = ACTIONS(3600), + [anon_sym_STAR] = ACTIONS(3602), [sym_predefined_type] = ACTIONS(3600), [anon_sym_break] = ACTIONS(3600), [anon_sym_unchecked] = ACTIONS(3600), @@ -398411,6 +398297,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3600), [anon_sym_if] = ACTIONS(3600), [anon_sym_DOT_DOT] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_CARET] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), + [anon_sym_DASH_DASH] = ACTIONS(3602), + [anon_sym_true] = ACTIONS(3600), + [anon_sym_false] = ACTIONS(3600), [anon_sym_from] = ACTIONS(3600), [anon_sym_into] = ACTIONS(3600), [anon_sym_join] = ACTIONS(3600), @@ -398452,118 +398347,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3602), [sym_raw_string_start] = ACTIONS(3602), }, - [2096] = { - [sym_preproc_region] = STATE(2096), - [sym_preproc_endregion] = STATE(2096), - [sym_preproc_line] = STATE(2096), - [sym_preproc_pragma] = STATE(2096), - [sym_preproc_nullable] = STATE(2096), - [sym_preproc_error] = STATE(2096), - [sym_preproc_warning] = STATE(2096), - [sym_preproc_define] = STATE(2096), - [sym_preproc_undef] = STATE(2096), - [ts_builtin_sym_end] = ACTIONS(3654), - [sym__identifier_token] = ACTIONS(3652), - [anon_sym_extern] = ACTIONS(3652), - [anon_sym_alias] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_global] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_unsafe] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3654), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_namespace] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_ref] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_interface] = ACTIONS(3652), - [anon_sym_delegate] = ACTIONS(3652), - [anon_sym_record] = ACTIONS(3652), - [anon_sym_public] = ACTIONS(3652), - [anon_sym_private] = ACTIONS(3652), - [anon_sym_readonly] = ACTIONS(3652), - [anon_sym_abstract] = ACTIONS(3652), - [anon_sym_async] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_file] = ACTIONS(3652), - [anon_sym_fixed] = ACTIONS(3652), - [anon_sym_internal] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_override] = ACTIONS(3652), - [anon_sym_partial] = ACTIONS(3652), - [anon_sym_protected] = ACTIONS(3652), - [anon_sym_required] = ACTIONS(3652), - [anon_sym_sealed] = ACTIONS(3652), - [anon_sym_virtual] = ACTIONS(3652), - [anon_sym_volatile] = ACTIONS(3652), - [anon_sym_where] = ACTIONS(3652), - [anon_sym_notnull] = ACTIONS(3652), - [anon_sym_unmanaged] = ACTIONS(3652), - [anon_sym_checked] = ACTIONS(3652), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_true] = ACTIONS(3652), - [anon_sym_false] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_CARET] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_this] = ACTIONS(3652), - [anon_sym_scoped] = ACTIONS(3652), - [anon_sym_base] = ACTIONS(3652), - [anon_sym_var] = ACTIONS(3652), - [sym_predefined_type] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_unchecked] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_lock] = ACTIONS(3652), - [anon_sym_yield] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_default] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_when] = ACTIONS(3652), - [anon_sym_await] = ACTIONS(3652), - [anon_sym_foreach] = ACTIONS(3652), - [anon_sym_goto] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_DOT_DOT] = ACTIONS(3654), - [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_ascending] = ACTIONS(3652), - [anon_sym_descending] = ACTIONS(3652), - [anon_sym_group] = ACTIONS(3652), - [anon_sym_by] = ACTIONS(3652), - [anon_sym_select] = ACTIONS(3652), - [anon_sym_stackalloc] = ACTIONS(3652), - [anon_sym_sizeof] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3652), - [anon_sym___makeref] = ACTIONS(3652), - [anon_sym___reftype] = ACTIONS(3652), - [anon_sym___refvalue] = ACTIONS(3652), - [sym_null_literal] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3654), - [sym_integer_literal] = ACTIONS(3652), - [sym_real_literal] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_verbatim_string_literal] = ACTIONS(3654), - [sym_grit_metavariable] = ACTIONS(3654), - [aux_sym_preproc_if_token1] = ACTIONS(3654), + [2095] = { + [sym_preproc_region] = STATE(2095), + [sym_preproc_endregion] = STATE(2095), + [sym_preproc_line] = STATE(2095), + [sym_preproc_pragma] = STATE(2095), + [sym_preproc_nullable] = STATE(2095), + [sym_preproc_error] = STATE(2095), + [sym_preproc_warning] = STATE(2095), + [sym_preproc_define] = STATE(2095), + [sym_preproc_undef] = STATE(2095), + [ts_builtin_sym_end] = ACTIONS(3606), + [sym__identifier_token] = ACTIONS(3604), + [anon_sym_extern] = ACTIONS(3604), + [anon_sym_alias] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_global] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_unsafe] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3604), + [anon_sym_namespace] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_ref] = ACTIONS(3604), + [anon_sym_struct] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_interface] = ACTIONS(3604), + [anon_sym_delegate] = ACTIONS(3604), + [anon_sym_record] = ACTIONS(3604), + [anon_sym_public] = ACTIONS(3604), + [anon_sym_private] = ACTIONS(3604), + [anon_sym_readonly] = ACTIONS(3604), + [anon_sym_abstract] = ACTIONS(3604), + [anon_sym_async] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_file] = ACTIONS(3604), + [anon_sym_fixed] = ACTIONS(3604), + [anon_sym_internal] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3604), + [anon_sym_override] = ACTIONS(3604), + [anon_sym_partial] = ACTIONS(3604), + [anon_sym_protected] = ACTIONS(3604), + [anon_sym_required] = ACTIONS(3604), + [anon_sym_sealed] = ACTIONS(3604), + [anon_sym_virtual] = ACTIONS(3604), + [anon_sym_volatile] = ACTIONS(3604), + [anon_sym_where] = ACTIONS(3604), + [anon_sym_notnull] = ACTIONS(3604), + [anon_sym_unmanaged] = ACTIONS(3604), + [anon_sym_checked] = ACTIONS(3604), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_this] = ACTIONS(3604), + [anon_sym_scoped] = ACTIONS(3604), + [anon_sym_base] = ACTIONS(3604), + [anon_sym_var] = ACTIONS(3604), + [anon_sym_STAR] = ACTIONS(3606), + [sym_predefined_type] = ACTIONS(3604), + [anon_sym_break] = ACTIONS(3604), + [anon_sym_unchecked] = ACTIONS(3604), + [anon_sym_continue] = ACTIONS(3604), + [anon_sym_do] = ACTIONS(3604), + [anon_sym_while] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3604), + [anon_sym_lock] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3604), + [anon_sym_switch] = ACTIONS(3604), + [anon_sym_default] = ACTIONS(3604), + [anon_sym_throw] = ACTIONS(3604), + [anon_sym_try] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(3604), + [anon_sym_await] = ACTIONS(3604), + [anon_sym_foreach] = ACTIONS(3604), + [anon_sym_goto] = ACTIONS(3604), + [anon_sym_if] = ACTIONS(3604), + [anon_sym_DOT_DOT] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3606), + [anon_sym_CARET] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3604), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_from] = ACTIONS(3604), + [anon_sym_into] = ACTIONS(3604), + [anon_sym_join] = ACTIONS(3604), + [anon_sym_on] = ACTIONS(3604), + [anon_sym_equals] = ACTIONS(3604), + [anon_sym_let] = ACTIONS(3604), + [anon_sym_orderby] = ACTIONS(3604), + [anon_sym_ascending] = ACTIONS(3604), + [anon_sym_descending] = ACTIONS(3604), + [anon_sym_group] = ACTIONS(3604), + [anon_sym_by] = ACTIONS(3604), + [anon_sym_select] = ACTIONS(3604), + [anon_sym_stackalloc] = ACTIONS(3604), + [anon_sym_sizeof] = ACTIONS(3604), + [anon_sym_typeof] = ACTIONS(3604), + [anon_sym___makeref] = ACTIONS(3604), + [anon_sym___reftype] = ACTIONS(3604), + [anon_sym___refvalue] = ACTIONS(3604), + [sym_null_literal] = ACTIONS(3604), + [anon_sym_SQUOTE] = ACTIONS(3606), + [sym_integer_literal] = ACTIONS(3604), + [sym_real_literal] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [sym_verbatim_string_literal] = ACTIONS(3606), + [sym_grit_metavariable] = ACTIONS(3606), + [aux_sym_preproc_if_token1] = ACTIONS(3606), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398574,758 +398469,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3654), - [sym_interpolation_verbatim_start] = ACTIONS(3654), - [sym_interpolation_raw_start] = ACTIONS(3654), - [sym_raw_string_start] = ACTIONS(3654), + [sym_interpolation_regular_start] = ACTIONS(3606), + [sym_interpolation_verbatim_start] = ACTIONS(3606), + [sym_interpolation_raw_start] = ACTIONS(3606), + [sym_raw_string_start] = ACTIONS(3606), }, - [2097] = { - [sym_preproc_region] = STATE(2097), - [sym_preproc_endregion] = STATE(2097), - [sym_preproc_line] = STATE(2097), - [sym_preproc_pragma] = STATE(2097), - [sym_preproc_nullable] = STATE(2097), - [sym_preproc_error] = STATE(2097), - [sym_preproc_warning] = STATE(2097), - [sym_preproc_define] = STATE(2097), - [sym_preproc_undef] = STATE(2097), - [ts_builtin_sym_end] = ACTIONS(3642), - [sym__identifier_token] = ACTIONS(3640), - [anon_sym_extern] = ACTIONS(3640), - [anon_sym_alias] = ACTIONS(3640), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_global] = ACTIONS(3640), - [anon_sym_using] = ACTIONS(3640), - [anon_sym_unsafe] = ACTIONS(3640), - [anon_sym_static] = ACTIONS(3640), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3642), - [anon_sym_return] = ACTIONS(3640), - [anon_sym_namespace] = ACTIONS(3640), - [anon_sym_class] = ACTIONS(3640), - [anon_sym_ref] = ACTIONS(3640), - [anon_sym_struct] = ACTIONS(3640), - [anon_sym_enum] = ACTIONS(3640), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_interface] = ACTIONS(3640), - [anon_sym_delegate] = ACTIONS(3640), - [anon_sym_record] = ACTIONS(3640), - [anon_sym_public] = ACTIONS(3640), - [anon_sym_private] = ACTIONS(3640), - [anon_sym_readonly] = ACTIONS(3640), - [anon_sym_abstract] = ACTIONS(3640), - [anon_sym_async] = ACTIONS(3640), - [anon_sym_const] = ACTIONS(3640), - [anon_sym_file] = ACTIONS(3640), - [anon_sym_fixed] = ACTIONS(3640), - [anon_sym_internal] = ACTIONS(3640), - [anon_sym_new] = ACTIONS(3640), - [anon_sym_override] = ACTIONS(3640), - [anon_sym_partial] = ACTIONS(3640), - [anon_sym_protected] = ACTIONS(3640), - [anon_sym_required] = ACTIONS(3640), - [anon_sym_sealed] = ACTIONS(3640), - [anon_sym_virtual] = ACTIONS(3640), - [anon_sym_volatile] = ACTIONS(3640), - [anon_sym_where] = ACTIONS(3640), - [anon_sym_notnull] = ACTIONS(3640), - [anon_sym_unmanaged] = ACTIONS(3640), - [anon_sym_checked] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3640), - [anon_sym_false] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(3642), - [anon_sym_CARET] = ACTIONS(3642), - [anon_sym_AMP] = ACTIONS(3642), - [anon_sym_this] = ACTIONS(3640), - [anon_sym_scoped] = ACTIONS(3640), - [anon_sym_base] = ACTIONS(3640), - [anon_sym_var] = ACTIONS(3640), - [sym_predefined_type] = ACTIONS(3640), - [anon_sym_break] = ACTIONS(3640), - [anon_sym_unchecked] = ACTIONS(3640), - [anon_sym_continue] = ACTIONS(3640), - [anon_sym_do] = ACTIONS(3640), - [anon_sym_while] = ACTIONS(3640), - [anon_sym_for] = ACTIONS(3640), - [anon_sym_lock] = ACTIONS(3640), - [anon_sym_yield] = ACTIONS(3640), - [anon_sym_switch] = ACTIONS(3640), - [anon_sym_default] = ACTIONS(3640), - [anon_sym_throw] = ACTIONS(3640), - [anon_sym_try] = ACTIONS(3640), - [anon_sym_when] = ACTIONS(3640), - [anon_sym_await] = ACTIONS(3640), - [anon_sym_foreach] = ACTIONS(3640), - [anon_sym_goto] = ACTIONS(3640), - [anon_sym_if] = ACTIONS(3640), - [anon_sym_DOT_DOT] = ACTIONS(3642), - [anon_sym_from] = ACTIONS(3640), - [anon_sym_into] = ACTIONS(3640), - [anon_sym_join] = ACTIONS(3640), - [anon_sym_on] = ACTIONS(3640), - [anon_sym_equals] = ACTIONS(3640), - [anon_sym_let] = ACTIONS(3640), - [anon_sym_orderby] = ACTIONS(3640), - [anon_sym_ascending] = ACTIONS(3640), - [anon_sym_descending] = ACTIONS(3640), - [anon_sym_group] = ACTIONS(3640), - [anon_sym_by] = ACTIONS(3640), - [anon_sym_select] = ACTIONS(3640), - [anon_sym_stackalloc] = ACTIONS(3640), - [anon_sym_sizeof] = ACTIONS(3640), - [anon_sym_typeof] = ACTIONS(3640), - [anon_sym___makeref] = ACTIONS(3640), - [anon_sym___reftype] = ACTIONS(3640), - [anon_sym___refvalue] = ACTIONS(3640), - [sym_null_literal] = ACTIONS(3640), - [anon_sym_SQUOTE] = ACTIONS(3642), - [sym_integer_literal] = ACTIONS(3640), - [sym_real_literal] = ACTIONS(3642), - [anon_sym_DQUOTE] = ACTIONS(3642), - [sym_verbatim_string_literal] = ACTIONS(3642), - [sym_grit_metavariable] = ACTIONS(3642), - [aux_sym_preproc_if_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_interpolation_regular_start] = ACTIONS(3642), - [sym_interpolation_verbatim_start] = ACTIONS(3642), - [sym_interpolation_raw_start] = ACTIONS(3642), - [sym_raw_string_start] = ACTIONS(3642), - }, - [2098] = { - [sym_preproc_region] = STATE(2098), - [sym_preproc_endregion] = STATE(2098), - [sym_preproc_line] = STATE(2098), - [sym_preproc_pragma] = STATE(2098), - [sym_preproc_nullable] = STATE(2098), - [sym_preproc_error] = STATE(2098), - [sym_preproc_warning] = STATE(2098), - [sym_preproc_define] = STATE(2098), - [sym_preproc_undef] = STATE(2098), - [ts_builtin_sym_end] = ACTIONS(3731), - [sym__identifier_token] = ACTIONS(3733), - [anon_sym_extern] = ACTIONS(3733), - [anon_sym_alias] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3731), - [anon_sym_global] = ACTIONS(3733), - [anon_sym_using] = ACTIONS(3733), - [anon_sym_unsafe] = ACTIONS(3733), - [anon_sym_static] = ACTIONS(3733), - [anon_sym_LBRACK] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3731), - [anon_sym_return] = ACTIONS(3733), - [anon_sym_namespace] = ACTIONS(3733), - [anon_sym_class] = ACTIONS(3733), - [anon_sym_ref] = ACTIONS(3733), - [anon_sym_struct] = ACTIONS(3733), - [anon_sym_enum] = ACTIONS(3733), - [anon_sym_LBRACE] = ACTIONS(3731), - [anon_sym_interface] = ACTIONS(3733), - [anon_sym_delegate] = ACTIONS(3733), - [anon_sym_record] = ACTIONS(3733), - [anon_sym_public] = ACTIONS(3733), - [anon_sym_private] = ACTIONS(3733), - [anon_sym_readonly] = ACTIONS(3733), - [anon_sym_abstract] = ACTIONS(3733), - [anon_sym_async] = ACTIONS(3733), - [anon_sym_const] = ACTIONS(3733), - [anon_sym_file] = ACTIONS(3733), - [anon_sym_fixed] = ACTIONS(3733), - [anon_sym_internal] = ACTIONS(3733), - [anon_sym_new] = ACTIONS(3733), - [anon_sym_override] = ACTIONS(3733), - [anon_sym_partial] = ACTIONS(3733), - [anon_sym_protected] = ACTIONS(3733), - [anon_sym_required] = ACTIONS(3733), - [anon_sym_sealed] = ACTIONS(3733), - [anon_sym_virtual] = ACTIONS(3733), - [anon_sym_volatile] = ACTIONS(3733), - [anon_sym_where] = ACTIONS(3733), - [anon_sym_notnull] = ACTIONS(3733), - [anon_sym_unmanaged] = ACTIONS(3733), - [anon_sym_checked] = ACTIONS(3733), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_true] = ACTIONS(3733), - [anon_sym_false] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3733), - [anon_sym_DASH] = ACTIONS(3733), - [anon_sym_STAR] = ACTIONS(3731), - [anon_sym_CARET] = ACTIONS(3731), - [anon_sym_AMP] = ACTIONS(3731), - [anon_sym_this] = ACTIONS(3733), - [anon_sym_scoped] = ACTIONS(3733), - [anon_sym_base] = ACTIONS(3733), - [anon_sym_var] = ACTIONS(3733), - [sym_predefined_type] = ACTIONS(3733), - [anon_sym_break] = ACTIONS(3733), - [anon_sym_unchecked] = ACTIONS(3733), - [anon_sym_continue] = ACTIONS(3733), - [anon_sym_do] = ACTIONS(3733), - [anon_sym_while] = ACTIONS(3733), - [anon_sym_for] = ACTIONS(3733), - [anon_sym_lock] = ACTIONS(3733), - [anon_sym_yield] = ACTIONS(3733), - [anon_sym_switch] = ACTIONS(3733), - [anon_sym_default] = ACTIONS(3733), - [anon_sym_throw] = ACTIONS(3733), - [anon_sym_try] = ACTIONS(3733), - [anon_sym_when] = ACTIONS(3733), - [anon_sym_await] = ACTIONS(3733), - [anon_sym_foreach] = ACTIONS(3733), - [anon_sym_goto] = ACTIONS(3733), - [anon_sym_if] = ACTIONS(3733), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_from] = ACTIONS(3733), - [anon_sym_into] = ACTIONS(3733), - [anon_sym_join] = ACTIONS(3733), - [anon_sym_on] = ACTIONS(3733), - [anon_sym_equals] = ACTIONS(3733), - [anon_sym_let] = ACTIONS(3733), - [anon_sym_orderby] = ACTIONS(3733), - [anon_sym_ascending] = ACTIONS(3733), - [anon_sym_descending] = ACTIONS(3733), - [anon_sym_group] = ACTIONS(3733), - [anon_sym_by] = ACTIONS(3733), - [anon_sym_select] = ACTIONS(3733), - [anon_sym_stackalloc] = ACTIONS(3733), - [anon_sym_sizeof] = ACTIONS(3733), - [anon_sym_typeof] = ACTIONS(3733), - [anon_sym___makeref] = ACTIONS(3733), - [anon_sym___reftype] = ACTIONS(3733), - [anon_sym___refvalue] = ACTIONS(3733), - [sym_null_literal] = ACTIONS(3733), - [anon_sym_SQUOTE] = ACTIONS(3731), - [sym_integer_literal] = ACTIONS(3733), - [sym_real_literal] = ACTIONS(3731), - [anon_sym_DQUOTE] = ACTIONS(3731), - [sym_verbatim_string_literal] = ACTIONS(3731), - [sym_grit_metavariable] = ACTIONS(3731), - [aux_sym_preproc_if_token1] = ACTIONS(3731), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3731), - [sym_interpolation_verbatim_start] = ACTIONS(3731), - [sym_interpolation_raw_start] = ACTIONS(3731), - [sym_raw_string_start] = ACTIONS(3731), - }, - [2099] = { - [sym_preproc_region] = STATE(2099), - [sym_preproc_endregion] = STATE(2099), - [sym_preproc_line] = STATE(2099), - [sym_preproc_pragma] = STATE(2099), - [sym_preproc_nullable] = STATE(2099), - [sym_preproc_error] = STATE(2099), - [sym_preproc_warning] = STATE(2099), - [sym_preproc_define] = STATE(2099), - [sym_preproc_undef] = STATE(2099), - [ts_builtin_sym_end] = ACTIONS(3686), - [sym__identifier_token] = ACTIONS(3684), - [anon_sym_extern] = ACTIONS(3684), - [anon_sym_alias] = ACTIONS(3684), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_global] = ACTIONS(3684), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_unsafe] = ACTIONS(3684), - [anon_sym_static] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_return] = ACTIONS(3684), - [anon_sym_namespace] = ACTIONS(3684), - [anon_sym_class] = ACTIONS(3684), - [anon_sym_ref] = ACTIONS(3684), - [anon_sym_struct] = ACTIONS(3684), - [anon_sym_enum] = ACTIONS(3684), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_interface] = ACTIONS(3684), - [anon_sym_delegate] = ACTIONS(3684), - [anon_sym_record] = ACTIONS(3684), - [anon_sym_public] = ACTIONS(3684), - [anon_sym_private] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_abstract] = ACTIONS(3684), - [anon_sym_async] = ACTIONS(3684), - [anon_sym_const] = ACTIONS(3684), - [anon_sym_file] = ACTIONS(3684), - [anon_sym_fixed] = ACTIONS(3684), - [anon_sym_internal] = ACTIONS(3684), - [anon_sym_new] = ACTIONS(3684), - [anon_sym_override] = ACTIONS(3684), - [anon_sym_partial] = ACTIONS(3684), - [anon_sym_protected] = ACTIONS(3684), - [anon_sym_required] = ACTIONS(3684), - [anon_sym_sealed] = ACTIONS(3684), - [anon_sym_virtual] = ACTIONS(3684), - [anon_sym_volatile] = ACTIONS(3684), - [anon_sym_where] = ACTIONS(3684), - [anon_sym_notnull] = ACTIONS(3684), - [anon_sym_unmanaged] = ACTIONS(3684), - [anon_sym_checked] = ACTIONS(3684), - [anon_sym_BANG] = ACTIONS(3686), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_true] = ACTIONS(3684), - [anon_sym_false] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3686), - [anon_sym_this] = ACTIONS(3684), - [anon_sym_scoped] = ACTIONS(3684), - [anon_sym_base] = ACTIONS(3684), - [anon_sym_var] = ACTIONS(3684), - [sym_predefined_type] = ACTIONS(3684), - [anon_sym_break] = ACTIONS(3684), - [anon_sym_unchecked] = ACTIONS(3684), - [anon_sym_continue] = ACTIONS(3684), - [anon_sym_do] = ACTIONS(3684), - [anon_sym_while] = ACTIONS(3684), - [anon_sym_for] = ACTIONS(3684), - [anon_sym_lock] = ACTIONS(3684), - [anon_sym_yield] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3684), - [anon_sym_default] = ACTIONS(3684), - [anon_sym_throw] = ACTIONS(3684), - [anon_sym_try] = ACTIONS(3684), - [anon_sym_when] = ACTIONS(3684), - [anon_sym_await] = ACTIONS(3684), - [anon_sym_foreach] = ACTIONS(3684), - [anon_sym_goto] = ACTIONS(3684), - [anon_sym_if] = ACTIONS(3684), - [anon_sym_DOT_DOT] = ACTIONS(3686), - [anon_sym_from] = ACTIONS(3684), - [anon_sym_into] = ACTIONS(3684), - [anon_sym_join] = ACTIONS(3684), - [anon_sym_on] = ACTIONS(3684), - [anon_sym_equals] = ACTIONS(3684), - [anon_sym_let] = ACTIONS(3684), - [anon_sym_orderby] = ACTIONS(3684), - [anon_sym_ascending] = ACTIONS(3684), - [anon_sym_descending] = ACTIONS(3684), - [anon_sym_group] = ACTIONS(3684), - [anon_sym_by] = ACTIONS(3684), - [anon_sym_select] = ACTIONS(3684), - [anon_sym_stackalloc] = ACTIONS(3684), - [anon_sym_sizeof] = ACTIONS(3684), - [anon_sym_typeof] = ACTIONS(3684), - [anon_sym___makeref] = ACTIONS(3684), - [anon_sym___reftype] = ACTIONS(3684), - [anon_sym___refvalue] = ACTIONS(3684), - [sym_null_literal] = ACTIONS(3684), - [anon_sym_SQUOTE] = ACTIONS(3686), - [sym_integer_literal] = ACTIONS(3684), - [sym_real_literal] = ACTIONS(3686), - [anon_sym_DQUOTE] = ACTIONS(3686), - [sym_verbatim_string_literal] = ACTIONS(3686), - [sym_grit_metavariable] = ACTIONS(3686), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3686), - [sym_interpolation_verbatim_start] = ACTIONS(3686), - [sym_interpolation_raw_start] = ACTIONS(3686), - [sym_raw_string_start] = ACTIONS(3686), - }, - [2100] = { - [sym_preproc_region] = STATE(2100), - [sym_preproc_endregion] = STATE(2100), - [sym_preproc_line] = STATE(2100), - [sym_preproc_pragma] = STATE(2100), - [sym_preproc_nullable] = STATE(2100), - [sym_preproc_error] = STATE(2100), - [sym_preproc_warning] = STATE(2100), - [sym_preproc_define] = STATE(2100), - [sym_preproc_undef] = STATE(2100), - [ts_builtin_sym_end] = ACTIONS(3674), - [sym__identifier_token] = ACTIONS(3672), - [anon_sym_extern] = ACTIONS(3672), - [anon_sym_alias] = ACTIONS(3672), - [anon_sym_SEMI] = ACTIONS(3674), - [anon_sym_global] = ACTIONS(3672), - [anon_sym_using] = ACTIONS(3672), - [anon_sym_unsafe] = ACTIONS(3672), - [anon_sym_static] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_return] = ACTIONS(3672), - [anon_sym_namespace] = ACTIONS(3672), - [anon_sym_class] = ACTIONS(3672), - [anon_sym_ref] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(3672), - [anon_sym_enum] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3674), - [anon_sym_interface] = ACTIONS(3672), - [anon_sym_delegate] = ACTIONS(3672), - [anon_sym_record] = ACTIONS(3672), - [anon_sym_public] = ACTIONS(3672), - [anon_sym_private] = ACTIONS(3672), - [anon_sym_readonly] = ACTIONS(3672), - [anon_sym_abstract] = ACTIONS(3672), - [anon_sym_async] = ACTIONS(3672), - [anon_sym_const] = ACTIONS(3672), - [anon_sym_file] = ACTIONS(3672), - [anon_sym_fixed] = ACTIONS(3672), - [anon_sym_internal] = ACTIONS(3672), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_override] = ACTIONS(3672), - [anon_sym_partial] = ACTIONS(3672), - [anon_sym_protected] = ACTIONS(3672), - [anon_sym_required] = ACTIONS(3672), - [anon_sym_sealed] = ACTIONS(3672), - [anon_sym_virtual] = ACTIONS(3672), - [anon_sym_volatile] = ACTIONS(3672), - [anon_sym_where] = ACTIONS(3672), - [anon_sym_notnull] = ACTIONS(3672), - [anon_sym_unmanaged] = ACTIONS(3672), - [anon_sym_checked] = ACTIONS(3672), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_TILDE] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3674), - [anon_sym_true] = ACTIONS(3672), - [anon_sym_false] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_STAR] = ACTIONS(3674), - [anon_sym_CARET] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_this] = ACTIONS(3672), - [anon_sym_scoped] = ACTIONS(3672), - [anon_sym_base] = ACTIONS(3672), - [anon_sym_var] = ACTIONS(3672), - [sym_predefined_type] = ACTIONS(3672), - [anon_sym_break] = ACTIONS(3672), - [anon_sym_unchecked] = ACTIONS(3672), - [anon_sym_continue] = ACTIONS(3672), - [anon_sym_do] = ACTIONS(3672), - [anon_sym_while] = ACTIONS(3672), - [anon_sym_for] = ACTIONS(3672), - [anon_sym_lock] = ACTIONS(3672), - [anon_sym_yield] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_default] = ACTIONS(3672), - [anon_sym_throw] = ACTIONS(3672), - [anon_sym_try] = ACTIONS(3672), - [anon_sym_when] = ACTIONS(3672), - [anon_sym_await] = ACTIONS(3672), - [anon_sym_foreach] = ACTIONS(3672), - [anon_sym_goto] = ACTIONS(3672), - [anon_sym_if] = ACTIONS(3672), - [anon_sym_DOT_DOT] = ACTIONS(3674), - [anon_sym_from] = ACTIONS(3672), - [anon_sym_into] = ACTIONS(3672), - [anon_sym_join] = ACTIONS(3672), - [anon_sym_on] = ACTIONS(3672), - [anon_sym_equals] = ACTIONS(3672), - [anon_sym_let] = ACTIONS(3672), - [anon_sym_orderby] = ACTIONS(3672), - [anon_sym_ascending] = ACTIONS(3672), - [anon_sym_descending] = ACTIONS(3672), - [anon_sym_group] = ACTIONS(3672), - [anon_sym_by] = ACTIONS(3672), - [anon_sym_select] = ACTIONS(3672), - [anon_sym_stackalloc] = ACTIONS(3672), - [anon_sym_sizeof] = ACTIONS(3672), - [anon_sym_typeof] = ACTIONS(3672), - [anon_sym___makeref] = ACTIONS(3672), - [anon_sym___reftype] = ACTIONS(3672), - [anon_sym___refvalue] = ACTIONS(3672), - [sym_null_literal] = ACTIONS(3672), - [anon_sym_SQUOTE] = ACTIONS(3674), - [sym_integer_literal] = ACTIONS(3672), - [sym_real_literal] = ACTIONS(3674), - [anon_sym_DQUOTE] = ACTIONS(3674), - [sym_verbatim_string_literal] = ACTIONS(3674), - [sym_grit_metavariable] = ACTIONS(3674), - [aux_sym_preproc_if_token1] = ACTIONS(3674), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3674), - [sym_interpolation_verbatim_start] = ACTIONS(3674), - [sym_interpolation_raw_start] = ACTIONS(3674), - [sym_raw_string_start] = ACTIONS(3674), - }, - [2101] = { - [sym_preproc_region] = STATE(2101), - [sym_preproc_endregion] = STATE(2101), - [sym_preproc_line] = STATE(2101), - [sym_preproc_pragma] = STATE(2101), - [sym_preproc_nullable] = STATE(2101), - [sym_preproc_error] = STATE(2101), - [sym_preproc_warning] = STATE(2101), - [sym_preproc_define] = STATE(2101), - [sym_preproc_undef] = STATE(2101), - [ts_builtin_sym_end] = ACTIONS(3720), - [sym__identifier_token] = ACTIONS(3722), - [anon_sym_extern] = ACTIONS(3722), - [anon_sym_alias] = ACTIONS(3722), - [anon_sym_SEMI] = ACTIONS(3720), - [anon_sym_global] = ACTIONS(3722), - [anon_sym_using] = ACTIONS(3722), - [anon_sym_unsafe] = ACTIONS(3722), - [anon_sym_static] = ACTIONS(3722), - [anon_sym_LBRACK] = ACTIONS(3720), - [anon_sym_LPAREN] = ACTIONS(3720), - [anon_sym_return] = ACTIONS(3722), - [anon_sym_namespace] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3722), - [anon_sym_ref] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(3722), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_LBRACE] = ACTIONS(3720), - [anon_sym_interface] = ACTIONS(3722), - [anon_sym_delegate] = ACTIONS(3722), - [anon_sym_record] = ACTIONS(3722), - [anon_sym_public] = ACTIONS(3722), - [anon_sym_private] = ACTIONS(3722), - [anon_sym_readonly] = ACTIONS(3722), - [anon_sym_abstract] = ACTIONS(3722), - [anon_sym_async] = ACTIONS(3722), - [anon_sym_const] = ACTIONS(3722), - [anon_sym_file] = ACTIONS(3722), - [anon_sym_fixed] = ACTIONS(3722), - [anon_sym_internal] = ACTIONS(3722), - [anon_sym_new] = ACTIONS(3722), - [anon_sym_override] = ACTIONS(3722), - [anon_sym_partial] = ACTIONS(3722), - [anon_sym_protected] = ACTIONS(3722), - [anon_sym_required] = ACTIONS(3722), - [anon_sym_sealed] = ACTIONS(3722), - [anon_sym_virtual] = ACTIONS(3722), - [anon_sym_volatile] = ACTIONS(3722), - [anon_sym_where] = ACTIONS(3722), - [anon_sym_notnull] = ACTIONS(3722), - [anon_sym_unmanaged] = ACTIONS(3722), - [anon_sym_checked] = ACTIONS(3722), - [anon_sym_BANG] = ACTIONS(3720), - [anon_sym_TILDE] = ACTIONS(3720), - [anon_sym_PLUS_PLUS] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3720), - [anon_sym_true] = ACTIONS(3722), - [anon_sym_false] = ACTIONS(3722), - [anon_sym_PLUS] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3722), - [anon_sym_STAR] = ACTIONS(3720), - [anon_sym_CARET] = ACTIONS(3720), - [anon_sym_AMP] = ACTIONS(3720), - [anon_sym_this] = ACTIONS(3722), - [anon_sym_scoped] = ACTIONS(3722), - [anon_sym_base] = ACTIONS(3722), - [anon_sym_var] = ACTIONS(3722), - [sym_predefined_type] = ACTIONS(3722), - [anon_sym_break] = ACTIONS(3722), - [anon_sym_unchecked] = ACTIONS(3722), - [anon_sym_continue] = ACTIONS(3722), - [anon_sym_do] = ACTIONS(3722), - [anon_sym_while] = ACTIONS(3722), - [anon_sym_for] = ACTIONS(3722), - [anon_sym_lock] = ACTIONS(3722), - [anon_sym_yield] = ACTIONS(3722), - [anon_sym_switch] = ACTIONS(3722), - [anon_sym_default] = ACTIONS(3722), - [anon_sym_throw] = ACTIONS(3722), - [anon_sym_try] = ACTIONS(3722), - [anon_sym_when] = ACTIONS(3722), - [anon_sym_await] = ACTIONS(3722), - [anon_sym_foreach] = ACTIONS(3722), - [anon_sym_goto] = ACTIONS(3722), - [anon_sym_if] = ACTIONS(3722), - [anon_sym_DOT_DOT] = ACTIONS(3720), - [anon_sym_from] = ACTIONS(3722), - [anon_sym_into] = ACTIONS(3722), - [anon_sym_join] = ACTIONS(3722), - [anon_sym_on] = ACTIONS(3722), - [anon_sym_equals] = ACTIONS(3722), - [anon_sym_let] = ACTIONS(3722), - [anon_sym_orderby] = ACTIONS(3722), - [anon_sym_ascending] = ACTIONS(3722), - [anon_sym_descending] = ACTIONS(3722), - [anon_sym_group] = ACTIONS(3722), - [anon_sym_by] = ACTIONS(3722), - [anon_sym_select] = ACTIONS(3722), - [anon_sym_stackalloc] = ACTIONS(3722), - [anon_sym_sizeof] = ACTIONS(3722), - [anon_sym_typeof] = ACTIONS(3722), - [anon_sym___makeref] = ACTIONS(3722), - [anon_sym___reftype] = ACTIONS(3722), - [anon_sym___refvalue] = ACTIONS(3722), - [sym_null_literal] = ACTIONS(3722), - [anon_sym_SQUOTE] = ACTIONS(3720), - [sym_integer_literal] = ACTIONS(3722), - [sym_real_literal] = ACTIONS(3720), - [anon_sym_DQUOTE] = ACTIONS(3720), - [sym_verbatim_string_literal] = ACTIONS(3720), - [sym_grit_metavariable] = ACTIONS(3720), - [aux_sym_preproc_if_token1] = ACTIONS(3720), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3720), - [sym_interpolation_verbatim_start] = ACTIONS(3720), - [sym_interpolation_raw_start] = ACTIONS(3720), - [sym_raw_string_start] = ACTIONS(3720), - }, - [2102] = { - [sym_preproc_region] = STATE(2102), - [sym_preproc_endregion] = STATE(2102), - [sym_preproc_line] = STATE(2102), - [sym_preproc_pragma] = STATE(2102), - [sym_preproc_nullable] = STATE(2102), - [sym_preproc_error] = STATE(2102), - [sym_preproc_warning] = STATE(2102), - [sym_preproc_define] = STATE(2102), - [sym_preproc_undef] = STATE(2102), - [ts_builtin_sym_end] = ACTIONS(3610), - [sym__identifier_token] = ACTIONS(3608), - [anon_sym_extern] = ACTIONS(3608), - [anon_sym_alias] = ACTIONS(3608), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym_global] = ACTIONS(3608), - [anon_sym_using] = ACTIONS(3608), - [anon_sym_unsafe] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3608), - [anon_sym_namespace] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_ref] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_interface] = ACTIONS(3608), - [anon_sym_delegate] = ACTIONS(3608), - [anon_sym_record] = ACTIONS(3608), - [anon_sym_public] = ACTIONS(3608), - [anon_sym_private] = ACTIONS(3608), - [anon_sym_readonly] = ACTIONS(3608), - [anon_sym_abstract] = ACTIONS(3608), - [anon_sym_async] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_file] = ACTIONS(3608), - [anon_sym_fixed] = ACTIONS(3608), - [anon_sym_internal] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3608), - [anon_sym_override] = ACTIONS(3608), - [anon_sym_partial] = ACTIONS(3608), - [anon_sym_protected] = ACTIONS(3608), - [anon_sym_required] = ACTIONS(3608), - [anon_sym_sealed] = ACTIONS(3608), - [anon_sym_virtual] = ACTIONS(3608), - [anon_sym_volatile] = ACTIONS(3608), - [anon_sym_where] = ACTIONS(3608), - [anon_sym_notnull] = ACTIONS(3608), - [anon_sym_unmanaged] = ACTIONS(3608), - [anon_sym_checked] = ACTIONS(3608), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [anon_sym_true] = ACTIONS(3608), - [anon_sym_false] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3608), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_CARET] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_this] = ACTIONS(3608), - [anon_sym_scoped] = ACTIONS(3608), - [anon_sym_base] = ACTIONS(3608), - [anon_sym_var] = ACTIONS(3608), - [sym_predefined_type] = ACTIONS(3608), - [anon_sym_break] = ACTIONS(3608), - [anon_sym_unchecked] = ACTIONS(3608), - [anon_sym_continue] = ACTIONS(3608), - [anon_sym_do] = ACTIONS(3608), - [anon_sym_while] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3608), - [anon_sym_lock] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_default] = ACTIONS(3608), - [anon_sym_throw] = ACTIONS(3608), - [anon_sym_try] = ACTIONS(3608), - [anon_sym_when] = ACTIONS(3608), - [anon_sym_await] = ACTIONS(3608), - [anon_sym_foreach] = ACTIONS(3608), - [anon_sym_goto] = ACTIONS(3608), - [anon_sym_if] = ACTIONS(3608), - [anon_sym_DOT_DOT] = ACTIONS(3610), - [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_ascending] = ACTIONS(3608), - [anon_sym_descending] = ACTIONS(3608), - [anon_sym_group] = ACTIONS(3608), - [anon_sym_by] = ACTIONS(3608), - [anon_sym_select] = ACTIONS(3608), - [anon_sym_stackalloc] = ACTIONS(3608), - [anon_sym_sizeof] = ACTIONS(3608), - [anon_sym_typeof] = ACTIONS(3608), - [anon_sym___makeref] = ACTIONS(3608), - [anon_sym___reftype] = ACTIONS(3608), - [anon_sym___refvalue] = ACTIONS(3608), - [sym_null_literal] = ACTIONS(3608), - [anon_sym_SQUOTE] = ACTIONS(3610), - [sym_integer_literal] = ACTIONS(3608), - [sym_real_literal] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [sym_verbatim_string_literal] = ACTIONS(3610), - [sym_grit_metavariable] = ACTIONS(3610), - [aux_sym_preproc_if_token1] = ACTIONS(3610), + [2096] = { + [sym_preproc_region] = STATE(2096), + [sym_preproc_endregion] = STATE(2096), + [sym_preproc_line] = STATE(2096), + [sym_preproc_pragma] = STATE(2096), + [sym_preproc_nullable] = STATE(2096), + [sym_preproc_error] = STATE(2096), + [sym_preproc_warning] = STATE(2096), + [sym_preproc_define] = STATE(2096), + [sym_preproc_undef] = STATE(2096), + [ts_builtin_sym_end] = ACTIONS(3614), + [sym__identifier_token] = ACTIONS(3612), + [anon_sym_extern] = ACTIONS(3612), + [anon_sym_alias] = ACTIONS(3612), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym_global] = ACTIONS(3612), + [anon_sym_using] = ACTIONS(3612), + [anon_sym_unsafe] = ACTIONS(3612), + [anon_sym_static] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_namespace] = ACTIONS(3612), + [anon_sym_class] = ACTIONS(3612), + [anon_sym_ref] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3612), + [anon_sym_enum] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_interface] = ACTIONS(3612), + [anon_sym_delegate] = ACTIONS(3612), + [anon_sym_record] = ACTIONS(3612), + [anon_sym_public] = ACTIONS(3612), + [anon_sym_private] = ACTIONS(3612), + [anon_sym_readonly] = ACTIONS(3612), + [anon_sym_abstract] = ACTIONS(3612), + [anon_sym_async] = ACTIONS(3612), + [anon_sym_const] = ACTIONS(3612), + [anon_sym_file] = ACTIONS(3612), + [anon_sym_fixed] = ACTIONS(3612), + [anon_sym_internal] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_override] = ACTIONS(3612), + [anon_sym_partial] = ACTIONS(3612), + [anon_sym_protected] = ACTIONS(3612), + [anon_sym_required] = ACTIONS(3612), + [anon_sym_sealed] = ACTIONS(3612), + [anon_sym_virtual] = ACTIONS(3612), + [anon_sym_volatile] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(3612), + [anon_sym_notnull] = ACTIONS(3612), + [anon_sym_unmanaged] = ACTIONS(3612), + [anon_sym_checked] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_this] = ACTIONS(3612), + [anon_sym_scoped] = ACTIONS(3612), + [anon_sym_base] = ACTIONS(3612), + [anon_sym_var] = ACTIONS(3612), + [anon_sym_STAR] = ACTIONS(3614), + [sym_predefined_type] = ACTIONS(3612), + [anon_sym_break] = ACTIONS(3612), + [anon_sym_unchecked] = ACTIONS(3612), + [anon_sym_continue] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_lock] = ACTIONS(3612), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_switch] = ACTIONS(3612), + [anon_sym_default] = ACTIONS(3612), + [anon_sym_throw] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_when] = ACTIONS(3612), + [anon_sym_await] = ACTIONS(3612), + [anon_sym_foreach] = ACTIONS(3612), + [anon_sym_goto] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_DOT_DOT] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3614), + [anon_sym_CARET] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3614), + [anon_sym_true] = ACTIONS(3612), + [anon_sym_false] = 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_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_stackalloc] = ACTIONS(3612), + [anon_sym_sizeof] = ACTIONS(3612), + [anon_sym_typeof] = ACTIONS(3612), + [anon_sym___makeref] = ACTIONS(3612), + [anon_sym___reftype] = ACTIONS(3612), + [anon_sym___refvalue] = ACTIONS(3612), + [sym_null_literal] = ACTIONS(3612), + [anon_sym_SQUOTE] = ACTIONS(3614), + [sym_integer_literal] = ACTIONS(3612), + [sym_real_literal] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [sym_verbatim_string_literal] = ACTIONS(3614), + [sym_grit_metavariable] = ACTIONS(3614), + [aux_sym_preproc_if_token1] = ACTIONS(3614), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399336,123 +398596,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3610), - [sym_interpolation_verbatim_start] = ACTIONS(3610), - [sym_interpolation_raw_start] = ACTIONS(3610), - [sym_raw_string_start] = ACTIONS(3610), + [sym_interpolation_regular_start] = ACTIONS(3614), + [sym_interpolation_verbatim_start] = ACTIONS(3614), + [sym_interpolation_raw_start] = ACTIONS(3614), + [sym_raw_string_start] = ACTIONS(3614), }, - [2103] = { - [sym_preproc_region] = STATE(2103), - [sym_preproc_endregion] = STATE(2103), - [sym_preproc_line] = STATE(2103), - [sym_preproc_pragma] = STATE(2103), - [sym_preproc_nullable] = STATE(2103), - [sym_preproc_error] = STATE(2103), - [sym_preproc_warning] = STATE(2103), - [sym_preproc_define] = STATE(2103), - [sym_preproc_undef] = STATE(2103), - [ts_builtin_sym_end] = ACTIONS(3606), - [sym__identifier_token] = ACTIONS(3604), - [anon_sym_extern] = ACTIONS(3604), - [anon_sym_alias] = ACTIONS(3604), - [anon_sym_SEMI] = ACTIONS(3606), - [anon_sym_global] = ACTIONS(3604), - [anon_sym_using] = ACTIONS(3604), - [anon_sym_unsafe] = ACTIONS(3604), - [anon_sym_static] = ACTIONS(3604), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3604), - [anon_sym_namespace] = ACTIONS(3604), - [anon_sym_class] = ACTIONS(3604), - [anon_sym_ref] = ACTIONS(3604), - [anon_sym_struct] = ACTIONS(3604), - [anon_sym_enum] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_interface] = ACTIONS(3604), - [anon_sym_delegate] = ACTIONS(3604), - [anon_sym_record] = ACTIONS(3604), - [anon_sym_public] = ACTIONS(3604), - [anon_sym_private] = ACTIONS(3604), - [anon_sym_readonly] = ACTIONS(3604), - [anon_sym_abstract] = ACTIONS(3604), - [anon_sym_async] = ACTIONS(3604), - [anon_sym_const] = ACTIONS(3604), - [anon_sym_file] = ACTIONS(3604), - [anon_sym_fixed] = ACTIONS(3604), - [anon_sym_internal] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3604), - [anon_sym_override] = ACTIONS(3604), - [anon_sym_partial] = ACTIONS(3604), - [anon_sym_protected] = ACTIONS(3604), - [anon_sym_required] = ACTIONS(3604), - [anon_sym_sealed] = ACTIONS(3604), - [anon_sym_virtual] = ACTIONS(3604), - [anon_sym_volatile] = ACTIONS(3604), - [anon_sym_where] = ACTIONS(3604), - [anon_sym_notnull] = ACTIONS(3604), - [anon_sym_unmanaged] = ACTIONS(3604), - [anon_sym_checked] = ACTIONS(3604), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3606), - [anon_sym_DASH_DASH] = ACTIONS(3606), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_PLUS] = ACTIONS(3604), - [anon_sym_DASH] = ACTIONS(3604), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_CARET] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_this] = ACTIONS(3604), - [anon_sym_scoped] = ACTIONS(3604), - [anon_sym_base] = ACTIONS(3604), - [anon_sym_var] = ACTIONS(3604), - [sym_predefined_type] = ACTIONS(3604), - [anon_sym_break] = ACTIONS(3604), - [anon_sym_unchecked] = ACTIONS(3604), - [anon_sym_continue] = ACTIONS(3604), - [anon_sym_do] = ACTIONS(3604), - [anon_sym_while] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3604), - [anon_sym_lock] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3604), - [anon_sym_switch] = ACTIONS(3604), - [anon_sym_default] = ACTIONS(3604), - [anon_sym_throw] = ACTIONS(3604), - [anon_sym_try] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(3604), - [anon_sym_await] = ACTIONS(3604), - [anon_sym_foreach] = ACTIONS(3604), - [anon_sym_goto] = ACTIONS(3604), - [anon_sym_if] = ACTIONS(3604), - [anon_sym_DOT_DOT] = ACTIONS(3606), - [anon_sym_from] = ACTIONS(3604), - [anon_sym_into] = ACTIONS(3604), - [anon_sym_join] = ACTIONS(3604), - [anon_sym_on] = ACTIONS(3604), - [anon_sym_equals] = ACTIONS(3604), - [anon_sym_let] = ACTIONS(3604), - [anon_sym_orderby] = ACTIONS(3604), - [anon_sym_ascending] = ACTIONS(3604), - [anon_sym_descending] = ACTIONS(3604), - [anon_sym_group] = ACTIONS(3604), - [anon_sym_by] = ACTIONS(3604), - [anon_sym_select] = ACTIONS(3604), - [anon_sym_stackalloc] = ACTIONS(3604), - [anon_sym_sizeof] = ACTIONS(3604), - [anon_sym_typeof] = ACTIONS(3604), - [anon_sym___makeref] = ACTIONS(3604), - [anon_sym___reftype] = ACTIONS(3604), - [anon_sym___refvalue] = ACTIONS(3604), - [sym_null_literal] = ACTIONS(3604), - [anon_sym_SQUOTE] = ACTIONS(3606), - [sym_integer_literal] = ACTIONS(3604), - [sym_real_literal] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [sym_verbatim_string_literal] = ACTIONS(3606), - [sym_grit_metavariable] = ACTIONS(3606), - [aux_sym_preproc_if_token1] = ACTIONS(3606), + [2097] = { + [sym_preproc_region] = STATE(2097), + [sym_preproc_endregion] = STATE(2097), + [sym_preproc_line] = STATE(2097), + [sym_preproc_pragma] = STATE(2097), + [sym_preproc_nullable] = STATE(2097), + [sym_preproc_error] = STATE(2097), + [sym_preproc_warning] = STATE(2097), + [sym_preproc_define] = STATE(2097), + [sym_preproc_undef] = STATE(2097), + [ts_builtin_sym_end] = ACTIONS(3594), + [sym__identifier_token] = ACTIONS(3592), + [anon_sym_extern] = ACTIONS(3592), + [anon_sym_alias] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_global] = ACTIONS(3592), + [anon_sym_using] = ACTIONS(3592), + [anon_sym_unsafe] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3594), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_namespace] = ACTIONS(3592), + [anon_sym_class] = ACTIONS(3592), + [anon_sym_ref] = ACTIONS(3592), + [anon_sym_struct] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_interface] = ACTIONS(3592), + [anon_sym_delegate] = ACTIONS(3592), + [anon_sym_record] = ACTIONS(3592), + [anon_sym_public] = ACTIONS(3592), + [anon_sym_private] = ACTIONS(3592), + [anon_sym_readonly] = ACTIONS(3592), + [anon_sym_abstract] = ACTIONS(3592), + [anon_sym_async] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_file] = ACTIONS(3592), + [anon_sym_fixed] = ACTIONS(3592), + [anon_sym_internal] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_override] = ACTIONS(3592), + [anon_sym_partial] = ACTIONS(3592), + [anon_sym_protected] = ACTIONS(3592), + [anon_sym_required] = ACTIONS(3592), + [anon_sym_sealed] = ACTIONS(3592), + [anon_sym_virtual] = ACTIONS(3592), + [anon_sym_volatile] = ACTIONS(3592), + [anon_sym_where] = ACTIONS(3592), + [anon_sym_notnull] = ACTIONS(3592), + [anon_sym_unmanaged] = ACTIONS(3592), + [anon_sym_checked] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3594), + [anon_sym_this] = ACTIONS(3592), + [anon_sym_scoped] = ACTIONS(3592), + [anon_sym_base] = ACTIONS(3592), + [anon_sym_var] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3594), + [sym_predefined_type] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_unchecked] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_lock] = ACTIONS(3592), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3592), + [anon_sym_default] = ACTIONS(3592), + [anon_sym_throw] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_when] = ACTIONS(3592), + [anon_sym_await] = ACTIONS(3592), + [anon_sym_foreach] = ACTIONS(3592), + [anon_sym_goto] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_AMP] = ACTIONS(3594), + [anon_sym_CARET] = ACTIONS(3594), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_DASH_DASH] = ACTIONS(3594), + [anon_sym_true] = ACTIONS(3592), + [anon_sym_false] = ACTIONS(3592), + [anon_sym_from] = ACTIONS(3592), + [anon_sym_into] = ACTIONS(3592), + [anon_sym_join] = ACTIONS(3592), + [anon_sym_on] = ACTIONS(3592), + [anon_sym_equals] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_orderby] = ACTIONS(3592), + [anon_sym_ascending] = ACTIONS(3592), + [anon_sym_descending] = ACTIONS(3592), + [anon_sym_group] = ACTIONS(3592), + [anon_sym_by] = ACTIONS(3592), + [anon_sym_select] = ACTIONS(3592), + [anon_sym_stackalloc] = ACTIONS(3592), + [anon_sym_sizeof] = ACTIONS(3592), + [anon_sym_typeof] = ACTIONS(3592), + [anon_sym___makeref] = ACTIONS(3592), + [anon_sym___reftype] = ACTIONS(3592), + [anon_sym___refvalue] = ACTIONS(3592), + [sym_null_literal] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(3594), + [sym_integer_literal] = ACTIONS(3592), + [sym_real_literal] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [sym_verbatim_string_literal] = ACTIONS(3594), + [sym_grit_metavariable] = ACTIONS(3594), + [aux_sym_preproc_if_token1] = ACTIONS(3594), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399463,21 +398723,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3606), - [sym_interpolation_verbatim_start] = ACTIONS(3606), - [sym_interpolation_raw_start] = ACTIONS(3606), - [sym_raw_string_start] = ACTIONS(3606), + [sym_interpolation_regular_start] = ACTIONS(3594), + [sym_interpolation_verbatim_start] = ACTIONS(3594), + [sym_interpolation_raw_start] = ACTIONS(3594), + [sym_raw_string_start] = ACTIONS(3594), }, - [2104] = { - [sym_preproc_region] = STATE(2104), - [sym_preproc_endregion] = STATE(2104), - [sym_preproc_line] = STATE(2104), - [sym_preproc_pragma] = STATE(2104), - [sym_preproc_nullable] = STATE(2104), - [sym_preproc_error] = STATE(2104), - [sym_preproc_warning] = STATE(2104), - [sym_preproc_define] = STATE(2104), - [sym_preproc_undef] = STATE(2104), + [2098] = { + [sym_preproc_region] = STATE(2098), + [sym_preproc_endregion] = STATE(2098), + [sym_preproc_line] = STATE(2098), + [sym_preproc_pragma] = STATE(2098), + [sym_preproc_nullable] = STATE(2098), + [sym_preproc_error] = STATE(2098), + [sym_preproc_warning] = STATE(2098), + [sym_preproc_define] = STATE(2098), + [sym_preproc_undef] = STATE(2098), [ts_builtin_sym_end] = ACTIONS(3626), [sym__identifier_token] = ACTIONS(3624), [anon_sym_extern] = ACTIONS(3624), @@ -399520,21 +398780,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3624), [anon_sym_unmanaged] = ACTIONS(3624), [anon_sym_checked] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3626), [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [anon_sym_PLUS] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3626), - [anon_sym_CARET] = ACTIONS(3626), - [anon_sym_AMP] = ACTIONS(3626), [anon_sym_this] = ACTIONS(3624), [anon_sym_scoped] = ACTIONS(3624), [anon_sym_base] = ACTIONS(3624), [anon_sym_var] = ACTIONS(3624), + [anon_sym_STAR] = ACTIONS(3626), [sym_predefined_type] = ACTIONS(3624), [anon_sym_break] = ACTIONS(3624), [anon_sym_unchecked] = ACTIONS(3624), @@ -399554,6 +398805,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3624), [anon_sym_if] = ACTIONS(3624), [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_CARET] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3626), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), [anon_sym_from] = ACTIONS(3624), [anon_sym_into] = ACTIONS(3624), [anon_sym_join] = ACTIONS(3624), @@ -399595,372 +398855,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3626), [sym_raw_string_start] = ACTIONS(3626), }, - [2105] = { - [sym_preproc_region] = STATE(2105), - [sym_preproc_endregion] = STATE(2105), - [sym_preproc_line] = STATE(2105), - [sym_preproc_pragma] = STATE(2105), - [sym_preproc_nullable] = STATE(2105), - [sym_preproc_error] = STATE(2105), - [sym_preproc_warning] = STATE(2105), - [sym_preproc_define] = STATE(2105), - [sym_preproc_undef] = STATE(2105), - [ts_builtin_sym_end] = ACTIONS(3682), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_extern] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3680), - [anon_sym_unsafe] = ACTIONS(3680), - [anon_sym_static] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_return] = ACTIONS(3680), - [anon_sym_namespace] = ACTIONS(3680), - [anon_sym_class] = ACTIONS(3680), - [anon_sym_ref] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_enum] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_interface] = ACTIONS(3680), - [anon_sym_delegate] = ACTIONS(3680), - [anon_sym_record] = ACTIONS(3680), - [anon_sym_public] = ACTIONS(3680), - [anon_sym_private] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3680), - [anon_sym_abstract] = ACTIONS(3680), - [anon_sym_async] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3680), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_fixed] = ACTIONS(3680), - [anon_sym_internal] = ACTIONS(3680), - [anon_sym_new] = ACTIONS(3680), - [anon_sym_override] = ACTIONS(3680), - [anon_sym_partial] = ACTIONS(3680), - [anon_sym_protected] = ACTIONS(3680), - [anon_sym_required] = ACTIONS(3680), - [anon_sym_sealed] = ACTIONS(3680), - [anon_sym_virtual] = ACTIONS(3680), - [anon_sym_volatile] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_checked] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3682), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_AMP] = ACTIONS(3682), - [anon_sym_this] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_base] = ACTIONS(3680), - [anon_sym_var] = ACTIONS(3680), - [sym_predefined_type] = ACTIONS(3680), - [anon_sym_break] = ACTIONS(3680), - [anon_sym_unchecked] = ACTIONS(3680), - [anon_sym_continue] = ACTIONS(3680), - [anon_sym_do] = ACTIONS(3680), - [anon_sym_while] = ACTIONS(3680), - [anon_sym_for] = ACTIONS(3680), - [anon_sym_lock] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_default] = ACTIONS(3680), - [anon_sym_throw] = ACTIONS(3680), - [anon_sym_try] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [anon_sym_await] = ACTIONS(3680), - [anon_sym_foreach] = ACTIONS(3680), - [anon_sym_goto] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_stackalloc] = ACTIONS(3680), - [anon_sym_sizeof] = ACTIONS(3680), - [anon_sym_typeof] = ACTIONS(3680), - [anon_sym___makeref] = ACTIONS(3680), - [anon_sym___reftype] = ACTIONS(3680), - [anon_sym___refvalue] = ACTIONS(3680), - [sym_null_literal] = ACTIONS(3680), - [anon_sym_SQUOTE] = ACTIONS(3682), - [sym_integer_literal] = ACTIONS(3680), - [sym_real_literal] = ACTIONS(3682), - [anon_sym_DQUOTE] = ACTIONS(3682), - [sym_verbatim_string_literal] = ACTIONS(3682), - [sym_grit_metavariable] = ACTIONS(3682), - [aux_sym_preproc_if_token1] = ACTIONS(3682), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3682), - [sym_interpolation_verbatim_start] = ACTIONS(3682), - [sym_interpolation_raw_start] = ACTIONS(3682), - [sym_raw_string_start] = ACTIONS(3682), - }, - [2106] = { - [sym_preproc_region] = STATE(2106), - [sym_preproc_endregion] = STATE(2106), - [sym_preproc_line] = STATE(2106), - [sym_preproc_pragma] = STATE(2106), - [sym_preproc_nullable] = STATE(2106), - [sym_preproc_error] = STATE(2106), - [sym_preproc_warning] = STATE(2106), - [sym_preproc_define] = STATE(2106), - [sym_preproc_undef] = STATE(2106), - [ts_builtin_sym_end] = ACTIONS(3594), - [sym__identifier_token] = ACTIONS(3592), - [anon_sym_extern] = ACTIONS(3592), - [anon_sym_alias] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(3594), - [anon_sym_global] = ACTIONS(3592), - [anon_sym_using] = ACTIONS(3592), - [anon_sym_unsafe] = ACTIONS(3592), - [anon_sym_static] = ACTIONS(3592), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3592), - [anon_sym_namespace] = ACTIONS(3592), - [anon_sym_class] = ACTIONS(3592), - [anon_sym_ref] = ACTIONS(3592), - [anon_sym_struct] = ACTIONS(3592), - [anon_sym_enum] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_interface] = ACTIONS(3592), - [anon_sym_delegate] = ACTIONS(3592), - [anon_sym_record] = ACTIONS(3592), - [anon_sym_public] = ACTIONS(3592), - [anon_sym_private] = ACTIONS(3592), - [anon_sym_readonly] = ACTIONS(3592), - [anon_sym_abstract] = ACTIONS(3592), - [anon_sym_async] = ACTIONS(3592), - [anon_sym_const] = ACTIONS(3592), - [anon_sym_file] = ACTIONS(3592), - [anon_sym_fixed] = ACTIONS(3592), - [anon_sym_internal] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3592), - [anon_sym_override] = ACTIONS(3592), - [anon_sym_partial] = ACTIONS(3592), - [anon_sym_protected] = ACTIONS(3592), - [anon_sym_required] = ACTIONS(3592), - [anon_sym_sealed] = ACTIONS(3592), - [anon_sym_virtual] = ACTIONS(3592), - [anon_sym_volatile] = ACTIONS(3592), - [anon_sym_where] = ACTIONS(3592), - [anon_sym_notnull] = ACTIONS(3592), - [anon_sym_unmanaged] = ACTIONS(3592), - [anon_sym_checked] = ACTIONS(3592), - [anon_sym_BANG] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3594), - [anon_sym_PLUS_PLUS] = ACTIONS(3594), - [anon_sym_DASH_DASH] = ACTIONS(3594), - [anon_sym_true] = ACTIONS(3592), - [anon_sym_false] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3594), - [anon_sym_CARET] = ACTIONS(3594), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_this] = ACTIONS(3592), - [anon_sym_scoped] = ACTIONS(3592), - [anon_sym_base] = ACTIONS(3592), - [anon_sym_var] = ACTIONS(3592), - [sym_predefined_type] = ACTIONS(3592), - [anon_sym_break] = ACTIONS(3592), - [anon_sym_unchecked] = ACTIONS(3592), - [anon_sym_continue] = ACTIONS(3592), - [anon_sym_do] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3592), - [anon_sym_lock] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3592), - [anon_sym_switch] = ACTIONS(3592), - [anon_sym_default] = ACTIONS(3592), - [anon_sym_throw] = ACTIONS(3592), - [anon_sym_try] = ACTIONS(3592), - [anon_sym_when] = ACTIONS(3592), - [anon_sym_await] = ACTIONS(3592), - [anon_sym_foreach] = ACTIONS(3592), - [anon_sym_goto] = ACTIONS(3592), - [anon_sym_if] = ACTIONS(3592), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_from] = ACTIONS(3592), - [anon_sym_into] = ACTIONS(3592), - [anon_sym_join] = ACTIONS(3592), - [anon_sym_on] = ACTIONS(3592), - [anon_sym_equals] = ACTIONS(3592), - [anon_sym_let] = ACTIONS(3592), - [anon_sym_orderby] = ACTIONS(3592), - [anon_sym_ascending] = ACTIONS(3592), - [anon_sym_descending] = ACTIONS(3592), - [anon_sym_group] = ACTIONS(3592), - [anon_sym_by] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3592), - [anon_sym_stackalloc] = ACTIONS(3592), - [anon_sym_sizeof] = ACTIONS(3592), - [anon_sym_typeof] = ACTIONS(3592), - [anon_sym___makeref] = ACTIONS(3592), - [anon_sym___reftype] = ACTIONS(3592), - [anon_sym___refvalue] = ACTIONS(3592), - [sym_null_literal] = ACTIONS(3592), - [anon_sym_SQUOTE] = ACTIONS(3594), - [sym_integer_literal] = ACTIONS(3592), - [sym_real_literal] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [sym_verbatim_string_literal] = ACTIONS(3594), - [sym_grit_metavariable] = ACTIONS(3594), - [aux_sym_preproc_if_token1] = ACTIONS(3594), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3594), - [sym_interpolation_verbatim_start] = ACTIONS(3594), - [sym_interpolation_raw_start] = ACTIONS(3594), - [sym_raw_string_start] = ACTIONS(3594), - }, - [2107] = { - [sym_preproc_region] = STATE(2107), - [sym_preproc_endregion] = STATE(2107), - [sym_preproc_line] = STATE(2107), - [sym_preproc_pragma] = STATE(2107), - [sym_preproc_nullable] = STATE(2107), - [sym_preproc_error] = STATE(2107), - [sym_preproc_warning] = STATE(2107), - [sym_preproc_define] = STATE(2107), - [sym_preproc_undef] = STATE(2107), - [ts_builtin_sym_end] = ACTIONS(3638), - [sym__identifier_token] = ACTIONS(3636), - [anon_sym_extern] = ACTIONS(3636), - [anon_sym_alias] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_global] = ACTIONS(3636), - [anon_sym_using] = ACTIONS(3636), - [anon_sym_unsafe] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_namespace] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_ref] = ACTIONS(3636), - [anon_sym_struct] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), - [anon_sym_LBRACE] = ACTIONS(3638), - [anon_sym_interface] = ACTIONS(3636), - [anon_sym_delegate] = ACTIONS(3636), - [anon_sym_record] = ACTIONS(3636), - [anon_sym_public] = ACTIONS(3636), - [anon_sym_private] = ACTIONS(3636), - [anon_sym_readonly] = ACTIONS(3636), - [anon_sym_abstract] = ACTIONS(3636), - [anon_sym_async] = ACTIONS(3636), - [anon_sym_const] = ACTIONS(3636), - [anon_sym_file] = ACTIONS(3636), - [anon_sym_fixed] = ACTIONS(3636), - [anon_sym_internal] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_override] = ACTIONS(3636), - [anon_sym_partial] = ACTIONS(3636), - [anon_sym_protected] = ACTIONS(3636), - [anon_sym_required] = ACTIONS(3636), - [anon_sym_sealed] = ACTIONS(3636), - [anon_sym_virtual] = ACTIONS(3636), - [anon_sym_volatile] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3636), - [anon_sym_notnull] = ACTIONS(3636), - [anon_sym_unmanaged] = ACTIONS(3636), - [anon_sym_checked] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3638), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_true] = ACTIONS(3636), - [anon_sym_false] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3638), - [anon_sym_CARET] = ACTIONS(3638), - [anon_sym_AMP] = ACTIONS(3638), - [anon_sym_this] = ACTIONS(3636), - [anon_sym_scoped] = ACTIONS(3636), - [anon_sym_base] = ACTIONS(3636), - [anon_sym_var] = ACTIONS(3636), - [sym_predefined_type] = ACTIONS(3636), - [anon_sym_break] = ACTIONS(3636), - [anon_sym_unchecked] = ACTIONS(3636), - [anon_sym_continue] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_lock] = ACTIONS(3636), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_default] = ACTIONS(3636), - [anon_sym_throw] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3636), - [anon_sym_await] = ACTIONS(3636), - [anon_sym_foreach] = ACTIONS(3636), - [anon_sym_goto] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_from] = ACTIONS(3636), - [anon_sym_into] = ACTIONS(3636), - [anon_sym_join] = ACTIONS(3636), - [anon_sym_on] = ACTIONS(3636), - [anon_sym_equals] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_orderby] = ACTIONS(3636), - [anon_sym_ascending] = ACTIONS(3636), - [anon_sym_descending] = ACTIONS(3636), - [anon_sym_group] = ACTIONS(3636), - [anon_sym_by] = ACTIONS(3636), - [anon_sym_select] = ACTIONS(3636), - [anon_sym_stackalloc] = ACTIONS(3636), - [anon_sym_sizeof] = ACTIONS(3636), - [anon_sym_typeof] = ACTIONS(3636), - [anon_sym___makeref] = ACTIONS(3636), - [anon_sym___reftype] = ACTIONS(3636), - [anon_sym___refvalue] = ACTIONS(3636), - [sym_null_literal] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3638), - [sym_integer_literal] = ACTIONS(3636), - [sym_real_literal] = ACTIONS(3638), - [anon_sym_DQUOTE] = ACTIONS(3638), - [sym_verbatim_string_literal] = ACTIONS(3638), - [sym_grit_metavariable] = ACTIONS(3638), - [aux_sym_preproc_if_token1] = ACTIONS(3638), + [2099] = { + [sym_preproc_region] = STATE(2099), + [sym_preproc_endregion] = STATE(2099), + [sym_preproc_line] = STATE(2099), + [sym_preproc_pragma] = STATE(2099), + [sym_preproc_nullable] = STATE(2099), + [sym_preproc_error] = STATE(2099), + [sym_preproc_warning] = STATE(2099), + [sym_preproc_define] = STATE(2099), + [sym_preproc_undef] = STATE(2099), + [ts_builtin_sym_end] = ACTIONS(3630), + [sym__identifier_token] = ACTIONS(3628), + [anon_sym_extern] = ACTIONS(3628), + [anon_sym_alias] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_global] = ACTIONS(3628), + [anon_sym_using] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3628), + [anon_sym_namespace] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_ref] = ACTIONS(3628), + [anon_sym_struct] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_interface] = ACTIONS(3628), + [anon_sym_delegate] = ACTIONS(3628), + [anon_sym_record] = ACTIONS(3628), + [anon_sym_public] = ACTIONS(3628), + [anon_sym_private] = ACTIONS(3628), + [anon_sym_readonly] = ACTIONS(3628), + [anon_sym_abstract] = ACTIONS(3628), + [anon_sym_async] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_file] = ACTIONS(3628), + [anon_sym_fixed] = ACTIONS(3628), + [anon_sym_internal] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_override] = ACTIONS(3628), + [anon_sym_partial] = ACTIONS(3628), + [anon_sym_protected] = ACTIONS(3628), + [anon_sym_required] = ACTIONS(3628), + [anon_sym_sealed] = ACTIONS(3628), + [anon_sym_virtual] = ACTIONS(3628), + [anon_sym_volatile] = ACTIONS(3628), + [anon_sym_where] = ACTIONS(3628), + [anon_sym_notnull] = ACTIONS(3628), + [anon_sym_unmanaged] = ACTIONS(3628), + [anon_sym_checked] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_this] = ACTIONS(3628), + [anon_sym_scoped] = ACTIONS(3628), + [anon_sym_base] = ACTIONS(3628), + [anon_sym_var] = ACTIONS(3628), + [anon_sym_STAR] = ACTIONS(3630), + [sym_predefined_type] = ACTIONS(3628), + [anon_sym_break] = ACTIONS(3628), + [anon_sym_unchecked] = ACTIONS(3628), + [anon_sym_continue] = ACTIONS(3628), + [anon_sym_do] = ACTIONS(3628), + [anon_sym_while] = ACTIONS(3628), + [anon_sym_for] = ACTIONS(3628), + [anon_sym_lock] = ACTIONS(3628), + [anon_sym_yield] = ACTIONS(3628), + [anon_sym_switch] = ACTIONS(3628), + [anon_sym_default] = ACTIONS(3628), + [anon_sym_throw] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3628), + [anon_sym_when] = ACTIONS(3628), + [anon_sym_await] = ACTIONS(3628), + [anon_sym_foreach] = ACTIONS(3628), + [anon_sym_goto] = ACTIONS(3628), + [anon_sym_if] = ACTIONS(3628), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_CARET] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3628), + [anon_sym_false] = ACTIONS(3628), + [anon_sym_from] = ACTIONS(3628), + [anon_sym_into] = ACTIONS(3628), + [anon_sym_join] = ACTIONS(3628), + [anon_sym_on] = ACTIONS(3628), + [anon_sym_equals] = ACTIONS(3628), + [anon_sym_let] = ACTIONS(3628), + [anon_sym_orderby] = ACTIONS(3628), + [anon_sym_ascending] = ACTIONS(3628), + [anon_sym_descending] = ACTIONS(3628), + [anon_sym_group] = ACTIONS(3628), + [anon_sym_by] = ACTIONS(3628), + [anon_sym_select] = ACTIONS(3628), + [anon_sym_stackalloc] = ACTIONS(3628), + [anon_sym_sizeof] = ACTIONS(3628), + [anon_sym_typeof] = ACTIONS(3628), + [anon_sym___makeref] = ACTIONS(3628), + [anon_sym___reftype] = ACTIONS(3628), + [anon_sym___refvalue] = ACTIONS(3628), + [sym_null_literal] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3630), + [sym_integer_literal] = ACTIONS(3628), + [sym_real_literal] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3630), + [sym_verbatim_string_literal] = ACTIONS(3630), + [sym_grit_metavariable] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399971,21 +398977,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3638), - [sym_interpolation_verbatim_start] = ACTIONS(3638), - [sym_interpolation_raw_start] = ACTIONS(3638), - [sym_raw_string_start] = ACTIONS(3638), + [sym_interpolation_regular_start] = ACTIONS(3630), + [sym_interpolation_verbatim_start] = ACTIONS(3630), + [sym_interpolation_raw_start] = ACTIONS(3630), + [sym_raw_string_start] = ACTIONS(3630), }, - [2108] = { - [sym_preproc_region] = STATE(2108), - [sym_preproc_endregion] = STATE(2108), - [sym_preproc_line] = STATE(2108), - [sym_preproc_pragma] = STATE(2108), - [sym_preproc_nullable] = STATE(2108), - [sym_preproc_error] = STATE(2108), - [sym_preproc_warning] = STATE(2108), - [sym_preproc_define] = STATE(2108), - [sym_preproc_undef] = STATE(2108), + [2100] = { + [sym_preproc_region] = STATE(2100), + [sym_preproc_endregion] = STATE(2100), + [sym_preproc_line] = STATE(2100), + [sym_preproc_pragma] = STATE(2100), + [sym_preproc_nullable] = STATE(2100), + [sym_preproc_error] = STATE(2100), + [sym_preproc_warning] = STATE(2100), + [sym_preproc_define] = STATE(2100), + [sym_preproc_undef] = STATE(2100), [ts_builtin_sym_end] = ACTIONS(3670), [sym__identifier_token] = ACTIONS(3668), [anon_sym_extern] = ACTIONS(3668), @@ -400028,21 +399034,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3668), [anon_sym_unmanaged] = ACTIONS(3668), [anon_sym_checked] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3670), [anon_sym_TILDE] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3670), - [anon_sym_DASH_DASH] = ACTIONS(3670), - [anon_sym_true] = ACTIONS(3668), - [anon_sym_false] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_CARET] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), [anon_sym_this] = ACTIONS(3668), [anon_sym_scoped] = ACTIONS(3668), [anon_sym_base] = ACTIONS(3668), [anon_sym_var] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [sym_predefined_type] = ACTIONS(3668), [anon_sym_break] = ACTIONS(3668), [anon_sym_unchecked] = ACTIONS(3668), @@ -400062,6 +399059,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3668), [anon_sym_if] = ACTIONS(3668), [anon_sym_DOT_DOT] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_true] = ACTIONS(3668), + [anon_sym_false] = ACTIONS(3668), [anon_sym_from] = ACTIONS(3668), [anon_sym_into] = ACTIONS(3668), [anon_sym_join] = ACTIONS(3668), @@ -400103,118 +399109,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3670), [sym_raw_string_start] = ACTIONS(3670), }, - [2109] = { - [sym_preproc_region] = STATE(2109), - [sym_preproc_endregion] = STATE(2109), - [sym_preproc_line] = STATE(2109), - [sym_preproc_pragma] = STATE(2109), - [sym_preproc_nullable] = STATE(2109), - [sym_preproc_error] = STATE(2109), - [sym_preproc_warning] = STATE(2109), - [sym_preproc_define] = STATE(2109), - [sym_preproc_undef] = STATE(2109), - [ts_builtin_sym_end] = ACTIONS(3582), - [sym__identifier_token] = ACTIONS(3580), - [anon_sym_extern] = ACTIONS(3580), - [anon_sym_alias] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_global] = ACTIONS(3580), - [anon_sym_using] = ACTIONS(3580), - [anon_sym_unsafe] = ACTIONS(3580), - [anon_sym_static] = ACTIONS(3580), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3580), - [anon_sym_namespace] = ACTIONS(3580), - [anon_sym_class] = ACTIONS(3580), - [anon_sym_ref] = ACTIONS(3580), - [anon_sym_struct] = ACTIONS(3580), - [anon_sym_enum] = ACTIONS(3580), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_interface] = ACTIONS(3580), - [anon_sym_delegate] = ACTIONS(3580), - [anon_sym_record] = ACTIONS(3580), - [anon_sym_public] = ACTIONS(3580), - [anon_sym_private] = ACTIONS(3580), - [anon_sym_readonly] = ACTIONS(3580), - [anon_sym_abstract] = ACTIONS(3580), - [anon_sym_async] = ACTIONS(3580), - [anon_sym_const] = ACTIONS(3580), - [anon_sym_file] = ACTIONS(3580), - [anon_sym_fixed] = ACTIONS(3580), - [anon_sym_internal] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3580), - [anon_sym_override] = ACTIONS(3580), - [anon_sym_partial] = ACTIONS(3580), - [anon_sym_protected] = ACTIONS(3580), - [anon_sym_required] = ACTIONS(3580), - [anon_sym_sealed] = ACTIONS(3580), - [anon_sym_virtual] = ACTIONS(3580), - [anon_sym_volatile] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(3580), - [anon_sym_notnull] = ACTIONS(3580), - [anon_sym_unmanaged] = ACTIONS(3580), - [anon_sym_checked] = ACTIONS(3580), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_DASH_DASH] = ACTIONS(3582), - [anon_sym_true] = ACTIONS(3580), - [anon_sym_false] = ACTIONS(3580), - [anon_sym_PLUS] = ACTIONS(3580), - [anon_sym_DASH] = ACTIONS(3580), - [anon_sym_STAR] = ACTIONS(3582), - [anon_sym_CARET] = ACTIONS(3582), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_this] = ACTIONS(3580), - [anon_sym_scoped] = ACTIONS(3580), - [anon_sym_base] = ACTIONS(3580), - [anon_sym_var] = ACTIONS(3580), - [sym_predefined_type] = ACTIONS(3580), - [anon_sym_break] = ACTIONS(3580), - [anon_sym_unchecked] = ACTIONS(3580), - [anon_sym_continue] = ACTIONS(3580), - [anon_sym_do] = ACTIONS(3580), - [anon_sym_while] = ACTIONS(3580), - [anon_sym_for] = ACTIONS(3580), - [anon_sym_lock] = ACTIONS(3580), - [anon_sym_yield] = ACTIONS(3580), - [anon_sym_switch] = ACTIONS(3580), - [anon_sym_default] = ACTIONS(3580), - [anon_sym_throw] = ACTIONS(3580), - [anon_sym_try] = ACTIONS(3580), - [anon_sym_when] = ACTIONS(3580), - [anon_sym_await] = ACTIONS(3580), - [anon_sym_foreach] = ACTIONS(3580), - [anon_sym_goto] = ACTIONS(3580), - [anon_sym_if] = ACTIONS(3580), - [anon_sym_DOT_DOT] = ACTIONS(3582), - [anon_sym_from] = ACTIONS(3580), - [anon_sym_into] = ACTIONS(3580), - [anon_sym_join] = ACTIONS(3580), - [anon_sym_on] = ACTIONS(3580), - [anon_sym_equals] = ACTIONS(3580), - [anon_sym_let] = ACTIONS(3580), - [anon_sym_orderby] = ACTIONS(3580), - [anon_sym_ascending] = ACTIONS(3580), - [anon_sym_descending] = ACTIONS(3580), - [anon_sym_group] = ACTIONS(3580), - [anon_sym_by] = ACTIONS(3580), - [anon_sym_select] = ACTIONS(3580), - [anon_sym_stackalloc] = ACTIONS(3580), - [anon_sym_sizeof] = ACTIONS(3580), - [anon_sym_typeof] = ACTIONS(3580), - [anon_sym___makeref] = ACTIONS(3580), - [anon_sym___reftype] = ACTIONS(3580), - [anon_sym___refvalue] = ACTIONS(3580), - [sym_null_literal] = ACTIONS(3580), - [anon_sym_SQUOTE] = ACTIONS(3582), - [sym_integer_literal] = ACTIONS(3580), - [sym_real_literal] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [sym_verbatim_string_literal] = ACTIONS(3582), - [sym_grit_metavariable] = ACTIONS(3582), - [aux_sym_preproc_if_token1] = ACTIONS(3582), + [2101] = { + [sym_catch_clause] = STATE(2111), + [sym_preproc_region] = STATE(2101), + [sym_preproc_endregion] = STATE(2101), + [sym_preproc_line] = STATE(2101), + [sym_preproc_pragma] = STATE(2101), + [sym_preproc_nullable] = STATE(2101), + [sym_preproc_error] = STATE(2101), + [sym_preproc_warning] = STATE(2101), + [sym_preproc_define] = STATE(2101), + [sym_preproc_undef] = STATE(2101), + [aux_sym_try_statement_repeat1] = STATE(2101), + [sym__identifier_token] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_alias] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_global] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_ref] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_delegate] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_file] = ACTIONS(3354), + [anon_sym_fixed] = ACTIONS(3354), + [anon_sym_internal] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_partial] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_required] = ACTIONS(3354), + [anon_sym_sealed] = ACTIONS(3354), + [anon_sym_virtual] = ACTIONS(3354), + [anon_sym_volatile] = ACTIONS(3354), + [anon_sym_where] = ACTIONS(3354), + [anon_sym_notnull] = ACTIONS(3354), + [anon_sym_unmanaged] = ACTIONS(3354), + [anon_sym_checked] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_this] = ACTIONS(3354), + [anon_sym_scoped] = ACTIONS(3354), + [anon_sym_base] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3356), + [sym_predefined_type] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_unchecked] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_lock] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3720), + [anon_sym_when] = ACTIONS(3354), + [anon_sym_finally] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_foreach] = ACTIONS(3354), + [anon_sym_goto] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [anon_sym_from] = ACTIONS(3354), + [anon_sym_into] = ACTIONS(3354), + [anon_sym_join] = ACTIONS(3354), + [anon_sym_on] = ACTIONS(3354), + [anon_sym_equals] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_orderby] = ACTIONS(3354), + [anon_sym_ascending] = ACTIONS(3354), + [anon_sym_descending] = ACTIONS(3354), + [anon_sym_group] = ACTIONS(3354), + [anon_sym_by] = ACTIONS(3354), + [anon_sym_select] = ACTIONS(3354), + [anon_sym_stackalloc] = ACTIONS(3354), + [anon_sym_sizeof] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym___makeref] = ACTIONS(3354), + [anon_sym___reftype] = ACTIONS(3354), + [anon_sym___refvalue] = ACTIONS(3354), + [sym_null_literal] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3356), + [sym_integer_literal] = ACTIONS(3354), + [sym_real_literal] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [sym_verbatim_string_literal] = ACTIONS(3356), + [sym_grit_metavariable] = ACTIONS(3356), + [aux_sym_preproc_if_token1] = ACTIONS(3356), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3356), + [sym_interpolation_verbatim_start] = ACTIONS(3356), + [sym_interpolation_raw_start] = ACTIONS(3356), + [sym_raw_string_start] = ACTIONS(3356), + }, + [2102] = { + [sym_preproc_region] = STATE(2102), + [sym_preproc_endregion] = STATE(2102), + [sym_preproc_line] = STATE(2102), + [sym_preproc_pragma] = STATE(2102), + [sym_preproc_nullable] = STATE(2102), + [sym_preproc_error] = STATE(2102), + [sym_preproc_warning] = STATE(2102), + [sym_preproc_define] = STATE(2102), + [sym_preproc_undef] = STATE(2102), + [ts_builtin_sym_end] = ACTIONS(3654), + [sym__identifier_token] = ACTIONS(3652), + [anon_sym_extern] = ACTIONS(3652), + [anon_sym_alias] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym_global] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_unsafe] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_ref] = ACTIONS(3652), + [anon_sym_struct] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3652), + [anon_sym_delegate] = ACTIONS(3652), + [anon_sym_record] = ACTIONS(3652), + [anon_sym_public] = ACTIONS(3652), + [anon_sym_private] = ACTIONS(3652), + [anon_sym_readonly] = ACTIONS(3652), + [anon_sym_abstract] = ACTIONS(3652), + [anon_sym_async] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_file] = ACTIONS(3652), + [anon_sym_fixed] = ACTIONS(3652), + [anon_sym_internal] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_override] = ACTIONS(3652), + [anon_sym_partial] = ACTIONS(3652), + [anon_sym_protected] = ACTIONS(3652), + [anon_sym_required] = ACTIONS(3652), + [anon_sym_sealed] = ACTIONS(3652), + [anon_sym_virtual] = ACTIONS(3652), + [anon_sym_volatile] = ACTIONS(3652), + [anon_sym_where] = ACTIONS(3652), + [anon_sym_notnull] = ACTIONS(3652), + [anon_sym_unmanaged] = ACTIONS(3652), + [anon_sym_checked] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3652), + [anon_sym_scoped] = ACTIONS(3652), + [anon_sym_base] = ACTIONS(3652), + [anon_sym_var] = ACTIONS(3652), + [anon_sym_STAR] = ACTIONS(3654), + [sym_predefined_type] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_unchecked] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_lock] = ACTIONS(3652), + [anon_sym_yield] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_default] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_when] = ACTIONS(3652), + [anon_sym_await] = ACTIONS(3652), + [anon_sym_foreach] = ACTIONS(3652), + [anon_sym_goto] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_DOT_DOT] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3654), + [anon_sym_CARET] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3652), + [anon_sym_false] = 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_ascending] = ACTIONS(3652), + [anon_sym_descending] = ACTIONS(3652), + [anon_sym_group] = ACTIONS(3652), + [anon_sym_by] = ACTIONS(3652), + [anon_sym_select] = ACTIONS(3652), + [anon_sym_stackalloc] = ACTIONS(3652), + [anon_sym_sizeof] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3652), + [anon_sym___makeref] = ACTIONS(3652), + [anon_sym___reftype] = ACTIONS(3652), + [anon_sym___refvalue] = ACTIONS(3652), + [sym_null_literal] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3654), + [sym_integer_literal] = ACTIONS(3652), + [sym_real_literal] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [sym_verbatim_string_literal] = ACTIONS(3654), + [sym_grit_metavariable] = ACTIONS(3654), + [aux_sym_preproc_if_token1] = ACTIONS(3654), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400225,123 +399358,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3582), - [sym_interpolation_verbatim_start] = ACTIONS(3582), - [sym_interpolation_raw_start] = ACTIONS(3582), - [sym_raw_string_start] = ACTIONS(3582), + [sym_interpolation_regular_start] = ACTIONS(3654), + [sym_interpolation_verbatim_start] = ACTIONS(3654), + [sym_interpolation_raw_start] = ACTIONS(3654), + [sym_raw_string_start] = ACTIONS(3654), }, - [2110] = { - [sym_preproc_region] = STATE(2110), - [sym_preproc_endregion] = STATE(2110), - [sym_preproc_line] = STATE(2110), - [sym_preproc_pragma] = STATE(2110), - [sym_preproc_nullable] = STATE(2110), - [sym_preproc_error] = STATE(2110), - [sym_preproc_warning] = STATE(2110), - [sym_preproc_define] = STATE(2110), - [sym_preproc_undef] = STATE(2110), - [ts_builtin_sym_end] = ACTIONS(3650), - [sym__identifier_token] = ACTIONS(3648), - [anon_sym_extern] = ACTIONS(3648), - [anon_sym_alias] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym_global] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_unsafe] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3650), - [anon_sym_LPAREN] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_ref] = ACTIONS(3648), - [anon_sym_struct] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3648), - [anon_sym_delegate] = ACTIONS(3648), - [anon_sym_record] = ACTIONS(3648), - [anon_sym_public] = ACTIONS(3648), - [anon_sym_private] = ACTIONS(3648), - [anon_sym_readonly] = ACTIONS(3648), - [anon_sym_abstract] = ACTIONS(3648), - [anon_sym_async] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_file] = ACTIONS(3648), - [anon_sym_fixed] = ACTIONS(3648), - [anon_sym_internal] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_override] = ACTIONS(3648), - [anon_sym_partial] = ACTIONS(3648), - [anon_sym_protected] = ACTIONS(3648), - [anon_sym_required] = ACTIONS(3648), - [anon_sym_sealed] = ACTIONS(3648), - [anon_sym_virtual] = ACTIONS(3648), - [anon_sym_volatile] = ACTIONS(3648), - [anon_sym_where] = ACTIONS(3648), - [anon_sym_notnull] = ACTIONS(3648), - [anon_sym_unmanaged] = ACTIONS(3648), - [anon_sym_checked] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_DASH_DASH] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3648), - [anon_sym_false] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_CARET] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3648), - [anon_sym_scoped] = ACTIONS(3648), - [anon_sym_base] = ACTIONS(3648), - [anon_sym_var] = ACTIONS(3648), - [sym_predefined_type] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_unchecked] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_lock] = ACTIONS(3648), - [anon_sym_yield] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_default] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_when] = ACTIONS(3648), - [anon_sym_await] = ACTIONS(3648), - [anon_sym_foreach] = ACTIONS(3648), - [anon_sym_goto] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_DOT_DOT] = ACTIONS(3650), - [anon_sym_from] = ACTIONS(3648), - [anon_sym_into] = ACTIONS(3648), - [anon_sym_join] = ACTIONS(3648), - [anon_sym_on] = ACTIONS(3648), - [anon_sym_equals] = ACTIONS(3648), - [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(3648), - [anon_sym_select] = ACTIONS(3648), - [anon_sym_stackalloc] = ACTIONS(3648), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym_typeof] = ACTIONS(3648), - [anon_sym___makeref] = ACTIONS(3648), - [anon_sym___reftype] = ACTIONS(3648), - [anon_sym___refvalue] = ACTIONS(3648), - [sym_null_literal] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3650), - [sym_integer_literal] = ACTIONS(3648), - [sym_real_literal] = ACTIONS(3650), - [anon_sym_DQUOTE] = ACTIONS(3650), - [sym_verbatim_string_literal] = ACTIONS(3650), - [sym_grit_metavariable] = ACTIONS(3650), - [aux_sym_preproc_if_token1] = ACTIONS(3650), + [2103] = { + [sym_preproc_region] = STATE(2103), + [sym_preproc_endregion] = STATE(2103), + [sym_preproc_line] = STATE(2103), + [sym_preproc_pragma] = STATE(2103), + [sym_preproc_nullable] = STATE(2103), + [sym_preproc_error] = STATE(2103), + [sym_preproc_warning] = STATE(2103), + [sym_preproc_define] = STATE(2103), + [sym_preproc_undef] = STATE(2103), + [ts_builtin_sym_end] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym_alias] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_global] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_unsafe] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_ref] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_interface] = ACTIONS(3660), + [anon_sym_delegate] = ACTIONS(3660), + [anon_sym_record] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_readonly] = ACTIONS(3660), + [anon_sym_abstract] = ACTIONS(3660), + [anon_sym_async] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_file] = ACTIONS(3660), + [anon_sym_fixed] = ACTIONS(3660), + [anon_sym_internal] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_override] = ACTIONS(3660), + [anon_sym_partial] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_required] = ACTIONS(3660), + [anon_sym_sealed] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_where] = ACTIONS(3660), + [anon_sym_notnull] = ACTIONS(3660), + [anon_sym_unmanaged] = ACTIONS(3660), + [anon_sym_checked] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_this] = ACTIONS(3660), + [anon_sym_scoped] = ACTIONS(3660), + [anon_sym_base] = ACTIONS(3660), + [anon_sym_var] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [sym_predefined_type] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_unchecked] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_lock] = ACTIONS(3660), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_when] = ACTIONS(3660), + [anon_sym_await] = ACTIONS(3660), + [anon_sym_foreach] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_DOT_DOT] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_CARET] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_true] = ACTIONS(3660), + [anon_sym_false] = 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_stackalloc] = ACTIONS(3660), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym___makeref] = ACTIONS(3660), + [anon_sym___reftype] = ACTIONS(3660), + [anon_sym___refvalue] = ACTIONS(3660), + [sym_null_literal] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3662), + [sym_integer_literal] = ACTIONS(3660), + [sym_real_literal] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_verbatim_string_literal] = ACTIONS(3662), + [sym_grit_metavariable] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400352,121 +399485,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3650), - [sym_interpolation_verbatim_start] = ACTIONS(3650), - [sym_interpolation_raw_start] = ACTIONS(3650), - [sym_raw_string_start] = ACTIONS(3650), + [sym_interpolation_regular_start] = ACTIONS(3662), + [sym_interpolation_verbatim_start] = ACTIONS(3662), + [sym_interpolation_raw_start] = ACTIONS(3662), + [sym_raw_string_start] = ACTIONS(3662), }, - [2111] = { - [sym_preproc_region] = STATE(2111), - [sym_preproc_endregion] = STATE(2111), - [sym_preproc_line] = STATE(2111), - [sym_preproc_pragma] = STATE(2111), - [sym_preproc_nullable] = STATE(2111), - [sym_preproc_error] = STATE(2111), - [sym_preproc_warning] = STATE(2111), - [sym_preproc_define] = STATE(2111), - [sym_preproc_undef] = STATE(2111), - [sym__identifier_token] = ACTIONS(3199), - [anon_sym_extern] = ACTIONS(3199), - [anon_sym_alias] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_global] = ACTIONS(3199), - [anon_sym_using] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_static] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_ref] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_delegate] = ACTIONS(3199), - [anon_sym_public] = ACTIONS(3199), - [anon_sym_private] = ACTIONS(3199), - [anon_sym_readonly] = ACTIONS(3199), - [anon_sym_abstract] = ACTIONS(3199), - [anon_sym_async] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_file] = ACTIONS(3199), - [anon_sym_fixed] = ACTIONS(3199), - [anon_sym_internal] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3199), - [anon_sym_override] = ACTIONS(3199), - [anon_sym_partial] = ACTIONS(3199), - [anon_sym_protected] = ACTIONS(3199), - [anon_sym_required] = ACTIONS(3199), - [anon_sym_sealed] = ACTIONS(3199), - [anon_sym_virtual] = ACTIONS(3199), - [anon_sym_volatile] = ACTIONS(3199), - [anon_sym_where] = ACTIONS(3199), - [anon_sym_notnull] = ACTIONS(3199), - [anon_sym_unmanaged] = ACTIONS(3199), - [anon_sym_checked] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_this] = ACTIONS(3199), - [anon_sym_scoped] = ACTIONS(3199), - [anon_sym_base] = ACTIONS(3199), - [anon_sym_var] = ACTIONS(3199), - [sym_predefined_type] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_unchecked] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_do] = ACTIONS(3199), - [anon_sym_while] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3199), - [anon_sym_switch] = ACTIONS(3199), - [anon_sym_case] = ACTIONS(3199), - [anon_sym_default] = ACTIONS(3199), - [anon_sym_throw] = ACTIONS(3199), - [anon_sym_try] = ACTIONS(3199), - [anon_sym_catch] = ACTIONS(3199), - [anon_sym_when] = ACTIONS(3199), - [anon_sym_finally] = ACTIONS(3199), - [anon_sym_await] = ACTIONS(3199), - [anon_sym_foreach] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_else] = ACTIONS(3199), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_from] = ACTIONS(3199), - [anon_sym_into] = ACTIONS(3199), - [anon_sym_join] = ACTIONS(3199), - [anon_sym_on] = ACTIONS(3199), - [anon_sym_equals] = ACTIONS(3199), - [anon_sym_let] = ACTIONS(3199), - [anon_sym_orderby] = ACTIONS(3199), - [anon_sym_ascending] = ACTIONS(3199), - [anon_sym_descending] = ACTIONS(3199), - [anon_sym_group] = ACTIONS(3199), - [anon_sym_by] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_stackalloc] = ACTIONS(3199), - [anon_sym_sizeof] = ACTIONS(3199), - [anon_sym_typeof] = ACTIONS(3199), - [anon_sym___makeref] = ACTIONS(3199), - [anon_sym___reftype] = ACTIONS(3199), - [anon_sym___refvalue] = ACTIONS(3199), - [sym_null_literal] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3201), - [sym_integer_literal] = ACTIONS(3199), - [sym_real_literal] = ACTIONS(3201), - [anon_sym_DQUOTE] = ACTIONS(3201), - [sym_verbatim_string_literal] = ACTIONS(3201), - [sym_grit_metavariable] = ACTIONS(3201), - [aux_sym_preproc_if_token1] = ACTIONS(3201), + [2104] = { + [sym_preproc_region] = STATE(2104), + [sym_preproc_endregion] = STATE(2104), + [sym_preproc_line] = STATE(2104), + [sym_preproc_pragma] = STATE(2104), + [sym_preproc_nullable] = STATE(2104), + [sym_preproc_error] = STATE(2104), + [sym_preproc_warning] = STATE(2104), + [sym_preproc_define] = STATE(2104), + [sym_preproc_undef] = STATE(2104), + [ts_builtin_sym_end] = ACTIONS(3642), + [sym__identifier_token] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym_alias] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_global] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_ref] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_interface] = ACTIONS(3640), + [anon_sym_delegate] = ACTIONS(3640), + [anon_sym_record] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_readonly] = ACTIONS(3640), + [anon_sym_abstract] = ACTIONS(3640), + [anon_sym_async] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3640), + [anon_sym_fixed] = ACTIONS(3640), + [anon_sym_internal] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_override] = ACTIONS(3640), + [anon_sym_partial] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_required] = ACTIONS(3640), + [anon_sym_sealed] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_where] = ACTIONS(3640), + [anon_sym_notnull] = ACTIONS(3640), + [anon_sym_unmanaged] = ACTIONS(3640), + [anon_sym_checked] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_this] = ACTIONS(3640), + [anon_sym_scoped] = ACTIONS(3640), + [anon_sym_base] = ACTIONS(3640), + [anon_sym_var] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [sym_predefined_type] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_unchecked] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_when] = ACTIONS(3640), + [anon_sym_await] = ACTIONS(3640), + [anon_sym_foreach] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_CARET] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_true] = ACTIONS(3640), + [anon_sym_false] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_join] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_orderby] = ACTIONS(3640), + [anon_sym_ascending] = ACTIONS(3640), + [anon_sym_descending] = ACTIONS(3640), + [anon_sym_group] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_select] = ACTIONS(3640), + [anon_sym_stackalloc] = ACTIONS(3640), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym_typeof] = ACTIONS(3640), + [anon_sym___makeref] = ACTIONS(3640), + [anon_sym___reftype] = ACTIONS(3640), + [anon_sym___refvalue] = ACTIONS(3640), + [sym_null_literal] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3642), + [sym_integer_literal] = ACTIONS(3640), + [sym_real_literal] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_verbatim_string_literal] = ACTIONS(3642), + [sym_grit_metavariable] = ACTIONS(3642), + [aux_sym_preproc_if_token1] = ACTIONS(3642), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400477,121 +399612,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3201), - [sym_interpolation_verbatim_start] = ACTIONS(3201), - [sym_interpolation_raw_start] = ACTIONS(3201), - [sym_raw_string_start] = ACTIONS(3201), + [sym_interpolation_regular_start] = ACTIONS(3642), + [sym_interpolation_verbatim_start] = ACTIONS(3642), + [sym_interpolation_raw_start] = ACTIONS(3642), + [sym_raw_string_start] = ACTIONS(3642), }, - [2112] = { - [sym_preproc_region] = STATE(2112), - [sym_preproc_endregion] = STATE(2112), - [sym_preproc_line] = STATE(2112), - [sym_preproc_pragma] = STATE(2112), - [sym_preproc_nullable] = STATE(2112), - [sym_preproc_error] = STATE(2112), - [sym_preproc_warning] = STATE(2112), - [sym_preproc_define] = STATE(2112), - [sym_preproc_undef] = STATE(2112), - [sym__identifier_token] = ACTIONS(3382), - [anon_sym_extern] = ACTIONS(3382), - [anon_sym_alias] = ACTIONS(3382), - [anon_sym_SEMI] = ACTIONS(3384), - [anon_sym_global] = ACTIONS(3382), - [anon_sym_using] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(3382), - [anon_sym_static] = ACTIONS(3382), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_LPAREN] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3382), - [anon_sym_ref] = ACTIONS(3382), - [anon_sym_LBRACE] = ACTIONS(3384), - [anon_sym_RBRACE] = ACTIONS(3384), - [anon_sym_delegate] = ACTIONS(3382), - [anon_sym_public] = ACTIONS(3382), - [anon_sym_private] = ACTIONS(3382), - [anon_sym_readonly] = ACTIONS(3382), - [anon_sym_abstract] = ACTIONS(3382), - [anon_sym_async] = ACTIONS(3382), - [anon_sym_const] = ACTIONS(3382), - [anon_sym_file] = ACTIONS(3382), - [anon_sym_fixed] = ACTIONS(3382), - [anon_sym_internal] = ACTIONS(3382), - [anon_sym_new] = ACTIONS(3382), - [anon_sym_override] = ACTIONS(3382), - [anon_sym_partial] = ACTIONS(3382), - [anon_sym_protected] = ACTIONS(3382), - [anon_sym_required] = ACTIONS(3382), - [anon_sym_sealed] = ACTIONS(3382), - [anon_sym_virtual] = ACTIONS(3382), - [anon_sym_volatile] = ACTIONS(3382), - [anon_sym_where] = ACTIONS(3382), - [anon_sym_notnull] = ACTIONS(3382), - [anon_sym_unmanaged] = ACTIONS(3382), - [anon_sym_checked] = ACTIONS(3382), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_TILDE] = ACTIONS(3384), - [anon_sym_PLUS_PLUS] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3382), - [anon_sym_false] = ACTIONS(3382), - [anon_sym_PLUS] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3382), - [anon_sym_STAR] = ACTIONS(3384), - [anon_sym_CARET] = ACTIONS(3384), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym_this] = ACTIONS(3382), - [anon_sym_scoped] = ACTIONS(3382), - [anon_sym_base] = ACTIONS(3382), - [anon_sym_var] = ACTIONS(3382), - [sym_predefined_type] = ACTIONS(3382), - [anon_sym_break] = ACTIONS(3382), - [anon_sym_unchecked] = ACTIONS(3382), - [anon_sym_continue] = ACTIONS(3382), - [anon_sym_do] = ACTIONS(3382), - [anon_sym_while] = ACTIONS(3382), - [anon_sym_for] = ACTIONS(3382), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_yield] = ACTIONS(3382), - [anon_sym_switch] = ACTIONS(3382), - [anon_sym_case] = ACTIONS(3382), - [anon_sym_default] = ACTIONS(3382), - [anon_sym_throw] = ACTIONS(3382), - [anon_sym_try] = ACTIONS(3382), - [anon_sym_catch] = ACTIONS(3382), - [anon_sym_when] = ACTIONS(3382), - [anon_sym_finally] = ACTIONS(3382), - [anon_sym_await] = ACTIONS(3382), - [anon_sym_foreach] = ACTIONS(3382), - [anon_sym_goto] = ACTIONS(3382), - [anon_sym_if] = ACTIONS(3382), - [anon_sym_else] = ACTIONS(3382), - [anon_sym_DOT_DOT] = ACTIONS(3384), - [anon_sym_from] = ACTIONS(3382), - [anon_sym_into] = ACTIONS(3382), - [anon_sym_join] = ACTIONS(3382), - [anon_sym_on] = ACTIONS(3382), - [anon_sym_equals] = ACTIONS(3382), - [anon_sym_let] = ACTIONS(3382), - [anon_sym_orderby] = ACTIONS(3382), - [anon_sym_ascending] = ACTIONS(3382), - [anon_sym_descending] = ACTIONS(3382), - [anon_sym_group] = ACTIONS(3382), - [anon_sym_by] = ACTIONS(3382), - [anon_sym_select] = ACTIONS(3382), - [anon_sym_stackalloc] = ACTIONS(3382), - [anon_sym_sizeof] = ACTIONS(3382), - [anon_sym_typeof] = ACTIONS(3382), - [anon_sym___makeref] = ACTIONS(3382), - [anon_sym___reftype] = ACTIONS(3382), - [anon_sym___refvalue] = ACTIONS(3382), - [sym_null_literal] = ACTIONS(3382), - [anon_sym_SQUOTE] = ACTIONS(3384), - [sym_integer_literal] = ACTIONS(3382), - [sym_real_literal] = ACTIONS(3384), - [anon_sym_DQUOTE] = ACTIONS(3384), - [sym_verbatim_string_literal] = ACTIONS(3384), - [sym_grit_metavariable] = ACTIONS(3384), - [aux_sym_preproc_if_token1] = ACTIONS(3384), + [2105] = { + [sym_preproc_region] = STATE(2105), + [sym_preproc_endregion] = STATE(2105), + [sym_preproc_line] = STATE(2105), + [sym_preproc_pragma] = STATE(2105), + [sym_preproc_nullable] = STATE(2105), + [sym_preproc_error] = STATE(2105), + [sym_preproc_warning] = STATE(2105), + [sym_preproc_define] = STATE(2105), + [sym_preproc_undef] = STATE(2105), + [ts_builtin_sym_end] = ACTIONS(3723), + [sym__identifier_token] = ACTIONS(3725), + [anon_sym_extern] = ACTIONS(3725), + [anon_sym_alias] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3723), + [anon_sym_global] = ACTIONS(3725), + [anon_sym_using] = ACTIONS(3725), + [anon_sym_unsafe] = ACTIONS(3725), + [anon_sym_static] = ACTIONS(3725), + [anon_sym_LBRACK] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3723), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_namespace] = ACTIONS(3725), + [anon_sym_class] = ACTIONS(3725), + [anon_sym_ref] = ACTIONS(3725), + [anon_sym_struct] = ACTIONS(3725), + [anon_sym_enum] = ACTIONS(3725), + [anon_sym_LBRACE] = ACTIONS(3723), + [anon_sym_interface] = ACTIONS(3725), + [anon_sym_delegate] = ACTIONS(3725), + [anon_sym_record] = ACTIONS(3725), + [anon_sym_public] = ACTIONS(3725), + [anon_sym_private] = ACTIONS(3725), + [anon_sym_readonly] = ACTIONS(3725), + [anon_sym_abstract] = ACTIONS(3725), + [anon_sym_async] = ACTIONS(3725), + [anon_sym_const] = ACTIONS(3725), + [anon_sym_file] = ACTIONS(3725), + [anon_sym_fixed] = ACTIONS(3725), + [anon_sym_internal] = ACTIONS(3725), + [anon_sym_new] = ACTIONS(3725), + [anon_sym_override] = ACTIONS(3725), + [anon_sym_partial] = ACTIONS(3725), + [anon_sym_protected] = ACTIONS(3725), + [anon_sym_required] = ACTIONS(3725), + [anon_sym_sealed] = ACTIONS(3725), + [anon_sym_virtual] = ACTIONS(3725), + [anon_sym_volatile] = ACTIONS(3725), + [anon_sym_where] = ACTIONS(3725), + [anon_sym_notnull] = ACTIONS(3725), + [anon_sym_unmanaged] = ACTIONS(3725), + [anon_sym_checked] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3723), + [anon_sym_this] = ACTIONS(3725), + [anon_sym_scoped] = ACTIONS(3725), + [anon_sym_base] = ACTIONS(3725), + [anon_sym_var] = ACTIONS(3725), + [anon_sym_STAR] = ACTIONS(3723), + [sym_predefined_type] = ACTIONS(3725), + [anon_sym_break] = ACTIONS(3725), + [anon_sym_unchecked] = ACTIONS(3725), + [anon_sym_continue] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_lock] = ACTIONS(3725), + [anon_sym_yield] = ACTIONS(3725), + [anon_sym_switch] = ACTIONS(3725), + [anon_sym_default] = ACTIONS(3725), + [anon_sym_throw] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_when] = ACTIONS(3725), + [anon_sym_await] = ACTIONS(3725), + [anon_sym_foreach] = ACTIONS(3725), + [anon_sym_goto] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_DOT_DOT] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3723), + [anon_sym_CARET] = ACTIONS(3723), + [anon_sym_PLUS] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_PLUS_PLUS] = ACTIONS(3723), + [anon_sym_DASH_DASH] = ACTIONS(3723), + [anon_sym_true] = ACTIONS(3725), + [anon_sym_false] = ACTIONS(3725), + [anon_sym_from] = ACTIONS(3725), + [anon_sym_into] = ACTIONS(3725), + [anon_sym_join] = ACTIONS(3725), + [anon_sym_on] = ACTIONS(3725), + [anon_sym_equals] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_orderby] = ACTIONS(3725), + [anon_sym_ascending] = ACTIONS(3725), + [anon_sym_descending] = ACTIONS(3725), + [anon_sym_group] = ACTIONS(3725), + [anon_sym_by] = ACTIONS(3725), + [anon_sym_select] = ACTIONS(3725), + [anon_sym_stackalloc] = ACTIONS(3725), + [anon_sym_sizeof] = ACTIONS(3725), + [anon_sym_typeof] = ACTIONS(3725), + [anon_sym___makeref] = ACTIONS(3725), + [anon_sym___reftype] = ACTIONS(3725), + [anon_sym___refvalue] = ACTIONS(3725), + [sym_null_literal] = ACTIONS(3725), + [anon_sym_SQUOTE] = ACTIONS(3723), + [sym_integer_literal] = ACTIONS(3725), + [sym_real_literal] = ACTIONS(3723), + [anon_sym_DQUOTE] = ACTIONS(3723), + [sym_verbatim_string_literal] = ACTIONS(3723), + [sym_grit_metavariable] = ACTIONS(3723), + [aux_sym_preproc_if_token1] = ACTIONS(3723), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3723), + [sym_interpolation_verbatim_start] = ACTIONS(3723), + [sym_interpolation_raw_start] = ACTIONS(3723), + [sym_raw_string_start] = ACTIONS(3723), + }, + [2106] = { + [sym_preproc_region] = STATE(2106), + [sym_preproc_endregion] = STATE(2106), + [sym_preproc_line] = STATE(2106), + [sym_preproc_pragma] = STATE(2106), + [sym_preproc_nullable] = STATE(2106), + [sym_preproc_error] = STATE(2106), + [sym_preproc_warning] = STATE(2106), + [sym_preproc_define] = STATE(2106), + [sym_preproc_undef] = STATE(2106), + [ts_builtin_sym_end] = ACTIONS(3610), + [sym__identifier_token] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3608), + [anon_sym_alias] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym_global] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3608), + [anon_sym_unsafe] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_ref] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3610), + [anon_sym_interface] = ACTIONS(3608), + [anon_sym_delegate] = ACTIONS(3608), + [anon_sym_record] = ACTIONS(3608), + [anon_sym_public] = ACTIONS(3608), + [anon_sym_private] = ACTIONS(3608), + [anon_sym_readonly] = ACTIONS(3608), + [anon_sym_abstract] = ACTIONS(3608), + [anon_sym_async] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_file] = ACTIONS(3608), + [anon_sym_fixed] = ACTIONS(3608), + [anon_sym_internal] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_override] = ACTIONS(3608), + [anon_sym_partial] = ACTIONS(3608), + [anon_sym_protected] = ACTIONS(3608), + [anon_sym_required] = ACTIONS(3608), + [anon_sym_sealed] = ACTIONS(3608), + [anon_sym_virtual] = ACTIONS(3608), + [anon_sym_volatile] = ACTIONS(3608), + [anon_sym_where] = ACTIONS(3608), + [anon_sym_notnull] = ACTIONS(3608), + [anon_sym_unmanaged] = ACTIONS(3608), + [anon_sym_checked] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_this] = ACTIONS(3608), + [anon_sym_scoped] = ACTIONS(3608), + [anon_sym_base] = ACTIONS(3608), + [anon_sym_var] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3610), + [sym_predefined_type] = ACTIONS(3608), + [anon_sym_break] = ACTIONS(3608), + [anon_sym_unchecked] = ACTIONS(3608), + [anon_sym_continue] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_lock] = ACTIONS(3608), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_switch] = ACTIONS(3608), + [anon_sym_default] = ACTIONS(3608), + [anon_sym_throw] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_when] = ACTIONS(3608), + [anon_sym_await] = ACTIONS(3608), + [anon_sym_foreach] = ACTIONS(3608), + [anon_sym_goto] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_DOT_DOT] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_PLUS_PLUS] = ACTIONS(3610), + [anon_sym_DASH_DASH] = ACTIONS(3610), + [anon_sym_true] = ACTIONS(3608), + [anon_sym_false] = 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_ascending] = ACTIONS(3608), + [anon_sym_descending] = ACTIONS(3608), + [anon_sym_group] = ACTIONS(3608), + [anon_sym_by] = ACTIONS(3608), + [anon_sym_select] = ACTIONS(3608), + [anon_sym_stackalloc] = ACTIONS(3608), + [anon_sym_sizeof] = ACTIONS(3608), + [anon_sym_typeof] = ACTIONS(3608), + [anon_sym___makeref] = ACTIONS(3608), + [anon_sym___reftype] = ACTIONS(3608), + [anon_sym___refvalue] = ACTIONS(3608), + [sym_null_literal] = ACTIONS(3608), + [anon_sym_SQUOTE] = ACTIONS(3610), + [sym_integer_literal] = ACTIONS(3608), + [sym_real_literal] = ACTIONS(3610), + [anon_sym_DQUOTE] = ACTIONS(3610), + [sym_verbatim_string_literal] = ACTIONS(3610), + [sym_grit_metavariable] = ACTIONS(3610), + [aux_sym_preproc_if_token1] = ACTIONS(3610), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400602,21 +399866,529 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3384), - [sym_interpolation_verbatim_start] = ACTIONS(3384), - [sym_interpolation_raw_start] = ACTIONS(3384), - [sym_raw_string_start] = ACTIONS(3384), + [sym_interpolation_regular_start] = ACTIONS(3610), + [sym_interpolation_verbatim_start] = ACTIONS(3610), + [sym_interpolation_raw_start] = ACTIONS(3610), + [sym_raw_string_start] = ACTIONS(3610), }, - [2113] = { - [sym_preproc_region] = STATE(2113), - [sym_preproc_endregion] = STATE(2113), - [sym_preproc_line] = STATE(2113), - [sym_preproc_pragma] = STATE(2113), - [sym_preproc_nullable] = STATE(2113), - [sym_preproc_error] = STATE(2113), - [sym_preproc_warning] = STATE(2113), - [sym_preproc_define] = STATE(2113), - [sym_preproc_undef] = STATE(2113), + [2107] = { + [sym_preproc_region] = STATE(2107), + [sym_preproc_endregion] = STATE(2107), + [sym_preproc_line] = STATE(2107), + [sym_preproc_pragma] = STATE(2107), + [sym_preproc_nullable] = STATE(2107), + [sym_preproc_error] = STATE(2107), + [sym_preproc_warning] = STATE(2107), + [sym_preproc_define] = STATE(2107), + [sym_preproc_undef] = STATE(2107), + [ts_builtin_sym_end] = ACTIONS(3727), + [sym__identifier_token] = ACTIONS(3729), + [anon_sym_extern] = ACTIONS(3729), + [anon_sym_alias] = ACTIONS(3729), + [anon_sym_SEMI] = ACTIONS(3727), + [anon_sym_global] = ACTIONS(3729), + [anon_sym_using] = ACTIONS(3729), + [anon_sym_unsafe] = ACTIONS(3729), + [anon_sym_static] = ACTIONS(3729), + [anon_sym_LBRACK] = ACTIONS(3727), + [anon_sym_LPAREN] = ACTIONS(3727), + [anon_sym_return] = ACTIONS(3729), + [anon_sym_namespace] = ACTIONS(3729), + [anon_sym_class] = ACTIONS(3729), + [anon_sym_ref] = ACTIONS(3729), + [anon_sym_struct] = ACTIONS(3729), + [anon_sym_enum] = ACTIONS(3729), + [anon_sym_LBRACE] = ACTIONS(3727), + [anon_sym_interface] = ACTIONS(3729), + [anon_sym_delegate] = ACTIONS(3729), + [anon_sym_record] = ACTIONS(3729), + [anon_sym_public] = ACTIONS(3729), + [anon_sym_private] = ACTIONS(3729), + [anon_sym_readonly] = ACTIONS(3729), + [anon_sym_abstract] = ACTIONS(3729), + [anon_sym_async] = ACTIONS(3729), + [anon_sym_const] = ACTIONS(3729), + [anon_sym_file] = ACTIONS(3729), + [anon_sym_fixed] = ACTIONS(3729), + [anon_sym_internal] = ACTIONS(3729), + [anon_sym_new] = ACTIONS(3729), + [anon_sym_override] = ACTIONS(3729), + [anon_sym_partial] = ACTIONS(3729), + [anon_sym_protected] = ACTIONS(3729), + [anon_sym_required] = ACTIONS(3729), + [anon_sym_sealed] = ACTIONS(3729), + [anon_sym_virtual] = ACTIONS(3729), + [anon_sym_volatile] = ACTIONS(3729), + [anon_sym_where] = ACTIONS(3729), + [anon_sym_notnull] = ACTIONS(3729), + [anon_sym_unmanaged] = ACTIONS(3729), + [anon_sym_checked] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3727), + [anon_sym_this] = ACTIONS(3729), + [anon_sym_scoped] = ACTIONS(3729), + [anon_sym_base] = ACTIONS(3729), + [anon_sym_var] = ACTIONS(3729), + [anon_sym_STAR] = ACTIONS(3727), + [sym_predefined_type] = ACTIONS(3729), + [anon_sym_break] = ACTIONS(3729), + [anon_sym_unchecked] = ACTIONS(3729), + [anon_sym_continue] = ACTIONS(3729), + [anon_sym_do] = ACTIONS(3729), + [anon_sym_while] = ACTIONS(3729), + [anon_sym_for] = ACTIONS(3729), + [anon_sym_lock] = ACTIONS(3729), + [anon_sym_yield] = ACTIONS(3729), + [anon_sym_switch] = ACTIONS(3729), + [anon_sym_default] = ACTIONS(3729), + [anon_sym_throw] = ACTIONS(3729), + [anon_sym_try] = ACTIONS(3729), + [anon_sym_when] = ACTIONS(3729), + [anon_sym_await] = ACTIONS(3729), + [anon_sym_foreach] = ACTIONS(3729), + [anon_sym_goto] = ACTIONS(3729), + [anon_sym_if] = ACTIONS(3729), + [anon_sym_DOT_DOT] = ACTIONS(3727), + [anon_sym_AMP] = ACTIONS(3727), + [anon_sym_CARET] = ACTIONS(3727), + [anon_sym_PLUS] = ACTIONS(3729), + [anon_sym_DASH] = ACTIONS(3729), + [anon_sym_BANG] = ACTIONS(3727), + [anon_sym_PLUS_PLUS] = ACTIONS(3727), + [anon_sym_DASH_DASH] = ACTIONS(3727), + [anon_sym_true] = ACTIONS(3729), + [anon_sym_false] = ACTIONS(3729), + [anon_sym_from] = ACTIONS(3729), + [anon_sym_into] = ACTIONS(3729), + [anon_sym_join] = ACTIONS(3729), + [anon_sym_on] = ACTIONS(3729), + [anon_sym_equals] = ACTIONS(3729), + [anon_sym_let] = ACTIONS(3729), + [anon_sym_orderby] = ACTIONS(3729), + [anon_sym_ascending] = ACTIONS(3729), + [anon_sym_descending] = ACTIONS(3729), + [anon_sym_group] = ACTIONS(3729), + [anon_sym_by] = ACTIONS(3729), + [anon_sym_select] = ACTIONS(3729), + [anon_sym_stackalloc] = ACTIONS(3729), + [anon_sym_sizeof] = ACTIONS(3729), + [anon_sym_typeof] = ACTIONS(3729), + [anon_sym___makeref] = ACTIONS(3729), + [anon_sym___reftype] = ACTIONS(3729), + [anon_sym___refvalue] = ACTIONS(3729), + [sym_null_literal] = ACTIONS(3729), + [anon_sym_SQUOTE] = ACTIONS(3727), + [sym_integer_literal] = ACTIONS(3729), + [sym_real_literal] = ACTIONS(3727), + [anon_sym_DQUOTE] = ACTIONS(3727), + [sym_verbatim_string_literal] = ACTIONS(3727), + [sym_grit_metavariable] = ACTIONS(3727), + [aux_sym_preproc_if_token1] = ACTIONS(3727), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3727), + [sym_interpolation_verbatim_start] = ACTIONS(3727), + [sym_interpolation_raw_start] = ACTIONS(3727), + [sym_raw_string_start] = ACTIONS(3727), + }, + [2108] = { + [sym_preproc_region] = STATE(2108), + [sym_preproc_endregion] = STATE(2108), + [sym_preproc_line] = STATE(2108), + [sym_preproc_pragma] = STATE(2108), + [sym_preproc_nullable] = STATE(2108), + [sym_preproc_error] = STATE(2108), + [sym_preproc_warning] = STATE(2108), + [sym_preproc_define] = STATE(2108), + [sym_preproc_undef] = STATE(2108), + [ts_builtin_sym_end] = ACTIONS(3686), + [sym__identifier_token] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym_alias] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_global] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_unsafe] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_ref] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_delegate] = ACTIONS(3684), + [anon_sym_record] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3684), + [anon_sym_abstract] = ACTIONS(3684), + [anon_sym_async] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_file] = ACTIONS(3684), + [anon_sym_fixed] = ACTIONS(3684), + [anon_sym_internal] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_partial] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_required] = ACTIONS(3684), + [anon_sym_sealed] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_where] = ACTIONS(3684), + [anon_sym_notnull] = ACTIONS(3684), + [anon_sym_unmanaged] = ACTIONS(3684), + [anon_sym_checked] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_this] = ACTIONS(3684), + [anon_sym_scoped] = ACTIONS(3684), + [anon_sym_base] = ACTIONS(3684), + [anon_sym_var] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [sym_predefined_type] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_unchecked] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_when] = ACTIONS(3684), + [anon_sym_await] = ACTIONS(3684), + [anon_sym_foreach] = ACTIONS(3684), + [anon_sym_goto] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_DOT_DOT] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_CARET] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_true] = ACTIONS(3684), + [anon_sym_false] = ACTIONS(3684), + [anon_sym_from] = ACTIONS(3684), + [anon_sym_into] = ACTIONS(3684), + [anon_sym_join] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3684), + [anon_sym_equals] = ACTIONS(3684), + [anon_sym_let] = ACTIONS(3684), + [anon_sym_orderby] = ACTIONS(3684), + [anon_sym_ascending] = ACTIONS(3684), + [anon_sym_descending] = ACTIONS(3684), + [anon_sym_group] = ACTIONS(3684), + [anon_sym_by] = ACTIONS(3684), + [anon_sym_select] = ACTIONS(3684), + [anon_sym_stackalloc] = ACTIONS(3684), + [anon_sym_sizeof] = ACTIONS(3684), + [anon_sym_typeof] = ACTIONS(3684), + [anon_sym___makeref] = ACTIONS(3684), + [anon_sym___reftype] = ACTIONS(3684), + [anon_sym___refvalue] = ACTIONS(3684), + [sym_null_literal] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3686), + [sym_integer_literal] = ACTIONS(3684), + [sym_real_literal] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym_verbatim_string_literal] = ACTIONS(3686), + [sym_grit_metavariable] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3686), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3686), + [sym_interpolation_verbatim_start] = ACTIONS(3686), + [sym_interpolation_raw_start] = ACTIONS(3686), + [sym_raw_string_start] = ACTIONS(3686), + }, + [2109] = { + [sym_preproc_region] = STATE(2109), + [sym_preproc_endregion] = STATE(2109), + [sym_preproc_line] = STATE(2109), + [sym_preproc_pragma] = STATE(2109), + [sym_preproc_nullable] = STATE(2109), + [sym_preproc_error] = STATE(2109), + [sym_preproc_warning] = STATE(2109), + [sym_preproc_define] = STATE(2109), + [sym_preproc_undef] = STATE(2109), + [ts_builtin_sym_end] = ACTIONS(3727), + [sym__identifier_token] = ACTIONS(3729), + [anon_sym_extern] = ACTIONS(3729), + [anon_sym_alias] = ACTIONS(3729), + [anon_sym_SEMI] = ACTIONS(3727), + [anon_sym_global] = ACTIONS(3729), + [anon_sym_using] = ACTIONS(3729), + [anon_sym_unsafe] = ACTIONS(3729), + [anon_sym_static] = ACTIONS(3729), + [anon_sym_LBRACK] = ACTIONS(3727), + [anon_sym_LPAREN] = ACTIONS(3727), + [anon_sym_return] = ACTIONS(3729), + [anon_sym_namespace] = ACTIONS(3729), + [anon_sym_class] = ACTIONS(3729), + [anon_sym_ref] = ACTIONS(3729), + [anon_sym_struct] = ACTIONS(3729), + [anon_sym_enum] = ACTIONS(3729), + [anon_sym_LBRACE] = ACTIONS(3727), + [anon_sym_interface] = ACTIONS(3729), + [anon_sym_delegate] = ACTIONS(3729), + [anon_sym_record] = ACTIONS(3729), + [anon_sym_public] = ACTIONS(3729), + [anon_sym_private] = ACTIONS(3729), + [anon_sym_readonly] = ACTIONS(3729), + [anon_sym_abstract] = ACTIONS(3729), + [anon_sym_async] = ACTIONS(3729), + [anon_sym_const] = ACTIONS(3729), + [anon_sym_file] = ACTIONS(3729), + [anon_sym_fixed] = ACTIONS(3729), + [anon_sym_internal] = ACTIONS(3729), + [anon_sym_new] = ACTIONS(3729), + [anon_sym_override] = ACTIONS(3729), + [anon_sym_partial] = ACTIONS(3729), + [anon_sym_protected] = ACTIONS(3729), + [anon_sym_required] = ACTIONS(3729), + [anon_sym_sealed] = ACTIONS(3729), + [anon_sym_virtual] = ACTIONS(3729), + [anon_sym_volatile] = ACTIONS(3729), + [anon_sym_where] = ACTIONS(3729), + [anon_sym_notnull] = ACTIONS(3729), + [anon_sym_unmanaged] = ACTIONS(3729), + [anon_sym_checked] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3727), + [anon_sym_this] = ACTIONS(3729), + [anon_sym_scoped] = ACTIONS(3729), + [anon_sym_base] = ACTIONS(3729), + [anon_sym_var] = ACTIONS(3729), + [anon_sym_STAR] = ACTIONS(3727), + [sym_predefined_type] = ACTIONS(3729), + [anon_sym_break] = ACTIONS(3729), + [anon_sym_unchecked] = ACTIONS(3729), + [anon_sym_continue] = ACTIONS(3729), + [anon_sym_do] = ACTIONS(3729), + [anon_sym_while] = ACTIONS(3729), + [anon_sym_for] = ACTIONS(3729), + [anon_sym_lock] = ACTIONS(3729), + [anon_sym_yield] = ACTIONS(3729), + [anon_sym_switch] = ACTIONS(3729), + [anon_sym_default] = ACTIONS(3729), + [anon_sym_throw] = ACTIONS(3729), + [anon_sym_try] = ACTIONS(3729), + [anon_sym_when] = ACTIONS(3729), + [anon_sym_await] = ACTIONS(3729), + [anon_sym_foreach] = ACTIONS(3729), + [anon_sym_goto] = ACTIONS(3729), + [anon_sym_if] = ACTIONS(3729), + [anon_sym_DOT_DOT] = ACTIONS(3727), + [anon_sym_AMP] = ACTIONS(3727), + [anon_sym_CARET] = ACTIONS(3727), + [anon_sym_PLUS] = ACTIONS(3729), + [anon_sym_DASH] = ACTIONS(3729), + [anon_sym_BANG] = ACTIONS(3727), + [anon_sym_PLUS_PLUS] = ACTIONS(3727), + [anon_sym_DASH_DASH] = ACTIONS(3727), + [anon_sym_true] = ACTIONS(3729), + [anon_sym_false] = ACTIONS(3729), + [anon_sym_from] = ACTIONS(3729), + [anon_sym_into] = ACTIONS(3729), + [anon_sym_join] = ACTIONS(3729), + [anon_sym_on] = ACTIONS(3729), + [anon_sym_equals] = ACTIONS(3729), + [anon_sym_let] = ACTIONS(3729), + [anon_sym_orderby] = ACTIONS(3729), + [anon_sym_ascending] = ACTIONS(3729), + [anon_sym_descending] = ACTIONS(3729), + [anon_sym_group] = ACTIONS(3729), + [anon_sym_by] = ACTIONS(3729), + [anon_sym_select] = ACTIONS(3729), + [anon_sym_stackalloc] = ACTIONS(3729), + [anon_sym_sizeof] = ACTIONS(3729), + [anon_sym_typeof] = ACTIONS(3729), + [anon_sym___makeref] = ACTIONS(3729), + [anon_sym___reftype] = ACTIONS(3729), + [anon_sym___refvalue] = ACTIONS(3729), + [sym_null_literal] = ACTIONS(3729), + [anon_sym_SQUOTE] = ACTIONS(3727), + [sym_integer_literal] = ACTIONS(3729), + [sym_real_literal] = ACTIONS(3727), + [anon_sym_DQUOTE] = ACTIONS(3727), + [sym_verbatim_string_literal] = ACTIONS(3727), + [sym_grit_metavariable] = ACTIONS(3727), + [aux_sym_preproc_if_token1] = ACTIONS(3727), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3727), + [sym_interpolation_verbatim_start] = ACTIONS(3727), + [sym_interpolation_raw_start] = ACTIONS(3727), + [sym_raw_string_start] = ACTIONS(3727), + }, + [2110] = { + [sym_preproc_region] = STATE(2110), + [sym_preproc_endregion] = STATE(2110), + [sym_preproc_line] = STATE(2110), + [sym_preproc_pragma] = STATE(2110), + [sym_preproc_nullable] = STATE(2110), + [sym_preproc_error] = STATE(2110), + [sym_preproc_warning] = STATE(2110), + [sym_preproc_define] = STATE(2110), + [sym_preproc_undef] = STATE(2110), + [ts_builtin_sym_end] = ACTIONS(3731), + [sym__identifier_token] = ACTIONS(3733), + [anon_sym_extern] = ACTIONS(3733), + [anon_sym_alias] = ACTIONS(3733), + [anon_sym_SEMI] = ACTIONS(3731), + [anon_sym_global] = ACTIONS(3733), + [anon_sym_using] = ACTIONS(3733), + [anon_sym_unsafe] = ACTIONS(3733), + [anon_sym_static] = ACTIONS(3733), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3731), + [anon_sym_return] = ACTIONS(3733), + [anon_sym_namespace] = ACTIONS(3733), + [anon_sym_class] = ACTIONS(3733), + [anon_sym_ref] = ACTIONS(3733), + [anon_sym_struct] = ACTIONS(3733), + [anon_sym_enum] = ACTIONS(3733), + [anon_sym_LBRACE] = ACTIONS(3731), + [anon_sym_interface] = ACTIONS(3733), + [anon_sym_delegate] = ACTIONS(3733), + [anon_sym_record] = ACTIONS(3733), + [anon_sym_public] = ACTIONS(3733), + [anon_sym_private] = ACTIONS(3733), + [anon_sym_readonly] = ACTIONS(3733), + [anon_sym_abstract] = ACTIONS(3733), + [anon_sym_async] = ACTIONS(3733), + [anon_sym_const] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3733), + [anon_sym_fixed] = ACTIONS(3733), + [anon_sym_internal] = ACTIONS(3733), + [anon_sym_new] = ACTIONS(3733), + [anon_sym_override] = ACTIONS(3733), + [anon_sym_partial] = ACTIONS(3733), + [anon_sym_protected] = ACTIONS(3733), + [anon_sym_required] = ACTIONS(3733), + [anon_sym_sealed] = ACTIONS(3733), + [anon_sym_virtual] = ACTIONS(3733), + [anon_sym_volatile] = ACTIONS(3733), + [anon_sym_where] = ACTIONS(3733), + [anon_sym_notnull] = ACTIONS(3733), + [anon_sym_unmanaged] = ACTIONS(3733), + [anon_sym_checked] = ACTIONS(3733), + [anon_sym_TILDE] = ACTIONS(3731), + [anon_sym_this] = ACTIONS(3733), + [anon_sym_scoped] = ACTIONS(3733), + [anon_sym_base] = ACTIONS(3733), + [anon_sym_var] = ACTIONS(3733), + [anon_sym_STAR] = ACTIONS(3731), + [sym_predefined_type] = ACTIONS(3733), + [anon_sym_break] = ACTIONS(3733), + [anon_sym_unchecked] = ACTIONS(3733), + [anon_sym_continue] = ACTIONS(3733), + [anon_sym_do] = ACTIONS(3733), + [anon_sym_while] = ACTIONS(3733), + [anon_sym_for] = ACTIONS(3733), + [anon_sym_lock] = ACTIONS(3733), + [anon_sym_yield] = ACTIONS(3733), + [anon_sym_switch] = ACTIONS(3733), + [anon_sym_default] = ACTIONS(3733), + [anon_sym_throw] = ACTIONS(3733), + [anon_sym_try] = ACTIONS(3733), + [anon_sym_when] = ACTIONS(3733), + [anon_sym_await] = ACTIONS(3733), + [anon_sym_foreach] = ACTIONS(3733), + [anon_sym_goto] = ACTIONS(3733), + [anon_sym_if] = ACTIONS(3733), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_AMP] = ACTIONS(3731), + [anon_sym_CARET] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3733), + [anon_sym_DASH] = ACTIONS(3733), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_true] = ACTIONS(3733), + [anon_sym_false] = ACTIONS(3733), + [anon_sym_from] = ACTIONS(3733), + [anon_sym_into] = ACTIONS(3733), + [anon_sym_join] = ACTIONS(3733), + [anon_sym_on] = ACTIONS(3733), + [anon_sym_equals] = ACTIONS(3733), + [anon_sym_let] = ACTIONS(3733), + [anon_sym_orderby] = ACTIONS(3733), + [anon_sym_ascending] = ACTIONS(3733), + [anon_sym_descending] = ACTIONS(3733), + [anon_sym_group] = ACTIONS(3733), + [anon_sym_by] = ACTIONS(3733), + [anon_sym_select] = ACTIONS(3733), + [anon_sym_stackalloc] = ACTIONS(3733), + [anon_sym_sizeof] = ACTIONS(3733), + [anon_sym_typeof] = ACTIONS(3733), + [anon_sym___makeref] = ACTIONS(3733), + [anon_sym___reftype] = ACTIONS(3733), + [anon_sym___refvalue] = ACTIONS(3733), + [sym_null_literal] = ACTIONS(3733), + [anon_sym_SQUOTE] = ACTIONS(3731), + [sym_integer_literal] = ACTIONS(3733), + [sym_real_literal] = ACTIONS(3731), + [anon_sym_DQUOTE] = ACTIONS(3731), + [sym_verbatim_string_literal] = ACTIONS(3731), + [sym_grit_metavariable] = ACTIONS(3731), + [aux_sym_preproc_if_token1] = ACTIONS(3731), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3731), + [sym_interpolation_verbatim_start] = ACTIONS(3731), + [sym_interpolation_raw_start] = ACTIONS(3731), + [sym_raw_string_start] = ACTIONS(3731), + }, + [2111] = { + [sym_preproc_region] = STATE(2111), + [sym_preproc_endregion] = STATE(2111), + [sym_preproc_line] = STATE(2111), + [sym_preproc_pragma] = STATE(2111), + [sym_preproc_nullable] = STATE(2111), + [sym_preproc_error] = STATE(2111), + [sym_preproc_warning] = STATE(2111), + [sym_preproc_define] = STATE(2111), + [sym_preproc_undef] = STATE(2111), [sym__identifier_token] = ACTIONS(3378), [anon_sym_extern] = ACTIONS(3378), [anon_sym_alias] = ACTIONS(3378), @@ -400653,21 +400425,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3378), [anon_sym_unmanaged] = ACTIONS(3378), [anon_sym_checked] = ACTIONS(3378), - [anon_sym_BANG] = ACTIONS(3380), [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_PLUS_PLUS] = ACTIONS(3380), - [anon_sym_DASH_DASH] = ACTIONS(3380), - [anon_sym_true] = ACTIONS(3378), - [anon_sym_false] = ACTIONS(3378), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3380), [anon_sym_this] = ACTIONS(3378), [anon_sym_scoped] = ACTIONS(3378), [anon_sym_base] = ACTIONS(3378), [anon_sym_var] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3380), [sym_predefined_type] = ACTIONS(3378), [anon_sym_break] = ACTIONS(3378), [anon_sym_unchecked] = ACTIONS(3378), @@ -400691,6 +400454,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3378), [anon_sym_else] = ACTIONS(3378), [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym_CARET] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [anon_sym_true] = ACTIONS(3378), + [anon_sym_false] = ACTIONS(3378), [anon_sym_from] = ACTIONS(3378), [anon_sym_into] = ACTIONS(3378), [anon_sym_join] = ACTIONS(3378), @@ -400732,6 +400504,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3380), [sym_raw_string_start] = ACTIONS(3380), }, + [2112] = { + [sym_preproc_region] = STATE(2112), + [sym_preproc_endregion] = STATE(2112), + [sym_preproc_line] = STATE(2112), + [sym_preproc_pragma] = STATE(2112), + [sym_preproc_nullable] = STATE(2112), + [sym_preproc_error] = STATE(2112), + [sym_preproc_warning] = STATE(2112), + [sym_preproc_define] = STATE(2112), + [sym_preproc_undef] = STATE(2112), + [sym__identifier_token] = ACTIONS(3374), + [anon_sym_extern] = ACTIONS(3374), + [anon_sym_alias] = ACTIONS(3374), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_global] = ACTIONS(3374), + [anon_sym_using] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(3374), + [anon_sym_static] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_ref] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3376), + [anon_sym_RBRACE] = ACTIONS(3376), + [anon_sym_delegate] = ACTIONS(3374), + [anon_sym_public] = ACTIONS(3374), + [anon_sym_private] = ACTIONS(3374), + [anon_sym_readonly] = ACTIONS(3374), + [anon_sym_abstract] = ACTIONS(3374), + [anon_sym_async] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_file] = ACTIONS(3374), + [anon_sym_fixed] = ACTIONS(3374), + [anon_sym_internal] = ACTIONS(3374), + [anon_sym_new] = ACTIONS(3374), + [anon_sym_override] = ACTIONS(3374), + [anon_sym_partial] = ACTIONS(3374), + [anon_sym_protected] = ACTIONS(3374), + [anon_sym_required] = ACTIONS(3374), + [anon_sym_sealed] = ACTIONS(3374), + [anon_sym_virtual] = ACTIONS(3374), + [anon_sym_volatile] = ACTIONS(3374), + [anon_sym_where] = ACTIONS(3374), + [anon_sym_notnull] = ACTIONS(3374), + [anon_sym_unmanaged] = ACTIONS(3374), + [anon_sym_checked] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_this] = ACTIONS(3374), + [anon_sym_scoped] = ACTIONS(3374), + [anon_sym_base] = ACTIONS(3374), + [anon_sym_var] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3376), + [sym_predefined_type] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_unchecked] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_do] = ACTIONS(3374), + [anon_sym_while] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_yield] = ACTIONS(3374), + [anon_sym_switch] = ACTIONS(3374), + [anon_sym_case] = ACTIONS(3374), + [anon_sym_default] = ACTIONS(3374), + [anon_sym_throw] = ACTIONS(3374), + [anon_sym_try] = ACTIONS(3374), + [anon_sym_catch] = ACTIONS(3374), + [anon_sym_when] = ACTIONS(3374), + [anon_sym_finally] = ACTIONS(3374), + [anon_sym_await] = ACTIONS(3374), + [anon_sym_foreach] = ACTIONS(3374), + [anon_sym_goto] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_else] = ACTIONS(3374), + [anon_sym_DOT_DOT] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3376), + [anon_sym_PLUS_PLUS] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3376), + [anon_sym_true] = ACTIONS(3374), + [anon_sym_false] = ACTIONS(3374), + [anon_sym_from] = ACTIONS(3374), + [anon_sym_into] = ACTIONS(3374), + [anon_sym_join] = ACTIONS(3374), + [anon_sym_on] = ACTIONS(3374), + [anon_sym_equals] = ACTIONS(3374), + [anon_sym_let] = ACTIONS(3374), + [anon_sym_orderby] = ACTIONS(3374), + [anon_sym_ascending] = ACTIONS(3374), + [anon_sym_descending] = ACTIONS(3374), + [anon_sym_group] = ACTIONS(3374), + [anon_sym_by] = ACTIONS(3374), + [anon_sym_select] = ACTIONS(3374), + [anon_sym_stackalloc] = ACTIONS(3374), + [anon_sym_sizeof] = ACTIONS(3374), + [anon_sym_typeof] = ACTIONS(3374), + [anon_sym___makeref] = ACTIONS(3374), + [anon_sym___reftype] = ACTIONS(3374), + [anon_sym___refvalue] = ACTIONS(3374), + [sym_null_literal] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3376), + [sym_integer_literal] = ACTIONS(3374), + [sym_real_literal] = ACTIONS(3376), + [anon_sym_DQUOTE] = ACTIONS(3376), + [sym_verbatim_string_literal] = ACTIONS(3376), + [sym_grit_metavariable] = ACTIONS(3376), + [aux_sym_preproc_if_token1] = ACTIONS(3376), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3376), + [sym_interpolation_verbatim_start] = ACTIONS(3376), + [sym_interpolation_raw_start] = ACTIONS(3376), + [sym_raw_string_start] = ACTIONS(3376), + }, + [2113] = { + [sym_preproc_region] = STATE(2113), + [sym_preproc_endregion] = STATE(2113), + [sym_preproc_line] = STATE(2113), + [sym_preproc_pragma] = STATE(2113), + [sym_preproc_nullable] = STATE(2113), + [sym_preproc_error] = STATE(2113), + [sym_preproc_warning] = STATE(2113), + [sym_preproc_define] = STATE(2113), + [sym_preproc_undef] = STATE(2113), + [sym__identifier_token] = ACTIONS(3382), + [anon_sym_extern] = ACTIONS(3382), + [anon_sym_alias] = ACTIONS(3382), + [anon_sym_SEMI] = ACTIONS(3384), + [anon_sym_global] = ACTIONS(3382), + [anon_sym_using] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(3382), + [anon_sym_static] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_ref] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_RBRACE] = ACTIONS(3384), + [anon_sym_delegate] = ACTIONS(3382), + [anon_sym_public] = ACTIONS(3382), + [anon_sym_private] = ACTIONS(3382), + [anon_sym_readonly] = ACTIONS(3382), + [anon_sym_abstract] = ACTIONS(3382), + [anon_sym_async] = ACTIONS(3382), + [anon_sym_const] = ACTIONS(3382), + [anon_sym_file] = ACTIONS(3382), + [anon_sym_fixed] = ACTIONS(3382), + [anon_sym_internal] = ACTIONS(3382), + [anon_sym_new] = ACTIONS(3382), + [anon_sym_override] = ACTIONS(3382), + [anon_sym_partial] = ACTIONS(3382), + [anon_sym_protected] = ACTIONS(3382), + [anon_sym_required] = ACTIONS(3382), + [anon_sym_sealed] = ACTIONS(3382), + [anon_sym_virtual] = ACTIONS(3382), + [anon_sym_volatile] = ACTIONS(3382), + [anon_sym_where] = ACTIONS(3382), + [anon_sym_notnull] = ACTIONS(3382), + [anon_sym_unmanaged] = ACTIONS(3382), + [anon_sym_checked] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_this] = ACTIONS(3382), + [anon_sym_scoped] = ACTIONS(3382), + [anon_sym_base] = ACTIONS(3382), + [anon_sym_var] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3384), + [sym_predefined_type] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_unchecked] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_while] = ACTIONS(3382), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_yield] = ACTIONS(3382), + [anon_sym_switch] = ACTIONS(3382), + [anon_sym_case] = ACTIONS(3382), + [anon_sym_default] = ACTIONS(3382), + [anon_sym_throw] = ACTIONS(3382), + [anon_sym_try] = ACTIONS(3382), + [anon_sym_catch] = ACTIONS(3382), + [anon_sym_when] = ACTIONS(3382), + [anon_sym_finally] = ACTIONS(3382), + [anon_sym_await] = ACTIONS(3382), + [anon_sym_foreach] = ACTIONS(3382), + [anon_sym_goto] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3382), + [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_CARET] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [anon_sym_true] = ACTIONS(3382), + [anon_sym_false] = ACTIONS(3382), + [anon_sym_from] = ACTIONS(3382), + [anon_sym_into] = ACTIONS(3382), + [anon_sym_join] = ACTIONS(3382), + [anon_sym_on] = ACTIONS(3382), + [anon_sym_equals] = ACTIONS(3382), + [anon_sym_let] = ACTIONS(3382), + [anon_sym_orderby] = ACTIONS(3382), + [anon_sym_ascending] = ACTIONS(3382), + [anon_sym_descending] = ACTIONS(3382), + [anon_sym_group] = ACTIONS(3382), + [anon_sym_by] = ACTIONS(3382), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_stackalloc] = ACTIONS(3382), + [anon_sym_sizeof] = ACTIONS(3382), + [anon_sym_typeof] = ACTIONS(3382), + [anon_sym___makeref] = ACTIONS(3382), + [anon_sym___reftype] = ACTIONS(3382), + [anon_sym___refvalue] = ACTIONS(3382), + [sym_null_literal] = ACTIONS(3382), + [anon_sym_SQUOTE] = ACTIONS(3384), + [sym_integer_literal] = ACTIONS(3382), + [sym_real_literal] = ACTIONS(3384), + [anon_sym_DQUOTE] = ACTIONS(3384), + [sym_verbatim_string_literal] = ACTIONS(3384), + [sym_grit_metavariable] = ACTIONS(3384), + [aux_sym_preproc_if_token1] = ACTIONS(3384), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3384), + [sym_interpolation_verbatim_start] = ACTIONS(3384), + [sym_interpolation_raw_start] = ACTIONS(3384), + [sym_raw_string_start] = ACTIONS(3384), + }, [2114] = { [sym_preproc_region] = STATE(2114), [sym_preproc_endregion] = STATE(2114), @@ -400742,6 +400764,131 @@ 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(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_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_readonly] = 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_protected] = 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_TILDE] = ACTIONS(3193), + [anon_sym_this] = ACTIONS(3191), + [anon_sym_scoped] = ACTIONS(3191), + [anon_sym_base] = ACTIONS(3191), + [anon_sym_var] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3193), + [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_catch] = ACTIONS(3191), + [anon_sym_when] = ACTIONS(3191), + [anon_sym_finally] = 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_AMP] = ACTIONS(3193), + [anon_sym_CARET] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_BANG] = 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_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), + [sym_grit_metavariable] = 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), + }, + [2115] = { + [sym_preproc_region] = STATE(2115), + [sym_preproc_endregion] = STATE(2115), + [sym_preproc_line] = STATE(2115), + [sym_preproc_pragma] = STATE(2115), + [sym_preproc_nullable] = STATE(2115), + [sym_preproc_error] = STATE(2115), + [sym_preproc_warning] = STATE(2115), + [sym_preproc_define] = STATE(2115), + [sym_preproc_undef] = STATE(2115), [sym__identifier_token] = ACTIONS(3386), [anon_sym_extern] = ACTIONS(3386), [anon_sym_alias] = ACTIONS(3386), @@ -400778,21 +400925,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3386), [anon_sym_unmanaged] = ACTIONS(3386), [anon_sym_checked] = ACTIONS(3386), - [anon_sym_BANG] = ACTIONS(3388), [anon_sym_TILDE] = ACTIONS(3388), - [anon_sym_PLUS_PLUS] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_CARET] = ACTIONS(3388), - [anon_sym_AMP] = ACTIONS(3388), [anon_sym_this] = ACTIONS(3386), [anon_sym_scoped] = ACTIONS(3386), [anon_sym_base] = ACTIONS(3386), [anon_sym_var] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), [sym_predefined_type] = ACTIONS(3386), [anon_sym_break] = ACTIONS(3386), [anon_sym_unchecked] = ACTIONS(3386), @@ -400816,6 +400954,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3386), [anon_sym_else] = ACTIONS(3386), [anon_sym_DOT_DOT] = ACTIONS(3388), + [anon_sym_AMP] = ACTIONS(3388), + [anon_sym_CARET] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_true] = ACTIONS(3386), + [anon_sym_false] = ACTIONS(3386), [anon_sym_from] = ACTIONS(3386), [anon_sym_into] = ACTIONS(3386), [anon_sym_join] = ACTIONS(3386), @@ -400857,131 +401004,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3388), [sym_raw_string_start] = ACTIONS(3388), }, - [2115] = { - [sym_preproc_region] = STATE(2115), - [sym_preproc_endregion] = STATE(2115), - [sym_preproc_line] = STATE(2115), - [sym_preproc_pragma] = STATE(2115), - [sym_preproc_nullable] = STATE(2115), - [sym_preproc_error] = STATE(2115), - [sym_preproc_warning] = STATE(2115), - [sym_preproc_define] = STATE(2115), - [sym_preproc_undef] = STATE(2115), - [sym__identifier_token] = ACTIONS(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_ref] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_delegate] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_readonly] = 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_protected] = 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_case] = ACTIONS(3371), - [anon_sym_default] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_catch] = ACTIONS(3371), - [anon_sym_when] = ACTIONS(3371), - [anon_sym_finally] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_foreach] = ACTIONS(3371), - [anon_sym_goto] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_else] = 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), - [sym_grit_metavariable] = 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), - }, [2116] = { [sym_preproc_region] = STATE(2116), [sym_preproc_endregion] = STATE(2116), @@ -400997,10 +401019,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3735), [anon_sym_global] = ACTIONS(3735), [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_EQ] = ACTIONS(3698), + [anon_sym_EQ] = ACTIONS(3696), [anon_sym_static] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), [anon_sym_LPAREN] = ACTIONS(3740), [anon_sym_class] = ACTIONS(3738), [anon_sym_ref] = ACTIONS(3738), @@ -401026,55 +401048,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sealed] = ACTIONS(3738), [anon_sym_virtual] = ACTIONS(3738), [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(3735), - [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(3735), [anon_sym_unmanaged] = ACTIONS(3735), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(3735), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), [anon_sym_var] = ACTIONS(3735), + [anon_sym_STAR] = ACTIONS(3696), [sym_predefined_type] = ACTIONS(3738), [anon_sym_yield] = ACTIONS(3735), - [anon_sym_switch] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(3735), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), [anon_sym_from] = ACTIONS(3735), [anon_sym_into] = ACTIONS(3735), [anon_sym_join] = ACTIONS(3735), @@ -401087,14 +401109,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3735), [anon_sym_by] = ACTIONS(3735), [anon_sym_select] = ACTIONS(3735), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), [sym_grit_metavariable] = ACTIONS(3740), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401116,104 +401138,104 @@ 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(3544), - [anon_sym_extern] = ACTIONS(3544), - [anon_sym_alias] = ACTIONS(3544), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym_global] = ACTIONS(3544), - [anon_sym_using] = ACTIONS(3544), - [anon_sym_unsafe] = ACTIONS(3544), - [anon_sym_static] = ACTIONS(3544), - [anon_sym_LBRACK] = ACTIONS(3546), - [anon_sym_LPAREN] = ACTIONS(3546), - [anon_sym_return] = ACTIONS(3544), - [anon_sym_ref] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_RBRACE] = ACTIONS(3546), - [anon_sym_delegate] = ACTIONS(3544), - [anon_sym_public] = ACTIONS(3544), - [anon_sym_private] = ACTIONS(3544), - [anon_sym_readonly] = ACTIONS(3544), - [anon_sym_abstract] = ACTIONS(3544), - [anon_sym_async] = ACTIONS(3544), - [anon_sym_const] = ACTIONS(3544), - [anon_sym_file] = ACTIONS(3544), - [anon_sym_fixed] = ACTIONS(3544), - [anon_sym_internal] = ACTIONS(3544), - [anon_sym_new] = ACTIONS(3544), - [anon_sym_override] = ACTIONS(3544), - [anon_sym_partial] = ACTIONS(3544), - [anon_sym_protected] = ACTIONS(3544), - [anon_sym_required] = ACTIONS(3544), - [anon_sym_sealed] = ACTIONS(3544), - [anon_sym_virtual] = ACTIONS(3544), - [anon_sym_volatile] = ACTIONS(3544), - [anon_sym_where] = ACTIONS(3544), - [anon_sym_notnull] = ACTIONS(3544), - [anon_sym_unmanaged] = ACTIONS(3544), - [anon_sym_checked] = ACTIONS(3544), - [anon_sym_BANG] = ACTIONS(3546), - [anon_sym_TILDE] = ACTIONS(3546), - [anon_sym_PLUS_PLUS] = ACTIONS(3546), - [anon_sym_DASH_DASH] = ACTIONS(3546), - [anon_sym_true] = ACTIONS(3544), - [anon_sym_false] = ACTIONS(3544), - [anon_sym_PLUS] = ACTIONS(3544), - [anon_sym_DASH] = ACTIONS(3544), - [anon_sym_STAR] = ACTIONS(3546), - [anon_sym_CARET] = ACTIONS(3546), - [anon_sym_AMP] = ACTIONS(3546), - [anon_sym_this] = ACTIONS(3544), - [anon_sym_scoped] = ACTIONS(3544), - [anon_sym_base] = ACTIONS(3544), - [anon_sym_var] = ACTIONS(3544), - [sym_predefined_type] = ACTIONS(3544), - [anon_sym_break] = ACTIONS(3544), - [anon_sym_unchecked] = ACTIONS(3544), - [anon_sym_continue] = ACTIONS(3544), - [anon_sym_do] = ACTIONS(3544), - [anon_sym_while] = ACTIONS(3544), - [anon_sym_for] = ACTIONS(3544), - [anon_sym_lock] = ACTIONS(3544), - [anon_sym_yield] = ACTIONS(3544), - [anon_sym_switch] = ACTIONS(3544), - [anon_sym_case] = ACTIONS(3544), - [anon_sym_default] = ACTIONS(3544), - [anon_sym_throw] = ACTIONS(3544), - [anon_sym_try] = ACTIONS(3544), - [anon_sym_when] = ACTIONS(3544), - [anon_sym_await] = ACTIONS(3544), - [anon_sym_foreach] = ACTIONS(3544), - [anon_sym_goto] = ACTIONS(3544), - [anon_sym_if] = ACTIONS(3544), - [anon_sym_else] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_from] = ACTIONS(3544), - [anon_sym_into] = ACTIONS(3544), - [anon_sym_join] = ACTIONS(3544), - [anon_sym_on] = ACTIONS(3544), - [anon_sym_equals] = ACTIONS(3544), - [anon_sym_let] = ACTIONS(3544), - [anon_sym_orderby] = ACTIONS(3544), - [anon_sym_ascending] = ACTIONS(3544), - [anon_sym_descending] = ACTIONS(3544), - [anon_sym_group] = ACTIONS(3544), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_select] = ACTIONS(3544), - [anon_sym_stackalloc] = ACTIONS(3544), - [anon_sym_sizeof] = ACTIONS(3544), - [anon_sym_typeof] = ACTIONS(3544), - [anon_sym___makeref] = ACTIONS(3544), - [anon_sym___reftype] = ACTIONS(3544), - [anon_sym___refvalue] = ACTIONS(3544), - [sym_null_literal] = ACTIONS(3544), - [anon_sym_SQUOTE] = ACTIONS(3546), - [sym_integer_literal] = ACTIONS(3544), - [sym_real_literal] = ACTIONS(3546), - [anon_sym_DQUOTE] = ACTIONS(3546), - [sym_verbatim_string_literal] = ACTIONS(3546), - [sym_grit_metavariable] = ACTIONS(3546), - [aux_sym_preproc_if_token1] = ACTIONS(3546), + [sym__identifier_token] = ACTIONS(3456), + [anon_sym_extern] = ACTIONS(3456), + [anon_sym_alias] = ACTIONS(3456), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_global] = ACTIONS(3456), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_unsafe] = ACTIONS(3456), + [anon_sym_static] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3458), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_ref] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(3458), + [anon_sym_delegate] = ACTIONS(3456), + [anon_sym_public] = ACTIONS(3456), + [anon_sym_private] = ACTIONS(3456), + [anon_sym_readonly] = ACTIONS(3456), + [anon_sym_abstract] = ACTIONS(3456), + [anon_sym_async] = ACTIONS(3456), + [anon_sym_const] = ACTIONS(3456), + [anon_sym_file] = ACTIONS(3456), + [anon_sym_fixed] = ACTIONS(3456), + [anon_sym_internal] = ACTIONS(3456), + [anon_sym_new] = ACTIONS(3456), + [anon_sym_override] = ACTIONS(3456), + [anon_sym_partial] = ACTIONS(3456), + [anon_sym_protected] = ACTIONS(3456), + [anon_sym_required] = ACTIONS(3456), + [anon_sym_sealed] = ACTIONS(3456), + [anon_sym_virtual] = ACTIONS(3456), + [anon_sym_volatile] = ACTIONS(3456), + [anon_sym_where] = ACTIONS(3456), + [anon_sym_notnull] = ACTIONS(3456), + [anon_sym_unmanaged] = ACTIONS(3456), + [anon_sym_checked] = ACTIONS(3456), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_this] = ACTIONS(3456), + [anon_sym_scoped] = ACTIONS(3456), + [anon_sym_base] = ACTIONS(3456), + [anon_sym_var] = ACTIONS(3456), + [anon_sym_STAR] = ACTIONS(3458), + [sym_predefined_type] = ACTIONS(3456), + [anon_sym_break] = ACTIONS(3456), + [anon_sym_unchecked] = ACTIONS(3456), + [anon_sym_continue] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_lock] = ACTIONS(3456), + [anon_sym_yield] = ACTIONS(3456), + [anon_sym_switch] = ACTIONS(3456), + [anon_sym_case] = ACTIONS(3456), + [anon_sym_default] = ACTIONS(3456), + [anon_sym_throw] = ACTIONS(3456), + [anon_sym_try] = ACTIONS(3456), + [anon_sym_when] = ACTIONS(3456), + [anon_sym_await] = ACTIONS(3456), + [anon_sym_foreach] = ACTIONS(3456), + [anon_sym_goto] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_DOT_DOT] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3456), + [anon_sym_DASH] = ACTIONS(3456), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_true] = ACTIONS(3456), + [anon_sym_false] = ACTIONS(3456), + [anon_sym_from] = ACTIONS(3456), + [anon_sym_into] = ACTIONS(3456), + [anon_sym_join] = ACTIONS(3456), + [anon_sym_on] = ACTIONS(3456), + [anon_sym_equals] = ACTIONS(3456), + [anon_sym_let] = ACTIONS(3456), + [anon_sym_orderby] = ACTIONS(3456), + [anon_sym_ascending] = ACTIONS(3456), + [anon_sym_descending] = ACTIONS(3456), + [anon_sym_group] = ACTIONS(3456), + [anon_sym_by] = ACTIONS(3456), + [anon_sym_select] = ACTIONS(3456), + [anon_sym_stackalloc] = ACTIONS(3456), + [anon_sym_sizeof] = ACTIONS(3456), + [anon_sym_typeof] = ACTIONS(3456), + [anon_sym___makeref] = ACTIONS(3456), + [anon_sym___reftype] = ACTIONS(3456), + [anon_sym___refvalue] = ACTIONS(3456), + [sym_null_literal] = ACTIONS(3456), + [anon_sym_SQUOTE] = ACTIONS(3458), + [sym_integer_literal] = ACTIONS(3456), + [sym_real_literal] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [sym_verbatim_string_literal] = ACTIONS(3458), + [sym_grit_metavariable] = ACTIONS(3458), + [aux_sym_preproc_if_token1] = ACTIONS(3458), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401224,10 +401246,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(3546), - [sym_interpolation_verbatim_start] = ACTIONS(3546), - [sym_interpolation_raw_start] = ACTIONS(3546), - [sym_raw_string_start] = ACTIONS(3546), + [sym_interpolation_regular_start] = ACTIONS(3458), + [sym_interpolation_verbatim_start] = ACTIONS(3458), + [sym_interpolation_raw_start] = ACTIONS(3458), + [sym_raw_string_start] = ACTIONS(3458), }, [2118] = { [sym_preproc_region] = STATE(2118), @@ -401239,104 +401261,104 @@ 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(3484), - [anon_sym_extern] = ACTIONS(3484), - [anon_sym_alias] = ACTIONS(3484), - [anon_sym_SEMI] = ACTIONS(3486), - [anon_sym_global] = ACTIONS(3484), - [anon_sym_using] = ACTIONS(3484), - [anon_sym_unsafe] = ACTIONS(3484), - [anon_sym_static] = ACTIONS(3484), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3484), - [anon_sym_ref] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_RBRACE] = ACTIONS(3486), - [anon_sym_delegate] = ACTIONS(3484), - [anon_sym_public] = ACTIONS(3484), - [anon_sym_private] = ACTIONS(3484), - [anon_sym_readonly] = ACTIONS(3484), - [anon_sym_abstract] = ACTIONS(3484), - [anon_sym_async] = ACTIONS(3484), - [anon_sym_const] = ACTIONS(3484), - [anon_sym_file] = ACTIONS(3484), - [anon_sym_fixed] = ACTIONS(3484), - [anon_sym_internal] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3484), - [anon_sym_override] = ACTIONS(3484), - [anon_sym_partial] = ACTIONS(3484), - [anon_sym_protected] = ACTIONS(3484), - [anon_sym_required] = ACTIONS(3484), - [anon_sym_sealed] = ACTIONS(3484), - [anon_sym_virtual] = ACTIONS(3484), - [anon_sym_volatile] = ACTIONS(3484), - [anon_sym_where] = ACTIONS(3484), - [anon_sym_notnull] = ACTIONS(3484), - [anon_sym_unmanaged] = ACTIONS(3484), - [anon_sym_checked] = ACTIONS(3484), - [anon_sym_BANG] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3486), - [anon_sym_PLUS_PLUS] = ACTIONS(3486), - [anon_sym_DASH_DASH] = ACTIONS(3486), - [anon_sym_true] = ACTIONS(3484), - [anon_sym_false] = ACTIONS(3484), - [anon_sym_PLUS] = ACTIONS(3484), - [anon_sym_DASH] = ACTIONS(3484), - [anon_sym_STAR] = ACTIONS(3486), - [anon_sym_CARET] = ACTIONS(3486), - [anon_sym_AMP] = ACTIONS(3486), - [anon_sym_this] = ACTIONS(3484), - [anon_sym_scoped] = ACTIONS(3484), - [anon_sym_base] = ACTIONS(3484), - [anon_sym_var] = ACTIONS(3484), - [sym_predefined_type] = ACTIONS(3484), - [anon_sym_break] = ACTIONS(3484), - [anon_sym_unchecked] = ACTIONS(3484), - [anon_sym_continue] = ACTIONS(3484), - [anon_sym_do] = ACTIONS(3484), - [anon_sym_while] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3484), - [anon_sym_lock] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3484), - [anon_sym_switch] = ACTIONS(3484), - [anon_sym_case] = ACTIONS(3484), - [anon_sym_default] = ACTIONS(3484), - [anon_sym_throw] = ACTIONS(3484), - [anon_sym_try] = ACTIONS(3484), - [anon_sym_when] = ACTIONS(3484), - [anon_sym_await] = ACTIONS(3484), - [anon_sym_foreach] = ACTIONS(3484), - [anon_sym_goto] = ACTIONS(3484), - [anon_sym_if] = ACTIONS(3484), - [anon_sym_else] = ACTIONS(3484), - [anon_sym_DOT_DOT] = ACTIONS(3486), - [anon_sym_from] = ACTIONS(3484), - [anon_sym_into] = ACTIONS(3484), - [anon_sym_join] = ACTIONS(3484), - [anon_sym_on] = ACTIONS(3484), - [anon_sym_equals] = ACTIONS(3484), - [anon_sym_let] = ACTIONS(3484), - [anon_sym_orderby] = ACTIONS(3484), - [anon_sym_ascending] = ACTIONS(3484), - [anon_sym_descending] = ACTIONS(3484), - [anon_sym_group] = ACTIONS(3484), - [anon_sym_by] = ACTIONS(3484), - [anon_sym_select] = ACTIONS(3484), - [anon_sym_stackalloc] = ACTIONS(3484), - [anon_sym_sizeof] = ACTIONS(3484), - [anon_sym_typeof] = ACTIONS(3484), - [anon_sym___makeref] = ACTIONS(3484), - [anon_sym___reftype] = ACTIONS(3484), - [anon_sym___refvalue] = ACTIONS(3484), - [sym_null_literal] = ACTIONS(3484), - [anon_sym_SQUOTE] = ACTIONS(3486), - [sym_integer_literal] = ACTIONS(3484), - [sym_real_literal] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [sym_verbatim_string_literal] = ACTIONS(3486), - [sym_grit_metavariable] = ACTIONS(3486), - [aux_sym_preproc_if_token1] = ACTIONS(3486), + [sym__identifier_token] = ACTIONS(3468), + [anon_sym_extern] = ACTIONS(3468), + [anon_sym_alias] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_global] = ACTIONS(3468), + [anon_sym_using] = ACTIONS(3468), + [anon_sym_unsafe] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_ref] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_RBRACE] = ACTIONS(3470), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_public] = ACTIONS(3468), + [anon_sym_private] = ACTIONS(3468), + [anon_sym_readonly] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(3468), + [anon_sym_async] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(3468), + [anon_sym_fixed] = ACTIONS(3468), + [anon_sym_internal] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_override] = ACTIONS(3468), + [anon_sym_partial] = ACTIONS(3468), + [anon_sym_protected] = ACTIONS(3468), + [anon_sym_required] = ACTIONS(3468), + [anon_sym_sealed] = ACTIONS(3468), + [anon_sym_virtual] = ACTIONS(3468), + [anon_sym_volatile] = ACTIONS(3468), + [anon_sym_where] = ACTIONS(3468), + [anon_sym_notnull] = ACTIONS(3468), + [anon_sym_unmanaged] = ACTIONS(3468), + [anon_sym_checked] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_this] = ACTIONS(3468), + [anon_sym_scoped] = ACTIONS(3468), + [anon_sym_base] = ACTIONS(3468), + [anon_sym_var] = ACTIONS(3468), + [anon_sym_STAR] = ACTIONS(3470), + [sym_predefined_type] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_unchecked] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_lock] = ACTIONS(3468), + [anon_sym_yield] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_case] = ACTIONS(3468), + [anon_sym_default] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_when] = ACTIONS(3468), + [anon_sym_await] = ACTIONS(3468), + [anon_sym_foreach] = ACTIONS(3468), + [anon_sym_goto] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_else] = ACTIONS(3468), + [anon_sym_DOT_DOT] = ACTIONS(3470), + [anon_sym_AMP] = ACTIONS(3470), + [anon_sym_CARET] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [anon_sym_true] = ACTIONS(3468), + [anon_sym_false] = ACTIONS(3468), + [anon_sym_from] = ACTIONS(3468), + [anon_sym_into] = ACTIONS(3468), + [anon_sym_join] = ACTIONS(3468), + [anon_sym_on] = ACTIONS(3468), + [anon_sym_equals] = ACTIONS(3468), + [anon_sym_let] = ACTIONS(3468), + [anon_sym_orderby] = ACTIONS(3468), + [anon_sym_ascending] = ACTIONS(3468), + [anon_sym_descending] = ACTIONS(3468), + [anon_sym_group] = ACTIONS(3468), + [anon_sym_by] = ACTIONS(3468), + [anon_sym_select] = ACTIONS(3468), + [anon_sym_stackalloc] = ACTIONS(3468), + [anon_sym_sizeof] = ACTIONS(3468), + [anon_sym_typeof] = ACTIONS(3468), + [anon_sym___makeref] = ACTIONS(3468), + [anon_sym___reftype] = ACTIONS(3468), + [anon_sym___refvalue] = ACTIONS(3468), + [sym_null_literal] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3470), + [sym_integer_literal] = ACTIONS(3468), + [sym_real_literal] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [sym_verbatim_string_literal] = ACTIONS(3470), + [sym_grit_metavariable] = ACTIONS(3470), + [aux_sym_preproc_if_token1] = ACTIONS(3470), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401347,10 +401369,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(3486), - [sym_interpolation_verbatim_start] = ACTIONS(3486), - [sym_interpolation_raw_start] = ACTIONS(3486), - [sym_raw_string_start] = ACTIONS(3486), + [sym_interpolation_regular_start] = ACTIONS(3470), + [sym_interpolation_verbatim_start] = ACTIONS(3470), + [sym_interpolation_raw_start] = ACTIONS(3470), + [sym_raw_string_start] = ACTIONS(3470), }, [2119] = { [sym_preproc_region] = STATE(2119), @@ -401362,104 +401384,104 @@ 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(3480), - [anon_sym_extern] = ACTIONS(3480), - [anon_sym_alias] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3480), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_unsafe] = ACTIONS(3480), - [anon_sym_static] = ACTIONS(3480), - [anon_sym_LBRACK] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(3482), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_ref] = ACTIONS(3480), - [anon_sym_LBRACE] = ACTIONS(3482), - [anon_sym_RBRACE] = ACTIONS(3482), - [anon_sym_delegate] = ACTIONS(3480), - [anon_sym_public] = ACTIONS(3480), - [anon_sym_private] = ACTIONS(3480), - [anon_sym_readonly] = ACTIONS(3480), - [anon_sym_abstract] = ACTIONS(3480), - [anon_sym_async] = ACTIONS(3480), - [anon_sym_const] = ACTIONS(3480), - [anon_sym_file] = ACTIONS(3480), - [anon_sym_fixed] = ACTIONS(3480), - [anon_sym_internal] = ACTIONS(3480), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_override] = ACTIONS(3480), - [anon_sym_partial] = ACTIONS(3480), - [anon_sym_protected] = ACTIONS(3480), - [anon_sym_required] = ACTIONS(3480), - [anon_sym_sealed] = ACTIONS(3480), - [anon_sym_virtual] = ACTIONS(3480), - [anon_sym_volatile] = ACTIONS(3480), - [anon_sym_where] = ACTIONS(3480), - [anon_sym_notnull] = ACTIONS(3480), - [anon_sym_unmanaged] = ACTIONS(3480), - [anon_sym_checked] = ACTIONS(3480), - [anon_sym_BANG] = ACTIONS(3482), - [anon_sym_TILDE] = ACTIONS(3482), - [anon_sym_PLUS_PLUS] = ACTIONS(3482), - [anon_sym_DASH_DASH] = ACTIONS(3482), - [anon_sym_true] = ACTIONS(3480), - [anon_sym_false] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_STAR] = ACTIONS(3482), - [anon_sym_CARET] = ACTIONS(3482), - [anon_sym_AMP] = ACTIONS(3482), - [anon_sym_this] = ACTIONS(3480), - [anon_sym_scoped] = ACTIONS(3480), - [anon_sym_base] = ACTIONS(3480), - [anon_sym_var] = ACTIONS(3480), - [sym_predefined_type] = ACTIONS(3480), - [anon_sym_break] = ACTIONS(3480), - [anon_sym_unchecked] = ACTIONS(3480), - [anon_sym_continue] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_lock] = ACTIONS(3480), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_switch] = ACTIONS(3480), - [anon_sym_case] = ACTIONS(3480), - [anon_sym_default] = ACTIONS(3480), - [anon_sym_throw] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_when] = ACTIONS(3480), - [anon_sym_await] = ACTIONS(3480), - [anon_sym_foreach] = ACTIONS(3480), - [anon_sym_goto] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_else] = ACTIONS(3480), - [anon_sym_DOT_DOT] = ACTIONS(3482), - [anon_sym_from] = ACTIONS(3480), - [anon_sym_into] = ACTIONS(3480), - [anon_sym_join] = ACTIONS(3480), - [anon_sym_on] = ACTIONS(3480), - [anon_sym_equals] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_orderby] = ACTIONS(3480), - [anon_sym_ascending] = ACTIONS(3480), - [anon_sym_descending] = ACTIONS(3480), - [anon_sym_group] = ACTIONS(3480), - [anon_sym_by] = ACTIONS(3480), - [anon_sym_select] = ACTIONS(3480), - [anon_sym_stackalloc] = ACTIONS(3480), - [anon_sym_sizeof] = ACTIONS(3480), - [anon_sym_typeof] = ACTIONS(3480), - [anon_sym___makeref] = ACTIONS(3480), - [anon_sym___reftype] = ACTIONS(3480), - [anon_sym___refvalue] = ACTIONS(3480), - [sym_null_literal] = ACTIONS(3480), - [anon_sym_SQUOTE] = ACTIONS(3482), - [sym_integer_literal] = ACTIONS(3480), - [sym_real_literal] = ACTIONS(3482), - [anon_sym_DQUOTE] = ACTIONS(3482), - [sym_verbatim_string_literal] = ACTIONS(3482), - [sym_grit_metavariable] = ACTIONS(3482), - [aux_sym_preproc_if_token1] = ACTIONS(3482), + [sym__identifier_token] = ACTIONS(3492), + [anon_sym_extern] = ACTIONS(3492), + [anon_sym_alias] = ACTIONS(3492), + [anon_sym_SEMI] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3492), + [anon_sym_using] = ACTIONS(3492), + [anon_sym_unsafe] = ACTIONS(3492), + [anon_sym_static] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3492), + [anon_sym_ref] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3494), + [anon_sym_RBRACE] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3492), + [anon_sym_public] = ACTIONS(3492), + [anon_sym_private] = ACTIONS(3492), + [anon_sym_readonly] = ACTIONS(3492), + [anon_sym_abstract] = ACTIONS(3492), + [anon_sym_async] = ACTIONS(3492), + [anon_sym_const] = ACTIONS(3492), + [anon_sym_file] = ACTIONS(3492), + [anon_sym_fixed] = ACTIONS(3492), + [anon_sym_internal] = ACTIONS(3492), + [anon_sym_new] = ACTIONS(3492), + [anon_sym_override] = ACTIONS(3492), + [anon_sym_partial] = ACTIONS(3492), + [anon_sym_protected] = ACTIONS(3492), + [anon_sym_required] = ACTIONS(3492), + [anon_sym_sealed] = ACTIONS(3492), + [anon_sym_virtual] = ACTIONS(3492), + [anon_sym_volatile] = ACTIONS(3492), + [anon_sym_where] = ACTIONS(3492), + [anon_sym_notnull] = ACTIONS(3492), + [anon_sym_unmanaged] = ACTIONS(3492), + [anon_sym_checked] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3494), + [anon_sym_this] = ACTIONS(3492), + [anon_sym_scoped] = ACTIONS(3492), + [anon_sym_base] = ACTIONS(3492), + [anon_sym_var] = ACTIONS(3492), + [anon_sym_STAR] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3492), + [anon_sym_break] = ACTIONS(3492), + [anon_sym_unchecked] = ACTIONS(3492), + [anon_sym_continue] = ACTIONS(3492), + [anon_sym_do] = ACTIONS(3492), + [anon_sym_while] = ACTIONS(3492), + [anon_sym_for] = ACTIONS(3492), + [anon_sym_lock] = ACTIONS(3492), + [anon_sym_yield] = ACTIONS(3492), + [anon_sym_switch] = ACTIONS(3492), + [anon_sym_case] = ACTIONS(3492), + [anon_sym_default] = ACTIONS(3492), + [anon_sym_throw] = ACTIONS(3492), + [anon_sym_try] = ACTIONS(3492), + [anon_sym_when] = ACTIONS(3492), + [anon_sym_await] = ACTIONS(3492), + [anon_sym_foreach] = ACTIONS(3492), + [anon_sym_goto] = ACTIONS(3492), + [anon_sym_if] = ACTIONS(3492), + [anon_sym_else] = ACTIONS(3492), + [anon_sym_DOT_DOT] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3494), + [anon_sym_CARET] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_PLUS_PLUS] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3494), + [anon_sym_true] = ACTIONS(3492), + [anon_sym_false] = ACTIONS(3492), + [anon_sym_from] = ACTIONS(3492), + [anon_sym_into] = ACTIONS(3492), + [anon_sym_join] = ACTIONS(3492), + [anon_sym_on] = ACTIONS(3492), + [anon_sym_equals] = ACTIONS(3492), + [anon_sym_let] = ACTIONS(3492), + [anon_sym_orderby] = ACTIONS(3492), + [anon_sym_ascending] = ACTIONS(3492), + [anon_sym_descending] = ACTIONS(3492), + [anon_sym_group] = ACTIONS(3492), + [anon_sym_by] = ACTIONS(3492), + [anon_sym_select] = ACTIONS(3492), + [anon_sym_stackalloc] = ACTIONS(3492), + [anon_sym_sizeof] = ACTIONS(3492), + [anon_sym_typeof] = ACTIONS(3492), + [anon_sym___makeref] = ACTIONS(3492), + [anon_sym___reftype] = ACTIONS(3492), + [anon_sym___refvalue] = ACTIONS(3492), + [sym_null_literal] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3494), + [sym_integer_literal] = ACTIONS(3492), + [sym_real_literal] = ACTIONS(3494), + [anon_sym_DQUOTE] = ACTIONS(3494), + [sym_verbatim_string_literal] = ACTIONS(3494), + [sym_grit_metavariable] = ACTIONS(3494), + [aux_sym_preproc_if_token1] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401470,10 +401492,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(3482), - [sym_interpolation_verbatim_start] = ACTIONS(3482), - [sym_interpolation_raw_start] = ACTIONS(3482), - [sym_raw_string_start] = ACTIONS(3482), + [sym_interpolation_regular_start] = ACTIONS(3494), + [sym_interpolation_verbatim_start] = ACTIONS(3494), + [sym_interpolation_raw_start] = ACTIONS(3494), + [sym_raw_string_start] = ACTIONS(3494), }, [2120] = { [sym_preproc_region] = STATE(2120), @@ -401485,104 +401507,104 @@ 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(3394), - [anon_sym_extern] = ACTIONS(3394), - [anon_sym_alias] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3396), - [anon_sym_global] = ACTIONS(3394), - [anon_sym_using] = ACTIONS(3394), - [anon_sym_unsafe] = ACTIONS(3394), - [anon_sym_static] = ACTIONS(3394), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_LPAREN] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3394), - [anon_sym_ref] = ACTIONS(3394), - [anon_sym_LBRACE] = ACTIONS(3396), - [anon_sym_RBRACE] = ACTIONS(3396), - [anon_sym_delegate] = ACTIONS(3394), - [anon_sym_public] = ACTIONS(3394), - [anon_sym_private] = ACTIONS(3394), - [anon_sym_readonly] = ACTIONS(3394), - [anon_sym_abstract] = ACTIONS(3394), - [anon_sym_async] = ACTIONS(3394), - [anon_sym_const] = ACTIONS(3394), - [anon_sym_file] = ACTIONS(3394), - [anon_sym_fixed] = ACTIONS(3394), - [anon_sym_internal] = ACTIONS(3394), - [anon_sym_new] = ACTIONS(3394), - [anon_sym_override] = ACTIONS(3394), - [anon_sym_partial] = ACTIONS(3394), - [anon_sym_protected] = ACTIONS(3394), - [anon_sym_required] = ACTIONS(3394), - [anon_sym_sealed] = ACTIONS(3394), - [anon_sym_virtual] = ACTIONS(3394), - [anon_sym_volatile] = ACTIONS(3394), - [anon_sym_where] = ACTIONS(3394), - [anon_sym_notnull] = ACTIONS(3394), - [anon_sym_unmanaged] = ACTIONS(3394), - [anon_sym_checked] = ACTIONS(3394), - [anon_sym_BANG] = ACTIONS(3396), - [anon_sym_TILDE] = ACTIONS(3396), - [anon_sym_PLUS_PLUS] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3396), - [anon_sym_true] = ACTIONS(3394), - [anon_sym_false] = ACTIONS(3394), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_CARET] = ACTIONS(3396), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_this] = ACTIONS(3394), - [anon_sym_scoped] = ACTIONS(3394), - [anon_sym_base] = ACTIONS(3394), - [anon_sym_var] = ACTIONS(3394), - [sym_predefined_type] = ACTIONS(3394), - [anon_sym_break] = ACTIONS(3394), - [anon_sym_unchecked] = ACTIONS(3394), - [anon_sym_continue] = ACTIONS(3394), - [anon_sym_do] = ACTIONS(3394), - [anon_sym_while] = ACTIONS(3394), - [anon_sym_for] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3394), - [anon_sym_yield] = ACTIONS(3394), - [anon_sym_switch] = ACTIONS(3394), - [anon_sym_case] = ACTIONS(3394), - [anon_sym_default] = ACTIONS(3394), - [anon_sym_throw] = ACTIONS(3394), - [anon_sym_try] = ACTIONS(3394), - [anon_sym_when] = ACTIONS(3394), - [anon_sym_await] = ACTIONS(3394), - [anon_sym_foreach] = ACTIONS(3394), - [anon_sym_goto] = ACTIONS(3394), - [anon_sym_if] = ACTIONS(3394), - [anon_sym_else] = ACTIONS(3394), - [anon_sym_DOT_DOT] = ACTIONS(3396), - [anon_sym_from] = ACTIONS(3394), - [anon_sym_into] = ACTIONS(3394), - [anon_sym_join] = ACTIONS(3394), - [anon_sym_on] = ACTIONS(3394), - [anon_sym_equals] = ACTIONS(3394), - [anon_sym_let] = ACTIONS(3394), - [anon_sym_orderby] = ACTIONS(3394), - [anon_sym_ascending] = ACTIONS(3394), - [anon_sym_descending] = ACTIONS(3394), - [anon_sym_group] = ACTIONS(3394), - [anon_sym_by] = ACTIONS(3394), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_stackalloc] = ACTIONS(3394), - [anon_sym_sizeof] = ACTIONS(3394), - [anon_sym_typeof] = ACTIONS(3394), - [anon_sym___makeref] = ACTIONS(3394), - [anon_sym___reftype] = ACTIONS(3394), - [anon_sym___refvalue] = ACTIONS(3394), - [sym_null_literal] = ACTIONS(3394), - [anon_sym_SQUOTE] = ACTIONS(3396), - [sym_integer_literal] = ACTIONS(3394), - [sym_real_literal] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(3396), - [sym_verbatim_string_literal] = ACTIONS(3396), - [sym_grit_metavariable] = ACTIONS(3396), - [aux_sym_preproc_if_token1] = ACTIONS(3396), + [sym__identifier_token] = ACTIONS(3440), + [anon_sym_extern] = ACTIONS(3440), + [anon_sym_alias] = ACTIONS(3440), + [anon_sym_SEMI] = ACTIONS(3442), + [anon_sym_global] = ACTIONS(3440), + [anon_sym_using] = ACTIONS(3440), + [anon_sym_unsafe] = ACTIONS(3440), + [anon_sym_static] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3440), + [anon_sym_ref] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_RBRACE] = ACTIONS(3442), + [anon_sym_delegate] = ACTIONS(3440), + [anon_sym_public] = ACTIONS(3440), + [anon_sym_private] = ACTIONS(3440), + [anon_sym_readonly] = ACTIONS(3440), + [anon_sym_abstract] = ACTIONS(3440), + [anon_sym_async] = ACTIONS(3440), + [anon_sym_const] = ACTIONS(3440), + [anon_sym_file] = ACTIONS(3440), + [anon_sym_fixed] = ACTIONS(3440), + [anon_sym_internal] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3440), + [anon_sym_override] = ACTIONS(3440), + [anon_sym_partial] = ACTIONS(3440), + [anon_sym_protected] = ACTIONS(3440), + [anon_sym_required] = ACTIONS(3440), + [anon_sym_sealed] = ACTIONS(3440), + [anon_sym_virtual] = ACTIONS(3440), + [anon_sym_volatile] = ACTIONS(3440), + [anon_sym_where] = ACTIONS(3440), + [anon_sym_notnull] = ACTIONS(3440), + [anon_sym_unmanaged] = ACTIONS(3440), + [anon_sym_checked] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_this] = ACTIONS(3440), + [anon_sym_scoped] = ACTIONS(3440), + [anon_sym_base] = ACTIONS(3440), + [anon_sym_var] = ACTIONS(3440), + [anon_sym_STAR] = ACTIONS(3442), + [sym_predefined_type] = ACTIONS(3440), + [anon_sym_break] = ACTIONS(3440), + [anon_sym_unchecked] = ACTIONS(3440), + [anon_sym_continue] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(3440), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3440), + [anon_sym_lock] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3440), + [anon_sym_switch] = ACTIONS(3440), + [anon_sym_case] = ACTIONS(3440), + [anon_sym_default] = ACTIONS(3440), + [anon_sym_throw] = ACTIONS(3440), + [anon_sym_try] = ACTIONS(3440), + [anon_sym_when] = ACTIONS(3440), + [anon_sym_await] = ACTIONS(3440), + [anon_sym_foreach] = ACTIONS(3440), + [anon_sym_goto] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(3440), + [anon_sym_else] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3442), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_CARET] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_from] = ACTIONS(3440), + [anon_sym_into] = ACTIONS(3440), + [anon_sym_join] = ACTIONS(3440), + [anon_sym_on] = ACTIONS(3440), + [anon_sym_equals] = ACTIONS(3440), + [anon_sym_let] = ACTIONS(3440), + [anon_sym_orderby] = ACTIONS(3440), + [anon_sym_ascending] = ACTIONS(3440), + [anon_sym_descending] = ACTIONS(3440), + [anon_sym_group] = ACTIONS(3440), + [anon_sym_by] = ACTIONS(3440), + [anon_sym_select] = ACTIONS(3440), + [anon_sym_stackalloc] = ACTIONS(3440), + [anon_sym_sizeof] = ACTIONS(3440), + [anon_sym_typeof] = ACTIONS(3440), + [anon_sym___makeref] = ACTIONS(3440), + [anon_sym___reftype] = ACTIONS(3440), + [anon_sym___refvalue] = ACTIONS(3440), + [sym_null_literal] = ACTIONS(3440), + [anon_sym_SQUOTE] = ACTIONS(3442), + [sym_integer_literal] = ACTIONS(3440), + [sym_real_literal] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [sym_verbatim_string_literal] = ACTIONS(3442), + [sym_grit_metavariable] = ACTIONS(3442), + [aux_sym_preproc_if_token1] = ACTIONS(3442), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401593,10 +401615,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(3396), - [sym_interpolation_verbatim_start] = ACTIONS(3396), - [sym_interpolation_raw_start] = ACTIONS(3396), - [sym_raw_string_start] = ACTIONS(3396), + [sym_interpolation_regular_start] = ACTIONS(3442), + [sym_interpolation_verbatim_start] = ACTIONS(3442), + [sym_interpolation_raw_start] = ACTIONS(3442), + [sym_raw_string_start] = ACTIONS(3442), }, [2121] = { [sym_preproc_region] = STATE(2121), @@ -401608,227 +401630,104 @@ 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(3460), - [anon_sym_extern] = ACTIONS(3460), - [anon_sym_alias] = ACTIONS(3460), - [anon_sym_SEMI] = ACTIONS(3462), - [anon_sym_global] = ACTIONS(3460), - [anon_sym_using] = ACTIONS(3460), - [anon_sym_unsafe] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(3460), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3460), - [anon_sym_ref] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_RBRACE] = ACTIONS(3462), - [anon_sym_delegate] = ACTIONS(3460), - [anon_sym_public] = ACTIONS(3460), - [anon_sym_private] = ACTIONS(3460), - [anon_sym_readonly] = ACTIONS(3460), - [anon_sym_abstract] = ACTIONS(3460), - [anon_sym_async] = ACTIONS(3460), - [anon_sym_const] = ACTIONS(3460), - [anon_sym_file] = ACTIONS(3460), - [anon_sym_fixed] = ACTIONS(3460), - [anon_sym_internal] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3460), - [anon_sym_override] = ACTIONS(3460), - [anon_sym_partial] = ACTIONS(3460), - [anon_sym_protected] = ACTIONS(3460), - [anon_sym_required] = ACTIONS(3460), - [anon_sym_sealed] = ACTIONS(3460), - [anon_sym_virtual] = ACTIONS(3460), - [anon_sym_volatile] = ACTIONS(3460), - [anon_sym_where] = ACTIONS(3460), - [anon_sym_notnull] = ACTIONS(3460), - [anon_sym_unmanaged] = ACTIONS(3460), - [anon_sym_checked] = ACTIONS(3460), - [anon_sym_BANG] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_true] = ACTIONS(3460), - [anon_sym_false] = ACTIONS(3460), - [anon_sym_PLUS] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3460), - [anon_sym_STAR] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_this] = ACTIONS(3460), - [anon_sym_scoped] = ACTIONS(3460), - [anon_sym_base] = ACTIONS(3460), - [anon_sym_var] = ACTIONS(3460), - [sym_predefined_type] = ACTIONS(3460), - [anon_sym_break] = ACTIONS(3460), - [anon_sym_unchecked] = ACTIONS(3460), - [anon_sym_continue] = ACTIONS(3460), - [anon_sym_do] = ACTIONS(3460), - [anon_sym_while] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3460), - [anon_sym_lock] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3460), - [anon_sym_switch] = ACTIONS(3460), - [anon_sym_case] = ACTIONS(3460), - [anon_sym_default] = ACTIONS(3460), - [anon_sym_throw] = ACTIONS(3460), - [anon_sym_try] = ACTIONS(3460), - [anon_sym_when] = ACTIONS(3460), - [anon_sym_await] = ACTIONS(3460), - [anon_sym_foreach] = ACTIONS(3460), - [anon_sym_goto] = ACTIONS(3460), - [anon_sym_if] = ACTIONS(3460), - [anon_sym_else] = ACTIONS(3460), - [anon_sym_DOT_DOT] = ACTIONS(3462), - [anon_sym_from] = ACTIONS(3460), - [anon_sym_into] = ACTIONS(3460), - [anon_sym_join] = ACTIONS(3460), - [anon_sym_on] = ACTIONS(3460), - [anon_sym_equals] = ACTIONS(3460), - [anon_sym_let] = ACTIONS(3460), - [anon_sym_orderby] = ACTIONS(3460), - [anon_sym_ascending] = ACTIONS(3460), - [anon_sym_descending] = ACTIONS(3460), - [anon_sym_group] = ACTIONS(3460), - [anon_sym_by] = ACTIONS(3460), - [anon_sym_select] = ACTIONS(3460), - [anon_sym_stackalloc] = ACTIONS(3460), - [anon_sym_sizeof] = ACTIONS(3460), - [anon_sym_typeof] = ACTIONS(3460), - [anon_sym___makeref] = ACTIONS(3460), - [anon_sym___reftype] = ACTIONS(3460), - [anon_sym___refvalue] = ACTIONS(3460), - [sym_null_literal] = ACTIONS(3460), - [anon_sym_SQUOTE] = ACTIONS(3462), - [sym_integer_literal] = ACTIONS(3460), - [sym_real_literal] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [sym_verbatim_string_literal] = ACTIONS(3462), - [sym_grit_metavariable] = ACTIONS(3462), - [aux_sym_preproc_if_token1] = ACTIONS(3462), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3462), - [sym_interpolation_verbatim_start] = ACTIONS(3462), - [sym_interpolation_raw_start] = ACTIONS(3462), - [sym_raw_string_start] = ACTIONS(3462), - }, - [2122] = { - [sym_preproc_region] = STATE(2122), - [sym_preproc_endregion] = STATE(2122), - [sym_preproc_line] = STATE(2122), - [sym_preproc_pragma] = STATE(2122), - [sym_preproc_nullable] = STATE(2122), - [sym_preproc_error] = STATE(2122), - [sym_preproc_warning] = STATE(2122), - [sym_preproc_define] = STATE(2122), - [sym_preproc_undef] = STATE(2122), - [sym__identifier_token] = ACTIONS(3496), - [anon_sym_extern] = ACTIONS(3496), - [anon_sym_alias] = ACTIONS(3496), - [anon_sym_SEMI] = ACTIONS(3498), - [anon_sym_global] = ACTIONS(3496), - [anon_sym_using] = ACTIONS(3496), - [anon_sym_unsafe] = ACTIONS(3496), - [anon_sym_static] = ACTIONS(3496), - [anon_sym_LBRACK] = ACTIONS(3498), - [anon_sym_LPAREN] = ACTIONS(3498), - [anon_sym_return] = ACTIONS(3496), - [anon_sym_ref] = ACTIONS(3496), - [anon_sym_LBRACE] = ACTIONS(3498), - [anon_sym_RBRACE] = ACTIONS(3498), - [anon_sym_delegate] = ACTIONS(3496), - [anon_sym_public] = ACTIONS(3496), - [anon_sym_private] = ACTIONS(3496), - [anon_sym_readonly] = ACTIONS(3496), - [anon_sym_abstract] = ACTIONS(3496), - [anon_sym_async] = ACTIONS(3496), - [anon_sym_const] = ACTIONS(3496), - [anon_sym_file] = ACTIONS(3496), - [anon_sym_fixed] = ACTIONS(3496), - [anon_sym_internal] = ACTIONS(3496), - [anon_sym_new] = ACTIONS(3496), - [anon_sym_override] = ACTIONS(3496), - [anon_sym_partial] = ACTIONS(3496), - [anon_sym_protected] = ACTIONS(3496), - [anon_sym_required] = ACTIONS(3496), - [anon_sym_sealed] = ACTIONS(3496), - [anon_sym_virtual] = ACTIONS(3496), - [anon_sym_volatile] = ACTIONS(3496), - [anon_sym_where] = ACTIONS(3496), - [anon_sym_notnull] = ACTIONS(3496), - [anon_sym_unmanaged] = ACTIONS(3496), - [anon_sym_checked] = ACTIONS(3496), - [anon_sym_BANG] = ACTIONS(3498), - [anon_sym_TILDE] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_true] = ACTIONS(3496), - [anon_sym_false] = ACTIONS(3496), - [anon_sym_PLUS] = ACTIONS(3496), - [anon_sym_DASH] = ACTIONS(3496), - [anon_sym_STAR] = ACTIONS(3498), - [anon_sym_CARET] = ACTIONS(3498), - [anon_sym_AMP] = ACTIONS(3498), - [anon_sym_this] = ACTIONS(3496), - [anon_sym_scoped] = ACTIONS(3496), - [anon_sym_base] = ACTIONS(3496), - [anon_sym_var] = ACTIONS(3496), - [sym_predefined_type] = ACTIONS(3496), - [anon_sym_break] = ACTIONS(3496), - [anon_sym_unchecked] = ACTIONS(3496), - [anon_sym_continue] = ACTIONS(3496), - [anon_sym_do] = ACTIONS(3496), - [anon_sym_while] = ACTIONS(3496), - [anon_sym_for] = ACTIONS(3496), - [anon_sym_lock] = ACTIONS(3496), - [anon_sym_yield] = ACTIONS(3496), - [anon_sym_switch] = ACTIONS(3496), - [anon_sym_case] = ACTIONS(3496), - [anon_sym_default] = ACTIONS(3496), - [anon_sym_throw] = ACTIONS(3496), - [anon_sym_try] = ACTIONS(3496), - [anon_sym_when] = ACTIONS(3496), - [anon_sym_await] = ACTIONS(3496), - [anon_sym_foreach] = ACTIONS(3496), - [anon_sym_goto] = ACTIONS(3496), - [anon_sym_if] = ACTIONS(3496), - [anon_sym_else] = ACTIONS(3496), - [anon_sym_DOT_DOT] = ACTIONS(3498), - [anon_sym_from] = ACTIONS(3496), - [anon_sym_into] = ACTIONS(3496), - [anon_sym_join] = ACTIONS(3496), - [anon_sym_on] = ACTIONS(3496), - [anon_sym_equals] = ACTIONS(3496), - [anon_sym_let] = ACTIONS(3496), - [anon_sym_orderby] = ACTIONS(3496), - [anon_sym_ascending] = ACTIONS(3496), - [anon_sym_descending] = ACTIONS(3496), - [anon_sym_group] = ACTIONS(3496), - [anon_sym_by] = ACTIONS(3496), - [anon_sym_select] = ACTIONS(3496), - [anon_sym_stackalloc] = ACTIONS(3496), - [anon_sym_sizeof] = ACTIONS(3496), - [anon_sym_typeof] = ACTIONS(3496), - [anon_sym___makeref] = ACTIONS(3496), - [anon_sym___reftype] = ACTIONS(3496), - [anon_sym___refvalue] = ACTIONS(3496), - [sym_null_literal] = ACTIONS(3496), - [anon_sym_SQUOTE] = ACTIONS(3498), - [sym_integer_literal] = ACTIONS(3496), - [sym_real_literal] = ACTIONS(3498), - [anon_sym_DQUOTE] = ACTIONS(3498), - [sym_verbatim_string_literal] = ACTIONS(3498), - [sym_grit_metavariable] = ACTIONS(3498), - [aux_sym_preproc_if_token1] = ACTIONS(3498), + [sym__identifier_token] = ACTIONS(3528), + [anon_sym_extern] = ACTIONS(3528), + [anon_sym_alias] = ACTIONS(3528), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym_global] = ACTIONS(3528), + [anon_sym_using] = ACTIONS(3528), + [anon_sym_unsafe] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_LPAREN] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_ref] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3530), + [anon_sym_RBRACE] = ACTIONS(3530), + [anon_sym_delegate] = ACTIONS(3528), + [anon_sym_public] = ACTIONS(3528), + [anon_sym_private] = ACTIONS(3528), + [anon_sym_readonly] = ACTIONS(3528), + [anon_sym_abstract] = ACTIONS(3528), + [anon_sym_async] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_file] = ACTIONS(3528), + [anon_sym_fixed] = ACTIONS(3528), + [anon_sym_internal] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_override] = ACTIONS(3528), + [anon_sym_partial] = ACTIONS(3528), + [anon_sym_protected] = ACTIONS(3528), + [anon_sym_required] = ACTIONS(3528), + [anon_sym_sealed] = ACTIONS(3528), + [anon_sym_virtual] = ACTIONS(3528), + [anon_sym_volatile] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3528), + [anon_sym_notnull] = ACTIONS(3528), + [anon_sym_unmanaged] = ACTIONS(3528), + [anon_sym_checked] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3530), + [anon_sym_this] = ACTIONS(3528), + [anon_sym_scoped] = ACTIONS(3528), + [anon_sym_base] = ACTIONS(3528), + [anon_sym_var] = ACTIONS(3528), + [anon_sym_STAR] = ACTIONS(3530), + [sym_predefined_type] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_unchecked] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_do] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_lock] = ACTIONS(3528), + [anon_sym_yield] = ACTIONS(3528), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_case] = ACTIONS(3528), + [anon_sym_default] = ACTIONS(3528), + [anon_sym_throw] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3528), + [anon_sym_when] = ACTIONS(3528), + [anon_sym_await] = ACTIONS(3528), + [anon_sym_foreach] = ACTIONS(3528), + [anon_sym_goto] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_else] = ACTIONS(3528), + [anon_sym_DOT_DOT] = ACTIONS(3530), + [anon_sym_AMP] = ACTIONS(3530), + [anon_sym_CARET] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3530), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3530), + [anon_sym_true] = ACTIONS(3528), + [anon_sym_false] = ACTIONS(3528), + [anon_sym_from] = ACTIONS(3528), + [anon_sym_into] = ACTIONS(3528), + [anon_sym_join] = ACTIONS(3528), + [anon_sym_on] = ACTIONS(3528), + [anon_sym_equals] = ACTIONS(3528), + [anon_sym_let] = ACTIONS(3528), + [anon_sym_orderby] = ACTIONS(3528), + [anon_sym_ascending] = ACTIONS(3528), + [anon_sym_descending] = ACTIONS(3528), + [anon_sym_group] = ACTIONS(3528), + [anon_sym_by] = ACTIONS(3528), + [anon_sym_select] = ACTIONS(3528), + [anon_sym_stackalloc] = ACTIONS(3528), + [anon_sym_sizeof] = ACTIONS(3528), + [anon_sym_typeof] = ACTIONS(3528), + [anon_sym___makeref] = ACTIONS(3528), + [anon_sym___reftype] = ACTIONS(3528), + [anon_sym___refvalue] = ACTIONS(3528), + [sym_null_literal] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3530), + [sym_integer_literal] = ACTIONS(3528), + [sym_real_literal] = ACTIONS(3530), + [anon_sym_DQUOTE] = ACTIONS(3530), + [sym_verbatim_string_literal] = ACTIONS(3530), + [sym_grit_metavariable] = ACTIONS(3530), + [aux_sym_preproc_if_token1] = ACTIONS(3530), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401839,10 +401738,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3498), - [sym_interpolation_verbatim_start] = ACTIONS(3498), - [sym_interpolation_raw_start] = ACTIONS(3498), - [sym_raw_string_start] = ACTIONS(3498), + [sym_interpolation_regular_start] = ACTIONS(3530), + [sym_interpolation_verbatim_start] = ACTIONS(3530), + [sym_interpolation_raw_start] = ACTIONS(3530), + [sym_raw_string_start] = ACTIONS(3530), + }, + [2122] = { + [sym_preproc_region] = STATE(2122), + [sym_preproc_endregion] = STATE(2122), + [sym_preproc_line] = STATE(2122), + [sym_preproc_pragma] = STATE(2122), + [sym_preproc_nullable] = STATE(2122), + [sym_preproc_error] = STATE(2122), + [sym_preproc_warning] = STATE(2122), + [sym_preproc_define] = STATE(2122), + [sym_preproc_undef] = STATE(2122), + [sym__identifier_token] = ACTIONS(3516), + [anon_sym_extern] = ACTIONS(3516), + [anon_sym_alias] = ACTIONS(3516), + [anon_sym_SEMI] = ACTIONS(3518), + [anon_sym_global] = ACTIONS(3516), + [anon_sym_using] = ACTIONS(3516), + [anon_sym_unsafe] = ACTIONS(3516), + [anon_sym_static] = ACTIONS(3516), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_LPAREN] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3516), + [anon_sym_ref] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3518), + [anon_sym_RBRACE] = ACTIONS(3518), + [anon_sym_delegate] = ACTIONS(3516), + [anon_sym_public] = ACTIONS(3516), + [anon_sym_private] = ACTIONS(3516), + [anon_sym_readonly] = ACTIONS(3516), + [anon_sym_abstract] = ACTIONS(3516), + [anon_sym_async] = ACTIONS(3516), + [anon_sym_const] = ACTIONS(3516), + [anon_sym_file] = ACTIONS(3516), + [anon_sym_fixed] = ACTIONS(3516), + [anon_sym_internal] = ACTIONS(3516), + [anon_sym_new] = ACTIONS(3516), + [anon_sym_override] = ACTIONS(3516), + [anon_sym_partial] = ACTIONS(3516), + [anon_sym_protected] = ACTIONS(3516), + [anon_sym_required] = ACTIONS(3516), + [anon_sym_sealed] = ACTIONS(3516), + [anon_sym_virtual] = ACTIONS(3516), + [anon_sym_volatile] = ACTIONS(3516), + [anon_sym_where] = ACTIONS(3516), + [anon_sym_notnull] = ACTIONS(3516), + [anon_sym_unmanaged] = ACTIONS(3516), + [anon_sym_checked] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3518), + [anon_sym_this] = ACTIONS(3516), + [anon_sym_scoped] = ACTIONS(3516), + [anon_sym_base] = ACTIONS(3516), + [anon_sym_var] = ACTIONS(3516), + [anon_sym_STAR] = ACTIONS(3518), + [sym_predefined_type] = ACTIONS(3516), + [anon_sym_break] = ACTIONS(3516), + [anon_sym_unchecked] = ACTIONS(3516), + [anon_sym_continue] = ACTIONS(3516), + [anon_sym_do] = ACTIONS(3516), + [anon_sym_while] = ACTIONS(3516), + [anon_sym_for] = ACTIONS(3516), + [anon_sym_lock] = ACTIONS(3516), + [anon_sym_yield] = ACTIONS(3516), + [anon_sym_switch] = ACTIONS(3516), + [anon_sym_case] = ACTIONS(3516), + [anon_sym_default] = ACTIONS(3516), + [anon_sym_throw] = ACTIONS(3516), + [anon_sym_try] = ACTIONS(3516), + [anon_sym_when] = ACTIONS(3516), + [anon_sym_await] = ACTIONS(3516), + [anon_sym_foreach] = ACTIONS(3516), + [anon_sym_goto] = ACTIONS(3516), + [anon_sym_if] = ACTIONS(3516), + [anon_sym_else] = ACTIONS(3516), + [anon_sym_DOT_DOT] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3518), + [anon_sym_PLUS_PLUS] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3518), + [anon_sym_true] = ACTIONS(3516), + [anon_sym_false] = ACTIONS(3516), + [anon_sym_from] = ACTIONS(3516), + [anon_sym_into] = ACTIONS(3516), + [anon_sym_join] = ACTIONS(3516), + [anon_sym_on] = ACTIONS(3516), + [anon_sym_equals] = ACTIONS(3516), + [anon_sym_let] = ACTIONS(3516), + [anon_sym_orderby] = ACTIONS(3516), + [anon_sym_ascending] = ACTIONS(3516), + [anon_sym_descending] = ACTIONS(3516), + [anon_sym_group] = ACTIONS(3516), + [anon_sym_by] = ACTIONS(3516), + [anon_sym_select] = ACTIONS(3516), + [anon_sym_stackalloc] = ACTIONS(3516), + [anon_sym_sizeof] = ACTIONS(3516), + [anon_sym_typeof] = ACTIONS(3516), + [anon_sym___makeref] = ACTIONS(3516), + [anon_sym___reftype] = ACTIONS(3516), + [anon_sym___refvalue] = ACTIONS(3516), + [sym_null_literal] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3518), + [sym_integer_literal] = ACTIONS(3516), + [sym_real_literal] = ACTIONS(3518), + [anon_sym_DQUOTE] = ACTIONS(3518), + [sym_verbatim_string_literal] = ACTIONS(3518), + [sym_grit_metavariable] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3518), + [sym_interpolation_verbatim_start] = ACTIONS(3518), + [sym_interpolation_raw_start] = ACTIONS(3518), + [sym_raw_string_start] = ACTIONS(3518), }, [2123] = { [sym_preproc_region] = STATE(2123), @@ -401854,104 +401876,104 @@ 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(3476), - [anon_sym_extern] = ACTIONS(3476), - [anon_sym_alias] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3478), - [anon_sym_global] = ACTIONS(3476), - [anon_sym_using] = ACTIONS(3476), - [anon_sym_unsafe] = ACTIONS(3476), - [anon_sym_static] = ACTIONS(3476), - [anon_sym_LBRACK] = ACTIONS(3478), - [anon_sym_LPAREN] = ACTIONS(3478), - [anon_sym_return] = ACTIONS(3476), - [anon_sym_ref] = ACTIONS(3476), - [anon_sym_LBRACE] = ACTIONS(3478), - [anon_sym_RBRACE] = ACTIONS(3478), - [anon_sym_delegate] = ACTIONS(3476), - [anon_sym_public] = ACTIONS(3476), - [anon_sym_private] = ACTIONS(3476), - [anon_sym_readonly] = ACTIONS(3476), - [anon_sym_abstract] = ACTIONS(3476), - [anon_sym_async] = ACTIONS(3476), - [anon_sym_const] = ACTIONS(3476), - [anon_sym_file] = ACTIONS(3476), - [anon_sym_fixed] = ACTIONS(3476), - [anon_sym_internal] = ACTIONS(3476), - [anon_sym_new] = ACTIONS(3476), - [anon_sym_override] = ACTIONS(3476), - [anon_sym_partial] = ACTIONS(3476), - [anon_sym_protected] = ACTIONS(3476), - [anon_sym_required] = ACTIONS(3476), - [anon_sym_sealed] = ACTIONS(3476), - [anon_sym_virtual] = ACTIONS(3476), - [anon_sym_volatile] = ACTIONS(3476), - [anon_sym_where] = ACTIONS(3476), - [anon_sym_notnull] = ACTIONS(3476), - [anon_sym_unmanaged] = ACTIONS(3476), - [anon_sym_checked] = ACTIONS(3476), - [anon_sym_BANG] = ACTIONS(3478), - [anon_sym_TILDE] = ACTIONS(3478), - [anon_sym_PLUS_PLUS] = ACTIONS(3478), - [anon_sym_DASH_DASH] = ACTIONS(3478), - [anon_sym_true] = ACTIONS(3476), - [anon_sym_false] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_STAR] = ACTIONS(3478), - [anon_sym_CARET] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3478), - [anon_sym_this] = ACTIONS(3476), - [anon_sym_scoped] = ACTIONS(3476), - [anon_sym_base] = ACTIONS(3476), - [anon_sym_var] = ACTIONS(3476), - [sym_predefined_type] = ACTIONS(3476), - [anon_sym_break] = ACTIONS(3476), - [anon_sym_unchecked] = ACTIONS(3476), - [anon_sym_continue] = ACTIONS(3476), - [anon_sym_do] = ACTIONS(3476), - [anon_sym_while] = ACTIONS(3476), - [anon_sym_for] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3476), - [anon_sym_yield] = ACTIONS(3476), - [anon_sym_switch] = ACTIONS(3476), - [anon_sym_case] = ACTIONS(3476), - [anon_sym_default] = ACTIONS(3476), - [anon_sym_throw] = ACTIONS(3476), - [anon_sym_try] = ACTIONS(3476), - [anon_sym_when] = ACTIONS(3476), - [anon_sym_await] = ACTIONS(3476), - [anon_sym_foreach] = ACTIONS(3476), - [anon_sym_goto] = ACTIONS(3476), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_else] = ACTIONS(3476), - [anon_sym_DOT_DOT] = ACTIONS(3478), - [anon_sym_from] = ACTIONS(3476), - [anon_sym_into] = ACTIONS(3476), - [anon_sym_join] = ACTIONS(3476), - [anon_sym_on] = ACTIONS(3476), - [anon_sym_equals] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(3476), - [anon_sym_orderby] = ACTIONS(3476), - [anon_sym_ascending] = ACTIONS(3476), - [anon_sym_descending] = ACTIONS(3476), - [anon_sym_group] = ACTIONS(3476), - [anon_sym_by] = ACTIONS(3476), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_stackalloc] = ACTIONS(3476), - [anon_sym_sizeof] = ACTIONS(3476), - [anon_sym_typeof] = ACTIONS(3476), - [anon_sym___makeref] = ACTIONS(3476), - [anon_sym___reftype] = ACTIONS(3476), - [anon_sym___refvalue] = ACTIONS(3476), - [sym_null_literal] = ACTIONS(3476), - [anon_sym_SQUOTE] = ACTIONS(3478), - [sym_integer_literal] = ACTIONS(3476), - [sym_real_literal] = ACTIONS(3478), - [anon_sym_DQUOTE] = ACTIONS(3478), - [sym_verbatim_string_literal] = ACTIONS(3478), - [sym_grit_metavariable] = ACTIONS(3478), - [aux_sym_preproc_if_token1] = ACTIONS(3478), + [sym__identifier_token] = ACTIONS(3524), + [anon_sym_extern] = ACTIONS(3524), + [anon_sym_alias] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_global] = ACTIONS(3524), + [anon_sym_using] = ACTIONS(3524), + [anon_sym_unsafe] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3524), + [anon_sym_ref] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_RBRACE] = ACTIONS(3526), + [anon_sym_delegate] = ACTIONS(3524), + [anon_sym_public] = ACTIONS(3524), + [anon_sym_private] = ACTIONS(3524), + [anon_sym_readonly] = ACTIONS(3524), + [anon_sym_abstract] = ACTIONS(3524), + [anon_sym_async] = ACTIONS(3524), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_file] = ACTIONS(3524), + [anon_sym_fixed] = ACTIONS(3524), + [anon_sym_internal] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_override] = ACTIONS(3524), + [anon_sym_partial] = ACTIONS(3524), + [anon_sym_protected] = ACTIONS(3524), + [anon_sym_required] = ACTIONS(3524), + [anon_sym_sealed] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(3524), + [anon_sym_volatile] = ACTIONS(3524), + [anon_sym_where] = ACTIONS(3524), + [anon_sym_notnull] = ACTIONS(3524), + [anon_sym_unmanaged] = ACTIONS(3524), + [anon_sym_checked] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3526), + [anon_sym_this] = ACTIONS(3524), + [anon_sym_scoped] = ACTIONS(3524), + [anon_sym_base] = ACTIONS(3524), + [anon_sym_var] = ACTIONS(3524), + [anon_sym_STAR] = ACTIONS(3526), + [sym_predefined_type] = ACTIONS(3524), + [anon_sym_break] = ACTIONS(3524), + [anon_sym_unchecked] = ACTIONS(3524), + [anon_sym_continue] = ACTIONS(3524), + [anon_sym_do] = ACTIONS(3524), + [anon_sym_while] = ACTIONS(3524), + [anon_sym_for] = ACTIONS(3524), + [anon_sym_lock] = ACTIONS(3524), + [anon_sym_yield] = ACTIONS(3524), + [anon_sym_switch] = ACTIONS(3524), + [anon_sym_case] = ACTIONS(3524), + [anon_sym_default] = ACTIONS(3524), + [anon_sym_throw] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3524), + [anon_sym_when] = ACTIONS(3524), + [anon_sym_await] = ACTIONS(3524), + [anon_sym_foreach] = ACTIONS(3524), + [anon_sym_goto] = ACTIONS(3524), + [anon_sym_if] = ACTIONS(3524), + [anon_sym_else] = ACTIONS(3524), + [anon_sym_DOT_DOT] = ACTIONS(3526), + [anon_sym_AMP] = ACTIONS(3526), + [anon_sym_CARET] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3526), + [anon_sym_true] = ACTIONS(3524), + [anon_sym_false] = ACTIONS(3524), + [anon_sym_from] = ACTIONS(3524), + [anon_sym_into] = ACTIONS(3524), + [anon_sym_join] = ACTIONS(3524), + [anon_sym_on] = ACTIONS(3524), + [anon_sym_equals] = ACTIONS(3524), + [anon_sym_let] = ACTIONS(3524), + [anon_sym_orderby] = ACTIONS(3524), + [anon_sym_ascending] = ACTIONS(3524), + [anon_sym_descending] = ACTIONS(3524), + [anon_sym_group] = ACTIONS(3524), + [anon_sym_by] = ACTIONS(3524), + [anon_sym_select] = ACTIONS(3524), + [anon_sym_stackalloc] = ACTIONS(3524), + [anon_sym_sizeof] = ACTIONS(3524), + [anon_sym_typeof] = ACTIONS(3524), + [anon_sym___makeref] = ACTIONS(3524), + [anon_sym___reftype] = ACTIONS(3524), + [anon_sym___refvalue] = ACTIONS(3524), + [sym_null_literal] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3526), + [sym_integer_literal] = ACTIONS(3524), + [sym_real_literal] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [sym_verbatim_string_literal] = ACTIONS(3526), + [sym_grit_metavariable] = ACTIONS(3526), + [aux_sym_preproc_if_token1] = ACTIONS(3526), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401962,10 +401984,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(3478), - [sym_interpolation_verbatim_start] = ACTIONS(3478), - [sym_interpolation_raw_start] = ACTIONS(3478), - [sym_raw_string_start] = ACTIONS(3478), + [sym_interpolation_regular_start] = ACTIONS(3526), + [sym_interpolation_verbatim_start] = ACTIONS(3526), + [sym_interpolation_raw_start] = ACTIONS(3526), + [sym_raw_string_start] = ACTIONS(3526), }, [2124] = { [sym_preproc_region] = STATE(2124), @@ -401977,104 +401999,104 @@ 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(3532), - [anon_sym_extern] = ACTIONS(3532), - [anon_sym_alias] = ACTIONS(3532), - [anon_sym_SEMI] = ACTIONS(3534), - [anon_sym_global] = ACTIONS(3532), - [anon_sym_using] = ACTIONS(3532), - [anon_sym_unsafe] = ACTIONS(3532), - [anon_sym_static] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_ref] = ACTIONS(3532), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_RBRACE] = ACTIONS(3534), - [anon_sym_delegate] = ACTIONS(3532), - [anon_sym_public] = ACTIONS(3532), - [anon_sym_private] = ACTIONS(3532), - [anon_sym_readonly] = ACTIONS(3532), - [anon_sym_abstract] = ACTIONS(3532), - [anon_sym_async] = ACTIONS(3532), - [anon_sym_const] = ACTIONS(3532), - [anon_sym_file] = ACTIONS(3532), - [anon_sym_fixed] = ACTIONS(3532), - [anon_sym_internal] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_override] = ACTIONS(3532), - [anon_sym_partial] = ACTIONS(3532), - [anon_sym_protected] = ACTIONS(3532), - [anon_sym_required] = ACTIONS(3532), - [anon_sym_sealed] = ACTIONS(3532), - [anon_sym_virtual] = ACTIONS(3532), - [anon_sym_volatile] = ACTIONS(3532), - [anon_sym_where] = ACTIONS(3532), - [anon_sym_notnull] = ACTIONS(3532), - [anon_sym_unmanaged] = ACTIONS(3532), - [anon_sym_checked] = ACTIONS(3532), - [anon_sym_BANG] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3534), - [anon_sym_PLUS_PLUS] = ACTIONS(3534), - [anon_sym_DASH_DASH] = ACTIONS(3534), - [anon_sym_true] = ACTIONS(3532), - [anon_sym_false] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_STAR] = ACTIONS(3534), - [anon_sym_CARET] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_this] = ACTIONS(3532), - [anon_sym_scoped] = ACTIONS(3532), - [anon_sym_base] = ACTIONS(3532), - [anon_sym_var] = ACTIONS(3532), - [sym_predefined_type] = ACTIONS(3532), - [anon_sym_break] = ACTIONS(3532), - [anon_sym_unchecked] = ACTIONS(3532), - [anon_sym_continue] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_lock] = ACTIONS(3532), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_switch] = ACTIONS(3532), - [anon_sym_case] = ACTIONS(3532), - [anon_sym_default] = ACTIONS(3532), - [anon_sym_throw] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_when] = ACTIONS(3532), - [anon_sym_await] = ACTIONS(3532), - [anon_sym_foreach] = ACTIONS(3532), - [anon_sym_goto] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_else] = ACTIONS(3532), - [anon_sym_DOT_DOT] = ACTIONS(3534), - [anon_sym_from] = ACTIONS(3532), - [anon_sym_into] = ACTIONS(3532), - [anon_sym_join] = ACTIONS(3532), - [anon_sym_on] = ACTIONS(3532), - [anon_sym_equals] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_orderby] = ACTIONS(3532), - [anon_sym_ascending] = ACTIONS(3532), - [anon_sym_descending] = ACTIONS(3532), - [anon_sym_group] = ACTIONS(3532), - [anon_sym_by] = ACTIONS(3532), - [anon_sym_select] = ACTIONS(3532), - [anon_sym_stackalloc] = ACTIONS(3532), - [anon_sym_sizeof] = ACTIONS(3532), - [anon_sym_typeof] = ACTIONS(3532), - [anon_sym___makeref] = ACTIONS(3532), - [anon_sym___reftype] = ACTIONS(3532), - [anon_sym___refvalue] = ACTIONS(3532), - [sym_null_literal] = ACTIONS(3532), - [anon_sym_SQUOTE] = ACTIONS(3534), - [sym_integer_literal] = ACTIONS(3532), - [sym_real_literal] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [sym_verbatim_string_literal] = ACTIONS(3534), - [sym_grit_metavariable] = ACTIONS(3534), - [aux_sym_preproc_if_token1] = ACTIONS(3534), + [sym__identifier_token] = ACTIONS(3436), + [anon_sym_extern] = ACTIONS(3436), + [anon_sym_alias] = ACTIONS(3436), + [anon_sym_SEMI] = ACTIONS(3438), + [anon_sym_global] = ACTIONS(3436), + [anon_sym_using] = ACTIONS(3436), + [anon_sym_unsafe] = ACTIONS(3436), + [anon_sym_static] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3436), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(3438), + [anon_sym_delegate] = ACTIONS(3436), + [anon_sym_public] = ACTIONS(3436), + [anon_sym_private] = ACTIONS(3436), + [anon_sym_readonly] = ACTIONS(3436), + [anon_sym_abstract] = ACTIONS(3436), + [anon_sym_async] = ACTIONS(3436), + [anon_sym_const] = ACTIONS(3436), + [anon_sym_file] = ACTIONS(3436), + [anon_sym_fixed] = ACTIONS(3436), + [anon_sym_internal] = ACTIONS(3436), + [anon_sym_new] = ACTIONS(3436), + [anon_sym_override] = ACTIONS(3436), + [anon_sym_partial] = ACTIONS(3436), + [anon_sym_protected] = ACTIONS(3436), + [anon_sym_required] = ACTIONS(3436), + [anon_sym_sealed] = ACTIONS(3436), + [anon_sym_virtual] = ACTIONS(3436), + [anon_sym_volatile] = ACTIONS(3436), + [anon_sym_where] = ACTIONS(3436), + [anon_sym_notnull] = ACTIONS(3436), + [anon_sym_unmanaged] = ACTIONS(3436), + [anon_sym_checked] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3438), + [anon_sym_this] = ACTIONS(3436), + [anon_sym_scoped] = ACTIONS(3436), + [anon_sym_base] = ACTIONS(3436), + [anon_sym_var] = ACTIONS(3436), + [anon_sym_STAR] = ACTIONS(3438), + [sym_predefined_type] = ACTIONS(3436), + [anon_sym_break] = ACTIONS(3436), + [anon_sym_unchecked] = ACTIONS(3436), + [anon_sym_continue] = ACTIONS(3436), + [anon_sym_do] = ACTIONS(3436), + [anon_sym_while] = ACTIONS(3436), + [anon_sym_for] = ACTIONS(3436), + [anon_sym_lock] = ACTIONS(3436), + [anon_sym_yield] = ACTIONS(3436), + [anon_sym_switch] = ACTIONS(3436), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3436), + [anon_sym_throw] = ACTIONS(3436), + [anon_sym_try] = ACTIONS(3436), + [anon_sym_when] = ACTIONS(3436), + [anon_sym_await] = ACTIONS(3436), + [anon_sym_foreach] = ACTIONS(3436), + [anon_sym_goto] = ACTIONS(3436), + [anon_sym_if] = ACTIONS(3436), + [anon_sym_else] = ACTIONS(3436), + [anon_sym_DOT_DOT] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_CARET] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3438), + [anon_sym_PLUS_PLUS] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3438), + [anon_sym_true] = ACTIONS(3436), + [anon_sym_false] = ACTIONS(3436), + [anon_sym_from] = ACTIONS(3436), + [anon_sym_into] = ACTIONS(3436), + [anon_sym_join] = ACTIONS(3436), + [anon_sym_on] = ACTIONS(3436), + [anon_sym_equals] = ACTIONS(3436), + [anon_sym_let] = ACTIONS(3436), + [anon_sym_orderby] = ACTIONS(3436), + [anon_sym_ascending] = ACTIONS(3436), + [anon_sym_descending] = ACTIONS(3436), + [anon_sym_group] = ACTIONS(3436), + [anon_sym_by] = ACTIONS(3436), + [anon_sym_select] = ACTIONS(3436), + [anon_sym_stackalloc] = ACTIONS(3436), + [anon_sym_sizeof] = ACTIONS(3436), + [anon_sym_typeof] = ACTIONS(3436), + [anon_sym___makeref] = ACTIONS(3436), + [anon_sym___reftype] = ACTIONS(3436), + [anon_sym___refvalue] = ACTIONS(3436), + [sym_null_literal] = ACTIONS(3436), + [anon_sym_SQUOTE] = ACTIONS(3438), + [sym_integer_literal] = ACTIONS(3436), + [sym_real_literal] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [sym_verbatim_string_literal] = ACTIONS(3438), + [sym_grit_metavariable] = ACTIONS(3438), + [aux_sym_preproc_if_token1] = ACTIONS(3438), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402085,10 +402107,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(3534), - [sym_interpolation_verbatim_start] = ACTIONS(3534), - [sym_interpolation_raw_start] = ACTIONS(3534), - [sym_raw_string_start] = ACTIONS(3534), + [sym_interpolation_regular_start] = ACTIONS(3438), + [sym_interpolation_verbatim_start] = ACTIONS(3438), + [sym_interpolation_raw_start] = ACTIONS(3438), + [sym_raw_string_start] = ACTIONS(3438), }, [2125] = { [sym_preproc_region] = STATE(2125), @@ -402100,252 +402122,6 @@ 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(3508), - [anon_sym_extern] = ACTIONS(3508), - [anon_sym_alias] = ACTIONS(3508), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_global] = ACTIONS(3508), - [anon_sym_using] = ACTIONS(3508), - [anon_sym_unsafe] = ACTIONS(3508), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3510), - [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_ref] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3510), - [anon_sym_RBRACE] = ACTIONS(3510), - [anon_sym_delegate] = ACTIONS(3508), - [anon_sym_public] = ACTIONS(3508), - [anon_sym_private] = ACTIONS(3508), - [anon_sym_readonly] = ACTIONS(3508), - [anon_sym_abstract] = ACTIONS(3508), - [anon_sym_async] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_file] = ACTIONS(3508), - [anon_sym_fixed] = ACTIONS(3508), - [anon_sym_internal] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_override] = ACTIONS(3508), - [anon_sym_partial] = ACTIONS(3508), - [anon_sym_protected] = ACTIONS(3508), - [anon_sym_required] = ACTIONS(3508), - [anon_sym_sealed] = ACTIONS(3508), - [anon_sym_virtual] = ACTIONS(3508), - [anon_sym_volatile] = ACTIONS(3508), - [anon_sym_where] = ACTIONS(3508), - [anon_sym_notnull] = ACTIONS(3508), - [anon_sym_unmanaged] = ACTIONS(3508), - [anon_sym_checked] = ACTIONS(3508), - [anon_sym_BANG] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_true] = ACTIONS(3508), - [anon_sym_false] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_STAR] = ACTIONS(3510), - [anon_sym_CARET] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3510), - [anon_sym_this] = ACTIONS(3508), - [anon_sym_scoped] = ACTIONS(3508), - [anon_sym_base] = ACTIONS(3508), - [anon_sym_var] = ACTIONS(3508), - [sym_predefined_type] = ACTIONS(3508), - [anon_sym_break] = ACTIONS(3508), - [anon_sym_unchecked] = ACTIONS(3508), - [anon_sym_continue] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_lock] = ACTIONS(3508), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_switch] = ACTIONS(3508), - [anon_sym_case] = ACTIONS(3508), - [anon_sym_default] = ACTIONS(3508), - [anon_sym_throw] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_when] = ACTIONS(3508), - [anon_sym_await] = ACTIONS(3508), - [anon_sym_foreach] = ACTIONS(3508), - [anon_sym_goto] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_else] = ACTIONS(3508), - [anon_sym_DOT_DOT] = ACTIONS(3510), - [anon_sym_from] = ACTIONS(3508), - [anon_sym_into] = ACTIONS(3508), - [anon_sym_join] = ACTIONS(3508), - [anon_sym_on] = ACTIONS(3508), - [anon_sym_equals] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_orderby] = ACTIONS(3508), - [anon_sym_ascending] = ACTIONS(3508), - [anon_sym_descending] = ACTIONS(3508), - [anon_sym_group] = ACTIONS(3508), - [anon_sym_by] = ACTIONS(3508), - [anon_sym_select] = ACTIONS(3508), - [anon_sym_stackalloc] = ACTIONS(3508), - [anon_sym_sizeof] = ACTIONS(3508), - [anon_sym_typeof] = ACTIONS(3508), - [anon_sym___makeref] = ACTIONS(3508), - [anon_sym___reftype] = ACTIONS(3508), - [anon_sym___refvalue] = ACTIONS(3508), - [sym_null_literal] = ACTIONS(3508), - [anon_sym_SQUOTE] = ACTIONS(3510), - [sym_integer_literal] = ACTIONS(3508), - [sym_real_literal] = ACTIONS(3510), - [anon_sym_DQUOTE] = ACTIONS(3510), - [sym_verbatim_string_literal] = ACTIONS(3510), - [sym_grit_metavariable] = ACTIONS(3510), - [aux_sym_preproc_if_token1] = ACTIONS(3510), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3510), - [sym_interpolation_verbatim_start] = ACTIONS(3510), - [sym_interpolation_raw_start] = ACTIONS(3510), - [sym_raw_string_start] = ACTIONS(3510), - }, - [2126] = { - [sym_preproc_region] = STATE(2126), - [sym_preproc_endregion] = STATE(2126), - [sym_preproc_line] = STATE(2126), - [sym_preproc_pragma] = STATE(2126), - [sym_preproc_nullable] = STATE(2126), - [sym_preproc_error] = STATE(2126), - [sym_preproc_warning] = STATE(2126), - [sym_preproc_define] = STATE(2126), - [sym_preproc_undef] = STATE(2126), - [sym__identifier_token] = ACTIONS(3406), - [anon_sym_extern] = ACTIONS(3406), - [anon_sym_alias] = ACTIONS(3406), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym_global] = ACTIONS(3406), - [anon_sym_using] = ACTIONS(3406), - [anon_sym_unsafe] = ACTIONS(3406), - [anon_sym_static] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_LPAREN] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3406), - [anon_sym_ref] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(3408), - [anon_sym_RBRACE] = ACTIONS(3408), - [anon_sym_delegate] = ACTIONS(3406), - [anon_sym_public] = ACTIONS(3406), - [anon_sym_private] = ACTIONS(3406), - [anon_sym_readonly] = ACTIONS(3406), - [anon_sym_abstract] = ACTIONS(3406), - [anon_sym_async] = ACTIONS(3406), - [anon_sym_const] = ACTIONS(3406), - [anon_sym_file] = ACTIONS(3406), - [anon_sym_fixed] = ACTIONS(3406), - [anon_sym_internal] = ACTIONS(3406), - [anon_sym_new] = ACTIONS(3406), - [anon_sym_override] = ACTIONS(3406), - [anon_sym_partial] = ACTIONS(3406), - [anon_sym_protected] = ACTIONS(3406), - [anon_sym_required] = ACTIONS(3406), - [anon_sym_sealed] = ACTIONS(3406), - [anon_sym_virtual] = ACTIONS(3406), - [anon_sym_volatile] = ACTIONS(3406), - [anon_sym_where] = ACTIONS(3406), - [anon_sym_notnull] = ACTIONS(3406), - [anon_sym_unmanaged] = ACTIONS(3406), - [anon_sym_checked] = ACTIONS(3406), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_PLUS_PLUS] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3408), - [anon_sym_true] = ACTIONS(3406), - [anon_sym_false] = ACTIONS(3406), - [anon_sym_PLUS] = ACTIONS(3406), - [anon_sym_DASH] = ACTIONS(3406), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_this] = ACTIONS(3406), - [anon_sym_scoped] = ACTIONS(3406), - [anon_sym_base] = ACTIONS(3406), - [anon_sym_var] = ACTIONS(3406), - [sym_predefined_type] = ACTIONS(3406), - [anon_sym_break] = ACTIONS(3406), - [anon_sym_unchecked] = ACTIONS(3406), - [anon_sym_continue] = ACTIONS(3406), - [anon_sym_do] = ACTIONS(3406), - [anon_sym_while] = ACTIONS(3406), - [anon_sym_for] = ACTIONS(3406), - [anon_sym_lock] = ACTIONS(3406), - [anon_sym_yield] = ACTIONS(3406), - [anon_sym_switch] = ACTIONS(3406), - [anon_sym_case] = ACTIONS(3406), - [anon_sym_default] = ACTIONS(3406), - [anon_sym_throw] = ACTIONS(3406), - [anon_sym_try] = ACTIONS(3406), - [anon_sym_when] = ACTIONS(3406), - [anon_sym_await] = ACTIONS(3406), - [anon_sym_foreach] = ACTIONS(3406), - [anon_sym_goto] = ACTIONS(3406), - [anon_sym_if] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3406), - [anon_sym_DOT_DOT] = ACTIONS(3408), - [anon_sym_from] = ACTIONS(3406), - [anon_sym_into] = ACTIONS(3406), - [anon_sym_join] = ACTIONS(3406), - [anon_sym_on] = ACTIONS(3406), - [anon_sym_equals] = ACTIONS(3406), - [anon_sym_let] = ACTIONS(3406), - [anon_sym_orderby] = ACTIONS(3406), - [anon_sym_ascending] = ACTIONS(3406), - [anon_sym_descending] = ACTIONS(3406), - [anon_sym_group] = ACTIONS(3406), - [anon_sym_by] = ACTIONS(3406), - [anon_sym_select] = ACTIONS(3406), - [anon_sym_stackalloc] = ACTIONS(3406), - [anon_sym_sizeof] = ACTIONS(3406), - [anon_sym_typeof] = ACTIONS(3406), - [anon_sym___makeref] = ACTIONS(3406), - [anon_sym___reftype] = ACTIONS(3406), - [anon_sym___refvalue] = ACTIONS(3406), - [sym_null_literal] = ACTIONS(3406), - [anon_sym_SQUOTE] = ACTIONS(3408), - [sym_integer_literal] = ACTIONS(3406), - [sym_real_literal] = ACTIONS(3408), - [anon_sym_DQUOTE] = ACTIONS(3408), - [sym_verbatim_string_literal] = ACTIONS(3408), - [sym_grit_metavariable] = ACTIONS(3408), - [aux_sym_preproc_if_token1] = ACTIONS(3408), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3408), - [sym_interpolation_verbatim_start] = ACTIONS(3408), - [sym_interpolation_raw_start] = ACTIONS(3408), - [sym_raw_string_start] = ACTIONS(3408), - }, - [2127] = { - [sym_preproc_region] = STATE(2127), - [sym_preproc_endregion] = STATE(2127), - [sym_preproc_line] = STATE(2127), - [sym_preproc_pragma] = STATE(2127), - [sym_preproc_nullable] = STATE(2127), - [sym_preproc_error] = STATE(2127), - [sym_preproc_warning] = STATE(2127), - [sym_preproc_define] = STATE(2127), - [sym_preproc_undef] = STATE(2127), [sym__identifier_token] = ACTIONS(3444), [anon_sym_extern] = ACTIONS(3444), [anon_sym_alias] = ACTIONS(3444), @@ -402382,21 +402158,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3444), [anon_sym_unmanaged] = ACTIONS(3444), [anon_sym_checked] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3446), [anon_sym_TILDE] = ACTIONS(3446), - [anon_sym_PLUS_PLUS] = ACTIONS(3446), - [anon_sym_DASH_DASH] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3444), - [anon_sym_false] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_CARET] = ACTIONS(3446), - [anon_sym_AMP] = ACTIONS(3446), [anon_sym_this] = ACTIONS(3444), [anon_sym_scoped] = ACTIONS(3444), [anon_sym_base] = ACTIONS(3444), [anon_sym_var] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), [sym_predefined_type] = ACTIONS(3444), [anon_sym_break] = ACTIONS(3444), [anon_sym_unchecked] = ACTIONS(3444), @@ -402418,6 +402185,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3444), [anon_sym_else] = ACTIONS(3444), [anon_sym_DOT_DOT] = ACTIONS(3446), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_CARET] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [anon_sym_true] = ACTIONS(3444), + [anon_sym_false] = ACTIONS(3444), [anon_sym_from] = ACTIONS(3444), [anon_sym_into] = ACTIONS(3444), [anon_sym_join] = ACTIONS(3444), @@ -402459,237 +402235,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3446), [sym_raw_string_start] = ACTIONS(3446), }, - [2128] = { - [sym_preproc_region] = STATE(2128), - [sym_preproc_endregion] = STATE(2128), - [sym_preproc_line] = STATE(2128), - [sym_preproc_pragma] = STATE(2128), - [sym_preproc_nullable] = STATE(2128), - [sym_preproc_error] = STATE(2128), - [sym_preproc_warning] = STATE(2128), - [sym_preproc_define] = STATE(2128), - [sym_preproc_undef] = STATE(2128), - [sym__identifier_token] = ACTIONS(3468), - [anon_sym_extern] = ACTIONS(3468), - [anon_sym_alias] = ACTIONS(3468), - [anon_sym_SEMI] = ACTIONS(3470), - [anon_sym_global] = ACTIONS(3468), - [anon_sym_using] = ACTIONS(3468), - [anon_sym_unsafe] = ACTIONS(3468), - [anon_sym_static] = ACTIONS(3468), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_return] = ACTIONS(3468), - [anon_sym_ref] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_RBRACE] = ACTIONS(3470), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_public] = ACTIONS(3468), - [anon_sym_private] = ACTIONS(3468), - [anon_sym_readonly] = ACTIONS(3468), - [anon_sym_abstract] = ACTIONS(3468), - [anon_sym_async] = ACTIONS(3468), - [anon_sym_const] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(3468), - [anon_sym_fixed] = ACTIONS(3468), - [anon_sym_internal] = ACTIONS(3468), - [anon_sym_new] = ACTIONS(3468), - [anon_sym_override] = ACTIONS(3468), - [anon_sym_partial] = ACTIONS(3468), - [anon_sym_protected] = ACTIONS(3468), - [anon_sym_required] = ACTIONS(3468), - [anon_sym_sealed] = ACTIONS(3468), - [anon_sym_virtual] = ACTIONS(3468), - [anon_sym_volatile] = ACTIONS(3468), - [anon_sym_where] = ACTIONS(3468), - [anon_sym_notnull] = ACTIONS(3468), - [anon_sym_unmanaged] = ACTIONS(3468), - [anon_sym_checked] = ACTIONS(3468), - [anon_sym_BANG] = ACTIONS(3470), - [anon_sym_TILDE] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_true] = ACTIONS(3468), - [anon_sym_false] = ACTIONS(3468), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_STAR] = ACTIONS(3470), - [anon_sym_CARET] = ACTIONS(3470), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(3468), - [anon_sym_scoped] = ACTIONS(3468), - [anon_sym_base] = ACTIONS(3468), - [anon_sym_var] = ACTIONS(3468), - [sym_predefined_type] = ACTIONS(3468), - [anon_sym_break] = ACTIONS(3468), - [anon_sym_unchecked] = ACTIONS(3468), - [anon_sym_continue] = ACTIONS(3468), - [anon_sym_do] = ACTIONS(3468), - [anon_sym_while] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3468), - [anon_sym_lock] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3468), - [anon_sym_switch] = ACTIONS(3468), - [anon_sym_case] = ACTIONS(3468), - [anon_sym_default] = ACTIONS(3468), - [anon_sym_throw] = ACTIONS(3468), - [anon_sym_try] = ACTIONS(3468), - [anon_sym_when] = ACTIONS(3468), - [anon_sym_await] = ACTIONS(3468), - [anon_sym_foreach] = ACTIONS(3468), - [anon_sym_goto] = ACTIONS(3468), - [anon_sym_if] = ACTIONS(3468), - [anon_sym_else] = ACTIONS(3468), - [anon_sym_DOT_DOT] = ACTIONS(3470), - [anon_sym_from] = ACTIONS(3468), - [anon_sym_into] = ACTIONS(3468), - [anon_sym_join] = ACTIONS(3468), - [anon_sym_on] = ACTIONS(3468), - [anon_sym_equals] = ACTIONS(3468), - [anon_sym_let] = ACTIONS(3468), - [anon_sym_orderby] = ACTIONS(3468), - [anon_sym_ascending] = ACTIONS(3468), - [anon_sym_descending] = ACTIONS(3468), - [anon_sym_group] = ACTIONS(3468), - [anon_sym_by] = ACTIONS(3468), - [anon_sym_select] = ACTIONS(3468), - [anon_sym_stackalloc] = ACTIONS(3468), - [anon_sym_sizeof] = ACTIONS(3468), - [anon_sym_typeof] = ACTIONS(3468), - [anon_sym___makeref] = ACTIONS(3468), - [anon_sym___reftype] = ACTIONS(3468), - [anon_sym___refvalue] = ACTIONS(3468), - [sym_null_literal] = ACTIONS(3468), - [anon_sym_SQUOTE] = ACTIONS(3470), - [sym_integer_literal] = ACTIONS(3468), - [sym_real_literal] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [sym_verbatim_string_literal] = ACTIONS(3470), - [sym_grit_metavariable] = ACTIONS(3470), - [aux_sym_preproc_if_token1] = ACTIONS(3470), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3470), - [sym_interpolation_verbatim_start] = ACTIONS(3470), - [sym_interpolation_raw_start] = ACTIONS(3470), - [sym_raw_string_start] = ACTIONS(3470), - }, - [2129] = { - [sym_preproc_region] = STATE(2129), - [sym_preproc_endregion] = STATE(2129), - [sym_preproc_line] = STATE(2129), - [sym_preproc_pragma] = STATE(2129), - [sym_preproc_nullable] = STATE(2129), - [sym_preproc_error] = STATE(2129), - [sym_preproc_warning] = STATE(2129), - [sym_preproc_define] = STATE(2129), - [sym_preproc_undef] = STATE(2129), - [sym__identifier_token] = ACTIONS(3572), - [anon_sym_extern] = ACTIONS(3572), - [anon_sym_alias] = ACTIONS(3572), - [anon_sym_SEMI] = ACTIONS(3574), - [anon_sym_global] = ACTIONS(3572), - [anon_sym_using] = ACTIONS(3572), - [anon_sym_unsafe] = ACTIONS(3572), - [anon_sym_static] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3572), - [anon_sym_ref] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_RBRACE] = ACTIONS(3574), - [anon_sym_delegate] = ACTIONS(3572), - [anon_sym_public] = ACTIONS(3572), - [anon_sym_private] = ACTIONS(3572), - [anon_sym_readonly] = ACTIONS(3572), - [anon_sym_abstract] = ACTIONS(3572), - [anon_sym_async] = ACTIONS(3572), - [anon_sym_const] = ACTIONS(3572), - [anon_sym_file] = ACTIONS(3572), - [anon_sym_fixed] = ACTIONS(3572), - [anon_sym_internal] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3572), - [anon_sym_override] = ACTIONS(3572), - [anon_sym_partial] = ACTIONS(3572), - [anon_sym_protected] = ACTIONS(3572), - [anon_sym_required] = ACTIONS(3572), - [anon_sym_sealed] = ACTIONS(3572), - [anon_sym_virtual] = ACTIONS(3572), - [anon_sym_volatile] = ACTIONS(3572), - [anon_sym_where] = ACTIONS(3572), - [anon_sym_notnull] = ACTIONS(3572), - [anon_sym_unmanaged] = ACTIONS(3572), - [anon_sym_checked] = ACTIONS(3572), - [anon_sym_BANG] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3574), - [anon_sym_PLUS_PLUS] = ACTIONS(3574), - [anon_sym_DASH_DASH] = ACTIONS(3574), - [anon_sym_true] = ACTIONS(3572), - [anon_sym_false] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_STAR] = ACTIONS(3574), - [anon_sym_CARET] = ACTIONS(3574), - [anon_sym_AMP] = ACTIONS(3574), - [anon_sym_this] = ACTIONS(3572), - [anon_sym_scoped] = ACTIONS(3572), - [anon_sym_base] = ACTIONS(3572), - [anon_sym_var] = ACTIONS(3572), - [sym_predefined_type] = ACTIONS(3572), - [anon_sym_break] = ACTIONS(3572), - [anon_sym_unchecked] = ACTIONS(3572), - [anon_sym_continue] = ACTIONS(3572), - [anon_sym_do] = ACTIONS(3572), - [anon_sym_while] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3572), - [anon_sym_lock] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3572), - [anon_sym_switch] = ACTIONS(3572), - [anon_sym_case] = ACTIONS(3572), - [anon_sym_default] = ACTIONS(3572), - [anon_sym_throw] = ACTIONS(3572), - [anon_sym_try] = ACTIONS(3572), - [anon_sym_when] = ACTIONS(3572), - [anon_sym_await] = ACTIONS(3572), - [anon_sym_foreach] = ACTIONS(3572), - [anon_sym_goto] = ACTIONS(3572), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_else] = ACTIONS(3572), - [anon_sym_DOT_DOT] = ACTIONS(3574), - [anon_sym_from] = ACTIONS(3572), - [anon_sym_into] = ACTIONS(3572), - [anon_sym_join] = ACTIONS(3572), - [anon_sym_on] = ACTIONS(3572), - [anon_sym_equals] = ACTIONS(3572), - [anon_sym_let] = ACTIONS(3572), - [anon_sym_orderby] = ACTIONS(3572), - [anon_sym_ascending] = ACTIONS(3572), - [anon_sym_descending] = ACTIONS(3572), - [anon_sym_group] = ACTIONS(3572), - [anon_sym_by] = ACTIONS(3572), - [anon_sym_select] = ACTIONS(3572), - [anon_sym_stackalloc] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3572), - [anon_sym_typeof] = ACTIONS(3572), - [anon_sym___makeref] = ACTIONS(3572), - [anon_sym___reftype] = ACTIONS(3572), - [anon_sym___refvalue] = ACTIONS(3572), - [sym_null_literal] = ACTIONS(3572), - [anon_sym_SQUOTE] = ACTIONS(3574), - [sym_integer_literal] = ACTIONS(3572), - [sym_real_literal] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [sym_verbatim_string_literal] = ACTIONS(3574), - [sym_grit_metavariable] = ACTIONS(3574), - [aux_sym_preproc_if_token1] = ACTIONS(3574), + [2126] = { + [sym_preproc_region] = STATE(2126), + [sym_preproc_endregion] = STATE(2126), + [sym_preproc_line] = STATE(2126), + [sym_preproc_pragma] = STATE(2126), + [sym_preproc_nullable] = STATE(2126), + [sym_preproc_error] = STATE(2126), + [sym_preproc_warning] = STATE(2126), + [sym_preproc_define] = STATE(2126), + [sym_preproc_undef] = STATE(2126), + [sym__identifier_token] = ACTIONS(3504), + [anon_sym_extern] = ACTIONS(3504), + [anon_sym_alias] = ACTIONS(3504), + [anon_sym_SEMI] = ACTIONS(3506), + [anon_sym_global] = ACTIONS(3504), + [anon_sym_using] = ACTIONS(3504), + [anon_sym_unsafe] = ACTIONS(3504), + [anon_sym_static] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3506), + [anon_sym_LPAREN] = ACTIONS(3506), + [anon_sym_return] = ACTIONS(3504), + [anon_sym_ref] = ACTIONS(3504), + [anon_sym_LBRACE] = ACTIONS(3506), + [anon_sym_RBRACE] = ACTIONS(3506), + [anon_sym_delegate] = ACTIONS(3504), + [anon_sym_public] = ACTIONS(3504), + [anon_sym_private] = ACTIONS(3504), + [anon_sym_readonly] = ACTIONS(3504), + [anon_sym_abstract] = ACTIONS(3504), + [anon_sym_async] = ACTIONS(3504), + [anon_sym_const] = ACTIONS(3504), + [anon_sym_file] = ACTIONS(3504), + [anon_sym_fixed] = ACTIONS(3504), + [anon_sym_internal] = ACTIONS(3504), + [anon_sym_new] = ACTIONS(3504), + [anon_sym_override] = ACTIONS(3504), + [anon_sym_partial] = ACTIONS(3504), + [anon_sym_protected] = ACTIONS(3504), + [anon_sym_required] = ACTIONS(3504), + [anon_sym_sealed] = ACTIONS(3504), + [anon_sym_virtual] = ACTIONS(3504), + [anon_sym_volatile] = ACTIONS(3504), + [anon_sym_where] = ACTIONS(3504), + [anon_sym_notnull] = ACTIONS(3504), + [anon_sym_unmanaged] = ACTIONS(3504), + [anon_sym_checked] = ACTIONS(3504), + [anon_sym_TILDE] = ACTIONS(3506), + [anon_sym_this] = ACTIONS(3504), + [anon_sym_scoped] = ACTIONS(3504), + [anon_sym_base] = ACTIONS(3504), + [anon_sym_var] = ACTIONS(3504), + [anon_sym_STAR] = ACTIONS(3506), + [sym_predefined_type] = ACTIONS(3504), + [anon_sym_break] = ACTIONS(3504), + [anon_sym_unchecked] = ACTIONS(3504), + [anon_sym_continue] = ACTIONS(3504), + [anon_sym_do] = ACTIONS(3504), + [anon_sym_while] = ACTIONS(3504), + [anon_sym_for] = ACTIONS(3504), + [anon_sym_lock] = ACTIONS(3504), + [anon_sym_yield] = ACTIONS(3504), + [anon_sym_switch] = ACTIONS(3504), + [anon_sym_case] = ACTIONS(3504), + [anon_sym_default] = ACTIONS(3504), + [anon_sym_throw] = ACTIONS(3504), + [anon_sym_try] = ACTIONS(3504), + [anon_sym_when] = ACTIONS(3504), + [anon_sym_await] = ACTIONS(3504), + [anon_sym_foreach] = ACTIONS(3504), + [anon_sym_goto] = ACTIONS(3504), + [anon_sym_if] = ACTIONS(3504), + [anon_sym_else] = ACTIONS(3504), + [anon_sym_DOT_DOT] = ACTIONS(3506), + [anon_sym_AMP] = ACTIONS(3506), + [anon_sym_CARET] = ACTIONS(3506), + [anon_sym_PLUS] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3504), + [anon_sym_BANG] = ACTIONS(3506), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3506), + [anon_sym_true] = ACTIONS(3504), + [anon_sym_false] = ACTIONS(3504), + [anon_sym_from] = ACTIONS(3504), + [anon_sym_into] = ACTIONS(3504), + [anon_sym_join] = ACTIONS(3504), + [anon_sym_on] = ACTIONS(3504), + [anon_sym_equals] = ACTIONS(3504), + [anon_sym_let] = ACTIONS(3504), + [anon_sym_orderby] = ACTIONS(3504), + [anon_sym_ascending] = ACTIONS(3504), + [anon_sym_descending] = ACTIONS(3504), + [anon_sym_group] = ACTIONS(3504), + [anon_sym_by] = ACTIONS(3504), + [anon_sym_select] = ACTIONS(3504), + [anon_sym_stackalloc] = ACTIONS(3504), + [anon_sym_sizeof] = ACTIONS(3504), + [anon_sym_typeof] = ACTIONS(3504), + [anon_sym___makeref] = ACTIONS(3504), + [anon_sym___reftype] = ACTIONS(3504), + [anon_sym___refvalue] = ACTIONS(3504), + [sym_null_literal] = ACTIONS(3504), + [anon_sym_SQUOTE] = ACTIONS(3506), + [sym_integer_literal] = ACTIONS(3504), + [sym_real_literal] = ACTIONS(3506), + [anon_sym_DQUOTE] = ACTIONS(3506), + [sym_verbatim_string_literal] = ACTIONS(3506), + [sym_grit_metavariable] = ACTIONS(3506), + [aux_sym_preproc_if_token1] = ACTIONS(3506), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402700,21 +402353,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3574), - [sym_interpolation_verbatim_start] = ACTIONS(3574), - [sym_interpolation_raw_start] = ACTIONS(3574), - [sym_raw_string_start] = ACTIONS(3574), + [sym_interpolation_regular_start] = ACTIONS(3506), + [sym_interpolation_verbatim_start] = ACTIONS(3506), + [sym_interpolation_raw_start] = ACTIONS(3506), + [sym_raw_string_start] = ACTIONS(3506), }, - [2130] = { - [sym_preproc_region] = STATE(2130), - [sym_preproc_endregion] = STATE(2130), - [sym_preproc_line] = STATE(2130), - [sym_preproc_pragma] = STATE(2130), - [sym_preproc_nullable] = STATE(2130), - [sym_preproc_error] = STATE(2130), - [sym_preproc_warning] = STATE(2130), - [sym_preproc_define] = STATE(2130), - [sym_preproc_undef] = STATE(2130), + [2127] = { + [sym_preproc_region] = STATE(2127), + [sym_preproc_endregion] = STATE(2127), + [sym_preproc_line] = STATE(2127), + [sym_preproc_pragma] = STATE(2127), + [sym_preproc_nullable] = STATE(2127), + [sym_preproc_error] = STATE(2127), + [sym_preproc_warning] = STATE(2127), + [sym_preproc_define] = STATE(2127), + [sym_preproc_undef] = STATE(2127), + [sym__identifier_token] = ACTIONS(3560), + [anon_sym_extern] = ACTIONS(3560), + [anon_sym_alias] = ACTIONS(3560), + [anon_sym_SEMI] = ACTIONS(3562), + [anon_sym_global] = ACTIONS(3560), + [anon_sym_using] = ACTIONS(3560), + [anon_sym_unsafe] = ACTIONS(3560), + [anon_sym_static] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3562), + [anon_sym_LPAREN] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_ref] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3562), + [anon_sym_RBRACE] = ACTIONS(3562), + [anon_sym_delegate] = ACTIONS(3560), + [anon_sym_public] = ACTIONS(3560), + [anon_sym_private] = ACTIONS(3560), + [anon_sym_readonly] = ACTIONS(3560), + [anon_sym_abstract] = ACTIONS(3560), + [anon_sym_async] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_file] = ACTIONS(3560), + [anon_sym_fixed] = ACTIONS(3560), + [anon_sym_internal] = ACTIONS(3560), + [anon_sym_new] = ACTIONS(3560), + [anon_sym_override] = ACTIONS(3560), + [anon_sym_partial] = ACTIONS(3560), + [anon_sym_protected] = ACTIONS(3560), + [anon_sym_required] = ACTIONS(3560), + [anon_sym_sealed] = ACTIONS(3560), + [anon_sym_virtual] = ACTIONS(3560), + [anon_sym_volatile] = ACTIONS(3560), + [anon_sym_where] = ACTIONS(3560), + [anon_sym_notnull] = ACTIONS(3560), + [anon_sym_unmanaged] = ACTIONS(3560), + [anon_sym_checked] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_this] = ACTIONS(3560), + [anon_sym_scoped] = ACTIONS(3560), + [anon_sym_base] = ACTIONS(3560), + [anon_sym_var] = ACTIONS(3560), + [anon_sym_STAR] = ACTIONS(3562), + [sym_predefined_type] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_unchecked] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_do] = ACTIONS(3560), + [anon_sym_while] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_lock] = ACTIONS(3560), + [anon_sym_yield] = ACTIONS(3560), + [anon_sym_switch] = ACTIONS(3560), + [anon_sym_case] = ACTIONS(3560), + [anon_sym_default] = ACTIONS(3560), + [anon_sym_throw] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3560), + [anon_sym_when] = ACTIONS(3560), + [anon_sym_await] = ACTIONS(3560), + [anon_sym_foreach] = ACTIONS(3560), + [anon_sym_goto] = ACTIONS(3560), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3560), + [anon_sym_DOT_DOT] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3562), + [anon_sym_CARET] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3562), + [anon_sym_DASH_DASH] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3560), + [anon_sym_false] = ACTIONS(3560), + [anon_sym_from] = ACTIONS(3560), + [anon_sym_into] = ACTIONS(3560), + [anon_sym_join] = ACTIONS(3560), + [anon_sym_on] = ACTIONS(3560), + [anon_sym_equals] = ACTIONS(3560), + [anon_sym_let] = ACTIONS(3560), + [anon_sym_orderby] = ACTIONS(3560), + [anon_sym_ascending] = ACTIONS(3560), + [anon_sym_descending] = ACTIONS(3560), + [anon_sym_group] = ACTIONS(3560), + [anon_sym_by] = ACTIONS(3560), + [anon_sym_select] = ACTIONS(3560), + [anon_sym_stackalloc] = ACTIONS(3560), + [anon_sym_sizeof] = ACTIONS(3560), + [anon_sym_typeof] = ACTIONS(3560), + [anon_sym___makeref] = ACTIONS(3560), + [anon_sym___reftype] = ACTIONS(3560), + [anon_sym___refvalue] = ACTIONS(3560), + [sym_null_literal] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3562), + [sym_integer_literal] = ACTIONS(3560), + [sym_real_literal] = ACTIONS(3562), + [anon_sym_DQUOTE] = ACTIONS(3562), + [sym_verbatim_string_literal] = ACTIONS(3562), + [sym_grit_metavariable] = ACTIONS(3562), + [aux_sym_preproc_if_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_interpolation_regular_start] = ACTIONS(3562), + [sym_interpolation_verbatim_start] = ACTIONS(3562), + [sym_interpolation_raw_start] = ACTIONS(3562), + [sym_raw_string_start] = ACTIONS(3562), + }, + [2128] = { + [sym_preproc_region] = STATE(2128), + [sym_preproc_endregion] = STATE(2128), + [sym_preproc_line] = STATE(2128), + [sym_preproc_pragma] = STATE(2128), + [sym_preproc_nullable] = STATE(2128), + [sym_preproc_error] = STATE(2128), + [sym_preproc_warning] = STATE(2128), + [sym_preproc_define] = STATE(2128), + [sym_preproc_undef] = STATE(2128), [sym__identifier_token] = ACTIONS(3448), [anon_sym_extern] = ACTIONS(3448), [anon_sym_alias] = ACTIONS(3448), @@ -402751,21 +402527,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3448), [anon_sym_unmanaged] = ACTIONS(3448), [anon_sym_checked] = ACTIONS(3448), - [anon_sym_BANG] = ACTIONS(3450), [anon_sym_TILDE] = ACTIONS(3450), - [anon_sym_PLUS_PLUS] = ACTIONS(3450), - [anon_sym_DASH_DASH] = ACTIONS(3450), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [anon_sym_PLUS] = ACTIONS(3448), - [anon_sym_DASH] = ACTIONS(3448), - [anon_sym_STAR] = ACTIONS(3450), - [anon_sym_CARET] = ACTIONS(3450), - [anon_sym_AMP] = ACTIONS(3450), [anon_sym_this] = ACTIONS(3448), [anon_sym_scoped] = ACTIONS(3448), [anon_sym_base] = ACTIONS(3448), [anon_sym_var] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3450), [sym_predefined_type] = ACTIONS(3448), [anon_sym_break] = ACTIONS(3448), [anon_sym_unchecked] = ACTIONS(3448), @@ -402787,6 +402554,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3448), [anon_sym_else] = ACTIONS(3448), [anon_sym_DOT_DOT] = ACTIONS(3450), + [anon_sym_AMP] = ACTIONS(3450), + [anon_sym_CARET] = ACTIONS(3450), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3450), + [anon_sym_true] = ACTIONS(3448), + [anon_sym_false] = ACTIONS(3448), [anon_sym_from] = ACTIONS(3448), [anon_sym_into] = ACTIONS(3448), [anon_sym_join] = ACTIONS(3448), @@ -402828,483 +402604,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3450), [sym_raw_string_start] = ACTIONS(3450), }, - [2131] = { - [sym_preproc_region] = STATE(2131), - [sym_preproc_endregion] = STATE(2131), - [sym_preproc_line] = STATE(2131), - [sym_preproc_pragma] = STATE(2131), - [sym_preproc_nullable] = STATE(2131), - [sym_preproc_error] = STATE(2131), - [sym_preproc_warning] = STATE(2131), - [sym_preproc_define] = STATE(2131), - [sym_preproc_undef] = STATE(2131), - [sym__identifier_token] = ACTIONS(3456), - [anon_sym_extern] = ACTIONS(3456), - [anon_sym_alias] = ACTIONS(3456), - [anon_sym_SEMI] = ACTIONS(3458), - [anon_sym_global] = ACTIONS(3456), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_unsafe] = ACTIONS(3456), - [anon_sym_static] = ACTIONS(3456), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_return] = ACTIONS(3456), - [anon_sym_ref] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_RBRACE] = ACTIONS(3458), - [anon_sym_delegate] = ACTIONS(3456), - [anon_sym_public] = ACTIONS(3456), - [anon_sym_private] = ACTIONS(3456), - [anon_sym_readonly] = ACTIONS(3456), - [anon_sym_abstract] = ACTIONS(3456), - [anon_sym_async] = ACTIONS(3456), - [anon_sym_const] = ACTIONS(3456), - [anon_sym_file] = ACTIONS(3456), - [anon_sym_fixed] = ACTIONS(3456), - [anon_sym_internal] = ACTIONS(3456), - [anon_sym_new] = ACTIONS(3456), - [anon_sym_override] = ACTIONS(3456), - [anon_sym_partial] = ACTIONS(3456), - [anon_sym_protected] = ACTIONS(3456), - [anon_sym_required] = ACTIONS(3456), - [anon_sym_sealed] = ACTIONS(3456), - [anon_sym_virtual] = ACTIONS(3456), - [anon_sym_volatile] = ACTIONS(3456), - [anon_sym_where] = ACTIONS(3456), - [anon_sym_notnull] = ACTIONS(3456), - [anon_sym_unmanaged] = ACTIONS(3456), - [anon_sym_checked] = ACTIONS(3456), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3458), - [anon_sym_PLUS_PLUS] = ACTIONS(3458), - [anon_sym_DASH_DASH] = ACTIONS(3458), - [anon_sym_true] = ACTIONS(3456), - [anon_sym_false] = ACTIONS(3456), - [anon_sym_PLUS] = ACTIONS(3456), - [anon_sym_DASH] = ACTIONS(3456), - [anon_sym_STAR] = ACTIONS(3458), - [anon_sym_CARET] = ACTIONS(3458), - [anon_sym_AMP] = ACTIONS(3458), - [anon_sym_this] = ACTIONS(3456), - [anon_sym_scoped] = ACTIONS(3456), - [anon_sym_base] = ACTIONS(3456), - [anon_sym_var] = ACTIONS(3456), - [sym_predefined_type] = ACTIONS(3456), - [anon_sym_break] = ACTIONS(3456), - [anon_sym_unchecked] = ACTIONS(3456), - [anon_sym_continue] = ACTIONS(3456), - [anon_sym_do] = ACTIONS(3456), - [anon_sym_while] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3456), - [anon_sym_lock] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3456), - [anon_sym_switch] = ACTIONS(3456), - [anon_sym_case] = ACTIONS(3456), - [anon_sym_default] = ACTIONS(3456), - [anon_sym_throw] = ACTIONS(3456), - [anon_sym_try] = ACTIONS(3456), - [anon_sym_when] = ACTIONS(3456), - [anon_sym_await] = ACTIONS(3456), - [anon_sym_foreach] = ACTIONS(3456), - [anon_sym_goto] = ACTIONS(3456), - [anon_sym_if] = ACTIONS(3456), - [anon_sym_else] = ACTIONS(3456), - [anon_sym_DOT_DOT] = ACTIONS(3458), - [anon_sym_from] = ACTIONS(3456), - [anon_sym_into] = ACTIONS(3456), - [anon_sym_join] = ACTIONS(3456), - [anon_sym_on] = ACTIONS(3456), - [anon_sym_equals] = ACTIONS(3456), - [anon_sym_let] = ACTIONS(3456), - [anon_sym_orderby] = ACTIONS(3456), - [anon_sym_ascending] = ACTIONS(3456), - [anon_sym_descending] = ACTIONS(3456), - [anon_sym_group] = ACTIONS(3456), - [anon_sym_by] = ACTIONS(3456), - [anon_sym_select] = ACTIONS(3456), - [anon_sym_stackalloc] = ACTIONS(3456), - [anon_sym_sizeof] = ACTIONS(3456), - [anon_sym_typeof] = ACTIONS(3456), - [anon_sym___makeref] = ACTIONS(3456), - [anon_sym___reftype] = ACTIONS(3456), - [anon_sym___refvalue] = ACTIONS(3456), - [sym_null_literal] = ACTIONS(3456), - [anon_sym_SQUOTE] = ACTIONS(3458), - [sym_integer_literal] = ACTIONS(3456), - [sym_real_literal] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [sym_verbatim_string_literal] = ACTIONS(3458), - [sym_grit_metavariable] = ACTIONS(3458), - [aux_sym_preproc_if_token1] = ACTIONS(3458), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3458), - [sym_interpolation_verbatim_start] = ACTIONS(3458), - [sym_interpolation_raw_start] = ACTIONS(3458), - [sym_raw_string_start] = ACTIONS(3458), - }, - [2132] = { - [sym_preproc_region] = STATE(2132), - [sym_preproc_endregion] = STATE(2132), - [sym_preproc_line] = STATE(2132), - [sym_preproc_pragma] = STATE(2132), - [sym_preproc_nullable] = STATE(2132), - [sym_preproc_error] = STATE(2132), - [sym_preproc_warning] = STATE(2132), - [sym_preproc_define] = STATE(2132), - [sym_preproc_undef] = STATE(2132), - [sym__identifier_token] = ACTIONS(3402), - [anon_sym_extern] = ACTIONS(3402), - [anon_sym_alias] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_global] = ACTIONS(3402), - [anon_sym_using] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(3402), - [anon_sym_static] = ACTIONS(3402), - [anon_sym_LBRACK] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(3404), - [anon_sym_return] = ACTIONS(3402), - [anon_sym_ref] = ACTIONS(3402), - [anon_sym_LBRACE] = ACTIONS(3404), - [anon_sym_RBRACE] = ACTIONS(3404), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_public] = ACTIONS(3402), - [anon_sym_private] = ACTIONS(3402), - [anon_sym_readonly] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(3402), - [anon_sym_async] = ACTIONS(3402), - [anon_sym_const] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(3402), - [anon_sym_fixed] = ACTIONS(3402), - [anon_sym_internal] = ACTIONS(3402), - [anon_sym_new] = ACTIONS(3402), - [anon_sym_override] = ACTIONS(3402), - [anon_sym_partial] = ACTIONS(3402), - [anon_sym_protected] = ACTIONS(3402), - [anon_sym_required] = ACTIONS(3402), - [anon_sym_sealed] = ACTIONS(3402), - [anon_sym_virtual] = ACTIONS(3402), - [anon_sym_volatile] = ACTIONS(3402), - [anon_sym_where] = ACTIONS(3402), - [anon_sym_notnull] = ACTIONS(3402), - [anon_sym_unmanaged] = ACTIONS(3402), - [anon_sym_checked] = ACTIONS(3402), - [anon_sym_BANG] = ACTIONS(3404), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_PLUS_PLUS] = ACTIONS(3404), - [anon_sym_DASH_DASH] = ACTIONS(3404), - [anon_sym_true] = ACTIONS(3402), - [anon_sym_false] = ACTIONS(3402), - [anon_sym_PLUS] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3402), - [anon_sym_STAR] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_this] = ACTIONS(3402), - [anon_sym_scoped] = ACTIONS(3402), - [anon_sym_base] = ACTIONS(3402), - [anon_sym_var] = ACTIONS(3402), - [sym_predefined_type] = ACTIONS(3402), - [anon_sym_break] = ACTIONS(3402), - [anon_sym_unchecked] = ACTIONS(3402), - [anon_sym_continue] = ACTIONS(3402), - [anon_sym_do] = ACTIONS(3402), - [anon_sym_while] = ACTIONS(3402), - [anon_sym_for] = ACTIONS(3402), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_yield] = ACTIONS(3402), - [anon_sym_switch] = ACTIONS(3402), - [anon_sym_case] = ACTIONS(3402), - [anon_sym_default] = ACTIONS(3402), - [anon_sym_throw] = ACTIONS(3402), - [anon_sym_try] = ACTIONS(3402), - [anon_sym_when] = ACTIONS(3402), - [anon_sym_await] = ACTIONS(3402), - [anon_sym_foreach] = ACTIONS(3402), - [anon_sym_goto] = ACTIONS(3402), - [anon_sym_if] = ACTIONS(3402), - [anon_sym_else] = ACTIONS(3402), - [anon_sym_DOT_DOT] = ACTIONS(3404), - [anon_sym_from] = ACTIONS(3402), - [anon_sym_into] = ACTIONS(3402), - [anon_sym_join] = ACTIONS(3402), - [anon_sym_on] = ACTIONS(3402), - [anon_sym_equals] = ACTIONS(3402), - [anon_sym_let] = ACTIONS(3402), - [anon_sym_orderby] = ACTIONS(3402), - [anon_sym_ascending] = ACTIONS(3402), - [anon_sym_descending] = ACTIONS(3402), - [anon_sym_group] = ACTIONS(3402), - [anon_sym_by] = ACTIONS(3402), - [anon_sym_select] = ACTIONS(3402), - [anon_sym_stackalloc] = ACTIONS(3402), - [anon_sym_sizeof] = ACTIONS(3402), - [anon_sym_typeof] = ACTIONS(3402), - [anon_sym___makeref] = ACTIONS(3402), - [anon_sym___reftype] = ACTIONS(3402), - [anon_sym___refvalue] = ACTIONS(3402), - [sym_null_literal] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3404), - [sym_integer_literal] = ACTIONS(3402), - [sym_real_literal] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [sym_verbatim_string_literal] = ACTIONS(3404), - [sym_grit_metavariable] = ACTIONS(3404), - [aux_sym_preproc_if_token1] = ACTIONS(3404), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3404), - [sym_interpolation_verbatim_start] = ACTIONS(3404), - [sym_interpolation_raw_start] = ACTIONS(3404), - [sym_raw_string_start] = ACTIONS(3404), - }, - [2133] = { - [sym_preproc_region] = STATE(2133), - [sym_preproc_endregion] = STATE(2133), - [sym_preproc_line] = STATE(2133), - [sym_preproc_pragma] = STATE(2133), - [sym_preproc_nullable] = STATE(2133), - [sym_preproc_error] = STATE(2133), - [sym_preproc_warning] = STATE(2133), - [sym_preproc_define] = STATE(2133), - [sym_preproc_undef] = STATE(2133), - [sym__identifier_token] = ACTIONS(3414), - [anon_sym_extern] = ACTIONS(3414), - [anon_sym_alias] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3416), - [anon_sym_global] = ACTIONS(3414), - [anon_sym_using] = ACTIONS(3414), - [anon_sym_unsafe] = ACTIONS(3414), - [anon_sym_static] = ACTIONS(3414), - [anon_sym_LBRACK] = ACTIONS(3416), - [anon_sym_LPAREN] = ACTIONS(3416), - [anon_sym_return] = ACTIONS(3414), - [anon_sym_ref] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_RBRACE] = ACTIONS(3416), - [anon_sym_delegate] = ACTIONS(3414), - [anon_sym_public] = ACTIONS(3414), - [anon_sym_private] = ACTIONS(3414), - [anon_sym_readonly] = ACTIONS(3414), - [anon_sym_abstract] = ACTIONS(3414), - [anon_sym_async] = ACTIONS(3414), - [anon_sym_const] = ACTIONS(3414), - [anon_sym_file] = ACTIONS(3414), - [anon_sym_fixed] = ACTIONS(3414), - [anon_sym_internal] = ACTIONS(3414), - [anon_sym_new] = ACTIONS(3414), - [anon_sym_override] = ACTIONS(3414), - [anon_sym_partial] = ACTIONS(3414), - [anon_sym_protected] = ACTIONS(3414), - [anon_sym_required] = ACTIONS(3414), - [anon_sym_sealed] = ACTIONS(3414), - [anon_sym_virtual] = ACTIONS(3414), - [anon_sym_volatile] = ACTIONS(3414), - [anon_sym_where] = ACTIONS(3414), - [anon_sym_notnull] = ACTIONS(3414), - [anon_sym_unmanaged] = ACTIONS(3414), - [anon_sym_checked] = ACTIONS(3414), - [anon_sym_BANG] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3416), - [anon_sym_true] = ACTIONS(3414), - [anon_sym_false] = ACTIONS(3414), - [anon_sym_PLUS] = ACTIONS(3414), - [anon_sym_DASH] = ACTIONS(3414), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_CARET] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_this] = ACTIONS(3414), - [anon_sym_scoped] = ACTIONS(3414), - [anon_sym_base] = ACTIONS(3414), - [anon_sym_var] = ACTIONS(3414), - [sym_predefined_type] = ACTIONS(3414), - [anon_sym_break] = ACTIONS(3414), - [anon_sym_unchecked] = ACTIONS(3414), - [anon_sym_continue] = ACTIONS(3414), - [anon_sym_do] = ACTIONS(3414), - [anon_sym_while] = ACTIONS(3414), - [anon_sym_for] = ACTIONS(3414), - [anon_sym_lock] = ACTIONS(3414), - [anon_sym_yield] = ACTIONS(3414), - [anon_sym_switch] = ACTIONS(3414), - [anon_sym_case] = ACTIONS(3414), - [anon_sym_default] = ACTIONS(3414), - [anon_sym_throw] = ACTIONS(3414), - [anon_sym_try] = ACTIONS(3414), - [anon_sym_when] = ACTIONS(3414), - [anon_sym_await] = ACTIONS(3414), - [anon_sym_foreach] = ACTIONS(3414), - [anon_sym_goto] = ACTIONS(3414), - [anon_sym_if] = ACTIONS(3414), - [anon_sym_else] = ACTIONS(3414), - [anon_sym_DOT_DOT] = ACTIONS(3416), - [anon_sym_from] = ACTIONS(3414), - [anon_sym_into] = ACTIONS(3414), - [anon_sym_join] = ACTIONS(3414), - [anon_sym_on] = ACTIONS(3414), - [anon_sym_equals] = ACTIONS(3414), - [anon_sym_let] = ACTIONS(3414), - [anon_sym_orderby] = ACTIONS(3414), - [anon_sym_ascending] = ACTIONS(3414), - [anon_sym_descending] = ACTIONS(3414), - [anon_sym_group] = ACTIONS(3414), - [anon_sym_by] = ACTIONS(3414), - [anon_sym_select] = ACTIONS(3414), - [anon_sym_stackalloc] = ACTIONS(3414), - [anon_sym_sizeof] = ACTIONS(3414), - [anon_sym_typeof] = ACTIONS(3414), - [anon_sym___makeref] = ACTIONS(3414), - [anon_sym___reftype] = ACTIONS(3414), - [anon_sym___refvalue] = ACTIONS(3414), - [sym_null_literal] = ACTIONS(3414), - [anon_sym_SQUOTE] = ACTIONS(3416), - [sym_integer_literal] = ACTIONS(3414), - [sym_real_literal] = ACTIONS(3416), - [anon_sym_DQUOTE] = ACTIONS(3416), - [sym_verbatim_string_literal] = ACTIONS(3416), - [sym_grit_metavariable] = ACTIONS(3416), - [aux_sym_preproc_if_token1] = ACTIONS(3416), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3416), - [sym_interpolation_verbatim_start] = ACTIONS(3416), - [sym_interpolation_raw_start] = ACTIONS(3416), - [sym_raw_string_start] = ACTIONS(3416), - }, - [2134] = { - [sym_preproc_region] = STATE(2134), - [sym_preproc_endregion] = STATE(2134), - [sym_preproc_line] = STATE(2134), - [sym_preproc_pragma] = STATE(2134), - [sym_preproc_nullable] = STATE(2134), - [sym_preproc_error] = STATE(2134), - [sym_preproc_warning] = STATE(2134), - [sym_preproc_define] = STATE(2134), - [sym_preproc_undef] = STATE(2134), - [sym__identifier_token] = ACTIONS(3500), - [anon_sym_extern] = ACTIONS(3500), - [anon_sym_alias] = ACTIONS(3500), - [anon_sym_SEMI] = ACTIONS(3502), - [anon_sym_global] = ACTIONS(3500), - [anon_sym_using] = ACTIONS(3500), - [anon_sym_unsafe] = ACTIONS(3500), - [anon_sym_static] = ACTIONS(3500), - [anon_sym_LBRACK] = ACTIONS(3502), - [anon_sym_LPAREN] = ACTIONS(3502), - [anon_sym_return] = ACTIONS(3500), - [anon_sym_ref] = ACTIONS(3500), - [anon_sym_LBRACE] = ACTIONS(3502), - [anon_sym_RBRACE] = ACTIONS(3502), - [anon_sym_delegate] = ACTIONS(3500), - [anon_sym_public] = ACTIONS(3500), - [anon_sym_private] = ACTIONS(3500), - [anon_sym_readonly] = ACTIONS(3500), - [anon_sym_abstract] = ACTIONS(3500), - [anon_sym_async] = ACTIONS(3500), - [anon_sym_const] = ACTIONS(3500), - [anon_sym_file] = ACTIONS(3500), - [anon_sym_fixed] = ACTIONS(3500), - [anon_sym_internal] = ACTIONS(3500), - [anon_sym_new] = ACTIONS(3500), - [anon_sym_override] = ACTIONS(3500), - [anon_sym_partial] = ACTIONS(3500), - [anon_sym_protected] = ACTIONS(3500), - [anon_sym_required] = ACTIONS(3500), - [anon_sym_sealed] = ACTIONS(3500), - [anon_sym_virtual] = ACTIONS(3500), - [anon_sym_volatile] = ACTIONS(3500), - [anon_sym_where] = ACTIONS(3500), - [anon_sym_notnull] = ACTIONS(3500), - [anon_sym_unmanaged] = ACTIONS(3500), - [anon_sym_checked] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_TILDE] = ACTIONS(3502), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3502), - [anon_sym_true] = ACTIONS(3500), - [anon_sym_false] = ACTIONS(3500), - [anon_sym_PLUS] = ACTIONS(3500), - [anon_sym_DASH] = ACTIONS(3500), - [anon_sym_STAR] = ACTIONS(3502), - [anon_sym_CARET] = ACTIONS(3502), - [anon_sym_AMP] = ACTIONS(3502), - [anon_sym_this] = ACTIONS(3500), - [anon_sym_scoped] = ACTIONS(3500), - [anon_sym_base] = ACTIONS(3500), - [anon_sym_var] = ACTIONS(3500), - [sym_predefined_type] = ACTIONS(3500), - [anon_sym_break] = ACTIONS(3500), - [anon_sym_unchecked] = ACTIONS(3500), - [anon_sym_continue] = ACTIONS(3500), - [anon_sym_do] = ACTIONS(3500), - [anon_sym_while] = ACTIONS(3500), - [anon_sym_for] = ACTIONS(3500), - [anon_sym_lock] = ACTIONS(3500), - [anon_sym_yield] = ACTIONS(3500), - [anon_sym_switch] = ACTIONS(3500), - [anon_sym_case] = ACTIONS(3500), - [anon_sym_default] = ACTIONS(3500), - [anon_sym_throw] = ACTIONS(3500), - [anon_sym_try] = ACTIONS(3500), - [anon_sym_when] = ACTIONS(3500), - [anon_sym_await] = ACTIONS(3500), - [anon_sym_foreach] = ACTIONS(3500), - [anon_sym_goto] = ACTIONS(3500), - [anon_sym_if] = ACTIONS(3500), - [anon_sym_else] = ACTIONS(3500), - [anon_sym_DOT_DOT] = ACTIONS(3502), - [anon_sym_from] = ACTIONS(3500), - [anon_sym_into] = ACTIONS(3500), - [anon_sym_join] = ACTIONS(3500), - [anon_sym_on] = ACTIONS(3500), - [anon_sym_equals] = ACTIONS(3500), - [anon_sym_let] = ACTIONS(3500), - [anon_sym_orderby] = ACTIONS(3500), - [anon_sym_ascending] = ACTIONS(3500), - [anon_sym_descending] = ACTIONS(3500), - [anon_sym_group] = ACTIONS(3500), - [anon_sym_by] = ACTIONS(3500), - [anon_sym_select] = ACTIONS(3500), - [anon_sym_stackalloc] = ACTIONS(3500), - [anon_sym_sizeof] = ACTIONS(3500), - [anon_sym_typeof] = ACTIONS(3500), - [anon_sym___makeref] = ACTIONS(3500), - [anon_sym___reftype] = ACTIONS(3500), - [anon_sym___refvalue] = ACTIONS(3500), - [sym_null_literal] = ACTIONS(3500), - [anon_sym_SQUOTE] = ACTIONS(3502), - [sym_integer_literal] = ACTIONS(3500), - [sym_real_literal] = ACTIONS(3502), - [anon_sym_DQUOTE] = ACTIONS(3502), - [sym_verbatim_string_literal] = ACTIONS(3502), - [sym_grit_metavariable] = ACTIONS(3502), - [aux_sym_preproc_if_token1] = ACTIONS(3502), + [2129] = { + [sym_preproc_region] = STATE(2129), + [sym_preproc_endregion] = STATE(2129), + [sym_preproc_line] = STATE(2129), + [sym_preproc_pragma] = STATE(2129), + [sym_preproc_nullable] = STATE(2129), + [sym_preproc_error] = STATE(2129), + [sym_preproc_warning] = STATE(2129), + [sym_preproc_define] = STATE(2129), + [sym_preproc_undef] = STATE(2129), + [sym__identifier_token] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym_alias] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym_global] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_unsafe] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_ref] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_RBRACE] = ACTIONS(3454), + [anon_sym_delegate] = ACTIONS(3452), + [anon_sym_public] = ACTIONS(3452), + [anon_sym_private] = ACTIONS(3452), + [anon_sym_readonly] = ACTIONS(3452), + [anon_sym_abstract] = ACTIONS(3452), + [anon_sym_async] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_file] = ACTIONS(3452), + [anon_sym_fixed] = ACTIONS(3452), + [anon_sym_internal] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_override] = ACTIONS(3452), + [anon_sym_partial] = ACTIONS(3452), + [anon_sym_protected] = ACTIONS(3452), + [anon_sym_required] = ACTIONS(3452), + [anon_sym_sealed] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_where] = ACTIONS(3452), + [anon_sym_notnull] = ACTIONS(3452), + [anon_sym_unmanaged] = ACTIONS(3452), + [anon_sym_checked] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_this] = ACTIONS(3452), + [anon_sym_scoped] = ACTIONS(3452), + [anon_sym_base] = ACTIONS(3452), + [anon_sym_var] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3454), + [sym_predefined_type] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_unchecked] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_lock] = ACTIONS(3452), + [anon_sym_yield] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_case] = ACTIONS(3452), + [anon_sym_default] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_when] = ACTIONS(3452), + [anon_sym_await] = ACTIONS(3452), + [anon_sym_foreach] = ACTIONS(3452), + [anon_sym_goto] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3452), + [anon_sym_DOT_DOT] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3454), + [anon_sym_CARET] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [anon_sym_true] = ACTIONS(3452), + [anon_sym_false] = ACTIONS(3452), + [anon_sym_from] = ACTIONS(3452), + [anon_sym_into] = ACTIONS(3452), + [anon_sym_join] = ACTIONS(3452), + [anon_sym_on] = ACTIONS(3452), + [anon_sym_equals] = ACTIONS(3452), + [anon_sym_let] = ACTIONS(3452), + [anon_sym_orderby] = ACTIONS(3452), + [anon_sym_ascending] = ACTIONS(3452), + [anon_sym_descending] = ACTIONS(3452), + [anon_sym_group] = ACTIONS(3452), + [anon_sym_by] = ACTIONS(3452), + [anon_sym_select] = ACTIONS(3452), + [anon_sym_stackalloc] = ACTIONS(3452), + [anon_sym_sizeof] = ACTIONS(3452), + [anon_sym_typeof] = ACTIONS(3452), + [anon_sym___makeref] = ACTIONS(3452), + [anon_sym___reftype] = ACTIONS(3452), + [anon_sym___refvalue] = ACTIONS(3452), + [sym_null_literal] = ACTIONS(3452), + [anon_sym_SQUOTE] = ACTIONS(3454), + [sym_integer_literal] = ACTIONS(3452), + [sym_real_literal] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [sym_verbatim_string_literal] = ACTIONS(3454), + [sym_grit_metavariable] = ACTIONS(3454), + [aux_sym_preproc_if_token1] = ACTIONS(3454), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403315,21 +402722,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3502), - [sym_interpolation_verbatim_start] = ACTIONS(3502), - [sym_interpolation_raw_start] = ACTIONS(3502), - [sym_raw_string_start] = ACTIONS(3502), + [sym_interpolation_regular_start] = ACTIONS(3454), + [sym_interpolation_verbatim_start] = ACTIONS(3454), + [sym_interpolation_raw_start] = ACTIONS(3454), + [sym_raw_string_start] = ACTIONS(3454), }, - [2135] = { - [sym_preproc_region] = STATE(2135), - [sym_preproc_endregion] = STATE(2135), - [sym_preproc_line] = STATE(2135), - [sym_preproc_pragma] = STATE(2135), - [sym_preproc_nullable] = STATE(2135), - [sym_preproc_error] = STATE(2135), - [sym_preproc_warning] = STATE(2135), - [sym_preproc_define] = STATE(2135), - [sym_preproc_undef] = STATE(2135), + [2130] = { + [sym_preproc_region] = STATE(2130), + [sym_preproc_endregion] = STATE(2130), + [sym_preproc_line] = STATE(2130), + [sym_preproc_pragma] = STATE(2130), + [sym_preproc_nullable] = STATE(2130), + [sym_preproc_error] = STATE(2130), + [sym_preproc_warning] = STATE(2130), + [sym_preproc_define] = STATE(2130), + [sym_preproc_undef] = STATE(2130), [sym__identifier_token] = ACTIONS(3564), [anon_sym_extern] = ACTIONS(3564), [anon_sym_alias] = ACTIONS(3564), @@ -403366,21 +402773,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3564), [anon_sym_unmanaged] = ACTIONS(3564), [anon_sym_checked] = ACTIONS(3564), - [anon_sym_BANG] = ACTIONS(3566), [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_PLUS_PLUS] = ACTIONS(3566), - [anon_sym_DASH_DASH] = ACTIONS(3566), - [anon_sym_true] = ACTIONS(3564), - [anon_sym_false] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3566), [anon_sym_this] = ACTIONS(3564), [anon_sym_scoped] = ACTIONS(3564), [anon_sym_base] = ACTIONS(3564), [anon_sym_var] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3566), [sym_predefined_type] = ACTIONS(3564), [anon_sym_break] = ACTIONS(3564), [anon_sym_unchecked] = ACTIONS(3564), @@ -403402,6 +402800,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3564), [anon_sym_else] = ACTIONS(3564), [anon_sym_DOT_DOT] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3566), + [anon_sym_CARET] = ACTIONS(3566), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), [anon_sym_from] = ACTIONS(3564), [anon_sym_into] = ACTIONS(3564), [anon_sym_join] = ACTIONS(3564), @@ -403443,114 +402850,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3566), [sym_raw_string_start] = ACTIONS(3566), }, - [2136] = { - [sym_preproc_region] = STATE(2136), - [sym_preproc_endregion] = STATE(2136), - [sym_preproc_line] = STATE(2136), - [sym_preproc_pragma] = STATE(2136), - [sym_preproc_nullable] = STATE(2136), - [sym_preproc_error] = STATE(2136), - [sym_preproc_warning] = STATE(2136), - [sym_preproc_define] = STATE(2136), - [sym_preproc_undef] = STATE(2136), - [sym__identifier_token] = ACTIONS(3512), - [anon_sym_extern] = ACTIONS(3512), - [anon_sym_alias] = ACTIONS(3512), - [anon_sym_SEMI] = ACTIONS(3514), - [anon_sym_global] = ACTIONS(3512), - [anon_sym_using] = ACTIONS(3512), - [anon_sym_unsafe] = ACTIONS(3512), - [anon_sym_static] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(3514), - [anon_sym_return] = ACTIONS(3512), - [anon_sym_ref] = ACTIONS(3512), - [anon_sym_LBRACE] = ACTIONS(3514), - [anon_sym_RBRACE] = ACTIONS(3514), - [anon_sym_delegate] = ACTIONS(3512), - [anon_sym_public] = ACTIONS(3512), - [anon_sym_private] = ACTIONS(3512), - [anon_sym_readonly] = ACTIONS(3512), - [anon_sym_abstract] = ACTIONS(3512), - [anon_sym_async] = ACTIONS(3512), - [anon_sym_const] = ACTIONS(3512), - [anon_sym_file] = ACTIONS(3512), - [anon_sym_fixed] = ACTIONS(3512), - [anon_sym_internal] = ACTIONS(3512), - [anon_sym_new] = ACTIONS(3512), - [anon_sym_override] = ACTIONS(3512), - [anon_sym_partial] = ACTIONS(3512), - [anon_sym_protected] = ACTIONS(3512), - [anon_sym_required] = ACTIONS(3512), - [anon_sym_sealed] = ACTIONS(3512), - [anon_sym_virtual] = ACTIONS(3512), - [anon_sym_volatile] = ACTIONS(3512), - [anon_sym_where] = ACTIONS(3512), - [anon_sym_notnull] = ACTIONS(3512), - [anon_sym_unmanaged] = ACTIONS(3512), - [anon_sym_checked] = ACTIONS(3512), - [anon_sym_BANG] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(3514), - [anon_sym_PLUS_PLUS] = ACTIONS(3514), - [anon_sym_DASH_DASH] = ACTIONS(3514), - [anon_sym_true] = ACTIONS(3512), - [anon_sym_false] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_STAR] = ACTIONS(3514), - [anon_sym_CARET] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3514), - [anon_sym_this] = ACTIONS(3512), - [anon_sym_scoped] = ACTIONS(3512), - [anon_sym_base] = ACTIONS(3512), - [anon_sym_var] = ACTIONS(3512), - [sym_predefined_type] = ACTIONS(3512), - [anon_sym_break] = ACTIONS(3512), - [anon_sym_unchecked] = ACTIONS(3512), - [anon_sym_continue] = ACTIONS(3512), - [anon_sym_do] = ACTIONS(3512), - [anon_sym_while] = ACTIONS(3512), - [anon_sym_for] = ACTIONS(3512), - [anon_sym_lock] = ACTIONS(3512), - [anon_sym_yield] = ACTIONS(3512), - [anon_sym_switch] = ACTIONS(3512), - [anon_sym_case] = ACTIONS(3512), - [anon_sym_default] = ACTIONS(3512), - [anon_sym_throw] = ACTIONS(3512), - [anon_sym_try] = ACTIONS(3512), - [anon_sym_when] = ACTIONS(3512), - [anon_sym_await] = ACTIONS(3512), - [anon_sym_foreach] = ACTIONS(3512), - [anon_sym_goto] = ACTIONS(3512), - [anon_sym_if] = ACTIONS(3512), - [anon_sym_else] = ACTIONS(3512), - [anon_sym_DOT_DOT] = ACTIONS(3514), - [anon_sym_from] = ACTIONS(3512), - [anon_sym_into] = ACTIONS(3512), - [anon_sym_join] = ACTIONS(3512), - [anon_sym_on] = ACTIONS(3512), - [anon_sym_equals] = ACTIONS(3512), - [anon_sym_let] = ACTIONS(3512), - [anon_sym_orderby] = ACTIONS(3512), - [anon_sym_ascending] = ACTIONS(3512), - [anon_sym_descending] = ACTIONS(3512), - [anon_sym_group] = ACTIONS(3512), - [anon_sym_by] = ACTIONS(3512), - [anon_sym_select] = ACTIONS(3512), - [anon_sym_stackalloc] = ACTIONS(3512), - [anon_sym_sizeof] = ACTIONS(3512), - [anon_sym_typeof] = ACTIONS(3512), - [anon_sym___makeref] = ACTIONS(3512), - [anon_sym___reftype] = ACTIONS(3512), - [anon_sym___refvalue] = ACTIONS(3512), - [sym_null_literal] = ACTIONS(3512), - [anon_sym_SQUOTE] = ACTIONS(3514), - [sym_integer_literal] = ACTIONS(3512), - [sym_real_literal] = ACTIONS(3514), - [anon_sym_DQUOTE] = ACTIONS(3514), - [sym_verbatim_string_literal] = ACTIONS(3514), - [sym_grit_metavariable] = ACTIONS(3514), - [aux_sym_preproc_if_token1] = ACTIONS(3514), + [2131] = { + [sym_preproc_region] = STATE(2131), + [sym_preproc_endregion] = STATE(2131), + [sym_preproc_line] = STATE(2131), + [sym_preproc_pragma] = STATE(2131), + [sym_preproc_nullable] = STATE(2131), + [sym_preproc_error] = STATE(2131), + [sym_preproc_warning] = STATE(2131), + [sym_preproc_define] = STATE(2131), + [sym_preproc_undef] = STATE(2131), + [sym__identifier_token] = ACTIONS(3432), + [anon_sym_extern] = ACTIONS(3432), + [anon_sym_alias] = ACTIONS(3432), + [anon_sym_SEMI] = ACTIONS(3434), + [anon_sym_global] = ACTIONS(3432), + [anon_sym_using] = ACTIONS(3432), + [anon_sym_unsafe] = ACTIONS(3432), + [anon_sym_static] = ACTIONS(3432), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3432), + [anon_sym_ref] = ACTIONS(3432), + [anon_sym_LBRACE] = ACTIONS(3434), + [anon_sym_RBRACE] = ACTIONS(3434), + [anon_sym_delegate] = ACTIONS(3432), + [anon_sym_public] = ACTIONS(3432), + [anon_sym_private] = ACTIONS(3432), + [anon_sym_readonly] = ACTIONS(3432), + [anon_sym_abstract] = ACTIONS(3432), + [anon_sym_async] = ACTIONS(3432), + [anon_sym_const] = ACTIONS(3432), + [anon_sym_file] = ACTIONS(3432), + [anon_sym_fixed] = ACTIONS(3432), + [anon_sym_internal] = ACTIONS(3432), + [anon_sym_new] = ACTIONS(3432), + [anon_sym_override] = ACTIONS(3432), + [anon_sym_partial] = ACTIONS(3432), + [anon_sym_protected] = ACTIONS(3432), + [anon_sym_required] = ACTIONS(3432), + [anon_sym_sealed] = ACTIONS(3432), + [anon_sym_virtual] = ACTIONS(3432), + [anon_sym_volatile] = ACTIONS(3432), + [anon_sym_where] = ACTIONS(3432), + [anon_sym_notnull] = ACTIONS(3432), + [anon_sym_unmanaged] = ACTIONS(3432), + [anon_sym_checked] = ACTIONS(3432), + [anon_sym_TILDE] = ACTIONS(3434), + [anon_sym_this] = ACTIONS(3432), + [anon_sym_scoped] = ACTIONS(3432), + [anon_sym_base] = ACTIONS(3432), + [anon_sym_var] = ACTIONS(3432), + [anon_sym_STAR] = ACTIONS(3434), + [sym_predefined_type] = ACTIONS(3432), + [anon_sym_break] = ACTIONS(3432), + [anon_sym_unchecked] = ACTIONS(3432), + [anon_sym_continue] = ACTIONS(3432), + [anon_sym_do] = ACTIONS(3432), + [anon_sym_while] = ACTIONS(3432), + [anon_sym_for] = ACTIONS(3432), + [anon_sym_lock] = ACTIONS(3432), + [anon_sym_yield] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3432), + [anon_sym_case] = ACTIONS(3432), + [anon_sym_default] = ACTIONS(3432), + [anon_sym_throw] = ACTIONS(3432), + [anon_sym_try] = ACTIONS(3432), + [anon_sym_when] = ACTIONS(3432), + [anon_sym_await] = ACTIONS(3432), + [anon_sym_foreach] = ACTIONS(3432), + [anon_sym_goto] = ACTIONS(3432), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_else] = ACTIONS(3432), + [anon_sym_DOT_DOT] = ACTIONS(3434), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym_CARET] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3432), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3434), + [anon_sym_true] = ACTIONS(3432), + [anon_sym_false] = ACTIONS(3432), + [anon_sym_from] = ACTIONS(3432), + [anon_sym_into] = ACTIONS(3432), + [anon_sym_join] = ACTIONS(3432), + [anon_sym_on] = ACTIONS(3432), + [anon_sym_equals] = ACTIONS(3432), + [anon_sym_let] = ACTIONS(3432), + [anon_sym_orderby] = ACTIONS(3432), + [anon_sym_ascending] = ACTIONS(3432), + [anon_sym_descending] = ACTIONS(3432), + [anon_sym_group] = ACTIONS(3432), + [anon_sym_by] = ACTIONS(3432), + [anon_sym_select] = ACTIONS(3432), + [anon_sym_stackalloc] = ACTIONS(3432), + [anon_sym_sizeof] = ACTIONS(3432), + [anon_sym_typeof] = ACTIONS(3432), + [anon_sym___makeref] = ACTIONS(3432), + [anon_sym___reftype] = ACTIONS(3432), + [anon_sym___refvalue] = ACTIONS(3432), + [sym_null_literal] = ACTIONS(3432), + [anon_sym_SQUOTE] = ACTIONS(3434), + [sym_integer_literal] = ACTIONS(3432), + [sym_real_literal] = ACTIONS(3434), + [anon_sym_DQUOTE] = ACTIONS(3434), + [sym_verbatim_string_literal] = ACTIONS(3434), + [sym_grit_metavariable] = ACTIONS(3434), + [aux_sym_preproc_if_token1] = ACTIONS(3434), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403561,119 +402968,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3514), - [sym_interpolation_verbatim_start] = ACTIONS(3514), - [sym_interpolation_raw_start] = ACTIONS(3514), - [sym_raw_string_start] = ACTIONS(3514), + [sym_interpolation_regular_start] = ACTIONS(3434), + [sym_interpolation_verbatim_start] = ACTIONS(3434), + [sym_interpolation_raw_start] = ACTIONS(3434), + [sym_raw_string_start] = ACTIONS(3434), }, - [2137] = { - [sym_preproc_region] = STATE(2137), - [sym_preproc_endregion] = STATE(2137), - [sym_preproc_line] = STATE(2137), - [sym_preproc_pragma] = STATE(2137), - [sym_preproc_nullable] = STATE(2137), - [sym_preproc_error] = STATE(2137), - [sym_preproc_warning] = STATE(2137), - [sym_preproc_define] = STATE(2137), - [sym_preproc_undef] = STATE(2137), - [sym__identifier_token] = ACTIONS(3552), - [anon_sym_extern] = ACTIONS(3552), - [anon_sym_alias] = ACTIONS(3552), - [anon_sym_SEMI] = ACTIONS(3554), - [anon_sym_global] = ACTIONS(3552), - [anon_sym_using] = ACTIONS(3552), - [anon_sym_unsafe] = ACTIONS(3552), - [anon_sym_static] = ACTIONS(3552), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_return] = ACTIONS(3552), - [anon_sym_ref] = ACTIONS(3552), - [anon_sym_LBRACE] = ACTIONS(3554), - [anon_sym_RBRACE] = ACTIONS(3554), - [anon_sym_delegate] = ACTIONS(3552), - [anon_sym_public] = ACTIONS(3552), - [anon_sym_private] = ACTIONS(3552), - [anon_sym_readonly] = ACTIONS(3552), - [anon_sym_abstract] = ACTIONS(3552), - [anon_sym_async] = ACTIONS(3552), - [anon_sym_const] = ACTIONS(3552), - [anon_sym_file] = ACTIONS(3552), - [anon_sym_fixed] = ACTIONS(3552), - [anon_sym_internal] = ACTIONS(3552), - [anon_sym_new] = ACTIONS(3552), - [anon_sym_override] = ACTIONS(3552), - [anon_sym_partial] = ACTIONS(3552), - [anon_sym_protected] = ACTIONS(3552), - [anon_sym_required] = ACTIONS(3552), - [anon_sym_sealed] = ACTIONS(3552), - [anon_sym_virtual] = ACTIONS(3552), - [anon_sym_volatile] = ACTIONS(3552), - [anon_sym_where] = ACTIONS(3552), - [anon_sym_notnull] = ACTIONS(3552), - [anon_sym_unmanaged] = ACTIONS(3552), - [anon_sym_checked] = ACTIONS(3552), - [anon_sym_BANG] = ACTIONS(3554), - [anon_sym_TILDE] = ACTIONS(3554), - [anon_sym_PLUS_PLUS] = ACTIONS(3554), - [anon_sym_DASH_DASH] = ACTIONS(3554), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [anon_sym_PLUS] = ACTIONS(3552), - [anon_sym_DASH] = ACTIONS(3552), - [anon_sym_STAR] = ACTIONS(3554), - [anon_sym_CARET] = ACTIONS(3554), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_this] = ACTIONS(3552), - [anon_sym_scoped] = ACTIONS(3552), - [anon_sym_base] = ACTIONS(3552), - [anon_sym_var] = ACTIONS(3552), - [sym_predefined_type] = ACTIONS(3552), - [anon_sym_break] = ACTIONS(3552), - [anon_sym_unchecked] = ACTIONS(3552), - [anon_sym_continue] = ACTIONS(3552), - [anon_sym_do] = ACTIONS(3552), - [anon_sym_while] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3552), - [anon_sym_switch] = ACTIONS(3552), - [anon_sym_case] = ACTIONS(3552), - [anon_sym_default] = ACTIONS(3552), - [anon_sym_throw] = ACTIONS(3552), - [anon_sym_try] = ACTIONS(3552), - [anon_sym_when] = ACTIONS(3552), - [anon_sym_await] = ACTIONS(3552), - [anon_sym_foreach] = ACTIONS(3552), - [anon_sym_goto] = ACTIONS(3552), - [anon_sym_if] = ACTIONS(3552), - [anon_sym_else] = ACTIONS(3552), - [anon_sym_DOT_DOT] = ACTIONS(3554), - [anon_sym_from] = ACTIONS(3552), - [anon_sym_into] = ACTIONS(3552), - [anon_sym_join] = ACTIONS(3552), - [anon_sym_on] = ACTIONS(3552), - [anon_sym_equals] = ACTIONS(3552), - [anon_sym_let] = ACTIONS(3552), - [anon_sym_orderby] = ACTIONS(3552), - [anon_sym_ascending] = ACTIONS(3552), - [anon_sym_descending] = ACTIONS(3552), - [anon_sym_group] = ACTIONS(3552), - [anon_sym_by] = ACTIONS(3552), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_stackalloc] = ACTIONS(3552), - [anon_sym_sizeof] = ACTIONS(3552), - [anon_sym_typeof] = ACTIONS(3552), - [anon_sym___makeref] = ACTIONS(3552), - [anon_sym___reftype] = ACTIONS(3552), - [anon_sym___refvalue] = ACTIONS(3552), - [sym_null_literal] = ACTIONS(3552), - [anon_sym_SQUOTE] = ACTIONS(3554), - [sym_integer_literal] = ACTIONS(3552), - [sym_real_literal] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [sym_verbatim_string_literal] = ACTIONS(3554), - [sym_grit_metavariable] = ACTIONS(3554), - [aux_sym_preproc_if_token1] = ACTIONS(3554), + [2132] = { + [sym_preproc_region] = STATE(2132), + [sym_preproc_endregion] = STATE(2132), + [sym_preproc_line] = STATE(2132), + [sym_preproc_pragma] = STATE(2132), + [sym_preproc_nullable] = STATE(2132), + [sym_preproc_error] = STATE(2132), + [sym_preproc_warning] = STATE(2132), + [sym_preproc_define] = STATE(2132), + [sym_preproc_undef] = STATE(2132), + [sym__identifier_token] = ACTIONS(3556), + [anon_sym_extern] = ACTIONS(3556), + [anon_sym_alias] = ACTIONS(3556), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym_global] = ACTIONS(3556), + [anon_sym_using] = ACTIONS(3556), + [anon_sym_unsafe] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_ref] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_delegate] = ACTIONS(3556), + [anon_sym_public] = ACTIONS(3556), + [anon_sym_private] = ACTIONS(3556), + [anon_sym_readonly] = ACTIONS(3556), + [anon_sym_abstract] = ACTIONS(3556), + [anon_sym_async] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_file] = ACTIONS(3556), + [anon_sym_fixed] = ACTIONS(3556), + [anon_sym_internal] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_override] = ACTIONS(3556), + [anon_sym_partial] = ACTIONS(3556), + [anon_sym_protected] = ACTIONS(3556), + [anon_sym_required] = ACTIONS(3556), + [anon_sym_sealed] = ACTIONS(3556), + [anon_sym_virtual] = ACTIONS(3556), + [anon_sym_volatile] = ACTIONS(3556), + [anon_sym_where] = ACTIONS(3556), + [anon_sym_notnull] = ACTIONS(3556), + [anon_sym_unmanaged] = ACTIONS(3556), + [anon_sym_checked] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_this] = ACTIONS(3556), + [anon_sym_scoped] = ACTIONS(3556), + [anon_sym_base] = ACTIONS(3556), + [anon_sym_var] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [sym_predefined_type] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_unchecked] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_lock] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_case] = ACTIONS(3556), + [anon_sym_default] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_when] = ACTIONS(3556), + [anon_sym_await] = ACTIONS(3556), + [anon_sym_foreach] = ACTIONS(3556), + [anon_sym_goto] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_else] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_CARET] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [anon_sym_true] = ACTIONS(3556), + [anon_sym_false] = ACTIONS(3556), + [anon_sym_from] = ACTIONS(3556), + [anon_sym_into] = ACTIONS(3556), + [anon_sym_join] = ACTIONS(3556), + [anon_sym_on] = ACTIONS(3556), + [anon_sym_equals] = ACTIONS(3556), + [anon_sym_let] = ACTIONS(3556), + [anon_sym_orderby] = ACTIONS(3556), + [anon_sym_ascending] = ACTIONS(3556), + [anon_sym_descending] = ACTIONS(3556), + [anon_sym_group] = ACTIONS(3556), + [anon_sym_by] = ACTIONS(3556), + [anon_sym_select] = ACTIONS(3556), + [anon_sym_stackalloc] = ACTIONS(3556), + [anon_sym_sizeof] = ACTIONS(3556), + [anon_sym_typeof] = ACTIONS(3556), + [anon_sym___makeref] = ACTIONS(3556), + [anon_sym___reftype] = ACTIONS(3556), + [anon_sym___refvalue] = ACTIONS(3556), + [sym_null_literal] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3558), + [sym_integer_literal] = ACTIONS(3556), + [sym_real_literal] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [sym_verbatim_string_literal] = ACTIONS(3558), + [sym_grit_metavariable] = ACTIONS(3558), + [aux_sym_preproc_if_token1] = ACTIONS(3558), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403684,10 +403091,625 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3554), - [sym_interpolation_verbatim_start] = ACTIONS(3554), - [sym_interpolation_raw_start] = ACTIONS(3554), - [sym_raw_string_start] = ACTIONS(3554), + [sym_interpolation_regular_start] = ACTIONS(3558), + [sym_interpolation_verbatim_start] = ACTIONS(3558), + [sym_interpolation_raw_start] = ACTIONS(3558), + [sym_raw_string_start] = ACTIONS(3558), + }, + [2133] = { + [sym_preproc_region] = STATE(2133), + [sym_preproc_endregion] = STATE(2133), + [sym_preproc_line] = STATE(2133), + [sym_preproc_pragma] = STATE(2133), + [sym_preproc_nullable] = STATE(2133), + [sym_preproc_error] = STATE(2133), + [sym_preproc_warning] = STATE(2133), + [sym_preproc_define] = STATE(2133), + [sym_preproc_undef] = STATE(2133), + [sym__identifier_token] = ACTIONS(3398), + [anon_sym_extern] = ACTIONS(3398), + [anon_sym_alias] = ACTIONS(3398), + [anon_sym_SEMI] = ACTIONS(3400), + [anon_sym_global] = ACTIONS(3398), + [anon_sym_using] = ACTIONS(3398), + [anon_sym_unsafe] = ACTIONS(3398), + [anon_sym_static] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym_return] = ACTIONS(3398), + [anon_sym_ref] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_RBRACE] = ACTIONS(3400), + [anon_sym_delegate] = ACTIONS(3398), + [anon_sym_public] = ACTIONS(3398), + [anon_sym_private] = ACTIONS(3398), + [anon_sym_readonly] = ACTIONS(3398), + [anon_sym_abstract] = ACTIONS(3398), + [anon_sym_async] = ACTIONS(3398), + [anon_sym_const] = ACTIONS(3398), + [anon_sym_file] = ACTIONS(3398), + [anon_sym_fixed] = ACTIONS(3398), + [anon_sym_internal] = ACTIONS(3398), + [anon_sym_new] = ACTIONS(3398), + [anon_sym_override] = ACTIONS(3398), + [anon_sym_partial] = ACTIONS(3398), + [anon_sym_protected] = ACTIONS(3398), + [anon_sym_required] = ACTIONS(3398), + [anon_sym_sealed] = ACTIONS(3398), + [anon_sym_virtual] = ACTIONS(3398), + [anon_sym_volatile] = ACTIONS(3398), + [anon_sym_where] = ACTIONS(3398), + [anon_sym_notnull] = ACTIONS(3398), + [anon_sym_unmanaged] = ACTIONS(3398), + [anon_sym_checked] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(3398), + [anon_sym_scoped] = ACTIONS(3398), + [anon_sym_base] = ACTIONS(3398), + [anon_sym_var] = ACTIONS(3398), + [anon_sym_STAR] = ACTIONS(3400), + [sym_predefined_type] = ACTIONS(3398), + [anon_sym_break] = ACTIONS(3398), + [anon_sym_unchecked] = ACTIONS(3398), + [anon_sym_continue] = ACTIONS(3398), + [anon_sym_do] = ACTIONS(3398), + [anon_sym_while] = ACTIONS(3398), + [anon_sym_for] = ACTIONS(3398), + [anon_sym_lock] = ACTIONS(3398), + [anon_sym_yield] = ACTIONS(3398), + [anon_sym_switch] = ACTIONS(3398), + [anon_sym_case] = ACTIONS(3398), + [anon_sym_default] = ACTIONS(3398), + [anon_sym_throw] = ACTIONS(3398), + [anon_sym_try] = ACTIONS(3398), + [anon_sym_when] = ACTIONS(3398), + [anon_sym_await] = ACTIONS(3398), + [anon_sym_foreach] = ACTIONS(3398), + [anon_sym_goto] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_else] = ACTIONS(3743), + [anon_sym_DOT_DOT] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(3400), + [anon_sym_CARET] = ACTIONS(3400), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3400), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3398), + [anon_sym_false] = ACTIONS(3398), + [anon_sym_from] = ACTIONS(3398), + [anon_sym_into] = ACTIONS(3398), + [anon_sym_join] = ACTIONS(3398), + [anon_sym_on] = ACTIONS(3398), + [anon_sym_equals] = ACTIONS(3398), + [anon_sym_let] = ACTIONS(3398), + [anon_sym_orderby] = ACTIONS(3398), + [anon_sym_ascending] = ACTIONS(3398), + [anon_sym_descending] = ACTIONS(3398), + [anon_sym_group] = ACTIONS(3398), + [anon_sym_by] = ACTIONS(3398), + [anon_sym_select] = ACTIONS(3398), + [anon_sym_stackalloc] = ACTIONS(3398), + [anon_sym_sizeof] = ACTIONS(3398), + [anon_sym_typeof] = ACTIONS(3398), + [anon_sym___makeref] = ACTIONS(3398), + [anon_sym___reftype] = ACTIONS(3398), + [anon_sym___refvalue] = ACTIONS(3398), + [sym_null_literal] = ACTIONS(3398), + [anon_sym_SQUOTE] = ACTIONS(3400), + [sym_integer_literal] = ACTIONS(3398), + [sym_real_literal] = ACTIONS(3400), + [anon_sym_DQUOTE] = ACTIONS(3400), + [sym_verbatim_string_literal] = ACTIONS(3400), + [sym_grit_metavariable] = ACTIONS(3400), + [aux_sym_preproc_if_token1] = ACTIONS(3400), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3400), + [sym_interpolation_verbatim_start] = ACTIONS(3400), + [sym_interpolation_raw_start] = ACTIONS(3400), + [sym_raw_string_start] = ACTIONS(3400), + }, + [2134] = { + [sym_preproc_region] = STATE(2134), + [sym_preproc_endregion] = STATE(2134), + [sym_preproc_line] = STATE(2134), + [sym_preproc_pragma] = STATE(2134), + [sym_preproc_nullable] = STATE(2134), + [sym_preproc_error] = STATE(2134), + [sym_preproc_warning] = STATE(2134), + [sym_preproc_define] = STATE(2134), + [sym_preproc_undef] = STATE(2134), + [sym__identifier_token] = ACTIONS(3460), + [anon_sym_extern] = ACTIONS(3460), + [anon_sym_alias] = ACTIONS(3460), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_global] = ACTIONS(3460), + [anon_sym_using] = ACTIONS(3460), + [anon_sym_unsafe] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3460), + [anon_sym_ref] = ACTIONS(3460), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_delegate] = ACTIONS(3460), + [anon_sym_public] = ACTIONS(3460), + [anon_sym_private] = ACTIONS(3460), + [anon_sym_readonly] = ACTIONS(3460), + [anon_sym_abstract] = ACTIONS(3460), + [anon_sym_async] = ACTIONS(3460), + [anon_sym_const] = ACTIONS(3460), + [anon_sym_file] = ACTIONS(3460), + [anon_sym_fixed] = ACTIONS(3460), + [anon_sym_internal] = ACTIONS(3460), + [anon_sym_new] = ACTIONS(3460), + [anon_sym_override] = ACTIONS(3460), + [anon_sym_partial] = ACTIONS(3460), + [anon_sym_protected] = ACTIONS(3460), + [anon_sym_required] = ACTIONS(3460), + [anon_sym_sealed] = ACTIONS(3460), + [anon_sym_virtual] = ACTIONS(3460), + [anon_sym_volatile] = ACTIONS(3460), + [anon_sym_where] = ACTIONS(3460), + [anon_sym_notnull] = ACTIONS(3460), + [anon_sym_unmanaged] = ACTIONS(3460), + [anon_sym_checked] = ACTIONS(3460), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_this] = ACTIONS(3460), + [anon_sym_scoped] = ACTIONS(3460), + [anon_sym_base] = ACTIONS(3460), + [anon_sym_var] = ACTIONS(3460), + [anon_sym_STAR] = ACTIONS(3462), + [sym_predefined_type] = ACTIONS(3460), + [anon_sym_break] = ACTIONS(3460), + [anon_sym_unchecked] = ACTIONS(3460), + [anon_sym_continue] = ACTIONS(3460), + [anon_sym_do] = ACTIONS(3460), + [anon_sym_while] = ACTIONS(3460), + [anon_sym_for] = ACTIONS(3460), + [anon_sym_lock] = ACTIONS(3460), + [anon_sym_yield] = ACTIONS(3460), + [anon_sym_switch] = ACTIONS(3460), + [anon_sym_case] = ACTIONS(3460), + [anon_sym_default] = ACTIONS(3460), + [anon_sym_throw] = ACTIONS(3460), + [anon_sym_try] = ACTIONS(3460), + [anon_sym_when] = ACTIONS(3460), + [anon_sym_await] = ACTIONS(3460), + [anon_sym_foreach] = ACTIONS(3460), + [anon_sym_goto] = ACTIONS(3460), + [anon_sym_if] = ACTIONS(3460), + [anon_sym_else] = ACTIONS(3460), + [anon_sym_DOT_DOT] = ACTIONS(3462), + [anon_sym_AMP] = ACTIONS(3462), + [anon_sym_CARET] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3460), + [anon_sym_DASH] = ACTIONS(3460), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_true] = ACTIONS(3460), + [anon_sym_false] = ACTIONS(3460), + [anon_sym_from] = ACTIONS(3460), + [anon_sym_into] = ACTIONS(3460), + [anon_sym_join] = ACTIONS(3460), + [anon_sym_on] = ACTIONS(3460), + [anon_sym_equals] = ACTIONS(3460), + [anon_sym_let] = ACTIONS(3460), + [anon_sym_orderby] = ACTIONS(3460), + [anon_sym_ascending] = ACTIONS(3460), + [anon_sym_descending] = ACTIONS(3460), + [anon_sym_group] = ACTIONS(3460), + [anon_sym_by] = ACTIONS(3460), + [anon_sym_select] = ACTIONS(3460), + [anon_sym_stackalloc] = ACTIONS(3460), + [anon_sym_sizeof] = ACTIONS(3460), + [anon_sym_typeof] = ACTIONS(3460), + [anon_sym___makeref] = ACTIONS(3460), + [anon_sym___reftype] = ACTIONS(3460), + [anon_sym___refvalue] = ACTIONS(3460), + [sym_null_literal] = ACTIONS(3460), + [anon_sym_SQUOTE] = ACTIONS(3462), + [sym_integer_literal] = ACTIONS(3460), + [sym_real_literal] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [sym_verbatim_string_literal] = ACTIONS(3462), + [sym_grit_metavariable] = ACTIONS(3462), + [aux_sym_preproc_if_token1] = ACTIONS(3462), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3462), + [sym_interpolation_verbatim_start] = ACTIONS(3462), + [sym_interpolation_raw_start] = ACTIONS(3462), + [sym_raw_string_start] = ACTIONS(3462), + }, + [2135] = { + [sym_preproc_region] = STATE(2135), + [sym_preproc_endregion] = STATE(2135), + [sym_preproc_line] = STATE(2135), + [sym_preproc_pragma] = STATE(2135), + [sym_preproc_nullable] = STATE(2135), + [sym_preproc_error] = STATE(2135), + [sym_preproc_warning] = STATE(2135), + [sym_preproc_define] = STATE(2135), + [sym_preproc_undef] = STATE(2135), + [sym__identifier_token] = ACTIONS(3464), + [anon_sym_extern] = ACTIONS(3464), + [anon_sym_alias] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_unsafe] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(3466), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_ref] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_RBRACE] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3464), + [anon_sym_public] = ACTIONS(3464), + [anon_sym_private] = ACTIONS(3464), + [anon_sym_readonly] = ACTIONS(3464), + [anon_sym_abstract] = ACTIONS(3464), + [anon_sym_async] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_file] = ACTIONS(3464), + [anon_sym_fixed] = ACTIONS(3464), + [anon_sym_internal] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_override] = ACTIONS(3464), + [anon_sym_partial] = ACTIONS(3464), + [anon_sym_protected] = ACTIONS(3464), + [anon_sym_required] = ACTIONS(3464), + [anon_sym_sealed] = ACTIONS(3464), + [anon_sym_virtual] = ACTIONS(3464), + [anon_sym_volatile] = ACTIONS(3464), + [anon_sym_where] = ACTIONS(3464), + [anon_sym_notnull] = ACTIONS(3464), + [anon_sym_unmanaged] = ACTIONS(3464), + [anon_sym_checked] = ACTIONS(3464), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(3464), + [anon_sym_scoped] = ACTIONS(3464), + [anon_sym_base] = ACTIONS(3464), + [anon_sym_var] = ACTIONS(3464), + [anon_sym_STAR] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_unchecked] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_lock] = ACTIONS(3464), + [anon_sym_yield] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_case] = ACTIONS(3464), + [anon_sym_default] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_when] = ACTIONS(3464), + [anon_sym_await] = ACTIONS(3464), + [anon_sym_foreach] = ACTIONS(3464), + [anon_sym_goto] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_else] = ACTIONS(3464), + [anon_sym_DOT_DOT] = ACTIONS(3466), + [anon_sym_AMP] = ACTIONS(3466), + [anon_sym_CARET] = ACTIONS(3466), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_true] = ACTIONS(3464), + [anon_sym_false] = ACTIONS(3464), + [anon_sym_from] = ACTIONS(3464), + [anon_sym_into] = ACTIONS(3464), + [anon_sym_join] = ACTIONS(3464), + [anon_sym_on] = ACTIONS(3464), + [anon_sym_equals] = ACTIONS(3464), + [anon_sym_let] = ACTIONS(3464), + [anon_sym_orderby] = ACTIONS(3464), + [anon_sym_ascending] = ACTIONS(3464), + [anon_sym_descending] = ACTIONS(3464), + [anon_sym_group] = ACTIONS(3464), + [anon_sym_by] = ACTIONS(3464), + [anon_sym_select] = ACTIONS(3464), + [anon_sym_stackalloc] = ACTIONS(3464), + [anon_sym_sizeof] = ACTIONS(3464), + [anon_sym_typeof] = ACTIONS(3464), + [anon_sym___makeref] = ACTIONS(3464), + [anon_sym___reftype] = ACTIONS(3464), + [anon_sym___refvalue] = ACTIONS(3464), + [sym_null_literal] = ACTIONS(3464), + [anon_sym_SQUOTE] = ACTIONS(3466), + [sym_integer_literal] = ACTIONS(3464), + [sym_real_literal] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [sym_verbatim_string_literal] = ACTIONS(3466), + [sym_grit_metavariable] = ACTIONS(3466), + [aux_sym_preproc_if_token1] = ACTIONS(3466), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3466), + [sym_interpolation_verbatim_start] = ACTIONS(3466), + [sym_interpolation_raw_start] = ACTIONS(3466), + [sym_raw_string_start] = ACTIONS(3466), + }, + [2136] = { + [sym_preproc_region] = STATE(2136), + [sym_preproc_endregion] = STATE(2136), + [sym_preproc_line] = STATE(2136), + [sym_preproc_pragma] = STATE(2136), + [sym_preproc_nullable] = STATE(2136), + [sym_preproc_error] = STATE(2136), + [sym_preproc_warning] = STATE(2136), + [sym_preproc_define] = STATE(2136), + [sym_preproc_undef] = STATE(2136), + [sym__identifier_token] = ACTIONS(3404), + [anon_sym_extern] = ACTIONS(3404), + [anon_sym_alias] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3406), + [anon_sym_global] = ACTIONS(3404), + [anon_sym_using] = ACTIONS(3404), + [anon_sym_unsafe] = ACTIONS(3404), + [anon_sym_static] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_ref] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_RBRACE] = ACTIONS(3406), + [anon_sym_delegate] = ACTIONS(3404), + [anon_sym_public] = ACTIONS(3404), + [anon_sym_private] = ACTIONS(3404), + [anon_sym_readonly] = ACTIONS(3404), + [anon_sym_abstract] = ACTIONS(3404), + [anon_sym_async] = ACTIONS(3404), + [anon_sym_const] = ACTIONS(3404), + [anon_sym_file] = ACTIONS(3404), + [anon_sym_fixed] = ACTIONS(3404), + [anon_sym_internal] = ACTIONS(3404), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_override] = ACTIONS(3404), + [anon_sym_partial] = ACTIONS(3404), + [anon_sym_protected] = ACTIONS(3404), + [anon_sym_required] = ACTIONS(3404), + [anon_sym_sealed] = ACTIONS(3404), + [anon_sym_virtual] = ACTIONS(3404), + [anon_sym_volatile] = ACTIONS(3404), + [anon_sym_where] = ACTIONS(3404), + [anon_sym_notnull] = ACTIONS(3404), + [anon_sym_unmanaged] = ACTIONS(3404), + [anon_sym_checked] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [anon_sym_this] = ACTIONS(3404), + [anon_sym_scoped] = ACTIONS(3404), + [anon_sym_base] = ACTIONS(3404), + [anon_sym_var] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3406), + [sym_predefined_type] = ACTIONS(3404), + [anon_sym_break] = ACTIONS(3404), + [anon_sym_unchecked] = ACTIONS(3404), + [anon_sym_continue] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_lock] = ACTIONS(3404), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_switch] = ACTIONS(3404), + [anon_sym_case] = ACTIONS(3404), + [anon_sym_default] = ACTIONS(3404), + [anon_sym_throw] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_when] = ACTIONS(3404), + [anon_sym_await] = ACTIONS(3404), + [anon_sym_foreach] = ACTIONS(3404), + [anon_sym_goto] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_else] = ACTIONS(3404), + [anon_sym_DOT_DOT] = ACTIONS(3406), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_CARET] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3406), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_from] = ACTIONS(3404), + [anon_sym_into] = ACTIONS(3404), + [anon_sym_join] = ACTIONS(3404), + [anon_sym_on] = ACTIONS(3404), + [anon_sym_equals] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_orderby] = ACTIONS(3404), + [anon_sym_ascending] = ACTIONS(3404), + [anon_sym_descending] = ACTIONS(3404), + [anon_sym_group] = ACTIONS(3404), + [anon_sym_by] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3404), + [anon_sym_stackalloc] = ACTIONS(3404), + [anon_sym_sizeof] = ACTIONS(3404), + [anon_sym_typeof] = ACTIONS(3404), + [anon_sym___makeref] = ACTIONS(3404), + [anon_sym___reftype] = ACTIONS(3404), + [anon_sym___refvalue] = ACTIONS(3404), + [sym_null_literal] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(3406), + [sym_integer_literal] = ACTIONS(3404), + [sym_real_literal] = ACTIONS(3406), + [anon_sym_DQUOTE] = ACTIONS(3406), + [sym_verbatim_string_literal] = ACTIONS(3406), + [sym_grit_metavariable] = ACTIONS(3406), + [aux_sym_preproc_if_token1] = ACTIONS(3406), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3406), + [sym_interpolation_verbatim_start] = ACTIONS(3406), + [sym_interpolation_raw_start] = ACTIONS(3406), + [sym_raw_string_start] = ACTIONS(3406), + }, + [2137] = { + [sym_preproc_region] = STATE(2137), + [sym_preproc_endregion] = STATE(2137), + [sym_preproc_line] = STATE(2137), + [sym_preproc_pragma] = STATE(2137), + [sym_preproc_nullable] = STATE(2137), + [sym_preproc_error] = STATE(2137), + [sym_preproc_warning] = STATE(2137), + [sym_preproc_define] = STATE(2137), + [sym_preproc_undef] = STATE(2137), + [sym__identifier_token] = ACTIONS(3568), + [anon_sym_extern] = ACTIONS(3568), + [anon_sym_alias] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym_global] = ACTIONS(3568), + [anon_sym_using] = ACTIONS(3568), + [anon_sym_unsafe] = ACTIONS(3568), + [anon_sym_static] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_ref] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_RBRACE] = ACTIONS(3570), + [anon_sym_delegate] = ACTIONS(3568), + [anon_sym_public] = ACTIONS(3568), + [anon_sym_private] = ACTIONS(3568), + [anon_sym_readonly] = ACTIONS(3568), + [anon_sym_abstract] = ACTIONS(3568), + [anon_sym_async] = ACTIONS(3568), + [anon_sym_const] = ACTIONS(3568), + [anon_sym_file] = ACTIONS(3568), + [anon_sym_fixed] = ACTIONS(3568), + [anon_sym_internal] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_override] = ACTIONS(3568), + [anon_sym_partial] = ACTIONS(3568), + [anon_sym_protected] = ACTIONS(3568), + [anon_sym_required] = ACTIONS(3568), + [anon_sym_sealed] = ACTIONS(3568), + [anon_sym_virtual] = ACTIONS(3568), + [anon_sym_volatile] = ACTIONS(3568), + [anon_sym_where] = ACTIONS(3568), + [anon_sym_notnull] = ACTIONS(3568), + [anon_sym_unmanaged] = ACTIONS(3568), + [anon_sym_checked] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3570), + [anon_sym_this] = ACTIONS(3568), + [anon_sym_scoped] = ACTIONS(3568), + [anon_sym_base] = ACTIONS(3568), + [anon_sym_var] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [sym_predefined_type] = ACTIONS(3568), + [anon_sym_break] = ACTIONS(3568), + [anon_sym_unchecked] = ACTIONS(3568), + [anon_sym_continue] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_lock] = ACTIONS(3568), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_switch] = ACTIONS(3568), + [anon_sym_case] = ACTIONS(3568), + [anon_sym_default] = ACTIONS(3568), + [anon_sym_throw] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_when] = ACTIONS(3568), + [anon_sym_await] = ACTIONS(3568), + [anon_sym_foreach] = ACTIONS(3568), + [anon_sym_goto] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_else] = ACTIONS(3568), + [anon_sym_DOT_DOT] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_CARET] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_BANG] = ACTIONS(3570), + [anon_sym_PLUS_PLUS] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3570), + [anon_sym_true] = ACTIONS(3568), + [anon_sym_false] = ACTIONS(3568), + [anon_sym_from] = ACTIONS(3568), + [anon_sym_into] = ACTIONS(3568), + [anon_sym_join] = ACTIONS(3568), + [anon_sym_on] = ACTIONS(3568), + [anon_sym_equals] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_orderby] = ACTIONS(3568), + [anon_sym_ascending] = ACTIONS(3568), + [anon_sym_descending] = ACTIONS(3568), + [anon_sym_group] = ACTIONS(3568), + [anon_sym_by] = ACTIONS(3568), + [anon_sym_select] = ACTIONS(3568), + [anon_sym_stackalloc] = ACTIONS(3568), + [anon_sym_sizeof] = ACTIONS(3568), + [anon_sym_typeof] = ACTIONS(3568), + [anon_sym___makeref] = ACTIONS(3568), + [anon_sym___reftype] = ACTIONS(3568), + [anon_sym___refvalue] = ACTIONS(3568), + [sym_null_literal] = ACTIONS(3568), + [anon_sym_SQUOTE] = ACTIONS(3570), + [sym_integer_literal] = ACTIONS(3568), + [sym_real_literal] = ACTIONS(3570), + [anon_sym_DQUOTE] = ACTIONS(3570), + [sym_verbatim_string_literal] = ACTIONS(3570), + [sym_grit_metavariable] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3570), + [sym_interpolation_verbatim_start] = ACTIONS(3570), + [sym_interpolation_raw_start] = ACTIONS(3570), + [sym_raw_string_start] = ACTIONS(3570), }, [2138] = { [sym_preproc_region] = STATE(2138), @@ -403699,104 +403721,104 @@ 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(3516), - [anon_sym_extern] = ACTIONS(3516), - [anon_sym_alias] = ACTIONS(3516), - [anon_sym_SEMI] = ACTIONS(3518), - [anon_sym_global] = ACTIONS(3516), - [anon_sym_using] = ACTIONS(3516), - [anon_sym_unsafe] = ACTIONS(3516), - [anon_sym_static] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_ref] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_delegate] = ACTIONS(3516), - [anon_sym_public] = ACTIONS(3516), - [anon_sym_private] = ACTIONS(3516), - [anon_sym_readonly] = ACTIONS(3516), - [anon_sym_abstract] = ACTIONS(3516), - [anon_sym_async] = ACTIONS(3516), - [anon_sym_const] = ACTIONS(3516), - [anon_sym_file] = ACTIONS(3516), - [anon_sym_fixed] = ACTIONS(3516), - [anon_sym_internal] = ACTIONS(3516), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_override] = ACTIONS(3516), - [anon_sym_partial] = ACTIONS(3516), - [anon_sym_protected] = ACTIONS(3516), - [anon_sym_required] = ACTIONS(3516), - [anon_sym_sealed] = ACTIONS(3516), - [anon_sym_virtual] = ACTIONS(3516), - [anon_sym_volatile] = ACTIONS(3516), - [anon_sym_where] = ACTIONS(3516), - [anon_sym_notnull] = ACTIONS(3516), - [anon_sym_unmanaged] = ACTIONS(3516), - [anon_sym_checked] = ACTIONS(3516), - [anon_sym_BANG] = ACTIONS(3518), - [anon_sym_TILDE] = ACTIONS(3518), - [anon_sym_PLUS_PLUS] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3516), - [anon_sym_false] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_STAR] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3518), - [anon_sym_this] = ACTIONS(3516), - [anon_sym_scoped] = ACTIONS(3516), - [anon_sym_base] = ACTIONS(3516), - [anon_sym_var] = ACTIONS(3516), - [sym_predefined_type] = ACTIONS(3516), - [anon_sym_break] = ACTIONS(3516), - [anon_sym_unchecked] = ACTIONS(3516), - [anon_sym_continue] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_lock] = ACTIONS(3516), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_switch] = ACTIONS(3516), - [anon_sym_case] = ACTIONS(3516), - [anon_sym_default] = ACTIONS(3516), - [anon_sym_throw] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_when] = ACTIONS(3516), - [anon_sym_await] = ACTIONS(3516), - [anon_sym_foreach] = ACTIONS(3516), - [anon_sym_goto] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_else] = ACTIONS(3516), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_from] = ACTIONS(3516), - [anon_sym_into] = ACTIONS(3516), - [anon_sym_join] = ACTIONS(3516), - [anon_sym_on] = ACTIONS(3516), - [anon_sym_equals] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_orderby] = ACTIONS(3516), - [anon_sym_ascending] = ACTIONS(3516), - [anon_sym_descending] = ACTIONS(3516), - [anon_sym_group] = ACTIONS(3516), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_select] = ACTIONS(3516), - [anon_sym_stackalloc] = ACTIONS(3516), - [anon_sym_sizeof] = ACTIONS(3516), - [anon_sym_typeof] = ACTIONS(3516), - [anon_sym___makeref] = ACTIONS(3516), - [anon_sym___reftype] = ACTIONS(3516), - [anon_sym___refvalue] = ACTIONS(3516), - [sym_null_literal] = ACTIONS(3516), - [anon_sym_SQUOTE] = ACTIONS(3518), - [sym_integer_literal] = ACTIONS(3516), - [sym_real_literal] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [sym_verbatim_string_literal] = ACTIONS(3518), - [sym_grit_metavariable] = ACTIONS(3518), - [aux_sym_preproc_if_token1] = ACTIONS(3518), + [sym__identifier_token] = ACTIONS(3520), + [anon_sym_extern] = ACTIONS(3520), + [anon_sym_alias] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym_global] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3520), + [anon_sym_unsafe] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_LPAREN] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3520), + [anon_sym_ref] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3522), + [anon_sym_RBRACE] = ACTIONS(3522), + [anon_sym_delegate] = ACTIONS(3520), + [anon_sym_public] = ACTIONS(3520), + [anon_sym_private] = ACTIONS(3520), + [anon_sym_readonly] = ACTIONS(3520), + [anon_sym_abstract] = ACTIONS(3520), + [anon_sym_async] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_file] = ACTIONS(3520), + [anon_sym_fixed] = ACTIONS(3520), + [anon_sym_internal] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_override] = ACTIONS(3520), + [anon_sym_partial] = ACTIONS(3520), + [anon_sym_protected] = ACTIONS(3520), + [anon_sym_required] = ACTIONS(3520), + [anon_sym_sealed] = ACTIONS(3520), + [anon_sym_virtual] = ACTIONS(3520), + [anon_sym_volatile] = ACTIONS(3520), + [anon_sym_where] = ACTIONS(3520), + [anon_sym_notnull] = ACTIONS(3520), + [anon_sym_unmanaged] = ACTIONS(3520), + [anon_sym_checked] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3522), + [anon_sym_this] = ACTIONS(3520), + [anon_sym_scoped] = ACTIONS(3520), + [anon_sym_base] = ACTIONS(3520), + [anon_sym_var] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3522), + [sym_predefined_type] = ACTIONS(3520), + [anon_sym_break] = ACTIONS(3520), + [anon_sym_unchecked] = ACTIONS(3520), + [anon_sym_continue] = ACTIONS(3520), + [anon_sym_do] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(3520), + [anon_sym_for] = ACTIONS(3520), + [anon_sym_lock] = ACTIONS(3520), + [anon_sym_yield] = ACTIONS(3520), + [anon_sym_switch] = ACTIONS(3520), + [anon_sym_case] = ACTIONS(3520), + [anon_sym_default] = ACTIONS(3520), + [anon_sym_throw] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3520), + [anon_sym_when] = ACTIONS(3520), + [anon_sym_await] = ACTIONS(3520), + [anon_sym_foreach] = ACTIONS(3520), + [anon_sym_goto] = ACTIONS(3520), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_else] = ACTIONS(3520), + [anon_sym_DOT_DOT] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3522), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3522), + [anon_sym_true] = ACTIONS(3520), + [anon_sym_false] = ACTIONS(3520), + [anon_sym_from] = ACTIONS(3520), + [anon_sym_into] = ACTIONS(3520), + [anon_sym_join] = ACTIONS(3520), + [anon_sym_on] = ACTIONS(3520), + [anon_sym_equals] = ACTIONS(3520), + [anon_sym_let] = ACTIONS(3520), + [anon_sym_orderby] = ACTIONS(3520), + [anon_sym_ascending] = ACTIONS(3520), + [anon_sym_descending] = ACTIONS(3520), + [anon_sym_group] = ACTIONS(3520), + [anon_sym_by] = ACTIONS(3520), + [anon_sym_select] = ACTIONS(3520), + [anon_sym_stackalloc] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3520), + [anon_sym_typeof] = ACTIONS(3520), + [anon_sym___makeref] = ACTIONS(3520), + [anon_sym___reftype] = ACTIONS(3520), + [anon_sym___refvalue] = ACTIONS(3520), + [sym_null_literal] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3522), + [sym_integer_literal] = ACTIONS(3520), + [sym_real_literal] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(3522), + [sym_verbatim_string_literal] = ACTIONS(3522), + [sym_grit_metavariable] = ACTIONS(3522), + [aux_sym_preproc_if_token1] = ACTIONS(3522), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403807,10 +403829,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(3518), - [sym_interpolation_verbatim_start] = ACTIONS(3518), - [sym_interpolation_raw_start] = ACTIONS(3518), - [sym_raw_string_start] = ACTIONS(3518), + [sym_interpolation_regular_start] = ACTIONS(3522), + [sym_interpolation_verbatim_start] = ACTIONS(3522), + [sym_interpolation_raw_start] = ACTIONS(3522), + [sym_raw_string_start] = ACTIONS(3522), }, [2139] = { [sym_preproc_region] = STATE(2139), @@ -403822,118 +403844,118 @@ 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(3492), - [anon_sym_extern] = ACTIONS(3492), - [anon_sym_alias] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3492), - [anon_sym_using] = ACTIONS(3492), - [anon_sym_unsafe] = ACTIONS(3492), - [anon_sym_static] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3494), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_ref] = ACTIONS(3492), - [anon_sym_LBRACE] = ACTIONS(3494), - [anon_sym_RBRACE] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3492), - [anon_sym_public] = ACTIONS(3492), - [anon_sym_private] = ACTIONS(3492), - [anon_sym_readonly] = ACTIONS(3492), - [anon_sym_abstract] = ACTIONS(3492), - [anon_sym_async] = ACTIONS(3492), - [anon_sym_const] = ACTIONS(3492), - [anon_sym_file] = ACTIONS(3492), - [anon_sym_fixed] = ACTIONS(3492), - [anon_sym_internal] = ACTIONS(3492), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_override] = ACTIONS(3492), - [anon_sym_partial] = ACTIONS(3492), - [anon_sym_protected] = ACTIONS(3492), - [anon_sym_required] = ACTIONS(3492), - [anon_sym_sealed] = ACTIONS(3492), - [anon_sym_virtual] = ACTIONS(3492), - [anon_sym_volatile] = ACTIONS(3492), - [anon_sym_where] = ACTIONS(3492), - [anon_sym_notnull] = ACTIONS(3492), - [anon_sym_unmanaged] = ACTIONS(3492), - [anon_sym_checked] = ACTIONS(3492), - [anon_sym_BANG] = ACTIONS(3494), - [anon_sym_TILDE] = ACTIONS(3494), - [anon_sym_PLUS_PLUS] = ACTIONS(3494), - [anon_sym_DASH_DASH] = ACTIONS(3494), - [anon_sym_true] = ACTIONS(3492), - [anon_sym_false] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_STAR] = ACTIONS(3494), - [anon_sym_CARET] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3494), - [anon_sym_this] = ACTIONS(3492), - [anon_sym_scoped] = ACTIONS(3492), - [anon_sym_base] = ACTIONS(3492), - [anon_sym_var] = ACTIONS(3492), - [sym_predefined_type] = ACTIONS(3492), - [anon_sym_break] = ACTIONS(3492), - [anon_sym_unchecked] = ACTIONS(3492), - [anon_sym_continue] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_lock] = ACTIONS(3492), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_switch] = ACTIONS(3492), - [anon_sym_case] = ACTIONS(3492), - [anon_sym_default] = ACTIONS(3492), - [anon_sym_throw] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_when] = ACTIONS(3492), - [anon_sym_await] = ACTIONS(3492), - [anon_sym_foreach] = ACTIONS(3492), - [anon_sym_goto] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_else] = ACTIONS(3492), - [anon_sym_DOT_DOT] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3492), - [anon_sym_into] = ACTIONS(3492), - [anon_sym_join] = ACTIONS(3492), - [anon_sym_on] = ACTIONS(3492), - [anon_sym_equals] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_orderby] = ACTIONS(3492), - [anon_sym_ascending] = ACTIONS(3492), - [anon_sym_descending] = ACTIONS(3492), - [anon_sym_group] = ACTIONS(3492), - [anon_sym_by] = ACTIONS(3492), - [anon_sym_select] = ACTIONS(3492), - [anon_sym_stackalloc] = ACTIONS(3492), - [anon_sym_sizeof] = ACTIONS(3492), - [anon_sym_typeof] = ACTIONS(3492), - [anon_sym___makeref] = ACTIONS(3492), - [anon_sym___reftype] = ACTIONS(3492), - [anon_sym___refvalue] = ACTIONS(3492), - [sym_null_literal] = ACTIONS(3492), - [anon_sym_SQUOTE] = ACTIONS(3494), - [sym_integer_literal] = ACTIONS(3492), - [sym_real_literal] = ACTIONS(3494), - [anon_sym_DQUOTE] = ACTIONS(3494), - [sym_verbatim_string_literal] = ACTIONS(3494), - [sym_grit_metavariable] = ACTIONS(3494), - [aux_sym_preproc_if_token1] = ACTIONS(3494), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3494), - [sym_interpolation_verbatim_start] = ACTIONS(3494), - [sym_interpolation_raw_start] = ACTIONS(3494), - [sym_raw_string_start] = ACTIONS(3494), + [sym__identifier_token] = ACTIONS(3408), + [anon_sym_extern] = ACTIONS(3408), + [anon_sym_alias] = ACTIONS(3408), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_global] = ACTIONS(3408), + [anon_sym_using] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_ref] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_RBRACE] = ACTIONS(3410), + [anon_sym_delegate] = ACTIONS(3408), + [anon_sym_public] = ACTIONS(3408), + [anon_sym_private] = ACTIONS(3408), + [anon_sym_readonly] = ACTIONS(3408), + [anon_sym_abstract] = ACTIONS(3408), + [anon_sym_async] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_file] = ACTIONS(3408), + [anon_sym_fixed] = ACTIONS(3408), + [anon_sym_internal] = ACTIONS(3408), + [anon_sym_new] = ACTIONS(3408), + [anon_sym_override] = ACTIONS(3408), + [anon_sym_partial] = ACTIONS(3408), + [anon_sym_protected] = ACTIONS(3408), + [anon_sym_required] = ACTIONS(3408), + [anon_sym_sealed] = ACTIONS(3408), + [anon_sym_virtual] = ACTIONS(3408), + [anon_sym_volatile] = ACTIONS(3408), + [anon_sym_where] = ACTIONS(3408), + [anon_sym_notnull] = ACTIONS(3408), + [anon_sym_unmanaged] = ACTIONS(3408), + [anon_sym_checked] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(3408), + [anon_sym_scoped] = ACTIONS(3408), + [anon_sym_base] = ACTIONS(3408), + [anon_sym_var] = ACTIONS(3408), + [anon_sym_STAR] = ACTIONS(3410), + [sym_predefined_type] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_unchecked] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_do] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_yield] = ACTIONS(3408), + [anon_sym_switch] = ACTIONS(3408), + [anon_sym_case] = ACTIONS(3408), + [anon_sym_default] = ACTIONS(3408), + [anon_sym_throw] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [anon_sym_when] = ACTIONS(3408), + [anon_sym_await] = ACTIONS(3408), + [anon_sym_foreach] = ACTIONS(3408), + [anon_sym_goto] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_else] = ACTIONS(3408), + [anon_sym_DOT_DOT] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym_CARET] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3408), + [anon_sym_false] = ACTIONS(3408), + [anon_sym_from] = ACTIONS(3408), + [anon_sym_into] = ACTIONS(3408), + [anon_sym_join] = ACTIONS(3408), + [anon_sym_on] = ACTIONS(3408), + [anon_sym_equals] = ACTIONS(3408), + [anon_sym_let] = ACTIONS(3408), + [anon_sym_orderby] = ACTIONS(3408), + [anon_sym_ascending] = ACTIONS(3408), + [anon_sym_descending] = ACTIONS(3408), + [anon_sym_group] = ACTIONS(3408), + [anon_sym_by] = ACTIONS(3408), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_stackalloc] = ACTIONS(3408), + [anon_sym_sizeof] = ACTIONS(3408), + [anon_sym_typeof] = ACTIONS(3408), + [anon_sym___makeref] = ACTIONS(3408), + [anon_sym___reftype] = ACTIONS(3408), + [anon_sym___refvalue] = ACTIONS(3408), + [sym_null_literal] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3410), + [sym_integer_literal] = ACTIONS(3408), + [sym_real_literal] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3410), + [sym_verbatim_string_literal] = ACTIONS(3410), + [sym_grit_metavariable] = 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), }, [2140] = { [sym_preproc_region] = STATE(2140), @@ -403945,104 +403967,104 @@ 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(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym_alias] = ACTIONS(3560), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_global] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_unsafe] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_ref] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_delegate] = ACTIONS(3560), - [anon_sym_public] = ACTIONS(3560), - [anon_sym_private] = ACTIONS(3560), - [anon_sym_readonly] = ACTIONS(3560), - [anon_sym_abstract] = ACTIONS(3560), - [anon_sym_async] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_file] = ACTIONS(3560), - [anon_sym_fixed] = ACTIONS(3560), - [anon_sym_internal] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_override] = ACTIONS(3560), - [anon_sym_partial] = ACTIONS(3560), - [anon_sym_protected] = ACTIONS(3560), - [anon_sym_required] = ACTIONS(3560), - [anon_sym_sealed] = ACTIONS(3560), - [anon_sym_virtual] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym_where] = ACTIONS(3560), - [anon_sym_notnull] = ACTIONS(3560), - [anon_sym_unmanaged] = ACTIONS(3560), - [anon_sym_checked] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_true] = ACTIONS(3560), - [anon_sym_false] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_CARET] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3562), - [anon_sym_this] = ACTIONS(3560), - [anon_sym_scoped] = ACTIONS(3560), - [anon_sym_base] = ACTIONS(3560), - [anon_sym_var] = ACTIONS(3560), - [sym_predefined_type] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_unchecked] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_lock] = ACTIONS(3560), - [anon_sym_yield] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_case] = ACTIONS(3560), - [anon_sym_default] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_when] = ACTIONS(3560), - [anon_sym_await] = ACTIONS(3560), - [anon_sym_foreach] = ACTIONS(3560), - [anon_sym_goto] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_else] = ACTIONS(3560), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_from] = ACTIONS(3560), - [anon_sym_into] = ACTIONS(3560), - [anon_sym_join] = ACTIONS(3560), - [anon_sym_on] = ACTIONS(3560), - [anon_sym_equals] = ACTIONS(3560), - [anon_sym_let] = ACTIONS(3560), - [anon_sym_orderby] = ACTIONS(3560), - [anon_sym_ascending] = ACTIONS(3560), - [anon_sym_descending] = ACTIONS(3560), - [anon_sym_group] = ACTIONS(3560), - [anon_sym_by] = ACTIONS(3560), - [anon_sym_select] = ACTIONS(3560), - [anon_sym_stackalloc] = ACTIONS(3560), - [anon_sym_sizeof] = ACTIONS(3560), - [anon_sym_typeof] = ACTIONS(3560), - [anon_sym___makeref] = ACTIONS(3560), - [anon_sym___reftype] = ACTIONS(3560), - [anon_sym___refvalue] = ACTIONS(3560), - [sym_null_literal] = ACTIONS(3560), - [anon_sym_SQUOTE] = ACTIONS(3562), - [sym_integer_literal] = ACTIONS(3560), - [sym_real_literal] = ACTIONS(3562), - [anon_sym_DQUOTE] = ACTIONS(3562), - [sym_verbatim_string_literal] = ACTIONS(3562), - [sym_grit_metavariable] = ACTIONS(3562), - [aux_sym_preproc_if_token1] = ACTIONS(3562), + [sym__identifier_token] = ACTIONS(3480), + [anon_sym_extern] = ACTIONS(3480), + [anon_sym_alias] = ACTIONS(3480), + [anon_sym_SEMI] = ACTIONS(3482), + [anon_sym_global] = ACTIONS(3480), + [anon_sym_using] = ACTIONS(3480), + [anon_sym_unsafe] = ACTIONS(3480), + [anon_sym_static] = ACTIONS(3480), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_LPAREN] = ACTIONS(3482), + [anon_sym_return] = ACTIONS(3480), + [anon_sym_ref] = ACTIONS(3480), + [anon_sym_LBRACE] = ACTIONS(3482), + [anon_sym_RBRACE] = ACTIONS(3482), + [anon_sym_delegate] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3480), + [anon_sym_readonly] = ACTIONS(3480), + [anon_sym_abstract] = ACTIONS(3480), + [anon_sym_async] = ACTIONS(3480), + [anon_sym_const] = ACTIONS(3480), + [anon_sym_file] = ACTIONS(3480), + [anon_sym_fixed] = ACTIONS(3480), + [anon_sym_internal] = ACTIONS(3480), + [anon_sym_new] = ACTIONS(3480), + [anon_sym_override] = ACTIONS(3480), + [anon_sym_partial] = ACTIONS(3480), + [anon_sym_protected] = ACTIONS(3480), + [anon_sym_required] = ACTIONS(3480), + [anon_sym_sealed] = ACTIONS(3480), + [anon_sym_virtual] = ACTIONS(3480), + [anon_sym_volatile] = ACTIONS(3480), + [anon_sym_where] = ACTIONS(3480), + [anon_sym_notnull] = ACTIONS(3480), + [anon_sym_unmanaged] = ACTIONS(3480), + [anon_sym_checked] = ACTIONS(3480), + [anon_sym_TILDE] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(3480), + [anon_sym_scoped] = ACTIONS(3480), + [anon_sym_base] = ACTIONS(3480), + [anon_sym_var] = ACTIONS(3480), + [anon_sym_STAR] = ACTIONS(3482), + [sym_predefined_type] = ACTIONS(3480), + [anon_sym_break] = ACTIONS(3480), + [anon_sym_unchecked] = ACTIONS(3480), + [anon_sym_continue] = ACTIONS(3480), + [anon_sym_do] = ACTIONS(3480), + [anon_sym_while] = ACTIONS(3480), + [anon_sym_for] = ACTIONS(3480), + [anon_sym_lock] = ACTIONS(3480), + [anon_sym_yield] = ACTIONS(3480), + [anon_sym_switch] = ACTIONS(3480), + [anon_sym_case] = ACTIONS(3480), + [anon_sym_default] = ACTIONS(3480), + [anon_sym_throw] = ACTIONS(3480), + [anon_sym_try] = ACTIONS(3480), + [anon_sym_when] = ACTIONS(3480), + [anon_sym_await] = ACTIONS(3480), + [anon_sym_foreach] = ACTIONS(3480), + [anon_sym_goto] = ACTIONS(3480), + [anon_sym_if] = ACTIONS(3480), + [anon_sym_else] = ACTIONS(3480), + [anon_sym_DOT_DOT] = ACTIONS(3482), + [anon_sym_AMP] = ACTIONS(3482), + [anon_sym_CARET] = ACTIONS(3482), + [anon_sym_PLUS] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_BANG] = ACTIONS(3482), + [anon_sym_PLUS_PLUS] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(3482), + [anon_sym_true] = ACTIONS(3480), + [anon_sym_false] = ACTIONS(3480), + [anon_sym_from] = ACTIONS(3480), + [anon_sym_into] = ACTIONS(3480), + [anon_sym_join] = ACTIONS(3480), + [anon_sym_on] = ACTIONS(3480), + [anon_sym_equals] = ACTIONS(3480), + [anon_sym_let] = ACTIONS(3480), + [anon_sym_orderby] = ACTIONS(3480), + [anon_sym_ascending] = ACTIONS(3480), + [anon_sym_descending] = ACTIONS(3480), + [anon_sym_group] = ACTIONS(3480), + [anon_sym_by] = ACTIONS(3480), + [anon_sym_select] = ACTIONS(3480), + [anon_sym_stackalloc] = ACTIONS(3480), + [anon_sym_sizeof] = ACTIONS(3480), + [anon_sym_typeof] = ACTIONS(3480), + [anon_sym___makeref] = ACTIONS(3480), + [anon_sym___reftype] = ACTIONS(3480), + [anon_sym___refvalue] = ACTIONS(3480), + [sym_null_literal] = ACTIONS(3480), + [anon_sym_SQUOTE] = ACTIONS(3482), + [sym_integer_literal] = ACTIONS(3480), + [sym_real_literal] = ACTIONS(3482), + [anon_sym_DQUOTE] = ACTIONS(3482), + [sym_verbatim_string_literal] = ACTIONS(3482), + [sym_grit_metavariable] = ACTIONS(3482), + [aux_sym_preproc_if_token1] = ACTIONS(3482), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404053,10 +404075,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(3562), - [sym_interpolation_verbatim_start] = ACTIONS(3562), - [sym_interpolation_raw_start] = ACTIONS(3562), - [sym_raw_string_start] = ACTIONS(3562), + [sym_interpolation_regular_start] = ACTIONS(3482), + [sym_interpolation_verbatim_start] = ACTIONS(3482), + [sym_interpolation_raw_start] = ACTIONS(3482), + [sym_raw_string_start] = ACTIONS(3482), }, [2141] = { [sym_preproc_region] = STATE(2141), @@ -404068,104 +404090,104 @@ 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(3488), - [anon_sym_extern] = ACTIONS(3488), - [anon_sym_alias] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3490), - [anon_sym_global] = ACTIONS(3488), - [anon_sym_using] = ACTIONS(3488), - [anon_sym_unsafe] = ACTIONS(3488), - [anon_sym_static] = ACTIONS(3488), - [anon_sym_LBRACK] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3490), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_ref] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(3490), - [anon_sym_RBRACE] = ACTIONS(3490), - [anon_sym_delegate] = ACTIONS(3488), - [anon_sym_public] = ACTIONS(3488), - [anon_sym_private] = ACTIONS(3488), - [anon_sym_readonly] = ACTIONS(3488), - [anon_sym_abstract] = ACTIONS(3488), - [anon_sym_async] = ACTIONS(3488), - [anon_sym_const] = ACTIONS(3488), - [anon_sym_file] = ACTIONS(3488), - [anon_sym_fixed] = ACTIONS(3488), - [anon_sym_internal] = ACTIONS(3488), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_override] = ACTIONS(3488), - [anon_sym_partial] = ACTIONS(3488), - [anon_sym_protected] = ACTIONS(3488), - [anon_sym_required] = ACTIONS(3488), - [anon_sym_sealed] = ACTIONS(3488), - [anon_sym_virtual] = ACTIONS(3488), - [anon_sym_volatile] = ACTIONS(3488), - [anon_sym_where] = ACTIONS(3488), - [anon_sym_notnull] = ACTIONS(3488), - [anon_sym_unmanaged] = ACTIONS(3488), - [anon_sym_checked] = ACTIONS(3488), - [anon_sym_BANG] = ACTIONS(3490), - [anon_sym_TILDE] = ACTIONS(3490), - [anon_sym_PLUS_PLUS] = ACTIONS(3490), - [anon_sym_DASH_DASH] = ACTIONS(3490), - [anon_sym_true] = ACTIONS(3488), - [anon_sym_false] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_STAR] = ACTIONS(3490), - [anon_sym_CARET] = ACTIONS(3490), - [anon_sym_AMP] = ACTIONS(3490), - [anon_sym_this] = ACTIONS(3488), - [anon_sym_scoped] = ACTIONS(3488), - [anon_sym_base] = ACTIONS(3488), - [anon_sym_var] = ACTIONS(3488), - [sym_predefined_type] = ACTIONS(3488), - [anon_sym_break] = ACTIONS(3488), - [anon_sym_unchecked] = ACTIONS(3488), - [anon_sym_continue] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_lock] = ACTIONS(3488), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_switch] = ACTIONS(3488), - [anon_sym_case] = ACTIONS(3488), - [anon_sym_default] = ACTIONS(3488), - [anon_sym_throw] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_when] = ACTIONS(3488), - [anon_sym_await] = ACTIONS(3488), - [anon_sym_foreach] = ACTIONS(3488), - [anon_sym_goto] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_else] = ACTIONS(3488), - [anon_sym_DOT_DOT] = ACTIONS(3490), - [anon_sym_from] = ACTIONS(3488), - [anon_sym_into] = ACTIONS(3488), - [anon_sym_join] = ACTIONS(3488), - [anon_sym_on] = ACTIONS(3488), - [anon_sym_equals] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_orderby] = ACTIONS(3488), - [anon_sym_ascending] = ACTIONS(3488), - [anon_sym_descending] = ACTIONS(3488), - [anon_sym_group] = ACTIONS(3488), - [anon_sym_by] = ACTIONS(3488), - [anon_sym_select] = ACTIONS(3488), - [anon_sym_stackalloc] = ACTIONS(3488), - [anon_sym_sizeof] = ACTIONS(3488), - [anon_sym_typeof] = ACTIONS(3488), - [anon_sym___makeref] = ACTIONS(3488), - [anon_sym___reftype] = ACTIONS(3488), - [anon_sym___refvalue] = ACTIONS(3488), - [sym_null_literal] = ACTIONS(3488), - [anon_sym_SQUOTE] = ACTIONS(3490), - [sym_integer_literal] = ACTIONS(3488), - [sym_real_literal] = ACTIONS(3490), - [anon_sym_DQUOTE] = ACTIONS(3490), - [sym_verbatim_string_literal] = ACTIONS(3490), - [sym_grit_metavariable] = ACTIONS(3490), - [aux_sym_preproc_if_token1] = ACTIONS(3490), + [sym__identifier_token] = ACTIONS(3472), + [anon_sym_extern] = ACTIONS(3472), + [anon_sym_alias] = ACTIONS(3472), + [anon_sym_SEMI] = ACTIONS(3474), + [anon_sym_global] = ACTIONS(3472), + [anon_sym_using] = ACTIONS(3472), + [anon_sym_unsafe] = ACTIONS(3472), + [anon_sym_static] = ACTIONS(3472), + [anon_sym_LBRACK] = ACTIONS(3474), + [anon_sym_LPAREN] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3472), + [anon_sym_ref] = ACTIONS(3472), + [anon_sym_LBRACE] = ACTIONS(3474), + [anon_sym_RBRACE] = ACTIONS(3474), + [anon_sym_delegate] = ACTIONS(3472), + [anon_sym_public] = ACTIONS(3472), + [anon_sym_private] = ACTIONS(3472), + [anon_sym_readonly] = ACTIONS(3472), + [anon_sym_abstract] = ACTIONS(3472), + [anon_sym_async] = ACTIONS(3472), + [anon_sym_const] = ACTIONS(3472), + [anon_sym_file] = ACTIONS(3472), + [anon_sym_fixed] = ACTIONS(3472), + [anon_sym_internal] = ACTIONS(3472), + [anon_sym_new] = ACTIONS(3472), + [anon_sym_override] = ACTIONS(3472), + [anon_sym_partial] = ACTIONS(3472), + [anon_sym_protected] = ACTIONS(3472), + [anon_sym_required] = ACTIONS(3472), + [anon_sym_sealed] = ACTIONS(3472), + [anon_sym_virtual] = ACTIONS(3472), + [anon_sym_volatile] = ACTIONS(3472), + [anon_sym_where] = ACTIONS(3472), + [anon_sym_notnull] = ACTIONS(3472), + [anon_sym_unmanaged] = ACTIONS(3472), + [anon_sym_checked] = ACTIONS(3472), + [anon_sym_TILDE] = ACTIONS(3474), + [anon_sym_this] = ACTIONS(3472), + [anon_sym_scoped] = ACTIONS(3472), + [anon_sym_base] = ACTIONS(3472), + [anon_sym_var] = ACTIONS(3472), + [anon_sym_STAR] = ACTIONS(3474), + [sym_predefined_type] = ACTIONS(3472), + [anon_sym_break] = ACTIONS(3472), + [anon_sym_unchecked] = ACTIONS(3472), + [anon_sym_continue] = ACTIONS(3472), + [anon_sym_do] = ACTIONS(3472), + [anon_sym_while] = ACTIONS(3472), + [anon_sym_for] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3472), + [anon_sym_yield] = ACTIONS(3472), + [anon_sym_switch] = ACTIONS(3472), + [anon_sym_case] = ACTIONS(3472), + [anon_sym_default] = ACTIONS(3472), + [anon_sym_throw] = ACTIONS(3472), + [anon_sym_try] = ACTIONS(3472), + [anon_sym_when] = ACTIONS(3472), + [anon_sym_await] = ACTIONS(3472), + [anon_sym_foreach] = ACTIONS(3472), + [anon_sym_goto] = ACTIONS(3472), + [anon_sym_if] = ACTIONS(3472), + [anon_sym_else] = ACTIONS(3472), + [anon_sym_DOT_DOT] = ACTIONS(3474), + [anon_sym_AMP] = ACTIONS(3474), + [anon_sym_CARET] = ACTIONS(3474), + [anon_sym_PLUS] = ACTIONS(3472), + [anon_sym_DASH] = ACTIONS(3472), + [anon_sym_BANG] = ACTIONS(3474), + [anon_sym_PLUS_PLUS] = ACTIONS(3474), + [anon_sym_DASH_DASH] = ACTIONS(3474), + [anon_sym_true] = ACTIONS(3472), + [anon_sym_false] = ACTIONS(3472), + [anon_sym_from] = ACTIONS(3472), + [anon_sym_into] = ACTIONS(3472), + [anon_sym_join] = ACTIONS(3472), + [anon_sym_on] = ACTIONS(3472), + [anon_sym_equals] = ACTIONS(3472), + [anon_sym_let] = ACTIONS(3472), + [anon_sym_orderby] = ACTIONS(3472), + [anon_sym_ascending] = ACTIONS(3472), + [anon_sym_descending] = ACTIONS(3472), + [anon_sym_group] = ACTIONS(3472), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_stackalloc] = ACTIONS(3472), + [anon_sym_sizeof] = ACTIONS(3472), + [anon_sym_typeof] = ACTIONS(3472), + [anon_sym___makeref] = ACTIONS(3472), + [anon_sym___reftype] = ACTIONS(3472), + [anon_sym___refvalue] = ACTIONS(3472), + [sym_null_literal] = ACTIONS(3472), + [anon_sym_SQUOTE] = ACTIONS(3474), + [sym_integer_literal] = ACTIONS(3472), + [sym_real_literal] = ACTIONS(3474), + [anon_sym_DQUOTE] = ACTIONS(3474), + [sym_verbatim_string_literal] = ACTIONS(3474), + [sym_grit_metavariable] = ACTIONS(3474), + [aux_sym_preproc_if_token1] = ACTIONS(3474), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404176,10 +404198,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(3490), - [sym_interpolation_verbatim_start] = ACTIONS(3490), - [sym_interpolation_raw_start] = ACTIONS(3490), - [sym_raw_string_start] = ACTIONS(3490), + [sym_interpolation_regular_start] = ACTIONS(3474), + [sym_interpolation_verbatim_start] = ACTIONS(3474), + [sym_interpolation_raw_start] = ACTIONS(3474), + [sym_raw_string_start] = ACTIONS(3474), }, [2142] = { [sym_preproc_region] = STATE(2142), @@ -404191,118 +404213,118 @@ 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(3524), - [anon_sym_extern] = ACTIONS(3524), - [anon_sym_alias] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym_global] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_unsafe] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3526), - [anon_sym_LPAREN] = ACTIONS(3526), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_ref] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3526), - [anon_sym_RBRACE] = ACTIONS(3526), - [anon_sym_delegate] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_file] = ACTIONS(3524), - [anon_sym_fixed] = ACTIONS(3524), - [anon_sym_internal] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_partial] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_sealed] = ACTIONS(3524), - [anon_sym_virtual] = ACTIONS(3524), - [anon_sym_volatile] = ACTIONS(3524), - [anon_sym_where] = ACTIONS(3524), - [anon_sym_notnull] = ACTIONS(3524), - [anon_sym_unmanaged] = ACTIONS(3524), - [anon_sym_checked] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_TILDE] = ACTIONS(3526), - [anon_sym_PLUS_PLUS] = ACTIONS(3526), - [anon_sym_DASH_DASH] = ACTIONS(3526), - [anon_sym_true] = ACTIONS(3524), - [anon_sym_false] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_CARET] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3526), - [anon_sym_this] = ACTIONS(3524), - [anon_sym_scoped] = ACTIONS(3524), - [anon_sym_base] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [sym_predefined_type] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_unchecked] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_lock] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_when] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_foreach] = ACTIONS(3524), - [anon_sym_goto] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_DOT_DOT] = ACTIONS(3526), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_into] = ACTIONS(3524), - [anon_sym_join] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_equals] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_orderby] = ACTIONS(3524), - [anon_sym_ascending] = ACTIONS(3524), - [anon_sym_descending] = ACTIONS(3524), - [anon_sym_group] = ACTIONS(3524), - [anon_sym_by] = ACTIONS(3524), - [anon_sym_select] = ACTIONS(3524), - [anon_sym_stackalloc] = ACTIONS(3524), - [anon_sym_sizeof] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym___makeref] = ACTIONS(3524), - [anon_sym___reftype] = ACTIONS(3524), - [anon_sym___refvalue] = ACTIONS(3524), - [sym_null_literal] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3526), - [sym_integer_literal] = ACTIONS(3524), - [sym_real_literal] = ACTIONS(3526), - [anon_sym_DQUOTE] = ACTIONS(3526), - [sym_verbatim_string_literal] = ACTIONS(3526), - [sym_grit_metavariable] = ACTIONS(3526), - [aux_sym_preproc_if_token1] = ACTIONS(3526), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3526), - [sym_interpolation_verbatim_start] = ACTIONS(3526), - [sym_interpolation_raw_start] = ACTIONS(3526), - [sym_raw_string_start] = ACTIONS(3526), + [sym__identifier_token] = ACTIONS(3412), + [anon_sym_extern] = ACTIONS(3412), + [anon_sym_alias] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_global] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_unsafe] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_ref] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3414), + [anon_sym_RBRACE] = ACTIONS(3414), + [anon_sym_delegate] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_readonly] = 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_protected] = 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_TILDE] = ACTIONS(3414), + [anon_sym_this] = ACTIONS(3412), + [anon_sym_scoped] = ACTIONS(3412), + [anon_sym_base] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3414), + [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_case] = 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_else] = ACTIONS(3412), + [anon_sym_DOT_DOT] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3414), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [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(3414), + [sym_integer_literal] = ACTIONS(3412), + [sym_real_literal] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3414), + [sym_verbatim_string_literal] = ACTIONS(3414), + [sym_grit_metavariable] = 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), }, [2143] = { [sym_preproc_region] = STATE(2143), @@ -404314,104 +404336,104 @@ 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(3452), - [anon_sym_extern] = ACTIONS(3452), - [anon_sym_alias] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_global] = ACTIONS(3452), - [anon_sym_using] = ACTIONS(3452), - [anon_sym_unsafe] = ACTIONS(3452), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3452), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_RBRACE] = ACTIONS(3454), - [anon_sym_delegate] = ACTIONS(3452), - [anon_sym_public] = ACTIONS(3452), - [anon_sym_private] = ACTIONS(3452), - [anon_sym_readonly] = ACTIONS(3452), - [anon_sym_abstract] = ACTIONS(3452), - [anon_sym_async] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_file] = ACTIONS(3452), - [anon_sym_fixed] = ACTIONS(3452), - [anon_sym_internal] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3452), - [anon_sym_override] = ACTIONS(3452), - [anon_sym_partial] = ACTIONS(3452), - [anon_sym_protected] = ACTIONS(3452), - [anon_sym_required] = ACTIONS(3452), - [anon_sym_sealed] = ACTIONS(3452), - [anon_sym_virtual] = ACTIONS(3452), - [anon_sym_volatile] = ACTIONS(3452), - [anon_sym_where] = ACTIONS(3452), - [anon_sym_notnull] = ACTIONS(3452), - [anon_sym_unmanaged] = ACTIONS(3452), - [anon_sym_checked] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_PLUS_PLUS] = ACTIONS(3454), - [anon_sym_DASH_DASH] = ACTIONS(3454), - [anon_sym_true] = ACTIONS(3452), - [anon_sym_false] = ACTIONS(3452), - [anon_sym_PLUS] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3452), - [anon_sym_STAR] = ACTIONS(3454), - [anon_sym_CARET] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(3452), - [anon_sym_scoped] = ACTIONS(3452), - [anon_sym_base] = ACTIONS(3452), - [anon_sym_var] = ACTIONS(3452), - [sym_predefined_type] = ACTIONS(3452), - [anon_sym_break] = ACTIONS(3452), - [anon_sym_unchecked] = ACTIONS(3452), - [anon_sym_continue] = ACTIONS(3452), - [anon_sym_do] = ACTIONS(3452), - [anon_sym_while] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3452), - [anon_sym_lock] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3452), - [anon_sym_switch] = ACTIONS(3452), - [anon_sym_case] = ACTIONS(3452), - [anon_sym_default] = ACTIONS(3452), - [anon_sym_throw] = ACTIONS(3452), - [anon_sym_try] = ACTIONS(3452), - [anon_sym_when] = ACTIONS(3452), - [anon_sym_await] = ACTIONS(3452), - [anon_sym_foreach] = ACTIONS(3452), - [anon_sym_goto] = ACTIONS(3452), - [anon_sym_if] = ACTIONS(3452), - [anon_sym_else] = ACTIONS(3452), - [anon_sym_DOT_DOT] = ACTIONS(3454), - [anon_sym_from] = ACTIONS(3452), - [anon_sym_into] = ACTIONS(3452), - [anon_sym_join] = ACTIONS(3452), - [anon_sym_on] = ACTIONS(3452), - [anon_sym_equals] = ACTIONS(3452), - [anon_sym_let] = ACTIONS(3452), - [anon_sym_orderby] = ACTIONS(3452), - [anon_sym_ascending] = ACTIONS(3452), - [anon_sym_descending] = ACTIONS(3452), - [anon_sym_group] = ACTIONS(3452), - [anon_sym_by] = ACTIONS(3452), - [anon_sym_select] = ACTIONS(3452), - [anon_sym_stackalloc] = ACTIONS(3452), - [anon_sym_sizeof] = ACTIONS(3452), - [anon_sym_typeof] = ACTIONS(3452), - [anon_sym___makeref] = ACTIONS(3452), - [anon_sym___reftype] = ACTIONS(3452), - [anon_sym___refvalue] = ACTIONS(3452), - [sym_null_literal] = ACTIONS(3452), - [anon_sym_SQUOTE] = ACTIONS(3454), - [sym_integer_literal] = ACTIONS(3452), - [sym_real_literal] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [sym_verbatim_string_literal] = ACTIONS(3454), - [sym_grit_metavariable] = ACTIONS(3454), - [aux_sym_preproc_if_token1] = ACTIONS(3454), + [sym__identifier_token] = ACTIONS(3572), + [anon_sym_extern] = ACTIONS(3572), + [anon_sym_alias] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym_global] = ACTIONS(3572), + [anon_sym_using] = ACTIONS(3572), + [anon_sym_unsafe] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3574), + [anon_sym_LPAREN] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_ref] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_RBRACE] = ACTIONS(3574), + [anon_sym_delegate] = ACTIONS(3572), + [anon_sym_public] = ACTIONS(3572), + [anon_sym_private] = ACTIONS(3572), + [anon_sym_readonly] = ACTIONS(3572), + [anon_sym_abstract] = ACTIONS(3572), + [anon_sym_async] = ACTIONS(3572), + [anon_sym_const] = ACTIONS(3572), + [anon_sym_file] = ACTIONS(3572), + [anon_sym_fixed] = ACTIONS(3572), + [anon_sym_internal] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_override] = ACTIONS(3572), + [anon_sym_partial] = ACTIONS(3572), + [anon_sym_protected] = ACTIONS(3572), + [anon_sym_required] = ACTIONS(3572), + [anon_sym_sealed] = ACTIONS(3572), + [anon_sym_virtual] = ACTIONS(3572), + [anon_sym_volatile] = ACTIONS(3572), + [anon_sym_where] = ACTIONS(3572), + [anon_sym_notnull] = ACTIONS(3572), + [anon_sym_unmanaged] = ACTIONS(3572), + [anon_sym_checked] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3574), + [anon_sym_this] = ACTIONS(3572), + [anon_sym_scoped] = ACTIONS(3572), + [anon_sym_base] = ACTIONS(3572), + [anon_sym_var] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3574), + [sym_predefined_type] = ACTIONS(3572), + [anon_sym_break] = ACTIONS(3572), + [anon_sym_unchecked] = ACTIONS(3572), + [anon_sym_continue] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_lock] = ACTIONS(3572), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_switch] = ACTIONS(3572), + [anon_sym_case] = ACTIONS(3572), + [anon_sym_default] = ACTIONS(3572), + [anon_sym_throw] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_when] = ACTIONS(3572), + [anon_sym_await] = ACTIONS(3572), + [anon_sym_foreach] = ACTIONS(3572), + [anon_sym_goto] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_else] = ACTIONS(3572), + [anon_sym_DOT_DOT] = ACTIONS(3574), + [anon_sym_AMP] = ACTIONS(3574), + [anon_sym_CARET] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [anon_sym_true] = ACTIONS(3572), + [anon_sym_false] = ACTIONS(3572), + [anon_sym_from] = ACTIONS(3572), + [anon_sym_into] = ACTIONS(3572), + [anon_sym_join] = ACTIONS(3572), + [anon_sym_on] = ACTIONS(3572), + [anon_sym_equals] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_orderby] = ACTIONS(3572), + [anon_sym_ascending] = ACTIONS(3572), + [anon_sym_descending] = ACTIONS(3572), + [anon_sym_group] = ACTIONS(3572), + [anon_sym_by] = ACTIONS(3572), + [anon_sym_select] = ACTIONS(3572), + [anon_sym_stackalloc] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3572), + [anon_sym_typeof] = ACTIONS(3572), + [anon_sym___makeref] = ACTIONS(3572), + [anon_sym___reftype] = ACTIONS(3572), + [anon_sym___refvalue] = ACTIONS(3572), + [sym_null_literal] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3574), + [sym_integer_literal] = ACTIONS(3572), + [sym_real_literal] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym_verbatim_string_literal] = ACTIONS(3574), + [sym_grit_metavariable] = ACTIONS(3574), + [aux_sym_preproc_if_token1] = ACTIONS(3574), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404422,10 +404444,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(3454), - [sym_interpolation_verbatim_start] = ACTIONS(3454), - [sym_interpolation_raw_start] = ACTIONS(3454), - [sym_raw_string_start] = ACTIONS(3454), + [sym_interpolation_regular_start] = ACTIONS(3574), + [sym_interpolation_verbatim_start] = ACTIONS(3574), + [sym_interpolation_raw_start] = ACTIONS(3574), + [sym_raw_string_start] = ACTIONS(3574), }, [2144] = { [sym_preproc_region] = STATE(2144), @@ -404437,104 +404459,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2144), [sym_preproc_define] = STATE(2144), [sym_preproc_undef] = STATE(2144), - [sym__identifier_token] = ACTIONS(3390), - [anon_sym_extern] = ACTIONS(3390), - [anon_sym_alias] = ACTIONS(3390), - [anon_sym_SEMI] = ACTIONS(3392), - [anon_sym_global] = ACTIONS(3390), - [anon_sym_using] = ACTIONS(3390), - [anon_sym_unsafe] = ACTIONS(3390), - [anon_sym_static] = ACTIONS(3390), - [anon_sym_LBRACK] = ACTIONS(3392), - [anon_sym_LPAREN] = ACTIONS(3392), - [anon_sym_return] = ACTIONS(3390), - [anon_sym_ref] = ACTIONS(3390), - [anon_sym_LBRACE] = ACTIONS(3392), - [anon_sym_RBRACE] = ACTIONS(3392), - [anon_sym_delegate] = ACTIONS(3390), - [anon_sym_public] = ACTIONS(3390), - [anon_sym_private] = ACTIONS(3390), - [anon_sym_readonly] = ACTIONS(3390), - [anon_sym_abstract] = ACTIONS(3390), - [anon_sym_async] = ACTIONS(3390), - [anon_sym_const] = ACTIONS(3390), - [anon_sym_file] = ACTIONS(3390), - [anon_sym_fixed] = ACTIONS(3390), - [anon_sym_internal] = ACTIONS(3390), - [anon_sym_new] = ACTIONS(3390), - [anon_sym_override] = ACTIONS(3390), - [anon_sym_partial] = ACTIONS(3390), - [anon_sym_protected] = ACTIONS(3390), - [anon_sym_required] = ACTIONS(3390), - [anon_sym_sealed] = ACTIONS(3390), - [anon_sym_virtual] = ACTIONS(3390), - [anon_sym_volatile] = ACTIONS(3390), - [anon_sym_where] = ACTIONS(3390), - [anon_sym_notnull] = ACTIONS(3390), - [anon_sym_unmanaged] = ACTIONS(3390), - [anon_sym_checked] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3392), - [anon_sym_TILDE] = ACTIONS(3392), - [anon_sym_PLUS_PLUS] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3392), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [anon_sym_PLUS] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3390), - [anon_sym_STAR] = ACTIONS(3392), - [anon_sym_CARET] = ACTIONS(3392), - [anon_sym_AMP] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(3390), - [anon_sym_scoped] = ACTIONS(3390), - [anon_sym_base] = ACTIONS(3390), - [anon_sym_var] = ACTIONS(3390), - [sym_predefined_type] = ACTIONS(3390), - [anon_sym_break] = ACTIONS(3390), - [anon_sym_unchecked] = ACTIONS(3390), - [anon_sym_continue] = ACTIONS(3390), - [anon_sym_do] = ACTIONS(3390), - [anon_sym_while] = ACTIONS(3390), - [anon_sym_for] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3390), - [anon_sym_yield] = ACTIONS(3390), - [anon_sym_switch] = ACTIONS(3390), - [anon_sym_case] = ACTIONS(3390), - [anon_sym_default] = ACTIONS(3390), - [anon_sym_throw] = ACTIONS(3390), - [anon_sym_try] = ACTIONS(3390), - [anon_sym_when] = ACTIONS(3390), - [anon_sym_await] = ACTIONS(3390), - [anon_sym_foreach] = ACTIONS(3390), - [anon_sym_goto] = ACTIONS(3390), - [anon_sym_if] = ACTIONS(3390), - [anon_sym_else] = ACTIONS(3390), - [anon_sym_DOT_DOT] = ACTIONS(3392), - [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_stackalloc] = ACTIONS(3390), - [anon_sym_sizeof] = ACTIONS(3390), - [anon_sym_typeof] = ACTIONS(3390), - [anon_sym___makeref] = ACTIONS(3390), - [anon_sym___reftype] = ACTIONS(3390), - [anon_sym___refvalue] = ACTIONS(3390), - [sym_null_literal] = ACTIONS(3390), - [anon_sym_SQUOTE] = ACTIONS(3392), - [sym_integer_literal] = ACTIONS(3390), - [sym_real_literal] = ACTIONS(3392), - [anon_sym_DQUOTE] = ACTIONS(3392), - [sym_verbatim_string_literal] = ACTIONS(3392), - [sym_grit_metavariable] = ACTIONS(3392), - [aux_sym_preproc_if_token1] = ACTIONS(3392), + [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_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_readonly] = 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_protected] = 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_TILDE] = ACTIONS(3185), + [anon_sym_this] = ACTIONS(3183), + [anon_sym_scoped] = ACTIONS(3183), + [anon_sym_base] = ACTIONS(3183), + [anon_sym_var] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [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_AMP] = ACTIONS(3185), + [anon_sym_CARET] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_BANG] = 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_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), + [sym_grit_metavariable] = 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), @@ -404545,10 +404567,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(3392), - [sym_interpolation_verbatim_start] = ACTIONS(3392), - [sym_interpolation_raw_start] = ACTIONS(3392), - [sym_raw_string_start] = ACTIONS(3392), + [sym_interpolation_regular_start] = ACTIONS(3185), + [sym_interpolation_verbatim_start] = ACTIONS(3185), + [sym_interpolation_raw_start] = ACTIONS(3185), + [sym_raw_string_start] = ACTIONS(3185), }, [2145] = { [sym_preproc_region] = STATE(2145), @@ -404560,118 +404582,118 @@ 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(3520), - [anon_sym_extern] = ACTIONS(3520), - [anon_sym_alias] = ACTIONS(3520), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym_global] = ACTIONS(3520), - [anon_sym_using] = ACTIONS(3520), - [anon_sym_unsafe] = ACTIONS(3520), - [anon_sym_static] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3522), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_ref] = ACTIONS(3520), - [anon_sym_LBRACE] = ACTIONS(3522), - [anon_sym_RBRACE] = ACTIONS(3522), - [anon_sym_delegate] = ACTIONS(3520), - [anon_sym_public] = ACTIONS(3520), - [anon_sym_private] = ACTIONS(3520), - [anon_sym_readonly] = ACTIONS(3520), - [anon_sym_abstract] = ACTIONS(3520), - [anon_sym_async] = ACTIONS(3520), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_file] = ACTIONS(3520), - [anon_sym_fixed] = ACTIONS(3520), - [anon_sym_internal] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_override] = ACTIONS(3520), - [anon_sym_partial] = ACTIONS(3520), - [anon_sym_protected] = ACTIONS(3520), - [anon_sym_required] = ACTIONS(3520), - [anon_sym_sealed] = ACTIONS(3520), - [anon_sym_virtual] = ACTIONS(3520), - [anon_sym_volatile] = ACTIONS(3520), - [anon_sym_where] = ACTIONS(3520), - [anon_sym_notnull] = ACTIONS(3520), - [anon_sym_unmanaged] = ACTIONS(3520), - [anon_sym_checked] = ACTIONS(3520), - [anon_sym_BANG] = ACTIONS(3522), - [anon_sym_TILDE] = ACTIONS(3522), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3522), - [anon_sym_true] = ACTIONS(3520), - [anon_sym_false] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_STAR] = ACTIONS(3522), - [anon_sym_CARET] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(3520), - [anon_sym_scoped] = ACTIONS(3520), - [anon_sym_base] = ACTIONS(3520), - [anon_sym_var] = ACTIONS(3520), - [sym_predefined_type] = ACTIONS(3520), - [anon_sym_break] = ACTIONS(3520), - [anon_sym_unchecked] = ACTIONS(3520), - [anon_sym_continue] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_lock] = ACTIONS(3520), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_switch] = ACTIONS(3520), - [anon_sym_case] = ACTIONS(3520), - [anon_sym_default] = ACTIONS(3520), - [anon_sym_throw] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_when] = ACTIONS(3520), - [anon_sym_await] = ACTIONS(3520), - [anon_sym_foreach] = ACTIONS(3520), - [anon_sym_goto] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_else] = ACTIONS(3520), - [anon_sym_DOT_DOT] = ACTIONS(3522), - [anon_sym_from] = ACTIONS(3520), - [anon_sym_into] = ACTIONS(3520), - [anon_sym_join] = ACTIONS(3520), - [anon_sym_on] = ACTIONS(3520), - [anon_sym_equals] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_orderby] = ACTIONS(3520), - [anon_sym_ascending] = ACTIONS(3520), - [anon_sym_descending] = ACTIONS(3520), - [anon_sym_group] = ACTIONS(3520), - [anon_sym_by] = ACTIONS(3520), - [anon_sym_select] = ACTIONS(3520), - [anon_sym_stackalloc] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(3520), - [anon_sym_typeof] = ACTIONS(3520), - [anon_sym___makeref] = ACTIONS(3520), - [anon_sym___reftype] = ACTIONS(3520), - [anon_sym___refvalue] = ACTIONS(3520), - [sym_null_literal] = ACTIONS(3520), - [anon_sym_SQUOTE] = ACTIONS(3522), - [sym_integer_literal] = ACTIONS(3520), - [sym_real_literal] = ACTIONS(3522), - [anon_sym_DQUOTE] = ACTIONS(3522), - [sym_verbatim_string_literal] = ACTIONS(3522), - [sym_grit_metavariable] = ACTIONS(3522), - [aux_sym_preproc_if_token1] = ACTIONS(3522), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3522), - [sym_interpolation_verbatim_start] = ACTIONS(3522), - [sym_interpolation_raw_start] = ACTIONS(3522), - [sym_raw_string_start] = ACTIONS(3522), + [sym__identifier_token] = ACTIONS(3416), + [anon_sym_extern] = ACTIONS(3416), + [anon_sym_alias] = ACTIONS(3416), + [anon_sym_SEMI] = ACTIONS(3418), + [anon_sym_global] = ACTIONS(3416), + [anon_sym_using] = ACTIONS(3416), + [anon_sym_unsafe] = ACTIONS(3416), + [anon_sym_static] = ACTIONS(3416), + [anon_sym_LBRACK] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3418), + [anon_sym_return] = ACTIONS(3416), + [anon_sym_ref] = ACTIONS(3416), + [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_RBRACE] = ACTIONS(3418), + [anon_sym_delegate] = ACTIONS(3416), + [anon_sym_public] = ACTIONS(3416), + [anon_sym_private] = ACTIONS(3416), + [anon_sym_readonly] = 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_protected] = 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_TILDE] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(3416), + [anon_sym_scoped] = ACTIONS(3416), + [anon_sym_base] = ACTIONS(3416), + [anon_sym_var] = ACTIONS(3416), + [anon_sym_STAR] = ACTIONS(3418), + [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_case] = 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_else] = ACTIONS(3416), + [anon_sym_DOT_DOT] = ACTIONS(3418), + [anon_sym_AMP] = ACTIONS(3418), + [anon_sym_CARET] = ACTIONS(3418), + [anon_sym_PLUS] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_PLUS_PLUS] = ACTIONS(3418), + [anon_sym_DASH_DASH] = ACTIONS(3418), + [anon_sym_true] = ACTIONS(3416), + [anon_sym_false] = ACTIONS(3416), + [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(3418), + [sym_integer_literal] = ACTIONS(3416), + [sym_real_literal] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(3418), + [sym_verbatim_string_literal] = ACTIONS(3418), + [sym_grit_metavariable] = ACTIONS(3418), + [aux_sym_preproc_if_token1] = ACTIONS(3418), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3418), + [sym_interpolation_verbatim_start] = ACTIONS(3418), + [sym_interpolation_raw_start] = ACTIONS(3418), + [sym_raw_string_start] = ACTIONS(3418), }, [2146] = { [sym_preproc_region] = STATE(2146), @@ -404683,118 +404705,118 @@ 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(3540), - [anon_sym_extern] = ACTIONS(3540), - [anon_sym_alias] = ACTIONS(3540), - [anon_sym_SEMI] = ACTIONS(3542), - [anon_sym_global] = ACTIONS(3540), - [anon_sym_using] = ACTIONS(3540), - [anon_sym_unsafe] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3542), - [anon_sym_LPAREN] = ACTIONS(3542), - [anon_sym_return] = ACTIONS(3540), - [anon_sym_ref] = ACTIONS(3540), - [anon_sym_LBRACE] = ACTIONS(3542), - [anon_sym_RBRACE] = ACTIONS(3542), - [anon_sym_delegate] = ACTIONS(3540), - [anon_sym_public] = ACTIONS(3540), - [anon_sym_private] = ACTIONS(3540), - [anon_sym_readonly] = ACTIONS(3540), - [anon_sym_abstract] = ACTIONS(3540), - [anon_sym_async] = ACTIONS(3540), - [anon_sym_const] = ACTIONS(3540), - [anon_sym_file] = ACTIONS(3540), - [anon_sym_fixed] = ACTIONS(3540), - [anon_sym_internal] = ACTIONS(3540), - [anon_sym_new] = ACTIONS(3540), - [anon_sym_override] = ACTIONS(3540), - [anon_sym_partial] = ACTIONS(3540), - [anon_sym_protected] = ACTIONS(3540), - [anon_sym_required] = ACTIONS(3540), - [anon_sym_sealed] = ACTIONS(3540), - [anon_sym_virtual] = ACTIONS(3540), - [anon_sym_volatile] = ACTIONS(3540), - [anon_sym_where] = ACTIONS(3540), - [anon_sym_notnull] = ACTIONS(3540), - [anon_sym_unmanaged] = ACTIONS(3540), - [anon_sym_checked] = ACTIONS(3540), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_TILDE] = ACTIONS(3542), - [anon_sym_PLUS_PLUS] = ACTIONS(3542), - [anon_sym_DASH_DASH] = ACTIONS(3542), - [anon_sym_true] = ACTIONS(3540), - [anon_sym_false] = ACTIONS(3540), - [anon_sym_PLUS] = ACTIONS(3540), - [anon_sym_DASH] = ACTIONS(3540), - [anon_sym_STAR] = ACTIONS(3542), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3542), - [anon_sym_this] = ACTIONS(3540), - [anon_sym_scoped] = ACTIONS(3540), - [anon_sym_base] = ACTIONS(3540), - [anon_sym_var] = ACTIONS(3540), - [sym_predefined_type] = ACTIONS(3540), - [anon_sym_break] = ACTIONS(3540), - [anon_sym_unchecked] = ACTIONS(3540), - [anon_sym_continue] = ACTIONS(3540), - [anon_sym_do] = ACTIONS(3540), - [anon_sym_while] = ACTIONS(3540), - [anon_sym_for] = ACTIONS(3540), - [anon_sym_lock] = ACTIONS(3540), - [anon_sym_yield] = ACTIONS(3540), - [anon_sym_switch] = ACTIONS(3540), - [anon_sym_case] = ACTIONS(3540), - [anon_sym_default] = ACTIONS(3540), - [anon_sym_throw] = ACTIONS(3540), - [anon_sym_try] = ACTIONS(3540), - [anon_sym_when] = ACTIONS(3540), - [anon_sym_await] = ACTIONS(3540), - [anon_sym_foreach] = ACTIONS(3540), - [anon_sym_goto] = ACTIONS(3540), - [anon_sym_if] = ACTIONS(3540), - [anon_sym_else] = ACTIONS(3540), - [anon_sym_DOT_DOT] = ACTIONS(3542), - [anon_sym_from] = ACTIONS(3540), - [anon_sym_into] = ACTIONS(3540), - [anon_sym_join] = ACTIONS(3540), - [anon_sym_on] = ACTIONS(3540), - [anon_sym_equals] = ACTIONS(3540), - [anon_sym_let] = ACTIONS(3540), - [anon_sym_orderby] = ACTIONS(3540), - [anon_sym_ascending] = ACTIONS(3540), - [anon_sym_descending] = ACTIONS(3540), - [anon_sym_group] = ACTIONS(3540), - [anon_sym_by] = ACTIONS(3540), - [anon_sym_select] = ACTIONS(3540), - [anon_sym_stackalloc] = ACTIONS(3540), - [anon_sym_sizeof] = ACTIONS(3540), - [anon_sym_typeof] = ACTIONS(3540), - [anon_sym___makeref] = ACTIONS(3540), - [anon_sym___reftype] = ACTIONS(3540), - [anon_sym___refvalue] = ACTIONS(3540), - [sym_null_literal] = ACTIONS(3540), - [anon_sym_SQUOTE] = ACTIONS(3542), - [sym_integer_literal] = ACTIONS(3540), - [sym_real_literal] = ACTIONS(3542), - [anon_sym_DQUOTE] = ACTIONS(3542), - [sym_verbatim_string_literal] = ACTIONS(3542), - [sym_grit_metavariable] = ACTIONS(3542), - [aux_sym_preproc_if_token1] = ACTIONS(3542), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3542), - [sym_interpolation_verbatim_start] = ACTIONS(3542), - [sym_interpolation_raw_start] = ACTIONS(3542), - [sym_raw_string_start] = ACTIONS(3542), + [sym__identifier_token] = ACTIONS(3420), + [anon_sym_extern] = ACTIONS(3420), + [anon_sym_alias] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_global] = ACTIONS(3420), + [anon_sym_using] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3420), + [anon_sym_static] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_ref] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_delegate] = ACTIONS(3420), + [anon_sym_public] = ACTIONS(3420), + [anon_sym_private] = ACTIONS(3420), + [anon_sym_readonly] = ACTIONS(3420), + [anon_sym_abstract] = ACTIONS(3420), + [anon_sym_async] = ACTIONS(3420), + [anon_sym_const] = ACTIONS(3420), + [anon_sym_file] = ACTIONS(3420), + [anon_sym_fixed] = ACTIONS(3420), + [anon_sym_internal] = ACTIONS(3420), + [anon_sym_new] = ACTIONS(3420), + [anon_sym_override] = ACTIONS(3420), + [anon_sym_partial] = ACTIONS(3420), + [anon_sym_protected] = ACTIONS(3420), + [anon_sym_required] = ACTIONS(3420), + [anon_sym_sealed] = ACTIONS(3420), + [anon_sym_virtual] = ACTIONS(3420), + [anon_sym_volatile] = ACTIONS(3420), + [anon_sym_where] = ACTIONS(3420), + [anon_sym_notnull] = ACTIONS(3420), + [anon_sym_unmanaged] = ACTIONS(3420), + [anon_sym_checked] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_this] = ACTIONS(3420), + [anon_sym_scoped] = ACTIONS(3420), + [anon_sym_base] = ACTIONS(3420), + [anon_sym_var] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3422), + [sym_predefined_type] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_unchecked] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_do] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_for] = ACTIONS(3420), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_yield] = ACTIONS(3420), + [anon_sym_switch] = ACTIONS(3420), + [anon_sym_case] = ACTIONS(3420), + [anon_sym_default] = ACTIONS(3420), + [anon_sym_throw] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [anon_sym_when] = ACTIONS(3420), + [anon_sym_await] = ACTIONS(3420), + [anon_sym_foreach] = ACTIONS(3420), + [anon_sym_goto] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_CARET] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_from] = ACTIONS(3420), + [anon_sym_into] = ACTIONS(3420), + [anon_sym_join] = ACTIONS(3420), + [anon_sym_on] = ACTIONS(3420), + [anon_sym_equals] = ACTIONS(3420), + [anon_sym_let] = ACTIONS(3420), + [anon_sym_orderby] = ACTIONS(3420), + [anon_sym_ascending] = ACTIONS(3420), + [anon_sym_descending] = ACTIONS(3420), + [anon_sym_group] = ACTIONS(3420), + [anon_sym_by] = ACTIONS(3420), + [anon_sym_select] = ACTIONS(3420), + [anon_sym_stackalloc] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(3420), + [anon_sym_typeof] = ACTIONS(3420), + [anon_sym___makeref] = ACTIONS(3420), + [anon_sym___reftype] = ACTIONS(3420), + [anon_sym___refvalue] = ACTIONS(3420), + [sym_null_literal] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3422), + [sym_integer_literal] = ACTIONS(3420), + [sym_real_literal] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(3422), + [sym_verbatim_string_literal] = ACTIONS(3422), + [sym_grit_metavariable] = ACTIONS(3422), + [aux_sym_preproc_if_token1] = ACTIONS(3422), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3422), + [sym_interpolation_verbatim_start] = ACTIONS(3422), + [sym_interpolation_raw_start] = ACTIONS(3422), + [sym_raw_string_start] = ACTIONS(3422), }, [2147] = { [sym_preproc_region] = STATE(2147), @@ -404806,104 +404828,104 @@ 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(3418), - [anon_sym_extern] = ACTIONS(3418), - [anon_sym_alias] = ACTIONS(3418), - [anon_sym_SEMI] = ACTIONS(3420), - [anon_sym_global] = ACTIONS(3418), - [anon_sym_using] = ACTIONS(3418), - [anon_sym_unsafe] = ACTIONS(3418), - [anon_sym_static] = ACTIONS(3418), - [anon_sym_LBRACK] = ACTIONS(3420), - [anon_sym_LPAREN] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3418), - [anon_sym_ref] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(3420), - [anon_sym_RBRACE] = ACTIONS(3420), - [anon_sym_delegate] = ACTIONS(3418), - [anon_sym_public] = ACTIONS(3418), - [anon_sym_private] = ACTIONS(3418), - [anon_sym_readonly] = ACTIONS(3418), - [anon_sym_abstract] = ACTIONS(3418), - [anon_sym_async] = ACTIONS(3418), - [anon_sym_const] = ACTIONS(3418), - [anon_sym_file] = ACTIONS(3418), - [anon_sym_fixed] = ACTIONS(3418), - [anon_sym_internal] = ACTIONS(3418), - [anon_sym_new] = ACTIONS(3418), - [anon_sym_override] = ACTIONS(3418), - [anon_sym_partial] = ACTIONS(3418), - [anon_sym_protected] = ACTIONS(3418), - [anon_sym_required] = ACTIONS(3418), - [anon_sym_sealed] = ACTIONS(3418), - [anon_sym_virtual] = ACTIONS(3418), - [anon_sym_volatile] = ACTIONS(3418), - [anon_sym_where] = ACTIONS(3418), - [anon_sym_notnull] = ACTIONS(3418), - [anon_sym_unmanaged] = ACTIONS(3418), - [anon_sym_checked] = ACTIONS(3418), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3420), - [anon_sym_true] = ACTIONS(3418), - [anon_sym_false] = ACTIONS(3418), - [anon_sym_PLUS] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3418), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_CARET] = ACTIONS(3420), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_this] = ACTIONS(3418), - [anon_sym_scoped] = ACTIONS(3418), - [anon_sym_base] = ACTIONS(3418), - [anon_sym_var] = ACTIONS(3418), - [sym_predefined_type] = ACTIONS(3418), - [anon_sym_break] = ACTIONS(3418), - [anon_sym_unchecked] = ACTIONS(3418), - [anon_sym_continue] = ACTIONS(3418), - [anon_sym_do] = ACTIONS(3418), - [anon_sym_while] = ACTIONS(3418), - [anon_sym_for] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3418), - [anon_sym_yield] = ACTIONS(3418), - [anon_sym_switch] = ACTIONS(3418), - [anon_sym_case] = ACTIONS(3418), - [anon_sym_default] = ACTIONS(3418), - [anon_sym_throw] = ACTIONS(3418), - [anon_sym_try] = ACTIONS(3418), - [anon_sym_when] = ACTIONS(3418), - [anon_sym_await] = ACTIONS(3418), - [anon_sym_foreach] = ACTIONS(3418), - [anon_sym_goto] = ACTIONS(3418), - [anon_sym_if] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(3743), - [anon_sym_DOT_DOT] = ACTIONS(3420), - [anon_sym_from] = ACTIONS(3418), - [anon_sym_into] = ACTIONS(3418), - [anon_sym_join] = ACTIONS(3418), - [anon_sym_on] = ACTIONS(3418), - [anon_sym_equals] = ACTIONS(3418), - [anon_sym_let] = ACTIONS(3418), - [anon_sym_orderby] = ACTIONS(3418), - [anon_sym_ascending] = ACTIONS(3418), - [anon_sym_descending] = ACTIONS(3418), - [anon_sym_group] = ACTIONS(3418), - [anon_sym_by] = ACTIONS(3418), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_stackalloc] = ACTIONS(3418), - [anon_sym_sizeof] = ACTIONS(3418), - [anon_sym_typeof] = ACTIONS(3418), - [anon_sym___makeref] = ACTIONS(3418), - [anon_sym___reftype] = ACTIONS(3418), - [anon_sym___refvalue] = ACTIONS(3418), - [sym_null_literal] = ACTIONS(3418), - [anon_sym_SQUOTE] = ACTIONS(3420), - [sym_integer_literal] = ACTIONS(3418), - [sym_real_literal] = ACTIONS(3420), - [anon_sym_DQUOTE] = ACTIONS(3420), - [sym_verbatim_string_literal] = ACTIONS(3420), - [sym_grit_metavariable] = ACTIONS(3420), - [aux_sym_preproc_if_token1] = ACTIONS(3420), + [sym__identifier_token] = ACTIONS(3552), + [anon_sym_extern] = ACTIONS(3552), + [anon_sym_alias] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3554), + [anon_sym_global] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_unsafe] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_ref] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_RBRACE] = ACTIONS(3554), + [anon_sym_delegate] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_file] = ACTIONS(3552), + [anon_sym_fixed] = ACTIONS(3552), + [anon_sym_internal] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_partial] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_sealed] = ACTIONS(3552), + [anon_sym_virtual] = ACTIONS(3552), + [anon_sym_volatile] = ACTIONS(3552), + [anon_sym_where] = ACTIONS(3552), + [anon_sym_notnull] = ACTIONS(3552), + [anon_sym_unmanaged] = ACTIONS(3552), + [anon_sym_checked] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3554), + [anon_sym_this] = ACTIONS(3552), + [anon_sym_scoped] = ACTIONS(3552), + [anon_sym_base] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_STAR] = ACTIONS(3554), + [sym_predefined_type] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_unchecked] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_lock] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_case] = ACTIONS(3552), + [anon_sym_default] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_when] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_foreach] = ACTIONS(3552), + [anon_sym_goto] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_else] = ACTIONS(3552), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_CARET] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_PLUS_PLUS] = ACTIONS(3554), + [anon_sym_DASH_DASH] = ACTIONS(3554), + [anon_sym_true] = ACTIONS(3552), + [anon_sym_false] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_into] = ACTIONS(3552), + [anon_sym_join] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_equals] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_orderby] = ACTIONS(3552), + [anon_sym_ascending] = ACTIONS(3552), + [anon_sym_descending] = ACTIONS(3552), + [anon_sym_group] = ACTIONS(3552), + [anon_sym_by] = ACTIONS(3552), + [anon_sym_select] = ACTIONS(3552), + [anon_sym_stackalloc] = ACTIONS(3552), + [anon_sym_sizeof] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym___makeref] = ACTIONS(3552), + [anon_sym___reftype] = ACTIONS(3552), + [anon_sym___refvalue] = ACTIONS(3552), + [sym_null_literal] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3554), + [sym_integer_literal] = ACTIONS(3552), + [sym_real_literal] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [sym_verbatim_string_literal] = ACTIONS(3554), + [sym_grit_metavariable] = ACTIONS(3554), + [aux_sym_preproc_if_token1] = ACTIONS(3554), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404914,10 +404936,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(3420), - [sym_interpolation_verbatim_start] = ACTIONS(3420), - [sym_interpolation_raw_start] = ACTIONS(3420), - [sym_raw_string_start] = ACTIONS(3420), + [sym_interpolation_regular_start] = ACTIONS(3554), + [sym_interpolation_verbatim_start] = ACTIONS(3554), + [sym_interpolation_raw_start] = ACTIONS(3554), + [sym_raw_string_start] = ACTIONS(3554), }, [2148] = { [sym_preproc_region] = STATE(2148), @@ -404929,104 +404951,104 @@ 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(3440), - [anon_sym_extern] = ACTIONS(3440), - [anon_sym_alias] = ACTIONS(3440), - [anon_sym_SEMI] = ACTIONS(3442), - [anon_sym_global] = ACTIONS(3440), - [anon_sym_using] = ACTIONS(3440), - [anon_sym_unsafe] = ACTIONS(3440), - [anon_sym_static] = ACTIONS(3440), - [anon_sym_LBRACK] = ACTIONS(3442), - [anon_sym_LPAREN] = ACTIONS(3442), - [anon_sym_return] = ACTIONS(3440), - [anon_sym_ref] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3442), - [anon_sym_RBRACE] = ACTIONS(3442), - [anon_sym_delegate] = ACTIONS(3440), - [anon_sym_public] = ACTIONS(3440), - [anon_sym_private] = ACTIONS(3440), - [anon_sym_readonly] = ACTIONS(3440), - [anon_sym_abstract] = ACTIONS(3440), - [anon_sym_async] = ACTIONS(3440), - [anon_sym_const] = ACTIONS(3440), - [anon_sym_file] = ACTIONS(3440), - [anon_sym_fixed] = ACTIONS(3440), - [anon_sym_internal] = ACTIONS(3440), - [anon_sym_new] = ACTIONS(3440), - [anon_sym_override] = ACTIONS(3440), - [anon_sym_partial] = ACTIONS(3440), - [anon_sym_protected] = ACTIONS(3440), - [anon_sym_required] = ACTIONS(3440), - [anon_sym_sealed] = ACTIONS(3440), - [anon_sym_virtual] = ACTIONS(3440), - [anon_sym_volatile] = ACTIONS(3440), - [anon_sym_where] = ACTIONS(3440), - [anon_sym_notnull] = ACTIONS(3440), - [anon_sym_unmanaged] = ACTIONS(3440), - [anon_sym_checked] = ACTIONS(3440), - [anon_sym_BANG] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3442), - [anon_sym_PLUS_PLUS] = ACTIONS(3442), - [anon_sym_DASH_DASH] = ACTIONS(3442), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_PLUS] = ACTIONS(3440), - [anon_sym_DASH] = ACTIONS(3440), - [anon_sym_STAR] = ACTIONS(3442), - [anon_sym_CARET] = ACTIONS(3442), - [anon_sym_AMP] = ACTIONS(3442), - [anon_sym_this] = ACTIONS(3440), - [anon_sym_scoped] = ACTIONS(3440), - [anon_sym_base] = ACTIONS(3440), - [anon_sym_var] = ACTIONS(3440), - [sym_predefined_type] = ACTIONS(3440), - [anon_sym_break] = ACTIONS(3440), - [anon_sym_unchecked] = ACTIONS(3440), - [anon_sym_continue] = ACTIONS(3440), - [anon_sym_do] = ACTIONS(3440), - [anon_sym_while] = ACTIONS(3440), - [anon_sym_for] = ACTIONS(3440), - [anon_sym_lock] = ACTIONS(3440), - [anon_sym_yield] = ACTIONS(3440), - [anon_sym_switch] = ACTIONS(3440), - [anon_sym_case] = ACTIONS(3440), - [anon_sym_default] = ACTIONS(3440), - [anon_sym_throw] = ACTIONS(3440), - [anon_sym_try] = ACTIONS(3440), - [anon_sym_when] = ACTIONS(3440), - [anon_sym_await] = ACTIONS(3440), - [anon_sym_foreach] = ACTIONS(3440), - [anon_sym_goto] = ACTIONS(3440), - [anon_sym_if] = ACTIONS(3440), - [anon_sym_else] = ACTIONS(3440), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [anon_sym_from] = ACTIONS(3440), - [anon_sym_into] = ACTIONS(3440), - [anon_sym_join] = ACTIONS(3440), - [anon_sym_on] = ACTIONS(3440), - [anon_sym_equals] = ACTIONS(3440), - [anon_sym_let] = ACTIONS(3440), - [anon_sym_orderby] = ACTIONS(3440), - [anon_sym_ascending] = ACTIONS(3440), - [anon_sym_descending] = ACTIONS(3440), - [anon_sym_group] = ACTIONS(3440), - [anon_sym_by] = ACTIONS(3440), - [anon_sym_select] = ACTIONS(3440), - [anon_sym_stackalloc] = ACTIONS(3440), - [anon_sym_sizeof] = ACTIONS(3440), - [anon_sym_typeof] = ACTIONS(3440), - [anon_sym___makeref] = ACTIONS(3440), - [anon_sym___reftype] = ACTIONS(3440), - [anon_sym___refvalue] = ACTIONS(3440), - [sym_null_literal] = ACTIONS(3440), - [anon_sym_SQUOTE] = ACTIONS(3442), - [sym_integer_literal] = ACTIONS(3440), - [sym_real_literal] = ACTIONS(3442), - [anon_sym_DQUOTE] = ACTIONS(3442), - [sym_verbatim_string_literal] = ACTIONS(3442), - [sym_grit_metavariable] = ACTIONS(3442), - [aux_sym_preproc_if_token1] = ACTIONS(3442), + [sym__identifier_token] = ACTIONS(3476), + [anon_sym_extern] = ACTIONS(3476), + [anon_sym_alias] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_global] = ACTIONS(3476), + [anon_sym_using] = ACTIONS(3476), + [anon_sym_unsafe] = ACTIONS(3476), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_ref] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_delegate] = ACTIONS(3476), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_readonly] = ACTIONS(3476), + [anon_sym_abstract] = ACTIONS(3476), + [anon_sym_async] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_file] = ACTIONS(3476), + [anon_sym_fixed] = ACTIONS(3476), + [anon_sym_internal] = ACTIONS(3476), + [anon_sym_new] = ACTIONS(3476), + [anon_sym_override] = ACTIONS(3476), + [anon_sym_partial] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_required] = ACTIONS(3476), + [anon_sym_sealed] = ACTIONS(3476), + [anon_sym_virtual] = ACTIONS(3476), + [anon_sym_volatile] = ACTIONS(3476), + [anon_sym_where] = ACTIONS(3476), + [anon_sym_notnull] = ACTIONS(3476), + [anon_sym_unmanaged] = ACTIONS(3476), + [anon_sym_checked] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_this] = ACTIONS(3476), + [anon_sym_scoped] = ACTIONS(3476), + [anon_sym_base] = ACTIONS(3476), + [anon_sym_var] = ACTIONS(3476), + [anon_sym_STAR] = ACTIONS(3478), + [sym_predefined_type] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [anon_sym_unchecked] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_lock] = ACTIONS(3476), + [anon_sym_yield] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [anon_sym_case] = ACTIONS(3476), + [anon_sym_default] = ACTIONS(3476), + [anon_sym_throw] = ACTIONS(3476), + [anon_sym_try] = ACTIONS(3476), + [anon_sym_when] = ACTIONS(3476), + [anon_sym_await] = ACTIONS(3476), + [anon_sym_foreach] = ACTIONS(3476), + [anon_sym_goto] = ACTIONS(3476), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_else] = ACTIONS(3476), + [anon_sym_DOT_DOT] = ACTIONS(3478), + [anon_sym_AMP] = ACTIONS(3478), + [anon_sym_CARET] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [anon_sym_true] = ACTIONS(3476), + [anon_sym_false] = ACTIONS(3476), + [anon_sym_from] = ACTIONS(3476), + [anon_sym_into] = ACTIONS(3476), + [anon_sym_join] = ACTIONS(3476), + [anon_sym_on] = ACTIONS(3476), + [anon_sym_equals] = ACTIONS(3476), + [anon_sym_let] = ACTIONS(3476), + [anon_sym_orderby] = ACTIONS(3476), + [anon_sym_ascending] = ACTIONS(3476), + [anon_sym_descending] = ACTIONS(3476), + [anon_sym_group] = ACTIONS(3476), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_select] = ACTIONS(3476), + [anon_sym_stackalloc] = ACTIONS(3476), + [anon_sym_sizeof] = ACTIONS(3476), + [anon_sym_typeof] = ACTIONS(3476), + [anon_sym___makeref] = ACTIONS(3476), + [anon_sym___reftype] = ACTIONS(3476), + [anon_sym___refvalue] = ACTIONS(3476), + [sym_null_literal] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3478), + [sym_integer_literal] = ACTIONS(3476), + [sym_real_literal] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [sym_verbatim_string_literal] = ACTIONS(3478), + [sym_grit_metavariable] = ACTIONS(3478), + [aux_sym_preproc_if_token1] = ACTIONS(3478), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405037,10 +405059,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(3442), - [sym_interpolation_verbatim_start] = ACTIONS(3442), - [sym_interpolation_raw_start] = ACTIONS(3442), - [sym_raw_string_start] = ACTIONS(3442), + [sym_interpolation_regular_start] = ACTIONS(3478), + [sym_interpolation_verbatim_start] = ACTIONS(3478), + [sym_interpolation_raw_start] = ACTIONS(3478), + [sym_raw_string_start] = ACTIONS(3478), }, [2149] = { [sym_preproc_region] = STATE(2149), @@ -405052,104 +405074,104 @@ 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(3556), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym_alias] = ACTIONS(3556), - [anon_sym_SEMI] = ACTIONS(3558), - [anon_sym_global] = ACTIONS(3556), - [anon_sym_using] = ACTIONS(3556), - [anon_sym_unsafe] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_LBRACK] = ACTIONS(3558), - [anon_sym_LPAREN] = ACTIONS(3558), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_ref] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_RBRACE] = ACTIONS(3558), - [anon_sym_delegate] = ACTIONS(3556), - [anon_sym_public] = ACTIONS(3556), - [anon_sym_private] = ACTIONS(3556), - [anon_sym_readonly] = ACTIONS(3556), - [anon_sym_abstract] = ACTIONS(3556), - [anon_sym_async] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_file] = ACTIONS(3556), - [anon_sym_fixed] = ACTIONS(3556), - [anon_sym_internal] = ACTIONS(3556), - [anon_sym_new] = ACTIONS(3556), - [anon_sym_override] = ACTIONS(3556), - [anon_sym_partial] = ACTIONS(3556), - [anon_sym_protected] = ACTIONS(3556), - [anon_sym_required] = ACTIONS(3556), - [anon_sym_sealed] = ACTIONS(3556), - [anon_sym_virtual] = ACTIONS(3556), - [anon_sym_volatile] = ACTIONS(3556), - [anon_sym_where] = ACTIONS(3556), - [anon_sym_notnull] = ACTIONS(3556), - [anon_sym_unmanaged] = ACTIONS(3556), - [anon_sym_checked] = ACTIONS(3556), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_DASH_DASH] = ACTIONS(3558), - [anon_sym_true] = ACTIONS(3556), - [anon_sym_false] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3556), - [anon_sym_DASH] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_CARET] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3558), - [anon_sym_this] = ACTIONS(3556), - [anon_sym_scoped] = ACTIONS(3556), - [anon_sym_base] = ACTIONS(3556), - [anon_sym_var] = ACTIONS(3556), - [sym_predefined_type] = ACTIONS(3556), - [anon_sym_break] = ACTIONS(3556), - [anon_sym_unchecked] = ACTIONS(3556), - [anon_sym_continue] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_lock] = ACTIONS(3556), - [anon_sym_yield] = ACTIONS(3556), - [anon_sym_switch] = ACTIONS(3556), - [anon_sym_case] = ACTIONS(3556), - [anon_sym_default] = ACTIONS(3556), - [anon_sym_throw] = ACTIONS(3556), - [anon_sym_try] = ACTIONS(3556), - [anon_sym_when] = ACTIONS(3556), - [anon_sym_await] = ACTIONS(3556), - [anon_sym_foreach] = ACTIONS(3556), - [anon_sym_goto] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_else] = ACTIONS(3556), - [anon_sym_DOT_DOT] = ACTIONS(3558), - [anon_sym_from] = ACTIONS(3556), - [anon_sym_into] = ACTIONS(3556), - [anon_sym_join] = ACTIONS(3556), - [anon_sym_on] = ACTIONS(3556), - [anon_sym_equals] = ACTIONS(3556), - [anon_sym_let] = ACTIONS(3556), - [anon_sym_orderby] = ACTIONS(3556), - [anon_sym_ascending] = ACTIONS(3556), - [anon_sym_descending] = ACTIONS(3556), - [anon_sym_group] = ACTIONS(3556), - [anon_sym_by] = ACTIONS(3556), - [anon_sym_select] = ACTIONS(3556), - [anon_sym_stackalloc] = ACTIONS(3556), - [anon_sym_sizeof] = ACTIONS(3556), - [anon_sym_typeof] = ACTIONS(3556), - [anon_sym___makeref] = ACTIONS(3556), - [anon_sym___reftype] = ACTIONS(3556), - [anon_sym___refvalue] = ACTIONS(3556), - [sym_null_literal] = ACTIONS(3556), - [anon_sym_SQUOTE] = ACTIONS(3558), - [sym_integer_literal] = ACTIONS(3556), - [sym_real_literal] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [sym_verbatim_string_literal] = ACTIONS(3558), - [sym_grit_metavariable] = ACTIONS(3558), - [aux_sym_preproc_if_token1] = ACTIONS(3558), + [sym__identifier_token] = ACTIONS(3536), + [anon_sym_extern] = ACTIONS(3536), + [anon_sym_alias] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3538), + [anon_sym_global] = ACTIONS(3536), + [anon_sym_using] = ACTIONS(3536), + [anon_sym_unsafe] = ACTIONS(3536), + [anon_sym_static] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3536), + [anon_sym_ref] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_RBRACE] = ACTIONS(3538), + [anon_sym_delegate] = ACTIONS(3536), + [anon_sym_public] = ACTIONS(3536), + [anon_sym_private] = ACTIONS(3536), + [anon_sym_readonly] = ACTIONS(3536), + [anon_sym_abstract] = ACTIONS(3536), + [anon_sym_async] = ACTIONS(3536), + [anon_sym_const] = ACTIONS(3536), + [anon_sym_file] = ACTIONS(3536), + [anon_sym_fixed] = ACTIONS(3536), + [anon_sym_internal] = ACTIONS(3536), + [anon_sym_new] = ACTIONS(3536), + [anon_sym_override] = ACTIONS(3536), + [anon_sym_partial] = ACTIONS(3536), + [anon_sym_protected] = ACTIONS(3536), + [anon_sym_required] = ACTIONS(3536), + [anon_sym_sealed] = ACTIONS(3536), + [anon_sym_virtual] = ACTIONS(3536), + [anon_sym_volatile] = ACTIONS(3536), + [anon_sym_where] = ACTIONS(3536), + [anon_sym_notnull] = ACTIONS(3536), + [anon_sym_unmanaged] = ACTIONS(3536), + [anon_sym_checked] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3538), + [anon_sym_this] = ACTIONS(3536), + [anon_sym_scoped] = ACTIONS(3536), + [anon_sym_base] = ACTIONS(3536), + [anon_sym_var] = ACTIONS(3536), + [anon_sym_STAR] = ACTIONS(3538), + [sym_predefined_type] = ACTIONS(3536), + [anon_sym_break] = ACTIONS(3536), + [anon_sym_unchecked] = ACTIONS(3536), + [anon_sym_continue] = ACTIONS(3536), + [anon_sym_do] = ACTIONS(3536), + [anon_sym_while] = ACTIONS(3536), + [anon_sym_for] = ACTIONS(3536), + [anon_sym_lock] = ACTIONS(3536), + [anon_sym_yield] = ACTIONS(3536), + [anon_sym_switch] = ACTIONS(3536), + [anon_sym_case] = ACTIONS(3536), + [anon_sym_default] = ACTIONS(3536), + [anon_sym_throw] = ACTIONS(3536), + [anon_sym_try] = ACTIONS(3536), + [anon_sym_when] = ACTIONS(3536), + [anon_sym_await] = ACTIONS(3536), + [anon_sym_foreach] = ACTIONS(3536), + [anon_sym_goto] = ACTIONS(3536), + [anon_sym_if] = ACTIONS(3536), + [anon_sym_else] = ACTIONS(3536), + [anon_sym_DOT_DOT] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3538), + [anon_sym_CARET] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3538), + [anon_sym_PLUS_PLUS] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3538), + [anon_sym_true] = ACTIONS(3536), + [anon_sym_false] = ACTIONS(3536), + [anon_sym_from] = ACTIONS(3536), + [anon_sym_into] = ACTIONS(3536), + [anon_sym_join] = ACTIONS(3536), + [anon_sym_on] = ACTIONS(3536), + [anon_sym_equals] = ACTIONS(3536), + [anon_sym_let] = ACTIONS(3536), + [anon_sym_orderby] = ACTIONS(3536), + [anon_sym_ascending] = ACTIONS(3536), + [anon_sym_descending] = ACTIONS(3536), + [anon_sym_group] = ACTIONS(3536), + [anon_sym_by] = ACTIONS(3536), + [anon_sym_select] = ACTIONS(3536), + [anon_sym_stackalloc] = ACTIONS(3536), + [anon_sym_sizeof] = ACTIONS(3536), + [anon_sym_typeof] = ACTIONS(3536), + [anon_sym___makeref] = ACTIONS(3536), + [anon_sym___reftype] = ACTIONS(3536), + [anon_sym___refvalue] = ACTIONS(3536), + [sym_null_literal] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3538), + [sym_integer_literal] = ACTIONS(3536), + [sym_real_literal] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [sym_verbatim_string_literal] = ACTIONS(3538), + [sym_grit_metavariable] = ACTIONS(3538), + [aux_sym_preproc_if_token1] = ACTIONS(3538), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405160,10 +405182,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(3558), - [sym_interpolation_verbatim_start] = ACTIONS(3558), - [sym_interpolation_raw_start] = ACTIONS(3558), - [sym_raw_string_start] = ACTIONS(3558), + [sym_interpolation_regular_start] = ACTIONS(3538), + [sym_interpolation_verbatim_start] = ACTIONS(3538), + [sym_interpolation_raw_start] = ACTIONS(3538), + [sym_raw_string_start] = ACTIONS(3538), }, [2150] = { [sym_preproc_region] = STATE(2150), @@ -405175,104 +405197,104 @@ 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(3436), - [anon_sym_extern] = ACTIONS(3436), - [anon_sym_alias] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_global] = ACTIONS(3436), - [anon_sym_using] = ACTIONS(3436), - [anon_sym_unsafe] = ACTIONS(3436), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_ref] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_delegate] = ACTIONS(3436), - [anon_sym_public] = ACTIONS(3436), - [anon_sym_private] = ACTIONS(3436), - [anon_sym_readonly] = ACTIONS(3436), - [anon_sym_abstract] = ACTIONS(3436), - [anon_sym_async] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_file] = ACTIONS(3436), - [anon_sym_fixed] = ACTIONS(3436), - [anon_sym_internal] = ACTIONS(3436), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_override] = ACTIONS(3436), - [anon_sym_partial] = ACTIONS(3436), - [anon_sym_protected] = ACTIONS(3436), - [anon_sym_required] = ACTIONS(3436), - [anon_sym_sealed] = ACTIONS(3436), - [anon_sym_virtual] = ACTIONS(3436), - [anon_sym_volatile] = ACTIONS(3436), - [anon_sym_where] = ACTIONS(3436), - [anon_sym_notnull] = ACTIONS(3436), - [anon_sym_unmanaged] = ACTIONS(3436), - [anon_sym_checked] = ACTIONS(3436), - [anon_sym_BANG] = ACTIONS(3438), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_CARET] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3438), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_scoped] = ACTIONS(3436), - [anon_sym_base] = ACTIONS(3436), - [anon_sym_var] = ACTIONS(3436), - [sym_predefined_type] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_unchecked] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_do] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_for] = ACTIONS(3436), - [anon_sym_lock] = ACTIONS(3436), - [anon_sym_yield] = ACTIONS(3436), - [anon_sym_switch] = ACTIONS(3436), - [anon_sym_case] = ACTIONS(3436), - [anon_sym_default] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_when] = ACTIONS(3436), - [anon_sym_await] = ACTIONS(3436), - [anon_sym_foreach] = ACTIONS(3436), - [anon_sym_goto] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_DOT_DOT] = ACTIONS(3438), - [anon_sym_from] = ACTIONS(3436), - [anon_sym_into] = ACTIONS(3436), - [anon_sym_join] = ACTIONS(3436), - [anon_sym_on] = ACTIONS(3436), - [anon_sym_equals] = ACTIONS(3436), - [anon_sym_let] = ACTIONS(3436), - [anon_sym_orderby] = ACTIONS(3436), - [anon_sym_ascending] = ACTIONS(3436), - [anon_sym_descending] = ACTIONS(3436), - [anon_sym_group] = ACTIONS(3436), - [anon_sym_by] = ACTIONS(3436), - [anon_sym_select] = ACTIONS(3436), - [anon_sym_stackalloc] = ACTIONS(3436), - [anon_sym_sizeof] = ACTIONS(3436), - [anon_sym_typeof] = ACTIONS(3436), - [anon_sym___makeref] = ACTIONS(3436), - [anon_sym___reftype] = ACTIONS(3436), - [anon_sym___refvalue] = ACTIONS(3436), - [sym_null_literal] = ACTIONS(3436), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym_integer_literal] = ACTIONS(3436), - [sym_real_literal] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(3438), - [sym_verbatim_string_literal] = ACTIONS(3438), - [sym_grit_metavariable] = ACTIONS(3438), - [aux_sym_preproc_if_token1] = ACTIONS(3438), + [sym__identifier_token] = ACTIONS(3424), + [anon_sym_extern] = ACTIONS(3424), + [anon_sym_alias] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3426), + [anon_sym_global] = ACTIONS(3424), + [anon_sym_using] = ACTIONS(3424), + [anon_sym_unsafe] = ACTIONS(3424), + [anon_sym_static] = ACTIONS(3424), + [anon_sym_LBRACK] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3426), + [anon_sym_return] = ACTIONS(3424), + [anon_sym_ref] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_RBRACE] = ACTIONS(3426), + [anon_sym_delegate] = ACTIONS(3424), + [anon_sym_public] = ACTIONS(3424), + [anon_sym_private] = ACTIONS(3424), + [anon_sym_readonly] = ACTIONS(3424), + [anon_sym_abstract] = ACTIONS(3424), + [anon_sym_async] = ACTIONS(3424), + [anon_sym_const] = ACTIONS(3424), + [anon_sym_file] = ACTIONS(3424), + [anon_sym_fixed] = ACTIONS(3424), + [anon_sym_internal] = ACTIONS(3424), + [anon_sym_new] = ACTIONS(3424), + [anon_sym_override] = ACTIONS(3424), + [anon_sym_partial] = ACTIONS(3424), + [anon_sym_protected] = ACTIONS(3424), + [anon_sym_required] = ACTIONS(3424), + [anon_sym_sealed] = ACTIONS(3424), + [anon_sym_virtual] = ACTIONS(3424), + [anon_sym_volatile] = ACTIONS(3424), + [anon_sym_where] = ACTIONS(3424), + [anon_sym_notnull] = ACTIONS(3424), + [anon_sym_unmanaged] = ACTIONS(3424), + [anon_sym_checked] = ACTIONS(3424), + [anon_sym_TILDE] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(3424), + [anon_sym_scoped] = ACTIONS(3424), + [anon_sym_base] = ACTIONS(3424), + [anon_sym_var] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3426), + [sym_predefined_type] = ACTIONS(3424), + [anon_sym_break] = ACTIONS(3424), + [anon_sym_unchecked] = ACTIONS(3424), + [anon_sym_continue] = ACTIONS(3424), + [anon_sym_do] = ACTIONS(3424), + [anon_sym_while] = ACTIONS(3424), + [anon_sym_for] = ACTIONS(3424), + [anon_sym_lock] = ACTIONS(3424), + [anon_sym_yield] = ACTIONS(3424), + [anon_sym_switch] = ACTIONS(3424), + [anon_sym_case] = ACTIONS(3424), + [anon_sym_default] = ACTIONS(3424), + [anon_sym_throw] = ACTIONS(3424), + [anon_sym_try] = ACTIONS(3424), + [anon_sym_when] = ACTIONS(3424), + [anon_sym_await] = ACTIONS(3424), + [anon_sym_foreach] = ACTIONS(3424), + [anon_sym_goto] = ACTIONS(3424), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3424), + [anon_sym_DOT_DOT] = ACTIONS(3426), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_CARET] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3426), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_from] = ACTIONS(3424), + [anon_sym_into] = ACTIONS(3424), + [anon_sym_join] = ACTIONS(3424), + [anon_sym_on] = ACTIONS(3424), + [anon_sym_equals] = ACTIONS(3424), + [anon_sym_let] = ACTIONS(3424), + [anon_sym_orderby] = ACTIONS(3424), + [anon_sym_ascending] = ACTIONS(3424), + [anon_sym_descending] = ACTIONS(3424), + [anon_sym_group] = ACTIONS(3424), + [anon_sym_by] = ACTIONS(3424), + [anon_sym_select] = ACTIONS(3424), + [anon_sym_stackalloc] = ACTIONS(3424), + [anon_sym_sizeof] = ACTIONS(3424), + [anon_sym_typeof] = ACTIONS(3424), + [anon_sym___makeref] = ACTIONS(3424), + [anon_sym___reftype] = ACTIONS(3424), + [anon_sym___refvalue] = ACTIONS(3424), + [sym_null_literal] = ACTIONS(3424), + [anon_sym_SQUOTE] = ACTIONS(3426), + [sym_integer_literal] = ACTIONS(3424), + [sym_real_literal] = ACTIONS(3426), + [anon_sym_DQUOTE] = ACTIONS(3426), + [sym_verbatim_string_literal] = ACTIONS(3426), + [sym_grit_metavariable] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3426), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405283,10 +405305,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(3438), - [sym_interpolation_verbatim_start] = ACTIONS(3438), - [sym_interpolation_raw_start] = ACTIONS(3438), - [sym_raw_string_start] = ACTIONS(3438), + [sym_interpolation_regular_start] = ACTIONS(3426), + [sym_interpolation_verbatim_start] = ACTIONS(3426), + [sym_interpolation_raw_start] = ACTIONS(3426), + [sym_raw_string_start] = ACTIONS(3426), }, [2151] = { [sym_preproc_region] = STATE(2151), @@ -405298,104 +405320,104 @@ 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(3528), - [anon_sym_extern] = ACTIONS(3528), - [anon_sym_alias] = ACTIONS(3528), - [anon_sym_SEMI] = ACTIONS(3530), - [anon_sym_global] = ACTIONS(3528), - [anon_sym_using] = ACTIONS(3528), - [anon_sym_unsafe] = ACTIONS(3528), - [anon_sym_static] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3530), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_ref] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(3530), - [anon_sym_RBRACE] = ACTIONS(3530), - [anon_sym_delegate] = ACTIONS(3528), - [anon_sym_public] = ACTIONS(3528), - [anon_sym_private] = ACTIONS(3528), - [anon_sym_readonly] = ACTIONS(3528), - [anon_sym_abstract] = ACTIONS(3528), - [anon_sym_async] = ACTIONS(3528), - [anon_sym_const] = ACTIONS(3528), - [anon_sym_file] = ACTIONS(3528), - [anon_sym_fixed] = ACTIONS(3528), - [anon_sym_internal] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_override] = ACTIONS(3528), - [anon_sym_partial] = ACTIONS(3528), - [anon_sym_protected] = ACTIONS(3528), - [anon_sym_required] = ACTIONS(3528), - [anon_sym_sealed] = ACTIONS(3528), - [anon_sym_virtual] = ACTIONS(3528), - [anon_sym_volatile] = ACTIONS(3528), - [anon_sym_where] = ACTIONS(3528), - [anon_sym_notnull] = ACTIONS(3528), - [anon_sym_unmanaged] = ACTIONS(3528), - [anon_sym_checked] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3530), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3530), - [anon_sym_true] = ACTIONS(3528), - [anon_sym_false] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_STAR] = ACTIONS(3530), - [anon_sym_CARET] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(3528), - [anon_sym_scoped] = ACTIONS(3528), - [anon_sym_base] = ACTIONS(3528), - [anon_sym_var] = ACTIONS(3528), - [sym_predefined_type] = ACTIONS(3528), - [anon_sym_break] = ACTIONS(3528), - [anon_sym_unchecked] = ACTIONS(3528), - [anon_sym_continue] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_lock] = ACTIONS(3528), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_switch] = ACTIONS(3528), - [anon_sym_case] = ACTIONS(3528), - [anon_sym_default] = ACTIONS(3528), - [anon_sym_throw] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_when] = ACTIONS(3528), - [anon_sym_await] = ACTIONS(3528), - [anon_sym_foreach] = ACTIONS(3528), - [anon_sym_goto] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_else] = ACTIONS(3528), - [anon_sym_DOT_DOT] = ACTIONS(3530), - [anon_sym_from] = ACTIONS(3528), - [anon_sym_into] = ACTIONS(3528), - [anon_sym_join] = ACTIONS(3528), - [anon_sym_on] = ACTIONS(3528), - [anon_sym_equals] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_orderby] = ACTIONS(3528), - [anon_sym_ascending] = ACTIONS(3528), - [anon_sym_descending] = ACTIONS(3528), - [anon_sym_group] = ACTIONS(3528), - [anon_sym_by] = ACTIONS(3528), - [anon_sym_select] = ACTIONS(3528), - [anon_sym_stackalloc] = ACTIONS(3528), - [anon_sym_sizeof] = ACTIONS(3528), - [anon_sym_typeof] = ACTIONS(3528), - [anon_sym___makeref] = ACTIONS(3528), - [anon_sym___reftype] = ACTIONS(3528), - [anon_sym___refvalue] = ACTIONS(3528), - [sym_null_literal] = ACTIONS(3528), - [anon_sym_SQUOTE] = ACTIONS(3530), - [sym_integer_literal] = ACTIONS(3528), - [sym_real_literal] = ACTIONS(3530), - [anon_sym_DQUOTE] = ACTIONS(3530), - [sym_verbatim_string_literal] = ACTIONS(3530), - [sym_grit_metavariable] = ACTIONS(3530), - [aux_sym_preproc_if_token1] = ACTIONS(3530), + [sym__identifier_token] = ACTIONS(3390), + [anon_sym_extern] = ACTIONS(3390), + [anon_sym_alias] = ACTIONS(3390), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_global] = ACTIONS(3390), + [anon_sym_using] = ACTIONS(3390), + [anon_sym_unsafe] = ACTIONS(3390), + [anon_sym_static] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3390), + [anon_sym_ref] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_RBRACE] = ACTIONS(3392), + [anon_sym_delegate] = ACTIONS(3390), + [anon_sym_public] = ACTIONS(3390), + [anon_sym_private] = ACTIONS(3390), + [anon_sym_readonly] = ACTIONS(3390), + [anon_sym_abstract] = ACTIONS(3390), + [anon_sym_async] = ACTIONS(3390), + [anon_sym_const] = ACTIONS(3390), + [anon_sym_file] = ACTIONS(3390), + [anon_sym_fixed] = ACTIONS(3390), + [anon_sym_internal] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3390), + [anon_sym_override] = ACTIONS(3390), + [anon_sym_partial] = ACTIONS(3390), + [anon_sym_protected] = ACTIONS(3390), + [anon_sym_required] = ACTIONS(3390), + [anon_sym_sealed] = ACTIONS(3390), + [anon_sym_virtual] = ACTIONS(3390), + [anon_sym_volatile] = ACTIONS(3390), + [anon_sym_where] = ACTIONS(3390), + [anon_sym_notnull] = ACTIONS(3390), + [anon_sym_unmanaged] = ACTIONS(3390), + [anon_sym_checked] = ACTIONS(3390), + [anon_sym_TILDE] = ACTIONS(3392), + [anon_sym_this] = ACTIONS(3390), + [anon_sym_scoped] = ACTIONS(3390), + [anon_sym_base] = ACTIONS(3390), + [anon_sym_var] = ACTIONS(3390), + [anon_sym_STAR] = ACTIONS(3392), + [sym_predefined_type] = ACTIONS(3390), + [anon_sym_break] = ACTIONS(3390), + [anon_sym_unchecked] = ACTIONS(3390), + [anon_sym_continue] = ACTIONS(3390), + [anon_sym_do] = ACTIONS(3390), + [anon_sym_while] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3390), + [anon_sym_switch] = ACTIONS(3390), + [anon_sym_case] = ACTIONS(3390), + [anon_sym_default] = ACTIONS(3390), + [anon_sym_throw] = ACTIONS(3390), + [anon_sym_try] = ACTIONS(3390), + [anon_sym_when] = ACTIONS(3390), + [anon_sym_await] = ACTIONS(3390), + [anon_sym_foreach] = ACTIONS(3390), + [anon_sym_goto] = ACTIONS(3390), + [anon_sym_if] = ACTIONS(3390), + [anon_sym_else] = ACTIONS(3390), + [anon_sym_DOT_DOT] = ACTIONS(3392), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_CARET] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3390), + [anon_sym_DASH] = ACTIONS(3390), + [anon_sym_BANG] = ACTIONS(3392), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3390), + [anon_sym_false] = ACTIONS(3390), + [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_stackalloc] = ACTIONS(3390), + [anon_sym_sizeof] = ACTIONS(3390), + [anon_sym_typeof] = ACTIONS(3390), + [anon_sym___makeref] = ACTIONS(3390), + [anon_sym___reftype] = ACTIONS(3390), + [anon_sym___refvalue] = ACTIONS(3390), + [sym_null_literal] = ACTIONS(3390), + [anon_sym_SQUOTE] = ACTIONS(3392), + [sym_integer_literal] = ACTIONS(3390), + [sym_real_literal] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [sym_verbatim_string_literal] = ACTIONS(3392), + [sym_grit_metavariable] = ACTIONS(3392), + [aux_sym_preproc_if_token1] = ACTIONS(3392), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405406,10 +405428,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(3530), - [sym_interpolation_verbatim_start] = ACTIONS(3530), - [sym_interpolation_raw_start] = ACTIONS(3530), - [sym_raw_string_start] = ACTIONS(3530), + [sym_interpolation_regular_start] = ACTIONS(3392), + [sym_interpolation_verbatim_start] = ACTIONS(3392), + [sym_interpolation_raw_start] = ACTIONS(3392), + [sym_raw_string_start] = ACTIONS(3392), }, [2152] = { [sym_preproc_region] = STATE(2152), @@ -405421,104 +405443,104 @@ 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(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_SEMI] = ACTIONS(3430), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_using] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3430), - [anon_sym_LPAREN] = ACTIONS(3430), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3430), - [anon_sym_RBRACE] = ACTIONS(3430), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_readonly] = 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_protected] = 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_checked] = ACTIONS(3428), - [anon_sym_BANG] = ACTIONS(3430), - [anon_sym_TILDE] = ACTIONS(3430), - [anon_sym_PLUS_PLUS] = ACTIONS(3430), - [anon_sym_DASH_DASH] = ACTIONS(3430), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_STAR] = ACTIONS(3430), - [anon_sym_CARET] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3430), - [anon_sym_this] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_base] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_unchecked] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_lock] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_switch] = ACTIONS(3428), - [anon_sym_case] = ACTIONS(3428), - [anon_sym_default] = ACTIONS(3428), - [anon_sym_throw] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_await] = ACTIONS(3428), - [anon_sym_foreach] = ACTIONS(3428), - [anon_sym_goto] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_else] = ACTIONS(3428), - [anon_sym_DOT_DOT] = ACTIONS(3430), - [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_stackalloc] = ACTIONS(3428), - [anon_sym_sizeof] = ACTIONS(3428), - [anon_sym_typeof] = ACTIONS(3428), - [anon_sym___makeref] = ACTIONS(3428), - [anon_sym___reftype] = ACTIONS(3428), - [anon_sym___refvalue] = ACTIONS(3428), - [sym_null_literal] = ACTIONS(3428), - [anon_sym_SQUOTE] = ACTIONS(3430), - [sym_integer_literal] = ACTIONS(3428), - [sym_real_literal] = ACTIONS(3430), - [anon_sym_DQUOTE] = ACTIONS(3430), - [sym_verbatim_string_literal] = ACTIONS(3430), - [sym_grit_metavariable] = ACTIONS(3430), - [aux_sym_preproc_if_token1] = ACTIONS(3430), + [sym__identifier_token] = ACTIONS(3544), + [anon_sym_extern] = ACTIONS(3544), + [anon_sym_alias] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym_global] = ACTIONS(3544), + [anon_sym_using] = ACTIONS(3544), + [anon_sym_unsafe] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3546), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_ref] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym_delegate] = ACTIONS(3544), + [anon_sym_public] = ACTIONS(3544), + [anon_sym_private] = ACTIONS(3544), + [anon_sym_readonly] = ACTIONS(3544), + [anon_sym_abstract] = ACTIONS(3544), + [anon_sym_async] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_file] = ACTIONS(3544), + [anon_sym_fixed] = ACTIONS(3544), + [anon_sym_internal] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_override] = ACTIONS(3544), + [anon_sym_partial] = ACTIONS(3544), + [anon_sym_protected] = ACTIONS(3544), + [anon_sym_required] = ACTIONS(3544), + [anon_sym_sealed] = ACTIONS(3544), + [anon_sym_virtual] = ACTIONS(3544), + [anon_sym_volatile] = ACTIONS(3544), + [anon_sym_where] = ACTIONS(3544), + [anon_sym_notnull] = ACTIONS(3544), + [anon_sym_unmanaged] = ACTIONS(3544), + [anon_sym_checked] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_this] = ACTIONS(3544), + [anon_sym_scoped] = ACTIONS(3544), + [anon_sym_base] = ACTIONS(3544), + [anon_sym_var] = ACTIONS(3544), + [anon_sym_STAR] = ACTIONS(3546), + [sym_predefined_type] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_unchecked] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_lock] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_case] = ACTIONS(3544), + [anon_sym_default] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_when] = ACTIONS(3544), + [anon_sym_await] = ACTIONS(3544), + [anon_sym_foreach] = ACTIONS(3544), + [anon_sym_goto] = ACTIONS(3544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_else] = ACTIONS(3544), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3546), + [anon_sym_CARET] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3544), + [anon_sym_false] = ACTIONS(3544), + [anon_sym_from] = ACTIONS(3544), + [anon_sym_into] = ACTIONS(3544), + [anon_sym_join] = ACTIONS(3544), + [anon_sym_on] = ACTIONS(3544), + [anon_sym_equals] = ACTIONS(3544), + [anon_sym_let] = ACTIONS(3544), + [anon_sym_orderby] = ACTIONS(3544), + [anon_sym_ascending] = ACTIONS(3544), + [anon_sym_descending] = ACTIONS(3544), + [anon_sym_group] = ACTIONS(3544), + [anon_sym_by] = ACTIONS(3544), + [anon_sym_select] = ACTIONS(3544), + [anon_sym_stackalloc] = ACTIONS(3544), + [anon_sym_sizeof] = ACTIONS(3544), + [anon_sym_typeof] = ACTIONS(3544), + [anon_sym___makeref] = ACTIONS(3544), + [anon_sym___reftype] = ACTIONS(3544), + [anon_sym___refvalue] = ACTIONS(3544), + [sym_null_literal] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(3546), + [sym_integer_literal] = ACTIONS(3544), + [sym_real_literal] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [sym_verbatim_string_literal] = ACTIONS(3546), + [sym_grit_metavariable] = ACTIONS(3546), + [aux_sym_preproc_if_token1] = ACTIONS(3546), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405529,10 +405551,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(3430), - [sym_interpolation_verbatim_start] = ACTIONS(3430), - [sym_interpolation_raw_start] = ACTIONS(3430), - [sym_raw_string_start] = ACTIONS(3430), + [sym_interpolation_regular_start] = ACTIONS(3546), + [sym_interpolation_verbatim_start] = ACTIONS(3546), + [sym_interpolation_raw_start] = ACTIONS(3546), + [sym_raw_string_start] = ACTIONS(3546), }, [2153] = { [sym_preproc_region] = STATE(2153), @@ -405544,498 +405566,6 @@ 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(3410), - [anon_sym_extern] = ACTIONS(3410), - [anon_sym_alias] = ACTIONS(3410), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_global] = ACTIONS(3410), - [anon_sym_using] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(3410), - [anon_sym_static] = ACTIONS(3410), - [anon_sym_LBRACK] = ACTIONS(3412), - [anon_sym_LPAREN] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3410), - [anon_sym_ref] = ACTIONS(3410), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_RBRACE] = ACTIONS(3412), - [anon_sym_delegate] = ACTIONS(3410), - [anon_sym_public] = ACTIONS(3410), - [anon_sym_private] = ACTIONS(3410), - [anon_sym_readonly] = ACTIONS(3410), - [anon_sym_abstract] = ACTIONS(3410), - [anon_sym_async] = ACTIONS(3410), - [anon_sym_const] = ACTIONS(3410), - [anon_sym_file] = ACTIONS(3410), - [anon_sym_fixed] = ACTIONS(3410), - [anon_sym_internal] = ACTIONS(3410), - [anon_sym_new] = ACTIONS(3410), - [anon_sym_override] = ACTIONS(3410), - [anon_sym_partial] = ACTIONS(3410), - [anon_sym_protected] = ACTIONS(3410), - [anon_sym_required] = ACTIONS(3410), - [anon_sym_sealed] = ACTIONS(3410), - [anon_sym_virtual] = ACTIONS(3410), - [anon_sym_volatile] = ACTIONS(3410), - [anon_sym_where] = ACTIONS(3410), - [anon_sym_notnull] = ACTIONS(3410), - [anon_sym_unmanaged] = ACTIONS(3410), - [anon_sym_checked] = ACTIONS(3410), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3412), - [anon_sym_DASH_DASH] = ACTIONS(3412), - [anon_sym_true] = ACTIONS(3410), - [anon_sym_false] = ACTIONS(3410), - [anon_sym_PLUS] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_CARET] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_this] = ACTIONS(3410), - [anon_sym_scoped] = ACTIONS(3410), - [anon_sym_base] = ACTIONS(3410), - [anon_sym_var] = ACTIONS(3410), - [sym_predefined_type] = ACTIONS(3410), - [anon_sym_break] = ACTIONS(3410), - [anon_sym_unchecked] = ACTIONS(3410), - [anon_sym_continue] = ACTIONS(3410), - [anon_sym_do] = ACTIONS(3410), - [anon_sym_while] = ACTIONS(3410), - [anon_sym_for] = ACTIONS(3410), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_yield] = ACTIONS(3410), - [anon_sym_switch] = ACTIONS(3410), - [anon_sym_case] = ACTIONS(3410), - [anon_sym_default] = ACTIONS(3410), - [anon_sym_throw] = ACTIONS(3410), - [anon_sym_try] = ACTIONS(3410), - [anon_sym_when] = ACTIONS(3410), - [anon_sym_await] = ACTIONS(3410), - [anon_sym_foreach] = ACTIONS(3410), - [anon_sym_goto] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3410), - [anon_sym_else] = ACTIONS(3410), - [anon_sym_DOT_DOT] = ACTIONS(3412), - [anon_sym_from] = ACTIONS(3410), - [anon_sym_into] = ACTIONS(3410), - [anon_sym_join] = ACTIONS(3410), - [anon_sym_on] = ACTIONS(3410), - [anon_sym_equals] = ACTIONS(3410), - [anon_sym_let] = ACTIONS(3410), - [anon_sym_orderby] = ACTIONS(3410), - [anon_sym_ascending] = ACTIONS(3410), - [anon_sym_descending] = ACTIONS(3410), - [anon_sym_group] = ACTIONS(3410), - [anon_sym_by] = ACTIONS(3410), - [anon_sym_select] = ACTIONS(3410), - [anon_sym_stackalloc] = ACTIONS(3410), - [anon_sym_sizeof] = ACTIONS(3410), - [anon_sym_typeof] = ACTIONS(3410), - [anon_sym___makeref] = ACTIONS(3410), - [anon_sym___reftype] = ACTIONS(3410), - [anon_sym___refvalue] = ACTIONS(3410), - [sym_null_literal] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3412), - [sym_integer_literal] = ACTIONS(3410), - [sym_real_literal] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [sym_verbatim_string_literal] = ACTIONS(3412), - [sym_grit_metavariable] = ACTIONS(3412), - [aux_sym_preproc_if_token1] = ACTIONS(3412), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3412), - [sym_interpolation_verbatim_start] = ACTIONS(3412), - [sym_interpolation_raw_start] = ACTIONS(3412), - [sym_raw_string_start] = ACTIONS(3412), - }, - [2154] = { - [sym_preproc_region] = STATE(2154), - [sym_preproc_endregion] = STATE(2154), - [sym_preproc_line] = STATE(2154), - [sym_preproc_pragma] = STATE(2154), - [sym_preproc_nullable] = STATE(2154), - [sym_preproc_error] = STATE(2154), - [sym_preproc_warning] = STATE(2154), - [sym_preproc_define] = STATE(2154), - [sym_preproc_undef] = STATE(2154), - [sym__identifier_token] = ACTIONS(3398), - [anon_sym_extern] = ACTIONS(3398), - [anon_sym_alias] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_global] = ACTIONS(3398), - [anon_sym_using] = ACTIONS(3398), - [anon_sym_unsafe] = ACTIONS(3398), - [anon_sym_static] = ACTIONS(3398), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_LPAREN] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3398), - [anon_sym_ref] = ACTIONS(3398), - [anon_sym_LBRACE] = ACTIONS(3400), - [anon_sym_RBRACE] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3398), - [anon_sym_public] = ACTIONS(3398), - [anon_sym_private] = ACTIONS(3398), - [anon_sym_readonly] = ACTIONS(3398), - [anon_sym_abstract] = ACTIONS(3398), - [anon_sym_async] = ACTIONS(3398), - [anon_sym_const] = ACTIONS(3398), - [anon_sym_file] = ACTIONS(3398), - [anon_sym_fixed] = ACTIONS(3398), - [anon_sym_internal] = ACTIONS(3398), - [anon_sym_new] = ACTIONS(3398), - [anon_sym_override] = ACTIONS(3398), - [anon_sym_partial] = ACTIONS(3398), - [anon_sym_protected] = ACTIONS(3398), - [anon_sym_required] = ACTIONS(3398), - [anon_sym_sealed] = ACTIONS(3398), - [anon_sym_virtual] = ACTIONS(3398), - [anon_sym_volatile] = ACTIONS(3398), - [anon_sym_where] = ACTIONS(3398), - [anon_sym_notnull] = ACTIONS(3398), - [anon_sym_unmanaged] = ACTIONS(3398), - [anon_sym_checked] = ACTIONS(3398), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(3400), - [anon_sym_PLUS_PLUS] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3400), - [anon_sym_true] = ACTIONS(3398), - [anon_sym_false] = ACTIONS(3398), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_CARET] = ACTIONS(3400), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(3398), - [anon_sym_scoped] = ACTIONS(3398), - [anon_sym_base] = ACTIONS(3398), - [anon_sym_var] = ACTIONS(3398), - [sym_predefined_type] = ACTIONS(3398), - [anon_sym_break] = ACTIONS(3398), - [anon_sym_unchecked] = ACTIONS(3398), - [anon_sym_continue] = ACTIONS(3398), - [anon_sym_do] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3398), - [anon_sym_for] = ACTIONS(3398), - [anon_sym_lock] = ACTIONS(3398), - [anon_sym_yield] = ACTIONS(3398), - [anon_sym_switch] = ACTIONS(3398), - [anon_sym_case] = ACTIONS(3398), - [anon_sym_default] = ACTIONS(3398), - [anon_sym_throw] = ACTIONS(3398), - [anon_sym_try] = ACTIONS(3398), - [anon_sym_when] = ACTIONS(3398), - [anon_sym_await] = ACTIONS(3398), - [anon_sym_foreach] = ACTIONS(3398), - [anon_sym_goto] = ACTIONS(3398), - [anon_sym_if] = ACTIONS(3398), - [anon_sym_else] = ACTIONS(3398), - [anon_sym_DOT_DOT] = ACTIONS(3400), - [anon_sym_from] = ACTIONS(3398), - [anon_sym_into] = ACTIONS(3398), - [anon_sym_join] = ACTIONS(3398), - [anon_sym_on] = ACTIONS(3398), - [anon_sym_equals] = ACTIONS(3398), - [anon_sym_let] = ACTIONS(3398), - [anon_sym_orderby] = ACTIONS(3398), - [anon_sym_ascending] = ACTIONS(3398), - [anon_sym_descending] = ACTIONS(3398), - [anon_sym_group] = ACTIONS(3398), - [anon_sym_by] = ACTIONS(3398), - [anon_sym_select] = ACTIONS(3398), - [anon_sym_stackalloc] = ACTIONS(3398), - [anon_sym_sizeof] = ACTIONS(3398), - [anon_sym_typeof] = ACTIONS(3398), - [anon_sym___makeref] = ACTIONS(3398), - [anon_sym___reftype] = ACTIONS(3398), - [anon_sym___refvalue] = ACTIONS(3398), - [sym_null_literal] = ACTIONS(3398), - [anon_sym_SQUOTE] = ACTIONS(3400), - [sym_integer_literal] = ACTIONS(3398), - [sym_real_literal] = ACTIONS(3400), - [anon_sym_DQUOTE] = ACTIONS(3400), - [sym_verbatim_string_literal] = ACTIONS(3400), - [sym_grit_metavariable] = ACTIONS(3400), - [aux_sym_preproc_if_token1] = ACTIONS(3400), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3400), - [sym_interpolation_verbatim_start] = ACTIONS(3400), - [sym_interpolation_raw_start] = ACTIONS(3400), - [sym_raw_string_start] = ACTIONS(3400), - }, - [2155] = { - [sym_preproc_region] = STATE(2155), - [sym_preproc_endregion] = STATE(2155), - [sym_preproc_line] = STATE(2155), - [sym_preproc_pragma] = STATE(2155), - [sym_preproc_nullable] = STATE(2155), - [sym_preproc_error] = STATE(2155), - [sym_preproc_warning] = STATE(2155), - [sym_preproc_define] = STATE(2155), - [sym_preproc_undef] = STATE(2155), - [sym__identifier_token] = ACTIONS(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_public] = ACTIONS(3183), - [anon_sym_private] = ACTIONS(3183), - [anon_sym_readonly] = 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_protected] = 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), - [sym_grit_metavariable] = 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), - }, - [2156] = { - [sym_preproc_region] = STATE(2156), - [sym_preproc_endregion] = STATE(2156), - [sym_preproc_line] = STATE(2156), - [sym_preproc_pragma] = STATE(2156), - [sym_preproc_nullable] = STATE(2156), - [sym_preproc_error] = STATE(2156), - [sym_preproc_warning] = STATE(2156), - [sym_preproc_define] = STATE(2156), - [sym_preproc_undef] = STATE(2156), - [sym__identifier_token] = ACTIONS(3464), - [anon_sym_extern] = ACTIONS(3464), - [anon_sym_alias] = ACTIONS(3464), - [anon_sym_SEMI] = ACTIONS(3466), - [anon_sym_global] = ACTIONS(3464), - [anon_sym_using] = ACTIONS(3464), - [anon_sym_unsafe] = ACTIONS(3464), - [anon_sym_static] = ACTIONS(3464), - [anon_sym_LBRACK] = ACTIONS(3466), - [anon_sym_LPAREN] = ACTIONS(3466), - [anon_sym_return] = ACTIONS(3464), - [anon_sym_ref] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_RBRACE] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3464), - [anon_sym_public] = ACTIONS(3464), - [anon_sym_private] = ACTIONS(3464), - [anon_sym_readonly] = ACTIONS(3464), - [anon_sym_abstract] = ACTIONS(3464), - [anon_sym_async] = ACTIONS(3464), - [anon_sym_const] = ACTIONS(3464), - [anon_sym_file] = ACTIONS(3464), - [anon_sym_fixed] = ACTIONS(3464), - [anon_sym_internal] = ACTIONS(3464), - [anon_sym_new] = ACTIONS(3464), - [anon_sym_override] = ACTIONS(3464), - [anon_sym_partial] = ACTIONS(3464), - [anon_sym_protected] = ACTIONS(3464), - [anon_sym_required] = ACTIONS(3464), - [anon_sym_sealed] = ACTIONS(3464), - [anon_sym_virtual] = ACTIONS(3464), - [anon_sym_volatile] = ACTIONS(3464), - [anon_sym_where] = ACTIONS(3464), - [anon_sym_notnull] = ACTIONS(3464), - [anon_sym_unmanaged] = ACTIONS(3464), - [anon_sym_checked] = ACTIONS(3464), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_TILDE] = ACTIONS(3466), - [anon_sym_PLUS_PLUS] = ACTIONS(3466), - [anon_sym_DASH_DASH] = ACTIONS(3466), - [anon_sym_true] = ACTIONS(3464), - [anon_sym_false] = ACTIONS(3464), - [anon_sym_PLUS] = ACTIONS(3464), - [anon_sym_DASH] = ACTIONS(3464), - [anon_sym_STAR] = ACTIONS(3466), - [anon_sym_CARET] = ACTIONS(3466), - [anon_sym_AMP] = ACTIONS(3466), - [anon_sym_this] = ACTIONS(3464), - [anon_sym_scoped] = ACTIONS(3464), - [anon_sym_base] = ACTIONS(3464), - [anon_sym_var] = ACTIONS(3464), - [sym_predefined_type] = ACTIONS(3464), - [anon_sym_break] = ACTIONS(3464), - [anon_sym_unchecked] = ACTIONS(3464), - [anon_sym_continue] = ACTIONS(3464), - [anon_sym_do] = ACTIONS(3464), - [anon_sym_while] = ACTIONS(3464), - [anon_sym_for] = ACTIONS(3464), - [anon_sym_lock] = ACTIONS(3464), - [anon_sym_yield] = ACTIONS(3464), - [anon_sym_switch] = ACTIONS(3464), - [anon_sym_case] = ACTIONS(3464), - [anon_sym_default] = ACTIONS(3464), - [anon_sym_throw] = ACTIONS(3464), - [anon_sym_try] = ACTIONS(3464), - [anon_sym_when] = ACTIONS(3464), - [anon_sym_await] = ACTIONS(3464), - [anon_sym_foreach] = ACTIONS(3464), - [anon_sym_goto] = ACTIONS(3464), - [anon_sym_if] = ACTIONS(3464), - [anon_sym_else] = ACTIONS(3464), - [anon_sym_DOT_DOT] = ACTIONS(3466), - [anon_sym_from] = ACTIONS(3464), - [anon_sym_into] = ACTIONS(3464), - [anon_sym_join] = ACTIONS(3464), - [anon_sym_on] = ACTIONS(3464), - [anon_sym_equals] = ACTIONS(3464), - [anon_sym_let] = ACTIONS(3464), - [anon_sym_orderby] = ACTIONS(3464), - [anon_sym_ascending] = ACTIONS(3464), - [anon_sym_descending] = ACTIONS(3464), - [anon_sym_group] = ACTIONS(3464), - [anon_sym_by] = ACTIONS(3464), - [anon_sym_select] = ACTIONS(3464), - [anon_sym_stackalloc] = ACTIONS(3464), - [anon_sym_sizeof] = ACTIONS(3464), - [anon_sym_typeof] = ACTIONS(3464), - [anon_sym___makeref] = ACTIONS(3464), - [anon_sym___reftype] = ACTIONS(3464), - [anon_sym___refvalue] = ACTIONS(3464), - [sym_null_literal] = ACTIONS(3464), - [anon_sym_SQUOTE] = ACTIONS(3466), - [sym_integer_literal] = ACTIONS(3464), - [sym_real_literal] = ACTIONS(3466), - [anon_sym_DQUOTE] = ACTIONS(3466), - [sym_verbatim_string_literal] = ACTIONS(3466), - [sym_grit_metavariable] = ACTIONS(3466), - [aux_sym_preproc_if_token1] = ACTIONS(3466), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3466), - [sym_interpolation_verbatim_start] = ACTIONS(3466), - [sym_interpolation_raw_start] = ACTIONS(3466), - [sym_raw_string_start] = ACTIONS(3466), - }, - [2157] = { - [sym_preproc_region] = STATE(2157), - [sym_preproc_endregion] = STATE(2157), - [sym_preproc_line] = STATE(2157), - [sym_preproc_pragma] = STATE(2157), - [sym_preproc_nullable] = STATE(2157), - [sym_preproc_error] = STATE(2157), - [sym_preproc_warning] = STATE(2157), - [sym_preproc_define] = STATE(2157), - [sym_preproc_undef] = STATE(2157), [sym__identifier_token] = ACTIONS(3576), [anon_sym_extern] = ACTIONS(3576), [anon_sym_alias] = ACTIONS(3576), @@ -406072,21 +405602,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3576), [anon_sym_unmanaged] = ACTIONS(3576), [anon_sym_checked] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3578), [anon_sym_TILDE] = ACTIONS(3578), - [anon_sym_PLUS_PLUS] = ACTIONS(3578), - [anon_sym_DASH_DASH] = ACTIONS(3578), - [anon_sym_true] = ACTIONS(3576), - [anon_sym_false] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(3578), - [anon_sym_CARET] = ACTIONS(3578), - [anon_sym_AMP] = ACTIONS(3578), [anon_sym_this] = ACTIONS(3576), [anon_sym_scoped] = ACTIONS(3576), [anon_sym_base] = ACTIONS(3576), [anon_sym_var] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3578), [sym_predefined_type] = ACTIONS(3576), [anon_sym_break] = ACTIONS(3576), [anon_sym_unchecked] = ACTIONS(3576), @@ -406108,6 +405629,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3576), [anon_sym_else] = ACTIONS(3576), [anon_sym_DOT_DOT] = ACTIONS(3578), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_CARET] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [anon_sym_true] = ACTIONS(3576), + [anon_sym_false] = ACTIONS(3576), [anon_sym_from] = ACTIONS(3576), [anon_sym_into] = ACTIONS(3576), [anon_sym_join] = ACTIONS(3576), @@ -406149,237 +405679,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3578), [sym_raw_string_start] = ACTIONS(3578), }, - [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(3432), - [anon_sym_extern] = ACTIONS(3432), - [anon_sym_alias] = ACTIONS(3432), - [anon_sym_SEMI] = ACTIONS(3434), - [anon_sym_global] = ACTIONS(3432), - [anon_sym_using] = ACTIONS(3432), - [anon_sym_unsafe] = ACTIONS(3432), - [anon_sym_static] = ACTIONS(3432), - [anon_sym_LBRACK] = ACTIONS(3434), - [anon_sym_LPAREN] = ACTIONS(3434), - [anon_sym_return] = ACTIONS(3432), - [anon_sym_ref] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3434), - [anon_sym_RBRACE] = ACTIONS(3434), - [anon_sym_delegate] = ACTIONS(3432), - [anon_sym_public] = ACTIONS(3432), - [anon_sym_private] = ACTIONS(3432), - [anon_sym_readonly] = ACTIONS(3432), - [anon_sym_abstract] = ACTIONS(3432), - [anon_sym_async] = ACTIONS(3432), - [anon_sym_const] = ACTIONS(3432), - [anon_sym_file] = ACTIONS(3432), - [anon_sym_fixed] = ACTIONS(3432), - [anon_sym_internal] = ACTIONS(3432), - [anon_sym_new] = ACTIONS(3432), - [anon_sym_override] = ACTIONS(3432), - [anon_sym_partial] = ACTIONS(3432), - [anon_sym_protected] = ACTIONS(3432), - [anon_sym_required] = ACTIONS(3432), - [anon_sym_sealed] = ACTIONS(3432), - [anon_sym_virtual] = ACTIONS(3432), - [anon_sym_volatile] = ACTIONS(3432), - [anon_sym_where] = ACTIONS(3432), - [anon_sym_notnull] = ACTIONS(3432), - [anon_sym_unmanaged] = ACTIONS(3432), - [anon_sym_checked] = ACTIONS(3432), - [anon_sym_BANG] = ACTIONS(3434), - [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_PLUS_PLUS] = ACTIONS(3434), - [anon_sym_DASH_DASH] = ACTIONS(3434), - [anon_sym_true] = ACTIONS(3432), - [anon_sym_false] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(3434), - [anon_sym_CARET] = ACTIONS(3434), - [anon_sym_AMP] = ACTIONS(3434), - [anon_sym_this] = ACTIONS(3432), - [anon_sym_scoped] = ACTIONS(3432), - [anon_sym_base] = ACTIONS(3432), - [anon_sym_var] = ACTIONS(3432), - [sym_predefined_type] = ACTIONS(3432), - [anon_sym_break] = ACTIONS(3432), - [anon_sym_unchecked] = ACTIONS(3432), - [anon_sym_continue] = ACTIONS(3432), - [anon_sym_do] = ACTIONS(3432), - [anon_sym_while] = ACTIONS(3432), - [anon_sym_for] = ACTIONS(3432), - [anon_sym_lock] = ACTIONS(3432), - [anon_sym_yield] = ACTIONS(3432), - [anon_sym_switch] = ACTIONS(3432), - [anon_sym_case] = ACTIONS(3432), - [anon_sym_default] = ACTIONS(3432), - [anon_sym_throw] = ACTIONS(3432), - [anon_sym_try] = ACTIONS(3432), - [anon_sym_when] = ACTIONS(3432), - [anon_sym_await] = ACTIONS(3432), - [anon_sym_foreach] = ACTIONS(3432), - [anon_sym_goto] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3432), - [anon_sym_else] = ACTIONS(3432), - [anon_sym_DOT_DOT] = ACTIONS(3434), - [anon_sym_from] = ACTIONS(3432), - [anon_sym_into] = ACTIONS(3432), - [anon_sym_join] = ACTIONS(3432), - [anon_sym_on] = ACTIONS(3432), - [anon_sym_equals] = ACTIONS(3432), - [anon_sym_let] = ACTIONS(3432), - [anon_sym_orderby] = ACTIONS(3432), - [anon_sym_ascending] = ACTIONS(3432), - [anon_sym_descending] = ACTIONS(3432), - [anon_sym_group] = ACTIONS(3432), - [anon_sym_by] = ACTIONS(3432), - [anon_sym_select] = ACTIONS(3432), - [anon_sym_stackalloc] = ACTIONS(3432), - [anon_sym_sizeof] = ACTIONS(3432), - [anon_sym_typeof] = ACTIONS(3432), - [anon_sym___makeref] = ACTIONS(3432), - [anon_sym___reftype] = ACTIONS(3432), - [anon_sym___refvalue] = ACTIONS(3432), - [sym_null_literal] = ACTIONS(3432), - [anon_sym_SQUOTE] = ACTIONS(3434), - [sym_integer_literal] = ACTIONS(3432), - [sym_real_literal] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(3434), - [sym_verbatim_string_literal] = ACTIONS(3434), - [sym_grit_metavariable] = ACTIONS(3434), - [aux_sym_preproc_if_token1] = ACTIONS(3434), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3434), - [sym_interpolation_verbatim_start] = ACTIONS(3434), - [sym_interpolation_raw_start] = ACTIONS(3434), - [sym_raw_string_start] = ACTIONS(3434), - }, - [2159] = { - [sym_preproc_region] = STATE(2159), - [sym_preproc_endregion] = STATE(2159), - [sym_preproc_line] = STATE(2159), - [sym_preproc_pragma] = STATE(2159), - [sym_preproc_nullable] = STATE(2159), - [sym_preproc_error] = STATE(2159), - [sym_preproc_warning] = STATE(2159), - [sym_preproc_define] = STATE(2159), - [sym_preproc_undef] = STATE(2159), - [sym__identifier_token] = ACTIONS(3536), - [anon_sym_extern] = ACTIONS(3536), - [anon_sym_alias] = ACTIONS(3536), - [anon_sym_SEMI] = ACTIONS(3538), - [anon_sym_global] = ACTIONS(3536), - [anon_sym_using] = ACTIONS(3536), - [anon_sym_unsafe] = ACTIONS(3536), - [anon_sym_static] = ACTIONS(3536), - [anon_sym_LBRACK] = ACTIONS(3538), - [anon_sym_LPAREN] = ACTIONS(3538), - [anon_sym_return] = ACTIONS(3536), - [anon_sym_ref] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3538), - [anon_sym_RBRACE] = ACTIONS(3538), - [anon_sym_delegate] = ACTIONS(3536), - [anon_sym_public] = ACTIONS(3536), - [anon_sym_private] = ACTIONS(3536), - [anon_sym_readonly] = ACTIONS(3536), - [anon_sym_abstract] = ACTIONS(3536), - [anon_sym_async] = ACTIONS(3536), - [anon_sym_const] = ACTIONS(3536), - [anon_sym_file] = ACTIONS(3536), - [anon_sym_fixed] = ACTIONS(3536), - [anon_sym_internal] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3536), - [anon_sym_override] = ACTIONS(3536), - [anon_sym_partial] = ACTIONS(3536), - [anon_sym_protected] = ACTIONS(3536), - [anon_sym_required] = ACTIONS(3536), - [anon_sym_sealed] = ACTIONS(3536), - [anon_sym_virtual] = ACTIONS(3536), - [anon_sym_volatile] = ACTIONS(3536), - [anon_sym_where] = ACTIONS(3536), - [anon_sym_notnull] = ACTIONS(3536), - [anon_sym_unmanaged] = ACTIONS(3536), - [anon_sym_checked] = ACTIONS(3536), - [anon_sym_BANG] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_PLUS_PLUS] = ACTIONS(3538), - [anon_sym_DASH_DASH] = ACTIONS(3538), - [anon_sym_true] = ACTIONS(3536), - [anon_sym_false] = ACTIONS(3536), - [anon_sym_PLUS] = ACTIONS(3536), - [anon_sym_DASH] = ACTIONS(3536), - [anon_sym_STAR] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3538), - [anon_sym_this] = ACTIONS(3536), - [anon_sym_scoped] = ACTIONS(3536), - [anon_sym_base] = ACTIONS(3536), - [anon_sym_var] = ACTIONS(3536), - [sym_predefined_type] = ACTIONS(3536), - [anon_sym_break] = ACTIONS(3536), - [anon_sym_unchecked] = ACTIONS(3536), - [anon_sym_continue] = ACTIONS(3536), - [anon_sym_do] = ACTIONS(3536), - [anon_sym_while] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3536), - [anon_sym_lock] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3536), - [anon_sym_switch] = ACTIONS(3536), - [anon_sym_case] = ACTIONS(3536), - [anon_sym_default] = ACTIONS(3536), - [anon_sym_throw] = ACTIONS(3536), - [anon_sym_try] = ACTIONS(3536), - [anon_sym_when] = ACTIONS(3536), - [anon_sym_await] = ACTIONS(3536), - [anon_sym_foreach] = ACTIONS(3536), - [anon_sym_goto] = ACTIONS(3536), - [anon_sym_if] = ACTIONS(3536), - [anon_sym_else] = ACTIONS(3536), - [anon_sym_DOT_DOT] = ACTIONS(3538), - [anon_sym_from] = ACTIONS(3536), - [anon_sym_into] = ACTIONS(3536), - [anon_sym_join] = ACTIONS(3536), - [anon_sym_on] = ACTIONS(3536), - [anon_sym_equals] = ACTIONS(3536), - [anon_sym_let] = ACTIONS(3536), - [anon_sym_orderby] = ACTIONS(3536), - [anon_sym_ascending] = ACTIONS(3536), - [anon_sym_descending] = ACTIONS(3536), - [anon_sym_group] = ACTIONS(3536), - [anon_sym_by] = ACTIONS(3536), - [anon_sym_select] = ACTIONS(3536), - [anon_sym_stackalloc] = ACTIONS(3536), - [anon_sym_sizeof] = ACTIONS(3536), - [anon_sym_typeof] = ACTIONS(3536), - [anon_sym___makeref] = ACTIONS(3536), - [anon_sym___reftype] = ACTIONS(3536), - [anon_sym___refvalue] = ACTIONS(3536), - [sym_null_literal] = ACTIONS(3536), - [anon_sym_SQUOTE] = ACTIONS(3538), - [sym_integer_literal] = ACTIONS(3536), - [sym_real_literal] = ACTIONS(3538), - [anon_sym_DQUOTE] = ACTIONS(3538), - [sym_verbatim_string_literal] = ACTIONS(3538), - [sym_grit_metavariable] = ACTIONS(3538), - [aux_sym_preproc_if_token1] = ACTIONS(3538), + [2154] = { + [sym_preproc_region] = STATE(2154), + [sym_preproc_endregion] = STATE(2154), + [sym_preproc_line] = STATE(2154), + [sym_preproc_pragma] = STATE(2154), + [sym_preproc_nullable] = STATE(2154), + [sym_preproc_error] = STATE(2154), + [sym_preproc_warning] = STATE(2154), + [sym_preproc_define] = STATE(2154), + [sym_preproc_undef] = STATE(2154), + [sym__identifier_token] = ACTIONS(3532), + [anon_sym_extern] = ACTIONS(3532), + [anon_sym_alias] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym_global] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3532), + [anon_sym_unsafe] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3532), + [anon_sym_ref] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_RBRACE] = ACTIONS(3534), + [anon_sym_delegate] = ACTIONS(3532), + [anon_sym_public] = ACTIONS(3532), + [anon_sym_private] = ACTIONS(3532), + [anon_sym_readonly] = ACTIONS(3532), + [anon_sym_abstract] = ACTIONS(3532), + [anon_sym_async] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_file] = ACTIONS(3532), + [anon_sym_fixed] = ACTIONS(3532), + [anon_sym_internal] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_override] = ACTIONS(3532), + [anon_sym_partial] = ACTIONS(3532), + [anon_sym_protected] = ACTIONS(3532), + [anon_sym_required] = ACTIONS(3532), + [anon_sym_sealed] = ACTIONS(3532), + [anon_sym_virtual] = ACTIONS(3532), + [anon_sym_volatile] = ACTIONS(3532), + [anon_sym_where] = ACTIONS(3532), + [anon_sym_notnull] = ACTIONS(3532), + [anon_sym_unmanaged] = ACTIONS(3532), + [anon_sym_checked] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_this] = ACTIONS(3532), + [anon_sym_scoped] = ACTIONS(3532), + [anon_sym_base] = ACTIONS(3532), + [anon_sym_var] = ACTIONS(3532), + [anon_sym_STAR] = ACTIONS(3534), + [sym_predefined_type] = ACTIONS(3532), + [anon_sym_break] = ACTIONS(3532), + [anon_sym_unchecked] = ACTIONS(3532), + [anon_sym_continue] = ACTIONS(3532), + [anon_sym_do] = ACTIONS(3532), + [anon_sym_while] = ACTIONS(3532), + [anon_sym_for] = ACTIONS(3532), + [anon_sym_lock] = ACTIONS(3532), + [anon_sym_yield] = ACTIONS(3532), + [anon_sym_switch] = ACTIONS(3532), + [anon_sym_case] = ACTIONS(3532), + [anon_sym_default] = ACTIONS(3532), + [anon_sym_throw] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3532), + [anon_sym_when] = ACTIONS(3532), + [anon_sym_await] = ACTIONS(3532), + [anon_sym_foreach] = ACTIONS(3532), + [anon_sym_goto] = ACTIONS(3532), + [anon_sym_if] = ACTIONS(3532), + [anon_sym_else] = ACTIONS(3532), + [anon_sym_DOT_DOT] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_CARET] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3534), + [anon_sym_true] = ACTIONS(3532), + [anon_sym_false] = ACTIONS(3532), + [anon_sym_from] = ACTIONS(3532), + [anon_sym_into] = ACTIONS(3532), + [anon_sym_join] = ACTIONS(3532), + [anon_sym_on] = ACTIONS(3532), + [anon_sym_equals] = ACTIONS(3532), + [anon_sym_let] = ACTIONS(3532), + [anon_sym_orderby] = ACTIONS(3532), + [anon_sym_ascending] = ACTIONS(3532), + [anon_sym_descending] = ACTIONS(3532), + [anon_sym_group] = ACTIONS(3532), + [anon_sym_by] = ACTIONS(3532), + [anon_sym_select] = ACTIONS(3532), + [anon_sym_stackalloc] = ACTIONS(3532), + [anon_sym_sizeof] = ACTIONS(3532), + [anon_sym_typeof] = ACTIONS(3532), + [anon_sym___makeref] = ACTIONS(3532), + [anon_sym___reftype] = ACTIONS(3532), + [anon_sym___refvalue] = ACTIONS(3532), + [sym_null_literal] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3534), + [sym_integer_literal] = ACTIONS(3532), + [sym_real_literal] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [sym_verbatim_string_literal] = ACTIONS(3534), + [sym_grit_metavariable] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406390,21 +405797,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3538), - [sym_interpolation_verbatim_start] = ACTIONS(3538), - [sym_interpolation_raw_start] = ACTIONS(3538), - [sym_raw_string_start] = ACTIONS(3538), + [sym_interpolation_regular_start] = ACTIONS(3534), + [sym_interpolation_verbatim_start] = ACTIONS(3534), + [sym_interpolation_raw_start] = ACTIONS(3534), + [sym_raw_string_start] = ACTIONS(3534), }, - [2160] = { - [sym_preproc_region] = STATE(2160), - [sym_preproc_endregion] = STATE(2160), - [sym_preproc_line] = STATE(2160), - [sym_preproc_pragma] = STATE(2160), - [sym_preproc_nullable] = STATE(2160), - [sym_preproc_error] = STATE(2160), - [sym_preproc_warning] = STATE(2160), - [sym_preproc_define] = STATE(2160), - [sym_preproc_undef] = STATE(2160), + [2155] = { + [sym_preproc_region] = STATE(2155), + [sym_preproc_endregion] = STATE(2155), + [sym_preproc_line] = STATE(2155), + [sym_preproc_pragma] = STATE(2155), + [sym_preproc_nullable] = STATE(2155), + [sym_preproc_error] = STATE(2155), + [sym_preproc_warning] = STATE(2155), + [sym_preproc_define] = STATE(2155), + [sym_preproc_undef] = STATE(2155), [sym__identifier_token] = ACTIONS(3548), [anon_sym_extern] = ACTIONS(3548), [anon_sym_alias] = ACTIONS(3548), @@ -406441,21 +405848,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3548), [anon_sym_unmanaged] = ACTIONS(3548), [anon_sym_checked] = ACTIONS(3548), - [anon_sym_BANG] = ACTIONS(3550), [anon_sym_TILDE] = ACTIONS(3550), - [anon_sym_PLUS_PLUS] = ACTIONS(3550), - [anon_sym_DASH_DASH] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3548), - [anon_sym_false] = ACTIONS(3548), - [anon_sym_PLUS] = ACTIONS(3548), - [anon_sym_DASH] = ACTIONS(3548), - [anon_sym_STAR] = ACTIONS(3550), - [anon_sym_CARET] = ACTIONS(3550), - [anon_sym_AMP] = ACTIONS(3550), [anon_sym_this] = ACTIONS(3548), [anon_sym_scoped] = ACTIONS(3548), [anon_sym_base] = ACTIONS(3548), [anon_sym_var] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), [sym_predefined_type] = ACTIONS(3548), [anon_sym_break] = ACTIONS(3548), [anon_sym_unchecked] = ACTIONS(3548), @@ -406477,6 +405875,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(3548), [anon_sym_else] = ACTIONS(3548), [anon_sym_DOT_DOT] = ACTIONS(3550), + [anon_sym_AMP] = ACTIONS(3550), + [anon_sym_CARET] = ACTIONS(3550), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_DASH_DASH] = ACTIONS(3550), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), [anon_sym_from] = ACTIONS(3548), [anon_sym_into] = ACTIONS(3548), [anon_sym_join] = ACTIONS(3548), @@ -406518,114 +405925,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3550), [sym_raw_string_start] = ACTIONS(3550), }, - [2161] = { - [sym_preproc_region] = STATE(2161), - [sym_preproc_endregion] = STATE(2161), - [sym_preproc_line] = STATE(2161), - [sym_preproc_pragma] = STATE(2161), - [sym_preproc_nullable] = STATE(2161), - [sym_preproc_error] = STATE(2161), - [sym_preproc_warning] = STATE(2161), - [sym_preproc_define] = STATE(2161), - [sym_preproc_undef] = STATE(2161), - [sym__identifier_token] = ACTIONS(3568), - [anon_sym_extern] = ACTIONS(3568), - [anon_sym_alias] = ACTIONS(3568), - [anon_sym_SEMI] = ACTIONS(3570), - [anon_sym_global] = ACTIONS(3568), - [anon_sym_using] = ACTIONS(3568), - [anon_sym_unsafe] = ACTIONS(3568), - [anon_sym_static] = ACTIONS(3568), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3568), - [anon_sym_ref] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_RBRACE] = ACTIONS(3570), - [anon_sym_delegate] = ACTIONS(3568), - [anon_sym_public] = ACTIONS(3568), - [anon_sym_private] = ACTIONS(3568), - [anon_sym_readonly] = ACTIONS(3568), - [anon_sym_abstract] = ACTIONS(3568), - [anon_sym_async] = ACTIONS(3568), - [anon_sym_const] = ACTIONS(3568), - [anon_sym_file] = ACTIONS(3568), - [anon_sym_fixed] = ACTIONS(3568), - [anon_sym_internal] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3568), - [anon_sym_override] = ACTIONS(3568), - [anon_sym_partial] = ACTIONS(3568), - [anon_sym_protected] = ACTIONS(3568), - [anon_sym_required] = ACTIONS(3568), - [anon_sym_sealed] = ACTIONS(3568), - [anon_sym_virtual] = ACTIONS(3568), - [anon_sym_volatile] = ACTIONS(3568), - [anon_sym_where] = ACTIONS(3568), - [anon_sym_notnull] = ACTIONS(3568), - [anon_sym_unmanaged] = ACTIONS(3568), - [anon_sym_checked] = ACTIONS(3568), - [anon_sym_BANG] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [anon_sym_true] = ACTIONS(3568), - [anon_sym_false] = ACTIONS(3568), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_CARET] = ACTIONS(3570), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_this] = ACTIONS(3568), - [anon_sym_scoped] = ACTIONS(3568), - [anon_sym_base] = ACTIONS(3568), - [anon_sym_var] = ACTIONS(3568), - [sym_predefined_type] = ACTIONS(3568), - [anon_sym_break] = ACTIONS(3568), - [anon_sym_unchecked] = ACTIONS(3568), - [anon_sym_continue] = ACTIONS(3568), - [anon_sym_do] = ACTIONS(3568), - [anon_sym_while] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3568), - [anon_sym_lock] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3568), - [anon_sym_switch] = ACTIONS(3568), - [anon_sym_case] = ACTIONS(3568), - [anon_sym_default] = ACTIONS(3568), - [anon_sym_throw] = ACTIONS(3568), - [anon_sym_try] = ACTIONS(3568), - [anon_sym_when] = ACTIONS(3568), - [anon_sym_await] = ACTIONS(3568), - [anon_sym_foreach] = ACTIONS(3568), - [anon_sym_goto] = ACTIONS(3568), - [anon_sym_if] = ACTIONS(3568), - [anon_sym_else] = ACTIONS(3568), - [anon_sym_DOT_DOT] = ACTIONS(3570), - [anon_sym_from] = ACTIONS(3568), - [anon_sym_into] = ACTIONS(3568), - [anon_sym_join] = ACTIONS(3568), - [anon_sym_on] = ACTIONS(3568), - [anon_sym_equals] = ACTIONS(3568), - [anon_sym_let] = ACTIONS(3568), - [anon_sym_orderby] = ACTIONS(3568), - [anon_sym_ascending] = ACTIONS(3568), - [anon_sym_descending] = ACTIONS(3568), - [anon_sym_group] = ACTIONS(3568), - [anon_sym_by] = ACTIONS(3568), - [anon_sym_select] = ACTIONS(3568), - [anon_sym_stackalloc] = ACTIONS(3568), - [anon_sym_sizeof] = ACTIONS(3568), - [anon_sym_typeof] = ACTIONS(3568), - [anon_sym___makeref] = ACTIONS(3568), - [anon_sym___reftype] = ACTIONS(3568), - [anon_sym___refvalue] = ACTIONS(3568), - [sym_null_literal] = ACTIONS(3568), - [anon_sym_SQUOTE] = ACTIONS(3570), - [sym_integer_literal] = ACTIONS(3568), - [sym_real_literal] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [sym_verbatim_string_literal] = ACTIONS(3570), - [sym_grit_metavariable] = ACTIONS(3570), - [aux_sym_preproc_if_token1] = ACTIONS(3570), + [2156] = { + [sym_preproc_region] = STATE(2156), + [sym_preproc_endregion] = STATE(2156), + [sym_preproc_line] = STATE(2156), + [sym_preproc_pragma] = STATE(2156), + [sym_preproc_nullable] = STATE(2156), + [sym_preproc_error] = STATE(2156), + [sym_preproc_warning] = STATE(2156), + [sym_preproc_define] = STATE(2156), + [sym_preproc_undef] = STATE(2156), + [sym__identifier_token] = ACTIONS(3540), + [anon_sym_extern] = ACTIONS(3540), + [anon_sym_alias] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym_global] = ACTIONS(3540), + [anon_sym_using] = ACTIONS(3540), + [anon_sym_unsafe] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_ref] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_RBRACE] = ACTIONS(3542), + [anon_sym_delegate] = ACTIONS(3540), + [anon_sym_public] = ACTIONS(3540), + [anon_sym_private] = ACTIONS(3540), + [anon_sym_readonly] = ACTIONS(3540), + [anon_sym_abstract] = ACTIONS(3540), + [anon_sym_async] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_file] = ACTIONS(3540), + [anon_sym_fixed] = ACTIONS(3540), + [anon_sym_internal] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_override] = ACTIONS(3540), + [anon_sym_partial] = ACTIONS(3540), + [anon_sym_protected] = ACTIONS(3540), + [anon_sym_required] = ACTIONS(3540), + [anon_sym_sealed] = ACTIONS(3540), + [anon_sym_virtual] = ACTIONS(3540), + [anon_sym_volatile] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(3540), + [anon_sym_notnull] = ACTIONS(3540), + [anon_sym_unmanaged] = ACTIONS(3540), + [anon_sym_checked] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_this] = ACTIONS(3540), + [anon_sym_scoped] = ACTIONS(3540), + [anon_sym_base] = ACTIONS(3540), + [anon_sym_var] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [sym_predefined_type] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_unchecked] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_lock] = ACTIONS(3540), + [anon_sym_yield] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_case] = ACTIONS(3540), + [anon_sym_default] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_when] = ACTIONS(3540), + [anon_sym_await] = ACTIONS(3540), + [anon_sym_foreach] = ACTIONS(3540), + [anon_sym_goto] = ACTIONS(3540), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_else] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_CARET] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3542), + [anon_sym_true] = ACTIONS(3540), + [anon_sym_false] = ACTIONS(3540), + [anon_sym_from] = ACTIONS(3540), + [anon_sym_into] = ACTIONS(3540), + [anon_sym_join] = ACTIONS(3540), + [anon_sym_on] = ACTIONS(3540), + [anon_sym_equals] = ACTIONS(3540), + [anon_sym_let] = ACTIONS(3540), + [anon_sym_orderby] = ACTIONS(3540), + [anon_sym_ascending] = ACTIONS(3540), + [anon_sym_descending] = ACTIONS(3540), + [anon_sym_group] = ACTIONS(3540), + [anon_sym_by] = ACTIONS(3540), + [anon_sym_select] = ACTIONS(3540), + [anon_sym_stackalloc] = ACTIONS(3540), + [anon_sym_sizeof] = ACTIONS(3540), + [anon_sym_typeof] = ACTIONS(3540), + [anon_sym___makeref] = ACTIONS(3540), + [anon_sym___reftype] = ACTIONS(3540), + [anon_sym___refvalue] = ACTIONS(3540), + [sym_null_literal] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3542), + [sym_integer_literal] = ACTIONS(3540), + [sym_real_literal] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [sym_verbatim_string_literal] = ACTIONS(3542), + [sym_grit_metavariable] = ACTIONS(3542), + [aux_sym_preproc_if_token1] = ACTIONS(3542), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406636,119 +406043,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3570), - [sym_interpolation_verbatim_start] = ACTIONS(3570), - [sym_interpolation_raw_start] = ACTIONS(3570), - [sym_raw_string_start] = ACTIONS(3570), + [sym_interpolation_regular_start] = ACTIONS(3542), + [sym_interpolation_verbatim_start] = ACTIONS(3542), + [sym_interpolation_raw_start] = ACTIONS(3542), + [sym_raw_string_start] = ACTIONS(3542), }, - [2162] = { - [sym_preproc_region] = STATE(2162), - [sym_preproc_endregion] = STATE(2162), - [sym_preproc_line] = STATE(2162), - [sym_preproc_pragma] = STATE(2162), - [sym_preproc_nullable] = STATE(2162), - [sym_preproc_error] = STATE(2162), - [sym_preproc_warning] = STATE(2162), - [sym_preproc_define] = STATE(2162), - [sym_preproc_undef] = STATE(2162), - [sym__identifier_token] = ACTIONS(3504), - [anon_sym_extern] = ACTIONS(3504), - [anon_sym_alias] = ACTIONS(3504), - [anon_sym_SEMI] = ACTIONS(3506), - [anon_sym_global] = ACTIONS(3504), - [anon_sym_using] = ACTIONS(3504), - [anon_sym_unsafe] = ACTIONS(3504), - [anon_sym_static] = ACTIONS(3504), - [anon_sym_LBRACK] = ACTIONS(3506), - [anon_sym_LPAREN] = ACTIONS(3506), - [anon_sym_return] = ACTIONS(3504), - [anon_sym_ref] = ACTIONS(3504), - [anon_sym_LBRACE] = ACTIONS(3506), - [anon_sym_RBRACE] = ACTIONS(3506), - [anon_sym_delegate] = ACTIONS(3504), - [anon_sym_public] = ACTIONS(3504), - [anon_sym_private] = ACTIONS(3504), - [anon_sym_readonly] = ACTIONS(3504), - [anon_sym_abstract] = ACTIONS(3504), - [anon_sym_async] = ACTIONS(3504), - [anon_sym_const] = ACTIONS(3504), - [anon_sym_file] = ACTIONS(3504), - [anon_sym_fixed] = ACTIONS(3504), - [anon_sym_internal] = ACTIONS(3504), - [anon_sym_new] = ACTIONS(3504), - [anon_sym_override] = ACTIONS(3504), - [anon_sym_partial] = ACTIONS(3504), - [anon_sym_protected] = ACTIONS(3504), - [anon_sym_required] = ACTIONS(3504), - [anon_sym_sealed] = ACTIONS(3504), - [anon_sym_virtual] = ACTIONS(3504), - [anon_sym_volatile] = ACTIONS(3504), - [anon_sym_where] = ACTIONS(3504), - [anon_sym_notnull] = ACTIONS(3504), - [anon_sym_unmanaged] = ACTIONS(3504), - [anon_sym_checked] = ACTIONS(3504), - [anon_sym_BANG] = ACTIONS(3506), - [anon_sym_TILDE] = ACTIONS(3506), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3506), - [anon_sym_true] = ACTIONS(3504), - [anon_sym_false] = ACTIONS(3504), - [anon_sym_PLUS] = ACTIONS(3504), - [anon_sym_DASH] = ACTIONS(3504), - [anon_sym_STAR] = ACTIONS(3506), - [anon_sym_CARET] = ACTIONS(3506), - [anon_sym_AMP] = ACTIONS(3506), - [anon_sym_this] = ACTIONS(3504), - [anon_sym_scoped] = ACTIONS(3504), - [anon_sym_base] = ACTIONS(3504), - [anon_sym_var] = ACTIONS(3504), - [sym_predefined_type] = ACTIONS(3504), - [anon_sym_break] = ACTIONS(3504), - [anon_sym_unchecked] = ACTIONS(3504), - [anon_sym_continue] = ACTIONS(3504), - [anon_sym_do] = ACTIONS(3504), - [anon_sym_while] = ACTIONS(3504), - [anon_sym_for] = ACTIONS(3504), - [anon_sym_lock] = ACTIONS(3504), - [anon_sym_yield] = ACTIONS(3504), - [anon_sym_switch] = ACTIONS(3504), - [anon_sym_case] = ACTIONS(3504), - [anon_sym_default] = ACTIONS(3504), - [anon_sym_throw] = ACTIONS(3504), - [anon_sym_try] = ACTIONS(3504), - [anon_sym_when] = ACTIONS(3504), - [anon_sym_await] = ACTIONS(3504), - [anon_sym_foreach] = ACTIONS(3504), - [anon_sym_goto] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(3504), - [anon_sym_else] = ACTIONS(3504), - [anon_sym_DOT_DOT] = ACTIONS(3506), - [anon_sym_from] = ACTIONS(3504), - [anon_sym_into] = ACTIONS(3504), - [anon_sym_join] = ACTIONS(3504), - [anon_sym_on] = ACTIONS(3504), - [anon_sym_equals] = ACTIONS(3504), - [anon_sym_let] = ACTIONS(3504), - [anon_sym_orderby] = ACTIONS(3504), - [anon_sym_ascending] = ACTIONS(3504), - [anon_sym_descending] = ACTIONS(3504), - [anon_sym_group] = ACTIONS(3504), - [anon_sym_by] = ACTIONS(3504), - [anon_sym_select] = ACTIONS(3504), - [anon_sym_stackalloc] = ACTIONS(3504), - [anon_sym_sizeof] = ACTIONS(3504), - [anon_sym_typeof] = ACTIONS(3504), - [anon_sym___makeref] = ACTIONS(3504), - [anon_sym___reftype] = ACTIONS(3504), - [anon_sym___refvalue] = ACTIONS(3504), - [sym_null_literal] = ACTIONS(3504), - [anon_sym_SQUOTE] = ACTIONS(3506), - [sym_integer_literal] = ACTIONS(3504), - [sym_real_literal] = ACTIONS(3506), - [anon_sym_DQUOTE] = ACTIONS(3506), - [sym_verbatim_string_literal] = ACTIONS(3506), - [sym_grit_metavariable] = ACTIONS(3506), - [aux_sym_preproc_if_token1] = ACTIONS(3506), + [2157] = { + [sym_preproc_region] = STATE(2157), + [sym_preproc_endregion] = STATE(2157), + [sym_preproc_line] = STATE(2157), + [sym_preproc_pragma] = STATE(2157), + [sym_preproc_nullable] = STATE(2157), + [sym_preproc_error] = STATE(2157), + [sym_preproc_warning] = STATE(2157), + [sym_preproc_define] = STATE(2157), + [sym_preproc_undef] = STATE(2157), + [sym__identifier_token] = ACTIONS(3508), + [anon_sym_extern] = ACTIONS(3508), + [anon_sym_alias] = ACTIONS(3508), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_global] = ACTIONS(3508), + [anon_sym_using] = ACTIONS(3508), + [anon_sym_unsafe] = ACTIONS(3508), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3508), + [anon_sym_ref] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3510), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_delegate] = ACTIONS(3508), + [anon_sym_public] = ACTIONS(3508), + [anon_sym_private] = ACTIONS(3508), + [anon_sym_readonly] = ACTIONS(3508), + [anon_sym_abstract] = ACTIONS(3508), + [anon_sym_async] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_file] = ACTIONS(3508), + [anon_sym_fixed] = ACTIONS(3508), + [anon_sym_internal] = ACTIONS(3508), + [anon_sym_new] = ACTIONS(3508), + [anon_sym_override] = ACTIONS(3508), + [anon_sym_partial] = ACTIONS(3508), + [anon_sym_protected] = ACTIONS(3508), + [anon_sym_required] = ACTIONS(3508), + [anon_sym_sealed] = ACTIONS(3508), + [anon_sym_virtual] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3508), + [anon_sym_where] = ACTIONS(3508), + [anon_sym_notnull] = ACTIONS(3508), + [anon_sym_unmanaged] = ACTIONS(3508), + [anon_sym_checked] = ACTIONS(3508), + [anon_sym_TILDE] = ACTIONS(3510), + [anon_sym_this] = ACTIONS(3508), + [anon_sym_scoped] = ACTIONS(3508), + [anon_sym_base] = ACTIONS(3508), + [anon_sym_var] = ACTIONS(3508), + [anon_sym_STAR] = ACTIONS(3510), + [sym_predefined_type] = ACTIONS(3508), + [anon_sym_break] = ACTIONS(3508), + [anon_sym_unchecked] = ACTIONS(3508), + [anon_sym_continue] = ACTIONS(3508), + [anon_sym_do] = ACTIONS(3508), + [anon_sym_while] = ACTIONS(3508), + [anon_sym_for] = ACTIONS(3508), + [anon_sym_lock] = ACTIONS(3508), + [anon_sym_yield] = ACTIONS(3508), + [anon_sym_switch] = ACTIONS(3508), + [anon_sym_case] = ACTIONS(3508), + [anon_sym_default] = ACTIONS(3508), + [anon_sym_throw] = ACTIONS(3508), + [anon_sym_try] = ACTIONS(3508), + [anon_sym_when] = ACTIONS(3508), + [anon_sym_await] = ACTIONS(3508), + [anon_sym_foreach] = ACTIONS(3508), + [anon_sym_goto] = ACTIONS(3508), + [anon_sym_if] = ACTIONS(3508), + [anon_sym_else] = ACTIONS(3508), + [anon_sym_DOT_DOT] = ACTIONS(3510), + [anon_sym_AMP] = ACTIONS(3510), + [anon_sym_CARET] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3508), + [anon_sym_DASH] = ACTIONS(3508), + [anon_sym_BANG] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_true] = ACTIONS(3508), + [anon_sym_false] = ACTIONS(3508), + [anon_sym_from] = ACTIONS(3508), + [anon_sym_into] = ACTIONS(3508), + [anon_sym_join] = ACTIONS(3508), + [anon_sym_on] = ACTIONS(3508), + [anon_sym_equals] = ACTIONS(3508), + [anon_sym_let] = ACTIONS(3508), + [anon_sym_orderby] = ACTIONS(3508), + [anon_sym_ascending] = ACTIONS(3508), + [anon_sym_descending] = ACTIONS(3508), + [anon_sym_group] = ACTIONS(3508), + [anon_sym_by] = ACTIONS(3508), + [anon_sym_select] = ACTIONS(3508), + [anon_sym_stackalloc] = ACTIONS(3508), + [anon_sym_sizeof] = ACTIONS(3508), + [anon_sym_typeof] = ACTIONS(3508), + [anon_sym___makeref] = ACTIONS(3508), + [anon_sym___reftype] = ACTIONS(3508), + [anon_sym___refvalue] = ACTIONS(3508), + [sym_null_literal] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3510), + [sym_integer_literal] = ACTIONS(3508), + [sym_real_literal] = ACTIONS(3510), + [anon_sym_DQUOTE] = ACTIONS(3510), + [sym_verbatim_string_literal] = ACTIONS(3510), + [sym_grit_metavariable] = ACTIONS(3510), + [aux_sym_preproc_if_token1] = ACTIONS(3510), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406759,119 +406166,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3506), - [sym_interpolation_verbatim_start] = ACTIONS(3506), - [sym_interpolation_raw_start] = ACTIONS(3506), - [sym_raw_string_start] = ACTIONS(3506), + [sym_interpolation_regular_start] = ACTIONS(3510), + [sym_interpolation_verbatim_start] = ACTIONS(3510), + [sym_interpolation_raw_start] = ACTIONS(3510), + [sym_raw_string_start] = ACTIONS(3510), }, - [2163] = { - [sym_preproc_region] = STATE(2163), - [sym_preproc_endregion] = STATE(2163), - [sym_preproc_line] = STATE(2163), - [sym_preproc_pragma] = STATE(2163), - [sym_preproc_nullable] = STATE(2163), - [sym_preproc_error] = STATE(2163), - [sym_preproc_warning] = STATE(2163), - [sym_preproc_define] = STATE(2163), - [sym_preproc_undef] = STATE(2163), - [sym__identifier_token] = ACTIONS(3424), - [anon_sym_extern] = ACTIONS(3424), - [anon_sym_alias] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3426), - [anon_sym_global] = ACTIONS(3424), - [anon_sym_using] = ACTIONS(3424), - [anon_sym_unsafe] = ACTIONS(3424), - [anon_sym_static] = ACTIONS(3424), - [anon_sym_LBRACK] = ACTIONS(3426), - [anon_sym_LPAREN] = ACTIONS(3426), - [anon_sym_return] = ACTIONS(3424), - [anon_sym_ref] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_RBRACE] = ACTIONS(3426), - [anon_sym_delegate] = ACTIONS(3424), - [anon_sym_public] = ACTIONS(3424), - [anon_sym_private] = ACTIONS(3424), - [anon_sym_readonly] = ACTIONS(3424), - [anon_sym_abstract] = ACTIONS(3424), - [anon_sym_async] = ACTIONS(3424), - [anon_sym_const] = ACTIONS(3424), - [anon_sym_file] = ACTIONS(3424), - [anon_sym_fixed] = ACTIONS(3424), - [anon_sym_internal] = ACTIONS(3424), - [anon_sym_new] = ACTIONS(3424), - [anon_sym_override] = ACTIONS(3424), - [anon_sym_partial] = ACTIONS(3424), - [anon_sym_protected] = ACTIONS(3424), - [anon_sym_required] = ACTIONS(3424), - [anon_sym_sealed] = ACTIONS(3424), - [anon_sym_virtual] = ACTIONS(3424), - [anon_sym_volatile] = ACTIONS(3424), - [anon_sym_where] = ACTIONS(3424), - [anon_sym_notnull] = ACTIONS(3424), - [anon_sym_unmanaged] = ACTIONS(3424), - [anon_sym_checked] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3426), - [anon_sym_TILDE] = ACTIONS(3426), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(3426), - [anon_sym_CARET] = ACTIONS(3426), - [anon_sym_AMP] = ACTIONS(3426), - [anon_sym_this] = ACTIONS(3424), - [anon_sym_scoped] = ACTIONS(3424), - [anon_sym_base] = ACTIONS(3424), - [anon_sym_var] = ACTIONS(3424), - [sym_predefined_type] = ACTIONS(3424), - [anon_sym_break] = ACTIONS(3424), - [anon_sym_unchecked] = ACTIONS(3424), - [anon_sym_continue] = ACTIONS(3424), - [anon_sym_do] = ACTIONS(3424), - [anon_sym_while] = ACTIONS(3424), - [anon_sym_for] = ACTIONS(3424), - [anon_sym_lock] = ACTIONS(3424), - [anon_sym_yield] = ACTIONS(3424), - [anon_sym_switch] = ACTIONS(3424), - [anon_sym_case] = ACTIONS(3424), - [anon_sym_default] = ACTIONS(3424), - [anon_sym_throw] = ACTIONS(3424), - [anon_sym_try] = ACTIONS(3424), - [anon_sym_when] = ACTIONS(3424), - [anon_sym_await] = ACTIONS(3424), - [anon_sym_foreach] = ACTIONS(3424), - [anon_sym_goto] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3424), - [anon_sym_else] = ACTIONS(3424), - [anon_sym_DOT_DOT] = ACTIONS(3426), - [anon_sym_from] = ACTIONS(3424), - [anon_sym_into] = ACTIONS(3424), - [anon_sym_join] = ACTIONS(3424), - [anon_sym_on] = ACTIONS(3424), - [anon_sym_equals] = ACTIONS(3424), - [anon_sym_let] = ACTIONS(3424), - [anon_sym_orderby] = ACTIONS(3424), - [anon_sym_ascending] = ACTIONS(3424), - [anon_sym_descending] = ACTIONS(3424), - [anon_sym_group] = ACTIONS(3424), - [anon_sym_by] = ACTIONS(3424), - [anon_sym_select] = ACTIONS(3424), - [anon_sym_stackalloc] = ACTIONS(3424), - [anon_sym_sizeof] = ACTIONS(3424), - [anon_sym_typeof] = ACTIONS(3424), - [anon_sym___makeref] = ACTIONS(3424), - [anon_sym___reftype] = ACTIONS(3424), - [anon_sym___refvalue] = ACTIONS(3424), - [sym_null_literal] = ACTIONS(3424), - [anon_sym_SQUOTE] = ACTIONS(3426), - [sym_integer_literal] = ACTIONS(3424), - [sym_real_literal] = ACTIONS(3426), - [anon_sym_DQUOTE] = ACTIONS(3426), - [sym_verbatim_string_literal] = ACTIONS(3426), - [sym_grit_metavariable] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3426), + [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(3496), + [anon_sym_extern] = ACTIONS(3496), + [anon_sym_alias] = ACTIONS(3496), + [anon_sym_SEMI] = ACTIONS(3498), + [anon_sym_global] = ACTIONS(3496), + [anon_sym_using] = ACTIONS(3496), + [anon_sym_unsafe] = ACTIONS(3496), + [anon_sym_static] = ACTIONS(3496), + [anon_sym_LBRACK] = ACTIONS(3498), + [anon_sym_LPAREN] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_ref] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3498), + [anon_sym_RBRACE] = ACTIONS(3498), + [anon_sym_delegate] = ACTIONS(3496), + [anon_sym_public] = ACTIONS(3496), + [anon_sym_private] = ACTIONS(3496), + [anon_sym_readonly] = ACTIONS(3496), + [anon_sym_abstract] = ACTIONS(3496), + [anon_sym_async] = ACTIONS(3496), + [anon_sym_const] = ACTIONS(3496), + [anon_sym_file] = ACTIONS(3496), + [anon_sym_fixed] = ACTIONS(3496), + [anon_sym_internal] = ACTIONS(3496), + [anon_sym_new] = ACTIONS(3496), + [anon_sym_override] = ACTIONS(3496), + [anon_sym_partial] = ACTIONS(3496), + [anon_sym_protected] = ACTIONS(3496), + [anon_sym_required] = ACTIONS(3496), + [anon_sym_sealed] = ACTIONS(3496), + [anon_sym_virtual] = ACTIONS(3496), + [anon_sym_volatile] = ACTIONS(3496), + [anon_sym_where] = ACTIONS(3496), + [anon_sym_notnull] = ACTIONS(3496), + [anon_sym_unmanaged] = ACTIONS(3496), + [anon_sym_checked] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(3498), + [anon_sym_this] = ACTIONS(3496), + [anon_sym_scoped] = ACTIONS(3496), + [anon_sym_base] = ACTIONS(3496), + [anon_sym_var] = ACTIONS(3496), + [anon_sym_STAR] = ACTIONS(3498), + [sym_predefined_type] = ACTIONS(3496), + [anon_sym_break] = ACTIONS(3496), + [anon_sym_unchecked] = ACTIONS(3496), + [anon_sym_continue] = ACTIONS(3496), + [anon_sym_do] = ACTIONS(3496), + [anon_sym_while] = ACTIONS(3496), + [anon_sym_for] = ACTIONS(3496), + [anon_sym_lock] = ACTIONS(3496), + [anon_sym_yield] = ACTIONS(3496), + [anon_sym_switch] = ACTIONS(3496), + [anon_sym_case] = ACTIONS(3496), + [anon_sym_default] = ACTIONS(3496), + [anon_sym_throw] = ACTIONS(3496), + [anon_sym_try] = ACTIONS(3496), + [anon_sym_when] = ACTIONS(3496), + [anon_sym_await] = ACTIONS(3496), + [anon_sym_foreach] = ACTIONS(3496), + [anon_sym_goto] = ACTIONS(3496), + [anon_sym_if] = ACTIONS(3496), + [anon_sym_else] = ACTIONS(3496), + [anon_sym_DOT_DOT] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3498), + [anon_sym_CARET] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_true] = ACTIONS(3496), + [anon_sym_false] = ACTIONS(3496), + [anon_sym_from] = ACTIONS(3496), + [anon_sym_into] = ACTIONS(3496), + [anon_sym_join] = ACTIONS(3496), + [anon_sym_on] = ACTIONS(3496), + [anon_sym_equals] = ACTIONS(3496), + [anon_sym_let] = ACTIONS(3496), + [anon_sym_orderby] = ACTIONS(3496), + [anon_sym_ascending] = ACTIONS(3496), + [anon_sym_descending] = ACTIONS(3496), + [anon_sym_group] = ACTIONS(3496), + [anon_sym_by] = ACTIONS(3496), + [anon_sym_select] = ACTIONS(3496), + [anon_sym_stackalloc] = ACTIONS(3496), + [anon_sym_sizeof] = ACTIONS(3496), + [anon_sym_typeof] = ACTIONS(3496), + [anon_sym___makeref] = ACTIONS(3496), + [anon_sym___reftype] = ACTIONS(3496), + [anon_sym___refvalue] = ACTIONS(3496), + [sym_null_literal] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(3498), + [sym_integer_literal] = ACTIONS(3496), + [sym_real_literal] = ACTIONS(3498), + [anon_sym_DQUOTE] = ACTIONS(3498), + [sym_verbatim_string_literal] = ACTIONS(3498), + [sym_grit_metavariable] = ACTIONS(3498), + [aux_sym_preproc_if_token1] = ACTIONS(3498), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406882,119 +406289,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3426), - [sym_interpolation_verbatim_start] = ACTIONS(3426), - [sym_interpolation_raw_start] = ACTIONS(3426), - [sym_raw_string_start] = ACTIONS(3426), + [sym_interpolation_regular_start] = ACTIONS(3498), + [sym_interpolation_verbatim_start] = ACTIONS(3498), + [sym_interpolation_raw_start] = ACTIONS(3498), + [sym_raw_string_start] = ACTIONS(3498), }, - [2164] = { - [sym_preproc_region] = STATE(2164), - [sym_preproc_endregion] = STATE(2164), - [sym_preproc_line] = STATE(2164), - [sym_preproc_pragma] = STATE(2164), - [sym_preproc_nullable] = STATE(2164), - [sym_preproc_error] = STATE(2164), - [sym_preproc_warning] = STATE(2164), - [sym_preproc_define] = STATE(2164), - [sym_preproc_undef] = STATE(2164), - [sym__identifier_token] = ACTIONS(3472), - [anon_sym_extern] = ACTIONS(3472), - [anon_sym_alias] = ACTIONS(3472), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym_global] = ACTIONS(3472), - [anon_sym_using] = ACTIONS(3472), - [anon_sym_unsafe] = ACTIONS(3472), - [anon_sym_static] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3472), - [anon_sym_ref] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_RBRACE] = ACTIONS(3474), - [anon_sym_delegate] = ACTIONS(3472), - [anon_sym_public] = ACTIONS(3472), - [anon_sym_private] = ACTIONS(3472), - [anon_sym_readonly] = ACTIONS(3472), - [anon_sym_abstract] = ACTIONS(3472), - [anon_sym_async] = ACTIONS(3472), - [anon_sym_const] = ACTIONS(3472), - [anon_sym_file] = ACTIONS(3472), - [anon_sym_fixed] = ACTIONS(3472), - [anon_sym_internal] = ACTIONS(3472), - [anon_sym_new] = ACTIONS(3472), - [anon_sym_override] = ACTIONS(3472), - [anon_sym_partial] = ACTIONS(3472), - [anon_sym_protected] = ACTIONS(3472), - [anon_sym_required] = ACTIONS(3472), - [anon_sym_sealed] = ACTIONS(3472), - [anon_sym_virtual] = ACTIONS(3472), - [anon_sym_volatile] = ACTIONS(3472), - [anon_sym_where] = ACTIONS(3472), - [anon_sym_notnull] = ACTIONS(3472), - [anon_sym_unmanaged] = ACTIONS(3472), - [anon_sym_checked] = ACTIONS(3472), - [anon_sym_BANG] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3474), - [anon_sym_PLUS_PLUS] = ACTIONS(3474), - [anon_sym_DASH_DASH] = ACTIONS(3474), - [anon_sym_true] = ACTIONS(3472), - [anon_sym_false] = ACTIONS(3472), - [anon_sym_PLUS] = ACTIONS(3472), - [anon_sym_DASH] = ACTIONS(3472), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_CARET] = ACTIONS(3474), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym_this] = ACTIONS(3472), - [anon_sym_scoped] = ACTIONS(3472), - [anon_sym_base] = ACTIONS(3472), - [anon_sym_var] = ACTIONS(3472), - [sym_predefined_type] = ACTIONS(3472), - [anon_sym_break] = ACTIONS(3472), - [anon_sym_unchecked] = ACTIONS(3472), - [anon_sym_continue] = ACTIONS(3472), - [anon_sym_do] = ACTIONS(3472), - [anon_sym_while] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3472), - [anon_sym_lock] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3472), - [anon_sym_switch] = ACTIONS(3472), - [anon_sym_case] = ACTIONS(3472), - [anon_sym_default] = ACTIONS(3472), - [anon_sym_throw] = ACTIONS(3472), - [anon_sym_try] = ACTIONS(3472), - [anon_sym_when] = ACTIONS(3472), - [anon_sym_await] = ACTIONS(3472), - [anon_sym_foreach] = ACTIONS(3472), - [anon_sym_goto] = ACTIONS(3472), - [anon_sym_if] = ACTIONS(3472), - [anon_sym_else] = ACTIONS(3472), - [anon_sym_DOT_DOT] = ACTIONS(3474), - [anon_sym_from] = ACTIONS(3472), - [anon_sym_into] = ACTIONS(3472), - [anon_sym_join] = ACTIONS(3472), - [anon_sym_on] = ACTIONS(3472), - [anon_sym_equals] = ACTIONS(3472), - [anon_sym_let] = ACTIONS(3472), - [anon_sym_orderby] = ACTIONS(3472), - [anon_sym_ascending] = ACTIONS(3472), - [anon_sym_descending] = ACTIONS(3472), - [anon_sym_group] = ACTIONS(3472), - [anon_sym_by] = ACTIONS(3472), - [anon_sym_select] = ACTIONS(3472), - [anon_sym_stackalloc] = ACTIONS(3472), - [anon_sym_sizeof] = ACTIONS(3472), - [anon_sym_typeof] = ACTIONS(3472), - [anon_sym___makeref] = ACTIONS(3472), - [anon_sym___reftype] = ACTIONS(3472), - [anon_sym___refvalue] = ACTIONS(3472), - [sym_null_literal] = ACTIONS(3472), - [anon_sym_SQUOTE] = ACTIONS(3474), - [sym_integer_literal] = ACTIONS(3472), - [sym_real_literal] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [sym_verbatim_string_literal] = ACTIONS(3474), - [sym_grit_metavariable] = ACTIONS(3474), - [aux_sym_preproc_if_token1] = ACTIONS(3474), + [2159] = { + [sym_preproc_region] = STATE(2159), + [sym_preproc_endregion] = STATE(2159), + [sym_preproc_line] = STATE(2159), + [sym_preproc_pragma] = STATE(2159), + [sym_preproc_nullable] = STATE(2159), + [sym_preproc_error] = STATE(2159), + [sym_preproc_warning] = STATE(2159), + [sym_preproc_define] = STATE(2159), + [sym_preproc_undef] = STATE(2159), + [sym__identifier_token] = ACTIONS(3428), + [anon_sym_extern] = ACTIONS(3428), + [anon_sym_alias] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(3430), + [anon_sym_global] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3428), + [anon_sym_unsafe] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3430), + [anon_sym_LPAREN] = ACTIONS(3430), + [anon_sym_return] = ACTIONS(3428), + [anon_sym_ref] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3430), + [anon_sym_RBRACE] = ACTIONS(3430), + [anon_sym_delegate] = ACTIONS(3428), + [anon_sym_public] = ACTIONS(3428), + [anon_sym_private] = ACTIONS(3428), + [anon_sym_readonly] = 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_protected] = 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_checked] = ACTIONS(3428), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_this] = ACTIONS(3428), + [anon_sym_scoped] = ACTIONS(3428), + [anon_sym_base] = ACTIONS(3428), + [anon_sym_var] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3430), + [sym_predefined_type] = ACTIONS(3428), + [anon_sym_break] = ACTIONS(3428), + [anon_sym_unchecked] = ACTIONS(3428), + [anon_sym_continue] = ACTIONS(3428), + [anon_sym_do] = ACTIONS(3428), + [anon_sym_while] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3428), + [anon_sym_lock] = ACTIONS(3428), + [anon_sym_yield] = ACTIONS(3428), + [anon_sym_switch] = ACTIONS(3428), + [anon_sym_case] = ACTIONS(3428), + [anon_sym_default] = ACTIONS(3428), + [anon_sym_throw] = ACTIONS(3428), + [anon_sym_try] = ACTIONS(3428), + [anon_sym_when] = ACTIONS(3428), + [anon_sym_await] = ACTIONS(3428), + [anon_sym_foreach] = ACTIONS(3428), + [anon_sym_goto] = ACTIONS(3428), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_else] = ACTIONS(3428), + [anon_sym_DOT_DOT] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_CARET] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_BANG] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3430), + [anon_sym_DASH_DASH] = ACTIONS(3430), + [anon_sym_true] = ACTIONS(3428), + [anon_sym_false] = 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_stackalloc] = ACTIONS(3428), + [anon_sym_sizeof] = ACTIONS(3428), + [anon_sym_typeof] = ACTIONS(3428), + [anon_sym___makeref] = ACTIONS(3428), + [anon_sym___reftype] = ACTIONS(3428), + [anon_sym___refvalue] = ACTIONS(3428), + [sym_null_literal] = ACTIONS(3428), + [anon_sym_SQUOTE] = ACTIONS(3430), + [sym_integer_literal] = ACTIONS(3428), + [sym_real_literal] = ACTIONS(3430), + [anon_sym_DQUOTE] = ACTIONS(3430), + [sym_verbatim_string_literal] = ACTIONS(3430), + [sym_grit_metavariable] = ACTIONS(3430), + [aux_sym_preproc_if_token1] = ACTIONS(3430), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407005,122 +406412,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3474), - [sym_interpolation_verbatim_start] = ACTIONS(3474), - [sym_interpolation_raw_start] = ACTIONS(3474), - [sym_raw_string_start] = ACTIONS(3474), + [sym_interpolation_regular_start] = ACTIONS(3430), + [sym_interpolation_verbatim_start] = ACTIONS(3430), + [sym_interpolation_raw_start] = ACTIONS(3430), + [sym_raw_string_start] = ACTIONS(3430), }, - [2165] = { - [sym_preproc_region] = STATE(2165), - [sym_preproc_endregion] = STATE(2165), - [sym_preproc_line] = STATE(2165), - [sym_preproc_pragma] = STATE(2165), - [sym_preproc_nullable] = STATE(2165), - [sym_preproc_error] = STATE(2165), - [sym_preproc_warning] = STATE(2165), - [sym_preproc_define] = STATE(2165), - [sym_preproc_undef] = STATE(2165), - [sym__identifier_token] = ACTIONS(3735), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3735), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(3735), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3740), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3735), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3735), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3735), - [anon_sym_unmanaged] = ACTIONS(3735), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3735), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3735), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3735), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3735), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3735), - [anon_sym_into] = ACTIONS(3735), - [anon_sym_join] = ACTIONS(3735), - [anon_sym_on] = ACTIONS(3735), - [anon_sym_equals] = ACTIONS(3735), - [anon_sym_let] = ACTIONS(3735), - [anon_sym_orderby] = ACTIONS(3735), - [anon_sym_ascending] = ACTIONS(3735), - [anon_sym_descending] = ACTIONS(3735), - [anon_sym_group] = ACTIONS(3735), - [anon_sym_by] = ACTIONS(3735), - [anon_sym_select] = ACTIONS(3735), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3740), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [2160] = { + [sym_preproc_region] = STATE(2160), + [sym_preproc_endregion] = STATE(2160), + [sym_preproc_line] = STATE(2160), + [sym_preproc_pragma] = STATE(2160), + [sym_preproc_nullable] = STATE(2160), + [sym_preproc_error] = STATE(2160), + [sym_preproc_warning] = STATE(2160), + [sym_preproc_define] = STATE(2160), + [sym_preproc_undef] = STATE(2160), + [sym__identifier_token] = ACTIONS(3500), + [anon_sym_extern] = ACTIONS(3500), + [anon_sym_alias] = ACTIONS(3500), + [anon_sym_SEMI] = ACTIONS(3502), + [anon_sym_global] = ACTIONS(3500), + [anon_sym_using] = ACTIONS(3500), + [anon_sym_unsafe] = ACTIONS(3500), + [anon_sym_static] = ACTIONS(3500), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3500), + [anon_sym_ref] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(3502), + [anon_sym_RBRACE] = ACTIONS(3502), + [anon_sym_delegate] = ACTIONS(3500), + [anon_sym_public] = ACTIONS(3500), + [anon_sym_private] = ACTIONS(3500), + [anon_sym_readonly] = ACTIONS(3500), + [anon_sym_abstract] = ACTIONS(3500), + [anon_sym_async] = ACTIONS(3500), + [anon_sym_const] = ACTIONS(3500), + [anon_sym_file] = ACTIONS(3500), + [anon_sym_fixed] = ACTIONS(3500), + [anon_sym_internal] = ACTIONS(3500), + [anon_sym_new] = ACTIONS(3500), + [anon_sym_override] = ACTIONS(3500), + [anon_sym_partial] = ACTIONS(3500), + [anon_sym_protected] = ACTIONS(3500), + [anon_sym_required] = ACTIONS(3500), + [anon_sym_sealed] = ACTIONS(3500), + [anon_sym_virtual] = ACTIONS(3500), + [anon_sym_volatile] = ACTIONS(3500), + [anon_sym_where] = ACTIONS(3500), + [anon_sym_notnull] = ACTIONS(3500), + [anon_sym_unmanaged] = ACTIONS(3500), + [anon_sym_checked] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3502), + [anon_sym_this] = ACTIONS(3500), + [anon_sym_scoped] = ACTIONS(3500), + [anon_sym_base] = ACTIONS(3500), + [anon_sym_var] = ACTIONS(3500), + [anon_sym_STAR] = ACTIONS(3502), + [sym_predefined_type] = ACTIONS(3500), + [anon_sym_break] = ACTIONS(3500), + [anon_sym_unchecked] = ACTIONS(3500), + [anon_sym_continue] = ACTIONS(3500), + [anon_sym_do] = ACTIONS(3500), + [anon_sym_while] = ACTIONS(3500), + [anon_sym_for] = ACTIONS(3500), + [anon_sym_lock] = ACTIONS(3500), + [anon_sym_yield] = ACTIONS(3500), + [anon_sym_switch] = ACTIONS(3500), + [anon_sym_case] = ACTIONS(3500), + [anon_sym_default] = ACTIONS(3500), + [anon_sym_throw] = ACTIONS(3500), + [anon_sym_try] = ACTIONS(3500), + [anon_sym_when] = ACTIONS(3500), + [anon_sym_await] = ACTIONS(3500), + [anon_sym_foreach] = ACTIONS(3500), + [anon_sym_goto] = ACTIONS(3500), + [anon_sym_if] = ACTIONS(3500), + [anon_sym_else] = ACTIONS(3500), + [anon_sym_DOT_DOT] = ACTIONS(3502), + [anon_sym_AMP] = ACTIONS(3502), + [anon_sym_CARET] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3502), + [anon_sym_true] = ACTIONS(3500), + [anon_sym_false] = ACTIONS(3500), + [anon_sym_from] = ACTIONS(3500), + [anon_sym_into] = ACTIONS(3500), + [anon_sym_join] = ACTIONS(3500), + [anon_sym_on] = ACTIONS(3500), + [anon_sym_equals] = ACTIONS(3500), + [anon_sym_let] = ACTIONS(3500), + [anon_sym_orderby] = ACTIONS(3500), + [anon_sym_ascending] = ACTIONS(3500), + [anon_sym_descending] = ACTIONS(3500), + [anon_sym_group] = ACTIONS(3500), + [anon_sym_by] = ACTIONS(3500), + [anon_sym_select] = ACTIONS(3500), + [anon_sym_stackalloc] = ACTIONS(3500), + [anon_sym_sizeof] = ACTIONS(3500), + [anon_sym_typeof] = ACTIONS(3500), + [anon_sym___makeref] = ACTIONS(3500), + [anon_sym___reftype] = ACTIONS(3500), + [anon_sym___refvalue] = ACTIONS(3500), + [sym_null_literal] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3502), + [sym_integer_literal] = ACTIONS(3500), + [sym_real_literal] = ACTIONS(3502), + [anon_sym_DQUOTE] = ACTIONS(3502), + [sym_verbatim_string_literal] = ACTIONS(3502), + [sym_grit_metavariable] = ACTIONS(3502), + [aux_sym_preproc_if_token1] = ACTIONS(3502), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407131,26 +406535,522 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3502), + [sym_interpolation_verbatim_start] = ACTIONS(3502), + [sym_interpolation_raw_start] = ACTIONS(3502), + [sym_raw_string_start] = ACTIONS(3502), }, - [2166] = { - [sym_preproc_region] = STATE(2166), - [sym_preproc_endregion] = STATE(2166), - [sym_preproc_line] = STATE(2166), - [sym_preproc_pragma] = STATE(2166), - [sym_preproc_nullable] = STATE(2166), - [sym_preproc_error] = STATE(2166), - [sym_preproc_warning] = STATE(2166), - [sym_preproc_define] = STATE(2166), - [sym_preproc_undef] = STATE(2166), - [sym__identifier_token] = ACTIONS(3745), - [anon_sym_extern] = ACTIONS(3745), - [anon_sym_alias] = ACTIONS(3745), - [anon_sym_SEMI] = ACTIONS(3747), - [anon_sym_global] = ACTIONS(3745), - [anon_sym_using] = ACTIONS(3745), - [anon_sym_unsafe] = ACTIONS(3745), - [anon_sym_static] = ACTIONS(3745), - [anon_sym_LBRACK] = ACTIONS(3747), + [2161] = { + [sym_preproc_region] = STATE(2161), + [sym_preproc_endregion] = STATE(2161), + [sym_preproc_line] = STATE(2161), + [sym_preproc_pragma] = STATE(2161), + [sym_preproc_nullable] = STATE(2161), + [sym_preproc_error] = STATE(2161), + [sym_preproc_warning] = STATE(2161), + [sym_preproc_define] = STATE(2161), + [sym_preproc_undef] = STATE(2161), + [sym__identifier_token] = ACTIONS(3394), + [anon_sym_extern] = ACTIONS(3394), + [anon_sym_alias] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3396), + [anon_sym_global] = ACTIONS(3394), + [anon_sym_using] = ACTIONS(3394), + [anon_sym_unsafe] = ACTIONS(3394), + [anon_sym_static] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_LPAREN] = ACTIONS(3396), + [anon_sym_return] = ACTIONS(3394), + [anon_sym_ref] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3396), + [anon_sym_RBRACE] = ACTIONS(3396), + [anon_sym_delegate] = ACTIONS(3394), + [anon_sym_public] = ACTIONS(3394), + [anon_sym_private] = ACTIONS(3394), + [anon_sym_readonly] = ACTIONS(3394), + [anon_sym_abstract] = ACTIONS(3394), + [anon_sym_async] = ACTIONS(3394), + [anon_sym_const] = ACTIONS(3394), + [anon_sym_file] = ACTIONS(3394), + [anon_sym_fixed] = ACTIONS(3394), + [anon_sym_internal] = ACTIONS(3394), + [anon_sym_new] = ACTIONS(3394), + [anon_sym_override] = ACTIONS(3394), + [anon_sym_partial] = ACTIONS(3394), + [anon_sym_protected] = ACTIONS(3394), + [anon_sym_required] = ACTIONS(3394), + [anon_sym_sealed] = ACTIONS(3394), + [anon_sym_virtual] = ACTIONS(3394), + [anon_sym_volatile] = ACTIONS(3394), + [anon_sym_where] = ACTIONS(3394), + [anon_sym_notnull] = ACTIONS(3394), + [anon_sym_unmanaged] = ACTIONS(3394), + [anon_sym_checked] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(3394), + [anon_sym_scoped] = ACTIONS(3394), + [anon_sym_base] = ACTIONS(3394), + [anon_sym_var] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [sym_predefined_type] = ACTIONS(3394), + [anon_sym_break] = ACTIONS(3394), + [anon_sym_unchecked] = ACTIONS(3394), + [anon_sym_continue] = ACTIONS(3394), + [anon_sym_do] = ACTIONS(3394), + [anon_sym_while] = ACTIONS(3394), + [anon_sym_for] = ACTIONS(3394), + [anon_sym_lock] = ACTIONS(3394), + [anon_sym_yield] = ACTIONS(3394), + [anon_sym_switch] = ACTIONS(3394), + [anon_sym_case] = ACTIONS(3394), + [anon_sym_default] = ACTIONS(3394), + [anon_sym_throw] = ACTIONS(3394), + [anon_sym_try] = ACTIONS(3394), + [anon_sym_when] = ACTIONS(3394), + [anon_sym_await] = ACTIONS(3394), + [anon_sym_foreach] = ACTIONS(3394), + [anon_sym_goto] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(3394), + [anon_sym_else] = ACTIONS(3394), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_CARET] = ACTIONS(3396), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3396), + [anon_sym_PLUS_PLUS] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3396), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [anon_sym_from] = ACTIONS(3394), + [anon_sym_into] = ACTIONS(3394), + [anon_sym_join] = ACTIONS(3394), + [anon_sym_on] = ACTIONS(3394), + [anon_sym_equals] = ACTIONS(3394), + [anon_sym_let] = ACTIONS(3394), + [anon_sym_orderby] = ACTIONS(3394), + [anon_sym_ascending] = ACTIONS(3394), + [anon_sym_descending] = ACTIONS(3394), + [anon_sym_group] = ACTIONS(3394), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_select] = ACTIONS(3394), + [anon_sym_stackalloc] = ACTIONS(3394), + [anon_sym_sizeof] = ACTIONS(3394), + [anon_sym_typeof] = ACTIONS(3394), + [anon_sym___makeref] = ACTIONS(3394), + [anon_sym___reftype] = ACTIONS(3394), + [anon_sym___refvalue] = ACTIONS(3394), + [sym_null_literal] = ACTIONS(3394), + [anon_sym_SQUOTE] = ACTIONS(3396), + [sym_integer_literal] = ACTIONS(3394), + [sym_real_literal] = ACTIONS(3396), + [anon_sym_DQUOTE] = ACTIONS(3396), + [sym_verbatim_string_literal] = ACTIONS(3396), + [sym_grit_metavariable] = ACTIONS(3396), + [aux_sym_preproc_if_token1] = ACTIONS(3396), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3396), + [sym_interpolation_verbatim_start] = ACTIONS(3396), + [sym_interpolation_raw_start] = ACTIONS(3396), + [sym_raw_string_start] = ACTIONS(3396), + }, + [2162] = { + [sym_preproc_region] = STATE(2162), + [sym_preproc_endregion] = STATE(2162), + [sym_preproc_line] = STATE(2162), + [sym_preproc_pragma] = STATE(2162), + [sym_preproc_nullable] = STATE(2162), + [sym_preproc_error] = STATE(2162), + [sym_preproc_warning] = STATE(2162), + [sym_preproc_define] = STATE(2162), + [sym_preproc_undef] = STATE(2162), + [sym__identifier_token] = ACTIONS(3488), + [anon_sym_extern] = ACTIONS(3488), + [anon_sym_alias] = ACTIONS(3488), + [anon_sym_SEMI] = ACTIONS(3490), + [anon_sym_global] = ACTIONS(3488), + [anon_sym_using] = ACTIONS(3488), + [anon_sym_unsafe] = ACTIONS(3488), + [anon_sym_static] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3488), + [anon_sym_ref] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3490), + [anon_sym_RBRACE] = ACTIONS(3490), + [anon_sym_delegate] = ACTIONS(3488), + [anon_sym_public] = ACTIONS(3488), + [anon_sym_private] = ACTIONS(3488), + [anon_sym_readonly] = ACTIONS(3488), + [anon_sym_abstract] = ACTIONS(3488), + [anon_sym_async] = ACTIONS(3488), + [anon_sym_const] = ACTIONS(3488), + [anon_sym_file] = ACTIONS(3488), + [anon_sym_fixed] = ACTIONS(3488), + [anon_sym_internal] = ACTIONS(3488), + [anon_sym_new] = ACTIONS(3488), + [anon_sym_override] = ACTIONS(3488), + [anon_sym_partial] = ACTIONS(3488), + [anon_sym_protected] = ACTIONS(3488), + [anon_sym_required] = ACTIONS(3488), + [anon_sym_sealed] = ACTIONS(3488), + [anon_sym_virtual] = ACTIONS(3488), + [anon_sym_volatile] = ACTIONS(3488), + [anon_sym_where] = ACTIONS(3488), + [anon_sym_notnull] = ACTIONS(3488), + [anon_sym_unmanaged] = ACTIONS(3488), + [anon_sym_checked] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3490), + [anon_sym_this] = ACTIONS(3488), + [anon_sym_scoped] = ACTIONS(3488), + [anon_sym_base] = ACTIONS(3488), + [anon_sym_var] = ACTIONS(3488), + [anon_sym_STAR] = ACTIONS(3490), + [sym_predefined_type] = ACTIONS(3488), + [anon_sym_break] = ACTIONS(3488), + [anon_sym_unchecked] = ACTIONS(3488), + [anon_sym_continue] = ACTIONS(3488), + [anon_sym_do] = ACTIONS(3488), + [anon_sym_while] = ACTIONS(3488), + [anon_sym_for] = ACTIONS(3488), + [anon_sym_lock] = ACTIONS(3488), + [anon_sym_yield] = ACTIONS(3488), + [anon_sym_switch] = ACTIONS(3488), + [anon_sym_case] = ACTIONS(3488), + [anon_sym_default] = ACTIONS(3488), + [anon_sym_throw] = ACTIONS(3488), + [anon_sym_try] = ACTIONS(3488), + [anon_sym_when] = ACTIONS(3488), + [anon_sym_await] = ACTIONS(3488), + [anon_sym_foreach] = ACTIONS(3488), + [anon_sym_goto] = ACTIONS(3488), + [anon_sym_if] = ACTIONS(3488), + [anon_sym_else] = ACTIONS(3488), + [anon_sym_DOT_DOT] = ACTIONS(3490), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_CARET] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3490), + [anon_sym_PLUS_PLUS] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3490), + [anon_sym_true] = ACTIONS(3488), + [anon_sym_false] = ACTIONS(3488), + [anon_sym_from] = ACTIONS(3488), + [anon_sym_into] = ACTIONS(3488), + [anon_sym_join] = ACTIONS(3488), + [anon_sym_on] = ACTIONS(3488), + [anon_sym_equals] = ACTIONS(3488), + [anon_sym_let] = ACTIONS(3488), + [anon_sym_orderby] = ACTIONS(3488), + [anon_sym_ascending] = ACTIONS(3488), + [anon_sym_descending] = ACTIONS(3488), + [anon_sym_group] = ACTIONS(3488), + [anon_sym_by] = ACTIONS(3488), + [anon_sym_select] = ACTIONS(3488), + [anon_sym_stackalloc] = ACTIONS(3488), + [anon_sym_sizeof] = ACTIONS(3488), + [anon_sym_typeof] = ACTIONS(3488), + [anon_sym___makeref] = ACTIONS(3488), + [anon_sym___reftype] = ACTIONS(3488), + [anon_sym___refvalue] = ACTIONS(3488), + [sym_null_literal] = ACTIONS(3488), + [anon_sym_SQUOTE] = ACTIONS(3490), + [sym_integer_literal] = ACTIONS(3488), + [sym_real_literal] = ACTIONS(3490), + [anon_sym_DQUOTE] = ACTIONS(3490), + [sym_verbatim_string_literal] = ACTIONS(3490), + [sym_grit_metavariable] = ACTIONS(3490), + [aux_sym_preproc_if_token1] = ACTIONS(3490), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3490), + [sym_interpolation_verbatim_start] = ACTIONS(3490), + [sym_interpolation_raw_start] = ACTIONS(3490), + [sym_raw_string_start] = ACTIONS(3490), + }, + [2163] = { + [sym_preproc_region] = STATE(2163), + [sym_preproc_endregion] = STATE(2163), + [sym_preproc_line] = STATE(2163), + [sym_preproc_pragma] = STATE(2163), + [sym_preproc_nullable] = STATE(2163), + [sym_preproc_error] = STATE(2163), + [sym_preproc_warning] = STATE(2163), + [sym_preproc_define] = STATE(2163), + [sym_preproc_undef] = STATE(2163), + [sym__identifier_token] = ACTIONS(3512), + [anon_sym_extern] = ACTIONS(3512), + [anon_sym_alias] = ACTIONS(3512), + [anon_sym_SEMI] = ACTIONS(3514), + [anon_sym_global] = ACTIONS(3512), + [anon_sym_using] = ACTIONS(3512), + [anon_sym_unsafe] = ACTIONS(3512), + [anon_sym_static] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_LPAREN] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3512), + [anon_sym_ref] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_RBRACE] = ACTIONS(3514), + [anon_sym_delegate] = ACTIONS(3512), + [anon_sym_public] = ACTIONS(3512), + [anon_sym_private] = ACTIONS(3512), + [anon_sym_readonly] = ACTIONS(3512), + [anon_sym_abstract] = ACTIONS(3512), + [anon_sym_async] = ACTIONS(3512), + [anon_sym_const] = ACTIONS(3512), + [anon_sym_file] = ACTIONS(3512), + [anon_sym_fixed] = ACTIONS(3512), + [anon_sym_internal] = ACTIONS(3512), + [anon_sym_new] = ACTIONS(3512), + [anon_sym_override] = ACTIONS(3512), + [anon_sym_partial] = ACTIONS(3512), + [anon_sym_protected] = ACTIONS(3512), + [anon_sym_required] = ACTIONS(3512), + [anon_sym_sealed] = ACTIONS(3512), + [anon_sym_virtual] = ACTIONS(3512), + [anon_sym_volatile] = ACTIONS(3512), + [anon_sym_where] = ACTIONS(3512), + [anon_sym_notnull] = ACTIONS(3512), + [anon_sym_unmanaged] = ACTIONS(3512), + [anon_sym_checked] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_this] = ACTIONS(3512), + [anon_sym_scoped] = ACTIONS(3512), + [anon_sym_base] = ACTIONS(3512), + [anon_sym_var] = ACTIONS(3512), + [anon_sym_STAR] = ACTIONS(3514), + [sym_predefined_type] = ACTIONS(3512), + [anon_sym_break] = ACTIONS(3512), + [anon_sym_unchecked] = ACTIONS(3512), + [anon_sym_continue] = ACTIONS(3512), + [anon_sym_do] = ACTIONS(3512), + [anon_sym_while] = ACTIONS(3512), + [anon_sym_for] = ACTIONS(3512), + [anon_sym_lock] = ACTIONS(3512), + [anon_sym_yield] = ACTIONS(3512), + [anon_sym_switch] = ACTIONS(3512), + [anon_sym_case] = ACTIONS(3512), + [anon_sym_default] = ACTIONS(3512), + [anon_sym_throw] = ACTIONS(3512), + [anon_sym_try] = ACTIONS(3512), + [anon_sym_when] = ACTIONS(3512), + [anon_sym_await] = ACTIONS(3512), + [anon_sym_foreach] = ACTIONS(3512), + [anon_sym_goto] = ACTIONS(3512), + [anon_sym_if] = ACTIONS(3512), + [anon_sym_else] = ACTIONS(3512), + [anon_sym_DOT_DOT] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_CARET] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3514), + [anon_sym_true] = ACTIONS(3512), + [anon_sym_false] = ACTIONS(3512), + [anon_sym_from] = ACTIONS(3512), + [anon_sym_into] = ACTIONS(3512), + [anon_sym_join] = ACTIONS(3512), + [anon_sym_on] = ACTIONS(3512), + [anon_sym_equals] = ACTIONS(3512), + [anon_sym_let] = ACTIONS(3512), + [anon_sym_orderby] = ACTIONS(3512), + [anon_sym_ascending] = ACTIONS(3512), + [anon_sym_descending] = ACTIONS(3512), + [anon_sym_group] = ACTIONS(3512), + [anon_sym_by] = ACTIONS(3512), + [anon_sym_select] = ACTIONS(3512), + [anon_sym_stackalloc] = ACTIONS(3512), + [anon_sym_sizeof] = ACTIONS(3512), + [anon_sym_typeof] = ACTIONS(3512), + [anon_sym___makeref] = ACTIONS(3512), + [anon_sym___reftype] = ACTIONS(3512), + [anon_sym___refvalue] = ACTIONS(3512), + [sym_null_literal] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3514), + [sym_integer_literal] = ACTIONS(3512), + [sym_real_literal] = ACTIONS(3514), + [anon_sym_DQUOTE] = ACTIONS(3514), + [sym_verbatim_string_literal] = ACTIONS(3514), + [sym_grit_metavariable] = ACTIONS(3514), + [aux_sym_preproc_if_token1] = ACTIONS(3514), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3514), + [sym_interpolation_verbatim_start] = ACTIONS(3514), + [sym_interpolation_raw_start] = ACTIONS(3514), + [sym_raw_string_start] = ACTIONS(3514), + }, + [2164] = { + [sym_preproc_region] = STATE(2164), + [sym_preproc_endregion] = STATE(2164), + [sym_preproc_line] = STATE(2164), + [sym_preproc_pragma] = STATE(2164), + [sym_preproc_nullable] = STATE(2164), + [sym_preproc_error] = STATE(2164), + [sym_preproc_warning] = STATE(2164), + [sym_preproc_define] = STATE(2164), + [sym_preproc_undef] = STATE(2164), + [sym__identifier_token] = ACTIONS(3484), + [anon_sym_extern] = ACTIONS(3484), + [anon_sym_alias] = ACTIONS(3484), + [anon_sym_SEMI] = ACTIONS(3486), + [anon_sym_global] = ACTIONS(3484), + [anon_sym_using] = ACTIONS(3484), + [anon_sym_unsafe] = ACTIONS(3484), + [anon_sym_static] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3484), + [anon_sym_ref] = ACTIONS(3484), + [anon_sym_LBRACE] = ACTIONS(3486), + [anon_sym_RBRACE] = ACTIONS(3486), + [anon_sym_delegate] = ACTIONS(3484), + [anon_sym_public] = ACTIONS(3484), + [anon_sym_private] = ACTIONS(3484), + [anon_sym_readonly] = ACTIONS(3484), + [anon_sym_abstract] = ACTIONS(3484), + [anon_sym_async] = ACTIONS(3484), + [anon_sym_const] = ACTIONS(3484), + [anon_sym_file] = ACTIONS(3484), + [anon_sym_fixed] = ACTIONS(3484), + [anon_sym_internal] = ACTIONS(3484), + [anon_sym_new] = ACTIONS(3484), + [anon_sym_override] = ACTIONS(3484), + [anon_sym_partial] = ACTIONS(3484), + [anon_sym_protected] = ACTIONS(3484), + [anon_sym_required] = ACTIONS(3484), + [anon_sym_sealed] = ACTIONS(3484), + [anon_sym_virtual] = ACTIONS(3484), + [anon_sym_volatile] = ACTIONS(3484), + [anon_sym_where] = ACTIONS(3484), + [anon_sym_notnull] = ACTIONS(3484), + [anon_sym_unmanaged] = ACTIONS(3484), + [anon_sym_checked] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3486), + [anon_sym_this] = ACTIONS(3484), + [anon_sym_scoped] = ACTIONS(3484), + [anon_sym_base] = ACTIONS(3484), + [anon_sym_var] = ACTIONS(3484), + [anon_sym_STAR] = ACTIONS(3486), + [sym_predefined_type] = ACTIONS(3484), + [anon_sym_break] = ACTIONS(3484), + [anon_sym_unchecked] = ACTIONS(3484), + [anon_sym_continue] = ACTIONS(3484), + [anon_sym_do] = ACTIONS(3484), + [anon_sym_while] = ACTIONS(3484), + [anon_sym_for] = ACTIONS(3484), + [anon_sym_lock] = ACTIONS(3484), + [anon_sym_yield] = ACTIONS(3484), + [anon_sym_switch] = ACTIONS(3484), + [anon_sym_case] = ACTIONS(3484), + [anon_sym_default] = ACTIONS(3484), + [anon_sym_throw] = ACTIONS(3484), + [anon_sym_try] = ACTIONS(3484), + [anon_sym_when] = ACTIONS(3484), + [anon_sym_await] = ACTIONS(3484), + [anon_sym_foreach] = ACTIONS(3484), + [anon_sym_goto] = ACTIONS(3484), + [anon_sym_if] = ACTIONS(3484), + [anon_sym_else] = ACTIONS(3484), + [anon_sym_DOT_DOT] = ACTIONS(3486), + [anon_sym_AMP] = ACTIONS(3486), + [anon_sym_CARET] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3484), + [anon_sym_DASH] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3486), + [anon_sym_PLUS_PLUS] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3486), + [anon_sym_true] = ACTIONS(3484), + [anon_sym_false] = ACTIONS(3484), + [anon_sym_from] = ACTIONS(3484), + [anon_sym_into] = ACTIONS(3484), + [anon_sym_join] = ACTIONS(3484), + [anon_sym_on] = ACTIONS(3484), + [anon_sym_equals] = ACTIONS(3484), + [anon_sym_let] = ACTIONS(3484), + [anon_sym_orderby] = ACTIONS(3484), + [anon_sym_ascending] = ACTIONS(3484), + [anon_sym_descending] = ACTIONS(3484), + [anon_sym_group] = ACTIONS(3484), + [anon_sym_by] = ACTIONS(3484), + [anon_sym_select] = ACTIONS(3484), + [anon_sym_stackalloc] = ACTIONS(3484), + [anon_sym_sizeof] = ACTIONS(3484), + [anon_sym_typeof] = ACTIONS(3484), + [anon_sym___makeref] = ACTIONS(3484), + [anon_sym___reftype] = ACTIONS(3484), + [anon_sym___refvalue] = ACTIONS(3484), + [sym_null_literal] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3486), + [sym_integer_literal] = ACTIONS(3484), + [sym_real_literal] = ACTIONS(3486), + [anon_sym_DQUOTE] = ACTIONS(3486), + [sym_verbatim_string_literal] = ACTIONS(3486), + [sym_grit_metavariable] = ACTIONS(3486), + [aux_sym_preproc_if_token1] = ACTIONS(3486), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3486), + [sym_interpolation_verbatim_start] = ACTIONS(3486), + [sym_interpolation_raw_start] = ACTIONS(3486), + [sym_raw_string_start] = ACTIONS(3486), + }, + [2165] = { + [sym_preproc_region] = STATE(2165), + [sym_preproc_endregion] = STATE(2165), + [sym_preproc_line] = STATE(2165), + [sym_preproc_pragma] = STATE(2165), + [sym_preproc_nullable] = STATE(2165), + [sym_preproc_error] = STATE(2165), + [sym_preproc_warning] = STATE(2165), + [sym_preproc_define] = STATE(2165), + [sym_preproc_undef] = STATE(2165), + [sym__identifier_token] = ACTIONS(3745), + [anon_sym_extern] = ACTIONS(3745), + [anon_sym_alias] = ACTIONS(3745), + [anon_sym_SEMI] = ACTIONS(3747), + [anon_sym_global] = ACTIONS(3745), + [anon_sym_using] = ACTIONS(3745), + [anon_sym_unsafe] = ACTIONS(3745), + [anon_sym_static] = ACTIONS(3745), + [anon_sym_LBRACK] = ACTIONS(3747), [anon_sym_LPAREN] = ACTIONS(3747), [anon_sym_return] = ACTIONS(3745), [anon_sym_ref] = ACTIONS(3745), @@ -407178,21 +407078,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3745), [anon_sym_unmanaged] = ACTIONS(3745), [anon_sym_checked] = ACTIONS(3745), - [anon_sym_BANG] = ACTIONS(3747), [anon_sym_TILDE] = ACTIONS(3747), - [anon_sym_PLUS_PLUS] = ACTIONS(3747), - [anon_sym_DASH_DASH] = ACTIONS(3747), - [anon_sym_true] = ACTIONS(3745), - [anon_sym_false] = ACTIONS(3745), - [anon_sym_PLUS] = ACTIONS(3745), - [anon_sym_DASH] = ACTIONS(3745), - [anon_sym_STAR] = ACTIONS(3747), - [anon_sym_CARET] = ACTIONS(3747), - [anon_sym_AMP] = ACTIONS(3747), [anon_sym_this] = ACTIONS(3745), [anon_sym_scoped] = ACTIONS(3745), [anon_sym_base] = ACTIONS(3745), [anon_sym_var] = ACTIONS(3745), + [anon_sym_STAR] = ACTIONS(3747), [sym_predefined_type] = ACTIONS(3745), [anon_sym_break] = ACTIONS(3745), [anon_sym_unchecked] = ACTIONS(3745), @@ -407213,6 +407104,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3745), [anon_sym_if] = ACTIONS(3745), [anon_sym_DOT_DOT] = ACTIONS(3747), + [anon_sym_AMP] = ACTIONS(3747), + [anon_sym_CARET] = ACTIONS(3747), + [anon_sym_PLUS] = ACTIONS(3745), + [anon_sym_DASH] = ACTIONS(3745), + [anon_sym_BANG] = ACTIONS(3747), + [anon_sym_PLUS_PLUS] = ACTIONS(3747), + [anon_sym_DASH_DASH] = ACTIONS(3747), + [anon_sym_true] = ACTIONS(3745), + [anon_sym_false] = ACTIONS(3745), [anon_sym_from] = ACTIONS(3745), [anon_sym_into] = ACTIONS(3745), [anon_sym_join] = ACTIONS(3745), @@ -407254,25 +407154,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3747), [sym_raw_string_start] = ACTIONS(3747), }, + [2166] = { + [sym_preproc_region] = STATE(2166), + [sym_preproc_endregion] = STATE(2166), + [sym_preproc_line] = STATE(2166), + [sym_preproc_pragma] = STATE(2166), + [sym_preproc_nullable] = STATE(2166), + [sym_preproc_error] = STATE(2166), + [sym_preproc_warning] = STATE(2166), + [sym_preproc_define] = STATE(2166), + [sym_preproc_undef] = STATE(2166), + [sym__identifier_token] = ACTIONS(3735), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3735), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(3735), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3740), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3735), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3735), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3735), + [anon_sym_unmanaged] = ACTIONS(3735), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3735), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3735), + [anon_sym_STAR] = ACTIONS(3696), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3735), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3735), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3735), + [anon_sym_into] = ACTIONS(3735), + [anon_sym_join] = ACTIONS(3735), + [anon_sym_on] = ACTIONS(3735), + [anon_sym_equals] = ACTIONS(3735), + [anon_sym_let] = ACTIONS(3735), + [anon_sym_orderby] = ACTIONS(3735), + [anon_sym_ascending] = ACTIONS(3735), + [anon_sym_descending] = ACTIONS(3735), + [anon_sym_group] = ACTIONS(3735), + [anon_sym_by] = ACTIONS(3735), + [anon_sym_select] = ACTIONS(3735), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3740), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = 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), + }, [2167] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6383), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6087), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(2167), [sym_preproc_endregion] = STATE(2167), [sym_preproc_line] = STATE(2167), @@ -407282,109 +407286,6 @@ 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(3690), - [anon_sym_alias] = ACTIONS(3693), - [anon_sym_global] = ACTIONS(3693), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3693), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3693), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3693), - [anon_sym_unmanaged] = ACTIONS(3693), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3707), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3710), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3693), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3693), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3693), - [anon_sym_into] = ACTIONS(3693), - [anon_sym_join] = ACTIONS(3693), - [anon_sym_on] = ACTIONS(3693), - [anon_sym_equals] = ACTIONS(3693), - [anon_sym_let] = ACTIONS(3693), - [anon_sym_orderby] = ACTIONS(3693), - [anon_sym_ascending] = ACTIONS(3693), - [anon_sym_descending] = ACTIONS(3693), - [anon_sym_group] = ACTIONS(3693), - [anon_sym_by] = ACTIONS(3693), - [anon_sym_select] = ACTIONS(3693), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3713), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3696), - }, - [2168] = { - [sym_preproc_region] = STATE(2168), - [sym_preproc_endregion] = STATE(2168), - [sym_preproc_line] = STATE(2168), - [sym_preproc_pragma] = STATE(2168), - [sym_preproc_nullable] = STATE(2168), - [sym_preproc_error] = STATE(2168), - [sym_preproc_warning] = STATE(2168), - [sym_preproc_define] = STATE(2168), - [sym_preproc_undef] = STATE(2168), [sym__identifier_token] = ACTIONS(3749), [anon_sym_extern] = ACTIONS(3749), [anon_sym_alias] = ACTIONS(3749), @@ -407421,21 +407322,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3749), [anon_sym_unmanaged] = ACTIONS(3749), [anon_sym_checked] = ACTIONS(3749), - [anon_sym_BANG] = ACTIONS(3751), [anon_sym_TILDE] = ACTIONS(3751), - [anon_sym_PLUS_PLUS] = ACTIONS(3751), - [anon_sym_DASH_DASH] = ACTIONS(3751), - [anon_sym_true] = ACTIONS(3749), - [anon_sym_false] = ACTIONS(3749), - [anon_sym_PLUS] = ACTIONS(3749), - [anon_sym_DASH] = ACTIONS(3749), - [anon_sym_STAR] = ACTIONS(3751), - [anon_sym_CARET] = ACTIONS(3751), - [anon_sym_AMP] = ACTIONS(3751), [anon_sym_this] = ACTIONS(3749), [anon_sym_scoped] = ACTIONS(3749), [anon_sym_base] = ACTIONS(3749), [anon_sym_var] = ACTIONS(3749), + [anon_sym_STAR] = ACTIONS(3751), [sym_predefined_type] = ACTIONS(3749), [anon_sym_break] = ACTIONS(3749), [anon_sym_unchecked] = ACTIONS(3749), @@ -407455,6 +407347,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3749), [anon_sym_if] = ACTIONS(3749), [anon_sym_DOT_DOT] = ACTIONS(3751), + [anon_sym_AMP] = ACTIONS(3751), + [anon_sym_CARET] = ACTIONS(3751), + [anon_sym_PLUS] = ACTIONS(3749), + [anon_sym_DASH] = ACTIONS(3749), + [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_PLUS_PLUS] = ACTIONS(3751), + [anon_sym_DASH_DASH] = ACTIONS(3751), + [anon_sym_true] = ACTIONS(3749), + [anon_sym_false] = ACTIONS(3749), [anon_sym_from] = ACTIONS(3749), [anon_sym_into] = ACTIONS(3749), [anon_sym_join] = ACTIONS(3749), @@ -407496,6 +407397,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3751), [sym_raw_string_start] = ACTIONS(3751), }, + [2168] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6406), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6096), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(2168), + [sym_preproc_endregion] = STATE(2168), + [sym_preproc_line] = STATE(2168), + [sym_preproc_pragma] = STATE(2168), + [sym_preproc_nullable] = STATE(2168), + [sym_preproc_error] = STATE(2168), + [sym_preproc_warning] = STATE(2168), + [sym_preproc_define] = STATE(2168), + [sym_preproc_undef] = STATE(2168), + [sym__identifier_token] = ACTIONS(3688), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3705), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3696), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3711), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3694), + }, [2169] = { [sym_preproc_region] = STATE(2169), [sym_preproc_endregion] = STATE(2169), @@ -407541,21 +407563,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3753), [anon_sym_unmanaged] = ACTIONS(3753), [anon_sym_checked] = ACTIONS(3753), - [anon_sym_BANG] = ACTIONS(3755), [anon_sym_TILDE] = ACTIONS(3755), - [anon_sym_PLUS_PLUS] = ACTIONS(3755), - [anon_sym_DASH_DASH] = ACTIONS(3755), - [anon_sym_true] = ACTIONS(3753), - [anon_sym_false] = ACTIONS(3753), - [anon_sym_PLUS] = ACTIONS(3753), - [anon_sym_DASH] = ACTIONS(3753), - [anon_sym_STAR] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_AMP] = ACTIONS(3755), [anon_sym_this] = ACTIONS(3753), [anon_sym_scoped] = ACTIONS(3753), [anon_sym_base] = ACTIONS(3753), [anon_sym_var] = ACTIONS(3753), + [anon_sym_STAR] = ACTIONS(3755), [sym_predefined_type] = ACTIONS(3753), [anon_sym_break] = ACTIONS(3753), [anon_sym_unchecked] = ACTIONS(3753), @@ -407575,6 +407588,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3753), [anon_sym_if] = ACTIONS(3753), [anon_sym_DOT_DOT] = ACTIONS(3755), + [anon_sym_AMP] = ACTIONS(3755), + [anon_sym_CARET] = ACTIONS(3755), + [anon_sym_PLUS] = ACTIONS(3753), + [anon_sym_DASH] = ACTIONS(3753), + [anon_sym_BANG] = ACTIONS(3755), + [anon_sym_PLUS_PLUS] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(3755), + [anon_sym_true] = ACTIONS(3753), + [anon_sym_false] = ACTIONS(3753), [anon_sym_from] = ACTIONS(3753), [anon_sym_into] = ACTIONS(3753), [anon_sym_join] = ACTIONS(3753), @@ -407661,21 +407683,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3757), [anon_sym_unmanaged] = ACTIONS(3757), [anon_sym_checked] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3759), [anon_sym_TILDE] = ACTIONS(3759), - [anon_sym_PLUS_PLUS] = ACTIONS(3759), - [anon_sym_DASH_DASH] = ACTIONS(3759), - [anon_sym_true] = ACTIONS(3757), - [anon_sym_false] = ACTIONS(3757), - [anon_sym_PLUS] = ACTIONS(3757), - [anon_sym_DASH] = ACTIONS(3757), - [anon_sym_STAR] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3759), [anon_sym_this] = ACTIONS(3757), [anon_sym_scoped] = ACTIONS(3757), [anon_sym_base] = ACTIONS(3757), [anon_sym_var] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(3759), [sym_predefined_type] = ACTIONS(3757), [anon_sym_break] = ACTIONS(3757), [anon_sym_unchecked] = ACTIONS(3757), @@ -407695,6 +407708,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3757), [anon_sym_if] = ACTIONS(3757), [anon_sym_DOT_DOT] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3759), + [anon_sym_CARET] = ACTIONS(3759), + [anon_sym_PLUS] = ACTIONS(3757), + [anon_sym_DASH] = ACTIONS(3757), + [anon_sym_BANG] = ACTIONS(3759), + [anon_sym_PLUS_PLUS] = ACTIONS(3759), + [anon_sym_DASH_DASH] = ACTIONS(3759), + [anon_sym_true] = ACTIONS(3757), + [anon_sym_false] = ACTIONS(3757), [anon_sym_from] = ACTIONS(3757), [anon_sym_into] = ACTIONS(3757), [anon_sym_join] = ACTIONS(3757), @@ -407781,21 +407803,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3761), [anon_sym_unmanaged] = ACTIONS(3761), [anon_sym_checked] = ACTIONS(3761), - [anon_sym_BANG] = ACTIONS(3763), [anon_sym_TILDE] = ACTIONS(3763), - [anon_sym_PLUS_PLUS] = ACTIONS(3763), - [anon_sym_DASH_DASH] = ACTIONS(3763), - [anon_sym_true] = ACTIONS(3761), - [anon_sym_false] = ACTIONS(3761), - [anon_sym_PLUS] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3761), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_CARET] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), [anon_sym_this] = ACTIONS(3761), [anon_sym_scoped] = ACTIONS(3761), [anon_sym_base] = ACTIONS(3761), [anon_sym_var] = ACTIONS(3761), + [anon_sym_STAR] = ACTIONS(3763), [sym_predefined_type] = ACTIONS(3761), [anon_sym_break] = ACTIONS(3761), [anon_sym_unchecked] = ACTIONS(3761), @@ -407815,6 +407828,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3761), [anon_sym_if] = ACTIONS(3761), [anon_sym_DOT_DOT] = ACTIONS(3763), + [anon_sym_AMP] = ACTIONS(3763), + [anon_sym_CARET] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3761), + [anon_sym_DASH] = ACTIONS(3761), + [anon_sym_BANG] = ACTIONS(3763), + [anon_sym_PLUS_PLUS] = ACTIONS(3763), + [anon_sym_DASH_DASH] = ACTIONS(3763), + [anon_sym_true] = ACTIONS(3761), + [anon_sym_false] = ACTIONS(3761), [anon_sym_from] = ACTIONS(3761), [anon_sym_into] = ACTIONS(3761), [anon_sym_join] = ACTIONS(3761), @@ -407901,21 +407923,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3765), [anon_sym_unmanaged] = ACTIONS(3765), [anon_sym_checked] = ACTIONS(3765), - [anon_sym_BANG] = ACTIONS(3767), [anon_sym_TILDE] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_true] = ACTIONS(3765), - [anon_sym_false] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_STAR] = ACTIONS(3767), - [anon_sym_CARET] = ACTIONS(3767), - [anon_sym_AMP] = ACTIONS(3767), [anon_sym_this] = ACTIONS(3765), [anon_sym_scoped] = ACTIONS(3765), [anon_sym_base] = ACTIONS(3765), [anon_sym_var] = ACTIONS(3765), + [anon_sym_STAR] = ACTIONS(3767), [sym_predefined_type] = ACTIONS(3765), [anon_sym_break] = ACTIONS(3765), [anon_sym_unchecked] = ACTIONS(3765), @@ -407935,6 +407948,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3765), [anon_sym_if] = ACTIONS(3765), [anon_sym_DOT_DOT] = ACTIONS(3767), + [anon_sym_AMP] = ACTIONS(3767), + [anon_sym_CARET] = ACTIONS(3767), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_BANG] = ACTIONS(3767), + [anon_sym_PLUS_PLUS] = ACTIONS(3767), + [anon_sym_DASH_DASH] = ACTIONS(3767), + [anon_sym_true] = ACTIONS(3765), + [anon_sym_false] = ACTIONS(3765), [anon_sym_from] = ACTIONS(3765), [anon_sym_into] = ACTIONS(3765), [anon_sym_join] = ACTIONS(3765), @@ -408021,21 +408043,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3769), [anon_sym_unmanaged] = ACTIONS(3769), [anon_sym_checked] = ACTIONS(3769), - [anon_sym_BANG] = ACTIONS(3771), [anon_sym_TILDE] = ACTIONS(3771), - [anon_sym_PLUS_PLUS] = ACTIONS(3771), - [anon_sym_DASH_DASH] = ACTIONS(3771), - [anon_sym_true] = ACTIONS(3769), - [anon_sym_false] = ACTIONS(3769), - [anon_sym_PLUS] = ACTIONS(3769), - [anon_sym_DASH] = ACTIONS(3769), - [anon_sym_STAR] = ACTIONS(3771), - [anon_sym_CARET] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3771), [anon_sym_this] = ACTIONS(3769), [anon_sym_scoped] = ACTIONS(3769), [anon_sym_base] = ACTIONS(3769), [anon_sym_var] = ACTIONS(3769), + [anon_sym_STAR] = ACTIONS(3771), [sym_predefined_type] = ACTIONS(3769), [anon_sym_break] = ACTIONS(3769), [anon_sym_unchecked] = ACTIONS(3769), @@ -408055,6 +408068,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3769), [anon_sym_if] = ACTIONS(3769), [anon_sym_DOT_DOT] = ACTIONS(3771), + [anon_sym_AMP] = ACTIONS(3771), + [anon_sym_CARET] = ACTIONS(3771), + [anon_sym_PLUS] = ACTIONS(3769), + [anon_sym_DASH] = ACTIONS(3769), + [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_PLUS_PLUS] = ACTIONS(3771), + [anon_sym_DASH_DASH] = ACTIONS(3771), + [anon_sym_true] = ACTIONS(3769), + [anon_sym_false] = ACTIONS(3769), [anon_sym_from] = ACTIONS(3769), [anon_sym_into] = ACTIONS(3769), [anon_sym_join] = ACTIONS(3769), @@ -408141,21 +408163,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3773), [anon_sym_unmanaged] = ACTIONS(3773), [anon_sym_checked] = ACTIONS(3773), - [anon_sym_BANG] = ACTIONS(3775), [anon_sym_TILDE] = ACTIONS(3775), - [anon_sym_PLUS_PLUS] = ACTIONS(3775), - [anon_sym_DASH_DASH] = ACTIONS(3775), - [anon_sym_true] = ACTIONS(3773), - [anon_sym_false] = ACTIONS(3773), - [anon_sym_PLUS] = ACTIONS(3773), - [anon_sym_DASH] = ACTIONS(3773), - [anon_sym_STAR] = ACTIONS(3775), - [anon_sym_CARET] = ACTIONS(3775), - [anon_sym_AMP] = ACTIONS(3775), [anon_sym_this] = ACTIONS(3773), [anon_sym_scoped] = ACTIONS(3773), [anon_sym_base] = ACTIONS(3773), [anon_sym_var] = ACTIONS(3773), + [anon_sym_STAR] = ACTIONS(3775), [sym_predefined_type] = ACTIONS(3773), [anon_sym_break] = ACTIONS(3773), [anon_sym_unchecked] = ACTIONS(3773), @@ -408175,6 +408188,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3773), [anon_sym_if] = ACTIONS(3773), [anon_sym_DOT_DOT] = ACTIONS(3775), + [anon_sym_AMP] = ACTIONS(3775), + [anon_sym_CARET] = ACTIONS(3775), + [anon_sym_PLUS] = ACTIONS(3773), + [anon_sym_DASH] = ACTIONS(3773), + [anon_sym_BANG] = ACTIONS(3775), + [anon_sym_PLUS_PLUS] = ACTIONS(3775), + [anon_sym_DASH_DASH] = ACTIONS(3775), + [anon_sym_true] = ACTIONS(3773), + [anon_sym_false] = ACTIONS(3773), [anon_sym_from] = ACTIONS(3773), [anon_sym_into] = ACTIONS(3773), [anon_sym_join] = ACTIONS(3773), @@ -408261,21 +408283,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3777), [anon_sym_unmanaged] = ACTIONS(3777), [anon_sym_checked] = ACTIONS(3777), - [anon_sym_BANG] = ACTIONS(3779), [anon_sym_TILDE] = ACTIONS(3779), - [anon_sym_PLUS_PLUS] = ACTIONS(3779), - [anon_sym_DASH_DASH] = ACTIONS(3779), - [anon_sym_true] = ACTIONS(3777), - [anon_sym_false] = ACTIONS(3777), - [anon_sym_PLUS] = ACTIONS(3777), - [anon_sym_DASH] = ACTIONS(3777), - [anon_sym_STAR] = ACTIONS(3779), - [anon_sym_CARET] = ACTIONS(3779), - [anon_sym_AMP] = ACTIONS(3779), [anon_sym_this] = ACTIONS(3777), [anon_sym_scoped] = ACTIONS(3777), [anon_sym_base] = ACTIONS(3777), [anon_sym_var] = ACTIONS(3777), + [anon_sym_STAR] = ACTIONS(3779), [sym_predefined_type] = ACTIONS(3777), [anon_sym_break] = ACTIONS(3777), [anon_sym_unchecked] = ACTIONS(3777), @@ -408295,6 +408308,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3777), [anon_sym_if] = ACTIONS(3777), [anon_sym_DOT_DOT] = ACTIONS(3779), + [anon_sym_AMP] = ACTIONS(3779), + [anon_sym_CARET] = ACTIONS(3779), + [anon_sym_PLUS] = ACTIONS(3777), + [anon_sym_DASH] = ACTIONS(3777), + [anon_sym_BANG] = ACTIONS(3779), + [anon_sym_PLUS_PLUS] = ACTIONS(3779), + [anon_sym_DASH_DASH] = ACTIONS(3779), + [anon_sym_true] = ACTIONS(3777), + [anon_sym_false] = ACTIONS(3777), [anon_sym_from] = ACTIONS(3777), [anon_sym_into] = ACTIONS(3777), [anon_sym_join] = ACTIONS(3777), @@ -408381,21 +408403,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3781), [anon_sym_unmanaged] = ACTIONS(3781), [anon_sym_checked] = ACTIONS(3781), - [anon_sym_BANG] = ACTIONS(3783), [anon_sym_TILDE] = ACTIONS(3783), - [anon_sym_PLUS_PLUS] = ACTIONS(3783), - [anon_sym_DASH_DASH] = ACTIONS(3783), - [anon_sym_true] = ACTIONS(3781), - [anon_sym_false] = ACTIONS(3781), - [anon_sym_PLUS] = ACTIONS(3781), - [anon_sym_DASH] = ACTIONS(3781), - [anon_sym_STAR] = ACTIONS(3783), - [anon_sym_CARET] = ACTIONS(3783), - [anon_sym_AMP] = ACTIONS(3783), [anon_sym_this] = ACTIONS(3781), [anon_sym_scoped] = ACTIONS(3781), [anon_sym_base] = ACTIONS(3781), [anon_sym_var] = ACTIONS(3781), + [anon_sym_STAR] = ACTIONS(3783), [sym_predefined_type] = ACTIONS(3781), [anon_sym_break] = ACTIONS(3781), [anon_sym_unchecked] = ACTIONS(3781), @@ -408415,6 +408428,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3781), [anon_sym_if] = ACTIONS(3781), [anon_sym_DOT_DOT] = ACTIONS(3783), + [anon_sym_AMP] = ACTIONS(3783), + [anon_sym_CARET] = ACTIONS(3783), + [anon_sym_PLUS] = ACTIONS(3781), + [anon_sym_DASH] = ACTIONS(3781), + [anon_sym_BANG] = ACTIONS(3783), + [anon_sym_PLUS_PLUS] = ACTIONS(3783), + [anon_sym_DASH_DASH] = ACTIONS(3783), + [anon_sym_true] = ACTIONS(3781), + [anon_sym_false] = ACTIONS(3781), [anon_sym_from] = ACTIONS(3781), [anon_sym_into] = ACTIONS(3781), [anon_sym_join] = ACTIONS(3781), @@ -408501,21 +408523,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3785), [anon_sym_unmanaged] = ACTIONS(3785), [anon_sym_checked] = ACTIONS(3785), - [anon_sym_BANG] = ACTIONS(3787), [anon_sym_TILDE] = ACTIONS(3787), - [anon_sym_PLUS_PLUS] = ACTIONS(3787), - [anon_sym_DASH_DASH] = ACTIONS(3787), - [anon_sym_true] = ACTIONS(3785), - [anon_sym_false] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3785), - [anon_sym_DASH] = ACTIONS(3785), - [anon_sym_STAR] = ACTIONS(3787), - [anon_sym_CARET] = ACTIONS(3787), - [anon_sym_AMP] = ACTIONS(3787), [anon_sym_this] = ACTIONS(3785), [anon_sym_scoped] = ACTIONS(3785), [anon_sym_base] = ACTIONS(3785), [anon_sym_var] = ACTIONS(3785), + [anon_sym_STAR] = ACTIONS(3787), [sym_predefined_type] = ACTIONS(3785), [anon_sym_break] = ACTIONS(3785), [anon_sym_unchecked] = ACTIONS(3785), @@ -408535,6 +408548,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3785), [anon_sym_if] = ACTIONS(3785), [anon_sym_DOT_DOT] = ACTIONS(3787), + [anon_sym_AMP] = ACTIONS(3787), + [anon_sym_CARET] = ACTIONS(3787), + [anon_sym_PLUS] = ACTIONS(3785), + [anon_sym_DASH] = ACTIONS(3785), + [anon_sym_BANG] = ACTIONS(3787), + [anon_sym_PLUS_PLUS] = ACTIONS(3787), + [anon_sym_DASH_DASH] = ACTIONS(3787), + [anon_sym_true] = ACTIONS(3785), + [anon_sym_false] = ACTIONS(3785), [anon_sym_from] = ACTIONS(3785), [anon_sym_into] = ACTIONS(3785), [anon_sym_join] = ACTIONS(3785), @@ -408621,21 +408643,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3789), [anon_sym_unmanaged] = ACTIONS(3789), [anon_sym_checked] = ACTIONS(3789), - [anon_sym_BANG] = ACTIONS(3791), [anon_sym_TILDE] = ACTIONS(3791), - [anon_sym_PLUS_PLUS] = ACTIONS(3791), - [anon_sym_DASH_DASH] = ACTIONS(3791), - [anon_sym_true] = ACTIONS(3789), - [anon_sym_false] = ACTIONS(3789), - [anon_sym_PLUS] = ACTIONS(3789), - [anon_sym_DASH] = ACTIONS(3789), - [anon_sym_STAR] = ACTIONS(3791), - [anon_sym_CARET] = ACTIONS(3791), - [anon_sym_AMP] = ACTIONS(3791), [anon_sym_this] = ACTIONS(3789), [anon_sym_scoped] = ACTIONS(3789), [anon_sym_base] = ACTIONS(3789), [anon_sym_var] = ACTIONS(3789), + [anon_sym_STAR] = ACTIONS(3791), [sym_predefined_type] = ACTIONS(3789), [anon_sym_break] = ACTIONS(3789), [anon_sym_unchecked] = ACTIONS(3789), @@ -408655,6 +408668,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3789), [anon_sym_if] = ACTIONS(3789), [anon_sym_DOT_DOT] = ACTIONS(3791), + [anon_sym_AMP] = ACTIONS(3791), + [anon_sym_CARET] = ACTIONS(3791), + [anon_sym_PLUS] = ACTIONS(3789), + [anon_sym_DASH] = ACTIONS(3789), + [anon_sym_BANG] = ACTIONS(3791), + [anon_sym_PLUS_PLUS] = ACTIONS(3791), + [anon_sym_DASH_DASH] = ACTIONS(3791), + [anon_sym_true] = ACTIONS(3789), + [anon_sym_false] = ACTIONS(3789), [anon_sym_from] = ACTIONS(3789), [anon_sym_into] = ACTIONS(3789), [anon_sym_join] = ACTIONS(3789), @@ -408741,21 +408763,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3793), [anon_sym_unmanaged] = ACTIONS(3793), [anon_sym_checked] = ACTIONS(3793), - [anon_sym_BANG] = ACTIONS(3795), [anon_sym_TILDE] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_true] = ACTIONS(3793), - [anon_sym_false] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(3793), - [anon_sym_DASH] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(3795), - [anon_sym_CARET] = ACTIONS(3795), - [anon_sym_AMP] = ACTIONS(3795), [anon_sym_this] = ACTIONS(3793), [anon_sym_scoped] = ACTIONS(3793), [anon_sym_base] = ACTIONS(3793), [anon_sym_var] = ACTIONS(3793), + [anon_sym_STAR] = ACTIONS(3795), [sym_predefined_type] = ACTIONS(3793), [anon_sym_break] = ACTIONS(3793), [anon_sym_unchecked] = ACTIONS(3793), @@ -408775,6 +408788,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3793), [anon_sym_if] = ACTIONS(3793), [anon_sym_DOT_DOT] = ACTIONS(3795), + [anon_sym_AMP] = ACTIONS(3795), + [anon_sym_CARET] = ACTIONS(3795), + [anon_sym_PLUS] = ACTIONS(3793), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_BANG] = ACTIONS(3795), + [anon_sym_PLUS_PLUS] = ACTIONS(3795), + [anon_sym_DASH_DASH] = ACTIONS(3795), + [anon_sym_true] = ACTIONS(3793), + [anon_sym_false] = ACTIONS(3793), [anon_sym_from] = ACTIONS(3793), [anon_sym_into] = ACTIONS(3793), [anon_sym_join] = ACTIONS(3793), @@ -408861,21 +408883,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3797), [anon_sym_unmanaged] = ACTIONS(3797), [anon_sym_checked] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(3799), [anon_sym_TILDE] = ACTIONS(3799), - [anon_sym_PLUS_PLUS] = ACTIONS(3799), - [anon_sym_DASH_DASH] = ACTIONS(3799), - [anon_sym_true] = ACTIONS(3797), - [anon_sym_false] = ACTIONS(3797), - [anon_sym_PLUS] = ACTIONS(3797), - [anon_sym_DASH] = ACTIONS(3797), - [anon_sym_STAR] = ACTIONS(3799), - [anon_sym_CARET] = ACTIONS(3799), - [anon_sym_AMP] = ACTIONS(3799), [anon_sym_this] = ACTIONS(3797), [anon_sym_scoped] = ACTIONS(3797), [anon_sym_base] = ACTIONS(3797), [anon_sym_var] = ACTIONS(3797), + [anon_sym_STAR] = ACTIONS(3799), [sym_predefined_type] = ACTIONS(3797), [anon_sym_break] = ACTIONS(3797), [anon_sym_unchecked] = ACTIONS(3797), @@ -408895,6 +408908,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3797), [anon_sym_if] = ACTIONS(3797), [anon_sym_DOT_DOT] = ACTIONS(3799), + [anon_sym_AMP] = ACTIONS(3799), + [anon_sym_CARET] = ACTIONS(3799), + [anon_sym_PLUS] = ACTIONS(3797), + [anon_sym_DASH] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(3799), + [anon_sym_PLUS_PLUS] = ACTIONS(3799), + [anon_sym_DASH_DASH] = ACTIONS(3799), + [anon_sym_true] = ACTIONS(3797), + [anon_sym_false] = ACTIONS(3797), [anon_sym_from] = ACTIONS(3797), [anon_sym_into] = ACTIONS(3797), [anon_sym_join] = ACTIONS(3797), @@ -408981,21 +409003,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3801), [anon_sym_unmanaged] = ACTIONS(3801), [anon_sym_checked] = ACTIONS(3801), - [anon_sym_BANG] = ACTIONS(3803), [anon_sym_TILDE] = ACTIONS(3803), - [anon_sym_PLUS_PLUS] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3803), - [anon_sym_true] = ACTIONS(3801), - [anon_sym_false] = ACTIONS(3801), - [anon_sym_PLUS] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3803), [anon_sym_this] = ACTIONS(3801), [anon_sym_scoped] = ACTIONS(3801), [anon_sym_base] = ACTIONS(3801), [anon_sym_var] = ACTIONS(3801), + [anon_sym_STAR] = ACTIONS(3803), [sym_predefined_type] = ACTIONS(3801), [anon_sym_break] = ACTIONS(3801), [anon_sym_unchecked] = ACTIONS(3801), @@ -409015,6 +409028,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3801), [anon_sym_if] = ACTIONS(3801), [anon_sym_DOT_DOT] = ACTIONS(3803), + [anon_sym_AMP] = ACTIONS(3803), + [anon_sym_CARET] = ACTIONS(3803), + [anon_sym_PLUS] = ACTIONS(3801), + [anon_sym_DASH] = ACTIONS(3801), + [anon_sym_BANG] = ACTIONS(3803), + [anon_sym_PLUS_PLUS] = ACTIONS(3803), + [anon_sym_DASH_DASH] = ACTIONS(3803), + [anon_sym_true] = ACTIONS(3801), + [anon_sym_false] = ACTIONS(3801), [anon_sym_from] = ACTIONS(3801), [anon_sym_into] = ACTIONS(3801), [anon_sym_join] = ACTIONS(3801), @@ -409101,21 +409123,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3805), [anon_sym_unmanaged] = ACTIONS(3805), [anon_sym_checked] = ACTIONS(3805), - [anon_sym_BANG] = ACTIONS(3807), [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS_PLUS] = ACTIONS(3807), - [anon_sym_DASH_DASH] = ACTIONS(3807), - [anon_sym_true] = ACTIONS(3805), - [anon_sym_false] = ACTIONS(3805), - [anon_sym_PLUS] = ACTIONS(3805), - [anon_sym_DASH] = ACTIONS(3805), - [anon_sym_STAR] = ACTIONS(3807), - [anon_sym_CARET] = ACTIONS(3807), - [anon_sym_AMP] = ACTIONS(3807), [anon_sym_this] = ACTIONS(3805), [anon_sym_scoped] = ACTIONS(3805), [anon_sym_base] = ACTIONS(3805), [anon_sym_var] = ACTIONS(3805), + [anon_sym_STAR] = ACTIONS(3807), [sym_predefined_type] = ACTIONS(3805), [anon_sym_break] = ACTIONS(3805), [anon_sym_unchecked] = ACTIONS(3805), @@ -409135,6 +409148,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3805), [anon_sym_if] = ACTIONS(3805), [anon_sym_DOT_DOT] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3807), + [anon_sym_CARET] = ACTIONS(3807), + [anon_sym_PLUS] = ACTIONS(3805), + [anon_sym_DASH] = ACTIONS(3805), + [anon_sym_BANG] = ACTIONS(3807), + [anon_sym_PLUS_PLUS] = ACTIONS(3807), + [anon_sym_DASH_DASH] = ACTIONS(3807), + [anon_sym_true] = ACTIONS(3805), + [anon_sym_false] = ACTIONS(3805), [anon_sym_from] = ACTIONS(3805), [anon_sym_into] = ACTIONS(3805), [anon_sym_join] = ACTIONS(3805), @@ -409221,21 +409243,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3809), [anon_sym_unmanaged] = ACTIONS(3809), [anon_sym_checked] = ACTIONS(3809), - [anon_sym_BANG] = ACTIONS(3811), [anon_sym_TILDE] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_true] = ACTIONS(3809), - [anon_sym_false] = ACTIONS(3809), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_STAR] = ACTIONS(3811), - [anon_sym_CARET] = ACTIONS(3811), - [anon_sym_AMP] = ACTIONS(3811), [anon_sym_this] = ACTIONS(3809), [anon_sym_scoped] = ACTIONS(3809), [anon_sym_base] = ACTIONS(3809), [anon_sym_var] = ACTIONS(3809), + [anon_sym_STAR] = ACTIONS(3811), [sym_predefined_type] = ACTIONS(3809), [anon_sym_break] = ACTIONS(3809), [anon_sym_unchecked] = ACTIONS(3809), @@ -409255,6 +409268,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3809), [anon_sym_if] = ACTIONS(3809), [anon_sym_DOT_DOT] = ACTIONS(3811), + [anon_sym_AMP] = ACTIONS(3811), + [anon_sym_CARET] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3809), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_PLUS_PLUS] = ACTIONS(3811), + [anon_sym_DASH_DASH] = ACTIONS(3811), + [anon_sym_true] = ACTIONS(3809), + [anon_sym_false] = ACTIONS(3809), [anon_sym_from] = ACTIONS(3809), [anon_sym_into] = ACTIONS(3809), [anon_sym_join] = ACTIONS(3809), @@ -409341,21 +409363,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3813), [anon_sym_unmanaged] = ACTIONS(3813), [anon_sym_checked] = ACTIONS(3813), - [anon_sym_BANG] = ACTIONS(3815), [anon_sym_TILDE] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_true] = ACTIONS(3813), - [anon_sym_false] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3813), - [anon_sym_DASH] = ACTIONS(3813), - [anon_sym_STAR] = ACTIONS(3815), - [anon_sym_CARET] = ACTIONS(3815), - [anon_sym_AMP] = ACTIONS(3815), [anon_sym_this] = ACTIONS(3813), [anon_sym_scoped] = ACTIONS(3813), [anon_sym_base] = ACTIONS(3813), [anon_sym_var] = ACTIONS(3813), + [anon_sym_STAR] = ACTIONS(3815), [sym_predefined_type] = ACTIONS(3813), [anon_sym_break] = ACTIONS(3813), [anon_sym_unchecked] = ACTIONS(3813), @@ -409375,6 +409388,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3813), [anon_sym_if] = ACTIONS(3813), [anon_sym_DOT_DOT] = ACTIONS(3815), + [anon_sym_AMP] = ACTIONS(3815), + [anon_sym_CARET] = ACTIONS(3815), + [anon_sym_PLUS] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_BANG] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_true] = ACTIONS(3813), + [anon_sym_false] = ACTIONS(3813), [anon_sym_from] = ACTIONS(3813), [anon_sym_into] = ACTIONS(3813), [anon_sym_join] = ACTIONS(3813), @@ -409461,21 +409483,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3817), [anon_sym_unmanaged] = ACTIONS(3817), [anon_sym_checked] = ACTIONS(3817), - [anon_sym_BANG] = ACTIONS(3819), [anon_sym_TILDE] = ACTIONS(3819), - [anon_sym_PLUS_PLUS] = ACTIONS(3819), - [anon_sym_DASH_DASH] = ACTIONS(3819), - [anon_sym_true] = ACTIONS(3817), - [anon_sym_false] = ACTIONS(3817), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3819), - [anon_sym_CARET] = ACTIONS(3819), - [anon_sym_AMP] = ACTIONS(3819), [anon_sym_this] = ACTIONS(3817), [anon_sym_scoped] = ACTIONS(3817), [anon_sym_base] = ACTIONS(3817), [anon_sym_var] = ACTIONS(3817), + [anon_sym_STAR] = ACTIONS(3819), [sym_predefined_type] = ACTIONS(3817), [anon_sym_break] = ACTIONS(3817), [anon_sym_unchecked] = ACTIONS(3817), @@ -409495,6 +409508,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3817), [anon_sym_if] = ACTIONS(3817), [anon_sym_DOT_DOT] = ACTIONS(3819), + [anon_sym_AMP] = ACTIONS(3819), + [anon_sym_CARET] = ACTIONS(3819), + [anon_sym_PLUS] = ACTIONS(3817), + [anon_sym_DASH] = ACTIONS(3817), + [anon_sym_BANG] = ACTIONS(3819), + [anon_sym_PLUS_PLUS] = ACTIONS(3819), + [anon_sym_DASH_DASH] = ACTIONS(3819), + [anon_sym_true] = ACTIONS(3817), + [anon_sym_false] = ACTIONS(3817), [anon_sym_from] = ACTIONS(3817), [anon_sym_into] = ACTIONS(3817), [anon_sym_join] = ACTIONS(3817), @@ -409581,21 +409603,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3821), [anon_sym_unmanaged] = ACTIONS(3821), [anon_sym_checked] = ACTIONS(3821), - [anon_sym_BANG] = ACTIONS(3823), [anon_sym_TILDE] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_true] = ACTIONS(3821), - [anon_sym_false] = ACTIONS(3821), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_AMP] = ACTIONS(3823), [anon_sym_this] = ACTIONS(3821), [anon_sym_scoped] = ACTIONS(3821), [anon_sym_base] = ACTIONS(3821), [anon_sym_var] = ACTIONS(3821), + [anon_sym_STAR] = ACTIONS(3823), [sym_predefined_type] = ACTIONS(3821), [anon_sym_break] = ACTIONS(3821), [anon_sym_unchecked] = ACTIONS(3821), @@ -409615,6 +409628,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3821), [anon_sym_if] = ACTIONS(3821), [anon_sym_DOT_DOT] = ACTIONS(3823), + [anon_sym_AMP] = ACTIONS(3823), + [anon_sym_CARET] = ACTIONS(3823), + [anon_sym_PLUS] = ACTIONS(3821), + [anon_sym_DASH] = ACTIONS(3821), + [anon_sym_BANG] = ACTIONS(3823), + [anon_sym_PLUS_PLUS] = ACTIONS(3823), + [anon_sym_DASH_DASH] = ACTIONS(3823), + [anon_sym_true] = ACTIONS(3821), + [anon_sym_false] = ACTIONS(3821), [anon_sym_from] = ACTIONS(3821), [anon_sym_into] = ACTIONS(3821), [anon_sym_join] = ACTIONS(3821), @@ -409701,21 +409723,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3825), [anon_sym_unmanaged] = ACTIONS(3825), [anon_sym_checked] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3827), [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_PLUS_PLUS] = ACTIONS(3827), - [anon_sym_DASH_DASH] = ACTIONS(3827), - [anon_sym_true] = ACTIONS(3825), - [anon_sym_false] = ACTIONS(3825), - [anon_sym_PLUS] = ACTIONS(3825), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_CARET] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), [anon_sym_this] = ACTIONS(3825), [anon_sym_scoped] = ACTIONS(3825), [anon_sym_base] = ACTIONS(3825), [anon_sym_var] = ACTIONS(3825), + [anon_sym_STAR] = ACTIONS(3827), [sym_predefined_type] = ACTIONS(3825), [anon_sym_break] = ACTIONS(3825), [anon_sym_unchecked] = ACTIONS(3825), @@ -409735,6 +409748,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3825), [anon_sym_if] = ACTIONS(3825), [anon_sym_DOT_DOT] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym_CARET] = ACTIONS(3827), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3827), + [anon_sym_PLUS_PLUS] = ACTIONS(3827), + [anon_sym_DASH_DASH] = ACTIONS(3827), + [anon_sym_true] = ACTIONS(3825), + [anon_sym_false] = ACTIONS(3825), [anon_sym_from] = ACTIONS(3825), [anon_sym_into] = ACTIONS(3825), [anon_sym_join] = ACTIONS(3825), @@ -409821,21 +409843,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3829), [anon_sym_unmanaged] = ACTIONS(3829), [anon_sym_checked] = ACTIONS(3829), - [anon_sym_BANG] = ACTIONS(3831), [anon_sym_TILDE] = ACTIONS(3831), - [anon_sym_PLUS_PLUS] = ACTIONS(3831), - [anon_sym_DASH_DASH] = ACTIONS(3831), - [anon_sym_true] = ACTIONS(3829), - [anon_sym_false] = ACTIONS(3829), - [anon_sym_PLUS] = ACTIONS(3829), - [anon_sym_DASH] = ACTIONS(3829), - [anon_sym_STAR] = ACTIONS(3831), - [anon_sym_CARET] = ACTIONS(3831), - [anon_sym_AMP] = ACTIONS(3831), [anon_sym_this] = ACTIONS(3829), [anon_sym_scoped] = ACTIONS(3829), [anon_sym_base] = ACTIONS(3829), [anon_sym_var] = ACTIONS(3829), + [anon_sym_STAR] = ACTIONS(3831), [sym_predefined_type] = ACTIONS(3829), [anon_sym_break] = ACTIONS(3829), [anon_sym_unchecked] = ACTIONS(3829), @@ -409855,6 +409868,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3829), [anon_sym_if] = ACTIONS(3829), [anon_sym_DOT_DOT] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3831), + [anon_sym_CARET] = ACTIONS(3831), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_BANG] = ACTIONS(3831), + [anon_sym_PLUS_PLUS] = ACTIONS(3831), + [anon_sym_DASH_DASH] = ACTIONS(3831), + [anon_sym_true] = ACTIONS(3829), + [anon_sym_false] = ACTIONS(3829), [anon_sym_from] = ACTIONS(3829), [anon_sym_into] = ACTIONS(3829), [anon_sym_join] = ACTIONS(3829), @@ -409941,21 +409963,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3833), [anon_sym_unmanaged] = ACTIONS(3833), [anon_sym_checked] = ACTIONS(3833), - [anon_sym_BANG] = ACTIONS(3835), [anon_sym_TILDE] = ACTIONS(3835), - [anon_sym_PLUS_PLUS] = ACTIONS(3835), - [anon_sym_DASH_DASH] = ACTIONS(3835), - [anon_sym_true] = ACTIONS(3833), - [anon_sym_false] = ACTIONS(3833), - [anon_sym_PLUS] = ACTIONS(3833), - [anon_sym_DASH] = ACTIONS(3833), - [anon_sym_STAR] = ACTIONS(3835), - [anon_sym_CARET] = ACTIONS(3835), - [anon_sym_AMP] = ACTIONS(3835), [anon_sym_this] = ACTIONS(3833), [anon_sym_scoped] = ACTIONS(3833), [anon_sym_base] = ACTIONS(3833), [anon_sym_var] = ACTIONS(3833), + [anon_sym_STAR] = ACTIONS(3835), [sym_predefined_type] = ACTIONS(3833), [anon_sym_break] = ACTIONS(3833), [anon_sym_unchecked] = ACTIONS(3833), @@ -409975,6 +409988,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3833), [anon_sym_if] = ACTIONS(3833), [anon_sym_DOT_DOT] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(3835), + [anon_sym_CARET] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3833), + [anon_sym_DASH] = ACTIONS(3833), + [anon_sym_BANG] = ACTIONS(3835), + [anon_sym_PLUS_PLUS] = ACTIONS(3835), + [anon_sym_DASH_DASH] = ACTIONS(3835), + [anon_sym_true] = ACTIONS(3833), + [anon_sym_false] = ACTIONS(3833), [anon_sym_from] = ACTIONS(3833), [anon_sym_into] = ACTIONS(3833), [anon_sym_join] = ACTIONS(3833), @@ -410061,21 +410083,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3837), [anon_sym_unmanaged] = ACTIONS(3837), [anon_sym_checked] = ACTIONS(3837), - [anon_sym_BANG] = ACTIONS(3839), [anon_sym_TILDE] = ACTIONS(3839), - [anon_sym_PLUS_PLUS] = ACTIONS(3839), - [anon_sym_DASH_DASH] = ACTIONS(3839), - [anon_sym_true] = ACTIONS(3837), - [anon_sym_false] = ACTIONS(3837), - [anon_sym_PLUS] = ACTIONS(3837), - [anon_sym_DASH] = ACTIONS(3837), - [anon_sym_STAR] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3839), - [anon_sym_AMP] = ACTIONS(3839), [anon_sym_this] = ACTIONS(3837), [anon_sym_scoped] = ACTIONS(3837), [anon_sym_base] = ACTIONS(3837), [anon_sym_var] = ACTIONS(3837), + [anon_sym_STAR] = ACTIONS(3839), [sym_predefined_type] = ACTIONS(3837), [anon_sym_break] = ACTIONS(3837), [anon_sym_unchecked] = ACTIONS(3837), @@ -410095,6 +410108,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3837), [anon_sym_if] = ACTIONS(3837), [anon_sym_DOT_DOT] = ACTIONS(3839), + [anon_sym_AMP] = ACTIONS(3839), + [anon_sym_CARET] = ACTIONS(3839), + [anon_sym_PLUS] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3837), + [anon_sym_BANG] = ACTIONS(3839), + [anon_sym_PLUS_PLUS] = ACTIONS(3839), + [anon_sym_DASH_DASH] = ACTIONS(3839), + [anon_sym_true] = ACTIONS(3837), + [anon_sym_false] = ACTIONS(3837), [anon_sym_from] = ACTIONS(3837), [anon_sym_into] = ACTIONS(3837), [anon_sym_join] = ACTIONS(3837), @@ -410181,21 +410203,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3841), [anon_sym_unmanaged] = ACTIONS(3841), [anon_sym_checked] = ACTIONS(3841), - [anon_sym_BANG] = ACTIONS(3843), [anon_sym_TILDE] = ACTIONS(3843), - [anon_sym_PLUS_PLUS] = ACTIONS(3843), - [anon_sym_DASH_DASH] = ACTIONS(3843), - [anon_sym_true] = ACTIONS(3841), - [anon_sym_false] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3841), - [anon_sym_DASH] = ACTIONS(3841), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3843), - [anon_sym_AMP] = ACTIONS(3843), [anon_sym_this] = ACTIONS(3841), [anon_sym_scoped] = ACTIONS(3841), [anon_sym_base] = ACTIONS(3841), [anon_sym_var] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(3843), [sym_predefined_type] = ACTIONS(3841), [anon_sym_break] = ACTIONS(3841), [anon_sym_unchecked] = ACTIONS(3841), @@ -410215,6 +410228,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3841), [anon_sym_if] = ACTIONS(3841), [anon_sym_DOT_DOT] = ACTIONS(3843), + [anon_sym_AMP] = ACTIONS(3843), + [anon_sym_CARET] = ACTIONS(3843), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_PLUS_PLUS] = ACTIONS(3843), + [anon_sym_DASH_DASH] = ACTIONS(3843), + [anon_sym_true] = ACTIONS(3841), + [anon_sym_false] = ACTIONS(3841), [anon_sym_from] = ACTIONS(3841), [anon_sym_into] = ACTIONS(3841), [anon_sym_join] = ACTIONS(3841), @@ -410301,21 +410323,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3845), [anon_sym_unmanaged] = ACTIONS(3845), [anon_sym_checked] = ACTIONS(3845), - [anon_sym_BANG] = ACTIONS(3847), [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3847), - [anon_sym_DASH_DASH] = ACTIONS(3847), - [anon_sym_true] = ACTIONS(3845), - [anon_sym_false] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(3847), - [anon_sym_CARET] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), [anon_sym_this] = ACTIONS(3845), [anon_sym_scoped] = ACTIONS(3845), [anon_sym_base] = ACTIONS(3845), [anon_sym_var] = ACTIONS(3845), + [anon_sym_STAR] = ACTIONS(3847), [sym_predefined_type] = ACTIONS(3845), [anon_sym_break] = ACTIONS(3845), [anon_sym_unchecked] = ACTIONS(3845), @@ -410335,6 +410348,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3845), [anon_sym_if] = ACTIONS(3845), [anon_sym_DOT_DOT] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_CARET] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3845), + [anon_sym_DASH] = ACTIONS(3845), + [anon_sym_BANG] = ACTIONS(3847), + [anon_sym_PLUS_PLUS] = ACTIONS(3847), + [anon_sym_DASH_DASH] = ACTIONS(3847), + [anon_sym_true] = ACTIONS(3845), + [anon_sym_false] = ACTIONS(3845), [anon_sym_from] = ACTIONS(3845), [anon_sym_into] = ACTIONS(3845), [anon_sym_join] = ACTIONS(3845), @@ -410421,21 +410443,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3849), [anon_sym_unmanaged] = ACTIONS(3849), [anon_sym_checked] = ACTIONS(3849), - [anon_sym_BANG] = ACTIONS(3851), [anon_sym_TILDE] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3851), - [anon_sym_DASH_DASH] = ACTIONS(3851), - [anon_sym_true] = ACTIONS(3849), - [anon_sym_false] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3849), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_STAR] = ACTIONS(3851), - [anon_sym_CARET] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), [anon_sym_this] = ACTIONS(3849), [anon_sym_scoped] = ACTIONS(3849), [anon_sym_base] = ACTIONS(3849), [anon_sym_var] = ACTIONS(3849), + [anon_sym_STAR] = ACTIONS(3851), [sym_predefined_type] = ACTIONS(3849), [anon_sym_break] = ACTIONS(3849), [anon_sym_unchecked] = ACTIONS(3849), @@ -410455,6 +410468,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3849), [anon_sym_if] = ACTIONS(3849), [anon_sym_DOT_DOT] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3851), + [anon_sym_CARET] = ACTIONS(3851), + [anon_sym_PLUS] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_BANG] = ACTIONS(3851), + [anon_sym_PLUS_PLUS] = ACTIONS(3851), + [anon_sym_DASH_DASH] = ACTIONS(3851), + [anon_sym_true] = ACTIONS(3849), + [anon_sym_false] = ACTIONS(3849), [anon_sym_from] = ACTIONS(3849), [anon_sym_into] = ACTIONS(3849), [anon_sym_join] = ACTIONS(3849), @@ -410541,21 +410563,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3853), [anon_sym_unmanaged] = ACTIONS(3853), [anon_sym_checked] = ACTIONS(3853), - [anon_sym_BANG] = ACTIONS(3855), [anon_sym_TILDE] = ACTIONS(3855), - [anon_sym_PLUS_PLUS] = ACTIONS(3855), - [anon_sym_DASH_DASH] = ACTIONS(3855), - [anon_sym_true] = ACTIONS(3853), - [anon_sym_false] = ACTIONS(3853), - [anon_sym_PLUS] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3853), - [anon_sym_STAR] = ACTIONS(3855), - [anon_sym_CARET] = ACTIONS(3855), - [anon_sym_AMP] = ACTIONS(3855), [anon_sym_this] = ACTIONS(3853), [anon_sym_scoped] = ACTIONS(3853), [anon_sym_base] = ACTIONS(3853), [anon_sym_var] = ACTIONS(3853), + [anon_sym_STAR] = ACTIONS(3855), [sym_predefined_type] = ACTIONS(3853), [anon_sym_break] = ACTIONS(3853), [anon_sym_unchecked] = ACTIONS(3853), @@ -410575,6 +410588,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3853), [anon_sym_if] = ACTIONS(3853), [anon_sym_DOT_DOT] = ACTIONS(3855), + [anon_sym_AMP] = ACTIONS(3855), + [anon_sym_CARET] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3853), + [anon_sym_DASH] = ACTIONS(3853), + [anon_sym_BANG] = ACTIONS(3855), + [anon_sym_PLUS_PLUS] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(3855), + [anon_sym_true] = ACTIONS(3853), + [anon_sym_false] = ACTIONS(3853), [anon_sym_from] = ACTIONS(3853), [anon_sym_into] = ACTIONS(3853), [anon_sym_join] = ACTIONS(3853), @@ -410661,21 +410683,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3857), [anon_sym_unmanaged] = ACTIONS(3857), [anon_sym_checked] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), [anon_sym_TILDE] = ACTIONS(3859), - [anon_sym_PLUS_PLUS] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_true] = ACTIONS(3857), - [anon_sym_false] = ACTIONS(3857), - [anon_sym_PLUS] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3857), - [anon_sym_STAR] = ACTIONS(3859), - [anon_sym_CARET] = ACTIONS(3859), - [anon_sym_AMP] = ACTIONS(3859), [anon_sym_this] = ACTIONS(3857), [anon_sym_scoped] = ACTIONS(3857), [anon_sym_base] = ACTIONS(3857), [anon_sym_var] = ACTIONS(3857), + [anon_sym_STAR] = ACTIONS(3859), [sym_predefined_type] = ACTIONS(3857), [anon_sym_break] = ACTIONS(3857), [anon_sym_unchecked] = ACTIONS(3857), @@ -410695,6 +410708,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3857), [anon_sym_if] = ACTIONS(3857), [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3859), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_true] = ACTIONS(3857), + [anon_sym_false] = ACTIONS(3857), [anon_sym_from] = ACTIONS(3857), [anon_sym_into] = ACTIONS(3857), [anon_sym_join] = ACTIONS(3857), @@ -410781,21 +410803,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3861), [anon_sym_unmanaged] = ACTIONS(3861), [anon_sym_checked] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), [anon_sym_TILDE] = ACTIONS(3863), - [anon_sym_PLUS_PLUS] = ACTIONS(3863), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_true] = ACTIONS(3861), - [anon_sym_false] = ACTIONS(3861), - [anon_sym_PLUS] = ACTIONS(3861), - [anon_sym_DASH] = ACTIONS(3861), - [anon_sym_STAR] = ACTIONS(3863), - [anon_sym_CARET] = ACTIONS(3863), - [anon_sym_AMP] = ACTIONS(3863), [anon_sym_this] = ACTIONS(3861), [anon_sym_scoped] = ACTIONS(3861), [anon_sym_base] = ACTIONS(3861), [anon_sym_var] = ACTIONS(3861), + [anon_sym_STAR] = ACTIONS(3863), [sym_predefined_type] = ACTIONS(3861), [anon_sym_break] = ACTIONS(3861), [anon_sym_unchecked] = ACTIONS(3861), @@ -410815,6 +410828,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(3861), [anon_sym_if] = ACTIONS(3861), [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_CARET] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3861), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3863), + [anon_sym_DASH_DASH] = ACTIONS(3863), + [anon_sym_true] = ACTIONS(3861), + [anon_sym_false] = ACTIONS(3861), [anon_sym_from] = ACTIONS(3861), [anon_sym_into] = ACTIONS(3861), [anon_sym_join] = ACTIONS(3861), @@ -410857,15 +410879,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(3863), }, [2197] = { - [sym__name] = STATE(5884), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(5567), - [sym__reserved_identifier] = STATE(2206), + [sym__name] = STATE(2471), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(2392), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2197), [sym_preproc_endregion] = STATE(2197), [sym_preproc_line] = STATE(2197), @@ -410876,91 +410898,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(2197), [sym_preproc_undef] = STATE(2197), [sym__identifier_token] = ACTIONS(3865), - [anon_sym_alias] = ACTIONS(3869), - [anon_sym_global] = ACTIONS(3869), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3873), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_delegate] = ACTIONS(2919), - [anon_sym_readonly] = ACTIONS(2919), - [anon_sym_file] = ACTIONS(3869), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_out] = ACTIONS(2919), - [anon_sym_where] = ACTIONS(3869), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3869), - [anon_sym_unmanaged] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_this] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3869), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3869), - [sym_predefined_type] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(3869), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3869), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3869), - [anon_sym_into] = ACTIONS(3869), - [anon_sym_join] = ACTIONS(3869), - [anon_sym_on] = ACTIONS(3869), - [anon_sym_equals] = ACTIONS(3869), - [anon_sym_let] = ACTIONS(3869), - [anon_sym_orderby] = ACTIONS(3869), - [anon_sym_ascending] = ACTIONS(3869), - [anon_sym_descending] = ACTIONS(3869), - [anon_sym_group] = ACTIONS(3869), - [anon_sym_by] = ACTIONS(3869), - [anon_sym_select] = ACTIONS(3869), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3876), + [anon_sym_alias] = ACTIONS(3868), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(3868), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3871), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3868), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3868), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3868), + [anon_sym_unmanaged] = ACTIONS(3868), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3868), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3868), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3868), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3868), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3868), + [anon_sym_into] = ACTIONS(3868), + [anon_sym_join] = ACTIONS(3868), + [anon_sym_on] = ACTIONS(3868), + [anon_sym_equals] = ACTIONS(3868), + [anon_sym_let] = ACTIONS(3868), + [anon_sym_orderby] = ACTIONS(3868), + [anon_sym_ascending] = ACTIONS(3868), + [anon_sym_descending] = ACTIONS(3868), + [anon_sym_group] = ACTIONS(3868), + [anon_sym_by] = ACTIONS(3868), + [anon_sym_select] = ACTIONS(3868), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3873), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410973,15 +410995,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2198] = { - [sym__name] = STATE(2461), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(2392), - [sym__reserved_identifier] = STATE(2395), + [sym__name] = STATE(5847), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(5576), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(2198), [sym_preproc_endregion] = STATE(2198), [sym_preproc_line] = STATE(2198), @@ -410991,92 +411013,92 @@ 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(3880), - [anon_sym_alias] = ACTIONS(3883), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(3883), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3883), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3883), - [anon_sym_unmanaged] = ACTIONS(3883), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3883), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3883), - [anon_sym_yield] = ACTIONS(3883), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3883), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3883), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3883), - [anon_sym_on] = ACTIONS(3883), - [anon_sym_equals] = ACTIONS(3883), - [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(3883), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3888), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [sym__identifier_token] = ACTIONS(3876), + [anon_sym_alias] = ACTIONS(3880), + [anon_sym_global] = ACTIONS(3880), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_delegate] = ACTIONS(2919), + [anon_sym_readonly] = ACTIONS(2919), + [anon_sym_file] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(2919), + [anon_sym_out] = ACTIONS(2919), + [anon_sym_where] = ACTIONS(3880), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3880), + [anon_sym_unmanaged] = ACTIONS(3880), + [anon_sym_this] = ACTIONS(2919), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3880), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3880), + [anon_sym_STAR] = ACTIONS(3696), + [sym_predefined_type] = ACTIONS(2919), + [anon_sym_yield] = ACTIONS(3880), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3880), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3880), + [anon_sym_into] = ACTIONS(3880), + [anon_sym_join] = ACTIONS(3880), + [anon_sym_on] = ACTIONS(3880), + [anon_sym_equals] = ACTIONS(3880), + [anon_sym_let] = ACTIONS(3880), + [anon_sym_orderby] = ACTIONS(3880), + [anon_sym_ascending] = ACTIONS(3880), + [anon_sym_descending] = ACTIONS(3880), + [anon_sym_group] = ACTIONS(3880), + [anon_sym_by] = ACTIONS(3880), + [anon_sym_select] = ACTIONS(3880), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411089,15 +411111,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2199] = { - [sym__name] = STATE(5884), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(5567), - [sym__reserved_identifier] = STATE(2206), + [sym__name] = STATE(5847), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(5576), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(2199), [sym_preproc_endregion] = STATE(2199), [sym_preproc_line] = STATE(2199), @@ -411109,69 +411131,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_undef] = STATE(2199), [sym__identifier_token] = ACTIONS(3891), [anon_sym_alias] = ACTIONS(3894), - [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3694), [anon_sym_global] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_RBRACE] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_RBRACE] = ACTIONS(3694), [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(3894), [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), [anon_sym_var] = ACTIONS(3894), + [anon_sym_STAR] = ACTIONS(3696), [anon_sym_yield] = ACTIONS(3894), - [anon_sym_switch] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(3894), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), [anon_sym_from] = ACTIONS(3894), [anon_sym_into] = ACTIONS(3894), [anon_sym_join] = ACTIONS(3894), @@ -411184,14 +411206,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3894), [anon_sym_by] = ACTIONS(3894), [anon_sym_select] = ACTIONS(3894), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), [sym_grit_metavariable] = ACTIONS(3897), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411204,15 +411226,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2200] = { - [sym__name] = STATE(5884), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(5567), - [sym__reserved_identifier] = STATE(2206), + [sym__name] = STATE(5847), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(5576), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(2200), [sym_preproc_endregion] = STATE(2200), [sym_preproc_line] = STATE(2200), @@ -411225,68 +411247,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3891), [anon_sym_alias] = ACTIONS(3894), [anon_sym_global] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), [anon_sym_ref] = ACTIONS(3900), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(3894), [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), [anon_sym_var] = ACTIONS(3894), + [anon_sym_STAR] = ACTIONS(3696), [anon_sym_yield] = ACTIONS(3894), - [anon_sym_switch] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(3894), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), [anon_sym_from] = ACTIONS(3894), [anon_sym_into] = ACTIONS(3894), [anon_sym_join] = ACTIONS(3894), @@ -411299,10 +411321,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3894), [anon_sym_by] = ACTIONS(3894), [anon_sym_select] = ACTIONS(3894), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), [sym_grit_metavariable] = ACTIONS(3897), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -411316,15 +411338,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2201] = { - [sym__name] = STATE(2776), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(2640), - [sym__reserved_identifier] = STATE(2395), + [sym__variable_designation] = STATE(4391), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2201), [sym_preproc_endregion] = STATE(2201), [sym_preproc_line] = STATE(2201), @@ -411334,87 +411351,92 @@ 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(3880), - [anon_sym_alias] = ACTIONS(3883), - [anon_sym_global] = ACTIONS(3883), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3902), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3883), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3883), - [anon_sym_unmanaged] = ACTIONS(3883), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3883), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3883), - [anon_sym_yield] = ACTIONS(3883), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3883), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3883), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3883), - [anon_sym_on] = ACTIONS(3883), - [anon_sym_equals] = ACTIONS(3883), - [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(3883), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3888), + [sym__identifier_token] = ACTIONS(3902), + [anon_sym_alias] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3910), + [anon_sym_global] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_RBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3916), + [anon_sym_RPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_RBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(3906), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_in] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_notnull] = ACTIONS(3906), + [anon_sym_unmanaged] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_scoped] = ACTIONS(3906), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3906), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(3906), + [sym_discard] = ACTIONS(3920), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3913), + [sym_op_left_shift] = ACTIONS(3913), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3913), + [sym_op_coalescing] = ACTIONS(3913), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(3906), + [anon_sym_into] = ACTIONS(3906), + [anon_sym_join] = ACTIONS(3906), + [anon_sym_on] = ACTIONS(3906), + [anon_sym_equals] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_orderby] = ACTIONS(3906), + [anon_sym_ascending] = ACTIONS(3906), + [anon_sym_descending] = ACTIONS(3906), + [anon_sym_group] = ACTIONS(3906), + [anon_sym_by] = ACTIONS(3906), + [anon_sym_select] = ACTIONS(3906), + [anon_sym_as] = ACTIONS(3913), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(3924), + [aux_sym_preproc_if_token3] = ACTIONS(3910), + [aux_sym_preproc_else_token1] = ACTIONS(3910), + [aux_sym_preproc_elif_token1] = ACTIONS(3910), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411427,10 +411449,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2202] = { - [sym__variable_designation] = STATE(4850), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), + [sym__name] = STATE(2684), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(2619), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2202), [sym_preproc_endregion] = STATE(2202), [sym_preproc_line] = STATE(2202), @@ -411440,92 +411467,87 @@ 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(3904), - [anon_sym_alias] = ACTIONS(3908), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym_global] = ACTIONS(3908), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_RBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3918), - [anon_sym_RPAREN] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(3908), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3908), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3908), - [anon_sym_unmanaged] = ACTIONS(3908), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3908), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3908), - [anon_sym_yield] = ACTIONS(3908), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3908), - [sym_discard] = ACTIONS(3922), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3915), - [anon_sym_from] = ACTIONS(3908), - [anon_sym_into] = ACTIONS(3908), - [anon_sym_join] = ACTIONS(3908), - [anon_sym_on] = ACTIONS(3908), - [anon_sym_equals] = ACTIONS(3908), - [anon_sym_let] = ACTIONS(3908), - [anon_sym_orderby] = ACTIONS(3908), - [anon_sym_ascending] = ACTIONS(3908), - [anon_sym_descending] = ACTIONS(3908), - [anon_sym_group] = ACTIONS(3908), - [anon_sym_by] = ACTIONS(3908), - [anon_sym_select] = ACTIONS(3908), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3915), - [sym_grit_metavariable] = ACTIONS(3926), - [aux_sym_preproc_if_token3] = ACTIONS(3912), - [aux_sym_preproc_else_token1] = ACTIONS(3912), - [aux_sym_preproc_elif_token1] = ACTIONS(3912), + [sym__identifier_token] = ACTIONS(3865), + [anon_sym_alias] = ACTIONS(3868), + [anon_sym_global] = ACTIONS(3868), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3928), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3868), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3868), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3868), + [anon_sym_unmanaged] = ACTIONS(3868), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3868), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3868), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3868), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3868), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3868), + [anon_sym_into] = ACTIONS(3868), + [anon_sym_join] = ACTIONS(3868), + [anon_sym_on] = ACTIONS(3868), + [anon_sym_equals] = ACTIONS(3868), + [anon_sym_let] = ACTIONS(3868), + [anon_sym_orderby] = ACTIONS(3868), + [anon_sym_ascending] = ACTIONS(3868), + [anon_sym_descending] = ACTIONS(3868), + [anon_sym_group] = ACTIONS(3868), + [anon_sym_by] = ACTIONS(3868), + [anon_sym_select] = ACTIONS(3868), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411538,10 +411560,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2203] = { - [sym__variable_designation] = STATE(4984), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), + [sym__name] = STATE(5847), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(5576), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(2203), [sym_preproc_endregion] = STATE(2203), [sym_preproc_line] = STATE(2203), @@ -411551,184 +411578,69 @@ 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(3904), - [anon_sym_alias] = ACTIONS(3908), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym_global] = ACTIONS(3908), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_RBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_RPAREN] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(3908), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3908), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3908), - [anon_sym_unmanaged] = ACTIONS(3908), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3908), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3908), - [anon_sym_yield] = ACTIONS(3908), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3908), - [sym_discard] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3915), - [anon_sym_from] = ACTIONS(3908), - [anon_sym_into] = ACTIONS(3908), - [anon_sym_join] = ACTIONS(3908), - [anon_sym_on] = ACTIONS(3908), - [anon_sym_equals] = ACTIONS(3908), - [anon_sym_let] = ACTIONS(3908), - [anon_sym_orderby] = ACTIONS(3908), - [anon_sym_ascending] = ACTIONS(3908), - [anon_sym_descending] = ACTIONS(3908), - [anon_sym_group] = ACTIONS(3908), - [anon_sym_by] = ACTIONS(3908), - [anon_sym_select] = ACTIONS(3908), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3915), - [sym_grit_metavariable] = ACTIONS(3926), - [aux_sym_preproc_if_token3] = ACTIONS(3912), - [aux_sym_preproc_else_token1] = ACTIONS(3912), - [aux_sym_preproc_elif_token1] = ACTIONS(3912), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2204] = { - [sym__name] = STATE(5884), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(5567), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_region] = STATE(2204), - [sym_preproc_endregion] = STATE(2204), - [sym_preproc_line] = STATE(2204), - [sym_preproc_pragma] = STATE(2204), - [sym_preproc_nullable] = STATE(2204), - [sym_preproc_error] = STATE(2204), - [sym_preproc_warning] = STATE(2204), - [sym_preproc_define] = STATE(2204), - [sym_preproc_undef] = STATE(2204), [sym__identifier_token] = ACTIONS(3891), [anon_sym_alias] = ACTIONS(3894), [anon_sym_global] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3938), - [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3930), + [anon_sym_LBRACE] = ACTIONS(3694), [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(3894), [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), [anon_sym_var] = ACTIONS(3894), + [anon_sym_STAR] = ACTIONS(3696), [anon_sym_yield] = ACTIONS(3894), - [anon_sym_switch] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(3894), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), [anon_sym_from] = ACTIONS(3894), [anon_sym_into] = ACTIONS(3894), [anon_sym_join] = ACTIONS(3894), @@ -411741,10 +411653,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3894), [anon_sym_by] = ACTIONS(3894), [anon_sym_select] = ACTIONS(3894), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), [sym_grit_metavariable] = ACTIONS(3897), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -411757,16 +411669,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2204] = { + [sym__name] = STATE(2734), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2712), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2713), + [sym_ref_type] = STATE(2735), + [sym__scoped_base_type] = STATE(2736), + [sym_identifier] = STATE(2647), + [sym__reserved_identifier] = STATE(2678), + [sym_preproc_region] = STATE(2204), + [sym_preproc_endregion] = STATE(2204), + [sym_preproc_line] = STATE(2204), + [sym_preproc_pragma] = STATE(2204), + [sym_preproc_nullable] = STATE(2204), + [sym_preproc_error] = STATE(2204), + [sym_preproc_warning] = STATE(2204), + [sym_preproc_define] = STATE(2204), + [sym_preproc_undef] = STATE(2204), + [sym__identifier_token] = ACTIONS(3932), + [anon_sym_alias] = ACTIONS(3935), + [anon_sym_global] = ACTIONS(3935), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3935), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3935), + [anon_sym_unmanaged] = ACTIONS(3935), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3935), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3935), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3935), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3935), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3935), + [anon_sym_into] = ACTIONS(3935), + [anon_sym_join] = ACTIONS(3935), + [anon_sym_on] = ACTIONS(3935), + [anon_sym_equals] = ACTIONS(3935), + [anon_sym_let] = ACTIONS(3935), + [anon_sym_orderby] = ACTIONS(3935), + [anon_sym_ascending] = ACTIONS(3935), + [anon_sym_descending] = ACTIONS(3935), + [anon_sym_group] = ACTIONS(3935), + [anon_sym_by] = ACTIONS(3935), + [anon_sym_select] = ACTIONS(3935), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = 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(3694), + }, [2205] = { - [sym__name] = STATE(2882), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(3005), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2821), - [sym_ref_type] = STATE(2881), - [sym__scoped_base_type] = STATE(2880), - [sym_identifier] = STATE(2700), - [sym__reserved_identifier] = STATE(2781), + [sym__variable_designation] = STATE(4584), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2205), [sym_preproc_endregion] = STATE(2205), [sym_preproc_line] = STATE(2205), @@ -411776,96 +411793,101 @@ 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(3940), - [anon_sym_alias] = ACTIONS(3943), - [anon_sym_global] = ACTIONS(3943), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3946), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3943), - [anon_sym_unmanaged] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3943), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3943), - [anon_sym_yield] = ACTIONS(3943), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3943), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3943), - [anon_sym_into] = ACTIONS(3943), - [anon_sym_join] = ACTIONS(3943), - [anon_sym_on] = ACTIONS(3943), - [anon_sym_equals] = ACTIONS(3943), - [anon_sym_let] = ACTIONS(3943), - [anon_sym_orderby] = ACTIONS(3943), - [anon_sym_ascending] = ACTIONS(3943), - [anon_sym_descending] = ACTIONS(3943), - [anon_sym_group] = ACTIONS(3943), - [anon_sym_by] = ACTIONS(3943), - [anon_sym_select] = ACTIONS(3943), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = 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(3696), + [sym__identifier_token] = ACTIONS(3902), + [anon_sym_alias] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3910), + [anon_sym_global] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_RBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_RPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_RBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(3906), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_notnull] = ACTIONS(3906), + [anon_sym_unmanaged] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_scoped] = ACTIONS(3906), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3906), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(3906), + [sym_discard] = ACTIONS(3947), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3913), + [sym_op_left_shift] = ACTIONS(3913), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3913), + [sym_op_coalescing] = ACTIONS(3913), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(3906), + [anon_sym_into] = ACTIONS(3906), + [anon_sym_join] = ACTIONS(3906), + [anon_sym_on] = ACTIONS(3906), + [anon_sym_equals] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_orderby] = ACTIONS(3906), + [anon_sym_ascending] = ACTIONS(3906), + [anon_sym_descending] = ACTIONS(3906), + [anon_sym_group] = ACTIONS(3906), + [anon_sym_by] = ACTIONS(3906), + [anon_sym_select] = ACTIONS(3906), + [anon_sym_as] = ACTIONS(3913), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(3924), + [aux_sym_preproc_if_token3] = ACTIONS(3910), + [aux_sym_preproc_else_token1] = ACTIONS(3910), + [aux_sym_preproc_elif_token1] = ACTIONS(3910), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2206] = { [sym_preproc_region] = STATE(2206), @@ -411877,6 +411899,115 @@ 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(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_operator] = ACTIONS(3696), + [anon_sym_this] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3694), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = 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), + }, + [2207] = { + [sym_preproc_region] = STATE(2207), + [sym_preproc_endregion] = STATE(2207), + [sym_preproc_line] = STATE(2207), + [sym_preproc_pragma] = STATE(2207), + [sym_preproc_nullable] = STATE(2207), + [sym_preproc_error] = STATE(2207), + [sym_preproc_warning] = STATE(2207), + [sym_preproc_define] = STATE(2207), + [sym_preproc_undef] = STATE(2207), [sym__identifier_token] = ACTIONS(3187), [anon_sym_alias] = ACTIONS(3187), [anon_sym_SEMI] = ACTIONS(3189), @@ -411899,35 +412030,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3187), [anon_sym_unmanaged] = ACTIONS(3187), [anon_sym_operator] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), [anon_sym_this] = ACTIONS(3187), [anon_sym_DOT] = ACTIONS(3187), [anon_sym_scoped] = ACTIONS(3187), [anon_sym_EQ_GT] = ACTIONS(3189), [anon_sym_COLON_COLON] = ACTIONS(3189), [anon_sym_var] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3187), [anon_sym_yield] = ACTIONS(3187), [anon_sym_switch] = ACTIONS(3187), [anon_sym_when] = ACTIONS(3187), [sym_discard] = ACTIONS(3187), [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), [anon_sym_and] = ACTIONS(3187), [anon_sym_or] = ACTIONS(3187), [anon_sym_PLUS_EQ] = ACTIONS(3189), @@ -411942,9 +412058,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3189), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), [anon_sym_AMP_AMP] = ACTIONS(3189), [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [sym_op_left_shift] = ACTIONS(3187), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3187), [sym_op_coalescing] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), [anon_sym_from] = ACTIONS(3187), [anon_sym_into] = ACTIONS(3187), [anon_sym_join] = ACTIONS(3187), @@ -411976,115 +412107,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2207] = { - [sym_preproc_region] = STATE(2207), - [sym_preproc_endregion] = STATE(2207), - [sym_preproc_line] = STATE(2207), - [sym_preproc_pragma] = STATE(2207), - [sym_preproc_nullable] = STATE(2207), - [sym_preproc_error] = STATE(2207), - [sym_preproc_warning] = STATE(2207), - [sym_preproc_define] = STATE(2207), - [sym_preproc_undef] = STATE(2207), - [sym__identifier_token] = ACTIONS(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_operator] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_this] = ACTIONS(3698), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3696), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2208] = { [sym_preproc_region] = STATE(2208), [sym_preproc_endregion] = STATE(2208), @@ -412117,34 +412139,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3951), [anon_sym_unmanaged] = ACTIONS(3951), [anon_sym_operator] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), [anon_sym_this] = ACTIONS(3951), [anon_sym_DOT] = ACTIONS(3951), [anon_sym_scoped] = ACTIONS(3951), [anon_sym_EQ_GT] = ACTIONS(3953), [anon_sym_var] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3951), [anon_sym_yield] = ACTIONS(3951), [anon_sym_switch] = ACTIONS(3951), [anon_sym_when] = ACTIONS(3951), [sym_discard] = ACTIONS(3951), [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), [anon_sym_and] = ACTIONS(3951), [anon_sym_or] = ACTIONS(3951), [anon_sym_PLUS_EQ] = ACTIONS(3953), @@ -412159,9 +412166,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3953), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), [anon_sym_AMP_AMP] = ACTIONS(3953), [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP] = ACTIONS(3951), + [sym_op_bitwise_or] = ACTIONS(3951), + [anon_sym_CARET] = ACTIONS(3951), + [sym_op_left_shift] = ACTIONS(3951), + [sym_op_right_shift] = ACTIONS(3951), + [sym_op_unsigned_right_shift] = ACTIONS(3951), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [sym_op_divide] = ACTIONS(3951), + [sym_op_modulo] = ACTIONS(3951), [sym_op_coalescing] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), [anon_sym_from] = ACTIONS(3951), [anon_sym_into] = ACTIONS(3951), [anon_sym_join] = ACTIONS(3951), @@ -412194,6 +412216,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2209] = { + [sym__name] = STATE(5847), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(5576), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(2209), [sym_preproc_endregion] = STATE(2209), [sym_preproc_line] = STATE(2209), @@ -412203,6 +412234,105 @@ 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(3891), + [anon_sym_alias] = ACTIONS(3894), + [anon_sym_global] = ACTIONS(3894), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_file] = ACTIONS(3894), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3894), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3894), + [anon_sym_unmanaged] = ACTIONS(3894), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3894), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3894), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3894), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3894), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3894), + [anon_sym_into] = ACTIONS(3894), + [anon_sym_join] = ACTIONS(3894), + [anon_sym_on] = ACTIONS(3894), + [anon_sym_equals] = ACTIONS(3894), + [anon_sym_let] = ACTIONS(3894), + [anon_sym_orderby] = ACTIONS(3894), + [anon_sym_ascending] = ACTIONS(3894), + [anon_sym_descending] = ACTIONS(3894), + [anon_sym_group] = ACTIONS(3894), + [anon_sym_by] = ACTIONS(3894), + [anon_sym_select] = ACTIONS(3894), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = 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_interpolation_close_brace] = ACTIONS(3694), + }, + [2210] = { + [sym_preproc_region] = STATE(2210), + [sym_preproc_endregion] = STATE(2210), + [sym_preproc_line] = STATE(2210), + [sym_preproc_pragma] = STATE(2210), + [sym_preproc_nullable] = STATE(2210), + [sym_preproc_error] = STATE(2210), + [sym_preproc_warning] = STATE(2210), + [sym_preproc_define] = STATE(2210), + [sym_preproc_undef] = STATE(2210), [sym__identifier_token] = ACTIONS(3955), [anon_sym_alias] = ACTIONS(3955), [anon_sym_SEMI] = ACTIONS(3957), @@ -412225,34 +412355,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3955), [anon_sym_unmanaged] = ACTIONS(3955), [anon_sym_operator] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3955), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_CARET] = ACTIONS(3955), - [anon_sym_PIPE] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_LT_LT] = ACTIONS(3955), - [anon_sym_GT_GT] = ACTIONS(3955), - [anon_sym_GT_GT_GT] = ACTIONS(3955), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), [anon_sym_this] = ACTIONS(3955), [anon_sym_DOT] = ACTIONS(3955), [anon_sym_scoped] = ACTIONS(3955), [anon_sym_EQ_GT] = ACTIONS(3957), [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), [anon_sym_yield] = ACTIONS(3955), [anon_sym_switch] = ACTIONS(3955), [anon_sym_when] = ACTIONS(3955), [sym_discard] = ACTIONS(3955), [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), [anon_sym_and] = ACTIONS(3955), [anon_sym_or] = ACTIONS(3955), [anon_sym_PLUS_EQ] = ACTIONS(3957), @@ -412267,9 +412382,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3957), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), [anon_sym_AMP_AMP] = ACTIONS(3957), [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), [anon_sym_from] = ACTIONS(3955), [anon_sym_into] = ACTIONS(3955), [anon_sym_join] = ACTIONS(3955), @@ -412301,116 +412431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2210] = { - [sym__name] = STATE(5884), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(5567), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_region] = STATE(2210), - [sym_preproc_endregion] = STATE(2210), - [sym_preproc_line] = STATE(2210), - [sym_preproc_pragma] = STATE(2210), - [sym_preproc_nullable] = STATE(2210), - [sym_preproc_error] = STATE(2210), - [sym_preproc_warning] = STATE(2210), - [sym_preproc_define] = STATE(2210), - [sym_preproc_undef] = STATE(2210), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3894), - [anon_sym_global] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3894), - [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3894), - [anon_sym_yield] = ACTIONS(3894), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3894), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3894), - [anon_sym_into] = ACTIONS(3894), - [anon_sym_join] = ACTIONS(3894), - [anon_sym_on] = ACTIONS(3894), - [anon_sym_equals] = ACTIONS(3894), - [anon_sym_let] = ACTIONS(3894), - [anon_sym_orderby] = ACTIONS(3894), - [anon_sym_ascending] = ACTIONS(3894), - [anon_sym_descending] = ACTIONS(3894), - [anon_sym_group] = ACTIONS(3894), - [anon_sym_by] = ACTIONS(3894), - [anon_sym_select] = ACTIONS(3894), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = 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_interpolation_close_brace] = ACTIONS(3696), - }, [2211] = { - [sym_type_argument_list] = STATE(2209), [sym_preproc_region] = STATE(2211), [sym_preproc_endregion] = STATE(2211), [sym_preproc_line] = STATE(2211), @@ -412420,92 +412441,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2211), [sym_preproc_define] = STATE(2211), [sym_preproc_undef] = STATE(2211), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), + [sym__identifier_token] = ACTIONS(3959), + [anon_sym_alias] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3959), + [anon_sym_EQ] = ACTIONS(3959), + [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_LBRACE] = ACTIONS(3961), + [anon_sym_RBRACE] = ACTIONS(3961), + [anon_sym_file] = ACTIONS(3959), [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_GT] = ACTIONS(3959), + [anon_sym_in] = ACTIONS(3959), + [anon_sym_where] = ACTIONS(3959), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_notnull] = ACTIONS(3959), + [anon_sym_unmanaged] = ACTIONS(3959), + [anon_sym_operator] = ACTIONS(3959), + [anon_sym_this] = ACTIONS(3959), + [anon_sym_DOT] = ACTIONS(3959), + [anon_sym_scoped] = ACTIONS(3959), + [anon_sym_EQ_GT] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3959), + [anon_sym_switch] = ACTIONS(3959), + [anon_sym_when] = ACTIONS(3959), + [sym_discard] = ACTIONS(3959), + [anon_sym_DOT_DOT] = ACTIONS(3961), + [anon_sym_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_EQ] = ACTIONS(3961), + [anon_sym_and] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3959), + [anon_sym_PLUS_EQ] = ACTIONS(3961), + [anon_sym_DASH_EQ] = ACTIONS(3961), + [anon_sym_STAR_EQ] = ACTIONS(3961), + [anon_sym_SLASH_EQ] = ACTIONS(3961), + [anon_sym_PERCENT_EQ] = ACTIONS(3961), + [anon_sym_AMP_EQ] = ACTIONS(3961), + [anon_sym_CARET_EQ] = ACTIONS(3961), + [anon_sym_PIPE_EQ] = ACTIONS(3961), + [anon_sym_LT_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_GT_EQ] = ACTIONS(3961), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3961), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3961), + [anon_sym_EQ_EQ] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [sym_op_bitwise_or] = ACTIONS(3959), + [anon_sym_CARET] = ACTIONS(3959), + [sym_op_left_shift] = ACTIONS(3959), + [sym_op_right_shift] = ACTIONS(3959), + [sym_op_unsigned_right_shift] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3959), + [sym_op_divide] = ACTIONS(3959), + [sym_op_modulo] = ACTIONS(3959), + [sym_op_coalescing] = ACTIONS(3959), + [anon_sym_BANG] = ACTIONS(3959), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_from] = ACTIONS(3959), + [anon_sym_into] = ACTIONS(3959), + [anon_sym_join] = ACTIONS(3959), + [anon_sym_on] = ACTIONS(3959), + [anon_sym_equals] = ACTIONS(3959), + [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(3959), + [anon_sym_select] = ACTIONS(3959), + [anon_sym_as] = ACTIONS(3959), + [anon_sym_is] = ACTIONS(3959), + [anon_sym_DASH_GT] = ACTIONS(3961), + [anon_sym_with] = ACTIONS(3959), + [sym_grit_metavariable] = ACTIONS(3961), + [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), @@ -412518,6 +412540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2212] = { + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2212), [sym_preproc_endregion] = STATE(2212), [sym_preproc_line] = STATE(2212), @@ -412527,93 +412550,92 @@ 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(3966), - [anon_sym_alias] = ACTIONS(3966), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym_global] = ACTIONS(3966), - [anon_sym_EQ] = ACTIONS(3966), - [anon_sym_LBRACK] = ACTIONS(3968), - [anon_sym_COLON] = ACTIONS(3968), - [anon_sym_COMMA] = ACTIONS(3968), - [anon_sym_RBRACK] = ACTIONS(3968), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_RPAREN] = ACTIONS(3968), - [anon_sym_LBRACE] = ACTIONS(3968), - [anon_sym_RBRACE] = ACTIONS(3968), - [anon_sym_file] = ACTIONS(3966), - [anon_sym_LT] = ACTIONS(3966), - [anon_sym_GT] = ACTIONS(3966), - [anon_sym_in] = ACTIONS(3966), - [anon_sym_where] = ACTIONS(3966), - [anon_sym_QMARK] = ACTIONS(3966), - [anon_sym_notnull] = ACTIONS(3966), - [anon_sym_unmanaged] = ACTIONS(3966), - [anon_sym_operator] = ACTIONS(3966), - [anon_sym_BANG] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3966), - [anon_sym_SLASH] = ACTIONS(3966), - [anon_sym_PERCENT] = ACTIONS(3966), - [anon_sym_CARET] = ACTIONS(3966), - [anon_sym_PIPE] = ACTIONS(3966), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_LT_LT] = ACTIONS(3966), - [anon_sym_GT_GT] = ACTIONS(3966), - [anon_sym_GT_GT_GT] = ACTIONS(3966), - [anon_sym_EQ_EQ] = ACTIONS(3968), - [anon_sym_BANG_EQ] = ACTIONS(3968), - [anon_sym_GT_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3968), - [anon_sym_this] = ACTIONS(3966), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_scoped] = ACTIONS(3966), - [anon_sym_EQ_GT] = ACTIONS(3968), - [anon_sym_var] = ACTIONS(3966), - [anon_sym_yield] = ACTIONS(3966), - [anon_sym_switch] = ACTIONS(3966), - [anon_sym_when] = ACTIONS(3966), - [sym_discard] = ACTIONS(3966), - [anon_sym_DOT_DOT] = ACTIONS(3968), - [anon_sym_and] = ACTIONS(3966), - [anon_sym_or] = ACTIONS(3966), - [anon_sym_PLUS_EQ] = ACTIONS(3968), - [anon_sym_DASH_EQ] = ACTIONS(3968), - [anon_sym_STAR_EQ] = ACTIONS(3968), - [anon_sym_SLASH_EQ] = ACTIONS(3968), - [anon_sym_PERCENT_EQ] = ACTIONS(3968), - [anon_sym_AMP_EQ] = ACTIONS(3968), - [anon_sym_CARET_EQ] = ACTIONS(3968), - [anon_sym_PIPE_EQ] = ACTIONS(3968), - [anon_sym_LT_LT_EQ] = ACTIONS(3968), - [anon_sym_GT_GT_EQ] = ACTIONS(3968), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3968), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_PIPE_PIPE] = ACTIONS(3968), - [sym_op_coalescing] = ACTIONS(3966), - [anon_sym_from] = ACTIONS(3966), - [anon_sym_into] = ACTIONS(3966), - [anon_sym_join] = ACTIONS(3966), - [anon_sym_on] = ACTIONS(3966), - [anon_sym_equals] = ACTIONS(3966), - [anon_sym_let] = ACTIONS(3966), - [anon_sym_orderby] = ACTIONS(3966), - [anon_sym_ascending] = ACTIONS(3966), - [anon_sym_descending] = ACTIONS(3966), - [anon_sym_group] = ACTIONS(3966), - [anon_sym_by] = ACTIONS(3966), - [anon_sym_select] = ACTIONS(3966), - [anon_sym_as] = ACTIONS(3966), - [anon_sym_is] = ACTIONS(3966), - [anon_sym_DASH_GT] = ACTIONS(3968), - [anon_sym_with] = ACTIONS(3966), - [sym_grit_metavariable] = ACTIONS(3968), - [aux_sym_preproc_if_token3] = ACTIONS(3968), - [aux_sym_preproc_else_token1] = ACTIONS(3968), - [aux_sym_preproc_elif_token1] = ACTIONS(3968), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3955), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412657,34 +412679,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3970), [anon_sym_unmanaged] = ACTIONS(3970), [anon_sym_operator] = ACTIONS(3970), - [anon_sym_BANG] = ACTIONS(3970), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3970), - [anon_sym_SLASH] = ACTIONS(3970), - [anon_sym_PERCENT] = ACTIONS(3970), - [anon_sym_CARET] = ACTIONS(3970), - [anon_sym_PIPE] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_LT_LT] = ACTIONS(3970), - [anon_sym_GT_GT] = ACTIONS(3970), - [anon_sym_GT_GT_GT] = ACTIONS(3970), - [anon_sym_EQ_EQ] = ACTIONS(3972), - [anon_sym_BANG_EQ] = ACTIONS(3972), - [anon_sym_GT_EQ] = ACTIONS(3972), - [anon_sym_LT_EQ] = ACTIONS(3972), [anon_sym_this] = ACTIONS(3970), [anon_sym_DOT] = ACTIONS(3970), [anon_sym_scoped] = ACTIONS(3970), [anon_sym_EQ_GT] = ACTIONS(3972), [anon_sym_var] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), [anon_sym_yield] = ACTIONS(3970), [anon_sym_switch] = ACTIONS(3970), [anon_sym_when] = ACTIONS(3970), [sym_discard] = ACTIONS(3970), [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), [anon_sym_and] = ACTIONS(3970), [anon_sym_or] = ACTIONS(3970), [anon_sym_PLUS_EQ] = ACTIONS(3972), @@ -412699,9 +412706,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3972), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3972), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3972), [anon_sym_AMP_AMP] = ACTIONS(3972), [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [sym_op_bitwise_or] = ACTIONS(3970), + [anon_sym_CARET] = ACTIONS(3970), + [sym_op_left_shift] = ACTIONS(3970), + [sym_op_right_shift] = ACTIONS(3970), + [sym_op_unsigned_right_shift] = ACTIONS(3970), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [sym_op_divide] = ACTIONS(3970), + [sym_op_modulo] = ACTIONS(3970), [sym_op_coalescing] = ACTIONS(3970), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), [anon_sym_from] = ACTIONS(3970), [anon_sym_into] = ACTIONS(3970), [anon_sym_join] = ACTIONS(3970), @@ -412765,34 +412787,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3974), [anon_sym_unmanaged] = ACTIONS(3974), [anon_sym_operator] = ACTIONS(3974), - [anon_sym_BANG] = ACTIONS(3974), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3974), - [anon_sym_PERCENT] = ACTIONS(3974), - [anon_sym_CARET] = ACTIONS(3974), - [anon_sym_PIPE] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_LT_LT] = ACTIONS(3974), - [anon_sym_GT_GT] = ACTIONS(3974), - [anon_sym_GT_GT_GT] = ACTIONS(3974), - [anon_sym_EQ_EQ] = ACTIONS(3976), - [anon_sym_BANG_EQ] = ACTIONS(3976), - [anon_sym_GT_EQ] = ACTIONS(3976), - [anon_sym_LT_EQ] = ACTIONS(3976), [anon_sym_this] = ACTIONS(3974), [anon_sym_DOT] = ACTIONS(3974), [anon_sym_scoped] = ACTIONS(3974), [anon_sym_EQ_GT] = ACTIONS(3976), [anon_sym_var] = ACTIONS(3974), + [anon_sym_STAR] = ACTIONS(3974), [anon_sym_yield] = ACTIONS(3974), [anon_sym_switch] = ACTIONS(3974), [anon_sym_when] = ACTIONS(3974), [sym_discard] = ACTIONS(3974), [anon_sym_DOT_DOT] = ACTIONS(3976), + [anon_sym_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_EQ] = ACTIONS(3976), [anon_sym_and] = ACTIONS(3974), [anon_sym_or] = ACTIONS(3974), [anon_sym_PLUS_EQ] = ACTIONS(3976), @@ -412807,9 +412814,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3976), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3976), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3976), + [anon_sym_EQ_EQ] = ACTIONS(3976), + [anon_sym_BANG_EQ] = ACTIONS(3976), [anon_sym_AMP_AMP] = ACTIONS(3976), [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [sym_op_bitwise_or] = ACTIONS(3974), + [anon_sym_CARET] = ACTIONS(3974), + [sym_op_left_shift] = ACTIONS(3974), + [sym_op_right_shift] = ACTIONS(3974), + [sym_op_unsigned_right_shift] = ACTIONS(3974), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [sym_op_divide] = ACTIONS(3974), + [sym_op_modulo] = ACTIONS(3974), [sym_op_coalescing] = ACTIONS(3974), + [anon_sym_BANG] = ACTIONS(3974), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3976), [anon_sym_from] = ACTIONS(3974), [anon_sym_into] = ACTIONS(3974), [anon_sym_join] = ACTIONS(3974), @@ -412842,6 +412864,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2215] = { + [sym__name] = STATE(6161), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(6033), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(2215), [sym_preproc_endregion] = STATE(2215), [sym_preproc_line] = STATE(2215), @@ -412851,184 +412882,67 @@ 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(3978), - [anon_sym_alias] = ACTIONS(3978), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym_global] = ACTIONS(3978), - [anon_sym_EQ] = ACTIONS(3978), - [anon_sym_LBRACK] = ACTIONS(3980), - [anon_sym_COLON] = ACTIONS(3980), - [anon_sym_COMMA] = ACTIONS(3980), - [anon_sym_RBRACK] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym_RPAREN] = ACTIONS(3980), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_RBRACE] = ACTIONS(3980), - [anon_sym_file] = ACTIONS(3978), - [anon_sym_LT] = ACTIONS(3978), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_in] = ACTIONS(3978), - [anon_sym_where] = ACTIONS(3978), - [anon_sym_QMARK] = ACTIONS(3978), - [anon_sym_notnull] = ACTIONS(3978), - [anon_sym_unmanaged] = ACTIONS(3978), - [anon_sym_operator] = ACTIONS(3978), - [anon_sym_BANG] = ACTIONS(3978), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3978), - [anon_sym_SLASH] = ACTIONS(3978), - [anon_sym_PERCENT] = ACTIONS(3978), - [anon_sym_CARET] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(3978), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_LT_LT] = ACTIONS(3978), - [anon_sym_GT_GT] = ACTIONS(3978), - [anon_sym_GT_GT_GT] = ACTIONS(3978), - [anon_sym_EQ_EQ] = ACTIONS(3980), - [anon_sym_BANG_EQ] = ACTIONS(3980), - [anon_sym_GT_EQ] = ACTIONS(3980), - [anon_sym_LT_EQ] = ACTIONS(3980), - [anon_sym_this] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3978), - [anon_sym_scoped] = ACTIONS(3978), - [anon_sym_EQ_GT] = ACTIONS(3980), - [anon_sym_var] = ACTIONS(3978), - [anon_sym_yield] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_when] = ACTIONS(3978), - [sym_discard] = ACTIONS(3978), - [anon_sym_DOT_DOT] = ACTIONS(3980), - [anon_sym_and] = ACTIONS(3978), - [anon_sym_or] = ACTIONS(3978), - [anon_sym_PLUS_EQ] = ACTIONS(3980), - [anon_sym_DASH_EQ] = ACTIONS(3980), - [anon_sym_STAR_EQ] = ACTIONS(3980), - [anon_sym_SLASH_EQ] = ACTIONS(3980), - [anon_sym_PERCENT_EQ] = ACTIONS(3980), - [anon_sym_AMP_EQ] = ACTIONS(3980), - [anon_sym_CARET_EQ] = ACTIONS(3980), - [anon_sym_PIPE_EQ] = ACTIONS(3980), - [anon_sym_LT_LT_EQ] = ACTIONS(3980), - [anon_sym_GT_GT_EQ] = ACTIONS(3980), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3980), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_PIPE_PIPE] = ACTIONS(3980), - [sym_op_coalescing] = ACTIONS(3978), - [anon_sym_from] = ACTIONS(3978), - [anon_sym_into] = ACTIONS(3978), - [anon_sym_join] = ACTIONS(3978), - [anon_sym_on] = ACTIONS(3978), - [anon_sym_equals] = ACTIONS(3978), - [anon_sym_let] = ACTIONS(3978), - [anon_sym_orderby] = ACTIONS(3978), - [anon_sym_ascending] = ACTIONS(3978), - [anon_sym_descending] = ACTIONS(3978), - [anon_sym_group] = ACTIONS(3978), - [anon_sym_by] = ACTIONS(3978), - [anon_sym_select] = ACTIONS(3978), - [anon_sym_as] = ACTIONS(3978), - [anon_sym_is] = ACTIONS(3978), - [anon_sym_DASH_GT] = ACTIONS(3980), - [anon_sym_with] = ACTIONS(3978), - [sym_grit_metavariable] = ACTIONS(3980), - [aux_sym_preproc_if_token3] = ACTIONS(3980), - [aux_sym_preproc_else_token1] = ACTIONS(3980), - [aux_sym_preproc_elif_token1] = ACTIONS(3980), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2216] = { - [sym__name] = STATE(6149), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(6038), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_region] = STATE(2216), - [sym_preproc_endregion] = STATE(2216), - [sym_preproc_line] = STATE(2216), - [sym_preproc_pragma] = STATE(2216), - [sym_preproc_nullable] = STATE(2216), - [sym_preproc_error] = STATE(2216), - [sym_preproc_warning] = STATE(2216), - [sym_preproc_define] = STATE(2216), - [sym_preproc_undef] = STATE(2216), [sym__identifier_token] = ACTIONS(3891), [anon_sym_alias] = ACTIONS(3894), [anon_sym_global] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3694), [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(3894), [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), [anon_sym_var] = ACTIONS(3894), + [anon_sym_STAR] = ACTIONS(3696), [anon_sym_yield] = ACTIONS(3894), - [anon_sym_switch] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(3894), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), [anon_sym_from] = ACTIONS(3894), [anon_sym_into] = ACTIONS(3894), [anon_sym_join] = ACTIONS(3894), @@ -413041,10 +412955,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3894), [anon_sym_by] = ACTIONS(3894), [anon_sym_select] = ACTIONS(3894), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), [sym_grit_metavariable] = ACTIONS(3897), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -413057,7 +412971,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2216] = { + [sym_preproc_region] = STATE(2216), + [sym_preproc_endregion] = STATE(2216), + [sym_preproc_line] = STATE(2216), + [sym_preproc_pragma] = STATE(2216), + [sym_preproc_nullable] = STATE(2216), + [sym_preproc_error] = STATE(2216), + [sym_preproc_warning] = STATE(2216), + [sym_preproc_define] = STATE(2216), + [sym_preproc_undef] = STATE(2216), + [sym__identifier_token] = ACTIONS(3980), + [anon_sym_alias] = ACTIONS(3980), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_global] = ACTIONS(3980), + [anon_sym_EQ] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_COLON] = ACTIONS(3982), + [anon_sym_COMMA] = ACTIONS(3982), + [anon_sym_RBRACK] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym_RPAREN] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3982), + [anon_sym_RBRACE] = ACTIONS(3982), + [anon_sym_file] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3980), + [anon_sym_GT] = ACTIONS(3980), + [anon_sym_in] = ACTIONS(3980), + [anon_sym_where] = ACTIONS(3980), + [anon_sym_QMARK] = ACTIONS(3980), + [anon_sym_notnull] = ACTIONS(3980), + [anon_sym_unmanaged] = ACTIONS(3980), + [anon_sym_operator] = ACTIONS(3980), + [anon_sym_this] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_scoped] = ACTIONS(3980), + [anon_sym_EQ_GT] = ACTIONS(3982), + [anon_sym_var] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3980), + [anon_sym_yield] = ACTIONS(3980), + [anon_sym_switch] = ACTIONS(3980), + [anon_sym_when] = ACTIONS(3980), + [sym_discard] = ACTIONS(3980), + [anon_sym_DOT_DOT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_EQ] = ACTIONS(3982), + [anon_sym_and] = ACTIONS(3980), + [anon_sym_or] = ACTIONS(3980), + [anon_sym_PLUS_EQ] = ACTIONS(3982), + [anon_sym_DASH_EQ] = ACTIONS(3982), + [anon_sym_STAR_EQ] = ACTIONS(3982), + [anon_sym_SLASH_EQ] = ACTIONS(3982), + [anon_sym_PERCENT_EQ] = ACTIONS(3982), + [anon_sym_AMP_EQ] = ACTIONS(3982), + [anon_sym_CARET_EQ] = ACTIONS(3982), + [anon_sym_PIPE_EQ] = ACTIONS(3982), + [anon_sym_LT_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_GT_EQ] = ACTIONS(3982), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3982), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3982), + [anon_sym_EQ_EQ] = ACTIONS(3982), + [anon_sym_BANG_EQ] = ACTIONS(3982), + [anon_sym_AMP_AMP] = ACTIONS(3982), + [anon_sym_PIPE_PIPE] = ACTIONS(3982), + [anon_sym_AMP] = ACTIONS(3980), + [sym_op_bitwise_or] = ACTIONS(3980), + [anon_sym_CARET] = ACTIONS(3980), + [sym_op_left_shift] = ACTIONS(3980), + [sym_op_right_shift] = ACTIONS(3980), + [sym_op_unsigned_right_shift] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3980), + [sym_op_divide] = ACTIONS(3980), + [sym_op_modulo] = ACTIONS(3980), + [sym_op_coalescing] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3982), + [anon_sym_from] = ACTIONS(3980), + [anon_sym_into] = ACTIONS(3980), + [anon_sym_join] = ACTIONS(3980), + [anon_sym_on] = ACTIONS(3980), + [anon_sym_equals] = ACTIONS(3980), + [anon_sym_let] = ACTIONS(3980), + [anon_sym_orderby] = ACTIONS(3980), + [anon_sym_ascending] = ACTIONS(3980), + [anon_sym_descending] = ACTIONS(3980), + [anon_sym_group] = ACTIONS(3980), + [anon_sym_by] = ACTIONS(3980), + [anon_sym_select] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(3980), + [anon_sym_is] = ACTIONS(3980), + [anon_sym_DASH_GT] = ACTIONS(3982), + [anon_sym_with] = ACTIONS(3980), + [sym_grit_metavariable] = ACTIONS(3982), + [aux_sym_preproc_if_token3] = ACTIONS(3982), + [aux_sym_preproc_else_token1] = ACTIONS(3982), + [aux_sym_preproc_elif_token1] = ACTIONS(3982), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2217] = { + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2217), [sym_preproc_endregion] = STATE(2217), [sym_preproc_line] = STATE(2217), @@ -413067,92 +413090,91 @@ 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(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym_global] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_RBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_RPAREN] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3915), - [anon_sym_unmanaged] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3915), - [anon_sym_yield] = ACTIONS(3915), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3915), - [sym_discard] = ACTIONS(3915), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3915), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3915), - [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(3915), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3915), - [sym_grit_metavariable] = ACTIONS(3912), - [aux_sym_preproc_if_token3] = ACTIONS(3912), - [aux_sym_preproc_else_token1] = ACTIONS(3912), - [aux_sym_preproc_elif_token1] = ACTIONS(3912), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413165,7 +413187,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2218] = { - [sym_type_argument_list] = STATE(2209), [sym_preproc_region] = STATE(2218), [sym_preproc_endregion] = STATE(2218), [sym_preproc_line] = STATE(2218), @@ -413175,91 +413196,92 @@ 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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3984), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(3913), + [anon_sym_alias] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3910), + [anon_sym_global] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_RBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_RPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_RBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_in] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_notnull] = ACTIONS(3913), + [anon_sym_unmanaged] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_scoped] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_yield] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(3913), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3913), + [sym_op_left_shift] = ACTIONS(3913), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3913), + [sym_op_coalescing] = ACTIONS(3913), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(3913), + [anon_sym_into] = ACTIONS(3913), + [anon_sym_join] = ACTIONS(3913), + [anon_sym_on] = ACTIONS(3913), + [anon_sym_equals] = ACTIONS(3913), + [anon_sym_let] = ACTIONS(3913), + [anon_sym_orderby] = ACTIONS(3913), + [anon_sym_ascending] = ACTIONS(3913), + [anon_sym_descending] = ACTIONS(3913), + [anon_sym_group] = ACTIONS(3913), + [anon_sym_by] = ACTIONS(3913), + [anon_sym_select] = ACTIONS(3913), + [anon_sym_as] = ACTIONS(3913), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(3910), + [aux_sym_preproc_if_token3] = ACTIONS(3910), + [aux_sym_preproc_else_token1] = ACTIONS(3910), + [aux_sym_preproc_elif_token1] = ACTIONS(3910), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413272,7 +413294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2219] = { - [sym_type_argument_list] = STATE(2209), + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2219), [sym_preproc_endregion] = STATE(2219), [sym_preproc_line] = STATE(2219), @@ -413282,160 +413304,145 @@ 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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2220] = { - [sym_preproc_region] = STATE(2220), - [sym_preproc_endregion] = STATE(2220), - [sym_preproc_line] = STATE(2220), - [sym_preproc_pragma] = STATE(2220), - [sym_preproc_nullable] = STATE(2220), - [sym_preproc_error] = STATE(2220), - [sym_preproc_warning] = STATE(2220), - [sym_preproc_define] = STATE(2220), - [sym_preproc_undef] = STATE(2220), - [sym__identifier_token] = ACTIONS(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(3993), - [anon_sym_COLON] = ACTIONS(3988), - [anon_sym_COMMA] = ACTIONS(3988), - [anon_sym_RBRACK] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3993), - [anon_sym_RPAREN] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_RBRACE] = ACTIONS(3988), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_in] = ACTIONS(4003), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_EQ_GT] = ACTIONS(3988), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(3986), - [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3993), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3984), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2220] = { + [sym_preproc_region] = STATE(2220), + [sym_preproc_endregion] = STATE(2220), + [sym_preproc_line] = STATE(2220), + [sym_preproc_pragma] = STATE(2220), + [sym_preproc_nullable] = STATE(2220), + [sym_preproc_error] = STATE(2220), + [sym_preproc_warning] = STATE(2220), + [sym_preproc_define] = STATE(2220), + [sym_preproc_undef] = STATE(2220), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_COLON] = ACTIONS(3988), + [anon_sym_COMMA] = ACTIONS(3988), + [anon_sym_RBRACK] = ACTIONS(3988), + [anon_sym_LPAREN] = ACTIONS(3993), + [anon_sym_RPAREN] = ACTIONS(3988), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_RBRACE] = ACTIONS(3988), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_in] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_EQ_GT] = ACTIONS(3988), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3986), + [sym_discard] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -413450,11 +413457,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), [anon_sym_AMP_AMP] = ACTIONS(3993), [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(4003), + [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), @@ -413498,67 +413520,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(4008), [anon_sym_SEMI] = ACTIONS(4010), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4014), - [anon_sym_RBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_RPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4014), + [anon_sym_COMMA] = ACTIONS(4010), + [anon_sym_RBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_RPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4010), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_in] = ACTIONS(4012), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_in] = ACTIONS(4017), [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), [anon_sym_EQ_GT] = ACTIONS(4010), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), + [anon_sym_switch] = ACTIONS(4017), [anon_sym_when] = ACTIONS(4008), [sym_discard] = ACTIONS(4008), [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), [anon_sym_AMP_AMP] = ACTIONS(4010), [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), [anon_sym_from] = ACTIONS(4008), [anon_sym_into] = ACTIONS(4008), [anon_sym_join] = ACTIONS(4008), @@ -413571,11 +413593,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4008), [anon_sym_by] = ACTIONS(4008), [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_if_token3] = ACTIONS(4010), [aux_sym_preproc_else_token1] = ACTIONS(4010), [aux_sym_preproc_elif_token1] = ACTIONS(4010), @@ -413602,69 +413624,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_undef] = STATE(2222), [sym__identifier_token] = ACTIONS(4008), [anon_sym_alias] = ACTIONS(4008), - [anon_sym_SEMI] = ACTIONS(4017), + [anon_sym_SEMI] = ACTIONS(4020), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_RBRACK] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_RPAREN] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4010), + [anon_sym_RBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_RPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4010), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_in] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_in] = ACTIONS(4013), [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4017), + [anon_sym_EQ_GT] = ACTIONS(4020), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), + [anon_sym_switch] = ACTIONS(4013), [anon_sym_when] = ACTIONS(4008), [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4008), - [anon_sym_or] = ACTIONS(4008), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), [anon_sym_from] = ACTIONS(4008), [anon_sym_into] = ACTIONS(4008), [anon_sym_join] = ACTIONS(4008), @@ -413677,14 +413699,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4008), [anon_sym_by] = ACTIONS(4008), [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_if_token3] = ACTIONS(4017), - [aux_sym_preproc_else_token1] = ACTIONS(4017), - [aux_sym_preproc_elif_token1] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_if_token3] = ACTIONS(4020), + [aux_sym_preproc_else_token1] = ACTIONS(4020), + [aux_sym_preproc_elif_token1] = ACTIONS(4020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413706,6 +413728,112 @@ 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(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_SEMI] = ACTIONS(4015), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4015), + [anon_sym_COMMA] = ACTIONS(4015), + [anon_sym_RBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_RPAREN] = ACTIONS(4015), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_in] = ACTIONS(4008), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_EQ_GT] = ACTIONS(4015), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4008), + [anon_sym_or] = ACTIONS(4008), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = 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(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_if_token3] = ACTIONS(4015), + [aux_sym_preproc_else_token1] = ACTIONS(4015), + [aux_sym_preproc_elif_token1] = ACTIONS(4015), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2224] = { + [sym_preproc_region] = STATE(2224), + [sym_preproc_endregion] = STATE(2224), + [sym_preproc_line] = STATE(2224), + [sym_preproc_pragma] = STATE(2224), + [sym_preproc_nullable] = STATE(2224), + [sym_preproc_error] = STATE(2224), + [sym_preproc_warning] = STATE(2224), + [sym_preproc_define] = STATE(2224), + [sym_preproc_undef] = STATE(2224), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_SEMI] = ACTIONS(3988), @@ -413727,33 +413855,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3999), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), [anon_sym_DOT] = ACTIONS(3999), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_EQ_GT] = ACTIONS(3988), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3999), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -413768,11 +413881,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), [anon_sym_AMP_AMP] = ACTIONS(3993), [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(4003), [anon_sym_join] = ACTIONS(3986), [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), @@ -413802,84 +413930,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2224] = { - [sym__variable_designation] = STATE(4984), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(2737), - [sym_preproc_region] = STATE(2224), - [sym_preproc_endregion] = STATE(2224), - [sym_preproc_line] = STATE(2224), - [sym_preproc_pragma] = STATE(2224), - [sym_preproc_nullable] = STATE(2224), - [sym_preproc_error] = STATE(2224), - [sym_preproc_warning] = STATE(2224), - [sym_preproc_define] = STATE(2224), - [sym_preproc_undef] = STATE(2224), + [2225] = { + [sym__variable_designation] = STATE(4584), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(2652), + [sym_preproc_region] = STATE(2225), + [sym_preproc_endregion] = STATE(2225), + [sym_preproc_line] = STATE(2225), + [sym_preproc_pragma] = STATE(2225), + [sym_preproc_nullable] = STATE(2225), + [sym_preproc_error] = STATE(2225), + [sym_preproc_warning] = STATE(2225), + [sym_preproc_define] = STATE(2225), + [sym_preproc_undef] = STATE(2225), [sym__identifier_token] = ACTIONS(4022), [anon_sym_alias] = ACTIONS(4026), [anon_sym_global] = ACTIONS(4026), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_RBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_RPAREN] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_RBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_RPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_RBRACE] = ACTIONS(3910), [anon_sym_file] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(4026), - [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(4026), [anon_sym_unmanaged] = ACTIONS(4026), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(4026), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), [anon_sym_var] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(3696), [anon_sym_yield] = ACTIONS(4026), - [anon_sym_switch] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(4026), - [sym_discard] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), + [sym_discard] = ACTIONS(3947), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), [anon_sym_from] = ACTIONS(4026), [anon_sym_into] = ACTIONS(4026), [anon_sym_join] = ACTIONS(4026), @@ -413892,10 +414020,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4026), [anon_sym_by] = ACTIONS(4026), [anon_sym_select] = ACTIONS(4026), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), [sym_grit_metavariable] = ACTIONS(4030), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -413908,112 +414036,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2225] = { - [sym_preproc_region] = STATE(2225), - [sym_preproc_endregion] = STATE(2225), - [sym_preproc_line] = STATE(2225), - [sym_preproc_pragma] = STATE(2225), - [sym_preproc_nullable] = STATE(2225), - [sym_preproc_error] = STATE(2225), - [sym_preproc_warning] = STATE(2225), - [sym_preproc_define] = STATE(2225), - [sym_preproc_undef] = STATE(2225), - [sym__identifier_token] = ACTIONS(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_SEMI] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = 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(4017), - [anon_sym_RBRACE] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4008), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), - [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(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_if_token3] = ACTIONS(4014), - [aux_sym_preproc_else_token1] = ACTIONS(4014), - [aux_sym_preproc_elif_token1] = ACTIONS(4014), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2226] = { [sym_preproc_region] = STATE(2226), [sym_preproc_endregion] = STATE(2226), @@ -414024,112 +414046,6 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_SEMI] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = 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(4017), - [anon_sym_RBRACE] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4008), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4019), - [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(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_if_token3] = ACTIONS(4014), - [aux_sym_preproc_else_token1] = ACTIONS(4014), - [aux_sym_preproc_elif_token1] = ACTIONS(4014), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2227] = { - [sym_preproc_region] = STATE(2227), - [sym_preproc_endregion] = STATE(2227), - [sym_preproc_line] = STATE(2227), - [sym_preproc_pragma] = STATE(2227), - [sym_preproc_nullable] = STATE(2227), - [sym_preproc_error] = STATE(2227), - [sym_preproc_warning] = STATE(2227), - [sym_preproc_define] = STATE(2227), - [sym_preproc_undef] = STATE(2227), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_SEMI] = ACTIONS(3997), @@ -414151,33 +414067,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(4037), - [anon_sym_PLUS_PLUS] = ACTIONS(4034), - [anon_sym_DASH_DASH] = ACTIONS(4034), - [anon_sym_PLUS] = ACTIONS(4037), - [anon_sym_DASH] = ACTIONS(4037), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(4037), - [anon_sym_PERCENT] = ACTIONS(4037), - [anon_sym_CARET] = ACTIONS(4037), - [anon_sym_PIPE] = ACTIONS(4037), - [anon_sym_AMP] = ACTIONS(4037), - [anon_sym_LT_LT] = ACTIONS(4037), - [anon_sym_GT_GT] = ACTIONS(4037), - [anon_sym_GT_GT_GT] = ACTIONS(4037), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_GT_EQ] = ACTIONS(4034), - [anon_sym_LT_EQ] = ACTIONS(4034), [anon_sym_DOT] = ACTIONS(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_EQ_GT] = ACTIONS(3997), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(4037), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4034), + [anon_sym_GT_EQ] = ACTIONS(4034), [anon_sym_and] = ACTIONS(3986), [anon_sym_or] = ACTIONS(3986), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -414192,9 +414093,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4034), + [anon_sym_BANG_EQ] = ACTIONS(4034), [anon_sym_AMP_AMP] = ACTIONS(4034), [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4037), + [sym_op_bitwise_or] = ACTIONS(4037), + [anon_sym_CARET] = ACTIONS(4037), + [sym_op_left_shift] = ACTIONS(4037), + [sym_op_right_shift] = ACTIONS(4037), + [sym_op_unsigned_right_shift] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4037), + [anon_sym_DASH] = ACTIONS(4037), + [sym_op_divide] = ACTIONS(4037), + [sym_op_modulo] = ACTIONS(4037), [sym_op_coalescing] = ACTIONS(4037), + [anon_sym_BANG] = ACTIONS(4037), + [anon_sym_PLUS_PLUS] = ACTIONS(4034), + [anon_sym_DASH_DASH] = ACTIONS(4034), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), @@ -414226,6 +414142,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2227] = { + [sym_preproc_region] = STATE(2227), + [sym_preproc_endregion] = STATE(2227), + [sym_preproc_line] = STATE(2227), + [sym_preproc_pragma] = STATE(2227), + [sym_preproc_nullable] = STATE(2227), + [sym_preproc_error] = STATE(2227), + [sym_preproc_warning] = STATE(2227), + [sym_preproc_define] = STATE(2227), + [sym_preproc_undef] = STATE(2227), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_SEMI] = ACTIONS(4010), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [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(4015), + [anon_sym_RBRACE] = ACTIONS(4010), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_in] = ACTIONS(4017), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_EQ_GT] = ACTIONS(4010), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), + [anon_sym_from] = ACTIONS(4008), + [anon_sym_into] = ACTIONS(4017), + [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(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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_preproc_region] = STATE(2228), [sym_preproc_endregion] = STATE(2228), @@ -414236,90 +414258,90 @@ 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(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3915), - [anon_sym_unmanaged] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3915), - [anon_sym_yield] = ACTIONS(3915), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3915), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3915), - [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(3915), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3912), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [sym__identifier_token] = ACTIONS(3913), + [anon_sym_alias] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3913), + [anon_sym_unmanaged] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3913), + [anon_sym_into] = ACTIONS(3913), + [anon_sym_join] = ACTIONS(3913), + [anon_sym_on] = ACTIONS(3913), + [anon_sym_equals] = ACTIONS(3913), + [anon_sym_let] = ACTIONS(3913), + [anon_sym_orderby] = ACTIONS(3913), + [anon_sym_ascending] = ACTIONS(3913), + [anon_sym_descending] = ACTIONS(3913), + [anon_sym_group] = ACTIONS(3913), + [anon_sym_by] = ACTIONS(3913), + [anon_sym_select] = ACTIONS(3913), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3910), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414343,69 +414365,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_undef] = STATE(2229), [sym__identifier_token] = ACTIONS(4008), [anon_sym_alias] = ACTIONS(4008), - [anon_sym_SEMI] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(4020), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_RBRACK] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_RPAREN] = ACTIONS(4010), - [anon_sym_RBRACE] = ACTIONS(4010), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_RBRACK] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_RPAREN] = ACTIONS(4020), + [anon_sym_RBRACE] = ACTIONS(4020), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_in] = ACTIONS(4012), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_in] = ACTIONS(4013), [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4010), + [anon_sym_EQ_GT] = ACTIONS(4020), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), + [anon_sym_switch] = ACTIONS(4013), [anon_sym_when] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4019), + [anon_sym_into] = ACTIONS(4017), [anon_sym_join] = ACTIONS(4008), [anon_sym_on] = ACTIONS(4008), [anon_sym_equals] = ACTIONS(4008), @@ -414416,14 +414438,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4008), [anon_sym_by] = ACTIONS(4008), [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_if_token3] = ACTIONS(4010), - [aux_sym_preproc_else_token1] = ACTIONS(4010), - [aux_sym_preproc_elif_token1] = ACTIONS(4010), + [anon_sym_as] = ACTIONS(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_if_token3] = ACTIONS(4020), + [aux_sym_preproc_else_token1] = ACTIONS(4020), + [aux_sym_preproc_elif_token1] = ACTIONS(4020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414436,29 +414458,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2230] = { - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_modifier] = STATE(4327), - [sym_variable_declaration] = STATE(7928), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5919), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6010), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if_in_attribute_list] = STATE(3690), [sym_preproc_region] = STATE(2230), [sym_preproc_endregion] = STATE(2230), [sym_preproc_line] = STATE(2230), @@ -414468,191 +414467,6 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3137), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2317), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(4040), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_event] = ACTIONS(4042), - [anon_sym_class] = ACTIONS(4044), - [anon_sym_ref] = ACTIONS(4046), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(4048), - [anon_sym_interface] = ACTIONS(4050), - [anon_sym_delegate] = ACTIONS(4052), - [anon_sym_record] = ACTIONS(4054), - [anon_sym_public] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3231), - [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_protected] = 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(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(4056), - [anon_sym_implicit] = ACTIONS(4058), - [anon_sym_explicit] = ACTIONS(4058), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), - [aux_sym_preproc_if_token1] = 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), - }, - [2231] = { - [sym__variable_designation] = STATE(5709), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym_identifier] = STATE(5708), - [sym__reserved_identifier] = STATE(5570), - [sym_preproc_region] = STATE(2231), - [sym_preproc_endregion] = STATE(2231), - [sym_preproc_line] = STATE(2231), - [sym_preproc_pragma] = STATE(2231), - [sym_preproc_nullable] = STATE(2231), - [sym_preproc_error] = STATE(2231), - [sym_preproc_warning] = STATE(2231), - [sym_preproc_define] = STATE(2231), - [sym_preproc_undef] = STATE(2231), - [sym__identifier_token] = ACTIONS(4064), - [anon_sym_alias] = ACTIONS(4068), - [anon_sym_global] = ACTIONS(4068), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(4072), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(4068), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(4068), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(4068), - [anon_sym_unmanaged] = ACTIONS(4068), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(4068), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4068), - [anon_sym_yield] = ACTIONS(4068), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(4068), - [sym_discard] = ACTIONS(4076), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3915), - [anon_sym_from] = ACTIONS(4068), - [anon_sym_into] = ACTIONS(4068), - [anon_sym_join] = ACTIONS(4068), - [anon_sym_on] = ACTIONS(4068), - [anon_sym_equals] = ACTIONS(4068), - [anon_sym_let] = ACTIONS(4068), - [anon_sym_orderby] = ACTIONS(4068), - [anon_sym_ascending] = ACTIONS(4068), - [anon_sym_descending] = ACTIONS(4068), - [anon_sym_group] = ACTIONS(4068), - [anon_sym_by] = ACTIONS(4068), - [anon_sym_select] = ACTIONS(4068), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3915), - [sym_grit_metavariable] = 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(3912), - }, - [2232] = { - [sym_preproc_region] = STATE(2232), - [sym_preproc_endregion] = STATE(2232), - [sym_preproc_line] = STATE(2232), - [sym_preproc_pragma] = STATE(2232), - [sym_preproc_nullable] = STATE(2232), - [sym_preproc_error] = STATE(2232), - [sym_preproc_warning] = STATE(2232), - [sym_preproc_define] = STATE(2232), - [sym_preproc_undef] = STATE(2232), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_SEMI] = ACTIONS(4006), @@ -414673,32 +414487,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_EQ_GT] = ACTIONS(4006), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), [anon_sym_and] = ACTIONS(3991), [anon_sym_or] = ACTIONS(3991), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -414713,9 +414512,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(4037), [anon_sym_join] = ACTIONS(3986), @@ -414747,99 +414561,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2233] = { - [sym__variable_designation] = STATE(4984), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(2737), - [sym_preproc_region] = STATE(2233), - [sym_preproc_endregion] = STATE(2233), - [sym_preproc_line] = STATE(2233), - [sym_preproc_pragma] = STATE(2233), - [sym_preproc_nullable] = STATE(2233), - [sym_preproc_error] = STATE(2233), - [sym_preproc_warning] = STATE(2233), - [sym_preproc_define] = STATE(2233), - [sym_preproc_undef] = STATE(2233), - [sym__identifier_token] = ACTIONS(4022), - [anon_sym_alias] = ACTIONS(4026), - [anon_sym_global] = ACTIONS(4026), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4026), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4026), - [anon_sym_unmanaged] = ACTIONS(4026), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4026), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4026), - [anon_sym_yield] = ACTIONS(4026), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4026), - [sym_discard] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(4026), - [anon_sym_into] = ACTIONS(4026), - [anon_sym_join] = ACTIONS(4026), - [anon_sym_on] = ACTIONS(4026), - [anon_sym_equals] = ACTIONS(4026), - [anon_sym_let] = ACTIONS(4026), - [anon_sym_orderby] = ACTIONS(4026), - [anon_sym_ascending] = ACTIONS(4026), - [anon_sym_descending] = ACTIONS(4026), - [anon_sym_group] = ACTIONS(4026), - [anon_sym_by] = ACTIONS(4026), - [anon_sym_select] = ACTIONS(4026), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4030), + [2231] = { + [sym__variable_designation] = STATE(5794), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym_identifier] = STATE(5790), + [sym__reserved_identifier] = STATE(5562), + [sym_preproc_region] = STATE(2231), + [sym_preproc_endregion] = STATE(2231), + [sym_preproc_line] = STATE(2231), + [sym_preproc_pragma] = STATE(2231), + [sym_preproc_nullable] = STATE(2231), + [sym_preproc_error] = STATE(2231), + [sym_preproc_warning] = STATE(2231), + [sym_preproc_define] = STATE(2231), + [sym_preproc_undef] = STATE(2231), + [sym__identifier_token] = ACTIONS(4040), + [anon_sym_alias] = ACTIONS(4044), + [anon_sym_global] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(4048), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(4044), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_notnull] = ACTIONS(4044), + [anon_sym_unmanaged] = ACTIONS(4044), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_scoped] = ACTIONS(4044), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_yield] = ACTIONS(4044), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(4044), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3913), + [sym_op_left_shift] = ACTIONS(3913), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3913), + [sym_op_coalescing] = ACTIONS(3913), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(4044), + [anon_sym_into] = ACTIONS(4044), + [anon_sym_join] = ACTIONS(4044), + [anon_sym_on] = ACTIONS(4044), + [anon_sym_equals] = ACTIONS(4044), + [anon_sym_let] = ACTIONS(4044), + [anon_sym_orderby] = ACTIONS(4044), + [anon_sym_ascending] = ACTIONS(4044), + [anon_sym_descending] = ACTIONS(4044), + [anon_sym_group] = ACTIONS(4044), + [anon_sym_by] = ACTIONS(4044), + [anon_sym_select] = ACTIONS(4044), + [anon_sym_as] = ACTIONS(3913), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(4056), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3910), + }, + [2232] = { + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_modifier] = STATE(3484), + [sym_variable_declaration] = STATE(7756), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5911), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6006), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if_in_attribute_list] = STATE(3187), + [sym_preproc_region] = STATE(2232), + [sym_preproc_endregion] = STATE(2232), + [sym_preproc_line] = STATE(2232), + [sym_preproc_pragma] = STATE(2232), + [sym_preproc_nullable] = STATE(2232), + [sym_preproc_error] = STATE(2232), + [sym_preproc_warning] = STATE(2232), + [sym_preproc_define] = STATE(2232), + [sym_preproc_undef] = STATE(2232), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2969), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2313), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(4060), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_event] = ACTIONS(4062), + [anon_sym_class] = ACTIONS(4064), + [anon_sym_ref] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_enum] = ACTIONS(4068), + [anon_sym_interface] = ACTIONS(4070), + [anon_sym_delegate] = ACTIONS(4072), + [anon_sym_record] = ACTIONS(4074), + [anon_sym_public] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3231), + [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_protected] = 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(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_implicit] = ACTIONS(4076), + [anon_sym_explicit] = ACTIONS(4076), + [anon_sym_TILDE] = ACTIONS(4078), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4082), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414851,79 +414769,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2234] = { - [sym_preproc_region] = STATE(2234), - [sym_preproc_endregion] = STATE(2234), - [sym_preproc_line] = STATE(2234), - [sym_preproc_pragma] = STATE(2234), - [sym_preproc_nullable] = STATE(2234), - [sym_preproc_error] = STATE(2234), - [sym_preproc_warning] = STATE(2234), - [sym_preproc_define] = STATE(2234), - [sym_preproc_undef] = STATE(2234), + [2233] = { + [sym_preproc_region] = STATE(2233), + [sym_preproc_endregion] = STATE(2233), + [sym_preproc_line] = STATE(2233), + [sym_preproc_pragma] = STATE(2233), + [sym_preproc_nullable] = STATE(2233), + [sym_preproc_error] = STATE(2233), + [sym_preproc_warning] = STATE(2233), + [sym_preproc_define] = STATE(2233), + [sym_preproc_undef] = STATE(2233), [sym__identifier_token] = ACTIONS(4008), [anon_sym_alias] = ACTIONS(4008), - [anon_sym_SEMI] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(4020), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_RBRACK] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_RPAREN] = ACTIONS(4010), - [anon_sym_RBRACE] = ACTIONS(4010), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_RBRACK] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_RPAREN] = ACTIONS(4020), + [anon_sym_RBRACE] = ACTIONS(4020), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_in] = ACTIONS(4012), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_in] = ACTIONS(4013), [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4010), + [anon_sym_EQ_GT] = ACTIONS(4020), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), + [anon_sym_switch] = ACTIONS(4013), [anon_sym_when] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), [anon_sym_from] = ACTIONS(4008), [anon_sym_into] = ACTIONS(4008), [anon_sym_join] = ACTIONS(4008), @@ -414936,14 +414854,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4008), [anon_sym_by] = ACTIONS(4008), [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_if_token3] = ACTIONS(4010), - [aux_sym_preproc_else_token1] = ACTIONS(4010), - [aux_sym_preproc_elif_token1] = ACTIONS(4010), + [anon_sym_as] = ACTIONS(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_if_token3] = ACTIONS(4020), + [aux_sym_preproc_else_token1] = ACTIONS(4020), + [aux_sym_preproc_elif_token1] = ACTIONS(4020), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2234] = { + [sym__variable_designation] = STATE(4584), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(2652), + [sym_preproc_region] = STATE(2234), + [sym_preproc_endregion] = STATE(2234), + [sym_preproc_line] = STATE(2234), + [sym_preproc_pragma] = STATE(2234), + [sym_preproc_nullable] = STATE(2234), + [sym_preproc_error] = STATE(2234), + [sym_preproc_warning] = STATE(2234), + [sym_preproc_define] = STATE(2234), + [sym_preproc_undef] = STATE(2234), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4026), + [anon_sym_global] = ACTIONS(4026), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4026), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4026), + [anon_sym_unmanaged] = ACTIONS(4026), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4026), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(4026), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4026), + [sym_discard] = ACTIONS(3947), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4026), + [anon_sym_into] = ACTIONS(4026), + [anon_sym_join] = ACTIONS(4026), + [anon_sym_on] = ACTIONS(4026), + [anon_sym_equals] = ACTIONS(4026), + [anon_sym_let] = ACTIONS(4026), + [anon_sym_orderby] = ACTIONS(4026), + [anon_sym_ascending] = ACTIONS(4026), + [anon_sym_descending] = ACTIONS(4026), + [anon_sym_group] = ACTIONS(4026), + [anon_sym_by] = ACTIONS(4026), + [anon_sym_select] = ACTIONS(4026), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4030), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414992,43 +415014,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sealed] = ACTIONS(4084), [anon_sym_virtual] = ACTIONS(4084), [anon_sym_volatile] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), [anon_sym_where] = ACTIONS(4084), - [anon_sym_QMARK] = ACTIONS(3195), + [anon_sym_QMARK] = ACTIONS(3203), [anon_sym_notnull] = ACTIONS(4084), [anon_sym_unmanaged] = ACTIONS(4084), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_DOT] = ACTIONS(3203), [anon_sym_scoped] = ACTIONS(4084), [anon_sym_var] = ACTIONS(4084), + [anon_sym_STAR] = ACTIONS(3205), [sym_predefined_type] = ACTIONS(4084), - [anon_sym_while] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3199), [anon_sym_yield] = ACTIONS(4084), - [anon_sym_switch] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3203), [anon_sym_when] = ACTIONS(4084), - [anon_sym_else] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [sym_op_coalescing] = ACTIONS(3197), + [anon_sym_else] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3205), + [anon_sym_LT_EQ] = ACTIONS(3205), + [anon_sym_GT_EQ] = ACTIONS(3205), + [anon_sym_EQ_EQ] = ACTIONS(3205), + [anon_sym_BANG_EQ] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3203), + [sym_op_bitwise_or] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3205), + [sym_op_left_shift] = ACTIONS(3205), + [sym_op_right_shift] = ACTIONS(3203), + [sym_op_unsigned_right_shift] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [sym_op_divide] = ACTIONS(3203), + [sym_op_modulo] = ACTIONS(3205), + [sym_op_coalescing] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), [anon_sym_from] = ACTIONS(4084), [anon_sym_into] = ACTIONS(4084), [anon_sym_join] = ACTIONS(4084), @@ -415041,10 +415063,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4084), [anon_sym_by] = ACTIONS(4084), [anon_sym_select] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_DASH_GT] = ACTIONS(3197), - [anon_sym_with] = ACTIONS(3195), + [anon_sym_as] = ACTIONS(3203), + [anon_sym_is] = ACTIONS(3203), + [anon_sym_DASH_GT] = ACTIONS(3205), + [anon_sym_with] = ACTIONS(3203), [sym_grit_metavariable] = ACTIONS(4086), [aux_sym_preproc_if_token1] = ACTIONS(4086), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -415059,15 +415081,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2236] = { - [sym__name] = STATE(4694), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_ref_type] = STATE(4695), - [sym__scoped_base_type] = STATE(4696), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), + [sym__name] = STATE(3938), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_ref_type] = STATE(3937), + [sym__scoped_base_type] = STATE(3936), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(2236), [sym_preproc_endregion] = STATE(2236), [sym_preproc_line] = STATE(2236), @@ -415079,57 +415101,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_undef] = STATE(2236), [sym__identifier_token] = ACTIONS(4088), [anon_sym_alias] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3694), [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), [anon_sym_ref] = ACTIONS(4092), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(4090), [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), [anon_sym_var] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(3694), [anon_sym_yield] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), [anon_sym_from] = ACTIONS(4090), [anon_sym_into] = ACTIONS(4094), [anon_sym_join] = ACTIONS(4090), @@ -415142,14 +415164,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4090), [anon_sym_by] = ACTIONS(4090), [anon_sym_select] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), [sym_grit_metavariable] = ACTIONS(4097), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415162,15 +415184,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2237] = { - [sym__name] = STATE(2461), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), + [sym__name] = STATE(2471), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), [sym_identifier] = STATE(2392), - [sym__reserved_identifier] = STATE(2395), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2237), [sym_preproc_endregion] = STATE(2237), [sym_preproc_line] = STATE(2237), @@ -415180,79 +415202,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2237), [sym_preproc_define] = STATE(2237), [sym_preproc_undef] = STATE(2237), - [sym__identifier_token] = ACTIONS(3880), - [anon_sym_alias] = ACTIONS(3883), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(3883), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3883), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3883), - [anon_sym_unmanaged] = ACTIONS(3883), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3883), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3883), - [anon_sym_yield] = ACTIONS(3883), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3883), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3883), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3883), - [anon_sym_on] = ACTIONS(3883), - [anon_sym_equals] = ACTIONS(3883), - [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(3883), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3888), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [sym__identifier_token] = ACTIONS(3865), + [anon_sym_alias] = ACTIONS(3868), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3871), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3868), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3868), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3868), + [anon_sym_unmanaged] = ACTIONS(3868), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3868), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3868), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3868), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3868), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3868), + [anon_sym_into] = ACTIONS(3868), + [anon_sym_join] = ACTIONS(3868), + [anon_sym_on] = ACTIONS(3868), + [anon_sym_equals] = ACTIONS(3868), + [anon_sym_let] = ACTIONS(3868), + [anon_sym_orderby] = ACTIONS(3868), + [anon_sym_ascending] = ACTIONS(3868), + [anon_sym_descending] = ACTIONS(3868), + [anon_sym_group] = ACTIONS(3868), + [anon_sym_by] = ACTIONS(3868), + [anon_sym_select] = ACTIONS(3868), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3873), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415293,32 +415315,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_EQ_GT] = ACTIONS(4006), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), [anon_sym_and] = ACTIONS(3991), [anon_sym_or] = ACTIONS(3991), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -415333,9 +415340,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), @@ -415368,6 +415390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2239] = { + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2239), [sym_preproc_endregion] = STATE(2239), [sym_preproc_line] = STATE(2239), @@ -415377,291 +415400,290 @@ 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(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_global] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_RBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3915), - [anon_sym_unmanaged] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3915), - [anon_sym_yield] = ACTIONS(3915), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3915), - [sym_discard] = ACTIONS(3915), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3915), - [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(3915), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3912), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2240] = { - [sym__variable_designation] = STATE(4984), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(2737), - [sym_preproc_region] = STATE(2240), - [sym_preproc_endregion] = STATE(2240), - [sym_preproc_line] = STATE(2240), - [sym_preproc_pragma] = STATE(2240), - [sym_preproc_nullable] = STATE(2240), - [sym_preproc_error] = STATE(2240), - [sym_preproc_warning] = STATE(2240), - [sym_preproc_define] = STATE(2240), - [sym_preproc_undef] = STATE(2240), - [sym__identifier_token] = ACTIONS(4022), - [anon_sym_alias] = ACTIONS(4026), - [anon_sym_global] = ACTIONS(4026), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4026), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4026), - [anon_sym_unmanaged] = ACTIONS(4026), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4026), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4026), - [anon_sym_yield] = ACTIONS(4026), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4026), - [sym_discard] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(4026), - [anon_sym_into] = ACTIONS(4026), - [anon_sym_join] = ACTIONS(4026), - [anon_sym_on] = ACTIONS(4026), - [anon_sym_equals] = ACTIONS(4026), - [anon_sym_let] = ACTIONS(4026), - [anon_sym_orderby] = ACTIONS(4026), - [anon_sym_ascending] = ACTIONS(4026), - [anon_sym_descending] = ACTIONS(4026), - [anon_sym_group] = ACTIONS(4026), - [anon_sym_by] = ACTIONS(4026), - [anon_sym_select] = ACTIONS(4026), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4030), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2241] = { - [sym_type_argument_list] = STATE(2209), - [sym_preproc_region] = STATE(2241), - [sym_preproc_endregion] = STATE(2241), - [sym_preproc_line] = STATE(2241), - [sym_preproc_pragma] = STATE(2241), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3955), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2240] = { + [sym__variable_designation] = STATE(4584), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3824), + [sym_preproc_region] = STATE(2240), + [sym_preproc_endregion] = STATE(2240), + [sym_preproc_line] = STATE(2240), + [sym_preproc_pragma] = STATE(2240), + [sym_preproc_nullable] = STATE(2240), + [sym_preproc_error] = STATE(2240), + [sym_preproc_warning] = STATE(2240), + [sym_preproc_define] = STATE(2240), + [sym_preproc_undef] = STATE(2240), + [sym__identifier_token] = ACTIONS(4101), + [anon_sym_alias] = ACTIONS(4105), + [anon_sym_global] = ACTIONS(4105), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(4105), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_in] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(4105), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_notnull] = ACTIONS(4105), + [anon_sym_unmanaged] = ACTIONS(4105), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_scoped] = ACTIONS(4105), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4105), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_yield] = ACTIONS(4105), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(4105), + [sym_discard] = ACTIONS(3947), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3913), + [sym_op_left_shift] = ACTIONS(3913), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3913), + [sym_op_coalescing] = ACTIONS(3913), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(4105), + [anon_sym_into] = ACTIONS(4105), + [anon_sym_join] = ACTIONS(4105), + [anon_sym_on] = ACTIONS(4105), + [anon_sym_equals] = ACTIONS(4105), + [anon_sym_let] = ACTIONS(4105), + [anon_sym_orderby] = ACTIONS(4105), + [anon_sym_ascending] = ACTIONS(4105), + [anon_sym_descending] = ACTIONS(4105), + [anon_sym_group] = ACTIONS(4105), + [anon_sym_by] = ACTIONS(4105), + [anon_sym_select] = ACTIONS(4105), + [anon_sym_as] = ACTIONS(3913), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(4109), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2241] = { + [sym__name] = STATE(4541), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_ref_type] = STATE(4178), + [sym__scoped_base_type] = STATE(4193), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), + [sym_preproc_region] = STATE(2241), + [sym_preproc_endregion] = STATE(2241), + [sym_preproc_line] = STATE(2241), + [sym_preproc_pragma] = STATE(2241), [sym_preproc_nullable] = STATE(2241), [sym_preproc_error] = STATE(2241), [sym_preproc_warning] = STATE(2241), [sym_preproc_define] = STATE(2241), [sym_preproc_undef] = STATE(2241), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(4099), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4119), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415674,30 +415696,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2242] = { - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6212), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym__lambda_parameters] = STATE(7967), - [sym_identifier] = STATE(6072), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if_in_attribute_list] = STATE(3690), [sym_preproc_region] = STATE(2242), [sym_preproc_endregion] = STATE(2242), [sym_preproc_line] = STATE(2242), @@ -415707,63 +415705,87 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3137), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2444), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_class] = ACTIONS(4044), - [anon_sym_ref] = ACTIONS(4046), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(4103), - [anon_sym_interface] = ACTIONS(4050), - [anon_sym_delegate] = ACTIONS(4052), - [anon_sym_record] = ACTIONS(4054), - [anon_sym_public] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(39), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3231), - [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_protected] = 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(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), - [aux_sym_preproc_if_token1] = ACTIONS(4062), + [sym__identifier_token] = ACTIONS(3913), + [anon_sym_alias] = ACTIONS(3913), + [anon_sym_global] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_RBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_RBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3913), + [anon_sym_unmanaged] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3913), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3913), + [anon_sym_into] = ACTIONS(3913), + [anon_sym_join] = ACTIONS(3913), + [anon_sym_on] = ACTIONS(3913), + [anon_sym_equals] = ACTIONS(3913), + [anon_sym_let] = ACTIONS(3913), + [anon_sym_orderby] = ACTIONS(3913), + [anon_sym_ascending] = ACTIONS(3913), + [anon_sym_descending] = ACTIONS(3913), + [anon_sym_group] = ACTIONS(3913), + [anon_sym_by] = ACTIONS(3913), + [anon_sym_select] = ACTIONS(3913), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3910), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415776,10 +415798,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2243] = { - [sym__variable_designation] = STATE(5237), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym_identifier] = STATE(5241), - [sym__reserved_identifier] = STATE(2395), + [sym__variable_designation] = STATE(5321), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym_identifier] = STATE(5320), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2243), [sym_preproc_endregion] = STATE(2243), [sym_preproc_line] = STATE(2243), @@ -415789,83 +415811,83 @@ 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(4105), - [anon_sym_alias] = ACTIONS(4109), - [anon_sym_global] = ACTIONS(4109), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(4109), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(4109), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(4109), - [anon_sym_unmanaged] = ACTIONS(4109), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(4109), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4109), - [anon_sym_yield] = ACTIONS(4109), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(4109), - [sym_discard] = ACTIONS(4117), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3915), - [anon_sym_from] = ACTIONS(4109), - [anon_sym_into] = ACTIONS(4109), - [anon_sym_join] = ACTIONS(4109), - [anon_sym_on] = ACTIONS(4109), - [anon_sym_equals] = ACTIONS(4109), - [anon_sym_let] = ACTIONS(4109), - [anon_sym_orderby] = ACTIONS(4109), - [anon_sym_ascending] = ACTIONS(4109), - [anon_sym_descending] = ACTIONS(4109), - [anon_sym_group] = ACTIONS(4109), - [anon_sym_by] = ACTIONS(4109), - [anon_sym_select] = ACTIONS(4109), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3915), - [sym_grit_metavariable] = ACTIONS(4121), + [sym__identifier_token] = ACTIONS(4121), + [anon_sym_alias] = ACTIONS(4125), + [anon_sym_global] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(4125), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_notnull] = ACTIONS(4125), + [anon_sym_unmanaged] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_scoped] = ACTIONS(4125), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_yield] = ACTIONS(4125), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(4125), + [sym_discard] = ACTIONS(4133), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3913), + [sym_op_left_shift] = ACTIONS(3913), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3913), + [sym_op_coalescing] = ACTIONS(3913), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(4125), + [anon_sym_into] = ACTIONS(4125), + [anon_sym_join] = ACTIONS(4125), + [anon_sym_on] = ACTIONS(4125), + [anon_sym_equals] = ACTIONS(4125), + [anon_sym_let] = ACTIONS(4125), + [anon_sym_orderby] = ACTIONS(4125), + [anon_sym_ascending] = ACTIONS(4125), + [anon_sym_descending] = ACTIONS(4125), + [anon_sym_group] = ACTIONS(4125), + [anon_sym_by] = ACTIONS(4125), + [anon_sym_select] = ACTIONS(4125), + [anon_sym_as] = ACTIONS(3913), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(4137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415878,10 +415900,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2244] = { - [sym__variable_designation] = STATE(4984), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4662), + [sym__variable_designation] = STATE(4584), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(2652), [sym_preproc_region] = STATE(2244), [sym_preproc_endregion] = STATE(2244), [sym_preproc_line] = STATE(2244), @@ -415891,83 +415913,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(4125), - [anon_sym_alias] = ACTIONS(4129), - [anon_sym_global] = ACTIONS(4129), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(4129), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(4129), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(4129), - [anon_sym_unmanaged] = ACTIONS(4129), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(4129), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4129), - [anon_sym_yield] = ACTIONS(4129), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(4129), - [sym_discard] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3915), - [anon_sym_from] = ACTIONS(4129), - [anon_sym_into] = ACTIONS(4129), - [anon_sym_join] = ACTIONS(4129), - [anon_sym_on] = ACTIONS(4129), - [anon_sym_equals] = ACTIONS(4129), - [anon_sym_let] = ACTIONS(4129), - [anon_sym_orderby] = ACTIONS(4129), - [anon_sym_ascending] = ACTIONS(4129), - [anon_sym_descending] = ACTIONS(4129), - [anon_sym_group] = ACTIONS(4129), - [anon_sym_by] = ACTIONS(4129), - [anon_sym_select] = ACTIONS(4129), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3915), - [sym_grit_metavariable] = ACTIONS(4133), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4026), + [anon_sym_global] = ACTIONS(4026), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4026), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4026), + [anon_sym_unmanaged] = ACTIONS(4026), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4026), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(4026), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4026), + [sym_discard] = ACTIONS(3947), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4026), + [anon_sym_into] = ACTIONS(4026), + [anon_sym_join] = ACTIONS(4026), + [anon_sym_on] = ACTIONS(4026), + [anon_sym_equals] = ACTIONS(4026), + [anon_sym_let] = ACTIONS(4026), + [anon_sym_orderby] = ACTIONS(4026), + [anon_sym_ascending] = ACTIONS(4026), + [anon_sym_descending] = ACTIONS(4026), + [anon_sym_group] = ACTIONS(4026), + [anon_sym_by] = ACTIONS(4026), + [anon_sym_select] = ACTIONS(4026), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4030), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415980,7 +416002,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2245] = { - [sym_type_argument_list] = STATE(2209), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6228), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym__lambda_parameters] = STATE(8081), + [sym_identifier] = STATE(6061), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(2245), [sym_preproc_endregion] = STATE(2245), [sym_preproc_line] = STATE(2245), @@ -415990,86 +416035,63 @@ 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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(4137), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2969), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2448), + [aux_sym__lambda_expression_init_repeat1] = STATE(4103), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(65), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_class] = ACTIONS(4064), + [anon_sym_ref] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_enum] = ACTIONS(4143), + [anon_sym_interface] = ACTIONS(4070), + [anon_sym_delegate] = ACTIONS(4072), + [anon_sym_record] = ACTIONS(4074), + [anon_sym_public] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(39), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3231), + [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_protected] = 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(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4082), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416082,15 +416104,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2246] = { - [sym__name] = STATE(4936), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_ref_type] = STATE(4779), - [sym__scoped_base_type] = STATE(4778), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_modifier] = STATE(3484), + [sym_parameter_list] = STATE(7966), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6228), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym__lambda_parameters] = STATE(8081), + [sym_identifier] = STATE(6061), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(2246), [sym_preproc_endregion] = STATE(2246), [sym_preproc_line] = STATE(2246), @@ -416100,126 +416137,9 @@ 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(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4143), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4145), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2247] = { - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_modifier] = STATE(4327), - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6212), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym__lambda_parameters] = STATE(7967), - [sym_identifier] = STATE(6072), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if_in_attribute_list] = STATE(3690), - [sym_preproc_region] = STATE(2247), - [sym_preproc_endregion] = STATE(2247), - [sym_preproc_line] = STATE(2247), - [sym_preproc_pragma] = STATE(2247), - [sym_preproc_nullable] = STATE(2247), - [sym_preproc_error] = STATE(2247), - [sym_preproc_warning] = STATE(2247), - [sym_preproc_define] = STATE(2247), - [sym_preproc_undef] = STATE(2247), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3137), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2409), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2969), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2416), + [aux_sym__lambda_expression_init_repeat1] = STATE(4103), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(65), [anon_sym_alias] = ACTIONS(3211), @@ -416227,14 +416147,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(65), [anon_sym_static] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_class] = ACTIONS(4044), - [anon_sym_ref] = ACTIONS(4046), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(4147), - [anon_sym_interface] = ACTIONS(4050), - [anon_sym_delegate] = ACTIONS(4052), - [anon_sym_record] = ACTIONS(4054), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_class] = ACTIONS(4064), + [anon_sym_ref] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_enum] = ACTIONS(4145), + [anon_sym_interface] = ACTIONS(4070), + [anon_sym_delegate] = ACTIONS(4072), + [anon_sym_record] = ACTIONS(4074), [anon_sym_public] = ACTIONS(65), [anon_sym_private] = ACTIONS(65), [anon_sym_readonly] = ACTIONS(65), @@ -416272,8 +416192,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), - [aux_sym_preproc_if_token1] = ACTIONS(4062), + [sym_grit_metavariable] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = 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), + }, + [2247] = { + [sym_type_argument_list] = STATE(2214), + [sym_preproc_region] = STATE(2247), + [sym_preproc_endregion] = STATE(2247), + [sym_preproc_line] = STATE(2247), + [sym_preproc_pragma] = STATE(2247), + [sym_preproc_nullable] = STATE(2247), + [sym_preproc_error] = STATE(2247), + [sym_preproc_warning] = STATE(2247), + [sym_preproc_define] = STATE(2247), + [sym_preproc_undef] = STATE(2247), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(4147), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416295,86 +416317,86 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_RBRACK] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_RPAREN] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4017), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [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_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [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(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [sym__identifier_token] = ACTIONS(3913), + [anon_sym_alias] = ACTIONS(3913), + [anon_sym_global] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_RPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_RBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3913), + [anon_sym_unmanaged] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3913), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3913), + [anon_sym_into] = ACTIONS(3913), + [anon_sym_join] = ACTIONS(3913), + [anon_sym_on] = ACTIONS(3913), + [anon_sym_equals] = ACTIONS(3913), + [anon_sym_let] = ACTIONS(3913), + [anon_sym_orderby] = ACTIONS(3913), + [anon_sym_ascending] = ACTIONS(3913), + [anon_sym_descending] = ACTIONS(3913), + [anon_sym_group] = ACTIONS(3913), + [anon_sym_by] = ACTIONS(3913), + [anon_sym_select] = ACTIONS(3913), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3910), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416387,10 +416409,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2249] = { - [sym__variable_designation] = STATE(4850), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2249), [sym_preproc_endregion] = STATE(2249), [sym_preproc_line] = STATE(2249), @@ -416400,82 +416418,86 @@ 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(3904), - [anon_sym_alias] = ACTIONS(3908), - [anon_sym_global] = ACTIONS(3908), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3918), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(3908), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3908), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3908), - [anon_sym_unmanaged] = ACTIONS(3908), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3908), - [anon_sym_EQ_GT] = ACTIONS(3912), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3908), - [anon_sym_yield] = ACTIONS(3908), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3908), - [sym_discard] = ACTIONS(3922), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3915), - [anon_sym_from] = ACTIONS(3908), - [anon_sym_into] = ACTIONS(3908), - [anon_sym_join] = ACTIONS(3908), - [anon_sym_on] = ACTIONS(3908), - [anon_sym_equals] = ACTIONS(3908), - [anon_sym_let] = ACTIONS(3908), - [anon_sym_orderby] = ACTIONS(3908), - [anon_sym_ascending] = ACTIONS(3908), - [anon_sym_descending] = ACTIONS(3908), - [anon_sym_group] = ACTIONS(3908), - [anon_sym_by] = ACTIONS(3908), - [anon_sym_select] = ACTIONS(3908), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3915), - [sym_grit_metavariable] = ACTIONS(3926), + [sym__identifier_token] = ACTIONS(4084), + [anon_sym_alias] = ACTIONS(4084), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_global] = ACTIONS(4084), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_COLON] = ACTIONS(3205), + [anon_sym_COMMA] = ACTIONS(3205), + [anon_sym_RBRACK] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(4086), + [anon_sym_RPAREN] = ACTIONS(3205), + [anon_sym_ref] = ACTIONS(4084), + [anon_sym_RBRACE] = ACTIONS(3205), + [anon_sym_delegate] = ACTIONS(4084), + [anon_sym_readonly] = ACTIONS(4084), + [anon_sym_async] = ACTIONS(4084), + [anon_sym_file] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_in] = ACTIONS(4084), + [anon_sym_out] = ACTIONS(4084), + [anon_sym_where] = ACTIONS(4084), + [anon_sym_QMARK] = ACTIONS(3203), + [anon_sym_notnull] = ACTIONS(4084), + [anon_sym_unmanaged] = ACTIONS(4084), + [anon_sym_this] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(3203), + [anon_sym_scoped] = ACTIONS(4084), + [anon_sym_params] = ACTIONS(4084), + [anon_sym_EQ_GT] = ACTIONS(3205), + [anon_sym_var] = ACTIONS(4084), + [anon_sym_STAR] = ACTIONS(3205), + [sym_predefined_type] = ACTIONS(4084), + [anon_sym_yield] = ACTIONS(4084), + [anon_sym_switch] = ACTIONS(3203), + [anon_sym_when] = ACTIONS(4084), + [anon_sym_DOT_DOT] = ACTIONS(3205), + [anon_sym_LT_EQ] = ACTIONS(3205), + [anon_sym_GT_EQ] = ACTIONS(3205), + [anon_sym_and] = ACTIONS(3203), + [anon_sym_or] = ACTIONS(3203), + [anon_sym_EQ_EQ] = ACTIONS(3205), + [anon_sym_BANG_EQ] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3203), + [sym_op_bitwise_or] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3205), + [sym_op_left_shift] = ACTIONS(3205), + [sym_op_right_shift] = ACTIONS(3203), + [sym_op_unsigned_right_shift] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [sym_op_divide] = ACTIONS(3203), + [sym_op_modulo] = ACTIONS(3205), + [sym_op_coalescing] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [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_ascending] = ACTIONS(4084), + [anon_sym_descending] = ACTIONS(4084), + [anon_sym_group] = ACTIONS(4084), + [anon_sym_by] = ACTIONS(4084), + [anon_sym_select] = ACTIONS(4084), + [anon_sym_as] = ACTIONS(3203), + [anon_sym_is] = ACTIONS(3203), + [anon_sym_DASH_GT] = ACTIONS(3205), + [anon_sym_with] = ACTIONS(3203), + [sym_grit_metavariable] = ACTIONS(4086), + [aux_sym_preproc_if_token1] = ACTIONS(4086), + [aux_sym_preproc_if_token3] = ACTIONS(3205), + [aux_sym_preproc_else_token1] = ACTIONS(3205), + [aux_sym_preproc_elif_token1] = ACTIONS(3205), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416488,10 +416510,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2250] = { - [sym__variable_designation] = STATE(5491), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym_identifier] = STATE(5505), - [sym__reserved_identifier] = STATE(3510), + [sym__variable_designation] = STATE(4391), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2250), [sym_preproc_endregion] = STATE(2250), [sym_preproc_line] = STATE(2250), @@ -416501,82 +416523,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2250), [sym_preproc_define] = STATE(2250), [sym_preproc_undef] = STATE(2250), - [sym__identifier_token] = ACTIONS(4149), - [anon_sym_alias] = ACTIONS(4153), - [anon_sym_global] = ACTIONS(4153), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(4157), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(4153), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(4153), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(4153), - [anon_sym_unmanaged] = ACTIONS(4153), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(4153), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4153), - [anon_sym_yield] = ACTIONS(4153), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(4153), - [sym_discard] = ACTIONS(4161), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3915), - [anon_sym_from] = ACTIONS(4153), - [anon_sym_into] = ACTIONS(4153), - [anon_sym_join] = ACTIONS(4153), - [anon_sym_on] = ACTIONS(4153), - [anon_sym_equals] = ACTIONS(4153), - [anon_sym_let] = ACTIONS(4153), - [anon_sym_orderby] = ACTIONS(4153), - [anon_sym_ascending] = ACTIONS(4153), - [anon_sym_descending] = ACTIONS(4153), - [anon_sym_group] = ACTIONS(4153), - [anon_sym_by] = ACTIONS(4153), - [anon_sym_select] = ACTIONS(4153), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3915), - [sym_grit_metavariable] = ACTIONS(4165), + [sym__identifier_token] = ACTIONS(3902), + [anon_sym_alias] = ACTIONS(3906), + [anon_sym_global] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3916), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(3906), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_notnull] = ACTIONS(3906), + [anon_sym_unmanaged] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_scoped] = ACTIONS(3906), + [anon_sym_EQ_GT] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3906), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(3906), + [sym_discard] = ACTIONS(3920), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3913), + [sym_op_left_shift] = ACTIONS(3913), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3913), + [sym_op_coalescing] = ACTIONS(3913), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(3906), + [anon_sym_into] = ACTIONS(3906), + [anon_sym_join] = ACTIONS(3906), + [anon_sym_on] = ACTIONS(3906), + [anon_sym_equals] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_orderby] = ACTIONS(3906), + [anon_sym_ascending] = ACTIONS(3906), + [anon_sym_descending] = ACTIONS(3906), + [anon_sym_group] = ACTIONS(3906), + [anon_sym_by] = ACTIONS(3906), + [anon_sym_select] = ACTIONS(3906), + [anon_sym_as] = ACTIONS(3913), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(3924), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416589,10 +416611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2251] = { - [sym__variable_designation] = STATE(4984), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2251), [sym_preproc_endregion] = STATE(2251), [sym_preproc_line] = STATE(2251), @@ -416602,82 +416621,85 @@ 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(3904), - [anon_sym_alias] = ACTIONS(3908), - [anon_sym_global] = ACTIONS(3908), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(3908), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3908), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3908), - [anon_sym_unmanaged] = ACTIONS(3908), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3908), - [anon_sym_EQ_GT] = ACTIONS(3912), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3908), - [anon_sym_yield] = ACTIONS(3908), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3908), - [sym_discard] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3915), - [anon_sym_from] = ACTIONS(3908), - [anon_sym_into] = ACTIONS(3908), - [anon_sym_join] = ACTIONS(3908), - [anon_sym_on] = ACTIONS(3908), - [anon_sym_equals] = ACTIONS(3908), - [anon_sym_let] = ACTIONS(3908), - [anon_sym_orderby] = ACTIONS(3908), - [anon_sym_ascending] = ACTIONS(3908), - [anon_sym_descending] = ACTIONS(3908), - [anon_sym_group] = ACTIONS(3908), - [anon_sym_by] = ACTIONS(3908), - [anon_sym_select] = ACTIONS(3908), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3915), - [sym_grit_metavariable] = ACTIONS(3926), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(4147), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416690,6 +416712,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2252] = { + [sym__variable_designation] = STATE(5487), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym_identifier] = STATE(5489), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2252), [sym_preproc_endregion] = STATE(2252), [sym_preproc_line] = STATE(2252), @@ -416699,86 +416725,82 @@ 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(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_global] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_RPAREN] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3915), - [anon_sym_unmanaged] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3915), - [anon_sym_yield] = ACTIONS(3915), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3915), - [sym_discard] = ACTIONS(3915), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3915), - [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(3915), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3912), + [sym__identifier_token] = ACTIONS(4154), + [anon_sym_alias] = ACTIONS(4158), + [anon_sym_global] = ACTIONS(4158), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(4158), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_notnull] = ACTIONS(4158), + [anon_sym_unmanaged] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_scoped] = ACTIONS(4158), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_yield] = ACTIONS(4158), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(4158), + [sym_discard] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3913), + [sym_op_left_shift] = ACTIONS(3913), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3913), + [sym_op_coalescing] = ACTIONS(3913), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(4158), + [anon_sym_into] = ACTIONS(4158), + [anon_sym_join] = ACTIONS(4158), + [anon_sym_on] = ACTIONS(4158), + [anon_sym_equals] = ACTIONS(4158), + [anon_sym_let] = ACTIONS(4158), + [anon_sym_orderby] = ACTIONS(4158), + [anon_sym_ascending] = ACTIONS(4158), + [anon_sym_descending] = ACTIONS(4158), + [anon_sym_group] = ACTIONS(4158), + [anon_sym_by] = ACTIONS(4158), + [anon_sym_select] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(3913), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(4170), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416791,10 +416813,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2253] = { - [sym__variable_designation] = STATE(5491), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym_identifier] = STATE(5505), - [sym__reserved_identifier] = STATE(3398), + [sym__variable_designation] = STATE(5487), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym_identifier] = STATE(5489), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2253), [sym_preproc_endregion] = STATE(2253), [sym_preproc_line] = STATE(2253), @@ -416804,82 +416826,82 @@ 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(4169), - [anon_sym_alias] = ACTIONS(4173), - [anon_sym_global] = ACTIONS(4173), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(4157), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(4173), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(4173), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(4173), - [anon_sym_unmanaged] = ACTIONS(4173), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(4173), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4173), - [anon_sym_yield] = ACTIONS(4173), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(4173), - [sym_discard] = ACTIONS(4161), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3915), - [anon_sym_from] = ACTIONS(4173), - [anon_sym_into] = ACTIONS(4173), - [anon_sym_join] = ACTIONS(4173), - [anon_sym_on] = ACTIONS(4173), - [anon_sym_equals] = ACTIONS(4173), - [anon_sym_let] = ACTIONS(4173), - [anon_sym_orderby] = ACTIONS(4173), - [anon_sym_ascending] = ACTIONS(4173), - [anon_sym_descending] = ACTIONS(4173), - [anon_sym_group] = ACTIONS(4173), - [anon_sym_by] = ACTIONS(4173), - [anon_sym_select] = ACTIONS(4173), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3915), - [sym_grit_metavariable] = ACTIONS(4177), + [sym__identifier_token] = ACTIONS(4174), + [anon_sym_alias] = ACTIONS(4178), + [anon_sym_global] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(4178), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(4178), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_notnull] = ACTIONS(4178), + [anon_sym_unmanaged] = ACTIONS(4178), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_scoped] = ACTIONS(4178), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_yield] = ACTIONS(4178), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(4178), + [sym_discard] = ACTIONS(4166), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3913), + [sym_op_left_shift] = ACTIONS(3913), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3913), + [sym_op_coalescing] = ACTIONS(3913), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(4178), + [anon_sym_into] = ACTIONS(4178), + [anon_sym_join] = ACTIONS(4178), + [anon_sym_on] = ACTIONS(4178), + [anon_sym_equals] = ACTIONS(4178), + [anon_sym_let] = ACTIONS(4178), + [anon_sym_orderby] = ACTIONS(4178), + [anon_sym_ascending] = ACTIONS(4178), + [anon_sym_descending] = ACTIONS(4178), + [anon_sym_group] = ACTIONS(4178), + [anon_sym_by] = ACTIONS(4178), + [anon_sym_select] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(3913), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(4182), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416892,10 +416914,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2254] = { - [sym__variable_designation] = STATE(4984), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(2737), + [sym__name] = STATE(5023), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_ref_type] = STATE(3179), + [sym__scoped_base_type] = STATE(3178), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2254), [sym_preproc_endregion] = STATE(2254), [sym_preproc_line] = STATE(2254), @@ -416905,82 +416932,77 @@ 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(4022), - [anon_sym_alias] = ACTIONS(4026), - [anon_sym_global] = ACTIONS(4026), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4026), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4026), - [anon_sym_unmanaged] = ACTIONS(4026), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4026), - [anon_sym_EQ_GT] = ACTIONS(3912), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4026), - [anon_sym_yield] = ACTIONS(4026), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4026), - [sym_discard] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(4026), - [anon_sym_into] = ACTIONS(4026), - [anon_sym_join] = ACTIONS(4026), - [anon_sym_on] = ACTIONS(4026), - [anon_sym_equals] = ACTIONS(4026), - [anon_sym_let] = ACTIONS(4026), - [anon_sym_orderby] = ACTIONS(4026), - [anon_sym_ascending] = ACTIONS(4026), - [anon_sym_descending] = ACTIONS(4026), - [anon_sym_group] = ACTIONS(4026), - [anon_sym_by] = ACTIONS(4026), - [anon_sym_select] = ACTIONS(4026), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4030), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4188), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4188), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4188), + [anon_sym_into] = ACTIONS(4192), + [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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4195), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416993,6 +417015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2255] = { + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2255), [sym_preproc_endregion] = STATE(2255), [sym_preproc_line] = STATE(2255), @@ -417002,86 +417025,85 @@ 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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(3997), - [anon_sym_RBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_RPAREN] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_RBRACE] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_EQ_GT] = ACTIONS(3997), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(3986), - [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(3986), - [anon_sym_or] = ACTIONS(3986), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(3986), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4034), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(4147), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417094,6 +417116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2256] = { + [sym_type_argument_list] = STATE(2293), [sym_preproc_region] = STATE(2256), [sym_preproc_endregion] = STATE(2256), [sym_preproc_line] = STATE(2256), @@ -417103,187 +417126,186 @@ 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(4084), - [anon_sym_alias] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym_global] = ACTIONS(4084), - [anon_sym_static] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4086), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3197), - [anon_sym_RBRACK] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(4086), - [anon_sym_RPAREN] = ACTIONS(3197), - [anon_sym_ref] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(3197), - [anon_sym_delegate] = ACTIONS(4084), - [anon_sym_readonly] = ACTIONS(4084), - [anon_sym_async] = ACTIONS(4084), - [anon_sym_file] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(4084), - [anon_sym_out] = ACTIONS(4084), - [anon_sym_where] = ACTIONS(4084), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_notnull] = ACTIONS(4084), - [anon_sym_unmanaged] = ACTIONS(4084), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_scoped] = ACTIONS(4084), - [anon_sym_params] = ACTIONS(4084), - [anon_sym_EQ_GT] = ACTIONS(3197), - [anon_sym_var] = ACTIONS(4084), - [sym_predefined_type] = ACTIONS(4084), - [anon_sym_yield] = ACTIONS(4084), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_when] = ACTIONS(4084), - [anon_sym_DOT_DOT] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [sym_op_coalescing] = ACTIONS(3197), - [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_ascending] = ACTIONS(4084), - [anon_sym_descending] = ACTIONS(4084), - [anon_sym_group] = ACTIONS(4084), - [anon_sym_by] = ACTIONS(4084), - [anon_sym_select] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_DASH_GT] = ACTIONS(3197), - [anon_sym_with] = ACTIONS(3195), - [sym_grit_metavariable] = ACTIONS(4086), - [aux_sym_preproc_if_token1] = ACTIONS(4086), - [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), - }, - [2257] = { - [sym_type_argument_list] = STATE(2209), - [sym_preproc_region] = STATE(2257), - [sym_preproc_endregion] = STATE(2257), - [sym_preproc_line] = STATE(2257), - [sym_preproc_pragma] = STATE(2257), - [sym_preproc_nullable] = STATE(2257), - [sym_preproc_error] = STATE(2257), - [sym_preproc_warning] = STATE(2257), - [sym_preproc_define] = STATE(2257), - [sym_preproc_undef] = STATE(2257), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(4137), - [anon_sym_COMMA] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3955), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(4200), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(4203), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3957), + }, + [2257] = { + [sym_type_argument_list] = STATE(2214), + [sym_preproc_region] = STATE(2257), + [sym_preproc_endregion] = STATE(2257), + [sym_preproc_line] = STATE(2257), + [sym_preproc_pragma] = STATE(2257), + [sym_preproc_nullable] = STATE(2257), + [sym_preproc_error] = STATE(2257), + [sym_preproc_warning] = STATE(2257), + [sym_preproc_define] = STATE(2257), + [sym_preproc_undef] = STATE(2257), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3955), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417296,7 +417318,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2258] = { - [sym_type_argument_list] = STATE(2287), [sym_preproc_region] = STATE(2258), [sym_preproc_endregion] = STATE(2258), [sym_preproc_line] = STATE(2258), @@ -417306,84 +417327,86 @@ 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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(4187), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(4190), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4015), + [anon_sym_RBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_RPAREN] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_EQ_GT] = ACTIONS(4015), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4008), + [anon_sym_or] = ACTIONS(4008), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [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(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417394,7 +417417,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(3953), }, [2259] = { [sym_preproc_region] = STATE(2259), @@ -417406,54 +417428,39 @@ 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(2919), - [anon_sym_alias] = ACTIONS(2919), - [anon_sym_global] = ACTIONS(2919), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4034), [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_RBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(4034), [anon_sym_RPAREN] = ACTIONS(4006), - [anon_sym_ref] = ACTIONS(2919), - [anon_sym_delegate] = ACTIONS(2919), - [anon_sym_readonly] = ACTIONS(2919), - [anon_sym_file] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3986), [anon_sym_LT] = ACTIONS(3991), [anon_sym_GT] = ACTIONS(3991), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_out] = ACTIONS(2919), - [anon_sym_where] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_notnull] = ACTIONS(2919), - [anon_sym_unmanaged] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(2919), - [anon_sym_DOT] = ACTIONS(3991), - [anon_sym_scoped] = ACTIONS(2919), - [anon_sym_var] = ACTIONS(2919), - [sym_predefined_type] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2919), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_EQ_GT] = ACTIONS(3997), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(2919), + [anon_sym_when] = ACTIONS(3986), + [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(3986), + [anon_sym_or] = ACTIONS(3986), [anon_sym_PLUS_EQ] = ACTIONS(4006), [anon_sym_DASH_EQ] = ACTIONS(4006), [anon_sym_STAR_EQ] = ACTIONS(4006), @@ -417466,26 +417473,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(2919), - [anon_sym_into] = ACTIONS(2919), - [anon_sym_join] = ACTIONS(2919), - [anon_sym_on] = ACTIONS(2919), - [anon_sym_equals] = ACTIONS(2919), - [anon_sym_let] = ACTIONS(2919), - [anon_sym_orderby] = ACTIONS(2919), - [anon_sym_ascending] = ACTIONS(2919), - [anon_sym_descending] = ACTIONS(2919), - [anon_sym_group] = ACTIONS(2919), - [anon_sym_by] = ACTIONS(2919), - [anon_sym_select] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(3986), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_ascending] = ACTIONS(3986), + [anon_sym_descending] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3991), [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4006), + [anon_sym_DASH_GT] = ACTIONS(4034), [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(2969), + [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417498,15 +417520,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2260] = { - [sym__name] = STATE(5074), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_ref_type] = STATE(3762), - [sym__scoped_base_type] = STATE(3735), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym__variable_designation] = STATE(4584), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(2652), [sym_preproc_region] = STATE(2260), [sym_preproc_endregion] = STATE(2260), [sym_preproc_line] = STATE(2260), @@ -417516,77 +417533,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(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4026), + [anon_sym_global] = ACTIONS(4026), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4026), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4026), + [anon_sym_unmanaged] = ACTIONS(4026), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4026), + [anon_sym_EQ_GT] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4026), [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(4026), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4026), + [sym_discard] = ACTIONS(3947), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4197), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4197), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4201), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4204), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4026), + [anon_sym_into] = ACTIONS(4026), + [anon_sym_join] = ACTIONS(4026), + [anon_sym_on] = ACTIONS(4026), + [anon_sym_equals] = ACTIONS(4026), + [anon_sym_let] = ACTIONS(4026), + [anon_sym_orderby] = ACTIONS(4026), + [anon_sym_ascending] = ACTIONS(4026), + [anon_sym_descending] = ACTIONS(4026), + [anon_sym_group] = ACTIONS(4026), + [anon_sym_by] = ACTIONS(4026), + [anon_sym_select] = ACTIONS(4026), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4030), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417599,7 +417621,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2261] = { - [sym_type_argument_list] = STATE(2209), [sym_preproc_region] = STATE(2261), [sym_preproc_endregion] = STATE(2261), [sym_preproc_line] = STATE(2261), @@ -417609,85 +417630,86 @@ 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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(4137), - [anon_sym_COMMA] = ACTIONS(4206), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(4206), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(2919), + [anon_sym_alias] = ACTIONS(2919), + [anon_sym_global] = ACTIONS(2919), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_COLON] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4205), + [anon_sym_RPAREN] = ACTIONS(4006), + [anon_sym_ref] = ACTIONS(2919), + [anon_sym_delegate] = ACTIONS(2919), + [anon_sym_readonly] = ACTIONS(2919), + [anon_sym_file] = ACTIONS(2919), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_in] = ACTIONS(2919), + [anon_sym_out] = ACTIONS(2919), + [anon_sym_where] = ACTIONS(2919), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_notnull] = ACTIONS(2919), + [anon_sym_unmanaged] = ACTIONS(2919), + [anon_sym_this] = ACTIONS(2919), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_scoped] = ACTIONS(2919), + [anon_sym_var] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(3991), + [sym_predefined_type] = ACTIONS(2919), + [anon_sym_yield] = ACTIONS(2919), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(2919), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_from] = ACTIONS(2919), + [anon_sym_into] = ACTIONS(2919), + [anon_sym_join] = ACTIONS(2919), + [anon_sym_on] = ACTIONS(2919), + [anon_sym_equals] = ACTIONS(2919), + [anon_sym_let] = ACTIONS(2919), + [anon_sym_orderby] = ACTIONS(2919), + [anon_sym_ascending] = ACTIONS(2919), + [anon_sym_descending] = ACTIONS(2919), + [anon_sym_group] = ACTIONS(2919), + [anon_sym_by] = ACTIONS(2919), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(4006), + [anon_sym_with] = ACTIONS(3991), + [sym_grit_metavariable] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417700,7 +417722,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2262] = { - [sym_type_argument_list] = STATE(2209), + [sym__variable_designation] = STATE(4584), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2262), [sym_preproc_endregion] = STATE(2262), [sym_preproc_line] = STATE(2262), @@ -417710,85 +417735,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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(4206), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(4206), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(3902), + [anon_sym_alias] = ACTIONS(3906), + [anon_sym_global] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(3906), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_notnull] = ACTIONS(3906), + [anon_sym_unmanaged] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_scoped] = ACTIONS(3906), + [anon_sym_EQ_GT] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3906), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(3906), + [sym_discard] = ACTIONS(3947), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3913), + [sym_op_left_shift] = ACTIONS(3913), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3913), + [sym_op_coalescing] = ACTIONS(3913), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(3906), + [anon_sym_into] = ACTIONS(3906), + [anon_sym_join] = ACTIONS(3906), + [anon_sym_on] = ACTIONS(3906), + [anon_sym_equals] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_orderby] = ACTIONS(3906), + [anon_sym_ascending] = ACTIONS(3906), + [anon_sym_descending] = ACTIONS(3906), + [anon_sym_group] = ACTIONS(3906), + [anon_sym_by] = ACTIONS(3906), + [anon_sym_select] = ACTIONS(3906), + [anon_sym_as] = ACTIONS(3913), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(3924), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417801,6 +417823,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2263] = { + [sym__name] = STATE(3347), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_ref_type] = STATE(3311), + [sym__scoped_base_type] = STATE(3250), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2263), [sym_preproc_endregion] = STATE(2263), [sym_preproc_line] = STATE(2263), @@ -417810,18 +417841,509 @@ 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(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4210), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4214), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = 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), + }, + [2264] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2301), + [sym_property_pattern_clause] = STATE(2341), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4070), + [sym__reserved_identifier] = STATE(3771), + [sym_preproc_region] = STATE(2264), + [sym_preproc_endregion] = STATE(2264), + [sym_preproc_line] = STATE(2264), + [sym_preproc_pragma] = STATE(2264), + [sym_preproc_nullable] = STATE(2264), + [sym_preproc_error] = STATE(2264), + [sym_preproc_warning] = STATE(2264), + [sym_preproc_define] = STATE(2264), + [sym_preproc_undef] = STATE(2264), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_RBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_in] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4220), + [aux_sym_preproc_else_token1] = ACTIONS(4220), + [aux_sym_preproc_elif_token1] = ACTIONS(4220), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2265] = { + [sym_preproc_region] = STATE(2265), + [sym_preproc_endregion] = STATE(2265), + [sym_preproc_line] = STATE(2265), + [sym_preproc_pragma] = STATE(2265), + [sym_preproc_nullable] = STATE(2265), + [sym_preproc_error] = STATE(2265), + [sym_preproc_warning] = STATE(2265), + [sym_preproc_define] = STATE(2265), + [sym_preproc_undef] = STATE(2265), + [sym__identifier_token] = ACTIONS(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3694), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3694), + }, + [2266] = { + [sym_preproc_region] = STATE(2266), + [sym_preproc_endregion] = STATE(2266), + [sym_preproc_line] = STATE(2266), + [sym_preproc_pragma] = STATE(2266), + [sym_preproc_nullable] = STATE(2266), + [sym_preproc_error] = STATE(2266), + [sym_preproc_warning] = STATE(2266), + [sym_preproc_define] = STATE(2266), + [sym_preproc_undef] = STATE(2266), + [sym__identifier_token] = ACTIONS(3187), + [anon_sym_alias] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3187), + [anon_sym_EQ] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_file] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_where] = ACTIONS(3187), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_notnull] = ACTIONS(3187), + [anon_sym_unmanaged] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_scoped] = ACTIONS(3187), + [anon_sym_EQ_GT] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_when] = ACTIONS(3187), + [sym_discard] = ACTIONS(3187), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3187), + [anon_sym_or] = ACTIONS(3187), + [anon_sym_PLUS_EQ] = ACTIONS(3189), + [anon_sym_DASH_EQ] = ACTIONS(3189), + [anon_sym_STAR_EQ] = ACTIONS(3189), + [anon_sym_SLASH_EQ] = ACTIONS(3189), + [anon_sym_PERCENT_EQ] = ACTIONS(3189), + [anon_sym_AMP_EQ] = ACTIONS(3189), + [anon_sym_CARET_EQ] = ACTIONS(3189), + [anon_sym_PIPE_EQ] = ACTIONS(3189), + [anon_sym_LT_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_GT_EQ] = ACTIONS(3189), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [sym_op_left_shift] = ACTIONS(3187), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3187), + [sym_op_coalescing] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = 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_as] = ACTIONS(3187), + [anon_sym_is] = ACTIONS(3187), + [anon_sym_DASH_GT] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3187), + [sym_grit_metavariable] = 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_close_brace] = ACTIONS(3189), + }, + [2267] = { + [sym_preproc_region] = STATE(2267), + [sym_preproc_endregion] = STATE(2267), + [sym_preproc_line] = STATE(2267), + [sym_preproc_pragma] = STATE(2267), + [sym_preproc_nullable] = STATE(2267), + [sym_preproc_error] = STATE(2267), + [sym_preproc_warning] = STATE(2267), + [sym_preproc_define] = STATE(2267), + [sym_preproc_undef] = STATE(2267), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4010), + [anon_sym_RBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_RPAREN] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4010), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4008), + [anon_sym_or] = ACTIONS(4008), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [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(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2268] = { + [sym_preproc_region] = STATE(2268), + [sym_preproc_endregion] = STATE(2268), + [sym_preproc_line] = STATE(2268), + [sym_preproc_pragma] = STATE(2268), + [sym_preproc_nullable] = STATE(2268), + [sym_preproc_error] = STATE(2268), + [sym_preproc_warning] = STATE(2268), + [sym_preproc_define] = STATE(2268), + [sym_preproc_undef] = STATE(2268), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), [anon_sym_LBRACK] = ACTIONS(4034), [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(3993), - [anon_sym_RBRACK] = ACTIONS(3993), + [anon_sym_COMMA] = ACTIONS(3988), + [anon_sym_RBRACK] = ACTIONS(3988), [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_RPAREN] = ACTIONS(3993), + [anon_sym_RPAREN] = ACTIONS(3988), [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_RBRACE] = ACTIONS(3993), + [anon_sym_RBRACE] = ACTIONS(3988), [anon_sym_file] = ACTIONS(3986), [anon_sym_LT] = ACTIONS(3991), [anon_sym_GT] = ACTIONS(3991), @@ -417829,32 +418351,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -417869,9 +418376,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), @@ -417900,95 +418422,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2264] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2297), - [sym_property_pattern_clause] = STATE(2345), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4841), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2264), - [sym_preproc_endregion] = STATE(2264), - [sym_preproc_line] = STATE(2264), - [sym_preproc_pragma] = STATE(2264), - [sym_preproc_nullable] = STATE(2264), - [sym_preproc_error] = STATE(2264), - [sym_preproc_warning] = STATE(2264), - [sym_preproc_define] = STATE(2264), - [sym_preproc_undef] = STATE(2264), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4212), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_RBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_RPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4212), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_in] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4216), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4212), - [aux_sym_preproc_else_token1] = ACTIONS(4212), - [aux_sym_preproc_elif_token1] = ACTIONS(4212), + [2269] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2301), + [sym_property_pattern_clause] = STATE(2341), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4070), + [sym__reserved_identifier] = STATE(3771), + [sym_preproc_region] = STATE(2269), + [sym_preproc_endregion] = STATE(2269), + [sym_preproc_line] = STATE(2269), + [sym_preproc_pragma] = STATE(2269), + [sym_preproc_nullable] = STATE(2269), + [sym_preproc_error] = STATE(2269), + [sym_preproc_warning] = STATE(2269), + [sym_preproc_define] = STATE(2269), + [sym_preproc_undef] = STATE(2269), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_COLON] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_RBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4228), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4232), + [aux_sym_preproc_else_token1] = ACTIONS(4232), + [aux_sym_preproc_elif_token1] = ACTIONS(4232), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418000,16 +418522,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2265] = { - [sym_preproc_region] = STATE(2265), - [sym_preproc_endregion] = STATE(2265), - [sym_preproc_line] = STATE(2265), - [sym_preproc_pragma] = STATE(2265), - [sym_preproc_nullable] = STATE(2265), - [sym_preproc_error] = STATE(2265), - [sym_preproc_warning] = STATE(2265), - [sym_preproc_define] = STATE(2265), - [sym_preproc_undef] = STATE(2265), + [2270] = { + [sym_preproc_region] = STATE(2270), + [sym_preproc_endregion] = STATE(2270), + [sym_preproc_line] = STATE(2270), + [sym_preproc_pragma] = STATE(2270), + [sym_preproc_nullable] = STATE(2270), + [sym_preproc_error] = STATE(2270), + [sym_preproc_warning] = STATE(2270), + [sym_preproc_define] = STATE(2270), + [sym_preproc_undef] = STATE(2270), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -418029,32 +418551,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), [anon_sym_and] = ACTIONS(3986), [anon_sym_or] = ACTIONS(3986), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -418069,9 +418576,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), @@ -418100,506 +418622,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2266] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2297), - [sym_property_pattern_clause] = STATE(2345), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4841), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2266), - [sym_preproc_endregion] = STATE(2266), - [sym_preproc_line] = STATE(2266), - [sym_preproc_pragma] = STATE(2266), - [sym_preproc_nullable] = STATE(2266), - [sym_preproc_error] = STATE(2266), - [sym_preproc_warning] = STATE(2266), - [sym_preproc_define] = STATE(2266), - [sym_preproc_undef] = STATE(2266), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_RBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_in] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4222), - [aux_sym_preproc_else_token1] = ACTIONS(4222), - [aux_sym_preproc_elif_token1] = ACTIONS(4222), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2267] = { - [sym_preproc_region] = STATE(2267), - [sym_preproc_endregion] = STATE(2267), - [sym_preproc_line] = STATE(2267), - [sym_preproc_pragma] = STATE(2267), - [sym_preproc_nullable] = STATE(2267), - [sym_preproc_error] = STATE(2267), - [sym_preproc_warning] = STATE(2267), - [sym_preproc_define] = STATE(2267), - [sym_preproc_undef] = STATE(2267), - [sym__identifier_token] = ACTIONS(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_global] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3915), - [anon_sym_unmanaged] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3915), - [anon_sym_yield] = ACTIONS(3915), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3915), - [sym_discard] = ACTIONS(3915), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3915), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3915), - [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(3915), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3915), - [sym_grit_metavariable] = ACTIONS(3912), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3912), - }, - [2268] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2297), - [sym_property_pattern_clause] = STATE(2345), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4841), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2268), - [sym_preproc_endregion] = STATE(2268), - [sym_preproc_line] = STATE(2268), - [sym_preproc_pragma] = STATE(2268), - [sym_preproc_nullable] = STATE(2268), - [sym_preproc_error] = STATE(2268), - [sym_preproc_warning] = STATE(2268), - [sym_preproc_define] = STATE(2268), - [sym_preproc_undef] = STATE(2268), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_RBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_in] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4222), - [aux_sym_preproc_else_token1] = ACTIONS(4222), - [aux_sym_preproc_elif_token1] = ACTIONS(4222), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2269] = { - [sym__name] = STATE(4285), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_ref_type] = STATE(3809), - [sym__scoped_base_type] = STATE(3808), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), - [sym_preproc_region] = STATE(2269), - [sym_preproc_endregion] = STATE(2269), - [sym_preproc_line] = STATE(2269), - [sym_preproc_pragma] = STATE(2269), - [sym_preproc_nullable] = STATE(2269), - [sym_preproc_error] = STATE(2269), - [sym_preproc_warning] = STATE(2269), - [sym_preproc_define] = STATE(2269), - [sym_preproc_undef] = STATE(2269), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4232), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2270] = { - [sym_preproc_region] = STATE(2270), - [sym_preproc_endregion] = STATE(2270), - [sym_preproc_line] = STATE(2270), - [sym_preproc_pragma] = STATE(2270), - [sym_preproc_nullable] = STATE(2270), - [sym_preproc_error] = STATE(2270), - [sym_preproc_warning] = STATE(2270), - [sym_preproc_define] = STATE(2270), - [sym_preproc_undef] = STATE(2270), - [sym__identifier_token] = ACTIONS(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3696), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3696), - }, [2271] = { [sym_preproc_region] = STATE(2271), [sym_preproc_endregion] = STATE(2271), @@ -418616,12 +418638,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(3991), [anon_sym_LBRACK] = ACTIONS(4034), [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(3988), - [anon_sym_RBRACK] = ACTIONS(3988), + [anon_sym_COMMA] = ACTIONS(3993), + [anon_sym_RBRACK] = ACTIONS(3993), [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_RPAREN] = ACTIONS(3988), + [anon_sym_RPAREN] = ACTIONS(3993), [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_RBRACE] = ACTIONS(3988), + [anon_sym_RBRACE] = ACTIONS(3993), [anon_sym_file] = ACTIONS(3986), [anon_sym_LT] = ACTIONS(3991), [anon_sym_GT] = ACTIONS(3991), @@ -418629,32 +418651,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -418669,9 +418676,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), @@ -418710,97 +418732,105 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4014), - [anon_sym_RBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_RPAREN] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [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_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [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(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(3913), + [anon_sym_alias] = ACTIONS(3913), + [anon_sym_global] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_notnull] = ACTIONS(3913), + [anon_sym_unmanaged] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_scoped] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_yield] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(3913), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3913), + [sym_op_left_shift] = ACTIONS(3913), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3913), + [sym_op_coalescing] = ACTIONS(3913), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(3913), + [anon_sym_into] = ACTIONS(3913), + [anon_sym_join] = ACTIONS(3913), + [anon_sym_on] = ACTIONS(3913), + [anon_sym_equals] = ACTIONS(3913), + [anon_sym_let] = ACTIONS(3913), + [anon_sym_orderby] = ACTIONS(3913), + [anon_sym_ascending] = ACTIONS(3913), + [anon_sym_descending] = ACTIONS(3913), + [anon_sym_group] = ACTIONS(3913), + [anon_sym_by] = ACTIONS(3913), + [anon_sym_select] = ACTIONS(3913), + [anon_sym_as] = ACTIONS(3913), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(3910), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3910), }, [2273] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2301), + [sym_property_pattern_clause] = STATE(2341), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4070), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2273), [sym_preproc_endregion] = STATE(2273), [sym_preproc_line] = STATE(2273), @@ -418810,15 +418840,406 @@ 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(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_RBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_in] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4220), + [aux_sym_preproc_else_token1] = ACTIONS(4220), + [aux_sym_preproc_elif_token1] = ACTIONS(4220), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2274] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2314), + [sym_property_pattern_clause] = STATE(2369), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3771), + [sym_preproc_region] = STATE(2274), + [sym_preproc_endregion] = STATE(2274), + [sym_preproc_line] = STATE(2274), + [sym_preproc_pragma] = STATE(2274), + [sym_preproc_nullable] = STATE(2274), + [sym_preproc_error] = STATE(2274), + [sym_preproc_warning] = STATE(2274), + [sym_preproc_define] = STATE(2274), + [sym_preproc_undef] = STATE(2274), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_RBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4220), + [aux_sym_preproc_else_token1] = ACTIONS(4220), + [aux_sym_preproc_elif_token1] = ACTIONS(4220), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2275] = { + [sym_type_argument_list] = STATE(2214), + [sym_preproc_region] = STATE(2275), + [sym_preproc_endregion] = STATE(2275), + [sym_preproc_line] = STATE(2275), + [sym_preproc_pragma] = STATE(2275), + [sym_preproc_nullable] = STATE(2275), + [sym_preproc_error] = STATE(2275), + [sym_preproc_warning] = STATE(2275), + [sym_preproc_define] = STATE(2275), + [sym_preproc_undef] = STATE(2275), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(4236), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2276] = { + [sym_preproc_region] = STATE(2276), + [sym_preproc_endregion] = STATE(2276), + [sym_preproc_line] = STATE(2276), + [sym_preproc_pragma] = STATE(2276), + [sym_preproc_nullable] = STATE(2276), + [sym_preproc_error] = STATE(2276), + [sym_preproc_warning] = STATE(2276), + [sym_preproc_define] = STATE(2276), + [sym_preproc_undef] = STATE(2276), + [sym__identifier_token] = ACTIONS(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_return] = ACTIONS(4238), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3694), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = 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), + }, + [2277] = { + [sym_preproc_region] = STATE(2277), + [sym_preproc_endregion] = STATE(2277), + [sym_preproc_line] = STATE(2277), + [sym_preproc_pragma] = STATE(2277), + [sym_preproc_nullable] = STATE(2277), + [sym_preproc_error] = STATE(2277), + [sym_preproc_warning] = STATE(2277), + [sym_preproc_define] = STATE(2277), + [sym_preproc_undef] = STATE(2277), [sym__identifier_token] = ACTIONS(3187), [anon_sym_alias] = ACTIONS(3187), [anon_sym_global] = ACTIONS(3187), [anon_sym_EQ] = ACTIONS(3187), [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3187), + [anon_sym_COLON] = ACTIONS(3189), [anon_sym_COMMA] = ACTIONS(3189), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3189), [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), [anon_sym_file] = ACTIONS(3187), [anon_sym_LT] = ACTIONS(3187), [anon_sym_GT] = ACTIONS(3187), @@ -418826,34 +419247,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3187), [anon_sym_notnull] = ACTIONS(3187), [anon_sym_unmanaged] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), [anon_sym_DOT] = ACTIONS(3187), [anon_sym_scoped] = ACTIONS(3187), - [anon_sym_EQ_GT] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3189), [anon_sym_var] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3187), [anon_sym_yield] = ACTIONS(3187), [anon_sym_switch] = ACTIONS(3187), [anon_sym_when] = ACTIONS(3187), [sym_discard] = ACTIONS(3187), [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), [anon_sym_and] = ACTIONS(3187), [anon_sym_or] = ACTIONS(3187), [anon_sym_PLUS_EQ] = ACTIONS(3189), @@ -418868,9 +419272,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3189), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), [anon_sym_AMP_AMP] = ACTIONS(3189), [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [sym_op_left_shift] = ACTIONS(3187), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3187), [sym_op_coalescing] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), [anon_sym_from] = ACTIONS(3187), [anon_sym_into] = ACTIONS(3187), [anon_sym_join] = ACTIONS(3187), @@ -418898,195 +419317,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3189), - }, - [2274] = { - [sym_type_argument_list] = STATE(2287), - [sym_preproc_region] = STATE(2274), - [sym_preproc_endregion] = STATE(2274), - [sym_preproc_line] = STATE(2274), - [sym_preproc_pragma] = STATE(2274), - [sym_preproc_nullable] = STATE(2274), - [sym_preproc_error] = STATE(2274), - [sym_preproc_warning] = STATE(2274), - [sym_preproc_define] = STATE(2274), - [sym_preproc_undef] = STATE(2274), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(4187), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3953), }, - [2275] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2321), - [sym_property_pattern_clause] = STATE(2353), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2275), - [sym_preproc_endregion] = STATE(2275), - [sym_preproc_line] = STATE(2275), - [sym_preproc_pragma] = STATE(2275), - [sym_preproc_nullable] = STATE(2275), - [sym_preproc_error] = STATE(2275), - [sym_preproc_warning] = STATE(2275), - [sym_preproc_define] = STATE(2275), - [sym_preproc_undef] = STATE(2275), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_RBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4222), - [aux_sym_preproc_else_token1] = ACTIONS(4222), - [aux_sym_preproc_elif_token1] = ACTIONS(4222), + [2278] = { + [sym_type_argument_list] = STATE(2293), + [sym_preproc_region] = STATE(2278), + [sym_preproc_endregion] = STATE(2278), + [sym_preproc_line] = STATE(2278), + [sym_preproc_pragma] = STATE(2278), + [sym_preproc_nullable] = STATE(2278), + [sym_preproc_error] = STATE(2278), + [sym_preproc_warning] = STATE(2278), + [sym_preproc_define] = STATE(2278), + [sym_preproc_undef] = STATE(2278), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3955), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(4200), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419097,17 +419415,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3957), }, - [2276] = { - [sym_preproc_region] = STATE(2276), - [sym_preproc_endregion] = STATE(2276), - [sym_preproc_line] = STATE(2276), - [sym_preproc_pragma] = STATE(2276), - [sym_preproc_nullable] = STATE(2276), - [sym_preproc_error] = STATE(2276), - [sym_preproc_warning] = STATE(2276), - [sym_preproc_define] = STATE(2276), - [sym_preproc_undef] = STATE(2276), + [2279] = { + [sym_preproc_region] = STATE(2279), + [sym_preproc_endregion] = STATE(2279), + [sym_preproc_line] = STATE(2279), + [sym_preproc_pragma] = STATE(2279), + [sym_preproc_nullable] = STATE(2279), + [sym_preproc_error] = STATE(2279), + [sym_preproc_warning] = STATE(2279), + [sym_preproc_define] = STATE(2279), + [sym_preproc_undef] = STATE(2279), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_SEMI] = ACTIONS(4006), @@ -419127,31 +419446,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), [anon_sym_and] = ACTIONS(3991), [anon_sym_or] = ACTIONS(3991), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -419166,9 +419470,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), @@ -419197,94 +419516,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2277] = { - [sym_type_argument_list] = STATE(2209), - [sym_preproc_region] = STATE(2277), - [sym_preproc_endregion] = STATE(2277), - [sym_preproc_line] = STATE(2277), - [sym_preproc_pragma] = STATE(2277), - [sym_preproc_nullable] = STATE(2277), - [sym_preproc_error] = STATE(2277), - [sym_preproc_warning] = STATE(2277), - [sym_preproc_define] = STATE(2277), - [sym_preproc_undef] = STATE(2277), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(4236), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), + [2280] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2314), + [sym_property_pattern_clause] = STATE(2369), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3771), + [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(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_COLON] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_RBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4232), + [aux_sym_preproc_else_token1] = ACTIONS(4232), + [aux_sym_preproc_elif_token1] = ACTIONS(4232), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419296,94 +419615,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2278] = { - [sym_preproc_region] = STATE(2278), - [sym_preproc_endregion] = STATE(2278), - [sym_preproc_line] = STATE(2278), - [sym_preproc_pragma] = STATE(2278), - [sym_preproc_nullable] = STATE(2278), - [sym_preproc_error] = STATE(2278), - [sym_preproc_warning] = STATE(2278), - [sym_preproc_define] = STATE(2278), - [sym_preproc_undef] = STATE(2278), - [sym__identifier_token] = ACTIONS(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3696), + [2281] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2314), + [sym_property_pattern_clause] = STATE(2369), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3771), + [sym_preproc_region] = STATE(2281), + [sym_preproc_endregion] = STATE(2281), + [sym_preproc_line] = STATE(2281), + [sym_preproc_pragma] = STATE(2281), + [sym_preproc_nullable] = STATE(2281), + [sym_preproc_error] = STATE(2281), + [sym_preproc_warning] = STATE(2281), + [sym_preproc_define] = STATE(2281), + [sym_preproc_undef] = STATE(2281), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_RBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4220), + [aux_sym_preproc_else_token1] = ACTIONS(4220), + [aux_sym_preproc_elif_token1] = ACTIONS(4220), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419395,391 +419714,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2279] = { - [sym_type_argument_list] = STATE(2287), - [sym_preproc_region] = STATE(2279), - [sym_preproc_endregion] = STATE(2279), - [sym_preproc_line] = STATE(2279), - [sym_preproc_pragma] = STATE(2279), - [sym_preproc_nullable] = STATE(2279), - [sym_preproc_error] = STATE(2279), - [sym_preproc_warning] = STATE(2279), - [sym_preproc_define] = STATE(2279), - [sym_preproc_undef] = STATE(2279), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(4187), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3953), - }, - [2280] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2321), - [sym_property_pattern_clause] = STATE(2353), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4670), - [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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4212), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_RBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_RPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4212), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4212), - [aux_sym_preproc_else_token1] = ACTIONS(4212), - [aux_sym_preproc_elif_token1] = ACTIONS(4212), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2281] = { - [sym_preproc_region] = STATE(2281), - [sym_preproc_endregion] = STATE(2281), - [sym_preproc_line] = STATE(2281), - [sym_preproc_pragma] = STATE(2281), - [sym_preproc_nullable] = STATE(2281), - [sym_preproc_error] = STATE(2281), - [sym_preproc_warning] = STATE(2281), - [sym_preproc_define] = STATE(2281), - [sym_preproc_undef] = STATE(2281), - [sym__identifier_token] = ACTIONS(3187), - [anon_sym_alias] = ACTIONS(3187), - [anon_sym_global] = ACTIONS(3187), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_file] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_where] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_notnull] = ACTIONS(3187), - [anon_sym_unmanaged] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_scoped] = ACTIONS(3187), - [anon_sym_var] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_switch] = ACTIONS(3187), - [anon_sym_when] = ACTIONS(3187), - [sym_discard] = ACTIONS(3187), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [anon_sym_PLUS_EQ] = ACTIONS(3189), - [anon_sym_DASH_EQ] = ACTIONS(3189), - [anon_sym_STAR_EQ] = ACTIONS(3189), - [anon_sym_SLASH_EQ] = ACTIONS(3189), - [anon_sym_PERCENT_EQ] = ACTIONS(3189), - [anon_sym_AMP_EQ] = ACTIONS(3189), - [anon_sym_CARET_EQ] = ACTIONS(3189), - [anon_sym_PIPE_EQ] = ACTIONS(3189), - [anon_sym_LT_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = ACTIONS(3187), - [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_as] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3187), - [sym_grit_metavariable] = 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), - }, - [2282] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2321), - [sym_property_pattern_clause] = STATE(2353), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2282), - [sym_preproc_endregion] = STATE(2282), - [sym_preproc_line] = STATE(2282), - [sym_preproc_pragma] = STATE(2282), - [sym_preproc_nullable] = STATE(2282), - [sym_preproc_error] = STATE(2282), - [sym_preproc_warning] = STATE(2282), - [sym_preproc_define] = STATE(2282), - [sym_preproc_undef] = STATE(2282), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_RBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4222), - [aux_sym_preproc_else_token1] = ACTIONS(4222), - [aux_sym_preproc_elif_token1] = ACTIONS(4222), + [2282] = { + [sym_preproc_region] = STATE(2282), + [sym_preproc_endregion] = STATE(2282), + [sym_preproc_line] = STATE(2282), + [sym_preproc_pragma] = STATE(2282), + [sym_preproc_nullable] = STATE(2282), + [sym_preproc_error] = STATE(2282), + [sym_preproc_warning] = STATE(2282), + [sym_preproc_define] = STATE(2282), + [sym_preproc_undef] = STATE(2282), + [sym__identifier_token] = ACTIONS(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419792,6 +419814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2283] = { + [sym_type_argument_list] = STATE(2293), [sym_preproc_region] = STATE(2283), [sym_preproc_endregion] = STATE(2283), [sym_preproc_line] = STATE(2283), @@ -419801,84 +419824,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2283), [sym_preproc_define] = STATE(2283), [sym_preproc_undef] = STATE(2283), - [sym__identifier_token] = ACTIONS(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(4238), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_break] = ACTIONS(4240), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3696), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(4200), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419889,8 +419910,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(3957), }, [2284] = { + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2284), [sym_preproc_endregion] = STATE(2284), [sym_preproc_line] = STATE(2284), @@ -419900,82 +419923,82 @@ 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(3974), - [anon_sym_alias] = ACTIONS(3974), - [anon_sym_global] = ACTIONS(3974), - [anon_sym_EQ] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3976), - [anon_sym_COLON] = ACTIONS(3976), - [anon_sym_COMMA] = ACTIONS(3976), - [anon_sym_LPAREN] = ACTIONS(3976), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_file] = ACTIONS(3974), - [anon_sym_LT] = ACTIONS(3974), - [anon_sym_GT] = ACTIONS(3974), - [anon_sym_where] = ACTIONS(3974), - [anon_sym_QMARK] = ACTIONS(3974), - [anon_sym_notnull] = ACTIONS(3974), - [anon_sym_unmanaged] = ACTIONS(3974), - [anon_sym_BANG] = ACTIONS(3974), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3974), - [anon_sym_PERCENT] = ACTIONS(3974), - [anon_sym_CARET] = ACTIONS(3974), - [anon_sym_PIPE] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_LT_LT] = ACTIONS(3974), - [anon_sym_GT_GT] = ACTIONS(3974), - [anon_sym_GT_GT_GT] = ACTIONS(3974), - [anon_sym_EQ_EQ] = ACTIONS(3976), - [anon_sym_BANG_EQ] = ACTIONS(3976), - [anon_sym_GT_EQ] = ACTIONS(3976), - [anon_sym_LT_EQ] = ACTIONS(3976), - [anon_sym_DOT] = ACTIONS(3974), - [anon_sym_scoped] = ACTIONS(3974), - [anon_sym_var] = ACTIONS(3974), - [anon_sym_yield] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_when] = ACTIONS(3974), - [sym_discard] = ACTIONS(3974), - [anon_sym_DOT_DOT] = ACTIONS(3976), - [anon_sym_and] = ACTIONS(3974), - [anon_sym_or] = ACTIONS(3974), - [anon_sym_PLUS_EQ] = ACTIONS(3976), - [anon_sym_DASH_EQ] = ACTIONS(3976), - [anon_sym_STAR_EQ] = ACTIONS(3976), - [anon_sym_SLASH_EQ] = ACTIONS(3976), - [anon_sym_PERCENT_EQ] = ACTIONS(3976), - [anon_sym_AMP_EQ] = ACTIONS(3976), - [anon_sym_CARET_EQ] = ACTIONS(3976), - [anon_sym_PIPE_EQ] = ACTIONS(3976), - [anon_sym_LT_LT_EQ] = ACTIONS(3976), - [anon_sym_GT_GT_EQ] = ACTIONS(3976), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3976), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_PIPE_PIPE] = ACTIONS(3976), - [sym_op_coalescing] = ACTIONS(3974), - [anon_sym_from] = ACTIONS(3974), - [anon_sym_into] = ACTIONS(3974), - [anon_sym_join] = ACTIONS(3974), - [anon_sym_on] = ACTIONS(3974), - [anon_sym_equals] = ACTIONS(3974), - [anon_sym_let] = ACTIONS(3974), - [anon_sym_orderby] = ACTIONS(3974), - [anon_sym_ascending] = ACTIONS(3974), - [anon_sym_descending] = ACTIONS(3974), - [anon_sym_group] = ACTIONS(3974), - [anon_sym_by] = ACTIONS(3974), - [anon_sym_select] = ACTIONS(3974), - [anon_sym_as] = ACTIONS(3974), - [anon_sym_is] = ACTIONS(3974), - [anon_sym_DASH_GT] = ACTIONS(3976), - [anon_sym_with] = ACTIONS(3974), - [sym_grit_metavariable] = ACTIONS(3976), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3984), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419986,7 +420009,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(3976), }, [2285] = { [sym_preproc_region] = STATE(2285), @@ -419998,93 +420020,93 @@ 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(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_global] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3915), - [anon_sym_unmanaged] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3915), - [anon_sym_yield] = ACTIONS(3915), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3915), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3915), - [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(3915), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3912), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3696), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_COLON] = ACTIONS(3988), + [anon_sym_COMMA] = ACTIONS(3988), + [anon_sym_LPAREN] = ACTIONS(3993), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3986), + [sym_discard] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), + [anon_sym_AMP_AMP] = ACTIONS(3993), + [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), + [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(3986), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_ascending] = ACTIONS(3986), + [anon_sym_descending] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3993), + [anon_sym_with] = ACTIONS(3999), + [sym_grit_metavariable] = ACTIONS(3997), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3988), }, [2286] = { [sym_preproc_region] = STATE(2286), @@ -420096,67 +420118,165 @@ 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(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_using] = ACTIONS(4242), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3694), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = 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), + }, + [2287] = { + [sym_preproc_region] = STATE(2287), + [sym_preproc_endregion] = STATE(2287), + [sym_preproc_line] = STATE(2287), + [sym_preproc_pragma] = STATE(2287), + [sym_preproc_nullable] = STATE(2287), + [sym_preproc_error] = STATE(2287), + [sym_preproc_warning] = STATE(2287), + [sym_preproc_define] = STATE(2287), + [sym_preproc_undef] = STATE(2287), [sym__identifier_token] = ACTIONS(4008), [anon_sym_alias] = ACTIONS(4008), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4010), + [anon_sym_COMMA] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), + [anon_sym_switch] = ACTIONS(4017), [anon_sym_when] = ACTIONS(4008), [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4008), - [anon_sym_or] = ACTIONS(4008), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4008), + [anon_sym_into] = ACTIONS(4017), [anon_sym_join] = ACTIONS(4008), [anon_sym_on] = ACTIONS(4008), [anon_sym_equals] = ACTIONS(4008), @@ -420167,11 +420287,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4008), [anon_sym_by] = ACTIONS(4008), [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420182,62 +420302,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4017), + [sym_interpolation_close_brace] = ACTIONS(4010), }, - [2287] = { - [sym_preproc_region] = STATE(2287), - [sym_preproc_endregion] = STATE(2287), - [sym_preproc_line] = STATE(2287), - [sym_preproc_pragma] = STATE(2287), - [sym_preproc_nullable] = STATE(2287), - [sym_preproc_error] = STATE(2287), - [sym_preproc_warning] = STATE(2287), - [sym_preproc_define] = STATE(2287), - [sym_preproc_undef] = STATE(2287), + [2288] = { + [sym_preproc_region] = STATE(2288), + [sym_preproc_endregion] = STATE(2288), + [sym_preproc_line] = STATE(2288), + [sym_preproc_pragma] = STATE(2288), + [sym_preproc_nullable] = STATE(2288), + [sym_preproc_error] = STATE(2288), + [sym_preproc_warning] = STATE(2288), + [sym_preproc_define] = STATE(2288), + [sym_preproc_undef] = STATE(2288), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_RPAREN] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(3986), + [sym_discard] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(3986), + [anon_sym_or] = ACTIONS(3986), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(3986), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_ascending] = ACTIONS(3986), + [anon_sym_descending] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(4034), + [anon_sym_with] = ACTIONS(3991), + [sym_grit_metavariable] = ACTIONS(3997), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2289] = { + [sym_type_argument_list] = STATE(2214), + [sym_preproc_region] = STATE(2289), + [sym_preproc_endregion] = STATE(2289), + [sym_preproc_line] = STATE(2289), + [sym_preproc_pragma] = STATE(2289), + [sym_preproc_nullable] = STATE(2289), + [sym_preproc_error] = STATE(2289), + [sym_preproc_warning] = STATE(2289), + [sym_preproc_define] = STATE(2289), + [sym_preproc_undef] = STATE(2289), [sym__identifier_token] = ACTIONS(3955), [anon_sym_alias] = ACTIONS(3955), [anon_sym_global] = ACTIONS(3955), [anon_sym_EQ] = ACTIONS(3955), [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(4244), [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_LBRACE] = ACTIONS(3957), [anon_sym_file] = ACTIONS(3955), - [anon_sym_LT] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), [anon_sym_GT] = ACTIONS(3955), [anon_sym_where] = ACTIONS(3955), [anon_sym_QMARK] = ACTIONS(3955), [anon_sym_notnull] = ACTIONS(3955), [anon_sym_unmanaged] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3955), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_CARET] = ACTIONS(3955), - [anon_sym_PIPE] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_LT_LT] = ACTIONS(3955), - [anon_sym_GT_GT] = ACTIONS(3955), - [anon_sym_GT_GT_GT] = ACTIONS(3955), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), [anon_sym_DOT] = ACTIONS(3955), [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), [anon_sym_yield] = ACTIONS(3955), [anon_sym_switch] = ACTIONS(3955), [anon_sym_when] = ACTIONS(3955), - [sym_discard] = ACTIONS(3955), [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3955), - [anon_sym_or] = ACTIONS(3955), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), [anon_sym_PLUS_EQ] = ACTIONS(3957), [anon_sym_DASH_EQ] = ACTIONS(3957), [anon_sym_STAR_EQ] = ACTIONS(3957), @@ -420250,9 +420451,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3957), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), [anon_sym_AMP_AMP] = ACTIONS(3957), [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), [anon_sym_from] = ACTIONS(3955), [anon_sym_into] = ACTIONS(3955), [anon_sym_join] = ACTIONS(3955), @@ -420270,6 +420486,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3957), [anon_sym_with] = ACTIONS(3955), [sym_grit_metavariable] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420280,78 +420499,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3957), }, - [2288] = { - [sym_preproc_region] = STATE(2288), - [sym_preproc_endregion] = STATE(2288), - [sym_preproc_line] = STATE(2288), - [sym_preproc_pragma] = STATE(2288), - [sym_preproc_nullable] = STATE(2288), - [sym_preproc_error] = STATE(2288), - [sym_preproc_warning] = STATE(2288), - [sym_preproc_define] = STATE(2288), - [sym_preproc_undef] = STATE(2288), + [2290] = { + [sym_preproc_region] = STATE(2290), + [sym_preproc_endregion] = STATE(2290), + [sym_preproc_line] = STATE(2290), + [sym_preproc_pragma] = STATE(2290), + [sym_preproc_nullable] = STATE(2290), + [sym_preproc_error] = STATE(2290), + [sym_preproc_warning] = STATE(2290), + [sym_preproc_define] = STATE(2290), + [sym_preproc_undef] = STATE(2290), [sym__identifier_token] = ACTIONS(4008), [anon_sym_alias] = ACTIONS(4008), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_RPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4015), + [anon_sym_COMMA] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), + [anon_sym_switch] = ACTIONS(4017), [anon_sym_when] = ACTIONS(4008), [sym_discard] = ACTIONS(4008), [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), [anon_sym_and] = ACTIONS(4008), [anon_sym_or] = ACTIONS(4008), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), [anon_sym_AMP_AMP] = ACTIONS(4010), [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), [anon_sym_from] = ACTIONS(4008), [anon_sym_into] = ACTIONS(4008), [anon_sym_join] = ACTIONS(4008), @@ -420364,207 +420581,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4008), [anon_sym_by] = ACTIONS(4008), [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2289] = { - [sym_preproc_region] = STATE(2289), - [sym_preproc_endregion] = STATE(2289), - [sym_preproc_line] = STATE(2289), - [sym_preproc_pragma] = STATE(2289), - [sym_preproc_nullable] = STATE(2289), - [sym_preproc_error] = STATE(2289), - [sym_preproc_warning] = STATE(2289), - [sym_preproc_define] = STATE(2289), - [sym_preproc_undef] = STATE(2289), - [sym__identifier_token] = ACTIONS(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3696), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3696), - }, - [2290] = { - [sym_property_pattern_clause] = STATE(2343), - [sym__variable_designation] = STATE(4856), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2290), - [sym_preproc_endregion] = STATE(2290), - [sym_preproc_line] = STATE(2290), - [sym_preproc_pragma] = STATE(2290), - [sym_preproc_nullable] = STATE(2290), - [sym_preproc_error] = STATE(2290), - [sym_preproc_warning] = STATE(2290), - [sym_preproc_define] = STATE(2290), - [sym_preproc_undef] = STATE(2290), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COLON] = ACTIONS(4242), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_RBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4242), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4244), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4242), - [aux_sym_preproc_else_token1] = ACTIONS(4242), - [aux_sym_preproc_elif_token1] = ACTIONS(4242), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420575,6 +420596,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(4015), }, [2291] = { [sym_preproc_region] = STATE(2291), @@ -420586,82 +420608,82 @@ 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(3970), - [anon_sym_alias] = ACTIONS(3970), - [anon_sym_global] = ACTIONS(3970), - [anon_sym_EQ] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_COLON] = ACTIONS(3972), - [anon_sym_COMMA] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3972), - [anon_sym_LBRACE] = ACTIONS(3972), - [anon_sym_file] = ACTIONS(3970), - [anon_sym_LT] = ACTIONS(3970), - [anon_sym_GT] = ACTIONS(3970), - [anon_sym_where] = ACTIONS(3970), - [anon_sym_QMARK] = ACTIONS(3970), - [anon_sym_notnull] = ACTIONS(3970), - [anon_sym_unmanaged] = ACTIONS(3970), - [anon_sym_BANG] = ACTIONS(3970), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3970), - [anon_sym_SLASH] = ACTIONS(3970), - [anon_sym_PERCENT] = ACTIONS(3970), - [anon_sym_CARET] = ACTIONS(3970), - [anon_sym_PIPE] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_LT_LT] = ACTIONS(3970), - [anon_sym_GT_GT] = ACTIONS(3970), - [anon_sym_GT_GT_GT] = ACTIONS(3970), - [anon_sym_EQ_EQ] = ACTIONS(3972), - [anon_sym_BANG_EQ] = ACTIONS(3972), - [anon_sym_GT_EQ] = ACTIONS(3972), - [anon_sym_LT_EQ] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(3970), - [anon_sym_scoped] = ACTIONS(3970), - [anon_sym_var] = ACTIONS(3970), - [anon_sym_yield] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_when] = ACTIONS(3970), - [sym_discard] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(3972), - [anon_sym_and] = ACTIONS(3970), - [anon_sym_or] = ACTIONS(3970), - [anon_sym_PLUS_EQ] = ACTIONS(3972), - [anon_sym_DASH_EQ] = ACTIONS(3972), - [anon_sym_STAR_EQ] = ACTIONS(3972), - [anon_sym_SLASH_EQ] = ACTIONS(3972), - [anon_sym_PERCENT_EQ] = ACTIONS(3972), - [anon_sym_AMP_EQ] = ACTIONS(3972), - [anon_sym_CARET_EQ] = ACTIONS(3972), - [anon_sym_PIPE_EQ] = ACTIONS(3972), - [anon_sym_LT_LT_EQ] = ACTIONS(3972), - [anon_sym_GT_GT_EQ] = ACTIONS(3972), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3972), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_PIPE_PIPE] = ACTIONS(3972), - [sym_op_coalescing] = ACTIONS(3970), - [anon_sym_from] = ACTIONS(3970), - [anon_sym_into] = ACTIONS(3970), - [anon_sym_join] = ACTIONS(3970), - [anon_sym_on] = ACTIONS(3970), - [anon_sym_equals] = ACTIONS(3970), - [anon_sym_let] = ACTIONS(3970), - [anon_sym_orderby] = ACTIONS(3970), - [anon_sym_ascending] = ACTIONS(3970), - [anon_sym_descending] = ACTIONS(3970), - [anon_sym_group] = ACTIONS(3970), - [anon_sym_by] = ACTIONS(3970), - [anon_sym_select] = ACTIONS(3970), - [anon_sym_as] = ACTIONS(3970), - [anon_sym_is] = ACTIONS(3970), - [anon_sym_DASH_GT] = ACTIONS(3972), - [anon_sym_with] = ACTIONS(3970), - [sym_grit_metavariable] = ACTIONS(3972), + [sym__identifier_token] = ACTIONS(3187), + [anon_sym_alias] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3187), + [anon_sym_EQ] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3189), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_file] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_where] = ACTIONS(3187), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_notnull] = ACTIONS(3187), + [anon_sym_unmanaged] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_scoped] = ACTIONS(3187), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_when] = ACTIONS(3187), + [sym_discard] = ACTIONS(3187), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3187), + [anon_sym_or] = ACTIONS(3187), + [anon_sym_PLUS_EQ] = ACTIONS(3189), + [anon_sym_DASH_EQ] = ACTIONS(3189), + [anon_sym_STAR_EQ] = ACTIONS(3189), + [anon_sym_SLASH_EQ] = ACTIONS(3189), + [anon_sym_PERCENT_EQ] = ACTIONS(3189), + [anon_sym_AMP_EQ] = ACTIONS(3189), + [anon_sym_CARET_EQ] = ACTIONS(3189), + [anon_sym_PIPE_EQ] = ACTIONS(3189), + [anon_sym_LT_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_GT_EQ] = ACTIONS(3189), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [sym_op_left_shift] = ACTIONS(3187), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3187), + [sym_op_coalescing] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = 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_as] = ACTIONS(3187), + [anon_sym_is] = ACTIONS(3187), + [anon_sym_DASH_GT] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3187), + [sym_grit_metavariable] = ACTIONS(3189), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420672,7 +420694,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(3972), + [sym_interpolation_close_brace] = ACTIONS(3189), }, [2292] = { [sym_preproc_region] = STATE(2292), @@ -420684,164 +420706,66 @@ 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(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(4246), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_break] = ACTIONS(4248), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3696), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2293] = { - [sym_preproc_region] = STATE(2293), - [sym_preproc_endregion] = STATE(2293), - [sym_preproc_line] = STATE(2293), - [sym_preproc_pragma] = STATE(2293), - [sym_preproc_nullable] = STATE(2293), - [sym_preproc_error] = STATE(2293), - [sym_preproc_warning] = STATE(2293), - [sym_preproc_define] = STATE(2293), - [sym_preproc_undef] = STATE(2293), [sym__identifier_token] = ACTIONS(4008), [anon_sym_alias] = ACTIONS(4008), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_RPAREN] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4017), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_RPAREN] = ACTIONS(4015), + [anon_sym_LBRACE] = ACTIONS(4015), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), + [anon_sym_switch] = ACTIONS(4013), [anon_sym_when] = ACTIONS(4008), [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), [anon_sym_and] = ACTIONS(4008), [anon_sym_or] = ACTIONS(4008), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), [anon_sym_from] = ACTIONS(4008), [anon_sym_into] = ACTIONS(4008), [anon_sym_join] = ACTIONS(4008), @@ -420854,11 +420778,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4008), [anon_sym_by] = ACTIONS(4008), [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420870,93 +420794,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2294] = { - [sym_preproc_region] = STATE(2294), - [sym_preproc_endregion] = STATE(2294), - [sym_preproc_line] = STATE(2294), - [sym_preproc_pragma] = STATE(2294), - [sym_preproc_nullable] = STATE(2294), - [sym_preproc_error] = STATE(2294), - [sym_preproc_warning] = STATE(2294), - [sym_preproc_define] = STATE(2294), - [sym_preproc_undef] = STATE(2294), - [sym__identifier_token] = ACTIONS(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4034), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_RPAREN] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(3986), - [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(3986), - [anon_sym_or] = ACTIONS(3986), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(3986), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4034), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), + [2293] = { + [sym_preproc_region] = STATE(2293), + [sym_preproc_endregion] = STATE(2293), + [sym_preproc_line] = STATE(2293), + [sym_preproc_pragma] = STATE(2293), + [sym_preproc_nullable] = STATE(2293), + [sym_preproc_error] = STATE(2293), + [sym_preproc_warning] = STATE(2293), + [sym_preproc_define] = STATE(2293), + [sym_preproc_undef] = STATE(2293), + [sym__identifier_token] = ACTIONS(3974), + [anon_sym_alias] = ACTIONS(3974), + [anon_sym_global] = ACTIONS(3974), + [anon_sym_EQ] = ACTIONS(3974), + [anon_sym_LBRACK] = ACTIONS(3976), + [anon_sym_COLON] = ACTIONS(3976), + [anon_sym_COMMA] = ACTIONS(3976), + [anon_sym_LPAREN] = ACTIONS(3976), + [anon_sym_LBRACE] = ACTIONS(3976), + [anon_sym_file] = ACTIONS(3974), + [anon_sym_LT] = ACTIONS(3974), + [anon_sym_GT] = ACTIONS(3974), + [anon_sym_where] = ACTIONS(3974), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_notnull] = ACTIONS(3974), + [anon_sym_unmanaged] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3974), + [anon_sym_scoped] = ACTIONS(3974), + [anon_sym_var] = ACTIONS(3974), + [anon_sym_STAR] = ACTIONS(3974), + [anon_sym_yield] = ACTIONS(3974), + [anon_sym_switch] = ACTIONS(3974), + [anon_sym_when] = ACTIONS(3974), + [sym_discard] = ACTIONS(3974), + [anon_sym_DOT_DOT] = ACTIONS(3976), + [anon_sym_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_EQ] = ACTIONS(3976), + [anon_sym_and] = ACTIONS(3974), + [anon_sym_or] = ACTIONS(3974), + [anon_sym_PLUS_EQ] = ACTIONS(3976), + [anon_sym_DASH_EQ] = ACTIONS(3976), + [anon_sym_STAR_EQ] = ACTIONS(3976), + [anon_sym_SLASH_EQ] = ACTIONS(3976), + [anon_sym_PERCENT_EQ] = ACTIONS(3976), + [anon_sym_AMP_EQ] = ACTIONS(3976), + [anon_sym_CARET_EQ] = ACTIONS(3976), + [anon_sym_PIPE_EQ] = ACTIONS(3976), + [anon_sym_LT_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_GT_EQ] = ACTIONS(3976), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3976), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3976), + [anon_sym_EQ_EQ] = ACTIONS(3976), + [anon_sym_BANG_EQ] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [sym_op_bitwise_or] = ACTIONS(3974), + [anon_sym_CARET] = ACTIONS(3974), + [sym_op_left_shift] = ACTIONS(3974), + [sym_op_right_shift] = ACTIONS(3974), + [sym_op_unsigned_right_shift] = ACTIONS(3974), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [sym_op_divide] = ACTIONS(3974), + [sym_op_modulo] = ACTIONS(3974), + [sym_op_coalescing] = ACTIONS(3974), + [anon_sym_BANG] = ACTIONS(3974), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_from] = ACTIONS(3974), + [anon_sym_into] = ACTIONS(3974), + [anon_sym_join] = ACTIONS(3974), + [anon_sym_on] = ACTIONS(3974), + [anon_sym_equals] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3974), + [anon_sym_orderby] = ACTIONS(3974), + [anon_sym_ascending] = ACTIONS(3974), + [anon_sym_descending] = ACTIONS(3974), + [anon_sym_group] = ACTIONS(3974), + [anon_sym_by] = ACTIONS(3974), + [anon_sym_select] = ACTIONS(3974), + [anon_sym_as] = ACTIONS(3974), + [anon_sym_is] = ACTIONS(3974), + [anon_sym_DASH_GT] = ACTIONS(3976), + [anon_sym_with] = ACTIONS(3974), + [sym_grit_metavariable] = ACTIONS(3976), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3976), + }, + [2294] = { + [sym_preproc_region] = STATE(2294), + [sym_preproc_endregion] = STATE(2294), + [sym_preproc_line] = STATE(2294), + [sym_preproc_pragma] = STATE(2294), + [sym_preproc_nullable] = STATE(2294), + [sym_preproc_error] = STATE(2294), + [sym_preproc_warning] = STATE(2294), + [sym_preproc_define] = STATE(2294), + [sym_preproc_undef] = STATE(2294), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_RPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4008), + [anon_sym_or] = ACTIONS(4008), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [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(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420969,7 +420991,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2295] = { - [sym_type_argument_list] = STATE(2209), [sym_preproc_region] = STATE(2295), [sym_preproc_endregion] = STATE(2295), [sym_preproc_line] = STATE(2295), @@ -420979,82 +421000,82 @@ 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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_COLON_COLON] = ACTIONS(3984), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4010), + [anon_sym_COMMA] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = 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(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421065,6 +421086,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(4010), }, [2296] = { [sym_preproc_region] = STATE(2296), @@ -421076,50 +421098,134 @@ 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(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_return] = ACTIONS(4246), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = 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), + }, + [2297] = { + [sym_preproc_region] = STATE(2297), + [sym_preproc_endregion] = STATE(2297), + [sym_preproc_line] = STATE(2297), + [sym_preproc_pragma] = STATE(2297), + [sym_preproc_nullable] = STATE(2297), + [sym_preproc_error] = STATE(2297), + [sym_preproc_warning] = STATE(2297), + [sym_preproc_define] = STATE(2297), + [sym_preproc_undef] = STATE(2297), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(3993), - [anon_sym_COLON] = ACTIONS(3988), - [anon_sym_COMMA] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3993), + [anon_sym_LBRACK] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4034), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_RPAREN] = ACTIONS(4034), [anon_sym_LBRACE] = ACTIONS(3997), [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), - [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_DOT] = ACTIONS(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3999), + [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_and] = ACTIONS(4003), - [anon_sym_or] = ACTIONS(4003), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(3986), + [anon_sym_or] = ACTIONS(3986), [anon_sym_PLUS_EQ] = ACTIONS(4006), [anon_sym_DASH_EQ] = ACTIONS(4006), [anon_sym_STAR_EQ] = ACTIONS(4006), @@ -421132,9 +421238,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(3993), - [anon_sym_PIPE_PIPE] = ACTIONS(3993), - [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), @@ -421147,10 +421268,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3986), [anon_sym_by] = ACTIONS(3986), [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3993), - [anon_sym_with] = ACTIONS(3999), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(4034), + [anon_sym_with] = ACTIONS(3991), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -421162,92 +421283,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_close_brace] = ACTIONS(3988), }, - [2297] = { + [2298] = { [sym_property_pattern_clause] = STATE(2340), - [sym__variable_designation] = STATE(4885), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2297), - [sym_preproc_endregion] = STATE(2297), - [sym_preproc_line] = STATE(2297), - [sym_preproc_pragma] = STATE(2297), - [sym_preproc_nullable] = STATE(2297), - [sym_preproc_error] = STATE(2297), - [sym_preproc_warning] = STATE(2297), - [sym_preproc_define] = STATE(2297), - [sym_preproc_undef] = STATE(2297), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), + [sym__variable_designation] = STATE(4190), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), + [sym_preproc_region] = STATE(2298), + [sym_preproc_endregion] = STATE(2298), + [sym_preproc_line] = STATE(2298), + [sym_preproc_pragma] = STATE(2298), + [sym_preproc_nullable] = STATE(2298), + [sym_preproc_error] = STATE(2298), + [sym_preproc_warning] = STATE(2298), + [sym_preproc_define] = STATE(2298), + [sym_preproc_undef] = STATE(2298), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_global] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4218), [anon_sym_LBRACK] = ACTIONS(4250), [anon_sym_COLON] = ACTIONS(4250), [anon_sym_COMMA] = ACTIONS(4250), [anon_sym_RBRACK] = ACTIONS(4250), [anon_sym_LPAREN] = ACTIONS(4250), [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4222), [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4210), + [anon_sym_file] = ACTIONS(4218), [anon_sym_LT] = ACTIONS(4252), [anon_sym_GT] = ACTIONS(4252), [anon_sym_in] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4218), [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4218), [anon_sym_EQ_GT] = ACTIONS(4250), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), [anon_sym_and] = ACTIONS(4252), [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), [anon_sym_AMP_AMP] = ACTIONS(4250), [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), [anon_sym_into] = ACTIONS(4252), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), [anon_sym_as] = ACTIONS(4252), [anon_sym_is] = ACTIONS(4252), [anon_sym_DASH_GT] = ACTIONS(4250), [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_if_token3] = ACTIONS(4250), [aux_sym_preproc_else_token1] = ACTIONS(4250), [aux_sym_preproc_elif_token1] = ACTIONS(4250), @@ -421262,104 +421382,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2298] = { - [sym_preproc_region] = STATE(2298), - [sym_preproc_endregion] = STATE(2298), - [sym_preproc_line] = STATE(2298), - [sym_preproc_pragma] = STATE(2298), - [sym_preproc_nullable] = STATE(2298), - [sym_preproc_error] = STATE(2298), - [sym_preproc_warning] = STATE(2298), - [sym_preproc_define] = STATE(2298), - [sym_preproc_undef] = STATE(2298), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3953), - }, [2299] = { [sym_preproc_region] = STATE(2299), [sym_preproc_endregion] = STATE(2299), @@ -421375,44 +421397,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_COLON] = ACTIONS(4006), + [anon_sym_COLON] = ACTIONS(3997), [anon_sym_COMMA] = ACTIONS(3997), [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_RPAREN] = ACTIONS(3997), [anon_sym_LBRACE] = ACTIONS(3997), [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), + [anon_sym_LT] = ACTIONS(4037), + [anon_sym_GT] = ACTIONS(4037), [anon_sym_where] = ACTIONS(3986), [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3991), + [anon_sym_switch] = ACTIONS(4037), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_DOT_DOT] = ACTIONS(4034), + [anon_sym_LT_EQ] = ACTIONS(4034), + [anon_sym_GT_EQ] = ACTIONS(4034), [anon_sym_and] = ACTIONS(3986), [anon_sym_or] = ACTIONS(3986), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -421427,9 +421433,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_EQ_EQ] = ACTIONS(4034), + [anon_sym_BANG_EQ] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4034), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4037), + [sym_op_bitwise_or] = ACTIONS(4037), + [anon_sym_CARET] = ACTIONS(4037), + [sym_op_left_shift] = ACTIONS(4037), + [sym_op_right_shift] = ACTIONS(4037), + [sym_op_unsigned_right_shift] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4037), + [anon_sym_DASH] = ACTIONS(4037), + [sym_op_divide] = ACTIONS(4037), + [sym_op_modulo] = ACTIONS(4037), + [sym_op_coalescing] = ACTIONS(4037), + [anon_sym_BANG] = ACTIONS(4037), + [anon_sym_PLUS_PLUS] = ACTIONS(4034), + [anon_sym_DASH_DASH] = ACTIONS(4034), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), @@ -421442,10 +421463,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3986), [anon_sym_by] = ACTIONS(3986), [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), + [anon_sym_as] = ACTIONS(4037), + [anon_sym_is] = ACTIONS(4037), [anon_sym_DASH_GT] = ACTIONS(4034), - [anon_sym_with] = ACTIONS(3991), + [anon_sym_with] = ACTIONS(4037), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -421457,6 +421478,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(3997), }, [2300] = { [sym_preproc_region] = STATE(2300), @@ -421468,82 +421490,82 @@ 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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(3993), - [anon_sym_COLON] = ACTIONS(3988), - [anon_sym_COMMA] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3993), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(3986), - [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_and] = ACTIONS(4003), - [anon_sym_or] = ACTIONS(4003), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(3993), - [anon_sym_PIPE_PIPE] = ACTIONS(3993), - [sym_op_coalescing] = ACTIONS(3999), - [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(4003), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3993), - [anon_sym_with] = ACTIONS(3999), - [sym_grit_metavariable] = ACTIONS(3997), + [sym__identifier_token] = ACTIONS(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421554,9 +421576,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(3988), + [sym_interpolation_close_brace] = ACTIONS(3694), }, [2301] = { + [sym_property_pattern_clause] = STATE(2338), + [sym__variable_designation] = STATE(4147), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2301), [sym_preproc_endregion] = STATE(2301), [sym_preproc_line] = STATE(2301), @@ -421566,82 +421593,78 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = 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(4017), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4008), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4019), - [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(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4254), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COLON] = ACTIONS(4254), + [anon_sym_COMMA] = ACTIONS(4254), + [anon_sym_RBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_RPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_RBRACE] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_in] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4254), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4254), + [aux_sym_preproc_else_token1] = ACTIONS(4254), + [aux_sym_preproc_elif_token1] = ACTIONS(4254), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421652,7 +421675,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(4014), }, [2302] = { [sym_preproc_region] = STATE(2302), @@ -421664,82 +421686,82 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = 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(4017), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4008), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), - [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(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), + [sym__identifier_token] = ACTIONS(3913), + [anon_sym_alias] = ACTIONS(3913), + [anon_sym_global] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3913), + [anon_sym_unmanaged] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3913), + [anon_sym_into] = ACTIONS(3913), + [anon_sym_join] = ACTIONS(3913), + [anon_sym_on] = ACTIONS(3913), + [anon_sym_equals] = ACTIONS(3913), + [anon_sym_let] = ACTIONS(3913), + [anon_sym_orderby] = ACTIONS(3913), + [anon_sym_ascending] = ACTIONS(3913), + [anon_sym_descending] = ACTIONS(3913), + [anon_sym_group] = ACTIONS(3913), + [anon_sym_by] = ACTIONS(3913), + [anon_sym_select] = ACTIONS(3913), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3910), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421750,7 +421772,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(4014), + [sym_interpolation_close_brace] = ACTIONS(3694), }, [2303] = { [sym_preproc_region] = STATE(2303), @@ -421762,93 +421784,93 @@ 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(3966), - [anon_sym_alias] = ACTIONS(3966), - [anon_sym_global] = ACTIONS(3966), - [anon_sym_EQ] = ACTIONS(3966), - [anon_sym_LBRACK] = ACTIONS(3968), - [anon_sym_COLON] = ACTIONS(3968), - [anon_sym_COMMA] = ACTIONS(3968), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_LBRACE] = ACTIONS(3968), - [anon_sym_file] = ACTIONS(3966), - [anon_sym_LT] = ACTIONS(3966), - [anon_sym_GT] = ACTIONS(3966), - [anon_sym_where] = ACTIONS(3966), - [anon_sym_QMARK] = ACTIONS(3966), - [anon_sym_notnull] = ACTIONS(3966), - [anon_sym_unmanaged] = ACTIONS(3966), - [anon_sym_BANG] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3966), - [anon_sym_SLASH] = ACTIONS(3966), - [anon_sym_PERCENT] = ACTIONS(3966), - [anon_sym_CARET] = ACTIONS(3966), - [anon_sym_PIPE] = ACTIONS(3966), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_LT_LT] = ACTIONS(3966), - [anon_sym_GT_GT] = ACTIONS(3966), - [anon_sym_GT_GT_GT] = ACTIONS(3966), - [anon_sym_EQ_EQ] = ACTIONS(3968), - [anon_sym_BANG_EQ] = ACTIONS(3968), - [anon_sym_GT_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3968), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_scoped] = ACTIONS(3966), - [anon_sym_var] = ACTIONS(3966), - [anon_sym_yield] = ACTIONS(3966), - [anon_sym_switch] = ACTIONS(3966), - [anon_sym_when] = ACTIONS(3966), - [sym_discard] = ACTIONS(3966), - [anon_sym_DOT_DOT] = ACTIONS(3968), - [anon_sym_and] = ACTIONS(3966), - [anon_sym_or] = ACTIONS(3966), - [anon_sym_PLUS_EQ] = ACTIONS(3968), - [anon_sym_DASH_EQ] = ACTIONS(3968), - [anon_sym_STAR_EQ] = ACTIONS(3968), - [anon_sym_SLASH_EQ] = ACTIONS(3968), - [anon_sym_PERCENT_EQ] = ACTIONS(3968), - [anon_sym_AMP_EQ] = ACTIONS(3968), - [anon_sym_CARET_EQ] = ACTIONS(3968), - [anon_sym_PIPE_EQ] = ACTIONS(3968), - [anon_sym_LT_LT_EQ] = ACTIONS(3968), - [anon_sym_GT_GT_EQ] = ACTIONS(3968), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3968), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_PIPE_PIPE] = ACTIONS(3968), - [sym_op_coalescing] = ACTIONS(3966), - [anon_sym_from] = ACTIONS(3966), - [anon_sym_into] = ACTIONS(3966), - [anon_sym_join] = ACTIONS(3966), - [anon_sym_on] = ACTIONS(3966), - [anon_sym_equals] = ACTIONS(3966), - [anon_sym_let] = ACTIONS(3966), - [anon_sym_orderby] = ACTIONS(3966), - [anon_sym_ascending] = ACTIONS(3966), - [anon_sym_descending] = ACTIONS(3966), - [anon_sym_group] = ACTIONS(3966), - [anon_sym_by] = ACTIONS(3966), - [anon_sym_select] = ACTIONS(3966), - [anon_sym_as] = ACTIONS(3966), - [anon_sym_is] = ACTIONS(3966), - [anon_sym_DASH_GT] = ACTIONS(3968), - [anon_sym_with] = ACTIONS(3966), - [sym_grit_metavariable] = ACTIONS(3968), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3968), + [sym__identifier_token] = ACTIONS(3959), + [anon_sym_alias] = ACTIONS(3959), + [anon_sym_global] = ACTIONS(3959), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3961), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_file] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_GT] = ACTIONS(3959), + [anon_sym_where] = ACTIONS(3959), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_notnull] = ACTIONS(3959), + [anon_sym_unmanaged] = ACTIONS(3959), + [anon_sym_DOT] = ACTIONS(3959), + [anon_sym_scoped] = ACTIONS(3959), + [anon_sym_var] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3959), + [anon_sym_switch] = ACTIONS(3959), + [anon_sym_when] = ACTIONS(3959), + [sym_discard] = ACTIONS(3959), + [anon_sym_DOT_DOT] = ACTIONS(3961), + [anon_sym_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_EQ] = ACTIONS(3961), + [anon_sym_and] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3959), + [anon_sym_PLUS_EQ] = ACTIONS(3961), + [anon_sym_DASH_EQ] = ACTIONS(3961), + [anon_sym_STAR_EQ] = ACTIONS(3961), + [anon_sym_SLASH_EQ] = ACTIONS(3961), + [anon_sym_PERCENT_EQ] = ACTIONS(3961), + [anon_sym_AMP_EQ] = ACTIONS(3961), + [anon_sym_CARET_EQ] = ACTIONS(3961), + [anon_sym_PIPE_EQ] = ACTIONS(3961), + [anon_sym_LT_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_GT_EQ] = ACTIONS(3961), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3961), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3961), + [anon_sym_EQ_EQ] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [sym_op_bitwise_or] = ACTIONS(3959), + [anon_sym_CARET] = ACTIONS(3959), + [sym_op_left_shift] = ACTIONS(3959), + [sym_op_right_shift] = ACTIONS(3959), + [sym_op_unsigned_right_shift] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3959), + [sym_op_divide] = ACTIONS(3959), + [sym_op_modulo] = ACTIONS(3959), + [sym_op_coalescing] = ACTIONS(3959), + [anon_sym_BANG] = ACTIONS(3959), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_from] = ACTIONS(3959), + [anon_sym_into] = ACTIONS(3959), + [anon_sym_join] = ACTIONS(3959), + [anon_sym_on] = ACTIONS(3959), + [anon_sym_equals] = ACTIONS(3959), + [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(3959), + [anon_sym_select] = ACTIONS(3959), + [anon_sym_as] = ACTIONS(3959), + [anon_sym_is] = ACTIONS(3959), + [anon_sym_DASH_GT] = ACTIONS(3961), + [anon_sym_with] = ACTIONS(3959), + [sym_grit_metavariable] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3961), }, [2304] = { [sym_preproc_region] = STATE(2304), @@ -421860,50 +421882,133 @@ 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(3970), + [anon_sym_alias] = ACTIONS(3970), + [anon_sym_global] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_COLON] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_file] = ACTIONS(3970), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_QMARK] = ACTIONS(3970), + [anon_sym_notnull] = ACTIONS(3970), + [anon_sym_unmanaged] = ACTIONS(3970), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_scoped] = ACTIONS(3970), + [anon_sym_var] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_yield] = ACTIONS(3970), + [anon_sym_switch] = ACTIONS(3970), + [anon_sym_when] = ACTIONS(3970), + [sym_discard] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_and] = ACTIONS(3970), + [anon_sym_or] = ACTIONS(3970), + [anon_sym_PLUS_EQ] = ACTIONS(3972), + [anon_sym_DASH_EQ] = ACTIONS(3972), + [anon_sym_STAR_EQ] = ACTIONS(3972), + [anon_sym_SLASH_EQ] = ACTIONS(3972), + [anon_sym_PERCENT_EQ] = ACTIONS(3972), + [anon_sym_AMP_EQ] = ACTIONS(3972), + [anon_sym_CARET_EQ] = ACTIONS(3972), + [anon_sym_PIPE_EQ] = ACTIONS(3972), + [anon_sym_LT_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_GT_EQ] = ACTIONS(3972), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3972), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [sym_op_bitwise_or] = ACTIONS(3970), + [anon_sym_CARET] = ACTIONS(3970), + [sym_op_left_shift] = ACTIONS(3970), + [sym_op_right_shift] = ACTIONS(3970), + [sym_op_unsigned_right_shift] = ACTIONS(3970), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [sym_op_divide] = ACTIONS(3970), + [sym_op_modulo] = ACTIONS(3970), + [sym_op_coalescing] = ACTIONS(3970), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_from] = ACTIONS(3970), + [anon_sym_into] = ACTIONS(3970), + [anon_sym_join] = ACTIONS(3970), + [anon_sym_on] = ACTIONS(3970), + [anon_sym_equals] = ACTIONS(3970), + [anon_sym_let] = ACTIONS(3970), + [anon_sym_orderby] = ACTIONS(3970), + [anon_sym_ascending] = ACTIONS(3970), + [anon_sym_descending] = ACTIONS(3970), + [anon_sym_group] = ACTIONS(3970), + [anon_sym_by] = ACTIONS(3970), + [anon_sym_select] = ACTIONS(3970), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_DASH_GT] = ACTIONS(3972), + [anon_sym_with] = ACTIONS(3970), + [sym_grit_metavariable] = ACTIONS(3972), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3972), + }, + [2305] = { + [sym_preproc_region] = STATE(2305), + [sym_preproc_endregion] = STATE(2305), + [sym_preproc_line] = STATE(2305), + [sym_preproc_pragma] = STATE(2305), + [sym_preproc_nullable] = STATE(2305), + [sym_preproc_error] = STATE(2305), + [sym_preproc_warning] = STATE(2305), + [sym_preproc_define] = STATE(2305), + [sym_preproc_undef] = STATE(2305), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_COLON] = ACTIONS(3997), - [anon_sym_COMMA] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_COLON] = ACTIONS(3988), + [anon_sym_COMMA] = ACTIONS(3988), + [anon_sym_LPAREN] = ACTIONS(3993), [anon_sym_LBRACE] = ACTIONS(3997), [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(4037), - [anon_sym_GT] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_QMARK] = ACTIONS(3999), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(4037), - [anon_sym_PLUS_PLUS] = ACTIONS(4034), - [anon_sym_DASH_DASH] = ACTIONS(4034), - [anon_sym_PLUS] = ACTIONS(4037), - [anon_sym_DASH] = ACTIONS(4037), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(4037), - [anon_sym_PERCENT] = ACTIONS(4037), - [anon_sym_CARET] = ACTIONS(4037), - [anon_sym_PIPE] = ACTIONS(4037), - [anon_sym_AMP] = ACTIONS(4037), - [anon_sym_LT_LT] = ACTIONS(4037), - [anon_sym_GT_GT] = ACTIONS(4037), - [anon_sym_GT_GT_GT] = ACTIONS(4037), - [anon_sym_EQ_EQ] = ACTIONS(4034), - [anon_sym_BANG_EQ] = ACTIONS(4034), - [anon_sym_GT_EQ] = ACTIONS(4034), - [anon_sym_LT_EQ] = ACTIONS(4034), - [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_DOT] = ACTIONS(3999), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(4037), + [anon_sym_switch] = ACTIONS(3999), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4034), - [anon_sym_and] = ACTIONS(3986), - [anon_sym_or] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), [anon_sym_DASH_EQ] = ACTIONS(4006), [anon_sym_STAR_EQ] = ACTIONS(4006), @@ -421916,11 +422021,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), - [sym_op_coalescing] = ACTIONS(4037), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), + [anon_sym_AMP_AMP] = ACTIONS(3993), + [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), + [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(4003), [anon_sym_join] = ACTIONS(3986), [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), @@ -421931,10 +422051,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3986), [anon_sym_by] = ACTIONS(3986), [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(4037), - [anon_sym_is] = ACTIONS(4037), - [anon_sym_DASH_GT] = ACTIONS(4034), - [anon_sym_with] = ACTIONS(4037), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3993), + [anon_sym_with] = ACTIONS(3999), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -421946,95 +422066,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3997), + [sym_interpolation_close_brace] = ACTIONS(3988), }, - [2305] = { - [sym_preproc_region] = STATE(2305), - [sym_preproc_endregion] = STATE(2305), - [sym_preproc_line] = STATE(2305), - [sym_preproc_pragma] = STATE(2305), - [sym_preproc_nullable] = STATE(2305), - [sym_preproc_error] = STATE(2305), - [sym_preproc_warning] = STATE(2305), - [sym_preproc_define] = STATE(2305), - [sym_preproc_undef] = STATE(2305), - [sym__identifier_token] = ACTIONS(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_using] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3696), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [2306] = { + [sym_type_argument_list] = STATE(2214), + [sym_preproc_region] = STATE(2306), + [sym_preproc_endregion] = STATE(2306), + [sym_preproc_line] = STATE(2306), + [sym_preproc_pragma] = STATE(2306), + [sym_preproc_nullable] = STATE(2306), + [sym_preproc_error] = STATE(2306), + [sym_preproc_warning] = STATE(2306), + [sym_preproc_define] = STATE(2306), + [sym_preproc_undef] = STATE(2306), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422046,58 +422166,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2306] = { - [sym_type_argument_list] = STATE(2209), - [sym_preproc_region] = STATE(2306), - [sym_preproc_endregion] = STATE(2306), - [sym_preproc_line] = STATE(2306), - [sym_preproc_pragma] = STATE(2306), - [sym_preproc_nullable] = STATE(2306), - [sym_preproc_error] = STATE(2306), - [sym_preproc_warning] = STATE(2306), - [sym_preproc_define] = STATE(2306), - [sym_preproc_undef] = STATE(2306), + [2307] = { + [sym_preproc_region] = STATE(2307), + [sym_preproc_endregion] = STATE(2307), + [sym_preproc_line] = STATE(2307), + [sym_preproc_pragma] = STATE(2307), + [sym_preproc_nullable] = STATE(2307), + [sym_preproc_error] = STATE(2307), + [sym_preproc_warning] = STATE(2307), + [sym_preproc_define] = STATE(2307), + [sym_preproc_undef] = STATE(2307), [sym__identifier_token] = ACTIONS(3951), [anon_sym_alias] = ACTIONS(3951), [anon_sym_global] = ACTIONS(3951), [anon_sym_EQ] = ACTIONS(3951), [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(4256), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3951), [anon_sym_GT] = ACTIONS(3951), [anon_sym_where] = ACTIONS(3951), [anon_sym_QMARK] = ACTIONS(3951), [anon_sym_notnull] = ACTIONS(3951), [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), [anon_sym_DOT] = ACTIONS(3951), [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), [anon_sym_var] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3951), [anon_sym_yield] = ACTIONS(3951), [anon_sym_switch] = ACTIONS(3951), [anon_sym_when] = ACTIONS(3951), + [sym_discard] = ACTIONS(3951), [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3951), [anon_sym_PLUS_EQ] = ACTIONS(3953), [anon_sym_DASH_EQ] = ACTIONS(3953), [anon_sym_STAR_EQ] = ACTIONS(3953), @@ -422110,9 +422217,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3953), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), [anon_sym_AMP_AMP] = ACTIONS(3953), [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP] = ACTIONS(3951), + [sym_op_bitwise_or] = ACTIONS(3951), + [anon_sym_CARET] = ACTIONS(3951), + [sym_op_left_shift] = ACTIONS(3951), + [sym_op_right_shift] = ACTIONS(3951), + [sym_op_unsigned_right_shift] = ACTIONS(3951), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [sym_op_divide] = ACTIONS(3951), + [sym_op_modulo] = ACTIONS(3951), [sym_op_coalescing] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), [anon_sym_from] = ACTIONS(3951), [anon_sym_into] = ACTIONS(3951), [anon_sym_join] = ACTIONS(3951), @@ -422130,9 +422252,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(3953), [anon_sym_with] = ACTIONS(3951), [sym_grit_metavariable] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422143,104 +422262,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), - }, - [2307] = { - [sym_preproc_region] = STATE(2307), - [sym_preproc_endregion] = STATE(2307), - [sym_preproc_line] = STATE(2307), - [sym_preproc_pragma] = STATE(2307), - [sym_preproc_nullable] = STATE(2307), - [sym_preproc_error] = STATE(2307), - [sym_preproc_warning] = STATE(2307), - [sym_preproc_define] = STATE(2307), - [sym_preproc_undef] = STATE(2307), - [sym__identifier_token] = ACTIONS(3978), - [anon_sym_alias] = ACTIONS(3978), - [anon_sym_global] = ACTIONS(3978), - [anon_sym_EQ] = ACTIONS(3978), - [anon_sym_LBRACK] = ACTIONS(3980), - [anon_sym_COLON] = ACTIONS(3980), - [anon_sym_COMMA] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_file] = ACTIONS(3978), - [anon_sym_LT] = ACTIONS(3978), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_where] = ACTIONS(3978), - [anon_sym_QMARK] = ACTIONS(3978), - [anon_sym_notnull] = ACTIONS(3978), - [anon_sym_unmanaged] = ACTIONS(3978), - [anon_sym_BANG] = ACTIONS(3978), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3978), - [anon_sym_SLASH] = ACTIONS(3978), - [anon_sym_PERCENT] = ACTIONS(3978), - [anon_sym_CARET] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(3978), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_LT_LT] = ACTIONS(3978), - [anon_sym_GT_GT] = ACTIONS(3978), - [anon_sym_GT_GT_GT] = ACTIONS(3978), - [anon_sym_EQ_EQ] = ACTIONS(3980), - [anon_sym_BANG_EQ] = ACTIONS(3980), - [anon_sym_GT_EQ] = ACTIONS(3980), - [anon_sym_LT_EQ] = ACTIONS(3980), - [anon_sym_DOT] = ACTIONS(3978), - [anon_sym_scoped] = ACTIONS(3978), - [anon_sym_var] = ACTIONS(3978), - [anon_sym_yield] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_when] = ACTIONS(3978), - [sym_discard] = ACTIONS(3978), - [anon_sym_DOT_DOT] = ACTIONS(3980), - [anon_sym_and] = ACTIONS(3978), - [anon_sym_or] = ACTIONS(3978), - [anon_sym_PLUS_EQ] = ACTIONS(3980), - [anon_sym_DASH_EQ] = ACTIONS(3980), - [anon_sym_STAR_EQ] = ACTIONS(3980), - [anon_sym_SLASH_EQ] = ACTIONS(3980), - [anon_sym_PERCENT_EQ] = ACTIONS(3980), - [anon_sym_AMP_EQ] = ACTIONS(3980), - [anon_sym_CARET_EQ] = ACTIONS(3980), - [anon_sym_PIPE_EQ] = ACTIONS(3980), - [anon_sym_LT_LT_EQ] = ACTIONS(3980), - [anon_sym_GT_GT_EQ] = ACTIONS(3980), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3980), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_PIPE_PIPE] = ACTIONS(3980), - [sym_op_coalescing] = ACTIONS(3978), - [anon_sym_from] = ACTIONS(3978), - [anon_sym_into] = ACTIONS(3978), - [anon_sym_join] = ACTIONS(3978), - [anon_sym_on] = ACTIONS(3978), - [anon_sym_equals] = ACTIONS(3978), - [anon_sym_let] = ACTIONS(3978), - [anon_sym_orderby] = ACTIONS(3978), - [anon_sym_ascending] = ACTIONS(3978), - [anon_sym_descending] = ACTIONS(3978), - [anon_sym_group] = ACTIONS(3978), - [anon_sym_by] = ACTIONS(3978), - [anon_sym_select] = ACTIONS(3978), - [anon_sym_as] = ACTIONS(3978), - [anon_sym_is] = ACTIONS(3978), - [anon_sym_DASH_GT] = ACTIONS(3980), - [anon_sym_with] = ACTIONS(3978), - [sym_grit_metavariable] = ACTIONS(3980), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3980), + [sym_interpolation_close_brace] = ACTIONS(3953), }, [2308] = { [sym_preproc_region] = STATE(2308), @@ -422252,82 +422274,82 @@ 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(3187), - [anon_sym_alias] = ACTIONS(3187), - [anon_sym_global] = ACTIONS(3187), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_file] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_where] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_notnull] = ACTIONS(3187), - [anon_sym_unmanaged] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_scoped] = ACTIONS(3187), - [anon_sym_var] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_switch] = ACTIONS(3187), - [anon_sym_when] = ACTIONS(3187), - [sym_discard] = ACTIONS(3187), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [anon_sym_PLUS_EQ] = ACTIONS(3189), - [anon_sym_DASH_EQ] = ACTIONS(3189), - [anon_sym_STAR_EQ] = ACTIONS(3189), - [anon_sym_SLASH_EQ] = ACTIONS(3189), - [anon_sym_PERCENT_EQ] = ACTIONS(3189), - [anon_sym_AMP_EQ] = ACTIONS(3189), - [anon_sym_CARET_EQ] = ACTIONS(3189), - [anon_sym_PIPE_EQ] = ACTIONS(3189), - [anon_sym_LT_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = ACTIONS(3187), - [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_as] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3187), - [sym_grit_metavariable] = ACTIONS(3189), + [sym__identifier_token] = ACTIONS(3980), + [anon_sym_alias] = ACTIONS(3980), + [anon_sym_global] = ACTIONS(3980), + [anon_sym_EQ] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_COLON] = ACTIONS(3982), + [anon_sym_COMMA] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3982), + [anon_sym_file] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3980), + [anon_sym_GT] = ACTIONS(3980), + [anon_sym_where] = ACTIONS(3980), + [anon_sym_QMARK] = ACTIONS(3980), + [anon_sym_notnull] = ACTIONS(3980), + [anon_sym_unmanaged] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_scoped] = ACTIONS(3980), + [anon_sym_var] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3980), + [anon_sym_yield] = ACTIONS(3980), + [anon_sym_switch] = ACTIONS(3980), + [anon_sym_when] = ACTIONS(3980), + [sym_discard] = ACTIONS(3980), + [anon_sym_DOT_DOT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_EQ] = ACTIONS(3982), + [anon_sym_and] = ACTIONS(3980), + [anon_sym_or] = ACTIONS(3980), + [anon_sym_PLUS_EQ] = ACTIONS(3982), + [anon_sym_DASH_EQ] = ACTIONS(3982), + [anon_sym_STAR_EQ] = ACTIONS(3982), + [anon_sym_SLASH_EQ] = ACTIONS(3982), + [anon_sym_PERCENT_EQ] = ACTIONS(3982), + [anon_sym_AMP_EQ] = ACTIONS(3982), + [anon_sym_CARET_EQ] = ACTIONS(3982), + [anon_sym_PIPE_EQ] = ACTIONS(3982), + [anon_sym_LT_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_GT_EQ] = ACTIONS(3982), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3982), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3982), + [anon_sym_EQ_EQ] = ACTIONS(3982), + [anon_sym_BANG_EQ] = ACTIONS(3982), + [anon_sym_AMP_AMP] = ACTIONS(3982), + [anon_sym_PIPE_PIPE] = ACTIONS(3982), + [anon_sym_AMP] = ACTIONS(3980), + [sym_op_bitwise_or] = ACTIONS(3980), + [anon_sym_CARET] = ACTIONS(3980), + [sym_op_left_shift] = ACTIONS(3980), + [sym_op_right_shift] = ACTIONS(3980), + [sym_op_unsigned_right_shift] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3980), + [sym_op_divide] = ACTIONS(3980), + [sym_op_modulo] = ACTIONS(3980), + [sym_op_coalescing] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3982), + [anon_sym_from] = ACTIONS(3980), + [anon_sym_into] = ACTIONS(3980), + [anon_sym_join] = ACTIONS(3980), + [anon_sym_on] = ACTIONS(3980), + [anon_sym_equals] = ACTIONS(3980), + [anon_sym_let] = ACTIONS(3980), + [anon_sym_orderby] = ACTIONS(3980), + [anon_sym_ascending] = ACTIONS(3980), + [anon_sym_descending] = ACTIONS(3980), + [anon_sym_group] = ACTIONS(3980), + [anon_sym_by] = ACTIONS(3980), + [anon_sym_select] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(3980), + [anon_sym_is] = ACTIONS(3980), + [anon_sym_DASH_GT] = ACTIONS(3982), + [anon_sym_with] = ACTIONS(3980), + [sym_grit_metavariable] = ACTIONS(3982), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422338,10 +422360,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(3189), + [sym_interpolation_close_brace] = ACTIONS(3982), }, [2309] = { - [sym_type_argument_list] = STATE(2209), [sym_preproc_region] = STATE(2309), [sym_preproc_endregion] = STATE(2309), [sym_preproc_line] = STATE(2309), @@ -422351,82 +422372,82 @@ 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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422437,8 +422458,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(3957), }, [2310] = { + [sym_modifier] = STATE(3484), + [sym_variable_declaration] = STATE(7730), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5898), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6011), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2310), [sym_preproc_endregion] = STATE(2310), [sym_preproc_line] = STATE(2310), @@ -422448,82 +422490,62 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_when] = ACTIONS(4019), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [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(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3232), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(65), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_event] = ACTIONS(4258), + [anon_sym_class] = ACTIONS(4064), + [anon_sym_ref] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_enum] = ACTIONS(4068), + [anon_sym_interface] = ACTIONS(4070), + [anon_sym_delegate] = ACTIONS(4072), + [anon_sym_record] = ACTIONS(4074), + [anon_sym_public] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3231), + [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_protected] = 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(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_implicit] = ACTIONS(4076), + [anon_sym_explicit] = ACTIONS(4076), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422536,11 +422558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2311] = { - [sym_property_pattern_clause] = STATE(2386), - [sym__variable_designation] = STATE(4968), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2311), [sym_preproc_endregion] = STATE(2311), [sym_preproc_line] = STATE(2311), @@ -422550,77 +422568,81 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COLON] = ACTIONS(4242), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_RBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4242), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4242), - [aux_sym_preproc_else_token1] = ACTIONS(4242), - [aux_sym_preproc_elif_token1] = ACTIONS(4242), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(4260), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422633,26 +422655,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2312] = { - [sym_modifier] = STATE(4327), - [sym_variable_declaration] = STATE(7918), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5912), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6015), - [sym__reserved_identifier] = STATE(5136), + [sym_property_pattern_clause] = STATE(2368), + [sym__variable_designation] = STATE(4578), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2312), [sym_preproc_endregion] = STATE(2312), [sym_preproc_line] = STATE(2312), @@ -422662,7 +422669,119 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3907), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_RPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4250), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4250), + [aux_sym_preproc_else_token1] = ACTIONS(4250), + [aux_sym_preproc_elif_token1] = ACTIONS(4250), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2313] = { + [sym_modifier] = STATE(3484), + [sym_variable_declaration] = STATE(7838), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5934), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6012), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(2313), + [sym_preproc_endregion] = STATE(2313), + [sym_preproc_line] = STATE(2313), + [sym_preproc_pragma] = STATE(2313), + [sym_preproc_nullable] = STATE(2313), + [sym_preproc_error] = STATE(2313), + [sym_preproc_warning] = STATE(2313), + [sym_preproc_define] = STATE(2313), + [sym_preproc_undef] = STATE(2313), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3232), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(65), [anon_sym_alias] = ACTIONS(3211), @@ -422670,14 +422789,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(65), [anon_sym_static] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_event] = ACTIONS(4258), - [anon_sym_class] = ACTIONS(4044), - [anon_sym_ref] = ACTIONS(4046), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(4048), - [anon_sym_interface] = ACTIONS(4050), - [anon_sym_delegate] = ACTIONS(4052), - [anon_sym_record] = ACTIONS(4054), + [anon_sym_event] = ACTIONS(4262), + [anon_sym_class] = ACTIONS(4264), + [anon_sym_ref] = ACTIONS(4266), + [anon_sym_struct] = ACTIONS(4268), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_interface] = ACTIONS(4272), + [anon_sym_delegate] = ACTIONS(4274), + [anon_sym_record] = ACTIONS(4276), [anon_sym_public] = ACTIONS(65), [anon_sym_private] = ACTIONS(65), [anon_sym_readonly] = ACTIONS(65), @@ -422698,8 +422817,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_implicit] = ACTIONS(4058), - [anon_sym_explicit] = ACTIONS(4058), + [anon_sym_implicit] = ACTIONS(4278), + [anon_sym_explicit] = ACTIONS(4278), [anon_sym_scoped] = ACTIONS(3237), [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), @@ -422717,7 +422836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422729,16 +422848,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2313] = { - [sym_preproc_region] = STATE(2313), - [sym_preproc_endregion] = STATE(2313), - [sym_preproc_line] = STATE(2313), - [sym_preproc_pragma] = STATE(2313), - [sym_preproc_nullable] = STATE(2313), - [sym_preproc_error] = STATE(2313), - [sym_preproc_warning] = STATE(2313), - [sym_preproc_define] = STATE(2313), - [sym_preproc_undef] = STATE(2313), + [2314] = { + [sym_property_pattern_clause] = STATE(2367), + [sym__variable_designation] = STATE(4528), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), + [sym_preproc_region] = STATE(2314), + [sym_preproc_endregion] = STATE(2314), + [sym_preproc_line] = STATE(2314), + [sym_preproc_pragma] = STATE(2314), + [sym_preproc_nullable] = STATE(2314), + [sym_preproc_error] = STATE(2314), + [sym_preproc_warning] = STATE(2314), + [sym_preproc_define] = STATE(2314), + [sym_preproc_undef] = STATE(2314), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4254), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COLON] = ACTIONS(4254), + [anon_sym_COMMA] = ACTIONS(4254), + [anon_sym_RBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_RPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_RBRACE] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4254), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4254), + [aux_sym_preproc_else_token1] = ACTIONS(4254), + [aux_sym_preproc_elif_token1] = ACTIONS(4254), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2315] = { + [sym_parameter_list] = STATE(7966), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(8006), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_region] = STATE(2315), + [sym_preproc_endregion] = STATE(2315), + [sym_preproc_line] = STATE(2315), + [sym_preproc_pragma] = STATE(2315), + [sym_preproc_nullable] = STATE(2315), + [sym_preproc_error] = STATE(2315), + [sym_preproc_warning] = STATE(2315), + [sym_preproc_define] = STATE(2315), + [sym_preproc_undef] = STATE(2315), + [sym__identifier_token] = ACTIONS(4280), + [anon_sym_alias] = ACTIONS(4280), + [anon_sym_SEMI] = ACTIONS(4282), + [anon_sym_global] = ACTIONS(4280), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_COLON] = ACTIONS(4282), + [anon_sym_COMMA] = ACTIONS(4282), + [anon_sym_RBRACK] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_RPAREN] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4282), + [anon_sym_file] = ACTIONS(4280), + [anon_sym_LT] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4280), + [anon_sym_in] = ACTIONS(4280), + [anon_sym_where] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_notnull] = ACTIONS(4280), + [anon_sym_unmanaged] = ACTIONS(4280), + [anon_sym_DOT] = ACTIONS(4280), + [anon_sym_scoped] = ACTIONS(4280), + [anon_sym_EQ_GT] = ACTIONS(4282), + [anon_sym_var] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_yield] = ACTIONS(4280), + [anon_sym_switch] = ACTIONS(4280), + [anon_sym_when] = ACTIONS(4280), + [sym_discard] = ACTIONS(4280), + [anon_sym_DOT_DOT] = ACTIONS(4282), + [anon_sym_LT_EQ] = ACTIONS(4282), + [anon_sym_GT_EQ] = ACTIONS(4282), + [anon_sym_and] = ACTIONS(4280), + [anon_sym_or] = ACTIONS(4280), + [anon_sym_EQ_EQ] = ACTIONS(4282), + [anon_sym_BANG_EQ] = ACTIONS(4282), + [anon_sym_AMP_AMP] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4282), + [anon_sym_AMP] = ACTIONS(4280), + [sym_op_bitwise_or] = ACTIONS(4280), + [anon_sym_CARET] = ACTIONS(4282), + [sym_op_left_shift] = ACTIONS(4282), + [sym_op_right_shift] = ACTIONS(4280), + [sym_op_unsigned_right_shift] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + [sym_op_divide] = ACTIONS(4280), + [sym_op_modulo] = ACTIONS(4282), + [sym_op_coalescing] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [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), + [anon_sym_as] = ACTIONS(4280), + [anon_sym_is] = ACTIONS(4280), + [anon_sym_DASH_GT] = ACTIONS(4282), + [anon_sym_with] = ACTIONS(4280), + [sym_grit_metavariable] = ACTIONS(4282), + [aux_sym_preproc_if_token3] = ACTIONS(4282), + [aux_sym_preproc_else_token1] = ACTIONS(4282), + [aux_sym_preproc_elif_token1] = ACTIONS(4282), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2316] = { + [sym_preproc_region] = STATE(2316), + [sym_preproc_endregion] = STATE(2316), + [sym_preproc_line] = STATE(2316), + [sym_preproc_pragma] = STATE(2316), + [sym_preproc_nullable] = STATE(2316), + [sym_preproc_error] = STATE(2316), + [sym_preproc_warning] = STATE(2316), + [sym_preproc_define] = STATE(2316), + [sym_preproc_undef] = STATE(2316), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -422754,33 +423067,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_EQ_GT] = ACTIONS(3988), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(4003), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -422795,9 +423093,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), @@ -422826,92 +423139,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2314] = { - [sym_preproc_region] = STATE(2314), - [sym_preproc_endregion] = STATE(2314), - [sym_preproc_line] = STATE(2314), - [sym_preproc_pragma] = STATE(2314), - [sym_preproc_nullable] = STATE(2314), - [sym_preproc_error] = STATE(2314), - [sym_preproc_warning] = STATE(2314), - [sym_preproc_define] = STATE(2314), - [sym_preproc_undef] = STATE(2314), - [sym__identifier_token] = ACTIONS(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_global] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3915), - [anon_sym_unmanaged] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3915), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3912), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3915), - [anon_sym_yield] = ACTIONS(3915), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3915), - [sym_discard] = ACTIONS(3915), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3915), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3915), - [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(3915), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3915), - [sym_grit_metavariable] = ACTIONS(3912), + [2317] = { + [sym_preproc_region] = STATE(2317), + [sym_preproc_endregion] = STATE(2317), + [sym_preproc_line] = STATE(2317), + [sym_preproc_pragma] = STATE(2317), + [sym_preproc_nullable] = STATE(2317), + [sym_preproc_error] = STATE(2317), + [sym_preproc_warning] = STATE(2317), + [sym_preproc_define] = STATE(2317), + [sym_preproc_undef] = STATE(2317), + [sym__identifier_token] = ACTIONS(3913), + [anon_sym_alias] = ACTIONS(3913), + [anon_sym_global] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_notnull] = ACTIONS(3913), + [anon_sym_unmanaged] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_scoped] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_yield] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(3913), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3913), + [sym_op_left_shift] = ACTIONS(3913), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3913), + [sym_op_coalescing] = ACTIONS(3913), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(3913), + [anon_sym_into] = ACTIONS(3913), + [anon_sym_join] = ACTIONS(3913), + [anon_sym_on] = ACTIONS(3913), + [anon_sym_equals] = ACTIONS(3913), + [anon_sym_let] = ACTIONS(3913), + [anon_sym_orderby] = ACTIONS(3913), + [anon_sym_ascending] = ACTIONS(3913), + [anon_sym_descending] = ACTIONS(3913), + [anon_sym_group] = ACTIONS(3913), + [anon_sym_by] = ACTIONS(3913), + [anon_sym_select] = ACTIONS(3913), + [anon_sym_as] = ACTIONS(3913), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(3910), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422923,92 +423236,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2315] = { - [sym_parameter_list] = STATE(7657), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(8086), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_region] = STATE(2315), - [sym_preproc_endregion] = STATE(2315), - [sym_preproc_line] = STATE(2315), - [sym_preproc_pragma] = STATE(2315), - [sym_preproc_nullable] = STATE(2315), - [sym_preproc_error] = STATE(2315), - [sym_preproc_warning] = STATE(2315), - [sym_preproc_define] = STATE(2315), - [sym_preproc_undef] = STATE(2315), - [sym__identifier_token] = ACTIONS(4260), - [anon_sym_alias] = ACTIONS(4260), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_global] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_COLON] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_RBRACK] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4262), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_file] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(4260), - [anon_sym_QMARK] = ACTIONS(4260), - [anon_sym_notnull] = ACTIONS(4260), - [anon_sym_unmanaged] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_CARET] = ACTIONS(4262), - [anon_sym_PIPE] = ACTIONS(4260), - [anon_sym_AMP] = ACTIONS(4260), - [anon_sym_LT_LT] = ACTIONS(4262), - [anon_sym_GT_GT] = ACTIONS(4260), - [anon_sym_GT_GT_GT] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_scoped] = ACTIONS(4260), - [anon_sym_EQ_GT] = ACTIONS(4262), - [anon_sym_var] = ACTIONS(4260), - [anon_sym_yield] = ACTIONS(4260), - [anon_sym_switch] = ACTIONS(4260), - [anon_sym_when] = ACTIONS(4260), - [sym_discard] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_and] = ACTIONS(4260), - [anon_sym_or] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [sym_op_coalescing] = ACTIONS(4262), - [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), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_DASH_GT] = ACTIONS(4262), - [anon_sym_with] = ACTIONS(4260), - [sym_grit_metavariable] = ACTIONS(4262), - [aux_sym_preproc_if_token3] = ACTIONS(4262), - [aux_sym_preproc_else_token1] = ACTIONS(4262), - [aux_sym_preproc_elif_token1] = ACTIONS(4262), + [2318] = { + [sym_type_argument_list] = STATE(2214), + [sym_preproc_region] = STATE(2318), + [sym_preproc_endregion] = STATE(2318), + [sym_preproc_line] = STATE(2318), + [sym_preproc_pragma] = STATE(2318), + [sym_preproc_nullable] = STATE(2318), + [sym_preproc_error] = STATE(2318), + [sym_preproc_warning] = STATE(2318), + [sym_preproc_define] = STATE(2318), + [sym_preproc_undef] = STATE(2318), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(4284), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423020,75 +423333,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2316] = { - [sym_preproc_region] = STATE(2316), - [sym_preproc_endregion] = STATE(2316), - [sym_preproc_line] = STATE(2316), - [sym_preproc_pragma] = STATE(2316), - [sym_preproc_nullable] = STATE(2316), - [sym_preproc_error] = STATE(2316), - [sym_preproc_warning] = STATE(2316), - [sym_preproc_define] = STATE(2316), - [sym_preproc_undef] = STATE(2316), + [2319] = { + [sym_preproc_region] = STATE(2319), + [sym_preproc_endregion] = STATE(2319), + [sym_preproc_line] = STATE(2319), + [sym_preproc_pragma] = STATE(2319), + [sym_preproc_nullable] = STATE(2319), + [sym_preproc_error] = STATE(2319), + [sym_preproc_warning] = STATE(2319), + [sym_preproc_define] = STATE(2319), + [sym_preproc_undef] = STATE(2319), [sym__identifier_token] = ACTIONS(4008), [anon_sym_alias] = ACTIONS(4008), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4014), + [anon_sym_EQ_GT] = ACTIONS(4010), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4019), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4017), [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), [anon_sym_from] = ACTIONS(4008), [anon_sym_into] = ACTIONS(4008), [anon_sym_join] = ACTIONS(4008), @@ -423101,11 +423414,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4008), [anon_sym_by] = ACTIONS(4008), [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423117,74 +423430,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2317] = { - [sym_modifier] = STATE(4327), - [sym_variable_declaration] = STATE(7694), + [2320] = { + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_modifier] = STATE(5161), + [sym_parameter_list] = STATE(7966), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5906), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6001), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(2317), - [sym_preproc_endregion] = STATE(2317), - [sym_preproc_line] = STATE(2317), - [sym_preproc_pragma] = STATE(2317), - [sym_preproc_nullable] = STATE(2317), - [sym_preproc_error] = STATE(2317), - [sym_preproc_warning] = STATE(2317), - [sym_preproc_define] = STATE(2317), - [sym_preproc_undef] = STATE(2317), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3907), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6228), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym__lambda_parameters] = STATE(8081), + [sym_identifier] = STATE(6061), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if_in_attribute_list] = STATE(4846), + [sym_preproc_region] = STATE(2320), + [sym_preproc_endregion] = STATE(2320), + [sym_preproc_line] = STATE(2320), + [sym_preproc_pragma] = STATE(2320), + [sym_preproc_nullable] = STATE(2320), + [sym_preproc_error] = STATE(2320), + [sym_preproc_warning] = STATE(2320), + [sym_preproc_define] = STATE(2320), + [sym_preproc_undef] = STATE(2320), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3629), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2608), + [aux_sym__lambda_expression_init_repeat1] = STATE(4103), [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_event] = ACTIONS(4264), - [anon_sym_class] = ACTIONS(4266), - [anon_sym_ref] = ACTIONS(4268), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4272), - [anon_sym_interface] = ACTIONS(4274), - [anon_sym_delegate] = ACTIONS(4276), - [anon_sym_record] = ACTIONS(4278), - [anon_sym_public] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3231), - [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_protected] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(657), + [anon_sym_static] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(4286), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(665), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(4288), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(657), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_implicit] = ACTIONS(4280), - [anon_sym_explicit] = ACTIONS(4280), [anon_sym_scoped] = ACTIONS(3237), [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), @@ -423202,7 +423514,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4290), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423214,92 +423527,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2318] = { - [sym__name] = STATE(2776), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(2640), - [sym__reserved_identifier] = STATE(2395), - [sym_preproc_region] = STATE(2318), - [sym_preproc_endregion] = STATE(2318), - [sym_preproc_line] = STATE(2318), - [sym_preproc_pragma] = STATE(2318), - [sym_preproc_nullable] = STATE(2318), - [sym_preproc_error] = STATE(2318), - [sym_preproc_warning] = STATE(2318), - [sym_preproc_define] = STATE(2318), - [sym_preproc_undef] = STATE(2318), - [sym__identifier_token] = ACTIONS(3880), - [anon_sym_alias] = ACTIONS(3883), - [anon_sym_global] = ACTIONS(3883), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3902), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3883), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3883), - [anon_sym_unmanaged] = ACTIONS(3883), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), + [2321] = { + [sym_preproc_region] = STATE(2321), + [sym_preproc_endregion] = STATE(2321), + [sym_preproc_line] = STATE(2321), + [sym_preproc_pragma] = STATE(2321), + [sym_preproc_nullable] = STATE(2321), + [sym_preproc_error] = STATE(2321), + [sym_preproc_warning] = STATE(2321), + [sym_preproc_define] = STATE(2321), + [sym_preproc_undef] = STATE(2321), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_EQ_GT] = ACTIONS(4010), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4017), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [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(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2322] = { + [sym_preproc_region] = STATE(2322), + [sym_preproc_endregion] = STATE(2322), + [sym_preproc_line] = STATE(2322), + [sym_preproc_pragma] = STATE(2322), + [sym_preproc_nullable] = STATE(2322), + [sym_preproc_error] = STATE(2322), + [sym_preproc_warning] = STATE(2322), + [sym_preproc_define] = STATE(2322), + [sym_preproc_undef] = STATE(2322), + [sym__identifier_token] = ACTIONS(3913), + [anon_sym_alias] = ACTIONS(3913), + [anon_sym_global] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3913), + [anon_sym_unmanaged] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3913), [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3913), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3883), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3883), - [anon_sym_yield] = ACTIONS(3883), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3883), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3883), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3883), - [anon_sym_on] = ACTIONS(3883), - [anon_sym_equals] = ACTIONS(3883), - [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(3883), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3888), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3913), + [anon_sym_into] = ACTIONS(3913), + [anon_sym_join] = ACTIONS(3913), + [anon_sym_on] = ACTIONS(3913), + [anon_sym_equals] = ACTIONS(3913), + [anon_sym_let] = ACTIONS(3913), + [anon_sym_orderby] = ACTIONS(3913), + [anon_sym_ascending] = ACTIONS(3913), + [anon_sym_descending] = ACTIONS(3913), + [anon_sym_group] = ACTIONS(3913), + [anon_sym_by] = ACTIONS(3913), + [anon_sym_select] = ACTIONS(3913), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3910), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423311,92 +423721,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2319] = { - [sym_type_argument_list] = STATE(2209), - [sym_preproc_region] = STATE(2319), - [sym_preproc_endregion] = STATE(2319), - [sym_preproc_line] = STATE(2319), - [sym_preproc_pragma] = STATE(2319), - [sym_preproc_nullable] = STATE(2319), - [sym_preproc_error] = STATE(2319), - [sym_preproc_warning] = STATE(2319), - [sym_preproc_define] = STATE(2319), - [sym_preproc_undef] = STATE(2319), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(4282), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), + [2323] = { + [sym_preproc_region] = STATE(2323), + [sym_preproc_endregion] = STATE(2323), + [sym_preproc_line] = STATE(2323), + [sym_preproc_pragma] = STATE(2323), + [sym_preproc_nullable] = STATE(2323), + [sym_preproc_error] = STATE(2323), + [sym_preproc_warning] = STATE(2323), + [sym_preproc_define] = STATE(2323), + [sym_preproc_undef] = STATE(2323), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_EQ_GT] = ACTIONS(4010), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4017), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), + [anon_sym_from] = ACTIONS(4008), + [anon_sym_into] = ACTIONS(4017), + [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(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423408,16 +423818,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2320] = { - [sym_preproc_region] = STATE(2320), - [sym_preproc_endregion] = STATE(2320), - [sym_preproc_line] = STATE(2320), - [sym_preproc_pragma] = STATE(2320), - [sym_preproc_nullable] = STATE(2320), - [sym_preproc_error] = STATE(2320), - [sym_preproc_warning] = STATE(2320), - [sym_preproc_define] = STATE(2320), - [sym_preproc_undef] = STATE(2320), + [2324] = { + [sym_preproc_region] = STATE(2324), + [sym_preproc_endregion] = STATE(2324), + [sym_preproc_line] = STATE(2324), + [sym_preproc_pragma] = STATE(2324), + [sym_preproc_nullable] = STATE(2324), + [sym_preproc_error] = STATE(2324), + [sym_preproc_warning] = STATE(2324), + [sym_preproc_define] = STATE(2324), + [sym_preproc_undef] = STATE(2324), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -423433,33 +423843,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3999), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), [anon_sym_DOT] = ACTIONS(3999), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_EQ_GT] = ACTIONS(3988), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3999), [anon_sym_when] = ACTIONS(4003), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -423474,9 +423869,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), [anon_sym_AMP_AMP] = ACTIONS(3993), [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), @@ -423505,383 +423915,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2321] = { - [sym_property_pattern_clause] = STATE(2373), - [sym__variable_designation] = STATE(4934), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2321), - [sym_preproc_endregion] = STATE(2321), - [sym_preproc_line] = STATE(2321), - [sym_preproc_pragma] = STATE(2321), - [sym_preproc_nullable] = STATE(2321), - [sym_preproc_error] = STATE(2321), - [sym_preproc_warning] = STATE(2321), - [sym_preproc_define] = STATE(2321), - [sym_preproc_undef] = STATE(2321), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_RBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4250), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4250), - [aux_sym_preproc_else_token1] = ACTIONS(4250), - [aux_sym_preproc_elif_token1] = ACTIONS(4250), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2322] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_modifier] = STATE(5303), - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6212), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym__lambda_parameters] = STATE(7967), - [sym_identifier] = STATE(6072), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if_in_attribute_list] = STATE(5086), - [sym_preproc_region] = STATE(2322), - [sym_preproc_endregion] = STATE(2322), - [sym_preproc_line] = STATE(2322), - [sym_preproc_pragma] = STATE(2322), - [sym_preproc_nullable] = STATE(2322), - [sym_preproc_error] = STATE(2322), - [sym_preproc_warning] = STATE(2322), - [sym_preproc_define] = STATE(2322), - [sym_preproc_undef] = STATE(2322), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4641), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2653), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(657), - [anon_sym_static] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(4284), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(665), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(657), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), - [aux_sym_preproc_if_token1] = ACTIONS(4288), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2323] = { - [sym_type_argument_list] = STATE(2209), - [sym_preproc_region] = STATE(2323), - [sym_preproc_endregion] = STATE(2323), - [sym_preproc_line] = STATE(2323), - [sym_preproc_pragma] = STATE(2323), - [sym_preproc_nullable] = STATE(2323), - [sym_preproc_error] = STATE(2323), - [sym_preproc_warning] = STATE(2323), - [sym_preproc_define] = STATE(2323), - [sym_preproc_undef] = STATE(2323), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(4290), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2324] = { - [sym_preproc_region] = STATE(2324), - [sym_preproc_endregion] = STATE(2324), - [sym_preproc_line] = STATE(2324), - [sym_preproc_pragma] = STATE(2324), - [sym_preproc_nullable] = STATE(2324), - [sym_preproc_error] = STATE(2324), - [sym_preproc_warning] = STATE(2324), - [sym_preproc_define] = STATE(2324), - [sym_preproc_undef] = STATE(2324), - [sym__identifier_token] = ACTIONS(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_global] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3915), - [anon_sym_unmanaged] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3912), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3915), - [anon_sym_yield] = ACTIONS(3915), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3915), - [sym_discard] = ACTIONS(3915), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3915), - [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(3915), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3912), + [2325] = { + [sym__name] = STATE(2684), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(2619), + [sym__reserved_identifier] = STATE(2402), + [sym_preproc_region] = STATE(2325), + [sym_preproc_endregion] = STATE(2325), + [sym_preproc_line] = STATE(2325), + [sym_preproc_pragma] = STATE(2325), + [sym_preproc_nullable] = STATE(2325), + [sym_preproc_error] = STATE(2325), + [sym_preproc_warning] = STATE(2325), + [sym_preproc_define] = STATE(2325), + [sym_preproc_undef] = STATE(2325), + [sym__identifier_token] = ACTIONS(3865), + [anon_sym_alias] = ACTIONS(3868), + [anon_sym_global] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3928), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3868), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3868), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3868), + [anon_sym_unmanaged] = ACTIONS(3868), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3868), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3868), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3868), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3868), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3868), + [anon_sym_into] = ACTIONS(3868), + [anon_sym_join] = ACTIONS(3868), + [anon_sym_on] = ACTIONS(3868), + [anon_sym_equals] = ACTIONS(3868), + [anon_sym_let] = ACTIONS(3868), + [anon_sym_orderby] = ACTIONS(3868), + [anon_sym_ascending] = ACTIONS(3868), + [anon_sym_descending] = ACTIONS(3868), + [anon_sym_group] = ACTIONS(3868), + [anon_sym_by] = ACTIONS(3868), + [anon_sym_select] = ACTIONS(3868), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423893,16 +424012,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [sym_preproc_pragma] = STATE(2325), - [sym_preproc_nullable] = STATE(2325), - [sym_preproc_error] = STATE(2325), - [sym_preproc_warning] = STATE(2325), - [sym_preproc_define] = STATE(2325), - [sym_preproc_undef] = STATE(2325), + [2326] = { + [sym_preproc_region] = STATE(2326), + [sym_preproc_endregion] = STATE(2326), + [sym_preproc_line] = STATE(2326), + [sym_preproc_pragma] = STATE(2326), + [sym_preproc_nullable] = STATE(2326), + [sym_preproc_error] = STATE(2326), + [sym_preproc_warning] = STATE(2326), + [sym_preproc_define] = STATE(2326), + [sym_preproc_undef] = STATE(2326), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -423918,33 +424037,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3999), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), [anon_sym_DOT] = ACTIONS(3999), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_EQ_GT] = ACTIONS(3988), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3999), [anon_sym_when] = ACTIONS(4003), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -423959,9 +424063,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), [anon_sym_AMP_AMP] = ACTIONS(3993), [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(4003), [anon_sym_join] = ACTIONS(3986), @@ -423990,188 +424109,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2326] = { - [sym_preproc_region] = STATE(2326), - [sym_preproc_endregion] = STATE(2326), - [sym_preproc_line] = STATE(2326), - [sym_preproc_pragma] = STATE(2326), - [sym_preproc_nullable] = STATE(2326), - [sym_preproc_error] = STATE(2326), - [sym_preproc_warning] = STATE(2326), - [sym_preproc_define] = STATE(2326), - [sym_preproc_undef] = STATE(2326), + [2327] = { + [sym_preproc_region] = STATE(2327), + [sym_preproc_endregion] = STATE(2327), + [sym_preproc_line] = STATE(2327), + [sym_preproc_pragma] = STATE(2327), + [sym_preproc_nullable] = STATE(2327), + [sym_preproc_error] = STATE(2327), + [sym_preproc_warning] = STATE(2327), + [sym_preproc_define] = STATE(2327), + [sym_preproc_undef] = STATE(2327), [sym__identifier_token] = ACTIONS(4008), [anon_sym_alias] = ACTIONS(4008), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COMMA] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_where] = ACTIONS(4017), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4014), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4019), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4008), [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4019), - [anon_sym_join] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), + [anon_sym_from] = ACTIONS(4017), + [anon_sym_into] = ACTIONS(4017), + [anon_sym_join] = ACTIONS(4017), [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_let] = ACTIONS(4017), + [anon_sym_orderby] = ACTIONS(4017), + [anon_sym_ascending] = ACTIONS(4017), + [anon_sym_descending] = ACTIONS(4017), + [anon_sym_group] = ACTIONS(4017), [anon_sym_by] = ACTIONS(4008), - [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2327] = { - [sym_preproc_region] = STATE(2327), - [sym_preproc_endregion] = STATE(2327), - [sym_preproc_line] = STATE(2327), - [sym_preproc_pragma] = STATE(2327), - [sym_preproc_nullable] = STATE(2327), - [sym_preproc_error] = STATE(2327), - [sym_preproc_warning] = STATE(2327), - [sym_preproc_define] = STATE(2327), - [sym_preproc_undef] = STATE(2327), - [sym__identifier_token] = ACTIONS(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(3993), - [anon_sym_COMMA] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3993), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(4003), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(3986), - [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_and] = ACTIONS(4003), - [anon_sym_or] = ACTIONS(4003), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(3993), - [anon_sym_PIPE_PIPE] = ACTIONS(3993), - [sym_op_coalescing] = ACTIONS(3999), - [anon_sym_from] = ACTIONS(4003), - [anon_sym_into] = ACTIONS(4003), - [anon_sym_join] = ACTIONS(4003), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(4003), - [anon_sym_orderby] = ACTIONS(4003), - [anon_sym_ascending] = ACTIONS(4003), - [anon_sym_descending] = ACTIONS(4003), - [anon_sym_group] = ACTIONS(4003), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(4003), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3993), - [anon_sym_with] = ACTIONS(3999), - [sym_grit_metavariable] = ACTIONS(3988), + [anon_sym_select] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4010), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424184,6 +424206,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2328] = { + [sym__name] = STATE(2734), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2712), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2713), + [sym_ref_type] = STATE(2735), + [sym__scoped_base_type] = STATE(2736), + [sym_identifier] = STATE(2647), + [sym__reserved_identifier] = STATE(2678), [sym_preproc_region] = STATE(2328), [sym_preproc_endregion] = STATE(2328), [sym_preproc_line] = STATE(2328), @@ -424193,81 +424224,71 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [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_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [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(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [sym__identifier_token] = ACTIONS(3932), + [anon_sym_alias] = ACTIONS(3935), + [anon_sym_global] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3935), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3935), + [anon_sym_unmanaged] = ACTIONS(3935), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3935), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3935), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3935), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3935), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3935), + [anon_sym_into] = ACTIONS(3935), + [anon_sym_join] = ACTIONS(3935), + [anon_sym_on] = ACTIONS(3935), + [anon_sym_equals] = ACTIONS(3935), + [anon_sym_let] = ACTIONS(3935), + [anon_sym_orderby] = ACTIONS(3935), + [anon_sym_ascending] = ACTIONS(3935), + [anon_sym_descending] = ACTIONS(3935), + [anon_sym_group] = ACTIONS(3935), + [anon_sym_by] = ACTIONS(3935), + [anon_sym_select] = ACTIONS(3935), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3940), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424278,6 +424299,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(3694), }, [2329] = { [sym_preproc_region] = STATE(2329), @@ -424289,81 +424311,81 @@ 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(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_global] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3915), - [anon_sym_unmanaged] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3915), - [anon_sym_yield] = ACTIONS(3915), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3915), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3915), - [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(3915), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3912), + [sym__identifier_token] = ACTIONS(3913), + [anon_sym_alias] = ACTIONS(3913), + [anon_sym_global] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3913), + [anon_sym_unmanaged] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3913), + [anon_sym_into] = ACTIONS(3913), + [anon_sym_join] = ACTIONS(3913), + [anon_sym_on] = ACTIONS(3913), + [anon_sym_equals] = ACTIONS(3913), + [anon_sym_let] = ACTIONS(3913), + [anon_sym_orderby] = ACTIONS(3913), + [anon_sym_ascending] = ACTIONS(3913), + [anon_sym_descending] = ACTIONS(3913), + [anon_sym_group] = ACTIONS(3913), + [anon_sym_by] = ACTIONS(3913), + [anon_sym_select] = ACTIONS(3913), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3910), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424385,80 +424407,81 @@ 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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(3991), - [anon_sym_or] = ACTIONS(3991), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(3986), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4034), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), + [sym__identifier_token] = ACTIONS(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_return] = ACTIONS(4292), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_break] = ACTIONS(4294), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424469,7 +424492,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(4006), }, [2331] = { [sym_preproc_region] = STATE(2331), @@ -424484,61 +424506,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4008), [anon_sym_alias] = ACTIONS(4008), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), + [anon_sym_switch] = ACTIONS(4013), [anon_sym_when] = ACTIONS(4008), [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), [anon_sym_and] = ACTIONS(4008), [anon_sym_or] = ACTIONS(4008), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), [anon_sym_from] = ACTIONS(4008), [anon_sym_into] = ACTIONS(4008), [anon_sym_join] = ACTIONS(4008), @@ -424551,11 +424573,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4008), [anon_sym_by] = ACTIONS(4008), [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424577,81 +424599,81 @@ 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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_COLON] = ACTIONS(4034), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(3986), - [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(3986), - [anon_sym_or] = ACTIONS(3986), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(3986), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4034), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4008), + [anon_sym_or] = ACTIONS(4008), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [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(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424678,9 +424700,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_COLON] = ACTIONS(3988), + [anon_sym_COLON] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4006), [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(3997), [anon_sym_file] = ACTIONS(3986), [anon_sym_LT] = ACTIONS(3991), [anon_sym_GT] = ACTIONS(3991), @@ -424688,34 +424710,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(4003), - [sym_discard] = ACTIONS(3986), + [anon_sym_when] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(4003), - [anon_sym_or] = ACTIONS(4003), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), [anon_sym_PLUS_EQ] = ACTIONS(4006), [anon_sym_DASH_EQ] = ACTIONS(4006), [anon_sym_STAR_EQ] = ACTIONS(4006), @@ -424728,11 +424734,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(4037), [anon_sym_join] = ACTIONS(3986), [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), @@ -424758,8 +424779,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(4006), }, [2334] = { + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2334), [sym_preproc_endregion] = STATE(2334), [sym_preproc_line] = STATE(2334), @@ -424769,81 +424792,80 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COMMA] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4008), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4019), - [anon_sym_into] = ACTIONS(4019), - [anon_sym_join] = ACTIONS(4019), - [anon_sym_on] = ACTIONS(4008), - [anon_sym_equals] = ACTIONS(4008), - [anon_sym_let] = ACTIONS(4019), - [anon_sym_orderby] = ACTIONS(4019), - [anon_sym_ascending] = ACTIONS(4019), - [anon_sym_descending] = ACTIONS(4019), - [anon_sym_group] = ACTIONS(4019), - [anon_sym_by] = ACTIONS(4008), - [anon_sym_select] = ACTIONS(4019), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4014), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424865,81 +424887,81 @@ 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(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_break] = ACTIONS(4294), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3696), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_COMMA] = ACTIONS(3988), + [anon_sym_LPAREN] = ACTIONS(3993), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_where] = ACTIONS(4003), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3986), + [sym_discard] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), + [anon_sym_AMP_AMP] = ACTIONS(3993), + [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), + [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), + [anon_sym_from] = ACTIONS(4003), + [anon_sym_into] = ACTIONS(4003), + [anon_sym_join] = ACTIONS(4003), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(4003), + [anon_sym_orderby] = ACTIONS(4003), + [anon_sym_ascending] = ACTIONS(4003), + [anon_sym_descending] = ACTIONS(4003), + [anon_sym_group] = ACTIONS(4003), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(4003), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3993), + [anon_sym_with] = ACTIONS(3999), + [sym_grit_metavariable] = ACTIONS(3988), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424952,7 +424974,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2336] = { - [sym_type_argument_list] = STATE(2209), [sym_preproc_region] = STATE(2336), [sym_preproc_endregion] = STATE(2336), [sym_preproc_line] = STATE(2336), @@ -424962,80 +424983,81 @@ 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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(4296), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_return] = ACTIONS(4298), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_break] = ACTIONS(4300), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425057,81 +425079,80 @@ 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(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(4298), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_break] = ACTIONS(4300), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3696), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [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(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425142,8 +425163,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(4020), }, [2338] = { + [sym__variable_designation] = STATE(4215), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2338), [sym_preproc_endregion] = STATE(2338), [sym_preproc_line] = STATE(2338), @@ -425153,6 +425179,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2338), [sym_preproc_define] = STATE(2338), [sym_preproc_undef] = STATE(2338), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4302), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_COLON] = ACTIONS(4302), + [anon_sym_COMMA] = ACTIONS(4302), + [anon_sym_RBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_RPAREN] = ACTIONS(4302), + [anon_sym_RBRACE] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4302), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4304), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4302), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4302), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2339] = { + [sym_preproc_region] = STATE(2339), + [sym_preproc_endregion] = STATE(2339), + [sym_preproc_line] = STATE(2339), + [sym_preproc_pragma] = STATE(2339), + [sym_preproc_nullable] = STATE(2339), + [sym_preproc_error] = STATE(2339), + [sym_preproc_warning] = STATE(2339), + [sym_preproc_define] = STATE(2339), + [sym_preproc_undef] = STATE(2339), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -425168,31 +425286,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), [anon_sym_and] = ACTIONS(3991), [anon_sym_or] = ACTIONS(3991), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -425207,11 +425310,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(4037), + [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), @@ -425239,107 +425357,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(4006), }, - [2339] = { - [sym_preproc_region] = STATE(2339), - [sym_preproc_endregion] = STATE(2339), - [sym_preproc_line] = STATE(2339), - [sym_preproc_pragma] = STATE(2339), - [sym_preproc_nullable] = STATE(2339), - [sym_preproc_error] = STATE(2339), - [sym_preproc_warning] = STATE(2339), - [sym_preproc_define] = STATE(2339), - [sym_preproc_undef] = STATE(2339), - [sym__identifier_token] = ACTIONS(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COMMA] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4008), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4019), - [anon_sym_into] = ACTIONS(4008), - [anon_sym_join] = ACTIONS(4019), - [anon_sym_on] = ACTIONS(4008), - [anon_sym_equals] = ACTIONS(4008), - [anon_sym_let] = ACTIONS(4019), - [anon_sym_orderby] = ACTIONS(4019), - [anon_sym_ascending] = ACTIONS(4019), - [anon_sym_descending] = ACTIONS(4019), - [anon_sym_group] = ACTIONS(4019), - [anon_sym_by] = ACTIONS(4008), - [anon_sym_select] = ACTIONS(4019), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4014), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2340] = { - [sym__variable_designation] = STATE(4909), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), + [sym__variable_designation] = STATE(4136), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2340), [sym_preproc_endregion] = STATE(2340), [sym_preproc_line] = STATE(2340), @@ -425349,77 +425371,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2340), [sym_preproc_define] = STATE(2340), [sym_preproc_undef] = STATE(2340), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4302), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_COLON] = ACTIONS(4302), - [anon_sym_COMMA] = ACTIONS(4302), - [anon_sym_RBRACK] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_RPAREN] = ACTIONS(4302), - [anon_sym_RBRACE] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_in] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4302), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4304), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4220), - [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(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4306), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_COLON] = ACTIONS(4306), + [anon_sym_COMMA] = ACTIONS(4306), + [anon_sym_RBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_RPAREN] = ACTIONS(4306), + [anon_sym_RBRACE] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_in] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4306), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4308), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4306), + [aux_sym_preproc_else_token1] = ACTIONS(4306), + [aux_sym_preproc_elif_token1] = ACTIONS(4306), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425432,6 +425454,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2341] = { + [sym__variable_designation] = STATE(4143), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2341), [sym_preproc_endregion] = STATE(2341), [sym_preproc_line] = STATE(2341), @@ -425441,80 +425467,77 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_when] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [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(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4254), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COLON] = ACTIONS(4254), + [anon_sym_COMMA] = ACTIONS(4254), + [anon_sym_RBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_RPAREN] = ACTIONS(4254), + [anon_sym_RBRACE] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_in] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4254), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4254), + [aux_sym_preproc_else_token1] = ACTIONS(4254), + [aux_sym_preproc_elif_token1] = ACTIONS(4254), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425525,9 +425548,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(4010), }, [2342] = { + [sym__variable_designation] = STATE(4246), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2342), [sym_preproc_endregion] = STATE(2342), [sym_preproc_line] = STATE(2342), @@ -425537,6 +425563,194 @@ 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(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_RPAREN] = ACTIONS(4250), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_in] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4250), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4252), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4250), + [aux_sym_preproc_else_token1] = ACTIONS(4250), + [aux_sym_preproc_elif_token1] = ACTIONS(4250), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2343] = { + [sym_preproc_region] = STATE(2343), + [sym_preproc_endregion] = STATE(2343), + [sym_preproc_line] = STATE(2343), + [sym_preproc_pragma] = STATE(2343), + [sym_preproc_nullable] = STATE(2343), + [sym_preproc_error] = STATE(2343), + [sym_preproc_warning] = STATE(2343), + [sym_preproc_define] = STATE(2343), + [sym_preproc_undef] = STATE(2343), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(3986), + [sym_discard] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(3986), + [anon_sym_or] = ACTIONS(3986), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(3986), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_ascending] = ACTIONS(3986), + [anon_sym_descending] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(4034), + [anon_sym_with] = ACTIONS(3991), + [sym_grit_metavariable] = ACTIONS(3997), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2344] = { + [sym_preproc_region] = STATE(2344), + [sym_preproc_endregion] = STATE(2344), + [sym_preproc_line] = STATE(2344), + [sym_preproc_pragma] = STATE(2344), + [sym_preproc_nullable] = STATE(2344), + [sym_preproc_error] = STATE(2344), + [sym_preproc_warning] = STATE(2344), + [sym_preproc_define] = STATE(2344), + [sym_preproc_undef] = STATE(2344), [sym__identifier_token] = ACTIONS(3187), [anon_sym_alias] = ACTIONS(3187), [anon_sym_global] = ACTIONS(3187), @@ -425551,35 +425765,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3187), [anon_sym_notnull] = ACTIONS(3187), [anon_sym_unmanaged] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), [anon_sym_DOT] = ACTIONS(3187), [anon_sym_scoped] = ACTIONS(3187), [anon_sym_EQ_GT] = ACTIONS(3189), [anon_sym_COLON_COLON] = ACTIONS(3189), [anon_sym_var] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3187), [anon_sym_while] = ACTIONS(3183), [anon_sym_yield] = ACTIONS(3187), [anon_sym_switch] = ACTIONS(3187), [anon_sym_when] = ACTIONS(3187), [anon_sym_else] = ACTIONS(3183), [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), [anon_sym_PLUS_EQ] = ACTIONS(3189), [anon_sym_DASH_EQ] = ACTIONS(3189), [anon_sym_STAR_EQ] = ACTIONS(3189), @@ -425592,9 +425791,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3189), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), [anon_sym_AMP_AMP] = ACTIONS(3189), [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [sym_op_left_shift] = ACTIONS(3187), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3187), [sym_op_coalescing] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), [anon_sym_from] = ACTIONS(3187), [anon_sym_into] = ACTIONS(3187), [anon_sym_join] = ACTIONS(3187), @@ -425623,203 +425837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2343] = { - [sym__variable_designation] = STATE(4893), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2343), - [sym_preproc_endregion] = STATE(2343), - [sym_preproc_line] = STATE(2343), - [sym_preproc_pragma] = STATE(2343), - [sym_preproc_nullable] = STATE(2343), - [sym_preproc_error] = STATE(2343), - [sym_preproc_warning] = STATE(2343), - [sym_preproc_define] = STATE(2343), - [sym_preproc_undef] = STATE(2343), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4306), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_COLON] = ACTIONS(4306), - [anon_sym_COMMA] = ACTIONS(4306), - [anon_sym_RBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_RPAREN] = ACTIONS(4306), - [anon_sym_RBRACE] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_in] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4306), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4308), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4306), - [aux_sym_preproc_else_token1] = ACTIONS(4306), - [aux_sym_preproc_elif_token1] = ACTIONS(4306), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2344] = { - [sym__variable_designation] = STATE(4857), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2344), - [sym_preproc_endregion] = STATE(2344), - [sym_preproc_line] = STATE(2344), - [sym_preproc_pragma] = STATE(2344), - [sym_preproc_nullable] = STATE(2344), - [sym_preproc_error] = STATE(2344), - [sym_preproc_warning] = STATE(2344), - [sym_preproc_define] = STATE(2344), - [sym_preproc_undef] = STATE(2344), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COLON] = ACTIONS(4242), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_RBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4242), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4244), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4242), - [aux_sym_preproc_else_token1] = ACTIONS(4242), - [aux_sym_preproc_elif_token1] = ACTIONS(4242), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2345] = { - [sym__variable_designation] = STATE(4886), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2345), [sym_preproc_endregion] = STATE(2345), [sym_preproc_line] = STATE(2345), @@ -425829,77 +425847,81 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_RBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_in] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4250), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4252), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4250), - [aux_sym_preproc_else_token1] = ACTIONS(4250), - [aux_sym_preproc_elif_token1] = ACTIONS(4250), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COMMA] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_where] = ACTIONS(4017), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), + [anon_sym_from] = ACTIONS(4017), + [anon_sym_into] = ACTIONS(4008), + [anon_sym_join] = ACTIONS(4017), + [anon_sym_on] = ACTIONS(4008), + [anon_sym_equals] = ACTIONS(4008), + [anon_sym_let] = ACTIONS(4017), + [anon_sym_orderby] = ACTIONS(4017), + [anon_sym_ascending] = ACTIONS(4017), + [anon_sym_descending] = ACTIONS(4017), + [anon_sym_group] = ACTIONS(4017), + [anon_sym_by] = ACTIONS(4008), + [anon_sym_select] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4010), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425921,12 +425943,108 @@ 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(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4008), + [anon_sym_into] = ACTIONS(4017), + [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(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4020), + }, + [2347] = { + [sym_preproc_region] = STATE(2347), + [sym_preproc_endregion] = STATE(2347), + [sym_preproc_line] = STATE(2347), + [sym_preproc_pragma] = STATE(2347), + [sym_preproc_nullable] = STATE(2347), + [sym_preproc_error] = STATE(2347), + [sym_preproc_warning] = STATE(2347), + [sym_preproc_define] = STATE(2347), + [sym_preproc_undef] = STATE(2347), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_COLON] = ACTIONS(4034), [anon_sym_LPAREN] = ACTIONS(4034), [anon_sym_LBRACE] = ACTIONS(3997), [anon_sym_file] = ACTIONS(3986), @@ -425936,32 +426054,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), [anon_sym_and] = ACTIONS(3986), [anon_sym_or] = ACTIONS(3986), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -425976,9 +426079,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), @@ -426007,102 +426125,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2347] = { - [sym__name] = STATE(2882), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(3005), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2821), - [sym_ref_type] = STATE(2881), - [sym__scoped_base_type] = STATE(2880), - [sym_identifier] = STATE(2700), - [sym__reserved_identifier] = STATE(2781), - [sym_preproc_region] = STATE(2347), - [sym_preproc_endregion] = STATE(2347), - [sym_preproc_line] = STATE(2347), - [sym_preproc_pragma] = STATE(2347), - [sym_preproc_nullable] = STATE(2347), - [sym_preproc_error] = STATE(2347), - [sym_preproc_warning] = STATE(2347), - [sym_preproc_define] = STATE(2347), - [sym_preproc_undef] = STATE(2347), - [sym__identifier_token] = ACTIONS(3940), - [anon_sym_alias] = ACTIONS(3943), - [anon_sym_global] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3946), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3943), - [anon_sym_unmanaged] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3943), - [anon_sym_yield] = ACTIONS(3943), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3943), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3943), - [anon_sym_into] = ACTIONS(3943), - [anon_sym_join] = ACTIONS(3943), - [anon_sym_on] = ACTIONS(3943), - [anon_sym_equals] = ACTIONS(3943), - [anon_sym_let] = ACTIONS(3943), - [anon_sym_orderby] = ACTIONS(3943), - [anon_sym_ascending] = ACTIONS(3943), - [anon_sym_descending] = ACTIONS(3943), - [anon_sym_group] = ACTIONS(3943), - [anon_sym_by] = ACTIONS(3943), - [anon_sym_select] = ACTIONS(3943), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = 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(3696), - }, [2348] = { [sym_preproc_region] = STATE(2348), [sym_preproc_endregion] = STATE(2348), @@ -426128,32 +426150,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3999), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), [anon_sym_DOT] = ACTIONS(3999), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3999), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -426168,9 +426175,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), [anon_sym_AMP_AMP] = ACTIONS(3993), [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), [anon_sym_from] = ACTIONS(4003), [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(4003), @@ -426209,204 +426231,14 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_when] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4019), - [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(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4010), - }, - [2350] = { - [sym_preproc_region] = STATE(2350), - [sym_preproc_endregion] = STATE(2350), - [sym_preproc_line] = STATE(2350), - [sym_preproc_pragma] = STATE(2350), - [sym_preproc_nullable] = STATE(2350), - [sym_preproc_error] = STATE(2350), - [sym_preproc_warning] = STATE(2350), - [sym_preproc_define] = STATE(2350), - [sym_preproc_undef] = STATE(2350), - [sym__identifier_token] = ACTIONS(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4008), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4019), - [anon_sym_into] = ACTIONS(4019), - [anon_sym_join] = ACTIONS(4019), - [anon_sym_on] = ACTIONS(4008), - [anon_sym_equals] = ACTIONS(4008), - [anon_sym_let] = ACTIONS(4019), - [anon_sym_orderby] = ACTIONS(4019), - [anon_sym_ascending] = ACTIONS(4008), - [anon_sym_descending] = ACTIONS(4008), - [anon_sym_group] = ACTIONS(4019), - [anon_sym_by] = ACTIONS(4008), - [anon_sym_select] = ACTIONS(4019), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2351] = { - [sym_preproc_region] = STATE(2351), - [sym_preproc_endregion] = STATE(2351), - [sym_preproc_line] = STATE(2351), - [sym_preproc_pragma] = STATE(2351), - [sym_preproc_nullable] = STATE(2351), - [sym_preproc_error] = STATE(2351), - [sym_preproc_warning] = STATE(2351), - [sym_preproc_define] = STATE(2351), - [sym_preproc_undef] = STATE(2351), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_COLON] = ACTIONS(4006), + [anon_sym_COLON] = ACTIONS(3988), [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_LBRACE] = ACTIONS(3997), [anon_sym_file] = ACTIONS(3986), [anon_sym_LT] = ACTIONS(3991), [anon_sym_GT] = ACTIONS(3991), @@ -426414,34 +426246,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_EQ_GT] = ACTIONS(4006), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(4037), + [anon_sym_when] = ACTIONS(4003), + [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(3991), - [anon_sym_or] = ACTIONS(3991), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), [anon_sym_DASH_EQ] = ACTIONS(4006), [anon_sym_STAR_EQ] = ACTIONS(4006), @@ -426454,9 +426271,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), @@ -426485,206 +426317,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2352] = { - [sym_preproc_region] = STATE(2352), - [sym_preproc_endregion] = STATE(2352), - [sym_preproc_line] = STATE(2352), - [sym_preproc_pragma] = STATE(2352), - [sym_preproc_nullable] = STATE(2352), - [sym_preproc_error] = STATE(2352), - [sym_preproc_warning] = STATE(2352), - [sym_preproc_define] = STATE(2352), - [sym_preproc_undef] = STATE(2352), - [sym__identifier_token] = ACTIONS(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4008), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4019), - [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(4019), - [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2353] = { - [sym__variable_designation] = STATE(4935), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2353), - [sym_preproc_endregion] = STATE(2353), - [sym_preproc_line] = STATE(2353), - [sym_preproc_pragma] = STATE(2353), - [sym_preproc_nullable] = STATE(2353), - [sym_preproc_error] = STATE(2353), - [sym_preproc_warning] = STATE(2353), - [sym_preproc_define] = STATE(2353), - [sym_preproc_undef] = STATE(2353), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4250), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_RBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4250), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4250), - [aux_sym_preproc_else_token1] = ACTIONS(4250), - [aux_sym_preproc_elif_token1] = ACTIONS(4250), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2354] = { - [sym_preproc_region] = STATE(2354), - [sym_preproc_endregion] = STATE(2354), - [sym_preproc_line] = STATE(2354), - [sym_preproc_pragma] = STATE(2354), - [sym_preproc_nullable] = STATE(2354), - [sym_preproc_error] = STATE(2354), - [sym_preproc_warning] = STATE(2354), - [sym_preproc_define] = STATE(2354), - [sym_preproc_undef] = STATE(2354), + [2350] = { + [sym_preproc_region] = STATE(2350), + [sym_preproc_endregion] = STATE(2350), + [sym_preproc_line] = STATE(2350), + [sym_preproc_pragma] = STATE(2350), + [sym_preproc_nullable] = STATE(2350), + [sym_preproc_error] = STATE(2350), + [sym_preproc_warning] = STATE(2350), + [sym_preproc_define] = STATE(2350), + [sym_preproc_undef] = STATE(2350), [sym__identifier_token] = ACTIONS(4310), [anon_sym_alias] = ACTIONS(4310), [anon_sym_SEMI] = ACTIONS(4312), @@ -426706,39 +426348,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(4310), [anon_sym_unmanaged] = ACTIONS(4310), [anon_sym_operator] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(4310), - [anon_sym_PLUS_PLUS] = ACTIONS(4312), - [anon_sym_DASH_DASH] = ACTIONS(4312), - [anon_sym_PLUS] = ACTIONS(4310), - [anon_sym_DASH] = ACTIONS(4310), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_SLASH] = ACTIONS(4310), - [anon_sym_PERCENT] = ACTIONS(4312), - [anon_sym_CARET] = ACTIONS(4312), - [anon_sym_PIPE] = ACTIONS(4310), - [anon_sym_AMP] = ACTIONS(4310), - [anon_sym_LT_LT] = ACTIONS(4312), - [anon_sym_GT_GT] = ACTIONS(4310), - [anon_sym_GT_GT_GT] = ACTIONS(4312), - [anon_sym_EQ_EQ] = ACTIONS(4312), - [anon_sym_BANG_EQ] = ACTIONS(4312), - [anon_sym_GT_EQ] = ACTIONS(4312), - [anon_sym_LT_EQ] = ACTIONS(4312), [anon_sym_this] = ACTIONS(4310), [anon_sym_DOT] = ACTIONS(4310), [anon_sym_scoped] = ACTIONS(4310), [anon_sym_EQ_GT] = ACTIONS(4312), [anon_sym_var] = ACTIONS(4310), + [anon_sym_STAR] = ACTIONS(4312), [anon_sym_yield] = ACTIONS(4310), [anon_sym_switch] = ACTIONS(4310), [anon_sym_when] = ACTIONS(4310), [sym_discard] = ACTIONS(4310), [anon_sym_DOT_DOT] = ACTIONS(4312), + [anon_sym_LT_EQ] = ACTIONS(4312), + [anon_sym_GT_EQ] = ACTIONS(4312), [anon_sym_and] = ACTIONS(4310), [anon_sym_or] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ] = ACTIONS(4312), [anon_sym_AMP_AMP] = ACTIONS(4312), [anon_sym_PIPE_PIPE] = ACTIONS(4312), + [anon_sym_AMP] = ACTIONS(4310), + [sym_op_bitwise_or] = ACTIONS(4310), + [anon_sym_CARET] = ACTIONS(4312), + [sym_op_left_shift] = ACTIONS(4312), + [sym_op_right_shift] = ACTIONS(4310), + [sym_op_unsigned_right_shift] = ACTIONS(4312), + [anon_sym_PLUS] = ACTIONS(4310), + [anon_sym_DASH] = ACTIONS(4310), + [sym_op_divide] = ACTIONS(4310), + [sym_op_modulo] = ACTIONS(4312), [sym_op_coalescing] = ACTIONS(4312), + [anon_sym_BANG] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4312), + [anon_sym_DASH_DASH] = ACTIONS(4312), [anon_sym_from] = ACTIONS(4310), [anon_sym_into] = ACTIONS(4310), [anon_sym_join] = ACTIONS(4310), @@ -426770,111 +426412,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2355] = { - [sym_preproc_region] = STATE(2355), - [sym_preproc_endregion] = STATE(2355), - [sym_preproc_line] = STATE(2355), - [sym_preproc_pragma] = STATE(2355), - [sym_preproc_nullable] = STATE(2355), - [sym_preproc_error] = STATE(2355), - [sym_preproc_warning] = STATE(2355), - [sym_preproc_define] = STATE(2355), - [sym_preproc_undef] = STATE(2355), - [sym__identifier_token] = ACTIONS(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4008), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4008), - [anon_sym_join] = ACTIONS(4008), - [anon_sym_on] = ACTIONS(4019), - [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(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2356] = { - [sym_preproc_region] = STATE(2356), - [sym_preproc_endregion] = STATE(2356), - [sym_preproc_line] = STATE(2356), - [sym_preproc_pragma] = STATE(2356), - [sym_preproc_nullable] = STATE(2356), - [sym_preproc_error] = STATE(2356), - [sym_preproc_warning] = STATE(2356), - [sym_preproc_define] = STATE(2356), - [sym_preproc_undef] = STATE(2356), + [2351] = { + [sym_preproc_region] = STATE(2351), + [sym_preproc_endregion] = STATE(2351), + [sym_preproc_line] = STATE(2351), + [sym_preproc_pragma] = STATE(2351), + [sym_preproc_nullable] = STATE(2351), + [sym_preproc_error] = STATE(2351), + [sym_preproc_warning] = STATE(2351), + [sym_preproc_define] = STATE(2351), + [sym_preproc_undef] = STATE(2351), [sym__identifier_token] = ACTIONS(4314), [anon_sym_alias] = ACTIONS(4314), [anon_sym_SEMI] = ACTIONS(4316), @@ -426896,39 +426443,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(4314), [anon_sym_unmanaged] = ACTIONS(4314), [anon_sym_operator] = ACTIONS(4314), - [anon_sym_BANG] = ACTIONS(4314), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_STAR] = ACTIONS(4316), - [anon_sym_SLASH] = ACTIONS(4314), - [anon_sym_PERCENT] = ACTIONS(4316), - [anon_sym_CARET] = ACTIONS(4316), - [anon_sym_PIPE] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4314), - [anon_sym_LT_LT] = ACTIONS(4316), - [anon_sym_GT_GT] = ACTIONS(4314), - [anon_sym_GT_GT_GT] = ACTIONS(4316), - [anon_sym_EQ_EQ] = ACTIONS(4316), - [anon_sym_BANG_EQ] = ACTIONS(4316), - [anon_sym_GT_EQ] = ACTIONS(4316), - [anon_sym_LT_EQ] = ACTIONS(4316), [anon_sym_this] = ACTIONS(4314), [anon_sym_DOT] = ACTIONS(4314), [anon_sym_scoped] = ACTIONS(4314), [anon_sym_EQ_GT] = ACTIONS(4316), [anon_sym_var] = ACTIONS(4314), + [anon_sym_STAR] = ACTIONS(4316), [anon_sym_yield] = ACTIONS(4314), [anon_sym_switch] = ACTIONS(4314), [anon_sym_when] = ACTIONS(4314), [sym_discard] = ACTIONS(4314), [anon_sym_DOT_DOT] = ACTIONS(4316), + [anon_sym_LT_EQ] = ACTIONS(4316), + [anon_sym_GT_EQ] = ACTIONS(4316), [anon_sym_and] = ACTIONS(4314), [anon_sym_or] = ACTIONS(4314), + [anon_sym_EQ_EQ] = ACTIONS(4316), + [anon_sym_BANG_EQ] = ACTIONS(4316), [anon_sym_AMP_AMP] = ACTIONS(4316), [anon_sym_PIPE_PIPE] = ACTIONS(4316), + [anon_sym_AMP] = ACTIONS(4314), + [sym_op_bitwise_or] = ACTIONS(4314), + [anon_sym_CARET] = ACTIONS(4316), + [sym_op_left_shift] = ACTIONS(4316), + [sym_op_right_shift] = ACTIONS(4314), + [sym_op_unsigned_right_shift] = ACTIONS(4316), + [anon_sym_PLUS] = ACTIONS(4314), + [anon_sym_DASH] = ACTIONS(4314), + [sym_op_divide] = ACTIONS(4314), + [sym_op_modulo] = ACTIONS(4316), [sym_op_coalescing] = ACTIONS(4316), + [anon_sym_BANG] = ACTIONS(4314), + [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4316), [anon_sym_from] = ACTIONS(4314), [anon_sym_into] = ACTIONS(4314), [anon_sym_join] = ACTIONS(4314), @@ -426960,16 +426507,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2357] = { - [sym_preproc_region] = STATE(2357), - [sym_preproc_endregion] = STATE(2357), - [sym_preproc_line] = STATE(2357), - [sym_preproc_pragma] = STATE(2357), - [sym_preproc_nullable] = STATE(2357), - [sym_preproc_error] = STATE(2357), - [sym_preproc_warning] = STATE(2357), - [sym_preproc_define] = STATE(2357), - [sym_preproc_undef] = STATE(2357), + [2352] = { + [sym_preproc_region] = STATE(2352), + [sym_preproc_endregion] = STATE(2352), + [sym_preproc_line] = STATE(2352), + [sym_preproc_pragma] = STATE(2352), + [sym_preproc_nullable] = STATE(2352), + [sym_preproc_error] = STATE(2352), + [sym_preproc_warning] = STATE(2352), + [sym_preproc_define] = STATE(2352), + [sym_preproc_undef] = STATE(2352), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -426984,32 +426531,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3999), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), [anon_sym_DOT] = ACTIONS(3999), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3999), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -427024,20 +426556,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), [anon_sym_AMP_AMP] = ACTIONS(3993), [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(4003), [anon_sym_let] = ACTIONS(3986), [anon_sym_orderby] = ACTIONS(3986), [anon_sym_ascending] = ACTIONS(3986), [anon_sym_descending] = ACTIONS(3986), [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(4003), + [anon_sym_by] = ACTIONS(3986), [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3999), [anon_sym_is] = ACTIONS(3999), @@ -427055,78 +426602,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2358] = { - [sym_preproc_region] = STATE(2358), - [sym_preproc_endregion] = STATE(2358), - [sym_preproc_line] = STATE(2358), - [sym_preproc_pragma] = STATE(2358), - [sym_preproc_nullable] = STATE(2358), - [sym_preproc_error] = STATE(2358), - [sym_preproc_warning] = STATE(2358), - [sym_preproc_define] = STATE(2358), - [sym_preproc_undef] = STATE(2358), + [2353] = { + [sym_preproc_region] = STATE(2353), + [sym_preproc_endregion] = STATE(2353), + [sym_preproc_line] = STATE(2353), + [sym_preproc_pragma] = STATE(2353), + [sym_preproc_nullable] = STATE(2353), + [sym_preproc_error] = STATE(2353), + [sym_preproc_warning] = STATE(2353), + [sym_preproc_define] = STATE(2353), + [sym_preproc_undef] = STATE(2353), [sym__identifier_token] = ACTIONS(4008), [anon_sym_alias] = ACTIONS(4008), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), + [anon_sym_switch] = ACTIONS(4017), [anon_sym_when] = ACTIONS(4008), [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4008), + [anon_sym_into] = ACTIONS(4017), [anon_sym_join] = ACTIONS(4008), [anon_sym_on] = ACTIONS(4008), - [anon_sym_equals] = ACTIONS(4019), + [anon_sym_equals] = ACTIONS(4017), [anon_sym_let] = ACTIONS(4008), [anon_sym_orderby] = ACTIONS(4008), [anon_sym_ascending] = ACTIONS(4008), @@ -427134,11 +426681,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4008), [anon_sym_by] = ACTIONS(4008), [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427150,78 +426697,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2359] = { - [sym_preproc_region] = STATE(2359), - [sym_preproc_endregion] = STATE(2359), - [sym_preproc_line] = STATE(2359), - [sym_preproc_pragma] = STATE(2359), - [sym_preproc_nullable] = STATE(2359), - [sym_preproc_error] = STATE(2359), - [sym_preproc_warning] = STATE(2359), - [sym_preproc_define] = STATE(2359), - [sym_preproc_undef] = STATE(2359), + [2354] = { + [sym_preproc_region] = STATE(2354), + [sym_preproc_endregion] = STATE(2354), + [sym_preproc_line] = STATE(2354), + [sym_preproc_pragma] = STATE(2354), + [sym_preproc_nullable] = STATE(2354), + [sym_preproc_error] = STATE(2354), + [sym_preproc_warning] = STATE(2354), + [sym_preproc_define] = STATE(2354), + [sym_preproc_undef] = STATE(2354), [sym__identifier_token] = ACTIONS(4008), [anon_sym_alias] = ACTIONS(4008), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), + [anon_sym_switch] = ACTIONS(4017), [anon_sym_when] = ACTIONS(4008), [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4019), + [anon_sym_into] = ACTIONS(4017), [anon_sym_join] = ACTIONS(4008), - [anon_sym_on] = ACTIONS(4008), - [anon_sym_equals] = ACTIONS(4019), + [anon_sym_on] = ACTIONS(4017), + [anon_sym_equals] = ACTIONS(4008), [anon_sym_let] = ACTIONS(4008), [anon_sym_orderby] = ACTIONS(4008), [anon_sym_ascending] = ACTIONS(4008), @@ -427229,11 +426776,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4008), [anon_sym_by] = ACTIONS(4008), [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427245,16 +426792,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2360] = { - [sym_preproc_region] = STATE(2360), - [sym_preproc_endregion] = STATE(2360), - [sym_preproc_line] = STATE(2360), - [sym_preproc_pragma] = STATE(2360), - [sym_preproc_nullable] = STATE(2360), - [sym_preproc_error] = STATE(2360), - [sym_preproc_warning] = STATE(2360), - [sym_preproc_define] = STATE(2360), - [sym_preproc_undef] = STATE(2360), + [2355] = { + [sym_preproc_region] = STATE(2355), + [sym_preproc_endregion] = STATE(2355), + [sym_preproc_line] = STATE(2355), + [sym_preproc_pragma] = STATE(2355), + [sym_preproc_nullable] = STATE(2355), + [sym_preproc_error] = STATE(2355), + [sym_preproc_warning] = STATE(2355), + [sym_preproc_define] = STATE(2355), + [sym_preproc_undef] = STATE(2355), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -427265,36 +426812,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_file] = ACTIONS(3986), [anon_sym_LT] = ACTIONS(3999), [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(3986), [anon_sym_QMARK] = ACTIONS(3999), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), [anon_sym_DOT] = ACTIONS(3999), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3999), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -427309,21 +426841,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), [anon_sym_AMP_AMP] = ACTIONS(3993), [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), [sym_op_coalescing] = ACTIONS(3999), - [anon_sym_from] = ACTIONS(4003), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), + [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(3986), - [anon_sym_join] = ACTIONS(4003), + [anon_sym_join] = ACTIONS(3986), [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(4003), - [anon_sym_orderby] = ACTIONS(4003), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), [anon_sym_ascending] = ACTIONS(3986), [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(4003), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(4003), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(4003), + [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3999), [anon_sym_is] = ACTIONS(3999), [anon_sym_DASH_GT] = ACTIONS(3993), @@ -427340,90 +426887,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2361] = { - [sym_preproc_region] = STATE(2361), - [sym_preproc_endregion] = STATE(2361), - [sym_preproc_line] = STATE(2361), - [sym_preproc_pragma] = STATE(2361), - [sym_preproc_nullable] = STATE(2361), - [sym_preproc_error] = STATE(2361), - [sym_preproc_warning] = STATE(2361), - [sym_preproc_define] = STATE(2361), - [sym_preproc_undef] = STATE(2361), - [sym__identifier_token] = ACTIONS(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_EQ_GT] = ACTIONS(4006), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(4037), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(3991), - [anon_sym_or] = ACTIONS(3991), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(4037), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4034), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), + [2356] = { + [sym_preproc_region] = STATE(2356), + [sym_preproc_endregion] = STATE(2356), + [sym_preproc_line] = STATE(2356), + [sym_preproc_pragma] = STATE(2356), + [sym_preproc_nullable] = STATE(2356), + [sym_preproc_error] = STATE(2356), + [sym_preproc_warning] = STATE(2356), + [sym_preproc_define] = STATE(2356), + [sym_preproc_undef] = STATE(2356), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_where] = ACTIONS(4017), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), + [anon_sym_from] = ACTIONS(4017), + [anon_sym_into] = ACTIONS(4008), + [anon_sym_join] = ACTIONS(4017), + [anon_sym_on] = ACTIONS(4008), + [anon_sym_equals] = ACTIONS(4008), + [anon_sym_let] = ACTIONS(4017), + [anon_sym_orderby] = ACTIONS(4017), + [anon_sym_ascending] = ACTIONS(4008), + [anon_sym_descending] = ACTIONS(4008), + [anon_sym_group] = ACTIONS(4017), + [anon_sym_by] = ACTIONS(4008), + [anon_sym_select] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427435,72 +426982,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2362] = { - [sym__name] = STATE(5587), - [sym_alias_qualified_name] = STATE(5609), - [sym__simple_name] = STATE(5609), - [sym_qualified_name] = STATE(5609), - [sym_generic_name] = STATE(5595), - [sym_ref_type] = STATE(5583), - [sym__scoped_base_type] = STATE(5584), - [sym_identifier] = STATE(5549), - [sym__reserved_identifier] = STATE(5566), - [sym_preproc_region] = STATE(2362), - [sym_preproc_endregion] = STATE(2362), - [sym_preproc_line] = STATE(2362), - [sym_preproc_pragma] = STATE(2362), - [sym_preproc_nullable] = STATE(2362), - [sym_preproc_error] = STATE(2362), - [sym_preproc_warning] = STATE(2362), - [sym_preproc_define] = STATE(2362), - [sym_preproc_undef] = STATE(2362), + [2357] = { + [sym__name] = STATE(5631), + [sym_alias_qualified_name] = STATE(5591), + [sym__simple_name] = STATE(5591), + [sym_qualified_name] = STATE(5591), + [sym_generic_name] = STATE(5632), + [sym_ref_type] = STATE(5630), + [sym__scoped_base_type] = STATE(5588), + [sym_identifier] = STATE(5537), + [sym__reserved_identifier] = STATE(5554), + [sym_preproc_region] = STATE(2357), + [sym_preproc_endregion] = STATE(2357), + [sym_preproc_line] = STATE(2357), + [sym_preproc_pragma] = STATE(2357), + [sym_preproc_nullable] = STATE(2357), + [sym_preproc_error] = STATE(2357), + [sym_preproc_warning] = STATE(2357), + [sym_preproc_define] = STATE(2357), + [sym_preproc_undef] = STATE(2357), [sym__identifier_token] = ACTIONS(4318), [anon_sym_alias] = ACTIONS(4320), [anon_sym_global] = ACTIONS(4320), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), [anon_sym_ref] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_LBRACE] = ACTIONS(3694), [anon_sym_file] = ACTIONS(4320), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(4320), - [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(4320), [anon_sym_unmanaged] = ACTIONS(4320), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(4320), - [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), [anon_sym_var] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(3694), [anon_sym_yield] = ACTIONS(4320), - [anon_sym_switch] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(4320), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), [anon_sym_from] = ACTIONS(4320), [anon_sym_into] = ACTIONS(4324), [anon_sym_join] = ACTIONS(4320), @@ -427513,10 +427060,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4320), [anon_sym_by] = ACTIONS(4320), [anon_sym_select] = ACTIONS(4320), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), [sym_grit_metavariable] = ACTIONS(4327), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -427528,18 +427075,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3696), + [sym_interpolation_close_brace] = ACTIONS(3694), }, - [2363] = { - [sym_preproc_region] = STATE(2363), - [sym_preproc_endregion] = STATE(2363), - [sym_preproc_line] = STATE(2363), - [sym_preproc_pragma] = STATE(2363), - [sym_preproc_nullable] = STATE(2363), - [sym_preproc_error] = STATE(2363), - [sym_preproc_warning] = STATE(2363), - [sym_preproc_define] = STATE(2363), - [sym_preproc_undef] = STATE(2363), + [2358] = { + [sym_preproc_region] = STATE(2358), + [sym_preproc_endregion] = STATE(2358), + [sym_preproc_line] = STATE(2358), + [sym_preproc_pragma] = STATE(2358), + [sym_preproc_nullable] = STATE(2358), + [sym_preproc_error] = STATE(2358), + [sym_preproc_warning] = STATE(2358), + [sym_preproc_define] = STATE(2358), + [sym_preproc_undef] = STATE(2358), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -427554,32 +427101,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3999), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), [anon_sym_DOT] = ACTIONS(3999), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3999), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -427594,20 +427126,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), [anon_sym_AMP_AMP] = ACTIONS(3993), [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(4003), [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(4003), + [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), [anon_sym_let] = ACTIONS(3986), [anon_sym_orderby] = ACTIONS(3986), [anon_sym_ascending] = ACTIONS(3986), [anon_sym_descending] = ACTIONS(3986), [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(4003), [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3999), [anon_sym_is] = ACTIONS(3999), @@ -427625,111 +427172,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2364] = { - [sym_preproc_region] = STATE(2364), - [sym_preproc_endregion] = STATE(2364), - [sym_preproc_line] = STATE(2364), - [sym_preproc_pragma] = STATE(2364), - [sym_preproc_nullable] = STATE(2364), - [sym_preproc_error] = STATE(2364), - [sym_preproc_warning] = STATE(2364), - [sym_preproc_define] = STATE(2364), - [sym_preproc_undef] = STATE(2364), - [sym__identifier_token] = ACTIONS(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4008), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), - [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(4019), - [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2365] = { - [sym_preproc_region] = STATE(2365), - [sym_preproc_endregion] = STATE(2365), - [sym_preproc_line] = STATE(2365), - [sym_preproc_pragma] = STATE(2365), - [sym_preproc_nullable] = STATE(2365), - [sym_preproc_error] = STATE(2365), - [sym_preproc_warning] = STATE(2365), - [sym_preproc_define] = STATE(2365), - [sym_preproc_undef] = STATE(2365), + [2359] = { + [sym_preproc_region] = STATE(2359), + [sym_preproc_endregion] = STATE(2359), + [sym_preproc_line] = STATE(2359), + [sym_preproc_pragma] = STATE(2359), + [sym_preproc_nullable] = STATE(2359), + [sym_preproc_error] = STATE(2359), + [sym_preproc_warning] = STATE(2359), + [sym_preproc_define] = STATE(2359), + [sym_preproc_undef] = STATE(2359), [sym__identifier_token] = ACTIONS(4329), [anon_sym_alias] = ACTIONS(4329), [anon_sym_SEMI] = ACTIONS(4331), @@ -427751,39 +427203,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(4329), [anon_sym_unmanaged] = ACTIONS(4329), [anon_sym_operator] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), [anon_sym_this] = ACTIONS(4329), [anon_sym_DOT] = ACTIONS(4329), [anon_sym_scoped] = ACTIONS(4329), [anon_sym_EQ_GT] = ACTIONS(4331), [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4331), [anon_sym_yield] = ACTIONS(4329), [anon_sym_switch] = ACTIONS(4329), [anon_sym_when] = ACTIONS(4329), [sym_discard] = ACTIONS(4329), [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), [anon_sym_and] = ACTIONS(4329), [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), [anon_sym_AMP_AMP] = ACTIONS(4331), [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), [anon_sym_from] = ACTIONS(4329), [anon_sym_into] = ACTIONS(4329), [anon_sym_join] = ACTIONS(4329), @@ -427815,58 +427267,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2366] = { - [sym_preproc_region] = STATE(2366), - [sym_preproc_endregion] = STATE(2366), - [sym_preproc_line] = STATE(2366), - [sym_preproc_pragma] = STATE(2366), - [sym_preproc_nullable] = STATE(2366), - [sym_preproc_error] = STATE(2366), - [sym_preproc_warning] = STATE(2366), - [sym_preproc_define] = STATE(2366), - [sym_preproc_undef] = STATE(2366), + [2360] = { + [sym_preproc_region] = STATE(2360), + [sym_preproc_endregion] = STATE(2360), + [sym_preproc_line] = STATE(2360), + [sym_preproc_pragma] = STATE(2360), + [sym_preproc_nullable] = STATE(2360), + [sym_preproc_error] = STATE(2360), + [sym_preproc_warning] = STATE(2360), + [sym_preproc_define] = STATE(2360), + [sym_preproc_undef] = STATE(2360), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_EQ_GT] = ACTIONS(4020), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4017), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4008), + [anon_sym_into] = ACTIONS(4017), + [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(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2361] = { + [sym_preproc_region] = STATE(2361), + [sym_preproc_endregion] = STATE(2361), + [sym_preproc_line] = STATE(2361), + [sym_preproc_pragma] = STATE(2361), + [sym_preproc_nullable] = STATE(2361), + [sym_preproc_error] = STATE(2361), + [sym_preproc_warning] = STATE(2361), + [sym_preproc_define] = STATE(2361), + [sym_preproc_undef] = STATE(2361), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_where] = ACTIONS(4017), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), + [anon_sym_from] = ACTIONS(4017), + [anon_sym_into] = ACTIONS(4017), + [anon_sym_join] = ACTIONS(4017), + [anon_sym_on] = ACTIONS(4008), + [anon_sym_equals] = ACTIONS(4008), + [anon_sym_let] = ACTIONS(4017), + [anon_sym_orderby] = ACTIONS(4017), + [anon_sym_ascending] = ACTIONS(4008), + [anon_sym_descending] = ACTIONS(4008), + [anon_sym_group] = ACTIONS(4017), + [anon_sym_by] = ACTIONS(4008), + [anon_sym_select] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2362] = { + [sym_preproc_region] = STATE(2362), + [sym_preproc_endregion] = STATE(2362), + [sym_preproc_line] = STATE(2362), + [sym_preproc_pragma] = STATE(2362), + [sym_preproc_nullable] = STATE(2362), + [sym_preproc_error] = STATE(2362), + [sym_preproc_warning] = STATE(2362), + [sym_preproc_define] = STATE(2362), + [sym_preproc_undef] = STATE(2362), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(3993), - [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4034), [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), - [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_DOT] = ACTIONS(4037), [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_EQ_GT] = ACTIONS(4006), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(3986), - [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_and] = ACTIONS(4003), - [anon_sym_or] = ACTIONS(4003), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(4037), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), [anon_sym_PLUS_EQ] = ACTIONS(4006), [anon_sym_DASH_EQ] = ACTIONS(4006), [anon_sym_STAR_EQ] = ACTIONS(4006), @@ -427879,13 +427506,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(3993), - [anon_sym_PIPE_PIPE] = ACTIONS(3993), - [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(4003), + [anon_sym_into] = ACTIONS(4037), [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(4003), + [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), [anon_sym_let] = ACTIONS(3986), [anon_sym_orderby] = ACTIONS(3986), @@ -427894,10 +427536,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3986), [anon_sym_by] = ACTIONS(3986), [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3993), - [anon_sym_with] = ACTIONS(3999), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(4034), + [anon_sym_with] = ACTIONS(3991), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -427910,90 +427552,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2367] = { - [sym_preproc_region] = STATE(2367), - [sym_preproc_endregion] = STATE(2367), - [sym_preproc_line] = STATE(2367), - [sym_preproc_pragma] = STATE(2367), - [sym_preproc_nullable] = STATE(2367), - [sym_preproc_error] = STATE(2367), - [sym_preproc_warning] = STATE(2367), - [sym_preproc_define] = STATE(2367), - [sym_preproc_undef] = STATE(2367), - [sym__identifier_token] = ACTIONS(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_using] = ACTIONS(4333), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3696), + [2363] = { + [sym__name] = STATE(5631), + [sym_alias_qualified_name] = STATE(5591), + [sym__simple_name] = STATE(5591), + [sym_qualified_name] = STATE(5591), + [sym_generic_name] = STATE(5632), + [sym_ref_type] = STATE(5630), + [sym__scoped_base_type] = STATE(5588), + [sym_identifier] = STATE(5537), + [sym__reserved_identifier] = STATE(5554), + [sym_preproc_region] = STATE(2363), + [sym_preproc_endregion] = STATE(2363), + [sym_preproc_line] = STATE(2363), + [sym_preproc_pragma] = STATE(2363), + [sym_preproc_nullable] = STATE(2363), + [sym_preproc_error] = STATE(2363), + [sym_preproc_warning] = STATE(2363), + [sym_preproc_define] = STATE(2363), + [sym_preproc_undef] = STATE(2363), + [sym__identifier_token] = ACTIONS(4318), + [anon_sym_alias] = ACTIONS(4320), + [anon_sym_global] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4333), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4320), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4320), + [anon_sym_unmanaged] = ACTIONS(4320), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4320), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4320), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4320), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [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), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4327), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428004,71 +427645,642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3694), }, - [2368] = { - [sym_preproc_region] = STATE(2368), - [sym_preproc_endregion] = STATE(2368), - [sym_preproc_line] = STATE(2368), - [sym_preproc_pragma] = STATE(2368), - [sym_preproc_nullable] = STATE(2368), - [sym_preproc_error] = STATE(2368), - [sym_preproc_warning] = STATE(2368), - [sym_preproc_define] = STATE(2368), - [sym_preproc_undef] = STATE(2368), - [sym__identifier_token] = ACTIONS(4335), - [anon_sym_alias] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4337), - [anon_sym_global] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_COLON] = ACTIONS(4337), - [anon_sym_COMMA] = ACTIONS(4337), - [anon_sym_RBRACK] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_RPAREN] = ACTIONS(4337), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_RBRACE] = ACTIONS(4337), - [anon_sym_file] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4335), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_in] = ACTIONS(4335), - [anon_sym_where] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_notnull] = ACTIONS(4335), - [anon_sym_unmanaged] = ACTIONS(4335), - [anon_sym_operator] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_PLUS_PLUS] = ACTIONS(4337), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4335), - [anon_sym_LT_LT] = ACTIONS(4337), - [anon_sym_GT_GT] = ACTIONS(4335), - [anon_sym_GT_GT_GT] = ACTIONS(4337), - [anon_sym_EQ_EQ] = ACTIONS(4337), - [anon_sym_BANG_EQ] = ACTIONS(4337), - [anon_sym_GT_EQ] = ACTIONS(4337), - [anon_sym_LT_EQ] = ACTIONS(4337), + [2364] = { + [sym_preproc_region] = STATE(2364), + [sym_preproc_endregion] = STATE(2364), + [sym_preproc_line] = STATE(2364), + [sym_preproc_pragma] = STATE(2364), + [sym_preproc_nullable] = STATE(2364), + [sym_preproc_error] = STATE(2364), + [sym_preproc_warning] = STATE(2364), + [sym_preproc_define] = STATE(2364), + [sym_preproc_undef] = STATE(2364), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = 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(4017), + [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(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2365] = { + [sym_preproc_region] = STATE(2365), + [sym_preproc_endregion] = STATE(2365), + [sym_preproc_line] = STATE(2365), + [sym_preproc_pragma] = STATE(2365), + [sym_preproc_nullable] = STATE(2365), + [sym_preproc_error] = STATE(2365), + [sym_preproc_warning] = STATE(2365), + [sym_preproc_define] = STATE(2365), + [sym_preproc_undef] = STATE(2365), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), + [anon_sym_from] = ACTIONS(4008), + [anon_sym_into] = ACTIONS(4008), + [anon_sym_join] = ACTIONS(4008), + [anon_sym_on] = ACTIONS(4017), + [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(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2366] = { + [sym__variable_designation] = STATE(4569), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), + [sym_preproc_region] = STATE(2366), + [sym_preproc_endregion] = STATE(2366), + [sym_preproc_line] = STATE(2366), + [sym_preproc_pragma] = STATE(2366), + [sym_preproc_nullable] = STATE(2366), + [sym_preproc_error] = STATE(2366), + [sym_preproc_warning] = STATE(2366), + [sym_preproc_define] = STATE(2366), + [sym_preproc_undef] = STATE(2366), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_RPAREN] = ACTIONS(4250), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4250), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4250), + [aux_sym_preproc_else_token1] = ACTIONS(4250), + [aux_sym_preproc_elif_token1] = ACTIONS(4250), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2367] = { + [sym__variable_designation] = STATE(4630), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), + [sym_preproc_region] = STATE(2367), + [sym_preproc_endregion] = STATE(2367), + [sym_preproc_line] = STATE(2367), + [sym_preproc_pragma] = STATE(2367), + [sym_preproc_nullable] = STATE(2367), + [sym_preproc_error] = STATE(2367), + [sym_preproc_warning] = STATE(2367), + [sym_preproc_define] = STATE(2367), + [sym_preproc_undef] = STATE(2367), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4302), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_COLON] = ACTIONS(4302), + [anon_sym_COMMA] = ACTIONS(4302), + [anon_sym_RBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_RPAREN] = ACTIONS(4302), + [anon_sym_RBRACE] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4302), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4302), + [aux_sym_preproc_else_token1] = ACTIONS(4302), + [aux_sym_preproc_elif_token1] = ACTIONS(4302), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2368] = { + [sym__variable_designation] = STATE(4532), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), + [sym_preproc_region] = STATE(2368), + [sym_preproc_endregion] = STATE(2368), + [sym_preproc_line] = STATE(2368), + [sym_preproc_pragma] = STATE(2368), + [sym_preproc_nullable] = STATE(2368), + [sym_preproc_error] = STATE(2368), + [sym_preproc_warning] = STATE(2368), + [sym_preproc_define] = STATE(2368), + [sym_preproc_undef] = STATE(2368), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4306), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_COLON] = ACTIONS(4306), + [anon_sym_COMMA] = ACTIONS(4306), + [anon_sym_RBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_RPAREN] = ACTIONS(4306), + [anon_sym_RBRACE] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4306), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4306), + [aux_sym_preproc_else_token1] = ACTIONS(4306), + [aux_sym_preproc_elif_token1] = ACTIONS(4306), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2369] = { + [sym__variable_designation] = STATE(4529), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), + [sym_preproc_region] = STATE(2369), + [sym_preproc_endregion] = STATE(2369), + [sym_preproc_line] = STATE(2369), + [sym_preproc_pragma] = STATE(2369), + [sym_preproc_nullable] = STATE(2369), + [sym_preproc_error] = STATE(2369), + [sym_preproc_warning] = STATE(2369), + [sym_preproc_define] = STATE(2369), + [sym_preproc_undef] = STATE(2369), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4254), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COLON] = ACTIONS(4254), + [anon_sym_COMMA] = ACTIONS(4254), + [anon_sym_RBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_RPAREN] = ACTIONS(4254), + [anon_sym_RBRACE] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4254), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_if_token3] = ACTIONS(4254), + [aux_sym_preproc_else_token1] = ACTIONS(4254), + [aux_sym_preproc_elif_token1] = ACTIONS(4254), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2370] = { + [sym_preproc_region] = STATE(2370), + [sym_preproc_endregion] = STATE(2370), + [sym_preproc_line] = STATE(2370), + [sym_preproc_pragma] = STATE(2370), + [sym_preproc_nullable] = STATE(2370), + [sym_preproc_error] = STATE(2370), + [sym_preproc_warning] = STATE(2370), + [sym_preproc_define] = STATE(2370), + [sym_preproc_undef] = STATE(2370), + [sym__identifier_token] = ACTIONS(4335), + [anon_sym_alias] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_global] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_RBRACK] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_file] = ACTIONS(4335), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_QMARK] = ACTIONS(4335), + [anon_sym_notnull] = ACTIONS(4335), + [anon_sym_unmanaged] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), [anon_sym_this] = ACTIONS(4335), [anon_sym_DOT] = ACTIONS(4335), [anon_sym_scoped] = ACTIONS(4335), [anon_sym_EQ_GT] = ACTIONS(4337), [anon_sym_var] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), [anon_sym_yield] = ACTIONS(4335), [anon_sym_switch] = ACTIONS(4335), [anon_sym_when] = ACTIONS(4335), [sym_discard] = ACTIONS(4335), [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), [anon_sym_and] = ACTIONS(4335), [anon_sym_or] = ACTIONS(4335), + [anon_sym_EQ_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4337), [anon_sym_AMP_AMP] = ACTIONS(4337), [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4335), + [sym_op_bitwise_or] = ACTIONS(4335), + [anon_sym_CARET] = ACTIONS(4337), + [sym_op_left_shift] = ACTIONS(4337), + [sym_op_right_shift] = ACTIONS(4335), + [sym_op_unsigned_right_shift] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [sym_op_divide] = ACTIONS(4335), + [sym_op_modulo] = ACTIONS(4337), [sym_op_coalescing] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), [anon_sym_from] = ACTIONS(4335), [anon_sym_into] = ACTIONS(4335), [anon_sym_join] = ACTIONS(4335), @@ -428100,16 +428312,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2369] = { - [sym_preproc_region] = STATE(2369), - [sym_preproc_endregion] = STATE(2369), - [sym_preproc_line] = STATE(2369), - [sym_preproc_pragma] = STATE(2369), - [sym_preproc_nullable] = STATE(2369), - [sym_preproc_error] = STATE(2369), - [sym_preproc_warning] = STATE(2369), - [sym_preproc_define] = STATE(2369), - [sym_preproc_undef] = STATE(2369), + [2371] = { + [sym_preproc_region] = STATE(2371), + [sym_preproc_endregion] = STATE(2371), + [sym_preproc_line] = STATE(2371), + [sym_preproc_pragma] = STATE(2371), + [sym_preproc_nullable] = STATE(2371), + [sym_preproc_error] = STATE(2371), + [sym_preproc_warning] = STATE(2371), + [sym_preproc_define] = STATE(2371), + [sym_preproc_undef] = STATE(2371), [sym__identifier_token] = ACTIONS(4339), [anon_sym_alias] = ACTIONS(4339), [anon_sym_SEMI] = ACTIONS(4341), @@ -428131,39 +428343,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(4339), [anon_sym_unmanaged] = ACTIONS(4339), [anon_sym_operator] = ACTIONS(4339), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_CARET] = ACTIONS(4341), - [anon_sym_PIPE] = ACTIONS(4339), - [anon_sym_AMP] = ACTIONS(4339), - [anon_sym_LT_LT] = ACTIONS(4341), - [anon_sym_GT_GT] = ACTIONS(4339), - [anon_sym_GT_GT_GT] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), [anon_sym_this] = ACTIONS(4339), [anon_sym_DOT] = ACTIONS(4339), [anon_sym_scoped] = ACTIONS(4339), [anon_sym_EQ_GT] = ACTIONS(4341), [anon_sym_var] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4341), [anon_sym_yield] = ACTIONS(4339), [anon_sym_switch] = ACTIONS(4339), [anon_sym_when] = ACTIONS(4339), [sym_discard] = ACTIONS(4339), [anon_sym_DOT_DOT] = ACTIONS(4341), + [anon_sym_LT_EQ] = ACTIONS(4341), + [anon_sym_GT_EQ] = ACTIONS(4341), [anon_sym_and] = ACTIONS(4339), [anon_sym_or] = ACTIONS(4339), + [anon_sym_EQ_EQ] = ACTIONS(4341), + [anon_sym_BANG_EQ] = ACTIONS(4341), [anon_sym_AMP_AMP] = ACTIONS(4341), [anon_sym_PIPE_PIPE] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4339), + [sym_op_bitwise_or] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4341), + [sym_op_left_shift] = ACTIONS(4341), + [sym_op_right_shift] = ACTIONS(4339), + [sym_op_unsigned_right_shift] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [sym_op_divide] = ACTIONS(4339), + [sym_op_modulo] = ACTIONS(4341), [sym_op_coalescing] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4339), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), [anon_sym_from] = ACTIONS(4339), [anon_sym_into] = ACTIONS(4339), [anon_sym_join] = ACTIONS(4339), @@ -428195,196 +428407,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2370] = { - [sym_type_argument_list] = STATE(2209), - [sym_preproc_region] = STATE(2370), - [sym_preproc_endregion] = STATE(2370), - [sym_preproc_line] = STATE(2370), - [sym_preproc_pragma] = STATE(2370), - [sym_preproc_nullable] = STATE(2370), - [sym_preproc_error] = STATE(2370), - [sym_preproc_warning] = STATE(2370), - [sym_preproc_define] = STATE(2370), - [sym_preproc_undef] = STATE(2370), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2371] = { - [sym_preproc_region] = STATE(2371), - [sym_preproc_endregion] = STATE(2371), - [sym_preproc_line] = STATE(2371), - [sym_preproc_pragma] = STATE(2371), - [sym_preproc_nullable] = STATE(2371), - [sym_preproc_error] = STATE(2371), - [sym_preproc_warning] = STATE(2371), - [sym_preproc_define] = STATE(2371), - [sym_preproc_undef] = STATE(2371), - [sym__identifier_token] = ACTIONS(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4008), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4019), - [anon_sym_into] = ACTIONS(4008), - [anon_sym_join] = ACTIONS(4019), - [anon_sym_on] = ACTIONS(4008), - [anon_sym_equals] = ACTIONS(4008), - [anon_sym_let] = ACTIONS(4019), - [anon_sym_orderby] = ACTIONS(4019), - [anon_sym_ascending] = ACTIONS(4008), - [anon_sym_descending] = ACTIONS(4008), - [anon_sym_group] = ACTIONS(4019), - [anon_sym_by] = ACTIONS(4008), - [anon_sym_select] = ACTIONS(4019), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2372] = { [sym_preproc_region] = STATE(2372), [sym_preproc_endregion] = STATE(2372), @@ -428409,32 +428431,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3999), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), [anon_sym_DOT] = ACTIONS(3999), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3999), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -428449,9 +428456,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), [anon_sym_AMP_AMP] = ACTIONS(3993), [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), [anon_sym_from] = ACTIONS(4003), [anon_sym_into] = ACTIONS(4003), [anon_sym_join] = ACTIONS(4003), @@ -428481,10 +428503,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2373] = { - [sym__variable_designation] = STATE(5009), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2373), [sym_preproc_endregion] = STATE(2373), [sym_preproc_line] = STATE(2373), @@ -428494,76 +428512,80 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4302), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_COLON] = ACTIONS(4302), - [anon_sym_COMMA] = ACTIONS(4302), - [anon_sym_RBRACK] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_RPAREN] = ACTIONS(4302), - [anon_sym_RBRACE] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4302), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4220), - [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(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_LPAREN] = ACTIONS(3993), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3986), + [sym_discard] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), + [anon_sym_AMP_AMP] = ACTIONS(3993), + [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), + [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(3986), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(4003), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_ascending] = ACTIONS(3986), + [anon_sym_descending] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3993), + [anon_sym_with] = ACTIONS(3999), + [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428576,10 +428598,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2374] = { - [sym__variable_designation] = STATE(4967), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2374), [sym_preproc_endregion] = STATE(2374), [sym_preproc_line] = STATE(2374), @@ -428589,76 +428607,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2374), [sym_preproc_define] = STATE(2374), [sym_preproc_undef] = STATE(2374), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4242), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COLON] = ACTIONS(4242), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_RBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4242), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4242), - [aux_sym_preproc_else_token1] = ACTIONS(4242), - [aux_sym_preproc_elif_token1] = ACTIONS(4242), + [sym__identifier_token] = ACTIONS(4343), + [anon_sym_alias] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_global] = ACTIONS(4343), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_COLON] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_RBRACK] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_RPAREN] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_file] = ACTIONS(4343), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_QMARK] = ACTIONS(4343), + [anon_sym_notnull] = ACTIONS(4343), + [anon_sym_unmanaged] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_this] = ACTIONS(4343), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_scoped] = ACTIONS(4343), + [anon_sym_EQ_GT] = ACTIONS(4345), + [anon_sym_var] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_yield] = ACTIONS(4343), + [anon_sym_switch] = ACTIONS(4343), + [anon_sym_when] = ACTIONS(4343), + [sym_discard] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_and] = ACTIONS(4343), + [anon_sym_or] = ACTIONS(4343), + [anon_sym_EQ_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4343), + [sym_op_bitwise_or] = ACTIONS(4343), + [anon_sym_CARET] = ACTIONS(4345), + [sym_op_left_shift] = ACTIONS(4345), + [sym_op_right_shift] = ACTIONS(4343), + [sym_op_unsigned_right_shift] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [sym_op_divide] = ACTIONS(4343), + [sym_op_modulo] = ACTIONS(4345), + [sym_op_coalescing] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_from] = ACTIONS(4343), + [anon_sym_into] = ACTIONS(4343), + [anon_sym_join] = ACTIONS(4343), + [anon_sym_on] = ACTIONS(4343), + [anon_sym_equals] = ACTIONS(4343), + [anon_sym_let] = ACTIONS(4343), + [anon_sym_orderby] = ACTIONS(4343), + [anon_sym_ascending] = ACTIONS(4343), + [anon_sym_descending] = ACTIONS(4343), + [anon_sym_group] = ACTIONS(4343), + [anon_sym_by] = ACTIONS(4343), + [anon_sym_select] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_DASH_GT] = ACTIONS(4345), + [anon_sym_with] = ACTIONS(4343), + [sym_grit_metavariable] = ACTIONS(4345), + [aux_sym_preproc_if_token3] = ACTIONS(4345), + [aux_sym_preproc_else_token1] = ACTIONS(4345), + [aux_sym_preproc_elif_token1] = ACTIONS(4345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428671,7 +428693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2375] = { - [sym_type_argument_list] = STATE(2209), [sym_preproc_region] = STATE(2375), [sym_preproc_endregion] = STATE(2375), [sym_preproc_line] = STATE(2375), @@ -428681,100 +428702,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2375), [sym_preproc_define] = STATE(2375), [sym_preproc_undef] = STATE(2375), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(4345), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2376] = { - [sym_preproc_region] = STATE(2376), - [sym_preproc_endregion] = STATE(2376), - [sym_preproc_line] = STATE(2376), - [sym_preproc_pragma] = STATE(2376), - [sym_preproc_nullable] = STATE(2376), - [sym_preproc_error] = STATE(2376), - [sym_preproc_warning] = STATE(2376), - [sym_preproc_define] = STATE(2376), - [sym_preproc_undef] = STATE(2376), [sym__identifier_token] = ACTIONS(4347), [anon_sym_alias] = ACTIONS(4347), [anon_sym_SEMI] = ACTIONS(4349), @@ -428796,39 +428723,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(4347), [anon_sym_unmanaged] = ACTIONS(4347), [anon_sym_operator] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_PLUS_PLUS] = ACTIONS(4349), - [anon_sym_DASH_DASH] = ACTIONS(4349), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4349), - [anon_sym_CARET] = ACTIONS(4349), - [anon_sym_PIPE] = ACTIONS(4347), - [anon_sym_AMP] = ACTIONS(4347), - [anon_sym_LT_LT] = ACTIONS(4349), - [anon_sym_GT_GT] = ACTIONS(4347), - [anon_sym_GT_GT_GT] = ACTIONS(4349), - [anon_sym_EQ_EQ] = ACTIONS(4349), - [anon_sym_BANG_EQ] = ACTIONS(4349), - [anon_sym_GT_EQ] = ACTIONS(4349), - [anon_sym_LT_EQ] = ACTIONS(4349), [anon_sym_this] = ACTIONS(4347), [anon_sym_DOT] = ACTIONS(4347), [anon_sym_scoped] = ACTIONS(4347), [anon_sym_EQ_GT] = ACTIONS(4349), [anon_sym_var] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), [anon_sym_yield] = ACTIONS(4347), [anon_sym_switch] = ACTIONS(4347), [anon_sym_when] = ACTIONS(4347), [sym_discard] = ACTIONS(4347), [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), [anon_sym_and] = ACTIONS(4347), [anon_sym_or] = ACTIONS(4347), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4349), [anon_sym_AMP_AMP] = ACTIONS(4349), [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(4347), + [sym_op_bitwise_or] = ACTIONS(4347), + [anon_sym_CARET] = ACTIONS(4349), + [sym_op_left_shift] = ACTIONS(4349), + [sym_op_right_shift] = ACTIONS(4347), + [sym_op_unsigned_right_shift] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [sym_op_divide] = ACTIONS(4347), + [sym_op_modulo] = ACTIONS(4349), [sym_op_coalescing] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), [anon_sym_from] = ACTIONS(4347), [anon_sym_into] = ACTIONS(4347), [anon_sym_join] = ACTIONS(4347), @@ -428860,111 +428787,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2377] = { - [sym_preproc_region] = STATE(2377), - [sym_preproc_endregion] = STATE(2377), - [sym_preproc_line] = STATE(2377), - [sym_preproc_pragma] = STATE(2377), - [sym_preproc_nullable] = STATE(2377), - [sym_preproc_error] = STATE(2377), - [sym_preproc_warning] = STATE(2377), - [sym_preproc_define] = STATE(2377), - [sym_preproc_undef] = STATE(2377), - [sym__identifier_token] = ACTIONS(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4019), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4008), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4019), - [anon_sym_join] = ACTIONS(4008), - [anon_sym_on] = ACTIONS(4019), - [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(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2378] = { - [sym_preproc_region] = STATE(2378), - [sym_preproc_endregion] = STATE(2378), - [sym_preproc_line] = STATE(2378), - [sym_preproc_pragma] = STATE(2378), - [sym_preproc_nullable] = STATE(2378), - [sym_preproc_error] = STATE(2378), - [sym_preproc_warning] = STATE(2378), - [sym_preproc_define] = STATE(2378), - [sym_preproc_undef] = STATE(2378), + [2376] = { + [sym_preproc_region] = STATE(2376), + [sym_preproc_endregion] = STATE(2376), + [sym_preproc_line] = STATE(2376), + [sym_preproc_pragma] = STATE(2376), + [sym_preproc_nullable] = STATE(2376), + [sym_preproc_error] = STATE(2376), + [sym_preproc_warning] = STATE(2376), + [sym_preproc_define] = STATE(2376), + [sym_preproc_undef] = STATE(2376), [sym__identifier_token] = ACTIONS(4351), [anon_sym_alias] = ACTIONS(4351), [anon_sym_SEMI] = ACTIONS(4353), @@ -428986,39 +428818,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(4351), [anon_sym_unmanaged] = ACTIONS(4351), [anon_sym_operator] = ACTIONS(4351), - [anon_sym_BANG] = ACTIONS(4351), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_SLASH] = ACTIONS(4351), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_AMP] = ACTIONS(4351), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4351), - [anon_sym_GT_GT_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), [anon_sym_this] = ACTIONS(4351), [anon_sym_DOT] = ACTIONS(4351), [anon_sym_scoped] = ACTIONS(4351), [anon_sym_EQ_GT] = ACTIONS(4353), [anon_sym_var] = ACTIONS(4351), + [anon_sym_STAR] = ACTIONS(4353), [anon_sym_yield] = ACTIONS(4351), [anon_sym_switch] = ACTIONS(4351), [anon_sym_when] = ACTIONS(4351), [sym_discard] = ACTIONS(4351), [anon_sym_DOT_DOT] = ACTIONS(4353), + [anon_sym_LT_EQ] = ACTIONS(4353), + [anon_sym_GT_EQ] = ACTIONS(4353), [anon_sym_and] = ACTIONS(4351), [anon_sym_or] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ] = ACTIONS(4353), [anon_sym_AMP_AMP] = ACTIONS(4353), [anon_sym_PIPE_PIPE] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4351), + [sym_op_bitwise_or] = ACTIONS(4351), + [anon_sym_CARET] = ACTIONS(4353), + [sym_op_left_shift] = ACTIONS(4353), + [sym_op_right_shift] = ACTIONS(4351), + [sym_op_unsigned_right_shift] = ACTIONS(4353), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_DASH] = ACTIONS(4351), + [sym_op_divide] = ACTIONS(4351), + [sym_op_modulo] = ACTIONS(4353), [sym_op_coalescing] = ACTIONS(4353), + [anon_sym_BANG] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4353), + [anon_sym_DASH_DASH] = ACTIONS(4353), [anon_sym_from] = ACTIONS(4351), [anon_sym_into] = ACTIONS(4351), [anon_sym_join] = ACTIONS(4351), @@ -429050,16 +428882,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2379] = { - [sym_preproc_region] = STATE(2379), - [sym_preproc_endregion] = STATE(2379), - [sym_preproc_line] = STATE(2379), - [sym_preproc_pragma] = STATE(2379), - [sym_preproc_nullable] = STATE(2379), - [sym_preproc_error] = STATE(2379), - [sym_preproc_warning] = STATE(2379), - [sym_preproc_define] = STATE(2379), - [sym_preproc_undef] = STATE(2379), + [2377] = { + [sym_preproc_region] = STATE(2377), + [sym_preproc_endregion] = STATE(2377), + [sym_preproc_line] = STATE(2377), + [sym_preproc_pragma] = STATE(2377), + [sym_preproc_nullable] = STATE(2377), + [sym_preproc_error] = STATE(2377), + [sym_preproc_warning] = STATE(2377), + [sym_preproc_define] = STATE(2377), + [sym_preproc_undef] = STATE(2377), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_EQ_GT] = ACTIONS(4020), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4017), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [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(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2378] = { + [sym_preproc_region] = STATE(2378), + [sym_preproc_endregion] = STATE(2378), + [sym_preproc_line] = STATE(2378), + [sym_preproc_pragma] = STATE(2378), + [sym_preproc_nullable] = STATE(2378), + [sym_preproc_error] = STATE(2378), + [sym_preproc_warning] = STATE(2378), + [sym_preproc_define] = STATE(2378), + [sym_preproc_undef] = STATE(2378), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -429074,32 +429001,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3999), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), [anon_sym_DOT] = ACTIONS(3999), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3999), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -429114,14 +429026,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), [anon_sym_AMP_AMP] = ACTIONS(3993), [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(4003), [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(4003), + [anon_sym_on] = ACTIONS(4003), + [anon_sym_equals] = ACTIONS(3986), [anon_sym_let] = ACTIONS(3986), [anon_sym_orderby] = ACTIONS(3986), [anon_sym_ascending] = ACTIONS(3986), @@ -429145,6 +429072,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2379] = { + [sym_preproc_region] = STATE(2379), + [sym_preproc_endregion] = STATE(2379), + [sym_preproc_line] = STATE(2379), + [sym_preproc_pragma] = STATE(2379), + [sym_preproc_nullable] = STATE(2379), + [sym_preproc_error] = STATE(2379), + [sym_preproc_warning] = STATE(2379), + [sym_preproc_define] = STATE(2379), + [sym_preproc_undef] = STATE(2379), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_PIPE_PIPE] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), + [anon_sym_from] = ACTIONS(4008), + [anon_sym_into] = ACTIONS(4017), + [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(4017), + [anon_sym_select] = ACTIONS(4008), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2380] = { [sym_preproc_region] = STATE(2380), [sym_preproc_endregion] = STATE(2380), @@ -429155,80 +429177,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2380), [sym_preproc_define] = STATE(2380), [sym_preproc_undef] = STATE(2380), - [sym__identifier_token] = ACTIONS(4355), - [anon_sym_alias] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4357), - [anon_sym_global] = ACTIONS(4355), - [anon_sym_LBRACK] = ACTIONS(4357), - [anon_sym_COLON] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4357), - [anon_sym_RBRACK] = ACTIONS(4357), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_RPAREN] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4357), - [anon_sym_file] = ACTIONS(4355), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_notnull] = ACTIONS(4355), - [anon_sym_unmanaged] = ACTIONS(4355), - [anon_sym_operator] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_PLUS_PLUS] = ACTIONS(4357), - [anon_sym_DASH_DASH] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4357), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4357), - [anon_sym_CARET] = ACTIONS(4357), - [anon_sym_PIPE] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_LT] = ACTIONS(4357), - [anon_sym_GT_GT] = ACTIONS(4355), - [anon_sym_GT_GT_GT] = ACTIONS(4357), - [anon_sym_EQ_EQ] = ACTIONS(4357), - [anon_sym_BANG_EQ] = ACTIONS(4357), - [anon_sym_GT_EQ] = ACTIONS(4357), - [anon_sym_LT_EQ] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_scoped] = ACTIONS(4355), - [anon_sym_EQ_GT] = ACTIONS(4357), - [anon_sym_var] = ACTIONS(4355), - [anon_sym_yield] = ACTIONS(4355), - [anon_sym_switch] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [sym_discard] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4357), - [anon_sym_and] = ACTIONS(4355), - [anon_sym_or] = ACTIONS(4355), - [anon_sym_AMP_AMP] = ACTIONS(4357), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [sym_op_coalescing] = ACTIONS(4357), - [anon_sym_from] = ACTIONS(4355), - [anon_sym_into] = ACTIONS(4355), - [anon_sym_join] = ACTIONS(4355), - [anon_sym_on] = ACTIONS(4355), - [anon_sym_equals] = ACTIONS(4355), - [anon_sym_let] = ACTIONS(4355), - [anon_sym_orderby] = ACTIONS(4355), - [anon_sym_ascending] = ACTIONS(4355), - [anon_sym_descending] = ACTIONS(4355), - [anon_sym_group] = ACTIONS(4355), - [anon_sym_by] = ACTIONS(4355), - [anon_sym_select] = ACTIONS(4355), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_DASH_GT] = ACTIONS(4357), - [anon_sym_with] = ACTIONS(4355), - [sym_grit_metavariable] = ACTIONS(4357), - [aux_sym_preproc_if_token3] = ACTIONS(4357), - [aux_sym_preproc_else_token1] = ACTIONS(4357), - [aux_sym_preproc_elif_token1] = ACTIONS(4357), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_EQ_GT] = ACTIONS(4006), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(4037), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(3986), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_ascending] = ACTIONS(3986), + [anon_sym_descending] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(4034), + [anon_sym_with] = ACTIONS(3991), + [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429264,32 +429286,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3999), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), [anon_sym_DOT] = ACTIONS(3999), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3999), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -429304,9 +429311,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), [anon_sym_AMP_AMP] = ACTIONS(3993), [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), [sym_op_coalescing] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), [anon_sym_from] = ACTIONS(3986), [anon_sym_into] = ACTIONS(4003), [anon_sym_join] = ACTIONS(3986), @@ -429336,15 +429358,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2382] = { - [sym__name] = STATE(5587), - [sym_alias_qualified_name] = STATE(5609), - [sym__simple_name] = STATE(5609), - [sym_qualified_name] = STATE(5609), - [sym_generic_name] = STATE(5595), - [sym_ref_type] = STATE(5583), - [sym__scoped_base_type] = STATE(5584), - [sym_identifier] = STATE(5549), - [sym__reserved_identifier] = STATE(5566), [sym_preproc_region] = STATE(2382), [sym_preproc_endregion] = STATE(2382), [sym_preproc_line] = STATE(2382), @@ -429354,70 +429367,80 @@ 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(4318), - [anon_sym_alias] = ACTIONS(4320), - [anon_sym_global] = ACTIONS(4320), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4359), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4320), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4320), - [anon_sym_unmanaged] = ACTIONS(4320), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), + [sym__identifier_token] = ACTIONS(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_using] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3696), [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4320), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4320), - [anon_sym_yield] = ACTIONS(4320), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4320), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), [sym_op_coalescing] = ACTIONS(3696), - [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), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4327), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429428,9 +429451,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(3696), }, [2383] = { + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2383), [sym_preproc_endregion] = STATE(2383), [sym_preproc_line] = STATE(2383), @@ -429440,80 +429463,79 @@ 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(4361), - [anon_sym_alias] = ACTIONS(4361), - [anon_sym_SEMI] = ACTIONS(4363), - [anon_sym_global] = ACTIONS(4361), - [anon_sym_LBRACK] = ACTIONS(4363), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_COMMA] = ACTIONS(4363), - [anon_sym_RBRACK] = ACTIONS(4363), - [anon_sym_LPAREN] = ACTIONS(4363), - [anon_sym_RPAREN] = ACTIONS(4363), - [anon_sym_LBRACE] = ACTIONS(4363), - [anon_sym_RBRACE] = ACTIONS(4363), - [anon_sym_file] = ACTIONS(4361), - [anon_sym_LT] = ACTIONS(4361), - [anon_sym_GT] = ACTIONS(4361), - [anon_sym_in] = ACTIONS(4361), - [anon_sym_where] = ACTIONS(4361), - [anon_sym_QMARK] = ACTIONS(4361), - [anon_sym_notnull] = ACTIONS(4361), - [anon_sym_unmanaged] = ACTIONS(4361), - [anon_sym_operator] = ACTIONS(4361), - [anon_sym_BANG] = ACTIONS(4361), - [anon_sym_PLUS_PLUS] = ACTIONS(4363), - [anon_sym_DASH_DASH] = ACTIONS(4363), - [anon_sym_PLUS] = ACTIONS(4361), - [anon_sym_DASH] = ACTIONS(4361), - [anon_sym_STAR] = ACTIONS(4363), - [anon_sym_SLASH] = ACTIONS(4361), - [anon_sym_PERCENT] = ACTIONS(4363), - [anon_sym_CARET] = ACTIONS(4363), - [anon_sym_PIPE] = ACTIONS(4361), - [anon_sym_AMP] = ACTIONS(4361), - [anon_sym_LT_LT] = ACTIONS(4363), - [anon_sym_GT_GT] = ACTIONS(4361), - [anon_sym_GT_GT_GT] = ACTIONS(4363), - [anon_sym_EQ_EQ] = ACTIONS(4363), - [anon_sym_BANG_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_this] = ACTIONS(4361), - [anon_sym_DOT] = ACTIONS(4361), - [anon_sym_scoped] = ACTIONS(4361), - [anon_sym_EQ_GT] = ACTIONS(4363), - [anon_sym_var] = ACTIONS(4361), - [anon_sym_yield] = ACTIONS(4361), - [anon_sym_switch] = ACTIONS(4361), - [anon_sym_when] = ACTIONS(4361), - [sym_discard] = ACTIONS(4361), - [anon_sym_DOT_DOT] = ACTIONS(4363), - [anon_sym_and] = ACTIONS(4361), - [anon_sym_or] = ACTIONS(4361), - [anon_sym_AMP_AMP] = ACTIONS(4363), - [anon_sym_PIPE_PIPE] = ACTIONS(4363), - [sym_op_coalescing] = ACTIONS(4363), - [anon_sym_from] = ACTIONS(4361), - [anon_sym_into] = ACTIONS(4361), - [anon_sym_join] = ACTIONS(4361), - [anon_sym_on] = ACTIONS(4361), - [anon_sym_equals] = ACTIONS(4361), - [anon_sym_let] = ACTIONS(4361), - [anon_sym_orderby] = ACTIONS(4361), - [anon_sym_ascending] = ACTIONS(4361), - [anon_sym_descending] = ACTIONS(4361), - [anon_sym_group] = ACTIONS(4361), - [anon_sym_by] = ACTIONS(4361), - [anon_sym_select] = ACTIONS(4361), - [anon_sym_as] = ACTIONS(4361), - [anon_sym_is] = ACTIONS(4361), - [anon_sym_DASH_GT] = ACTIONS(4363), - [anon_sym_with] = ACTIONS(4361), - [sym_grit_metavariable] = ACTIONS(4363), - [aux_sym_preproc_if_token3] = ACTIONS(4363), - [aux_sym_preproc_else_token1] = ACTIONS(4363), - [aux_sym_preproc_elif_token1] = ACTIONS(4363), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429535,63 +429557,253 @@ 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(4359), + [anon_sym_alias] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_global] = ACTIONS(4359), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_file] = ACTIONS(4359), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_QMARK] = ACTIONS(4359), + [anon_sym_notnull] = ACTIONS(4359), + [anon_sym_unmanaged] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_scoped] = ACTIONS(4359), + [anon_sym_EQ_GT] = ACTIONS(4361), + [anon_sym_var] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_yield] = ACTIONS(4359), + [anon_sym_switch] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [sym_discard] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_and] = ACTIONS(4359), + [anon_sym_or] = ACTIONS(4359), + [anon_sym_EQ_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4359), + [sym_op_bitwise_or] = ACTIONS(4359), + [anon_sym_CARET] = ACTIONS(4361), + [sym_op_left_shift] = ACTIONS(4361), + [sym_op_right_shift] = ACTIONS(4359), + [sym_op_unsigned_right_shift] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [sym_op_divide] = ACTIONS(4359), + [sym_op_modulo] = ACTIONS(4361), + [sym_op_coalescing] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_from] = ACTIONS(4359), + [anon_sym_into] = ACTIONS(4359), + [anon_sym_join] = ACTIONS(4359), + [anon_sym_on] = ACTIONS(4359), + [anon_sym_equals] = ACTIONS(4359), + [anon_sym_let] = ACTIONS(4359), + [anon_sym_orderby] = ACTIONS(4359), + [anon_sym_ascending] = ACTIONS(4359), + [anon_sym_descending] = ACTIONS(4359), + [anon_sym_group] = ACTIONS(4359), + [anon_sym_by] = ACTIONS(4359), + [anon_sym_select] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [anon_sym_with] = ACTIONS(4359), + [sym_grit_metavariable] = ACTIONS(4361), + [aux_sym_preproc_if_token3] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2385] = { + [sym_type_argument_list] = STATE(2214), + [sym_preproc_region] = STATE(2385), + [sym_preproc_endregion] = STATE(2385), + [sym_preproc_line] = STATE(2385), + [sym_preproc_pragma] = STATE(2385), + [sym_preproc_nullable] = STATE(2385), + [sym_preproc_error] = STATE(2385), + [sym_preproc_warning] = STATE(2385), + [sym_preproc_define] = STATE(2385), + [sym_preproc_undef] = STATE(2385), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(4363), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2386] = { + [sym_preproc_region] = STATE(2386), + [sym_preproc_endregion] = STATE(2386), + [sym_preproc_line] = STATE(2386), + [sym_preproc_pragma] = STATE(2386), + [sym_preproc_nullable] = STATE(2386), + [sym_preproc_error] = STATE(2386), + [sym_preproc_warning] = STATE(2386), + [sym_preproc_define] = STATE(2386), + [sym_preproc_undef] = STATE(2386), [sym__identifier_token] = ACTIONS(4008), [anon_sym_alias] = ACTIONS(4008), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4014), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4015), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), + [anon_sym_LT] = ACTIONS(4017), + [anon_sym_GT] = ACTIONS(4017), [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4010), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_when] = ACTIONS(4019), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), + [anon_sym_LT_EQ] = ACTIONS(4010), + [anon_sym_GT_EQ] = ACTIONS(4010), + [anon_sym_and] = ACTIONS(4017), + [anon_sym_or] = ACTIONS(4017), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4010), + [anon_sym_BANG_EQ] = ACTIONS(4010), [anon_sym_AMP_AMP] = ACTIONS(4010), [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), + [anon_sym_AMP] = ACTIONS(4017), + [sym_op_bitwise_or] = ACTIONS(4017), + [anon_sym_CARET] = ACTIONS(4017), + [sym_op_left_shift] = ACTIONS(4017), + [sym_op_right_shift] = ACTIONS(4017), + [sym_op_unsigned_right_shift] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [sym_op_divide] = ACTIONS(4017), + [sym_op_modulo] = ACTIONS(4017), + [sym_op_coalescing] = ACTIONS(4017), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4010), [anon_sym_from] = ACTIONS(4008), [anon_sym_into] = ACTIONS(4008), [anon_sym_join] = ACTIONS(4008), @@ -429602,13 +429814,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ascending] = ACTIONS(4008), [anon_sym_descending] = ACTIONS(4008), [anon_sym_group] = ACTIONS(4008), - [anon_sym_by] = ACTIONS(4008), + [anon_sym_by] = ACTIONS(4017), [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4017), + [anon_sym_is] = ACTIONS(4017), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4017), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429620,16 +429832,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2385] = { - [sym_preproc_region] = STATE(2385), - [sym_preproc_endregion] = STATE(2385), - [sym_preproc_line] = STATE(2385), - [sym_preproc_pragma] = STATE(2385), - [sym_preproc_nullable] = STATE(2385), - [sym_preproc_error] = STATE(2385), - [sym_preproc_warning] = STATE(2385), - [sym_preproc_define] = STATE(2385), - [sym_preproc_undef] = STATE(2385), + [2387] = { + [sym_preproc_region] = STATE(2387), + [sym_preproc_endregion] = STATE(2387), + [sym_preproc_line] = STATE(2387), + [sym_preproc_pragma] = STATE(2387), + [sym_preproc_nullable] = STATE(2387), + [sym_preproc_error] = STATE(2387), + [sym_preproc_warning] = STATE(2387), + [sym_preproc_define] = STATE(2387), + [sym_preproc_undef] = STATE(2387), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -429640,36 +429852,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_file] = ACTIONS(3986), [anon_sym_LT] = ACTIONS(3999), [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(3986), + [anon_sym_where] = ACTIONS(4003), [anon_sym_QMARK] = ACTIONS(3999), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3999), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), [anon_sym_DOT] = ACTIONS(3999), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3999), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_EQ] = ACTIONS(3993), [anon_sym_and] = ACTIONS(4003), [anon_sym_or] = ACTIONS(4003), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -429684,21 +429881,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(3993), + [anon_sym_BANG_EQ] = ACTIONS(3993), [anon_sym_AMP_AMP] = ACTIONS(3993), [anon_sym_PIPE_PIPE] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3999), + [sym_op_bitwise_or] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(3999), + [sym_op_left_shift] = ACTIONS(3999), + [sym_op_right_shift] = ACTIONS(3999), + [sym_op_unsigned_right_shift] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [sym_op_divide] = ACTIONS(3999), + [sym_op_modulo] = ACTIONS(3999), [sym_op_coalescing] = ACTIONS(3999), - [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(4003), - [anon_sym_join] = ACTIONS(3986), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3993), + [anon_sym_from] = ACTIONS(4003), + [anon_sym_into] = ACTIONS(3986), + [anon_sym_join] = ACTIONS(4003), [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(4003), + [anon_sym_orderby] = ACTIONS(4003), [anon_sym_ascending] = ACTIONS(3986), [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(4003), - [anon_sym_select] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(4003), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(4003), [anon_sym_as] = ACTIONS(3999), [anon_sym_is] = ACTIONS(3999), [anon_sym_DASH_GT] = ACTIONS(3993), @@ -429715,216 +429927,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2386] = { - [sym__variable_designation] = STATE(5041), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2386), - [sym_preproc_endregion] = STATE(2386), - [sym_preproc_line] = STATE(2386), - [sym_preproc_pragma] = STATE(2386), - [sym_preproc_nullable] = STATE(2386), - [sym_preproc_error] = STATE(2386), - [sym_preproc_warning] = STATE(2386), - [sym_preproc_define] = STATE(2386), - [sym_preproc_undef] = STATE(2386), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4306), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_COLON] = ACTIONS(4306), - [anon_sym_COMMA] = ACTIONS(4306), - [anon_sym_RBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_RPAREN] = ACTIONS(4306), - [anon_sym_RBRACE] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4306), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4306), - [aux_sym_preproc_else_token1] = ACTIONS(4306), - [aux_sym_preproc_elif_token1] = ACTIONS(4306), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2387] = { - [sym_preproc_region] = STATE(2387), - [sym_preproc_endregion] = STATE(2387), - [sym_preproc_line] = STATE(2387), - [sym_preproc_pragma] = STATE(2387), - [sym_preproc_nullable] = STATE(2387), - [sym_preproc_error] = STATE(2387), - [sym_preproc_warning] = STATE(2387), - [sym_preproc_define] = STATE(2387), - [sym_preproc_undef] = STATE(2387), - [sym__identifier_token] = ACTIONS(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [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(4012), - [anon_sym_when] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4019), - [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(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2388] = { - [sym_argument_list] = STATE(3468), - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4928), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3742), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym__name] = STATE(4541), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_ref_type] = STATE(4178), + [sym__scoped_base_type] = STATE(4193), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(2388), [sym_preproc_endregion] = STATE(2388), [sym_preproc_line] = STATE(2388), @@ -429934,60 +429946,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2388), [sym_preproc_define] = STATE(2388), [sym_preproc_undef] = STATE(2388), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(4369), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_record] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(4373), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4365), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4367), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430000,6 +430022,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2389] = { + [sym_modifier] = STATE(3484), + [sym_variable_declaration] = STATE(7715), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6221), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2389), [sym_preproc_endregion] = STATE(2389), [sym_preproc_line] = STATE(2389), @@ -430009,79 +430051,59 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_when] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [anon_sym_from] = ACTIONS(4019), - [anon_sym_into] = ACTIONS(4019), - [anon_sym_join] = ACTIONS(4019), - [anon_sym_on] = ACTIONS(4008), - [anon_sym_equals] = ACTIONS(4008), - [anon_sym_let] = ACTIONS(4019), - [anon_sym_orderby] = ACTIONS(4019), - [anon_sym_ascending] = ACTIONS(4019), - [anon_sym_descending] = ACTIONS(4019), - [anon_sym_group] = ACTIONS(4019), - [anon_sym_by] = ACTIONS(4008), - [anon_sym_select] = ACTIONS(4019), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4014), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3232), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(65), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(4064), + [anon_sym_ref] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_enum] = ACTIONS(4145), + [anon_sym_interface] = ACTIONS(4070), + [anon_sym_delegate] = ACTIONS(4072), + [anon_sym_record] = ACTIONS(4074), + [anon_sym_public] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3231), + [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_protected] = 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(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430094,6 +430116,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2390] = { + [sym_modifier] = STATE(3484), + [sym_variable_declaration] = STATE(7938), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6221), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2390), [sym_preproc_endregion] = STATE(2390), [sym_preproc_line] = STATE(2390), @@ -430103,79 +430145,59 @@ 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(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym_global] = ACTIONS(3915), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_RBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_RPAREN] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3915), - [anon_sym_unmanaged] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3912), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3912), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3912), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3912), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3915), - [anon_sym_yield] = ACTIONS(3915), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3915), - [sym_discard] = ACTIONS(3915), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3912), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3915), - [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(3915), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3915), - [sym_grit_metavariable] = ACTIONS(3912), - [aux_sym_preproc_if_token3] = ACTIONS(3912), - [aux_sym_preproc_else_token1] = ACTIONS(3912), - [aux_sym_preproc_elif_token1] = ACTIONS(3912), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3232), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(65), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(4064), + [anon_sym_ref] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_enum] = ACTIONS(4143), + [anon_sym_interface] = ACTIONS(4070), + [anon_sym_delegate] = ACTIONS(4072), + [anon_sym_record] = ACTIONS(4074), + [anon_sym_public] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3231), + [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_protected] = 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(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430197,79 +430219,79 @@ 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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_COMMA] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(4037), - [anon_sym_QMARK] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(3991), - [anon_sym_or] = ACTIONS(3991), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(4037), - [anon_sym_into] = ACTIONS(4037), - [anon_sym_join] = ACTIONS(4037), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(4037), - [anon_sym_orderby] = ACTIONS(4037), - [anon_sym_ascending] = ACTIONS(4037), - [anon_sym_descending] = ACTIONS(4037), - [anon_sym_group] = ACTIONS(4037), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(4037), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4034), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(4034), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4017), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4017), + [anon_sym_into] = ACTIONS(4017), + [anon_sym_join] = ACTIONS(4017), + [anon_sym_on] = ACTIONS(4008), + [anon_sym_equals] = ACTIONS(4008), + [anon_sym_let] = ACTIONS(4017), + [anon_sym_orderby] = ACTIONS(4017), + [anon_sym_ascending] = ACTIONS(4017), + [anon_sym_descending] = ACTIONS(4017), + [anon_sym_group] = ACTIONS(4017), + [anon_sym_by] = ACTIONS(4008), + [anon_sym_select] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4010), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430282,7 +430304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2392] = { - [sym_type_argument_list] = STATE(2447), + [sym_type_argument_list] = STATE(2417), [sym_preproc_region] = STATE(2392), [sym_preproc_endregion] = STATE(2392), [sym_preproc_line] = STATE(2392), @@ -430292,78 +430314,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2392), [sym_preproc_define] = STATE(2392), [sym_preproc_undef] = STATE(2392), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(4379), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(4370), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), [anon_sym_COLON_COLON] = ACTIONS(3984), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_from] = ACTIONS(3951), - [anon_sym_into] = ACTIONS(3951), - [anon_sym_join] = ACTIONS(3951), - [anon_sym_on] = ACTIONS(3951), - [anon_sym_equals] = ACTIONS(3951), - [anon_sym_let] = ACTIONS(3951), - [anon_sym_orderby] = ACTIONS(3951), - [anon_sym_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430376,7 +430398,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2393] = { - [sym_type_argument_list] = STATE(2447), + [sym__name] = STATE(5856), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_ref_type] = STATE(3311), + [sym__scoped_base_type] = STATE(3250), + [sym_identifier] = STATE(5614), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2393), [sym_preproc_endregion] = STATE(2393), [sym_preproc_line] = STATE(2393), @@ -430386,78 +430416,70 @@ 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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(4379), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_from] = ACTIONS(3951), - [anon_sym_into] = ACTIONS(3951), - [anon_sym_join] = ACTIONS(3951), - [anon_sym_on] = ACTIONS(3951), - [anon_sym_equals] = ACTIONS(3951), - [anon_sym_let] = ACTIONS(3951), - [anon_sym_orderby] = ACTIONS(3951), - [anon_sym_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430470,15 +430492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2394] = { - [sym__name] = STATE(4694), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_ref_type] = STATE(4695), - [sym__scoped_base_type] = STATE(4696), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), + [sym_type_argument_list] = STATE(2417), [sym_preproc_region] = STATE(2394), [sym_preproc_endregion] = STATE(2394), [sym_preproc_line] = STATE(2394), @@ -430488,70 +430502,78 @@ 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(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4382), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4090), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4094), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4094), - [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(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4097), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(4370), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430573,79 +430595,79 @@ 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(3187), - [anon_sym_alias] = ACTIONS(3187), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_global] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_file] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_where] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_notnull] = ACTIONS(3187), - [anon_sym_unmanaged] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_scoped] = ACTIONS(3187), - [anon_sym_EQ_GT] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3189), - [anon_sym_var] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_switch] = ACTIONS(3187), - [anon_sym_when] = ACTIONS(3187), - [sym_discard] = ACTIONS(3187), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = 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_as] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3187), - [sym_grit_metavariable] = ACTIONS(3189), - [aux_sym_preproc_if_token3] = ACTIONS(3189), - [aux_sym_preproc_else_token1] = ACTIONS(3189), - [aux_sym_preproc_elif_token1] = ACTIONS(3189), + [sym__identifier_token] = ACTIONS(3913), + [anon_sym_alias] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3910), + [anon_sym_global] = ACTIONS(3913), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_RBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_RPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_RBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_in] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_notnull] = ACTIONS(3913), + [anon_sym_unmanaged] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_scoped] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3910), + [anon_sym_yield] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(3913), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3910), + [sym_op_left_shift] = ACTIONS(3910), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3910), + [sym_op_coalescing] = ACTIONS(3910), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(3913), + [anon_sym_into] = ACTIONS(3913), + [anon_sym_join] = ACTIONS(3913), + [anon_sym_on] = ACTIONS(3913), + [anon_sym_equals] = ACTIONS(3913), + [anon_sym_let] = ACTIONS(3913), + [anon_sym_orderby] = ACTIONS(3913), + [anon_sym_ascending] = ACTIONS(3913), + [anon_sym_descending] = ACTIONS(3913), + [anon_sym_group] = ACTIONS(3913), + [anon_sym_by] = ACTIONS(3913), + [anon_sym_select] = ACTIONS(3913), + [anon_sym_as] = ACTIONS(3913), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(3910), + [aux_sym_preproc_if_token3] = ACTIONS(3910), + [aux_sym_preproc_else_token1] = ACTIONS(3910), + [aux_sym_preproc_elif_token1] = ACTIONS(3910), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430658,26 +430680,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2396] = { - [sym_modifier] = STATE(4327), - [sym_variable_declaration] = STATE(7982), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6217), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(2396), [sym_preproc_endregion] = STATE(2396), [sym_preproc_line] = STATE(2396), @@ -430687,59 +430689,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2396), [sym_preproc_define] = STATE(2396), [sym_preproc_undef] = STATE(2396), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3907), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(4044), - [anon_sym_ref] = ACTIONS(4046), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(4147), - [anon_sym_interface] = ACTIONS(4050), - [anon_sym_delegate] = ACTIONS(4052), - [anon_sym_record] = ACTIONS(4054), - [anon_sym_public] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3231), - [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_protected] = 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(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4017), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4017), + [anon_sym_into] = ACTIONS(4008), + [anon_sym_join] = ACTIONS(4017), + [anon_sym_on] = ACTIONS(4008), + [anon_sym_equals] = ACTIONS(4008), + [anon_sym_let] = ACTIONS(4017), + [anon_sym_orderby] = ACTIONS(4017), + [anon_sym_ascending] = ACTIONS(4017), + [anon_sym_descending] = ACTIONS(4017), + [anon_sym_group] = ACTIONS(4017), + [anon_sym_by] = ACTIONS(4008), + [anon_sym_select] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4010), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430752,6 +430774,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2397] = { + [sym__name] = STATE(3938), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_ref_type] = STATE(3937), + [sym__scoped_base_type] = STATE(3936), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(2397), [sym_preproc_endregion] = STATE(2397), [sym_preproc_line] = STATE(2397), @@ -430761,79 +430792,70 @@ 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(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3696), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4090), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4094), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4094), + [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(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430855,79 +430877,79 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_when] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [anon_sym_from] = ACTIONS(4019), - [anon_sym_into] = ACTIONS(4008), - [anon_sym_join] = ACTIONS(4019), - [anon_sym_on] = ACTIONS(4008), - [anon_sym_equals] = ACTIONS(4008), - [anon_sym_let] = ACTIONS(4019), - [anon_sym_orderby] = ACTIONS(4019), - [anon_sym_ascending] = ACTIONS(4019), - [anon_sym_descending] = ACTIONS(4019), - [anon_sym_group] = ACTIONS(4019), - [anon_sym_by] = ACTIONS(4008), - [anon_sym_select] = ACTIONS(4019), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4014), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4034), + [anon_sym_COMMA] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(4037), + [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_from] = ACTIONS(4037), + [anon_sym_into] = ACTIONS(3986), + [anon_sym_join] = ACTIONS(4037), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(4037), + [anon_sym_orderby] = ACTIONS(4037), + [anon_sym_ascending] = ACTIONS(4037), + [anon_sym_descending] = ACTIONS(4037), + [anon_sym_group] = ACTIONS(4037), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(4037), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(4034), + [anon_sym_with] = ACTIONS(3991), + [sym_grit_metavariable] = ACTIONS(4034), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430940,15 +430962,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2399] = { - [sym__name] = STATE(5848), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_ref_type] = STATE(3809), - [sym__scoped_base_type] = STATE(3808), - [sym_identifier] = STATE(5620), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(2399), [sym_preproc_endregion] = STATE(2399), [sym_preproc_line] = STATE(2399), @@ -430958,70 +430971,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2399), [sym_preproc_define] = STATE(2399), [sym_preproc_undef] = STATE(2399), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3694), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431034,26 +431056,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2400] = { - [sym_modifier] = STATE(4327), - [sym_variable_declaration] = STATE(8071), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6217), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(3125), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(4715), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3130), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2400), [sym_preproc_endregion] = STATE(2400), [sym_preproc_line] = STATE(2400), @@ -431063,59 +431084,60 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3907), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(4044), - [anon_sym_ref] = ACTIONS(4046), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(4103), - [anon_sym_interface] = ACTIONS(4050), - [anon_sym_delegate] = ACTIONS(4052), - [anon_sym_record] = ACTIONS(4054), - [anon_sym_public] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3231), - [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_protected] = 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(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_ref] = ACTIONS(4212), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_interface] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_record] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4385), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431128,15 +431150,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2401] = { - [sym__name] = STATE(4936), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_ref_type] = STATE(4779), - [sym__scoped_base_type] = STATE(4778), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(2401), [sym_preproc_endregion] = STATE(2401), [sym_preproc_line] = STATE(2401), @@ -431146,91 +431159,6 @@ 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(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4386), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4388), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4145), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2402] = { - [sym_preproc_region] = STATE(2402), - [sym_preproc_endregion] = STATE(2402), - [sym_preproc_line] = STATE(2402), - [sym_preproc_pragma] = STATE(2402), - [sym_preproc_nullable] = STATE(2402), - [sym_preproc_error] = STATE(2402), - [sym_preproc_warning] = STATE(2402), - [sym_preproc_define] = STATE(2402), - [sym_preproc_undef] = STATE(2402), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -431245,31 +431173,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), [anon_sym_and] = ACTIONS(3991), [anon_sym_or] = ACTIONS(3991), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -431284,11 +431197,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(4037), - [anon_sym_into] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(4037), [anon_sym_join] = ACTIONS(4037), [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), @@ -431315,6 +431243,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2402] = { + [sym_preproc_region] = STATE(2402), + [sym_preproc_endregion] = STATE(2402), + [sym_preproc_line] = STATE(2402), + [sym_preproc_pragma] = STATE(2402), + [sym_preproc_nullable] = STATE(2402), + [sym_preproc_error] = STATE(2402), + [sym_preproc_warning] = STATE(2402), + [sym_preproc_define] = STATE(2402), + [sym_preproc_undef] = STATE(2402), + [sym__identifier_token] = ACTIONS(3187), + [anon_sym_alias] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_global] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACK] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_file] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_in] = ACTIONS(3187), + [anon_sym_where] = ACTIONS(3187), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_notnull] = ACTIONS(3187), + [anon_sym_unmanaged] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_scoped] = ACTIONS(3187), + [anon_sym_EQ_GT] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_when] = ACTIONS(3187), + [sym_discard] = ACTIONS(3187), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3187), + [anon_sym_or] = ACTIONS(3187), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3189), + [sym_op_left_shift] = ACTIONS(3189), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3189), + [sym_op_coalescing] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = 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_as] = ACTIONS(3187), + [anon_sym_is] = ACTIONS(3187), + [anon_sym_DASH_GT] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3187), + [sym_grit_metavariable] = 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), + }, [2403] = { [sym_preproc_region] = STATE(2403), [sym_preproc_endregion] = STATE(2403), @@ -431345,38 +431367,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4391), [anon_sym_notnull] = ACTIONS(4391), [anon_sym_unmanaged] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PLUS_PLUS] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_CARET] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_AMP] = ACTIONS(4391), - [anon_sym_LT_LT] = ACTIONS(4393), - [anon_sym_GT_GT] = ACTIONS(4391), - [anon_sym_GT_GT_GT] = ACTIONS(4393), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_GT_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(4393), [anon_sym_DOT] = ACTIONS(4391), [anon_sym_scoped] = ACTIONS(4391), [anon_sym_EQ_GT] = ACTIONS(4393), [anon_sym_var] = ACTIONS(4391), + [anon_sym_STAR] = ACTIONS(4393), [anon_sym_yield] = ACTIONS(4391), [anon_sym_switch] = ACTIONS(4391), [anon_sym_when] = ACTIONS(4391), [sym_discard] = ACTIONS(4391), [anon_sym_DOT_DOT] = ACTIONS(4393), + [anon_sym_LT_EQ] = ACTIONS(4393), + [anon_sym_GT_EQ] = ACTIONS(4393), [anon_sym_and] = ACTIONS(4391), [anon_sym_or] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ] = ACTIONS(4393), [anon_sym_AMP_AMP] = ACTIONS(4393), [anon_sym_PIPE_PIPE] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(4391), + [sym_op_bitwise_or] = ACTIONS(4391), + [anon_sym_CARET] = ACTIONS(4393), + [sym_op_left_shift] = ACTIONS(4393), + [sym_op_right_shift] = ACTIONS(4391), + [sym_op_unsigned_right_shift] = ACTIONS(4393), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [sym_op_divide] = ACTIONS(4391), + [sym_op_modulo] = ACTIONS(4393), [sym_op_coalescing] = ACTIONS(4393), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4393), + [anon_sym_DASH_DASH] = ACTIONS(4393), [anon_sym_from] = ACTIONS(4391), [anon_sym_into] = ACTIONS(4391), [anon_sym_join] = ACTIONS(4391), @@ -431418,78 +431440,78 @@ 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(3978), - [anon_sym_alias] = ACTIONS(3978), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym_global] = ACTIONS(3978), - [anon_sym_LBRACK] = ACTIONS(3980), - [anon_sym_COLON] = ACTIONS(3980), - [anon_sym_COMMA] = ACTIONS(3980), - [anon_sym_RBRACK] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym_RPAREN] = ACTIONS(3980), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_RBRACE] = ACTIONS(3980), - [anon_sym_file] = ACTIONS(3978), - [anon_sym_LT] = ACTIONS(3978), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_in] = ACTIONS(3978), - [anon_sym_where] = ACTIONS(3978), - [anon_sym_QMARK] = ACTIONS(3978), - [anon_sym_notnull] = ACTIONS(3978), - [anon_sym_unmanaged] = ACTIONS(3978), - [anon_sym_BANG] = ACTIONS(3978), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_SLASH] = ACTIONS(3978), - [anon_sym_PERCENT] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3978), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_LT_LT] = ACTIONS(3980), - [anon_sym_GT_GT] = ACTIONS(3978), - [anon_sym_GT_GT_GT] = ACTIONS(3980), - [anon_sym_EQ_EQ] = ACTIONS(3980), - [anon_sym_BANG_EQ] = ACTIONS(3980), - [anon_sym_GT_EQ] = ACTIONS(3980), - [anon_sym_LT_EQ] = ACTIONS(3980), - [anon_sym_DOT] = ACTIONS(3978), - [anon_sym_scoped] = ACTIONS(3978), - [anon_sym_EQ_GT] = ACTIONS(3980), - [anon_sym_var] = ACTIONS(3978), - [anon_sym_yield] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_when] = ACTIONS(3978), - [sym_discard] = ACTIONS(3978), - [anon_sym_DOT_DOT] = ACTIONS(3980), - [anon_sym_and] = ACTIONS(3978), - [anon_sym_or] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_PIPE_PIPE] = ACTIONS(3980), - [sym_op_coalescing] = ACTIONS(3980), - [anon_sym_from] = ACTIONS(3978), - [anon_sym_into] = ACTIONS(3978), - [anon_sym_join] = ACTIONS(3978), - [anon_sym_on] = ACTIONS(3978), - [anon_sym_equals] = ACTIONS(3978), - [anon_sym_let] = ACTIONS(3978), - [anon_sym_orderby] = ACTIONS(3978), - [anon_sym_ascending] = ACTIONS(3978), - [anon_sym_descending] = ACTIONS(3978), - [anon_sym_group] = ACTIONS(3978), - [anon_sym_by] = ACTIONS(3978), - [anon_sym_select] = ACTIONS(3978), - [anon_sym_as] = ACTIONS(3978), - [anon_sym_is] = ACTIONS(3978), - [anon_sym_DASH_GT] = ACTIONS(3980), - [anon_sym_with] = ACTIONS(3978), - [sym_grit_metavariable] = ACTIONS(3980), - [aux_sym_preproc_if_token3] = ACTIONS(3980), - [aux_sym_preproc_else_token1] = ACTIONS(3980), - [aux_sym_preproc_elif_token1] = ACTIONS(3980), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4017), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4017), + [anon_sym_into] = ACTIONS(4017), + [anon_sym_join] = ACTIONS(4017), + [anon_sym_on] = ACTIONS(4008), + [anon_sym_equals] = ACTIONS(4008), + [anon_sym_let] = ACTIONS(4017), + [anon_sym_orderby] = ACTIONS(4017), + [anon_sym_ascending] = ACTIONS(4008), + [anon_sym_descending] = ACTIONS(4008), + [anon_sym_group] = ACTIONS(4017), + [anon_sym_by] = ACTIONS(4008), + [anon_sym_select] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431502,14 +431524,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2405] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2535), - [sym_property_pattern_clause] = STATE(2665), - [sym__variable_designation] = STATE(5704), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5640), - [sym__reserved_identifier] = STATE(5570), [sym_preproc_region] = STATE(2405), [sym_preproc_endregion] = STATE(2405), [sym_preproc_line] = STATE(2405), @@ -431520,68 +431534,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(2405), [sym_preproc_undef] = STATE(2405), [sym__identifier_token] = ACTIONS(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [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), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4403), + [anon_sym_alias] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_global] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_RBRACK] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_RBRACE] = ACTIONS(4397), + [anon_sym_file] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4395), + [anon_sym_GT] = ACTIONS(4395), + [anon_sym_in] = ACTIONS(4395), + [anon_sym_where] = ACTIONS(4395), + [anon_sym_QMARK] = ACTIONS(4395), + [anon_sym_notnull] = ACTIONS(4395), + [anon_sym_unmanaged] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_scoped] = ACTIONS(4395), + [anon_sym_EQ_GT] = ACTIONS(4399), + [anon_sym_var] = ACTIONS(4395), + [anon_sym_STAR] = ACTIONS(4397), + [anon_sym_yield] = ACTIONS(4395), + [anon_sym_switch] = ACTIONS(4395), + [anon_sym_when] = ACTIONS(4395), + [sym_discard] = ACTIONS(4395), + [anon_sym_DOT_DOT] = ACTIONS(4397), + [anon_sym_LT_EQ] = ACTIONS(4397), + [anon_sym_GT_EQ] = ACTIONS(4397), + [anon_sym_and] = ACTIONS(4395), + [anon_sym_or] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_AMP_AMP] = ACTIONS(4397), + [anon_sym_PIPE_PIPE] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4395), + [sym_op_bitwise_or] = ACTIONS(4395), + [anon_sym_CARET] = ACTIONS(4397), + [sym_op_left_shift] = ACTIONS(4397), + [sym_op_right_shift] = ACTIONS(4395), + [sym_op_unsigned_right_shift] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4395), + [anon_sym_DASH] = ACTIONS(4395), + [sym_op_divide] = ACTIONS(4395), + [sym_op_modulo] = ACTIONS(4397), + [sym_op_coalescing] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4397), + [anon_sym_from] = ACTIONS(4395), + [anon_sym_into] = ACTIONS(4395), + [anon_sym_join] = ACTIONS(4395), + [anon_sym_on] = ACTIONS(4395), + [anon_sym_equals] = ACTIONS(4395), + [anon_sym_let] = ACTIONS(4395), + [anon_sym_orderby] = ACTIONS(4395), + [anon_sym_ascending] = ACTIONS(4395), + [anon_sym_descending] = ACTIONS(4395), + [anon_sym_group] = ACTIONS(4395), + [anon_sym_by] = ACTIONS(4395), + [anon_sym_select] = ACTIONS(4395), + [anon_sym_as] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4395), + [anon_sym_DASH_GT] = ACTIONS(4397), + [anon_sym_with] = ACTIONS(4395), + [sym_grit_metavariable] = ACTIONS(4397), + [aux_sym_preproc_if_token3] = ACTIONS(4397), + [aux_sym_preproc_else_token1] = ACTIONS(4397), + [aux_sym_preproc_elif_token1] = ACTIONS(4397), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431592,7 +431615,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(4222), }, [2406] = { [sym_preproc_region] = STATE(2406), @@ -431604,78 +431626,78 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_when] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4008), - [anon_sym_join] = ACTIONS(4008), - [anon_sym_on] = ACTIONS(4019), - [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(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4034), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(4037), + [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_from] = ACTIONS(4037), + [anon_sym_into] = ACTIONS(4037), + [anon_sym_join] = ACTIONS(4037), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(4037), + [anon_sym_orderby] = ACTIONS(4037), + [anon_sym_ascending] = ACTIONS(3986), + [anon_sym_descending] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(4037), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(4037), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(4034), + [anon_sym_with] = ACTIONS(3991), + [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431697,78 +431719,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2407), [sym_preproc_define] = STATE(2407), [sym_preproc_undef] = STATE(2407), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [sym__identifier_token] = ACTIONS(4401), + [anon_sym_alias] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_global] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_COLON] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_RBRACK] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_RPAREN] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_file] = ACTIONS(4401), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4401), + [anon_sym_QMARK] = ACTIONS(4401), + [anon_sym_notnull] = ACTIONS(4401), + [anon_sym_unmanaged] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_scoped] = ACTIONS(4401), + [anon_sym_EQ_GT] = ACTIONS(4403), + [anon_sym_var] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_yield] = ACTIONS(4401), + [anon_sym_switch] = ACTIONS(4401), + [anon_sym_when] = ACTIONS(4401), + [sym_discard] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_and] = ACTIONS(4401), + [anon_sym_or] = ACTIONS(4401), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_AMP] = ACTIONS(4401), + [sym_op_bitwise_or] = ACTIONS(4401), + [anon_sym_CARET] = ACTIONS(4403), + [sym_op_left_shift] = ACTIONS(4403), + [sym_op_right_shift] = ACTIONS(4401), + [sym_op_unsigned_right_shift] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [sym_op_divide] = ACTIONS(4401), + [sym_op_modulo] = ACTIONS(4403), + [sym_op_coalescing] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [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), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_DASH_GT] = ACTIONS(4403), + [anon_sym_with] = ACTIONS(4401), + [sym_grit_metavariable] = ACTIONS(4403), + [aux_sym_preproc_if_token3] = ACTIONS(4403), + [aux_sym_preproc_else_token1] = ACTIONS(4403), + [aux_sym_preproc_elif_token1] = ACTIONS(4403), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431790,109 +431812,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2408), [sym_preproc_define] = STATE(2408), [sym_preproc_undef] = STATE(2408), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_from] = ACTIONS(3951), - [anon_sym_into] = ACTIONS(3951), - [anon_sym_join] = ACTIONS(3951), - [anon_sym_on] = ACTIONS(3951), - [anon_sym_equals] = ACTIONS(3951), - [anon_sym_let] = ACTIONS(3951), - [anon_sym_orderby] = ACTIONS(3951), - [anon_sym_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = 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(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4034), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(4037), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(4037), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_ascending] = ACTIONS(3986), + [anon_sym_descending] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(4034), + [anon_sym_with] = ACTIONS(3991), + [sym_grit_metavariable] = ACTIONS(3997), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, [2409] = { - [sym_modifier] = STATE(4327), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6391), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(2409), [sym_preproc_endregion] = STATE(2409), [sym_preproc_line] = STATE(2409), @@ -431902,59 +431905,78 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3907), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(4266), - [anon_sym_ref] = ACTIONS(4268), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4418), - [anon_sym_interface] = ACTIONS(4274), - [anon_sym_delegate] = ACTIONS(4276), - [anon_sym_record] = ACTIONS(4278), - [anon_sym_public] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(4420), - [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_protected] = 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(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_SEMI] = ACTIONS(4015), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_COLON] = ACTIONS(4015), + [anon_sym_COMMA] = ACTIONS(4015), + [anon_sym_RBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4015), + [anon_sym_RPAREN] = ACTIONS(4015), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(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_DOT] = ACTIONS(4008), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_EQ_GT] = ACTIONS(4015), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4008), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4015), + [anon_sym_LT_EQ] = ACTIONS(4015), + [anon_sym_GT_EQ] = ACTIONS(4015), + [anon_sym_and] = ACTIONS(4008), + [anon_sym_or] = ACTIONS(4008), + [anon_sym_EQ_EQ] = ACTIONS(4015), + [anon_sym_BANG_EQ] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4008), + [sym_op_bitwise_or] = ACTIONS(4008), + [anon_sym_CARET] = ACTIONS(4015), + [sym_op_left_shift] = ACTIONS(4015), + [sym_op_right_shift] = ACTIONS(4008), + [sym_op_unsigned_right_shift] = ACTIONS(4015), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4008), + [sym_op_divide] = ACTIONS(4008), + [sym_op_modulo] = ACTIONS(4015), + [sym_op_coalescing] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(4008), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [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(4015), + [anon_sym_with] = ACTIONS(4008), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_if_token3] = ACTIONS(4015), + [aux_sym_preproc_else_token1] = ACTIONS(4015), + [aux_sym_preproc_elif_token1] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431985,35 +432007,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_file] = ACTIONS(3986), [anon_sym_LT] = ACTIONS(3991), [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(4037), + [anon_sym_where] = ACTIONS(3986), [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), [anon_sym_and] = ACTIONS(3991), [anon_sym_or] = ACTIONS(3991), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -432028,21 +432035,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(4037), - [anon_sym_into] = ACTIONS(3986), - [anon_sym_join] = ACTIONS(4037), - [anon_sym_on] = ACTIONS(3986), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(4037), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(4037), [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(4037), - [anon_sym_orderby] = ACTIONS(4037), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), [anon_sym_ascending] = ACTIONS(3986), [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(4037), + [anon_sym_group] = ACTIONS(3986), [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(4037), + [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3991), [anon_sym_is] = ACTIONS(3991), [anon_sym_DASH_GT] = ACTIONS(4034), @@ -432069,78 +432091,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2411), [sym_preproc_define] = STATE(2411), [sym_preproc_undef] = STATE(2411), - [sym__identifier_token] = ACTIONS(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_SEMI] = ACTIONS(4017), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_COLON] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_RBRACK] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_RPAREN] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [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_BANG] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4017), - [anon_sym_SLASH] = ACTIONS(4008), - [anon_sym_PERCENT] = ACTIONS(4017), - [anon_sym_CARET] = ACTIONS(4017), - [anon_sym_PIPE] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(4017), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_GT_GT_GT] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4017), - [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(4017), - [anon_sym_and] = ACTIONS(4008), - [anon_sym_or] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [sym_op_coalescing] = ACTIONS(4017), - [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(4017), - [anon_sym_with] = ACTIONS(4008), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_if_token3] = ACTIONS(4017), - [aux_sym_preproc_else_token1] = ACTIONS(4017), - [aux_sym_preproc_elif_token1] = ACTIONS(4017), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4034), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(3986), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_ascending] = ACTIONS(3986), + [anon_sym_descending] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(4037), + [anon_sym_select] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(4034), + [anon_sym_with] = ACTIONS(3991), + [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432165,75 +432187,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4008), [anon_sym_alias] = ACTIONS(4008), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), + [anon_sym_switch] = ACTIONS(4013), [anon_sym_when] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4019), + [anon_sym_into] = ACTIONS(4017), [anon_sym_join] = ACTIONS(4008), [anon_sym_on] = ACTIONS(4008), - [anon_sym_equals] = ACTIONS(4019), + [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_by] = ACTIONS(4017), [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432255,6 +432277,99 @@ 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(4395), + [anon_sym_alias] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_global] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_RBRACK] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_RBRACE] = ACTIONS(4397), + [anon_sym_file] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4395), + [anon_sym_GT] = ACTIONS(4395), + [anon_sym_in] = ACTIONS(4395), + [anon_sym_where] = ACTIONS(4395), + [anon_sym_QMARK] = ACTIONS(4395), + [anon_sym_notnull] = ACTIONS(4395), + [anon_sym_unmanaged] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_scoped] = ACTIONS(4395), + [anon_sym_EQ_GT] = ACTIONS(4399), + [anon_sym_var] = ACTIONS(4395), + [anon_sym_STAR] = ACTIONS(4397), + [anon_sym_yield] = ACTIONS(4395), + [anon_sym_switch] = ACTIONS(4395), + [anon_sym_when] = ACTIONS(4395), + [sym_discard] = ACTIONS(4395), + [anon_sym_DOT_DOT] = ACTIONS(4397), + [anon_sym_LT_EQ] = ACTIONS(4397), + [anon_sym_GT_EQ] = ACTIONS(4397), + [anon_sym_and] = ACTIONS(4395), + [anon_sym_or] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_AMP_AMP] = ACTIONS(4397), + [anon_sym_PIPE_PIPE] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4395), + [sym_op_bitwise_or] = ACTIONS(4395), + [anon_sym_CARET] = ACTIONS(4397), + [sym_op_left_shift] = ACTIONS(4397), + [sym_op_right_shift] = ACTIONS(4395), + [sym_op_unsigned_right_shift] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4395), + [anon_sym_DASH] = ACTIONS(4395), + [sym_op_divide] = ACTIONS(4395), + [sym_op_modulo] = ACTIONS(4397), + [sym_op_coalescing] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4397), + [anon_sym_from] = ACTIONS(4395), + [anon_sym_into] = ACTIONS(4395), + [anon_sym_join] = ACTIONS(4395), + [anon_sym_on] = ACTIONS(4395), + [anon_sym_equals] = ACTIONS(4395), + [anon_sym_let] = ACTIONS(4395), + [anon_sym_orderby] = ACTIONS(4395), + [anon_sym_ascending] = ACTIONS(4395), + [anon_sym_descending] = ACTIONS(4395), + [anon_sym_group] = ACTIONS(4395), + [anon_sym_by] = ACTIONS(4395), + [anon_sym_select] = ACTIONS(4395), + [anon_sym_as] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4395), + [anon_sym_DASH_GT] = ACTIONS(4397), + [anon_sym_with] = ACTIONS(4395), + [sym_grit_metavariable] = ACTIONS(4397), + [aux_sym_preproc_if_token3] = ACTIONS(4397), + [aux_sym_preproc_else_token1] = ACTIONS(4397), + [aux_sym_preproc_elif_token1] = ACTIONS(4397), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2414] = { + [sym_preproc_region] = STATE(2414), + [sym_preproc_endregion] = STATE(2414), + [sym_preproc_line] = STATE(2414), + [sym_preproc_pragma] = STATE(2414), + [sym_preproc_nullable] = STATE(2414), + [sym_preproc_error] = STATE(2414), + [sym_preproc_warning] = STATE(2414), + [sym_preproc_define] = STATE(2414), + [sym_preproc_undef] = STATE(2414), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -432268,31 +432383,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), [anon_sym_and] = ACTIONS(3991), [anon_sym_or] = ACTIONS(3991), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -432307,11 +432407,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(4037), - [anon_sym_into] = ACTIONS(4037), + [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(4037), [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), @@ -432338,99 +432453,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2414] = { - [sym_preproc_region] = STATE(2414), - [sym_preproc_endregion] = STATE(2414), - [sym_preproc_line] = STATE(2414), - [sym_preproc_pragma] = STATE(2414), - [sym_preproc_nullable] = STATE(2414), - [sym_preproc_error] = STATE(2414), - [sym_preproc_warning] = STATE(2414), - [sym_preproc_define] = STATE(2414), - [sym_preproc_undef] = STATE(2414), - [sym__identifier_token] = ACTIONS(4422), - [anon_sym_alias] = ACTIONS(4422), - [anon_sym_SEMI] = ACTIONS(4424), - [anon_sym_global] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4424), - [anon_sym_COLON] = ACTIONS(4424), - [anon_sym_COMMA] = ACTIONS(4424), - [anon_sym_RBRACK] = ACTIONS(4424), - [anon_sym_LPAREN] = ACTIONS(4424), - [anon_sym_RPAREN] = ACTIONS(4424), - [anon_sym_LBRACE] = ACTIONS(4424), - [anon_sym_RBRACE] = ACTIONS(4424), - [anon_sym_file] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4422), - [anon_sym_GT] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4422), - [anon_sym_where] = ACTIONS(4422), - [anon_sym_QMARK] = ACTIONS(4422), - [anon_sym_notnull] = ACTIONS(4422), - [anon_sym_unmanaged] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4424), - [anon_sym_DASH_DASH] = ACTIONS(4424), - [anon_sym_PLUS] = ACTIONS(4422), - [anon_sym_DASH] = ACTIONS(4422), - [anon_sym_STAR] = ACTIONS(4424), - [anon_sym_SLASH] = ACTIONS(4422), - [anon_sym_PERCENT] = ACTIONS(4424), - [anon_sym_CARET] = ACTIONS(4424), - [anon_sym_PIPE] = ACTIONS(4422), - [anon_sym_AMP] = ACTIONS(4422), - [anon_sym_LT_LT] = ACTIONS(4424), - [anon_sym_GT_GT] = ACTIONS(4422), - [anon_sym_GT_GT_GT] = ACTIONS(4424), - [anon_sym_EQ_EQ] = ACTIONS(4424), - [anon_sym_BANG_EQ] = ACTIONS(4424), - [anon_sym_GT_EQ] = ACTIONS(4424), - [anon_sym_LT_EQ] = ACTIONS(4424), - [anon_sym_DOT] = ACTIONS(4422), - [anon_sym_scoped] = ACTIONS(4422), - [anon_sym_EQ_GT] = ACTIONS(4424), - [anon_sym_var] = ACTIONS(4422), - [anon_sym_yield] = ACTIONS(4422), - [anon_sym_switch] = ACTIONS(4422), - [anon_sym_when] = ACTIONS(4422), - [sym_discard] = ACTIONS(4422), - [anon_sym_DOT_DOT] = ACTIONS(4424), - [anon_sym_and] = ACTIONS(4422), - [anon_sym_or] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4424), - [anon_sym_PIPE_PIPE] = ACTIONS(4424), - [sym_op_coalescing] = ACTIONS(4424), - [anon_sym_from] = ACTIONS(4422), - [anon_sym_into] = ACTIONS(4422), - [anon_sym_join] = ACTIONS(4422), - [anon_sym_on] = ACTIONS(4422), - [anon_sym_equals] = ACTIONS(4422), - [anon_sym_let] = ACTIONS(4422), - [anon_sym_orderby] = ACTIONS(4422), - [anon_sym_ascending] = ACTIONS(4422), - [anon_sym_descending] = ACTIONS(4422), - [anon_sym_group] = ACTIONS(4422), - [anon_sym_by] = ACTIONS(4422), - [anon_sym_select] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4422), - [anon_sym_DASH_GT] = ACTIONS(4424), - [anon_sym_with] = ACTIONS(4422), - [sym_grit_metavariable] = ACTIONS(4424), - [aux_sym_preproc_if_token3] = ACTIONS(4424), - [aux_sym_preproc_else_token1] = ACTIONS(4424), - [aux_sym_preproc_elif_token1] = ACTIONS(4424), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2415] = { [sym_preproc_region] = STATE(2415), [sym_preproc_endregion] = STATE(2415), @@ -432441,78 +432463,78 @@ 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), - [sym__identifier_token] = ACTIONS(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(3991), - [anon_sym_or] = ACTIONS(3991), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(4037), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(4037), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4034), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432525,6 +432547,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2416] = { + [sym_modifier] = STATE(3484), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6408), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2416), [sym_preproc_endregion] = STATE(2416), [sym_preproc_line] = STATE(2416), @@ -432534,78 +432575,59 @@ 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(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3232), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(65), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(4264), + [anon_sym_ref] = ACTIONS(4266), + [anon_sym_struct] = ACTIONS(4268), + [anon_sym_enum] = ACTIONS(4405), + [anon_sym_interface] = ACTIONS(4272), + [anon_sym_delegate] = ACTIONS(4274), + [anon_sym_record] = ACTIONS(4276), + [anon_sym_public] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(4407), + [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_protected] = 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(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432627,78 +432649,78 @@ 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(4430), - [anon_sym_alias] = ACTIONS(4430), - [anon_sym_SEMI] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4430), - [anon_sym_LBRACK] = ACTIONS(4432), - [anon_sym_COLON] = ACTIONS(4432), - [anon_sym_COMMA] = ACTIONS(4432), - [anon_sym_RBRACK] = ACTIONS(4432), - [anon_sym_LPAREN] = ACTIONS(4432), - [anon_sym_RPAREN] = ACTIONS(4432), - [anon_sym_LBRACE] = ACTIONS(4432), - [anon_sym_RBRACE] = ACTIONS(4432), - [anon_sym_file] = ACTIONS(4430), - [anon_sym_LT] = ACTIONS(4430), - [anon_sym_GT] = ACTIONS(4430), - [anon_sym_in] = ACTIONS(4430), - [anon_sym_where] = ACTIONS(4430), - [anon_sym_QMARK] = ACTIONS(4430), - [anon_sym_notnull] = ACTIONS(4430), - [anon_sym_unmanaged] = ACTIONS(4430), - [anon_sym_BANG] = ACTIONS(4430), - [anon_sym_PLUS_PLUS] = ACTIONS(4432), - [anon_sym_DASH_DASH] = ACTIONS(4432), - [anon_sym_PLUS] = ACTIONS(4430), - [anon_sym_DASH] = ACTIONS(4430), - [anon_sym_STAR] = ACTIONS(4432), - [anon_sym_SLASH] = ACTIONS(4430), - [anon_sym_PERCENT] = ACTIONS(4432), - [anon_sym_CARET] = ACTIONS(4432), - [anon_sym_PIPE] = ACTIONS(4430), - [anon_sym_AMP] = ACTIONS(4430), - [anon_sym_LT_LT] = ACTIONS(4432), - [anon_sym_GT_GT] = ACTIONS(4430), - [anon_sym_GT_GT_GT] = ACTIONS(4432), - [anon_sym_EQ_EQ] = ACTIONS(4432), - [anon_sym_BANG_EQ] = ACTIONS(4432), - [anon_sym_GT_EQ] = ACTIONS(4432), - [anon_sym_LT_EQ] = ACTIONS(4432), - [anon_sym_DOT] = ACTIONS(4430), - [anon_sym_scoped] = ACTIONS(4430), - [anon_sym_EQ_GT] = ACTIONS(4432), - [anon_sym_var] = ACTIONS(4430), - [anon_sym_yield] = ACTIONS(4430), - [anon_sym_switch] = ACTIONS(4430), - [anon_sym_when] = ACTIONS(4430), - [sym_discard] = ACTIONS(4430), - [anon_sym_DOT_DOT] = ACTIONS(4432), - [anon_sym_and] = ACTIONS(4430), - [anon_sym_or] = ACTIONS(4430), - [anon_sym_AMP_AMP] = ACTIONS(4432), - [anon_sym_PIPE_PIPE] = ACTIONS(4432), - [sym_op_coalescing] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4430), - [anon_sym_into] = ACTIONS(4430), - [anon_sym_join] = ACTIONS(4430), - [anon_sym_on] = ACTIONS(4430), - [anon_sym_equals] = ACTIONS(4430), - [anon_sym_let] = ACTIONS(4430), - [anon_sym_orderby] = ACTIONS(4430), - [anon_sym_ascending] = ACTIONS(4430), - [anon_sym_descending] = ACTIONS(4430), - [anon_sym_group] = ACTIONS(4430), - [anon_sym_by] = ACTIONS(4430), - [anon_sym_select] = ACTIONS(4430), - [anon_sym_as] = ACTIONS(4430), - [anon_sym_is] = ACTIONS(4430), - [anon_sym_DASH_GT] = ACTIONS(4432), - [anon_sym_with] = ACTIONS(4430), - [sym_grit_metavariable] = ACTIONS(4432), - [aux_sym_preproc_if_token3] = ACTIONS(4432), - [aux_sym_preproc_else_token1] = ACTIONS(4432), - [aux_sym_preproc_elif_token1] = ACTIONS(4432), + [sym__identifier_token] = ACTIONS(3974), + [anon_sym_alias] = ACTIONS(3974), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_global] = ACTIONS(3974), + [anon_sym_LBRACK] = ACTIONS(3976), + [anon_sym_COLON] = ACTIONS(3976), + [anon_sym_COMMA] = ACTIONS(3976), + [anon_sym_RBRACK] = ACTIONS(3976), + [anon_sym_LPAREN] = ACTIONS(3976), + [anon_sym_RPAREN] = ACTIONS(3976), + [anon_sym_LBRACE] = ACTIONS(3976), + [anon_sym_RBRACE] = ACTIONS(3976), + [anon_sym_file] = ACTIONS(3974), + [anon_sym_LT] = ACTIONS(3974), + [anon_sym_GT] = ACTIONS(3974), + [anon_sym_in] = ACTIONS(3974), + [anon_sym_where] = ACTIONS(3974), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_notnull] = ACTIONS(3974), + [anon_sym_unmanaged] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3974), + [anon_sym_scoped] = ACTIONS(3974), + [anon_sym_EQ_GT] = ACTIONS(3976), + [anon_sym_var] = ACTIONS(3974), + [anon_sym_STAR] = ACTIONS(3976), + [anon_sym_yield] = ACTIONS(3974), + [anon_sym_switch] = ACTIONS(3974), + [anon_sym_when] = ACTIONS(3974), + [sym_discard] = ACTIONS(3974), + [anon_sym_DOT_DOT] = ACTIONS(3976), + [anon_sym_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_EQ] = ACTIONS(3976), + [anon_sym_and] = ACTIONS(3974), + [anon_sym_or] = ACTIONS(3974), + [anon_sym_EQ_EQ] = ACTIONS(3976), + [anon_sym_BANG_EQ] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [sym_op_bitwise_or] = ACTIONS(3974), + [anon_sym_CARET] = ACTIONS(3976), + [sym_op_left_shift] = ACTIONS(3976), + [sym_op_right_shift] = ACTIONS(3974), + [sym_op_unsigned_right_shift] = ACTIONS(3976), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [sym_op_divide] = ACTIONS(3974), + [sym_op_modulo] = ACTIONS(3976), + [sym_op_coalescing] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3974), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_from] = ACTIONS(3974), + [anon_sym_into] = ACTIONS(3974), + [anon_sym_join] = ACTIONS(3974), + [anon_sym_on] = ACTIONS(3974), + [anon_sym_equals] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3974), + [anon_sym_orderby] = ACTIONS(3974), + [anon_sym_ascending] = ACTIONS(3974), + [anon_sym_descending] = ACTIONS(3974), + [anon_sym_group] = ACTIONS(3974), + [anon_sym_by] = ACTIONS(3974), + [anon_sym_select] = ACTIONS(3974), + [anon_sym_as] = ACTIONS(3974), + [anon_sym_is] = ACTIONS(3974), + [anon_sym_DASH_GT] = ACTIONS(3976), + [anon_sym_with] = ACTIONS(3974), + [sym_grit_metavariable] = ACTIONS(3976), + [aux_sym_preproc_if_token3] = ACTIONS(3976), + [aux_sym_preproc_else_token1] = ACTIONS(3976), + [aux_sym_preproc_elif_token1] = ACTIONS(3976), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432720,78 +432742,78 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_when] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [anon_sym_from] = ACTIONS(4019), - [anon_sym_into] = ACTIONS(4019), - [anon_sym_join] = ACTIONS(4019), - [anon_sym_on] = ACTIONS(4008), - [anon_sym_equals] = ACTIONS(4008), - [anon_sym_let] = ACTIONS(4019), - [anon_sym_orderby] = ACTIONS(4019), - [anon_sym_ascending] = ACTIONS(4008), - [anon_sym_descending] = ACTIONS(4008), - [anon_sym_group] = ACTIONS(4019), - [anon_sym_by] = ACTIONS(4008), - [anon_sym_select] = ACTIONS(4019), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [sym__identifier_token] = ACTIONS(4409), + [anon_sym_alias] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_global] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_COLON] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_RBRACK] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_RPAREN] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4411), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_file] = ACTIONS(4409), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4409), + [anon_sym_QMARK] = ACTIONS(4409), + [anon_sym_notnull] = ACTIONS(4409), + [anon_sym_unmanaged] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_scoped] = ACTIONS(4409), + [anon_sym_EQ_GT] = ACTIONS(4411), + [anon_sym_var] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_yield] = ACTIONS(4409), + [anon_sym_switch] = ACTIONS(4409), + [anon_sym_when] = ACTIONS(4409), + [sym_discard] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_and] = ACTIONS(4409), + [anon_sym_or] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4409), + [sym_op_bitwise_or] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4411), + [sym_op_left_shift] = ACTIONS(4411), + [sym_op_right_shift] = ACTIONS(4409), + [sym_op_unsigned_right_shift] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [sym_op_divide] = ACTIONS(4409), + [sym_op_modulo] = ACTIONS(4411), + [sym_op_coalescing] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [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), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_DASH_GT] = ACTIONS(4411), + [anon_sym_with] = ACTIONS(4409), + [sym_grit_metavariable] = ACTIONS(4411), + [aux_sym_preproc_if_token3] = ACTIONS(4411), + [aux_sym_preproc_else_token1] = ACTIONS(4411), + [aux_sym_preproc_elif_token1] = ACTIONS(4411), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432804,6 +432826,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2419] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2546), + [sym_property_pattern_clause] = STATE(2614), + [sym__variable_designation] = STATE(5759), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5625), + [sym__reserved_identifier] = STATE(5562), [sym_preproc_region] = STATE(2419), [sym_preproc_endregion] = STATE(2419), [sym_preproc_line] = STATE(2419), @@ -432813,78 +432843,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2419), [sym_preproc_define] = STATE(2419), [sym_preproc_undef] = STATE(2419), - [sym__identifier_token] = ACTIONS(4434), - [anon_sym_alias] = ACTIONS(4434), - [anon_sym_SEMI] = ACTIONS(4436), - [anon_sym_global] = ACTIONS(4434), - [anon_sym_LBRACK] = ACTIONS(4436), - [anon_sym_COLON] = ACTIONS(4436), - [anon_sym_COMMA] = ACTIONS(4436), - [anon_sym_RBRACK] = ACTIONS(4436), - [anon_sym_LPAREN] = ACTIONS(4436), - [anon_sym_RPAREN] = ACTIONS(4436), - [anon_sym_LBRACE] = ACTIONS(4436), - [anon_sym_RBRACE] = ACTIONS(4436), - [anon_sym_file] = ACTIONS(4434), - [anon_sym_LT] = ACTIONS(4434), - [anon_sym_GT] = ACTIONS(4434), - [anon_sym_in] = ACTIONS(4434), - [anon_sym_where] = ACTIONS(4434), - [anon_sym_QMARK] = ACTIONS(4434), - [anon_sym_notnull] = ACTIONS(4434), - [anon_sym_unmanaged] = ACTIONS(4434), - [anon_sym_BANG] = ACTIONS(4434), - [anon_sym_PLUS_PLUS] = ACTIONS(4436), - [anon_sym_DASH_DASH] = ACTIONS(4436), - [anon_sym_PLUS] = ACTIONS(4434), - [anon_sym_DASH] = ACTIONS(4434), - [anon_sym_STAR] = ACTIONS(4436), - [anon_sym_SLASH] = ACTIONS(4434), - [anon_sym_PERCENT] = ACTIONS(4436), - [anon_sym_CARET] = ACTIONS(4436), - [anon_sym_PIPE] = ACTIONS(4434), - [anon_sym_AMP] = ACTIONS(4434), - [anon_sym_LT_LT] = ACTIONS(4436), - [anon_sym_GT_GT] = ACTIONS(4434), - [anon_sym_GT_GT_GT] = ACTIONS(4436), - [anon_sym_EQ_EQ] = ACTIONS(4436), - [anon_sym_BANG_EQ] = ACTIONS(4436), - [anon_sym_GT_EQ] = ACTIONS(4436), - [anon_sym_LT_EQ] = ACTIONS(4436), - [anon_sym_DOT] = ACTIONS(4434), - [anon_sym_scoped] = ACTIONS(4434), - [anon_sym_EQ_GT] = ACTIONS(4436), - [anon_sym_var] = ACTIONS(4434), - [anon_sym_yield] = ACTIONS(4434), - [anon_sym_switch] = ACTIONS(4434), - [anon_sym_when] = ACTIONS(4434), - [sym_discard] = ACTIONS(4434), - [anon_sym_DOT_DOT] = ACTIONS(4436), - [anon_sym_and] = ACTIONS(4434), - [anon_sym_or] = ACTIONS(4434), - [anon_sym_AMP_AMP] = ACTIONS(4436), - [anon_sym_PIPE_PIPE] = ACTIONS(4436), - [sym_op_coalescing] = ACTIONS(4436), - [anon_sym_from] = ACTIONS(4434), - [anon_sym_into] = ACTIONS(4434), - [anon_sym_join] = ACTIONS(4434), - [anon_sym_on] = ACTIONS(4434), - [anon_sym_equals] = ACTIONS(4434), - [anon_sym_let] = ACTIONS(4434), - [anon_sym_orderby] = ACTIONS(4434), - [anon_sym_ascending] = ACTIONS(4434), - [anon_sym_descending] = ACTIONS(4434), - [anon_sym_group] = ACTIONS(4434), - [anon_sym_by] = ACTIONS(4434), - [anon_sym_select] = ACTIONS(4434), - [anon_sym_as] = ACTIONS(4434), - [anon_sym_is] = ACTIONS(4434), - [anon_sym_DASH_GT] = ACTIONS(4436), - [anon_sym_with] = ACTIONS(4434), - [sym_grit_metavariable] = ACTIONS(4436), - [aux_sym_preproc_if_token3] = ACTIONS(4436), - [aux_sym_preproc_else_token1] = ACTIONS(4436), - [aux_sym_preproc_elif_token1] = ACTIONS(4436), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_COLON] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4228), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432895,8 +432916,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4232), }, [2420] = { + [sym__name] = STATE(2471), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(2392), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2420), [sym_preproc_endregion] = STATE(2420), [sym_preproc_line] = STATE(2420), @@ -432906,78 +432937,69 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_when] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4019), - [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(4019), - [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4427), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3868), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4425), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3868), + [anon_sym_into] = ACTIONS(4425), + [anon_sym_join] = ACTIONS(3868), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(3868), + [anon_sym_orderby] = ACTIONS(3868), + [anon_sym_ascending] = ACTIONS(3868), + [anon_sym_descending] = ACTIONS(3868), + [anon_sym_group] = ACTIONS(3868), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(3868), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432999,78 +433021,78 @@ 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(4438), - [anon_sym_alias] = ACTIONS(4438), - [anon_sym_SEMI] = ACTIONS(4440), - [anon_sym_global] = ACTIONS(4438), - [anon_sym_LBRACK] = ACTIONS(4440), - [anon_sym_COLON] = ACTIONS(4440), - [anon_sym_COMMA] = ACTIONS(4440), - [anon_sym_RBRACK] = ACTIONS(4440), - [anon_sym_LPAREN] = ACTIONS(4440), - [anon_sym_RPAREN] = ACTIONS(4440), - [anon_sym_LBRACE] = ACTIONS(4440), - [anon_sym_RBRACE] = ACTIONS(4440), - [anon_sym_file] = ACTIONS(4438), - [anon_sym_LT] = ACTIONS(4438), - [anon_sym_GT] = ACTIONS(4438), - [anon_sym_in] = ACTIONS(4438), - [anon_sym_where] = ACTIONS(4438), - [anon_sym_QMARK] = ACTIONS(4438), - [anon_sym_notnull] = ACTIONS(4438), - [anon_sym_unmanaged] = ACTIONS(4438), - [anon_sym_BANG] = ACTIONS(4438), - [anon_sym_PLUS_PLUS] = ACTIONS(4440), - [anon_sym_DASH_DASH] = ACTIONS(4440), - [anon_sym_PLUS] = ACTIONS(4438), - [anon_sym_DASH] = ACTIONS(4438), - [anon_sym_STAR] = ACTIONS(4440), - [anon_sym_SLASH] = ACTIONS(4438), - [anon_sym_PERCENT] = ACTIONS(4440), - [anon_sym_CARET] = ACTIONS(4440), - [anon_sym_PIPE] = ACTIONS(4438), - [anon_sym_AMP] = ACTIONS(4438), - [anon_sym_LT_LT] = ACTIONS(4440), - [anon_sym_GT_GT] = ACTIONS(4438), - [anon_sym_GT_GT_GT] = ACTIONS(4440), - [anon_sym_EQ_EQ] = ACTIONS(4440), - [anon_sym_BANG_EQ] = ACTIONS(4440), - [anon_sym_GT_EQ] = ACTIONS(4440), - [anon_sym_LT_EQ] = ACTIONS(4440), - [anon_sym_DOT] = ACTIONS(4438), - [anon_sym_scoped] = ACTIONS(4438), - [anon_sym_EQ_GT] = ACTIONS(4440), - [anon_sym_var] = ACTIONS(4438), - [anon_sym_yield] = ACTIONS(4438), - [anon_sym_switch] = ACTIONS(4438), - [anon_sym_when] = ACTIONS(4438), - [sym_discard] = ACTIONS(4438), - [anon_sym_DOT_DOT] = ACTIONS(4440), - [anon_sym_and] = ACTIONS(4438), - [anon_sym_or] = ACTIONS(4438), - [anon_sym_AMP_AMP] = ACTIONS(4440), - [anon_sym_PIPE_PIPE] = ACTIONS(4440), - [sym_op_coalescing] = ACTIONS(4440), - [anon_sym_from] = ACTIONS(4438), - [anon_sym_into] = ACTIONS(4438), - [anon_sym_join] = ACTIONS(4438), - [anon_sym_on] = ACTIONS(4438), - [anon_sym_equals] = ACTIONS(4438), - [anon_sym_let] = ACTIONS(4438), - [anon_sym_orderby] = ACTIONS(4438), - [anon_sym_ascending] = ACTIONS(4438), - [anon_sym_descending] = ACTIONS(4438), - [anon_sym_group] = ACTIONS(4438), - [anon_sym_by] = ACTIONS(4438), - [anon_sym_select] = ACTIONS(4438), - [anon_sym_as] = ACTIONS(4438), - [anon_sym_is] = ACTIONS(4438), - [anon_sym_DASH_GT] = ACTIONS(4440), - [anon_sym_with] = ACTIONS(4438), - [sym_grit_metavariable] = ACTIONS(4440), - [aux_sym_preproc_if_token3] = ACTIONS(4440), - [aux_sym_preproc_else_token1] = ACTIONS(4440), - [aux_sym_preproc_elif_token1] = ACTIONS(4440), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4034), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(3986), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(4037), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_ascending] = ACTIONS(3986), + [anon_sym_descending] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(4034), + [anon_sym_with] = ACTIONS(3991), + [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433083,14 +433105,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2422] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2566), - [sym_property_pattern_clause] = STATE(2641), - [sym__variable_designation] = STATE(5704), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5640), - [sym__reserved_identifier] = STATE(5570), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2531), + [sym_property_pattern_clause] = STATE(2610), + [sym__variable_designation] = STATE(5759), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5625), + [sym__reserved_identifier] = STATE(5562), [sym_preproc_region] = STATE(2422), [sym_preproc_endregion] = STATE(2422), [sym_preproc_line] = STATE(2422), @@ -433100,91 +433122,90 @@ 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(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4397), - [anon_sym_into] = ACTIONS(4224), - [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), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4403), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4222), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_COLON] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4415), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4421), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4232), }, [2423] = { - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_ref_type] = STATE(4779), - [sym__scoped_base_type] = STATE(4778), - [sym_identifier] = STATE(5740), - [sym__reserved_identifier] = STATE(4662), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2531), + [sym_property_pattern_clause] = STATE(2610), + [sym__variable_designation] = STATE(5759), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5625), + [sym__reserved_identifier] = STATE(5562), [sym_preproc_region] = STATE(2423), [sym_preproc_endregion] = STATE(2423), [sym_preproc_line] = STATE(2423), @@ -433194,69 +433215,69 @@ 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(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4415), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433267,16 +433288,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(4220), }, [2424] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2566), - [sym_property_pattern_clause] = STATE(2641), - [sym__variable_designation] = STATE(5704), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5640), - [sym__reserved_identifier] = STATE(5570), [sym_preproc_region] = STATE(2424), [sym_preproc_endregion] = STATE(2424), [sym_preproc_line] = STATE(2424), @@ -433286,69 +433300,78 @@ 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(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4397), - [anon_sym_into] = ACTIONS(4216), - [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), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4403), + [sym__identifier_token] = ACTIONS(3959), + [anon_sym_alias] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3959), + [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_LBRACE] = ACTIONS(3961), + [anon_sym_RBRACE] = ACTIONS(3961), + [anon_sym_file] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_GT] = ACTIONS(3959), + [anon_sym_in] = ACTIONS(3959), + [anon_sym_where] = ACTIONS(3959), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_notnull] = ACTIONS(3959), + [anon_sym_unmanaged] = ACTIONS(3959), + [anon_sym_DOT] = ACTIONS(3959), + [anon_sym_scoped] = ACTIONS(3959), + [anon_sym_EQ_GT] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3959), + [anon_sym_switch] = ACTIONS(3959), + [anon_sym_when] = ACTIONS(3959), + [sym_discard] = ACTIONS(3959), + [anon_sym_DOT_DOT] = ACTIONS(3961), + [anon_sym_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_EQ] = ACTIONS(3961), + [anon_sym_and] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3959), + [anon_sym_EQ_EQ] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [sym_op_bitwise_or] = ACTIONS(3959), + [anon_sym_CARET] = ACTIONS(3961), + [sym_op_left_shift] = ACTIONS(3961), + [sym_op_right_shift] = ACTIONS(3959), + [sym_op_unsigned_right_shift] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3959), + [sym_op_divide] = ACTIONS(3959), + [sym_op_modulo] = ACTIONS(3961), + [sym_op_coalescing] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3959), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_from] = ACTIONS(3959), + [anon_sym_into] = ACTIONS(3959), + [anon_sym_join] = ACTIONS(3959), + [anon_sym_on] = ACTIONS(3959), + [anon_sym_equals] = ACTIONS(3959), + [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(3959), + [anon_sym_select] = ACTIONS(3959), + [anon_sym_as] = ACTIONS(3959), + [anon_sym_is] = ACTIONS(3959), + [anon_sym_DASH_GT] = ACTIONS(3961), + [anon_sym_with] = ACTIONS(3959), + [sym_grit_metavariable] = ACTIONS(3961), + [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), @@ -433359,7 +433382,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(4212), }, [2425] = { [sym_preproc_region] = STATE(2425), @@ -433371,78 +433393,78 @@ 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(4260), - [anon_sym_alias] = ACTIONS(4260), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_global] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_COLON] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_RBRACK] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4262), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_file] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(4260), - [anon_sym_QMARK] = ACTIONS(4260), - [anon_sym_notnull] = ACTIONS(4260), - [anon_sym_unmanaged] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_CARET] = ACTIONS(4262), - [anon_sym_PIPE] = ACTIONS(4260), - [anon_sym_AMP] = ACTIONS(4260), - [anon_sym_LT_LT] = ACTIONS(4262), - [anon_sym_GT_GT] = ACTIONS(4260), - [anon_sym_GT_GT_GT] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_scoped] = ACTIONS(4260), - [anon_sym_EQ_GT] = ACTIONS(4262), - [anon_sym_var] = ACTIONS(4260), - [anon_sym_yield] = ACTIONS(4260), - [anon_sym_switch] = ACTIONS(4260), - [anon_sym_when] = ACTIONS(4260), - [sym_discard] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_and] = ACTIONS(4260), - [anon_sym_or] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [sym_op_coalescing] = ACTIONS(4262), - [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), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_DASH_GT] = ACTIONS(4262), - [anon_sym_with] = ACTIONS(4260), - [sym_grit_metavariable] = 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(4280), + [anon_sym_alias] = ACTIONS(4280), + [anon_sym_SEMI] = ACTIONS(4282), + [anon_sym_global] = ACTIONS(4280), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_COLON] = ACTIONS(4282), + [anon_sym_COMMA] = ACTIONS(4282), + [anon_sym_RBRACK] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_RPAREN] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4282), + [anon_sym_file] = ACTIONS(4280), + [anon_sym_LT] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4280), + [anon_sym_in] = ACTIONS(4280), + [anon_sym_where] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_notnull] = ACTIONS(4280), + [anon_sym_unmanaged] = ACTIONS(4280), + [anon_sym_DOT] = ACTIONS(4280), + [anon_sym_scoped] = ACTIONS(4280), + [anon_sym_EQ_GT] = ACTIONS(4282), + [anon_sym_var] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_yield] = ACTIONS(4280), + [anon_sym_switch] = ACTIONS(4280), + [anon_sym_when] = ACTIONS(4280), + [sym_discard] = ACTIONS(4280), + [anon_sym_DOT_DOT] = ACTIONS(4282), + [anon_sym_LT_EQ] = ACTIONS(4282), + [anon_sym_GT_EQ] = ACTIONS(4282), + [anon_sym_and] = ACTIONS(4280), + [anon_sym_or] = ACTIONS(4280), + [anon_sym_EQ_EQ] = ACTIONS(4282), + [anon_sym_BANG_EQ] = ACTIONS(4282), + [anon_sym_AMP_AMP] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4282), + [anon_sym_AMP] = ACTIONS(4280), + [sym_op_bitwise_or] = ACTIONS(4280), + [anon_sym_CARET] = ACTIONS(4282), + [sym_op_left_shift] = ACTIONS(4282), + [sym_op_right_shift] = ACTIONS(4280), + [sym_op_unsigned_right_shift] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + [sym_op_divide] = ACTIONS(4280), + [sym_op_modulo] = ACTIONS(4282), + [sym_op_coalescing] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [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), + [anon_sym_as] = ACTIONS(4280), + [anon_sym_is] = ACTIONS(4280), + [anon_sym_DASH_GT] = ACTIONS(4282), + [anon_sym_with] = ACTIONS(4280), + [sym_grit_metavariable] = ACTIONS(4282), + [aux_sym_preproc_if_token3] = ACTIONS(4282), + [aux_sym_preproc_else_token1] = ACTIONS(4282), + [aux_sym_preproc_elif_token1] = ACTIONS(4282), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433464,78 +433486,78 @@ 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(4444), - [anon_sym_alias] = ACTIONS(4444), - [anon_sym_SEMI] = ACTIONS(4446), - [anon_sym_global] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4446), - [anon_sym_COLON] = ACTIONS(4446), - [anon_sym_COMMA] = ACTIONS(4446), - [anon_sym_RBRACK] = ACTIONS(4446), - [anon_sym_LPAREN] = ACTIONS(4446), - [anon_sym_RPAREN] = ACTIONS(4446), - [anon_sym_LBRACE] = ACTIONS(4446), - [anon_sym_RBRACE] = ACTIONS(4446), - [anon_sym_file] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4444), - [anon_sym_GT] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4444), - [anon_sym_where] = ACTIONS(4444), - [anon_sym_QMARK] = ACTIONS(4444), - [anon_sym_notnull] = ACTIONS(4444), - [anon_sym_unmanaged] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4446), - [anon_sym_DASH_DASH] = ACTIONS(4446), - [anon_sym_PLUS] = ACTIONS(4444), - [anon_sym_DASH] = ACTIONS(4444), - [anon_sym_STAR] = ACTIONS(4446), - [anon_sym_SLASH] = ACTIONS(4444), - [anon_sym_PERCENT] = ACTIONS(4446), - [anon_sym_CARET] = ACTIONS(4446), - [anon_sym_PIPE] = ACTIONS(4444), - [anon_sym_AMP] = ACTIONS(4444), - [anon_sym_LT_LT] = ACTIONS(4446), - [anon_sym_GT_GT] = ACTIONS(4444), - [anon_sym_GT_GT_GT] = ACTIONS(4446), - [anon_sym_EQ_EQ] = ACTIONS(4446), - [anon_sym_BANG_EQ] = ACTIONS(4446), - [anon_sym_GT_EQ] = ACTIONS(4446), - [anon_sym_LT_EQ] = ACTIONS(4446), - [anon_sym_DOT] = ACTIONS(4444), - [anon_sym_scoped] = ACTIONS(4444), - [anon_sym_EQ_GT] = ACTIONS(4446), - [anon_sym_var] = ACTIONS(4444), - [anon_sym_yield] = ACTIONS(4444), - [anon_sym_switch] = ACTIONS(4444), - [anon_sym_when] = ACTIONS(4444), - [sym_discard] = ACTIONS(4444), - [anon_sym_DOT_DOT] = ACTIONS(4446), - [anon_sym_and] = ACTIONS(4444), - [anon_sym_or] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4446), - [anon_sym_PIPE_PIPE] = ACTIONS(4446), - [sym_op_coalescing] = ACTIONS(4446), - [anon_sym_from] = ACTIONS(4444), - [anon_sym_into] = ACTIONS(4444), - [anon_sym_join] = ACTIONS(4444), - [anon_sym_on] = ACTIONS(4444), - [anon_sym_equals] = ACTIONS(4444), - [anon_sym_let] = ACTIONS(4444), - [anon_sym_orderby] = ACTIONS(4444), - [anon_sym_ascending] = ACTIONS(4444), - [anon_sym_descending] = ACTIONS(4444), - [anon_sym_group] = ACTIONS(4444), - [anon_sym_by] = ACTIONS(4444), - [anon_sym_select] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4444), - [anon_sym_DASH_GT] = ACTIONS(4446), - [anon_sym_with] = ACTIONS(4444), - [sym_grit_metavariable] = ACTIONS(4446), - [aux_sym_preproc_if_token3] = ACTIONS(4446), - [aux_sym_preproc_else_token1] = ACTIONS(4446), - [aux_sym_preproc_elif_token1] = ACTIONS(4446), + [sym__identifier_token] = ACTIONS(3980), + [anon_sym_alias] = ACTIONS(3980), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_global] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_COLON] = ACTIONS(3982), + [anon_sym_COMMA] = ACTIONS(3982), + [anon_sym_RBRACK] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym_RPAREN] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3982), + [anon_sym_RBRACE] = ACTIONS(3982), + [anon_sym_file] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3980), + [anon_sym_GT] = ACTIONS(3980), + [anon_sym_in] = ACTIONS(3980), + [anon_sym_where] = ACTIONS(3980), + [anon_sym_QMARK] = ACTIONS(3980), + [anon_sym_notnull] = ACTIONS(3980), + [anon_sym_unmanaged] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_scoped] = ACTIONS(3980), + [anon_sym_EQ_GT] = ACTIONS(3982), + [anon_sym_var] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_yield] = ACTIONS(3980), + [anon_sym_switch] = ACTIONS(3980), + [anon_sym_when] = ACTIONS(3980), + [sym_discard] = ACTIONS(3980), + [anon_sym_DOT_DOT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_EQ] = ACTIONS(3982), + [anon_sym_and] = ACTIONS(3980), + [anon_sym_or] = ACTIONS(3980), + [anon_sym_EQ_EQ] = ACTIONS(3982), + [anon_sym_BANG_EQ] = ACTIONS(3982), + [anon_sym_AMP_AMP] = ACTIONS(3982), + [anon_sym_PIPE_PIPE] = ACTIONS(3982), + [anon_sym_AMP] = ACTIONS(3980), + [sym_op_bitwise_or] = ACTIONS(3980), + [anon_sym_CARET] = ACTIONS(3982), + [sym_op_left_shift] = ACTIONS(3982), + [sym_op_right_shift] = ACTIONS(3980), + [sym_op_unsigned_right_shift] = ACTIONS(3982), + [anon_sym_PLUS] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3980), + [sym_op_divide] = ACTIONS(3980), + [sym_op_modulo] = ACTIONS(3982), + [sym_op_coalescing] = ACTIONS(3982), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3982), + [anon_sym_from] = ACTIONS(3980), + [anon_sym_into] = ACTIONS(3980), + [anon_sym_join] = ACTIONS(3980), + [anon_sym_on] = ACTIONS(3980), + [anon_sym_equals] = ACTIONS(3980), + [anon_sym_let] = ACTIONS(3980), + [anon_sym_orderby] = ACTIONS(3980), + [anon_sym_ascending] = ACTIONS(3980), + [anon_sym_descending] = ACTIONS(3980), + [anon_sym_group] = ACTIONS(3980), + [anon_sym_by] = ACTIONS(3980), + [anon_sym_select] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(3980), + [anon_sym_is] = ACTIONS(3980), + [anon_sym_DASH_GT] = ACTIONS(3982), + [anon_sym_with] = ACTIONS(3980), + [sym_grit_metavariable] = ACTIONS(3982), + [aux_sym_preproc_if_token3] = ACTIONS(3982), + [aux_sym_preproc_else_token1] = ACTIONS(3982), + [aux_sym_preproc_elif_token1] = ACTIONS(3982), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433557,6 +433579,99 @@ 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(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [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(4017), + [anon_sym_select] = ACTIONS(4008), + [anon_sym_as] = ACTIONS(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2428] = { + [sym_preproc_region] = STATE(2428), + [sym_preproc_endregion] = STATE(2428), + [sym_preproc_line] = STATE(2428), + [sym_preproc_pragma] = STATE(2428), + [sym_preproc_nullable] = STATE(2428), + [sym_preproc_error] = STATE(2428), + [sym_preproc_warning] = STATE(2428), + [sym_preproc_define] = STATE(2428), + [sym_preproc_undef] = STATE(2428), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -433570,31 +433685,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), [anon_sym_scoped] = ACTIONS(3986), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), [anon_sym_yield] = ACTIONS(3986), [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3986), [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), [anon_sym_and] = ACTIONS(3991), [anon_sym_or] = ACTIONS(3991), [anon_sym_PLUS_EQ] = ACTIONS(4006), @@ -433609,14 +433709,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(4037), + [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(4037), + [anon_sym_on] = ACTIONS(4037), + [anon_sym_equals] = ACTIONS(3986), [anon_sym_let] = ACTIONS(3986), [anon_sym_orderby] = ACTIONS(3986), [anon_sym_ascending] = ACTIONS(3986), @@ -433640,99 +433755,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2428] = { - [sym__name] = STATE(2461), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(2392), - [sym__reserved_identifier] = STATE(2395), - [sym_preproc_region] = STATE(2428), - [sym_preproc_endregion] = STATE(2428), - [sym_preproc_line] = STATE(2428), - [sym_preproc_pragma] = STATE(2428), - [sym_preproc_nullable] = STATE(2428), - [sym_preproc_error] = STATE(2428), - [sym_preproc_warning] = STATE(2428), - [sym_preproc_define] = STATE(2428), - [sym_preproc_undef] = STATE(2428), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3883), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3883), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [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(4450), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3888), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2429] = { [sym_preproc_region] = STATE(2429), [sym_preproc_endregion] = STATE(2429), @@ -433743,78 +433765,78 @@ 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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(3991), - [anon_sym_or] = ACTIONS(3991), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(3986), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(4037), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4034), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), + [sym__identifier_token] = ACTIONS(3951), + [anon_sym_alias] = ACTIONS(3951), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_global] = ACTIONS(3951), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_file] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_in] = ACTIONS(3951), + [anon_sym_where] = ACTIONS(3951), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_notnull] = ACTIONS(3951), + [anon_sym_unmanaged] = ACTIONS(3951), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_scoped] = ACTIONS(3951), + [anon_sym_EQ_GT] = ACTIONS(3953), + [anon_sym_var] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_yield] = ACTIONS(3951), + [anon_sym_switch] = ACTIONS(3951), + [anon_sym_when] = ACTIONS(3951), + [sym_discard] = ACTIONS(3951), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3951), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP] = ACTIONS(3951), + [sym_op_bitwise_or] = ACTIONS(3951), + [anon_sym_CARET] = ACTIONS(3953), + [sym_op_left_shift] = ACTIONS(3953), + [sym_op_right_shift] = ACTIONS(3951), + [sym_op_unsigned_right_shift] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [sym_op_divide] = ACTIONS(3951), + [sym_op_modulo] = ACTIONS(3953), + [sym_op_coalescing] = ACTIONS(3953), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_from] = ACTIONS(3951), + [anon_sym_into] = ACTIONS(3951), + [anon_sym_join] = ACTIONS(3951), + [anon_sym_on] = ACTIONS(3951), + [anon_sym_equals] = ACTIONS(3951), + [anon_sym_let] = ACTIONS(3951), + [anon_sym_orderby] = ACTIONS(3951), + [anon_sym_ascending] = ACTIONS(3951), + [anon_sym_descending] = ACTIONS(3951), + [anon_sym_group] = ACTIONS(3951), + [anon_sym_by] = ACTIONS(3951), + [anon_sym_select] = ACTIONS(3951), + [anon_sym_as] = ACTIONS(3951), + [anon_sym_is] = ACTIONS(3951), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3951), + [sym_grit_metavariable] = ACTIONS(3953), + [aux_sym_preproc_if_token3] = ACTIONS(3953), + [aux_sym_preproc_else_token1] = ACTIONS(3953), + [aux_sym_preproc_elif_token1] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433836,78 +433858,78 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_when] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [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(4019), - [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [sym__identifier_token] = ACTIONS(4429), + [anon_sym_alias] = ACTIONS(4429), + [anon_sym_SEMI] = ACTIONS(4431), + [anon_sym_global] = ACTIONS(4429), + [anon_sym_LBRACK] = ACTIONS(4431), + [anon_sym_COLON] = ACTIONS(4431), + [anon_sym_COMMA] = ACTIONS(4431), + [anon_sym_RBRACK] = ACTIONS(4431), + [anon_sym_LPAREN] = ACTIONS(4431), + [anon_sym_RPAREN] = ACTIONS(4431), + [anon_sym_LBRACE] = ACTIONS(4431), + [anon_sym_RBRACE] = ACTIONS(4431), + [anon_sym_file] = ACTIONS(4429), + [anon_sym_LT] = ACTIONS(4429), + [anon_sym_GT] = ACTIONS(4429), + [anon_sym_in] = ACTIONS(4429), + [anon_sym_where] = ACTIONS(4429), + [anon_sym_QMARK] = ACTIONS(4429), + [anon_sym_notnull] = ACTIONS(4429), + [anon_sym_unmanaged] = ACTIONS(4429), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_scoped] = ACTIONS(4429), + [anon_sym_EQ_GT] = ACTIONS(4431), + [anon_sym_var] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4431), + [anon_sym_yield] = ACTIONS(4429), + [anon_sym_switch] = ACTIONS(4429), + [anon_sym_when] = ACTIONS(4429), + [sym_discard] = ACTIONS(4429), + [anon_sym_DOT_DOT] = ACTIONS(4431), + [anon_sym_LT_EQ] = ACTIONS(4431), + [anon_sym_GT_EQ] = ACTIONS(4431), + [anon_sym_and] = ACTIONS(4429), + [anon_sym_or] = ACTIONS(4429), + [anon_sym_EQ_EQ] = ACTIONS(4431), + [anon_sym_BANG_EQ] = ACTIONS(4431), + [anon_sym_AMP_AMP] = ACTIONS(4431), + [anon_sym_PIPE_PIPE] = ACTIONS(4431), + [anon_sym_AMP] = ACTIONS(4429), + [sym_op_bitwise_or] = ACTIONS(4429), + [anon_sym_CARET] = ACTIONS(4431), + [sym_op_left_shift] = ACTIONS(4431), + [sym_op_right_shift] = ACTIONS(4429), + [sym_op_unsigned_right_shift] = ACTIONS(4431), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4429), + [sym_op_divide] = ACTIONS(4429), + [sym_op_modulo] = ACTIONS(4431), + [sym_op_coalescing] = ACTIONS(4431), + [anon_sym_BANG] = ACTIONS(4429), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [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), + [anon_sym_as] = ACTIONS(4429), + [anon_sym_is] = ACTIONS(4429), + [anon_sym_DASH_GT] = ACTIONS(4431), + [anon_sym_with] = ACTIONS(4429), + [sym_grit_metavariable] = 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), @@ -433929,78 +433951,78 @@ 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(4454), - [anon_sym_alias] = ACTIONS(4454), - [anon_sym_SEMI] = ACTIONS(4456), - [anon_sym_global] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4456), - [anon_sym_COLON] = ACTIONS(4456), - [anon_sym_COMMA] = ACTIONS(4456), - [anon_sym_RBRACK] = ACTIONS(4456), - [anon_sym_LPAREN] = ACTIONS(4456), - [anon_sym_RPAREN] = ACTIONS(4456), - [anon_sym_LBRACE] = ACTIONS(4456), - [anon_sym_RBRACE] = ACTIONS(4456), - [anon_sym_file] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4454), - [anon_sym_GT] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4454), - [anon_sym_where] = ACTIONS(4454), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_notnull] = ACTIONS(4454), - [anon_sym_unmanaged] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4456), - [anon_sym_DASH_DASH] = ACTIONS(4456), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4456), - [anon_sym_SLASH] = ACTIONS(4454), - [anon_sym_PERCENT] = ACTIONS(4456), - [anon_sym_CARET] = ACTIONS(4456), - [anon_sym_PIPE] = ACTIONS(4454), - [anon_sym_AMP] = ACTIONS(4454), - [anon_sym_LT_LT] = ACTIONS(4456), - [anon_sym_GT_GT] = ACTIONS(4454), - [anon_sym_GT_GT_GT] = ACTIONS(4456), - [anon_sym_EQ_EQ] = ACTIONS(4456), - [anon_sym_BANG_EQ] = ACTIONS(4456), - [anon_sym_GT_EQ] = ACTIONS(4456), - [anon_sym_LT_EQ] = ACTIONS(4456), - [anon_sym_DOT] = ACTIONS(4454), - [anon_sym_scoped] = ACTIONS(4454), - [anon_sym_EQ_GT] = ACTIONS(4458), - [anon_sym_var] = ACTIONS(4454), - [anon_sym_yield] = ACTIONS(4454), - [anon_sym_switch] = ACTIONS(4454), - [anon_sym_when] = ACTIONS(4454), - [sym_discard] = ACTIONS(4454), - [anon_sym_DOT_DOT] = ACTIONS(4456), - [anon_sym_and] = ACTIONS(4454), - [anon_sym_or] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4456), - [anon_sym_PIPE_PIPE] = ACTIONS(4456), - [sym_op_coalescing] = ACTIONS(4456), - [anon_sym_from] = ACTIONS(4454), - [anon_sym_into] = ACTIONS(4454), - [anon_sym_join] = ACTIONS(4454), - [anon_sym_on] = ACTIONS(4454), - [anon_sym_equals] = ACTIONS(4454), - [anon_sym_let] = ACTIONS(4454), - [anon_sym_orderby] = ACTIONS(4454), - [anon_sym_ascending] = ACTIONS(4454), - [anon_sym_descending] = ACTIONS(4454), - [anon_sym_group] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(4454), - [anon_sym_select] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4454), - [anon_sym_DASH_GT] = ACTIONS(4456), - [anon_sym_with] = ACTIONS(4454), - [sym_grit_metavariable] = ACTIONS(4456), - [aux_sym_preproc_if_token3] = ACTIONS(4456), - [aux_sym_preproc_else_token1] = ACTIONS(4456), - [aux_sym_preproc_elif_token1] = ACTIONS(4456), + [sym__identifier_token] = ACTIONS(4433), + [anon_sym_alias] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_global] = ACTIONS(4433), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(4435), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_RBRACK] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_RPAREN] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4435), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_file] = ACTIONS(4433), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_where] = ACTIONS(4433), + [anon_sym_QMARK] = ACTIONS(4433), + [anon_sym_notnull] = ACTIONS(4433), + [anon_sym_unmanaged] = ACTIONS(4433), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_scoped] = ACTIONS(4433), + [anon_sym_EQ_GT] = ACTIONS(4435), + [anon_sym_var] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4435), + [anon_sym_yield] = ACTIONS(4433), + [anon_sym_switch] = ACTIONS(4433), + [anon_sym_when] = ACTIONS(4433), + [sym_discard] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_and] = ACTIONS(4433), + [anon_sym_or] = ACTIONS(4433), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_AMP] = ACTIONS(4433), + [sym_op_bitwise_or] = ACTIONS(4433), + [anon_sym_CARET] = ACTIONS(4435), + [sym_op_left_shift] = ACTIONS(4435), + [sym_op_right_shift] = ACTIONS(4433), + [sym_op_unsigned_right_shift] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [sym_op_divide] = ACTIONS(4433), + [sym_op_modulo] = ACTIONS(4435), + [sym_op_coalescing] = ACTIONS(4435), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [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), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_DASH_GT] = ACTIONS(4435), + [anon_sym_with] = ACTIONS(4433), + [sym_grit_metavariable] = 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), @@ -434022,78 +434044,78 @@ 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(4454), - [anon_sym_alias] = ACTIONS(4454), - [anon_sym_SEMI] = ACTIONS(4456), - [anon_sym_global] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4456), - [anon_sym_COLON] = ACTIONS(4456), - [anon_sym_COMMA] = ACTIONS(4456), - [anon_sym_RBRACK] = ACTIONS(4456), - [anon_sym_LPAREN] = ACTIONS(4456), - [anon_sym_RPAREN] = ACTIONS(4456), - [anon_sym_LBRACE] = ACTIONS(4456), - [anon_sym_RBRACE] = ACTIONS(4456), - [anon_sym_file] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4454), - [anon_sym_GT] = ACTIONS(4454), - [anon_sym_in] = ACTIONS(4454), - [anon_sym_where] = ACTIONS(4454), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_notnull] = ACTIONS(4454), - [anon_sym_unmanaged] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4456), - [anon_sym_DASH_DASH] = ACTIONS(4456), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4456), - [anon_sym_SLASH] = ACTIONS(4454), - [anon_sym_PERCENT] = ACTIONS(4456), - [anon_sym_CARET] = ACTIONS(4456), - [anon_sym_PIPE] = ACTIONS(4454), - [anon_sym_AMP] = ACTIONS(4454), - [anon_sym_LT_LT] = ACTIONS(4456), - [anon_sym_GT_GT] = ACTIONS(4454), - [anon_sym_GT_GT_GT] = ACTIONS(4456), - [anon_sym_EQ_EQ] = ACTIONS(4456), - [anon_sym_BANG_EQ] = ACTIONS(4456), - [anon_sym_GT_EQ] = ACTIONS(4456), - [anon_sym_LT_EQ] = ACTIONS(4456), - [anon_sym_DOT] = ACTIONS(4454), - [anon_sym_scoped] = ACTIONS(4454), - [anon_sym_EQ_GT] = ACTIONS(4458), - [anon_sym_var] = ACTIONS(4454), - [anon_sym_yield] = ACTIONS(4454), - [anon_sym_switch] = ACTIONS(4454), - [anon_sym_when] = ACTIONS(4454), - [sym_discard] = ACTIONS(4454), - [anon_sym_DOT_DOT] = ACTIONS(4456), - [anon_sym_and] = ACTIONS(4454), - [anon_sym_or] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4456), - [anon_sym_PIPE_PIPE] = ACTIONS(4456), - [sym_op_coalescing] = ACTIONS(4456), - [anon_sym_from] = ACTIONS(4454), - [anon_sym_into] = ACTIONS(4454), - [anon_sym_join] = ACTIONS(4454), - [anon_sym_on] = ACTIONS(4454), - [anon_sym_equals] = ACTIONS(4454), - [anon_sym_let] = ACTIONS(4454), - [anon_sym_orderby] = ACTIONS(4454), - [anon_sym_ascending] = ACTIONS(4454), - [anon_sym_descending] = ACTIONS(4454), - [anon_sym_group] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(4454), - [anon_sym_select] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4454), - [anon_sym_DASH_GT] = ACTIONS(4456), - [anon_sym_with] = ACTIONS(4454), - [sym_grit_metavariable] = ACTIONS(4456), - [aux_sym_preproc_if_token3] = ACTIONS(4456), - [aux_sym_preproc_else_token1] = ACTIONS(4456), - [aux_sym_preproc_elif_token1] = ACTIONS(4456), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4017), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4017), + [anon_sym_into] = ACTIONS(4008), + [anon_sym_join] = ACTIONS(4017), + [anon_sym_on] = ACTIONS(4008), + [anon_sym_equals] = ACTIONS(4008), + [anon_sym_let] = ACTIONS(4017), + [anon_sym_orderby] = ACTIONS(4017), + [anon_sym_ascending] = ACTIONS(4008), + [anon_sym_descending] = ACTIONS(4008), + [anon_sym_group] = ACTIONS(4017), + [anon_sym_by] = ACTIONS(4008), + [anon_sym_select] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434115,78 +434137,78 @@ 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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3997), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_COLON] = ACTIONS(3997), - [anon_sym_COMMA] = ACTIONS(3997), - [anon_sym_RBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_RPAREN] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_RBRACE] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_in] = ACTIONS(3986), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(3986), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3986), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3986), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_EQ_GT] = ACTIONS(3997), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3986), - [anon_sym_when] = ACTIONS(3986), - [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3986), - [anon_sym_or] = ACTIONS(3986), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [sym_op_coalescing] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(3986), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3986), - [anon_sym_is] = ACTIONS(3986), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3986), - [sym_grit_metavariable] = ACTIONS(3997), - [aux_sym_preproc_if_token3] = ACTIONS(3997), - [aux_sym_preproc_else_token1] = ACTIONS(3997), - [aux_sym_preproc_elif_token1] = ACTIONS(3997), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4008), + [anon_sym_into] = ACTIONS(4017), + [anon_sym_join] = ACTIONS(4008), + [anon_sym_on] = ACTIONS(4017), + [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(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434208,78 +434230,78 @@ 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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(3991), - [anon_sym_or] = ACTIONS(3991), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(3986), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(4037), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4034), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), + [sym__identifier_token] = ACTIONS(3970), + [anon_sym_alias] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_global] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_COLON] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_RPAREN] = ACTIONS(3972), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_file] = ACTIONS(3970), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_QMARK] = ACTIONS(3970), + [anon_sym_notnull] = ACTIONS(3970), + [anon_sym_unmanaged] = ACTIONS(3970), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_scoped] = ACTIONS(3970), + [anon_sym_EQ_GT] = ACTIONS(3972), + [anon_sym_var] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_yield] = ACTIONS(3970), + [anon_sym_switch] = ACTIONS(3970), + [anon_sym_when] = ACTIONS(3970), + [sym_discard] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_and] = ACTIONS(3970), + [anon_sym_or] = ACTIONS(3970), + [anon_sym_EQ_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [sym_op_bitwise_or] = ACTIONS(3970), + [anon_sym_CARET] = ACTIONS(3972), + [sym_op_left_shift] = ACTIONS(3972), + [sym_op_right_shift] = ACTIONS(3970), + [sym_op_unsigned_right_shift] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [sym_op_divide] = ACTIONS(3970), + [sym_op_modulo] = ACTIONS(3972), + [sym_op_coalescing] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_from] = ACTIONS(3970), + [anon_sym_into] = ACTIONS(3970), + [anon_sym_join] = ACTIONS(3970), + [anon_sym_on] = ACTIONS(3970), + [anon_sym_equals] = ACTIONS(3970), + [anon_sym_let] = ACTIONS(3970), + [anon_sym_orderby] = ACTIONS(3970), + [anon_sym_ascending] = ACTIONS(3970), + [anon_sym_descending] = ACTIONS(3970), + [anon_sym_group] = ACTIONS(3970), + [anon_sym_by] = ACTIONS(3970), + [anon_sym_select] = ACTIONS(3970), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_DASH_GT] = ACTIONS(3972), + [anon_sym_with] = ACTIONS(3970), + [sym_grit_metavariable] = ACTIONS(3972), + [aux_sym_preproc_if_token3] = ACTIONS(3972), + [aux_sym_preproc_else_token1] = ACTIONS(3972), + [aux_sym_preproc_elif_token1] = ACTIONS(3972), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434292,6 +434314,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2435] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2546), + [sym_property_pattern_clause] = STATE(2614), + [sym__variable_designation] = STATE(5759), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5625), + [sym__reserved_identifier] = STATE(5562), [sym_preproc_region] = STATE(2435), [sym_preproc_endregion] = STATE(2435), [sym_preproc_line] = STATE(2435), @@ -434301,78 +434331,69 @@ 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(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434383,8 +434404,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(4220), }, [2436] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2546), + [sym_property_pattern_clause] = STATE(2614), + [sym__variable_designation] = STATE(5759), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5625), + [sym__reserved_identifier] = STATE(5562), [sym_preproc_region] = STATE(2436), [sym_preproc_endregion] = STATE(2436), [sym_preproc_line] = STATE(2436), @@ -434394,78 +434424,69 @@ 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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(3991), - [anon_sym_or] = ACTIONS(3991), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(3986), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(4037), - [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4034), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434476,8 +434497,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4220), }, [2437] = { + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_ref_type] = STATE(4178), + [sym__scoped_base_type] = STATE(4193), + [sym_identifier] = STATE(5662), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(2437), [sym_preproc_endregion] = STATE(2437), [sym_preproc_line] = STATE(2437), @@ -434487,78 +434518,69 @@ 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(3974), - [anon_sym_alias] = ACTIONS(3974), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_global] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3976), - [anon_sym_COLON] = ACTIONS(3976), - [anon_sym_COMMA] = ACTIONS(3976), - [anon_sym_RBRACK] = ACTIONS(3976), - [anon_sym_LPAREN] = ACTIONS(3976), - [anon_sym_RPAREN] = ACTIONS(3976), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_RBRACE] = ACTIONS(3976), - [anon_sym_file] = ACTIONS(3974), - [anon_sym_LT] = ACTIONS(3974), - [anon_sym_GT] = ACTIONS(3974), - [anon_sym_in] = ACTIONS(3974), - [anon_sym_where] = ACTIONS(3974), - [anon_sym_QMARK] = ACTIONS(3974), - [anon_sym_notnull] = ACTIONS(3974), - [anon_sym_unmanaged] = ACTIONS(3974), - [anon_sym_BANG] = ACTIONS(3974), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_SLASH] = ACTIONS(3974), - [anon_sym_PERCENT] = ACTIONS(3976), - [anon_sym_CARET] = ACTIONS(3976), - [anon_sym_PIPE] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_LT_LT] = ACTIONS(3976), - [anon_sym_GT_GT] = ACTIONS(3974), - [anon_sym_GT_GT_GT] = ACTIONS(3976), - [anon_sym_EQ_EQ] = ACTIONS(3976), - [anon_sym_BANG_EQ] = ACTIONS(3976), - [anon_sym_GT_EQ] = ACTIONS(3976), - [anon_sym_LT_EQ] = ACTIONS(3976), - [anon_sym_DOT] = ACTIONS(3974), - [anon_sym_scoped] = ACTIONS(3974), - [anon_sym_EQ_GT] = ACTIONS(3976), - [anon_sym_var] = ACTIONS(3974), - [anon_sym_yield] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_when] = ACTIONS(3974), - [sym_discard] = ACTIONS(3974), - [anon_sym_DOT_DOT] = ACTIONS(3976), - [anon_sym_and] = ACTIONS(3974), - [anon_sym_or] = ACTIONS(3974), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_PIPE_PIPE] = ACTIONS(3976), - [sym_op_coalescing] = ACTIONS(3976), - [anon_sym_from] = ACTIONS(3974), - [anon_sym_into] = ACTIONS(3974), - [anon_sym_join] = ACTIONS(3974), - [anon_sym_on] = ACTIONS(3974), - [anon_sym_equals] = ACTIONS(3974), - [anon_sym_let] = ACTIONS(3974), - [anon_sym_orderby] = ACTIONS(3974), - [anon_sym_ascending] = ACTIONS(3974), - [anon_sym_descending] = ACTIONS(3974), - [anon_sym_group] = ACTIONS(3974), - [anon_sym_by] = ACTIONS(3974), - [anon_sym_select] = ACTIONS(3974), - [anon_sym_as] = ACTIONS(3974), - [anon_sym_is] = ACTIONS(3974), - [anon_sym_DASH_GT] = ACTIONS(3976), - [anon_sym_with] = ACTIONS(3974), - [sym_grit_metavariable] = ACTIONS(3976), - [aux_sym_preproc_if_token3] = ACTIONS(3976), - [aux_sym_preproc_else_token1] = ACTIONS(3976), - [aux_sym_preproc_elif_token1] = ACTIONS(3976), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4437), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434571,14 +434593,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2438] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2535), - [sym_property_pattern_clause] = STATE(2665), - [sym__variable_designation] = STATE(5704), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5640), - [sym__reserved_identifier] = STATE(5570), [sym_preproc_region] = STATE(2438), [sym_preproc_endregion] = STATE(2438), [sym_preproc_line] = STATE(2438), @@ -434588,69 +434602,78 @@ 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(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [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), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4403), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434661,7 +434684,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(4212), }, [2439] = { [sym_preproc_region] = STATE(2439), @@ -434673,78 +434695,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2439), [sym_preproc_define] = STATE(2439), [sym_preproc_undef] = STATE(2439), - [sym__identifier_token] = ACTIONS(3966), - [anon_sym_alias] = ACTIONS(3966), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym_global] = ACTIONS(3966), - [anon_sym_LBRACK] = ACTIONS(3968), - [anon_sym_COLON] = ACTIONS(3968), - [anon_sym_COMMA] = ACTIONS(3968), - [anon_sym_RBRACK] = ACTIONS(3968), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_RPAREN] = ACTIONS(3968), - [anon_sym_LBRACE] = ACTIONS(3968), - [anon_sym_RBRACE] = ACTIONS(3968), - [anon_sym_file] = ACTIONS(3966), - [anon_sym_LT] = ACTIONS(3966), - [anon_sym_GT] = ACTIONS(3966), - [anon_sym_in] = ACTIONS(3966), - [anon_sym_where] = ACTIONS(3966), - [anon_sym_QMARK] = ACTIONS(3966), - [anon_sym_notnull] = ACTIONS(3966), - [anon_sym_unmanaged] = ACTIONS(3966), - [anon_sym_BANG] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_SLASH] = ACTIONS(3966), - [anon_sym_PERCENT] = ACTIONS(3968), - [anon_sym_CARET] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(3966), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_LT_LT] = ACTIONS(3968), - [anon_sym_GT_GT] = ACTIONS(3966), - [anon_sym_GT_GT_GT] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3968), - [anon_sym_BANG_EQ] = ACTIONS(3968), - [anon_sym_GT_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3968), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_scoped] = ACTIONS(3966), - [anon_sym_EQ_GT] = ACTIONS(3968), - [anon_sym_var] = ACTIONS(3966), - [anon_sym_yield] = ACTIONS(3966), - [anon_sym_switch] = ACTIONS(3966), - [anon_sym_when] = ACTIONS(3966), - [sym_discard] = ACTIONS(3966), - [anon_sym_DOT_DOT] = ACTIONS(3968), - [anon_sym_and] = ACTIONS(3966), - [anon_sym_or] = ACTIONS(3966), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_PIPE_PIPE] = ACTIONS(3968), - [sym_op_coalescing] = ACTIONS(3968), - [anon_sym_from] = ACTIONS(3966), - [anon_sym_into] = ACTIONS(3966), - [anon_sym_join] = ACTIONS(3966), - [anon_sym_on] = ACTIONS(3966), - [anon_sym_equals] = ACTIONS(3966), - [anon_sym_let] = ACTIONS(3966), - [anon_sym_orderby] = ACTIONS(3966), - [anon_sym_ascending] = ACTIONS(3966), - [anon_sym_descending] = ACTIONS(3966), - [anon_sym_group] = ACTIONS(3966), - [anon_sym_by] = ACTIONS(3966), - [anon_sym_select] = ACTIONS(3966), - [anon_sym_as] = ACTIONS(3966), - [anon_sym_is] = ACTIONS(3966), - [anon_sym_DASH_GT] = ACTIONS(3968), - [anon_sym_with] = ACTIONS(3966), - [sym_grit_metavariable] = ACTIONS(3968), - [aux_sym_preproc_if_token3] = ACTIONS(3968), - [aux_sym_preproc_else_token1] = ACTIONS(3968), - [aux_sym_preproc_elif_token1] = ACTIONS(3968), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434769,63 +434791,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4008), [anon_sym_alias] = ACTIONS(4008), [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4017), [anon_sym_notnull] = ACTIONS(4008), [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_scoped] = ACTIONS(4008), [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), + [anon_sym_switch] = ACTIONS(4013), [anon_sym_when] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), [anon_sym_from] = ACTIONS(4008), [anon_sym_into] = ACTIONS(4008), [anon_sym_join] = ACTIONS(4008), - [anon_sym_on] = ACTIONS(4008), - [anon_sym_equals] = ACTIONS(4019), + [anon_sym_on] = ACTIONS(4017), + [anon_sym_equals] = ACTIONS(4008), [anon_sym_let] = ACTIONS(4008), [anon_sym_orderby] = ACTIONS(4008), [anon_sym_ascending] = ACTIONS(4008), @@ -434833,11 +434855,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4008), [anon_sym_by] = ACTIONS(4008), [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [anon_sym_as] = ACTIONS(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434859,78 +434881,78 @@ 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(3970), - [anon_sym_alias] = ACTIONS(3970), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym_global] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_COLON] = ACTIONS(3972), - [anon_sym_COMMA] = ACTIONS(3972), - [anon_sym_RBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3972), - [anon_sym_RPAREN] = ACTIONS(3972), - [anon_sym_LBRACE] = ACTIONS(3972), - [anon_sym_RBRACE] = ACTIONS(3972), - [anon_sym_file] = ACTIONS(3970), - [anon_sym_LT] = ACTIONS(3970), - [anon_sym_GT] = ACTIONS(3970), - [anon_sym_in] = ACTIONS(3970), - [anon_sym_where] = ACTIONS(3970), - [anon_sym_QMARK] = ACTIONS(3970), - [anon_sym_notnull] = ACTIONS(3970), - [anon_sym_unmanaged] = ACTIONS(3970), - [anon_sym_BANG] = ACTIONS(3970), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(3970), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_CARET] = ACTIONS(3972), - [anon_sym_PIPE] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_LT_LT] = ACTIONS(3972), - [anon_sym_GT_GT] = ACTIONS(3970), - [anon_sym_GT_GT_GT] = ACTIONS(3972), - [anon_sym_EQ_EQ] = ACTIONS(3972), - [anon_sym_BANG_EQ] = ACTIONS(3972), - [anon_sym_GT_EQ] = ACTIONS(3972), - [anon_sym_LT_EQ] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(3970), - [anon_sym_scoped] = ACTIONS(3970), - [anon_sym_EQ_GT] = ACTIONS(3972), - [anon_sym_var] = ACTIONS(3970), - [anon_sym_yield] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_when] = ACTIONS(3970), - [sym_discard] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(3972), - [anon_sym_and] = ACTIONS(3970), - [anon_sym_or] = ACTIONS(3970), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_PIPE_PIPE] = ACTIONS(3972), - [sym_op_coalescing] = ACTIONS(3972), - [anon_sym_from] = ACTIONS(3970), - [anon_sym_into] = ACTIONS(3970), - [anon_sym_join] = ACTIONS(3970), - [anon_sym_on] = ACTIONS(3970), - [anon_sym_equals] = ACTIONS(3970), - [anon_sym_let] = ACTIONS(3970), - [anon_sym_orderby] = ACTIONS(3970), - [anon_sym_ascending] = ACTIONS(3970), - [anon_sym_descending] = ACTIONS(3970), - [anon_sym_group] = ACTIONS(3970), - [anon_sym_by] = ACTIONS(3970), - [anon_sym_select] = ACTIONS(3970), - [anon_sym_as] = ACTIONS(3970), - [anon_sym_is] = ACTIONS(3970), - [anon_sym_DASH_GT] = ACTIONS(3972), - [anon_sym_with] = ACTIONS(3970), - [sym_grit_metavariable] = ACTIONS(3972), - [aux_sym_preproc_if_token3] = ACTIONS(3972), - [aux_sym_preproc_else_token1] = ACTIONS(3972), - [aux_sym_preproc_elif_token1] = ACTIONS(3972), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4008), + [anon_sym_into] = ACTIONS(4017), + [anon_sym_join] = ACTIONS(4008), + [anon_sym_on] = ACTIONS(4008), + [anon_sym_equals] = ACTIONS(4017), + [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(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434943,14 +434965,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2442] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2535), - [sym_property_pattern_clause] = STATE(2665), - [sym__variable_designation] = STATE(5704), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5640), - [sym__reserved_identifier] = STATE(5570), [sym_preproc_region] = STATE(2442), [sym_preproc_endregion] = STATE(2442), [sym_preproc_line] = STATE(2442), @@ -434960,69 +434974,78 @@ 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(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [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), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4403), + [sym__identifier_token] = ACTIONS(4456), + [anon_sym_alias] = ACTIONS(4456), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym_global] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4458), + [anon_sym_COLON] = ACTIONS(4458), + [anon_sym_COMMA] = ACTIONS(4458), + [anon_sym_RBRACK] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym_RPAREN] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4458), + [anon_sym_RBRACE] = ACTIONS(4458), + [anon_sym_file] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4456), + [anon_sym_in] = ACTIONS(4456), + [anon_sym_where] = ACTIONS(4456), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_notnull] = ACTIONS(4456), + [anon_sym_unmanaged] = ACTIONS(4456), + [anon_sym_DOT] = ACTIONS(4456), + [anon_sym_scoped] = ACTIONS(4456), + [anon_sym_EQ_GT] = ACTIONS(4458), + [anon_sym_var] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_yield] = ACTIONS(4456), + [anon_sym_switch] = ACTIONS(4456), + [anon_sym_when] = ACTIONS(4456), + [sym_discard] = ACTIONS(4456), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4456), + [anon_sym_or] = ACTIONS(4456), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_AMP_AMP] = ACTIONS(4458), + [anon_sym_PIPE_PIPE] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [sym_op_bitwise_or] = ACTIONS(4456), + [anon_sym_CARET] = ACTIONS(4458), + [sym_op_left_shift] = ACTIONS(4458), + [sym_op_right_shift] = ACTIONS(4456), + [sym_op_unsigned_right_shift] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [sym_op_divide] = ACTIONS(4456), + [sym_op_modulo] = ACTIONS(4458), + [sym_op_coalescing] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4456), + [anon_sym_PLUS_PLUS] = ACTIONS(4458), + [anon_sym_DASH_DASH] = ACTIONS(4458), + [anon_sym_from] = ACTIONS(4456), + [anon_sym_into] = ACTIONS(4456), + [anon_sym_join] = ACTIONS(4456), + [anon_sym_on] = ACTIONS(4456), + [anon_sym_equals] = ACTIONS(4456), + [anon_sym_let] = ACTIONS(4456), + [anon_sym_orderby] = ACTIONS(4456), + [anon_sym_ascending] = ACTIONS(4456), + [anon_sym_descending] = ACTIONS(4456), + [anon_sym_group] = ACTIONS(4456), + [anon_sym_by] = ACTIONS(4456), + [anon_sym_select] = ACTIONS(4456), + [anon_sym_as] = ACTIONS(4456), + [anon_sym_is] = ACTIONS(4456), + [anon_sym_DASH_GT] = ACTIONS(4458), + [anon_sym_with] = ACTIONS(4456), + [sym_grit_metavariable] = ACTIONS(4458), + [aux_sym_preproc_if_token3] = ACTIONS(4458), + [aux_sym_preproc_else_token1] = ACTIONS(4458), + [aux_sym_preproc_elif_token1] = ACTIONS(4458), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435033,9 +435056,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4222), }, [2443] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2531), + [sym_property_pattern_clause] = STATE(2610), + [sym__variable_designation] = STATE(5759), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5625), + [sym__reserved_identifier] = STATE(5562), [sym_preproc_region] = STATE(2443), [sym_preproc_endregion] = STATE(2443), [sym_preproc_line] = STATE(2443), @@ -435045,78 +435075,69 @@ 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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(4037), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(3991), - [anon_sym_or] = ACTIONS(3991), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(4037), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(4037), - [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4034), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4415), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435127,27 +435148,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(4220), }, [2444] = { - [sym_modifier] = STATE(4327), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6391), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(2444), [sym_preproc_endregion] = STATE(2444), [sym_preproc_line] = STATE(2444), @@ -435157,152 +435160,171 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3907), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(4266), - [anon_sym_ref] = ACTIONS(4268), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4460), - [anon_sym_interface] = ACTIONS(4274), - [anon_sym_delegate] = ACTIONS(4276), - [anon_sym_record] = ACTIONS(4278), - [anon_sym_public] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(4420), - [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_protected] = 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(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [2445] = { - [sym__name] = STATE(2461), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(2392), - [sym__reserved_identifier] = STATE(2395), - [sym_preproc_region] = STATE(2445), - [sym_preproc_endregion] = STATE(2445), - [sym_preproc_line] = STATE(2445), - [sym_preproc_pragma] = STATE(2445), - [sym_preproc_nullable] = STATE(2445), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2445] = { + [sym_preproc_region] = STATE(2445), + [sym_preproc_endregion] = STATE(2445), + [sym_preproc_line] = STATE(2445), + [sym_preproc_pragma] = STATE(2445), + [sym_preproc_nullable] = STATE(2445), [sym_preproc_error] = STATE(2445), [sym_preproc_warning] = STATE(2445), [sym_preproc_define] = STATE(2445), [sym_preproc_undef] = STATE(2445), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4462), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3883), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(3883), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [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(4450), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3888), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435324,78 +435346,78 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_when] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4019), - [anon_sym_join] = ACTIONS(4008), - [anon_sym_on] = ACTIONS(4019), - [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(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435408,6 +435430,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2447] = { + [sym__name] = STATE(2471), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(2392), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2447), [sym_preproc_endregion] = STATE(2447), [sym_preproc_line] = STATE(2447), @@ -435417,78 +435448,69 @@ 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(3955), - [anon_sym_alias] = ACTIONS(3955), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_global] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_RBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_LBRACE] = ACTIONS(3957), - [anon_sym_RBRACE] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3955), - [anon_sym_LT] = ACTIONS(3955), - [anon_sym_GT] = ACTIONS(3955), - [anon_sym_in] = ACTIONS(3955), - [anon_sym_where] = ACTIONS(3955), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_notnull] = ACTIONS(3955), - [anon_sym_unmanaged] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3955), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3955), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_scoped] = ACTIONS(3955), - [anon_sym_EQ_GT] = ACTIONS(3957), - [anon_sym_var] = ACTIONS(3955), - [anon_sym_yield] = ACTIONS(3955), - [anon_sym_switch] = ACTIONS(3955), - [anon_sym_when] = ACTIONS(3955), - [sym_discard] = ACTIONS(3955), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3955), - [anon_sym_or] = ACTIONS(3955), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [sym_op_coalescing] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3955), - [anon_sym_into] = ACTIONS(3955), - [anon_sym_join] = ACTIONS(3955), - [anon_sym_on] = ACTIONS(3955), - [anon_sym_equals] = ACTIONS(3955), - [anon_sym_let] = ACTIONS(3955), - [anon_sym_orderby] = ACTIONS(3955), - [anon_sym_ascending] = ACTIONS(3955), - [anon_sym_descending] = ACTIONS(3955), - [anon_sym_group] = ACTIONS(3955), - [anon_sym_by] = ACTIONS(3955), - [anon_sym_select] = ACTIONS(3955), - [anon_sym_as] = ACTIONS(3955), - [anon_sym_is] = ACTIONS(3955), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3955), - [sym_grit_metavariable] = ACTIONS(3957), - [aux_sym_preproc_if_token3] = ACTIONS(3957), - [aux_sym_preproc_else_token1] = ACTIONS(3957), - [aux_sym_preproc_elif_token1] = ACTIONS(3957), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4460), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3868), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4425), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3868), + [anon_sym_into] = ACTIONS(3868), + [anon_sym_join] = ACTIONS(3868), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(3868), + [anon_sym_orderby] = ACTIONS(3868), + [anon_sym_ascending] = ACTIONS(3868), + [anon_sym_descending] = ACTIONS(3868), + [anon_sym_group] = ACTIONS(3868), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(3868), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435501,6 +435523,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2448] = { + [sym_modifier] = STATE(3484), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6408), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2448), [sym_preproc_endregion] = STATE(2448), [sym_preproc_line] = STATE(2448), @@ -435510,78 +435551,59 @@ 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(4464), - [anon_sym_alias] = ACTIONS(4464), - [anon_sym_SEMI] = ACTIONS(4466), - [anon_sym_global] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4466), - [anon_sym_COLON] = ACTIONS(4466), - [anon_sym_COMMA] = ACTIONS(4466), - [anon_sym_RBRACK] = ACTIONS(4466), - [anon_sym_LPAREN] = ACTIONS(4466), - [anon_sym_RPAREN] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4466), - [anon_sym_RBRACE] = ACTIONS(4466), - [anon_sym_file] = ACTIONS(4464), - [anon_sym_LT] = ACTIONS(4464), - [anon_sym_GT] = ACTIONS(4464), - [anon_sym_in] = ACTIONS(4464), - [anon_sym_where] = ACTIONS(4464), - [anon_sym_QMARK] = ACTIONS(4464), - [anon_sym_notnull] = ACTIONS(4464), - [anon_sym_unmanaged] = ACTIONS(4464), - [anon_sym_BANG] = ACTIONS(4464), - [anon_sym_PLUS_PLUS] = ACTIONS(4466), - [anon_sym_DASH_DASH] = ACTIONS(4466), - [anon_sym_PLUS] = ACTIONS(4464), - [anon_sym_DASH] = ACTIONS(4464), - [anon_sym_STAR] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4464), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_PIPE] = ACTIONS(4464), - [anon_sym_AMP] = ACTIONS(4464), - [anon_sym_LT_LT] = ACTIONS(4466), - [anon_sym_GT_GT] = ACTIONS(4464), - [anon_sym_GT_GT_GT] = ACTIONS(4466), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_GT_EQ] = ACTIONS(4466), - [anon_sym_LT_EQ] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4464), - [anon_sym_scoped] = ACTIONS(4464), - [anon_sym_EQ_GT] = ACTIONS(4466), - [anon_sym_var] = ACTIONS(4464), - [anon_sym_yield] = ACTIONS(4464), - [anon_sym_switch] = ACTIONS(4464), - [anon_sym_when] = ACTIONS(4464), - [sym_discard] = ACTIONS(4464), - [anon_sym_DOT_DOT] = ACTIONS(4466), - [anon_sym_and] = ACTIONS(4464), - [anon_sym_or] = ACTIONS(4464), - [anon_sym_AMP_AMP] = ACTIONS(4466), - [anon_sym_PIPE_PIPE] = ACTIONS(4466), - [sym_op_coalescing] = ACTIONS(4466), - [anon_sym_from] = ACTIONS(4464), - [anon_sym_into] = ACTIONS(4464), - [anon_sym_join] = ACTIONS(4464), - [anon_sym_on] = ACTIONS(4464), - [anon_sym_equals] = ACTIONS(4464), - [anon_sym_let] = ACTIONS(4464), - [anon_sym_orderby] = ACTIONS(4464), - [anon_sym_ascending] = ACTIONS(4464), - [anon_sym_descending] = ACTIONS(4464), - [anon_sym_group] = ACTIONS(4464), - [anon_sym_by] = ACTIONS(4464), - [anon_sym_select] = ACTIONS(4464), - [anon_sym_as] = ACTIONS(4464), - [anon_sym_is] = ACTIONS(4464), - [anon_sym_DASH_GT] = ACTIONS(4466), - [anon_sym_with] = ACTIONS(4464), - [sym_grit_metavariable] = ACTIONS(4466), - [aux_sym_preproc_if_token3] = ACTIONS(4466), - [aux_sym_preproc_else_token1] = ACTIONS(4466), - [aux_sym_preproc_elif_token1] = ACTIONS(4466), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3232), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(65), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(4264), + [anon_sym_ref] = ACTIONS(4266), + [anon_sym_struct] = ACTIONS(4268), + [anon_sym_enum] = ACTIONS(4462), + [anon_sym_interface] = ACTIONS(4272), + [anon_sym_delegate] = ACTIONS(4274), + [anon_sym_record] = ACTIONS(4276), + [anon_sym_public] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(4407), + [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_protected] = 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(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435594,14 +435616,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2449] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2566), - [sym_property_pattern_clause] = STATE(2641), - [sym__variable_designation] = STATE(5704), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5640), - [sym__reserved_identifier] = STATE(5570), [sym_preproc_region] = STATE(2449), [sym_preproc_endregion] = STATE(2449), [sym_preproc_line] = STATE(2449), @@ -435611,69 +435625,78 @@ 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(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4397), - [anon_sym_into] = ACTIONS(4224), - [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), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4403), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_file] = ACTIONS(4008), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4017), + [anon_sym_notnull] = ACTIONS(4008), + [anon_sym_unmanaged] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_when] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4013), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4008), + [anon_sym_into] = ACTIONS(4008), + [anon_sym_join] = ACTIONS(4008), + [anon_sym_on] = ACTIONS(4008), + [anon_sym_equals] = ACTIONS(4017), + [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(4013), + [anon_sym_is] = ACTIONS(4013), + [anon_sym_DASH_GT] = ACTIONS(4010), + [anon_sym_with] = ACTIONS(4013), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435684,7 +435707,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(4222), }, [2450] = { [sym_preproc_region] = STATE(2450), @@ -435696,78 +435718,78 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4019), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_when] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [anon_sym_from] = ACTIONS(4019), - [anon_sym_into] = ACTIONS(4008), - [anon_sym_join] = ACTIONS(4019), - [anon_sym_on] = ACTIONS(4008), - [anon_sym_equals] = ACTIONS(4008), - [anon_sym_let] = ACTIONS(4019), - [anon_sym_orderby] = ACTIONS(4019), - [anon_sym_ascending] = ACTIONS(4008), - [anon_sym_descending] = ACTIONS(4008), - [anon_sym_group] = ACTIONS(4019), - [anon_sym_by] = ACTIONS(4008), - [anon_sym_select] = ACTIONS(4019), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [sym_grit_metavariable] = ACTIONS(4017), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_RBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_RPAREN] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3986), + [anon_sym_GT] = ACTIONS(3986), + [anon_sym_in] = ACTIONS(3986), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(3986), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3986), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_EQ_GT] = ACTIONS(3997), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3986), + [anon_sym_when] = ACTIONS(3986), + [sym_discard] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3986), + [anon_sym_or] = ACTIONS(3986), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP] = ACTIONS(3986), + [sym_op_bitwise_or] = ACTIONS(3986), + [anon_sym_CARET] = ACTIONS(3997), + [sym_op_left_shift] = ACTIONS(3997), + [sym_op_right_shift] = ACTIONS(3986), + [sym_op_unsigned_right_shift] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3986), + [anon_sym_DASH] = ACTIONS(3986), + [sym_op_divide] = ACTIONS(3986), + [sym_op_modulo] = ACTIONS(3997), + [sym_op_coalescing] = ACTIONS(3997), + [anon_sym_BANG] = ACTIONS(3986), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(3986), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_ascending] = ACTIONS(3986), + [anon_sym_descending] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3986), + [anon_sym_is] = ACTIONS(3986), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3986), + [sym_grit_metavariable] = ACTIONS(3997), + [aux_sym_preproc_if_token3] = ACTIONS(3997), + [aux_sym_preproc_else_token1] = ACTIONS(3997), + [aux_sym_preproc_elif_token1] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435789,78 +435811,78 @@ 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(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4034), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(4037), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_ascending] = ACTIONS(3986), + [anon_sym_descending] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(4037), + [anon_sym_select] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(4034), + [anon_sym_with] = ACTIONS(3991), + [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435882,78 +435904,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2452), [sym_preproc_define] = STATE(2452), [sym_preproc_undef] = STATE(2452), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [sym__identifier_token] = ACTIONS(4464), + [anon_sym_alias] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_global] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_COLON] = ACTIONS(4466), + [anon_sym_COMMA] = ACTIONS(4466), + [anon_sym_RBRACK] = ACTIONS(4466), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_RPAREN] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_file] = ACTIONS(4464), + [anon_sym_LT] = ACTIONS(4464), + [anon_sym_GT] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4464), + [anon_sym_where] = ACTIONS(4464), + [anon_sym_QMARK] = ACTIONS(4464), + [anon_sym_notnull] = ACTIONS(4464), + [anon_sym_unmanaged] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4464), + [anon_sym_scoped] = ACTIONS(4464), + [anon_sym_EQ_GT] = ACTIONS(4466), + [anon_sym_var] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4466), + [anon_sym_yield] = ACTIONS(4464), + [anon_sym_switch] = ACTIONS(4464), + [anon_sym_when] = ACTIONS(4464), + [sym_discard] = ACTIONS(4464), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4466), + [anon_sym_and] = ACTIONS(4464), + [anon_sym_or] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4464), + [sym_op_bitwise_or] = ACTIONS(4464), + [anon_sym_CARET] = ACTIONS(4466), + [sym_op_left_shift] = ACTIONS(4466), + [sym_op_right_shift] = ACTIONS(4464), + [sym_op_unsigned_right_shift] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4464), + [sym_op_divide] = ACTIONS(4464), + [sym_op_modulo] = ACTIONS(4466), + [sym_op_coalescing] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4466), + [anon_sym_DASH_DASH] = ACTIONS(4466), + [anon_sym_from] = ACTIONS(4464), + [anon_sym_into] = ACTIONS(4464), + [anon_sym_join] = ACTIONS(4464), + [anon_sym_on] = ACTIONS(4464), + [anon_sym_equals] = ACTIONS(4464), + [anon_sym_let] = ACTIONS(4464), + [anon_sym_orderby] = ACTIONS(4464), + [anon_sym_ascending] = ACTIONS(4464), + [anon_sym_descending] = ACTIONS(4464), + [anon_sym_group] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(4464), + [anon_sym_select] = ACTIONS(4464), + [anon_sym_as] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4464), + [anon_sym_DASH_GT] = ACTIONS(4466), + [anon_sym_with] = ACTIONS(4464), + [sym_grit_metavariable] = ACTIONS(4466), + [aux_sym_preproc_if_token3] = ACTIONS(4466), + [aux_sym_preproc_else_token1] = ACTIONS(4466), + [aux_sym_preproc_elif_token1] = ACTIONS(4466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435966,6 +435988,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2453] = { + [sym__name] = STATE(4541), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_ref_type] = STATE(4178), + [sym__scoped_base_type] = STATE(4193), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(2453), [sym_preproc_endregion] = STATE(2453), [sym_preproc_line] = STATE(2453), @@ -435975,77 +436006,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2453), [sym_preproc_define] = STATE(2453), [sym_preproc_undef] = STATE(2453), - [sym__identifier_token] = ACTIONS(4468), - [anon_sym_alias] = ACTIONS(4468), - [anon_sym_SEMI] = ACTIONS(4470), - [anon_sym_global] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_COLON] = ACTIONS(4470), - [anon_sym_COMMA] = ACTIONS(4470), - [anon_sym_RBRACK] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_RPAREN] = ACTIONS(4470), - [anon_sym_RBRACE] = ACTIONS(4470), - [anon_sym_file] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4468), - [anon_sym_GT] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4468), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_QMARK] = ACTIONS(4468), - [anon_sym_notnull] = ACTIONS(4468), - [anon_sym_unmanaged] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4468), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_CARET] = ACTIONS(4470), - [anon_sym_PIPE] = ACTIONS(4468), - [anon_sym_AMP] = ACTIONS(4468), - [anon_sym_LT_LT] = ACTIONS(4470), - [anon_sym_GT_GT] = ACTIONS(4468), - [anon_sym_GT_GT_GT] = ACTIONS(4470), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_scoped] = ACTIONS(4468), - [anon_sym_EQ_GT] = ACTIONS(4470), - [anon_sym_var] = ACTIONS(4468), - [anon_sym_yield] = ACTIONS(4468), - [anon_sym_switch] = ACTIONS(4468), - [anon_sym_when] = ACTIONS(4468), - [sym_discard] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_and] = ACTIONS(4468), - [anon_sym_or] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_PIPE_PIPE] = ACTIONS(4470), - [sym_op_coalescing] = ACTIONS(4470), - [anon_sym_from] = ACTIONS(4468), - [anon_sym_into] = ACTIONS(4468), - [anon_sym_join] = ACTIONS(4468), - [anon_sym_on] = ACTIONS(4468), - [anon_sym_equals] = ACTIONS(4468), - [anon_sym_let] = ACTIONS(4468), - [anon_sym_orderby] = ACTIONS(4468), - [anon_sym_ascending] = ACTIONS(4468), - [anon_sym_descending] = ACTIONS(4468), - [anon_sym_group] = ACTIONS(4468), - [anon_sym_by] = ACTIONS(4468), - [anon_sym_select] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4468), - [anon_sym_DASH_GT] = ACTIONS(4470), - [anon_sym_with] = ACTIONS(4468), - [sym_grit_metavariable] = ACTIONS(4470), - [aux_sym_preproc_if_token3] = ACTIONS(4470), - [aux_sym_preproc_else_token1] = ACTIONS(4470), - [aux_sym_preproc_elif_token1] = ACTIONS(4470), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4367), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436058,15 +436080,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2454] = { - [sym__name] = STATE(4936), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_ref_type] = STATE(4779), - [sym__scoped_base_type] = STATE(4778), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(2454), [sym_preproc_endregion] = STATE(2454), [sym_preproc_line] = STATE(2454), @@ -436076,68 +436089,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2454), [sym_preproc_define] = STATE(2454), [sym_preproc_undef] = STATE(2454), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4472), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4388), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(4470), + [anon_sym_alias] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(4472), + [anon_sym_global] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4472), + [anon_sym_COLON] = ACTIONS(4472), + [anon_sym_COMMA] = ACTIONS(4472), + [anon_sym_RBRACK] = ACTIONS(4472), + [anon_sym_LPAREN] = ACTIONS(4472), + [anon_sym_RPAREN] = ACTIONS(4472), + [anon_sym_RBRACE] = ACTIONS(4472), + [anon_sym_file] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4470), + [anon_sym_in] = ACTIONS(4470), + [anon_sym_where] = ACTIONS(4470), + [anon_sym_QMARK] = ACTIONS(4470), + [anon_sym_notnull] = ACTIONS(4470), + [anon_sym_unmanaged] = ACTIONS(4470), + [anon_sym_DOT] = ACTIONS(4470), + [anon_sym_scoped] = ACTIONS(4470), + [anon_sym_EQ_GT] = ACTIONS(4472), + [anon_sym_var] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4472), + [anon_sym_yield] = ACTIONS(4470), + [anon_sym_switch] = ACTIONS(4470), + [anon_sym_when] = ACTIONS(4470), + [sym_discard] = ACTIONS(4470), + [anon_sym_DOT_DOT] = ACTIONS(4472), + [anon_sym_LT_EQ] = ACTIONS(4472), + [anon_sym_GT_EQ] = ACTIONS(4472), + [anon_sym_and] = ACTIONS(4470), + [anon_sym_or] = ACTIONS(4470), + [anon_sym_EQ_EQ] = ACTIONS(4472), + [anon_sym_BANG_EQ] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_PIPE_PIPE] = ACTIONS(4472), + [anon_sym_AMP] = ACTIONS(4470), + [sym_op_bitwise_or] = ACTIONS(4470), + [anon_sym_CARET] = ACTIONS(4472), + [sym_op_left_shift] = ACTIONS(4472), + [sym_op_right_shift] = ACTIONS(4470), + [sym_op_unsigned_right_shift] = ACTIONS(4472), + [anon_sym_PLUS] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4470), + [sym_op_divide] = ACTIONS(4470), + [sym_op_modulo] = ACTIONS(4472), + [sym_op_coalescing] = ACTIONS(4472), + [anon_sym_BANG] = ACTIONS(4470), + [anon_sym_PLUS_PLUS] = ACTIONS(4472), + [anon_sym_DASH_DASH] = ACTIONS(4472), + [anon_sym_from] = ACTIONS(4470), + [anon_sym_into] = ACTIONS(4470), + [anon_sym_join] = ACTIONS(4470), + [anon_sym_on] = ACTIONS(4470), + [anon_sym_equals] = ACTIONS(4470), + [anon_sym_let] = ACTIONS(4470), + [anon_sym_orderby] = ACTIONS(4470), + [anon_sym_ascending] = ACTIONS(4470), + [anon_sym_descending] = ACTIONS(4470), + [anon_sym_group] = ACTIONS(4470), + [anon_sym_by] = ACTIONS(4470), + [anon_sym_select] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4470), + [anon_sym_is] = ACTIONS(4470), + [anon_sym_DASH_GT] = ACTIONS(4472), + [anon_sym_with] = ACTIONS(4470), + [sym_grit_metavariable] = ACTIONS(4472), + [aux_sym_preproc_if_token3] = ACTIONS(4472), + [aux_sym_preproc_else_token1] = ACTIONS(4472), + [aux_sym_preproc_elif_token1] = ACTIONS(4472), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436150,7 +436172,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2455] = { - [sym_type_argument_list] = STATE(2482), + [sym__name] = STATE(3938), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_ref_type] = STATE(3937), + [sym__scoped_base_type] = STATE(3936), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(2455), [sym_preproc_endregion] = STATE(2455), [sym_preproc_line] = STATE(2455), @@ -436160,76 +436190,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2455), [sym_preproc_define] = STATE(2455), [sym_preproc_undef] = STATE(2455), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(4474), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3951), - [anon_sym_from] = ACTIONS(3953), - [anon_sym_into] = ACTIONS(3953), - [anon_sym_join] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_let] = ACTIONS(3953), - [anon_sym_orderby] = ACTIONS(3953), - [anon_sym_group] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_select] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4090), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4094), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4094), + [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(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436242,15 +436264,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2456] = { - [sym__name] = STATE(5477), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_ref_type] = STATE(3762), - [sym__scoped_base_type] = STATE(3735), - [sym_identifier] = STATE(5383), - [sym__reserved_identifier] = STATE(3398), + [sym__name] = STATE(4541), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_ref_type] = STATE(4178), + [sym__scoped_base_type] = STATE(4193), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(2456), [sym_preproc_endregion] = STATE(2456), [sym_preproc_line] = STATE(2456), @@ -436260,68 +436282,68 @@ 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(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4201), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4197), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4197), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4201), - [anon_sym_into] = ACTIONS(4201), - [anon_sym_join] = ACTIONS(4201), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4201), - [anon_sym_orderby] = ACTIONS(4201), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4201), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4201), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4367), + [anon_sym_select] = ACTIONS(4115), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436343,11 +436365,103 @@ 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(4478), + [anon_sym_alias] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4480), + [anon_sym_global] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4480), + [anon_sym_COLON] = ACTIONS(4480), + [anon_sym_COMMA] = ACTIONS(4480), + [anon_sym_RBRACK] = ACTIONS(4480), + [anon_sym_LPAREN] = ACTIONS(4480), + [anon_sym_RPAREN] = ACTIONS(4480), + [anon_sym_RBRACE] = ACTIONS(4480), + [anon_sym_file] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4478), + [anon_sym_GT] = ACTIONS(4478), + [anon_sym_in] = ACTIONS(4478), + [anon_sym_where] = ACTIONS(4478), + [anon_sym_QMARK] = ACTIONS(4478), + [anon_sym_notnull] = ACTIONS(4478), + [anon_sym_unmanaged] = ACTIONS(4478), + [anon_sym_DOT] = ACTIONS(4478), + [anon_sym_scoped] = ACTIONS(4478), + [anon_sym_EQ_GT] = ACTIONS(4480), + [anon_sym_var] = ACTIONS(4478), + [anon_sym_STAR] = ACTIONS(4480), + [anon_sym_yield] = ACTIONS(4478), + [anon_sym_switch] = ACTIONS(4478), + [anon_sym_when] = ACTIONS(4478), + [sym_discard] = ACTIONS(4478), + [anon_sym_DOT_DOT] = ACTIONS(4480), + [anon_sym_LT_EQ] = ACTIONS(4480), + [anon_sym_GT_EQ] = ACTIONS(4480), + [anon_sym_and] = ACTIONS(4478), + [anon_sym_or] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4480), + [anon_sym_BANG_EQ] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_PIPE_PIPE] = ACTIONS(4480), + [anon_sym_AMP] = ACTIONS(4478), + [sym_op_bitwise_or] = ACTIONS(4478), + [anon_sym_CARET] = ACTIONS(4480), + [sym_op_left_shift] = ACTIONS(4480), + [sym_op_right_shift] = ACTIONS(4478), + [sym_op_unsigned_right_shift] = ACTIONS(4480), + [anon_sym_PLUS] = ACTIONS(4478), + [anon_sym_DASH] = ACTIONS(4478), + [sym_op_divide] = ACTIONS(4478), + [sym_op_modulo] = ACTIONS(4480), + [sym_op_coalescing] = ACTIONS(4480), + [anon_sym_BANG] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4480), + [anon_sym_DASH_DASH] = ACTIONS(4480), + [anon_sym_from] = ACTIONS(4478), + [anon_sym_into] = ACTIONS(4478), + [anon_sym_join] = ACTIONS(4478), + [anon_sym_on] = ACTIONS(4478), + [anon_sym_equals] = ACTIONS(4478), + [anon_sym_let] = ACTIONS(4478), + [anon_sym_orderby] = ACTIONS(4478), + [anon_sym_ascending] = ACTIONS(4478), + [anon_sym_descending] = ACTIONS(4478), + [anon_sym_group] = ACTIONS(4478), + [anon_sym_by] = ACTIONS(4478), + [anon_sym_select] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4478), + [anon_sym_DASH_GT] = ACTIONS(4480), + [anon_sym_with] = ACTIONS(4478), + [sym_grit_metavariable] = ACTIONS(4480), + [aux_sym_preproc_if_token3] = ACTIONS(4480), + [aux_sym_preproc_else_token1] = ACTIONS(4480), + [aux_sym_preproc_elif_token1] = ACTIONS(4480), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2458] = { + [sym_preproc_region] = STATE(2458), + [sym_preproc_endregion] = STATE(2458), + [sym_preproc_line] = STATE(2458), + [sym_preproc_pragma] = STATE(2458), + [sym_preproc_nullable] = STATE(2458), + [sym_preproc_error] = STATE(2458), + [sym_preproc_warning] = STATE(2458), + [sym_preproc_define] = STATE(2458), + [sym_preproc_undef] = STATE(2458), [sym__identifier_token] = ACTIONS(4329), [anon_sym_alias] = ACTIONS(4329), [anon_sym_SEMI] = ACTIONS(4331), [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4439), [anon_sym_COMMA] = ACTIONS(4331), [anon_sym_RBRACK] = ACTIONS(4331), [anon_sym_LPAREN] = ACTIONS(4331), @@ -436359,41 +436473,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4329), [anon_sym_in] = ACTIONS(4329), [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), + [anon_sym_QMARK] = ACTIONS(4442), [anon_sym_notnull] = ACTIONS(4329), [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4482), [anon_sym_scoped] = ACTIONS(4329), [anon_sym_EQ_GT] = ACTIONS(4331), [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), [anon_sym_yield] = ACTIONS(4329), [anon_sym_switch] = ACTIONS(4329), [anon_sym_when] = ACTIONS(4329), [sym_discard] = ACTIONS(4329), [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), [anon_sym_and] = ACTIONS(4329), [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), [anon_sym_AMP_AMP] = ACTIONS(4331), [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), [anon_sym_from] = ACTIONS(4329), [anon_sym_into] = ACTIONS(4329), [anon_sym_join] = ACTIONS(4329), @@ -436425,179 +436539,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2458] = { - [sym_preproc_region] = STATE(2458), - [sym_preproc_endregion] = STATE(2458), - [sym_preproc_line] = STATE(2458), - [sym_preproc_pragma] = STATE(2458), - [sym_preproc_nullable] = STATE(2458), - [sym_preproc_error] = STATE(2458), - [sym_preproc_warning] = STATE(2458), - [sym_preproc_define] = STATE(2458), - [sym_preproc_undef] = STATE(2458), - [sym__identifier_token] = ACTIONS(4481), - [anon_sym_alias] = ACTIONS(4481), - [anon_sym_SEMI] = ACTIONS(4483), - [anon_sym_global] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_COMMA] = ACTIONS(4483), - [anon_sym_RBRACK] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4483), - [anon_sym_RPAREN] = ACTIONS(4483), - [anon_sym_RBRACE] = ACTIONS(4483), - [anon_sym_file] = ACTIONS(4481), - [anon_sym_LT] = ACTIONS(4481), - [anon_sym_GT] = ACTIONS(4481), - [anon_sym_in] = ACTIONS(4481), - [anon_sym_where] = ACTIONS(4481), - [anon_sym_QMARK] = ACTIONS(4481), - [anon_sym_notnull] = ACTIONS(4481), - [anon_sym_unmanaged] = ACTIONS(4481), - [anon_sym_BANG] = ACTIONS(4481), - [anon_sym_PLUS_PLUS] = ACTIONS(4483), - [anon_sym_DASH_DASH] = ACTIONS(4483), - [anon_sym_PLUS] = ACTIONS(4481), - [anon_sym_DASH] = ACTIONS(4481), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4481), - [anon_sym_PERCENT] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4481), - [anon_sym_AMP] = ACTIONS(4481), - [anon_sym_LT_LT] = ACTIONS(4483), - [anon_sym_GT_GT] = ACTIONS(4481), - [anon_sym_GT_GT_GT] = ACTIONS(4483), - [anon_sym_EQ_EQ] = ACTIONS(4483), - [anon_sym_BANG_EQ] = ACTIONS(4483), - [anon_sym_GT_EQ] = ACTIONS(4483), - [anon_sym_LT_EQ] = ACTIONS(4483), - [anon_sym_DOT] = ACTIONS(4481), - [anon_sym_scoped] = ACTIONS(4481), - [anon_sym_EQ_GT] = ACTIONS(4483), - [anon_sym_var] = ACTIONS(4481), - [anon_sym_yield] = ACTIONS(4481), - [anon_sym_switch] = ACTIONS(4481), - [anon_sym_when] = ACTIONS(4481), - [sym_discard] = ACTIONS(4481), - [anon_sym_DOT_DOT] = ACTIONS(4483), - [anon_sym_and] = ACTIONS(4481), - [anon_sym_or] = ACTIONS(4481), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_PIPE_PIPE] = ACTIONS(4483), - [sym_op_coalescing] = ACTIONS(4483), - [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), - [anon_sym_as] = ACTIONS(4481), - [anon_sym_is] = ACTIONS(4481), - [anon_sym_DASH_GT] = ACTIONS(4483), - [anon_sym_with] = ACTIONS(4481), - [sym_grit_metavariable] = 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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2459] = { - [sym_preproc_region] = STATE(2459), - [sym_preproc_endregion] = STATE(2459), - [sym_preproc_line] = STATE(2459), - [sym_preproc_pragma] = STATE(2459), - [sym_preproc_nullable] = STATE(2459), - [sym_preproc_error] = STATE(2459), - [sym_preproc_warning] = STATE(2459), - [sym_preproc_define] = STATE(2459), - [sym_preproc_undef] = STATE(2459), - [sym__identifier_token] = ACTIONS(4468), - [anon_sym_alias] = ACTIONS(4468), - [anon_sym_SEMI] = ACTIONS(4470), - [anon_sym_global] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_COLON] = ACTIONS(4470), - [anon_sym_COMMA] = ACTIONS(4470), - [anon_sym_RBRACK] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_RPAREN] = ACTIONS(4470), - [anon_sym_RBRACE] = ACTIONS(4470), - [anon_sym_file] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4468), - [anon_sym_GT] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4468), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_QMARK] = ACTIONS(4468), - [anon_sym_notnull] = ACTIONS(4468), - [anon_sym_unmanaged] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4468), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_CARET] = ACTIONS(4470), - [anon_sym_PIPE] = ACTIONS(4468), - [anon_sym_AMP] = ACTIONS(4468), - [anon_sym_LT_LT] = ACTIONS(4470), - [anon_sym_GT_GT] = ACTIONS(4468), - [anon_sym_GT_GT_GT] = ACTIONS(4470), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_scoped] = ACTIONS(4468), - [anon_sym_EQ_GT] = ACTIONS(4470), - [anon_sym_var] = ACTIONS(4468), - [anon_sym_yield] = ACTIONS(4468), - [anon_sym_switch] = ACTIONS(4468), - [anon_sym_when] = ACTIONS(4468), - [sym_discard] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_and] = ACTIONS(4468), - [anon_sym_or] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_PIPE_PIPE] = ACTIONS(4470), - [sym_op_coalescing] = ACTIONS(4470), - [anon_sym_from] = ACTIONS(4468), - [anon_sym_into] = ACTIONS(4468), - [anon_sym_join] = ACTIONS(4468), - [anon_sym_on] = ACTIONS(4468), - [anon_sym_equals] = ACTIONS(4468), - [anon_sym_let] = ACTIONS(4468), - [anon_sym_orderby] = ACTIONS(4468), - [anon_sym_ascending] = ACTIONS(4468), - [anon_sym_descending] = ACTIONS(4468), - [anon_sym_group] = ACTIONS(4468), - [anon_sym_by] = ACTIONS(4468), - [anon_sym_select] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4468), - [anon_sym_DASH_GT] = ACTIONS(4470), - [anon_sym_with] = ACTIONS(4468), - [sym_grit_metavariable] = ACTIONS(4470), - [aux_sym_preproc_if_token3] = ACTIONS(4470), - [aux_sym_preproc_else_token1] = ACTIONS(4470), - [aux_sym_preproc_elif_token1] = ACTIONS(4470), + [2459] = { + [sym_preproc_region] = STATE(2459), + [sym_preproc_endregion] = STATE(2459), + [sym_preproc_line] = STATE(2459), + [sym_preproc_pragma] = STATE(2459), + [sym_preproc_nullable] = STATE(2459), + [sym_preproc_error] = STATE(2459), + [sym_preproc_warning] = STATE(2459), + [sym_preproc_define] = STATE(2459), + [sym_preproc_undef] = STATE(2459), + [sym__identifier_token] = ACTIONS(4484), + [anon_sym_extern] = ACTIONS(4487), + [anon_sym_alias] = ACTIONS(4484), + [anon_sym_global] = ACTIONS(4484), + [anon_sym_using] = ACTIONS(4487), + [anon_sym_unsafe] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4487), + [anon_sym_LBRACK] = ACTIONS(4489), + [anon_sym_LPAREN] = ACTIONS(4489), + [anon_sym_event] = ACTIONS(4487), + [anon_sym_namespace] = ACTIONS(4487), + [anon_sym_class] = ACTIONS(4487), + [anon_sym_ref] = ACTIONS(4487), + [anon_sym_struct] = ACTIONS(4487), + [anon_sym_enum] = ACTIONS(4487), + [anon_sym_RBRACE] = ACTIONS(4492), + [anon_sym_interface] = ACTIONS(4487), + [anon_sym_delegate] = ACTIONS(4487), + [anon_sym_record] = ACTIONS(4487), + [anon_sym_public] = ACTIONS(4487), + [anon_sym_private] = ACTIONS(4487), + [anon_sym_readonly] = ACTIONS(4487), + [anon_sym_abstract] = ACTIONS(4487), + [anon_sym_async] = ACTIONS(4487), + [anon_sym_const] = ACTIONS(4487), + [anon_sym_file] = ACTIONS(4484), + [anon_sym_fixed] = ACTIONS(4487), + [anon_sym_internal] = ACTIONS(4487), + [anon_sym_new] = ACTIONS(4487), + [anon_sym_override] = ACTIONS(4487), + [anon_sym_partial] = ACTIONS(4487), + [anon_sym_protected] = ACTIONS(4487), + [anon_sym_required] = ACTIONS(4487), + [anon_sym_sealed] = ACTIONS(4487), + [anon_sym_virtual] = ACTIONS(4487), + [anon_sym_volatile] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_where] = ACTIONS(4484), + [anon_sym_QMARK] = ACTIONS(3189), + [anon_sym_notnull] = ACTIONS(4484), + [anon_sym_unmanaged] = ACTIONS(4484), + [anon_sym_operator] = ACTIONS(3187), + [anon_sym_implicit] = ACTIONS(4487), + [anon_sym_explicit] = ACTIONS(4487), + [anon_sym_TILDE] = ACTIONS(4492), + [anon_sym_this] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3189), + [anon_sym_scoped] = ACTIONS(4484), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(4484), + [anon_sym_STAR] = ACTIONS(3189), + [sym_predefined_type] = ACTIONS(4487), + [anon_sym_yield] = ACTIONS(4484), + [anon_sym_when] = ACTIONS(4484), + [anon_sym_from] = ACTIONS(4484), + [anon_sym_into] = ACTIONS(4484), + [anon_sym_join] = ACTIONS(4484), + [anon_sym_on] = ACTIONS(4484), + [anon_sym_equals] = ACTIONS(4484), + [anon_sym_let] = ACTIONS(4484), + [anon_sym_orderby] = ACTIONS(4484), + [anon_sym_ascending] = ACTIONS(4484), + [anon_sym_descending] = ACTIONS(4484), + [anon_sym_group] = ACTIONS(4484), + [anon_sym_by] = ACTIONS(4484), + [anon_sym_select] = ACTIONS(4484), + [sym_grit_metavariable] = ACTIONS(4489), + [aux_sym_preproc_if_token1] = ACTIONS(4492), + [aux_sym_preproc_if_token3] = ACTIONS(4492), + [aux_sym_preproc_else_token1] = ACTIONS(4492), + [aux_sym_preproc_elif_token1] = ACTIONS(4492), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436610,15 +436632,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2460] = { - [sym__name] = STATE(4936), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_ref_type] = STATE(4779), - [sym__scoped_base_type] = STATE(4778), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(2460), [sym_preproc_endregion] = STATE(2460), [sym_preproc_line] = STATE(2460), @@ -436628,68 +436641,77 @@ 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), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4485), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4388), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(4470), + [anon_sym_alias] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(4472), + [anon_sym_global] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4472), + [anon_sym_COLON] = ACTIONS(4472), + [anon_sym_COMMA] = ACTIONS(4472), + [anon_sym_RBRACK] = ACTIONS(4472), + [anon_sym_LPAREN] = ACTIONS(4472), + [anon_sym_RPAREN] = ACTIONS(4472), + [anon_sym_RBRACE] = ACTIONS(4472), + [anon_sym_file] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4470), + [anon_sym_in] = ACTIONS(4470), + [anon_sym_where] = ACTIONS(4470), + [anon_sym_QMARK] = ACTIONS(4470), + [anon_sym_notnull] = ACTIONS(4470), + [anon_sym_unmanaged] = ACTIONS(4470), + [anon_sym_DOT] = ACTIONS(4470), + [anon_sym_scoped] = ACTIONS(4470), + [anon_sym_EQ_GT] = ACTIONS(4472), + [anon_sym_var] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4472), + [anon_sym_yield] = ACTIONS(4470), + [anon_sym_switch] = ACTIONS(4470), + [anon_sym_when] = ACTIONS(4470), + [sym_discard] = ACTIONS(4470), + [anon_sym_DOT_DOT] = ACTIONS(4472), + [anon_sym_LT_EQ] = ACTIONS(4472), + [anon_sym_GT_EQ] = ACTIONS(4472), + [anon_sym_and] = ACTIONS(4470), + [anon_sym_or] = ACTIONS(4470), + [anon_sym_EQ_EQ] = ACTIONS(4472), + [anon_sym_BANG_EQ] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_PIPE_PIPE] = ACTIONS(4472), + [anon_sym_AMP] = ACTIONS(4470), + [sym_op_bitwise_or] = ACTIONS(4470), + [anon_sym_CARET] = ACTIONS(4472), + [sym_op_left_shift] = ACTIONS(4472), + [sym_op_right_shift] = ACTIONS(4470), + [sym_op_unsigned_right_shift] = ACTIONS(4472), + [anon_sym_PLUS] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4470), + [sym_op_divide] = ACTIONS(4470), + [sym_op_modulo] = ACTIONS(4472), + [sym_op_coalescing] = ACTIONS(4472), + [anon_sym_BANG] = ACTIONS(4470), + [anon_sym_PLUS_PLUS] = ACTIONS(4472), + [anon_sym_DASH_DASH] = ACTIONS(4472), + [anon_sym_from] = ACTIONS(4470), + [anon_sym_into] = ACTIONS(4470), + [anon_sym_join] = ACTIONS(4470), + [anon_sym_on] = ACTIONS(4470), + [anon_sym_equals] = ACTIONS(4470), + [anon_sym_let] = ACTIONS(4470), + [anon_sym_orderby] = ACTIONS(4470), + [anon_sym_ascending] = ACTIONS(4470), + [anon_sym_descending] = ACTIONS(4470), + [anon_sym_group] = ACTIONS(4470), + [anon_sym_by] = ACTIONS(4470), + [anon_sym_select] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4470), + [anon_sym_is] = ACTIONS(4470), + [anon_sym_DASH_GT] = ACTIONS(4472), + [anon_sym_with] = ACTIONS(4470), + [sym_grit_metavariable] = ACTIONS(4472), + [aux_sym_preproc_if_token3] = ACTIONS(4472), + [aux_sym_preproc_else_token1] = ACTIONS(4472), + [aux_sym_preproc_elif_token1] = ACTIONS(4472), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436702,6 +436724,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2461] = { + [sym__name] = STATE(5478), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_ref_type] = STATE(3179), + [sym__scoped_base_type] = STATE(3178), + [sym_identifier] = STATE(5429), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2461), [sym_preproc_endregion] = STATE(2461), [sym_preproc_line] = STATE(2461), @@ -436711,77 +436742,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2461), [sym_preproc_define] = STATE(2461), [sym_preproc_undef] = STATE(2461), - [sym__identifier_token] = ACTIONS(4355), - [anon_sym_alias] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4357), - [anon_sym_global] = ACTIONS(4355), - [anon_sym_LBRACK] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4357), - [anon_sym_RBRACK] = ACTIONS(4357), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_RPAREN] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4357), - [anon_sym_file] = ACTIONS(4355), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_notnull] = ACTIONS(4355), - [anon_sym_unmanaged] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_PLUS_PLUS] = ACTIONS(4357), - [anon_sym_DASH_DASH] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4357), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4357), - [anon_sym_CARET] = ACTIONS(4357), - [anon_sym_PIPE] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_LT] = ACTIONS(4357), - [anon_sym_GT_GT] = ACTIONS(4355), - [anon_sym_GT_GT_GT] = ACTIONS(4357), - [anon_sym_EQ_EQ] = ACTIONS(4357), - [anon_sym_BANG_EQ] = ACTIONS(4357), - [anon_sym_GT_EQ] = ACTIONS(4357), - [anon_sym_LT_EQ] = ACTIONS(4357), - [anon_sym_DOT] = ACTIONS(4479), - [anon_sym_scoped] = ACTIONS(4355), - [anon_sym_EQ_GT] = ACTIONS(4357), - [anon_sym_var] = ACTIONS(4355), - [anon_sym_yield] = ACTIONS(4355), - [anon_sym_switch] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [sym_discard] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4357), - [anon_sym_and] = ACTIONS(4355), - [anon_sym_or] = ACTIONS(4355), - [anon_sym_AMP_AMP] = ACTIONS(4357), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [sym_op_coalescing] = ACTIONS(4357), - [anon_sym_from] = ACTIONS(4355), - [anon_sym_into] = ACTIONS(4355), - [anon_sym_join] = ACTIONS(4355), - [anon_sym_on] = ACTIONS(4355), - [anon_sym_equals] = ACTIONS(4355), - [anon_sym_let] = ACTIONS(4355), - [anon_sym_orderby] = ACTIONS(4355), - [anon_sym_ascending] = ACTIONS(4355), - [anon_sym_descending] = ACTIONS(4355), - [anon_sym_group] = ACTIONS(4355), - [anon_sym_by] = ACTIONS(4355), - [anon_sym_select] = ACTIONS(4355), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_DASH_GT] = ACTIONS(4357), - [anon_sym_with] = ACTIONS(4355), - [sym_grit_metavariable] = ACTIONS(4357), - [aux_sym_preproc_if_token3] = ACTIONS(4357), - [aux_sym_preproc_else_token1] = ACTIONS(4357), - [aux_sym_preproc_elif_token1] = ACTIONS(4357), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4192), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4188), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4188), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4192), + [anon_sym_into] = ACTIONS(4192), + [anon_sym_join] = ACTIONS(4192), + [anon_sym_on] = ACTIONS(4188), + [anon_sym_equals] = ACTIONS(4188), + [anon_sym_let] = ACTIONS(4192), + [anon_sym_orderby] = ACTIONS(4192), + [anon_sym_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4192), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436794,6 +436816,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2462] = { + [sym__name] = STATE(3347), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_ref_type] = STATE(3311), + [sym__scoped_base_type] = STATE(3250), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2462), [sym_preproc_endregion] = STATE(2462), [sym_preproc_line] = STATE(2462), @@ -436803,77 +436834,68 @@ 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(4487), - [anon_sym_alias] = ACTIONS(4487), - [anon_sym_SEMI] = ACTIONS(4489), - [anon_sym_global] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_COMMA] = ACTIONS(4489), - [anon_sym_RBRACK] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_RPAREN] = ACTIONS(4489), - [anon_sym_RBRACE] = ACTIONS(4489), - [anon_sym_file] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_in] = ACTIONS(4487), - [anon_sym_where] = ACTIONS(4487), - [anon_sym_QMARK] = ACTIONS(4487), - [anon_sym_notnull] = ACTIONS(4487), - [anon_sym_unmanaged] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_PERCENT] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4487), - [anon_sym_AMP] = ACTIONS(4487), - [anon_sym_LT_LT] = ACTIONS(4489), - [anon_sym_GT_GT] = ACTIONS(4487), - [anon_sym_GT_GT_GT] = ACTIONS(4489), - [anon_sym_EQ_EQ] = ACTIONS(4489), - [anon_sym_BANG_EQ] = ACTIONS(4489), - [anon_sym_GT_EQ] = ACTIONS(4489), - [anon_sym_LT_EQ] = ACTIONS(4489), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_scoped] = ACTIONS(4487), - [anon_sym_EQ_GT] = ACTIONS(4489), - [anon_sym_var] = ACTIONS(4487), - [anon_sym_yield] = ACTIONS(4487), - [anon_sym_switch] = ACTIONS(4487), - [anon_sym_when] = ACTIONS(4487), - [sym_discard] = ACTIONS(4487), - [anon_sym_DOT_DOT] = ACTIONS(4489), - [anon_sym_and] = ACTIONS(4487), - [anon_sym_or] = ACTIONS(4487), - [anon_sym_AMP_AMP] = ACTIONS(4489), - [anon_sym_PIPE_PIPE] = ACTIONS(4489), - [sym_op_coalescing] = ACTIONS(4489), - [anon_sym_from] = ACTIONS(4487), - [anon_sym_into] = ACTIONS(4487), - [anon_sym_join] = ACTIONS(4487), - [anon_sym_on] = ACTIONS(4487), - [anon_sym_equals] = ACTIONS(4487), - [anon_sym_let] = ACTIONS(4487), - [anon_sym_orderby] = ACTIONS(4487), - [anon_sym_ascending] = ACTIONS(4487), - [anon_sym_descending] = ACTIONS(4487), - [anon_sym_group] = ACTIONS(4487), - [anon_sym_by] = ACTIONS(4487), - [anon_sym_select] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4487), - [anon_sym_is] = ACTIONS(4487), - [anon_sym_DASH_GT] = ACTIONS(4489), - [anon_sym_with] = ACTIONS(4487), - [sym_grit_metavariable] = ACTIONS(4489), - [aux_sym_preproc_if_token3] = ACTIONS(4489), - [aux_sym_preproc_else_token1] = ACTIONS(4489), - [aux_sym_preproc_elif_token1] = ACTIONS(4489), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4496), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4498), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4498), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4498), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4498), + [anon_sym_orderby] = ACTIONS(4498), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4498), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4498), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436886,6 +436908,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2463] = { + [sym__name] = STATE(3938), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_ref_type] = STATE(3937), + [sym__scoped_base_type] = STATE(3936), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(2463), [sym_preproc_endregion] = STATE(2463), [sym_preproc_line] = STATE(2463), @@ -436895,11 +436926,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2463), [sym_preproc_define] = STATE(2463), [sym_preproc_undef] = STATE(2463), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4501), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4090), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4094), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4094), + [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(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4097), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2464] = { + [sym_preproc_region] = STATE(2464), + [sym_preproc_endregion] = STATE(2464), + [sym_preproc_line] = STATE(2464), + [sym_preproc_pragma] = STATE(2464), + [sym_preproc_nullable] = STATE(2464), + [sym_preproc_error] = STATE(2464), + [sym_preproc_warning] = STATE(2464), + [sym_preproc_define] = STATE(2464), + [sym_preproc_undef] = STATE(2464), [sym__identifier_token] = ACTIONS(4329), [anon_sym_alias] = ACTIONS(4329), [anon_sym_SEMI] = ACTIONS(4331), [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4439), [anon_sym_COMMA] = ACTIONS(4331), [anon_sym_RBRACK] = ACTIONS(4331), [anon_sym_LPAREN] = ACTIONS(4331), @@ -436911,41 +437025,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4329), [anon_sym_in] = ACTIONS(4329), [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), + [anon_sym_QMARK] = ACTIONS(4442), [anon_sym_notnull] = ACTIONS(4329), [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_DOT] = ACTIONS(4503), [anon_sym_scoped] = ACTIONS(4329), [anon_sym_EQ_GT] = ACTIONS(4331), [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), [anon_sym_yield] = ACTIONS(4329), [anon_sym_switch] = ACTIONS(4329), [anon_sym_when] = ACTIONS(4329), [sym_discard] = ACTIONS(4329), [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), [anon_sym_and] = ACTIONS(4329), [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), [anon_sym_AMP_AMP] = ACTIONS(4331), [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), [anon_sym_from] = ACTIONS(4329), [anon_sym_into] = ACTIONS(4329), [anon_sym_join] = ACTIONS(4329), @@ -436960,7 +437074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(4329), [anon_sym_as] = ACTIONS(4329), [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4428), + [anon_sym_DASH_GT] = ACTIONS(4450), [anon_sym_with] = ACTIONS(4329), [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_if_token3] = ACTIONS(4331), @@ -436977,86 +437091,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2464] = { - [sym__name] = STATE(4694), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_ref_type] = STATE(4695), - [sym__scoped_base_type] = STATE(4696), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), - [sym_preproc_region] = STATE(2464), - [sym_preproc_endregion] = STATE(2464), - [sym_preproc_line] = STATE(2464), - [sym_preproc_pragma] = STATE(2464), - [sym_preproc_nullable] = STATE(2464), - [sym_preproc_error] = STATE(2464), - [sym_preproc_warning] = STATE(2464), - [sym_preproc_define] = STATE(2464), - [sym_preproc_undef] = STATE(2464), + [2465] = { + [sym__name] = STATE(3938), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_ref_type] = STATE(3937), + [sym__scoped_base_type] = STATE(3936), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), + [sym_preproc_region] = STATE(2465), + [sym_preproc_endregion] = STATE(2465), + [sym_preproc_line] = STATE(2465), + [sym_preproc_pragma] = STATE(2465), + [sym_preproc_nullable] = STATE(2465), + [sym_preproc_error] = STATE(2465), + [sym_preproc_warning] = STATE(2465), + [sym_preproc_define] = STATE(2465), + [sym_preproc_undef] = STATE(2465), [sym__identifier_token] = ACTIONS(4088), [anon_sym_alias] = ACTIONS(4090), [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(3694), [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(4090), [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), [anon_sym_var] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(3694), [anon_sym_yield] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), [anon_sym_from] = ACTIONS(4090), [anon_sym_into] = ACTIONS(4094), [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4094), + [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_by] = ACTIONS(4094), [anon_sym_select] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -437069,21 +437183,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2465] = { - [sym_preproc_region] = STATE(2465), - [sym_preproc_endregion] = STATE(2465), - [sym_preproc_line] = STATE(2465), - [sym_preproc_pragma] = STATE(2465), - [sym_preproc_nullable] = STATE(2465), - [sym_preproc_error] = STATE(2465), - [sym_preproc_warning] = STATE(2465), - [sym_preproc_define] = STATE(2465), - [sym_preproc_undef] = STATE(2465), + [2466] = { + [sym_preproc_region] = STATE(2466), + [sym_preproc_endregion] = STATE(2466), + [sym_preproc_line] = STATE(2466), + [sym_preproc_pragma] = STATE(2466), + [sym_preproc_nullable] = STATE(2466), + [sym_preproc_error] = STATE(2466), + [sym_preproc_warning] = STATE(2466), + [sym_preproc_define] = STATE(2466), + [sym_preproc_undef] = STATE(2466), + [sym__identifier_token] = ACTIONS(4478), + [anon_sym_alias] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4480), + [anon_sym_global] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4480), + [anon_sym_COLON] = ACTIONS(4480), + [anon_sym_COMMA] = ACTIONS(4480), + [anon_sym_RBRACK] = ACTIONS(4480), + [anon_sym_LPAREN] = ACTIONS(4480), + [anon_sym_RPAREN] = ACTIONS(4480), + [anon_sym_RBRACE] = ACTIONS(4480), + [anon_sym_file] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4478), + [anon_sym_GT] = ACTIONS(4478), + [anon_sym_in] = ACTIONS(4478), + [anon_sym_where] = ACTIONS(4478), + [anon_sym_QMARK] = ACTIONS(4478), + [anon_sym_notnull] = ACTIONS(4478), + [anon_sym_unmanaged] = ACTIONS(4478), + [anon_sym_DOT] = ACTIONS(4478), + [anon_sym_scoped] = ACTIONS(4478), + [anon_sym_EQ_GT] = ACTIONS(4480), + [anon_sym_var] = ACTIONS(4478), + [anon_sym_STAR] = ACTIONS(4480), + [anon_sym_yield] = ACTIONS(4478), + [anon_sym_switch] = ACTIONS(4478), + [anon_sym_when] = ACTIONS(4478), + [sym_discard] = ACTIONS(4478), + [anon_sym_DOT_DOT] = ACTIONS(4480), + [anon_sym_LT_EQ] = ACTIONS(4480), + [anon_sym_GT_EQ] = ACTIONS(4480), + [anon_sym_and] = ACTIONS(4478), + [anon_sym_or] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4480), + [anon_sym_BANG_EQ] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_PIPE_PIPE] = ACTIONS(4480), + [anon_sym_AMP] = ACTIONS(4478), + [sym_op_bitwise_or] = ACTIONS(4478), + [anon_sym_CARET] = ACTIONS(4480), + [sym_op_left_shift] = ACTIONS(4480), + [sym_op_right_shift] = ACTIONS(4478), + [sym_op_unsigned_right_shift] = ACTIONS(4480), + [anon_sym_PLUS] = ACTIONS(4478), + [anon_sym_DASH] = ACTIONS(4478), + [sym_op_divide] = ACTIONS(4478), + [sym_op_modulo] = ACTIONS(4480), + [sym_op_coalescing] = ACTIONS(4480), + [anon_sym_BANG] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4480), + [anon_sym_DASH_DASH] = ACTIONS(4480), + [anon_sym_from] = ACTIONS(4478), + [anon_sym_into] = ACTIONS(4478), + [anon_sym_join] = ACTIONS(4478), + [anon_sym_on] = ACTIONS(4478), + [anon_sym_equals] = ACTIONS(4478), + [anon_sym_let] = ACTIONS(4478), + [anon_sym_orderby] = ACTIONS(4478), + [anon_sym_ascending] = ACTIONS(4478), + [anon_sym_descending] = ACTIONS(4478), + [anon_sym_group] = ACTIONS(4478), + [anon_sym_by] = ACTIONS(4478), + [anon_sym_select] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4478), + [anon_sym_DASH_GT] = ACTIONS(4480), + [anon_sym_with] = ACTIONS(4478), + [sym_grit_metavariable] = ACTIONS(4480), + [aux_sym_preproc_if_token3] = ACTIONS(4480), + [aux_sym_preproc_else_token1] = ACTIONS(4480), + [aux_sym_preproc_elif_token1] = ACTIONS(4480), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2467] = { + [sym_preproc_region] = STATE(2467), + [sym_preproc_endregion] = STATE(2467), + [sym_preproc_line] = STATE(2467), + [sym_preproc_pragma] = STATE(2467), + [sym_preproc_nullable] = STATE(2467), + [sym_preproc_error] = STATE(2467), + [sym_preproc_warning] = STATE(2467), + [sym_preproc_define] = STATE(2467), + [sym_preproc_undef] = STATE(2467), [sym__identifier_token] = ACTIONS(4329), [anon_sym_alias] = ACTIONS(4329), [anon_sym_SEMI] = ACTIONS(4331), [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4439), [anon_sym_COMMA] = ACTIONS(4331), [anon_sym_RBRACK] = ACTIONS(4331), [anon_sym_LPAREN] = ACTIONS(4331), @@ -437095,41 +437301,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4329), [anon_sym_in] = ACTIONS(4329), [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), + [anon_sym_QMARK] = ACTIONS(4442), [anon_sym_notnull] = ACTIONS(4329), [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4495), + [anon_sym_DOT] = ACTIONS(4507), [anon_sym_scoped] = ACTIONS(4329), [anon_sym_EQ_GT] = ACTIONS(4331), [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), [anon_sym_yield] = ACTIONS(4329), [anon_sym_switch] = ACTIONS(4329), [anon_sym_when] = ACTIONS(4329), [sym_discard] = ACTIONS(4329), [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), [anon_sym_and] = ACTIONS(4329), [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), [anon_sym_AMP_AMP] = ACTIONS(4331), [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), [anon_sym_from] = ACTIONS(4329), [anon_sym_into] = ACTIONS(4329), [anon_sym_join] = ACTIONS(4329), @@ -437144,7 +437350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(4329), [anon_sym_as] = ACTIONS(4329), [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4428), + [anon_sym_DASH_GT] = ACTIONS(4450), [anon_sym_with] = ACTIONS(4329), [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_if_token3] = ACTIONS(4331), @@ -437161,191 +437367,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2466] = { - [sym_preproc_region] = STATE(2466), - [sym_preproc_endregion] = STATE(2466), - [sym_preproc_line] = STATE(2466), - [sym_preproc_pragma] = STATE(2466), - [sym_preproc_nullable] = STATE(2466), - [sym_preproc_error] = STATE(2466), - [sym_preproc_warning] = STATE(2466), - [sym_preproc_define] = STATE(2466), - [sym_preproc_undef] = STATE(2466), - [sym__identifier_token] = ACTIONS(4497), - [anon_sym_extern] = ACTIONS(4500), - [anon_sym_alias] = ACTIONS(4497), - [anon_sym_global] = ACTIONS(4497), - [anon_sym_using] = ACTIONS(4500), - [anon_sym_unsafe] = ACTIONS(4500), - [anon_sym_static] = ACTIONS(4500), - [anon_sym_LBRACK] = ACTIONS(4502), - [anon_sym_LPAREN] = ACTIONS(4502), - [anon_sym_event] = ACTIONS(4500), - [anon_sym_namespace] = ACTIONS(4500), - [anon_sym_class] = ACTIONS(4500), - [anon_sym_ref] = ACTIONS(4500), - [anon_sym_struct] = ACTIONS(4500), - [anon_sym_enum] = ACTIONS(4500), - [anon_sym_RBRACE] = ACTIONS(4505), - [anon_sym_interface] = ACTIONS(4500), - [anon_sym_delegate] = ACTIONS(4500), - [anon_sym_record] = ACTIONS(4500), - [anon_sym_public] = ACTIONS(4500), - [anon_sym_private] = ACTIONS(4500), - [anon_sym_readonly] = ACTIONS(4500), - [anon_sym_abstract] = ACTIONS(4500), - [anon_sym_async] = ACTIONS(4500), - [anon_sym_const] = ACTIONS(4500), - [anon_sym_file] = ACTIONS(4497), - [anon_sym_fixed] = ACTIONS(4500), - [anon_sym_internal] = ACTIONS(4500), - [anon_sym_new] = ACTIONS(4500), - [anon_sym_override] = ACTIONS(4500), - [anon_sym_partial] = ACTIONS(4500), - [anon_sym_protected] = ACTIONS(4500), - [anon_sym_required] = ACTIONS(4500), - [anon_sym_sealed] = ACTIONS(4500), - [anon_sym_virtual] = ACTIONS(4500), - [anon_sym_volatile] = ACTIONS(4500), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_where] = ACTIONS(4497), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_notnull] = ACTIONS(4497), - [anon_sym_unmanaged] = ACTIONS(4497), - [anon_sym_operator] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(4505), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_implicit] = ACTIONS(4500), - [anon_sym_explicit] = ACTIONS(4500), - [anon_sym_this] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_scoped] = ACTIONS(4497), - [anon_sym_COLON_COLON] = ACTIONS(3189), - [anon_sym_var] = ACTIONS(4497), - [sym_predefined_type] = ACTIONS(4500), - [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), - [sym_grit_metavariable] = ACTIONS(4502), - [aux_sym_preproc_if_token1] = ACTIONS(4505), - [aux_sym_preproc_if_token3] = ACTIONS(4505), - [aux_sym_preproc_else_token1] = ACTIONS(4505), - [aux_sym_preproc_elif_token1] = ACTIONS(4505), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2467] = { - [sym_preproc_region] = STATE(2467), - [sym_preproc_endregion] = STATE(2467), - [sym_preproc_line] = STATE(2467), - [sym_preproc_pragma] = STATE(2467), - [sym_preproc_nullable] = STATE(2467), - [sym_preproc_error] = STATE(2467), - [sym_preproc_warning] = STATE(2467), - [sym_preproc_define] = STATE(2467), - [sym_preproc_undef] = STATE(2467), - [sym__identifier_token] = ACTIONS(4487), - [anon_sym_alias] = ACTIONS(4487), - [anon_sym_SEMI] = ACTIONS(4489), - [anon_sym_global] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_COMMA] = ACTIONS(4489), - [anon_sym_RBRACK] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_RPAREN] = ACTIONS(4489), - [anon_sym_RBRACE] = ACTIONS(4489), - [anon_sym_file] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_in] = ACTIONS(4487), - [anon_sym_where] = ACTIONS(4487), - [anon_sym_QMARK] = ACTIONS(4487), - [anon_sym_notnull] = ACTIONS(4487), - [anon_sym_unmanaged] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_PERCENT] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4487), - [anon_sym_AMP] = ACTIONS(4487), - [anon_sym_LT_LT] = ACTIONS(4489), - [anon_sym_GT_GT] = ACTIONS(4487), - [anon_sym_GT_GT_GT] = ACTIONS(4489), - [anon_sym_EQ_EQ] = ACTIONS(4489), - [anon_sym_BANG_EQ] = ACTIONS(4489), - [anon_sym_GT_EQ] = ACTIONS(4489), - [anon_sym_LT_EQ] = ACTIONS(4489), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_scoped] = ACTIONS(4487), - [anon_sym_EQ_GT] = ACTIONS(4489), - [anon_sym_var] = ACTIONS(4487), - [anon_sym_yield] = ACTIONS(4487), - [anon_sym_switch] = ACTIONS(4487), - [anon_sym_when] = ACTIONS(4487), - [sym_discard] = ACTIONS(4487), - [anon_sym_DOT_DOT] = ACTIONS(4489), - [anon_sym_and] = ACTIONS(4487), - [anon_sym_or] = ACTIONS(4487), - [anon_sym_AMP_AMP] = ACTIONS(4489), - [anon_sym_PIPE_PIPE] = ACTIONS(4489), - [sym_op_coalescing] = ACTIONS(4489), - [anon_sym_from] = ACTIONS(4487), - [anon_sym_into] = ACTIONS(4487), - [anon_sym_join] = ACTIONS(4487), - [anon_sym_on] = ACTIONS(4487), - [anon_sym_equals] = ACTIONS(4487), - [anon_sym_let] = ACTIONS(4487), - [anon_sym_orderby] = ACTIONS(4487), - [anon_sym_ascending] = ACTIONS(4487), - [anon_sym_descending] = ACTIONS(4487), - [anon_sym_group] = ACTIONS(4487), - [anon_sym_by] = ACTIONS(4487), - [anon_sym_select] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4487), - [anon_sym_is] = ACTIONS(4487), - [anon_sym_DASH_GT] = ACTIONS(4489), - [anon_sym_with] = ACTIONS(4487), - [sym_grit_metavariable] = ACTIONS(4489), - [aux_sym_preproc_if_token3] = ACTIONS(4489), - [aux_sym_preproc_else_token1] = ACTIONS(4489), - [aux_sym_preproc_elif_token1] = ACTIONS(4489), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2468] = { + [sym_type_argument_list] = STATE(2496), [sym_preproc_region] = STATE(2468), [sym_preproc_endregion] = STATE(2468), [sym_preproc_line] = STATE(2468), @@ -437355,77 +437378,76 @@ 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(4507), - [anon_sym_alias] = ACTIONS(4507), - [anon_sym_SEMI] = ACTIONS(4509), - [anon_sym_global] = ACTIONS(4507), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_COLON] = ACTIONS(4509), - [anon_sym_COMMA] = ACTIONS(4509), - [anon_sym_RBRACK] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_RPAREN] = ACTIONS(4509), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_file] = ACTIONS(4507), - [anon_sym_LT] = ACTIONS(4507), - [anon_sym_GT] = ACTIONS(4507), - [anon_sym_in] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(4507), - [anon_sym_QMARK] = ACTIONS(4507), - [anon_sym_notnull] = ACTIONS(4507), - [anon_sym_unmanaged] = ACTIONS(4507), - [anon_sym_BANG] = ACTIONS(4507), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4507), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_CARET] = ACTIONS(4509), - [anon_sym_PIPE] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym_LT_LT] = ACTIONS(4509), - [anon_sym_GT_GT] = ACTIONS(4507), - [anon_sym_GT_GT_GT] = ACTIONS(4509), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ] = ACTIONS(4509), - [anon_sym_GT_EQ] = ACTIONS(4509), - [anon_sym_LT_EQ] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_scoped] = ACTIONS(4507), - [anon_sym_EQ_GT] = ACTIONS(4509), - [anon_sym_var] = ACTIONS(4507), - [anon_sym_yield] = ACTIONS(4507), - [anon_sym_switch] = ACTIONS(4507), - [anon_sym_when] = ACTIONS(4507), - [sym_discard] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_and] = ACTIONS(4507), - [anon_sym_or] = ACTIONS(4507), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [sym_op_coalescing] = ACTIONS(4509), - [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), - [anon_sym_as] = ACTIONS(4507), - [anon_sym_is] = ACTIONS(4507), - [anon_sym_DASH_GT] = ACTIONS(4509), - [anon_sym_with] = ACTIONS(4507), - [sym_grit_metavariable] = ACTIONS(4509), - [aux_sym_preproc_if_token3] = ACTIONS(4509), - [aux_sym_preproc_else_token1] = ACTIONS(4509), - [aux_sym_preproc_elif_token1] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(4509), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_join] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_orderby] = ACTIONS(3957), + [anon_sym_group] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_select] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437438,15 +437460,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2469] = { - [sym__name] = STATE(4285), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_ref_type] = STATE(3809), - [sym__scoped_base_type] = STATE(3808), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(2469), [sym_preproc_endregion] = STATE(2469), [sym_preproc_line] = STATE(2469), @@ -437456,68 +437469,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2469), [sym_preproc_define] = STATE(2469), [sym_preproc_undef] = STATE(2469), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4511), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4513), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4513), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4513), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4513), - [anon_sym_orderby] = ACTIONS(4513), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4513), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(4512), + [anon_sym_alias] = ACTIONS(4512), + [anon_sym_SEMI] = ACTIONS(4514), + [anon_sym_global] = ACTIONS(4512), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym_COLON] = ACTIONS(4514), + [anon_sym_COMMA] = ACTIONS(4514), + [anon_sym_RBRACK] = ACTIONS(4514), + [anon_sym_LPAREN] = ACTIONS(4514), + [anon_sym_RPAREN] = ACTIONS(4514), + [anon_sym_RBRACE] = ACTIONS(4514), + [anon_sym_file] = ACTIONS(4512), + [anon_sym_LT] = ACTIONS(4512), + [anon_sym_GT] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_notnull] = ACTIONS(4512), + [anon_sym_unmanaged] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_scoped] = ACTIONS(4512), + [anon_sym_EQ_GT] = ACTIONS(4514), + [anon_sym_var] = ACTIONS(4512), + [anon_sym_STAR] = ACTIONS(4514), + [anon_sym_yield] = ACTIONS(4512), + [anon_sym_switch] = ACTIONS(4512), + [anon_sym_when] = ACTIONS(4512), + [sym_discard] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4514), + [anon_sym_LT_EQ] = ACTIONS(4514), + [anon_sym_GT_EQ] = ACTIONS(4514), + [anon_sym_and] = ACTIONS(4512), + [anon_sym_or] = ACTIONS(4512), + [anon_sym_EQ_EQ] = ACTIONS(4514), + [anon_sym_BANG_EQ] = ACTIONS(4514), + [anon_sym_AMP_AMP] = ACTIONS(4514), + [anon_sym_PIPE_PIPE] = ACTIONS(4514), + [anon_sym_AMP] = ACTIONS(4512), + [sym_op_bitwise_or] = ACTIONS(4512), + [anon_sym_CARET] = ACTIONS(4514), + [sym_op_left_shift] = ACTIONS(4514), + [sym_op_right_shift] = ACTIONS(4512), + [sym_op_unsigned_right_shift] = ACTIONS(4514), + [anon_sym_PLUS] = ACTIONS(4512), + [anon_sym_DASH] = ACTIONS(4512), + [sym_op_divide] = ACTIONS(4512), + [sym_op_modulo] = ACTIONS(4514), + [sym_op_coalescing] = ACTIONS(4514), + [anon_sym_BANG] = ACTIONS(4512), + [anon_sym_PLUS_PLUS] = ACTIONS(4514), + [anon_sym_DASH_DASH] = ACTIONS(4514), + [anon_sym_from] = ACTIONS(4512), + [anon_sym_into] = ACTIONS(4512), + [anon_sym_join] = ACTIONS(4512), + [anon_sym_on] = ACTIONS(4512), + [anon_sym_equals] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_orderby] = ACTIONS(4512), + [anon_sym_ascending] = ACTIONS(4512), + [anon_sym_descending] = ACTIONS(4512), + [anon_sym_group] = ACTIONS(4512), + [anon_sym_by] = ACTIONS(4512), + [anon_sym_select] = ACTIONS(4512), + [anon_sym_as] = ACTIONS(4512), + [anon_sym_is] = ACTIONS(4512), + [anon_sym_DASH_GT] = ACTIONS(4514), + [anon_sym_with] = ACTIONS(4512), + [sym_grit_metavariable] = ACTIONS(4514), + [aux_sym_preproc_if_token3] = ACTIONS(4514), + [aux_sym_preproc_else_token1] = ACTIONS(4514), + [aux_sym_preproc_elif_token1] = ACTIONS(4514), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437530,15 +437552,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2470] = { - [sym__name] = STATE(4936), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_ref_type] = STATE(4779), - [sym__scoped_base_type] = STATE(4778), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym__name] = STATE(4541), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_ref_type] = STATE(4178), + [sym__scoped_base_type] = STATE(4193), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(2470), [sym_preproc_endregion] = STATE(2470), [sym_preproc_line] = STATE(2470), @@ -437548,68 +437570,68 @@ 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(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), [anon_sym_ref] = ACTIONS(4516), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4388), - [anon_sym_select] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4145), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4367), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437622,15 +437644,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2471] = { - [sym__name] = STATE(4694), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_ref_type] = STATE(4695), - [sym__scoped_base_type] = STATE(4696), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), [sym_preproc_region] = STATE(2471), [sym_preproc_endregion] = STATE(2471), [sym_preproc_line] = STATE(2471), @@ -437640,68 +437653,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2471), [sym_preproc_define] = STATE(2471), [sym_preproc_undef] = STATE(2471), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4090), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4094), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4094), - [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(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4097), + [sym__identifier_token] = ACTIONS(4359), + [anon_sym_alias] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_global] = ACTIONS(4359), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_file] = ACTIONS(4359), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_QMARK] = ACTIONS(4359), + [anon_sym_notnull] = ACTIONS(4359), + [anon_sym_unmanaged] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_scoped] = ACTIONS(4359), + [anon_sym_EQ_GT] = ACTIONS(4361), + [anon_sym_var] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_yield] = ACTIONS(4359), + [anon_sym_switch] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [sym_discard] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_and] = ACTIONS(4359), + [anon_sym_or] = ACTIONS(4359), + [anon_sym_EQ_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4359), + [sym_op_bitwise_or] = ACTIONS(4359), + [anon_sym_CARET] = ACTIONS(4361), + [sym_op_left_shift] = ACTIONS(4361), + [sym_op_right_shift] = ACTIONS(4359), + [sym_op_unsigned_right_shift] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [sym_op_divide] = ACTIONS(4359), + [sym_op_modulo] = ACTIONS(4361), + [sym_op_coalescing] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_from] = ACTIONS(4359), + [anon_sym_into] = ACTIONS(4359), + [anon_sym_join] = ACTIONS(4359), + [anon_sym_on] = ACTIONS(4359), + [anon_sym_equals] = ACTIONS(4359), + [anon_sym_let] = ACTIONS(4359), + [anon_sym_orderby] = ACTIONS(4359), + [anon_sym_ascending] = ACTIONS(4359), + [anon_sym_descending] = ACTIONS(4359), + [anon_sym_group] = ACTIONS(4359), + [anon_sym_by] = ACTIONS(4359), + [anon_sym_select] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [anon_sym_with] = ACTIONS(4359), + [sym_grit_metavariable] = ACTIONS(4361), + [aux_sym_preproc_if_token3] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437723,11 +437745,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2472), [sym_preproc_define] = STATE(2472), [sym_preproc_undef] = STATE(2472), + [sym__identifier_token] = ACTIONS(4518), + [anon_sym_alias] = ACTIONS(4518), + [anon_sym_SEMI] = ACTIONS(4520), + [anon_sym_global] = ACTIONS(4518), + [anon_sym_LBRACK] = ACTIONS(4520), + [anon_sym_COLON] = ACTIONS(4520), + [anon_sym_COMMA] = ACTIONS(4520), + [anon_sym_RBRACK] = ACTIONS(4520), + [anon_sym_LPAREN] = ACTIONS(4520), + [anon_sym_RPAREN] = ACTIONS(4520), + [anon_sym_RBRACE] = ACTIONS(4520), + [anon_sym_file] = ACTIONS(4518), + [anon_sym_LT] = ACTIONS(4518), + [anon_sym_GT] = ACTIONS(4518), + [anon_sym_in] = ACTIONS(4518), + [anon_sym_where] = ACTIONS(4518), + [anon_sym_QMARK] = ACTIONS(4518), + [anon_sym_notnull] = ACTIONS(4518), + [anon_sym_unmanaged] = ACTIONS(4518), + [anon_sym_DOT] = ACTIONS(4518), + [anon_sym_scoped] = ACTIONS(4518), + [anon_sym_EQ_GT] = ACTIONS(4520), + [anon_sym_var] = ACTIONS(4518), + [anon_sym_STAR] = ACTIONS(4520), + [anon_sym_yield] = ACTIONS(4518), + [anon_sym_switch] = ACTIONS(4518), + [anon_sym_when] = ACTIONS(4518), + [sym_discard] = ACTIONS(4518), + [anon_sym_DOT_DOT] = ACTIONS(4520), + [anon_sym_LT_EQ] = ACTIONS(4520), + [anon_sym_GT_EQ] = ACTIONS(4520), + [anon_sym_and] = ACTIONS(4518), + [anon_sym_or] = ACTIONS(4518), + [anon_sym_EQ_EQ] = ACTIONS(4520), + [anon_sym_BANG_EQ] = ACTIONS(4520), + [anon_sym_AMP_AMP] = ACTIONS(4520), + [anon_sym_PIPE_PIPE] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4518), + [sym_op_bitwise_or] = ACTIONS(4518), + [anon_sym_CARET] = ACTIONS(4520), + [sym_op_left_shift] = ACTIONS(4520), + [sym_op_right_shift] = ACTIONS(4518), + [sym_op_unsigned_right_shift] = ACTIONS(4520), + [anon_sym_PLUS] = ACTIONS(4518), + [anon_sym_DASH] = ACTIONS(4518), + [sym_op_divide] = ACTIONS(4518), + [sym_op_modulo] = ACTIONS(4520), + [sym_op_coalescing] = ACTIONS(4520), + [anon_sym_BANG] = ACTIONS(4518), + [anon_sym_PLUS_PLUS] = ACTIONS(4520), + [anon_sym_DASH_DASH] = ACTIONS(4520), + [anon_sym_from] = ACTIONS(4518), + [anon_sym_into] = ACTIONS(4518), + [anon_sym_join] = ACTIONS(4518), + [anon_sym_on] = ACTIONS(4518), + [anon_sym_equals] = ACTIONS(4518), + [anon_sym_let] = ACTIONS(4518), + [anon_sym_orderby] = ACTIONS(4518), + [anon_sym_ascending] = ACTIONS(4518), + [anon_sym_descending] = ACTIONS(4518), + [anon_sym_group] = ACTIONS(4518), + [anon_sym_by] = ACTIONS(4518), + [anon_sym_select] = ACTIONS(4518), + [anon_sym_as] = ACTIONS(4518), + [anon_sym_is] = ACTIONS(4518), + [anon_sym_DASH_GT] = ACTIONS(4520), + [anon_sym_with] = ACTIONS(4518), + [sym_grit_metavariable] = ACTIONS(4520), + [aux_sym_preproc_if_token3] = ACTIONS(4520), + [aux_sym_preproc_else_token1] = ACTIONS(4520), + [aux_sym_preproc_elif_token1] = ACTIONS(4520), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2473] = { + [sym_preproc_region] = STATE(2473), + [sym_preproc_endregion] = STATE(2473), + [sym_preproc_line] = STATE(2473), + [sym_preproc_pragma] = STATE(2473), + [sym_preproc_nullable] = STATE(2473), + [sym_preproc_error] = STATE(2473), + [sym_preproc_warning] = STATE(2473), + [sym_preproc_define] = STATE(2473), + [sym_preproc_undef] = STATE(2473), [sym__identifier_token] = ACTIONS(4329), [anon_sym_alias] = ACTIONS(4329), [anon_sym_SEMI] = ACTIONS(4331), [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4439), [anon_sym_COMMA] = ACTIONS(4331), [anon_sym_RBRACK] = ACTIONS(4331), [anon_sym_LPAREN] = ACTIONS(4331), @@ -437739,41 +437853,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(4329), [anon_sym_in] = ACTIONS(4329), [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), + [anon_sym_QMARK] = ACTIONS(4442), [anon_sym_notnull] = ACTIONS(4329), [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4520), + [anon_sym_DOT] = ACTIONS(4522), [anon_sym_scoped] = ACTIONS(4329), [anon_sym_EQ_GT] = ACTIONS(4331), [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), [anon_sym_yield] = ACTIONS(4329), [anon_sym_switch] = ACTIONS(4329), [anon_sym_when] = ACTIONS(4329), [sym_discard] = ACTIONS(4329), [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), [anon_sym_and] = ACTIONS(4329), [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), [anon_sym_AMP_AMP] = ACTIONS(4331), [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), [anon_sym_from] = ACTIONS(4329), [anon_sym_into] = ACTIONS(4329), [anon_sym_join] = ACTIONS(4329), @@ -437788,7 +437902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(4329), [anon_sym_as] = ACTIONS(4329), [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4416), + [anon_sym_DASH_GT] = ACTIONS(4454), [anon_sym_with] = ACTIONS(4329), [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_if_token3] = ACTIONS(4331), @@ -437805,87 +437919,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2473] = { - [sym__name] = STATE(4694), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_ref_type] = STATE(4695), - [sym__scoped_base_type] = STATE(4696), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), - [sym_preproc_region] = STATE(2473), - [sym_preproc_endregion] = STATE(2473), - [sym_preproc_line] = STATE(2473), - [sym_preproc_pragma] = STATE(2473), - [sym_preproc_nullable] = STATE(2473), - [sym_preproc_error] = STATE(2473), - [sym_preproc_warning] = STATE(2473), - [sym_preproc_define] = STATE(2473), - [sym_preproc_undef] = STATE(2473), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4522), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4090), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4094), - [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(4094), - [anon_sym_select] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4097), + [2474] = { + [sym_preproc_region] = STATE(2474), + [sym_preproc_endregion] = STATE(2474), + [sym_preproc_line] = STATE(2474), + [sym_preproc_pragma] = STATE(2474), + [sym_preproc_nullable] = STATE(2474), + [sym_preproc_error] = STATE(2474), + [sym_preproc_warning] = STATE(2474), + [sym_preproc_define] = STATE(2474), + [sym_preproc_undef] = STATE(2474), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_join] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_orderby] = ACTIONS(3957), + [anon_sym_group] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_select] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437897,69 +438010,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2474] = { - [sym_preproc_region] = STATE(2474), - [sym_preproc_endregion] = STATE(2474), - [sym_preproc_line] = STATE(2474), - [sym_preproc_pragma] = STATE(2474), - [sym_preproc_nullable] = STATE(2474), - [sym_preproc_error] = STATE(2474), - [sym_preproc_warning] = STATE(2474), - [sym_preproc_define] = STATE(2474), - [sym_preproc_undef] = STATE(2474), + [2475] = { + [sym_preproc_region] = STATE(2475), + [sym_preproc_endregion] = STATE(2475), + [sym_preproc_line] = STATE(2475), + [sym_preproc_pragma] = STATE(2475), + [sym_preproc_nullable] = STATE(2475), + [sym_preproc_error] = STATE(2475), + [sym_preproc_warning] = STATE(2475), + [sym_preproc_define] = STATE(2475), + [sym_preproc_undef] = STATE(2475), [anon_sym_SEMI] = ACTIONS(4524), [anon_sym_EQ] = ACTIONS(4526), [anon_sym_LBRACK] = ACTIONS(4524), - [anon_sym_COLON] = ACTIONS(4528), + [anon_sym_COLON] = ACTIONS(4524), [anon_sym_COMMA] = ACTIONS(4524), [anon_sym_RBRACK] = ACTIONS(4524), [anon_sym_LPAREN] = ACTIONS(4524), [anon_sym_RPAREN] = ACTIONS(4524), [anon_sym_RBRACE] = ACTIONS(4524), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_in] = ACTIONS(4526), [anon_sym_where] = ACTIONS(4524), - [anon_sym_QMARK] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4524), - [anon_sym_DASH_DASH] = ACTIONS(4524), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_CARET] = ACTIONS(4530), - [anon_sym_PIPE] = ACTIONS(4530), - [anon_sym_AMP] = ACTIONS(4530), - [anon_sym_LT_LT] = ACTIONS(4530), - [anon_sym_GT_GT] = ACTIONS(4530), - [anon_sym_GT_GT_GT] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4524), - [anon_sym_BANG_EQ] = ACTIONS(4524), - [anon_sym_GT_EQ] = ACTIONS(4524), - [anon_sym_LT_EQ] = ACTIONS(4524), - [anon_sym_DOT] = ACTIONS(4530), + [anon_sym_QMARK] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4526), [anon_sym_EQ_GT] = ACTIONS(4524), + [anon_sym_STAR] = ACTIONS(4526), [anon_sym_switch] = ACTIONS(4524), [anon_sym_DOT_DOT] = ACTIONS(4524), + [anon_sym_LT_EQ] = ACTIONS(4524), + [anon_sym_GT_EQ] = ACTIONS(4524), [anon_sym_and] = ACTIONS(4524), - [anon_sym_or] = ACTIONS(4530), - [anon_sym_PLUS_EQ] = ACTIONS(4528), - [anon_sym_DASH_EQ] = ACTIONS(4528), - [anon_sym_STAR_EQ] = ACTIONS(4528), - [anon_sym_SLASH_EQ] = ACTIONS(4528), - [anon_sym_PERCENT_EQ] = ACTIONS(4528), - [anon_sym_AMP_EQ] = ACTIONS(4528), - [anon_sym_CARET_EQ] = ACTIONS(4528), - [anon_sym_PIPE_EQ] = ACTIONS(4528), - [anon_sym_LT_LT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4528), + [anon_sym_or] = ACTIONS(4526), + [anon_sym_PLUS_EQ] = ACTIONS(4524), + [anon_sym_DASH_EQ] = ACTIONS(4524), + [anon_sym_STAR_EQ] = ACTIONS(4524), + [anon_sym_SLASH_EQ] = ACTIONS(4524), + [anon_sym_PERCENT_EQ] = ACTIONS(4524), + [anon_sym_AMP_EQ] = ACTIONS(4524), + [anon_sym_CARET_EQ] = ACTIONS(4524), + [anon_sym_PIPE_EQ] = ACTIONS(4524), + [anon_sym_LT_LT_EQ] = ACTIONS(4524), + [anon_sym_GT_GT_EQ] = ACTIONS(4524), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4524), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4524), + [anon_sym_EQ_EQ] = ACTIONS(4524), + [anon_sym_BANG_EQ] = ACTIONS(4524), [anon_sym_AMP_AMP] = ACTIONS(4524), [anon_sym_PIPE_PIPE] = ACTIONS(4524), - [sym_op_coalescing] = ACTIONS(4530), + [anon_sym_AMP] = ACTIONS(4526), + [sym_op_bitwise_or] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [sym_op_left_shift] = ACTIONS(4526), + [sym_op_right_shift] = ACTIONS(4526), + [sym_op_unsigned_right_shift] = ACTIONS(4526), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [sym_op_divide] = ACTIONS(4526), + [sym_op_modulo] = ACTIONS(4526), + [sym_op_coalescing] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PLUS_PLUS] = ACTIONS(4524), + [anon_sym_DASH_DASH] = ACTIONS(4524), [anon_sym_from] = ACTIONS(4524), [anon_sym_into] = ACTIONS(4524), [anon_sym_join] = ACTIONS(4524), @@ -437988,106 +438101,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2475] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2321), - [sym_property_pattern_clause] = STATE(2353), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5846), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2475), - [sym_preproc_endregion] = STATE(2475), - [sym_preproc_line] = STATE(2475), - [sym_preproc_pragma] = STATE(2475), - [sym_preproc_nullable] = STATE(2475), - [sym_preproc_error] = STATE(2475), - [sym_preproc_warning] = STATE(2475), - [sym_preproc_define] = STATE(2475), - [sym_preproc_undef] = STATE(2475), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4222), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2476] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2321), - [sym_property_pattern_clause] = STATE(2353), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5846), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2620), + [sym_property_pattern_clause] = STATE(2656), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(2476), [sym_preproc_endregion] = STATE(2476), [sym_preproc_line] = STATE(2476), @@ -438097,68 +438119,68 @@ 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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4222), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4115), [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438171,14 +438193,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2477] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2630), - [sym_property_pattern_clause] = STATE(2717), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5846), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2477), [sym_preproc_endregion] = STATE(2477), [sym_preproc_line] = STATE(2477), @@ -438188,68 +438202,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2477), [sym_preproc_define] = STATE(2477), [sym_preproc_undef] = STATE(2477), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4212), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4216), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4220), + [anon_sym_SEMI] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_RBRACK] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4020), + [anon_sym_RPAREN] = ACTIONS(4020), + [anon_sym_RBRACE] = ACTIONS(4020), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_in] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4020), + [anon_sym_QMARK] = ACTIONS(4013), + [anon_sym_DOT] = ACTIONS(4013), + [anon_sym_EQ_GT] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4013), + [anon_sym_switch] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4020), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4020), + [anon_sym_into] = ACTIONS(4020), + [anon_sym_join] = ACTIONS(4020), + [anon_sym_on] = ACTIONS(4020), + [anon_sym_equals] = ACTIONS(4020), + [anon_sym_let] = ACTIONS(4020), + [anon_sym_orderby] = ACTIONS(4020), + [anon_sym_group] = ACTIONS(4020), + [anon_sym_by] = ACTIONS(4020), + [anon_sym_select] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_DASH_GT] = ACTIONS(4020), + [anon_sym_with] = ACTIONS(4020), + [aux_sym_preproc_if_token3] = ACTIONS(4020), + [aux_sym_preproc_else_token1] = ACTIONS(4020), + [aux_sym_preproc_elif_token1] = ACTIONS(4020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438262,14 +438284,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2478] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2671), - [sym_property_pattern_clause] = STATE(2778), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4662), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2620), + [sym_property_pattern_clause] = STATE(2656), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(2478), [sym_preproc_endregion] = STATE(2478), [sym_preproc_line] = STATE(2478), @@ -438279,68 +438301,68 @@ 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), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4141), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4115), [anon_sym_LT] = ACTIONS(4224), [anon_sym_GT] = ACTIONS(4224), [anon_sym_in] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4141), + [anon_sym_where] = ACTIONS(4115), [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4115), [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4141), + [anon_sym_when] = ACTIONS(4115), [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), [anon_sym_as] = ACTIONS(4224), [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4145), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438353,6 +438375,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2479] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2592), + [sym_property_pattern_clause] = STATE(2634), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4070), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2479), [sym_preproc_endregion] = STATE(2479), [sym_preproc_line] = STATE(2479), @@ -438362,76 +438392,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3951), - [anon_sym_from] = ACTIONS(3953), - [anon_sym_into] = ACTIONS(3953), - [anon_sym_join] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_let] = ACTIONS(3953), - [anon_sym_orderby] = ACTIONS(3953), - [anon_sym_group] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_select] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_COLON] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4228), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438444,14 +438466,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2480] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2630), - [sym_property_pattern_clause] = STATE(2717), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5846), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2617), + [sym_property_pattern_clause] = STATE(2667), + [sym__variable_designation] = STATE(5310), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5156), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2480), [sym_preproc_endregion] = STATE(2480), [sym_preproc_line] = STATE(2480), @@ -438461,66 +438483,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2480), [sym_preproc_define] = STATE(2480), [sym_preproc_undef] = STATE(2480), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4425), [anon_sym_LT] = ACTIONS(4224), [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4224), [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4222), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4425), [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4224), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), [anon_sym_and] = ACTIONS(4224), [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4224), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4224), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(4224), + [anon_sym_orderby] = ACTIONS(4224), + [anon_sym_ascending] = ACTIONS(4224), + [anon_sym_descending] = ACTIONS(4224), + [anon_sym_group] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4224), [anon_sym_as] = ACTIONS(4224), [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), [sym_grit_metavariable] = ACTIONS(4220), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -438535,6 +438557,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2481] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2301), + [sym_property_pattern_clause] = STATE(2341), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5845), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2481), [sym_preproc_endregion] = STATE(2481), [sym_preproc_line] = STATE(2481), @@ -438544,76 +438574,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(4006), - [anon_sym_EQ] = ACTIONS(3991), - [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_RBRACE] = ACTIONS(4006), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_in] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(4006), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(3991), - [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(3991), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(4006), - [anon_sym_into] = ACTIONS(4006), - [anon_sym_join] = ACTIONS(4006), - [anon_sym_on] = ACTIONS(4006), - [anon_sym_equals] = ACTIONS(4006), - [anon_sym_let] = ACTIONS(4006), - [anon_sym_orderby] = ACTIONS(4006), - [anon_sym_group] = ACTIONS(4006), - [anon_sym_by] = ACTIONS(4006), - [anon_sym_select] = ACTIONS(4006), - [anon_sym_as] = ACTIONS(4006), - [anon_sym_is] = ACTIONS(4006), - [anon_sym_DASH_GT] = ACTIONS(4006), - [anon_sym_with] = ACTIONS(4006), - [aux_sym_preproc_if_token3] = ACTIONS(4006), - [aux_sym_preproc_else_token1] = ACTIONS(4006), - [aux_sym_preproc_elif_token1] = ACTIONS(4006), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4220), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438635,76 +438657,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2482), [sym_preproc_define] = STATE(2482), [sym_preproc_undef] = STATE(2482), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_EQ] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_RBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_RBRACE] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3955), - [anon_sym_GT] = ACTIONS(3955), - [anon_sym_in] = ACTIONS(3955), - [anon_sym_where] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3955), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_CARET] = ACTIONS(3955), - [anon_sym_PIPE] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_LT_LT] = ACTIONS(3955), - [anon_sym_GT_GT] = ACTIONS(3955), - [anon_sym_GT_GT_GT] = ACTIONS(3955), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_EQ_GT] = ACTIONS(3957), - [anon_sym_switch] = ACTIONS(3957), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3957), - [anon_sym_or] = ACTIONS(3955), - [anon_sym_PLUS_EQ] = ACTIONS(3957), - [anon_sym_DASH_EQ] = ACTIONS(3957), - [anon_sym_STAR_EQ] = ACTIONS(3957), - [anon_sym_SLASH_EQ] = ACTIONS(3957), - [anon_sym_PERCENT_EQ] = ACTIONS(3957), - [anon_sym_AMP_EQ] = ACTIONS(3957), - [anon_sym_CARET_EQ] = ACTIONS(3957), - [anon_sym_PIPE_EQ] = ACTIONS(3957), - [anon_sym_LT_LT_EQ] = ACTIONS(3957), - [anon_sym_GT_GT_EQ] = ACTIONS(3957), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [sym_op_coalescing] = ACTIONS(3955), - [anon_sym_from] = ACTIONS(3957), - [anon_sym_into] = ACTIONS(3957), - [anon_sym_join] = ACTIONS(3957), - [anon_sym_on] = ACTIONS(3957), - [anon_sym_equals] = ACTIONS(3957), - [anon_sym_let] = ACTIONS(3957), - [anon_sym_orderby] = ACTIONS(3957), - [anon_sym_group] = ACTIONS(3957), - [anon_sym_by] = ACTIONS(3957), - [anon_sym_select] = ACTIONS(3957), - [anon_sym_as] = ACTIONS(3957), - [anon_sym_is] = ACTIONS(3957), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3957), - [aux_sym_preproc_if_token3] = ACTIONS(3957), - [aux_sym_preproc_else_token1] = ACTIONS(3957), - [aux_sym_preproc_elif_token1] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(4530), + [anon_sym_EQ] = ACTIONS(4532), + [anon_sym_LBRACK] = ACTIONS(4530), + [anon_sym_COLON] = ACTIONS(4530), + [anon_sym_COMMA] = ACTIONS(4530), + [anon_sym_RBRACK] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(4530), + [anon_sym_RPAREN] = ACTIONS(4530), + [anon_sym_RBRACE] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4532), + [anon_sym_GT] = ACTIONS(4532), + [anon_sym_in] = ACTIONS(4532), + [anon_sym_where] = ACTIONS(4530), + [anon_sym_QMARK] = ACTIONS(4532), + [anon_sym_DOT] = ACTIONS(4532), + [anon_sym_EQ_GT] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4532), + [anon_sym_switch] = ACTIONS(4530), + [anon_sym_DOT_DOT] = ACTIONS(4530), + [anon_sym_LT_EQ] = ACTIONS(4530), + [anon_sym_GT_EQ] = ACTIONS(4530), + [anon_sym_and] = ACTIONS(4530), + [anon_sym_or] = ACTIONS(4532), + [anon_sym_PLUS_EQ] = ACTIONS(4530), + [anon_sym_DASH_EQ] = ACTIONS(4530), + [anon_sym_STAR_EQ] = ACTIONS(4530), + [anon_sym_SLASH_EQ] = ACTIONS(4530), + [anon_sym_PERCENT_EQ] = ACTIONS(4530), + [anon_sym_AMP_EQ] = ACTIONS(4530), + [anon_sym_CARET_EQ] = ACTIONS(4530), + [anon_sym_PIPE_EQ] = ACTIONS(4530), + [anon_sym_LT_LT_EQ] = ACTIONS(4530), + [anon_sym_GT_GT_EQ] = ACTIONS(4530), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4530), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4530), + [anon_sym_EQ_EQ] = ACTIONS(4530), + [anon_sym_BANG_EQ] = ACTIONS(4530), + [anon_sym_AMP_AMP] = ACTIONS(4530), + [anon_sym_PIPE_PIPE] = ACTIONS(4530), + [anon_sym_AMP] = ACTIONS(4532), + [sym_op_bitwise_or] = ACTIONS(4532), + [anon_sym_CARET] = ACTIONS(4532), + [sym_op_left_shift] = ACTIONS(4532), + [sym_op_right_shift] = ACTIONS(4532), + [sym_op_unsigned_right_shift] = ACTIONS(4532), + [anon_sym_PLUS] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [sym_op_divide] = ACTIONS(4532), + [sym_op_modulo] = ACTIONS(4532), + [sym_op_coalescing] = ACTIONS(4532), + [anon_sym_BANG] = ACTIONS(4532), + [anon_sym_PLUS_PLUS] = ACTIONS(4530), + [anon_sym_DASH_DASH] = ACTIONS(4530), + [anon_sym_from] = ACTIONS(4530), + [anon_sym_into] = ACTIONS(4530), + [anon_sym_join] = ACTIONS(4530), + [anon_sym_on] = ACTIONS(4530), + [anon_sym_equals] = ACTIONS(4530), + [anon_sym_let] = ACTIONS(4530), + [anon_sym_orderby] = ACTIONS(4530), + [anon_sym_group] = ACTIONS(4530), + [anon_sym_by] = ACTIONS(4530), + [anon_sym_select] = ACTIONS(4530), + [anon_sym_as] = ACTIONS(4530), + [anon_sym_is] = ACTIONS(4530), + [anon_sym_DASH_GT] = ACTIONS(4530), + [anon_sym_with] = ACTIONS(4530), + [aux_sym_preproc_if_token3] = ACTIONS(4530), + [aux_sym_preproc_else_token1] = ACTIONS(4530), + [aux_sym_preproc_elif_token1] = ACTIONS(4530), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438717,14 +438739,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2483] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2667), - [sym_property_pattern_clause] = STATE(2762), - [sym__variable_designation] = STATE(5242), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5155), - [sym__reserved_identifier] = STATE(2395), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2589), + [sym_property_pattern_clause] = STATE(2632), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2483), [sym_preproc_endregion] = STATE(2483), [sym_preproc_line] = STATE(2483), @@ -438734,68 +438756,68 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4224), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4224), - [anon_sym_descending] = ACTIONS(4224), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4222), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_COLON] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438817,76 +438839,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2484), [sym_preproc_define] = STATE(2484), [sym_preproc_undef] = STATE(2484), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym_EQ] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_COLON] = ACTIONS(3972), - [anon_sym_COMMA] = ACTIONS(3972), - [anon_sym_RBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3972), - [anon_sym_RPAREN] = ACTIONS(3972), - [anon_sym_RBRACE] = ACTIONS(3972), - [anon_sym_LT] = ACTIONS(3970), - [anon_sym_GT] = ACTIONS(3970), - [anon_sym_in] = ACTIONS(3970), - [anon_sym_where] = ACTIONS(3972), - [anon_sym_QMARK] = ACTIONS(3970), - [anon_sym_BANG] = ACTIONS(3970), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3970), - [anon_sym_SLASH] = ACTIONS(3970), - [anon_sym_PERCENT] = ACTIONS(3970), - [anon_sym_CARET] = ACTIONS(3970), - [anon_sym_PIPE] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_LT_LT] = ACTIONS(3970), - [anon_sym_GT_GT] = ACTIONS(3970), - [anon_sym_GT_GT_GT] = ACTIONS(3970), - [anon_sym_EQ_EQ] = ACTIONS(3972), - [anon_sym_BANG_EQ] = ACTIONS(3972), - [anon_sym_GT_EQ] = ACTIONS(3972), - [anon_sym_LT_EQ] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(3970), - [anon_sym_EQ_GT] = ACTIONS(3972), - [anon_sym_switch] = ACTIONS(3972), - [anon_sym_DOT_DOT] = ACTIONS(3972), - [anon_sym_and] = ACTIONS(3972), - [anon_sym_or] = ACTIONS(3970), - [anon_sym_PLUS_EQ] = ACTIONS(3972), - [anon_sym_DASH_EQ] = ACTIONS(3972), - [anon_sym_STAR_EQ] = ACTIONS(3972), - [anon_sym_SLASH_EQ] = ACTIONS(3972), - [anon_sym_PERCENT_EQ] = ACTIONS(3972), - [anon_sym_AMP_EQ] = ACTIONS(3972), - [anon_sym_CARET_EQ] = ACTIONS(3972), - [anon_sym_PIPE_EQ] = ACTIONS(3972), - [anon_sym_LT_LT_EQ] = ACTIONS(3972), - [anon_sym_GT_GT_EQ] = ACTIONS(3972), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3972), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_PIPE_PIPE] = ACTIONS(3972), - [sym_op_coalescing] = ACTIONS(3970), - [anon_sym_from] = ACTIONS(3972), - [anon_sym_into] = ACTIONS(3972), - [anon_sym_join] = ACTIONS(3972), - [anon_sym_on] = ACTIONS(3972), - [anon_sym_equals] = ACTIONS(3972), - [anon_sym_let] = ACTIONS(3972), - [anon_sym_orderby] = ACTIONS(3972), - [anon_sym_group] = ACTIONS(3972), - [anon_sym_by] = ACTIONS(3972), - [anon_sym_select] = ACTIONS(3972), - [anon_sym_as] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3972), - [anon_sym_DASH_GT] = ACTIONS(3972), - [anon_sym_with] = ACTIONS(3972), - [aux_sym_preproc_if_token3] = ACTIONS(3972), - [aux_sym_preproc_else_token1] = ACTIONS(3972), - [aux_sym_preproc_elif_token1] = ACTIONS(3972), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_RBRACE] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_in] = ACTIONS(4540), + [anon_sym_where] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_DOT] = ACTIONS(4540), + [anon_sym_EQ_GT] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_switch] = ACTIONS(4534), + [anon_sym_DOT_DOT] = ACTIONS(4534), + [anon_sym_LT_EQ] = ACTIONS(4534), + [anon_sym_GT_EQ] = ACTIONS(4534), + [anon_sym_and] = ACTIONS(4534), + [anon_sym_or] = ACTIONS(4540), + [anon_sym_PLUS_EQ] = ACTIONS(4538), + [anon_sym_DASH_EQ] = ACTIONS(4538), + [anon_sym_STAR_EQ] = ACTIONS(4538), + [anon_sym_SLASH_EQ] = ACTIONS(4538), + [anon_sym_PERCENT_EQ] = ACTIONS(4538), + [anon_sym_AMP_EQ] = ACTIONS(4538), + [anon_sym_CARET_EQ] = ACTIONS(4538), + [anon_sym_PIPE_EQ] = ACTIONS(4538), + [anon_sym_LT_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4534), + [anon_sym_BANG_EQ] = ACTIONS(4534), + [anon_sym_AMP_AMP] = ACTIONS(4534), + [anon_sym_PIPE_PIPE] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4540), + [sym_op_bitwise_or] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [sym_op_left_shift] = ACTIONS(4540), + [sym_op_right_shift] = ACTIONS(4540), + [sym_op_unsigned_right_shift] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [sym_op_divide] = ACTIONS(4540), + [sym_op_modulo] = ACTIONS(4540), + [sym_op_coalescing] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PLUS_PLUS] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4534), + [anon_sym_from] = ACTIONS(4534), + [anon_sym_into] = ACTIONS(4534), + [anon_sym_join] = ACTIONS(4534), + [anon_sym_on] = ACTIONS(4534), + [anon_sym_equals] = ACTIONS(4534), + [anon_sym_let] = ACTIONS(4534), + [anon_sym_orderby] = ACTIONS(4534), + [anon_sym_group] = ACTIONS(4534), + [anon_sym_by] = ACTIONS(4534), + [anon_sym_select] = ACTIONS(4534), + [anon_sym_as] = ACTIONS(4534), + [anon_sym_is] = ACTIONS(4534), + [anon_sym_DASH_GT] = ACTIONS(4534), + [anon_sym_with] = ACTIONS(4534), + [aux_sym_preproc_if_token3] = ACTIONS(4534), + [aux_sym_preproc_else_token1] = ACTIONS(4534), + [aux_sym_preproc_elif_token1] = ACTIONS(4534), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438899,6 +438921,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2485] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2617), + [sym_property_pattern_clause] = STATE(2667), + [sym__variable_designation] = STATE(5310), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5156), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2485), [sym_preproc_endregion] = STATE(2485), [sym_preproc_line] = STATE(2485), @@ -438908,76 +438938,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2485), [sym_preproc_define] = STATE(2485), [sym_preproc_undef] = STATE(2485), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym_EQ] = ACTIONS(3966), - [anon_sym_LBRACK] = ACTIONS(3968), - [anon_sym_COLON] = ACTIONS(3968), - [anon_sym_COMMA] = ACTIONS(3968), - [anon_sym_RBRACK] = ACTIONS(3968), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_RPAREN] = ACTIONS(3968), - [anon_sym_RBRACE] = ACTIONS(3968), - [anon_sym_LT] = ACTIONS(3966), - [anon_sym_GT] = ACTIONS(3966), - [anon_sym_in] = ACTIONS(3966), - [anon_sym_where] = ACTIONS(3968), - [anon_sym_QMARK] = ACTIONS(3966), - [anon_sym_BANG] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3966), - [anon_sym_SLASH] = ACTIONS(3966), - [anon_sym_PERCENT] = ACTIONS(3966), - [anon_sym_CARET] = ACTIONS(3966), - [anon_sym_PIPE] = ACTIONS(3966), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_LT_LT] = ACTIONS(3966), - [anon_sym_GT_GT] = ACTIONS(3966), - [anon_sym_GT_GT_GT] = ACTIONS(3966), - [anon_sym_EQ_EQ] = ACTIONS(3968), - [anon_sym_BANG_EQ] = ACTIONS(3968), - [anon_sym_GT_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3968), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_EQ_GT] = ACTIONS(3968), - [anon_sym_switch] = ACTIONS(3968), - [anon_sym_DOT_DOT] = ACTIONS(3968), - [anon_sym_and] = ACTIONS(3968), - [anon_sym_or] = ACTIONS(3966), - [anon_sym_PLUS_EQ] = ACTIONS(3968), - [anon_sym_DASH_EQ] = ACTIONS(3968), - [anon_sym_STAR_EQ] = ACTIONS(3968), - [anon_sym_SLASH_EQ] = ACTIONS(3968), - [anon_sym_PERCENT_EQ] = ACTIONS(3968), - [anon_sym_AMP_EQ] = ACTIONS(3968), - [anon_sym_CARET_EQ] = ACTIONS(3968), - [anon_sym_PIPE_EQ] = ACTIONS(3968), - [anon_sym_LT_LT_EQ] = ACTIONS(3968), - [anon_sym_GT_GT_EQ] = ACTIONS(3968), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3968), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_PIPE_PIPE] = ACTIONS(3968), - [sym_op_coalescing] = ACTIONS(3966), - [anon_sym_from] = ACTIONS(3968), - [anon_sym_into] = ACTIONS(3968), - [anon_sym_join] = ACTIONS(3968), - [anon_sym_on] = ACTIONS(3968), - [anon_sym_equals] = ACTIONS(3968), - [anon_sym_let] = ACTIONS(3968), - [anon_sym_orderby] = ACTIONS(3968), - [anon_sym_group] = ACTIONS(3968), - [anon_sym_by] = ACTIONS(3968), - [anon_sym_select] = ACTIONS(3968), - [anon_sym_as] = ACTIONS(3968), - [anon_sym_is] = ACTIONS(3968), - [anon_sym_DASH_GT] = ACTIONS(3968), - [anon_sym_with] = ACTIONS(3968), - [aux_sym_preproc_if_token3] = ACTIONS(3968), - [aux_sym_preproc_else_token1] = ACTIONS(3968), - [aux_sym_preproc_elif_token1] = ACTIONS(3968), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4224), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4224), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4224), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(4224), + [anon_sym_orderby] = ACTIONS(4224), + [anon_sym_ascending] = ACTIONS(4224), + [anon_sym_descending] = ACTIONS(4224), + [anon_sym_group] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4224), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4220), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438990,6 +439012,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2486] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2314), + [sym_property_pattern_clause] = STATE(2369), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5845), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2486), [sym_preproc_endregion] = STATE(2486), [sym_preproc_line] = STATE(2486), @@ -438999,76 +439029,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym_EQ] = ACTIONS(3978), - [anon_sym_LBRACK] = ACTIONS(3980), - [anon_sym_COLON] = ACTIONS(3980), - [anon_sym_COMMA] = ACTIONS(3980), - [anon_sym_RBRACK] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym_RPAREN] = ACTIONS(3980), - [anon_sym_RBRACE] = ACTIONS(3980), - [anon_sym_LT] = ACTIONS(3978), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_in] = ACTIONS(3978), - [anon_sym_where] = ACTIONS(3980), - [anon_sym_QMARK] = ACTIONS(3978), - [anon_sym_BANG] = ACTIONS(3978), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3978), - [anon_sym_SLASH] = ACTIONS(3978), - [anon_sym_PERCENT] = ACTIONS(3978), - [anon_sym_CARET] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(3978), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_LT_LT] = ACTIONS(3978), - [anon_sym_GT_GT] = ACTIONS(3978), - [anon_sym_GT_GT_GT] = ACTIONS(3978), - [anon_sym_EQ_EQ] = ACTIONS(3980), - [anon_sym_BANG_EQ] = ACTIONS(3980), - [anon_sym_GT_EQ] = ACTIONS(3980), - [anon_sym_LT_EQ] = ACTIONS(3980), - [anon_sym_DOT] = ACTIONS(3978), - [anon_sym_EQ_GT] = ACTIONS(3980), - [anon_sym_switch] = ACTIONS(3980), - [anon_sym_DOT_DOT] = ACTIONS(3980), - [anon_sym_and] = ACTIONS(3980), - [anon_sym_or] = ACTIONS(3978), - [anon_sym_PLUS_EQ] = ACTIONS(3980), - [anon_sym_DASH_EQ] = ACTIONS(3980), - [anon_sym_STAR_EQ] = ACTIONS(3980), - [anon_sym_SLASH_EQ] = ACTIONS(3980), - [anon_sym_PERCENT_EQ] = ACTIONS(3980), - [anon_sym_AMP_EQ] = ACTIONS(3980), - [anon_sym_CARET_EQ] = ACTIONS(3980), - [anon_sym_PIPE_EQ] = ACTIONS(3980), - [anon_sym_LT_LT_EQ] = ACTIONS(3980), - [anon_sym_GT_GT_EQ] = ACTIONS(3980), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3980), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_PIPE_PIPE] = ACTIONS(3980), - [sym_op_coalescing] = ACTIONS(3978), - [anon_sym_from] = ACTIONS(3980), - [anon_sym_into] = ACTIONS(3980), - [anon_sym_join] = ACTIONS(3980), - [anon_sym_on] = ACTIONS(3980), - [anon_sym_equals] = ACTIONS(3980), - [anon_sym_let] = ACTIONS(3980), - [anon_sym_orderby] = ACTIONS(3980), - [anon_sym_group] = ACTIONS(3980), - [anon_sym_by] = ACTIONS(3980), - [anon_sym_select] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(3980), - [anon_sym_is] = ACTIONS(3980), - [anon_sym_DASH_GT] = ACTIONS(3980), - [anon_sym_with] = ACTIONS(3980), - [aux_sym_preproc_if_token3] = ACTIONS(3980), - [aux_sym_preproc_else_token1] = ACTIONS(3980), - [aux_sym_preproc_elif_token1] = ACTIONS(3980), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4232), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439081,14 +439103,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2487] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2297), - [sym_property_pattern_clause] = STATE(2345), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5846), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2589), + [sym_property_pattern_clause] = STATE(2632), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2487), [sym_preproc_endregion] = STATE(2487), [sym_preproc_line] = STATE(2487), @@ -439098,68 +439120,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2487), [sym_preproc_define] = STATE(2487), [sym_preproc_undef] = STATE(2487), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), [anon_sym_LT] = ACTIONS(4224), [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4218), [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4222), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4224), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), [anon_sym_as] = ACTIONS(4224), [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439172,14 +439194,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2488] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2651), - [sym_property_pattern_clause] = STATE(2753), - [sym__variable_designation] = STATE(5242), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5155), - [sym__reserved_identifier] = STATE(2395), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2617), + [sym_property_pattern_clause] = STATE(2667), + [sym__variable_designation] = STATE(5310), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5156), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2488), [sym_preproc_endregion] = STATE(2488), [sym_preproc_line] = STATE(2488), @@ -439189,68 +439211,68 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4224), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4224), - [anon_sym_descending] = ACTIONS(4224), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4222), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4228), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4228), + [anon_sym_into] = ACTIONS(4228), + [anon_sym_join] = ACTIONS(4228), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(4228), + [anon_sym_orderby] = ACTIONS(4228), + [anon_sym_ascending] = ACTIONS(4228), + [anon_sym_descending] = ACTIONS(4228), + [anon_sym_group] = ACTIONS(4228), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4232), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439272,76 +439294,76 @@ 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), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_EQ] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3976), - [anon_sym_COLON] = ACTIONS(3976), - [anon_sym_COMMA] = ACTIONS(3976), - [anon_sym_RBRACK] = ACTIONS(3976), - [anon_sym_LPAREN] = ACTIONS(3976), - [anon_sym_RPAREN] = ACTIONS(3976), - [anon_sym_RBRACE] = ACTIONS(3976), - [anon_sym_LT] = ACTIONS(3974), - [anon_sym_GT] = ACTIONS(3974), - [anon_sym_in] = ACTIONS(3974), - [anon_sym_where] = ACTIONS(3976), - [anon_sym_QMARK] = ACTIONS(3974), - [anon_sym_BANG] = ACTIONS(3974), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3974), - [anon_sym_PERCENT] = ACTIONS(3974), - [anon_sym_CARET] = ACTIONS(3974), - [anon_sym_PIPE] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_LT_LT] = ACTIONS(3974), - [anon_sym_GT_GT] = ACTIONS(3974), - [anon_sym_GT_GT_GT] = ACTIONS(3974), - [anon_sym_EQ_EQ] = ACTIONS(3976), - [anon_sym_BANG_EQ] = ACTIONS(3976), - [anon_sym_GT_EQ] = ACTIONS(3976), - [anon_sym_LT_EQ] = ACTIONS(3976), - [anon_sym_DOT] = ACTIONS(3974), - [anon_sym_EQ_GT] = ACTIONS(3976), - [anon_sym_switch] = ACTIONS(3976), - [anon_sym_DOT_DOT] = ACTIONS(3976), - [anon_sym_and] = ACTIONS(3976), - [anon_sym_or] = ACTIONS(3974), - [anon_sym_PLUS_EQ] = ACTIONS(3976), - [anon_sym_DASH_EQ] = ACTIONS(3976), - [anon_sym_STAR_EQ] = ACTIONS(3976), - [anon_sym_SLASH_EQ] = ACTIONS(3976), - [anon_sym_PERCENT_EQ] = ACTIONS(3976), - [anon_sym_AMP_EQ] = ACTIONS(3976), - [anon_sym_CARET_EQ] = ACTIONS(3976), - [anon_sym_PIPE_EQ] = ACTIONS(3976), - [anon_sym_LT_LT_EQ] = ACTIONS(3976), - [anon_sym_GT_GT_EQ] = ACTIONS(3976), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3976), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_PIPE_PIPE] = ACTIONS(3976), - [sym_op_coalescing] = ACTIONS(3974), - [anon_sym_from] = ACTIONS(3976), - [anon_sym_into] = ACTIONS(3976), - [anon_sym_join] = ACTIONS(3976), - [anon_sym_on] = ACTIONS(3976), - [anon_sym_equals] = ACTIONS(3976), - [anon_sym_let] = ACTIONS(3976), - [anon_sym_orderby] = ACTIONS(3976), - [anon_sym_group] = ACTIONS(3976), - [anon_sym_by] = ACTIONS(3976), - [anon_sym_select] = ACTIONS(3976), - [anon_sym_as] = ACTIONS(3976), - [anon_sym_is] = ACTIONS(3976), - [anon_sym_DASH_GT] = ACTIONS(3976), - [anon_sym_with] = ACTIONS(3976), - [aux_sym_preproc_if_token3] = ACTIONS(3976), - [aux_sym_preproc_else_token1] = ACTIONS(3976), - [aux_sym_preproc_elif_token1] = ACTIONS(3976), + [anon_sym_SEMI] = ACTIONS(4542), + [anon_sym_EQ] = ACTIONS(4544), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_COLON] = ACTIONS(4542), + [anon_sym_COMMA] = ACTIONS(4542), + [anon_sym_RBRACK] = ACTIONS(4542), + [anon_sym_LPAREN] = ACTIONS(4542), + [anon_sym_RPAREN] = ACTIONS(4542), + [anon_sym_RBRACE] = ACTIONS(4542), + [anon_sym_LT] = ACTIONS(4544), + [anon_sym_GT] = ACTIONS(4544), + [anon_sym_in] = ACTIONS(4544), + [anon_sym_where] = ACTIONS(4542), + [anon_sym_QMARK] = ACTIONS(4544), + [anon_sym_DOT] = ACTIONS(4544), + [anon_sym_EQ_GT] = ACTIONS(4542), + [anon_sym_STAR] = ACTIONS(4544), + [anon_sym_switch] = ACTIONS(4542), + [anon_sym_DOT_DOT] = ACTIONS(4542), + [anon_sym_LT_EQ] = ACTIONS(4542), + [anon_sym_GT_EQ] = ACTIONS(4542), + [anon_sym_and] = ACTIONS(4542), + [anon_sym_or] = ACTIONS(4544), + [anon_sym_PLUS_EQ] = ACTIONS(4542), + [anon_sym_DASH_EQ] = ACTIONS(4542), + [anon_sym_STAR_EQ] = ACTIONS(4542), + [anon_sym_SLASH_EQ] = ACTIONS(4542), + [anon_sym_PERCENT_EQ] = ACTIONS(4542), + [anon_sym_AMP_EQ] = ACTIONS(4542), + [anon_sym_CARET_EQ] = ACTIONS(4542), + [anon_sym_PIPE_EQ] = ACTIONS(4542), + [anon_sym_LT_LT_EQ] = ACTIONS(4542), + [anon_sym_GT_GT_EQ] = ACTIONS(4542), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4542), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4542), + [anon_sym_EQ_EQ] = ACTIONS(4542), + [anon_sym_BANG_EQ] = ACTIONS(4542), + [anon_sym_AMP_AMP] = ACTIONS(4542), + [anon_sym_PIPE_PIPE] = ACTIONS(4542), + [anon_sym_AMP] = ACTIONS(4544), + [sym_op_bitwise_or] = ACTIONS(4544), + [anon_sym_CARET] = ACTIONS(4544), + [sym_op_left_shift] = ACTIONS(4544), + [sym_op_right_shift] = ACTIONS(4544), + [sym_op_unsigned_right_shift] = ACTIONS(4544), + [anon_sym_PLUS] = ACTIONS(4544), + [anon_sym_DASH] = ACTIONS(4544), + [sym_op_divide] = ACTIONS(4544), + [sym_op_modulo] = ACTIONS(4544), + [sym_op_coalescing] = ACTIONS(4544), + [anon_sym_BANG] = ACTIONS(4544), + [anon_sym_PLUS_PLUS] = ACTIONS(4542), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_from] = ACTIONS(4542), + [anon_sym_into] = ACTIONS(4542), + [anon_sym_join] = ACTIONS(4542), + [anon_sym_on] = ACTIONS(4542), + [anon_sym_equals] = ACTIONS(4542), + [anon_sym_let] = ACTIONS(4542), + [anon_sym_orderby] = ACTIONS(4542), + [anon_sym_group] = ACTIONS(4542), + [anon_sym_by] = ACTIONS(4542), + [anon_sym_select] = ACTIONS(4542), + [anon_sym_as] = ACTIONS(4542), + [anon_sym_is] = ACTIONS(4542), + [anon_sym_DASH_GT] = ACTIONS(4542), + [anon_sym_with] = ACTIONS(4542), + [aux_sym_preproc_if_token3] = ACTIONS(4542), + [aux_sym_preproc_else_token1] = ACTIONS(4542), + [aux_sym_preproc_elif_token1] = ACTIONS(4542), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439363,76 +439385,76 @@ 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), - [anon_sym_SEMI] = ACTIONS(4528), - [anon_sym_EQ] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4528), - [anon_sym_COLON] = ACTIONS(4528), - [anon_sym_COMMA] = ACTIONS(4528), - [anon_sym_RBRACK] = ACTIONS(4528), - [anon_sym_LPAREN] = ACTIONS(4528), - [anon_sym_RPAREN] = ACTIONS(4528), - [anon_sym_RBRACE] = ACTIONS(4528), - [anon_sym_LT] = ACTIONS(4526), - [anon_sym_GT] = ACTIONS(4526), - [anon_sym_in] = ACTIONS(4526), - [anon_sym_where] = ACTIONS(4528), - [anon_sym_QMARK] = ACTIONS(4526), - [anon_sym_BANG] = ACTIONS(4526), - [anon_sym_PLUS_PLUS] = ACTIONS(4528), - [anon_sym_DASH_DASH] = ACTIONS(4528), - [anon_sym_PLUS] = ACTIONS(4526), - [anon_sym_DASH] = ACTIONS(4526), - [anon_sym_STAR] = ACTIONS(4526), - [anon_sym_SLASH] = ACTIONS(4526), - [anon_sym_PERCENT] = ACTIONS(4526), - [anon_sym_CARET] = ACTIONS(4526), - [anon_sym_PIPE] = ACTIONS(4526), - [anon_sym_AMP] = ACTIONS(4526), - [anon_sym_LT_LT] = ACTIONS(4526), - [anon_sym_GT_GT] = ACTIONS(4526), - [anon_sym_GT_GT_GT] = ACTIONS(4526), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_GT_EQ] = ACTIONS(4528), - [anon_sym_LT_EQ] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4526), - [anon_sym_EQ_GT] = ACTIONS(4528), - [anon_sym_switch] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4528), - [anon_sym_and] = ACTIONS(4528), - [anon_sym_or] = ACTIONS(4526), - [anon_sym_PLUS_EQ] = ACTIONS(4528), - [anon_sym_DASH_EQ] = ACTIONS(4528), - [anon_sym_STAR_EQ] = ACTIONS(4528), - [anon_sym_SLASH_EQ] = ACTIONS(4528), - [anon_sym_PERCENT_EQ] = ACTIONS(4528), - [anon_sym_AMP_EQ] = ACTIONS(4528), - [anon_sym_CARET_EQ] = ACTIONS(4528), - [anon_sym_PIPE_EQ] = ACTIONS(4528), - [anon_sym_LT_LT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4528), - [anon_sym_PIPE_PIPE] = ACTIONS(4528), - [sym_op_coalescing] = ACTIONS(4526), - [anon_sym_from] = ACTIONS(4528), - [anon_sym_into] = ACTIONS(4528), - [anon_sym_join] = ACTIONS(4528), - [anon_sym_on] = ACTIONS(4528), - [anon_sym_equals] = ACTIONS(4528), - [anon_sym_let] = ACTIONS(4528), - [anon_sym_orderby] = ACTIONS(4528), - [anon_sym_group] = ACTIONS(4528), - [anon_sym_by] = ACTIONS(4528), - [anon_sym_select] = ACTIONS(4528), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_DASH_GT] = ACTIONS(4528), - [anon_sym_with] = ACTIONS(4528), - [aux_sym_preproc_if_token3] = ACTIONS(4528), - [aux_sym_preproc_else_token1] = ACTIONS(4528), - [aux_sym_preproc_elif_token1] = ACTIONS(4528), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_RBRACK] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [anon_sym_RBRACE] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [anon_sym_in] = ACTIONS(4548), + [anon_sym_where] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_EQ_GT] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_switch] = ACTIONS(4546), + [anon_sym_DOT_DOT] = ACTIONS(4546), + [anon_sym_LT_EQ] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_or] = ACTIONS(4548), + [anon_sym_PLUS_EQ] = ACTIONS(4546), + [anon_sym_DASH_EQ] = ACTIONS(4546), + [anon_sym_STAR_EQ] = ACTIONS(4546), + [anon_sym_SLASH_EQ] = ACTIONS(4546), + [anon_sym_PERCENT_EQ] = ACTIONS(4546), + [anon_sym_AMP_EQ] = ACTIONS(4546), + [anon_sym_CARET_EQ] = ACTIONS(4546), + [anon_sym_PIPE_EQ] = ACTIONS(4546), + [anon_sym_LT_LT_EQ] = ACTIONS(4546), + [anon_sym_GT_GT_EQ] = ACTIONS(4546), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4546), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4546), + [anon_sym_BANG_EQ] = ACTIONS(4546), + [anon_sym_AMP_AMP] = ACTIONS(4546), + [anon_sym_PIPE_PIPE] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [sym_op_bitwise_or] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [sym_op_left_shift] = ACTIONS(4548), + [sym_op_right_shift] = ACTIONS(4548), + [sym_op_unsigned_right_shift] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [sym_op_divide] = ACTIONS(4548), + [sym_op_modulo] = ACTIONS(4548), + [sym_op_coalescing] = ACTIONS(4548), + [anon_sym_BANG] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4546), + [anon_sym_from] = ACTIONS(4546), + [anon_sym_into] = ACTIONS(4546), + [anon_sym_join] = ACTIONS(4546), + [anon_sym_on] = ACTIONS(4546), + [anon_sym_equals] = ACTIONS(4546), + [anon_sym_let] = ACTIONS(4546), + [anon_sym_orderby] = ACTIONS(4546), + [anon_sym_group] = ACTIONS(4546), + [anon_sym_by] = ACTIONS(4546), + [anon_sym_select] = ACTIONS(4546), + [anon_sym_as] = ACTIONS(4546), + [anon_sym_is] = ACTIONS(4546), + [anon_sym_DASH_GT] = ACTIONS(4546), + [anon_sym_with] = ACTIONS(4546), + [aux_sym_preproc_if_token3] = ACTIONS(4546), + [aux_sym_preproc_else_token1] = ACTIONS(4546), + [aux_sym_preproc_elif_token1] = ACTIONS(4546), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439445,14 +439467,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2491] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2671), - [sym_property_pattern_clause] = STATE(2778), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4662), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2589), + [sym_property_pattern_clause] = STATE(2632), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5845), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2491), [sym_preproc_endregion] = STATE(2491), [sym_preproc_line] = STATE(2491), @@ -439462,68 +439484,68 @@ 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(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4141), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), [anon_sym_LT] = ACTIONS(4224), [anon_sym_GT] = ACTIONS(4224), - [anon_sym_in] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4141), + [anon_sym_where] = ACTIONS(4218), [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4220), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4141), + [anon_sym_when] = ACTIONS(4224), [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), [anon_sym_and] = ACTIONS(4224), [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), [anon_sym_as] = ACTIONS(4224), [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4145), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439536,14 +439558,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2492] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2297), - [sym_property_pattern_clause] = STATE(2345), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5846), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2616), + [sym_property_pattern_clause] = STATE(2668), + [sym__variable_designation] = STATE(5310), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5156), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2492), [sym_preproc_endregion] = STATE(2492), [sym_preproc_line] = STATE(2492), @@ -439553,68 +439575,68 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4212), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4216), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4228), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4228), + [anon_sym_into] = ACTIONS(4425), + [anon_sym_join] = ACTIONS(4228), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(4228), + [anon_sym_orderby] = ACTIONS(4228), + [anon_sym_ascending] = ACTIONS(4228), + [anon_sym_descending] = ACTIONS(4228), + [anon_sym_group] = ACTIONS(4228), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4232), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439627,14 +439649,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2493] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2630), - [sym_property_pattern_clause] = STATE(2717), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2493), [sym_preproc_endregion] = STATE(2493), [sym_preproc_line] = STATE(2493), @@ -439644,68 +439658,76 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4224), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_RBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [anon_sym_RBRACE] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4552), + [anon_sym_in] = ACTIONS(4552), + [anon_sym_where] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_EQ_GT] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4552), + [anon_sym_switch] = ACTIONS(4550), + [anon_sym_DOT_DOT] = ACTIONS(4550), + [anon_sym_LT_EQ] = ACTIONS(4550), + [anon_sym_GT_EQ] = ACTIONS(4550), + [anon_sym_and] = ACTIONS(4550), + [anon_sym_or] = ACTIONS(4552), + [anon_sym_PLUS_EQ] = ACTIONS(4550), + [anon_sym_DASH_EQ] = ACTIONS(4550), + [anon_sym_STAR_EQ] = ACTIONS(4550), + [anon_sym_SLASH_EQ] = ACTIONS(4550), + [anon_sym_PERCENT_EQ] = ACTIONS(4550), + [anon_sym_AMP_EQ] = ACTIONS(4550), + [anon_sym_CARET_EQ] = ACTIONS(4550), + [anon_sym_PIPE_EQ] = ACTIONS(4550), + [anon_sym_LT_LT_EQ] = ACTIONS(4550), + [anon_sym_GT_GT_EQ] = ACTIONS(4550), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4550), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4550), + [anon_sym_EQ_EQ] = ACTIONS(4550), + [anon_sym_BANG_EQ] = ACTIONS(4550), + [anon_sym_AMP_AMP] = ACTIONS(4550), + [anon_sym_PIPE_PIPE] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [sym_op_bitwise_or] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [sym_op_left_shift] = ACTIONS(4552), + [sym_op_right_shift] = ACTIONS(4552), + [sym_op_unsigned_right_shift] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4552), + [sym_op_divide] = ACTIONS(4552), + [sym_op_modulo] = ACTIONS(4552), + [sym_op_coalescing] = ACTIONS(4552), + [anon_sym_BANG] = ACTIONS(4552), + [anon_sym_PLUS_PLUS] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4550), + [anon_sym_from] = ACTIONS(4550), + [anon_sym_into] = ACTIONS(4550), + [anon_sym_join] = ACTIONS(4550), + [anon_sym_on] = ACTIONS(4550), + [anon_sym_equals] = ACTIONS(4550), + [anon_sym_let] = ACTIONS(4550), + [anon_sym_orderby] = ACTIONS(4550), + [anon_sym_group] = ACTIONS(4550), + [anon_sym_by] = ACTIONS(4550), + [anon_sym_select] = ACTIONS(4550), + [anon_sym_as] = ACTIONS(4550), + [anon_sym_is] = ACTIONS(4550), + [anon_sym_DASH_GT] = ACTIONS(4550), + [anon_sym_with] = ACTIONS(4550), + [aux_sym_preproc_if_token3] = ACTIONS(4550), + [aux_sym_preproc_else_token1] = ACTIONS(4550), + [aux_sym_preproc_elif_token1] = ACTIONS(4550), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439718,14 +439740,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2494] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2321), - [sym_property_pattern_clause] = STATE(2353), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5846), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2494), [sym_preproc_endregion] = STATE(2494), [sym_preproc_line] = STATE(2494), @@ -439735,68 +439749,76 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4212), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4220), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_RBRACK] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [anon_sym_RBRACE] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4556), + [anon_sym_in] = ACTIONS(4556), + [anon_sym_where] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_EQ_GT] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4556), + [anon_sym_switch] = ACTIONS(4554), + [anon_sym_DOT_DOT] = ACTIONS(4554), + [anon_sym_LT_EQ] = ACTIONS(4554), + [anon_sym_GT_EQ] = ACTIONS(4554), + [anon_sym_and] = ACTIONS(4554), + [anon_sym_or] = ACTIONS(4556), + [anon_sym_PLUS_EQ] = ACTIONS(4554), + [anon_sym_DASH_EQ] = ACTIONS(4554), + [anon_sym_STAR_EQ] = ACTIONS(4554), + [anon_sym_SLASH_EQ] = ACTIONS(4554), + [anon_sym_PERCENT_EQ] = ACTIONS(4554), + [anon_sym_AMP_EQ] = ACTIONS(4554), + [anon_sym_CARET_EQ] = ACTIONS(4554), + [anon_sym_PIPE_EQ] = ACTIONS(4554), + [anon_sym_LT_LT_EQ] = ACTIONS(4554), + [anon_sym_GT_GT_EQ] = ACTIONS(4554), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4554), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4554), + [anon_sym_EQ_EQ] = ACTIONS(4554), + [anon_sym_BANG_EQ] = ACTIONS(4554), + [anon_sym_AMP_AMP] = ACTIONS(4554), + [anon_sym_PIPE_PIPE] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [sym_op_bitwise_or] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [sym_op_left_shift] = ACTIONS(4556), + [sym_op_right_shift] = ACTIONS(4556), + [sym_op_unsigned_right_shift] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4556), + [anon_sym_DASH] = ACTIONS(4556), + [sym_op_divide] = ACTIONS(4556), + [sym_op_modulo] = ACTIONS(4556), + [sym_op_coalescing] = ACTIONS(4556), + [anon_sym_BANG] = ACTIONS(4556), + [anon_sym_PLUS_PLUS] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4554), + [anon_sym_from] = ACTIONS(4554), + [anon_sym_into] = ACTIONS(4554), + [anon_sym_join] = ACTIONS(4554), + [anon_sym_on] = ACTIONS(4554), + [anon_sym_equals] = ACTIONS(4554), + [anon_sym_let] = ACTIONS(4554), + [anon_sym_orderby] = ACTIONS(4554), + [anon_sym_group] = ACTIONS(4554), + [anon_sym_by] = ACTIONS(4554), + [anon_sym_select] = ACTIONS(4554), + [anon_sym_as] = ACTIONS(4554), + [anon_sym_is] = ACTIONS(4554), + [anon_sym_DASH_GT] = ACTIONS(4554), + [anon_sym_with] = ACTIONS(4554), + [aux_sym_preproc_if_token3] = ACTIONS(4554), + [aux_sym_preproc_else_token1] = ACTIONS(4554), + [aux_sym_preproc_elif_token1] = ACTIONS(4554), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439809,14 +439831,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2495] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2630), - [sym_property_pattern_clause] = STATE(2717), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2592), + [sym_property_pattern_clause] = STATE(2634), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5845), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2495), [sym_preproc_endregion] = STATE(2495), [sym_preproc_line] = STATE(2495), @@ -439826,68 +439848,68 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4216), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4220), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4224), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439900,14 +439922,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2496] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2667), - [sym_property_pattern_clause] = STATE(2762), - [sym__variable_designation] = STATE(5242), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5155), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(2496), [sym_preproc_endregion] = STATE(2496), [sym_preproc_line] = STATE(2496), @@ -439917,68 +439931,76 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4216), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4216), - [anon_sym_into] = ACTIONS(4216), - [anon_sym_join] = ACTIONS(4216), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4216), - [anon_sym_orderby] = ACTIONS(4216), - [anon_sym_ascending] = ACTIONS(4216), - [anon_sym_descending] = ACTIONS(4216), - [anon_sym_group] = ACTIONS(4216), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4216), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4212), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_EQ] = ACTIONS(3974), + [anon_sym_LBRACK] = ACTIONS(3976), + [anon_sym_COLON] = ACTIONS(3976), + [anon_sym_COMMA] = ACTIONS(3976), + [anon_sym_RBRACK] = ACTIONS(3976), + [anon_sym_LPAREN] = ACTIONS(3976), + [anon_sym_RPAREN] = ACTIONS(3976), + [anon_sym_RBRACE] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3974), + [anon_sym_GT] = ACTIONS(3974), + [anon_sym_in] = ACTIONS(3974), + [anon_sym_where] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3974), + [anon_sym_EQ_GT] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3974), + [anon_sym_switch] = ACTIONS(3976), + [anon_sym_DOT_DOT] = ACTIONS(3976), + [anon_sym_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_EQ] = ACTIONS(3976), + [anon_sym_and] = ACTIONS(3976), + [anon_sym_or] = ACTIONS(3974), + [anon_sym_PLUS_EQ] = ACTIONS(3976), + [anon_sym_DASH_EQ] = ACTIONS(3976), + [anon_sym_STAR_EQ] = ACTIONS(3976), + [anon_sym_SLASH_EQ] = ACTIONS(3976), + [anon_sym_PERCENT_EQ] = ACTIONS(3976), + [anon_sym_AMP_EQ] = ACTIONS(3976), + [anon_sym_CARET_EQ] = ACTIONS(3976), + [anon_sym_PIPE_EQ] = ACTIONS(3976), + [anon_sym_LT_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_GT_EQ] = ACTIONS(3976), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3976), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3976), + [anon_sym_EQ_EQ] = ACTIONS(3976), + [anon_sym_BANG_EQ] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [sym_op_bitwise_or] = ACTIONS(3974), + [anon_sym_CARET] = ACTIONS(3974), + [sym_op_left_shift] = ACTIONS(3974), + [sym_op_right_shift] = ACTIONS(3974), + [sym_op_unsigned_right_shift] = ACTIONS(3974), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [sym_op_divide] = ACTIONS(3974), + [sym_op_modulo] = ACTIONS(3974), + [sym_op_coalescing] = ACTIONS(3974), + [anon_sym_BANG] = ACTIONS(3974), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_from] = ACTIONS(3976), + [anon_sym_into] = ACTIONS(3976), + [anon_sym_join] = ACTIONS(3976), + [anon_sym_on] = ACTIONS(3976), + [anon_sym_equals] = ACTIONS(3976), + [anon_sym_let] = ACTIONS(3976), + [anon_sym_orderby] = ACTIONS(3976), + [anon_sym_group] = ACTIONS(3976), + [anon_sym_by] = ACTIONS(3976), + [anon_sym_select] = ACTIONS(3976), + [anon_sym_as] = ACTIONS(3976), + [anon_sym_is] = ACTIONS(3976), + [anon_sym_DASH_GT] = ACTIONS(3976), + [anon_sym_with] = ACTIONS(3976), + [aux_sym_preproc_if_token3] = ACTIONS(3976), + [aux_sym_preproc_else_token1] = ACTIONS(3976), + [aux_sym_preproc_elif_token1] = ACTIONS(3976), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439991,14 +440013,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2497] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2297), - [sym_property_pattern_clause] = STATE(2345), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5846), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2620), + [sym_property_pattern_clause] = STATE(2656), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(2497), [sym_preproc_endregion] = STATE(2497), [sym_preproc_line] = STATE(2497), @@ -440008,68 +440030,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2497), [sym_preproc_define] = STATE(2497), [sym_preproc_undef] = STATE(2497), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4115), [anon_sym_LT] = ACTIONS(4224), [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), + [anon_sym_in] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4115), [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4222), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4115), [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4115), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), [anon_sym_and] = ACTIONS(4224), [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), [anon_sym_as] = ACTIONS(4224), [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440082,6 +440104,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2498] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2314), + [sym_property_pattern_clause] = STATE(2369), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5845), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2498), [sym_preproc_endregion] = STATE(2498), [sym_preproc_line] = STATE(2498), @@ -440091,76 +440121,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2498), [sym_preproc_define] = STATE(2498), [sym_preproc_undef] = STATE(2498), - [anon_sym_SEMI] = ACTIONS(4534), - [anon_sym_EQ] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4534), - [anon_sym_COLON] = ACTIONS(4534), - [anon_sym_COMMA] = ACTIONS(4534), - [anon_sym_RBRACK] = ACTIONS(4534), - [anon_sym_LPAREN] = ACTIONS(4534), - [anon_sym_RPAREN] = ACTIONS(4534), - [anon_sym_RBRACE] = ACTIONS(4534), - [anon_sym_LT] = ACTIONS(4536), - [anon_sym_GT] = ACTIONS(4536), - [anon_sym_in] = ACTIONS(4536), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_QMARK] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4534), - [anon_sym_DASH_DASH] = ACTIONS(4534), - [anon_sym_PLUS] = ACTIONS(4536), - [anon_sym_DASH] = ACTIONS(4536), - [anon_sym_STAR] = ACTIONS(4536), - [anon_sym_SLASH] = ACTIONS(4536), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_CARET] = ACTIONS(4536), - [anon_sym_PIPE] = ACTIONS(4536), - [anon_sym_AMP] = ACTIONS(4536), - [anon_sym_LT_LT] = ACTIONS(4536), - [anon_sym_GT_GT] = ACTIONS(4536), - [anon_sym_GT_GT_GT] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_GT_EQ] = ACTIONS(4534), - [anon_sym_LT_EQ] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4536), - [anon_sym_EQ_GT] = ACTIONS(4534), - [anon_sym_switch] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4534), - [anon_sym_and] = ACTIONS(4534), - [anon_sym_or] = ACTIONS(4536), - [anon_sym_PLUS_EQ] = ACTIONS(4534), - [anon_sym_DASH_EQ] = ACTIONS(4534), - [anon_sym_STAR_EQ] = ACTIONS(4534), - [anon_sym_SLASH_EQ] = ACTIONS(4534), - [anon_sym_PERCENT_EQ] = ACTIONS(4534), - [anon_sym_AMP_EQ] = ACTIONS(4534), - [anon_sym_CARET_EQ] = ACTIONS(4534), - [anon_sym_PIPE_EQ] = ACTIONS(4534), - [anon_sym_LT_LT_EQ] = ACTIONS(4534), - [anon_sym_GT_GT_EQ] = ACTIONS(4534), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4534), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4534), - [anon_sym_AMP_AMP] = ACTIONS(4534), - [anon_sym_PIPE_PIPE] = ACTIONS(4534), - [sym_op_coalescing] = ACTIONS(4536), - [anon_sym_from] = ACTIONS(4534), - [anon_sym_into] = ACTIONS(4534), - [anon_sym_join] = ACTIONS(4534), - [anon_sym_on] = ACTIONS(4534), - [anon_sym_equals] = ACTIONS(4534), - [anon_sym_let] = ACTIONS(4534), - [anon_sym_orderby] = ACTIONS(4534), - [anon_sym_group] = ACTIONS(4534), - [anon_sym_by] = ACTIONS(4534), - [anon_sym_select] = ACTIONS(4534), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_DASH_GT] = ACTIONS(4534), - [anon_sym_with] = ACTIONS(4534), - [aux_sym_preproc_if_token3] = ACTIONS(4534), - [aux_sym_preproc_else_token1] = ACTIONS(4534), - [aux_sym_preproc_elif_token1] = ACTIONS(4534), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4220), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440182,167 +440204,167 @@ 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), - [anon_sym_SEMI] = ACTIONS(4538), - [anon_sym_EQ] = ACTIONS(4540), - [anon_sym_LBRACK] = ACTIONS(4538), - [anon_sym_COLON] = ACTIONS(4538), - [anon_sym_COMMA] = ACTIONS(4538), - [anon_sym_RBRACK] = ACTIONS(4538), - [anon_sym_LPAREN] = ACTIONS(4538), - [anon_sym_RPAREN] = ACTIONS(4538), - [anon_sym_RBRACE] = ACTIONS(4538), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_in] = ACTIONS(4540), - [anon_sym_where] = ACTIONS(4538), - [anon_sym_QMARK] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4540), - [anon_sym_PLUS_PLUS] = ACTIONS(4538), - [anon_sym_DASH_DASH] = ACTIONS(4538), - [anon_sym_PLUS] = ACTIONS(4540), - [anon_sym_DASH] = ACTIONS(4540), - [anon_sym_STAR] = ACTIONS(4540), - [anon_sym_SLASH] = ACTIONS(4540), - [anon_sym_PERCENT] = ACTIONS(4540), - [anon_sym_CARET] = ACTIONS(4540), - [anon_sym_PIPE] = ACTIONS(4540), - [anon_sym_AMP] = ACTIONS(4540), - [anon_sym_LT_LT] = ACTIONS(4540), - [anon_sym_GT_GT] = ACTIONS(4540), - [anon_sym_GT_GT_GT] = ACTIONS(4540), - [anon_sym_EQ_EQ] = ACTIONS(4538), - [anon_sym_BANG_EQ] = ACTIONS(4538), - [anon_sym_GT_EQ] = ACTIONS(4538), - [anon_sym_LT_EQ] = ACTIONS(4538), - [anon_sym_DOT] = ACTIONS(4540), - [anon_sym_EQ_GT] = ACTIONS(4538), - [anon_sym_switch] = ACTIONS(4538), - [anon_sym_DOT_DOT] = ACTIONS(4538), - [anon_sym_and] = ACTIONS(4538), - [anon_sym_or] = ACTIONS(4540), - [anon_sym_PLUS_EQ] = ACTIONS(4538), - [anon_sym_DASH_EQ] = ACTIONS(4538), - [anon_sym_STAR_EQ] = ACTIONS(4538), - [anon_sym_SLASH_EQ] = ACTIONS(4538), - [anon_sym_PERCENT_EQ] = ACTIONS(4538), - [anon_sym_AMP_EQ] = ACTIONS(4538), - [anon_sym_CARET_EQ] = ACTIONS(4538), - [anon_sym_PIPE_EQ] = ACTIONS(4538), - [anon_sym_LT_LT_EQ] = ACTIONS(4538), - [anon_sym_GT_GT_EQ] = ACTIONS(4538), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), - [anon_sym_AMP_AMP] = ACTIONS(4538), - [anon_sym_PIPE_PIPE] = ACTIONS(4538), - [sym_op_coalescing] = ACTIONS(4540), - [anon_sym_from] = ACTIONS(4538), - [anon_sym_into] = ACTIONS(4538), - [anon_sym_join] = ACTIONS(4538), - [anon_sym_on] = ACTIONS(4538), - [anon_sym_equals] = ACTIONS(4538), - [anon_sym_let] = ACTIONS(4538), - [anon_sym_orderby] = ACTIONS(4538), - [anon_sym_group] = ACTIONS(4538), - [anon_sym_by] = ACTIONS(4538), - [anon_sym_select] = ACTIONS(4538), - [anon_sym_as] = ACTIONS(4538), - [anon_sym_is] = ACTIONS(4538), - [anon_sym_DASH_GT] = ACTIONS(4538), - [anon_sym_with] = ACTIONS(4538), - [aux_sym_preproc_if_token3] = ACTIONS(4538), - [aux_sym_preproc_else_token1] = ACTIONS(4538), - [aux_sym_preproc_elif_token1] = ACTIONS(4538), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(7657), - [sym_positional_pattern_clause] = STATE(2602), - [sym_property_pattern_clause] = STATE(2719), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5846), - [sym__reserved_identifier] = STATE(4670), - [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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4212), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4216), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4216), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4220), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(3991), + [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_RBRACE] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_in] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_EQ_GT] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_switch] = ACTIONS(4006), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(4006), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = 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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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(7966), + [sym_positional_pattern_clause] = STATE(2301), + [sym_property_pattern_clause] = STATE(2341), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5845), + [sym__reserved_identifier] = STATE(3771), + [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(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4220), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440355,6 +440377,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2501] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2589), + [sym_property_pattern_clause] = STATE(2632), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5845), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2501), [sym_preproc_endregion] = STATE(2501), [sym_preproc_line] = STATE(2501), @@ -440364,76 +440394,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), - [anon_sym_SEMI] = ACTIONS(4542), - [anon_sym_EQ] = ACTIONS(4544), - [anon_sym_LBRACK] = ACTIONS(4542), - [anon_sym_COLON] = ACTIONS(4542), - [anon_sym_COMMA] = ACTIONS(4542), - [anon_sym_RBRACK] = ACTIONS(4542), - [anon_sym_LPAREN] = ACTIONS(4542), - [anon_sym_RPAREN] = ACTIONS(4542), - [anon_sym_RBRACE] = ACTIONS(4542), - [anon_sym_LT] = ACTIONS(4544), - [anon_sym_GT] = ACTIONS(4544), - [anon_sym_in] = ACTIONS(4544), - [anon_sym_where] = ACTIONS(4542), - [anon_sym_QMARK] = ACTIONS(4544), - [anon_sym_BANG] = ACTIONS(4544), - [anon_sym_PLUS_PLUS] = ACTIONS(4542), - [anon_sym_DASH_DASH] = ACTIONS(4542), - [anon_sym_PLUS] = ACTIONS(4544), - [anon_sym_DASH] = ACTIONS(4544), - [anon_sym_STAR] = ACTIONS(4544), - [anon_sym_SLASH] = ACTIONS(4544), - [anon_sym_PERCENT] = ACTIONS(4544), - [anon_sym_CARET] = ACTIONS(4544), - [anon_sym_PIPE] = ACTIONS(4544), - [anon_sym_AMP] = ACTIONS(4544), - [anon_sym_LT_LT] = ACTIONS(4544), - [anon_sym_GT_GT] = ACTIONS(4544), - [anon_sym_GT_GT_GT] = ACTIONS(4544), - [anon_sym_EQ_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_GT_EQ] = ACTIONS(4542), - [anon_sym_LT_EQ] = ACTIONS(4542), - [anon_sym_DOT] = ACTIONS(4544), - [anon_sym_EQ_GT] = ACTIONS(4542), - [anon_sym_switch] = ACTIONS(4542), - [anon_sym_DOT_DOT] = ACTIONS(4542), - [anon_sym_and] = ACTIONS(4542), - [anon_sym_or] = ACTIONS(4544), - [anon_sym_PLUS_EQ] = ACTIONS(4542), - [anon_sym_DASH_EQ] = ACTIONS(4542), - [anon_sym_STAR_EQ] = ACTIONS(4542), - [anon_sym_SLASH_EQ] = ACTIONS(4542), - [anon_sym_PERCENT_EQ] = ACTIONS(4542), - [anon_sym_AMP_EQ] = ACTIONS(4542), - [anon_sym_CARET_EQ] = ACTIONS(4542), - [anon_sym_PIPE_EQ] = ACTIONS(4542), - [anon_sym_LT_LT_EQ] = ACTIONS(4542), - [anon_sym_GT_GT_EQ] = ACTIONS(4542), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4542), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4542), - [anon_sym_AMP_AMP] = ACTIONS(4542), - [anon_sym_PIPE_PIPE] = ACTIONS(4542), - [sym_op_coalescing] = ACTIONS(4544), - [anon_sym_from] = ACTIONS(4542), - [anon_sym_into] = ACTIONS(4542), - [anon_sym_join] = ACTIONS(4542), - [anon_sym_on] = ACTIONS(4542), - [anon_sym_equals] = ACTIONS(4542), - [anon_sym_let] = ACTIONS(4542), - [anon_sym_orderby] = ACTIONS(4542), - [anon_sym_group] = ACTIONS(4542), - [anon_sym_by] = ACTIONS(4542), - [anon_sym_select] = ACTIONS(4542), - [anon_sym_as] = ACTIONS(4542), - [anon_sym_is] = ACTIONS(4542), - [anon_sym_DASH_GT] = ACTIONS(4542), - [anon_sym_with] = ACTIONS(4542), - [aux_sym_preproc_if_token3] = ACTIONS(4542), - [aux_sym_preproc_else_token1] = ACTIONS(4542), - [aux_sym_preproc_elif_token1] = ACTIONS(4542), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4232), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440455,76 +440477,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2502), [sym_preproc_define] = STATE(2502), [sym_preproc_undef] = STATE(2502), - [anon_sym_SEMI] = ACTIONS(4546), - [anon_sym_EQ] = ACTIONS(4548), - [anon_sym_LBRACK] = ACTIONS(4546), - [anon_sym_COLON] = ACTIONS(4546), - [anon_sym_COMMA] = ACTIONS(4546), - [anon_sym_RBRACK] = ACTIONS(4546), - [anon_sym_LPAREN] = ACTIONS(4546), - [anon_sym_RPAREN] = ACTIONS(4546), - [anon_sym_RBRACE] = ACTIONS(4546), - [anon_sym_LT] = ACTIONS(4548), - [anon_sym_GT] = ACTIONS(4548), - [anon_sym_in] = ACTIONS(4548), - [anon_sym_where] = ACTIONS(4546), - [anon_sym_QMARK] = ACTIONS(4548), - [anon_sym_BANG] = ACTIONS(4548), - [anon_sym_PLUS_PLUS] = ACTIONS(4546), - [anon_sym_DASH_DASH] = ACTIONS(4546), - [anon_sym_PLUS] = ACTIONS(4548), - [anon_sym_DASH] = ACTIONS(4548), - [anon_sym_STAR] = ACTIONS(4548), - [anon_sym_SLASH] = ACTIONS(4548), - [anon_sym_PERCENT] = ACTIONS(4548), - [anon_sym_CARET] = ACTIONS(4548), - [anon_sym_PIPE] = ACTIONS(4548), - [anon_sym_AMP] = ACTIONS(4548), - [anon_sym_LT_LT] = ACTIONS(4548), - [anon_sym_GT_GT] = ACTIONS(4548), - [anon_sym_GT_GT_GT] = ACTIONS(4548), - [anon_sym_EQ_EQ] = ACTIONS(4546), - [anon_sym_BANG_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_DOT] = ACTIONS(4548), - [anon_sym_EQ_GT] = ACTIONS(4546), - [anon_sym_switch] = ACTIONS(4546), - [anon_sym_DOT_DOT] = ACTIONS(4546), - [anon_sym_and] = ACTIONS(4546), - [anon_sym_or] = ACTIONS(4548), - [anon_sym_PLUS_EQ] = ACTIONS(4546), - [anon_sym_DASH_EQ] = ACTIONS(4546), - [anon_sym_STAR_EQ] = ACTIONS(4546), - [anon_sym_SLASH_EQ] = ACTIONS(4546), - [anon_sym_PERCENT_EQ] = ACTIONS(4546), - [anon_sym_AMP_EQ] = ACTIONS(4546), - [anon_sym_CARET_EQ] = ACTIONS(4546), - [anon_sym_PIPE_EQ] = ACTIONS(4546), - [anon_sym_LT_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_GT_EQ] = ACTIONS(4546), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4546), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4546), - [anon_sym_AMP_AMP] = ACTIONS(4546), - [anon_sym_PIPE_PIPE] = ACTIONS(4546), - [sym_op_coalescing] = ACTIONS(4548), - [anon_sym_from] = ACTIONS(4546), - [anon_sym_into] = ACTIONS(4546), - [anon_sym_join] = ACTIONS(4546), - [anon_sym_on] = ACTIONS(4546), - [anon_sym_equals] = ACTIONS(4546), - [anon_sym_let] = ACTIONS(4546), - [anon_sym_orderby] = ACTIONS(4546), - [anon_sym_group] = ACTIONS(4546), - [anon_sym_by] = ACTIONS(4546), - [anon_sym_select] = ACTIONS(4546), - [anon_sym_as] = ACTIONS(4546), - [anon_sym_is] = ACTIONS(4546), - [anon_sym_DASH_GT] = ACTIONS(4546), - [anon_sym_with] = ACTIONS(4546), - [aux_sym_preproc_if_token3] = ACTIONS(4546), - [aux_sym_preproc_else_token1] = ACTIONS(4546), - [aux_sym_preproc_elif_token1] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_RBRACK] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [anon_sym_RBRACE] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4560), + [anon_sym_in] = ACTIONS(4560), + [anon_sym_where] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_EQ_GT] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_switch] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(4558), + [anon_sym_LT_EQ] = ACTIONS(4558), + [anon_sym_GT_EQ] = ACTIONS(4558), + [anon_sym_and] = ACTIONS(4558), + [anon_sym_or] = ACTIONS(4560), + [anon_sym_PLUS_EQ] = ACTIONS(4558), + [anon_sym_DASH_EQ] = ACTIONS(4558), + [anon_sym_STAR_EQ] = ACTIONS(4558), + [anon_sym_SLASH_EQ] = ACTIONS(4558), + [anon_sym_PERCENT_EQ] = ACTIONS(4558), + [anon_sym_AMP_EQ] = ACTIONS(4558), + [anon_sym_CARET_EQ] = ACTIONS(4558), + [anon_sym_PIPE_EQ] = ACTIONS(4558), + [anon_sym_LT_LT_EQ] = ACTIONS(4558), + [anon_sym_GT_GT_EQ] = ACTIONS(4558), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4558), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4558), + [anon_sym_EQ_EQ] = ACTIONS(4558), + [anon_sym_BANG_EQ] = ACTIONS(4558), + [anon_sym_AMP_AMP] = ACTIONS(4558), + [anon_sym_PIPE_PIPE] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [sym_op_bitwise_or] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [sym_op_left_shift] = ACTIONS(4560), + [sym_op_right_shift] = ACTIONS(4560), + [sym_op_unsigned_right_shift] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4560), + [anon_sym_DASH] = ACTIONS(4560), + [sym_op_divide] = ACTIONS(4560), + [sym_op_modulo] = ACTIONS(4560), + [sym_op_coalescing] = ACTIONS(4560), + [anon_sym_BANG] = ACTIONS(4560), + [anon_sym_PLUS_PLUS] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4558), + [anon_sym_from] = ACTIONS(4558), + [anon_sym_into] = ACTIONS(4558), + [anon_sym_join] = ACTIONS(4558), + [anon_sym_on] = ACTIONS(4558), + [anon_sym_equals] = ACTIONS(4558), + [anon_sym_let] = ACTIONS(4558), + [anon_sym_orderby] = ACTIONS(4558), + [anon_sym_group] = ACTIONS(4558), + [anon_sym_by] = ACTIONS(4558), + [anon_sym_select] = ACTIONS(4558), + [anon_sym_as] = ACTIONS(4558), + [anon_sym_is] = ACTIONS(4558), + [anon_sym_DASH_GT] = ACTIONS(4558), + [anon_sym_with] = ACTIONS(4558), + [aux_sym_preproc_if_token3] = ACTIONS(4558), + [aux_sym_preproc_else_token1] = ACTIONS(4558), + [aux_sym_preproc_elif_token1] = ACTIONS(4558), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440537,14 +440559,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2503] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2602), - [sym_property_pattern_clause] = STATE(2719), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4841), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2616), + [sym_property_pattern_clause] = STATE(2668), + [sym__variable_designation] = STATE(5310), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5156), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2503), [sym_preproc_endregion] = STATE(2503), [sym_preproc_line] = STATE(2503), @@ -440554,67 +440576,67 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4216), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4216), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4224), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4224), + [anon_sym_into] = ACTIONS(4425), + [anon_sym_join] = ACTIONS(4224), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(4224), + [anon_sym_orderby] = ACTIONS(4224), + [anon_sym_ascending] = ACTIONS(4224), + [anon_sym_descending] = ACTIONS(4224), + [anon_sym_group] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4224), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), [sym_grit_metavariable] = ACTIONS(4220), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -440628,14 +440650,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2504] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2602), - [sym_property_pattern_clause] = STATE(2719), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4841), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2504), [sym_preproc_endregion] = STATE(2504), [sym_preproc_line] = STATE(2504), @@ -440645,68 +440659,76 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4224), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [anon_sym_SEMI] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4538), + [anon_sym_COLON] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4538), + [anon_sym_RBRACK] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4538), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_RBRACE] = ACTIONS(4538), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_in] = ACTIONS(4536), + [anon_sym_where] = ACTIONS(4538), + [anon_sym_QMARK] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_EQ_GT] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_switch] = ACTIONS(4538), + [anon_sym_DOT_DOT] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4538), + [anon_sym_and] = ACTIONS(4538), + [anon_sym_or] = ACTIONS(4536), + [anon_sym_PLUS_EQ] = ACTIONS(4538), + [anon_sym_DASH_EQ] = ACTIONS(4538), + [anon_sym_STAR_EQ] = ACTIONS(4538), + [anon_sym_SLASH_EQ] = ACTIONS(4538), + [anon_sym_PERCENT_EQ] = ACTIONS(4538), + [anon_sym_AMP_EQ] = ACTIONS(4538), + [anon_sym_CARET_EQ] = ACTIONS(4538), + [anon_sym_PIPE_EQ] = ACTIONS(4538), + [anon_sym_LT_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4538), + [anon_sym_BANG_EQ] = ACTIONS(4538), + [anon_sym_AMP_AMP] = ACTIONS(4538), + [anon_sym_PIPE_PIPE] = ACTIONS(4538), + [anon_sym_AMP] = ACTIONS(4536), + [sym_op_bitwise_or] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [sym_op_left_shift] = ACTIONS(4536), + [sym_op_right_shift] = ACTIONS(4536), + [sym_op_unsigned_right_shift] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [sym_op_divide] = ACTIONS(4536), + [sym_op_modulo] = ACTIONS(4536), + [sym_op_coalescing] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PLUS_PLUS] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4538), + [anon_sym_from] = ACTIONS(4538), + [anon_sym_into] = ACTIONS(4538), + [anon_sym_join] = ACTIONS(4538), + [anon_sym_on] = ACTIONS(4538), + [anon_sym_equals] = ACTIONS(4538), + [anon_sym_let] = ACTIONS(4538), + [anon_sym_orderby] = ACTIONS(4538), + [anon_sym_group] = ACTIONS(4538), + [anon_sym_by] = ACTIONS(4538), + [anon_sym_select] = ACTIONS(4538), + [anon_sym_as] = ACTIONS(4538), + [anon_sym_is] = ACTIONS(4538), + [anon_sym_DASH_GT] = ACTIONS(4538), + [anon_sym_with] = ACTIONS(4538), + [aux_sym_preproc_if_token3] = ACTIONS(4538), + [aux_sym_preproc_else_token1] = ACTIONS(4538), + [aux_sym_preproc_elif_token1] = ACTIONS(4538), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440719,14 +440741,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2505] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2651), - [sym_property_pattern_clause] = STATE(2753), - [sym__variable_designation] = STATE(5242), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5155), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(2505), [sym_preproc_endregion] = STATE(2505), [sym_preproc_line] = STATE(2505), @@ -440736,68 +440750,76 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4216), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4216), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4216), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4216), - [anon_sym_orderby] = ACTIONS(4216), - [anon_sym_ascending] = ACTIONS(4216), - [anon_sym_descending] = ACTIONS(4216), - [anon_sym_group] = ACTIONS(4216), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4216), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4212), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_RBRACK] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [anon_sym_RBRACE] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4564), + [anon_sym_in] = ACTIONS(4564), + [anon_sym_where] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_EQ_GT] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4564), + [anon_sym_switch] = ACTIONS(4562), + [anon_sym_DOT_DOT] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_and] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4564), + [anon_sym_PLUS_EQ] = ACTIONS(4562), + [anon_sym_DASH_EQ] = ACTIONS(4562), + [anon_sym_STAR_EQ] = ACTIONS(4562), + [anon_sym_SLASH_EQ] = ACTIONS(4562), + [anon_sym_PERCENT_EQ] = ACTIONS(4562), + [anon_sym_AMP_EQ] = ACTIONS(4562), + [anon_sym_CARET_EQ] = ACTIONS(4562), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_LT_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4562), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4562), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [sym_op_bitwise_or] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [sym_op_left_shift] = ACTIONS(4564), + [sym_op_right_shift] = ACTIONS(4564), + [sym_op_unsigned_right_shift] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4564), + [sym_op_divide] = ACTIONS(4564), + [sym_op_modulo] = ACTIONS(4564), + [sym_op_coalescing] = ACTIONS(4564), + [anon_sym_BANG] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_from] = ACTIONS(4562), + [anon_sym_into] = ACTIONS(4562), + [anon_sym_join] = ACTIONS(4562), + [anon_sym_on] = ACTIONS(4562), + [anon_sym_equals] = ACTIONS(4562), + [anon_sym_let] = ACTIONS(4562), + [anon_sym_orderby] = ACTIONS(4562), + [anon_sym_group] = ACTIONS(4562), + [anon_sym_by] = ACTIONS(4562), + [anon_sym_select] = ACTIONS(4562), + [anon_sym_as] = ACTIONS(4562), + [anon_sym_is] = ACTIONS(4562), + [anon_sym_DASH_GT] = ACTIONS(4562), + [anon_sym_with] = ACTIONS(4562), + [aux_sym_preproc_if_token3] = ACTIONS(4562), + [aux_sym_preproc_else_token1] = ACTIONS(4562), + [aux_sym_preproc_elif_token1] = ACTIONS(4562), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440819,76 +440841,76 @@ 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), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_EQ] = ACTIONS(4012), - [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_RBRACE] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_in] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_QMARK] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4012), - [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(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [anon_sym_from] = ACTIONS(4010), - [anon_sym_into] = ACTIONS(4010), - [anon_sym_join] = ACTIONS(4010), - [anon_sym_on] = ACTIONS(4010), - [anon_sym_equals] = ACTIONS(4010), - [anon_sym_let] = ACTIONS(4010), - [anon_sym_orderby] = ACTIONS(4010), - [anon_sym_group] = ACTIONS(4010), - [anon_sym_by] = ACTIONS(4010), - [anon_sym_select] = ACTIONS(4010), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4010), - [anon_sym_with] = ACTIONS(4010), - [aux_sym_preproc_if_token3] = ACTIONS(4010), - [aux_sym_preproc_else_token1] = ACTIONS(4010), - [aux_sym_preproc_elif_token1] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_EQ] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3189), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACK] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_in] = ACTIONS(3187), + [anon_sym_where] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_EQ_GT] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3187), + [anon_sym_PLUS_EQ] = ACTIONS(3189), + [anon_sym_DASH_EQ] = ACTIONS(3189), + [anon_sym_STAR_EQ] = ACTIONS(3189), + [anon_sym_SLASH_EQ] = ACTIONS(3189), + [anon_sym_PERCENT_EQ] = ACTIONS(3189), + [anon_sym_AMP_EQ] = ACTIONS(3189), + [anon_sym_CARET_EQ] = ACTIONS(3189), + [anon_sym_PIPE_EQ] = ACTIONS(3189), + [anon_sym_LT_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_GT_EQ] = ACTIONS(3189), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [sym_op_left_shift] = ACTIONS(3187), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3187), + [sym_op_coalescing] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [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_group] = ACTIONS(3189), + [anon_sym_by] = ACTIONS(3189), + [anon_sym_select] = ACTIONS(3189), + [anon_sym_as] = ACTIONS(3189), + [anon_sym_is] = ACTIONS(3189), + [anon_sym_DASH_GT] = ACTIONS(3189), + [anon_sym_with] = 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), @@ -440910,76 +440932,76 @@ 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), - [anon_sym_SEMI] = ACTIONS(4550), - [anon_sym_EQ] = ACTIONS(4552), - [anon_sym_LBRACK] = ACTIONS(4550), - [anon_sym_COLON] = ACTIONS(4550), - [anon_sym_COMMA] = ACTIONS(4550), - [anon_sym_RBRACK] = ACTIONS(4550), - [anon_sym_LPAREN] = ACTIONS(4550), - [anon_sym_RPAREN] = ACTIONS(4550), - [anon_sym_RBRACE] = ACTIONS(4550), - [anon_sym_LT] = ACTIONS(4552), - [anon_sym_GT] = ACTIONS(4552), - [anon_sym_in] = ACTIONS(4552), - [anon_sym_where] = ACTIONS(4550), - [anon_sym_QMARK] = ACTIONS(4552), - [anon_sym_BANG] = ACTIONS(4552), - [anon_sym_PLUS_PLUS] = ACTIONS(4550), - [anon_sym_DASH_DASH] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4552), - [anon_sym_SLASH] = ACTIONS(4552), - [anon_sym_PERCENT] = ACTIONS(4552), - [anon_sym_CARET] = ACTIONS(4552), - [anon_sym_PIPE] = ACTIONS(4552), - [anon_sym_AMP] = ACTIONS(4552), - [anon_sym_LT_LT] = ACTIONS(4552), - [anon_sym_GT_GT] = ACTIONS(4552), - [anon_sym_GT_GT_GT] = ACTIONS(4552), - [anon_sym_EQ_EQ] = ACTIONS(4550), - [anon_sym_BANG_EQ] = ACTIONS(4550), - [anon_sym_GT_EQ] = ACTIONS(4550), - [anon_sym_LT_EQ] = ACTIONS(4550), - [anon_sym_DOT] = ACTIONS(4552), - [anon_sym_EQ_GT] = ACTIONS(4550), - [anon_sym_switch] = ACTIONS(4550), - [anon_sym_DOT_DOT] = ACTIONS(4550), - [anon_sym_and] = ACTIONS(4550), - [anon_sym_or] = ACTIONS(4552), - [anon_sym_PLUS_EQ] = ACTIONS(4550), - [anon_sym_DASH_EQ] = ACTIONS(4550), - [anon_sym_STAR_EQ] = ACTIONS(4550), - [anon_sym_SLASH_EQ] = ACTIONS(4550), - [anon_sym_PERCENT_EQ] = ACTIONS(4550), - [anon_sym_AMP_EQ] = ACTIONS(4550), - [anon_sym_CARET_EQ] = ACTIONS(4550), - [anon_sym_PIPE_EQ] = ACTIONS(4550), - [anon_sym_LT_LT_EQ] = ACTIONS(4550), - [anon_sym_GT_GT_EQ] = ACTIONS(4550), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4550), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4550), - [anon_sym_AMP_AMP] = ACTIONS(4550), - [anon_sym_PIPE_PIPE] = ACTIONS(4550), - [sym_op_coalescing] = ACTIONS(4552), - [anon_sym_from] = ACTIONS(4550), - [anon_sym_into] = ACTIONS(4550), - [anon_sym_join] = ACTIONS(4550), - [anon_sym_on] = ACTIONS(4550), - [anon_sym_equals] = ACTIONS(4550), - [anon_sym_let] = ACTIONS(4550), - [anon_sym_orderby] = ACTIONS(4550), - [anon_sym_group] = ACTIONS(4550), - [anon_sym_by] = ACTIONS(4550), - [anon_sym_select] = ACTIONS(4550), - [anon_sym_as] = ACTIONS(4550), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_DASH_GT] = ACTIONS(4550), - [anon_sym_with] = ACTIONS(4550), - [aux_sym_preproc_if_token3] = ACTIONS(4550), - [aux_sym_preproc_else_token1] = ACTIONS(4550), - [aux_sym_preproc_elif_token1] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_COLON] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_RPAREN] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3972), + [anon_sym_QMARK] = ACTIONS(3970), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_EQ_GT] = ACTIONS(3972), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_switch] = ACTIONS(3972), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_and] = ACTIONS(3972), + [anon_sym_or] = ACTIONS(3970), + [anon_sym_PLUS_EQ] = ACTIONS(3972), + [anon_sym_DASH_EQ] = ACTIONS(3972), + [anon_sym_STAR_EQ] = ACTIONS(3972), + [anon_sym_SLASH_EQ] = ACTIONS(3972), + [anon_sym_PERCENT_EQ] = ACTIONS(3972), + [anon_sym_AMP_EQ] = ACTIONS(3972), + [anon_sym_CARET_EQ] = ACTIONS(3972), + [anon_sym_PIPE_EQ] = ACTIONS(3972), + [anon_sym_LT_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_GT_EQ] = ACTIONS(3972), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3972), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [sym_op_bitwise_or] = ACTIONS(3970), + [anon_sym_CARET] = ACTIONS(3970), + [sym_op_left_shift] = ACTIONS(3970), + [sym_op_right_shift] = ACTIONS(3970), + [sym_op_unsigned_right_shift] = ACTIONS(3970), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [sym_op_divide] = ACTIONS(3970), + [sym_op_modulo] = ACTIONS(3970), + [sym_op_coalescing] = ACTIONS(3970), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_from] = ACTIONS(3972), + [anon_sym_into] = ACTIONS(3972), + [anon_sym_join] = ACTIONS(3972), + [anon_sym_on] = ACTIONS(3972), + [anon_sym_equals] = ACTIONS(3972), + [anon_sym_let] = ACTIONS(3972), + [anon_sym_orderby] = ACTIONS(3972), + [anon_sym_group] = ACTIONS(3972), + [anon_sym_by] = ACTIONS(3972), + [anon_sym_select] = ACTIONS(3972), + [anon_sym_as] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3972), + [anon_sym_DASH_GT] = ACTIONS(3972), + [anon_sym_with] = ACTIONS(3972), + [aux_sym_preproc_if_token3] = ACTIONS(3972), + [aux_sym_preproc_else_token1] = ACTIONS(3972), + [aux_sym_preproc_elif_token1] = ACTIONS(3972), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440992,14 +441014,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2508] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2651), - [sym_property_pattern_clause] = STATE(2753), - [sym__variable_designation] = STATE(5242), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5155), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(2508), [sym_preproc_endregion] = STATE(2508), [sym_preproc_line] = STATE(2508), @@ -441009,68 +441023,76 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4224), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4224), - [anon_sym_descending] = ACTIONS(4224), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3694), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3694), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3694), + [anon_sym_into] = ACTIONS(3694), + [anon_sym_join] = ACTIONS(3694), + [anon_sym_on] = ACTIONS(3694), + [anon_sym_equals] = ACTIONS(3694), + [anon_sym_let] = ACTIONS(3694), + [anon_sym_orderby] = ACTIONS(3694), + [anon_sym_group] = ACTIONS(3694), + [anon_sym_by] = ACTIONS(3694), + [anon_sym_select] = ACTIONS(3694), + [anon_sym_as] = ACTIONS(3694), + [anon_sym_is] = ACTIONS(3694), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3694), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441083,6 +441105,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2509] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2301), + [sym_property_pattern_clause] = STATE(2341), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5845), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2509), [sym_preproc_endregion] = STATE(2509), [sym_preproc_line] = STATE(2509), @@ -441092,76 +441122,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_EQ_GT] = ACTIONS(3189), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3187), - [anon_sym_PLUS_EQ] = ACTIONS(3189), - [anon_sym_DASH_EQ] = ACTIONS(3189), - [anon_sym_STAR_EQ] = ACTIONS(3189), - [anon_sym_SLASH_EQ] = ACTIONS(3189), - [anon_sym_PERCENT_EQ] = ACTIONS(3189), - [anon_sym_AMP_EQ] = ACTIONS(3189), - [anon_sym_CARET_EQ] = ACTIONS(3189), - [anon_sym_PIPE_EQ] = ACTIONS(3189), - [anon_sym_LT_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = ACTIONS(3187), - [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_group] = ACTIONS(3189), - [anon_sym_by] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3189), - [aux_sym_preproc_if_token3] = ACTIONS(3189), - [aux_sym_preproc_else_token1] = ACTIONS(3189), - [aux_sym_preproc_elif_token1] = ACTIONS(3189), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4232), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4228), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441174,14 +441196,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2510] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2671), - [sym_property_pattern_clause] = STATE(2778), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(2510), [sym_preproc_endregion] = STATE(2510), [sym_preproc_line] = STATE(2510), @@ -441191,68 +441205,76 @@ 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(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_in] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4141), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_in] = ACTIONS(3951), + [anon_sym_where] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_EQ_GT] = ACTIONS(3953), + [anon_sym_STAR] = ACTIONS(3951), + [anon_sym_switch] = ACTIONS(3953), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3953), + [anon_sym_or] = ACTIONS(3951), + [anon_sym_PLUS_EQ] = ACTIONS(3953), + [anon_sym_DASH_EQ] = ACTIONS(3953), + [anon_sym_STAR_EQ] = ACTIONS(3953), + [anon_sym_SLASH_EQ] = ACTIONS(3953), + [anon_sym_PERCENT_EQ] = ACTIONS(3953), + [anon_sym_AMP_EQ] = ACTIONS(3953), + [anon_sym_CARET_EQ] = ACTIONS(3953), + [anon_sym_PIPE_EQ] = ACTIONS(3953), + [anon_sym_LT_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_GT_EQ] = ACTIONS(3953), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP] = ACTIONS(3951), + [sym_op_bitwise_or] = ACTIONS(3951), + [anon_sym_CARET] = ACTIONS(3951), + [sym_op_left_shift] = ACTIONS(3951), + [sym_op_right_shift] = ACTIONS(3951), + [sym_op_unsigned_right_shift] = ACTIONS(3951), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [sym_op_divide] = ACTIONS(3951), + [sym_op_modulo] = ACTIONS(3951), + [sym_op_coalescing] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_from] = ACTIONS(3953), + [anon_sym_into] = ACTIONS(3953), + [anon_sym_join] = ACTIONS(3953), + [anon_sym_on] = ACTIONS(3953), + [anon_sym_equals] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_orderby] = ACTIONS(3953), + [anon_sym_group] = ACTIONS(3953), + [anon_sym_by] = ACTIONS(3953), + [anon_sym_select] = ACTIONS(3953), + [anon_sym_as] = ACTIONS(3953), + [anon_sym_is] = ACTIONS(3953), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3953), + [aux_sym_preproc_if_token3] = ACTIONS(3953), + [aux_sym_preproc_else_token1] = ACTIONS(3953), + [aux_sym_preproc_elif_token1] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441274,76 +441296,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2511), [sym_preproc_define] = STATE(2511), [sym_preproc_undef] = STATE(2511), - [anon_sym_SEMI] = ACTIONS(4554), - [anon_sym_EQ] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(4554), - [anon_sym_COMMA] = ACTIONS(4554), - [anon_sym_RBRACK] = ACTIONS(4554), - [anon_sym_LPAREN] = ACTIONS(4554), - [anon_sym_RPAREN] = ACTIONS(4554), - [anon_sym_RBRACE] = ACTIONS(4554), - [anon_sym_LT] = ACTIONS(4556), - [anon_sym_GT] = ACTIONS(4556), - [anon_sym_in] = ACTIONS(4556), - [anon_sym_where] = ACTIONS(4554), - [anon_sym_QMARK] = ACTIONS(4556), - [anon_sym_BANG] = ACTIONS(4556), - [anon_sym_PLUS_PLUS] = ACTIONS(4554), - [anon_sym_DASH_DASH] = ACTIONS(4554), - [anon_sym_PLUS] = ACTIONS(4556), - [anon_sym_DASH] = ACTIONS(4556), - [anon_sym_STAR] = ACTIONS(4556), - [anon_sym_SLASH] = ACTIONS(4556), - [anon_sym_PERCENT] = ACTIONS(4556), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_PIPE] = ACTIONS(4556), - [anon_sym_AMP] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4556), - [anon_sym_GT_GT] = ACTIONS(4556), - [anon_sym_GT_GT_GT] = ACTIONS(4556), - [anon_sym_EQ_EQ] = ACTIONS(4554), - [anon_sym_BANG_EQ] = ACTIONS(4554), - [anon_sym_GT_EQ] = ACTIONS(4554), - [anon_sym_LT_EQ] = ACTIONS(4554), - [anon_sym_DOT] = ACTIONS(4556), - [anon_sym_EQ_GT] = ACTIONS(4554), - [anon_sym_switch] = ACTIONS(4554), - [anon_sym_DOT_DOT] = ACTIONS(4554), - [anon_sym_and] = ACTIONS(4554), - [anon_sym_or] = ACTIONS(4556), - [anon_sym_PLUS_EQ] = ACTIONS(4554), - [anon_sym_DASH_EQ] = ACTIONS(4554), - [anon_sym_STAR_EQ] = ACTIONS(4554), - [anon_sym_SLASH_EQ] = ACTIONS(4554), - [anon_sym_PERCENT_EQ] = ACTIONS(4554), - [anon_sym_AMP_EQ] = ACTIONS(4554), - [anon_sym_CARET_EQ] = ACTIONS(4554), - [anon_sym_PIPE_EQ] = ACTIONS(4554), - [anon_sym_LT_LT_EQ] = ACTIONS(4554), - [anon_sym_GT_GT_EQ] = ACTIONS(4554), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4554), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4554), - [anon_sym_AMP_AMP] = ACTIONS(4554), - [anon_sym_PIPE_PIPE] = ACTIONS(4554), - [sym_op_coalescing] = ACTIONS(4556), - [anon_sym_from] = ACTIONS(4554), - [anon_sym_into] = ACTIONS(4554), - [anon_sym_join] = ACTIONS(4554), - [anon_sym_on] = ACTIONS(4554), - [anon_sym_equals] = ACTIONS(4554), - [anon_sym_let] = ACTIONS(4554), - [anon_sym_orderby] = ACTIONS(4554), - [anon_sym_group] = ACTIONS(4554), - [anon_sym_by] = ACTIONS(4554), - [anon_sym_select] = ACTIONS(4554), - [anon_sym_as] = ACTIONS(4554), - [anon_sym_is] = ACTIONS(4554), - [anon_sym_DASH_GT] = ACTIONS(4554), - [anon_sym_with] = ACTIONS(4554), - [aux_sym_preproc_if_token3] = ACTIONS(4554), - [aux_sym_preproc_else_token1] = ACTIONS(4554), - [aux_sym_preproc_elif_token1] = ACTIONS(4554), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_EQ] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_COLON] = ACTIONS(3982), + [anon_sym_COMMA] = ACTIONS(3982), + [anon_sym_RBRACK] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym_RPAREN] = ACTIONS(3982), + [anon_sym_RBRACE] = ACTIONS(3982), + [anon_sym_LT] = ACTIONS(3980), + [anon_sym_GT] = ACTIONS(3980), + [anon_sym_in] = ACTIONS(3980), + [anon_sym_where] = ACTIONS(3982), + [anon_sym_QMARK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_EQ_GT] = ACTIONS(3982), + [anon_sym_STAR] = ACTIONS(3980), + [anon_sym_switch] = ACTIONS(3982), + [anon_sym_DOT_DOT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_EQ] = ACTIONS(3982), + [anon_sym_and] = ACTIONS(3982), + [anon_sym_or] = ACTIONS(3980), + [anon_sym_PLUS_EQ] = ACTIONS(3982), + [anon_sym_DASH_EQ] = ACTIONS(3982), + [anon_sym_STAR_EQ] = ACTIONS(3982), + [anon_sym_SLASH_EQ] = ACTIONS(3982), + [anon_sym_PERCENT_EQ] = ACTIONS(3982), + [anon_sym_AMP_EQ] = ACTIONS(3982), + [anon_sym_CARET_EQ] = ACTIONS(3982), + [anon_sym_PIPE_EQ] = ACTIONS(3982), + [anon_sym_LT_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_GT_EQ] = ACTIONS(3982), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3982), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3982), + [anon_sym_EQ_EQ] = ACTIONS(3982), + [anon_sym_BANG_EQ] = ACTIONS(3982), + [anon_sym_AMP_AMP] = ACTIONS(3982), + [anon_sym_PIPE_PIPE] = ACTIONS(3982), + [anon_sym_AMP] = ACTIONS(3980), + [sym_op_bitwise_or] = ACTIONS(3980), + [anon_sym_CARET] = ACTIONS(3980), + [sym_op_left_shift] = ACTIONS(3980), + [sym_op_right_shift] = ACTIONS(3980), + [sym_op_unsigned_right_shift] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3980), + [sym_op_divide] = ACTIONS(3980), + [sym_op_modulo] = ACTIONS(3980), + [sym_op_coalescing] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3982), + [anon_sym_from] = ACTIONS(3982), + [anon_sym_into] = ACTIONS(3982), + [anon_sym_join] = ACTIONS(3982), + [anon_sym_on] = ACTIONS(3982), + [anon_sym_equals] = ACTIONS(3982), + [anon_sym_let] = ACTIONS(3982), + [anon_sym_orderby] = ACTIONS(3982), + [anon_sym_group] = ACTIONS(3982), + [anon_sym_by] = ACTIONS(3982), + [anon_sym_select] = ACTIONS(3982), + [anon_sym_as] = ACTIONS(3982), + [anon_sym_is] = ACTIONS(3982), + [anon_sym_DASH_GT] = ACTIONS(3982), + [anon_sym_with] = ACTIONS(3982), + [aux_sym_preproc_if_token3] = ACTIONS(3982), + [aux_sym_preproc_else_token1] = ACTIONS(3982), + [aux_sym_preproc_elif_token1] = ACTIONS(3982), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441356,6 +441378,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2512] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2314), + [sym_property_pattern_clause] = STATE(2369), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5845), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2512), [sym_preproc_endregion] = STATE(2512), [sym_preproc_line] = STATE(2512), @@ -441365,76 +441395,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3696), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3696), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3696), - [anon_sym_into] = ACTIONS(3696), - [anon_sym_join] = ACTIONS(3696), - [anon_sym_on] = ACTIONS(3696), - [anon_sym_equals] = ACTIONS(3696), - [anon_sym_let] = ACTIONS(3696), - [anon_sym_orderby] = ACTIONS(3696), - [anon_sym_group] = ACTIONS(3696), - [anon_sym_by] = ACTIONS(3696), - [anon_sym_select] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3696), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4220), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441447,6 +441469,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2513] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2592), + [sym_property_pattern_clause] = STATE(2634), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4070), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2513), [sym_preproc_endregion] = STATE(2513), [sym_preproc_line] = STATE(2513), @@ -441456,76 +441486,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(4558), - [anon_sym_EQ] = ACTIONS(4560), - [anon_sym_LBRACK] = ACTIONS(4558), - [anon_sym_COLON] = ACTIONS(4558), - [anon_sym_COMMA] = ACTIONS(4558), - [anon_sym_RBRACK] = ACTIONS(4558), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_RPAREN] = ACTIONS(4558), - [anon_sym_RBRACE] = ACTIONS(4558), - [anon_sym_LT] = ACTIONS(4560), - [anon_sym_GT] = ACTIONS(4560), - [anon_sym_in] = ACTIONS(4560), - [anon_sym_where] = ACTIONS(4558), - [anon_sym_QMARK] = ACTIONS(4560), - [anon_sym_BANG] = ACTIONS(4560), - [anon_sym_PLUS_PLUS] = ACTIONS(4558), - [anon_sym_DASH_DASH] = ACTIONS(4558), - [anon_sym_PLUS] = ACTIONS(4560), - [anon_sym_DASH] = ACTIONS(4560), - [anon_sym_STAR] = ACTIONS(4560), - [anon_sym_SLASH] = ACTIONS(4560), - [anon_sym_PERCENT] = ACTIONS(4560), - [anon_sym_CARET] = ACTIONS(4560), - [anon_sym_PIPE] = ACTIONS(4560), - [anon_sym_AMP] = ACTIONS(4560), - [anon_sym_LT_LT] = ACTIONS(4560), - [anon_sym_GT_GT] = ACTIONS(4560), - [anon_sym_GT_GT_GT] = ACTIONS(4560), - [anon_sym_EQ_EQ] = ACTIONS(4558), - [anon_sym_BANG_EQ] = ACTIONS(4558), - [anon_sym_GT_EQ] = ACTIONS(4558), - [anon_sym_LT_EQ] = ACTIONS(4558), - [anon_sym_DOT] = ACTIONS(4560), - [anon_sym_EQ_GT] = ACTIONS(4558), - [anon_sym_switch] = ACTIONS(4558), - [anon_sym_DOT_DOT] = ACTIONS(4558), - [anon_sym_and] = ACTIONS(4558), - [anon_sym_or] = ACTIONS(4560), - [anon_sym_PLUS_EQ] = ACTIONS(4558), - [anon_sym_DASH_EQ] = ACTIONS(4558), - [anon_sym_STAR_EQ] = ACTIONS(4558), - [anon_sym_SLASH_EQ] = ACTIONS(4558), - [anon_sym_PERCENT_EQ] = ACTIONS(4558), - [anon_sym_AMP_EQ] = ACTIONS(4558), - [anon_sym_CARET_EQ] = ACTIONS(4558), - [anon_sym_PIPE_EQ] = ACTIONS(4558), - [anon_sym_LT_LT_EQ] = ACTIONS(4558), - [anon_sym_GT_GT_EQ] = ACTIONS(4558), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4558), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4558), - [anon_sym_AMP_AMP] = ACTIONS(4558), - [anon_sym_PIPE_PIPE] = ACTIONS(4558), - [sym_op_coalescing] = ACTIONS(4560), - [anon_sym_from] = ACTIONS(4558), - [anon_sym_into] = ACTIONS(4558), - [anon_sym_join] = ACTIONS(4558), - [anon_sym_on] = ACTIONS(4558), - [anon_sym_equals] = ACTIONS(4558), - [anon_sym_let] = ACTIONS(4558), - [anon_sym_orderby] = ACTIONS(4558), - [anon_sym_group] = ACTIONS(4558), - [anon_sym_by] = ACTIONS(4558), - [anon_sym_select] = ACTIONS(4558), - [anon_sym_as] = ACTIONS(4558), - [anon_sym_is] = ACTIONS(4558), - [anon_sym_DASH_GT] = ACTIONS(4558), - [anon_sym_with] = ACTIONS(4558), - [aux_sym_preproc_if_token3] = ACTIONS(4558), - [aux_sym_preproc_else_token1] = ACTIONS(4558), - [aux_sym_preproc_elif_token1] = ACTIONS(4558), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4224), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441538,14 +441560,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2514] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2602), - [sym_property_pattern_clause] = STATE(2719), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5846), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2514), [sym_preproc_endregion] = STATE(2514), [sym_preproc_line] = STATE(2514), @@ -441555,68 +441569,76 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4222), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4224), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3959), + [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_LT] = ACTIONS(3959), + [anon_sym_GT] = ACTIONS(3959), + [anon_sym_in] = ACTIONS(3959), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_DOT] = ACTIONS(3959), + [anon_sym_EQ_GT] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3959), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3961), + [anon_sym_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_EQ] = ACTIONS(3961), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3959), + [anon_sym_PLUS_EQ] = ACTIONS(3961), + [anon_sym_DASH_EQ] = ACTIONS(3961), + [anon_sym_STAR_EQ] = ACTIONS(3961), + [anon_sym_SLASH_EQ] = ACTIONS(3961), + [anon_sym_PERCENT_EQ] = ACTIONS(3961), + [anon_sym_AMP_EQ] = ACTIONS(3961), + [anon_sym_CARET_EQ] = ACTIONS(3961), + [anon_sym_PIPE_EQ] = ACTIONS(3961), + [anon_sym_LT_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_GT_EQ] = ACTIONS(3961), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3961), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3961), + [anon_sym_EQ_EQ] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [sym_op_bitwise_or] = ACTIONS(3959), + [anon_sym_CARET] = ACTIONS(3959), + [sym_op_left_shift] = ACTIONS(3959), + [sym_op_right_shift] = ACTIONS(3959), + [sym_op_unsigned_right_shift] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3959), + [sym_op_divide] = ACTIONS(3959), + [sym_op_modulo] = ACTIONS(3959), + [sym_op_coalescing] = ACTIONS(3959), + [anon_sym_BANG] = ACTIONS(3959), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), + [anon_sym_with] = ACTIONS(3961), + [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), @@ -441629,6 +441651,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2515] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2592), + [sym_property_pattern_clause] = STATE(2634), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5845), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2515), [sym_preproc_endregion] = STATE(2515), [sym_preproc_line] = STATE(2515), @@ -441638,76 +441668,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(4562), - [anon_sym_EQ] = ACTIONS(4564), - [anon_sym_LBRACK] = ACTIONS(4562), - [anon_sym_COLON] = ACTIONS(4562), - [anon_sym_COMMA] = ACTIONS(4562), - [anon_sym_RBRACK] = ACTIONS(4562), - [anon_sym_LPAREN] = ACTIONS(4562), - [anon_sym_RPAREN] = ACTIONS(4562), - [anon_sym_RBRACE] = ACTIONS(4562), - [anon_sym_LT] = ACTIONS(4564), - [anon_sym_GT] = ACTIONS(4564), - [anon_sym_in] = ACTIONS(4564), - [anon_sym_where] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_BANG] = ACTIONS(4564), - [anon_sym_PLUS_PLUS] = ACTIONS(4562), - [anon_sym_DASH_DASH] = ACTIONS(4562), - [anon_sym_PLUS] = ACTIONS(4564), - [anon_sym_DASH] = ACTIONS(4564), - [anon_sym_STAR] = ACTIONS(4564), - [anon_sym_SLASH] = ACTIONS(4564), - [anon_sym_PERCENT] = ACTIONS(4564), - [anon_sym_CARET] = ACTIONS(4564), - [anon_sym_PIPE] = ACTIONS(4564), - [anon_sym_AMP] = ACTIONS(4564), - [anon_sym_LT_LT] = ACTIONS(4564), - [anon_sym_GT_GT] = ACTIONS(4564), - [anon_sym_GT_GT_GT] = ACTIONS(4564), - [anon_sym_EQ_EQ] = ACTIONS(4562), - [anon_sym_BANG_EQ] = ACTIONS(4562), - [anon_sym_GT_EQ] = ACTIONS(4562), - [anon_sym_LT_EQ] = ACTIONS(4562), - [anon_sym_DOT] = ACTIONS(4564), - [anon_sym_EQ_GT] = ACTIONS(4562), - [anon_sym_switch] = ACTIONS(4562), - [anon_sym_DOT_DOT] = ACTIONS(4562), - [anon_sym_and] = ACTIONS(4562), - [anon_sym_or] = ACTIONS(4564), - [anon_sym_PLUS_EQ] = ACTIONS(4562), - [anon_sym_DASH_EQ] = ACTIONS(4562), - [anon_sym_STAR_EQ] = ACTIONS(4562), - [anon_sym_SLASH_EQ] = ACTIONS(4562), - [anon_sym_PERCENT_EQ] = ACTIONS(4562), - [anon_sym_AMP_EQ] = ACTIONS(4562), - [anon_sym_CARET_EQ] = ACTIONS(4562), - [anon_sym_PIPE_EQ] = ACTIONS(4562), - [anon_sym_LT_LT_EQ] = ACTIONS(4562), - [anon_sym_GT_GT_EQ] = ACTIONS(4562), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4562), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4562), - [anon_sym_AMP_AMP] = ACTIONS(4562), - [anon_sym_PIPE_PIPE] = ACTIONS(4562), - [sym_op_coalescing] = ACTIONS(4564), - [anon_sym_from] = ACTIONS(4562), - [anon_sym_into] = ACTIONS(4562), - [anon_sym_join] = ACTIONS(4562), - [anon_sym_on] = ACTIONS(4562), - [anon_sym_equals] = ACTIONS(4562), - [anon_sym_let] = ACTIONS(4562), - [anon_sym_orderby] = ACTIONS(4562), - [anon_sym_group] = ACTIONS(4562), - [anon_sym_by] = ACTIONS(4562), - [anon_sym_select] = ACTIONS(4562), - [anon_sym_as] = ACTIONS(4562), - [anon_sym_is] = ACTIONS(4562), - [anon_sym_DASH_GT] = ACTIONS(4562), - [anon_sym_with] = ACTIONS(4562), - [aux_sym_preproc_if_token3] = ACTIONS(4562), - [aux_sym_preproc_else_token1] = ACTIONS(4562), - [aux_sym_preproc_elif_token1] = ACTIONS(4562), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4232), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4228), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441720,14 +441742,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2516] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2667), - [sym_property_pattern_clause] = STATE(2762), - [sym__variable_designation] = STATE(5242), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5155), - [sym__reserved_identifier] = STATE(2395), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2616), + [sym_property_pattern_clause] = STATE(2668), + [sym__variable_designation] = STATE(5310), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5156), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2516), [sym_preproc_endregion] = STATE(2516), [sym_preproc_line] = STATE(2516), @@ -441737,68 +441759,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2516), [sym_preproc_define] = STATE(2516), [sym_preproc_undef] = STATE(2516), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4450), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4425), [anon_sym_LT] = ACTIONS(4224), [anon_sym_GT] = ACTIONS(4224), [anon_sym_where] = ACTIONS(4224), [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4425), [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), [anon_sym_and] = ACTIONS(4224), [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), [anon_sym_from] = ACTIONS(4224), - [anon_sym_into] = ACTIONS(4224), + [anon_sym_into] = ACTIONS(4425), [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), [anon_sym_let] = ACTIONS(4224), [anon_sym_orderby] = ACTIONS(4224), [anon_sym_ascending] = ACTIONS(4224), [anon_sym_descending] = ACTIONS(4224), [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4450), + [anon_sym_by] = ACTIONS(4425), [anon_sym_select] = ACTIONS(4224), [anon_sym_as] = ACTIONS(4224), [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4222), + [sym_grit_metavariable] = ACTIONS(4220), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441811,6 +441833,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2517] = { + [sym__name] = STATE(3347), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_ref_type] = STATE(3311), + [sym__scoped_base_type] = STATE(3250), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2517), [sym_preproc_endregion] = STATE(2517), [sym_preproc_line] = STATE(2517), @@ -441820,75 +441851,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(4550), - [anon_sym_EQ] = ACTIONS(4552), - [anon_sym_LBRACK] = ACTIONS(4550), - [anon_sym_COLON] = ACTIONS(4550), - [anon_sym_COMMA] = ACTIONS(4550), - [anon_sym_RBRACK] = ACTIONS(4550), - [anon_sym_LPAREN] = ACTIONS(4550), - [anon_sym_RPAREN] = ACTIONS(4550), - [anon_sym_RBRACE] = ACTIONS(4550), - [anon_sym_LT] = ACTIONS(4552), - [anon_sym_GT] = ACTIONS(4552), - [anon_sym_in] = ACTIONS(4550), - [anon_sym_where] = ACTIONS(4550), - [anon_sym_QMARK] = ACTIONS(4552), - [anon_sym_BANG] = ACTIONS(4552), - [anon_sym_PLUS_PLUS] = ACTIONS(4550), - [anon_sym_DASH_DASH] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4552), - [anon_sym_SLASH] = ACTIONS(4552), - [anon_sym_PERCENT] = ACTIONS(4552), - [anon_sym_CARET] = ACTIONS(4552), - [anon_sym_PIPE] = ACTIONS(4552), - [anon_sym_AMP] = ACTIONS(4552), - [anon_sym_LT_LT] = ACTIONS(4552), - [anon_sym_GT_GT] = ACTIONS(4552), - [anon_sym_GT_GT_GT] = ACTIONS(4552), - [anon_sym_EQ_EQ] = ACTIONS(4550), - [anon_sym_BANG_EQ] = ACTIONS(4550), - [anon_sym_GT_EQ] = ACTIONS(4550), - [anon_sym_LT_EQ] = ACTIONS(4550), - [anon_sym_DOT] = ACTIONS(4552), - [anon_sym_EQ_GT] = ACTIONS(4550), - [anon_sym_switch] = ACTIONS(4550), - [anon_sym_DOT_DOT] = ACTIONS(4550), - [anon_sym_and] = ACTIONS(4550), - [anon_sym_or] = ACTIONS(4552), - [anon_sym_PLUS_EQ] = ACTIONS(4550), - [anon_sym_DASH_EQ] = ACTIONS(4550), - [anon_sym_STAR_EQ] = ACTIONS(4550), - [anon_sym_SLASH_EQ] = ACTIONS(4550), - [anon_sym_PERCENT_EQ] = ACTIONS(4550), - [anon_sym_AMP_EQ] = ACTIONS(4550), - [anon_sym_CARET_EQ] = ACTIONS(4550), - [anon_sym_PIPE_EQ] = ACTIONS(4550), - [anon_sym_LT_LT_EQ] = ACTIONS(4550), - [anon_sym_GT_GT_EQ] = ACTIONS(4550), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4550), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4550), - [anon_sym_AMP_AMP] = ACTIONS(4550), - [anon_sym_PIPE_PIPE] = ACTIONS(4550), - [sym_op_coalescing] = ACTIONS(4552), - [anon_sym_from] = ACTIONS(4550), - [anon_sym_join] = ACTIONS(4550), - [anon_sym_on] = ACTIONS(4550), - [anon_sym_equals] = ACTIONS(4550), - [anon_sym_let] = ACTIONS(4550), - [anon_sym_orderby] = ACTIONS(4550), - [anon_sym_group] = ACTIONS(4550), - [anon_sym_by] = ACTIONS(4550), - [anon_sym_select] = ACTIONS(4550), - [anon_sym_as] = ACTIONS(4550), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_DASH_GT] = ACTIONS(4550), - [anon_sym_with] = ACTIONS(4550), - [aux_sym_preproc_if_token3] = ACTIONS(4550), - [aux_sym_preproc_else_token1] = ACTIONS(4550), - [aux_sym_preproc_elif_token1] = ACTIONS(4550), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4498), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441901,26 +441923,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2518] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(8125), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6032), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(2518), [sym_preproc_endregion] = STATE(2518), [sym_preproc_line] = STATE(2518), @@ -441930,75 +441932,87 @@ 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), - [aux_sym_using_directive_repeat1] = STATE(6023), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2626), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(4566), + [sym__identifier_token] = ACTIONS(4568), + [anon_sym_alias] = ACTIONS(4568), + [anon_sym_global] = ACTIONS(4568), [anon_sym_static] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(4570), [anon_sym_LPAREN] = ACTIONS(4570), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(657), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(657), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), + [anon_sym_ref] = ACTIONS(4568), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_delegate] = ACTIONS(4568), + [anon_sym_async] = ACTIONS(4568), + [anon_sym_file] = ACTIONS(4568), + [anon_sym_new] = ACTIONS(4568), + [anon_sym_where] = ACTIONS(4568), + [anon_sym_notnull] = ACTIONS(4568), + [anon_sym_unmanaged] = ACTIONS(4568), + [anon_sym_checked] = ACTIONS(4568), + [anon_sym_TILDE] = ACTIONS(4570), + [anon_sym_this] = ACTIONS(4568), + [anon_sym_scoped] = ACTIONS(4568), + [anon_sym_base] = ACTIONS(4568), + [anon_sym_var] = ACTIONS(4568), + [anon_sym_STAR] = ACTIONS(4570), + [sym_predefined_type] = ACTIONS(4568), + [anon_sym_unchecked] = ACTIONS(4568), + [anon_sym_yield] = ACTIONS(4568), + [anon_sym_default] = ACTIONS(4568), + [anon_sym_throw] = ACTIONS(4568), + [anon_sym_when] = ACTIONS(4568), + [anon_sym_await] = ACTIONS(4568), + [anon_sym_DOT_DOT] = ACTIONS(4570), + [anon_sym_AMP] = ACTIONS(4570), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4568), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_BANG] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [anon_sym_from] = ACTIONS(4568), + [anon_sym_into] = ACTIONS(4568), + [anon_sym_join] = ACTIONS(4568), + [anon_sym_on] = ACTIONS(4568), + [anon_sym_equals] = ACTIONS(4568), + [anon_sym_let] = ACTIONS(4568), + [anon_sym_orderby] = ACTIONS(4568), + [anon_sym_ascending] = ACTIONS(4568), + [anon_sym_descending] = ACTIONS(4568), + [anon_sym_group] = ACTIONS(4568), + [anon_sym_by] = ACTIONS(4568), + [anon_sym_select] = ACTIONS(4568), + [anon_sym_stackalloc] = ACTIONS(4568), + [anon_sym_sizeof] = ACTIONS(4568), + [anon_sym_typeof] = ACTIONS(4568), + [anon_sym___makeref] = ACTIONS(4568), + [anon_sym___reftype] = ACTIONS(4568), + [anon_sym___refvalue] = ACTIONS(4568), + [sym_null_literal] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4570), + [sym_integer_literal] = ACTIONS(4568), + [sym_real_literal] = ACTIONS(4570), + [anon_sym_DQUOTE] = ACTIONS(4570), + [sym_verbatim_string_literal] = ACTIONS(4570), + [sym_grit_metavariable] = ACTIONS(4570), + [aux_sym_preproc_if_token1] = ACTIONS(4570), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(4570), + [sym_interpolation_verbatim_start] = ACTIONS(4570), + [sym_interpolation_raw_start] = ACTIONS(4570), + [sym_raw_string_start] = ACTIONS(4570), }, [2519] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2691), - [sym_property_pattern_clause] = STATE(2901), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4841), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2519), [sym_preproc_endregion] = STATE(2519), [sym_preproc_line] = STATE(2519), @@ -442008,88 +442022,95 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4224), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(4572), + [anon_sym_alias] = ACTIONS(4572), + [anon_sym_global] = ACTIONS(4572), + [anon_sym_static] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4574), + [anon_sym_LPAREN] = ACTIONS(4574), + [anon_sym_ref] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4574), + [anon_sym_delegate] = ACTIONS(4572), + [anon_sym_async] = ACTIONS(4572), + [anon_sym_file] = ACTIONS(4572), + [anon_sym_new] = ACTIONS(4572), + [anon_sym_where] = ACTIONS(4572), + [anon_sym_notnull] = ACTIONS(4572), + [anon_sym_unmanaged] = ACTIONS(4572), + [anon_sym_checked] = ACTIONS(4572), + [anon_sym_TILDE] = ACTIONS(4574), + [anon_sym_this] = ACTIONS(4572), + [anon_sym_scoped] = ACTIONS(4572), + [anon_sym_base] = ACTIONS(4572), + [anon_sym_var] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4574), + [sym_predefined_type] = ACTIONS(4572), + [anon_sym_unchecked] = ACTIONS(4572), + [anon_sym_yield] = ACTIONS(4572), + [anon_sym_default] = ACTIONS(4572), + [anon_sym_throw] = ACTIONS(4572), + [anon_sym_when] = ACTIONS(4572), + [anon_sym_await] = ACTIONS(4572), + [anon_sym_DOT_DOT] = ACTIONS(4574), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_CARET] = ACTIONS(4574), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4572), + [anon_sym_BANG] = ACTIONS(4574), + [anon_sym_PLUS_PLUS] = ACTIONS(4574), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_true] = ACTIONS(4572), + [anon_sym_false] = ACTIONS(4572), + [anon_sym_from] = ACTIONS(4572), + [anon_sym_into] = ACTIONS(4572), + [anon_sym_join] = ACTIONS(4572), + [anon_sym_on] = ACTIONS(4572), + [anon_sym_equals] = ACTIONS(4572), + [anon_sym_let] = ACTIONS(4572), + [anon_sym_orderby] = ACTIONS(4572), + [anon_sym_ascending] = ACTIONS(4572), + [anon_sym_descending] = ACTIONS(4572), + [anon_sym_group] = ACTIONS(4572), + [anon_sym_by] = ACTIONS(4572), + [anon_sym_select] = ACTIONS(4572), + [anon_sym_stackalloc] = ACTIONS(4572), + [anon_sym_sizeof] = ACTIONS(4572), + [anon_sym_typeof] = ACTIONS(4572), + [anon_sym___makeref] = ACTIONS(4572), + [anon_sym___reftype] = ACTIONS(4572), + [anon_sym___refvalue] = ACTIONS(4572), + [sym_null_literal] = ACTIONS(4572), + [anon_sym_SQUOTE] = ACTIONS(4574), + [sym_integer_literal] = ACTIONS(4572), + [sym_real_literal] = ACTIONS(4574), + [anon_sym_DQUOTE] = ACTIONS(4574), + [sym_verbatim_string_literal] = ACTIONS(4574), + [sym_grit_metavariable] = ACTIONS(4574), + [aux_sym_preproc_if_token1] = ACTIONS(4574), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(4574), + [sym_interpolation_verbatim_start] = ACTIONS(4574), + [sym_interpolation_raw_start] = ACTIONS(4574), + [sym_raw_string_start] = ACTIONS(4574), }, [2520] = { - [sym__name] = STATE(5074), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_ref_type] = STATE(3762), - [sym__scoped_base_type] = STATE(3735), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2648), + [sym_property_pattern_clause] = STATE(2912), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4070), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2520), [sym_preproc_endregion] = STATE(2520), [sym_preproc_line] = STATE(2520), @@ -442099,66 +442120,67 @@ 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(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4572), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4197), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4197), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4201), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4201), - [anon_sym_select] = ACTIONS(4197), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4228), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4228), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442171,14 +442193,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2521] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2680), - [sym_property_pattern_clause] = STATE(2860), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2651), + [sym_property_pattern_clause] = STATE(2900), + [sym__variable_designation] = STATE(5509), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5472), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2521), [sym_preproc_endregion] = STATE(2521), [sym_preproc_line] = STATE(2521), @@ -442191,64 +442213,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4208), [anon_sym_alias] = ACTIONS(4210), [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4216), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4228), + [anon_sym_QMARK] = ACTIONS(4228), [anon_sym_notnull] = ACTIONS(4210), [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4228), [anon_sym_scoped] = ACTIONS(4210), [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4232), [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4216), + [anon_sym_switch] = ACTIONS(4228), [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4210), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4228), [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4228), [anon_sym_on] = ACTIONS(4210), [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4228), + [anon_sym_orderby] = ACTIONS(4228), [anon_sym_ascending] = ACTIONS(4210), [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4216), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4220), + [anon_sym_group] = ACTIONS(4228), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442270,95 +442292,87 @@ 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(4574), - [anon_sym_alias] = ACTIONS(4574), - [anon_sym_global] = ACTIONS(4574), - [anon_sym_static] = ACTIONS(4574), - [anon_sym_LBRACK] = ACTIONS(4576), - [anon_sym_LPAREN] = ACTIONS(4576), - [anon_sym_ref] = ACTIONS(4574), - [anon_sym_LBRACE] = ACTIONS(4576), - [anon_sym_delegate] = ACTIONS(4574), - [anon_sym_async] = ACTIONS(4574), - [anon_sym_file] = ACTIONS(4574), - [anon_sym_new] = ACTIONS(4574), - [anon_sym_where] = ACTIONS(4574), - [anon_sym_notnull] = ACTIONS(4574), - [anon_sym_unmanaged] = ACTIONS(4574), - [anon_sym_checked] = ACTIONS(4574), - [anon_sym_BANG] = ACTIONS(4576), - [anon_sym_TILDE] = ACTIONS(4576), - [anon_sym_PLUS_PLUS] = ACTIONS(4576), - [anon_sym_DASH_DASH] = ACTIONS(4576), - [anon_sym_true] = ACTIONS(4574), - [anon_sym_false] = ACTIONS(4574), - [anon_sym_PLUS] = ACTIONS(4574), - [anon_sym_DASH] = ACTIONS(4574), - [anon_sym_STAR] = ACTIONS(4576), - [anon_sym_CARET] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4576), - [anon_sym_this] = ACTIONS(4574), - [anon_sym_scoped] = ACTIONS(4574), - [anon_sym_base] = ACTIONS(4574), - [anon_sym_var] = ACTIONS(4574), - [sym_predefined_type] = ACTIONS(4574), - [anon_sym_unchecked] = ACTIONS(4574), - [anon_sym_yield] = ACTIONS(4574), - [anon_sym_default] = ACTIONS(4574), - [anon_sym_throw] = ACTIONS(4574), - [anon_sym_when] = ACTIONS(4574), - [anon_sym_await] = ACTIONS(4574), - [anon_sym_DOT_DOT] = ACTIONS(4576), - [anon_sym_from] = ACTIONS(4574), - [anon_sym_into] = ACTIONS(4574), - [anon_sym_join] = ACTIONS(4574), - [anon_sym_on] = ACTIONS(4574), - [anon_sym_equals] = ACTIONS(4574), - [anon_sym_let] = ACTIONS(4574), - [anon_sym_orderby] = ACTIONS(4574), - [anon_sym_ascending] = ACTIONS(4574), - [anon_sym_descending] = ACTIONS(4574), - [anon_sym_group] = ACTIONS(4574), - [anon_sym_by] = ACTIONS(4574), - [anon_sym_select] = ACTIONS(4574), - [anon_sym_stackalloc] = ACTIONS(4574), - [anon_sym_sizeof] = ACTIONS(4574), - [anon_sym_typeof] = ACTIONS(4574), - [anon_sym___makeref] = ACTIONS(4574), - [anon_sym___reftype] = ACTIONS(4574), - [anon_sym___refvalue] = ACTIONS(4574), - [sym_null_literal] = ACTIONS(4574), - [anon_sym_SQUOTE] = ACTIONS(4576), - [sym_integer_literal] = ACTIONS(4574), - [sym_real_literal] = ACTIONS(4576), - [anon_sym_DQUOTE] = ACTIONS(4576), - [sym_verbatim_string_literal] = ACTIONS(4576), - [sym_grit_metavariable] = ACTIONS(4576), - [aux_sym_preproc_if_token1] = ACTIONS(4576), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4576), - [sym_interpolation_verbatim_start] = ACTIONS(4576), - [sym_interpolation_raw_start] = ACTIONS(4576), - [sym_raw_string_start] = ACTIONS(4576), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_RBRACK] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [anon_sym_RBRACE] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4560), + [anon_sym_in] = ACTIONS(4558), + [anon_sym_where] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_EQ_GT] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_switch] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(4558), + [anon_sym_LT_EQ] = ACTIONS(4558), + [anon_sym_GT_EQ] = ACTIONS(4558), + [anon_sym_and] = ACTIONS(4558), + [anon_sym_or] = ACTIONS(4560), + [anon_sym_PLUS_EQ] = ACTIONS(4558), + [anon_sym_DASH_EQ] = ACTIONS(4558), + [anon_sym_STAR_EQ] = ACTIONS(4558), + [anon_sym_SLASH_EQ] = ACTIONS(4558), + [anon_sym_PERCENT_EQ] = ACTIONS(4558), + [anon_sym_AMP_EQ] = ACTIONS(4558), + [anon_sym_CARET_EQ] = ACTIONS(4558), + [anon_sym_PIPE_EQ] = ACTIONS(4558), + [anon_sym_LT_LT_EQ] = ACTIONS(4558), + [anon_sym_GT_GT_EQ] = ACTIONS(4558), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4558), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4558), + [anon_sym_EQ_EQ] = ACTIONS(4558), + [anon_sym_BANG_EQ] = ACTIONS(4558), + [anon_sym_AMP_AMP] = ACTIONS(4558), + [anon_sym_PIPE_PIPE] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [sym_op_bitwise_or] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [sym_op_left_shift] = ACTIONS(4560), + [sym_op_right_shift] = ACTIONS(4560), + [sym_op_unsigned_right_shift] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4560), + [anon_sym_DASH] = ACTIONS(4560), + [sym_op_divide] = ACTIONS(4560), + [sym_op_modulo] = ACTIONS(4560), + [sym_op_coalescing] = ACTIONS(4560), + [anon_sym_BANG] = ACTIONS(4560), + [anon_sym_PLUS_PLUS] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4558), + [anon_sym_from] = ACTIONS(4558), + [anon_sym_join] = ACTIONS(4558), + [anon_sym_on] = ACTIONS(4558), + [anon_sym_equals] = ACTIONS(4558), + [anon_sym_let] = ACTIONS(4558), + [anon_sym_orderby] = ACTIONS(4558), + [anon_sym_group] = ACTIONS(4558), + [anon_sym_by] = ACTIONS(4558), + [anon_sym_select] = ACTIONS(4558), + [anon_sym_as] = ACTIONS(4558), + [anon_sym_is] = ACTIONS(4558), + [anon_sym_DASH_GT] = ACTIONS(4558), + [anon_sym_with] = ACTIONS(4558), + [aux_sym_preproc_if_token3] = ACTIONS(4558), + [aux_sym_preproc_else_token1] = ACTIONS(4558), + [aux_sym_preproc_elif_token1] = ACTIONS(4558), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2523] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2674), - [sym_property_pattern_clause] = STATE(2834), - [sym__variable_designation] = STATE(5503), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5486), - [sym__reserved_identifier] = STATE(3398), [sym_preproc_region] = STATE(2523), [sym_preproc_endregion] = STATE(2523), [sym_preproc_line] = STATE(2523), @@ -442368,67 +442382,75 @@ 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(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4216), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4197), - [anon_sym_var] = ACTIONS(4197), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4197), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4216), - [anon_sym_into] = ACTIONS(4216), - [anon_sym_join] = ACTIONS(4216), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4216), - [anon_sym_orderby] = ACTIONS(4216), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4216), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4216), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_RBRACE] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_in] = ACTIONS(4534), + [anon_sym_where] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_DOT] = ACTIONS(4540), + [anon_sym_EQ_GT] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_switch] = ACTIONS(4534), + [anon_sym_DOT_DOT] = ACTIONS(4534), + [anon_sym_LT_EQ] = ACTIONS(4534), + [anon_sym_GT_EQ] = ACTIONS(4534), + [anon_sym_and] = ACTIONS(4534), + [anon_sym_or] = ACTIONS(4540), + [anon_sym_PLUS_EQ] = ACTIONS(4538), + [anon_sym_DASH_EQ] = ACTIONS(4538), + [anon_sym_STAR_EQ] = ACTIONS(4538), + [anon_sym_SLASH_EQ] = ACTIONS(4538), + [anon_sym_PERCENT_EQ] = ACTIONS(4538), + [anon_sym_AMP_EQ] = ACTIONS(4538), + [anon_sym_CARET_EQ] = ACTIONS(4538), + [anon_sym_PIPE_EQ] = ACTIONS(4538), + [anon_sym_LT_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4534), + [anon_sym_BANG_EQ] = ACTIONS(4534), + [anon_sym_AMP_AMP] = ACTIONS(4534), + [anon_sym_PIPE_PIPE] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4540), + [sym_op_bitwise_or] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [sym_op_left_shift] = ACTIONS(4540), + [sym_op_right_shift] = ACTIONS(4540), + [sym_op_unsigned_right_shift] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [sym_op_divide] = ACTIONS(4540), + [sym_op_modulo] = ACTIONS(4540), + [sym_op_coalescing] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PLUS_PLUS] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4534), + [anon_sym_from] = ACTIONS(4534), + [anon_sym_join] = ACTIONS(4534), + [anon_sym_on] = ACTIONS(4534), + [anon_sym_equals] = ACTIONS(4534), + [anon_sym_let] = ACTIONS(4534), + [anon_sym_orderby] = ACTIONS(4534), + [anon_sym_group] = ACTIONS(4534), + [anon_sym_by] = ACTIONS(4534), + [anon_sym_select] = ACTIONS(4534), + [anon_sym_as] = ACTIONS(4534), + [anon_sym_is] = ACTIONS(4534), + [anon_sym_DASH_GT] = ACTIONS(4534), + [anon_sym_with] = ACTIONS(4534), + [aux_sym_preproc_if_token3] = ACTIONS(4534), + [aux_sym_preproc_else_token1] = ACTIONS(4534), + [aux_sym_preproc_elif_token1] = ACTIONS(4534), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442441,14 +442463,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2524] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2682), - [sym_property_pattern_clause] = STATE(2894), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4841), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2644), + [sym_property_pattern_clause] = STATE(2727), + [sym__variable_designation] = STATE(5509), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5472), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2524), [sym_preproc_endregion] = STATE(2524), [sym_preproc_line] = STATE(2524), @@ -442458,67 +442480,67 @@ 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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4188), [anon_sym_LT] = ACTIONS(4224), [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4224), [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4188), + [anon_sym_var] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4188), [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4188), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4224), [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4224), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4224), + [anon_sym_on] = ACTIONS(4188), + [anon_sym_equals] = ACTIONS(4188), + [anon_sym_let] = ACTIONS(4224), + [anon_sym_orderby] = ACTIONS(4224), + [anon_sym_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4224), [anon_sym_as] = ACTIONS(4224), [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442531,15 +442553,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2525] = { - [sym__name] = STATE(4285), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_ref_type] = STATE(3809), - [sym__scoped_base_type] = STATE(3808), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(2525), [sym_preproc_endregion] = STATE(2525), [sym_preproc_line] = STATE(2525), @@ -442549,76 +442562,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2525), [sym_preproc_define] = STATE(2525), [sym_preproc_undef] = STATE(2525), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4580), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4513), - [anon_sym_select] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4232), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4578), + [anon_sym_alias] = ACTIONS(4578), + [anon_sym_global] = ACTIONS(4578), + [anon_sym_static] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(4580), + [anon_sym_ref] = ACTIONS(4578), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_delegate] = ACTIONS(4578), + [anon_sym_async] = ACTIONS(4578), + [anon_sym_file] = ACTIONS(4578), + [anon_sym_new] = ACTIONS(4578), + [anon_sym_where] = ACTIONS(4578), + [anon_sym_notnull] = ACTIONS(4578), + [anon_sym_unmanaged] = ACTIONS(4578), + [anon_sym_checked] = ACTIONS(4578), + [anon_sym_TILDE] = ACTIONS(4580), + [anon_sym_this] = ACTIONS(4578), + [anon_sym_scoped] = ACTIONS(4578), + [anon_sym_base] = ACTIONS(4578), + [anon_sym_var] = ACTIONS(4578), + [anon_sym_STAR] = ACTIONS(4580), + [sym_predefined_type] = ACTIONS(4578), + [anon_sym_unchecked] = ACTIONS(4578), + [anon_sym_yield] = ACTIONS(4578), + [anon_sym_default] = ACTIONS(4578), + [anon_sym_throw] = ACTIONS(4578), + [anon_sym_when] = ACTIONS(4578), + [anon_sym_await] = ACTIONS(4578), + [anon_sym_DOT_DOT] = ACTIONS(4580), + [anon_sym_AMP] = ACTIONS(4580), + [anon_sym_CARET] = ACTIONS(4580), + [anon_sym_PLUS] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_BANG] = ACTIONS(4580), + [anon_sym_PLUS_PLUS] = ACTIONS(4580), + [anon_sym_DASH_DASH] = ACTIONS(4580), + [anon_sym_true] = ACTIONS(4578), + [anon_sym_false] = ACTIONS(4578), + [anon_sym_from] = ACTIONS(4578), + [anon_sym_into] = ACTIONS(4578), + [anon_sym_join] = ACTIONS(4578), + [anon_sym_on] = ACTIONS(4578), + [anon_sym_equals] = ACTIONS(4578), + [anon_sym_let] = ACTIONS(4578), + [anon_sym_orderby] = ACTIONS(4578), + [anon_sym_ascending] = ACTIONS(4578), + [anon_sym_descending] = ACTIONS(4578), + [anon_sym_group] = ACTIONS(4578), + [anon_sym_by] = ACTIONS(4578), + [anon_sym_select] = ACTIONS(4578), + [anon_sym_stackalloc] = ACTIONS(4578), + [anon_sym_sizeof] = ACTIONS(4578), + [anon_sym_typeof] = ACTIONS(4578), + [anon_sym___makeref] = ACTIONS(4578), + [anon_sym___reftype] = ACTIONS(4578), + [anon_sym___refvalue] = ACTIONS(4578), + [sym_null_literal] = ACTIONS(4578), + [anon_sym_SQUOTE] = ACTIONS(4580), + [sym_integer_literal] = ACTIONS(4578), + [sym_real_literal] = ACTIONS(4580), + [anon_sym_DQUOTE] = ACTIONS(4580), + [sym_verbatim_string_literal] = ACTIONS(4580), + [sym_grit_metavariable] = ACTIONS(4580), + [aux_sym_preproc_if_token1] = ACTIONS(4580), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(4580), + [sym_interpolation_verbatim_start] = ACTIONS(4580), + [sym_interpolation_raw_start] = ACTIONS(4580), + [sym_raw_string_start] = ACTIONS(4580), }, [2526] = { [sym_preproc_region] = STATE(2526), @@ -442646,21 +442668,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(4582), [anon_sym_unmanaged] = ACTIONS(4582), [anon_sym_checked] = ACTIONS(4582), - [anon_sym_BANG] = ACTIONS(4584), [anon_sym_TILDE] = ACTIONS(4584), - [anon_sym_PLUS_PLUS] = ACTIONS(4584), - [anon_sym_DASH_DASH] = ACTIONS(4584), - [anon_sym_true] = ACTIONS(4582), - [anon_sym_false] = ACTIONS(4582), - [anon_sym_PLUS] = ACTIONS(4582), - [anon_sym_DASH] = ACTIONS(4582), - [anon_sym_STAR] = ACTIONS(4584), - [anon_sym_CARET] = ACTIONS(4584), - [anon_sym_AMP] = ACTIONS(4584), [anon_sym_this] = ACTIONS(4582), [anon_sym_scoped] = ACTIONS(4582), [anon_sym_base] = ACTIONS(4582), [anon_sym_var] = ACTIONS(4582), + [anon_sym_STAR] = ACTIONS(4584), [sym_predefined_type] = ACTIONS(4582), [anon_sym_unchecked] = ACTIONS(4582), [anon_sym_yield] = ACTIONS(4582), @@ -442669,6 +442682,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(4582), [anon_sym_await] = ACTIONS(4582), [anon_sym_DOT_DOT] = ACTIONS(4584), + [anon_sym_AMP] = ACTIONS(4584), + [anon_sym_CARET] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4582), + [anon_sym_DASH] = ACTIONS(4582), + [anon_sym_BANG] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_true] = ACTIONS(4582), + [anon_sym_false] = ACTIONS(4582), [anon_sym_from] = ACTIONS(4582), [anon_sym_into] = ACTIONS(4582), [anon_sym_join] = ACTIONS(4582), @@ -442720,75 +442742,75 @@ 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), - [anon_sym_SEMI] = ACTIONS(4534), - [anon_sym_EQ] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4534), - [anon_sym_COLON] = ACTIONS(4534), - [anon_sym_COMMA] = ACTIONS(4534), - [anon_sym_RBRACK] = ACTIONS(4534), - [anon_sym_LPAREN] = ACTIONS(4534), - [anon_sym_RPAREN] = ACTIONS(4534), - [anon_sym_RBRACE] = ACTIONS(4534), - [anon_sym_LT] = ACTIONS(4536), - [anon_sym_GT] = ACTIONS(4536), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_QMARK] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4534), - [anon_sym_DASH_DASH] = ACTIONS(4534), - [anon_sym_PLUS] = ACTIONS(4536), - [anon_sym_DASH] = ACTIONS(4536), - [anon_sym_STAR] = ACTIONS(4536), - [anon_sym_SLASH] = ACTIONS(4536), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_CARET] = ACTIONS(4536), - [anon_sym_PIPE] = ACTIONS(4536), - [anon_sym_AMP] = ACTIONS(4536), - [anon_sym_LT_LT] = ACTIONS(4536), - [anon_sym_GT_GT] = ACTIONS(4536), - [anon_sym_GT_GT_GT] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_GT_EQ] = ACTIONS(4534), - [anon_sym_LT_EQ] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4536), - [anon_sym_EQ_GT] = ACTIONS(4534), - [anon_sym_switch] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4534), - [anon_sym_and] = ACTIONS(4534), - [anon_sym_or] = ACTIONS(4536), - [anon_sym_PLUS_EQ] = ACTIONS(4534), - [anon_sym_DASH_EQ] = ACTIONS(4534), - [anon_sym_STAR_EQ] = ACTIONS(4534), - [anon_sym_SLASH_EQ] = ACTIONS(4534), - [anon_sym_PERCENT_EQ] = ACTIONS(4534), - [anon_sym_AMP_EQ] = ACTIONS(4534), - [anon_sym_CARET_EQ] = ACTIONS(4534), - [anon_sym_PIPE_EQ] = ACTIONS(4534), - [anon_sym_LT_LT_EQ] = ACTIONS(4534), - [anon_sym_GT_GT_EQ] = ACTIONS(4534), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4534), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4534), - [anon_sym_AMP_AMP] = ACTIONS(4534), - [anon_sym_PIPE_PIPE] = ACTIONS(4534), - [sym_op_coalescing] = ACTIONS(4536), - [anon_sym_from] = ACTIONS(4534), - [anon_sym_join] = ACTIONS(4534), - [anon_sym_on] = ACTIONS(4534), - [anon_sym_equals] = ACTIONS(4534), - [anon_sym_let] = ACTIONS(4534), - [anon_sym_orderby] = ACTIONS(4534), - [anon_sym_group] = ACTIONS(4534), - [anon_sym_by] = ACTIONS(4534), - [anon_sym_select] = ACTIONS(4534), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_DASH_GT] = ACTIONS(4534), - [anon_sym_with] = ACTIONS(4534), - [aux_sym_preproc_if_token3] = ACTIONS(4534), - [aux_sym_preproc_else_token1] = ACTIONS(4534), - [aux_sym_preproc_elif_token1] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4542), + [anon_sym_EQ] = ACTIONS(4544), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_COLON] = ACTIONS(4542), + [anon_sym_COMMA] = ACTIONS(4542), + [anon_sym_RBRACK] = ACTIONS(4542), + [anon_sym_LPAREN] = ACTIONS(4542), + [anon_sym_RPAREN] = ACTIONS(4542), + [anon_sym_RBRACE] = ACTIONS(4542), + [anon_sym_LT] = ACTIONS(4544), + [anon_sym_GT] = ACTIONS(4544), + [anon_sym_in] = ACTIONS(4542), + [anon_sym_where] = ACTIONS(4542), + [anon_sym_QMARK] = ACTIONS(4544), + [anon_sym_DOT] = ACTIONS(4544), + [anon_sym_EQ_GT] = ACTIONS(4542), + [anon_sym_STAR] = ACTIONS(4544), + [anon_sym_switch] = ACTIONS(4542), + [anon_sym_DOT_DOT] = ACTIONS(4542), + [anon_sym_LT_EQ] = ACTIONS(4542), + [anon_sym_GT_EQ] = ACTIONS(4542), + [anon_sym_and] = ACTIONS(4542), + [anon_sym_or] = ACTIONS(4544), + [anon_sym_PLUS_EQ] = ACTIONS(4542), + [anon_sym_DASH_EQ] = ACTIONS(4542), + [anon_sym_STAR_EQ] = ACTIONS(4542), + [anon_sym_SLASH_EQ] = ACTIONS(4542), + [anon_sym_PERCENT_EQ] = ACTIONS(4542), + [anon_sym_AMP_EQ] = ACTIONS(4542), + [anon_sym_CARET_EQ] = ACTIONS(4542), + [anon_sym_PIPE_EQ] = ACTIONS(4542), + [anon_sym_LT_LT_EQ] = ACTIONS(4542), + [anon_sym_GT_GT_EQ] = ACTIONS(4542), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4542), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4542), + [anon_sym_EQ_EQ] = ACTIONS(4542), + [anon_sym_BANG_EQ] = ACTIONS(4542), + [anon_sym_AMP_AMP] = ACTIONS(4542), + [anon_sym_PIPE_PIPE] = ACTIONS(4542), + [anon_sym_AMP] = ACTIONS(4544), + [sym_op_bitwise_or] = ACTIONS(4544), + [anon_sym_CARET] = ACTIONS(4544), + [sym_op_left_shift] = ACTIONS(4544), + [sym_op_right_shift] = ACTIONS(4544), + [sym_op_unsigned_right_shift] = ACTIONS(4544), + [anon_sym_PLUS] = ACTIONS(4544), + [anon_sym_DASH] = ACTIONS(4544), + [sym_op_divide] = ACTIONS(4544), + [sym_op_modulo] = ACTIONS(4544), + [sym_op_coalescing] = ACTIONS(4544), + [anon_sym_BANG] = ACTIONS(4544), + [anon_sym_PLUS_PLUS] = ACTIONS(4542), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_from] = ACTIONS(4542), + [anon_sym_join] = ACTIONS(4542), + [anon_sym_on] = ACTIONS(4542), + [anon_sym_equals] = ACTIONS(4542), + [anon_sym_let] = ACTIONS(4542), + [anon_sym_orderby] = ACTIONS(4542), + [anon_sym_group] = ACTIONS(4542), + [anon_sym_by] = ACTIONS(4542), + [anon_sym_select] = ACTIONS(4542), + [anon_sym_as] = ACTIONS(4542), + [anon_sym_is] = ACTIONS(4542), + [anon_sym_DASH_GT] = ACTIONS(4542), + [anon_sym_with] = ACTIONS(4542), + [aux_sym_preproc_if_token3] = ACTIONS(4542), + [aux_sym_preproc_else_token1] = ACTIONS(4542), + [aux_sym_preproc_elif_token1] = ACTIONS(4542), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442801,14 +442823,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2528] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2674), - [sym_property_pattern_clause] = STATE(2834), - [sym__variable_designation] = STATE(5503), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5486), - [sym__reserved_identifier] = STATE(3398), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2635), + [sym_property_pattern_clause] = STATE(2861), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4070), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2528), [sym_preproc_endregion] = STATE(2528), [sym_preproc_line] = STATE(2528), @@ -442818,67 +442840,67 @@ 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(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4197), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), [anon_sym_LT] = ACTIONS(4224), [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4197), - [anon_sym_var] = ACTIONS(4197), - [anon_sym_yield] = ACTIONS(4197), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4197), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4224), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), [anon_sym_as] = ACTIONS(4224), [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4204), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442891,6 +442913,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2529] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2638), + [sym_property_pattern_clause] = STATE(2772), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2529), [sym_preproc_endregion] = STATE(2529), [sym_preproc_line] = STATE(2529), @@ -442900,71 +442930,67 @@ 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(4586), - [anon_sym_alias] = ACTIONS(4586), - [anon_sym_global] = ACTIONS(4586), - [anon_sym_static] = ACTIONS(4586), - [anon_sym_LBRACK] = ACTIONS(4588), - [anon_sym_LPAREN] = ACTIONS(4588), - [anon_sym_ref] = ACTIONS(4586), - [anon_sym_LBRACE] = ACTIONS(4588), - [anon_sym_delegate] = ACTIONS(4586), - [anon_sym_async] = ACTIONS(4586), - [anon_sym_file] = ACTIONS(4586), - [anon_sym_new] = ACTIONS(4586), - [anon_sym_where] = ACTIONS(4586), - [anon_sym_notnull] = ACTIONS(4586), - [anon_sym_unmanaged] = ACTIONS(4586), - [anon_sym_checked] = ACTIONS(4586), - [anon_sym_BANG] = ACTIONS(4588), - [anon_sym_TILDE] = ACTIONS(4588), - [anon_sym_PLUS_PLUS] = ACTIONS(4588), - [anon_sym_DASH_DASH] = ACTIONS(4588), - [anon_sym_true] = ACTIONS(4586), - [anon_sym_false] = ACTIONS(4586), - [anon_sym_PLUS] = ACTIONS(4586), - [anon_sym_DASH] = ACTIONS(4586), - [anon_sym_STAR] = ACTIONS(4588), - [anon_sym_CARET] = ACTIONS(4588), - [anon_sym_AMP] = ACTIONS(4588), - [anon_sym_this] = ACTIONS(4586), - [anon_sym_scoped] = ACTIONS(4586), - [anon_sym_base] = ACTIONS(4586), - [anon_sym_var] = ACTIONS(4586), - [sym_predefined_type] = ACTIONS(4586), - [anon_sym_unchecked] = ACTIONS(4586), - [anon_sym_yield] = ACTIONS(4586), - [anon_sym_default] = ACTIONS(4586), - [anon_sym_throw] = ACTIONS(4586), - [anon_sym_when] = ACTIONS(4586), - [anon_sym_await] = ACTIONS(4586), - [anon_sym_DOT_DOT] = ACTIONS(4588), - [anon_sym_from] = ACTIONS(4586), - [anon_sym_into] = ACTIONS(4586), - [anon_sym_join] = ACTIONS(4586), - [anon_sym_on] = ACTIONS(4586), - [anon_sym_equals] = ACTIONS(4586), - [anon_sym_let] = ACTIONS(4586), - [anon_sym_orderby] = ACTIONS(4586), - [anon_sym_ascending] = ACTIONS(4586), - [anon_sym_descending] = ACTIONS(4586), - [anon_sym_group] = ACTIONS(4586), - [anon_sym_by] = ACTIONS(4586), - [anon_sym_select] = ACTIONS(4586), - [anon_sym_stackalloc] = ACTIONS(4586), - [anon_sym_sizeof] = ACTIONS(4586), - [anon_sym_typeof] = ACTIONS(4586), - [anon_sym___makeref] = ACTIONS(4586), - [anon_sym___reftype] = ACTIONS(4586), - [anon_sym___refvalue] = ACTIONS(4586), - [sym_null_literal] = ACTIONS(4586), - [anon_sym_SQUOTE] = ACTIONS(4588), - [sym_integer_literal] = ACTIONS(4586), - [sym_real_literal] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(4588), - [sym_verbatim_string_literal] = ACTIONS(4588), - [sym_grit_metavariable] = ACTIONS(4588), - [aux_sym_preproc_if_token1] = ACTIONS(4588), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4224), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442975,21 +443001,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4588), - [sym_interpolation_verbatim_start] = ACTIONS(4588), - [sym_interpolation_raw_start] = ACTIONS(4588), - [sym_raw_string_start] = ACTIONS(4588), }, [2530] = { - [sym__name] = STATE(4285), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_ref_type] = STATE(3809), - [sym__scoped_base_type] = STATE(3808), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2644), + [sym_property_pattern_clause] = STATE(2727), + [sym__variable_designation] = STATE(5509), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5472), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2530), [sym_preproc_endregion] = STATE(2530), [sym_preproc_line] = STATE(2530), @@ -442999,66 +443020,67 @@ 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), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4590), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), [anon_sym_where] = ACTIONS(4228), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4188), + [anon_sym_var] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4188), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), [anon_sym_from] = ACTIONS(4228), [anon_sym_into] = ACTIONS(4228), [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4513), - [anon_sym_equals] = ACTIONS(4228), + [anon_sym_on] = ACTIONS(4188), + [anon_sym_equals] = ACTIONS(4188), [anon_sym_let] = ACTIONS(4228), [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), + [anon_sym_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), + [anon_sym_by] = ACTIONS(4188), [anon_sym_select] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443071,6 +443093,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2531] = { + [sym_property_pattern_clause] = STATE(2611), + [sym__variable_designation] = STATE(5713), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym_identifier] = STATE(5790), + [sym__reserved_identifier] = STATE(5562), [sym_preproc_region] = STATE(2531), [sym_preproc_endregion] = STATE(2531), [sym_preproc_line] = STATE(2531), @@ -443080,87 +443107,90 @@ 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), - [anon_sym_SEMI] = ACTIONS(4562), - [anon_sym_EQ] = ACTIONS(4564), - [anon_sym_LBRACK] = ACTIONS(4562), - [anon_sym_COLON] = ACTIONS(4562), - [anon_sym_COMMA] = ACTIONS(4562), - [anon_sym_RBRACK] = ACTIONS(4562), - [anon_sym_LPAREN] = ACTIONS(4562), - [anon_sym_RPAREN] = ACTIONS(4562), - [anon_sym_RBRACE] = ACTIONS(4562), - [anon_sym_LT] = ACTIONS(4564), - [anon_sym_GT] = ACTIONS(4564), - [anon_sym_in] = ACTIONS(4562), - [anon_sym_where] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_BANG] = ACTIONS(4564), - [anon_sym_PLUS_PLUS] = ACTIONS(4562), - [anon_sym_DASH_DASH] = ACTIONS(4562), - [anon_sym_PLUS] = ACTIONS(4564), - [anon_sym_DASH] = ACTIONS(4564), - [anon_sym_STAR] = ACTIONS(4564), - [anon_sym_SLASH] = ACTIONS(4564), - [anon_sym_PERCENT] = ACTIONS(4564), - [anon_sym_CARET] = ACTIONS(4564), - [anon_sym_PIPE] = ACTIONS(4564), - [anon_sym_AMP] = ACTIONS(4564), - [anon_sym_LT_LT] = ACTIONS(4564), - [anon_sym_GT_GT] = ACTIONS(4564), - [anon_sym_GT_GT_GT] = ACTIONS(4564), - [anon_sym_EQ_EQ] = ACTIONS(4562), - [anon_sym_BANG_EQ] = ACTIONS(4562), - [anon_sym_GT_EQ] = ACTIONS(4562), - [anon_sym_LT_EQ] = ACTIONS(4562), - [anon_sym_DOT] = ACTIONS(4564), - [anon_sym_EQ_GT] = ACTIONS(4562), - [anon_sym_switch] = ACTIONS(4562), - [anon_sym_DOT_DOT] = ACTIONS(4562), - [anon_sym_and] = ACTIONS(4562), - [anon_sym_or] = ACTIONS(4564), - [anon_sym_PLUS_EQ] = ACTIONS(4562), - [anon_sym_DASH_EQ] = ACTIONS(4562), - [anon_sym_STAR_EQ] = ACTIONS(4562), - [anon_sym_SLASH_EQ] = ACTIONS(4562), - [anon_sym_PERCENT_EQ] = ACTIONS(4562), - [anon_sym_AMP_EQ] = ACTIONS(4562), - [anon_sym_CARET_EQ] = ACTIONS(4562), - [anon_sym_PIPE_EQ] = ACTIONS(4562), - [anon_sym_LT_LT_EQ] = ACTIONS(4562), - [anon_sym_GT_GT_EQ] = ACTIONS(4562), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4562), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4562), - [anon_sym_AMP_AMP] = ACTIONS(4562), - [anon_sym_PIPE_PIPE] = ACTIONS(4562), - [sym_op_coalescing] = ACTIONS(4564), - [anon_sym_from] = ACTIONS(4562), - [anon_sym_join] = ACTIONS(4562), - [anon_sym_on] = ACTIONS(4562), - [anon_sym_equals] = ACTIONS(4562), - [anon_sym_let] = ACTIONS(4562), - [anon_sym_orderby] = ACTIONS(4562), - [anon_sym_group] = ACTIONS(4562), - [anon_sym_by] = ACTIONS(4562), - [anon_sym_select] = ACTIONS(4562), - [anon_sym_as] = ACTIONS(4562), - [anon_sym_is] = ACTIONS(4562), - [anon_sym_DASH_GT] = ACTIONS(4562), - [anon_sym_with] = ACTIONS(4562), - [aux_sym_preproc_if_token3] = ACTIONS(4562), - [aux_sym_preproc_else_token1] = ACTIONS(4562), - [aux_sym_preproc_elif_token1] = ACTIONS(4562), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COLON] = ACTIONS(4254), + [anon_sym_COMMA] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4415), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4421), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4254), }, [2532] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2651), + [sym_property_pattern_clause] = STATE(2900), + [sym__variable_designation] = STATE(5509), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5472), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2532), [sym_preproc_endregion] = STATE(2532), [sym_preproc_line] = STATE(2532), @@ -443170,71 +443200,67 @@ 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), - [sym__identifier_token] = ACTIONS(4592), - [anon_sym_alias] = ACTIONS(4592), - [anon_sym_global] = ACTIONS(4592), - [anon_sym_static] = ACTIONS(4592), - [anon_sym_LBRACK] = ACTIONS(4594), - [anon_sym_LPAREN] = ACTIONS(4594), - [anon_sym_ref] = ACTIONS(4592), - [anon_sym_LBRACE] = ACTIONS(4594), - [anon_sym_delegate] = ACTIONS(4592), - [anon_sym_async] = ACTIONS(4592), - [anon_sym_file] = ACTIONS(4592), - [anon_sym_new] = ACTIONS(4592), - [anon_sym_where] = ACTIONS(4592), - [anon_sym_notnull] = ACTIONS(4592), - [anon_sym_unmanaged] = ACTIONS(4592), - [anon_sym_checked] = ACTIONS(4592), - [anon_sym_BANG] = ACTIONS(4594), - [anon_sym_TILDE] = ACTIONS(4594), - [anon_sym_PLUS_PLUS] = ACTIONS(4594), - [anon_sym_DASH_DASH] = ACTIONS(4594), - [anon_sym_true] = ACTIONS(4592), - [anon_sym_false] = ACTIONS(4592), - [anon_sym_PLUS] = ACTIONS(4592), - [anon_sym_DASH] = ACTIONS(4592), - [anon_sym_STAR] = ACTIONS(4594), - [anon_sym_CARET] = ACTIONS(4594), - [anon_sym_AMP] = ACTIONS(4594), - [anon_sym_this] = ACTIONS(4592), - [anon_sym_scoped] = ACTIONS(4592), - [anon_sym_base] = ACTIONS(4592), - [anon_sym_var] = ACTIONS(4592), - [sym_predefined_type] = ACTIONS(4592), - [anon_sym_unchecked] = ACTIONS(4592), - [anon_sym_yield] = ACTIONS(4592), - [anon_sym_default] = ACTIONS(4592), - [anon_sym_throw] = ACTIONS(4592), - [anon_sym_when] = ACTIONS(4592), - [anon_sym_await] = ACTIONS(4592), - [anon_sym_DOT_DOT] = ACTIONS(4594), - [anon_sym_from] = ACTIONS(4592), - [anon_sym_into] = ACTIONS(4592), - [anon_sym_join] = ACTIONS(4592), - [anon_sym_on] = ACTIONS(4592), - [anon_sym_equals] = ACTIONS(4592), - [anon_sym_let] = ACTIONS(4592), - [anon_sym_orderby] = ACTIONS(4592), - [anon_sym_ascending] = ACTIONS(4592), - [anon_sym_descending] = ACTIONS(4592), - [anon_sym_group] = ACTIONS(4592), - [anon_sym_by] = ACTIONS(4592), - [anon_sym_select] = ACTIONS(4592), - [anon_sym_stackalloc] = ACTIONS(4592), - [anon_sym_sizeof] = ACTIONS(4592), - [anon_sym_typeof] = ACTIONS(4592), - [anon_sym___makeref] = ACTIONS(4592), - [anon_sym___reftype] = ACTIONS(4592), - [anon_sym___refvalue] = ACTIONS(4592), - [sym_null_literal] = ACTIONS(4592), - [anon_sym_SQUOTE] = ACTIONS(4594), - [sym_integer_literal] = ACTIONS(4592), - [sym_real_literal] = ACTIONS(4594), - [anon_sym_DQUOTE] = ACTIONS(4594), - [sym_verbatim_string_literal] = ACTIONS(4594), - [sym_grit_metavariable] = ACTIONS(4594), - [aux_sym_preproc_if_token1] = ACTIONS(4594), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4224), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4210), + [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4210), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4224), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4224), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4224), + [anon_sym_orderby] = ACTIONS(4224), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4224), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443245,10 +443271,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_regular_start] = ACTIONS(4594), - [sym_interpolation_verbatim_start] = ACTIONS(4594), - [sym_interpolation_raw_start] = ACTIONS(4594), - [sym_raw_string_start] = ACTIONS(4594), }, [2533] = { [sym_preproc_region] = STATE(2533), @@ -443260,254 +443282,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2533), [sym_preproc_define] = STATE(2533), [sym_preproc_undef] = STATE(2533), - [sym__identifier_token] = ACTIONS(4596), - [anon_sym_alias] = ACTIONS(4596), - [anon_sym_global] = ACTIONS(4596), - [anon_sym_static] = ACTIONS(4596), - [anon_sym_LBRACK] = ACTIONS(4598), - [anon_sym_LPAREN] = ACTIONS(4598), - [anon_sym_ref] = ACTIONS(4596), - [anon_sym_LBRACE] = ACTIONS(4598), - [anon_sym_delegate] = ACTIONS(4596), - [anon_sym_async] = ACTIONS(4596), - [anon_sym_file] = ACTIONS(4596), - [anon_sym_new] = ACTIONS(4596), - [anon_sym_where] = ACTIONS(4596), - [anon_sym_notnull] = ACTIONS(4596), - [anon_sym_unmanaged] = ACTIONS(4596), - [anon_sym_checked] = ACTIONS(4596), - [anon_sym_BANG] = ACTIONS(4598), - [anon_sym_TILDE] = ACTIONS(4598), - [anon_sym_PLUS_PLUS] = ACTIONS(4598), - [anon_sym_DASH_DASH] = ACTIONS(4598), - [anon_sym_true] = ACTIONS(4596), - [anon_sym_false] = ACTIONS(4596), - [anon_sym_PLUS] = ACTIONS(4596), - [anon_sym_DASH] = ACTIONS(4596), - [anon_sym_STAR] = ACTIONS(4598), - [anon_sym_CARET] = ACTIONS(4598), - [anon_sym_AMP] = ACTIONS(4598), - [anon_sym_this] = ACTIONS(4596), - [anon_sym_scoped] = ACTIONS(4596), - [anon_sym_base] = ACTIONS(4596), - [anon_sym_var] = ACTIONS(4596), - [sym_predefined_type] = ACTIONS(4596), - [anon_sym_unchecked] = ACTIONS(4596), - [anon_sym_yield] = ACTIONS(4596), - [anon_sym_default] = ACTIONS(4596), - [anon_sym_throw] = ACTIONS(4596), - [anon_sym_when] = ACTIONS(4596), - [anon_sym_await] = ACTIONS(4596), - [anon_sym_DOT_DOT] = ACTIONS(4598), - [anon_sym_from] = ACTIONS(4596), - [anon_sym_into] = ACTIONS(4596), - [anon_sym_join] = ACTIONS(4596), - [anon_sym_on] = ACTIONS(4596), - [anon_sym_equals] = ACTIONS(4596), - [anon_sym_let] = ACTIONS(4596), - [anon_sym_orderby] = ACTIONS(4596), - [anon_sym_ascending] = ACTIONS(4596), - [anon_sym_descending] = ACTIONS(4596), - [anon_sym_group] = ACTIONS(4596), - [anon_sym_by] = ACTIONS(4596), - [anon_sym_select] = ACTIONS(4596), - [anon_sym_stackalloc] = ACTIONS(4596), - [anon_sym_sizeof] = ACTIONS(4596), - [anon_sym_typeof] = ACTIONS(4596), - [anon_sym___makeref] = ACTIONS(4596), - [anon_sym___reftype] = ACTIONS(4596), - [anon_sym___refvalue] = ACTIONS(4596), - [sym_null_literal] = ACTIONS(4596), - [anon_sym_SQUOTE] = ACTIONS(4598), - [sym_integer_literal] = ACTIONS(4596), - [sym_real_literal] = ACTIONS(4598), - [anon_sym_DQUOTE] = ACTIONS(4598), - [sym_verbatim_string_literal] = ACTIONS(4598), - [sym_grit_metavariable] = ACTIONS(4598), - [aux_sym_preproc_if_token1] = ACTIONS(4598), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4598), - [sym_interpolation_verbatim_start] = ACTIONS(4598), - [sym_interpolation_raw_start] = ACTIONS(4598), - [sym_raw_string_start] = ACTIONS(4598), - }, - [2534] = { - [sym_preproc_region] = STATE(2534), - [sym_preproc_endregion] = STATE(2534), - [sym_preproc_line] = STATE(2534), - [sym_preproc_pragma] = STATE(2534), - [sym_preproc_nullable] = STATE(2534), - [sym_preproc_error] = STATE(2534), - [sym_preproc_warning] = STATE(2534), - [sym_preproc_define] = STATE(2534), - [sym_preproc_undef] = STATE(2534), - [sym__identifier_token] = ACTIONS(4600), - [anon_sym_alias] = ACTIONS(4600), - [anon_sym_global] = ACTIONS(4600), - [anon_sym_static] = ACTIONS(4600), - [anon_sym_LBRACK] = ACTIONS(4602), - [anon_sym_LPAREN] = ACTIONS(4602), - [anon_sym_ref] = ACTIONS(4600), - [anon_sym_LBRACE] = ACTIONS(4602), - [anon_sym_delegate] = ACTIONS(4600), - [anon_sym_async] = ACTIONS(4600), - [anon_sym_file] = ACTIONS(4600), - [anon_sym_new] = ACTIONS(4600), - [anon_sym_where] = ACTIONS(4600), - [anon_sym_notnull] = ACTIONS(4600), - [anon_sym_unmanaged] = ACTIONS(4600), - [anon_sym_checked] = ACTIONS(4600), - [anon_sym_BANG] = ACTIONS(4602), - [anon_sym_TILDE] = ACTIONS(4602), - [anon_sym_PLUS_PLUS] = ACTIONS(4602), - [anon_sym_DASH_DASH] = ACTIONS(4602), - [anon_sym_true] = ACTIONS(4600), - [anon_sym_false] = ACTIONS(4600), - [anon_sym_PLUS] = ACTIONS(4600), - [anon_sym_DASH] = ACTIONS(4600), - [anon_sym_STAR] = ACTIONS(4602), - [anon_sym_CARET] = ACTIONS(4602), - [anon_sym_AMP] = ACTIONS(4602), - [anon_sym_this] = ACTIONS(4600), - [anon_sym_scoped] = ACTIONS(4600), - [anon_sym_base] = ACTIONS(4600), - [anon_sym_var] = ACTIONS(4600), - [sym_predefined_type] = ACTIONS(4600), - [anon_sym_unchecked] = ACTIONS(4600), - [anon_sym_yield] = ACTIONS(4600), - [anon_sym_default] = ACTIONS(4600), - [anon_sym_throw] = ACTIONS(4600), - [anon_sym_when] = ACTIONS(4600), - [anon_sym_await] = ACTIONS(4600), - [anon_sym_DOT_DOT] = ACTIONS(4602), - [anon_sym_from] = ACTIONS(4600), - [anon_sym_into] = ACTIONS(4600), - [anon_sym_join] = ACTIONS(4600), - [anon_sym_on] = ACTIONS(4600), - [anon_sym_equals] = ACTIONS(4600), - [anon_sym_let] = ACTIONS(4600), - [anon_sym_orderby] = ACTIONS(4600), - [anon_sym_ascending] = ACTIONS(4600), - [anon_sym_descending] = ACTIONS(4600), - [anon_sym_group] = ACTIONS(4600), - [anon_sym_by] = ACTIONS(4600), - [anon_sym_select] = ACTIONS(4600), - [anon_sym_stackalloc] = ACTIONS(4600), - [anon_sym_sizeof] = ACTIONS(4600), - [anon_sym_typeof] = ACTIONS(4600), - [anon_sym___makeref] = ACTIONS(4600), - [anon_sym___reftype] = ACTIONS(4600), - [anon_sym___refvalue] = ACTIONS(4600), - [sym_null_literal] = ACTIONS(4600), - [anon_sym_SQUOTE] = ACTIONS(4602), - [sym_integer_literal] = ACTIONS(4600), - [sym_real_literal] = ACTIONS(4602), - [anon_sym_DQUOTE] = ACTIONS(4602), - [sym_verbatim_string_literal] = ACTIONS(4602), - [sym_grit_metavariable] = ACTIONS(4602), - [aux_sym_preproc_if_token1] = ACTIONS(4602), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4602), - [sym_interpolation_verbatim_start] = ACTIONS(4602), - [sym_interpolation_raw_start] = ACTIONS(4602), - [sym_raw_string_start] = ACTIONS(4602), - }, - [2535] = { - [sym_property_pattern_clause] = STATE(2660), - [sym__variable_designation] = STATE(5673), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym_identifier] = STATE(5708), - [sym__reserved_identifier] = STATE(5570), - [sym_preproc_region] = STATE(2535), - [sym_preproc_endregion] = STATE(2535), - [sym_preproc_line] = STATE(2535), - [sym_preproc_pragma] = STATE(2535), - [sym_preproc_nullable] = STATE(2535), - [sym_preproc_error] = STATE(2535), - [sym_preproc_warning] = STATE(2535), - [sym_preproc_define] = STATE(2535), - [sym_preproc_undef] = STATE(2535), - [sym__identifier_token] = ACTIONS(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), + [sym__identifier_token] = ACTIONS(4586), + [anon_sym_alias] = ACTIONS(4586), + [anon_sym_global] = ACTIONS(4586), + [anon_sym_static] = ACTIONS(4586), + [anon_sym_LBRACK] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_ref] = ACTIONS(4586), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_delegate] = ACTIONS(4586), + [anon_sym_async] = ACTIONS(4586), + [anon_sym_file] = ACTIONS(4586), + [anon_sym_new] = ACTIONS(4586), + [anon_sym_where] = ACTIONS(4586), + [anon_sym_notnull] = ACTIONS(4586), + [anon_sym_unmanaged] = ACTIONS(4586), + [anon_sym_checked] = ACTIONS(4586), + [anon_sym_TILDE] = ACTIONS(4588), + [anon_sym_this] = ACTIONS(4586), + [anon_sym_scoped] = ACTIONS(4586), + [anon_sym_base] = ACTIONS(4586), + [anon_sym_var] = ACTIONS(4586), + [anon_sym_STAR] = ACTIONS(4588), + [sym_predefined_type] = ACTIONS(4586), + [anon_sym_unchecked] = ACTIONS(4586), + [anon_sym_yield] = ACTIONS(4586), + [anon_sym_default] = ACTIONS(4586), + [anon_sym_throw] = ACTIONS(4586), + [anon_sym_when] = ACTIONS(4586), + [anon_sym_await] = ACTIONS(4586), + [anon_sym_DOT_DOT] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4588), + [anon_sym_CARET] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4586), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_BANG] = ACTIONS(4588), + [anon_sym_PLUS_PLUS] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4588), + [anon_sym_true] = ACTIONS(4586), + [anon_sym_false] = ACTIONS(4586), + [anon_sym_from] = ACTIONS(4586), + [anon_sym_into] = ACTIONS(4586), + [anon_sym_join] = ACTIONS(4586), + [anon_sym_on] = ACTIONS(4586), + [anon_sym_equals] = ACTIONS(4586), + [anon_sym_let] = ACTIONS(4586), + [anon_sym_orderby] = ACTIONS(4586), + [anon_sym_ascending] = ACTIONS(4586), + [anon_sym_descending] = ACTIONS(4586), + [anon_sym_group] = ACTIONS(4586), + [anon_sym_by] = ACTIONS(4586), + [anon_sym_select] = ACTIONS(4586), + [anon_sym_stackalloc] = ACTIONS(4586), + [anon_sym_sizeof] = ACTIONS(4586), + [anon_sym_typeof] = ACTIONS(4586), + [anon_sym___makeref] = ACTIONS(4586), + [anon_sym___reftype] = ACTIONS(4586), + [anon_sym___refvalue] = ACTIONS(4586), + [sym_null_literal] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4588), + [sym_integer_literal] = ACTIONS(4586), + [sym_real_literal] = ACTIONS(4588), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym_verbatim_string_literal] = ACTIONS(4588), + [sym_grit_metavariable] = ACTIONS(4588), + [aux_sym_preproc_if_token1] = ACTIONS(4588), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(4588), + [sym_interpolation_verbatim_start] = ACTIONS(4588), + [sym_interpolation_raw_start] = ACTIONS(4588), + [sym_raw_string_start] = ACTIONS(4588), + }, + [2534] = { + [sym_property_pattern_clause] = STATE(2609), + [sym__variable_designation] = STATE(5754), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym_identifier] = STATE(5790), + [sym__reserved_identifier] = STATE(5562), + [sym_preproc_region] = STATE(2534), + [sym_preproc_endregion] = STATE(2534), + [sym_preproc_line] = STATE(2534), + [sym_preproc_pragma] = STATE(2534), + [sym_preproc_nullable] = STATE(2534), + [sym_preproc_error] = STATE(2534), + [sym_preproc_warning] = STATE(2534), + [sym_preproc_define] = STATE(2534), + [sym_preproc_undef] = STATE(2534), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), [anon_sym_LBRACK] = ACTIONS(4250), [anon_sym_COLON] = ACTIONS(4250), [anon_sym_COMMA] = ACTIONS(4250), [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_file] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_file] = ACTIONS(4415), [anon_sym_LT] = ACTIONS(4252), [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4397), + [anon_sym_where] = ACTIONS(4415), [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4415), [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), [anon_sym_and] = ACTIONS(4252), [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), [anon_sym_AMP_AMP] = ACTIONS(4250), [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), [sym_op_coalescing] = ACTIONS(4250), - [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), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4415), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), [anon_sym_as] = ACTIONS(4252), [anon_sym_is] = ACTIONS(4252), [anon_sym_DASH_GT] = ACTIONS(4250), [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4403), + [sym_grit_metavariable] = ACTIONS(4421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443520,16 +443452,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(4250), }, + [2535] = { + [sym__name] = STATE(3347), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_ref_type] = STATE(3311), + [sym__scoped_base_type] = STATE(3250), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), + [sym_preproc_region] = STATE(2535), + [sym_preproc_endregion] = STATE(2535), + [sym_preproc_line] = STATE(2535), + [sym_preproc_pragma] = STATE(2535), + [sym_preproc_nullable] = STATE(2535), + [sym_preproc_error] = STATE(2535), + [sym_preproc_warning] = STATE(2535), + [sym_preproc_define] = STATE(2535), + [sym_preproc_undef] = STATE(2535), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4590), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4498), + [anon_sym_select] = ACTIONS(4210), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4214), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2536] = { - [sym__name] = STATE(4285), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_ref_type] = STATE(3809), - [sym__scoped_base_type] = STATE(3808), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(2536), [sym_preproc_endregion] = STATE(2536), [sym_preproc_line] = STATE(2536), @@ -443539,66 +443552,71 @@ 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), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4604), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4513), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(4592), + [anon_sym_alias] = ACTIONS(4592), + [anon_sym_global] = ACTIONS(4592), + [anon_sym_static] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4594), + [anon_sym_LPAREN] = ACTIONS(4594), + [anon_sym_ref] = ACTIONS(4592), + [anon_sym_LBRACE] = ACTIONS(4594), + [anon_sym_delegate] = ACTIONS(4592), + [anon_sym_async] = ACTIONS(4592), + [anon_sym_file] = ACTIONS(4592), + [anon_sym_new] = ACTIONS(4592), + [anon_sym_where] = ACTIONS(4592), + [anon_sym_notnull] = ACTIONS(4592), + [anon_sym_unmanaged] = ACTIONS(4592), + [anon_sym_checked] = ACTIONS(4592), + [anon_sym_TILDE] = ACTIONS(4594), + [anon_sym_this] = ACTIONS(4592), + [anon_sym_scoped] = ACTIONS(4592), + [anon_sym_base] = ACTIONS(4592), + [anon_sym_var] = ACTIONS(4592), + [anon_sym_STAR] = ACTIONS(4594), + [sym_predefined_type] = ACTIONS(4592), + [anon_sym_unchecked] = ACTIONS(4592), + [anon_sym_yield] = ACTIONS(4592), + [anon_sym_default] = ACTIONS(4592), + [anon_sym_throw] = ACTIONS(4592), + [anon_sym_when] = ACTIONS(4592), + [anon_sym_await] = ACTIONS(4592), + [anon_sym_DOT_DOT] = ACTIONS(4594), + [anon_sym_AMP] = ACTIONS(4594), + [anon_sym_CARET] = ACTIONS(4594), + [anon_sym_PLUS] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4592), + [anon_sym_BANG] = ACTIONS(4594), + [anon_sym_PLUS_PLUS] = ACTIONS(4594), + [anon_sym_DASH_DASH] = ACTIONS(4594), + [anon_sym_true] = ACTIONS(4592), + [anon_sym_false] = ACTIONS(4592), + [anon_sym_from] = ACTIONS(4592), + [anon_sym_into] = ACTIONS(4592), + [anon_sym_join] = ACTIONS(4592), + [anon_sym_on] = ACTIONS(4592), + [anon_sym_equals] = ACTIONS(4592), + [anon_sym_let] = ACTIONS(4592), + [anon_sym_orderby] = ACTIONS(4592), + [anon_sym_ascending] = ACTIONS(4592), + [anon_sym_descending] = ACTIONS(4592), + [anon_sym_group] = ACTIONS(4592), + [anon_sym_by] = ACTIONS(4592), + [anon_sym_select] = ACTIONS(4592), + [anon_sym_stackalloc] = ACTIONS(4592), + [anon_sym_sizeof] = ACTIONS(4592), + [anon_sym_typeof] = ACTIONS(4592), + [anon_sym___makeref] = ACTIONS(4592), + [anon_sym___reftype] = ACTIONS(4592), + [anon_sym___refvalue] = ACTIONS(4592), + [sym_null_literal] = ACTIONS(4592), + [anon_sym_SQUOTE] = ACTIONS(4594), + [sym_integer_literal] = ACTIONS(4592), + [sym_real_literal] = ACTIONS(4594), + [anon_sym_DQUOTE] = ACTIONS(4594), + [sym_verbatim_string_literal] = ACTIONS(4594), + [sym_grit_metavariable] = ACTIONS(4594), + [aux_sym_preproc_if_token1] = ACTIONS(4594), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443609,16 +443627,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(4594), + [sym_interpolation_verbatim_start] = ACTIONS(4594), + [sym_interpolation_raw_start] = ACTIONS(4594), + [sym_raw_string_start] = ACTIONS(4594), }, [2537] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2691), - [sym_property_pattern_clause] = STATE(2901), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4841), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2648), + [sym_property_pattern_clause] = STATE(2912), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4070), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2537), [sym_preproc_endregion] = STATE(2537), [sym_preproc_line] = STATE(2537), @@ -443628,67 +443650,67 @@ 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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4216), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4216), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4224), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443701,14 +443723,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2538] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2680), - [sym_property_pattern_clause] = STATE(2860), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2633), + [sym_property_pattern_clause] = STATE(2782), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2538), [sym_preproc_endregion] = STATE(2538), [sym_preproc_line] = STATE(2538), @@ -443718,67 +443740,67 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), [anon_sym_LT] = ACTIONS(4224), [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4218), [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4218), [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4224), - [anon_sym_select] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4224), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), [anon_sym_as] = ACTIONS(4224), [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443791,6 +443813,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2539] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2638), + [sym_property_pattern_clause] = STATE(2772), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2539), [sym_preproc_endregion] = STATE(2539), [sym_preproc_line] = STATE(2539), @@ -443800,87 +443830,88 @@ 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), - [sym__identifier_token] = ACTIONS(4606), - [anon_sym_alias] = ACTIONS(4606), - [anon_sym_global] = ACTIONS(4606), - [anon_sym_static] = ACTIONS(4606), - [anon_sym_LBRACK] = ACTIONS(4608), - [anon_sym_LPAREN] = ACTIONS(4608), - [anon_sym_ref] = ACTIONS(4606), - [anon_sym_LBRACE] = ACTIONS(4608), - [anon_sym_delegate] = ACTIONS(4606), - [anon_sym_async] = ACTIONS(4606), - [anon_sym_file] = ACTIONS(4606), - [anon_sym_new] = ACTIONS(4606), - [anon_sym_where] = ACTIONS(4606), - [anon_sym_notnull] = ACTIONS(4606), - [anon_sym_unmanaged] = ACTIONS(4606), - [anon_sym_checked] = ACTIONS(4606), - [anon_sym_BANG] = ACTIONS(4608), - [anon_sym_TILDE] = ACTIONS(4608), - [anon_sym_PLUS_PLUS] = ACTIONS(4608), - [anon_sym_DASH_DASH] = ACTIONS(4608), - [anon_sym_true] = ACTIONS(4606), - [anon_sym_false] = ACTIONS(4606), - [anon_sym_PLUS] = ACTIONS(4606), - [anon_sym_DASH] = ACTIONS(4606), - [anon_sym_STAR] = ACTIONS(4608), - [anon_sym_CARET] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4608), - [anon_sym_this] = ACTIONS(4606), - [anon_sym_scoped] = ACTIONS(4606), - [anon_sym_base] = ACTIONS(4606), - [anon_sym_var] = ACTIONS(4606), - [sym_predefined_type] = ACTIONS(4606), - [anon_sym_unchecked] = ACTIONS(4606), - [anon_sym_yield] = ACTIONS(4606), - [anon_sym_default] = ACTIONS(4606), - [anon_sym_throw] = ACTIONS(4606), - [anon_sym_when] = ACTIONS(4606), - [anon_sym_await] = ACTIONS(4606), - [anon_sym_DOT_DOT] = ACTIONS(4608), - [anon_sym_from] = ACTIONS(4606), - [anon_sym_into] = ACTIONS(4606), - [anon_sym_join] = ACTIONS(4606), - [anon_sym_on] = ACTIONS(4606), - [anon_sym_equals] = ACTIONS(4606), - [anon_sym_let] = ACTIONS(4606), - [anon_sym_orderby] = ACTIONS(4606), - [anon_sym_ascending] = ACTIONS(4606), - [anon_sym_descending] = ACTIONS(4606), - [anon_sym_group] = ACTIONS(4606), - [anon_sym_by] = ACTIONS(4606), - [anon_sym_select] = ACTIONS(4606), - [anon_sym_stackalloc] = ACTIONS(4606), - [anon_sym_sizeof] = ACTIONS(4606), - [anon_sym_typeof] = ACTIONS(4606), - [anon_sym___makeref] = ACTIONS(4606), - [anon_sym___reftype] = ACTIONS(4606), - [anon_sym___refvalue] = ACTIONS(4606), - [sym_null_literal] = ACTIONS(4606), - [anon_sym_SQUOTE] = ACTIONS(4608), - [sym_integer_literal] = ACTIONS(4606), - [sym_real_literal] = ACTIONS(4608), - [anon_sym_DQUOTE] = ACTIONS(4608), - [sym_verbatim_string_literal] = ACTIONS(4608), - [sym_grit_metavariable] = ACTIONS(4608), - [aux_sym_preproc_if_token1] = ACTIONS(4608), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4608), - [sym_interpolation_verbatim_start] = ACTIONS(4608), - [sym_interpolation_raw_start] = ACTIONS(4608), - [sym_raw_string_start] = ACTIONS(4608), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4228), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2540] = { + [sym__name] = STATE(5023), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_ref_type] = STATE(3179), + [sym__scoped_base_type] = STATE(3178), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2540), [sym_preproc_endregion] = STATE(2540), [sym_preproc_line] = STATE(2540), @@ -443890,95 +443921,86 @@ 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(4610), - [anon_sym_alias] = ACTIONS(4610), - [anon_sym_global] = ACTIONS(4610), - [anon_sym_static] = ACTIONS(4610), - [anon_sym_LBRACK] = ACTIONS(4612), - [anon_sym_LPAREN] = ACTIONS(4612), - [anon_sym_ref] = ACTIONS(4610), - [anon_sym_LBRACE] = ACTIONS(4612), - [anon_sym_delegate] = ACTIONS(4610), - [anon_sym_async] = ACTIONS(4610), - [anon_sym_file] = ACTIONS(4610), - [anon_sym_new] = ACTIONS(4610), - [anon_sym_where] = ACTIONS(4610), - [anon_sym_notnull] = ACTIONS(4610), - [anon_sym_unmanaged] = ACTIONS(4610), - [anon_sym_checked] = ACTIONS(4610), - [anon_sym_BANG] = ACTIONS(4612), - [anon_sym_TILDE] = ACTIONS(4612), - [anon_sym_PLUS_PLUS] = ACTIONS(4612), - [anon_sym_DASH_DASH] = ACTIONS(4612), - [anon_sym_true] = ACTIONS(4610), - [anon_sym_false] = ACTIONS(4610), - [anon_sym_PLUS] = ACTIONS(4610), - [anon_sym_DASH] = ACTIONS(4610), - [anon_sym_STAR] = ACTIONS(4612), - [anon_sym_CARET] = ACTIONS(4612), - [anon_sym_AMP] = ACTIONS(4612), - [anon_sym_this] = ACTIONS(4610), - [anon_sym_scoped] = ACTIONS(4610), - [anon_sym_base] = ACTIONS(4610), - [anon_sym_var] = ACTIONS(4610), - [sym_predefined_type] = ACTIONS(4610), - [anon_sym_unchecked] = ACTIONS(4610), - [anon_sym_yield] = ACTIONS(4610), - [anon_sym_default] = ACTIONS(4610), - [anon_sym_throw] = ACTIONS(4610), - [anon_sym_when] = ACTIONS(4610), - [anon_sym_await] = ACTIONS(4610), - [anon_sym_DOT_DOT] = ACTIONS(4612), - [anon_sym_from] = ACTIONS(4610), - [anon_sym_into] = ACTIONS(4610), - [anon_sym_join] = ACTIONS(4610), - [anon_sym_on] = ACTIONS(4610), - [anon_sym_equals] = ACTIONS(4610), - [anon_sym_let] = ACTIONS(4610), - [anon_sym_orderby] = ACTIONS(4610), - [anon_sym_ascending] = ACTIONS(4610), - [anon_sym_descending] = ACTIONS(4610), - [anon_sym_group] = ACTIONS(4610), - [anon_sym_by] = ACTIONS(4610), - [anon_sym_select] = ACTIONS(4610), - [anon_sym_stackalloc] = ACTIONS(4610), - [anon_sym_sizeof] = ACTIONS(4610), - [anon_sym_typeof] = ACTIONS(4610), - [anon_sym___makeref] = ACTIONS(4610), - [anon_sym___reftype] = ACTIONS(4610), - [anon_sym___refvalue] = ACTIONS(4610), - [sym_null_literal] = ACTIONS(4610), - [anon_sym_SQUOTE] = ACTIONS(4612), - [sym_integer_literal] = ACTIONS(4610), - [sym_real_literal] = ACTIONS(4612), - [anon_sym_DQUOTE] = ACTIONS(4612), - [sym_verbatim_string_literal] = ACTIONS(4612), - [sym_grit_metavariable] = ACTIONS(4612), - [aux_sym_preproc_if_token1] = ACTIONS(4612), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4612), - [sym_interpolation_verbatim_start] = ACTIONS(4612), - [sym_interpolation_raw_start] = ACTIONS(4612), - [sym_raw_string_start] = ACTIONS(4612), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4188), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4188), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4188), + [anon_sym_into] = ACTIONS(4192), + [anon_sym_join] = ACTIONS(4188), + [anon_sym_on] = ACTIONS(4192), + [anon_sym_equals] = 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_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4195), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2541] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2682), - [sym_property_pattern_clause] = STATE(2894), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4841), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2650), + [sym_property_pattern_clause] = STATE(2836), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4070), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2541), [sym_preproc_endregion] = STATE(2541), [sym_preproc_line] = STATE(2541), @@ -443988,67 +444010,67 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4216), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4216), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4224), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444061,14 +444083,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2542] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2685), - [sym_property_pattern_clause] = STATE(2845), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2542), [sym_preproc_endregion] = STATE(2542), [sym_preproc_line] = STATE(2542), @@ -444078,84 +444092,95 @@ 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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4224), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(4598), + [anon_sym_alias] = ACTIONS(4598), + [anon_sym_global] = ACTIONS(4598), + [anon_sym_static] = ACTIONS(4598), + [anon_sym_LBRACK] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_ref] = ACTIONS(4598), + [anon_sym_LBRACE] = ACTIONS(4600), + [anon_sym_delegate] = ACTIONS(4598), + [anon_sym_async] = ACTIONS(4598), + [anon_sym_file] = ACTIONS(4598), + [anon_sym_new] = ACTIONS(4598), + [anon_sym_where] = ACTIONS(4598), + [anon_sym_notnull] = ACTIONS(4598), + [anon_sym_unmanaged] = ACTIONS(4598), + [anon_sym_checked] = ACTIONS(4598), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_this] = ACTIONS(4598), + [anon_sym_scoped] = ACTIONS(4598), + [anon_sym_base] = ACTIONS(4598), + [anon_sym_var] = ACTIONS(4598), + [anon_sym_STAR] = ACTIONS(4600), + [sym_predefined_type] = ACTIONS(4598), + [anon_sym_unchecked] = ACTIONS(4598), + [anon_sym_yield] = ACTIONS(4598), + [anon_sym_default] = ACTIONS(4598), + [anon_sym_throw] = ACTIONS(4598), + [anon_sym_when] = ACTIONS(4598), + [anon_sym_await] = ACTIONS(4598), + [anon_sym_DOT_DOT] = ACTIONS(4600), + [anon_sym_AMP] = ACTIONS(4600), + [anon_sym_CARET] = ACTIONS(4600), + [anon_sym_PLUS] = ACTIONS(4598), + [anon_sym_DASH] = ACTIONS(4598), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_PLUS_PLUS] = ACTIONS(4600), + [anon_sym_DASH_DASH] = ACTIONS(4600), + [anon_sym_true] = ACTIONS(4598), + [anon_sym_false] = ACTIONS(4598), + [anon_sym_from] = ACTIONS(4598), + [anon_sym_into] = ACTIONS(4598), + [anon_sym_join] = ACTIONS(4598), + [anon_sym_on] = ACTIONS(4598), + [anon_sym_equals] = ACTIONS(4598), + [anon_sym_let] = ACTIONS(4598), + [anon_sym_orderby] = ACTIONS(4598), + [anon_sym_ascending] = ACTIONS(4598), + [anon_sym_descending] = ACTIONS(4598), + [anon_sym_group] = ACTIONS(4598), + [anon_sym_by] = ACTIONS(4598), + [anon_sym_select] = ACTIONS(4598), + [anon_sym_stackalloc] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(4598), + [anon_sym_typeof] = ACTIONS(4598), + [anon_sym___makeref] = ACTIONS(4598), + [anon_sym___reftype] = ACTIONS(4598), + [anon_sym___refvalue] = ACTIONS(4598), + [sym_null_literal] = ACTIONS(4598), + [anon_sym_SQUOTE] = ACTIONS(4600), + [sym_integer_literal] = ACTIONS(4598), + [sym_real_literal] = ACTIONS(4600), + [anon_sym_DQUOTE] = ACTIONS(4600), + [sym_verbatim_string_literal] = ACTIONS(4600), + [sym_grit_metavariable] = ACTIONS(4600), + [aux_sym_preproc_if_token1] = ACTIONS(4600), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(4600), + [sym_interpolation_verbatim_start] = ACTIONS(4600), + [sym_interpolation_raw_start] = ACTIONS(4600), + [sym_raw_string_start] = ACTIONS(4600), }, [2543] = { - [sym_property_pattern_clause] = STATE(2663), - [sym__variable_designation] = STATE(5698), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym_identifier] = STATE(5708), - [sym__reserved_identifier] = STATE(5570), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2628), + [sym_property_pattern_clause] = STATE(2855), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2543), [sym_preproc_endregion] = STATE(2543), [sym_preproc_line] = STATE(2543), @@ -444165,69 +444190,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2543), [sym_preproc_define] = STATE(2543), [sym_preproc_undef] = STATE(2543), - [sym__identifier_token] = ACTIONS(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COLON] = ACTIONS(4242), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [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), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4403), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4224), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444238,9 +444261,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(4242), }, [2544] = { + [sym__name] = STATE(5023), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_ref_type] = STATE(3179), + [sym__scoped_base_type] = STATE(3178), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2544), [sym_preproc_endregion] = STATE(2544), [sym_preproc_line] = STATE(2544), @@ -444250,75 +444281,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(4538), - [anon_sym_EQ] = ACTIONS(4540), - [anon_sym_LBRACK] = ACTIONS(4538), - [anon_sym_COLON] = ACTIONS(4538), - [anon_sym_COMMA] = ACTIONS(4538), - [anon_sym_RBRACK] = ACTIONS(4538), - [anon_sym_LPAREN] = ACTIONS(4538), - [anon_sym_RPAREN] = ACTIONS(4538), - [anon_sym_RBRACE] = ACTIONS(4538), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_in] = ACTIONS(4538), - [anon_sym_where] = ACTIONS(4538), - [anon_sym_QMARK] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4540), - [anon_sym_PLUS_PLUS] = ACTIONS(4538), - [anon_sym_DASH_DASH] = ACTIONS(4538), - [anon_sym_PLUS] = ACTIONS(4540), - [anon_sym_DASH] = ACTIONS(4540), - [anon_sym_STAR] = ACTIONS(4540), - [anon_sym_SLASH] = ACTIONS(4540), - [anon_sym_PERCENT] = ACTIONS(4540), - [anon_sym_CARET] = ACTIONS(4540), - [anon_sym_PIPE] = ACTIONS(4540), - [anon_sym_AMP] = ACTIONS(4540), - [anon_sym_LT_LT] = ACTIONS(4540), - [anon_sym_GT_GT] = ACTIONS(4540), - [anon_sym_GT_GT_GT] = ACTIONS(4540), - [anon_sym_EQ_EQ] = ACTIONS(4538), - [anon_sym_BANG_EQ] = ACTIONS(4538), - [anon_sym_GT_EQ] = ACTIONS(4538), - [anon_sym_LT_EQ] = ACTIONS(4538), - [anon_sym_DOT] = ACTIONS(4540), - [anon_sym_EQ_GT] = ACTIONS(4538), - [anon_sym_switch] = ACTIONS(4538), - [anon_sym_DOT_DOT] = ACTIONS(4538), - [anon_sym_and] = ACTIONS(4538), - [anon_sym_or] = ACTIONS(4540), - [anon_sym_PLUS_EQ] = ACTIONS(4538), - [anon_sym_DASH_EQ] = ACTIONS(4538), - [anon_sym_STAR_EQ] = ACTIONS(4538), - [anon_sym_SLASH_EQ] = ACTIONS(4538), - [anon_sym_PERCENT_EQ] = ACTIONS(4538), - [anon_sym_AMP_EQ] = ACTIONS(4538), - [anon_sym_CARET_EQ] = ACTIONS(4538), - [anon_sym_PIPE_EQ] = ACTIONS(4538), - [anon_sym_LT_LT_EQ] = ACTIONS(4538), - [anon_sym_GT_GT_EQ] = ACTIONS(4538), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), - [anon_sym_AMP_AMP] = ACTIONS(4538), - [anon_sym_PIPE_PIPE] = ACTIONS(4538), - [sym_op_coalescing] = ACTIONS(4540), - [anon_sym_from] = ACTIONS(4538), - [anon_sym_join] = ACTIONS(4538), - [anon_sym_on] = ACTIONS(4538), - [anon_sym_equals] = ACTIONS(4538), - [anon_sym_let] = ACTIONS(4538), - [anon_sym_orderby] = ACTIONS(4538), - [anon_sym_group] = ACTIONS(4538), - [anon_sym_by] = ACTIONS(4538), - [anon_sym_select] = ACTIONS(4538), - [anon_sym_as] = ACTIONS(4538), - [anon_sym_is] = ACTIONS(4538), - [anon_sym_DASH_GT] = ACTIONS(4538), - [anon_sym_with] = ACTIONS(4538), - [aux_sym_preproc_if_token3] = ACTIONS(4538), - [aux_sym_preproc_else_token1] = ACTIONS(4538), - [aux_sym_preproc_elif_token1] = ACTIONS(4538), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4602), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4188), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4188), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4188), + [anon_sym_into] = ACTIONS(4192), + [anon_sym_join] = ACTIONS(4188), + [anon_sym_on] = ACTIONS(4188), + [anon_sym_equals] = ACTIONS(4192), + [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_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444331,14 +444353,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2545] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2676), - [sym_property_pattern_clause] = STATE(2838), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2545), [sym_preproc_endregion] = STATE(2545), [sym_preproc_line] = STATE(2545), @@ -444348,79 +444362,92 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4216), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(4604), + [anon_sym_alias] = ACTIONS(4604), + [anon_sym_global] = ACTIONS(4604), + [anon_sym_static] = ACTIONS(4604), + [anon_sym_LBRACK] = ACTIONS(4606), + [anon_sym_LPAREN] = ACTIONS(4606), + [anon_sym_ref] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_delegate] = ACTIONS(4604), + [anon_sym_async] = ACTIONS(4604), + [anon_sym_file] = ACTIONS(4604), + [anon_sym_new] = ACTIONS(4604), + [anon_sym_where] = ACTIONS(4604), + [anon_sym_notnull] = ACTIONS(4604), + [anon_sym_unmanaged] = ACTIONS(4604), + [anon_sym_checked] = ACTIONS(4604), + [anon_sym_TILDE] = ACTIONS(4606), + [anon_sym_this] = ACTIONS(4604), + [anon_sym_scoped] = ACTIONS(4604), + [anon_sym_base] = ACTIONS(4604), + [anon_sym_var] = ACTIONS(4604), + [anon_sym_STAR] = ACTIONS(4606), + [sym_predefined_type] = ACTIONS(4604), + [anon_sym_unchecked] = ACTIONS(4604), + [anon_sym_yield] = ACTIONS(4604), + [anon_sym_default] = ACTIONS(4604), + [anon_sym_throw] = ACTIONS(4604), + [anon_sym_when] = ACTIONS(4604), + [anon_sym_await] = ACTIONS(4604), + [anon_sym_DOT_DOT] = ACTIONS(4606), + [anon_sym_AMP] = ACTIONS(4606), + [anon_sym_CARET] = ACTIONS(4606), + [anon_sym_PLUS] = ACTIONS(4604), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_BANG] = ACTIONS(4606), + [anon_sym_PLUS_PLUS] = ACTIONS(4606), + [anon_sym_DASH_DASH] = ACTIONS(4606), + [anon_sym_true] = ACTIONS(4604), + [anon_sym_false] = ACTIONS(4604), + [anon_sym_from] = ACTIONS(4604), + [anon_sym_into] = ACTIONS(4604), + [anon_sym_join] = ACTIONS(4604), + [anon_sym_on] = ACTIONS(4604), + [anon_sym_equals] = ACTIONS(4604), + [anon_sym_let] = ACTIONS(4604), + [anon_sym_orderby] = ACTIONS(4604), + [anon_sym_ascending] = ACTIONS(4604), + [anon_sym_descending] = ACTIONS(4604), + [anon_sym_group] = ACTIONS(4604), + [anon_sym_by] = ACTIONS(4604), + [anon_sym_select] = ACTIONS(4604), + [anon_sym_stackalloc] = ACTIONS(4604), + [anon_sym_sizeof] = ACTIONS(4604), + [anon_sym_typeof] = ACTIONS(4604), + [anon_sym___makeref] = ACTIONS(4604), + [anon_sym___reftype] = ACTIONS(4604), + [anon_sym___refvalue] = ACTIONS(4604), + [sym_null_literal] = ACTIONS(4604), + [anon_sym_SQUOTE] = ACTIONS(4606), + [sym_integer_literal] = ACTIONS(4604), + [sym_real_literal] = ACTIONS(4606), + [anon_sym_DQUOTE] = ACTIONS(4606), + [sym_verbatim_string_literal] = ACTIONS(4606), + [sym_grit_metavariable] = ACTIONS(4606), + [aux_sym_preproc_if_token1] = ACTIONS(4606), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(4606), + [sym_interpolation_verbatim_start] = ACTIONS(4606), + [sym_interpolation_raw_start] = ACTIONS(4606), + [sym_raw_string_start] = ACTIONS(4606), }, [2546] = { + [sym_property_pattern_clause] = STATE(2612), + [sym__variable_designation] = STATE(5713), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym_identifier] = STATE(5790), + [sym__reserved_identifier] = STATE(5562), [sym_preproc_region] = STATE(2546), [sym_preproc_endregion] = STATE(2546), [sym_preproc_line] = STATE(2546), @@ -444430,87 +444457,90 @@ 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(4614), - [anon_sym_alias] = ACTIONS(4614), - [anon_sym_global] = ACTIONS(4614), - [anon_sym_static] = ACTIONS(4614), - [anon_sym_LBRACK] = ACTIONS(4616), - [anon_sym_LPAREN] = ACTIONS(4616), - [anon_sym_ref] = ACTIONS(4614), - [anon_sym_LBRACE] = ACTIONS(4616), - [anon_sym_delegate] = ACTIONS(4614), - [anon_sym_async] = ACTIONS(4614), - [anon_sym_file] = ACTIONS(4614), - [anon_sym_new] = ACTIONS(4614), - [anon_sym_where] = ACTIONS(4614), - [anon_sym_notnull] = ACTIONS(4614), - [anon_sym_unmanaged] = ACTIONS(4614), - [anon_sym_checked] = ACTIONS(4614), - [anon_sym_BANG] = ACTIONS(4616), - [anon_sym_TILDE] = ACTIONS(4616), - [anon_sym_PLUS_PLUS] = ACTIONS(4616), - [anon_sym_DASH_DASH] = ACTIONS(4616), - [anon_sym_true] = ACTIONS(4614), - [anon_sym_false] = ACTIONS(4614), - [anon_sym_PLUS] = ACTIONS(4614), - [anon_sym_DASH] = ACTIONS(4614), - [anon_sym_STAR] = ACTIONS(4616), - [anon_sym_CARET] = ACTIONS(4616), - [anon_sym_AMP] = ACTIONS(4616), - [anon_sym_this] = ACTIONS(4614), - [anon_sym_scoped] = ACTIONS(4614), - [anon_sym_base] = ACTIONS(4614), - [anon_sym_var] = ACTIONS(4614), - [sym_predefined_type] = ACTIONS(4614), - [anon_sym_unchecked] = ACTIONS(4614), - [anon_sym_yield] = ACTIONS(4614), - [anon_sym_default] = ACTIONS(4614), - [anon_sym_throw] = ACTIONS(4614), - [anon_sym_when] = ACTIONS(4614), - [anon_sym_await] = ACTIONS(4614), - [anon_sym_DOT_DOT] = ACTIONS(4616), - [anon_sym_from] = ACTIONS(4614), - [anon_sym_into] = ACTIONS(4614), - [anon_sym_join] = ACTIONS(4614), - [anon_sym_on] = ACTIONS(4614), - [anon_sym_equals] = ACTIONS(4614), - [anon_sym_let] = ACTIONS(4614), - [anon_sym_orderby] = ACTIONS(4614), - [anon_sym_ascending] = ACTIONS(4614), - [anon_sym_descending] = ACTIONS(4614), - [anon_sym_group] = ACTIONS(4614), - [anon_sym_by] = ACTIONS(4614), - [anon_sym_select] = ACTIONS(4614), - [anon_sym_stackalloc] = ACTIONS(4614), - [anon_sym_sizeof] = ACTIONS(4614), - [anon_sym_typeof] = ACTIONS(4614), - [anon_sym___makeref] = ACTIONS(4614), - [anon_sym___reftype] = ACTIONS(4614), - [anon_sym___refvalue] = ACTIONS(4614), - [sym_null_literal] = ACTIONS(4614), - [anon_sym_SQUOTE] = ACTIONS(4616), - [sym_integer_literal] = ACTIONS(4614), - [sym_real_literal] = ACTIONS(4616), - [anon_sym_DQUOTE] = ACTIONS(4616), - [sym_verbatim_string_literal] = ACTIONS(4616), - [sym_grit_metavariable] = ACTIONS(4616), - [aux_sym_preproc_if_token1] = ACTIONS(4616), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4616), - [sym_interpolation_verbatim_start] = ACTIONS(4616), - [sym_interpolation_raw_start] = ACTIONS(4616), - [sym_raw_string_start] = ACTIONS(4616), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COLON] = ACTIONS(4254), + [anon_sym_COMMA] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4421), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4254), }, [2547] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2635), + [sym_property_pattern_clause] = STATE(2861), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4070), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2547), [sym_preproc_endregion] = STATE(2547), [sym_preproc_line] = STATE(2547), @@ -444520,71 +444550,67 @@ 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(4618), - [anon_sym_alias] = ACTIONS(4618), - [anon_sym_global] = ACTIONS(4618), - [anon_sym_static] = ACTIONS(4618), - [anon_sym_LBRACK] = ACTIONS(4620), - [anon_sym_LPAREN] = ACTIONS(4620), - [anon_sym_ref] = ACTIONS(4618), - [anon_sym_LBRACE] = ACTIONS(4620), - [anon_sym_delegate] = ACTIONS(4618), - [anon_sym_async] = ACTIONS(4618), - [anon_sym_file] = ACTIONS(4618), - [anon_sym_new] = ACTIONS(4618), - [anon_sym_where] = ACTIONS(4618), - [anon_sym_notnull] = ACTIONS(4618), - [anon_sym_unmanaged] = ACTIONS(4618), - [anon_sym_checked] = ACTIONS(4618), - [anon_sym_BANG] = ACTIONS(4620), - [anon_sym_TILDE] = ACTIONS(4620), - [anon_sym_PLUS_PLUS] = ACTIONS(4620), - [anon_sym_DASH_DASH] = ACTIONS(4620), - [anon_sym_true] = ACTIONS(4618), - [anon_sym_false] = ACTIONS(4618), - [anon_sym_PLUS] = ACTIONS(4618), - [anon_sym_DASH] = ACTIONS(4618), - [anon_sym_STAR] = ACTIONS(4620), - [anon_sym_CARET] = ACTIONS(4620), - [anon_sym_AMP] = ACTIONS(4620), - [anon_sym_this] = ACTIONS(4618), - [anon_sym_scoped] = ACTIONS(4618), - [anon_sym_base] = ACTIONS(4618), - [anon_sym_var] = ACTIONS(4618), - [sym_predefined_type] = ACTIONS(4618), - [anon_sym_unchecked] = ACTIONS(4618), - [anon_sym_yield] = ACTIONS(4618), - [anon_sym_default] = ACTIONS(4618), - [anon_sym_throw] = ACTIONS(4618), - [anon_sym_when] = ACTIONS(4618), - [anon_sym_await] = ACTIONS(4618), - [anon_sym_DOT_DOT] = ACTIONS(4620), - [anon_sym_from] = ACTIONS(4618), - [anon_sym_into] = ACTIONS(4618), - [anon_sym_join] = ACTIONS(4618), - [anon_sym_on] = ACTIONS(4618), - [anon_sym_equals] = ACTIONS(4618), - [anon_sym_let] = ACTIONS(4618), - [anon_sym_orderby] = ACTIONS(4618), - [anon_sym_ascending] = ACTIONS(4618), - [anon_sym_descending] = ACTIONS(4618), - [anon_sym_group] = ACTIONS(4618), - [anon_sym_by] = ACTIONS(4618), - [anon_sym_select] = ACTIONS(4618), - [anon_sym_stackalloc] = ACTIONS(4618), - [anon_sym_sizeof] = ACTIONS(4618), - [anon_sym_typeof] = ACTIONS(4618), - [anon_sym___makeref] = ACTIONS(4618), - [anon_sym___reftype] = ACTIONS(4618), - [anon_sym___refvalue] = ACTIONS(4618), - [sym_null_literal] = ACTIONS(4618), - [anon_sym_SQUOTE] = ACTIONS(4620), - [sym_integer_literal] = ACTIONS(4618), - [sym_real_literal] = ACTIONS(4620), - [anon_sym_DQUOTE] = ACTIONS(4620), - [sym_verbatim_string_literal] = ACTIONS(4620), - [sym_grit_metavariable] = ACTIONS(4620), - [aux_sym_preproc_if_token1] = ACTIONS(4620), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4228), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4228), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444595,20 +444621,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_regular_start] = ACTIONS(4620), - [sym_interpolation_verbatim_start] = ACTIONS(4620), - [sym_interpolation_raw_start] = ACTIONS(4620), - [sym_raw_string_start] = ACTIONS(4620), }, [2548] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2680), - [sym_property_pattern_clause] = STATE(2860), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2548), [sym_preproc_endregion] = STATE(2548), [sym_preproc_line] = STATE(2548), @@ -444618,79 +444632,95 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4224), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(4608), + [anon_sym_alias] = ACTIONS(4608), + [anon_sym_global] = ACTIONS(4608), + [anon_sym_static] = ACTIONS(4608), + [anon_sym_LBRACK] = ACTIONS(4610), + [anon_sym_LPAREN] = ACTIONS(4610), + [anon_sym_ref] = ACTIONS(4608), + [anon_sym_LBRACE] = ACTIONS(4610), + [anon_sym_delegate] = ACTIONS(4608), + [anon_sym_async] = ACTIONS(4608), + [anon_sym_file] = ACTIONS(4608), + [anon_sym_new] = ACTIONS(4608), + [anon_sym_where] = ACTIONS(4608), + [anon_sym_notnull] = ACTIONS(4608), + [anon_sym_unmanaged] = ACTIONS(4608), + [anon_sym_checked] = ACTIONS(4608), + [anon_sym_TILDE] = ACTIONS(4610), + [anon_sym_this] = ACTIONS(4608), + [anon_sym_scoped] = ACTIONS(4608), + [anon_sym_base] = ACTIONS(4608), + [anon_sym_var] = ACTIONS(4608), + [anon_sym_STAR] = ACTIONS(4610), + [sym_predefined_type] = ACTIONS(4608), + [anon_sym_unchecked] = ACTIONS(4608), + [anon_sym_yield] = ACTIONS(4608), + [anon_sym_default] = ACTIONS(4608), + [anon_sym_throw] = ACTIONS(4608), + [anon_sym_when] = ACTIONS(4608), + [anon_sym_await] = ACTIONS(4608), + [anon_sym_DOT_DOT] = ACTIONS(4610), + [anon_sym_AMP] = ACTIONS(4610), + [anon_sym_CARET] = ACTIONS(4610), + [anon_sym_PLUS] = ACTIONS(4608), + [anon_sym_DASH] = ACTIONS(4608), + [anon_sym_BANG] = ACTIONS(4610), + [anon_sym_PLUS_PLUS] = ACTIONS(4610), + [anon_sym_DASH_DASH] = ACTIONS(4610), + [anon_sym_true] = ACTIONS(4608), + [anon_sym_false] = ACTIONS(4608), + [anon_sym_from] = ACTIONS(4608), + [anon_sym_into] = ACTIONS(4608), + [anon_sym_join] = ACTIONS(4608), + [anon_sym_on] = ACTIONS(4608), + [anon_sym_equals] = ACTIONS(4608), + [anon_sym_let] = ACTIONS(4608), + [anon_sym_orderby] = ACTIONS(4608), + [anon_sym_ascending] = ACTIONS(4608), + [anon_sym_descending] = ACTIONS(4608), + [anon_sym_group] = ACTIONS(4608), + [anon_sym_by] = ACTIONS(4608), + [anon_sym_select] = ACTIONS(4608), + [anon_sym_stackalloc] = ACTIONS(4608), + [anon_sym_sizeof] = ACTIONS(4608), + [anon_sym_typeof] = ACTIONS(4608), + [anon_sym___makeref] = ACTIONS(4608), + [anon_sym___reftype] = ACTIONS(4608), + [anon_sym___refvalue] = ACTIONS(4608), + [sym_null_literal] = ACTIONS(4608), + [anon_sym_SQUOTE] = ACTIONS(4610), + [sym_integer_literal] = ACTIONS(4608), + [sym_real_literal] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(4610), + [sym_verbatim_string_literal] = ACTIONS(4610), + [sym_grit_metavariable] = ACTIONS(4610), + [aux_sym_preproc_if_token1] = ACTIONS(4610), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(4610), + [sym_interpolation_verbatim_start] = ACTIONS(4610), + [sym_interpolation_raw_start] = ACTIONS(4610), + [sym_raw_string_start] = ACTIONS(4610), }, [2549] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2633), + [sym_property_pattern_clause] = STATE(2782), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2549), [sym_preproc_endregion] = STATE(2549), [sym_preproc_line] = STATE(2549), @@ -444700,75 +444730,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2549), [sym_preproc_define] = STATE(2549), [sym_preproc_undef] = STATE(2549), - [anon_sym_SEMI] = ACTIONS(4546), - [anon_sym_EQ] = ACTIONS(4548), - [anon_sym_LBRACK] = ACTIONS(4546), - [anon_sym_COLON] = ACTIONS(4546), - [anon_sym_COMMA] = ACTIONS(4546), - [anon_sym_RBRACK] = ACTIONS(4546), - [anon_sym_LPAREN] = ACTIONS(4546), - [anon_sym_RPAREN] = ACTIONS(4546), - [anon_sym_RBRACE] = ACTIONS(4546), - [anon_sym_LT] = ACTIONS(4548), - [anon_sym_GT] = ACTIONS(4548), - [anon_sym_in] = ACTIONS(4546), - [anon_sym_where] = ACTIONS(4546), - [anon_sym_QMARK] = ACTIONS(4548), - [anon_sym_BANG] = ACTIONS(4548), - [anon_sym_PLUS_PLUS] = ACTIONS(4546), - [anon_sym_DASH_DASH] = ACTIONS(4546), - [anon_sym_PLUS] = ACTIONS(4548), - [anon_sym_DASH] = ACTIONS(4548), - [anon_sym_STAR] = ACTIONS(4548), - [anon_sym_SLASH] = ACTIONS(4548), - [anon_sym_PERCENT] = ACTIONS(4548), - [anon_sym_CARET] = ACTIONS(4548), - [anon_sym_PIPE] = ACTIONS(4548), - [anon_sym_AMP] = ACTIONS(4548), - [anon_sym_LT_LT] = ACTIONS(4548), - [anon_sym_GT_GT] = ACTIONS(4548), - [anon_sym_GT_GT_GT] = ACTIONS(4548), - [anon_sym_EQ_EQ] = ACTIONS(4546), - [anon_sym_BANG_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_DOT] = ACTIONS(4548), - [anon_sym_EQ_GT] = ACTIONS(4546), - [anon_sym_switch] = ACTIONS(4546), - [anon_sym_DOT_DOT] = ACTIONS(4546), - [anon_sym_and] = ACTIONS(4546), - [anon_sym_or] = ACTIONS(4548), - [anon_sym_PLUS_EQ] = ACTIONS(4546), - [anon_sym_DASH_EQ] = ACTIONS(4546), - [anon_sym_STAR_EQ] = ACTIONS(4546), - [anon_sym_SLASH_EQ] = ACTIONS(4546), - [anon_sym_PERCENT_EQ] = ACTIONS(4546), - [anon_sym_AMP_EQ] = ACTIONS(4546), - [anon_sym_CARET_EQ] = ACTIONS(4546), - [anon_sym_PIPE_EQ] = ACTIONS(4546), - [anon_sym_LT_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_GT_EQ] = ACTIONS(4546), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4546), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4546), - [anon_sym_AMP_AMP] = ACTIONS(4546), - [anon_sym_PIPE_PIPE] = ACTIONS(4546), - [sym_op_coalescing] = ACTIONS(4548), - [anon_sym_from] = ACTIONS(4546), - [anon_sym_join] = ACTIONS(4546), - [anon_sym_on] = ACTIONS(4546), - [anon_sym_equals] = ACTIONS(4546), - [anon_sym_let] = ACTIONS(4546), - [anon_sym_orderby] = ACTIONS(4546), - [anon_sym_group] = ACTIONS(4546), - [anon_sym_by] = ACTIONS(4546), - [anon_sym_select] = ACTIONS(4546), - [anon_sym_as] = ACTIONS(4546), - [anon_sym_is] = ACTIONS(4546), - [anon_sym_DASH_GT] = ACTIONS(4546), - [anon_sym_with] = ACTIONS(4546), - [aux_sym_preproc_if_token3] = ACTIONS(4546), - [aux_sym_preproc_else_token1] = ACTIONS(4546), - [aux_sym_preproc_elif_token1] = ACTIONS(4546), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4224), + [anon_sym_or] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4224), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444781,14 +444803,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2550] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2676), - [sym_property_pattern_clause] = STATE(2838), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4670), + [sym_property_pattern_clause] = STATE(2613), + [sym__variable_designation] = STATE(5754), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym_identifier] = STATE(5790), + [sym__reserved_identifier] = STATE(5562), [sym_preproc_region] = STATE(2550), [sym_preproc_endregion] = STATE(2550), [sym_preproc_line] = STATE(2550), @@ -444798,67 +444817,69 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4224), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4252), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444869,6 +444890,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(4250), }, [2551] = { [sym_preproc_region] = STATE(2551), @@ -444880,85 +444902,85 @@ 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(4622), - [anon_sym_alias] = ACTIONS(4622), - [anon_sym_global] = ACTIONS(4622), - [anon_sym_static] = ACTIONS(4622), - [anon_sym_LBRACK] = ACTIONS(4624), - [anon_sym_LPAREN] = ACTIONS(4624), - [anon_sym_ref] = ACTIONS(4622), - [anon_sym_LBRACE] = ACTIONS(4624), - [anon_sym_delegate] = ACTIONS(4622), - [anon_sym_async] = ACTIONS(4622), - [anon_sym_file] = ACTIONS(4622), - [anon_sym_new] = ACTIONS(4622), - [anon_sym_where] = ACTIONS(4622), - [anon_sym_notnull] = ACTIONS(4622), - [anon_sym_unmanaged] = ACTIONS(4622), - [anon_sym_checked] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(4624), - [anon_sym_TILDE] = ACTIONS(4624), - [anon_sym_PLUS_PLUS] = ACTIONS(4624), - [anon_sym_DASH_DASH] = ACTIONS(4624), - [anon_sym_true] = ACTIONS(4622), - [anon_sym_false] = ACTIONS(4622), - [anon_sym_PLUS] = ACTIONS(4622), - [anon_sym_DASH] = ACTIONS(4622), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_CARET] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_this] = ACTIONS(4622), - [anon_sym_scoped] = ACTIONS(4622), - [anon_sym_base] = ACTIONS(4622), - [anon_sym_var] = ACTIONS(4622), - [sym_predefined_type] = ACTIONS(4622), - [anon_sym_unchecked] = ACTIONS(4622), - [anon_sym_yield] = ACTIONS(4622), - [anon_sym_default] = ACTIONS(4622), - [anon_sym_throw] = ACTIONS(4622), - [anon_sym_when] = ACTIONS(4622), - [anon_sym_await] = ACTIONS(4622), - [anon_sym_DOT_DOT] = ACTIONS(4624), - [anon_sym_from] = ACTIONS(4622), - [anon_sym_into] = ACTIONS(4622), - [anon_sym_join] = ACTIONS(4622), - [anon_sym_on] = ACTIONS(4622), - [anon_sym_equals] = ACTIONS(4622), - [anon_sym_let] = ACTIONS(4622), - [anon_sym_orderby] = ACTIONS(4622), - [anon_sym_ascending] = ACTIONS(4622), - [anon_sym_descending] = ACTIONS(4622), - [anon_sym_group] = ACTIONS(4622), - [anon_sym_by] = ACTIONS(4622), - [anon_sym_select] = ACTIONS(4622), - [anon_sym_stackalloc] = ACTIONS(4622), - [anon_sym_sizeof] = ACTIONS(4622), - [anon_sym_typeof] = ACTIONS(4622), - [anon_sym___makeref] = ACTIONS(4622), - [anon_sym___reftype] = ACTIONS(4622), - [anon_sym___refvalue] = ACTIONS(4622), - [sym_null_literal] = ACTIONS(4622), - [anon_sym_SQUOTE] = ACTIONS(4624), - [sym_integer_literal] = ACTIONS(4622), - [sym_real_literal] = ACTIONS(4624), - [anon_sym_DQUOTE] = ACTIONS(4624), - [sym_verbatim_string_literal] = ACTIONS(4624), - [sym_grit_metavariable] = ACTIONS(4624), - [aux_sym_preproc_if_token1] = ACTIONS(4624), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4624), - [sym_interpolation_verbatim_start] = ACTIONS(4624), - [sym_interpolation_raw_start] = ACTIONS(4624), - [sym_raw_string_start] = ACTIONS(4624), + [sym__identifier_token] = ACTIONS(4612), + [anon_sym_alias] = ACTIONS(4612), + [anon_sym_global] = ACTIONS(4612), + [anon_sym_static] = ACTIONS(4612), + [anon_sym_LBRACK] = ACTIONS(4614), + [anon_sym_LPAREN] = ACTIONS(4614), + [anon_sym_ref] = ACTIONS(4612), + [anon_sym_LBRACE] = ACTIONS(4614), + [anon_sym_delegate] = ACTIONS(4612), + [anon_sym_async] = ACTIONS(4612), + [anon_sym_file] = ACTIONS(4612), + [anon_sym_new] = ACTIONS(4612), + [anon_sym_where] = ACTIONS(4612), + [anon_sym_notnull] = ACTIONS(4612), + [anon_sym_unmanaged] = ACTIONS(4612), + [anon_sym_checked] = ACTIONS(4612), + [anon_sym_TILDE] = ACTIONS(4614), + [anon_sym_this] = ACTIONS(4612), + [anon_sym_scoped] = ACTIONS(4612), + [anon_sym_base] = ACTIONS(4612), + [anon_sym_var] = ACTIONS(4612), + [anon_sym_STAR] = ACTIONS(4614), + [sym_predefined_type] = ACTIONS(4612), + [anon_sym_unchecked] = ACTIONS(4612), + [anon_sym_yield] = ACTIONS(4612), + [anon_sym_default] = ACTIONS(4612), + [anon_sym_throw] = ACTIONS(4612), + [anon_sym_when] = ACTIONS(4612), + [anon_sym_await] = ACTIONS(4612), + [anon_sym_DOT_DOT] = ACTIONS(4614), + [anon_sym_AMP] = ACTIONS(4614), + [anon_sym_CARET] = ACTIONS(4614), + [anon_sym_PLUS] = ACTIONS(4612), + [anon_sym_DASH] = ACTIONS(4612), + [anon_sym_BANG] = ACTIONS(4614), + [anon_sym_PLUS_PLUS] = ACTIONS(4614), + [anon_sym_DASH_DASH] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4612), + [anon_sym_false] = ACTIONS(4612), + [anon_sym_from] = ACTIONS(4612), + [anon_sym_into] = ACTIONS(4612), + [anon_sym_join] = ACTIONS(4612), + [anon_sym_on] = ACTIONS(4612), + [anon_sym_equals] = ACTIONS(4612), + [anon_sym_let] = ACTIONS(4612), + [anon_sym_orderby] = ACTIONS(4612), + [anon_sym_ascending] = ACTIONS(4612), + [anon_sym_descending] = ACTIONS(4612), + [anon_sym_group] = ACTIONS(4612), + [anon_sym_by] = ACTIONS(4612), + [anon_sym_select] = ACTIONS(4612), + [anon_sym_stackalloc] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(4612), + [anon_sym_typeof] = ACTIONS(4612), + [anon_sym___makeref] = ACTIONS(4612), + [anon_sym___reftype] = ACTIONS(4612), + [anon_sym___refvalue] = ACTIONS(4612), + [sym_null_literal] = ACTIONS(4612), + [anon_sym_SQUOTE] = ACTIONS(4614), + [sym_integer_literal] = ACTIONS(4612), + [sym_real_literal] = ACTIONS(4614), + [anon_sym_DQUOTE] = ACTIONS(4614), + [sym_verbatim_string_literal] = ACTIONS(4614), + [sym_grit_metavariable] = ACTIONS(4614), + [aux_sym_preproc_if_token1] = ACTIONS(4614), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(4614), + [sym_interpolation_verbatim_start] = ACTIONS(4614), + [sym_interpolation_raw_start] = ACTIONS(4614), + [sym_raw_string_start] = ACTIONS(4614), }, [2552] = { [sym_preproc_region] = STATE(2552), @@ -444970,95 +444992,95 @@ 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(4626), - [anon_sym_alias] = ACTIONS(4626), - [anon_sym_global] = ACTIONS(4626), - [anon_sym_static] = ACTIONS(4626), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(4628), - [anon_sym_ref] = ACTIONS(4626), - [anon_sym_LBRACE] = ACTIONS(4628), - [anon_sym_delegate] = ACTIONS(4626), - [anon_sym_async] = ACTIONS(4626), - [anon_sym_file] = ACTIONS(4626), - [anon_sym_new] = ACTIONS(4626), - [anon_sym_where] = ACTIONS(4626), - [anon_sym_notnull] = ACTIONS(4626), - [anon_sym_unmanaged] = ACTIONS(4626), - [anon_sym_checked] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(4628), - [anon_sym_TILDE] = ACTIONS(4628), - [anon_sym_PLUS_PLUS] = ACTIONS(4628), - [anon_sym_DASH_DASH] = ACTIONS(4628), - [anon_sym_true] = ACTIONS(4626), - [anon_sym_false] = ACTIONS(4626), - [anon_sym_PLUS] = ACTIONS(4626), - [anon_sym_DASH] = ACTIONS(4626), - [anon_sym_STAR] = ACTIONS(4628), - [anon_sym_CARET] = ACTIONS(4628), - [anon_sym_AMP] = ACTIONS(4628), - [anon_sym_this] = ACTIONS(4626), - [anon_sym_scoped] = ACTIONS(4626), - [anon_sym_base] = ACTIONS(4626), - [anon_sym_var] = ACTIONS(4626), - [sym_predefined_type] = ACTIONS(4626), - [anon_sym_unchecked] = ACTIONS(4626), - [anon_sym_yield] = ACTIONS(4626), - [anon_sym_default] = ACTIONS(4626), - [anon_sym_throw] = ACTIONS(4626), - [anon_sym_when] = ACTIONS(4626), - [anon_sym_await] = ACTIONS(4626), - [anon_sym_DOT_DOT] = ACTIONS(4628), - [anon_sym_from] = ACTIONS(4626), - [anon_sym_into] = ACTIONS(4626), - [anon_sym_join] = ACTIONS(4626), - [anon_sym_on] = ACTIONS(4626), - [anon_sym_equals] = ACTIONS(4626), - [anon_sym_let] = ACTIONS(4626), - [anon_sym_orderby] = ACTIONS(4626), - [anon_sym_ascending] = ACTIONS(4626), - [anon_sym_descending] = ACTIONS(4626), - [anon_sym_group] = ACTIONS(4626), - [anon_sym_by] = ACTIONS(4626), - [anon_sym_select] = ACTIONS(4626), - [anon_sym_stackalloc] = ACTIONS(4626), - [anon_sym_sizeof] = ACTIONS(4626), - [anon_sym_typeof] = ACTIONS(4626), - [anon_sym___makeref] = ACTIONS(4626), - [anon_sym___reftype] = ACTIONS(4626), - [anon_sym___refvalue] = ACTIONS(4626), - [sym_null_literal] = ACTIONS(4626), - [anon_sym_SQUOTE] = ACTIONS(4628), - [sym_integer_literal] = ACTIONS(4626), - [sym_real_literal] = ACTIONS(4628), - [anon_sym_DQUOTE] = ACTIONS(4628), - [sym_verbatim_string_literal] = ACTIONS(4628), - [sym_grit_metavariable] = ACTIONS(4628), - [aux_sym_preproc_if_token1] = ACTIONS(4628), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4628), - [sym_interpolation_verbatim_start] = ACTIONS(4628), - [sym_interpolation_raw_start] = ACTIONS(4628), - [sym_raw_string_start] = ACTIONS(4628), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_RBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [anon_sym_RBRACE] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4552), + [anon_sym_in] = ACTIONS(4550), + [anon_sym_where] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_EQ_GT] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4552), + [anon_sym_switch] = ACTIONS(4550), + [anon_sym_DOT_DOT] = ACTIONS(4550), + [anon_sym_LT_EQ] = ACTIONS(4550), + [anon_sym_GT_EQ] = ACTIONS(4550), + [anon_sym_and] = ACTIONS(4550), + [anon_sym_or] = ACTIONS(4552), + [anon_sym_PLUS_EQ] = ACTIONS(4550), + [anon_sym_DASH_EQ] = ACTIONS(4550), + [anon_sym_STAR_EQ] = ACTIONS(4550), + [anon_sym_SLASH_EQ] = ACTIONS(4550), + [anon_sym_PERCENT_EQ] = ACTIONS(4550), + [anon_sym_AMP_EQ] = ACTIONS(4550), + [anon_sym_CARET_EQ] = ACTIONS(4550), + [anon_sym_PIPE_EQ] = ACTIONS(4550), + [anon_sym_LT_LT_EQ] = ACTIONS(4550), + [anon_sym_GT_GT_EQ] = ACTIONS(4550), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4550), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4550), + [anon_sym_EQ_EQ] = ACTIONS(4550), + [anon_sym_BANG_EQ] = ACTIONS(4550), + [anon_sym_AMP_AMP] = ACTIONS(4550), + [anon_sym_PIPE_PIPE] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [sym_op_bitwise_or] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [sym_op_left_shift] = ACTIONS(4552), + [sym_op_right_shift] = ACTIONS(4552), + [sym_op_unsigned_right_shift] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4552), + [sym_op_divide] = ACTIONS(4552), + [sym_op_modulo] = ACTIONS(4552), + [sym_op_coalescing] = ACTIONS(4552), + [anon_sym_BANG] = ACTIONS(4552), + [anon_sym_PLUS_PLUS] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4550), + [anon_sym_from] = ACTIONS(4550), + [anon_sym_join] = ACTIONS(4550), + [anon_sym_on] = ACTIONS(4550), + [anon_sym_equals] = ACTIONS(4550), + [anon_sym_let] = ACTIONS(4550), + [anon_sym_orderby] = ACTIONS(4550), + [anon_sym_group] = ACTIONS(4550), + [anon_sym_by] = ACTIONS(4550), + [anon_sym_select] = ACTIONS(4550), + [anon_sym_as] = ACTIONS(4550), + [anon_sym_is] = ACTIONS(4550), + [anon_sym_DASH_GT] = ACTIONS(4550), + [anon_sym_with] = ACTIONS(4550), + [aux_sym_preproc_if_token3] = ACTIONS(4550), + [aux_sym_preproc_else_token1] = ACTIONS(4550), + [aux_sym_preproc_elif_token1] = ACTIONS(4550), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2553] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2716), - [sym_property_pattern_clause] = STATE(2861), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4841), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2638), + [sym_property_pattern_clause] = STATE(2772), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2553), [sym_preproc_endregion] = STATE(2553), [sym_preproc_line] = STATE(2553), @@ -445068,67 +445090,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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), [anon_sym_LT] = ACTIONS(4224), [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4218), [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), [anon_sym_and] = ACTIONS(4224), [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4224), - [anon_sym_select] = ACTIONS(4210), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4224), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), [anon_sym_as] = ACTIONS(4224), [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445141,14 +445163,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2554] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2676), - [sym_property_pattern_clause] = STATE(2838), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2651), + [sym_property_pattern_clause] = STATE(2900), + [sym__variable_designation] = STATE(5509), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5472), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2554), [sym_preproc_endregion] = STATE(2554), [sym_preproc_line] = STATE(2554), @@ -445161,64 +445183,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4208), [anon_sym_alias] = ACTIONS(4210), [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), [anon_sym_file] = ACTIONS(4210), [anon_sym_LT] = ACTIONS(4224), [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4224), [anon_sym_QMARK] = ACTIONS(4224), [anon_sym_notnull] = ACTIONS(4210), [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), [anon_sym_DOT] = ACTIONS(4224), [anon_sym_scoped] = ACTIONS(4210), [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4220), [anon_sym_yield] = ACTIONS(4210), [anon_sym_switch] = ACTIONS(4224), [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4224), [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4224), [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4224), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4224), + [anon_sym_orderby] = ACTIONS(4224), [anon_sym_ascending] = ACTIONS(4210), [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4224), [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4224), [anon_sym_as] = ACTIONS(4224), [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445231,26 +445253,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2555] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(8034), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6028), - [sym__reserved_identifier] = STATE(5136), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2628), + [sym_property_pattern_clause] = STATE(2855), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2555), [sym_preproc_endregion] = STATE(2555), [sym_preproc_line] = STATE(2555), @@ -445260,55 +445270,67 @@ 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), - [aux_sym_using_directive_repeat1] = STATE(6033), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2624), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(4630), - [anon_sym_static] = ACTIONS(4568), - [anon_sym_LPAREN] = ACTIONS(4632), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(657), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(657), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4228), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445321,14 +445343,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2556] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2685), - [sym_property_pattern_clause] = STATE(2845), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2644), + [sym_property_pattern_clause] = STATE(2727), + [sym__variable_designation] = STATE(5509), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(5472), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2556), [sym_preproc_endregion] = STATE(2556), [sym_preproc_line] = STATE(2556), @@ -445338,67 +445360,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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4188), [anon_sym_LT] = ACTIONS(4224), [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4224), [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4188), + [anon_sym_var] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4188), [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4188), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), [anon_sym_and] = ACTIONS(4224), [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4224), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4224), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4224), + [anon_sym_on] = ACTIONS(4188), + [anon_sym_equals] = ACTIONS(4188), + [anon_sym_let] = ACTIONS(4224), + [anon_sym_orderby] = ACTIONS(4224), + [anon_sym_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4224), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4224), [anon_sym_as] = ACTIONS(4224), [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445420,75 +445442,75 @@ 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), - [anon_sym_SEMI] = ACTIONS(4528), - [anon_sym_EQ] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4528), - [anon_sym_COLON] = ACTIONS(4528), - [anon_sym_COMMA] = ACTIONS(4528), - [anon_sym_RBRACK] = ACTIONS(4528), - [anon_sym_LPAREN] = ACTIONS(4528), - [anon_sym_RPAREN] = ACTIONS(4528), - [anon_sym_RBRACE] = ACTIONS(4528), - [anon_sym_LT] = ACTIONS(4526), - [anon_sym_GT] = ACTIONS(4526), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_where] = ACTIONS(4528), - [anon_sym_QMARK] = ACTIONS(4526), - [anon_sym_BANG] = ACTIONS(4526), - [anon_sym_PLUS_PLUS] = ACTIONS(4528), - [anon_sym_DASH_DASH] = ACTIONS(4528), - [anon_sym_PLUS] = ACTIONS(4526), - [anon_sym_DASH] = ACTIONS(4526), - [anon_sym_STAR] = ACTIONS(4526), - [anon_sym_SLASH] = ACTIONS(4526), - [anon_sym_PERCENT] = ACTIONS(4526), - [anon_sym_CARET] = ACTIONS(4526), - [anon_sym_PIPE] = ACTIONS(4526), - [anon_sym_AMP] = ACTIONS(4526), - [anon_sym_LT_LT] = ACTIONS(4526), - [anon_sym_GT_GT] = ACTIONS(4526), - [anon_sym_GT_GT_GT] = ACTIONS(4526), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_GT_EQ] = ACTIONS(4528), - [anon_sym_LT_EQ] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4526), - [anon_sym_EQ_GT] = ACTIONS(4528), - [anon_sym_switch] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4528), - [anon_sym_and] = ACTIONS(4528), - [anon_sym_or] = ACTIONS(4526), - [anon_sym_PLUS_EQ] = ACTIONS(4528), - [anon_sym_DASH_EQ] = ACTIONS(4528), - [anon_sym_STAR_EQ] = ACTIONS(4528), - [anon_sym_SLASH_EQ] = ACTIONS(4528), - [anon_sym_PERCENT_EQ] = ACTIONS(4528), - [anon_sym_AMP_EQ] = ACTIONS(4528), - [anon_sym_CARET_EQ] = ACTIONS(4528), - [anon_sym_PIPE_EQ] = ACTIONS(4528), - [anon_sym_LT_LT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4528), - [anon_sym_PIPE_PIPE] = ACTIONS(4528), - [sym_op_coalescing] = ACTIONS(4526), - [anon_sym_from] = ACTIONS(4528), - [anon_sym_join] = ACTIONS(4528), - [anon_sym_on] = ACTIONS(4528), - [anon_sym_equals] = ACTIONS(4528), - [anon_sym_let] = ACTIONS(4528), - [anon_sym_orderby] = ACTIONS(4528), - [anon_sym_group] = ACTIONS(4528), - [anon_sym_by] = ACTIONS(4528), - [anon_sym_select] = ACTIONS(4528), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_DASH_GT] = ACTIONS(4528), - [anon_sym_with] = ACTIONS(4528), - [aux_sym_preproc_if_token3] = ACTIONS(4528), - [aux_sym_preproc_else_token1] = ACTIONS(4528), - [aux_sym_preproc_elif_token1] = ACTIONS(4528), + [anon_sym_SEMI] = ACTIONS(4530), + [anon_sym_EQ] = ACTIONS(4532), + [anon_sym_LBRACK] = ACTIONS(4530), + [anon_sym_COLON] = ACTIONS(4530), + [anon_sym_COMMA] = ACTIONS(4530), + [anon_sym_RBRACK] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(4530), + [anon_sym_RPAREN] = ACTIONS(4530), + [anon_sym_RBRACE] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4532), + [anon_sym_GT] = ACTIONS(4532), + [anon_sym_in] = ACTIONS(4530), + [anon_sym_where] = ACTIONS(4530), + [anon_sym_QMARK] = ACTIONS(4532), + [anon_sym_DOT] = ACTIONS(4532), + [anon_sym_EQ_GT] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4532), + [anon_sym_switch] = ACTIONS(4530), + [anon_sym_DOT_DOT] = ACTIONS(4530), + [anon_sym_LT_EQ] = ACTIONS(4530), + [anon_sym_GT_EQ] = ACTIONS(4530), + [anon_sym_and] = ACTIONS(4530), + [anon_sym_or] = ACTIONS(4532), + [anon_sym_PLUS_EQ] = ACTIONS(4530), + [anon_sym_DASH_EQ] = ACTIONS(4530), + [anon_sym_STAR_EQ] = ACTIONS(4530), + [anon_sym_SLASH_EQ] = ACTIONS(4530), + [anon_sym_PERCENT_EQ] = ACTIONS(4530), + [anon_sym_AMP_EQ] = ACTIONS(4530), + [anon_sym_CARET_EQ] = ACTIONS(4530), + [anon_sym_PIPE_EQ] = ACTIONS(4530), + [anon_sym_LT_LT_EQ] = ACTIONS(4530), + [anon_sym_GT_GT_EQ] = ACTIONS(4530), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4530), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4530), + [anon_sym_EQ_EQ] = ACTIONS(4530), + [anon_sym_BANG_EQ] = ACTIONS(4530), + [anon_sym_AMP_AMP] = ACTIONS(4530), + [anon_sym_PIPE_PIPE] = ACTIONS(4530), + [anon_sym_AMP] = ACTIONS(4532), + [sym_op_bitwise_or] = ACTIONS(4532), + [anon_sym_CARET] = ACTIONS(4532), + [sym_op_left_shift] = ACTIONS(4532), + [sym_op_right_shift] = ACTIONS(4532), + [sym_op_unsigned_right_shift] = ACTIONS(4532), + [anon_sym_PLUS] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [sym_op_divide] = ACTIONS(4532), + [sym_op_modulo] = ACTIONS(4532), + [sym_op_coalescing] = ACTIONS(4532), + [anon_sym_BANG] = ACTIONS(4532), + [anon_sym_PLUS_PLUS] = ACTIONS(4530), + [anon_sym_DASH_DASH] = ACTIONS(4530), + [anon_sym_from] = ACTIONS(4530), + [anon_sym_join] = ACTIONS(4530), + [anon_sym_on] = ACTIONS(4530), + [anon_sym_equals] = ACTIONS(4530), + [anon_sym_let] = ACTIONS(4530), + [anon_sym_orderby] = ACTIONS(4530), + [anon_sym_group] = ACTIONS(4530), + [anon_sym_by] = ACTIONS(4530), + [anon_sym_select] = ACTIONS(4530), + [anon_sym_as] = ACTIONS(4530), + [anon_sym_is] = ACTIONS(4530), + [anon_sym_DASH_GT] = ACTIONS(4530), + [anon_sym_with] = ACTIONS(4530), + [aux_sym_preproc_if_token3] = ACTIONS(4530), + [aux_sym_preproc_else_token1] = ACTIONS(4530), + [aux_sym_preproc_elif_token1] = ACTIONS(4530), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445501,6 +445523,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2558] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2633), + [sym_property_pattern_clause] = STATE(2782), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2558), [sym_preproc_endregion] = STATE(2558), [sym_preproc_line] = STATE(2558), @@ -445510,71 +445540,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2558), [sym_preproc_define] = STATE(2558), [sym_preproc_undef] = STATE(2558), - [sym__identifier_token] = ACTIONS(4634), - [anon_sym_alias] = ACTIONS(4634), - [anon_sym_global] = ACTIONS(4634), - [anon_sym_static] = ACTIONS(4634), - [anon_sym_LBRACK] = ACTIONS(4636), - [anon_sym_LPAREN] = ACTIONS(4636), - [anon_sym_ref] = ACTIONS(4634), - [anon_sym_LBRACE] = ACTIONS(4636), - [anon_sym_delegate] = ACTIONS(4634), - [anon_sym_async] = ACTIONS(4634), - [anon_sym_file] = ACTIONS(4634), - [anon_sym_new] = ACTIONS(4634), - [anon_sym_where] = ACTIONS(4634), - [anon_sym_notnull] = ACTIONS(4634), - [anon_sym_unmanaged] = ACTIONS(4634), - [anon_sym_checked] = ACTIONS(4634), - [anon_sym_BANG] = ACTIONS(4636), - [anon_sym_TILDE] = ACTIONS(4636), - [anon_sym_PLUS_PLUS] = ACTIONS(4636), - [anon_sym_DASH_DASH] = ACTIONS(4636), - [anon_sym_true] = ACTIONS(4634), - [anon_sym_false] = ACTIONS(4634), - [anon_sym_PLUS] = ACTIONS(4634), - [anon_sym_DASH] = ACTIONS(4634), - [anon_sym_STAR] = ACTIONS(4636), - [anon_sym_CARET] = ACTIONS(4636), - [anon_sym_AMP] = ACTIONS(4636), - [anon_sym_this] = ACTIONS(4634), - [anon_sym_scoped] = ACTIONS(4634), - [anon_sym_base] = ACTIONS(4634), - [anon_sym_var] = ACTIONS(4634), - [sym_predefined_type] = ACTIONS(4634), - [anon_sym_unchecked] = ACTIONS(4634), - [anon_sym_yield] = ACTIONS(4634), - [anon_sym_default] = ACTIONS(4634), - [anon_sym_throw] = ACTIONS(4634), - [anon_sym_when] = ACTIONS(4634), - [anon_sym_await] = ACTIONS(4634), - [anon_sym_DOT_DOT] = ACTIONS(4636), - [anon_sym_from] = ACTIONS(4634), - [anon_sym_into] = ACTIONS(4634), - [anon_sym_join] = ACTIONS(4634), - [anon_sym_on] = ACTIONS(4634), - [anon_sym_equals] = ACTIONS(4634), - [anon_sym_let] = ACTIONS(4634), - [anon_sym_orderby] = ACTIONS(4634), - [anon_sym_ascending] = ACTIONS(4634), - [anon_sym_descending] = ACTIONS(4634), - [anon_sym_group] = ACTIONS(4634), - [anon_sym_by] = ACTIONS(4634), - [anon_sym_select] = ACTIONS(4634), - [anon_sym_stackalloc] = ACTIONS(4634), - [anon_sym_sizeof] = ACTIONS(4634), - [anon_sym_typeof] = ACTIONS(4634), - [anon_sym___makeref] = ACTIONS(4634), - [anon_sym___reftype] = ACTIONS(4634), - [anon_sym___refvalue] = ACTIONS(4634), - [sym_null_literal] = ACTIONS(4634), - [anon_sym_SQUOTE] = ACTIONS(4636), - [sym_integer_literal] = ACTIONS(4634), - [sym_real_literal] = ACTIONS(4636), - [anon_sym_DQUOTE] = ACTIONS(4636), - [sym_verbatim_string_literal] = ACTIONS(4636), - [sym_grit_metavariable] = ACTIONS(4636), - [aux_sym_preproc_if_token1] = ACTIONS(4636), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4228), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445585,20 +445611,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_regular_start] = ACTIONS(4636), - [sym_interpolation_verbatim_start] = ACTIONS(4636), - [sym_interpolation_raw_start] = ACTIONS(4636), - [sym_raw_string_start] = ACTIONS(4636), }, [2559] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2685), - [sym_property_pattern_clause] = STATE(2845), - [sym__variable_designation] = STATE(4981), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4978), - [sym__reserved_identifier] = STATE(4670), + [sym__name] = STATE(3347), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_ref_type] = STATE(3311), + [sym__scoped_base_type] = STATE(3250), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2559), [sym_preproc_endregion] = STATE(2559), [sym_preproc_line] = STATE(2559), @@ -445611,52 +445634,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4208), [anon_sym_alias] = ACTIONS(4210), [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4616), + [anon_sym_LBRACE] = ACTIONS(3694), [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4216), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(4210), [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(3694), [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(3694), [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4216), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), [anon_sym_from] = ACTIONS(4210), [anon_sym_into] = ACTIONS(4210), [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4216), - [anon_sym_equals] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4498), [anon_sym_let] = ACTIONS(4210), [anon_sym_orderby] = ACTIONS(4210), [anon_sym_ascending] = ACTIONS(4210), @@ -445664,11 +445686,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4210), [anon_sym_by] = ACTIONS(4210), [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4220), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445690,71 +445712,71 @@ 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(4638), - [anon_sym_alias] = ACTIONS(4638), - [anon_sym_global] = ACTIONS(4638), - [anon_sym_static] = ACTIONS(4638), - [anon_sym_LBRACK] = ACTIONS(4640), - [anon_sym_LPAREN] = ACTIONS(4640), - [anon_sym_ref] = ACTIONS(4638), - [anon_sym_LBRACE] = ACTIONS(4640), - [anon_sym_delegate] = ACTIONS(4638), - [anon_sym_async] = ACTIONS(4638), - [anon_sym_file] = ACTIONS(4638), - [anon_sym_new] = ACTIONS(4638), - [anon_sym_where] = ACTIONS(4638), - [anon_sym_notnull] = ACTIONS(4638), - [anon_sym_unmanaged] = ACTIONS(4638), - [anon_sym_checked] = ACTIONS(4638), - [anon_sym_BANG] = ACTIONS(4640), - [anon_sym_TILDE] = ACTIONS(4640), - [anon_sym_PLUS_PLUS] = ACTIONS(4640), - [anon_sym_DASH_DASH] = ACTIONS(4640), - [anon_sym_true] = ACTIONS(4638), - [anon_sym_false] = ACTIONS(4638), - [anon_sym_PLUS] = ACTIONS(4638), - [anon_sym_DASH] = ACTIONS(4638), - [anon_sym_STAR] = ACTIONS(4640), - [anon_sym_CARET] = ACTIONS(4640), - [anon_sym_AMP] = ACTIONS(4640), - [anon_sym_this] = ACTIONS(4638), - [anon_sym_scoped] = ACTIONS(4638), - [anon_sym_base] = ACTIONS(4638), - [anon_sym_var] = ACTIONS(4638), - [sym_predefined_type] = ACTIONS(4638), - [anon_sym_unchecked] = ACTIONS(4638), - [anon_sym_yield] = ACTIONS(4638), - [anon_sym_default] = ACTIONS(4638), - [anon_sym_throw] = ACTIONS(4638), - [anon_sym_when] = ACTIONS(4638), - [anon_sym_await] = ACTIONS(4638), - [anon_sym_DOT_DOT] = ACTIONS(4640), - [anon_sym_from] = ACTIONS(4638), - [anon_sym_into] = ACTIONS(4638), - [anon_sym_join] = ACTIONS(4638), - [anon_sym_on] = ACTIONS(4638), - [anon_sym_equals] = ACTIONS(4638), - [anon_sym_let] = ACTIONS(4638), - [anon_sym_orderby] = ACTIONS(4638), - [anon_sym_ascending] = ACTIONS(4638), - [anon_sym_descending] = ACTIONS(4638), - [anon_sym_group] = ACTIONS(4638), - [anon_sym_by] = ACTIONS(4638), - [anon_sym_select] = ACTIONS(4638), - [anon_sym_stackalloc] = ACTIONS(4638), - [anon_sym_sizeof] = ACTIONS(4638), - [anon_sym_typeof] = ACTIONS(4638), - [anon_sym___makeref] = ACTIONS(4638), - [anon_sym___reftype] = ACTIONS(4638), - [anon_sym___refvalue] = ACTIONS(4638), - [sym_null_literal] = ACTIONS(4638), - [anon_sym_SQUOTE] = ACTIONS(4640), - [sym_integer_literal] = ACTIONS(4638), - [sym_real_literal] = ACTIONS(4640), - [anon_sym_DQUOTE] = ACTIONS(4640), - [sym_verbatim_string_literal] = ACTIONS(4640), - [sym_grit_metavariable] = ACTIONS(4640), - [aux_sym_preproc_if_token1] = ACTIONS(4640), + [sym__identifier_token] = ACTIONS(4618), + [anon_sym_alias] = ACTIONS(4618), + [anon_sym_global] = ACTIONS(4618), + [anon_sym_static] = ACTIONS(4618), + [anon_sym_LBRACK] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_ref] = ACTIONS(4618), + [anon_sym_LBRACE] = ACTIONS(4620), + [anon_sym_delegate] = ACTIONS(4618), + [anon_sym_async] = ACTIONS(4618), + [anon_sym_file] = ACTIONS(4618), + [anon_sym_new] = ACTIONS(4618), + [anon_sym_where] = ACTIONS(4618), + [anon_sym_notnull] = ACTIONS(4618), + [anon_sym_unmanaged] = ACTIONS(4618), + [anon_sym_checked] = ACTIONS(4618), + [anon_sym_TILDE] = ACTIONS(4620), + [anon_sym_this] = ACTIONS(4618), + [anon_sym_scoped] = ACTIONS(4618), + [anon_sym_base] = ACTIONS(4618), + [anon_sym_var] = ACTIONS(4618), + [anon_sym_STAR] = ACTIONS(4620), + [sym_predefined_type] = ACTIONS(4618), + [anon_sym_unchecked] = ACTIONS(4618), + [anon_sym_yield] = ACTIONS(4618), + [anon_sym_default] = ACTIONS(4618), + [anon_sym_throw] = ACTIONS(4618), + [anon_sym_when] = ACTIONS(4618), + [anon_sym_await] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_AMP] = ACTIONS(4620), + [anon_sym_CARET] = ACTIONS(4620), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_BANG] = ACTIONS(4620), + [anon_sym_PLUS_PLUS] = ACTIONS(4620), + [anon_sym_DASH_DASH] = ACTIONS(4620), + [anon_sym_true] = ACTIONS(4618), + [anon_sym_false] = ACTIONS(4618), + [anon_sym_from] = ACTIONS(4618), + [anon_sym_into] = ACTIONS(4618), + [anon_sym_join] = ACTIONS(4618), + [anon_sym_on] = ACTIONS(4618), + [anon_sym_equals] = ACTIONS(4618), + [anon_sym_let] = ACTIONS(4618), + [anon_sym_orderby] = ACTIONS(4618), + [anon_sym_ascending] = ACTIONS(4618), + [anon_sym_descending] = ACTIONS(4618), + [anon_sym_group] = ACTIONS(4618), + [anon_sym_by] = ACTIONS(4618), + [anon_sym_select] = ACTIONS(4618), + [anon_sym_stackalloc] = ACTIONS(4618), + [anon_sym_sizeof] = ACTIONS(4618), + [anon_sym_typeof] = ACTIONS(4618), + [anon_sym___makeref] = ACTIONS(4618), + [anon_sym___reftype] = ACTIONS(4618), + [anon_sym___refvalue] = ACTIONS(4618), + [sym_null_literal] = ACTIONS(4618), + [anon_sym_SQUOTE] = ACTIONS(4620), + [sym_integer_literal] = ACTIONS(4618), + [sym_real_literal] = ACTIONS(4620), + [anon_sym_DQUOTE] = ACTIONS(4620), + [sym_verbatim_string_literal] = ACTIONS(4620), + [sym_grit_metavariable] = ACTIONS(4620), + [aux_sym_preproc_if_token1] = ACTIONS(4620), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445765,20 +445787,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(4640), - [sym_interpolation_verbatim_start] = ACTIONS(4640), - [sym_interpolation_raw_start] = ACTIONS(4640), - [sym_raw_string_start] = ACTIONS(4640), + [sym_interpolation_regular_start] = ACTIONS(4620), + [sym_interpolation_verbatim_start] = ACTIONS(4620), + [sym_interpolation_raw_start] = ACTIONS(4620), + [sym_raw_string_start] = ACTIONS(4620), }, [2561] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2691), - [sym_property_pattern_clause] = STATE(2901), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4841), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2561), [sym_preproc_endregion] = STATE(2561), [sym_preproc_line] = STATE(2561), @@ -445788,67 +445802,75 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4224), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_RBRACK] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [anon_sym_RBRACE] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4564), + [anon_sym_in] = ACTIONS(4562), + [anon_sym_where] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_EQ_GT] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4564), + [anon_sym_switch] = ACTIONS(4562), + [anon_sym_DOT_DOT] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_and] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4564), + [anon_sym_PLUS_EQ] = ACTIONS(4562), + [anon_sym_DASH_EQ] = ACTIONS(4562), + [anon_sym_STAR_EQ] = ACTIONS(4562), + [anon_sym_SLASH_EQ] = ACTIONS(4562), + [anon_sym_PERCENT_EQ] = ACTIONS(4562), + [anon_sym_AMP_EQ] = ACTIONS(4562), + [anon_sym_CARET_EQ] = ACTIONS(4562), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_LT_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4562), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4562), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [sym_op_bitwise_or] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [sym_op_left_shift] = ACTIONS(4564), + [sym_op_right_shift] = ACTIONS(4564), + [sym_op_unsigned_right_shift] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4564), + [sym_op_divide] = ACTIONS(4564), + [sym_op_modulo] = ACTIONS(4564), + [sym_op_coalescing] = ACTIONS(4564), + [anon_sym_BANG] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_from] = ACTIONS(4562), + [anon_sym_join] = ACTIONS(4562), + [anon_sym_on] = ACTIONS(4562), + [anon_sym_equals] = ACTIONS(4562), + [anon_sym_let] = ACTIONS(4562), + [anon_sym_orderby] = ACTIONS(4562), + [anon_sym_group] = ACTIONS(4562), + [anon_sym_by] = ACTIONS(4562), + [anon_sym_select] = ACTIONS(4562), + [anon_sym_as] = ACTIONS(4562), + [anon_sym_is] = ACTIONS(4562), + [anon_sym_DASH_GT] = ACTIONS(4562), + [anon_sym_with] = ACTIONS(4562), + [aux_sym_preproc_if_token3] = ACTIONS(4562), + [aux_sym_preproc_else_token1] = ACTIONS(4562), + [aux_sym_preproc_elif_token1] = ACTIONS(4562), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445861,6 +445883,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2562] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2628), + [sym_property_pattern_clause] = STATE(2855), + [sym__variable_designation] = STATE(4581), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4580), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2562), [sym_preproc_endregion] = STATE(2562), [sym_preproc_line] = STATE(2562), @@ -445870,75 +445900,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), - [anon_sym_SEMI] = ACTIONS(4006), - [anon_sym_EQ] = ACTIONS(3991), - [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_RBRACE] = ACTIONS(4006), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_in] = ACTIONS(4006), - [anon_sym_where] = ACTIONS(4006), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(3991), - [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(3991), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [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), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4224), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445951,15 +445973,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2563] = { - [sym__name] = STATE(5074), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_ref_type] = STATE(3762), - [sym__scoped_base_type] = STATE(3735), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2635), + [sym_property_pattern_clause] = STATE(2861), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4070), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2563), [sym_preproc_endregion] = STATE(2563), [sym_preproc_line] = STATE(2563), @@ -445969,66 +445990,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(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4197), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4197), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4201), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4201), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4224), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446041,14 +446063,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2564] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2708), - [sym_property_pattern_clause] = STATE(2906), - [sym__variable_designation] = STATE(5503), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5486), - [sym__reserved_identifier] = STATE(3510), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7668), + [sym__name] = STATE(6208), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6051), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2564), [sym_preproc_endregion] = STATE(2564), [sym_preproc_line] = STATE(2564), @@ -446058,67 +446092,55 @@ 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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4228), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4224), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4232), + [aux_sym_using_directive_repeat1] = STATE(6036), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2595), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(657), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(4622), + [anon_sym_static] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4626), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(4288), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(657), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446140,92 +446162,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2565), [sym_preproc_define] = STATE(2565), [sym_preproc_undef] = STATE(2565), - [sym__identifier_token] = ACTIONS(4644), - [anon_sym_alias] = ACTIONS(4644), - [anon_sym_global] = ACTIONS(4644), - [anon_sym_static] = ACTIONS(4644), - [anon_sym_LBRACK] = ACTIONS(4646), - [anon_sym_LPAREN] = ACTIONS(4646), - [anon_sym_ref] = ACTIONS(4644), - [anon_sym_LBRACE] = ACTIONS(4646), - [anon_sym_delegate] = ACTIONS(4644), - [anon_sym_async] = ACTIONS(4644), - [anon_sym_file] = ACTIONS(4644), - [anon_sym_new] = ACTIONS(4644), - [anon_sym_where] = ACTIONS(4644), - [anon_sym_notnull] = ACTIONS(4644), - [anon_sym_unmanaged] = ACTIONS(4644), - [anon_sym_checked] = ACTIONS(4644), - [anon_sym_BANG] = ACTIONS(4646), - [anon_sym_TILDE] = ACTIONS(4646), - [anon_sym_PLUS_PLUS] = ACTIONS(4646), - [anon_sym_DASH_DASH] = ACTIONS(4646), - [anon_sym_true] = ACTIONS(4644), - [anon_sym_false] = ACTIONS(4644), - [anon_sym_PLUS] = ACTIONS(4644), - [anon_sym_DASH] = ACTIONS(4644), - [anon_sym_STAR] = ACTIONS(4646), - [anon_sym_CARET] = ACTIONS(4646), - [anon_sym_AMP] = ACTIONS(4646), - [anon_sym_this] = ACTIONS(4644), - [anon_sym_scoped] = ACTIONS(4644), - [anon_sym_base] = ACTIONS(4644), - [anon_sym_var] = ACTIONS(4644), - [sym_predefined_type] = ACTIONS(4644), - [anon_sym_unchecked] = ACTIONS(4644), - [anon_sym_yield] = ACTIONS(4644), - [anon_sym_default] = ACTIONS(4644), - [anon_sym_throw] = ACTIONS(4644), - [anon_sym_when] = ACTIONS(4644), - [anon_sym_await] = ACTIONS(4644), - [anon_sym_DOT_DOT] = ACTIONS(4646), - [anon_sym_from] = ACTIONS(4644), - [anon_sym_into] = ACTIONS(4644), - [anon_sym_join] = ACTIONS(4644), - [anon_sym_on] = ACTIONS(4644), - [anon_sym_equals] = ACTIONS(4644), - [anon_sym_let] = ACTIONS(4644), - [anon_sym_orderby] = ACTIONS(4644), - [anon_sym_ascending] = ACTIONS(4644), - [anon_sym_descending] = ACTIONS(4644), - [anon_sym_group] = ACTIONS(4644), - [anon_sym_by] = ACTIONS(4644), - [anon_sym_select] = ACTIONS(4644), - [anon_sym_stackalloc] = ACTIONS(4644), - [anon_sym_sizeof] = ACTIONS(4644), - [anon_sym_typeof] = ACTIONS(4644), - [anon_sym___makeref] = ACTIONS(4644), - [anon_sym___reftype] = ACTIONS(4644), - [anon_sym___refvalue] = ACTIONS(4644), - [sym_null_literal] = ACTIONS(4644), - [anon_sym_SQUOTE] = ACTIONS(4646), - [sym_integer_literal] = ACTIONS(4644), - [sym_real_literal] = ACTIONS(4646), - [anon_sym_DQUOTE] = ACTIONS(4646), - [sym_verbatim_string_literal] = ACTIONS(4646), - [sym_grit_metavariable] = ACTIONS(4646), - [aux_sym_preproc_if_token1] = ACTIONS(4646), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4646), - [sym_interpolation_verbatim_start] = ACTIONS(4646), - [sym_interpolation_raw_start] = ACTIONS(4646), - [sym_raw_string_start] = ACTIONS(4646), + [sym__identifier_token] = ACTIONS(4628), + [anon_sym_alias] = ACTIONS(4628), + [anon_sym_global] = ACTIONS(4628), + [anon_sym_static] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(4630), + [anon_sym_ref] = ACTIONS(4628), + [anon_sym_LBRACE] = ACTIONS(4630), + [anon_sym_delegate] = ACTIONS(4628), + [anon_sym_async] = ACTIONS(4628), + [anon_sym_file] = ACTIONS(4628), + [anon_sym_new] = ACTIONS(4628), + [anon_sym_where] = ACTIONS(4628), + [anon_sym_notnull] = ACTIONS(4628), + [anon_sym_unmanaged] = ACTIONS(4628), + [anon_sym_checked] = ACTIONS(4628), + [anon_sym_TILDE] = ACTIONS(4630), + [anon_sym_this] = ACTIONS(4628), + [anon_sym_scoped] = ACTIONS(4628), + [anon_sym_base] = ACTIONS(4628), + [anon_sym_var] = ACTIONS(4628), + [anon_sym_STAR] = ACTIONS(4630), + [sym_predefined_type] = ACTIONS(4628), + [anon_sym_unchecked] = ACTIONS(4628), + [anon_sym_yield] = ACTIONS(4628), + [anon_sym_default] = ACTIONS(4628), + [anon_sym_throw] = ACTIONS(4628), + [anon_sym_when] = ACTIONS(4628), + [anon_sym_await] = ACTIONS(4628), + [anon_sym_DOT_DOT] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4630), + [anon_sym_CARET] = ACTIONS(4630), + [anon_sym_PLUS] = ACTIONS(4628), + [anon_sym_DASH] = ACTIONS(4628), + [anon_sym_BANG] = ACTIONS(4630), + [anon_sym_PLUS_PLUS] = ACTIONS(4630), + [anon_sym_DASH_DASH] = ACTIONS(4630), + [anon_sym_true] = ACTIONS(4628), + [anon_sym_false] = ACTIONS(4628), + [anon_sym_from] = ACTIONS(4628), + [anon_sym_into] = ACTIONS(4628), + [anon_sym_join] = ACTIONS(4628), + [anon_sym_on] = ACTIONS(4628), + [anon_sym_equals] = ACTIONS(4628), + [anon_sym_let] = ACTIONS(4628), + [anon_sym_orderby] = ACTIONS(4628), + [anon_sym_ascending] = ACTIONS(4628), + [anon_sym_descending] = ACTIONS(4628), + [anon_sym_group] = ACTIONS(4628), + [anon_sym_by] = ACTIONS(4628), + [anon_sym_select] = ACTIONS(4628), + [anon_sym_stackalloc] = ACTIONS(4628), + [anon_sym_sizeof] = ACTIONS(4628), + [anon_sym_typeof] = ACTIONS(4628), + [anon_sym___makeref] = ACTIONS(4628), + [anon_sym___reftype] = ACTIONS(4628), + [anon_sym___refvalue] = ACTIONS(4628), + [sym_null_literal] = ACTIONS(4628), + [anon_sym_SQUOTE] = ACTIONS(4630), + [sym_integer_literal] = ACTIONS(4628), + [sym_real_literal] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(4630), + [sym_verbatim_string_literal] = ACTIONS(4630), + [sym_grit_metavariable] = ACTIONS(4630), + [aux_sym_preproc_if_token1] = ACTIONS(4630), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(4630), + [sym_interpolation_verbatim_start] = ACTIONS(4630), + [sym_interpolation_raw_start] = ACTIONS(4630), + [sym_raw_string_start] = ACTIONS(4630), }, [2566] = { - [sym_property_pattern_clause] = STATE(2661), - [sym__variable_designation] = STATE(5673), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym_identifier] = STATE(5708), - [sym__reserved_identifier] = STATE(5570), + [sym__name] = STATE(5023), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_ref_type] = STATE(3179), + [sym__scoped_base_type] = STATE(3178), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2566), [sym_preproc_endregion] = STATE(2566), [sym_preproc_line] = STATE(2566), @@ -446235,69 +446261,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2566), [sym_preproc_define] = STATE(2566), [sym_preproc_undef] = STATE(2566), - [sym__identifier_token] = ACTIONS(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4397), - [anon_sym_into] = ACTIONS(4252), - [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), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4403), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(4188), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(4188), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(4188), + [anon_sym_into] = ACTIONS(4192), + [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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4192), + [anon_sym_select] = ACTIONS(4188), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446308,9 +446331,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4250), }, [2567] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2650), + [sym_property_pattern_clause] = STATE(2836), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4070), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2567), [sym_preproc_endregion] = STATE(2567), [sym_preproc_line] = STATE(2567), @@ -446320,92 +446350,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2567), [sym_preproc_define] = STATE(2567), [sym_preproc_undef] = STATE(2567), - [sym__identifier_token] = ACTIONS(4648), - [anon_sym_alias] = ACTIONS(4648), - [anon_sym_global] = ACTIONS(4648), - [anon_sym_static] = ACTIONS(4648), - [anon_sym_LBRACK] = ACTIONS(4650), - [anon_sym_LPAREN] = ACTIONS(4650), - [anon_sym_ref] = ACTIONS(4648), - [anon_sym_LBRACE] = ACTIONS(4650), - [anon_sym_delegate] = ACTIONS(4648), - [anon_sym_async] = ACTIONS(4648), - [anon_sym_file] = ACTIONS(4648), - [anon_sym_new] = ACTIONS(4648), - [anon_sym_where] = ACTIONS(4648), - [anon_sym_notnull] = ACTIONS(4648), - [anon_sym_unmanaged] = ACTIONS(4648), - [anon_sym_checked] = ACTIONS(4648), - [anon_sym_BANG] = ACTIONS(4650), - [anon_sym_TILDE] = ACTIONS(4650), - [anon_sym_PLUS_PLUS] = ACTIONS(4650), - [anon_sym_DASH_DASH] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4648), - [anon_sym_false] = ACTIONS(4648), - [anon_sym_PLUS] = ACTIONS(4648), - [anon_sym_DASH] = ACTIONS(4648), - [anon_sym_STAR] = ACTIONS(4650), - [anon_sym_CARET] = ACTIONS(4650), - [anon_sym_AMP] = ACTIONS(4650), - [anon_sym_this] = ACTIONS(4648), - [anon_sym_scoped] = ACTIONS(4648), - [anon_sym_base] = ACTIONS(4648), - [anon_sym_var] = ACTIONS(4648), - [sym_predefined_type] = ACTIONS(4648), - [anon_sym_unchecked] = ACTIONS(4648), - [anon_sym_yield] = ACTIONS(4648), - [anon_sym_default] = ACTIONS(4648), - [anon_sym_throw] = ACTIONS(4648), - [anon_sym_when] = ACTIONS(4648), - [anon_sym_await] = ACTIONS(4648), - [anon_sym_DOT_DOT] = ACTIONS(4650), - [anon_sym_from] = ACTIONS(4648), - [anon_sym_into] = ACTIONS(4648), - [anon_sym_join] = ACTIONS(4648), - [anon_sym_on] = ACTIONS(4648), - [anon_sym_equals] = ACTIONS(4648), - [anon_sym_let] = ACTIONS(4648), - [anon_sym_orderby] = ACTIONS(4648), - [anon_sym_ascending] = ACTIONS(4648), - [anon_sym_descending] = ACTIONS(4648), - [anon_sym_group] = ACTIONS(4648), - [anon_sym_by] = ACTIONS(4648), - [anon_sym_select] = ACTIONS(4648), - [anon_sym_stackalloc] = ACTIONS(4648), - [anon_sym_sizeof] = ACTIONS(4648), - [anon_sym_typeof] = ACTIONS(4648), - [anon_sym___makeref] = ACTIONS(4648), - [anon_sym___reftype] = ACTIONS(4648), - [anon_sym___refvalue] = ACTIONS(4648), - [sym_null_literal] = ACTIONS(4648), - [anon_sym_SQUOTE] = ACTIONS(4650), - [sym_integer_literal] = ACTIONS(4648), - [sym_real_literal] = ACTIONS(4650), - [anon_sym_DQUOTE] = ACTIONS(4650), - [sym_verbatim_string_literal] = ACTIONS(4650), - [sym_grit_metavariable] = ACTIONS(4650), - [aux_sym_preproc_if_token1] = ACTIONS(4650), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4650), - [sym_interpolation_verbatim_start] = ACTIONS(4650), - [sym_interpolation_raw_start] = ACTIONS(4650), - [sym_raw_string_start] = ACTIONS(4650), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_AMP] = ACTIONS(4228), + [sym_op_bitwise_or] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4232), + [sym_op_left_shift] = ACTIONS(4232), + [sym_op_right_shift] = ACTIONS(4228), + [sym_op_unsigned_right_shift] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [sym_op_divide] = ACTIONS(4228), + [sym_op_modulo] = ACTIONS(4232), + [sym_op_coalescing] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4228), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4228), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4232), + [anon_sym_with] = ACTIONS(4228), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2568] = { - [sym_property_pattern_clause] = STATE(2639), - [sym__variable_designation] = STATE(5698), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym_identifier] = STATE(5708), - [sym__reserved_identifier] = STATE(5570), [sym_preproc_region] = STATE(2568), [sym_preproc_endregion] = STATE(2568), [sym_preproc_line] = STATE(2568), @@ -446415,69 +446432,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2568), [sym_preproc_define] = STATE(2568), [sym_preproc_undef] = STATE(2568), - [sym__identifier_token] = ACTIONS(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COLON] = ACTIONS(4242), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4397), - [anon_sym_into] = ACTIONS(4244), - [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), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(3991), + [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_RBRACE] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_in] = ACTIONS(4006), + [anon_sym_where] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_EQ_GT] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_switch] = ACTIONS(4006), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(4006), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = 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), @@ -446488,7 +446511,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(4242), }, [2569] = { [sym_preproc_region] = STATE(2569), @@ -446500,95 +446522,95 @@ 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(4652), - [anon_sym_alias] = ACTIONS(4652), - [anon_sym_global] = ACTIONS(4652), - [anon_sym_static] = ACTIONS(4652), - [anon_sym_LBRACK] = ACTIONS(4654), - [anon_sym_LPAREN] = ACTIONS(4654), - [anon_sym_ref] = ACTIONS(4652), - [anon_sym_LBRACE] = ACTIONS(4654), - [anon_sym_delegate] = ACTIONS(4652), - [anon_sym_async] = ACTIONS(4652), - [anon_sym_file] = ACTIONS(4652), - [anon_sym_new] = ACTIONS(4652), - [anon_sym_where] = ACTIONS(4652), - [anon_sym_notnull] = ACTIONS(4652), - [anon_sym_unmanaged] = ACTIONS(4652), - [anon_sym_checked] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(4654), - [anon_sym_TILDE] = ACTIONS(4654), - [anon_sym_PLUS_PLUS] = ACTIONS(4654), - [anon_sym_DASH_DASH] = ACTIONS(4654), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [anon_sym_PLUS] = ACTIONS(4652), - [anon_sym_DASH] = ACTIONS(4652), - [anon_sym_STAR] = ACTIONS(4654), - [anon_sym_CARET] = ACTIONS(4654), - [anon_sym_AMP] = ACTIONS(4654), - [anon_sym_this] = ACTIONS(4652), - [anon_sym_scoped] = ACTIONS(4652), - [anon_sym_base] = ACTIONS(4652), - [anon_sym_var] = ACTIONS(4652), - [sym_predefined_type] = ACTIONS(4652), - [anon_sym_unchecked] = ACTIONS(4652), - [anon_sym_yield] = ACTIONS(4652), - [anon_sym_default] = ACTIONS(4652), - [anon_sym_throw] = ACTIONS(4652), - [anon_sym_when] = ACTIONS(4652), - [anon_sym_await] = ACTIONS(4652), - [anon_sym_DOT_DOT] = ACTIONS(4654), - [anon_sym_from] = ACTIONS(4652), - [anon_sym_into] = ACTIONS(4652), - [anon_sym_join] = ACTIONS(4652), - [anon_sym_on] = ACTIONS(4652), - [anon_sym_equals] = ACTIONS(4652), - [anon_sym_let] = ACTIONS(4652), - [anon_sym_orderby] = ACTIONS(4652), - [anon_sym_ascending] = ACTIONS(4652), - [anon_sym_descending] = ACTIONS(4652), - [anon_sym_group] = ACTIONS(4652), - [anon_sym_by] = ACTIONS(4652), - [anon_sym_select] = ACTIONS(4652), - [anon_sym_stackalloc] = ACTIONS(4652), - [anon_sym_sizeof] = ACTIONS(4652), - [anon_sym_typeof] = ACTIONS(4652), - [anon_sym___makeref] = ACTIONS(4652), - [anon_sym___reftype] = ACTIONS(4652), - [anon_sym___refvalue] = ACTIONS(4652), - [sym_null_literal] = ACTIONS(4652), - [anon_sym_SQUOTE] = ACTIONS(4654), - [sym_integer_literal] = ACTIONS(4652), - [sym_real_literal] = ACTIONS(4654), - [anon_sym_DQUOTE] = ACTIONS(4654), - [sym_verbatim_string_literal] = ACTIONS(4654), - [sym_grit_metavariable] = ACTIONS(4654), - [aux_sym_preproc_if_token1] = ACTIONS(4654), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4654), - [sym_interpolation_verbatim_start] = ACTIONS(4654), - [sym_interpolation_raw_start] = ACTIONS(4654), - [sym_raw_string_start] = ACTIONS(4654), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_RBRACK] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [anon_sym_RBRACE] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [anon_sym_in] = ACTIONS(4546), + [anon_sym_where] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_EQ_GT] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_switch] = ACTIONS(4546), + [anon_sym_DOT_DOT] = ACTIONS(4546), + [anon_sym_LT_EQ] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_or] = ACTIONS(4548), + [anon_sym_PLUS_EQ] = ACTIONS(4546), + [anon_sym_DASH_EQ] = ACTIONS(4546), + [anon_sym_STAR_EQ] = ACTIONS(4546), + [anon_sym_SLASH_EQ] = ACTIONS(4546), + [anon_sym_PERCENT_EQ] = ACTIONS(4546), + [anon_sym_AMP_EQ] = ACTIONS(4546), + [anon_sym_CARET_EQ] = ACTIONS(4546), + [anon_sym_PIPE_EQ] = ACTIONS(4546), + [anon_sym_LT_LT_EQ] = ACTIONS(4546), + [anon_sym_GT_GT_EQ] = ACTIONS(4546), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4546), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4546), + [anon_sym_BANG_EQ] = ACTIONS(4546), + [anon_sym_AMP_AMP] = ACTIONS(4546), + [anon_sym_PIPE_PIPE] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [sym_op_bitwise_or] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [sym_op_left_shift] = ACTIONS(4548), + [sym_op_right_shift] = ACTIONS(4548), + [sym_op_unsigned_right_shift] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [sym_op_divide] = ACTIONS(4548), + [sym_op_modulo] = ACTIONS(4548), + [sym_op_coalescing] = ACTIONS(4548), + [anon_sym_BANG] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4546), + [anon_sym_from] = ACTIONS(4546), + [anon_sym_join] = ACTIONS(4546), + [anon_sym_on] = ACTIONS(4546), + [anon_sym_equals] = ACTIONS(4546), + [anon_sym_let] = ACTIONS(4546), + [anon_sym_orderby] = ACTIONS(4546), + [anon_sym_group] = ACTIONS(4546), + [anon_sym_by] = ACTIONS(4546), + [anon_sym_select] = ACTIONS(4546), + [anon_sym_as] = ACTIONS(4546), + [anon_sym_is] = ACTIONS(4546), + [anon_sym_DASH_GT] = ACTIONS(4546), + [anon_sym_with] = ACTIONS(4546), + [aux_sym_preproc_if_token3] = ACTIONS(4546), + [aux_sym_preproc_else_token1] = ACTIONS(4546), + [aux_sym_preproc_elif_token1] = ACTIONS(4546), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2570] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2682), - [sym_property_pattern_clause] = STATE(2894), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4841), - [sym__reserved_identifier] = STATE(4670), + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2648), + [sym_property_pattern_clause] = STATE(2912), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4070), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2570), [sym_preproc_endregion] = STATE(2570), [sym_preproc_line] = STATE(2570), @@ -446598,67 +446620,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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), [anon_sym_LT] = ACTIONS(4224), [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4218), [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), [anon_sym_equals] = ACTIONS(4224), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), [anon_sym_as] = ACTIONS(4224), [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446680,75 +446702,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(4524), - [anon_sym_EQ] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4524), - [anon_sym_COLON] = ACTIONS(4528), - [anon_sym_COMMA] = ACTIONS(4524), - [anon_sym_RBRACK] = ACTIONS(4524), - [anon_sym_LPAREN] = ACTIONS(4524), - [anon_sym_RPAREN] = ACTIONS(4524), - [anon_sym_RBRACE] = ACTIONS(4524), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4524), - [anon_sym_where] = ACTIONS(4524), - [anon_sym_QMARK] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4524), - [anon_sym_DASH_DASH] = ACTIONS(4524), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_CARET] = ACTIONS(4530), - [anon_sym_PIPE] = ACTIONS(4530), - [anon_sym_AMP] = ACTIONS(4530), - [anon_sym_LT_LT] = ACTIONS(4530), - [anon_sym_GT_GT] = ACTIONS(4530), - [anon_sym_GT_GT_GT] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4524), - [anon_sym_BANG_EQ] = ACTIONS(4524), - [anon_sym_GT_EQ] = ACTIONS(4524), - [anon_sym_LT_EQ] = ACTIONS(4524), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_EQ_GT] = ACTIONS(4524), - [anon_sym_switch] = ACTIONS(4524), - [anon_sym_DOT_DOT] = ACTIONS(4524), - [anon_sym_and] = ACTIONS(4524), - [anon_sym_or] = ACTIONS(4530), - [anon_sym_PLUS_EQ] = ACTIONS(4528), - [anon_sym_DASH_EQ] = ACTIONS(4528), - [anon_sym_STAR_EQ] = ACTIONS(4528), - [anon_sym_SLASH_EQ] = ACTIONS(4528), - [anon_sym_PERCENT_EQ] = ACTIONS(4528), - [anon_sym_AMP_EQ] = ACTIONS(4528), - [anon_sym_CARET_EQ] = ACTIONS(4528), - [anon_sym_PIPE_EQ] = ACTIONS(4528), - [anon_sym_LT_LT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4524), - [anon_sym_PIPE_PIPE] = ACTIONS(4524), - [sym_op_coalescing] = ACTIONS(4530), - [anon_sym_from] = ACTIONS(4524), - [anon_sym_join] = ACTIONS(4524), - [anon_sym_on] = ACTIONS(4524), - [anon_sym_equals] = ACTIONS(4524), - [anon_sym_let] = ACTIONS(4524), - [anon_sym_orderby] = ACTIONS(4524), - [anon_sym_group] = ACTIONS(4524), - [anon_sym_by] = ACTIONS(4524), - [anon_sym_select] = ACTIONS(4524), - [anon_sym_as] = ACTIONS(4524), - [anon_sym_is] = ACTIONS(4524), - [anon_sym_DASH_GT] = ACTIONS(4524), - [anon_sym_with] = ACTIONS(4524), - [aux_sym_preproc_if_token3] = ACTIONS(4524), - [aux_sym_preproc_else_token1] = ACTIONS(4524), - [aux_sym_preproc_elif_token1] = ACTIONS(4524), + [sym__identifier_token] = ACTIONS(4634), + [anon_sym_alias] = ACTIONS(4634), + [anon_sym_global] = ACTIONS(4634), + [anon_sym_static] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4636), + [anon_sym_LPAREN] = ACTIONS(4636), + [anon_sym_ref] = ACTIONS(4634), + [anon_sym_LBRACE] = ACTIONS(4636), + [anon_sym_delegate] = ACTIONS(4634), + [anon_sym_async] = ACTIONS(4634), + [anon_sym_file] = ACTIONS(4634), + [anon_sym_new] = ACTIONS(4634), + [anon_sym_where] = ACTIONS(4634), + [anon_sym_notnull] = ACTIONS(4634), + [anon_sym_unmanaged] = ACTIONS(4634), + [anon_sym_checked] = ACTIONS(4634), + [anon_sym_TILDE] = ACTIONS(4636), + [anon_sym_this] = ACTIONS(4634), + [anon_sym_scoped] = ACTIONS(4634), + [anon_sym_base] = ACTIONS(4634), + [anon_sym_var] = ACTIONS(4634), + [anon_sym_STAR] = ACTIONS(4636), + [sym_predefined_type] = ACTIONS(4634), + [anon_sym_unchecked] = ACTIONS(4634), + [anon_sym_yield] = ACTIONS(4634), + [anon_sym_default] = ACTIONS(4634), + [anon_sym_throw] = ACTIONS(4634), + [anon_sym_when] = ACTIONS(4634), + [anon_sym_await] = ACTIONS(4634), + [anon_sym_DOT_DOT] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_CARET] = ACTIONS(4636), + [anon_sym_PLUS] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4636), + [anon_sym_PLUS_PLUS] = ACTIONS(4636), + [anon_sym_DASH_DASH] = ACTIONS(4636), + [anon_sym_true] = ACTIONS(4634), + [anon_sym_false] = ACTIONS(4634), + [anon_sym_from] = ACTIONS(4634), + [anon_sym_into] = ACTIONS(4634), + [anon_sym_join] = ACTIONS(4634), + [anon_sym_on] = ACTIONS(4634), + [anon_sym_equals] = ACTIONS(4634), + [anon_sym_let] = ACTIONS(4634), + [anon_sym_orderby] = ACTIONS(4634), + [anon_sym_ascending] = ACTIONS(4634), + [anon_sym_descending] = ACTIONS(4634), + [anon_sym_group] = ACTIONS(4634), + [anon_sym_by] = ACTIONS(4634), + [anon_sym_select] = ACTIONS(4634), + [anon_sym_stackalloc] = ACTIONS(4634), + [anon_sym_sizeof] = ACTIONS(4634), + [anon_sym_typeof] = ACTIONS(4634), + [anon_sym___makeref] = ACTIONS(4634), + [anon_sym___reftype] = ACTIONS(4634), + [anon_sym___refvalue] = ACTIONS(4634), + [sym_null_literal] = ACTIONS(4634), + [anon_sym_SQUOTE] = ACTIONS(4636), + [sym_integer_literal] = ACTIONS(4634), + [sym_real_literal] = ACTIONS(4636), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym_verbatim_string_literal] = ACTIONS(4636), + [sym_grit_metavariable] = ACTIONS(4636), + [aux_sym_preproc_if_token1] = ACTIONS(4636), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446759,16 +446777,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(4636), + [sym_interpolation_verbatim_start] = ACTIONS(4636), + [sym_interpolation_raw_start] = ACTIONS(4636), + [sym_raw_string_start] = ACTIONS(4636), }, [2572] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2716), - [sym_property_pattern_clause] = STATE(2861), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4841), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2572), [sym_preproc_endregion] = STATE(2572), [sym_preproc_line] = STATE(2572), @@ -446778,67 +446792,75 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4216), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4216), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4220), + [anon_sym_SEMI] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4538), + [anon_sym_COLON] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4538), + [anon_sym_RBRACK] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4538), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_RBRACE] = ACTIONS(4538), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_in] = ACTIONS(4538), + [anon_sym_where] = ACTIONS(4538), + [anon_sym_QMARK] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_EQ_GT] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_switch] = ACTIONS(4538), + [anon_sym_DOT_DOT] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4538), + [anon_sym_and] = ACTIONS(4538), + [anon_sym_or] = ACTIONS(4536), + [anon_sym_PLUS_EQ] = ACTIONS(4538), + [anon_sym_DASH_EQ] = ACTIONS(4538), + [anon_sym_STAR_EQ] = ACTIONS(4538), + [anon_sym_SLASH_EQ] = ACTIONS(4538), + [anon_sym_PERCENT_EQ] = ACTIONS(4538), + [anon_sym_AMP_EQ] = ACTIONS(4538), + [anon_sym_CARET_EQ] = ACTIONS(4538), + [anon_sym_PIPE_EQ] = ACTIONS(4538), + [anon_sym_LT_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4538), + [anon_sym_BANG_EQ] = ACTIONS(4538), + [anon_sym_AMP_AMP] = ACTIONS(4538), + [anon_sym_PIPE_PIPE] = ACTIONS(4538), + [anon_sym_AMP] = ACTIONS(4536), + [sym_op_bitwise_or] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [sym_op_left_shift] = ACTIONS(4536), + [sym_op_right_shift] = ACTIONS(4536), + [sym_op_unsigned_right_shift] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [sym_op_divide] = ACTIONS(4536), + [sym_op_modulo] = ACTIONS(4536), + [sym_op_coalescing] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PLUS_PLUS] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4538), + [anon_sym_from] = ACTIONS(4538), + [anon_sym_join] = ACTIONS(4538), + [anon_sym_on] = ACTIONS(4538), + [anon_sym_equals] = ACTIONS(4538), + [anon_sym_let] = ACTIONS(4538), + [anon_sym_orderby] = ACTIONS(4538), + [anon_sym_group] = ACTIONS(4538), + [anon_sym_by] = ACTIONS(4538), + [anon_sym_select] = ACTIONS(4538), + [anon_sym_as] = ACTIONS(4538), + [anon_sym_is] = ACTIONS(4538), + [anon_sym_DASH_GT] = ACTIONS(4538), + [anon_sym_with] = ACTIONS(4538), + [aux_sym_preproc_if_token3] = ACTIONS(4538), + [aux_sym_preproc_else_token1] = ACTIONS(4538), + [aux_sym_preproc_elif_token1] = ACTIONS(4538), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446851,14 +446873,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2573] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2708), - [sym_property_pattern_clause] = STATE(2906), - [sym__variable_designation] = STATE(5503), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5486), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(2573), [sym_preproc_endregion] = STATE(2573), [sym_preproc_line] = STATE(2573), @@ -446868,88 +446882,6 @@ 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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4216), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4212), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_GT_GT_GT] = ACTIONS(4212), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4228), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [sym_op_coalescing] = ACTIONS(4212), - [anon_sym_from] = ACTIONS(4216), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4216), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4216), - [anon_sym_orderby] = ACTIONS(4216), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4216), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4216), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4232), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2574] = { - [sym_preproc_region] = STATE(2574), - [sym_preproc_endregion] = STATE(2574), - [sym_preproc_line] = STATE(2574), - [sym_preproc_pragma] = STATE(2574), - [sym_preproc_nullable] = STATE(2574), - [sym_preproc_error] = STATE(2574), - [sym_preproc_warning] = STATE(2574), - [sym_preproc_define] = STATE(2574), - [sym_preproc_undef] = STATE(2574), [anon_sym_SEMI] = ACTIONS(4554), [anon_sym_EQ] = ACTIONS(4556), [anon_sym_LBRACK] = ACTIONS(4554), @@ -446964,28 +446896,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(4554), [anon_sym_where] = ACTIONS(4554), [anon_sym_QMARK] = ACTIONS(4556), - [anon_sym_BANG] = ACTIONS(4556), - [anon_sym_PLUS_PLUS] = ACTIONS(4554), - [anon_sym_DASH_DASH] = ACTIONS(4554), - [anon_sym_PLUS] = ACTIONS(4556), - [anon_sym_DASH] = ACTIONS(4556), - [anon_sym_STAR] = ACTIONS(4556), - [anon_sym_SLASH] = ACTIONS(4556), - [anon_sym_PERCENT] = ACTIONS(4556), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_PIPE] = ACTIONS(4556), - [anon_sym_AMP] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4556), - [anon_sym_GT_GT] = ACTIONS(4556), - [anon_sym_GT_GT_GT] = ACTIONS(4556), - [anon_sym_EQ_EQ] = ACTIONS(4554), - [anon_sym_BANG_EQ] = ACTIONS(4554), - [anon_sym_GT_EQ] = ACTIONS(4554), - [anon_sym_LT_EQ] = ACTIONS(4554), [anon_sym_DOT] = ACTIONS(4556), [anon_sym_EQ_GT] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4556), [anon_sym_switch] = ACTIONS(4554), [anon_sym_DOT_DOT] = ACTIONS(4554), + [anon_sym_LT_EQ] = ACTIONS(4554), + [anon_sym_GT_EQ] = ACTIONS(4554), [anon_sym_and] = ACTIONS(4554), [anon_sym_or] = ACTIONS(4556), [anon_sym_PLUS_EQ] = ACTIONS(4554), @@ -447000,9 +446917,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4554), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4554), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4554), + [anon_sym_EQ_EQ] = ACTIONS(4554), + [anon_sym_BANG_EQ] = ACTIONS(4554), [anon_sym_AMP_AMP] = ACTIONS(4554), [anon_sym_PIPE_PIPE] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [sym_op_bitwise_or] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [sym_op_left_shift] = ACTIONS(4556), + [sym_op_right_shift] = ACTIONS(4556), + [sym_op_unsigned_right_shift] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4556), + [anon_sym_DASH] = ACTIONS(4556), + [sym_op_divide] = ACTIONS(4556), + [sym_op_modulo] = ACTIONS(4556), [sym_op_coalescing] = ACTIONS(4556), + [anon_sym_BANG] = ACTIONS(4556), + [anon_sym_PLUS_PLUS] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4554), [anon_sym_from] = ACTIONS(4554), [anon_sym_join] = ACTIONS(4554), [anon_sym_on] = ACTIONS(4554), @@ -447030,7 +446962,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2574] = { + [sym_preproc_region] = STATE(2574), + [sym_preproc_endregion] = STATE(2574), + [sym_preproc_line] = STATE(2574), + [sym_preproc_pragma] = STATE(2574), + [sym_preproc_nullable] = STATE(2574), + [sym_preproc_error] = STATE(2574), + [sym_preproc_warning] = STATE(2574), + [sym_preproc_define] = STATE(2574), + [sym_preproc_undef] = STATE(2574), + [sym__identifier_token] = ACTIONS(4638), + [anon_sym_alias] = ACTIONS(4638), + [anon_sym_global] = ACTIONS(4638), + [anon_sym_static] = ACTIONS(4638), + [anon_sym_LBRACK] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4640), + [anon_sym_ref] = ACTIONS(4638), + [anon_sym_LBRACE] = ACTIONS(4640), + [anon_sym_delegate] = ACTIONS(4638), + [anon_sym_async] = ACTIONS(4638), + [anon_sym_file] = ACTIONS(4638), + [anon_sym_new] = ACTIONS(4638), + [anon_sym_where] = ACTIONS(4638), + [anon_sym_notnull] = ACTIONS(4638), + [anon_sym_unmanaged] = ACTIONS(4638), + [anon_sym_checked] = ACTIONS(4638), + [anon_sym_TILDE] = ACTIONS(4640), + [anon_sym_this] = ACTIONS(4638), + [anon_sym_scoped] = ACTIONS(4638), + [anon_sym_base] = ACTIONS(4638), + [anon_sym_var] = ACTIONS(4638), + [anon_sym_STAR] = ACTIONS(4640), + [sym_predefined_type] = ACTIONS(4638), + [anon_sym_unchecked] = ACTIONS(4638), + [anon_sym_yield] = ACTIONS(4638), + [anon_sym_default] = ACTIONS(4638), + [anon_sym_throw] = ACTIONS(4638), + [anon_sym_when] = ACTIONS(4638), + [anon_sym_await] = ACTIONS(4638), + [anon_sym_DOT_DOT] = ACTIONS(4640), + [anon_sym_AMP] = ACTIONS(4640), + [anon_sym_CARET] = ACTIONS(4640), + [anon_sym_PLUS] = ACTIONS(4638), + [anon_sym_DASH] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(4640), + [anon_sym_PLUS_PLUS] = ACTIONS(4640), + [anon_sym_DASH_DASH] = ACTIONS(4640), + [anon_sym_true] = ACTIONS(4638), + [anon_sym_false] = ACTIONS(4638), + [anon_sym_from] = ACTIONS(4638), + [anon_sym_into] = ACTIONS(4638), + [anon_sym_join] = ACTIONS(4638), + [anon_sym_on] = ACTIONS(4638), + [anon_sym_equals] = ACTIONS(4638), + [anon_sym_let] = ACTIONS(4638), + [anon_sym_orderby] = ACTIONS(4638), + [anon_sym_ascending] = ACTIONS(4638), + [anon_sym_descending] = ACTIONS(4638), + [anon_sym_group] = ACTIONS(4638), + [anon_sym_by] = ACTIONS(4638), + [anon_sym_select] = ACTIONS(4638), + [anon_sym_stackalloc] = ACTIONS(4638), + [anon_sym_sizeof] = ACTIONS(4638), + [anon_sym_typeof] = ACTIONS(4638), + [anon_sym___makeref] = ACTIONS(4638), + [anon_sym___reftype] = ACTIONS(4638), + [anon_sym___refvalue] = ACTIONS(4638), + [sym_null_literal] = ACTIONS(4638), + [anon_sym_SQUOTE] = ACTIONS(4640), + [sym_integer_literal] = ACTIONS(4638), + [sym_real_literal] = ACTIONS(4640), + [anon_sym_DQUOTE] = ACTIONS(4640), + [sym_verbatim_string_literal] = ACTIONS(4640), + [sym_grit_metavariable] = ACTIONS(4640), + [aux_sym_preproc_if_token1] = ACTIONS(4640), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(4640), + [sym_interpolation_verbatim_start] = ACTIONS(4640), + [sym_interpolation_raw_start] = ACTIONS(4640), + [sym_raw_string_start] = ACTIONS(4640), + }, [2575] = { + [sym_parameter_list] = STATE(7966), + [sym_positional_pattern_clause] = STATE(2650), + [sym_property_pattern_clause] = STATE(2836), + [sym__variable_designation] = STATE(4272), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(4070), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2575), [sym_preproc_endregion] = STATE(2575), [sym_preproc_line] = STATE(2575), @@ -447040,95 +447070,99 @@ 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(4656), - [anon_sym_alias] = ACTIONS(4656), - [anon_sym_global] = ACTIONS(4656), - [anon_sym_static] = ACTIONS(4656), - [anon_sym_LBRACK] = ACTIONS(4658), - [anon_sym_LPAREN] = ACTIONS(4658), - [anon_sym_ref] = ACTIONS(4656), - [anon_sym_LBRACE] = ACTIONS(4658), - [anon_sym_delegate] = ACTIONS(4656), - [anon_sym_async] = ACTIONS(4656), - [anon_sym_file] = ACTIONS(4656), - [anon_sym_new] = ACTIONS(4656), - [anon_sym_where] = ACTIONS(4656), - [anon_sym_notnull] = ACTIONS(4656), - [anon_sym_unmanaged] = ACTIONS(4656), - [anon_sym_checked] = ACTIONS(4656), - [anon_sym_BANG] = ACTIONS(4658), - [anon_sym_TILDE] = ACTIONS(4658), - [anon_sym_PLUS_PLUS] = ACTIONS(4658), - [anon_sym_DASH_DASH] = ACTIONS(4658), - [anon_sym_true] = ACTIONS(4656), - [anon_sym_false] = ACTIONS(4656), - [anon_sym_PLUS] = ACTIONS(4656), - [anon_sym_DASH] = ACTIONS(4656), - [anon_sym_STAR] = ACTIONS(4658), - [anon_sym_CARET] = ACTIONS(4658), - [anon_sym_AMP] = ACTIONS(4658), - [anon_sym_this] = ACTIONS(4656), - [anon_sym_scoped] = ACTIONS(4656), - [anon_sym_base] = ACTIONS(4656), - [anon_sym_var] = ACTIONS(4656), - [sym_predefined_type] = ACTIONS(4656), - [anon_sym_unchecked] = ACTIONS(4656), - [anon_sym_yield] = ACTIONS(4656), - [anon_sym_default] = ACTIONS(4656), - [anon_sym_throw] = ACTIONS(4656), - [anon_sym_when] = ACTIONS(4656), - [anon_sym_await] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4658), - [anon_sym_from] = ACTIONS(4656), - [anon_sym_into] = ACTIONS(4656), - [anon_sym_join] = ACTIONS(4656), - [anon_sym_on] = ACTIONS(4656), - [anon_sym_equals] = ACTIONS(4656), - [anon_sym_let] = ACTIONS(4656), - [anon_sym_orderby] = ACTIONS(4656), - [anon_sym_ascending] = ACTIONS(4656), - [anon_sym_descending] = ACTIONS(4656), - [anon_sym_group] = ACTIONS(4656), - [anon_sym_by] = ACTIONS(4656), - [anon_sym_select] = ACTIONS(4656), - [anon_sym_stackalloc] = ACTIONS(4656), - [anon_sym_sizeof] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(4656), - [anon_sym___makeref] = ACTIONS(4656), - [anon_sym___reftype] = ACTIONS(4656), - [anon_sym___refvalue] = ACTIONS(4656), - [sym_null_literal] = ACTIONS(4656), - [anon_sym_SQUOTE] = ACTIONS(4658), - [sym_integer_literal] = ACTIONS(4656), - [sym_real_literal] = ACTIONS(4658), - [anon_sym_DQUOTE] = ACTIONS(4658), - [sym_verbatim_string_literal] = ACTIONS(4658), - [sym_grit_metavariable] = ACTIONS(4658), - [aux_sym_preproc_if_token1] = ACTIONS(4658), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4658), - [sym_interpolation_verbatim_start] = ACTIONS(4658), - [sym_interpolation_raw_start] = ACTIONS(4658), - [sym_raw_string_start] = ACTIONS(4658), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4224), + [anon_sym_GT] = ACTIONS(4224), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4224), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_and] = ACTIONS(4228), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4224), + [sym_op_bitwise_or] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4220), + [sym_op_left_shift] = ACTIONS(4220), + [sym_op_right_shift] = ACTIONS(4224), + [sym_op_unsigned_right_shift] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [sym_op_divide] = ACTIONS(4224), + [sym_op_modulo] = ACTIONS(4220), + [sym_op_coalescing] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4224), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4224), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4224), + [anon_sym_DASH_GT] = ACTIONS(4220), + [anon_sym_with] = ACTIONS(4224), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2576] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2674), - [sym_property_pattern_clause] = STATE(2834), - [sym__variable_designation] = STATE(5503), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5486), - [sym__reserved_identifier] = STATE(3398), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7854), + [sym__name] = STATE(6206), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6047), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2576), [sym_preproc_endregion] = STATE(2576), [sym_preproc_line] = STATE(2576), @@ -447138,67 +447172,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2576), [sym_preproc_define] = STATE(2576), [sym_preproc_undef] = STATE(2576), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4197), - [anon_sym_var] = ACTIONS(4197), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4197), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4224), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4204), + [aux_sym_using_directive_repeat1] = STATE(6048), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2579), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(657), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(4642), + [anon_sym_static] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4644), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(4288), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(657), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447211,14 +447233,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2577] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2716), - [sym_property_pattern_clause] = STATE(2861), - [sym__variable_designation] = STATE(4852), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(4841), - [sym__reserved_identifier] = STATE(4670), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7668), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2577), [sym_preproc_endregion] = STATE(2577), [sym_preproc_line] = STATE(2577), @@ -447228,67 +447262,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2577), [sym_preproc_define] = STATE(2577), [sym_preproc_undef] = STATE(2577), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4224), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4220), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2595), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(657), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(657), + [anon_sym_static] = ACTIONS(657), + [anon_sym_LPAREN] = ACTIONS(4626), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(4288), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(657), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447301,14 +447322,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2578] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2708), - [sym_property_pattern_clause] = STATE(2906), - [sym__variable_designation] = STATE(5503), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(5486), - [sym__reserved_identifier] = STATE(3510), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(8106), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2578), [sym_preproc_endregion] = STATE(2578), [sym_preproc_line] = STATE(2578), @@ -447318,67 +447351,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2578), [sym_preproc_define] = STATE(2578), [sym_preproc_undef] = STATE(2578), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4228), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4224), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4232), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2587), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(657), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(657), + [anon_sym_static] = ACTIONS(657), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(4288), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(657), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447391,15 +447411,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2579] = { - [sym__name] = STATE(5074), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_ref_type] = STATE(3762), - [sym__scoped_base_type] = STATE(3735), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7663), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2579), [sym_preproc_endregion] = STATE(2579), [sym_preproc_line] = STATE(2579), @@ -447409,66 +447440,54 @@ 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(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(4660), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(4197), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(4197), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4201), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4201), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(4204), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(657), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(657), + [anon_sym_static] = ACTIONS(657), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(4288), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(657), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447481,6 +447500,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2580] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7849), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2580), [sym_preproc_endregion] = STATE(2580), [sym_preproc_line] = STATE(2580), @@ -447490,87 +447529,86 @@ 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(4662), - [anon_sym_alias] = ACTIONS(4662), - [anon_sym_global] = ACTIONS(4662), - [anon_sym_static] = ACTIONS(4662), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_LPAREN] = ACTIONS(4664), - [anon_sym_ref] = ACTIONS(4662), - [anon_sym_LBRACE] = ACTIONS(4664), - [anon_sym_delegate] = ACTIONS(4662), - [anon_sym_async] = ACTIONS(4662), - [anon_sym_file] = ACTIONS(4662), - [anon_sym_new] = ACTIONS(4662), - [anon_sym_where] = ACTIONS(4662), - [anon_sym_notnull] = ACTIONS(4662), - [anon_sym_unmanaged] = ACTIONS(4662), - [anon_sym_checked] = ACTIONS(4662), - [anon_sym_BANG] = ACTIONS(4664), - [anon_sym_TILDE] = ACTIONS(4664), - [anon_sym_PLUS_PLUS] = ACTIONS(4664), - [anon_sym_DASH_DASH] = ACTIONS(4664), - [anon_sym_true] = ACTIONS(4662), - [anon_sym_false] = ACTIONS(4662), - [anon_sym_PLUS] = ACTIONS(4662), - [anon_sym_DASH] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(4664), - [anon_sym_CARET] = ACTIONS(4664), - [anon_sym_AMP] = ACTIONS(4664), - [anon_sym_this] = ACTIONS(4662), - [anon_sym_scoped] = ACTIONS(4662), - [anon_sym_base] = ACTIONS(4662), - [anon_sym_var] = ACTIONS(4662), - [sym_predefined_type] = ACTIONS(4662), - [anon_sym_unchecked] = ACTIONS(4662), - [anon_sym_yield] = ACTIONS(4662), - [anon_sym_default] = ACTIONS(4662), - [anon_sym_throw] = ACTIONS(4662), - [anon_sym_when] = ACTIONS(4662), - [anon_sym_await] = ACTIONS(4662), - [anon_sym_DOT_DOT] = ACTIONS(4664), - [anon_sym_from] = ACTIONS(4662), - [anon_sym_into] = ACTIONS(4662), - [anon_sym_join] = ACTIONS(4662), - [anon_sym_on] = ACTIONS(4662), - [anon_sym_equals] = ACTIONS(4662), - [anon_sym_let] = ACTIONS(4662), - [anon_sym_orderby] = ACTIONS(4662), - [anon_sym_ascending] = ACTIONS(4662), - [anon_sym_descending] = ACTIONS(4662), - [anon_sym_group] = ACTIONS(4662), - [anon_sym_by] = ACTIONS(4662), - [anon_sym_select] = ACTIONS(4662), - [anon_sym_stackalloc] = ACTIONS(4662), - [anon_sym_sizeof] = ACTIONS(4662), - [anon_sym_typeof] = ACTIONS(4662), - [anon_sym___makeref] = ACTIONS(4662), - [anon_sym___reftype] = ACTIONS(4662), - [anon_sym___refvalue] = ACTIONS(4662), - [sym_null_literal] = ACTIONS(4662), - [anon_sym_SQUOTE] = ACTIONS(4664), - [sym_integer_literal] = ACTIONS(4662), - [sym_real_literal] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(4664), - [sym_verbatim_string_literal] = ACTIONS(4664), - [sym_grit_metavariable] = ACTIONS(4664), - [aux_sym_preproc_if_token1] = ACTIONS(4664), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4664), - [sym_interpolation_verbatim_start] = ACTIONS(4664), - [sym_interpolation_raw_start] = ACTIONS(4664), - [sym_raw_string_start] = ACTIONS(4664), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2604), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(657), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(657), + [anon_sym_static] = ACTIONS(657), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(4288), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(657), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = 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), }, [2581] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7789), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2581), [sym_preproc_endregion] = STATE(2581), [sym_preproc_line] = STATE(2581), @@ -447580,75 +447618,54 @@ 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(4558), - [anon_sym_EQ] = ACTIONS(4560), - [anon_sym_LBRACK] = ACTIONS(4558), - [anon_sym_COLON] = ACTIONS(4558), - [anon_sym_COMMA] = ACTIONS(4558), - [anon_sym_RBRACK] = ACTIONS(4558), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_RPAREN] = ACTIONS(4558), - [anon_sym_RBRACE] = ACTIONS(4558), - [anon_sym_LT] = ACTIONS(4560), - [anon_sym_GT] = ACTIONS(4560), - [anon_sym_in] = ACTIONS(4558), - [anon_sym_where] = ACTIONS(4558), - [anon_sym_QMARK] = ACTIONS(4560), - [anon_sym_BANG] = ACTIONS(4560), - [anon_sym_PLUS_PLUS] = ACTIONS(4558), - [anon_sym_DASH_DASH] = ACTIONS(4558), - [anon_sym_PLUS] = ACTIONS(4560), - [anon_sym_DASH] = ACTIONS(4560), - [anon_sym_STAR] = ACTIONS(4560), - [anon_sym_SLASH] = ACTIONS(4560), - [anon_sym_PERCENT] = ACTIONS(4560), - [anon_sym_CARET] = ACTIONS(4560), - [anon_sym_PIPE] = ACTIONS(4560), - [anon_sym_AMP] = ACTIONS(4560), - [anon_sym_LT_LT] = ACTIONS(4560), - [anon_sym_GT_GT] = ACTIONS(4560), - [anon_sym_GT_GT_GT] = ACTIONS(4560), - [anon_sym_EQ_EQ] = ACTIONS(4558), - [anon_sym_BANG_EQ] = ACTIONS(4558), - [anon_sym_GT_EQ] = ACTIONS(4558), - [anon_sym_LT_EQ] = ACTIONS(4558), - [anon_sym_DOT] = ACTIONS(4560), - [anon_sym_EQ_GT] = ACTIONS(4558), - [anon_sym_switch] = ACTIONS(4558), - [anon_sym_DOT_DOT] = ACTIONS(4558), - [anon_sym_and] = ACTIONS(4558), - [anon_sym_or] = ACTIONS(4560), - [anon_sym_PLUS_EQ] = ACTIONS(4558), - [anon_sym_DASH_EQ] = ACTIONS(4558), - [anon_sym_STAR_EQ] = ACTIONS(4558), - [anon_sym_SLASH_EQ] = ACTIONS(4558), - [anon_sym_PERCENT_EQ] = ACTIONS(4558), - [anon_sym_AMP_EQ] = ACTIONS(4558), - [anon_sym_CARET_EQ] = ACTIONS(4558), - [anon_sym_PIPE_EQ] = ACTIONS(4558), - [anon_sym_LT_LT_EQ] = ACTIONS(4558), - [anon_sym_GT_GT_EQ] = ACTIONS(4558), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4558), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4558), - [anon_sym_AMP_AMP] = ACTIONS(4558), - [anon_sym_PIPE_PIPE] = ACTIONS(4558), - [sym_op_coalescing] = ACTIONS(4560), - [anon_sym_from] = ACTIONS(4558), - [anon_sym_join] = ACTIONS(4558), - [anon_sym_on] = ACTIONS(4558), - [anon_sym_equals] = ACTIONS(4558), - [anon_sym_let] = ACTIONS(4558), - [anon_sym_orderby] = ACTIONS(4558), - [anon_sym_group] = ACTIONS(4558), - [anon_sym_by] = ACTIONS(4558), - [anon_sym_select] = ACTIONS(4558), - [anon_sym_as] = ACTIONS(4558), - [anon_sym_is] = ACTIONS(4558), - [anon_sym_DASH_GT] = ACTIONS(4558), - [anon_sym_with] = ACTIONS(4558), - [aux_sym_preproc_if_token3] = ACTIONS(4558), - [aux_sym_preproc_else_token1] = ACTIONS(4558), - [aux_sym_preproc_elif_token1] = ACTIONS(4558), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(657), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(657), + [anon_sym_static] = ACTIONS(657), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(4288), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(657), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447661,6 +447678,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2582] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7990), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2582), [sym_preproc_endregion] = STATE(2582), [sym_preproc_line] = STATE(2582), @@ -447670,108 +447707,70 @@ 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(4666), - [anon_sym_alias] = ACTIONS(4666), - [anon_sym_global] = ACTIONS(4666), - [anon_sym_static] = ACTIONS(4666), - [anon_sym_LBRACK] = ACTIONS(4668), - [anon_sym_LPAREN] = ACTIONS(4668), - [anon_sym_ref] = ACTIONS(4666), - [anon_sym_LBRACE] = ACTIONS(4668), - [anon_sym_delegate] = ACTIONS(4666), - [anon_sym_async] = ACTIONS(4666), - [anon_sym_file] = ACTIONS(4666), - [anon_sym_new] = ACTIONS(4666), - [anon_sym_where] = ACTIONS(4666), - [anon_sym_notnull] = ACTIONS(4666), - [anon_sym_unmanaged] = ACTIONS(4666), - [anon_sym_checked] = ACTIONS(4666), - [anon_sym_BANG] = ACTIONS(4668), - [anon_sym_TILDE] = ACTIONS(4668), - [anon_sym_PLUS_PLUS] = ACTIONS(4668), - [anon_sym_DASH_DASH] = ACTIONS(4668), - [anon_sym_true] = ACTIONS(4666), - [anon_sym_false] = ACTIONS(4666), - [anon_sym_PLUS] = ACTIONS(4666), - [anon_sym_DASH] = ACTIONS(4666), - [anon_sym_STAR] = ACTIONS(4668), - [anon_sym_CARET] = ACTIONS(4668), - [anon_sym_AMP] = ACTIONS(4668), - [anon_sym_this] = ACTIONS(4666), - [anon_sym_scoped] = ACTIONS(4666), - [anon_sym_base] = ACTIONS(4666), - [anon_sym_var] = ACTIONS(4666), - [sym_predefined_type] = ACTIONS(4666), - [anon_sym_unchecked] = ACTIONS(4666), - [anon_sym_yield] = ACTIONS(4666), - [anon_sym_default] = ACTIONS(4666), - [anon_sym_throw] = ACTIONS(4666), - [anon_sym_when] = ACTIONS(4666), - [anon_sym_await] = ACTIONS(4666), - [anon_sym_DOT_DOT] = ACTIONS(4668), - [anon_sym_from] = ACTIONS(4666), - [anon_sym_into] = ACTIONS(4666), - [anon_sym_join] = ACTIONS(4666), - [anon_sym_on] = ACTIONS(4666), - [anon_sym_equals] = ACTIONS(4666), - [anon_sym_let] = ACTIONS(4666), - [anon_sym_orderby] = ACTIONS(4666), - [anon_sym_ascending] = ACTIONS(4666), - [anon_sym_descending] = ACTIONS(4666), - [anon_sym_group] = ACTIONS(4666), - [anon_sym_by] = ACTIONS(4666), - [anon_sym_select] = ACTIONS(4666), - [anon_sym_stackalloc] = ACTIONS(4666), - [anon_sym_sizeof] = ACTIONS(4666), - [anon_sym_typeof] = ACTIONS(4666), - [anon_sym___makeref] = ACTIONS(4666), - [anon_sym___reftype] = ACTIONS(4666), - [anon_sym___refvalue] = ACTIONS(4666), - [sym_null_literal] = ACTIONS(4666), - [anon_sym_SQUOTE] = ACTIONS(4668), - [sym_integer_literal] = ACTIONS(4666), - [sym_real_literal] = ACTIONS(4668), - [anon_sym_DQUOTE] = ACTIONS(4668), - [sym_verbatim_string_literal] = ACTIONS(4668), - [sym_grit_metavariable] = ACTIONS(4668), - [aux_sym_preproc_if_token1] = ACTIONS(4668), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4668), - [sym_interpolation_verbatim_start] = ACTIONS(4668), - [sym_interpolation_raw_start] = ACTIONS(4668), - [sym_raw_string_start] = ACTIONS(4668), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(657), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(657), + [anon_sym_static] = ACTIONS(657), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(4288), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(657), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = 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), }, [2583] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym_parameter_list] = STATE(7966), + [sym__lambda_parameters] = STATE(7646), + [sym_identifier] = STATE(8006), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(2583), [sym_preproc_endregion] = STATE(2583), [sym_preproc_line] = STATE(2583), @@ -447781,86 +447780,87 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4280), + [anon_sym_alias] = ACTIONS(4280), + [anon_sym_global] = ACTIONS(4280), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_COLON] = ACTIONS(4282), + [anon_sym_COMMA] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_file] = ACTIONS(4280), + [anon_sym_LT] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4280), + [anon_sym_where] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_notnull] = ACTIONS(4280), + [anon_sym_unmanaged] = ACTIONS(4280), + [anon_sym_DOT] = ACTIONS(4280), + [anon_sym_scoped] = ACTIONS(4280), + [anon_sym_var] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_yield] = ACTIONS(4280), + [anon_sym_switch] = ACTIONS(4280), + [anon_sym_when] = ACTIONS(4280), + [sym_discard] = ACTIONS(4280), + [anon_sym_DOT_DOT] = ACTIONS(4282), + [anon_sym_LT_EQ] = ACTIONS(4282), + [anon_sym_GT_EQ] = ACTIONS(4282), + [anon_sym_and] = ACTIONS(4280), + [anon_sym_or] = ACTIONS(4280), + [anon_sym_EQ_EQ] = ACTIONS(4282), + [anon_sym_BANG_EQ] = ACTIONS(4282), + [anon_sym_AMP_AMP] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4282), + [anon_sym_AMP] = ACTIONS(4280), + [sym_op_bitwise_or] = ACTIONS(4280), + [anon_sym_CARET] = ACTIONS(4282), + [sym_op_left_shift] = ACTIONS(4282), + [sym_op_right_shift] = ACTIONS(4280), + [sym_op_unsigned_right_shift] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + [sym_op_divide] = ACTIONS(4280), + [sym_op_modulo] = ACTIONS(4282), + [sym_op_coalescing] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [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), + [anon_sym_as] = ACTIONS(4280), + [anon_sym_is] = ACTIONS(4280), + [anon_sym_DASH_GT] = ACTIONS(4282), + [anon_sym_with] = ACTIONS(4280), + [sym_grit_metavariable] = ACTIONS(4282), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4282), }, [2584] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym_property_pattern_clause] = STATE(2637), + [sym__variable_designation] = STATE(4578), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2584), [sym_preproc_endregion] = STATE(2584), [sym_preproc_line] = STATE(2584), @@ -447870,53 +447870,69 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4250), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4252), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447929,26 +447945,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2585] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(7776), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7859), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2585), [sym_preproc_endregion] = STATE(2585), [sym_preproc_line] = STATE(2585), @@ -447958,23 +447974,23 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2581), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_unsafe] = ACTIONS(657), [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_LPAREN] = ACTIONS(4650), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), [anon_sym_readonly] = ACTIONS(657), [anon_sym_abstract] = ACTIONS(657), [anon_sym_async] = ACTIONS(657), [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -448005,7 +448021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448018,27 +448034,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2586] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7677), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6221), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2586), [sym_preproc_endregion] = STATE(2586), [sym_preproc_line] = STATE(2586), @@ -448048,111 +448063,23 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4708), - [anon_sym_QMARK] = ACTIONS(4714), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4736), - [anon_sym_from] = ACTIONS(4708), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_join] = ACTIONS(4708), - [anon_sym_let] = ACTIONS(4708), - [anon_sym_orderby] = ACTIONS(4708), - [anon_sym_ascending] = ACTIONS(4708), - [anon_sym_descending] = ACTIONS(4708), - [anon_sym_group] = ACTIONS(4708), - [anon_sym_select] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4708), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2587] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(8034), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(2587), - [sym_preproc_endregion] = STATE(2587), - [sym_preproc_line] = STATE(2587), - [sym_preproc_pragma] = STATE(2587), - [sym_preproc_nullable] = STATE(2587), - [sym_preproc_error] = STATE(2587), - [sym_preproc_warning] = STATE(2587), - [sym_preproc_define] = STATE(2587), - [sym_preproc_undef] = STATE(2587), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2624), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_unsafe] = ACTIONS(657), [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(4632), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), [anon_sym_readonly] = ACTIONS(657), [anon_sym_abstract] = ACTIONS(657), [anon_sym_async] = ACTIONS(657), [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -448183,7 +448110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448195,53 +448122,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2588] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(7884), + [2587] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7796), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(2588), - [sym_preproc_endregion] = STATE(2588), - [sym_preproc_line] = STATE(2588), - [sym_preproc_pragma] = STATE(2588), - [sym_preproc_nullable] = STATE(2588), - [sym_preproc_error] = STATE(2588), - [sym_preproc_warning] = STATE(2588), - [sym_preproc_define] = STATE(2588), - [sym_preproc_undef] = STATE(2588), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2614), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(2587), + [sym_preproc_endregion] = STATE(2587), + [sym_preproc_line] = STATE(2587), + [sym_preproc_pragma] = STATE(2587), + [sym_preproc_nullable] = STATE(2587), + [sym_preproc_error] = STATE(2587), + [sym_preproc_warning] = STATE(2587), + [sym_preproc_define] = STATE(2587), + [sym_preproc_undef] = STATE(2587), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_unsafe] = ACTIONS(657), [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(4742), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), [anon_sym_readonly] = ACTIONS(657), [anon_sym_abstract] = ACTIONS(657), [anon_sym_async] = ACTIONS(657), [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -448272,7 +448199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448284,37 +448211,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2589] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(7902), + [2588] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7938), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6217), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(2589), - [sym_preproc_endregion] = STATE(2589), - [sym_preproc_line] = STATE(2589), - [sym_preproc_pragma] = STATE(2589), - [sym_preproc_nullable] = STATE(2589), - [sym_preproc_error] = STATE(2589), - [sym_preproc_warning] = STATE(2589), - [sym_preproc_define] = STATE(2589), - [sym_preproc_undef] = STATE(2589), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6221), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(2588), + [sym_preproc_endregion] = STATE(2588), + [sym_preproc_line] = STATE(2588), + [sym_preproc_pragma] = STATE(2588), + [sym_preproc_nullable] = STATE(2588), + [sym_preproc_error] = STATE(2588), + [sym_preproc_warning] = STATE(2588), + [sym_preproc_define] = STATE(2588), + [sym_preproc_undef] = STATE(2588), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), @@ -448322,15 +448249,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(657), [anon_sym_static] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), [anon_sym_readonly] = ACTIONS(657), [anon_sym_abstract] = ACTIONS(657), [anon_sym_async] = ACTIONS(657), [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -448361,7 +448288,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = 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), + }, + [2589] = { + [sym_property_pattern_clause] = STATE(2639), + [sym__variable_designation] = STATE(4528), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), + [sym_preproc_region] = STATE(2589), + [sym_preproc_endregion] = STATE(2589), + [sym_preproc_line] = STATE(2589), + [sym_preproc_pragma] = STATE(2589), + [sym_preproc_nullable] = STATE(2589), + [sym_preproc_error] = STATE(2589), + [sym_preproc_warning] = STATE(2589), + [sym_preproc_define] = STATE(2589), + [sym_preproc_undef] = STATE(2589), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COLON] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4254), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4256), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448374,26 +448390,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2590] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(7982), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6217), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(2590), [sym_preproc_endregion] = STATE(2590), [sym_preproc_line] = STATE(2590), @@ -448403,54 +448399,73 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(657), - [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(657), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(657), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4084), + [anon_sym_alias] = ACTIONS(4084), + [anon_sym_global] = ACTIONS(4084), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_COLON] = ACTIONS(3205), + [anon_sym_COMMA] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(4086), + [anon_sym_ref] = ACTIONS(4084), + [anon_sym_delegate] = ACTIONS(4084), + [anon_sym_async] = ACTIONS(4084), + [anon_sym_file] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_where] = ACTIONS(4084), + [anon_sym_QMARK] = ACTIONS(3203), + [anon_sym_notnull] = ACTIONS(4084), + [anon_sym_unmanaged] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(3203), + [anon_sym_scoped] = ACTIONS(4084), + [anon_sym_var] = ACTIONS(4084), + [anon_sym_STAR] = ACTIONS(3205), + [sym_predefined_type] = ACTIONS(4084), + [anon_sym_yield] = ACTIONS(4084), + [anon_sym_switch] = ACTIONS(3203), + [anon_sym_when] = ACTIONS(4084), + [anon_sym_DOT_DOT] = ACTIONS(3205), + [anon_sym_LT_EQ] = ACTIONS(3205), + [anon_sym_GT_EQ] = ACTIONS(3205), + [anon_sym_and] = ACTIONS(3203), + [anon_sym_or] = ACTIONS(3203), + [anon_sym_EQ_EQ] = ACTIONS(3205), + [anon_sym_BANG_EQ] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3203), + [sym_op_bitwise_or] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3205), + [sym_op_left_shift] = ACTIONS(3205), + [sym_op_right_shift] = ACTIONS(3203), + [sym_op_unsigned_right_shift] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [sym_op_divide] = ACTIONS(3203), + [sym_op_modulo] = ACTIONS(3205), + [sym_op_coalescing] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [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_ascending] = ACTIONS(4084), + [anon_sym_descending] = ACTIONS(4084), + [anon_sym_group] = ACTIONS(4084), + [anon_sym_by] = ACTIONS(4084), + [anon_sym_select] = ACTIONS(4084), + [anon_sym_as] = ACTIONS(3203), + [anon_sym_is] = ACTIONS(3203), + [anon_sym_DASH_GT] = ACTIONS(3205), + [anon_sym_with] = ACTIONS(3203), + [sym_grit_metavariable] = ACTIONS(4086), + [aux_sym_preproc_if_token1] = ACTIONS(4086), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448461,29 +448476,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(3205), }, [2591] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7861), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2591), [sym_preproc_endregion] = STATE(2591), [sym_preproc_line] = STATE(2591), @@ -448493,111 +448508,23 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2592] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(7802), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(2592), - [sym_preproc_endregion] = STATE(2592), - [sym_preproc_line] = STATE(2592), - [sym_preproc_pragma] = STATE(2592), - [sym_preproc_nullable] = STATE(2592), - [sym_preproc_error] = STATE(2592), - [sym_preproc_warning] = STATE(2592), - [sym_preproc_define] = STATE(2592), - [sym_preproc_undef] = STATE(2592), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2601), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2582), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_unsafe] = ACTIONS(657), [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(4744), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_LPAREN] = ACTIONS(4652), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), [anon_sym_readonly] = ACTIONS(657), [anon_sym_abstract] = ACTIONS(657), [anon_sym_async] = ACTIONS(657), [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -448628,7 +448555,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = 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), + }, + [2592] = { + [sym_property_pattern_clause] = STATE(2631), + [sym__variable_designation] = STATE(4147), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), + [sym_preproc_region] = STATE(2592), + [sym_preproc_endregion] = STATE(2592), + [sym_preproc_line] = STATE(2592), + [sym_preproc_pragma] = STATE(2592), + [sym_preproc_nullable] = STATE(2592), + [sym_preproc_error] = STATE(2592), + [sym_preproc_warning] = STATE(2592), + [sym_preproc_define] = STATE(2592), + [sym_preproc_undef] = STATE(2592), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COLON] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4254), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4256), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448641,26 +448657,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2593] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(8122), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7854), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2593), [sym_preproc_endregion] = STATE(2593), [sym_preproc_line] = STATE(2593), @@ -448670,23 +448686,23 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2579), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_unsafe] = ACTIONS(657), [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_LPAREN] = ACTIONS(4644), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), [anon_sym_readonly] = ACTIONS(657), [anon_sym_abstract] = ACTIONS(657), [anon_sym_async] = ACTIONS(657), [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -448717,7 +448733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448730,27 +448746,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2594] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym_property_pattern_clause] = STATE(2622), + [sym__variable_designation] = STATE(4190), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2594), [sym_preproc_endregion] = STATE(2594), [sym_preproc_line] = STATE(2594), @@ -448760,53 +448760,69 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4736), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4250), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4252), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4252), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448819,27 +448835,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2595] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7721), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2595), [sym_preproc_endregion] = STATE(2595), [sym_preproc_line] = STATE(2595), @@ -448849,53 +448864,54 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(657), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(657), + [anon_sym_static] = ACTIONS(657), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(4288), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(657), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448908,26 +448924,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2596] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(7761), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7733), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6221), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(2596), [sym_preproc_endregion] = STATE(2596), [sym_preproc_line] = STATE(2596), @@ -448937,23 +448953,23 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2585), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_unsafe] = ACTIONS(657), [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(4746), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), [anon_sym_readonly] = ACTIONS(657), [anon_sym_abstract] = ACTIONS(657), [anon_sym_async] = ACTIONS(657), [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -448984,7 +449000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448997,27 +449013,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2597] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym_argument_list] = STATE(3125), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(4715), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(5568), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2597), [sym_preproc_endregion] = STATE(2597), [sym_preproc_line] = STATE(2597), @@ -449027,305 +449041,44 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(4714), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4750), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4736), - [anon_sym_from] = ACTIONS(4748), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_join] = ACTIONS(4748), - [anon_sym_let] = ACTIONS(4748), - [anon_sym_orderby] = ACTIONS(4748), - [anon_sym_ascending] = ACTIONS(4748), - [anon_sym_descending] = ACTIONS(4748), - [anon_sym_group] = ACTIONS(4748), - [anon_sym_select] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4748), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2598] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), - [sym_preproc_region] = STATE(2598), - [sym_preproc_endregion] = STATE(2598), - [sym_preproc_line] = STATE(2598), - [sym_preproc_pragma] = STATE(2598), - [sym_preproc_nullable] = STATE(2598), - [sym_preproc_error] = STATE(2598), - [sym_preproc_warning] = STATE(2598), - [sym_preproc_define] = STATE(2598), - [sym_preproc_undef] = STATE(2598), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4752), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_from] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_join] = ACTIONS(4752), - [anon_sym_let] = ACTIONS(4752), - [anon_sym_orderby] = ACTIONS(4752), - [anon_sym_ascending] = ACTIONS(4752), - [anon_sym_descending] = ACTIONS(4752), - [anon_sym_group] = ACTIONS(4752), - [anon_sym_select] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4752), - [sym_grit_metavariable] = ACTIONS(4752), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2599] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), - [sym_preproc_region] = STATE(2599), - [sym_preproc_endregion] = STATE(2599), - [sym_preproc_line] = STATE(2599), - [sym_preproc_pragma] = STATE(2599), - [sym_preproc_nullable] = STATE(2599), - [sym_preproc_error] = STATE(2599), - [sym_preproc_warning] = STATE(2599), - [sym_preproc_define] = STATE(2599), - [sym_preproc_undef] = STATE(2599), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2600] = { - [sym_property_pattern_clause] = STATE(2715), - [sym__variable_designation] = STATE(4856), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2600), - [sym_preproc_endregion] = STATE(2600), - [sym_preproc_line] = STATE(2600), - [sym_preproc_pragma] = STATE(2600), - [sym_preproc_nullable] = STATE(2600), - [sym_preproc_error] = STATE(2600), - [sym_preproc_warning] = STATE(2600), - [sym_preproc_define] = STATE(2600), - [sym_preproc_undef] = STATE(2600), [sym__identifier_token] = ACTIONS(4208), + [anon_sym_extern] = ACTIONS(3738), [anon_sym_alias] = ACTIONS(4210), [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COLON] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_ref] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), [anon_sym_notnull] = ACTIONS(4210), [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4242), - [anon_sym_var] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4385), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4244), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), + [anon_sym_when] = ACTIONS(4210), [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4244), + [anon_sym_into] = ACTIONS(4210), [anon_sym_join] = ACTIONS(4210), [anon_sym_on] = ACTIONS(4210), [anon_sym_equals] = ACTIONS(4210), @@ -449336,11 +449089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4210), [anon_sym_by] = ACTIONS(4210), [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449352,37 +449101,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2601] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(7820), + [2598] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7775), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(2601), - [sym_preproc_endregion] = STATE(2601), - [sym_preproc_line] = STATE(2601), - [sym_preproc_pragma] = STATE(2601), - [sym_preproc_nullable] = STATE(2601), - [sym_preproc_error] = STATE(2601), - [sym_preproc_warning] = STATE(2601), - [sym_preproc_define] = STATE(2601), - [sym_preproc_undef] = STATE(2601), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(2598), + [sym_preproc_endregion] = STATE(2598), + [sym_preproc_line] = STATE(2598), + [sym_preproc_pragma] = STATE(2598), + [sym_preproc_nullable] = STATE(2598), + [sym_preproc_error] = STATE(2598), + [sym_preproc_warning] = STATE(2598), + [sym_preproc_define] = STATE(2598), + [sym_preproc_undef] = STATE(2598), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), @@ -449390,15 +449139,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(657), [anon_sym_static] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), [anon_sym_readonly] = ACTIONS(657), [anon_sym_abstract] = ACTIONS(657), [anon_sym_async] = ACTIONS(657), [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -449429,7 +449178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449441,84 +449190,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2602] = { - [sym_property_pattern_clause] = STATE(2713), - [sym__variable_designation] = STATE(4885), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2602), - [sym_preproc_endregion] = STATE(2602), - [sym_preproc_line] = STATE(2602), - [sym_preproc_pragma] = STATE(2602), - [sym_preproc_nullable] = STATE(2602), - [sym_preproc_error] = STATE(2602), - [sym_preproc_warning] = STATE(2602), - [sym_preproc_define] = STATE(2602), - [sym_preproc_undef] = STATE(2602), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4250), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4252), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4252), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [2599] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7715), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6221), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(2599), + [sym_preproc_endregion] = STATE(2599), + [sym_preproc_line] = STATE(2599), + [sym_preproc_pragma] = STATE(2599), + [sym_preproc_nullable] = STATE(2599), + [sym_preproc_error] = STATE(2599), + [sym_preproc_warning] = STATE(2599), + [sym_preproc_define] = STATE(2599), + [sym_preproc_undef] = STATE(2599), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(657), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(657), + [anon_sym_static] = ACTIONS(657), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_public] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_readonly] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_file] = ACTIONS(4288), + [anon_sym_fixed] = ACTIONS(657), + [anon_sym_internal] = ACTIONS(657), + [anon_sym_new] = ACTIONS(657), + [anon_sym_override] = ACTIONS(657), + [anon_sym_partial] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_required] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_virtual] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449530,53 +449279,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2603] = { - [sym_argument_list] = STATE(3468), - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4928), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3742), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), - [sym_preproc_region] = STATE(2603), - [sym_preproc_endregion] = STATE(2603), - [sym_preproc_line] = STATE(2603), - [sym_preproc_pragma] = STATE(2603), - [sym_preproc_nullable] = STATE(2603), - [sym_preproc_error] = STATE(2603), - [sym_preproc_warning] = STATE(2603), - [sym_preproc_define] = STATE(2603), - [sym_preproc_undef] = STATE(2603), - [sym__identifier_token] = ACTIONS(4226), + [2600] = { + [sym_argument_list] = STATE(3125), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(4715), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3130), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), + [sym_preproc_region] = STATE(2600), + [sym_preproc_endregion] = STATE(2600), + [sym_preproc_line] = STATE(2600), + [sym_preproc_pragma] = STATE(2600), + [sym_preproc_nullable] = STATE(2600), + [sym_preproc_error] = STATE(2600), + [sym_preproc_warning] = STATE(2600), + [sym_preproc_define] = STATE(2600), + [sym_preproc_undef] = STATE(2600), + [sym__identifier_token] = ACTIONS(4208), [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), [anon_sym_unsafe] = ACTIONS(3738), [anon_sym_static] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_LBRACE] = ACTIONS(4369), - [anon_sym_delegate] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_ref] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_delegate] = ACTIONS(4383), [anon_sym_public] = ACTIONS(3738), [anon_sym_private] = ACTIONS(3738), [anon_sym_readonly] = ACTIONS(3738), [anon_sym_abstract] = ACTIONS(3738), [anon_sym_async] = ACTIONS(3738), [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(4228), + [anon_sym_file] = ACTIONS(4210), [anon_sym_fixed] = ACTIONS(3738), [anon_sym_internal] = ACTIONS(3738), [anon_sym_new] = ACTIONS(3738), @@ -449587,205 +449336,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sealed] = ACTIONS(3738), [anon_sym_virtual] = ACTIONS(3738), [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(4373), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2604] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), - [sym_preproc_region] = STATE(2604), - [sym_preproc_endregion] = STATE(2604), - [sym_preproc_line] = STATE(2604), - [sym_preproc_pragma] = STATE(2604), - [sym_preproc_nullable] = STATE(2604), - [sym_preproc_error] = STATE(2604), - [sym_preproc_warning] = STATE(2604), - [sym_preproc_define] = STATE(2604), - [sym_preproc_undef] = STATE(2604), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2605] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), - [sym_preproc_region] = STATE(2605), - [sym_preproc_endregion] = STATE(2605), - [sym_preproc_line] = STATE(2605), - [sym_preproc_pragma] = STATE(2605), - [sym_preproc_nullable] = STATE(2605), - [sym_preproc_error] = STATE(2605), - [sym_preproc_warning] = STATE(2605), - [sym_preproc_define] = STATE(2605), - [sym_preproc_undef] = STATE(2605), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4385), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449797,53 +449368,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2606] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(8125), + [2601] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7851), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(2606), - [sym_preproc_endregion] = STATE(2606), - [sym_preproc_line] = STATE(2606), - [sym_preproc_pragma] = STATE(2606), - [sym_preproc_nullable] = STATE(2606), - [sym_preproc_error] = STATE(2606), - [sym_preproc_warning] = STATE(2606), - [sym_preproc_define] = STATE(2606), - [sym_preproc_undef] = STATE(2606), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2626), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(2601), + [sym_preproc_endregion] = STATE(2601), + [sym_preproc_line] = STATE(2601), + [sym_preproc_pragma] = STATE(2601), + [sym_preproc_nullable] = STATE(2601), + [sym_preproc_error] = STATE(2601), + [sym_preproc_warning] = STATE(2601), + [sym_preproc_define] = STATE(2601), + [sym_preproc_undef] = STATE(2601), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2602), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_unsafe] = ACTIONS(657), [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(4570), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), [anon_sym_readonly] = ACTIONS(657), [anon_sym_abstract] = ACTIONS(657), [anon_sym_async] = ACTIONS(657), [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -449874,7 +449445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449886,53 +449457,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2607] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(8099), + [2602] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7729), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(2607), - [sym_preproc_endregion] = STATE(2607), - [sym_preproc_line] = STATE(2607), - [sym_preproc_pragma] = STATE(2607), - [sym_preproc_nullable] = STATE(2607), - [sym_preproc_error] = STATE(2607), - [sym_preproc_warning] = STATE(2607), - [sym_preproc_define] = STATE(2607), - [sym_preproc_undef] = STATE(2607), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2593), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(2602), + [sym_preproc_endregion] = STATE(2602), + [sym_preproc_line] = STATE(2602), + [sym_preproc_pragma] = STATE(2602), + [sym_preproc_nullable] = STATE(2602), + [sym_preproc_error] = STATE(2602), + [sym_preproc_warning] = STATE(2602), + [sym_preproc_define] = STATE(2602), + [sym_preproc_undef] = STATE(2602), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_unsafe] = ACTIONS(657), [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(4756), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), [anon_sym_readonly] = ACTIONS(657), [anon_sym_abstract] = ACTIONS(657), [anon_sym_async] = ACTIONS(657), [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -449963,7 +449534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449975,53 +449546,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2608] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(7927), + [2603] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7752), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(2608), - [sym_preproc_endregion] = STATE(2608), - [sym_preproc_line] = STATE(2608), - [sym_preproc_pragma] = STATE(2608), - [sym_preproc_nullable] = STATE(2608), - [sym_preproc_error] = STATE(2608), - [sym_preproc_warning] = STATE(2608), - [sym_preproc_define] = STATE(2608), - [sym_preproc_undef] = STATE(2608), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2609), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(2603), + [sym_preproc_endregion] = STATE(2603), + [sym_preproc_line] = STATE(2603), + [sym_preproc_pragma] = STATE(2603), + [sym_preproc_nullable] = STATE(2603), + [sym_preproc_error] = STATE(2603), + [sym_preproc_warning] = STATE(2603), + [sym_preproc_define] = STATE(2603), + [sym_preproc_undef] = STATE(2603), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2598), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_unsafe] = ACTIONS(657), [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(4758), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_LPAREN] = ACTIONS(4656), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), [anon_sym_readonly] = ACTIONS(657), [anon_sym_abstract] = ACTIONS(657), [anon_sym_async] = ACTIONS(657), [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -450052,7 +449623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450064,37 +449635,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2609] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(7956), + [2604] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(8046), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(2609), - [sym_preproc_endregion] = STATE(2609), - [sym_preproc_line] = STATE(2609), - [sym_preproc_pragma] = STATE(2609), - [sym_preproc_nullable] = STATE(2609), - [sym_preproc_error] = STATE(2609), - [sym_preproc_warning] = STATE(2609), - [sym_preproc_define] = STATE(2609), - [sym_preproc_undef] = STATE(2609), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6220), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(2604), + [sym_preproc_endregion] = STATE(2604), + [sym_preproc_line] = STATE(2604), + [sym_preproc_pragma] = STATE(2604), + [sym_preproc_nullable] = STATE(2604), + [sym_preproc_error] = STATE(2604), + [sym_preproc_warning] = STATE(2604), + [sym_preproc_define] = STATE(2604), + [sym_preproc_undef] = STATE(2604), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), @@ -450102,15 +449673,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(657), [anon_sym_static] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), [anon_sym_readonly] = ACTIONS(657), [anon_sym_abstract] = ACTIONS(657), [anon_sym_async] = ACTIONS(657), [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -450141,7 +449712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450153,84 +449724,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2610] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), - [sym_preproc_region] = STATE(2610), - [sym_preproc_endregion] = STATE(2610), - [sym_preproc_line] = STATE(2610), - [sym_preproc_pragma] = STATE(2610), - [sym_preproc_nullable] = STATE(2610), - [sym_preproc_error] = STATE(2610), - [sym_preproc_warning] = STATE(2610), - [sym_preproc_define] = STATE(2610), - [sym_preproc_undef] = STATE(2610), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(4714), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4762), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4736), - [anon_sym_from] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_join] = ACTIONS(4760), - [anon_sym_let] = ACTIONS(4760), - [anon_sym_orderby] = ACTIONS(4760), - [anon_sym_ascending] = ACTIONS(4760), - [anon_sym_descending] = ACTIONS(4760), - [anon_sym_group] = ACTIONS(4760), - [anon_sym_select] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4760), + [2605] = { + [sym_property_pattern_clause] = STATE(2675), + [sym__variable_designation] = STATE(5302), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym_identifier] = STATE(5320), + [sym__reserved_identifier] = STATE(2402), + [sym_preproc_region] = STATE(2605), + [sym_preproc_endregion] = STATE(2605), + [sym_preproc_line] = STATE(2605), + [sym_preproc_pragma] = STATE(2605), + [sym_preproc_nullable] = STATE(2605), + [sym_preproc_error] = STATE(2605), + [sym_preproc_warning] = STATE(2605), + [sym_preproc_define] = STATE(2605), + [sym_preproc_undef] = STATE(2605), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4252), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4252), + [anon_sym_into] = ACTIONS(4252), + [anon_sym_join] = ACTIONS(4252), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(4252), + [anon_sym_orderby] = ACTIONS(4252), + [anon_sym_ascending] = ACTIONS(4252), + [anon_sym_descending] = ACTIONS(4252), + [anon_sym_group] = ACTIONS(4252), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4252), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4250), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450242,84 +449812,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2611] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), - [sym_preproc_region] = STATE(2611), - [sym_preproc_endregion] = STATE(2611), - [sym_preproc_line] = STATE(2611), - [sym_preproc_pragma] = STATE(2611), - [sym_preproc_nullable] = STATE(2611), - [sym_preproc_error] = STATE(2611), - [sym_preproc_warning] = STATE(2611), - [sym_preproc_define] = STATE(2611), - [sym_preproc_undef] = STATE(2611), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [2606] = { + [sym__variable_designation] = STATE(5751), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym_identifier] = STATE(5790), + [sym__reserved_identifier] = STATE(5562), + [sym_preproc_region] = STATE(2606), + [sym_preproc_endregion] = STATE(2606), + [sym_preproc_line] = STATE(2606), + [sym_preproc_pragma] = STATE(2606), + [sym_preproc_nullable] = STATE(2606), + [sym_preproc_error] = STATE(2606), + [sym_preproc_warning] = STATE(2606), + [sym_preproc_define] = STATE(2606), + [sym_preproc_undef] = STATE(2606), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4415), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450330,85 +449898,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4250), }, - [2612] = { - [sym_argument_list] = STATE(3468), - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4928), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(5558), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), - [sym_preproc_region] = STATE(2612), - [sym_preproc_endregion] = STATE(2612), - [sym_preproc_line] = STATE(2612), - [sym_preproc_pragma] = STATE(2612), - [sym_preproc_nullable] = STATE(2612), - [sym_preproc_error] = STATE(2612), - [sym_preproc_warning] = STATE(2612), - [sym_preproc_define] = STATE(2612), - [sym_preproc_undef] = STATE(2612), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_LBRACE] = ACTIONS(4369), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(4373), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [2607] = { + [sym_property_pattern_clause] = STATE(2661), + [sym__variable_designation] = STATE(5302), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym_identifier] = STATE(5320), + [sym__reserved_identifier] = STATE(2402), + [sym_preproc_region] = STATE(2607), + [sym_preproc_endregion] = STATE(2607), + [sym_preproc_line] = STATE(2607), + [sym_preproc_pragma] = STATE(2607), + [sym_preproc_nullable] = STATE(2607), + [sym_preproc_error] = STATE(2607), + [sym_preproc_warning] = STATE(2607), + [sym_preproc_define] = STATE(2607), + [sym_preproc_undef] = STATE(2607), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4252), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4252), + [anon_sym_into] = ACTIONS(4425), + [anon_sym_join] = ACTIONS(4252), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(4252), + [anon_sym_orderby] = ACTIONS(4252), + [anon_sym_ascending] = ACTIONS(4252), + [anon_sym_descending] = ACTIONS(4252), + [anon_sym_group] = ACTIONS(4252), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4252), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4250), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450420,53 +449988,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2613] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(7885), + [2608] = { + [sym_modifier] = STATE(5161), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(2613), - [sym_preproc_endregion] = STATE(2613), - [sym_preproc_line] = STATE(2613), - [sym_preproc_pragma] = STATE(2613), - [sym_preproc_nullable] = STATE(2613), - [sym_preproc_error] = STATE(2613), - [sym_preproc_warning] = STATE(2613), - [sym_preproc_define] = STATE(2613), - [sym_preproc_undef] = STATE(2613), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2629), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6408), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(2608), + [sym_preproc_endregion] = STATE(2608), + [sym_preproc_line] = STATE(2608), + [sym_preproc_pragma] = STATE(2608), + [sym_preproc_nullable] = STATE(2608), + [sym_preproc_error] = STATE(2608), + [sym_preproc_warning] = STATE(2608), + [sym_preproc_define] = STATE(2608), + [sym_preproc_undef] = STATE(2608), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_unsafe] = ACTIONS(657), [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(4764), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), [anon_sym_readonly] = ACTIONS(657), [anon_sym_abstract] = ACTIONS(657), [anon_sym_async] = ACTIONS(657), [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), + [anon_sym_file] = ACTIONS(4658), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -450497,7 +450064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450509,84 +450076,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2614] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(7908), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(2614), - [sym_preproc_endregion] = STATE(2614), - [sym_preproc_line] = STATE(2614), - [sym_preproc_pragma] = STATE(2614), - [sym_preproc_nullable] = STATE(2614), - [sym_preproc_error] = STATE(2614), - [sym_preproc_warning] = STATE(2614), - [sym_preproc_define] = STATE(2614), - [sym_preproc_undef] = STATE(2614), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(657), - [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(657), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(657), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [2609] = { + [sym__variable_designation] = STATE(5735), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym_identifier] = STATE(5790), + [sym__reserved_identifier] = STATE(5562), + [sym_preproc_region] = STATE(2609), + [sym_preproc_endregion] = STATE(2609), + [sym_preproc_line] = STATE(2609), + [sym_preproc_pragma] = STATE(2609), + [sym_preproc_nullable] = STATE(2609), + [sym_preproc_error] = STATE(2609), + [sym_preproc_warning] = STATE(2609), + [sym_preproc_define] = STATE(2609), + [sym_preproc_undef] = STATE(2609), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_COLON] = ACTIONS(4306), + [anon_sym_COMMA] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4415), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4421), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4306), + }, + [2610] = { + [sym__variable_designation] = STATE(5733), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym_identifier] = STATE(5790), + [sym__reserved_identifier] = STATE(5562), + [sym_preproc_region] = STATE(2610), + [sym_preproc_endregion] = STATE(2610), + [sym_preproc_line] = STATE(2610), + [sym_preproc_pragma] = STATE(2610), + [sym_preproc_nullable] = STATE(2610), + [sym_preproc_error] = STATE(2610), + [sym_preproc_warning] = STATE(2610), + [sym_preproc_define] = STATE(2610), + [sym_preproc_undef] = STATE(2610), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COLON] = ACTIONS(4254), + [anon_sym_COMMA] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4415), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4421), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4254), + }, + [2611] = { + [sym__variable_designation] = STATE(5736), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym_identifier] = STATE(5790), + [sym__reserved_identifier] = STATE(5562), + [sym_preproc_region] = STATE(2611), + [sym_preproc_endregion] = STATE(2611), + [sym_preproc_line] = STATE(2611), + [sym_preproc_pragma] = STATE(2611), + [sym_preproc_nullable] = STATE(2611), + [sym_preproc_error] = STATE(2611), + [sym_preproc_warning] = STATE(2611), + [sym_preproc_define] = STATE(2611), + [sym_preproc_undef] = STATE(2611), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_COLON] = ACTIONS(4302), + [anon_sym_COMMA] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4415), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4421), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4302), + }, + [2612] = { + [sym__variable_designation] = STATE(5736), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym_identifier] = STATE(5790), + [sym__reserved_identifier] = STATE(5562), + [sym_preproc_region] = STATE(2612), + [sym_preproc_endregion] = STATE(2612), + [sym_preproc_line] = STATE(2612), + [sym_preproc_pragma] = STATE(2612), + [sym_preproc_nullable] = STATE(2612), + [sym_preproc_error] = STATE(2612), + [sym_preproc_warning] = STATE(2612), + [sym_preproc_define] = STATE(2612), + [sym_preproc_undef] = STATE(2612), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_COLON] = ACTIONS(4302), + [anon_sym_COMMA] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4304), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4421), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4302), + }, + [2613] = { + [sym__variable_designation] = STATE(5735), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym_identifier] = STATE(5790), + [sym__reserved_identifier] = STATE(5562), + [sym_preproc_region] = STATE(2613), + [sym_preproc_endregion] = STATE(2613), + [sym_preproc_line] = STATE(2613), + [sym_preproc_pragma] = STATE(2613), + [sym_preproc_nullable] = STATE(2613), + [sym_preproc_error] = STATE(2613), + [sym_preproc_warning] = STATE(2613), + [sym_preproc_define] = STATE(2613), + [sym_preproc_undef] = STATE(2613), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_COLON] = ACTIONS(4306), + [anon_sym_COMMA] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4308), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450597,29 +450514,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4306), + }, + [2614] = { + [sym__variable_designation] = STATE(5733), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym_identifier] = STATE(5790), + [sym__reserved_identifier] = STATE(5562), + [sym_preproc_region] = STATE(2614), + [sym_preproc_endregion] = STATE(2614), + [sym_preproc_line] = STATE(2614), + [sym_preproc_pragma] = STATE(2614), + [sym_preproc_nullable] = STATE(2614), + [sym_preproc_error] = STATE(2614), + [sym_preproc_warning] = STATE(2614), + [sym_preproc_define] = STATE(2614), + [sym_preproc_undef] = STATE(2614), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COLON] = ACTIONS(4254), + [anon_sym_COMMA] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4421), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4254), }, [2615] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym__variable_designation] = STATE(5751), + [sym_parenthesized_variable_designation] = STATE(5795), + [sym_identifier] = STATE(5790), + [sym__reserved_identifier] = STATE(5562), [sym_preproc_region] = STATE(2615), [sym_preproc_endregion] = STATE(2615), [sym_preproc_line] = STATE(2615), @@ -450629,53 +450618,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2615), [sym_preproc_define] = STATE(2615), [sym_preproc_undef] = STATE(2615), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_from] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_join] = ACTIONS(4766), - [anon_sym_let] = ACTIONS(4766), - [anon_sym_orderby] = ACTIONS(4766), - [anon_sym_ascending] = ACTIONS(4766), - [anon_sym_descending] = ACTIONS(4766), - [anon_sym_group] = ACTIONS(4766), - [anon_sym_select] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4766), - [sym_grit_metavariable] = ACTIONS(4766), + [sym__identifier_token] = ACTIONS(4413), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4415), + [sym_discard] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4252), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450686,29 +450690,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(4250), }, [2616] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym_property_pattern_clause] = STATE(2676), + [sym__variable_designation] = STATE(5250), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym_identifier] = STATE(5320), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2616), [sym_preproc_endregion] = STATE(2616), [sym_preproc_line] = STATE(2616), @@ -450718,53 +450707,68 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4770), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4714), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4770), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4736), - [anon_sym_from] = ACTIONS(4770), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_join] = ACTIONS(4770), - [anon_sym_let] = ACTIONS(4770), - [anon_sym_orderby] = ACTIONS(4770), - [anon_sym_ascending] = ACTIONS(4770), - [anon_sym_descending] = ACTIONS(4770), - [anon_sym_group] = ACTIONS(4770), - [anon_sym_select] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4770), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COMMA] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4256), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4256), + [anon_sym_into] = ACTIONS(4425), + [anon_sym_join] = ACTIONS(4256), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(4256), + [anon_sym_orderby] = ACTIONS(4256), + [anon_sym_ascending] = ACTIONS(4256), + [anon_sym_descending] = ACTIONS(4256), + [anon_sym_group] = ACTIONS(4256), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4256), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4254), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450777,27 +450781,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2617] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym_property_pattern_clause] = STATE(2677), + [sym__variable_designation] = STATE(5250), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym_identifier] = STATE(5320), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2617), [sym_preproc_endregion] = STATE(2617), [sym_preproc_line] = STATE(2617), @@ -450807,53 +450795,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2617), [sym_preproc_define] = STATE(2617), [sym_preproc_undef] = STATE(2617), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_join] = ACTIONS(1435), - [anon_sym_let] = ACTIONS(1435), - [anon_sym_orderby] = ACTIONS(1435), - [anon_sym_ascending] = ACTIONS(1435), - [anon_sym_descending] = ACTIONS(1435), - [anon_sym_group] = ACTIONS(1435), - [anon_sym_select] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1437), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(1435), - [sym_grit_metavariable] = ACTIONS(1435), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COMMA] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4256), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4256), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4256), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(4256), + [anon_sym_orderby] = ACTIONS(4256), + [anon_sym_ascending] = ACTIONS(4256), + [anon_sym_descending] = ACTIONS(4256), + [anon_sym_group] = ACTIONS(4256), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4256), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4254), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450866,27 +450869,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2618] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym_property_pattern_clause] = STATE(2665), + [sym__variable_designation] = STATE(4578), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(2618), [sym_preproc_endregion] = STATE(2618), [sym_preproc_line] = STATE(2618), @@ -450896,53 +450883,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2618), [sym_preproc_define] = STATE(2618), [sym_preproc_undef] = STATE(2618), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_where] = ACTIONS(4774), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_from] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_join] = ACTIONS(4774), - [anon_sym_let] = ACTIONS(4774), - [anon_sym_orderby] = ACTIONS(4774), - [anon_sym_ascending] = ACTIONS(4774), - [anon_sym_descending] = ACTIONS(4774), - [anon_sym_group] = ACTIONS(4774), - [anon_sym_select] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4776), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4774), - [sym_grit_metavariable] = ACTIONS(4774), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_in] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4115), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450955,27 +450957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2619] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym_type_argument_list] = STATE(2417), [sym_preproc_region] = STATE(2619), [sym_preproc_endregion] = STATE(2619), [sym_preproc_line] = STATE(2619), @@ -450985,233 +450967,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2619), [sym_preproc_define] = STATE(2619), [sym_preproc_undef] = STATE(2619), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4778), - [anon_sym_QMARK] = ACTIONS(4714), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4736), - [anon_sym_from] = ACTIONS(4778), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_join] = ACTIONS(4778), - [anon_sym_let] = ACTIONS(4778), - [anon_sym_orderby] = ACTIONS(4778), - [anon_sym_ascending] = ACTIONS(4778), - [anon_sym_descending] = ACTIONS(4778), - [anon_sym_group] = ACTIONS(4778), - [anon_sym_select] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4778), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2620] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), - [sym_preproc_region] = STATE(2620), - [sym_preproc_endregion] = STATE(2620), - [sym_preproc_line] = STATE(2620), - [sym_preproc_pragma] = STATE(2620), - [sym_preproc_nullable] = STATE(2620), - [sym_preproc_error] = STATE(2620), - [sym_preproc_warning] = STATE(2620), - [sym_preproc_define] = STATE(2620), - [sym_preproc_undef] = STATE(2620), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4782), - [anon_sym_QMARK] = ACTIONS(4714), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4784), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4736), - [anon_sym_from] = ACTIONS(4782), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_join] = ACTIONS(4782), - [anon_sym_let] = ACTIONS(4782), - [anon_sym_orderby] = ACTIONS(4782), - [anon_sym_ascending] = ACTIONS(4782), - [anon_sym_descending] = ACTIONS(4782), - [anon_sym_group] = ACTIONS(4782), - [anon_sym_select] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4782), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2621] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), - [sym_preproc_region] = STATE(2621), - [sym_preproc_endregion] = STATE(2621), - [sym_preproc_line] = STATE(2621), - [sym_preproc_pragma] = STATE(2621), - [sym_preproc_nullable] = STATE(2621), - [sym_preproc_error] = STATE(2621), - [sym_preproc_warning] = STATE(2621), - [sym_preproc_define] = STATE(2621), - [sym_preproc_undef] = STATE(2621), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3955), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(4370), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2620] = { + [sym_property_pattern_clause] = STATE(2669), + [sym__variable_designation] = STATE(4528), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3824), + [sym_preproc_region] = STATE(2620), + [sym_preproc_endregion] = STATE(2620), + [sym_preproc_line] = STATE(2620), + [sym_preproc_pragma] = STATE(2620), + [sym_preproc_nullable] = STATE(2620), + [sym_preproc_error] = STATE(2620), + [sym_preproc_warning] = STATE(2620), + [sym_preproc_define] = STATE(2620), + [sym_preproc_undef] = STATE(2620), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_in] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4115), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4119), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2621] = { + [sym_property_pattern_clause] = STATE(2852), + [sym__variable_designation] = STATE(4578), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), + [sym_preproc_region] = STATE(2621), + [sym_preproc_endregion] = STATE(2621), + [sym_preproc_line] = STATE(2621), + [sym_preproc_pragma] = STATE(2621), + [sym_preproc_nullable] = STATE(2621), + [sym_preproc_error] = STATE(2621), + [sym_preproc_warning] = STATE(2621), + [sym_preproc_define] = STATE(2621), + [sym_preproc_undef] = STATE(2621), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4252), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), @@ -451222,27 +451220,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2622] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym__variable_designation] = STATE(4136), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2622), [sym_preproc_endregion] = STATE(2622), [sym_preproc_line] = STATE(2622), @@ -451252,53 +451233,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2622), [sym_preproc_define] = STATE(2622), [sym_preproc_undef] = STATE(2622), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(4714), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4736), - [anon_sym_from] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_join] = ACTIONS(4786), - [anon_sym_let] = ACTIONS(4786), - [anon_sym_orderby] = ACTIONS(4786), - [anon_sym_ascending] = ACTIONS(4786), - [anon_sym_descending] = ACTIONS(4786), - [anon_sym_group] = ACTIONS(4786), - [anon_sym_select] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4786), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_COLON] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4306), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4308), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4308), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451311,10 +451307,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2623] = { - [sym_parameter_list] = STATE(7657), - [sym__lambda_parameters] = STATE(7769), - [sym_identifier] = STATE(8086), - [sym__reserved_identifier] = STATE(2206), + [sym_property_pattern_clause] = STATE(2888), + [sym__variable_designation] = STATE(5510), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym_identifier] = STATE(5489), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2623), [sym_preproc_endregion] = STATE(2623), [sym_preproc_line] = STATE(2623), @@ -451324,102 +451321,84 @@ 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(4260), - [anon_sym_alias] = ACTIONS(4260), - [anon_sym_global] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_COLON] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4262), - [anon_sym_file] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(4260), - [anon_sym_QMARK] = ACTIONS(4260), - [anon_sym_notnull] = ACTIONS(4260), - [anon_sym_unmanaged] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_CARET] = ACTIONS(4262), - [anon_sym_PIPE] = ACTIONS(4260), - [anon_sym_AMP] = ACTIONS(4260), - [anon_sym_LT_LT] = ACTIONS(4262), - [anon_sym_GT_GT] = ACTIONS(4260), - [anon_sym_GT_GT_GT] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_scoped] = ACTIONS(4260), - [anon_sym_var] = ACTIONS(4260), - [anon_sym_yield] = ACTIONS(4260), - [anon_sym_switch] = ACTIONS(4260), - [anon_sym_when] = ACTIONS(4260), - [sym_discard] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_and] = ACTIONS(4260), - [anon_sym_or] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [sym_op_coalescing] = ACTIONS(4262), - [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), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_DASH_GT] = ACTIONS(4262), - [anon_sym_with] = ACTIONS(4260), - [sym_grit_metavariable] = ACTIONS(4262), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4262), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4252), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4210), + [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4210), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4252), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4252), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4252), + [anon_sym_orderby] = ACTIONS(4252), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4252), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4252), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4214), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2624] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(8078), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_property_pattern_clause] = STATE(2901), + [sym__variable_designation] = STATE(4190), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2624), [sym_preproc_endregion] = STATE(2624), [sym_preproc_line] = STATE(2624), @@ -451429,54 +451408,67 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(657), - [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(657), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(657), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4252), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4252), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451489,11 +451481,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2625] = { - [sym_property_pattern_clause] = STATE(2726), - [sym__variable_designation] = STATE(4968), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2625), [sym_preproc_endregion] = STATE(2625), [sym_preproc_line] = STATE(2625), @@ -451503,69 +451490,72 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COLON] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4242), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4244), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4478), + [anon_sym_alias] = ACTIONS(4478), + [anon_sym_global] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_COLON] = ACTIONS(3197), + [anon_sym_COMMA] = ACTIONS(4480), + [anon_sym_RBRACK] = ACTIONS(4480), + [anon_sym_LPAREN] = ACTIONS(4480), + [anon_sym_RPAREN] = ACTIONS(4480), + [anon_sym_RBRACE] = ACTIONS(4480), + [anon_sym_file] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3195), + [anon_sym_where] = ACTIONS(4478), + [anon_sym_QMARK] = ACTIONS(3195), + [anon_sym_notnull] = ACTIONS(4478), + [anon_sym_unmanaged] = ACTIONS(4478), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_scoped] = ACTIONS(4478), + [anon_sym_EQ_GT] = ACTIONS(4480), + [anon_sym_var] = ACTIONS(4478), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_yield] = ACTIONS(4478), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_when] = ACTIONS(4478), + [sym_discard] = ACTIONS(4478), + [anon_sym_DOT_DOT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(4478), + [anon_sym_or] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [sym_op_bitwise_or] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3197), + [sym_op_left_shift] = ACTIONS(3197), + [sym_op_right_shift] = ACTIONS(3195), + [sym_op_unsigned_right_shift] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [sym_op_divide] = ACTIONS(3195), + [sym_op_modulo] = ACTIONS(3197), + [sym_op_coalescing] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_from] = ACTIONS(4478), + [anon_sym_into] = ACTIONS(4478), + [anon_sym_join] = ACTIONS(4478), + [anon_sym_on] = ACTIONS(4478), + [anon_sym_equals] = ACTIONS(4478), + [anon_sym_let] = ACTIONS(4478), + [anon_sym_orderby] = ACTIONS(4478), + [anon_sym_ascending] = ACTIONS(4478), + [anon_sym_descending] = ACTIONS(4478), + [anon_sym_group] = ACTIONS(4478), + [anon_sym_by] = ACTIONS(4478), + [anon_sym_select] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3195), + [anon_sym_DASH_GT] = ACTIONS(3197), + [anon_sym_with] = ACTIONS(3195), + [sym_grit_metavariable] = ACTIONS(4480), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451578,26 +451568,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2626] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(8111), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_property_pattern_clause] = STATE(2790), + [sym__variable_designation] = STATE(4578), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2626), [sym_preproc_endregion] = STATE(2626), [sym_preproc_line] = STATE(2626), @@ -451607,54 +451582,67 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(657), - [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(657), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(657), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4252), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451667,26 +451655,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2627] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(7784), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6217), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(2627), [sym_preproc_endregion] = STATE(2627), [sym_preproc_line] = STATE(2627), @@ -451696,54 +451664,72 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(657), - [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(657), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(657), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(3488), + [anon_sym_extern] = ACTIONS(3488), + [anon_sym_alias] = ACTIONS(3488), + [anon_sym_global] = ACTIONS(3488), + [anon_sym_using] = ACTIONS(3488), + [anon_sym_unsafe] = ACTIONS(3488), + [anon_sym_static] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3490), + [anon_sym_event] = ACTIONS(3488), + [anon_sym_namespace] = ACTIONS(3488), + [anon_sym_class] = ACTIONS(3488), + [anon_sym_ref] = ACTIONS(3488), + [anon_sym_struct] = ACTIONS(3488), + [anon_sym_enum] = ACTIONS(3488), + [anon_sym_RBRACE] = ACTIONS(3490), + [anon_sym_interface] = ACTIONS(3488), + [anon_sym_delegate] = ACTIONS(3488), + [anon_sym_record] = ACTIONS(3488), + [anon_sym_public] = ACTIONS(3488), + [anon_sym_private] = ACTIONS(3488), + [anon_sym_readonly] = ACTIONS(3488), + [anon_sym_abstract] = ACTIONS(3488), + [anon_sym_async] = ACTIONS(3488), + [anon_sym_const] = ACTIONS(3488), + [anon_sym_file] = ACTIONS(3488), + [anon_sym_fixed] = ACTIONS(3488), + [anon_sym_internal] = ACTIONS(3488), + [anon_sym_new] = ACTIONS(3488), + [anon_sym_override] = ACTIONS(3488), + [anon_sym_partial] = ACTIONS(3488), + [anon_sym_protected] = ACTIONS(3488), + [anon_sym_required] = ACTIONS(3488), + [anon_sym_sealed] = ACTIONS(3488), + [anon_sym_virtual] = ACTIONS(3488), + [anon_sym_volatile] = ACTIONS(3488), + [anon_sym_where] = ACTIONS(3488), + [anon_sym_notnull] = ACTIONS(3488), + [anon_sym_unmanaged] = ACTIONS(3488), + [anon_sym_implicit] = ACTIONS(3488), + [anon_sym_explicit] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3490), + [anon_sym_scoped] = ACTIONS(3488), + [anon_sym_var] = ACTIONS(3488), + [sym_predefined_type] = ACTIONS(3488), + [anon_sym_while] = ACTIONS(3488), + [anon_sym_yield] = ACTIONS(3488), + [anon_sym_when] = ACTIONS(3488), + [anon_sym_else] = ACTIONS(3488), + [anon_sym_from] = ACTIONS(3488), + [anon_sym_into] = ACTIONS(3488), + [anon_sym_join] = ACTIONS(3488), + [anon_sym_on] = ACTIONS(3488), + [anon_sym_equals] = ACTIONS(3488), + [anon_sym_let] = ACTIONS(3488), + [anon_sym_orderby] = ACTIONS(3488), + [anon_sym_ascending] = ACTIONS(3488), + [anon_sym_descending] = ACTIONS(3488), + [anon_sym_group] = ACTIONS(3488), + [anon_sym_by] = ACTIONS(3488), + [anon_sym_select] = ACTIONS(3488), + [sym_grit_metavariable] = ACTIONS(3490), + [aux_sym_preproc_if_token1] = ACTIONS(3490), + [aux_sym_preproc_if_token3] = ACTIONS(3490), + [aux_sym_preproc_else_token1] = ACTIONS(3490), + [aux_sym_preproc_elif_token1] = ACTIONS(3490), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451756,27 +451742,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2628] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym_property_pattern_clause] = STATE(2848), + [sym__variable_designation] = STATE(4528), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2628), [sym_preproc_endregion] = STATE(2628), [sym_preproc_line] = STATE(2628), @@ -451786,53 +451756,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2628), [sym_preproc_define] = STATE(2628), [sym_preproc_undef] = STATE(2628), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4714), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4736), - [anon_sym_from] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_join] = ACTIONS(4790), - [anon_sym_let] = ACTIONS(4790), - [anon_sym_orderby] = ACTIONS(4790), - [anon_sym_ascending] = ACTIONS(4790), - [anon_sym_descending] = ACTIONS(4790), - [anon_sym_group] = ACTIONS(4790), - [anon_sym_select] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4790), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4256), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451845,26 +451829,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2629] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(8072), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(2629), [sym_preproc_endregion] = STATE(2629), [sym_preproc_line] = STATE(2629), @@ -451874,54 +451838,72 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(657), - [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(657), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(657), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(3500), + [anon_sym_extern] = ACTIONS(3500), + [anon_sym_alias] = ACTIONS(3500), + [anon_sym_global] = ACTIONS(3500), + [anon_sym_using] = ACTIONS(3500), + [anon_sym_unsafe] = ACTIONS(3500), + [anon_sym_static] = ACTIONS(3500), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3502), + [anon_sym_event] = ACTIONS(3500), + [anon_sym_namespace] = ACTIONS(3500), + [anon_sym_class] = ACTIONS(3500), + [anon_sym_ref] = ACTIONS(3500), + [anon_sym_struct] = ACTIONS(3500), + [anon_sym_enum] = ACTIONS(3500), + [anon_sym_RBRACE] = ACTIONS(3502), + [anon_sym_interface] = ACTIONS(3500), + [anon_sym_delegate] = ACTIONS(3500), + [anon_sym_record] = ACTIONS(3500), + [anon_sym_public] = ACTIONS(3500), + [anon_sym_private] = ACTIONS(3500), + [anon_sym_readonly] = ACTIONS(3500), + [anon_sym_abstract] = ACTIONS(3500), + [anon_sym_async] = ACTIONS(3500), + [anon_sym_const] = ACTIONS(3500), + [anon_sym_file] = ACTIONS(3500), + [anon_sym_fixed] = ACTIONS(3500), + [anon_sym_internal] = ACTIONS(3500), + [anon_sym_new] = ACTIONS(3500), + [anon_sym_override] = ACTIONS(3500), + [anon_sym_partial] = ACTIONS(3500), + [anon_sym_protected] = ACTIONS(3500), + [anon_sym_required] = ACTIONS(3500), + [anon_sym_sealed] = ACTIONS(3500), + [anon_sym_virtual] = ACTIONS(3500), + [anon_sym_volatile] = ACTIONS(3500), + [anon_sym_where] = ACTIONS(3500), + [anon_sym_notnull] = ACTIONS(3500), + [anon_sym_unmanaged] = ACTIONS(3500), + [anon_sym_implicit] = ACTIONS(3500), + [anon_sym_explicit] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3502), + [anon_sym_scoped] = ACTIONS(3500), + [anon_sym_var] = ACTIONS(3500), + [sym_predefined_type] = ACTIONS(3500), + [anon_sym_while] = ACTIONS(3500), + [anon_sym_yield] = ACTIONS(3500), + [anon_sym_when] = ACTIONS(3500), + [anon_sym_else] = ACTIONS(3500), + [anon_sym_from] = ACTIONS(3500), + [anon_sym_into] = ACTIONS(3500), + [anon_sym_join] = ACTIONS(3500), + [anon_sym_on] = ACTIONS(3500), + [anon_sym_equals] = ACTIONS(3500), + [anon_sym_let] = ACTIONS(3500), + [anon_sym_orderby] = ACTIONS(3500), + [anon_sym_ascending] = ACTIONS(3500), + [anon_sym_descending] = ACTIONS(3500), + [anon_sym_group] = ACTIONS(3500), + [anon_sym_by] = ACTIONS(3500), + [anon_sym_select] = ACTIONS(3500), + [sym_grit_metavariable] = ACTIONS(3502), + [aux_sym_preproc_if_token1] = ACTIONS(3502), + [aux_sym_preproc_if_token3] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3502), + [aux_sym_preproc_elif_token1] = ACTIONS(3502), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451934,11 +451916,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2630] = { - [sym_property_pattern_clause] = STATE(2725), - [sym__variable_designation] = STATE(4934), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), + [sym__variable_designation] = STATE(4569), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2630), [sym_preproc_endregion] = STATE(2630), [sym_preproc_line] = STATE(2630), @@ -451948,69 +451929,68 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), [anon_sym_LBRACK] = ACTIONS(4250), [anon_sym_COLON] = ACTIONS(4250), [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), + [anon_sym_file] = ACTIONS(4218), [anon_sym_LT] = ACTIONS(4252), [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4218), [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4218), [anon_sym_EQ_GT] = ACTIONS(4250), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), [anon_sym_switch] = ACTIONS(4252), [anon_sym_when] = ACTIONS(4252), [sym_discard] = ACTIONS(4234), [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), [anon_sym_and] = ACTIONS(4252), [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), [anon_sym_AMP_AMP] = ACTIONS(4250), [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), [anon_sym_as] = ACTIONS(4252), [anon_sym_is] = ACTIONS(4252), [anon_sym_DASH_GT] = ACTIONS(4250), [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452023,26 +452003,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2631] = { - [sym_modifier] = STATE(5303), - [sym_variable_declaration] = STATE(8071), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6217), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__variable_designation] = STATE(4215), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2631), [sym_preproc_endregion] = STATE(2631), [sym_preproc_line] = STATE(2631), @@ -452052,54 +452016,68 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(657), - [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(657), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4286), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(657), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_COLON] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4302), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4304), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4304), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452112,27 +452090,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2632] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym__variable_designation] = STATE(4529), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2632), [sym_preproc_endregion] = STATE(2632), [sym_preproc_line] = STATE(2632), @@ -452142,53 +452103,68 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4740), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COLON] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4254), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4256), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452201,27 +452177,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2633] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym_property_pattern_clause] = STATE(2792), + [sym__variable_designation] = STATE(4528), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2633), [sym_preproc_endregion] = STATE(2633), [sym_preproc_line] = STATE(2633), @@ -452231,53 +452191,67 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_where] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_from] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_join] = ACTIONS(4794), - [anon_sym_let] = ACTIONS(4794), - [anon_sym_orderby] = ACTIONS(4794), - [anon_sym_ascending] = ACTIONS(4794), - [anon_sym_descending] = ACTIONS(4794), - [anon_sym_group] = ACTIONS(4794), - [anon_sym_select] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4796), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4794), - [sym_grit_metavariable] = ACTIONS(4794), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4256), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452290,6 +452264,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2634] = { + [sym__variable_designation] = STATE(4143), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2634), [sym_preproc_endregion] = STATE(2634), [sym_preproc_line] = STATE(2634), @@ -452299,73 +452277,68 @@ 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(4084), - [anon_sym_alias] = ACTIONS(4084), - [anon_sym_global] = ACTIONS(4084), - [anon_sym_static] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4086), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(4086), - [anon_sym_ref] = ACTIONS(4084), - [anon_sym_delegate] = ACTIONS(4084), - [anon_sym_async] = ACTIONS(4084), - [anon_sym_file] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_where] = ACTIONS(4084), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_notnull] = ACTIONS(4084), - [anon_sym_unmanaged] = ACTIONS(4084), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_scoped] = ACTIONS(4084), - [anon_sym_var] = ACTIONS(4084), - [sym_predefined_type] = ACTIONS(4084), - [anon_sym_yield] = ACTIONS(4084), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_when] = ACTIONS(4084), - [anon_sym_DOT_DOT] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [sym_op_coalescing] = ACTIONS(3197), - [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_ascending] = ACTIONS(4084), - [anon_sym_descending] = ACTIONS(4084), - [anon_sym_group] = ACTIONS(4084), - [anon_sym_by] = ACTIONS(4084), - [anon_sym_select] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_DASH_GT] = ACTIONS(3197), - [anon_sym_with] = ACTIONS(3195), - [sym_grit_metavariable] = ACTIONS(4086), - [aux_sym_preproc_if_token1] = ACTIONS(4086), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COLON] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4254), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4256), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452376,30 +452349,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(3197), }, [2635] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), + [sym_property_pattern_clause] = STATE(2854), + [sym__variable_designation] = STATE(4147), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2635), [sym_preproc_endregion] = STATE(2635), [sym_preproc_line] = STATE(2635), @@ -452409,52 +452365,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2635), [sym_preproc_define] = STATE(2635), [sym_preproc_undef] = STATE(2635), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_where] = ACTIONS(4774), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_from] = ACTIONS(4774), - [anon_sym_join] = ACTIONS(4774), - [anon_sym_let] = ACTIONS(4774), - [anon_sym_orderby] = ACTIONS(4774), - [anon_sym_ascending] = ACTIONS(4774), - [anon_sym_descending] = ACTIONS(4774), - [anon_sym_group] = ACTIONS(4774), - [anon_sym_select] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4776), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4774), - [sym_grit_metavariable] = ACTIONS(4774), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4256), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452467,27 +452438,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2636] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), + [sym_property_pattern_clause] = STATE(2860), + [sym__variable_designation] = STATE(4190), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2636), [sym_preproc_endregion] = STATE(2636), [sym_preproc_line] = STATE(2636), @@ -452497,52 +452452,67 @@ 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_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4782), - [anon_sym_QMARK] = ACTIONS(4798), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4784), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4802), - [anon_sym_from] = ACTIONS(4782), - [anon_sym_join] = ACTIONS(4782), - [anon_sym_let] = ACTIONS(4782), - [anon_sym_orderby] = ACTIONS(4782), - [anon_sym_ascending] = ACTIONS(4782), - [anon_sym_descending] = ACTIONS(4782), - [anon_sym_group] = ACTIONS(4782), - [anon_sym_select] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4806), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4782), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4252), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4252), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452555,27 +452525,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2637] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), + [sym__variable_designation] = STATE(4532), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2637), [sym_preproc_endregion] = STATE(2637), [sym_preproc_line] = STATE(2637), @@ -452585,52 +452538,68 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_from] = ACTIONS(4766), - [anon_sym_join] = ACTIONS(4766), - [anon_sym_let] = ACTIONS(4766), - [anon_sym_orderby] = ACTIONS(4766), - [anon_sym_ascending] = ACTIONS(4766), - [anon_sym_descending] = ACTIONS(4766), - [anon_sym_group] = ACTIONS(4766), - [anon_sym_select] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4766), - [sym_grit_metavariable] = ACTIONS(4766), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_COLON] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4306), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4308), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452643,27 +452612,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2638] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), + [sym_property_pattern_clause] = STATE(2776), + [sym__variable_designation] = STATE(4528), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2638), [sym_preproc_endregion] = STATE(2638), [sym_preproc_line] = STATE(2638), @@ -452673,52 +452626,67 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_join] = ACTIONS(1435), - [anon_sym_let] = ACTIONS(1435), - [anon_sym_orderby] = ACTIONS(1435), - [anon_sym_ascending] = ACTIONS(1435), - [anon_sym_descending] = ACTIONS(1435), - [anon_sym_group] = ACTIONS(1435), - [anon_sym_select] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1437), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(1435), - [sym_grit_metavariable] = ACTIONS(1435), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4256), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452731,10 +452699,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2639] = { - [sym__variable_designation] = STATE(5666), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym_identifier] = STATE(5708), - [sym__reserved_identifier] = STATE(5570), + [sym__variable_designation] = STATE(4630), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2639), [sym_preproc_endregion] = STATE(2639), [sym_preproc_line] = STATE(2639), @@ -452744,68 +452712,68 @@ 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(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_COLON] = ACTIONS(4306), - [anon_sym_COMMA] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4397), - [anon_sym_into] = ACTIONS(4308), - [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), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4403), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_COLON] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4302), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4304), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452816,10 +452784,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(4306), }, [2640] = { - [sym_type_argument_list] = STATE(2447), [sym_preproc_region] = STATE(2640), [sym_preproc_endregion] = STATE(2640), [sym_preproc_line] = STATE(2640), @@ -452829,72 +452795,72 @@ 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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(4379), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_COLON_COLON] = ACTIONS(4099), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_from] = ACTIONS(3951), - [anon_sym_into] = ACTIONS(3951), - [anon_sym_join] = ACTIONS(3951), - [anon_sym_on] = ACTIONS(3951), - [anon_sym_equals] = ACTIONS(3951), - [anon_sym_let] = ACTIONS(3951), - [anon_sym_orderby] = ACTIONS(3951), - [anon_sym_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(4470), + [anon_sym_alias] = ACTIONS(4470), + [anon_sym_global] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4660), + [anon_sym_COLON] = ACTIONS(4660), + [anon_sym_COMMA] = ACTIONS(4472), + [anon_sym_RBRACK] = ACTIONS(4472), + [anon_sym_LPAREN] = ACTIONS(4472), + [anon_sym_RPAREN] = ACTIONS(4472), + [anon_sym_RBRACE] = ACTIONS(4472), + [anon_sym_file] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4662), + [anon_sym_GT] = ACTIONS(4662), + [anon_sym_where] = ACTIONS(4470), + [anon_sym_QMARK] = ACTIONS(4662), + [anon_sym_notnull] = ACTIONS(4470), + [anon_sym_unmanaged] = ACTIONS(4470), + [anon_sym_DOT] = ACTIONS(4662), + [anon_sym_scoped] = ACTIONS(4470), + [anon_sym_EQ_GT] = ACTIONS(4472), + [anon_sym_var] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4660), + [anon_sym_yield] = ACTIONS(4470), + [anon_sym_switch] = ACTIONS(4662), + [anon_sym_when] = ACTIONS(4470), + [sym_discard] = ACTIONS(4470), + [anon_sym_DOT_DOT] = ACTIONS(4660), + [anon_sym_LT_EQ] = ACTIONS(4660), + [anon_sym_GT_EQ] = ACTIONS(4660), + [anon_sym_and] = ACTIONS(4470), + [anon_sym_or] = ACTIONS(4470), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_AMP_AMP] = ACTIONS(4660), + [anon_sym_PIPE_PIPE] = ACTIONS(4660), + [anon_sym_AMP] = ACTIONS(4662), + [sym_op_bitwise_or] = ACTIONS(4662), + [anon_sym_CARET] = ACTIONS(4660), + [sym_op_left_shift] = ACTIONS(4660), + [sym_op_right_shift] = ACTIONS(4662), + [sym_op_unsigned_right_shift] = ACTIONS(4660), + [anon_sym_PLUS] = ACTIONS(4662), + [anon_sym_DASH] = ACTIONS(4662), + [sym_op_divide] = ACTIONS(4662), + [sym_op_modulo] = ACTIONS(4660), + [sym_op_coalescing] = ACTIONS(4660), + [anon_sym_BANG] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4660), + [anon_sym_DASH_DASH] = ACTIONS(4660), + [anon_sym_from] = ACTIONS(4470), + [anon_sym_into] = ACTIONS(4470), + [anon_sym_join] = ACTIONS(4470), + [anon_sym_on] = ACTIONS(4470), + [anon_sym_equals] = ACTIONS(4470), + [anon_sym_let] = ACTIONS(4470), + [anon_sym_orderby] = ACTIONS(4470), + [anon_sym_ascending] = ACTIONS(4470), + [anon_sym_descending] = ACTIONS(4470), + [anon_sym_group] = ACTIONS(4470), + [anon_sym_by] = ACTIONS(4470), + [anon_sym_select] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4662), + [anon_sym_DASH_GT] = ACTIONS(4660), + [anon_sym_with] = ACTIONS(4662), + [sym_grit_metavariable] = ACTIONS(4472), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452907,10 +452873,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2641] = { - [sym__variable_designation] = STATE(5672), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym_identifier] = STATE(5708), - [sym__reserved_identifier] = STATE(5570), + [sym__variable_designation] = STATE(4246), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2641), [sym_preproc_endregion] = STATE(2641), [sym_preproc_line] = STATE(2641), @@ -452920,68 +452886,68 @@ 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(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), [anon_sym_LBRACK] = ACTIONS(4250), [anon_sym_COLON] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4397), + [anon_sym_file] = ACTIONS(4218), [anon_sym_LT] = ACTIONS(4252), [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4397), + [anon_sym_where] = ACTIONS(4218), [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_EQ_GT] = ACTIONS(4250), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), + [anon_sym_when] = ACTIONS(4252), + [sym_discard] = ACTIONS(4226), [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), [anon_sym_and] = ACTIONS(4252), [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), [anon_sym_AMP_AMP] = ACTIONS(4250), [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), [anon_sym_into] = ACTIONS(4252), - [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), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), [anon_sym_as] = ACTIONS(4252), [anon_sym_is] = ACTIONS(4252), [anon_sym_DASH_GT] = ACTIONS(4250), [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4403), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452992,13 +452958,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(4250), }, [2642] = { - [sym__variable_designation] = STATE(5697), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym_identifier] = STATE(5708), - [sym__reserved_identifier] = STATE(5570), + [sym_property_pattern_clause] = STATE(2731), + [sym__variable_designation] = STATE(5510), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym_identifier] = STATE(5489), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2642), [sym_preproc_endregion] = STATE(2642), [sym_preproc_line] = STATE(2642), @@ -453008,68 +452974,67 @@ 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(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COLON] = ACTIONS(4242), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4397), - [anon_sym_into] = ACTIONS(4244), - [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), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4403), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4252), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4188), + [anon_sym_var] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4188), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4252), + [anon_sym_into] = ACTIONS(4252), + [anon_sym_join] = ACTIONS(4252), + [anon_sym_on] = ACTIONS(4188), + [anon_sym_equals] = ACTIONS(4188), + [anon_sym_let] = ACTIONS(4252), + [anon_sym_orderby] = ACTIONS(4252), + [anon_sym_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4252), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4252), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453080,30 +453045,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(4242), }, [2643] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), + [sym_property_pattern_clause] = STATE(2775), + [sym__variable_designation] = STATE(4578), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2643), [sym_preproc_endregion] = STATE(2643), [sym_preproc_line] = STATE(2643), @@ -453113,52 +453061,67 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_where] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_from] = ACTIONS(4794), - [anon_sym_join] = ACTIONS(4794), - [anon_sym_let] = ACTIONS(4794), - [anon_sym_orderby] = ACTIONS(4794), - [anon_sym_ascending] = ACTIONS(4794), - [anon_sym_descending] = ACTIONS(4794), - [anon_sym_group] = ACTIONS(4794), - [anon_sym_select] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4796), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4794), - [sym_grit_metavariable] = ACTIONS(4794), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4252), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453171,27 +453134,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2644] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), + [sym_property_pattern_clause] = STATE(2733), + [sym__variable_designation] = STATE(5508), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym_identifier] = STATE(5489), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2644), [sym_preproc_endregion] = STATE(2644), [sym_preproc_line] = STATE(2644), @@ -453201,52 +453148,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2644), [sym_preproc_define] = STATE(2644), [sym_preproc_undef] = STATE(2644), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(4798), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4802), - [anon_sym_from] = ACTIONS(4786), - [anon_sym_join] = ACTIONS(4786), - [anon_sym_let] = ACTIONS(4786), - [anon_sym_orderby] = ACTIONS(4786), - [anon_sym_ascending] = ACTIONS(4786), - [anon_sym_descending] = ACTIONS(4786), - [anon_sym_group] = ACTIONS(4786), - [anon_sym_select] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4806), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4786), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4256), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4188), + [anon_sym_var] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4188), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4256), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4256), + [anon_sym_on] = ACTIONS(4188), + [anon_sym_equals] = ACTIONS(4188), + [anon_sym_let] = ACTIONS(4256), + [anon_sym_orderby] = ACTIONS(4256), + [anon_sym_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4256), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4256), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453259,27 +453221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2645] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), [sym_preproc_region] = STATE(2645), [sym_preproc_endregion] = STATE(2645), [sym_preproc_line] = STATE(2645), @@ -453289,52 +453230,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2645), [sym_preproc_define] = STATE(2645), [sym_preproc_undef] = STATE(2645), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4806), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4084), + [anon_sym_alias] = ACTIONS(4084), + [anon_sym_global] = ACTIONS(4084), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_LPAREN] = ACTIONS(4086), + [anon_sym_ref] = ACTIONS(4084), + [anon_sym_delegate] = ACTIONS(4084), + [anon_sym_async] = ACTIONS(4084), + [anon_sym_file] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_in] = ACTIONS(3203), + [anon_sym_where] = ACTIONS(4084), + [anon_sym_QMARK] = ACTIONS(3203), + [anon_sym_notnull] = ACTIONS(4084), + [anon_sym_unmanaged] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(3203), + [anon_sym_scoped] = ACTIONS(4084), + [anon_sym_var] = ACTIONS(4084), + [anon_sym_STAR] = ACTIONS(3205), + [sym_predefined_type] = ACTIONS(4084), + [anon_sym_yield] = ACTIONS(4084), + [anon_sym_switch] = ACTIONS(3203), + [anon_sym_when] = ACTIONS(4084), + [anon_sym_DOT_DOT] = ACTIONS(3205), + [anon_sym_LT_EQ] = ACTIONS(3205), + [anon_sym_GT_EQ] = ACTIONS(3205), + [anon_sym_and] = ACTIONS(3203), + [anon_sym_or] = ACTIONS(3203), + [anon_sym_EQ_EQ] = ACTIONS(3205), + [anon_sym_BANG_EQ] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3203), + [sym_op_bitwise_or] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3205), + [sym_op_left_shift] = ACTIONS(3205), + [sym_op_right_shift] = ACTIONS(3203), + [sym_op_unsigned_right_shift] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [sym_op_divide] = ACTIONS(3203), + [sym_op_modulo] = ACTIONS(3205), + [sym_op_coalescing] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [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_ascending] = ACTIONS(4084), + [anon_sym_descending] = ACTIONS(4084), + [anon_sym_group] = ACTIONS(4084), + [anon_sym_by] = ACTIONS(4084), + [anon_sym_select] = ACTIONS(4084), + [anon_sym_as] = ACTIONS(3203), + [anon_sym_is] = ACTIONS(3203), + [anon_sym_DASH_GT] = ACTIONS(3205), + [anon_sym_with] = ACTIONS(3203), + [sym_grit_metavariable] = ACTIONS(4086), + [aux_sym_preproc_if_token1] = ACTIONS(4086), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453347,11 +453308,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2646] = { - [sym_property_pattern_clause] = STATE(2757), - [sym__variable_designation] = STATE(5251), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym_identifier] = STATE(5241), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(2646), [sym_preproc_endregion] = STATE(2646), [sym_preproc_line] = STATE(2646), @@ -453361,68 +453317,72 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4244), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4244), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4244), - [anon_sym_orderby] = ACTIONS(4244), - [anon_sym_ascending] = ACTIONS(4244), - [anon_sym_descending] = ACTIONS(4244), - [anon_sym_group] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4242), + [sym__identifier_token] = ACTIONS(3528), + [anon_sym_extern] = ACTIONS(3528), + [anon_sym_alias] = ACTIONS(3528), + [anon_sym_global] = ACTIONS(3528), + [anon_sym_using] = ACTIONS(3528), + [anon_sym_unsafe] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_LPAREN] = ACTIONS(3530), + [anon_sym_event] = ACTIONS(3528), + [anon_sym_namespace] = ACTIONS(3528), + [anon_sym_class] = ACTIONS(3528), + [anon_sym_ref] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), + [anon_sym_RBRACE] = ACTIONS(3530), + [anon_sym_interface] = ACTIONS(3528), + [anon_sym_delegate] = ACTIONS(3528), + [anon_sym_record] = ACTIONS(3528), + [anon_sym_public] = ACTIONS(3528), + [anon_sym_private] = ACTIONS(3528), + [anon_sym_readonly] = ACTIONS(3528), + [anon_sym_abstract] = ACTIONS(3528), + [anon_sym_async] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_file] = ACTIONS(3528), + [anon_sym_fixed] = ACTIONS(3528), + [anon_sym_internal] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_override] = ACTIONS(3528), + [anon_sym_partial] = ACTIONS(3528), + [anon_sym_protected] = ACTIONS(3528), + [anon_sym_required] = ACTIONS(3528), + [anon_sym_sealed] = ACTIONS(3528), + [anon_sym_virtual] = ACTIONS(3528), + [anon_sym_volatile] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3528), + [anon_sym_notnull] = ACTIONS(3528), + [anon_sym_unmanaged] = ACTIONS(3528), + [anon_sym_implicit] = ACTIONS(3528), + [anon_sym_explicit] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3530), + [anon_sym_scoped] = ACTIONS(3528), + [anon_sym_var] = ACTIONS(3528), + [sym_predefined_type] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_yield] = ACTIONS(3528), + [anon_sym_when] = ACTIONS(3528), + [anon_sym_else] = ACTIONS(3528), + [anon_sym_from] = ACTIONS(3528), + [anon_sym_into] = ACTIONS(3528), + [anon_sym_join] = ACTIONS(3528), + [anon_sym_on] = ACTIONS(3528), + [anon_sym_equals] = ACTIONS(3528), + [anon_sym_let] = ACTIONS(3528), + [anon_sym_orderby] = ACTIONS(3528), + [anon_sym_ascending] = ACTIONS(3528), + [anon_sym_descending] = ACTIONS(3528), + [anon_sym_group] = ACTIONS(3528), + [anon_sym_by] = ACTIONS(3528), + [anon_sym_select] = ACTIONS(3528), + [sym_grit_metavariable] = ACTIONS(3530), + [aux_sym_preproc_if_token1] = ACTIONS(3530), + [aux_sym_preproc_if_token3] = ACTIONS(3530), + [aux_sym_preproc_else_token1] = ACTIONS(3530), + [aux_sym_preproc_elif_token1] = ACTIONS(3530), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453435,27 +453395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2647] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), + [sym_type_argument_list] = STATE(2710), [sym_preproc_region] = STATE(2647), [sym_preproc_endregion] = STATE(2647), [sym_preproc_line] = STATE(2647), @@ -453465,52 +453405,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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3955), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(4664), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_COLON_COLON] = ACTIONS(4203), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453521,29 +453479,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(3957), }, [2648] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), + [sym_property_pattern_clause] = STATE(2894), + [sym__variable_designation] = STATE(4147), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2648), [sym_preproc_endregion] = STATE(2648), [sym_preproc_line] = STATE(2648), @@ -453553,52 +453496,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2648), [sym_preproc_define] = STATE(2648), [sym_preproc_undef] = STATE(2648), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4256), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453611,27 +453569,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2649] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), + [sym_property_pattern_clause] = STATE(2839), + [sym__variable_designation] = STATE(4190), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2649), [sym_preproc_endregion] = STATE(2649), [sym_preproc_line] = STATE(2649), @@ -453641,52 +453583,67 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4752), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_from] = ACTIONS(4752), - [anon_sym_join] = ACTIONS(4752), - [anon_sym_let] = ACTIONS(4752), - [anon_sym_orderby] = ACTIONS(4752), - [anon_sym_ascending] = ACTIONS(4752), - [anon_sym_descending] = ACTIONS(4752), - [anon_sym_group] = ACTIONS(4752), - [anon_sym_select] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4752), - [sym_grit_metavariable] = ACTIONS(4752), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4252), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4252), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453699,27 +453656,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2650] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), + [sym_property_pattern_clause] = STATE(2690), + [sym__variable_designation] = STATE(4147), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2650), [sym_preproc_endregion] = STATE(2650), [sym_preproc_line] = STATE(2650), @@ -453729,52 +453670,67 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4256), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453787,11 +453743,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2651] = { - [sym_property_pattern_clause] = STATE(2768), - [sym__variable_designation] = STATE(5332), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym_identifier] = STATE(5241), - [sym__reserved_identifier] = STATE(2395), + [sym_property_pattern_clause] = STATE(2798), + [sym__variable_designation] = STATE(5508), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym_identifier] = STATE(5489), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2651), [sym_preproc_endregion] = STATE(2651), [sym_preproc_line] = STATE(2651), @@ -453801,68 +453757,67 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4252), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4252), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4252), - [anon_sym_orderby] = ACTIONS(4252), - [anon_sym_ascending] = ACTIONS(4252), - [anon_sym_descending] = ACTIONS(4252), - [anon_sym_group] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4252), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4250), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4256), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4210), + [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4210), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4256), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4256), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4256), + [anon_sym_orderby] = ACTIONS(4256), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4256), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4256), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453875,27 +453830,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2652] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), [sym_preproc_region] = STATE(2652), [sym_preproc_endregion] = STATE(2652), [sym_preproc_line] = STATE(2652), @@ -453905,52 +453839,71 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_EQ] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3189), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACK] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_in] = ACTIONS(3189), + [anon_sym_where] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_EQ_GT] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_when] = ACTIONS(3189), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3189), + [anon_sym_PLUS_EQ] = ACTIONS(3189), + [anon_sym_DASH_EQ] = ACTIONS(3189), + [anon_sym_STAR_EQ] = ACTIONS(3189), + [anon_sym_SLASH_EQ] = ACTIONS(3189), + [anon_sym_PERCENT_EQ] = ACTIONS(3189), + [anon_sym_AMP_EQ] = ACTIONS(3189), + [anon_sym_CARET_EQ] = ACTIONS(3189), + [anon_sym_PIPE_EQ] = ACTIONS(3189), + [anon_sym_LT_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_GT_EQ] = ACTIONS(3189), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [sym_op_left_shift] = ACTIONS(3187), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3187), + [sym_op_coalescing] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_on] = ACTIONS(3189), + [anon_sym_equals] = ACTIONS(3189), + [anon_sym_by] = ACTIONS(3189), + [anon_sym_as] = ACTIONS(3189), + [anon_sym_is] = ACTIONS(3189), + [anon_sym_DASH_GT] = ACTIONS(3189), + [anon_sym_with] = 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), @@ -453963,25 +453916,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2653] = { - [sym_modifier] = STATE(5303), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6391), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(2653), [sym_preproc_endregion] = STATE(2653), [sym_preproc_line] = STATE(2653), @@ -453991,54 +453925,71 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(657), - [anon_sym_static] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(657), - [anon_sym_private] = ACTIONS(657), - [anon_sym_readonly] = ACTIONS(657), - [anon_sym_abstract] = ACTIONS(657), - [anon_sym_async] = ACTIONS(657), - [anon_sym_const] = ACTIONS(657), - [anon_sym_file] = ACTIONS(4808), - [anon_sym_fixed] = ACTIONS(657), - [anon_sym_internal] = ACTIONS(657), - [anon_sym_new] = ACTIONS(657), - [anon_sym_override] = ACTIONS(657), - [anon_sym_partial] = ACTIONS(657), - [anon_sym_protected] = ACTIONS(657), - [anon_sym_required] = ACTIONS(657), - [anon_sym_sealed] = ACTIONS(657), - [anon_sym_virtual] = ACTIONS(657), - [anon_sym_volatile] = ACTIONS(657), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4667), + [anon_sym_extern] = ACTIONS(4667), + [anon_sym_alias] = ACTIONS(4667), + [anon_sym_global] = ACTIONS(4667), + [anon_sym_using] = ACTIONS(4667), + [anon_sym_unsafe] = ACTIONS(4667), + [anon_sym_EQ] = ACTIONS(4669), + [anon_sym_static] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4669), + [anon_sym_LPAREN] = ACTIONS(4669), + [anon_sym_event] = ACTIONS(4667), + [anon_sym_namespace] = ACTIONS(4667), + [anon_sym_class] = ACTIONS(4667), + [anon_sym_ref] = ACTIONS(4667), + [anon_sym_struct] = ACTIONS(4667), + [anon_sym_enum] = ACTIONS(4667), + [anon_sym_RBRACE] = ACTIONS(4669), + [anon_sym_interface] = ACTIONS(4667), + [anon_sym_delegate] = ACTIONS(4667), + [anon_sym_record] = ACTIONS(4667), + [anon_sym_public] = ACTIONS(4667), + [anon_sym_private] = ACTIONS(4667), + [anon_sym_readonly] = ACTIONS(4667), + [anon_sym_abstract] = ACTIONS(4667), + [anon_sym_async] = ACTIONS(4667), + [anon_sym_const] = ACTIONS(4667), + [anon_sym_file] = ACTIONS(4667), + [anon_sym_fixed] = ACTIONS(4667), + [anon_sym_internal] = ACTIONS(4667), + [anon_sym_new] = ACTIONS(4667), + [anon_sym_override] = ACTIONS(4667), + [anon_sym_partial] = ACTIONS(4667), + [anon_sym_protected] = ACTIONS(4667), + [anon_sym_required] = ACTIONS(4667), + [anon_sym_sealed] = ACTIONS(4667), + [anon_sym_virtual] = ACTIONS(4667), + [anon_sym_volatile] = ACTIONS(4667), + [anon_sym_where] = ACTIONS(4667), + [anon_sym_notnull] = ACTIONS(4667), + [anon_sym_unmanaged] = ACTIONS(4667), + [anon_sym_implicit] = ACTIONS(4667), + [anon_sym_explicit] = ACTIONS(4667), + [anon_sym_TILDE] = ACTIONS(4669), + [anon_sym_scoped] = ACTIONS(4667), + [anon_sym_var] = ACTIONS(4667), + [sym_predefined_type] = ACTIONS(4667), + [anon_sym_yield] = ACTIONS(4667), + [anon_sym_when] = ACTIONS(4667), + [anon_sym_from] = ACTIONS(4667), + [anon_sym_into] = ACTIONS(4667), + [anon_sym_join] = ACTIONS(4667), + [anon_sym_on] = ACTIONS(4667), + [anon_sym_equals] = ACTIONS(4667), + [anon_sym_let] = ACTIONS(4667), + [anon_sym_orderby] = ACTIONS(4667), + [anon_sym_ascending] = ACTIONS(4667), + [anon_sym_descending] = ACTIONS(4667), + [anon_sym_group] = ACTIONS(4667), + [anon_sym_by] = ACTIONS(4667), + [anon_sym_select] = ACTIONS(4667), + [sym_grit_metavariable] = ACTIONS(4669), + [aux_sym_preproc_if_token1] = ACTIONS(4669), + [aux_sym_preproc_if_token3] = ACTIONS(4669), + [aux_sym_preproc_else_token1] = ACTIONS(4669), + [aux_sym_preproc_elif_token1] = ACTIONS(4669), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454051,27 +454002,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2654] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), [sym_preproc_region] = STATE(2654), [sym_preproc_endregion] = STATE(2654), [sym_preproc_line] = STATE(2654), @@ -454081,52 +454011,71 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4778), - [anon_sym_QMARK] = ACTIONS(4798), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4802), - [anon_sym_from] = ACTIONS(4778), - [anon_sym_join] = ACTIONS(4778), - [anon_sym_let] = ACTIONS(4778), - [anon_sym_orderby] = ACTIONS(4778), - [anon_sym_ascending] = ACTIONS(4778), - [anon_sym_descending] = ACTIONS(4778), - [anon_sym_group] = ACTIONS(4778), - [anon_sym_select] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4806), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4778), + [sym__identifier_token] = ACTIONS(4671), + [anon_sym_extern] = ACTIONS(4671), + [anon_sym_alias] = ACTIONS(4671), + [anon_sym_global] = ACTIONS(4671), + [anon_sym_using] = ACTIONS(4671), + [anon_sym_unsafe] = ACTIONS(4671), + [anon_sym_EQ] = ACTIONS(4673), + [anon_sym_static] = ACTIONS(4671), + [anon_sym_LBRACK] = ACTIONS(4675), + [anon_sym_LPAREN] = ACTIONS(4675), + [anon_sym_event] = ACTIONS(4671), + [anon_sym_namespace] = ACTIONS(4671), + [anon_sym_class] = ACTIONS(4671), + [anon_sym_ref] = ACTIONS(4671), + [anon_sym_struct] = ACTIONS(4671), + [anon_sym_enum] = ACTIONS(4671), + [anon_sym_RBRACE] = ACTIONS(4675), + [anon_sym_interface] = ACTIONS(4671), + [anon_sym_delegate] = ACTIONS(4671), + [anon_sym_record] = ACTIONS(4671), + [anon_sym_public] = ACTIONS(4671), + [anon_sym_private] = ACTIONS(4671), + [anon_sym_readonly] = ACTIONS(4671), + [anon_sym_abstract] = ACTIONS(4671), + [anon_sym_async] = ACTIONS(4671), + [anon_sym_const] = ACTIONS(4671), + [anon_sym_file] = ACTIONS(4671), + [anon_sym_fixed] = ACTIONS(4671), + [anon_sym_internal] = ACTIONS(4671), + [anon_sym_new] = ACTIONS(4671), + [anon_sym_override] = ACTIONS(4671), + [anon_sym_partial] = ACTIONS(4671), + [anon_sym_protected] = ACTIONS(4671), + [anon_sym_required] = ACTIONS(4671), + [anon_sym_sealed] = ACTIONS(4671), + [anon_sym_virtual] = ACTIONS(4671), + [anon_sym_volatile] = ACTIONS(4671), + [anon_sym_where] = ACTIONS(4671), + [anon_sym_notnull] = ACTIONS(4671), + [anon_sym_unmanaged] = ACTIONS(4671), + [anon_sym_implicit] = ACTIONS(4671), + [anon_sym_explicit] = ACTIONS(4671), + [anon_sym_TILDE] = ACTIONS(4675), + [anon_sym_scoped] = ACTIONS(4671), + [anon_sym_var] = ACTIONS(4671), + [sym_predefined_type] = ACTIONS(4671), + [anon_sym_yield] = ACTIONS(4671), + [anon_sym_when] = ACTIONS(4671), + [anon_sym_from] = ACTIONS(4671), + [anon_sym_into] = ACTIONS(4671), + [anon_sym_join] = ACTIONS(4671), + [anon_sym_on] = ACTIONS(4671), + [anon_sym_equals] = ACTIONS(4671), + [anon_sym_let] = ACTIONS(4671), + [anon_sym_orderby] = ACTIONS(4671), + [anon_sym_ascending] = ACTIONS(4671), + [anon_sym_descending] = ACTIONS(4671), + [anon_sym_group] = ACTIONS(4671), + [anon_sym_by] = ACTIONS(4671), + [anon_sym_select] = ACTIONS(4671), + [sym_grit_metavariable] = ACTIONS(4675), + [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), @@ -454139,27 +454088,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2655] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), [sym_preproc_region] = STATE(2655), [sym_preproc_endregion] = STATE(2655), [sym_preproc_line] = STATE(2655), @@ -454169,52 +454097,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2655), [sym_preproc_define] = STATE(2655), [sym_preproc_undef] = STATE(2655), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4806), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_where] = ACTIONS(3694), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_when] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3694), + [anon_sym_or] = ACTIONS(3694), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_on] = ACTIONS(3694), + [anon_sym_equals] = ACTIONS(3694), + [anon_sym_by] = ACTIONS(3694), + [anon_sym_as] = ACTIONS(3694), + [anon_sym_is] = ACTIONS(3694), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3694), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454227,27 +454174,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2656] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), + [sym__variable_designation] = STATE(4529), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(2656), [sym_preproc_endregion] = STATE(2656), [sym_preproc_line] = STATE(2656), @@ -454257,52 +454187,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2656), [sym_preproc_define] = STATE(2656), [sym_preproc_undef] = STATE(2656), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4806), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_in] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4115), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454315,27 +454260,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2657] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), [sym_preproc_region] = STATE(2657), [sym_preproc_endregion] = STATE(2657), [sym_preproc_line] = STATE(2657), @@ -454345,85 +454269,83 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4806), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3913), + [anon_sym_alias] = ACTIONS(3913), + [anon_sym_global] = ACTIONS(3913), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_notnull] = ACTIONS(3913), + [anon_sym_unmanaged] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_scoped] = ACTIONS(3913), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3910), + [anon_sym_yield] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(3913), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3910), + [sym_op_left_shift] = ACTIONS(3910), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3910), + [sym_op_coalescing] = ACTIONS(3910), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(3913), + [anon_sym_into] = ACTIONS(3913), + [anon_sym_join] = ACTIONS(3913), + [anon_sym_on] = ACTIONS(3913), + [anon_sym_equals] = ACTIONS(3913), + [anon_sym_let] = ACTIONS(3913), + [anon_sym_orderby] = ACTIONS(3913), + [anon_sym_ascending] = ACTIONS(3913), + [anon_sym_descending] = ACTIONS(3913), + [anon_sym_group] = ACTIONS(3913), + [anon_sym_by] = ACTIONS(3913), + [anon_sym_select] = ACTIONS(3913), + [anon_sym_as] = ACTIONS(3913), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(3910), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3910), }, [2658] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), [sym_preproc_region] = STATE(2658), [sym_preproc_endregion] = STATE(2658), [sym_preproc_line] = STATE(2658), @@ -454433,52 +454355,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2658), [sym_preproc_define] = STATE(2658), [sym_preproc_undef] = STATE(2658), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4806), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [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_EQ] = ACTIONS(4679), + [anon_sym_static] = ACTIONS(4677), + [anon_sym_LBRACK] = ACTIONS(4681), + [anon_sym_LPAREN] = ACTIONS(4681), + [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(4681), + [anon_sym_interface] = ACTIONS(4677), + [anon_sym_delegate] = ACTIONS(4677), + [anon_sym_record] = ACTIONS(4677), + [anon_sym_public] = ACTIONS(4677), + [anon_sym_private] = ACTIONS(4677), + [anon_sym_readonly] = 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_protected] = 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_implicit] = ACTIONS(4677), + [anon_sym_explicit] = ACTIONS(4677), + [anon_sym_TILDE] = ACTIONS(4681), + [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), + [sym_grit_metavariable] = ACTIONS(4681), + [aux_sym_preproc_if_token1] = ACTIONS(4681), + [aux_sym_preproc_if_token3] = ACTIONS(4681), + [aux_sym_preproc_else_token1] = ACTIONS(4681), + [aux_sym_preproc_elif_token1] = ACTIONS(4681), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454491,11 +454432,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2659] = { - [sym_property_pattern_clause] = STATE(2770), - [sym__variable_designation] = STATE(4968), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(2659), [sym_preproc_endregion] = STATE(2659), [sym_preproc_line] = STATE(2659), @@ -454505,68 +454441,71 @@ 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(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4141), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(4683), + [anon_sym_extern] = ACTIONS(4683), + [anon_sym_alias] = ACTIONS(4683), + [anon_sym_global] = ACTIONS(4683), + [anon_sym_using] = ACTIONS(4683), + [anon_sym_unsafe] = ACTIONS(4683), + [anon_sym_EQ] = ACTIONS(4685), + [anon_sym_static] = ACTIONS(4683), + [anon_sym_LBRACK] = ACTIONS(4685), + [anon_sym_LPAREN] = ACTIONS(4685), + [anon_sym_event] = ACTIONS(4683), + [anon_sym_namespace] = ACTIONS(4683), + [anon_sym_class] = ACTIONS(4683), + [anon_sym_ref] = ACTIONS(4683), + [anon_sym_struct] = ACTIONS(4683), + [anon_sym_enum] = ACTIONS(4683), + [anon_sym_RBRACE] = ACTIONS(4685), + [anon_sym_interface] = ACTIONS(4683), + [anon_sym_delegate] = ACTIONS(4683), + [anon_sym_record] = ACTIONS(4683), + [anon_sym_public] = ACTIONS(4683), + [anon_sym_private] = ACTIONS(4683), + [anon_sym_readonly] = ACTIONS(4683), + [anon_sym_abstract] = ACTIONS(4683), + [anon_sym_async] = ACTIONS(4683), + [anon_sym_const] = ACTIONS(4683), + [anon_sym_file] = ACTIONS(4683), + [anon_sym_fixed] = ACTIONS(4683), + [anon_sym_internal] = ACTIONS(4683), + [anon_sym_new] = ACTIONS(4683), + [anon_sym_override] = ACTIONS(4683), + [anon_sym_partial] = ACTIONS(4683), + [anon_sym_protected] = ACTIONS(4683), + [anon_sym_required] = ACTIONS(4683), + [anon_sym_sealed] = ACTIONS(4683), + [anon_sym_virtual] = ACTIONS(4683), + [anon_sym_volatile] = ACTIONS(4683), + [anon_sym_where] = ACTIONS(4683), + [anon_sym_notnull] = ACTIONS(4683), + [anon_sym_unmanaged] = ACTIONS(4683), + [anon_sym_implicit] = ACTIONS(4683), + [anon_sym_explicit] = ACTIONS(4683), + [anon_sym_TILDE] = ACTIONS(4685), + [anon_sym_scoped] = ACTIONS(4683), + [anon_sym_var] = ACTIONS(4683), + [sym_predefined_type] = ACTIONS(4683), + [anon_sym_yield] = ACTIONS(4683), + [anon_sym_when] = ACTIONS(4683), + [anon_sym_from] = ACTIONS(4683), + [anon_sym_into] = ACTIONS(4683), + [anon_sym_join] = ACTIONS(4683), + [anon_sym_on] = ACTIONS(4683), + [anon_sym_equals] = ACTIONS(4683), + [anon_sym_let] = ACTIONS(4683), + [anon_sym_orderby] = ACTIONS(4683), + [anon_sym_ascending] = ACTIONS(4683), + [anon_sym_descending] = ACTIONS(4683), + [anon_sym_group] = ACTIONS(4683), + [anon_sym_by] = ACTIONS(4683), + [anon_sym_select] = ACTIONS(4683), + [sym_grit_metavariable] = ACTIONS(4685), + [aux_sym_preproc_if_token1] = ACTIONS(4685), + [aux_sym_preproc_if_token3] = ACTIONS(4685), + [aux_sym_preproc_else_token1] = ACTIONS(4685), + [aux_sym_preproc_elif_token1] = ACTIONS(4685), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454579,10 +454518,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2660] = { - [sym__variable_designation] = STATE(5657), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym_identifier] = STATE(5708), - [sym__reserved_identifier] = STATE(5570), + [sym__variable_designation] = STATE(5306), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym_identifier] = STATE(5320), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2660), [sym_preproc_endregion] = STATE(2660), [sym_preproc_line] = STATE(2660), @@ -454592,68 +454531,67 @@ 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(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_COLON] = ACTIONS(4302), - [anon_sym_COMMA] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [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), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4403), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4252), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4252), + [anon_sym_into] = ACTIONS(4425), + [anon_sym_join] = ACTIONS(4252), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(4252), + [anon_sym_orderby] = ACTIONS(4252), + [anon_sym_ascending] = ACTIONS(4252), + [anon_sym_descending] = ACTIONS(4252), + [anon_sym_group] = ACTIONS(4252), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4252), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4250), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454664,13 +454602,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(4302), }, [2661] = { - [sym__variable_designation] = STATE(5657), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym_identifier] = STATE(5708), - [sym__reserved_identifier] = STATE(5570), + [sym__variable_designation] = STATE(5242), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym_identifier] = STATE(5320), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2661), [sym_preproc_endregion] = STATE(2661), [sym_preproc_line] = STATE(2661), @@ -454680,68 +454617,67 @@ 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(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_COLON] = ACTIONS(4302), - [anon_sym_COMMA] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4397), - [anon_sym_into] = ACTIONS(4304), - [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), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4403), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_COMMA] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4308), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4308), + [anon_sym_into] = ACTIONS(4425), + [anon_sym_join] = ACTIONS(4308), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [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(4425), + [anon_sym_select] = ACTIONS(4308), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4306), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454752,30 +454688,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(4302), }, [2662] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), [sym_preproc_region] = STATE(2662), [sym_preproc_endregion] = STATE(2662), [sym_preproc_line] = STATE(2662), @@ -454785,52 +454699,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2662), [sym_preproc_define] = STATE(2662), [sym_preproc_undef] = STATE(2662), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4798), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4802), - [anon_sym_from] = ACTIONS(4790), - [anon_sym_join] = ACTIONS(4790), - [anon_sym_let] = ACTIONS(4790), - [anon_sym_orderby] = ACTIONS(4790), - [anon_sym_ascending] = ACTIONS(4790), - [anon_sym_descending] = ACTIONS(4790), - [anon_sym_group] = ACTIONS(4790), - [anon_sym_select] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4806), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4790), + [sym__identifier_token] = ACTIONS(4687), + [anon_sym_extern] = ACTIONS(4687), + [anon_sym_alias] = ACTIONS(4687), + [anon_sym_global] = ACTIONS(4687), + [anon_sym_using] = ACTIONS(4687), + [anon_sym_unsafe] = ACTIONS(4687), + [anon_sym_EQ] = ACTIONS(4689), + [anon_sym_static] = ACTIONS(4687), + [anon_sym_LBRACK] = ACTIONS(4691), + [anon_sym_LPAREN] = ACTIONS(4691), + [anon_sym_event] = ACTIONS(4687), + [anon_sym_namespace] = ACTIONS(4687), + [anon_sym_class] = ACTIONS(4687), + [anon_sym_ref] = ACTIONS(4687), + [anon_sym_struct] = ACTIONS(4687), + [anon_sym_enum] = ACTIONS(4687), + [anon_sym_RBRACE] = ACTIONS(4691), + [anon_sym_interface] = ACTIONS(4687), + [anon_sym_delegate] = ACTIONS(4687), + [anon_sym_record] = ACTIONS(4687), + [anon_sym_public] = ACTIONS(4687), + [anon_sym_private] = ACTIONS(4687), + [anon_sym_readonly] = ACTIONS(4687), + [anon_sym_abstract] = ACTIONS(4687), + [anon_sym_async] = ACTIONS(4687), + [anon_sym_const] = ACTIONS(4687), + [anon_sym_file] = ACTIONS(4687), + [anon_sym_fixed] = ACTIONS(4687), + [anon_sym_internal] = ACTIONS(4687), + [anon_sym_new] = ACTIONS(4687), + [anon_sym_override] = ACTIONS(4687), + [anon_sym_partial] = ACTIONS(4687), + [anon_sym_protected] = ACTIONS(4687), + [anon_sym_required] = ACTIONS(4687), + [anon_sym_sealed] = ACTIONS(4687), + [anon_sym_virtual] = ACTIONS(4687), + [anon_sym_volatile] = ACTIONS(4687), + [anon_sym_where] = ACTIONS(4687), + [anon_sym_notnull] = ACTIONS(4687), + [anon_sym_unmanaged] = ACTIONS(4687), + [anon_sym_implicit] = ACTIONS(4687), + [anon_sym_explicit] = ACTIONS(4687), + [anon_sym_TILDE] = ACTIONS(4691), + [anon_sym_scoped] = ACTIONS(4687), + [anon_sym_var] = ACTIONS(4687), + [sym_predefined_type] = ACTIONS(4687), + [anon_sym_yield] = ACTIONS(4687), + [anon_sym_when] = ACTIONS(4687), + [anon_sym_from] = ACTIONS(4687), + [anon_sym_into] = ACTIONS(4687), + [anon_sym_join] = ACTIONS(4687), + [anon_sym_on] = ACTIONS(4687), + [anon_sym_equals] = ACTIONS(4687), + [anon_sym_let] = ACTIONS(4687), + [anon_sym_orderby] = ACTIONS(4687), + [anon_sym_ascending] = ACTIONS(4687), + [anon_sym_descending] = ACTIONS(4687), + [anon_sym_group] = ACTIONS(4687), + [anon_sym_by] = ACTIONS(4687), + [anon_sym_select] = ACTIONS(4687), + [sym_grit_metavariable] = ACTIONS(4691), + [aux_sym_preproc_if_token1] = ACTIONS(4691), + [aux_sym_preproc_if_token3] = ACTIONS(4691), + [aux_sym_preproc_else_token1] = ACTIONS(4691), + [aux_sym_preproc_elif_token1] = ACTIONS(4691), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454843,10 +454776,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2663] = { - [sym__variable_designation] = STATE(5666), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym_identifier] = STATE(5708), - [sym__reserved_identifier] = STATE(5570), [sym_preproc_region] = STATE(2663), [sym_preproc_endregion] = STATE(2663), [sym_preproc_line] = STATE(2663), @@ -454857,101 +454786,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(2663), [sym_preproc_undef] = STATE(2663), [sym__identifier_token] = ACTIONS(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_COLON] = ACTIONS(4306), - [anon_sym_COMMA] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [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), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4403), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4306), + [anon_sym_alias] = ACTIONS(4395), + [anon_sym_global] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_file] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4395), + [anon_sym_GT] = ACTIONS(4395), + [anon_sym_where] = ACTIONS(4395), + [anon_sym_QMARK] = ACTIONS(4395), + [anon_sym_notnull] = ACTIONS(4395), + [anon_sym_unmanaged] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_scoped] = ACTIONS(4395), + [anon_sym_EQ_GT] = ACTIONS(4399), + [anon_sym_var] = ACTIONS(4395), + [anon_sym_STAR] = ACTIONS(4397), + [anon_sym_yield] = ACTIONS(4395), + [anon_sym_switch] = ACTIONS(4395), + [anon_sym_when] = ACTIONS(4395), + [sym_discard] = ACTIONS(4395), + [anon_sym_DOT_DOT] = ACTIONS(4397), + [anon_sym_LT_EQ] = ACTIONS(4397), + [anon_sym_GT_EQ] = ACTIONS(4397), + [anon_sym_and] = ACTIONS(4395), + [anon_sym_or] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_AMP_AMP] = ACTIONS(4397), + [anon_sym_PIPE_PIPE] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4395), + [sym_op_bitwise_or] = ACTIONS(4395), + [anon_sym_CARET] = ACTIONS(4397), + [sym_op_left_shift] = ACTIONS(4397), + [sym_op_right_shift] = ACTIONS(4395), + [sym_op_unsigned_right_shift] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4395), + [anon_sym_DASH] = ACTIONS(4395), + [sym_op_divide] = ACTIONS(4395), + [sym_op_modulo] = ACTIONS(4397), + [sym_op_coalescing] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4397), + [anon_sym_from] = ACTIONS(4395), + [anon_sym_into] = ACTIONS(4395), + [anon_sym_join] = ACTIONS(4395), + [anon_sym_on] = ACTIONS(4395), + [anon_sym_equals] = ACTIONS(4395), + [anon_sym_let] = ACTIONS(4395), + [anon_sym_orderby] = ACTIONS(4395), + [anon_sym_ascending] = ACTIONS(4395), + [anon_sym_descending] = ACTIONS(4395), + [anon_sym_group] = ACTIONS(4395), + [anon_sym_by] = ACTIONS(4395), + [anon_sym_select] = ACTIONS(4395), + [anon_sym_as] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4395), + [anon_sym_DASH_GT] = ACTIONS(4397), + [anon_sym_with] = ACTIONS(4395), + [sym_grit_metavariable] = ACTIONS(4397), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4397), }, [2664] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), [sym_preproc_region] = STATE(2664), [sym_preproc_endregion] = STATE(2664), [sym_preproc_line] = STATE(2664), @@ -454961,52 +454871,71 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(4798), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4750), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4802), - [anon_sym_from] = ACTIONS(4748), - [anon_sym_join] = ACTIONS(4748), - [anon_sym_let] = ACTIONS(4748), - [anon_sym_orderby] = ACTIONS(4748), - [anon_sym_ascending] = ACTIONS(4748), - [anon_sym_descending] = ACTIONS(4748), - [anon_sym_group] = ACTIONS(4748), - [anon_sym_select] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4806), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4748), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4693), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455019,10 +454948,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2665] = { - [sym__variable_designation] = STATE(5672), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym_identifier] = STATE(5708), - [sym__reserved_identifier] = STATE(5570), + [sym__variable_designation] = STATE(4532), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(2665), [sym_preproc_endregion] = STATE(2665), [sym_preproc_line] = STATE(2665), @@ -455032,68 +454961,67 @@ 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(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [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), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4403), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_in] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4115), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455104,13 +455032,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(4250), }, [2666] = { - [sym__variable_designation] = STATE(5697), - [sym_parenthesized_variable_designation] = STATE(5710), - [sym_identifier] = STATE(5708), - [sym__reserved_identifier] = STATE(5570), + [sym_type_argument_list] = STATE(2710), [sym_preproc_region] = STATE(2666), [sym_preproc_endregion] = STATE(2666), [sym_preproc_line] = STATE(2666), @@ -455120,68 +455044,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(4395), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COLON] = ACTIONS(4242), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4397), - [sym_discard] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [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), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4403), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(4664), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455192,14 +455117,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(4242), + [sym_interpolation_close_brace] = ACTIONS(3957), }, [2667] = { - [sym_property_pattern_clause] = STATE(2760), - [sym__variable_designation] = STATE(5332), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym_identifier] = STATE(5241), - [sym__reserved_identifier] = STATE(2395), + [sym__variable_designation] = STATE(5249), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym_identifier] = STATE(5320), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2667), [sym_preproc_endregion] = STATE(2667), [sym_preproc_line] = STATE(2667), @@ -455209,68 +455133,67 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4252), - [anon_sym_into] = ACTIONS(4252), - [anon_sym_join] = ACTIONS(4252), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4252), - [anon_sym_orderby] = ACTIONS(4252), - [anon_sym_ascending] = ACTIONS(4252), - [anon_sym_descending] = ACTIONS(4252), - [anon_sym_group] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4252), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4250), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COMMA] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4256), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4256), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4256), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(4256), + [anon_sym_orderby] = ACTIONS(4256), + [anon_sym_ascending] = ACTIONS(4256), + [anon_sym_descending] = ACTIONS(4256), + [anon_sym_group] = ACTIONS(4256), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4256), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4254), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455283,11 +455206,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2668] = { - [sym_property_pattern_clause] = STATE(2761), - [sym__variable_designation] = STATE(5251), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym_identifier] = STATE(5241), - [sym__reserved_identifier] = STATE(2395), + [sym__variable_designation] = STATE(5249), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym_identifier] = STATE(5320), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2668), [sym_preproc_endregion] = STATE(2668), [sym_preproc_line] = STATE(2668), @@ -455297,68 +455219,67 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4244), - [anon_sym_into] = ACTIONS(4244), - [anon_sym_join] = ACTIONS(4244), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4244), - [anon_sym_orderby] = ACTIONS(4244), - [anon_sym_ascending] = ACTIONS(4244), - [anon_sym_descending] = ACTIONS(4244), - [anon_sym_group] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4242), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_COMMA] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4256), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4256), + [anon_sym_into] = ACTIONS(4425), + [anon_sym_join] = ACTIONS(4256), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(4256), + [anon_sym_orderby] = ACTIONS(4256), + [anon_sym_ascending] = ACTIONS(4256), + [anon_sym_descending] = ACTIONS(4256), + [anon_sym_group] = ACTIONS(4256), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4256), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4254), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455371,27 +455292,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2669] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), + [sym__variable_designation] = STATE(4630), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(2669), [sym_preproc_endregion] = STATE(2669), [sym_preproc_line] = STATE(2669), @@ -455401,52 +455305,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2669), [sym_preproc_define] = STATE(2669), [sym_preproc_undef] = STATE(2669), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4708), - [anon_sym_QMARK] = ACTIONS(4798), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4802), - [anon_sym_from] = ACTIONS(4708), - [anon_sym_join] = ACTIONS(4708), - [anon_sym_let] = ACTIONS(4708), - [anon_sym_orderby] = ACTIONS(4708), - [anon_sym_ascending] = ACTIONS(4708), - [anon_sym_descending] = ACTIONS(4708), - [anon_sym_group] = ACTIONS(4708), - [anon_sym_select] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4806), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4708), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_in] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4115), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455459,27 +455378,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2670] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), [sym_preproc_region] = STATE(2670), [sym_preproc_endregion] = STATE(2670), [sym_preproc_line] = STATE(2670), @@ -455489,52 +455387,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2670), [sym_preproc_define] = STATE(2670), [sym_preproc_undef] = STATE(2670), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4802), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4806), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4695), + [anon_sym_extern] = ACTIONS(4695), + [anon_sym_alias] = ACTIONS(4695), + [anon_sym_global] = ACTIONS(4695), + [anon_sym_using] = ACTIONS(4695), + [anon_sym_unsafe] = ACTIONS(4695), + [anon_sym_EQ] = ACTIONS(4697), + [anon_sym_static] = ACTIONS(4695), + [anon_sym_LBRACK] = ACTIONS(4699), + [anon_sym_LPAREN] = ACTIONS(4699), + [anon_sym_event] = ACTIONS(4695), + [anon_sym_namespace] = ACTIONS(4695), + [anon_sym_class] = ACTIONS(4695), + [anon_sym_ref] = ACTIONS(4695), + [anon_sym_struct] = ACTIONS(4695), + [anon_sym_enum] = ACTIONS(4695), + [anon_sym_RBRACE] = ACTIONS(4699), + [anon_sym_interface] = ACTIONS(4695), + [anon_sym_delegate] = ACTIONS(4695), + [anon_sym_record] = ACTIONS(4695), + [anon_sym_public] = ACTIONS(4695), + [anon_sym_private] = ACTIONS(4695), + [anon_sym_readonly] = ACTIONS(4695), + [anon_sym_abstract] = ACTIONS(4695), + [anon_sym_async] = ACTIONS(4695), + [anon_sym_const] = ACTIONS(4695), + [anon_sym_file] = ACTIONS(4695), + [anon_sym_fixed] = ACTIONS(4695), + [anon_sym_internal] = ACTIONS(4695), + [anon_sym_new] = ACTIONS(4695), + [anon_sym_override] = ACTIONS(4695), + [anon_sym_partial] = ACTIONS(4695), + [anon_sym_protected] = ACTIONS(4695), + [anon_sym_required] = ACTIONS(4695), + [anon_sym_sealed] = ACTIONS(4695), + [anon_sym_virtual] = ACTIONS(4695), + [anon_sym_volatile] = ACTIONS(4695), + [anon_sym_where] = ACTIONS(4695), + [anon_sym_notnull] = ACTIONS(4695), + [anon_sym_unmanaged] = ACTIONS(4695), + [anon_sym_implicit] = ACTIONS(4695), + [anon_sym_explicit] = ACTIONS(4695), + [anon_sym_TILDE] = ACTIONS(4699), + [anon_sym_scoped] = ACTIONS(4695), + [anon_sym_var] = ACTIONS(4695), + [sym_predefined_type] = ACTIONS(4695), + [anon_sym_yield] = ACTIONS(4695), + [anon_sym_when] = ACTIONS(4695), + [anon_sym_from] = ACTIONS(4695), + [anon_sym_into] = ACTIONS(4695), + [anon_sym_join] = ACTIONS(4695), + [anon_sym_on] = ACTIONS(4695), + [anon_sym_equals] = ACTIONS(4695), + [anon_sym_let] = ACTIONS(4695), + [anon_sym_orderby] = ACTIONS(4695), + [anon_sym_ascending] = ACTIONS(4695), + [anon_sym_descending] = ACTIONS(4695), + [anon_sym_group] = ACTIONS(4695), + [anon_sym_by] = ACTIONS(4695), + [anon_sym_select] = ACTIONS(4695), + [sym_grit_metavariable] = ACTIONS(4699), + [aux_sym_preproc_if_token1] = ACTIONS(4699), + [aux_sym_preproc_if_token3] = ACTIONS(4699), + [aux_sym_preproc_else_token1] = ACTIONS(4699), + [aux_sym_preproc_elif_token1] = ACTIONS(4699), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455547,11 +455464,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2671] = { - [sym_property_pattern_clause] = STATE(2742), - [sym__variable_designation] = STATE(4934), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(2671), [sym_preproc_endregion] = STATE(2671), [sym_preproc_line] = STATE(2671), @@ -455561,243 +455473,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2671), [sym_preproc_define] = STATE(2671), [sym_preproc_undef] = STATE(2671), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_in] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4141), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4145), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2672] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), - [sym_preproc_region] = STATE(2672), - [sym_preproc_endregion] = STATE(2672), - [sym_preproc_line] = STATE(2672), - [sym_preproc_pragma] = STATE(2672), - [sym_preproc_nullable] = STATE(2672), - [sym_preproc_error] = STATE(2672), - [sym_preproc_warning] = STATE(2672), - [sym_preproc_define] = STATE(2672), - [sym_preproc_undef] = STATE(2672), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4800), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4806), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2673] = { - [sym_preproc_region] = STATE(2673), - [sym_preproc_endregion] = STATE(2673), - [sym_preproc_line] = STATE(2673), - [sym_preproc_pragma] = STATE(2673), - [sym_preproc_nullable] = STATE(2673), - [sym_preproc_error] = STATE(2673), - [sym_preproc_warning] = STATE(2673), - [sym_preproc_define] = STATE(2673), - [sym_preproc_undef] = STATE(2673), - [sym__identifier_token] = ACTIONS(4487), - [anon_sym_alias] = ACTIONS(4487), - [anon_sym_global] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4810), - [anon_sym_COLON] = ACTIONS(4810), - [anon_sym_COMMA] = ACTIONS(4489), - [anon_sym_RBRACK] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_RPAREN] = ACTIONS(4489), - [anon_sym_RBRACE] = ACTIONS(4489), - [anon_sym_file] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4812), - [anon_sym_GT] = ACTIONS(4812), - [anon_sym_where] = ACTIONS(4487), - [anon_sym_QMARK] = ACTIONS(4812), - [anon_sym_notnull] = ACTIONS(4487), - [anon_sym_unmanaged] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4812), - [anon_sym_PLUS_PLUS] = ACTIONS(4810), - [anon_sym_DASH_DASH] = ACTIONS(4810), - [anon_sym_PLUS] = ACTIONS(4812), - [anon_sym_DASH] = ACTIONS(4812), - [anon_sym_STAR] = ACTIONS(4810), - [anon_sym_SLASH] = ACTIONS(4812), - [anon_sym_PERCENT] = ACTIONS(4810), - [anon_sym_CARET] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4812), - [anon_sym_AMP] = ACTIONS(4812), - [anon_sym_LT_LT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4812), - [anon_sym_GT_GT_GT] = ACTIONS(4810), - [anon_sym_EQ_EQ] = ACTIONS(4810), - [anon_sym_BANG_EQ] = ACTIONS(4810), - [anon_sym_GT_EQ] = ACTIONS(4810), - [anon_sym_LT_EQ] = ACTIONS(4810), - [anon_sym_DOT] = ACTIONS(4812), - [anon_sym_scoped] = ACTIONS(4487), - [anon_sym_EQ_GT] = ACTIONS(4489), - [anon_sym_var] = ACTIONS(4487), - [anon_sym_yield] = ACTIONS(4487), - [anon_sym_switch] = ACTIONS(4812), - [anon_sym_when] = ACTIONS(4487), - [sym_discard] = ACTIONS(4487), - [anon_sym_DOT_DOT] = ACTIONS(4810), - [anon_sym_and] = ACTIONS(4487), - [anon_sym_or] = ACTIONS(4487), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym_op_coalescing] = ACTIONS(4810), - [anon_sym_from] = ACTIONS(4487), - [anon_sym_into] = ACTIONS(4487), - [anon_sym_join] = ACTIONS(4487), - [anon_sym_on] = ACTIONS(4487), - [anon_sym_equals] = ACTIONS(4487), - [anon_sym_let] = ACTIONS(4487), - [anon_sym_orderby] = ACTIONS(4487), - [anon_sym_ascending] = ACTIONS(4487), - [anon_sym_descending] = ACTIONS(4487), - [anon_sym_group] = ACTIONS(4487), - [anon_sym_by] = ACTIONS(4487), - [anon_sym_select] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4812), - [anon_sym_is] = ACTIONS(4812), - [anon_sym_DASH_GT] = ACTIONS(4810), - [anon_sym_with] = ACTIONS(4812), - [sym_grit_metavariable] = ACTIONS(4489), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4701), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455809,82 +455549,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2674] = { - [sym_property_pattern_clause] = STATE(2836), - [sym__variable_designation] = STATE(5518), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym_identifier] = STATE(5505), - [sym__reserved_identifier] = STATE(3398), - [sym_preproc_region] = STATE(2674), - [sym_preproc_endregion] = STATE(2674), - [sym_preproc_line] = STATE(2674), - [sym_preproc_pragma] = STATE(2674), - [sym_preproc_nullable] = STATE(2674), - [sym_preproc_error] = STATE(2674), - [sym_preproc_warning] = STATE(2674), - [sym_preproc_define] = STATE(2674), - [sym_preproc_undef] = STATE(2674), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), + [2672] = { + [sym__variable_designation] = STATE(5306), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym_identifier] = STATE(5320), + [sym__reserved_identifier] = STATE(2402), + [sym_preproc_region] = STATE(2672), + [sym_preproc_endregion] = STATE(2672), + [sym_preproc_line] = STATE(2672), + [sym_preproc_pragma] = STATE(2672), + [sym_preproc_nullable] = STATE(2672), + [sym_preproc_error] = STATE(2672), + [sym_preproc_warning] = STATE(2672), + [sym_preproc_define] = STATE(2672), + [sym_preproc_undef] = STATE(2672), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4197), + [anon_sym_file] = ACTIONS(4425), [anon_sym_LT] = ACTIONS(4252), [anon_sym_GT] = ACTIONS(4252), [anon_sym_where] = ACTIONS(4252), [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4197), - [anon_sym_var] = ACTIONS(4197), - [anon_sym_yield] = ACTIONS(4197), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4425), [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4197), - [sym_discard] = ACTIONS(4578), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), [anon_sym_and] = ACTIONS(4252), [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), [anon_sym_AMP_AMP] = ACTIONS(4250), [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), [anon_sym_from] = ACTIONS(4252), [anon_sym_into] = ACTIONS(4252), [anon_sym_join] = ACTIONS(4252), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), [anon_sym_let] = ACTIONS(4252), [anon_sym_orderby] = ACTIONS(4252), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), + [anon_sym_ascending] = ACTIONS(4252), + [anon_sym_descending] = ACTIONS(4252), [anon_sym_group] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4197), + [anon_sym_by] = ACTIONS(4425), [anon_sym_select] = ACTIONS(4252), [anon_sym_as] = ACTIONS(4252), [anon_sym_is] = ACTIONS(4252), [anon_sym_DASH_GT] = ACTIONS(4250), [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4204), + [sym_grit_metavariable] = ACTIONS(4250), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2673] = { + [sym_preproc_region] = STATE(2673), + [sym_preproc_endregion] = STATE(2673), + [sym_preproc_line] = STATE(2673), + [sym_preproc_pragma] = STATE(2673), + [sym_preproc_nullable] = STATE(2673), + [sym_preproc_error] = STATE(2673), + [sym_preproc_warning] = STATE(2673), + [sym_preproc_define] = STATE(2673), + [sym_preproc_undef] = STATE(2673), + [sym__identifier_token] = ACTIONS(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3694), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3694), + }, + [2674] = { + [sym_preproc_region] = STATE(2674), + [sym_preproc_endregion] = STATE(2674), + [sym_preproc_line] = STATE(2674), + [sym_preproc_pragma] = STATE(2674), + [sym_preproc_nullable] = STATE(2674), + [sym_preproc_error] = STATE(2674), + [sym_preproc_warning] = STATE(2674), + [sym_preproc_define] = STATE(2674), + [sym_preproc_undef] = STATE(2674), + [sym__identifier_token] = ACTIONS(4703), + [anon_sym_extern] = ACTIONS(4703), + [anon_sym_alias] = ACTIONS(4703), + [anon_sym_global] = ACTIONS(4703), + [anon_sym_using] = ACTIONS(4703), + [anon_sym_unsafe] = ACTIONS(4703), + [anon_sym_EQ] = ACTIONS(4705), + [anon_sym_static] = ACTIONS(4703), + [anon_sym_LBRACK] = ACTIONS(4707), + [anon_sym_LPAREN] = ACTIONS(4707), + [anon_sym_event] = ACTIONS(4703), + [anon_sym_namespace] = ACTIONS(4703), + [anon_sym_class] = ACTIONS(4703), + [anon_sym_ref] = ACTIONS(4703), + [anon_sym_struct] = ACTIONS(4703), + [anon_sym_enum] = ACTIONS(4703), + [anon_sym_RBRACE] = ACTIONS(4707), + [anon_sym_interface] = ACTIONS(4703), + [anon_sym_delegate] = ACTIONS(4703), + [anon_sym_record] = ACTIONS(4703), + [anon_sym_public] = ACTIONS(4703), + [anon_sym_private] = ACTIONS(4703), + [anon_sym_readonly] = ACTIONS(4703), + [anon_sym_abstract] = ACTIONS(4703), + [anon_sym_async] = ACTIONS(4703), + [anon_sym_const] = ACTIONS(4703), + [anon_sym_file] = ACTIONS(4703), + [anon_sym_fixed] = ACTIONS(4703), + [anon_sym_internal] = ACTIONS(4703), + [anon_sym_new] = ACTIONS(4703), + [anon_sym_override] = ACTIONS(4703), + [anon_sym_partial] = ACTIONS(4703), + [anon_sym_protected] = ACTIONS(4703), + [anon_sym_required] = ACTIONS(4703), + [anon_sym_sealed] = ACTIONS(4703), + [anon_sym_virtual] = ACTIONS(4703), + [anon_sym_volatile] = ACTIONS(4703), + [anon_sym_where] = ACTIONS(4703), + [anon_sym_notnull] = ACTIONS(4703), + [anon_sym_unmanaged] = ACTIONS(4703), + [anon_sym_implicit] = ACTIONS(4703), + [anon_sym_explicit] = ACTIONS(4703), + [anon_sym_TILDE] = ACTIONS(4707), + [anon_sym_scoped] = ACTIONS(4703), + [anon_sym_var] = ACTIONS(4703), + [sym_predefined_type] = ACTIONS(4703), + [anon_sym_yield] = ACTIONS(4703), + [anon_sym_when] = ACTIONS(4703), + [anon_sym_from] = ACTIONS(4703), + [anon_sym_into] = ACTIONS(4703), + [anon_sym_join] = ACTIONS(4703), + [anon_sym_on] = ACTIONS(4703), + [anon_sym_equals] = ACTIONS(4703), + [anon_sym_let] = ACTIONS(4703), + [anon_sym_orderby] = ACTIONS(4703), + [anon_sym_ascending] = ACTIONS(4703), + [anon_sym_descending] = ACTIONS(4703), + [anon_sym_group] = ACTIONS(4703), + [anon_sym_by] = ACTIONS(4703), + [anon_sym_select] = ACTIONS(4703), + [sym_grit_metavariable] = ACTIONS(4707), + [aux_sym_preproc_if_token1] = ACTIONS(4707), + [aux_sym_preproc_if_token3] = ACTIONS(4707), + [aux_sym_preproc_else_token1] = ACTIONS(4707), + [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), @@ -455897,27 +455808,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2675] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), + [sym__variable_designation] = STATE(5242), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym_identifier] = STATE(5320), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2675), [sym_preproc_endregion] = STATE(2675), [sym_preproc_line] = STATE(2675), @@ -455927,51 +455821,67 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_COMMA] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4308), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4308), + [anon_sym_into] = ACTIONS(4308), + [anon_sym_join] = ACTIONS(4308), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [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(4425), + [anon_sym_select] = ACTIONS(4308), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4306), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455984,11 +455894,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2676] = { - [sym_property_pattern_clause] = STATE(2841), - [sym__variable_designation] = STATE(4934), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), + [sym__variable_designation] = STATE(5235), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym_identifier] = STATE(5320), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2676), [sym_preproc_endregion] = STATE(2676), [sym_preproc_line] = STATE(2676), @@ -455998,67 +455907,67 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4252), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_COMMA] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4304), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4304), + [anon_sym_into] = ACTIONS(4425), + [anon_sym_join] = ACTIONS(4304), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [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(4425), + [anon_sym_select] = ACTIONS(4304), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4302), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456071,27 +455980,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2677] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), + [sym__variable_designation] = STATE(5235), + [sym_parenthesized_variable_designation] = STATE(5322), + [sym_identifier] = STATE(5320), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(2677), [sym_preproc_endregion] = STATE(2677), [sym_preproc_line] = STATE(2677), @@ -456101,51 +455993,67 @@ 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_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_COMMA] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4304), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4425), + [sym_discard] = ACTIONS(4528), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4304), + [anon_sym_into] = ACTIONS(4304), + [anon_sym_join] = ACTIONS(4304), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [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(4425), + [anon_sym_select] = ACTIONS(4304), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4302), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456158,27 +456066,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2678] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2678), [sym_preproc_endregion] = STATE(2678), [sym_preproc_line] = STATE(2678), @@ -456188,51 +456075,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2678), [sym_preproc_define] = STATE(2678), [sym_preproc_undef] = STATE(2678), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(3187), + [anon_sym_alias] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_file] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_where] = ACTIONS(3187), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_notnull] = ACTIONS(3187), + [anon_sym_unmanaged] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_scoped] = ACTIONS(3187), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_when] = ACTIONS(3187), + [sym_discard] = ACTIONS(3187), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3187), + [anon_sym_or] = ACTIONS(3187), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3189), + [sym_op_left_shift] = ACTIONS(3189), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3189), + [sym_op_coalescing] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = 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_as] = ACTIONS(3187), + [anon_sym_is] = ACTIONS(3187), + [anon_sym_DASH_GT] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3187), + [sym_grit_metavariable] = ACTIONS(3189), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456243,29 +456149,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(3189), }, [2679] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2679), [sym_preproc_endregion] = STATE(2679), [sym_preproc_line] = STATE(2679), @@ -456275,51 +456161,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2679), [sym_preproc_define] = STATE(2679), [sym_preproc_undef] = STATE(2679), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4818), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456332,11 +456238,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2680] = { - [sym_property_pattern_clause] = STATE(2852), - [sym__variable_designation] = STATE(4934), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), + [sym__variable_designation] = STATE(4569), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(2680), [sym_preproc_endregion] = STATE(2680), [sym_preproc_line] = STATE(2680), @@ -456346,67 +456251,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2680), [sym_preproc_define] = STATE(2680), [sym_preproc_undef] = STATE(2680), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), [anon_sym_LBRACK] = ACTIONS(4250), [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), + [anon_sym_file] = ACTIONS(4115), [anon_sym_LT] = ACTIONS(4252), [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), + [anon_sym_in] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4115), [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4115), + [anon_sym_var] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4115), [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4115), [sym_discard] = ACTIONS(4234), [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), [anon_sym_and] = ACTIONS(4252), [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), [anon_sym_AMP_AMP] = ACTIONS(4250), [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4252), - [anon_sym_select] = ACTIONS(4210), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), [anon_sym_as] = ACTIONS(4252), [anon_sym_is] = ACTIONS(4252), [anon_sym_DASH_GT] = ACTIONS(4250), [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456419,27 +456324,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2681] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2681), [sym_preproc_endregion] = STATE(2681), [sym_preproc_line] = STATE(2681), @@ -456449,51 +456333,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2681), [sym_preproc_define] = STATE(2681), [sym_preproc_undef] = STATE(2681), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456506,11 +456410,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2682] = { - [sym_property_pattern_clause] = STATE(2897), - [sym__variable_designation] = STATE(4885), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2682), [sym_preproc_endregion] = STATE(2682), [sym_preproc_line] = STATE(2682), @@ -456520,67 +456419,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2682), [sym_preproc_define] = STATE(2682), [sym_preproc_undef] = STATE(2682), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4252), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4252), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(3187), + [anon_sym_alias] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3189), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_file] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_where] = ACTIONS(3187), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_notnull] = ACTIONS(3187), + [anon_sym_unmanaged] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_scoped] = ACTIONS(3187), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_when] = ACTIONS(3187), + [sym_discard] = ACTIONS(3187), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3187), + [anon_sym_or] = ACTIONS(3187), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3189), + [sym_op_left_shift] = ACTIONS(3189), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3189), + [sym_op_coalescing] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = 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_as] = ACTIONS(3187), + [anon_sym_is] = ACTIONS(3187), + [anon_sym_DASH_GT] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3187), + [sym_grit_metavariable] = ACTIONS(3189), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456593,27 +456496,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2683] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2683), [sym_preproc_endregion] = STATE(2683), [sym_preproc_line] = STATE(2683), @@ -456623,84 +456505,83 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4395), + [anon_sym_alias] = ACTIONS(4395), + [anon_sym_global] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_file] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4395), + [anon_sym_GT] = ACTIONS(4395), + [anon_sym_where] = ACTIONS(4395), + [anon_sym_QMARK] = ACTIONS(4395), + [anon_sym_notnull] = ACTIONS(4395), + [anon_sym_unmanaged] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_scoped] = ACTIONS(4395), + [anon_sym_EQ_GT] = ACTIONS(4399), + [anon_sym_var] = ACTIONS(4395), + [anon_sym_STAR] = ACTIONS(4397), + [anon_sym_yield] = ACTIONS(4395), + [anon_sym_switch] = ACTIONS(4395), + [anon_sym_when] = ACTIONS(4395), + [sym_discard] = ACTIONS(4395), + [anon_sym_DOT_DOT] = ACTIONS(4397), + [anon_sym_LT_EQ] = ACTIONS(4397), + [anon_sym_GT_EQ] = ACTIONS(4397), + [anon_sym_and] = ACTIONS(4395), + [anon_sym_or] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_AMP_AMP] = ACTIONS(4397), + [anon_sym_PIPE_PIPE] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4395), + [sym_op_bitwise_or] = ACTIONS(4395), + [anon_sym_CARET] = ACTIONS(4397), + [sym_op_left_shift] = ACTIONS(4397), + [sym_op_right_shift] = ACTIONS(4395), + [sym_op_unsigned_right_shift] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4395), + [anon_sym_DASH] = ACTIONS(4395), + [sym_op_divide] = ACTIONS(4395), + [sym_op_modulo] = ACTIONS(4397), + [sym_op_coalescing] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4397), + [anon_sym_from] = ACTIONS(4395), + [anon_sym_into] = ACTIONS(4395), + [anon_sym_join] = ACTIONS(4395), + [anon_sym_on] = ACTIONS(4395), + [anon_sym_equals] = ACTIONS(4395), + [anon_sym_let] = ACTIONS(4395), + [anon_sym_orderby] = ACTIONS(4395), + [anon_sym_ascending] = ACTIONS(4395), + [anon_sym_descending] = ACTIONS(4395), + [anon_sym_group] = ACTIONS(4395), + [anon_sym_by] = ACTIONS(4395), + [anon_sym_select] = ACTIONS(4395), + [anon_sym_as] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4395), + [anon_sym_DASH_GT] = ACTIONS(4397), + [anon_sym_with] = ACTIONS(4395), + [sym_grit_metavariable] = ACTIONS(4397), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4397), }, [2684] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2684), [sym_preproc_endregion] = STATE(2684), [sym_preproc_line] = STATE(2684), @@ -456710,51 +456591,71 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4770), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4820), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4818), - [anon_sym_from] = ACTIONS(4770), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_join] = ACTIONS(4770), - [anon_sym_let] = ACTIONS(4770), - [anon_sym_orderby] = ACTIONS(4770), - [anon_sym_ascending] = ACTIONS(4770), - [anon_sym_descending] = ACTIONS(4770), - [anon_sym_group] = ACTIONS(4770), - [anon_sym_select] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4770), + [sym__identifier_token] = ACTIONS(4359), + [anon_sym_alias] = ACTIONS(4359), + [anon_sym_global] = ACTIONS(4359), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_file] = ACTIONS(4359), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_QMARK] = ACTIONS(4359), + [anon_sym_notnull] = ACTIONS(4359), + [anon_sym_unmanaged] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4701), + [anon_sym_scoped] = ACTIONS(4359), + [anon_sym_var] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_yield] = ACTIONS(4359), + [anon_sym_switch] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [sym_discard] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_and] = ACTIONS(4359), + [anon_sym_or] = ACTIONS(4359), + [anon_sym_EQ_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4359), + [sym_op_bitwise_or] = ACTIONS(4359), + [anon_sym_CARET] = ACTIONS(4361), + [sym_op_left_shift] = ACTIONS(4361), + [sym_op_right_shift] = ACTIONS(4359), + [sym_op_unsigned_right_shift] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [sym_op_divide] = ACTIONS(4359), + [sym_op_modulo] = ACTIONS(4361), + [sym_op_coalescing] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_from] = ACTIONS(4359), + [anon_sym_into] = ACTIONS(4359), + [anon_sym_join] = ACTIONS(4359), + [anon_sym_on] = ACTIONS(4359), + [anon_sym_equals] = ACTIONS(4359), + [anon_sym_let] = ACTIONS(4359), + [anon_sym_orderby] = ACTIONS(4359), + [anon_sym_ascending] = ACTIONS(4359), + [anon_sym_descending] = ACTIONS(4359), + [anon_sym_group] = ACTIONS(4359), + [anon_sym_by] = ACTIONS(4359), + [anon_sym_select] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [anon_sym_with] = ACTIONS(4359), + [sym_grit_metavariable] = ACTIONS(4361), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456767,11 +456668,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2685] = { - [sym_property_pattern_clause] = STATE(2848), - [sym__variable_designation] = STATE(4934), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2685), [sym_preproc_endregion] = STATE(2685), [sym_preproc_line] = STATE(2685), @@ -456781,67 +456677,71 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4252), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4711), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456854,27 +456754,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2686] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2686), [sym_preproc_endregion] = STATE(2686), [sym_preproc_line] = STATE(2686), @@ -456884,51 +456763,71 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4708), - [anon_sym_QMARK] = ACTIONS(4820), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4818), - [anon_sym_from] = ACTIONS(4708), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_join] = ACTIONS(4708), - [anon_sym_let] = ACTIONS(4708), - [anon_sym_orderby] = ACTIONS(4708), - [anon_sym_ascending] = ACTIONS(4708), - [anon_sym_descending] = ACTIONS(4708), - [anon_sym_group] = ACTIONS(4708), - [anon_sym_select] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4708), + [sym__identifier_token] = ACTIONS(4713), + [anon_sym_extern] = ACTIONS(4713), + [anon_sym_alias] = ACTIONS(4713), + [anon_sym_global] = ACTIONS(4713), + [anon_sym_using] = ACTIONS(4713), + [anon_sym_unsafe] = ACTIONS(4713), + [anon_sym_EQ] = ACTIONS(4715), + [anon_sym_static] = ACTIONS(4713), + [anon_sym_LBRACK] = ACTIONS(4717), + [anon_sym_LPAREN] = ACTIONS(4717), + [anon_sym_event] = ACTIONS(4713), + [anon_sym_namespace] = ACTIONS(4713), + [anon_sym_class] = ACTIONS(4713), + [anon_sym_ref] = ACTIONS(4713), + [anon_sym_struct] = ACTIONS(4713), + [anon_sym_enum] = ACTIONS(4713), + [anon_sym_RBRACE] = ACTIONS(4717), + [anon_sym_interface] = ACTIONS(4713), + [anon_sym_delegate] = ACTIONS(4713), + [anon_sym_record] = ACTIONS(4713), + [anon_sym_public] = ACTIONS(4713), + [anon_sym_private] = ACTIONS(4713), + [anon_sym_readonly] = ACTIONS(4713), + [anon_sym_abstract] = ACTIONS(4713), + [anon_sym_async] = ACTIONS(4713), + [anon_sym_const] = ACTIONS(4713), + [anon_sym_file] = ACTIONS(4713), + [anon_sym_fixed] = ACTIONS(4713), + [anon_sym_internal] = ACTIONS(4713), + [anon_sym_new] = ACTIONS(4713), + [anon_sym_override] = ACTIONS(4713), + [anon_sym_partial] = ACTIONS(4713), + [anon_sym_protected] = ACTIONS(4713), + [anon_sym_required] = ACTIONS(4713), + [anon_sym_sealed] = ACTIONS(4713), + [anon_sym_virtual] = ACTIONS(4713), + [anon_sym_volatile] = ACTIONS(4713), + [anon_sym_where] = ACTIONS(4713), + [anon_sym_notnull] = ACTIONS(4713), + [anon_sym_unmanaged] = ACTIONS(4713), + [anon_sym_implicit] = ACTIONS(4713), + [anon_sym_explicit] = ACTIONS(4713), + [anon_sym_TILDE] = ACTIONS(4717), + [anon_sym_scoped] = ACTIONS(4713), + [anon_sym_var] = ACTIONS(4713), + [sym_predefined_type] = ACTIONS(4713), + [anon_sym_yield] = ACTIONS(4713), + [anon_sym_when] = ACTIONS(4713), + [anon_sym_from] = ACTIONS(4713), + [anon_sym_into] = ACTIONS(4713), + [anon_sym_join] = ACTIONS(4713), + [anon_sym_on] = ACTIONS(4713), + [anon_sym_equals] = ACTIONS(4713), + [anon_sym_let] = ACTIONS(4713), + [anon_sym_orderby] = ACTIONS(4713), + [anon_sym_ascending] = ACTIONS(4713), + [anon_sym_descending] = ACTIONS(4713), + [anon_sym_group] = ACTIONS(4713), + [anon_sym_by] = ACTIONS(4713), + [anon_sym_select] = ACTIONS(4713), + [sym_grit_metavariable] = ACTIONS(4717), + [aux_sym_preproc_if_token1] = ACTIONS(4717), + [aux_sym_preproc_if_token3] = ACTIONS(4717), + [aux_sym_preproc_else_token1] = ACTIONS(4717), + [aux_sym_preproc_elif_token1] = ACTIONS(4717), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456941,27 +456840,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2687] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2687), [sym_preproc_endregion] = STATE(2687), [sym_preproc_line] = STATE(2687), @@ -456971,51 +456849,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2687), [sym_preproc_define] = STATE(2687), [sym_preproc_undef] = STATE(2687), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(4820), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4818), - [anon_sym_from] = ACTIONS(4748), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_join] = ACTIONS(4748), - [anon_sym_let] = ACTIONS(4748), - [anon_sym_orderby] = ACTIONS(4748), - [anon_sym_ascending] = ACTIONS(4748), - [anon_sym_descending] = ACTIONS(4748), - [anon_sym_group] = ACTIONS(4748), - [anon_sym_select] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4748), + [sym__identifier_token] = ACTIONS(4719), + [anon_sym_extern] = ACTIONS(4719), + [anon_sym_alias] = ACTIONS(4719), + [anon_sym_global] = ACTIONS(4719), + [anon_sym_using] = ACTIONS(4719), + [anon_sym_unsafe] = ACTIONS(4719), + [anon_sym_EQ] = ACTIONS(4721), + [anon_sym_static] = ACTIONS(4719), + [anon_sym_LBRACK] = ACTIONS(4723), + [anon_sym_LPAREN] = ACTIONS(4723), + [anon_sym_event] = ACTIONS(4719), + [anon_sym_namespace] = ACTIONS(4719), + [anon_sym_class] = ACTIONS(4719), + [anon_sym_ref] = ACTIONS(4719), + [anon_sym_struct] = ACTIONS(4719), + [anon_sym_enum] = ACTIONS(4719), + [anon_sym_RBRACE] = ACTIONS(4723), + [anon_sym_interface] = ACTIONS(4719), + [anon_sym_delegate] = ACTIONS(4719), + [anon_sym_record] = ACTIONS(4719), + [anon_sym_public] = ACTIONS(4719), + [anon_sym_private] = ACTIONS(4719), + [anon_sym_readonly] = ACTIONS(4719), + [anon_sym_abstract] = ACTIONS(4719), + [anon_sym_async] = ACTIONS(4719), + [anon_sym_const] = ACTIONS(4719), + [anon_sym_file] = ACTIONS(4719), + [anon_sym_fixed] = ACTIONS(4719), + [anon_sym_internal] = ACTIONS(4719), + [anon_sym_new] = ACTIONS(4719), + [anon_sym_override] = ACTIONS(4719), + [anon_sym_partial] = ACTIONS(4719), + [anon_sym_protected] = ACTIONS(4719), + [anon_sym_required] = ACTIONS(4719), + [anon_sym_sealed] = ACTIONS(4719), + [anon_sym_virtual] = ACTIONS(4719), + [anon_sym_volatile] = ACTIONS(4719), + [anon_sym_where] = ACTIONS(4719), + [anon_sym_notnull] = ACTIONS(4719), + [anon_sym_unmanaged] = ACTIONS(4719), + [anon_sym_implicit] = ACTIONS(4719), + [anon_sym_explicit] = ACTIONS(4719), + [anon_sym_TILDE] = ACTIONS(4723), + [anon_sym_scoped] = ACTIONS(4719), + [anon_sym_var] = ACTIONS(4719), + [sym_predefined_type] = ACTIONS(4719), + [anon_sym_yield] = ACTIONS(4719), + [anon_sym_when] = 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_ascending] = ACTIONS(4719), + [anon_sym_descending] = ACTIONS(4719), + [anon_sym_group] = ACTIONS(4719), + [anon_sym_by] = ACTIONS(4719), + [anon_sym_select] = ACTIONS(4719), + [sym_grit_metavariable] = ACTIONS(4723), + [aux_sym_preproc_if_token1] = ACTIONS(4723), + [aux_sym_preproc_if_token3] = ACTIONS(4723), + [aux_sym_preproc_else_token1] = ACTIONS(4723), + [aux_sym_preproc_elif_token1] = ACTIONS(4723), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457028,27 +456926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2688] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), + [sym_type_argument_list] = STATE(2827), [sym_preproc_region] = STATE(2688), [sym_preproc_endregion] = STATE(2688), [sym_preproc_line] = STATE(2688), @@ -457058,51 +456936,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4782), - [anon_sym_QMARK] = ACTIONS(4820), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4818), - [anon_sym_from] = ACTIONS(4782), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_join] = ACTIONS(4782), - [anon_sym_let] = ACTIONS(4782), - [anon_sym_orderby] = ACTIONS(4782), - [anon_sym_ascending] = ACTIONS(4782), - [anon_sym_descending] = ACTIONS(4782), - [anon_sym_group] = ACTIONS(4782), - [anon_sym_select] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4782), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(4725), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_when] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3957), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457115,27 +457012,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2689] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2689), [sym_preproc_endregion] = STATE(2689), [sym_preproc_line] = STATE(2689), @@ -457145,51 +457021,71 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4752), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_from] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_join] = ACTIONS(4752), - [anon_sym_let] = ACTIONS(4752), - [anon_sym_orderby] = ACTIONS(4752), - [anon_sym_ascending] = ACTIONS(4752), - [anon_sym_descending] = ACTIONS(4752), - [anon_sym_group] = ACTIONS(4752), - [anon_sym_select] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4752), - [sym_grit_metavariable] = ACTIONS(4752), + [sym__identifier_token] = ACTIONS(4728), + [anon_sym_extern] = ACTIONS(4728), + [anon_sym_alias] = ACTIONS(4728), + [anon_sym_global] = ACTIONS(4728), + [anon_sym_using] = ACTIONS(4728), + [anon_sym_unsafe] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4730), + [anon_sym_static] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4732), + [anon_sym_LPAREN] = ACTIONS(4732), + [anon_sym_event] = ACTIONS(4728), + [anon_sym_namespace] = ACTIONS(4728), + [anon_sym_class] = ACTIONS(4728), + [anon_sym_ref] = ACTIONS(4728), + [anon_sym_struct] = ACTIONS(4728), + [anon_sym_enum] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_interface] = ACTIONS(4728), + [anon_sym_delegate] = ACTIONS(4728), + [anon_sym_record] = ACTIONS(4728), + [anon_sym_public] = ACTIONS(4728), + [anon_sym_private] = ACTIONS(4728), + [anon_sym_readonly] = ACTIONS(4728), + [anon_sym_abstract] = ACTIONS(4728), + [anon_sym_async] = ACTIONS(4728), + [anon_sym_const] = ACTIONS(4728), + [anon_sym_file] = ACTIONS(4728), + [anon_sym_fixed] = ACTIONS(4728), + [anon_sym_internal] = ACTIONS(4728), + [anon_sym_new] = ACTIONS(4728), + [anon_sym_override] = ACTIONS(4728), + [anon_sym_partial] = ACTIONS(4728), + [anon_sym_protected] = ACTIONS(4728), + [anon_sym_required] = ACTIONS(4728), + [anon_sym_sealed] = ACTIONS(4728), + [anon_sym_virtual] = ACTIONS(4728), + [anon_sym_volatile] = ACTIONS(4728), + [anon_sym_where] = ACTIONS(4728), + [anon_sym_notnull] = ACTIONS(4728), + [anon_sym_unmanaged] = ACTIONS(4728), + [anon_sym_implicit] = ACTIONS(4728), + [anon_sym_explicit] = ACTIONS(4728), + [anon_sym_TILDE] = ACTIONS(4732), + [anon_sym_scoped] = ACTIONS(4728), + [anon_sym_var] = ACTIONS(4728), + [sym_predefined_type] = ACTIONS(4728), + [anon_sym_yield] = ACTIONS(4728), + [anon_sym_when] = ACTIONS(4728), + [anon_sym_from] = ACTIONS(4728), + [anon_sym_into] = ACTIONS(4728), + [anon_sym_join] = ACTIONS(4728), + [anon_sym_on] = ACTIONS(4728), + [anon_sym_equals] = ACTIONS(4728), + [anon_sym_let] = ACTIONS(4728), + [anon_sym_orderby] = ACTIONS(4728), + [anon_sym_ascending] = ACTIONS(4728), + [anon_sym_descending] = ACTIONS(4728), + [anon_sym_group] = ACTIONS(4728), + [anon_sym_by] = ACTIONS(4728), + [anon_sym_select] = ACTIONS(4728), + [sym_grit_metavariable] = ACTIONS(4732), + [aux_sym_preproc_if_token1] = ACTIONS(4732), + [aux_sym_preproc_if_token3] = ACTIONS(4732), + [aux_sym_preproc_else_token1] = ACTIONS(4732), + [aux_sym_preproc_elif_token1] = ACTIONS(4732), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457202,27 +457098,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2690] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), + [sym__variable_designation] = STATE(4215), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2690), [sym_preproc_endregion] = STATE(2690), [sym_preproc_line] = STATE(2690), @@ -457232,51 +457111,66 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4778), - [anon_sym_QMARK] = ACTIONS(4820), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4818), - [anon_sym_from] = ACTIONS(4778), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_join] = ACTIONS(4778), - [anon_sym_let] = ACTIONS(4778), - [anon_sym_orderby] = ACTIONS(4778), - [anon_sym_ascending] = ACTIONS(4778), - [anon_sym_descending] = ACTIONS(4778), - [anon_sym_group] = ACTIONS(4778), - [anon_sym_select] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4778), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4304), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4304), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457289,11 +457183,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2691] = { - [sym_property_pattern_clause] = STATE(2903), - [sym__variable_designation] = STATE(4885), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2691), [sym_preproc_endregion] = STATE(2691), [sym_preproc_line] = STATE(2691), @@ -457303,67 +457192,70 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4252), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4252), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4734), + [anon_sym_extern] = ACTIONS(4734), + [anon_sym_alias] = ACTIONS(4734), + [anon_sym_global] = ACTIONS(4734), + [anon_sym_using] = ACTIONS(4734), + [anon_sym_unsafe] = ACTIONS(4734), + [anon_sym_static] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4736), + [anon_sym_LPAREN] = ACTIONS(4736), + [anon_sym_event] = ACTIONS(4734), + [anon_sym_namespace] = ACTIONS(4734), + [anon_sym_class] = ACTIONS(4734), + [anon_sym_ref] = ACTIONS(4734), + [anon_sym_struct] = ACTIONS(4734), + [anon_sym_enum] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_interface] = ACTIONS(4734), + [anon_sym_delegate] = ACTIONS(4734), + [anon_sym_record] = ACTIONS(4734), + [anon_sym_public] = ACTIONS(4734), + [anon_sym_private] = ACTIONS(4734), + [anon_sym_readonly] = ACTIONS(4734), + [anon_sym_abstract] = ACTIONS(4734), + [anon_sym_async] = ACTIONS(4734), + [anon_sym_const] = ACTIONS(4734), + [anon_sym_file] = ACTIONS(4734), + [anon_sym_fixed] = ACTIONS(4734), + [anon_sym_internal] = ACTIONS(4734), + [anon_sym_new] = ACTIONS(4734), + [anon_sym_override] = ACTIONS(4734), + [anon_sym_partial] = ACTIONS(4734), + [anon_sym_protected] = ACTIONS(4734), + [anon_sym_required] = ACTIONS(4734), + [anon_sym_sealed] = ACTIONS(4734), + [anon_sym_virtual] = ACTIONS(4734), + [anon_sym_volatile] = ACTIONS(4734), + [anon_sym_where] = ACTIONS(4734), + [anon_sym_notnull] = ACTIONS(4734), + [anon_sym_unmanaged] = ACTIONS(4734), + [anon_sym_implicit] = ACTIONS(4734), + [anon_sym_explicit] = ACTIONS(4734), + [anon_sym_TILDE] = ACTIONS(4736), + [anon_sym_scoped] = ACTIONS(4734), + [anon_sym_var] = ACTIONS(4734), + [sym_predefined_type] = ACTIONS(4734), + [anon_sym_yield] = ACTIONS(4734), + [anon_sym_when] = ACTIONS(4734), + [anon_sym_from] = ACTIONS(4734), + [anon_sym_into] = ACTIONS(4734), + [anon_sym_join] = ACTIONS(4734), + [anon_sym_on] = ACTIONS(4734), + [anon_sym_equals] = ACTIONS(4734), + [anon_sym_let] = ACTIONS(4734), + [anon_sym_orderby] = ACTIONS(4734), + [anon_sym_ascending] = ACTIONS(4734), + [anon_sym_descending] = ACTIONS(4734), + [anon_sym_group] = ACTIONS(4734), + [anon_sym_by] = ACTIONS(4734), + [anon_sym_select] = ACTIONS(4734), + [sym_grit_metavariable] = ACTIONS(4736), + [aux_sym_preproc_if_token1] = ACTIONS(4736), + [aux_sym_preproc_if_token3] = ACTIONS(4736), + [aux_sym_preproc_else_token1] = ACTIONS(4736), + [aux_sym_preproc_elif_token1] = ACTIONS(4736), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457376,27 +457268,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2692] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2692), [sym_preproc_endregion] = STATE(2692), [sym_preproc_line] = STATE(2692), @@ -457406,51 +457277,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4487), + [anon_sym_extern] = ACTIONS(4487), + [anon_sym_alias] = ACTIONS(4487), + [anon_sym_global] = ACTIONS(4487), + [anon_sym_using] = ACTIONS(4487), + [anon_sym_unsafe] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4487), + [anon_sym_LBRACK] = ACTIONS(4492), + [anon_sym_LPAREN] = ACTIONS(4492), + [anon_sym_event] = ACTIONS(4487), + [anon_sym_namespace] = ACTIONS(4487), + [anon_sym_class] = ACTIONS(4487), + [anon_sym_ref] = ACTIONS(4487), + [anon_sym_struct] = ACTIONS(4487), + [anon_sym_enum] = ACTIONS(4487), + [anon_sym_RBRACE] = ACTIONS(4492), + [anon_sym_interface] = ACTIONS(4487), + [anon_sym_delegate] = ACTIONS(4487), + [anon_sym_record] = ACTIONS(4487), + [anon_sym_public] = ACTIONS(4487), + [anon_sym_private] = ACTIONS(4487), + [anon_sym_readonly] = ACTIONS(4487), + [anon_sym_abstract] = ACTIONS(4487), + [anon_sym_async] = ACTIONS(4487), + [anon_sym_const] = ACTIONS(4487), + [anon_sym_file] = ACTIONS(4487), + [anon_sym_fixed] = ACTIONS(4487), + [anon_sym_internal] = ACTIONS(4487), + [anon_sym_new] = ACTIONS(4487), + [anon_sym_override] = ACTIONS(4487), + [anon_sym_partial] = ACTIONS(4487), + [anon_sym_protected] = ACTIONS(4487), + [anon_sym_required] = ACTIONS(4487), + [anon_sym_sealed] = ACTIONS(4487), + [anon_sym_virtual] = ACTIONS(4487), + [anon_sym_volatile] = ACTIONS(4487), + [anon_sym_where] = ACTIONS(4487), + [anon_sym_notnull] = ACTIONS(4487), + [anon_sym_unmanaged] = ACTIONS(4487), + [anon_sym_implicit] = ACTIONS(4487), + [anon_sym_explicit] = ACTIONS(4487), + [anon_sym_TILDE] = ACTIONS(4492), + [anon_sym_scoped] = ACTIONS(4487), + [anon_sym_var] = ACTIONS(4487), + [sym_predefined_type] = ACTIONS(4487), + [anon_sym_yield] = ACTIONS(4487), + [anon_sym_when] = ACTIONS(4487), + [anon_sym_from] = ACTIONS(4487), + [anon_sym_into] = ACTIONS(4487), + [anon_sym_join] = ACTIONS(4487), + [anon_sym_on] = ACTIONS(4487), + [anon_sym_equals] = ACTIONS(4487), + [anon_sym_let] = ACTIONS(4487), + [anon_sym_orderby] = ACTIONS(4487), + [anon_sym_ascending] = ACTIONS(4487), + [anon_sym_descending] = ACTIONS(4487), + [anon_sym_group] = ACTIONS(4487), + [anon_sym_by] = ACTIONS(4487), + [anon_sym_select] = ACTIONS(4487), + [sym_grit_metavariable] = ACTIONS(4492), + [aux_sym_preproc_if_token1] = ACTIONS(4492), + [aux_sym_preproc_if_token3] = ACTIONS(4492), + [aux_sym_preproc_else_token1] = ACTIONS(4492), + [aux_sym_preproc_elif_token1] = ACTIONS(4492), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457463,11 +457353,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2693] = { - [sym_property_pattern_clause] = STATE(2840), - [sym__variable_designation] = STATE(4968), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2693), [sym_preproc_endregion] = STATE(2693), [sym_preproc_line] = STATE(2693), @@ -457477,241 +457362,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2693), [sym_preproc_define] = STATE(2693), [sym_preproc_undef] = STATE(2693), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4244), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2694] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), - [sym_preproc_region] = STATE(2694), - [sym_preproc_endregion] = STATE(2694), - [sym_preproc_line] = STATE(2694), - [sym_preproc_pragma] = STATE(2694), - [sym_preproc_nullable] = STATE(2694), - [sym_preproc_error] = STATE(2694), - [sym_preproc_warning] = STATE(2694), - [sym_preproc_define] = STATE(2694), - [sym_preproc_undef] = STATE(2694), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(4820), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4818), - [anon_sym_from] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_join] = ACTIONS(4760), - [anon_sym_let] = ACTIONS(4760), - [anon_sym_orderby] = ACTIONS(4760), - [anon_sym_ascending] = ACTIONS(4760), - [anon_sym_descending] = ACTIONS(4760), - [anon_sym_group] = ACTIONS(4760), - [anon_sym_select] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4760), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_property_pattern_clause] = STATE(2902), - [sym__variable_designation] = STATE(4856), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2695), - [sym_preproc_endregion] = STATE(2695), - [sym_preproc_line] = STATE(2695), - [sym_preproc_pragma] = STATE(2695), - [sym_preproc_nullable] = STATE(2695), - [sym_preproc_error] = STATE(2695), - [sym_preproc_warning] = STATE(2695), - [sym_preproc_define] = STATE(2695), - [sym_preproc_undef] = STATE(2695), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4244), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4244), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457722,83 +457435,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4331), }, - [2696] = { - [sym_preproc_region] = STATE(2696), - [sym_preproc_endregion] = STATE(2696), - [sym_preproc_line] = STATE(2696), - [sym_preproc_pragma] = STATE(2696), - [sym_preproc_nullable] = STATE(2696), - [sym_preproc_error] = STATE(2696), - [sym_preproc_warning] = STATE(2696), - [sym_preproc_define] = STATE(2696), - [sym_preproc_undef] = STATE(2696), - [sym__identifier_token] = ACTIONS(4084), - [anon_sym_alias] = ACTIONS(4084), - [anon_sym_global] = ACTIONS(4084), - [anon_sym_static] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4086), - [anon_sym_LPAREN] = ACTIONS(4086), - [anon_sym_ref] = ACTIONS(4084), - [anon_sym_delegate] = ACTIONS(4084), - [anon_sym_async] = ACTIONS(4084), - [anon_sym_file] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_where] = ACTIONS(4084), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_notnull] = ACTIONS(4084), - [anon_sym_unmanaged] = ACTIONS(4084), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_scoped] = ACTIONS(4084), - [anon_sym_var] = ACTIONS(4084), - [sym_predefined_type] = ACTIONS(4084), - [anon_sym_yield] = ACTIONS(4084), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_when] = ACTIONS(4084), - [anon_sym_DOT_DOT] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [sym_op_coalescing] = ACTIONS(3197), - [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_ascending] = ACTIONS(4084), - [anon_sym_descending] = ACTIONS(4084), - [anon_sym_group] = ACTIONS(4084), - [anon_sym_by] = ACTIONS(4084), - [anon_sym_select] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_DASH_GT] = ACTIONS(3197), - [anon_sym_with] = ACTIONS(3195), - [sym_grit_metavariable] = ACTIONS(4086), - [aux_sym_preproc_if_token1] = ACTIONS(4086), + [2694] = { + [sym_preproc_region] = STATE(2694), + [sym_preproc_endregion] = STATE(2694), + [sym_preproc_line] = STATE(2694), + [sym_preproc_pragma] = STATE(2694), + [sym_preproc_nullable] = STATE(2694), + [sym_preproc_error] = STATE(2694), + [sym_preproc_warning] = STATE(2694), + [sym_preproc_define] = STATE(2694), + [sym_preproc_undef] = STATE(2694), + [sym__identifier_token] = ACTIONS(3970), + [anon_sym_alias] = ACTIONS(3970), + [anon_sym_global] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_COLON] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_file] = ACTIONS(3970), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_QMARK] = ACTIONS(3970), + [anon_sym_notnull] = ACTIONS(3970), + [anon_sym_unmanaged] = ACTIONS(3970), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_scoped] = ACTIONS(3970), + [anon_sym_var] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_yield] = ACTIONS(3970), + [anon_sym_switch] = ACTIONS(3970), + [anon_sym_when] = ACTIONS(3970), + [sym_discard] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_and] = ACTIONS(3970), + [anon_sym_or] = ACTIONS(3970), + [anon_sym_EQ_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [sym_op_bitwise_or] = ACTIONS(3970), + [anon_sym_CARET] = ACTIONS(3972), + [sym_op_left_shift] = ACTIONS(3972), + [sym_op_right_shift] = ACTIONS(3970), + [sym_op_unsigned_right_shift] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [sym_op_divide] = ACTIONS(3970), + [sym_op_modulo] = ACTIONS(3972), + [sym_op_coalescing] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_from] = ACTIONS(3970), + [anon_sym_into] = ACTIONS(3970), + [anon_sym_join] = ACTIONS(3970), + [anon_sym_on] = ACTIONS(3970), + [anon_sym_equals] = ACTIONS(3970), + [anon_sym_let] = ACTIONS(3970), + [anon_sym_orderby] = ACTIONS(3970), + [anon_sym_ascending] = ACTIONS(3970), + [anon_sym_descending] = ACTIONS(3970), + [anon_sym_group] = ACTIONS(3970), + [anon_sym_by] = ACTIONS(3970), + [anon_sym_select] = ACTIONS(3970), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_DASH_GT] = ACTIONS(3972), + [anon_sym_with] = ACTIONS(3970), + [sym_grit_metavariable] = ACTIONS(3972), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3972), + }, + [2695] = { + [sym_preproc_region] = STATE(2695), + [sym_preproc_endregion] = STATE(2695), + [sym_preproc_line] = STATE(2695), + [sym_preproc_pragma] = STATE(2695), + [sym_preproc_nullable] = STATE(2695), + [sym_preproc_error] = STATE(2695), + [sym_preproc_warning] = STATE(2695), + [sym_preproc_define] = STATE(2695), + [sym_preproc_undef] = STATE(2695), + [sym__identifier_token] = ACTIONS(4401), + [anon_sym_alias] = ACTIONS(4401), + [anon_sym_global] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_COLON] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_file] = ACTIONS(4401), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4401), + [anon_sym_QMARK] = ACTIONS(4401), + [anon_sym_notnull] = ACTIONS(4401), + [anon_sym_unmanaged] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_scoped] = ACTIONS(4401), + [anon_sym_var] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_yield] = ACTIONS(4401), + [anon_sym_switch] = ACTIONS(4401), + [anon_sym_when] = ACTIONS(4401), + [sym_discard] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_and] = ACTIONS(4401), + [anon_sym_or] = ACTIONS(4401), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_AMP] = ACTIONS(4401), + [sym_op_bitwise_or] = ACTIONS(4401), + [anon_sym_CARET] = ACTIONS(4403), + [sym_op_left_shift] = ACTIONS(4403), + [sym_op_right_shift] = ACTIONS(4401), + [sym_op_unsigned_right_shift] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [sym_op_divide] = ACTIONS(4401), + [sym_op_modulo] = ACTIONS(4403), + [sym_op_coalescing] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [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), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_DASH_GT] = ACTIONS(4403), + [anon_sym_with] = ACTIONS(4401), + [sym_grit_metavariable] = ACTIONS(4403), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457809,29 +457605,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4403), + }, + [2696] = { + [sym_preproc_region] = STATE(2696), + [sym_preproc_endregion] = STATE(2696), + [sym_preproc_line] = STATE(2696), + [sym_preproc_pragma] = STATE(2696), + [sym_preproc_nullable] = STATE(2696), + [sym_preproc_error] = STATE(2696), + [sym_preproc_warning] = STATE(2696), + [sym_preproc_define] = STATE(2696), + [sym_preproc_undef] = STATE(2696), + [sym__identifier_token] = ACTIONS(3959), + [anon_sym_alias] = ACTIONS(3959), + [anon_sym_global] = ACTIONS(3959), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3961), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_file] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_GT] = ACTIONS(3959), + [anon_sym_where] = ACTIONS(3959), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_notnull] = ACTIONS(3959), + [anon_sym_unmanaged] = ACTIONS(3959), + [anon_sym_DOT] = ACTIONS(3959), + [anon_sym_scoped] = ACTIONS(3959), + [anon_sym_var] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3959), + [anon_sym_switch] = ACTIONS(3959), + [anon_sym_when] = ACTIONS(3959), + [sym_discard] = ACTIONS(3959), + [anon_sym_DOT_DOT] = ACTIONS(3961), + [anon_sym_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_EQ] = ACTIONS(3961), + [anon_sym_and] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3959), + [anon_sym_EQ_EQ] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [sym_op_bitwise_or] = ACTIONS(3959), + [anon_sym_CARET] = ACTIONS(3961), + [sym_op_left_shift] = ACTIONS(3961), + [sym_op_right_shift] = ACTIONS(3959), + [sym_op_unsigned_right_shift] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3959), + [sym_op_divide] = ACTIONS(3959), + [sym_op_modulo] = ACTIONS(3961), + [sym_op_coalescing] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3959), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_from] = ACTIONS(3959), + [anon_sym_into] = ACTIONS(3959), + [anon_sym_join] = ACTIONS(3959), + [anon_sym_on] = ACTIONS(3959), + [anon_sym_equals] = ACTIONS(3959), + [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(3959), + [anon_sym_select] = ACTIONS(3959), + [anon_sym_as] = ACTIONS(3959), + [anon_sym_is] = ACTIONS(3959), + [anon_sym_DASH_GT] = ACTIONS(3961), + [anon_sym_with] = ACTIONS(3959), + [sym_grit_metavariable] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3961), }, [2697] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), + [sym__variable_designation] = STATE(5514), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym_identifier] = STATE(5489), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2697), [sym_preproc_endregion] = STATE(2697), [sym_preproc_line] = STATE(2697), @@ -457841,51 +457706,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2697), [sym_preproc_define] = STATE(2697), [sym_preproc_undef] = STATE(2697), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4252), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4188), + [anon_sym_var] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4188), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4252), + [anon_sym_into] = ACTIONS(4252), + [anon_sym_join] = ACTIONS(4252), + [anon_sym_on] = ACTIONS(4188), + [anon_sym_equals] = ACTIONS(4188), + [anon_sym_let] = ACTIONS(4252), + [anon_sym_orderby] = ACTIONS(4252), + [anon_sym_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4252), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4252), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457907,228 +457787,52 @@ 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(3536), - [anon_sym_extern] = ACTIONS(3536), - [anon_sym_alias] = ACTIONS(3536), - [anon_sym_global] = ACTIONS(3536), - [anon_sym_using] = ACTIONS(3536), - [anon_sym_unsafe] = ACTIONS(3536), - [anon_sym_static] = ACTIONS(3536), - [anon_sym_LBRACK] = ACTIONS(3538), - [anon_sym_LPAREN] = ACTIONS(3538), - [anon_sym_event] = ACTIONS(3536), - [anon_sym_namespace] = ACTIONS(3536), - [anon_sym_class] = ACTIONS(3536), - [anon_sym_ref] = ACTIONS(3536), - [anon_sym_struct] = ACTIONS(3536), - [anon_sym_enum] = ACTIONS(3536), - [anon_sym_RBRACE] = ACTIONS(3538), - [anon_sym_interface] = ACTIONS(3536), - [anon_sym_delegate] = ACTIONS(3536), - [anon_sym_record] = ACTIONS(3536), - [anon_sym_public] = ACTIONS(3536), - [anon_sym_private] = ACTIONS(3536), - [anon_sym_readonly] = ACTIONS(3536), - [anon_sym_abstract] = ACTIONS(3536), - [anon_sym_async] = ACTIONS(3536), - [anon_sym_const] = ACTIONS(3536), - [anon_sym_file] = ACTIONS(3536), - [anon_sym_fixed] = ACTIONS(3536), - [anon_sym_internal] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3536), - [anon_sym_override] = ACTIONS(3536), - [anon_sym_partial] = ACTIONS(3536), - [anon_sym_protected] = ACTIONS(3536), - [anon_sym_required] = ACTIONS(3536), - [anon_sym_sealed] = ACTIONS(3536), - [anon_sym_virtual] = ACTIONS(3536), - [anon_sym_volatile] = ACTIONS(3536), - [anon_sym_where] = ACTIONS(3536), - [anon_sym_notnull] = ACTIONS(3536), - [anon_sym_unmanaged] = ACTIONS(3536), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_implicit] = ACTIONS(3536), - [anon_sym_explicit] = ACTIONS(3536), - [anon_sym_scoped] = ACTIONS(3536), - [anon_sym_var] = ACTIONS(3536), - [sym_predefined_type] = ACTIONS(3536), - [anon_sym_while] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3536), - [anon_sym_when] = ACTIONS(3536), - [anon_sym_else] = ACTIONS(3536), - [anon_sym_from] = ACTIONS(3536), - [anon_sym_into] = ACTIONS(3536), - [anon_sym_join] = ACTIONS(3536), - [anon_sym_on] = ACTIONS(3536), - [anon_sym_equals] = ACTIONS(3536), - [anon_sym_let] = ACTIONS(3536), - [anon_sym_orderby] = ACTIONS(3536), - [anon_sym_ascending] = ACTIONS(3536), - [anon_sym_descending] = ACTIONS(3536), - [anon_sym_group] = ACTIONS(3536), - [anon_sym_by] = ACTIONS(3536), - [anon_sym_select] = ACTIONS(3536), - [sym_grit_metavariable] = ACTIONS(3538), - [aux_sym_preproc_if_token1] = ACTIONS(3538), - [aux_sym_preproc_if_token3] = ACTIONS(3538), - [aux_sym_preproc_else_token1] = ACTIONS(3538), - [aux_sym_preproc_elif_token1] = ACTIONS(3538), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2699] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), - [sym_preproc_region] = STATE(2699), - [sym_preproc_endregion] = STATE(2699), - [sym_preproc_line] = STATE(2699), - [sym_preproc_pragma] = STATE(2699), - [sym_preproc_nullable] = STATE(2699), - [sym_preproc_error] = STATE(2699), - [sym_preproc_warning] = STATE(2699), - [sym_preproc_define] = STATE(2699), - [sym_preproc_undef] = STATE(2699), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2700] = { - [sym_type_argument_list] = STATE(2822), - [sym_preproc_region] = STATE(2700), - [sym_preproc_endregion] = STATE(2700), - [sym_preproc_line] = STATE(2700), - [sym_preproc_pragma] = STATE(2700), - [sym_preproc_nullable] = STATE(2700), - [sym_preproc_error] = STATE(2700), - [sym_preproc_warning] = STATE(2700), - [sym_preproc_define] = STATE(2700), - [sym_preproc_undef] = STATE(2700), [sym__identifier_token] = ACTIONS(3951), [anon_sym_alias] = ACTIONS(3951), [anon_sym_global] = ACTIONS(3951), [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3953), [anon_sym_COMMA] = ACTIONS(3953), [anon_sym_LPAREN] = ACTIONS(3953), [anon_sym_LBRACE] = ACTIONS(3953), [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(4822), + [anon_sym_LT] = ACTIONS(3951), [anon_sym_GT] = ACTIONS(3951), [anon_sym_where] = ACTIONS(3951), [anon_sym_QMARK] = ACTIONS(3951), [anon_sym_notnull] = ACTIONS(3951), [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), [anon_sym_DOT] = ACTIONS(3951), [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_COLON_COLON] = ACTIONS(4190), [anon_sym_var] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3953), [anon_sym_yield] = ACTIONS(3951), [anon_sym_switch] = ACTIONS(3951), [anon_sym_when] = ACTIONS(3951), [sym_discard] = ACTIONS(3951), [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), [anon_sym_and] = ACTIONS(3951), [anon_sym_or] = ACTIONS(3951), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), [anon_sym_AMP_AMP] = ACTIONS(3953), [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP] = ACTIONS(3951), + [sym_op_bitwise_or] = ACTIONS(3951), + [anon_sym_CARET] = ACTIONS(3953), + [sym_op_left_shift] = ACTIONS(3953), + [sym_op_right_shift] = ACTIONS(3951), + [sym_op_unsigned_right_shift] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [sym_op_divide] = ACTIONS(3951), + [sym_op_modulo] = ACTIONS(3953), [sym_op_coalescing] = ACTIONS(3953), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), [anon_sym_from] = ACTIONS(3951), [anon_sym_into] = ACTIONS(3951), [anon_sym_join] = ACTIONS(3951), @@ -458158,12 +457862,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(3953), }, + [2699] = { + [sym_preproc_region] = STATE(2699), + [sym_preproc_endregion] = STATE(2699), + [sym_preproc_line] = STATE(2699), + [sym_preproc_pragma] = STATE(2699), + [sym_preproc_nullable] = STATE(2699), + [sym_preproc_error] = STATE(2699), + [sym_preproc_warning] = STATE(2699), + [sym_preproc_define] = STATE(2699), + [sym_preproc_undef] = STATE(2699), + [sym__identifier_token] = ACTIONS(4745), + [anon_sym_extern] = ACTIONS(4745), + [anon_sym_alias] = ACTIONS(4745), + [anon_sym_global] = ACTIONS(4745), + [anon_sym_using] = 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_namespace] = ACTIONS(4745), + [anon_sym_class] = ACTIONS(4745), + [anon_sym_ref] = ACTIONS(4745), + [anon_sym_struct] = ACTIONS(4745), + [anon_sym_enum] = ACTIONS(4745), + [anon_sym_RBRACE] = ACTIONS(4747), + [anon_sym_interface] = ACTIONS(4745), + [anon_sym_delegate] = ACTIONS(4745), + [anon_sym_record] = ACTIONS(4745), + [anon_sym_public] = ACTIONS(4745), + [anon_sym_private] = ACTIONS(4745), + [anon_sym_readonly] = 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_protected] = 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_implicit] = ACTIONS(4745), + [anon_sym_explicit] = ACTIONS(4745), + [anon_sym_TILDE] = ACTIONS(4747), + [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), + [sym_grit_metavariable] = ACTIONS(4747), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2700] = { + [sym_preproc_region] = STATE(2700), + [sym_preproc_endregion] = STATE(2700), + [sym_preproc_line] = STATE(2700), + [sym_preproc_pragma] = STATE(2700), + [sym_preproc_nullable] = STATE(2700), + [sym_preproc_error] = STATE(2700), + [sym_preproc_warning] = STATE(2700), + [sym_preproc_define] = STATE(2700), + [sym_preproc_undef] = STATE(2700), + [sym__identifier_token] = ACTIONS(3980), + [anon_sym_alias] = ACTIONS(3980), + [anon_sym_global] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_COLON] = ACTIONS(3982), + [anon_sym_COMMA] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3982), + [anon_sym_file] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3980), + [anon_sym_GT] = ACTIONS(3980), + [anon_sym_where] = ACTIONS(3980), + [anon_sym_QMARK] = ACTIONS(3980), + [anon_sym_notnull] = ACTIONS(3980), + [anon_sym_unmanaged] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_scoped] = ACTIONS(3980), + [anon_sym_var] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_yield] = ACTIONS(3980), + [anon_sym_switch] = ACTIONS(3980), + [anon_sym_when] = ACTIONS(3980), + [sym_discard] = ACTIONS(3980), + [anon_sym_DOT_DOT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_EQ] = ACTIONS(3982), + [anon_sym_and] = ACTIONS(3980), + [anon_sym_or] = ACTIONS(3980), + [anon_sym_EQ_EQ] = ACTIONS(3982), + [anon_sym_BANG_EQ] = ACTIONS(3982), + [anon_sym_AMP_AMP] = ACTIONS(3982), + [anon_sym_PIPE_PIPE] = ACTIONS(3982), + [anon_sym_AMP] = ACTIONS(3980), + [sym_op_bitwise_or] = ACTIONS(3980), + [anon_sym_CARET] = ACTIONS(3982), + [sym_op_left_shift] = ACTIONS(3982), + [sym_op_right_shift] = ACTIONS(3980), + [sym_op_unsigned_right_shift] = ACTIONS(3982), + [anon_sym_PLUS] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3980), + [sym_op_divide] = ACTIONS(3980), + [sym_op_modulo] = ACTIONS(3982), + [sym_op_coalescing] = ACTIONS(3982), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3982), + [anon_sym_from] = ACTIONS(3980), + [anon_sym_into] = ACTIONS(3980), + [anon_sym_join] = ACTIONS(3980), + [anon_sym_on] = ACTIONS(3980), + [anon_sym_equals] = ACTIONS(3980), + [anon_sym_let] = ACTIONS(3980), + [anon_sym_orderby] = ACTIONS(3980), + [anon_sym_ascending] = ACTIONS(3980), + [anon_sym_descending] = ACTIONS(3980), + [anon_sym_group] = ACTIONS(3980), + [anon_sym_by] = ACTIONS(3980), + [anon_sym_select] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(3980), + [anon_sym_is] = ACTIONS(3980), + [anon_sym_DASH_GT] = ACTIONS(3982), + [anon_sym_with] = ACTIONS(3980), + [sym_grit_metavariable] = ACTIONS(3982), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3982), + }, [2701] = { - [sym_property_pattern_clause] = STATE(2846), - [sym__variable_designation] = STATE(4968), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2701), [sym_preproc_endregion] = STATE(2701), [sym_preproc_line] = STATE(2701), @@ -458173,67 +458042,70 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4244), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4749), + [anon_sym_extern] = ACTIONS(4749), + [anon_sym_alias] = ACTIONS(4749), + [anon_sym_global] = ACTIONS(4749), + [anon_sym_using] = 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_namespace] = ACTIONS(4749), + [anon_sym_class] = ACTIONS(4749), + [anon_sym_ref] = ACTIONS(4749), + [anon_sym_struct] = ACTIONS(4749), + [anon_sym_enum] = ACTIONS(4749), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_interface] = ACTIONS(4749), + [anon_sym_delegate] = ACTIONS(4749), + [anon_sym_record] = ACTIONS(4749), + [anon_sym_public] = ACTIONS(4749), + [anon_sym_private] = ACTIONS(4749), + [anon_sym_readonly] = 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_protected] = 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_implicit] = ACTIONS(4749), + [anon_sym_explicit] = ACTIONS(4749), + [anon_sym_TILDE] = ACTIONS(4751), + [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), + [sym_grit_metavariable] = ACTIONS(4751), + [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), @@ -458255,72 +458127,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2702), [sym_preproc_define] = STATE(2702), [sym_preproc_undef] = STATE(2702), - [sym__identifier_token] = ACTIONS(4468), - [anon_sym_alias] = ACTIONS(4468), - [anon_sym_global] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_COLON] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(4470), - [anon_sym_RBRACK] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_RPAREN] = ACTIONS(4470), - [anon_sym_RBRACE] = ACTIONS(4470), - [anon_sym_file] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_notnull] = ACTIONS(4468), - [anon_sym_unmanaged] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3205), - [anon_sym_EQ_EQ] = ACTIONS(3205), - [anon_sym_BANG_EQ] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3205), - [anon_sym_LT_EQ] = ACTIONS(3205), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_scoped] = ACTIONS(4468), - [anon_sym_EQ_GT] = ACTIONS(4470), - [anon_sym_var] = ACTIONS(4468), - [anon_sym_yield] = ACTIONS(4468), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_when] = ACTIONS(4468), - [sym_discard] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(3205), - [anon_sym_and] = ACTIONS(4468), - [anon_sym_or] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [sym_op_coalescing] = ACTIONS(3205), - [anon_sym_from] = ACTIONS(4468), - [anon_sym_into] = ACTIONS(4468), - [anon_sym_join] = ACTIONS(4468), - [anon_sym_on] = ACTIONS(4468), - [anon_sym_equals] = ACTIONS(4468), - [anon_sym_let] = ACTIONS(4468), - [anon_sym_orderby] = ACTIONS(4468), - [anon_sym_ascending] = ACTIONS(4468), - [anon_sym_descending] = ACTIONS(4468), - [anon_sym_group] = ACTIONS(4468), - [anon_sym_by] = ACTIONS(4468), - [anon_sym_select] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_DASH_GT] = ACTIONS(3205), - [anon_sym_with] = ACTIONS(3203), - [sym_grit_metavariable] = ACTIONS(4470), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458331,29 +458200,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(4331), }, [2703] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2703), [sym_preproc_endregion] = STATE(2703), [sym_preproc_line] = STATE(2703), @@ -458363,51 +458212,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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458418,13 +458285,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(4331), }, [2704] = { - [sym_property_pattern_clause] = STATE(2896), - [sym__variable_designation] = STATE(4856), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2704), [sym_preproc_endregion] = STATE(2704), [sym_preproc_line] = STATE(2704), @@ -458434,67 +458297,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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4244), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4244), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458505,12 +458370,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(4331), }, [2705] = { - [sym__variable_designation] = STATE(4967), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2705), [sym_preproc_endregion] = STATE(2705), [sym_preproc_line] = STATE(2705), @@ -458520,68 +458382,70 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COLON] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4242), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4244), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4753), + [anon_sym_extern] = ACTIONS(4753), + [anon_sym_alias] = ACTIONS(4753), + [anon_sym_global] = ACTIONS(4753), + [anon_sym_using] = ACTIONS(4753), + [anon_sym_unsafe] = ACTIONS(4753), + [anon_sym_static] = ACTIONS(4753), + [anon_sym_LBRACK] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4755), + [anon_sym_event] = ACTIONS(4753), + [anon_sym_namespace] = ACTIONS(4753), + [anon_sym_class] = ACTIONS(4753), + [anon_sym_ref] = ACTIONS(4753), + [anon_sym_struct] = ACTIONS(4753), + [anon_sym_enum] = ACTIONS(4753), + [anon_sym_RBRACE] = ACTIONS(4755), + [anon_sym_interface] = ACTIONS(4753), + [anon_sym_delegate] = ACTIONS(4753), + [anon_sym_record] = ACTIONS(4753), + [anon_sym_public] = ACTIONS(4753), + [anon_sym_private] = ACTIONS(4753), + [anon_sym_readonly] = ACTIONS(4753), + [anon_sym_abstract] = ACTIONS(4753), + [anon_sym_async] = ACTIONS(4753), + [anon_sym_const] = ACTIONS(4753), + [anon_sym_file] = ACTIONS(4753), + [anon_sym_fixed] = ACTIONS(4753), + [anon_sym_internal] = ACTIONS(4753), + [anon_sym_new] = ACTIONS(4753), + [anon_sym_override] = ACTIONS(4753), + [anon_sym_partial] = ACTIONS(4753), + [anon_sym_protected] = ACTIONS(4753), + [anon_sym_required] = ACTIONS(4753), + [anon_sym_sealed] = ACTIONS(4753), + [anon_sym_virtual] = ACTIONS(4753), + [anon_sym_volatile] = ACTIONS(4753), + [anon_sym_where] = ACTIONS(4753), + [anon_sym_notnull] = ACTIONS(4753), + [anon_sym_unmanaged] = ACTIONS(4753), + [anon_sym_implicit] = ACTIONS(4753), + [anon_sym_explicit] = ACTIONS(4753), + [anon_sym_TILDE] = ACTIONS(4755), + [anon_sym_scoped] = ACTIONS(4753), + [anon_sym_var] = ACTIONS(4753), + [sym_predefined_type] = ACTIONS(4753), + [anon_sym_yield] = ACTIONS(4753), + [anon_sym_when] = 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_ascending] = ACTIONS(4753), + [anon_sym_descending] = ACTIONS(4753), + [anon_sym_group] = ACTIONS(4753), + [anon_sym_by] = ACTIONS(4753), + [anon_sym_select] = ACTIONS(4753), + [sym_grit_metavariable] = ACTIONS(4755), + [aux_sym_preproc_if_token1] = ACTIONS(4755), + [aux_sym_preproc_if_token3] = ACTIONS(4755), + [aux_sym_preproc_else_token1] = ACTIONS(4755), + [aux_sym_preproc_elif_token1] = ACTIONS(4755), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458594,11 +458458,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2706] = { - [sym_property_pattern_clause] = STATE(2856), - [sym__variable_designation] = STATE(4968), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2706), [sym_preproc_endregion] = STATE(2706), [sym_preproc_line] = STATE(2706), @@ -458608,67 +458467,70 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4244), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4757), + [anon_sym_extern] = ACTIONS(4757), + [anon_sym_alias] = ACTIONS(4757), + [anon_sym_global] = ACTIONS(4757), + [anon_sym_using] = 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_namespace] = ACTIONS(4757), + [anon_sym_class] = ACTIONS(4757), + [anon_sym_ref] = ACTIONS(4757), + [anon_sym_struct] = ACTIONS(4757), + [anon_sym_enum] = ACTIONS(4757), + [anon_sym_RBRACE] = ACTIONS(4759), + [anon_sym_interface] = ACTIONS(4757), + [anon_sym_delegate] = ACTIONS(4757), + [anon_sym_record] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_readonly] = 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_protected] = 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_implicit] = ACTIONS(4757), + [anon_sym_explicit] = ACTIONS(4757), + [anon_sym_TILDE] = ACTIONS(4759), + [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_grit_metavariable] = ACTIONS(4759), + [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), @@ -458681,27 +458543,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2707] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2707), [sym_preproc_endregion] = STATE(2707), [sym_preproc_line] = STATE(2707), @@ -458711,51 +458552,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_join] = ACTIONS(1435), - [anon_sym_let] = ACTIONS(1435), - [anon_sym_orderby] = ACTIONS(1435), - [anon_sym_ascending] = ACTIONS(1435), - [anon_sym_descending] = ACTIONS(1435), - [anon_sym_group] = ACTIONS(1435), - [anon_sym_select] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1437), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(1435), - [sym_grit_metavariable] = ACTIONS(1435), + [sym__identifier_token] = ACTIONS(4761), + [anon_sym_extern] = ACTIONS(4761), + [anon_sym_alias] = ACTIONS(4761), + [anon_sym_global] = ACTIONS(4761), + [anon_sym_using] = 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_namespace] = ACTIONS(4761), + [anon_sym_class] = ACTIONS(4761), + [anon_sym_ref] = ACTIONS(4761), + [anon_sym_struct] = ACTIONS(4761), + [anon_sym_enum] = ACTIONS(4761), + [anon_sym_RBRACE] = ACTIONS(4763), + [anon_sym_interface] = ACTIONS(4761), + [anon_sym_delegate] = ACTIONS(4761), + [anon_sym_record] = ACTIONS(4761), + [anon_sym_public] = ACTIONS(4761), + [anon_sym_private] = ACTIONS(4761), + [anon_sym_readonly] = 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_protected] = 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_implicit] = ACTIONS(4761), + [anon_sym_explicit] = ACTIONS(4761), + [anon_sym_TILDE] = ACTIONS(4763), + [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), + [sym_grit_metavariable] = ACTIONS(4763), + [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), @@ -458768,11 +458628,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2708] = { - [sym_property_pattern_clause] = STATE(2954), - [sym__variable_designation] = STATE(5518), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym_identifier] = STATE(5505), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(2708), [sym_preproc_endregion] = STATE(2708), [sym_preproc_line] = STATE(2708), @@ -458782,67 +458637,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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4228), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4252), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4252), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4252), - [anon_sym_orderby] = ACTIONS(4252), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4252), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458853,29 +458710,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(4331), }, [2709] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2709), [sym_preproc_endregion] = STATE(2709), [sym_preproc_line] = STATE(2709), @@ -458885,51 +458722,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_from] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_join] = ACTIONS(4766), - [anon_sym_let] = ACTIONS(4766), - [anon_sym_orderby] = ACTIONS(4766), - [anon_sym_ascending] = ACTIONS(4766), - [anon_sym_descending] = ACTIONS(4766), - [anon_sym_group] = ACTIONS(4766), - [anon_sym_select] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4766), - [sym_grit_metavariable] = ACTIONS(4766), + [sym__identifier_token] = ACTIONS(4765), + [anon_sym_extern] = ACTIONS(4765), + [anon_sym_alias] = ACTIONS(4765), + [anon_sym_global] = ACTIONS(4765), + [anon_sym_using] = ACTIONS(4765), + [anon_sym_unsafe] = ACTIONS(4765), + [anon_sym_static] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_LPAREN] = ACTIONS(4767), + [anon_sym_event] = ACTIONS(4765), + [anon_sym_namespace] = ACTIONS(4765), + [anon_sym_class] = ACTIONS(4765), + [anon_sym_ref] = ACTIONS(4765), + [anon_sym_struct] = ACTIONS(4765), + [anon_sym_enum] = ACTIONS(4765), + [anon_sym_RBRACE] = ACTIONS(4767), + [anon_sym_interface] = ACTIONS(4765), + [anon_sym_delegate] = ACTIONS(4765), + [anon_sym_record] = ACTIONS(4765), + [anon_sym_public] = ACTIONS(4765), + [anon_sym_private] = ACTIONS(4765), + [anon_sym_readonly] = ACTIONS(4765), + [anon_sym_abstract] = ACTIONS(4765), + [anon_sym_async] = ACTIONS(4765), + [anon_sym_const] = ACTIONS(4765), + [anon_sym_file] = ACTIONS(4765), + [anon_sym_fixed] = ACTIONS(4765), + [anon_sym_internal] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_override] = ACTIONS(4765), + [anon_sym_partial] = ACTIONS(4765), + [anon_sym_protected] = ACTIONS(4765), + [anon_sym_required] = ACTIONS(4765), + [anon_sym_sealed] = ACTIONS(4765), + [anon_sym_virtual] = ACTIONS(4765), + [anon_sym_volatile] = ACTIONS(4765), + [anon_sym_where] = ACTIONS(4765), + [anon_sym_notnull] = ACTIONS(4765), + [anon_sym_unmanaged] = ACTIONS(4765), + [anon_sym_implicit] = ACTIONS(4765), + [anon_sym_explicit] = ACTIONS(4765), + [anon_sym_TILDE] = ACTIONS(4767), + [anon_sym_scoped] = ACTIONS(4765), + [anon_sym_var] = ACTIONS(4765), + [sym_predefined_type] = ACTIONS(4765), + [anon_sym_yield] = ACTIONS(4765), + [anon_sym_when] = ACTIONS(4765), + [anon_sym_from] = ACTIONS(4765), + [anon_sym_into] = ACTIONS(4765), + [anon_sym_join] = ACTIONS(4765), + [anon_sym_on] = ACTIONS(4765), + [anon_sym_equals] = ACTIONS(4765), + [anon_sym_let] = ACTIONS(4765), + [anon_sym_orderby] = ACTIONS(4765), + [anon_sym_ascending] = ACTIONS(4765), + [anon_sym_descending] = ACTIONS(4765), + [anon_sym_group] = ACTIONS(4765), + [anon_sym_by] = ACTIONS(4765), + [anon_sym_select] = ACTIONS(4765), + [sym_grit_metavariable] = ACTIONS(4767), + [aux_sym_preproc_if_token1] = ACTIONS(4767), + [aux_sym_preproc_if_token3] = ACTIONS(4767), + [aux_sym_preproc_else_token1] = ACTIONS(4767), + [aux_sym_preproc_elif_token1] = ACTIONS(4767), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458942,27 +458798,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2710] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2710), [sym_preproc_endregion] = STATE(2710), [sym_preproc_line] = STATE(2710), @@ -458972,51 +458807,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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_where] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_from] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_join] = ACTIONS(4794), - [anon_sym_let] = ACTIONS(4794), - [anon_sym_orderby] = ACTIONS(4794), - [anon_sym_ascending] = ACTIONS(4794), - [anon_sym_descending] = ACTIONS(4794), - [anon_sym_group] = ACTIONS(4794), - [anon_sym_select] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4796), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4794), - [sym_grit_metavariable] = ACTIONS(4794), + [sym__identifier_token] = ACTIONS(3974), + [anon_sym_alias] = ACTIONS(3974), + [anon_sym_global] = ACTIONS(3974), + [anon_sym_LBRACK] = ACTIONS(3976), + [anon_sym_COLON] = ACTIONS(3976), + [anon_sym_COMMA] = ACTIONS(3976), + [anon_sym_LPAREN] = ACTIONS(3976), + [anon_sym_LBRACE] = ACTIONS(3976), + [anon_sym_file] = ACTIONS(3974), + [anon_sym_LT] = ACTIONS(3974), + [anon_sym_GT] = ACTIONS(3974), + [anon_sym_where] = ACTIONS(3974), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_notnull] = ACTIONS(3974), + [anon_sym_unmanaged] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3974), + [anon_sym_scoped] = ACTIONS(3974), + [anon_sym_var] = ACTIONS(3974), + [anon_sym_STAR] = ACTIONS(3976), + [anon_sym_yield] = ACTIONS(3974), + [anon_sym_switch] = ACTIONS(3974), + [anon_sym_when] = ACTIONS(3974), + [sym_discard] = ACTIONS(3974), + [anon_sym_DOT_DOT] = ACTIONS(3976), + [anon_sym_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_EQ] = ACTIONS(3976), + [anon_sym_and] = ACTIONS(3974), + [anon_sym_or] = ACTIONS(3974), + [anon_sym_EQ_EQ] = ACTIONS(3976), + [anon_sym_BANG_EQ] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [sym_op_bitwise_or] = ACTIONS(3974), + [anon_sym_CARET] = ACTIONS(3976), + [sym_op_left_shift] = ACTIONS(3976), + [sym_op_right_shift] = ACTIONS(3974), + [sym_op_unsigned_right_shift] = ACTIONS(3976), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [sym_op_divide] = ACTIONS(3974), + [sym_op_modulo] = ACTIONS(3976), + [sym_op_coalescing] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3974), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_from] = ACTIONS(3974), + [anon_sym_into] = ACTIONS(3974), + [anon_sym_join] = ACTIONS(3974), + [anon_sym_on] = ACTIONS(3974), + [anon_sym_equals] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3974), + [anon_sym_orderby] = ACTIONS(3974), + [anon_sym_ascending] = ACTIONS(3974), + [anon_sym_descending] = ACTIONS(3974), + [anon_sym_group] = ACTIONS(3974), + [anon_sym_by] = ACTIONS(3974), + [anon_sym_select] = ACTIONS(3974), + [anon_sym_as] = ACTIONS(3974), + [anon_sym_is] = ACTIONS(3974), + [anon_sym_DASH_GT] = ACTIONS(3976), + [anon_sym_with] = ACTIONS(3974), + [sym_grit_metavariable] = ACTIONS(3976), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459027,29 +458880,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(3976), }, [2711] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2711), [sym_preproc_endregion] = STATE(2711), [sym_preproc_line] = STATE(2711), @@ -459059,51 +458892,70 @@ 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_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4820), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4818), - [anon_sym_from] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_join] = ACTIONS(4790), - [anon_sym_let] = ACTIONS(4790), - [anon_sym_orderby] = ACTIONS(4790), - [anon_sym_ascending] = ACTIONS(4790), - [anon_sym_descending] = ACTIONS(4790), - [anon_sym_group] = ACTIONS(4790), - [anon_sym_select] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4738), - [anon_sym_is] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4790), + [sym__identifier_token] = ACTIONS(4769), + [anon_sym_extern] = ACTIONS(4769), + [anon_sym_alias] = ACTIONS(4769), + [anon_sym_global] = ACTIONS(4769), + [anon_sym_using] = ACTIONS(4769), + [anon_sym_unsafe] = ACTIONS(4769), + [anon_sym_static] = ACTIONS(4769), + [anon_sym_LBRACK] = ACTIONS(4771), + [anon_sym_LPAREN] = ACTIONS(4771), + [anon_sym_event] = ACTIONS(4769), + [anon_sym_namespace] = ACTIONS(4769), + [anon_sym_class] = ACTIONS(4769), + [anon_sym_ref] = ACTIONS(4769), + [anon_sym_struct] = ACTIONS(4769), + [anon_sym_enum] = ACTIONS(4769), + [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_interface] = ACTIONS(4769), + [anon_sym_delegate] = ACTIONS(4769), + [anon_sym_record] = ACTIONS(4769), + [anon_sym_public] = ACTIONS(4769), + [anon_sym_private] = ACTIONS(4769), + [anon_sym_readonly] = ACTIONS(4769), + [anon_sym_abstract] = ACTIONS(4769), + [anon_sym_async] = ACTIONS(4769), + [anon_sym_const] = ACTIONS(4769), + [anon_sym_file] = ACTIONS(4769), + [anon_sym_fixed] = ACTIONS(4769), + [anon_sym_internal] = ACTIONS(4769), + [anon_sym_new] = ACTIONS(4769), + [anon_sym_override] = ACTIONS(4769), + [anon_sym_partial] = ACTIONS(4769), + [anon_sym_protected] = ACTIONS(4769), + [anon_sym_required] = ACTIONS(4769), + [anon_sym_sealed] = ACTIONS(4769), + [anon_sym_virtual] = ACTIONS(4769), + [anon_sym_volatile] = ACTIONS(4769), + [anon_sym_where] = ACTIONS(4769), + [anon_sym_notnull] = ACTIONS(4769), + [anon_sym_unmanaged] = ACTIONS(4769), + [anon_sym_implicit] = ACTIONS(4769), + [anon_sym_explicit] = ACTIONS(4769), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_scoped] = ACTIONS(4769), + [anon_sym_var] = ACTIONS(4769), + [sym_predefined_type] = ACTIONS(4769), + [anon_sym_yield] = ACTIONS(4769), + [anon_sym_when] = ACTIONS(4769), + [anon_sym_from] = ACTIONS(4769), + [anon_sym_into] = ACTIONS(4769), + [anon_sym_join] = ACTIONS(4769), + [anon_sym_on] = ACTIONS(4769), + [anon_sym_equals] = ACTIONS(4769), + [anon_sym_let] = ACTIONS(4769), + [anon_sym_orderby] = ACTIONS(4769), + [anon_sym_ascending] = ACTIONS(4769), + [anon_sym_descending] = ACTIONS(4769), + [anon_sym_group] = ACTIONS(4769), + [anon_sym_by] = ACTIONS(4769), + [anon_sym_select] = ACTIONS(4769), + [sym_grit_metavariable] = ACTIONS(4771), + [aux_sym_preproc_if_token1] = ACTIONS(4771), + [aux_sym_preproc_if_token3] = ACTIONS(4771), + [aux_sym_preproc_else_token1] = ACTIONS(4771), + [aux_sym_preproc_elif_token1] = ACTIONS(4771), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459116,11 +458968,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2712] = { - [sym_property_pattern_clause] = STATE(2911), - [sym__variable_designation] = STATE(5501), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym_identifier] = STATE(5505), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(2712), [sym_preproc_endregion] = STATE(2712), [sym_preproc_line] = STATE(2712), @@ -459130,67 +458977,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2712), [sym_preproc_define] = STATE(2712), [sym_preproc_undef] = STATE(2712), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4228), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4244), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4244), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4244), - [anon_sym_orderby] = ACTIONS(4244), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3986), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3986), + [anon_sym_GT] = ACTIONS(3986), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(3986), + [anon_sym_notnull] = ACTIONS(3986), + [anon_sym_unmanaged] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3986), + [anon_sym_scoped] = ACTIONS(3986), + [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_yield] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3986), + [anon_sym_when] = ACTIONS(3986), + [sym_discard] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3986), + [anon_sym_or] = ACTIONS(3986), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP] = ACTIONS(3986), + [sym_op_bitwise_or] = ACTIONS(3986), + [anon_sym_CARET] = ACTIONS(3997), + [sym_op_left_shift] = ACTIONS(3997), + [sym_op_right_shift] = ACTIONS(3986), + [sym_op_unsigned_right_shift] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3986), + [anon_sym_DASH] = ACTIONS(3986), + [sym_op_divide] = ACTIONS(3986), + [sym_op_modulo] = ACTIONS(3997), + [sym_op_coalescing] = ACTIONS(3997), + [anon_sym_BANG] = ACTIONS(3986), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(3986), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_ascending] = ACTIONS(3986), + [anon_sym_descending] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3986), + [anon_sym_is] = ACTIONS(3986), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3986), + [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459201,12 +459050,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(3997), }, [2713] = { - [sym__variable_designation] = STATE(4909), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2713), [sym_preproc_endregion] = STATE(2713), [sym_preproc_line] = STATE(2713), @@ -459216,68 +459062,69 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_COLON] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4302), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4304), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4304), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459288,13 +459135,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(3957), }, [2714] = { - [sym_property_pattern_clause] = STATE(2868), - [sym__variable_designation] = STATE(4856), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2714), [sym_preproc_endregion] = STATE(2714), [sym_preproc_line] = STATE(2714), @@ -459304,67 +459147,69 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4244), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4244), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459375,12 +459220,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(4331), }, [2715] = { - [sym__variable_designation] = STATE(4893), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2715), [sym_preproc_endregion] = STATE(2715), [sym_preproc_line] = STATE(2715), @@ -459390,68 +459232,70 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_COLON] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4306), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4308), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4308), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(3735), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3735), + [anon_sym_global] = ACTIONS(3735), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3740), + [anon_sym_event] = ACTIONS(3738), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_interface] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_record] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3735), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_where] = ACTIONS(3735), + [anon_sym_QMARK] = ACTIONS(3694), + [anon_sym_notnull] = ACTIONS(3735), + [anon_sym_unmanaged] = ACTIONS(3735), + [anon_sym_operator] = ACTIONS(3696), + [anon_sym_implicit] = ACTIONS(3738), + [anon_sym_explicit] = ACTIONS(3738), + [anon_sym_this] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3694), + [anon_sym_scoped] = ACTIONS(3735), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3735), + [anon_sym_STAR] = ACTIONS(3694), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3735), + [anon_sym_when] = ACTIONS(3735), + [anon_sym_from] = ACTIONS(3735), + [anon_sym_into] = ACTIONS(3735), + [anon_sym_join] = ACTIONS(3735), + [anon_sym_on] = ACTIONS(3735), + [anon_sym_equals] = ACTIONS(3735), + [anon_sym_let] = ACTIONS(3735), + [anon_sym_orderby] = ACTIONS(3735), + [anon_sym_ascending] = ACTIONS(3735), + [anon_sym_descending] = ACTIONS(3735), + [anon_sym_group] = ACTIONS(3735), + [anon_sym_by] = ACTIONS(3735), + [anon_sym_select] = ACTIONS(3735), + [sym_grit_metavariable] = ACTIONS(3740), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459464,11 +459308,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2716] = { - [sym_property_pattern_clause] = STATE(2874), - [sym__variable_designation] = STATE(4885), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2716), [sym_preproc_endregion] = STATE(2716), [sym_preproc_line] = STATE(2716), @@ -459478,67 +459317,70 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4252), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4252), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4775), + [anon_sym_extern] = ACTIONS(4775), + [anon_sym_alias] = ACTIONS(4775), + [anon_sym_global] = ACTIONS(4775), + [anon_sym_using] = ACTIONS(4775), + [anon_sym_unsafe] = ACTIONS(4775), + [anon_sym_static] = ACTIONS(4775), + [anon_sym_LBRACK] = ACTIONS(4777), + [anon_sym_LPAREN] = ACTIONS(4777), + [anon_sym_event] = ACTIONS(4775), + [anon_sym_namespace] = ACTIONS(4775), + [anon_sym_class] = ACTIONS(4775), + [anon_sym_ref] = ACTIONS(4775), + [anon_sym_struct] = ACTIONS(4775), + [anon_sym_enum] = ACTIONS(4775), + [anon_sym_RBRACE] = ACTIONS(4777), + [anon_sym_interface] = ACTIONS(4775), + [anon_sym_delegate] = ACTIONS(4775), + [anon_sym_record] = ACTIONS(4775), + [anon_sym_public] = ACTIONS(4775), + [anon_sym_private] = ACTIONS(4775), + [anon_sym_readonly] = ACTIONS(4775), + [anon_sym_abstract] = ACTIONS(4775), + [anon_sym_async] = ACTIONS(4775), + [anon_sym_const] = ACTIONS(4775), + [anon_sym_file] = ACTIONS(4775), + [anon_sym_fixed] = ACTIONS(4775), + [anon_sym_internal] = ACTIONS(4775), + [anon_sym_new] = ACTIONS(4775), + [anon_sym_override] = ACTIONS(4775), + [anon_sym_partial] = ACTIONS(4775), + [anon_sym_protected] = ACTIONS(4775), + [anon_sym_required] = ACTIONS(4775), + [anon_sym_sealed] = ACTIONS(4775), + [anon_sym_virtual] = ACTIONS(4775), + [anon_sym_volatile] = ACTIONS(4775), + [anon_sym_where] = ACTIONS(4775), + [anon_sym_notnull] = ACTIONS(4775), + [anon_sym_unmanaged] = ACTIONS(4775), + [anon_sym_implicit] = ACTIONS(4775), + [anon_sym_explicit] = ACTIONS(4775), + [anon_sym_TILDE] = ACTIONS(4777), + [anon_sym_scoped] = ACTIONS(4775), + [anon_sym_var] = ACTIONS(4775), + [sym_predefined_type] = ACTIONS(4775), + [anon_sym_yield] = ACTIONS(4775), + [anon_sym_when] = ACTIONS(4775), + [anon_sym_from] = ACTIONS(4775), + [anon_sym_into] = ACTIONS(4775), + [anon_sym_join] = ACTIONS(4775), + [anon_sym_on] = ACTIONS(4775), + [anon_sym_equals] = ACTIONS(4775), + [anon_sym_let] = ACTIONS(4775), + [anon_sym_orderby] = ACTIONS(4775), + [anon_sym_ascending] = ACTIONS(4775), + [anon_sym_descending] = ACTIONS(4775), + [anon_sym_group] = ACTIONS(4775), + [anon_sym_by] = ACTIONS(4775), + [anon_sym_select] = ACTIONS(4775), + [sym_grit_metavariable] = ACTIONS(4777), + [aux_sym_preproc_if_token1] = ACTIONS(4777), + [aux_sym_preproc_if_token3] = ACTIONS(4777), + [aux_sym_preproc_else_token1] = ACTIONS(4777), + [aux_sym_preproc_elif_token1] = ACTIONS(4777), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459551,10 +459393,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2717] = { - [sym__variable_designation] = STATE(4935), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2717), [sym_preproc_endregion] = STATE(2717), [sym_preproc_line] = STATE(2717), @@ -459564,68 +459402,70 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4250), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4252), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4779), + [anon_sym_extern] = ACTIONS(4779), + [anon_sym_alias] = ACTIONS(4779), + [anon_sym_global] = ACTIONS(4779), + [anon_sym_using] = ACTIONS(4779), + [anon_sym_unsafe] = ACTIONS(4779), + [anon_sym_static] = ACTIONS(4779), + [anon_sym_LBRACK] = ACTIONS(4781), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_event] = ACTIONS(4779), + [anon_sym_namespace] = ACTIONS(4779), + [anon_sym_class] = ACTIONS(4779), + [anon_sym_ref] = ACTIONS(4779), + [anon_sym_struct] = ACTIONS(4779), + [anon_sym_enum] = ACTIONS(4779), + [anon_sym_RBRACE] = ACTIONS(4781), + [anon_sym_interface] = ACTIONS(4779), + [anon_sym_delegate] = ACTIONS(4779), + [anon_sym_record] = ACTIONS(4779), + [anon_sym_public] = ACTIONS(4779), + [anon_sym_private] = ACTIONS(4779), + [anon_sym_readonly] = ACTIONS(4779), + [anon_sym_abstract] = ACTIONS(4779), + [anon_sym_async] = ACTIONS(4779), + [anon_sym_const] = ACTIONS(4779), + [anon_sym_file] = ACTIONS(4779), + [anon_sym_fixed] = ACTIONS(4779), + [anon_sym_internal] = ACTIONS(4779), + [anon_sym_new] = ACTIONS(4779), + [anon_sym_override] = ACTIONS(4779), + [anon_sym_partial] = ACTIONS(4779), + [anon_sym_protected] = ACTIONS(4779), + [anon_sym_required] = ACTIONS(4779), + [anon_sym_sealed] = ACTIONS(4779), + [anon_sym_virtual] = ACTIONS(4779), + [anon_sym_volatile] = ACTIONS(4779), + [anon_sym_where] = ACTIONS(4779), + [anon_sym_notnull] = ACTIONS(4779), + [anon_sym_unmanaged] = ACTIONS(4779), + [anon_sym_implicit] = ACTIONS(4779), + [anon_sym_explicit] = ACTIONS(4779), + [anon_sym_TILDE] = ACTIONS(4781), + [anon_sym_scoped] = ACTIONS(4779), + [anon_sym_var] = ACTIONS(4779), + [sym_predefined_type] = ACTIONS(4779), + [anon_sym_yield] = ACTIONS(4779), + [anon_sym_when] = ACTIONS(4779), + [anon_sym_from] = ACTIONS(4779), + [anon_sym_into] = ACTIONS(4779), + [anon_sym_join] = ACTIONS(4779), + [anon_sym_on] = ACTIONS(4779), + [anon_sym_equals] = ACTIONS(4779), + [anon_sym_let] = ACTIONS(4779), + [anon_sym_orderby] = ACTIONS(4779), + [anon_sym_ascending] = ACTIONS(4779), + [anon_sym_descending] = ACTIONS(4779), + [anon_sym_group] = ACTIONS(4779), + [anon_sym_by] = ACTIONS(4779), + [anon_sym_select] = ACTIONS(4779), + [sym_grit_metavariable] = ACTIONS(4781), + [aux_sym_preproc_if_token1] = ACTIONS(4781), + [aux_sym_preproc_if_token3] = ACTIONS(4781), + [aux_sym_preproc_else_token1] = ACTIONS(4781), + [aux_sym_preproc_elif_token1] = ACTIONS(4781), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459638,27 +459478,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2718] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2718), [sym_preproc_endregion] = STATE(2718), [sym_preproc_line] = STATE(2718), @@ -459668,51 +459487,70 @@ 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_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_where] = ACTIONS(4774), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_from] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_join] = ACTIONS(4774), - [anon_sym_let] = ACTIONS(4774), - [anon_sym_orderby] = ACTIONS(4774), - [anon_sym_ascending] = ACTIONS(4774), - [anon_sym_descending] = ACTIONS(4774), - [anon_sym_group] = ACTIONS(4774), - [anon_sym_select] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4776), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4774), - [sym_grit_metavariable] = ACTIONS(4774), + [sym__identifier_token] = ACTIONS(4783), + [anon_sym_extern] = ACTIONS(4783), + [anon_sym_alias] = ACTIONS(4783), + [anon_sym_global] = ACTIONS(4783), + [anon_sym_using] = ACTIONS(4783), + [anon_sym_unsafe] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_LBRACK] = ACTIONS(4785), + [anon_sym_LPAREN] = ACTIONS(4785), + [anon_sym_event] = ACTIONS(4783), + [anon_sym_namespace] = ACTIONS(4783), + [anon_sym_class] = ACTIONS(4783), + [anon_sym_ref] = ACTIONS(4783), + [anon_sym_struct] = ACTIONS(4783), + [anon_sym_enum] = ACTIONS(4783), + [anon_sym_RBRACE] = ACTIONS(4785), + [anon_sym_interface] = ACTIONS(4783), + [anon_sym_delegate] = ACTIONS(4783), + [anon_sym_record] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_readonly] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_async] = ACTIONS(4783), + [anon_sym_const] = ACTIONS(4783), + [anon_sym_file] = ACTIONS(4783), + [anon_sym_fixed] = ACTIONS(4783), + [anon_sym_internal] = ACTIONS(4783), + [anon_sym_new] = ACTIONS(4783), + [anon_sym_override] = ACTIONS(4783), + [anon_sym_partial] = ACTIONS(4783), + [anon_sym_protected] = ACTIONS(4783), + [anon_sym_required] = ACTIONS(4783), + [anon_sym_sealed] = ACTIONS(4783), + [anon_sym_virtual] = ACTIONS(4783), + [anon_sym_volatile] = ACTIONS(4783), + [anon_sym_where] = ACTIONS(4783), + [anon_sym_notnull] = ACTIONS(4783), + [anon_sym_unmanaged] = ACTIONS(4783), + [anon_sym_implicit] = ACTIONS(4783), + [anon_sym_explicit] = ACTIONS(4783), + [anon_sym_TILDE] = ACTIONS(4785), + [anon_sym_scoped] = ACTIONS(4783), + [anon_sym_var] = ACTIONS(4783), + [sym_predefined_type] = ACTIONS(4783), + [anon_sym_yield] = ACTIONS(4783), + [anon_sym_when] = ACTIONS(4783), + [anon_sym_from] = ACTIONS(4783), + [anon_sym_into] = ACTIONS(4783), + [anon_sym_join] = ACTIONS(4783), + [anon_sym_on] = ACTIONS(4783), + [anon_sym_equals] = ACTIONS(4783), + [anon_sym_let] = ACTIONS(4783), + [anon_sym_orderby] = ACTIONS(4783), + [anon_sym_ascending] = ACTIONS(4783), + [anon_sym_descending] = ACTIONS(4783), + [anon_sym_group] = ACTIONS(4783), + [anon_sym_by] = ACTIONS(4783), + [anon_sym_select] = ACTIONS(4783), + [sym_grit_metavariable] = ACTIONS(4785), + [aux_sym_preproc_if_token1] = ACTIONS(4785), + [aux_sym_preproc_if_token3] = ACTIONS(4785), + [aux_sym_preproc_else_token1] = ACTIONS(4785), + [aux_sym_preproc_elif_token1] = ACTIONS(4785), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459725,10 +459563,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2719] = { - [sym__variable_designation] = STATE(4886), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2719), [sym_preproc_endregion] = STATE(2719), [sym_preproc_line] = STATE(2719), @@ -459738,68 +459572,70 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4250), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4252), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4252), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4787), + [anon_sym_extern] = ACTIONS(4787), + [anon_sym_alias] = ACTIONS(4787), + [anon_sym_global] = ACTIONS(4787), + [anon_sym_using] = ACTIONS(4787), + [anon_sym_unsafe] = ACTIONS(4787), + [anon_sym_static] = ACTIONS(4787), + [anon_sym_LBRACK] = ACTIONS(4789), + [anon_sym_LPAREN] = ACTIONS(4789), + [anon_sym_event] = ACTIONS(4787), + [anon_sym_namespace] = ACTIONS(4787), + [anon_sym_class] = ACTIONS(4787), + [anon_sym_ref] = ACTIONS(4787), + [anon_sym_struct] = ACTIONS(4787), + [anon_sym_enum] = ACTIONS(4787), + [anon_sym_RBRACE] = ACTIONS(4789), + [anon_sym_interface] = ACTIONS(4787), + [anon_sym_delegate] = ACTIONS(4787), + [anon_sym_record] = ACTIONS(4787), + [anon_sym_public] = ACTIONS(4787), + [anon_sym_private] = ACTIONS(4787), + [anon_sym_readonly] = ACTIONS(4787), + [anon_sym_abstract] = ACTIONS(4787), + [anon_sym_async] = ACTIONS(4787), + [anon_sym_const] = ACTIONS(4787), + [anon_sym_file] = ACTIONS(4787), + [anon_sym_fixed] = ACTIONS(4787), + [anon_sym_internal] = ACTIONS(4787), + [anon_sym_new] = ACTIONS(4787), + [anon_sym_override] = ACTIONS(4787), + [anon_sym_partial] = ACTIONS(4787), + [anon_sym_protected] = ACTIONS(4787), + [anon_sym_required] = ACTIONS(4787), + [anon_sym_sealed] = ACTIONS(4787), + [anon_sym_virtual] = ACTIONS(4787), + [anon_sym_volatile] = ACTIONS(4787), + [anon_sym_where] = ACTIONS(4787), + [anon_sym_notnull] = ACTIONS(4787), + [anon_sym_unmanaged] = ACTIONS(4787), + [anon_sym_implicit] = ACTIONS(4787), + [anon_sym_explicit] = ACTIONS(4787), + [anon_sym_TILDE] = ACTIONS(4789), + [anon_sym_scoped] = ACTIONS(4787), + [anon_sym_var] = ACTIONS(4787), + [sym_predefined_type] = ACTIONS(4787), + [anon_sym_yield] = ACTIONS(4787), + [anon_sym_when] = ACTIONS(4787), + [anon_sym_from] = ACTIONS(4787), + [anon_sym_into] = ACTIONS(4787), + [anon_sym_join] = ACTIONS(4787), + [anon_sym_on] = ACTIONS(4787), + [anon_sym_equals] = ACTIONS(4787), + [anon_sym_let] = ACTIONS(4787), + [anon_sym_orderby] = ACTIONS(4787), + [anon_sym_ascending] = ACTIONS(4787), + [anon_sym_descending] = ACTIONS(4787), + [anon_sym_group] = ACTIONS(4787), + [anon_sym_by] = ACTIONS(4787), + [anon_sym_select] = ACTIONS(4787), + [sym_grit_metavariable] = ACTIONS(4789), + [aux_sym_preproc_if_token1] = ACTIONS(4789), + [aux_sym_preproc_if_token3] = ACTIONS(4789), + [aux_sym_preproc_else_token1] = ACTIONS(4789), + [aux_sym_preproc_elif_token1] = ACTIONS(4789), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459821,72 +459657,70 @@ 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(3394), - [anon_sym_extern] = ACTIONS(3394), - [anon_sym_alias] = ACTIONS(3394), - [anon_sym_global] = ACTIONS(3394), - [anon_sym_using] = ACTIONS(3394), - [anon_sym_unsafe] = ACTIONS(3394), - [anon_sym_static] = ACTIONS(3394), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_LPAREN] = ACTIONS(3396), - [anon_sym_event] = ACTIONS(3394), - [anon_sym_namespace] = ACTIONS(3394), - [anon_sym_class] = ACTIONS(3394), - [anon_sym_ref] = ACTIONS(3394), - [anon_sym_struct] = ACTIONS(3394), - [anon_sym_enum] = ACTIONS(3394), - [anon_sym_RBRACE] = ACTIONS(3396), - [anon_sym_interface] = ACTIONS(3394), - [anon_sym_delegate] = ACTIONS(3394), - [anon_sym_record] = ACTIONS(3394), - [anon_sym_public] = ACTIONS(3394), - [anon_sym_private] = ACTIONS(3394), - [anon_sym_readonly] = ACTIONS(3394), - [anon_sym_abstract] = ACTIONS(3394), - [anon_sym_async] = ACTIONS(3394), - [anon_sym_const] = ACTIONS(3394), - [anon_sym_file] = ACTIONS(3394), - [anon_sym_fixed] = ACTIONS(3394), - [anon_sym_internal] = ACTIONS(3394), - [anon_sym_new] = ACTIONS(3394), - [anon_sym_override] = ACTIONS(3394), - [anon_sym_partial] = ACTIONS(3394), - [anon_sym_protected] = ACTIONS(3394), - [anon_sym_required] = ACTIONS(3394), - [anon_sym_sealed] = ACTIONS(3394), - [anon_sym_virtual] = ACTIONS(3394), - [anon_sym_volatile] = ACTIONS(3394), - [anon_sym_where] = ACTIONS(3394), - [anon_sym_notnull] = ACTIONS(3394), - [anon_sym_unmanaged] = ACTIONS(3394), - [anon_sym_TILDE] = ACTIONS(3396), - [anon_sym_implicit] = ACTIONS(3394), - [anon_sym_explicit] = ACTIONS(3394), - [anon_sym_scoped] = ACTIONS(3394), - [anon_sym_var] = ACTIONS(3394), - [sym_predefined_type] = ACTIONS(3394), - [anon_sym_while] = ACTIONS(3394), - [anon_sym_yield] = ACTIONS(3394), - [anon_sym_when] = ACTIONS(3394), - [anon_sym_else] = ACTIONS(3394), - [anon_sym_from] = ACTIONS(3394), - [anon_sym_into] = ACTIONS(3394), - [anon_sym_join] = ACTIONS(3394), - [anon_sym_on] = ACTIONS(3394), - [anon_sym_equals] = ACTIONS(3394), - [anon_sym_let] = ACTIONS(3394), - [anon_sym_orderby] = ACTIONS(3394), - [anon_sym_ascending] = ACTIONS(3394), - [anon_sym_descending] = ACTIONS(3394), - [anon_sym_group] = ACTIONS(3394), - [anon_sym_by] = ACTIONS(3394), - [anon_sym_select] = ACTIONS(3394), - [sym_grit_metavariable] = ACTIONS(3396), - [aux_sym_preproc_if_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token3] = ACTIONS(3396), - [aux_sym_preproc_else_token1] = ACTIONS(3396), - [aux_sym_preproc_elif_token1] = ACTIONS(3396), + [sym__identifier_token] = ACTIONS(4791), + [anon_sym_extern] = ACTIONS(4791), + [anon_sym_alias] = ACTIONS(4791), + [anon_sym_global] = ACTIONS(4791), + [anon_sym_using] = ACTIONS(4791), + [anon_sym_unsafe] = ACTIONS(4791), + [anon_sym_static] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4793), + [anon_sym_LPAREN] = ACTIONS(4793), + [anon_sym_event] = ACTIONS(4791), + [anon_sym_namespace] = ACTIONS(4791), + [anon_sym_class] = ACTIONS(4791), + [anon_sym_ref] = ACTIONS(4791), + [anon_sym_struct] = ACTIONS(4791), + [anon_sym_enum] = ACTIONS(4791), + [anon_sym_RBRACE] = ACTIONS(4793), + [anon_sym_interface] = ACTIONS(4791), + [anon_sym_delegate] = ACTIONS(4791), + [anon_sym_record] = ACTIONS(4791), + [anon_sym_public] = ACTIONS(4791), + [anon_sym_private] = ACTIONS(4791), + [anon_sym_readonly] = ACTIONS(4791), + [anon_sym_abstract] = ACTIONS(4791), + [anon_sym_async] = ACTIONS(4791), + [anon_sym_const] = ACTIONS(4791), + [anon_sym_file] = ACTIONS(4791), + [anon_sym_fixed] = ACTIONS(4791), + [anon_sym_internal] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_override] = ACTIONS(4791), + [anon_sym_partial] = ACTIONS(4791), + [anon_sym_protected] = ACTIONS(4791), + [anon_sym_required] = ACTIONS(4791), + [anon_sym_sealed] = ACTIONS(4791), + [anon_sym_virtual] = ACTIONS(4791), + [anon_sym_volatile] = ACTIONS(4791), + [anon_sym_where] = ACTIONS(4791), + [anon_sym_notnull] = ACTIONS(4791), + [anon_sym_unmanaged] = ACTIONS(4791), + [anon_sym_implicit] = ACTIONS(4791), + [anon_sym_explicit] = ACTIONS(4791), + [anon_sym_TILDE] = ACTIONS(4793), + [anon_sym_scoped] = ACTIONS(4791), + [anon_sym_var] = ACTIONS(4791), + [sym_predefined_type] = ACTIONS(4791), + [anon_sym_yield] = ACTIONS(4791), + [anon_sym_when] = ACTIONS(4791), + [anon_sym_from] = ACTIONS(4791), + [anon_sym_into] = ACTIONS(4791), + [anon_sym_join] = ACTIONS(4791), + [anon_sym_on] = ACTIONS(4791), + [anon_sym_equals] = ACTIONS(4791), + [anon_sym_let] = ACTIONS(4791), + [anon_sym_orderby] = ACTIONS(4791), + [anon_sym_ascending] = ACTIONS(4791), + [anon_sym_descending] = ACTIONS(4791), + [anon_sym_group] = ACTIONS(4791), + [anon_sym_by] = ACTIONS(4791), + [anon_sym_select] = ACTIONS(4791), + [sym_grit_metavariable] = ACTIONS(4793), + [aux_sym_preproc_if_token1] = ACTIONS(4793), + [aux_sym_preproc_if_token3] = ACTIONS(4793), + [aux_sym_preproc_else_token1] = ACTIONS(4793), + [aux_sym_preproc_elif_token1] = ACTIONS(4793), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459908,72 +459742,70 @@ 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(3544), - [anon_sym_extern] = ACTIONS(3544), - [anon_sym_alias] = ACTIONS(3544), - [anon_sym_global] = ACTIONS(3544), - [anon_sym_using] = ACTIONS(3544), - [anon_sym_unsafe] = ACTIONS(3544), - [anon_sym_static] = ACTIONS(3544), - [anon_sym_LBRACK] = ACTIONS(3546), - [anon_sym_LPAREN] = ACTIONS(3546), - [anon_sym_event] = ACTIONS(3544), - [anon_sym_namespace] = ACTIONS(3544), - [anon_sym_class] = ACTIONS(3544), - [anon_sym_ref] = ACTIONS(3544), - [anon_sym_struct] = ACTIONS(3544), - [anon_sym_enum] = ACTIONS(3544), - [anon_sym_RBRACE] = ACTIONS(3546), - [anon_sym_interface] = ACTIONS(3544), - [anon_sym_delegate] = ACTIONS(3544), - [anon_sym_record] = ACTIONS(3544), - [anon_sym_public] = ACTIONS(3544), - [anon_sym_private] = ACTIONS(3544), - [anon_sym_readonly] = ACTIONS(3544), - [anon_sym_abstract] = ACTIONS(3544), - [anon_sym_async] = ACTIONS(3544), - [anon_sym_const] = ACTIONS(3544), - [anon_sym_file] = ACTIONS(3544), - [anon_sym_fixed] = ACTIONS(3544), - [anon_sym_internal] = ACTIONS(3544), - [anon_sym_new] = ACTIONS(3544), - [anon_sym_override] = ACTIONS(3544), - [anon_sym_partial] = ACTIONS(3544), - [anon_sym_protected] = ACTIONS(3544), - [anon_sym_required] = ACTIONS(3544), - [anon_sym_sealed] = ACTIONS(3544), - [anon_sym_virtual] = ACTIONS(3544), - [anon_sym_volatile] = ACTIONS(3544), - [anon_sym_where] = ACTIONS(3544), - [anon_sym_notnull] = ACTIONS(3544), - [anon_sym_unmanaged] = ACTIONS(3544), - [anon_sym_TILDE] = ACTIONS(3546), - [anon_sym_implicit] = ACTIONS(3544), - [anon_sym_explicit] = ACTIONS(3544), - [anon_sym_scoped] = ACTIONS(3544), - [anon_sym_var] = ACTIONS(3544), - [sym_predefined_type] = ACTIONS(3544), - [anon_sym_while] = ACTIONS(3544), - [anon_sym_yield] = ACTIONS(3544), - [anon_sym_when] = ACTIONS(3544), - [anon_sym_else] = ACTIONS(3544), - [anon_sym_from] = ACTIONS(3544), - [anon_sym_into] = ACTIONS(3544), - [anon_sym_join] = ACTIONS(3544), - [anon_sym_on] = ACTIONS(3544), - [anon_sym_equals] = ACTIONS(3544), - [anon_sym_let] = ACTIONS(3544), - [anon_sym_orderby] = ACTIONS(3544), - [anon_sym_ascending] = ACTIONS(3544), - [anon_sym_descending] = ACTIONS(3544), - [anon_sym_group] = ACTIONS(3544), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_select] = ACTIONS(3544), - [sym_grit_metavariable] = ACTIONS(3546), - [aux_sym_preproc_if_token1] = ACTIONS(3546), - [aux_sym_preproc_if_token3] = ACTIONS(3546), - [aux_sym_preproc_else_token1] = ACTIONS(3546), - [aux_sym_preproc_elif_token1] = ACTIONS(3546), + [sym__identifier_token] = ACTIONS(4795), + [anon_sym_extern] = ACTIONS(4795), + [anon_sym_alias] = ACTIONS(4795), + [anon_sym_global] = ACTIONS(4795), + [anon_sym_using] = ACTIONS(4795), + [anon_sym_unsafe] = ACTIONS(4795), + [anon_sym_static] = ACTIONS(4795), + [anon_sym_LBRACK] = ACTIONS(4797), + [anon_sym_LPAREN] = ACTIONS(4797), + [anon_sym_event] = ACTIONS(4795), + [anon_sym_namespace] = ACTIONS(4795), + [anon_sym_class] = ACTIONS(4795), + [anon_sym_ref] = ACTIONS(4795), + [anon_sym_struct] = ACTIONS(4795), + [anon_sym_enum] = ACTIONS(4795), + [anon_sym_RBRACE] = ACTIONS(4797), + [anon_sym_interface] = ACTIONS(4795), + [anon_sym_delegate] = ACTIONS(4795), + [anon_sym_record] = ACTIONS(4795), + [anon_sym_public] = ACTIONS(4795), + [anon_sym_private] = ACTIONS(4795), + [anon_sym_readonly] = ACTIONS(4795), + [anon_sym_abstract] = ACTIONS(4795), + [anon_sym_async] = ACTIONS(4795), + [anon_sym_const] = ACTIONS(4795), + [anon_sym_file] = ACTIONS(4795), + [anon_sym_fixed] = ACTIONS(4795), + [anon_sym_internal] = ACTIONS(4795), + [anon_sym_new] = ACTIONS(4795), + [anon_sym_override] = ACTIONS(4795), + [anon_sym_partial] = ACTIONS(4795), + [anon_sym_protected] = ACTIONS(4795), + [anon_sym_required] = ACTIONS(4795), + [anon_sym_sealed] = ACTIONS(4795), + [anon_sym_virtual] = ACTIONS(4795), + [anon_sym_volatile] = ACTIONS(4795), + [anon_sym_where] = ACTIONS(4795), + [anon_sym_notnull] = ACTIONS(4795), + [anon_sym_unmanaged] = ACTIONS(4795), + [anon_sym_implicit] = ACTIONS(4795), + [anon_sym_explicit] = ACTIONS(4795), + [anon_sym_TILDE] = ACTIONS(4797), + [anon_sym_scoped] = ACTIONS(4795), + [anon_sym_var] = ACTIONS(4795), + [sym_predefined_type] = ACTIONS(4795), + [anon_sym_yield] = ACTIONS(4795), + [anon_sym_when] = ACTIONS(4795), + [anon_sym_from] = ACTIONS(4795), + [anon_sym_into] = ACTIONS(4795), + [anon_sym_join] = ACTIONS(4795), + [anon_sym_on] = ACTIONS(4795), + [anon_sym_equals] = ACTIONS(4795), + [anon_sym_let] = ACTIONS(4795), + [anon_sym_orderby] = ACTIONS(4795), + [anon_sym_ascending] = ACTIONS(4795), + [anon_sym_descending] = ACTIONS(4795), + [anon_sym_group] = ACTIONS(4795), + [anon_sym_by] = ACTIONS(4795), + [anon_sym_select] = ACTIONS(4795), + [sym_grit_metavariable] = ACTIONS(4797), + [aux_sym_preproc_if_token1] = ACTIONS(4797), + [aux_sym_preproc_if_token3] = ACTIONS(4797), + [aux_sym_preproc_else_token1] = ACTIONS(4797), + [aux_sym_preproc_elif_token1] = ACTIONS(4797), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459986,11 +459818,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2722] = { - [sym_property_pattern_clause] = STATE(2835), - [sym__variable_designation] = STATE(5501), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym_identifier] = STATE(5505), - [sym__reserved_identifier] = STATE(3398), [sym_preproc_region] = STATE(2722), [sym_preproc_endregion] = STATE(2722), [sym_preproc_line] = STATE(2722), @@ -460000,67 +459827,70 @@ 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(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4197), - [anon_sym_var] = ACTIONS(4197), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4197), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4244), - [anon_sym_into] = ACTIONS(4244), - [anon_sym_join] = ACTIONS(4244), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4244), - [anon_sym_orderby] = ACTIONS(4244), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(4799), + [anon_sym_extern] = ACTIONS(4799), + [anon_sym_alias] = ACTIONS(4799), + [anon_sym_global] = ACTIONS(4799), + [anon_sym_using] = ACTIONS(4799), + [anon_sym_unsafe] = ACTIONS(4799), + [anon_sym_static] = ACTIONS(4799), + [anon_sym_LBRACK] = ACTIONS(4801), + [anon_sym_LPAREN] = ACTIONS(4801), + [anon_sym_event] = ACTIONS(4799), + [anon_sym_namespace] = ACTIONS(4799), + [anon_sym_class] = ACTIONS(4799), + [anon_sym_ref] = ACTIONS(4799), + [anon_sym_struct] = ACTIONS(4799), + [anon_sym_enum] = ACTIONS(4799), + [anon_sym_RBRACE] = ACTIONS(4801), + [anon_sym_interface] = ACTIONS(4799), + [anon_sym_delegate] = ACTIONS(4799), + [anon_sym_record] = ACTIONS(4799), + [anon_sym_public] = ACTIONS(4799), + [anon_sym_private] = ACTIONS(4799), + [anon_sym_readonly] = ACTIONS(4799), + [anon_sym_abstract] = ACTIONS(4799), + [anon_sym_async] = ACTIONS(4799), + [anon_sym_const] = ACTIONS(4799), + [anon_sym_file] = ACTIONS(4799), + [anon_sym_fixed] = ACTIONS(4799), + [anon_sym_internal] = ACTIONS(4799), + [anon_sym_new] = ACTIONS(4799), + [anon_sym_override] = ACTIONS(4799), + [anon_sym_partial] = ACTIONS(4799), + [anon_sym_protected] = ACTIONS(4799), + [anon_sym_required] = ACTIONS(4799), + [anon_sym_sealed] = ACTIONS(4799), + [anon_sym_virtual] = ACTIONS(4799), + [anon_sym_volatile] = ACTIONS(4799), + [anon_sym_where] = ACTIONS(4799), + [anon_sym_notnull] = ACTIONS(4799), + [anon_sym_unmanaged] = ACTIONS(4799), + [anon_sym_implicit] = ACTIONS(4799), + [anon_sym_explicit] = ACTIONS(4799), + [anon_sym_TILDE] = ACTIONS(4801), + [anon_sym_scoped] = ACTIONS(4799), + [anon_sym_var] = ACTIONS(4799), + [sym_predefined_type] = ACTIONS(4799), + [anon_sym_yield] = ACTIONS(4799), + [anon_sym_when] = 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_ascending] = ACTIONS(4799), + [anon_sym_descending] = ACTIONS(4799), + [anon_sym_group] = ACTIONS(4799), + [anon_sym_by] = ACTIONS(4799), + [anon_sym_select] = ACTIONS(4799), + [sym_grit_metavariable] = ACTIONS(4801), + [aux_sym_preproc_if_token1] = ACTIONS(4801), + [aux_sym_preproc_if_token3] = ACTIONS(4801), + [aux_sym_preproc_else_token1] = ACTIONS(4801), + [aux_sym_preproc_elif_token1] = ACTIONS(4801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460073,10 +459903,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2723] = { - [sym__variable_designation] = STATE(4857), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2723), [sym_preproc_endregion] = STATE(2723), [sym_preproc_line] = STATE(2723), @@ -460086,68 +459912,70 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COLON] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4242), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4244), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4244), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3608), + [anon_sym_alias] = ACTIONS(3608), + [anon_sym_global] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3608), + [anon_sym_unsafe] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_event] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_ref] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), + [anon_sym_RBRACE] = ACTIONS(3610), + [anon_sym_interface] = ACTIONS(3608), + [anon_sym_delegate] = ACTIONS(3608), + [anon_sym_record] = ACTIONS(3608), + [anon_sym_public] = ACTIONS(3608), + [anon_sym_private] = ACTIONS(3608), + [anon_sym_readonly] = ACTIONS(3608), + [anon_sym_abstract] = ACTIONS(3608), + [anon_sym_async] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_file] = ACTIONS(3608), + [anon_sym_fixed] = ACTIONS(3608), + [anon_sym_internal] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_override] = ACTIONS(3608), + [anon_sym_partial] = ACTIONS(3608), + [anon_sym_protected] = ACTIONS(3608), + [anon_sym_required] = ACTIONS(3608), + [anon_sym_sealed] = ACTIONS(3608), + [anon_sym_virtual] = ACTIONS(3608), + [anon_sym_volatile] = ACTIONS(3608), + [anon_sym_where] = ACTIONS(3608), + [anon_sym_notnull] = ACTIONS(3608), + [anon_sym_unmanaged] = ACTIONS(3608), + [anon_sym_implicit] = ACTIONS(3608), + [anon_sym_explicit] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_scoped] = ACTIONS(3608), + [anon_sym_var] = ACTIONS(3608), + [sym_predefined_type] = ACTIONS(3608), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_when] = 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_ascending] = ACTIONS(3608), + [anon_sym_descending] = ACTIONS(3608), + [anon_sym_group] = ACTIONS(3608), + [anon_sym_by] = ACTIONS(3608), + [anon_sym_select] = ACTIONS(3608), + [sym_grit_metavariable] = ACTIONS(3610), + [aux_sym_preproc_if_token1] = ACTIONS(3610), + [aux_sym_preproc_if_token3] = ACTIONS(3610), + [aux_sym_preproc_else_token1] = ACTIONS(3610), + [aux_sym_preproc_elif_token1] = ACTIONS(3610), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460160,27 +459988,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2724] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1540), - [sym_op_lte] = STATE(1540), - [sym_op_eq] = STATE(1539), - [sym_op_neq] = STATE(1539), - [sym_op_gt] = STATE(1540), - [sym_op_gte] = STATE(1540), - [sym_op_and] = STATE(1538), - [sym_op_or] = STATE(1537), - [sym_op_bitwise_and] = STATE(1536), - [sym_op_bitwise_or] = STATE(1535), - [sym_op_bitwise_xor] = STATE(1534), - [sym_op_left_shift] = STATE(1532), - [sym_op_right_shift] = STATE(1532), - [sym_op_unsigned_right_shift] = STATE(1532), - [sym_op_plus] = STATE(1531), - [sym_op_minus] = STATE(1531), - [sym_op_multiply] = STATE(1529), - [sym_op_divide] = STATE(1529), - [sym_op_modulo] = STATE(1529), [sym_preproc_region] = STATE(2724), [sym_preproc_endregion] = STATE(2724), [sym_preproc_line] = STATE(2724), @@ -460190,51 +459997,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4803), + [anon_sym_extern] = ACTIONS(4803), + [anon_sym_alias] = ACTIONS(4803), + [anon_sym_global] = ACTIONS(4803), + [anon_sym_using] = ACTIONS(4803), + [anon_sym_unsafe] = ACTIONS(4803), + [anon_sym_static] = ACTIONS(4803), + [anon_sym_LBRACK] = ACTIONS(4805), + [anon_sym_LPAREN] = ACTIONS(4805), + [anon_sym_event] = ACTIONS(4803), + [anon_sym_namespace] = ACTIONS(4803), + [anon_sym_class] = ACTIONS(4803), + [anon_sym_ref] = ACTIONS(4803), + [anon_sym_struct] = ACTIONS(4803), + [anon_sym_enum] = ACTIONS(4803), + [anon_sym_RBRACE] = ACTIONS(4805), + [anon_sym_interface] = ACTIONS(4803), + [anon_sym_delegate] = ACTIONS(4803), + [anon_sym_record] = ACTIONS(4803), + [anon_sym_public] = ACTIONS(4803), + [anon_sym_private] = ACTIONS(4803), + [anon_sym_readonly] = ACTIONS(4803), + [anon_sym_abstract] = ACTIONS(4803), + [anon_sym_async] = ACTIONS(4803), + [anon_sym_const] = ACTIONS(4803), + [anon_sym_file] = ACTIONS(4803), + [anon_sym_fixed] = ACTIONS(4803), + [anon_sym_internal] = ACTIONS(4803), + [anon_sym_new] = ACTIONS(4803), + [anon_sym_override] = ACTIONS(4803), + [anon_sym_partial] = ACTIONS(4803), + [anon_sym_protected] = ACTIONS(4803), + [anon_sym_required] = ACTIONS(4803), + [anon_sym_sealed] = ACTIONS(4803), + [anon_sym_virtual] = ACTIONS(4803), + [anon_sym_volatile] = ACTIONS(4803), + [anon_sym_where] = ACTIONS(4803), + [anon_sym_notnull] = ACTIONS(4803), + [anon_sym_unmanaged] = ACTIONS(4803), + [anon_sym_implicit] = ACTIONS(4803), + [anon_sym_explicit] = ACTIONS(4803), + [anon_sym_TILDE] = ACTIONS(4805), + [anon_sym_scoped] = ACTIONS(4803), + [anon_sym_var] = ACTIONS(4803), + [sym_predefined_type] = ACTIONS(4803), + [anon_sym_yield] = ACTIONS(4803), + [anon_sym_when] = 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_ascending] = ACTIONS(4803), + [anon_sym_descending] = ACTIONS(4803), + [anon_sym_group] = ACTIONS(4803), + [anon_sym_by] = ACTIONS(4803), + [anon_sym_select] = ACTIONS(4803), + [sym_grit_metavariable] = ACTIONS(4805), + [aux_sym_preproc_if_token1] = ACTIONS(4805), + [aux_sym_preproc_if_token3] = ACTIONS(4805), + [aux_sym_preproc_else_token1] = ACTIONS(4805), + [aux_sym_preproc_elif_token1] = ACTIONS(4805), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460247,10 +460073,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2725] = { - [sym__variable_designation] = STATE(5009), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2725), [sym_preproc_endregion] = STATE(2725), [sym_preproc_line] = STATE(2725), @@ -460260,68 +460082,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2725), [sym_preproc_define] = STATE(2725), [sym_preproc_undef] = STATE(2725), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_COLON] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4302), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4304), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4807), + [anon_sym_extern] = ACTIONS(4807), + [anon_sym_alias] = ACTIONS(4807), + [anon_sym_global] = ACTIONS(4807), + [anon_sym_using] = ACTIONS(4807), + [anon_sym_unsafe] = ACTIONS(4807), + [anon_sym_static] = ACTIONS(4807), + [anon_sym_LBRACK] = ACTIONS(4809), + [anon_sym_LPAREN] = ACTIONS(4809), + [anon_sym_event] = ACTIONS(4807), + [anon_sym_namespace] = ACTIONS(4807), + [anon_sym_class] = ACTIONS(4807), + [anon_sym_ref] = ACTIONS(4807), + [anon_sym_struct] = ACTIONS(4807), + [anon_sym_enum] = ACTIONS(4807), + [anon_sym_RBRACE] = ACTIONS(4809), + [anon_sym_interface] = ACTIONS(4807), + [anon_sym_delegate] = ACTIONS(4807), + [anon_sym_record] = ACTIONS(4807), + [anon_sym_public] = ACTIONS(4807), + [anon_sym_private] = ACTIONS(4807), + [anon_sym_readonly] = ACTIONS(4807), + [anon_sym_abstract] = ACTIONS(4807), + [anon_sym_async] = ACTIONS(4807), + [anon_sym_const] = ACTIONS(4807), + [anon_sym_file] = ACTIONS(4807), + [anon_sym_fixed] = ACTIONS(4807), + [anon_sym_internal] = ACTIONS(4807), + [anon_sym_new] = ACTIONS(4807), + [anon_sym_override] = ACTIONS(4807), + [anon_sym_partial] = ACTIONS(4807), + [anon_sym_protected] = ACTIONS(4807), + [anon_sym_required] = ACTIONS(4807), + [anon_sym_sealed] = ACTIONS(4807), + [anon_sym_virtual] = ACTIONS(4807), + [anon_sym_volatile] = ACTIONS(4807), + [anon_sym_where] = ACTIONS(4807), + [anon_sym_notnull] = ACTIONS(4807), + [anon_sym_unmanaged] = ACTIONS(4807), + [anon_sym_implicit] = ACTIONS(4807), + [anon_sym_explicit] = ACTIONS(4807), + [anon_sym_TILDE] = ACTIONS(4809), + [anon_sym_scoped] = ACTIONS(4807), + [anon_sym_var] = ACTIONS(4807), + [sym_predefined_type] = ACTIONS(4807), + [anon_sym_yield] = ACTIONS(4807), + [anon_sym_when] = ACTIONS(4807), + [anon_sym_from] = ACTIONS(4807), + [anon_sym_into] = ACTIONS(4807), + [anon_sym_join] = ACTIONS(4807), + [anon_sym_on] = ACTIONS(4807), + [anon_sym_equals] = ACTIONS(4807), + [anon_sym_let] = ACTIONS(4807), + [anon_sym_orderby] = ACTIONS(4807), + [anon_sym_ascending] = ACTIONS(4807), + [anon_sym_descending] = ACTIONS(4807), + [anon_sym_group] = ACTIONS(4807), + [anon_sym_by] = ACTIONS(4807), + [anon_sym_select] = ACTIONS(4807), + [sym_grit_metavariable] = ACTIONS(4809), + [aux_sym_preproc_if_token1] = ACTIONS(4809), + [aux_sym_preproc_if_token3] = ACTIONS(4809), + [aux_sym_preproc_else_token1] = ACTIONS(4809), + [aux_sym_preproc_elif_token1] = ACTIONS(4809), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460334,10 +460158,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2726] = { - [sym__variable_designation] = STATE(5041), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2726), [sym_preproc_endregion] = STATE(2726), [sym_preproc_line] = STATE(2726), @@ -460347,68 +460167,70 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_COLON] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4306), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4308), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4811), + [anon_sym_extern] = ACTIONS(4811), + [anon_sym_alias] = ACTIONS(4811), + [anon_sym_global] = ACTIONS(4811), + [anon_sym_using] = ACTIONS(4811), + [anon_sym_unsafe] = ACTIONS(4811), + [anon_sym_static] = ACTIONS(4811), + [anon_sym_LBRACK] = ACTIONS(4813), + [anon_sym_LPAREN] = ACTIONS(4813), + [anon_sym_event] = ACTIONS(4811), + [anon_sym_namespace] = ACTIONS(4811), + [anon_sym_class] = ACTIONS(4811), + [anon_sym_ref] = ACTIONS(4811), + [anon_sym_struct] = ACTIONS(4811), + [anon_sym_enum] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4813), + [anon_sym_interface] = ACTIONS(4811), + [anon_sym_delegate] = ACTIONS(4811), + [anon_sym_record] = ACTIONS(4811), + [anon_sym_public] = ACTIONS(4811), + [anon_sym_private] = ACTIONS(4811), + [anon_sym_readonly] = ACTIONS(4811), + [anon_sym_abstract] = ACTIONS(4811), + [anon_sym_async] = ACTIONS(4811), + [anon_sym_const] = ACTIONS(4811), + [anon_sym_file] = ACTIONS(4811), + [anon_sym_fixed] = ACTIONS(4811), + [anon_sym_internal] = ACTIONS(4811), + [anon_sym_new] = ACTIONS(4811), + [anon_sym_override] = ACTIONS(4811), + [anon_sym_partial] = ACTIONS(4811), + [anon_sym_protected] = ACTIONS(4811), + [anon_sym_required] = ACTIONS(4811), + [anon_sym_sealed] = ACTIONS(4811), + [anon_sym_virtual] = ACTIONS(4811), + [anon_sym_volatile] = ACTIONS(4811), + [anon_sym_where] = ACTIONS(4811), + [anon_sym_notnull] = ACTIONS(4811), + [anon_sym_unmanaged] = ACTIONS(4811), + [anon_sym_implicit] = ACTIONS(4811), + [anon_sym_explicit] = ACTIONS(4811), + [anon_sym_TILDE] = ACTIONS(4813), + [anon_sym_scoped] = ACTIONS(4811), + [anon_sym_var] = ACTIONS(4811), + [sym_predefined_type] = ACTIONS(4811), + [anon_sym_yield] = ACTIONS(4811), + [anon_sym_when] = ACTIONS(4811), + [anon_sym_from] = ACTIONS(4811), + [anon_sym_into] = ACTIONS(4811), + [anon_sym_join] = ACTIONS(4811), + [anon_sym_on] = ACTIONS(4811), + [anon_sym_equals] = ACTIONS(4811), + [anon_sym_let] = ACTIONS(4811), + [anon_sym_orderby] = ACTIONS(4811), + [anon_sym_ascending] = ACTIONS(4811), + [anon_sym_descending] = ACTIONS(4811), + [anon_sym_group] = ACTIONS(4811), + [anon_sym_by] = ACTIONS(4811), + [anon_sym_select] = ACTIONS(4811), + [sym_grit_metavariable] = ACTIONS(4813), + [aux_sym_preproc_if_token1] = ACTIONS(4813), + [aux_sym_preproc_if_token3] = ACTIONS(4813), + [aux_sym_preproc_else_token1] = ACTIONS(4813), + [aux_sym_preproc_elif_token1] = ACTIONS(4813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460421,6 +460243,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2727] = { + [sym__variable_designation] = STATE(5506), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym_identifier] = STATE(5489), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2727), [sym_preproc_endregion] = STATE(2727), [sym_preproc_line] = STATE(2727), @@ -460430,70 +460256,66 @@ 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(4454), - [anon_sym_alias] = ACTIONS(4454), - [anon_sym_global] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4456), - [anon_sym_COLON] = ACTIONS(4456), - [anon_sym_COMMA] = ACTIONS(4456), - [anon_sym_LPAREN] = ACTIONS(4456), - [anon_sym_LBRACE] = ACTIONS(4456), - [anon_sym_file] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4454), - [anon_sym_GT] = ACTIONS(4454), - [anon_sym_where] = ACTIONS(4454), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_notnull] = ACTIONS(4454), - [anon_sym_unmanaged] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4456), - [anon_sym_DASH_DASH] = ACTIONS(4456), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4456), - [anon_sym_SLASH] = ACTIONS(4454), - [anon_sym_PERCENT] = ACTIONS(4456), - [anon_sym_CARET] = ACTIONS(4456), - [anon_sym_PIPE] = ACTIONS(4454), - [anon_sym_AMP] = ACTIONS(4454), - [anon_sym_LT_LT] = ACTIONS(4456), - [anon_sym_GT_GT] = ACTIONS(4454), - [anon_sym_GT_GT_GT] = ACTIONS(4456), - [anon_sym_EQ_EQ] = ACTIONS(4456), - [anon_sym_BANG_EQ] = ACTIONS(4456), - [anon_sym_GT_EQ] = ACTIONS(4456), - [anon_sym_LT_EQ] = ACTIONS(4456), - [anon_sym_DOT] = ACTIONS(4454), - [anon_sym_scoped] = ACTIONS(4454), - [anon_sym_EQ_GT] = ACTIONS(4458), - [anon_sym_var] = ACTIONS(4454), - [anon_sym_yield] = ACTIONS(4454), - [anon_sym_switch] = ACTIONS(4454), - [anon_sym_when] = ACTIONS(4454), - [sym_discard] = ACTIONS(4454), - [anon_sym_DOT_DOT] = ACTIONS(4456), - [anon_sym_and] = ACTIONS(4454), - [anon_sym_or] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4456), - [anon_sym_PIPE_PIPE] = ACTIONS(4456), - [sym_op_coalescing] = ACTIONS(4456), - [anon_sym_from] = ACTIONS(4454), - [anon_sym_into] = ACTIONS(4454), - [anon_sym_join] = ACTIONS(4454), - [anon_sym_on] = ACTIONS(4454), - [anon_sym_equals] = ACTIONS(4454), - [anon_sym_let] = ACTIONS(4454), - [anon_sym_orderby] = ACTIONS(4454), - [anon_sym_ascending] = ACTIONS(4454), - [anon_sym_descending] = ACTIONS(4454), - [anon_sym_group] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(4454), - [anon_sym_select] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4454), - [anon_sym_DASH_GT] = ACTIONS(4456), - [anon_sym_with] = ACTIONS(4454), - [sym_grit_metavariable] = ACTIONS(4456), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4256), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4188), + [anon_sym_var] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4188), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4256), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4256), + [anon_sym_on] = ACTIONS(4188), + [anon_sym_equals] = ACTIONS(4188), + [anon_sym_let] = ACTIONS(4256), + [anon_sym_orderby] = ACTIONS(4256), + [anon_sym_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4256), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4256), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460504,30 +460326,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(4456), }, [2728] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2728), [sym_preproc_endregion] = STATE(2728), [sym_preproc_line] = STATE(2728), @@ -460537,50 +460337,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4815), + [anon_sym_extern] = ACTIONS(4815), + [anon_sym_alias] = ACTIONS(4815), + [anon_sym_global] = ACTIONS(4815), + [anon_sym_using] = ACTIONS(4815), + [anon_sym_unsafe] = ACTIONS(4815), + [anon_sym_static] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(4817), + [anon_sym_event] = ACTIONS(4815), + [anon_sym_namespace] = ACTIONS(4815), + [anon_sym_class] = ACTIONS(4815), + [anon_sym_ref] = ACTIONS(4815), + [anon_sym_struct] = ACTIONS(4815), + [anon_sym_enum] = ACTIONS(4815), + [anon_sym_RBRACE] = ACTIONS(4817), + [anon_sym_interface] = ACTIONS(4815), + [anon_sym_delegate] = ACTIONS(4815), + [anon_sym_record] = ACTIONS(4815), + [anon_sym_public] = ACTIONS(4815), + [anon_sym_private] = ACTIONS(4815), + [anon_sym_readonly] = ACTIONS(4815), + [anon_sym_abstract] = ACTIONS(4815), + [anon_sym_async] = ACTIONS(4815), + [anon_sym_const] = ACTIONS(4815), + [anon_sym_file] = ACTIONS(4815), + [anon_sym_fixed] = ACTIONS(4815), + [anon_sym_internal] = ACTIONS(4815), + [anon_sym_new] = ACTIONS(4815), + [anon_sym_override] = ACTIONS(4815), + [anon_sym_partial] = ACTIONS(4815), + [anon_sym_protected] = ACTIONS(4815), + [anon_sym_required] = ACTIONS(4815), + [anon_sym_sealed] = ACTIONS(4815), + [anon_sym_virtual] = ACTIONS(4815), + [anon_sym_volatile] = ACTIONS(4815), + [anon_sym_where] = ACTIONS(4815), + [anon_sym_notnull] = ACTIONS(4815), + [anon_sym_unmanaged] = ACTIONS(4815), + [anon_sym_implicit] = ACTIONS(4815), + [anon_sym_explicit] = ACTIONS(4815), + [anon_sym_TILDE] = ACTIONS(4817), + [anon_sym_scoped] = ACTIONS(4815), + [anon_sym_var] = ACTIONS(4815), + [sym_predefined_type] = ACTIONS(4815), + [anon_sym_yield] = ACTIONS(4815), + [anon_sym_when] = 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_ascending] = ACTIONS(4815), + [anon_sym_descending] = ACTIONS(4815), + [anon_sym_group] = ACTIONS(4815), + [anon_sym_by] = ACTIONS(4815), + [anon_sym_select] = ACTIONS(4815), + [sym_grit_metavariable] = ACTIONS(4817), + [aux_sym_preproc_if_token1] = ACTIONS(4817), + [aux_sym_preproc_if_token3] = ACTIONS(4817), + [aux_sym_preproc_else_token1] = ACTIONS(4817), + [aux_sym_preproc_elif_token1] = ACTIONS(4817), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460593,27 +460413,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2729] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2729), [sym_preproc_endregion] = STATE(2729), [sym_preproc_line] = STATE(2729), @@ -460623,50 +460422,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4819), + [anon_sym_extern] = ACTIONS(4819), + [anon_sym_alias] = ACTIONS(4819), + [anon_sym_global] = ACTIONS(4819), + [anon_sym_using] = ACTIONS(4819), + [anon_sym_unsafe] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(4821), + [anon_sym_LPAREN] = ACTIONS(4821), + [anon_sym_event] = ACTIONS(4819), + [anon_sym_namespace] = ACTIONS(4819), + [anon_sym_class] = ACTIONS(4819), + [anon_sym_ref] = ACTIONS(4819), + [anon_sym_struct] = ACTIONS(4819), + [anon_sym_enum] = ACTIONS(4819), + [anon_sym_RBRACE] = ACTIONS(4821), + [anon_sym_interface] = ACTIONS(4819), + [anon_sym_delegate] = ACTIONS(4819), + [anon_sym_record] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_readonly] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_async] = ACTIONS(4819), + [anon_sym_const] = ACTIONS(4819), + [anon_sym_file] = ACTIONS(4819), + [anon_sym_fixed] = ACTIONS(4819), + [anon_sym_internal] = ACTIONS(4819), + [anon_sym_new] = ACTIONS(4819), + [anon_sym_override] = ACTIONS(4819), + [anon_sym_partial] = ACTIONS(4819), + [anon_sym_protected] = ACTIONS(4819), + [anon_sym_required] = ACTIONS(4819), + [anon_sym_sealed] = ACTIONS(4819), + [anon_sym_virtual] = ACTIONS(4819), + [anon_sym_volatile] = ACTIONS(4819), + [anon_sym_where] = ACTIONS(4819), + [anon_sym_notnull] = ACTIONS(4819), + [anon_sym_unmanaged] = ACTIONS(4819), + [anon_sym_implicit] = ACTIONS(4819), + [anon_sym_explicit] = ACTIONS(4819), + [anon_sym_TILDE] = ACTIONS(4821), + [anon_sym_scoped] = ACTIONS(4819), + [anon_sym_var] = ACTIONS(4819), + [sym_predefined_type] = ACTIONS(4819), + [anon_sym_yield] = ACTIONS(4819), + [anon_sym_when] = 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_ascending] = ACTIONS(4819), + [anon_sym_descending] = ACTIONS(4819), + [anon_sym_group] = ACTIONS(4819), + [anon_sym_by] = ACTIONS(4819), + [anon_sym_select] = ACTIONS(4819), + [sym_grit_metavariable] = ACTIONS(4821), + [aux_sym_preproc_if_token1] = ACTIONS(4821), + [aux_sym_preproc_if_token3] = ACTIONS(4821), + [aux_sym_preproc_else_token1] = ACTIONS(4821), + [aux_sym_preproc_elif_token1] = ACTIONS(4821), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460679,27 +460498,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2730] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2730), [sym_preproc_endregion] = STATE(2730), [sym_preproc_line] = STATE(2730), @@ -460709,50 +460507,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4823), + [anon_sym_extern] = ACTIONS(4823), + [anon_sym_alias] = ACTIONS(4823), + [anon_sym_global] = ACTIONS(4823), + [anon_sym_using] = ACTIONS(4823), + [anon_sym_unsafe] = ACTIONS(4823), + [anon_sym_static] = ACTIONS(4823), [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LPAREN] = ACTIONS(4825), + [anon_sym_event] = ACTIONS(4823), + [anon_sym_namespace] = ACTIONS(4823), + [anon_sym_class] = ACTIONS(4823), + [anon_sym_ref] = ACTIONS(4823), + [anon_sym_struct] = ACTIONS(4823), + [anon_sym_enum] = ACTIONS(4823), + [anon_sym_RBRACE] = ACTIONS(4825), + [anon_sym_interface] = ACTIONS(4823), + [anon_sym_delegate] = ACTIONS(4823), + [anon_sym_record] = ACTIONS(4823), + [anon_sym_public] = ACTIONS(4823), + [anon_sym_private] = ACTIONS(4823), + [anon_sym_readonly] = ACTIONS(4823), + [anon_sym_abstract] = ACTIONS(4823), + [anon_sym_async] = ACTIONS(4823), + [anon_sym_const] = ACTIONS(4823), + [anon_sym_file] = ACTIONS(4823), + [anon_sym_fixed] = ACTIONS(4823), + [anon_sym_internal] = ACTIONS(4823), + [anon_sym_new] = ACTIONS(4823), + [anon_sym_override] = ACTIONS(4823), + [anon_sym_partial] = ACTIONS(4823), + [anon_sym_protected] = ACTIONS(4823), + [anon_sym_required] = ACTIONS(4823), + [anon_sym_sealed] = ACTIONS(4823), + [anon_sym_virtual] = ACTIONS(4823), + [anon_sym_volatile] = ACTIONS(4823), + [anon_sym_where] = ACTIONS(4823), + [anon_sym_notnull] = ACTIONS(4823), + [anon_sym_unmanaged] = ACTIONS(4823), + [anon_sym_implicit] = ACTIONS(4823), + [anon_sym_explicit] = ACTIONS(4823), + [anon_sym_TILDE] = ACTIONS(4825), + [anon_sym_scoped] = ACTIONS(4823), + [anon_sym_var] = ACTIONS(4823), + [sym_predefined_type] = ACTIONS(4823), + [anon_sym_yield] = ACTIONS(4823), + [anon_sym_when] = ACTIONS(4823), + [anon_sym_from] = ACTIONS(4823), + [anon_sym_into] = ACTIONS(4823), + [anon_sym_join] = ACTIONS(4823), + [anon_sym_on] = ACTIONS(4823), + [anon_sym_equals] = ACTIONS(4823), + [anon_sym_let] = ACTIONS(4823), + [anon_sym_orderby] = ACTIONS(4823), + [anon_sym_ascending] = ACTIONS(4823), + [anon_sym_descending] = ACTIONS(4823), + [anon_sym_group] = ACTIONS(4823), + [anon_sym_by] = ACTIONS(4823), + [anon_sym_select] = ACTIONS(4823), + [sym_grit_metavariable] = ACTIONS(4825), + [aux_sym_preproc_if_token1] = ACTIONS(4825), + [aux_sym_preproc_if_token3] = ACTIONS(4825), + [aux_sym_preproc_else_token1] = ACTIONS(4825), + [aux_sym_preproc_elif_token1] = ACTIONS(4825), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460765,6 +460583,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2731] = { + [sym__variable_designation] = STATE(5503), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym_identifier] = STATE(5489), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2731), [sym_preproc_endregion] = STATE(2731), [sym_preproc_line] = STATE(2731), @@ -460774,71 +460596,66 @@ 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(4843), - [anon_sym_extern] = ACTIONS(4843), - [anon_sym_alias] = ACTIONS(4843), - [anon_sym_global] = ACTIONS(4843), - [anon_sym_using] = ACTIONS(4843), - [anon_sym_unsafe] = ACTIONS(4843), - [anon_sym_EQ] = ACTIONS(4845), - [anon_sym_static] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4847), - [anon_sym_LPAREN] = ACTIONS(4847), - [anon_sym_event] = ACTIONS(4843), - [anon_sym_namespace] = ACTIONS(4843), - [anon_sym_class] = ACTIONS(4843), - [anon_sym_ref] = ACTIONS(4843), - [anon_sym_struct] = ACTIONS(4843), - [anon_sym_enum] = ACTIONS(4843), - [anon_sym_RBRACE] = ACTIONS(4847), - [anon_sym_interface] = ACTIONS(4843), - [anon_sym_delegate] = ACTIONS(4843), - [anon_sym_record] = ACTIONS(4843), - [anon_sym_public] = ACTIONS(4843), - [anon_sym_private] = ACTIONS(4843), - [anon_sym_readonly] = ACTIONS(4843), - [anon_sym_abstract] = ACTIONS(4843), - [anon_sym_async] = ACTIONS(4843), - [anon_sym_const] = ACTIONS(4843), - [anon_sym_file] = ACTIONS(4843), - [anon_sym_fixed] = ACTIONS(4843), - [anon_sym_internal] = ACTIONS(4843), - [anon_sym_new] = ACTIONS(4843), - [anon_sym_override] = ACTIONS(4843), - [anon_sym_partial] = ACTIONS(4843), - [anon_sym_protected] = ACTIONS(4843), - [anon_sym_required] = ACTIONS(4843), - [anon_sym_sealed] = ACTIONS(4843), - [anon_sym_virtual] = ACTIONS(4843), - [anon_sym_volatile] = ACTIONS(4843), - [anon_sym_where] = ACTIONS(4843), - [anon_sym_notnull] = ACTIONS(4843), - [anon_sym_unmanaged] = ACTIONS(4843), - [anon_sym_TILDE] = ACTIONS(4847), - [anon_sym_implicit] = ACTIONS(4843), - [anon_sym_explicit] = ACTIONS(4843), - [anon_sym_scoped] = ACTIONS(4843), - [anon_sym_var] = ACTIONS(4843), - [sym_predefined_type] = ACTIONS(4843), - [anon_sym_yield] = ACTIONS(4843), - [anon_sym_when] = 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_ascending] = ACTIONS(4843), - [anon_sym_descending] = ACTIONS(4843), - [anon_sym_group] = ACTIONS(4843), - [anon_sym_by] = ACTIONS(4843), - [anon_sym_select] = ACTIONS(4843), - [sym_grit_metavariable] = ACTIONS(4847), - [aux_sym_preproc_if_token1] = ACTIONS(4847), - [aux_sym_preproc_if_token3] = ACTIONS(4847), - [aux_sym_preproc_else_token1] = ACTIONS(4847), - [aux_sym_preproc_elif_token1] = ACTIONS(4847), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4308), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4188), + [anon_sym_var] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4188), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4308), + [anon_sym_into] = ACTIONS(4308), + [anon_sym_join] = ACTIONS(4308), + [anon_sym_on] = ACTIONS(4188), + [anon_sym_equals] = ACTIONS(4188), + [anon_sym_let] = ACTIONS(4308), + [anon_sym_orderby] = ACTIONS(4308), + [anon_sym_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4308), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4308), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460851,7 +460668,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2732] = { - [sym_type_argument_list] = STATE(2822), [sym_preproc_region] = STATE(2732), [sym_preproc_endregion] = STATE(2732), [sym_preproc_line] = STATE(2732), @@ -460861,69 +460677,70 @@ 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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(4822), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_from] = ACTIONS(3951), - [anon_sym_into] = ACTIONS(3951), - [anon_sym_join] = ACTIONS(3951), - [anon_sym_on] = ACTIONS(3951), - [anon_sym_equals] = ACTIONS(3951), - [anon_sym_let] = ACTIONS(3951), - [anon_sym_orderby] = ACTIONS(3951), - [anon_sym_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(4827), + [anon_sym_extern] = ACTIONS(4827), + [anon_sym_alias] = ACTIONS(4827), + [anon_sym_global] = ACTIONS(4827), + [anon_sym_using] = ACTIONS(4827), + [anon_sym_unsafe] = ACTIONS(4827), + [anon_sym_static] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4829), + [anon_sym_LPAREN] = ACTIONS(4829), + [anon_sym_event] = ACTIONS(4827), + [anon_sym_namespace] = ACTIONS(4827), + [anon_sym_class] = ACTIONS(4827), + [anon_sym_ref] = ACTIONS(4827), + [anon_sym_struct] = ACTIONS(4827), + [anon_sym_enum] = ACTIONS(4827), + [anon_sym_RBRACE] = ACTIONS(4829), + [anon_sym_interface] = ACTIONS(4827), + [anon_sym_delegate] = ACTIONS(4827), + [anon_sym_record] = ACTIONS(4827), + [anon_sym_public] = ACTIONS(4827), + [anon_sym_private] = ACTIONS(4827), + [anon_sym_readonly] = ACTIONS(4827), + [anon_sym_abstract] = ACTIONS(4827), + [anon_sym_async] = ACTIONS(4827), + [anon_sym_const] = ACTIONS(4827), + [anon_sym_file] = ACTIONS(4827), + [anon_sym_fixed] = ACTIONS(4827), + [anon_sym_internal] = ACTIONS(4827), + [anon_sym_new] = ACTIONS(4827), + [anon_sym_override] = ACTIONS(4827), + [anon_sym_partial] = ACTIONS(4827), + [anon_sym_protected] = ACTIONS(4827), + [anon_sym_required] = ACTIONS(4827), + [anon_sym_sealed] = ACTIONS(4827), + [anon_sym_virtual] = ACTIONS(4827), + [anon_sym_volatile] = ACTIONS(4827), + [anon_sym_where] = ACTIONS(4827), + [anon_sym_notnull] = ACTIONS(4827), + [anon_sym_unmanaged] = ACTIONS(4827), + [anon_sym_implicit] = ACTIONS(4827), + [anon_sym_explicit] = ACTIONS(4827), + [anon_sym_TILDE] = ACTIONS(4829), + [anon_sym_scoped] = ACTIONS(4827), + [anon_sym_var] = ACTIONS(4827), + [sym_predefined_type] = ACTIONS(4827), + [anon_sym_yield] = ACTIONS(4827), + [anon_sym_when] = 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_ascending] = ACTIONS(4827), + [anon_sym_descending] = ACTIONS(4827), + [anon_sym_group] = ACTIONS(4827), + [anon_sym_by] = ACTIONS(4827), + [anon_sym_select] = ACTIONS(4827), + [sym_grit_metavariable] = ACTIONS(4829), + [aux_sym_preproc_if_token1] = 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), @@ -460934,30 +460751,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(3953), }, [2733] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), + [sym__variable_designation] = STATE(5499), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym_identifier] = STATE(5489), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(2733), [sym_preproc_endregion] = STATE(2733), [sym_preproc_line] = STATE(2733), @@ -460967,50 +460766,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4304), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4188), + [anon_sym_var] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4188), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4304), + [anon_sym_into] = ACTIONS(4304), + [anon_sym_join] = ACTIONS(4304), + [anon_sym_on] = ACTIONS(4188), + [anon_sym_equals] = ACTIONS(4188), + [anon_sym_let] = ACTIONS(4304), + [anon_sym_orderby] = ACTIONS(4304), + [anon_sym_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4304), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4304), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461023,27 +460838,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2734] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2734), [sym_preproc_endregion] = STATE(2734), [sym_preproc_line] = STATE(2734), @@ -461053,83 +460847,82 @@ 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), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4359), + [anon_sym_alias] = ACTIONS(4359), + [anon_sym_global] = ACTIONS(4359), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_file] = ACTIONS(4359), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_QMARK] = ACTIONS(4359), + [anon_sym_notnull] = ACTIONS(4359), + [anon_sym_unmanaged] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4831), + [anon_sym_scoped] = ACTIONS(4359), + [anon_sym_var] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_yield] = ACTIONS(4359), + [anon_sym_switch] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [sym_discard] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_and] = ACTIONS(4359), + [anon_sym_or] = ACTIONS(4359), + [anon_sym_EQ_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4359), + [sym_op_bitwise_or] = ACTIONS(4359), + [anon_sym_CARET] = ACTIONS(4361), + [sym_op_left_shift] = ACTIONS(4361), + [sym_op_right_shift] = ACTIONS(4359), + [sym_op_unsigned_right_shift] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [sym_op_divide] = ACTIONS(4359), + [sym_op_modulo] = ACTIONS(4361), + [sym_op_coalescing] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_from] = ACTIONS(4359), + [anon_sym_into] = ACTIONS(4359), + [anon_sym_join] = ACTIONS(4359), + [anon_sym_on] = ACTIONS(4359), + [anon_sym_equals] = ACTIONS(4359), + [anon_sym_let] = ACTIONS(4359), + [anon_sym_orderby] = ACTIONS(4359), + [anon_sym_ascending] = ACTIONS(4359), + [anon_sym_descending] = ACTIONS(4359), + [anon_sym_group] = ACTIONS(4359), + [anon_sym_by] = ACTIONS(4359), + [anon_sym_select] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [anon_sym_with] = ACTIONS(4359), + [sym_grit_metavariable] = ACTIONS(4361), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4361), }, [2735] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2735), [sym_preproc_endregion] = STATE(2735), [sym_preproc_line] = STATE(2735), @@ -461139,83 +460932,82 @@ 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), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4359), + [anon_sym_alias] = ACTIONS(4359), + [anon_sym_global] = ACTIONS(4359), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_file] = ACTIONS(4359), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_QMARK] = ACTIONS(4359), + [anon_sym_notnull] = ACTIONS(4359), + [anon_sym_unmanaged] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_scoped] = ACTIONS(4359), + [anon_sym_var] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_yield] = ACTIONS(4359), + [anon_sym_switch] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [sym_discard] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_and] = ACTIONS(4359), + [anon_sym_or] = ACTIONS(4359), + [anon_sym_EQ_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4359), + [sym_op_bitwise_or] = ACTIONS(4359), + [anon_sym_CARET] = ACTIONS(4361), + [sym_op_left_shift] = ACTIONS(4361), + [sym_op_right_shift] = ACTIONS(4359), + [sym_op_unsigned_right_shift] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [sym_op_divide] = ACTIONS(4359), + [sym_op_modulo] = ACTIONS(4361), + [sym_op_coalescing] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_from] = ACTIONS(4359), + [anon_sym_into] = ACTIONS(4359), + [anon_sym_join] = ACTIONS(4359), + [anon_sym_on] = ACTIONS(4359), + [anon_sym_equals] = ACTIONS(4359), + [anon_sym_let] = ACTIONS(4359), + [anon_sym_orderby] = ACTIONS(4359), + [anon_sym_ascending] = ACTIONS(4359), + [anon_sym_descending] = ACTIONS(4359), + [anon_sym_group] = ACTIONS(4359), + [anon_sym_by] = ACTIONS(4359), + [anon_sym_select] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [anon_sym_with] = ACTIONS(4359), + [sym_grit_metavariable] = ACTIONS(4361), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4361), }, [2736] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2736), [sym_preproc_endregion] = STATE(2736), [sym_preproc_line] = STATE(2736), @@ -461225,50 +461017,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2736), [sym_preproc_define] = STATE(2736), [sym_preproc_undef] = STATE(2736), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4351), + [anon_sym_alias] = ACTIONS(4351), + [anon_sym_global] = ACTIONS(4351), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_COLON] = ACTIONS(4353), + [anon_sym_COMMA] = ACTIONS(4353), + [anon_sym_LPAREN] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4353), + [anon_sym_file] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4351), + [anon_sym_GT] = ACTIONS(4351), + [anon_sym_where] = ACTIONS(4351), + [anon_sym_QMARK] = ACTIONS(4351), + [anon_sym_notnull] = ACTIONS(4351), + [anon_sym_unmanaged] = ACTIONS(4351), + [anon_sym_DOT] = ACTIONS(4351), + [anon_sym_scoped] = ACTIONS(4351), + [anon_sym_var] = ACTIONS(4351), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_yield] = ACTIONS(4351), + [anon_sym_switch] = ACTIONS(4351), + [anon_sym_when] = ACTIONS(4351), + [sym_discard] = ACTIONS(4351), + [anon_sym_DOT_DOT] = ACTIONS(4353), + [anon_sym_LT_EQ] = ACTIONS(4353), + [anon_sym_GT_EQ] = ACTIONS(4353), + [anon_sym_and] = ACTIONS(4351), + [anon_sym_or] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4353), + [anon_sym_PIPE_PIPE] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4351), + [sym_op_bitwise_or] = ACTIONS(4351), + [anon_sym_CARET] = ACTIONS(4353), + [sym_op_left_shift] = ACTIONS(4353), + [sym_op_right_shift] = ACTIONS(4351), + [sym_op_unsigned_right_shift] = ACTIONS(4353), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_DASH] = ACTIONS(4351), + [sym_op_divide] = ACTIONS(4351), + [sym_op_modulo] = ACTIONS(4353), + [sym_op_coalescing] = ACTIONS(4353), + [anon_sym_BANG] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4353), + [anon_sym_DASH_DASH] = ACTIONS(4353), + [anon_sym_from] = ACTIONS(4351), + [anon_sym_into] = ACTIONS(4351), + [anon_sym_join] = ACTIONS(4351), + [anon_sym_on] = ACTIONS(4351), + [anon_sym_equals] = ACTIONS(4351), + [anon_sym_let] = ACTIONS(4351), + [anon_sym_orderby] = ACTIONS(4351), + [anon_sym_ascending] = ACTIONS(4351), + [anon_sym_descending] = ACTIONS(4351), + [anon_sym_group] = ACTIONS(4351), + [anon_sym_by] = ACTIONS(4351), + [anon_sym_select] = ACTIONS(4351), + [anon_sym_as] = ACTIONS(4351), + [anon_sym_is] = ACTIONS(4351), + [anon_sym_DASH_GT] = ACTIONS(4353), + [anon_sym_with] = ACTIONS(4351), + [sym_grit_metavariable] = ACTIONS(4353), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461279,6 +461090,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(4353), }, [2737] = { [sym_preproc_region] = STATE(2737), @@ -461290,71 +461102,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_EQ_GT] = ACTIONS(3189), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_PLUS_EQ] = ACTIONS(3189), - [anon_sym_DASH_EQ] = ACTIONS(3189), - [anon_sym_STAR_EQ] = ACTIONS(3189), - [anon_sym_SLASH_EQ] = ACTIONS(3189), - [anon_sym_PERCENT_EQ] = ACTIONS(3189), - [anon_sym_AMP_EQ] = ACTIONS(3189), - [anon_sym_CARET_EQ] = ACTIONS(3189), - [anon_sym_PIPE_EQ] = ACTIONS(3189), - [anon_sym_LT_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = ACTIONS(3187), - [anon_sym_on] = ACTIONS(3189), - [anon_sym_equals] = ACTIONS(3189), - [anon_sym_by] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3189), - [aux_sym_preproc_if_token3] = ACTIONS(3189), - [aux_sym_preproc_else_token1] = ACTIONS(3189), - [aux_sym_preproc_elif_token1] = ACTIONS(3189), + [sym__identifier_token] = ACTIONS(4833), + [anon_sym_extern] = ACTIONS(4833), + [anon_sym_alias] = ACTIONS(4833), + [anon_sym_global] = ACTIONS(4833), + [anon_sym_using] = ACTIONS(4833), + [anon_sym_unsafe] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(4835), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_event] = ACTIONS(4833), + [anon_sym_namespace] = ACTIONS(4833), + [anon_sym_class] = ACTIONS(4833), + [anon_sym_ref] = ACTIONS(4833), + [anon_sym_struct] = ACTIONS(4833), + [anon_sym_enum] = ACTIONS(4833), + [anon_sym_RBRACE] = ACTIONS(4835), + [anon_sym_interface] = ACTIONS(4833), + [anon_sym_delegate] = ACTIONS(4833), + [anon_sym_record] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_readonly] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_async] = ACTIONS(4833), + [anon_sym_const] = ACTIONS(4833), + [anon_sym_file] = ACTIONS(4833), + [anon_sym_fixed] = ACTIONS(4833), + [anon_sym_internal] = ACTIONS(4833), + [anon_sym_new] = ACTIONS(4833), + [anon_sym_override] = ACTIONS(4833), + [anon_sym_partial] = ACTIONS(4833), + [anon_sym_protected] = ACTIONS(4833), + [anon_sym_required] = ACTIONS(4833), + [anon_sym_sealed] = ACTIONS(4833), + [anon_sym_virtual] = ACTIONS(4833), + [anon_sym_volatile] = ACTIONS(4833), + [anon_sym_where] = ACTIONS(4833), + [anon_sym_notnull] = ACTIONS(4833), + [anon_sym_unmanaged] = ACTIONS(4833), + [anon_sym_implicit] = ACTIONS(4833), + [anon_sym_explicit] = ACTIONS(4833), + [anon_sym_TILDE] = ACTIONS(4835), + [anon_sym_scoped] = ACTIONS(4833), + [anon_sym_var] = ACTIONS(4833), + [sym_predefined_type] = ACTIONS(4833), + [anon_sym_yield] = ACTIONS(4833), + [anon_sym_when] = ACTIONS(4833), + [anon_sym_from] = ACTIONS(4833), + [anon_sym_into] = ACTIONS(4833), + [anon_sym_join] = ACTIONS(4833), + [anon_sym_on] = ACTIONS(4833), + [anon_sym_equals] = ACTIONS(4833), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_orderby] = ACTIONS(4833), + [anon_sym_ascending] = ACTIONS(4833), + [anon_sym_descending] = ACTIONS(4833), + [anon_sym_group] = ACTIONS(4833), + [anon_sym_by] = ACTIONS(4833), + [anon_sym_select] = ACTIONS(4833), + [sym_grit_metavariable] = ACTIONS(4835), + [aux_sym_preproc_if_token1] = ACTIONS(4835), + [aux_sym_preproc_if_token3] = ACTIONS(4835), + [aux_sym_preproc_else_token1] = ACTIONS(4835), + [aux_sym_preproc_elif_token1] = ACTIONS(4835), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461376,71 +461187,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2738), [sym_preproc_define] = STATE(2738), [sym_preproc_undef] = STATE(2738), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [sym__identifier_token] = ACTIONS(4335), + [anon_sym_alias] = ACTIONS(4335), + [anon_sym_global] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_file] = ACTIONS(4335), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_QMARK] = ACTIONS(4335), + [anon_sym_notnull] = ACTIONS(4335), + [anon_sym_unmanaged] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_scoped] = ACTIONS(4335), + [anon_sym_var] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_yield] = ACTIONS(4335), + [anon_sym_switch] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [sym_discard] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_and] = ACTIONS(4335), + [anon_sym_or] = ACTIONS(4335), + [anon_sym_EQ_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4335), + [sym_op_bitwise_or] = ACTIONS(4335), + [anon_sym_CARET] = ACTIONS(4337), + [sym_op_left_shift] = ACTIONS(4337), + [sym_op_right_shift] = ACTIONS(4335), + [sym_op_unsigned_right_shift] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [sym_op_divide] = ACTIONS(4335), + [sym_op_modulo] = ACTIONS(4337), + [sym_op_coalescing] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_from] = ACTIONS(4335), + [anon_sym_into] = ACTIONS(4335), + [anon_sym_join] = ACTIONS(4335), + [anon_sym_on] = ACTIONS(4335), + [anon_sym_equals] = ACTIONS(4335), + [anon_sym_let] = ACTIONS(4335), + [anon_sym_orderby] = ACTIONS(4335), + [anon_sym_ascending] = ACTIONS(4335), + [anon_sym_descending] = ACTIONS(4335), + [anon_sym_group] = ACTIONS(4335), + [anon_sym_by] = ACTIONS(4335), + [anon_sym_select] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_DASH_GT] = ACTIONS(4337), + [anon_sym_with] = ACTIONS(4335), + [sym_grit_metavariable] = ACTIONS(4337), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461451,12 +461260,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(4337), }, [2739] = { - [sym__variable_designation] = STATE(5252), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym_identifier] = STATE(5241), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(2739), [sym_preproc_endregion] = STATE(2739), [sym_preproc_line] = STATE(2739), @@ -461466,67 +461272,70 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4244), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4244), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4244), - [anon_sym_orderby] = ACTIONS(4244), - [anon_sym_ascending] = ACTIONS(4244), - [anon_sym_descending] = ACTIONS(4244), - [anon_sym_group] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4242), + [sym__identifier_token] = ACTIONS(4837), + [anon_sym_extern] = ACTIONS(4837), + [anon_sym_alias] = ACTIONS(4837), + [anon_sym_global] = ACTIONS(4837), + [anon_sym_using] = ACTIONS(4837), + [anon_sym_unsafe] = ACTIONS(4837), + [anon_sym_static] = ACTIONS(4837), + [anon_sym_LBRACK] = ACTIONS(4839), + [anon_sym_LPAREN] = ACTIONS(4839), + [anon_sym_event] = ACTIONS(4837), + [anon_sym_namespace] = ACTIONS(4837), + [anon_sym_class] = ACTIONS(4837), + [anon_sym_ref] = ACTIONS(4837), + [anon_sym_struct] = ACTIONS(4837), + [anon_sym_enum] = ACTIONS(4837), + [anon_sym_RBRACE] = ACTIONS(4839), + [anon_sym_interface] = ACTIONS(4837), + [anon_sym_delegate] = ACTIONS(4837), + [anon_sym_record] = ACTIONS(4837), + [anon_sym_public] = ACTIONS(4837), + [anon_sym_private] = ACTIONS(4837), + [anon_sym_readonly] = ACTIONS(4837), + [anon_sym_abstract] = ACTIONS(4837), + [anon_sym_async] = ACTIONS(4837), + [anon_sym_const] = ACTIONS(4837), + [anon_sym_file] = ACTIONS(4837), + [anon_sym_fixed] = ACTIONS(4837), + [anon_sym_internal] = ACTIONS(4837), + [anon_sym_new] = ACTIONS(4837), + [anon_sym_override] = ACTIONS(4837), + [anon_sym_partial] = ACTIONS(4837), + [anon_sym_protected] = ACTIONS(4837), + [anon_sym_required] = ACTIONS(4837), + [anon_sym_sealed] = ACTIONS(4837), + [anon_sym_virtual] = ACTIONS(4837), + [anon_sym_volatile] = ACTIONS(4837), + [anon_sym_where] = ACTIONS(4837), + [anon_sym_notnull] = ACTIONS(4837), + [anon_sym_unmanaged] = ACTIONS(4837), + [anon_sym_implicit] = ACTIONS(4837), + [anon_sym_explicit] = ACTIONS(4837), + [anon_sym_TILDE] = ACTIONS(4839), + [anon_sym_scoped] = ACTIONS(4837), + [anon_sym_var] = ACTIONS(4837), + [sym_predefined_type] = ACTIONS(4837), + [anon_sym_yield] = ACTIONS(4837), + [anon_sym_when] = ACTIONS(4837), + [anon_sym_from] = ACTIONS(4837), + [anon_sym_into] = ACTIONS(4837), + [anon_sym_join] = ACTIONS(4837), + [anon_sym_on] = ACTIONS(4837), + [anon_sym_equals] = ACTIONS(4837), + [anon_sym_let] = ACTIONS(4837), + [anon_sym_orderby] = ACTIONS(4837), + [anon_sym_ascending] = ACTIONS(4837), + [anon_sym_descending] = ACTIONS(4837), + [anon_sym_group] = ACTIONS(4837), + [anon_sym_by] = ACTIONS(4837), + [anon_sym_select] = ACTIONS(4837), + [sym_grit_metavariable] = ACTIONS(4839), + [aux_sym_preproc_if_token1] = ACTIONS(4839), + [aux_sym_preproc_if_token3] = ACTIONS(4839), + [aux_sym_preproc_else_token1] = ACTIONS(4839), + [aux_sym_preproc_elif_token1] = ACTIONS(4839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461548,71 +461357,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2740), [sym_preproc_define] = STATE(2740), [sym_preproc_undef] = STATE(2740), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3696), - [anon_sym_where] = ACTIONS(3696), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_when] = ACTIONS(3696), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3696), - [anon_sym_or] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3696), - [anon_sym_equals] = ACTIONS(3696), - [anon_sym_by] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3696), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4831), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461623,29 +461430,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(4331), }, [2741] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2741), [sym_preproc_endregion] = STATE(2741), [sym_preproc_line] = STATE(2741), @@ -461655,50 +461442,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_RBRACK] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4774), - [aux_sym_preproc_if_token3] = ACTIONS(4774), - [aux_sym_preproc_else_token1] = ACTIONS(4774), - [aux_sym_preproc_elif_token1] = ACTIONS(4774), + [sym__identifier_token] = ACTIONS(4841), + [anon_sym_extern] = ACTIONS(4841), + [anon_sym_alias] = ACTIONS(4841), + [anon_sym_global] = ACTIONS(4841), + [anon_sym_using] = ACTIONS(4841), + [anon_sym_unsafe] = ACTIONS(4841), + [anon_sym_static] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(4843), + [anon_sym_event] = ACTIONS(4841), + [anon_sym_namespace] = ACTIONS(4841), + [anon_sym_class] = ACTIONS(4841), + [anon_sym_ref] = ACTIONS(4841), + [anon_sym_struct] = ACTIONS(4841), + [anon_sym_enum] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_interface] = ACTIONS(4841), + [anon_sym_delegate] = ACTIONS(4841), + [anon_sym_record] = ACTIONS(4841), + [anon_sym_public] = ACTIONS(4841), + [anon_sym_private] = ACTIONS(4841), + [anon_sym_readonly] = ACTIONS(4841), + [anon_sym_abstract] = ACTIONS(4841), + [anon_sym_async] = ACTIONS(4841), + [anon_sym_const] = ACTIONS(4841), + [anon_sym_file] = ACTIONS(4841), + [anon_sym_fixed] = ACTIONS(4841), + [anon_sym_internal] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_override] = ACTIONS(4841), + [anon_sym_partial] = ACTIONS(4841), + [anon_sym_protected] = ACTIONS(4841), + [anon_sym_required] = ACTIONS(4841), + [anon_sym_sealed] = ACTIONS(4841), + [anon_sym_virtual] = ACTIONS(4841), + [anon_sym_volatile] = ACTIONS(4841), + [anon_sym_where] = ACTIONS(4841), + [anon_sym_notnull] = ACTIONS(4841), + [anon_sym_unmanaged] = ACTIONS(4841), + [anon_sym_implicit] = ACTIONS(4841), + [anon_sym_explicit] = ACTIONS(4841), + [anon_sym_TILDE] = ACTIONS(4843), + [anon_sym_scoped] = ACTIONS(4841), + [anon_sym_var] = ACTIONS(4841), + [sym_predefined_type] = ACTIONS(4841), + [anon_sym_yield] = ACTIONS(4841), + [anon_sym_when] = ACTIONS(4841), + [anon_sym_from] = ACTIONS(4841), + [anon_sym_into] = ACTIONS(4841), + [anon_sym_join] = ACTIONS(4841), + [anon_sym_on] = ACTIONS(4841), + [anon_sym_equals] = ACTIONS(4841), + [anon_sym_let] = ACTIONS(4841), + [anon_sym_orderby] = ACTIONS(4841), + [anon_sym_ascending] = ACTIONS(4841), + [anon_sym_descending] = ACTIONS(4841), + [anon_sym_group] = ACTIONS(4841), + [anon_sym_by] = ACTIONS(4841), + [anon_sym_select] = ACTIONS(4841), + [sym_grit_metavariable] = ACTIONS(4843), + [aux_sym_preproc_if_token1] = 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), @@ -461711,10 +461518,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2742] = { - [sym__variable_designation] = STATE(5009), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(2742), [sym_preproc_endregion] = STATE(2742), [sym_preproc_line] = STATE(2742), @@ -461724,67 +461527,70 @@ 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(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_in] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4141), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(4845), + [anon_sym_extern] = ACTIONS(4845), + [anon_sym_alias] = ACTIONS(4845), + [anon_sym_global] = ACTIONS(4845), + [anon_sym_using] = ACTIONS(4845), + [anon_sym_unsafe] = ACTIONS(4845), + [anon_sym_static] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(4847), + [anon_sym_event] = ACTIONS(4845), + [anon_sym_namespace] = ACTIONS(4845), + [anon_sym_class] = ACTIONS(4845), + [anon_sym_ref] = ACTIONS(4845), + [anon_sym_struct] = ACTIONS(4845), + [anon_sym_enum] = ACTIONS(4845), + [anon_sym_RBRACE] = ACTIONS(4847), + [anon_sym_interface] = ACTIONS(4845), + [anon_sym_delegate] = ACTIONS(4845), + [anon_sym_record] = ACTIONS(4845), + [anon_sym_public] = ACTIONS(4845), + [anon_sym_private] = ACTIONS(4845), + [anon_sym_readonly] = ACTIONS(4845), + [anon_sym_abstract] = ACTIONS(4845), + [anon_sym_async] = ACTIONS(4845), + [anon_sym_const] = ACTIONS(4845), + [anon_sym_file] = ACTIONS(4845), + [anon_sym_fixed] = ACTIONS(4845), + [anon_sym_internal] = ACTIONS(4845), + [anon_sym_new] = ACTIONS(4845), + [anon_sym_override] = ACTIONS(4845), + [anon_sym_partial] = ACTIONS(4845), + [anon_sym_protected] = ACTIONS(4845), + [anon_sym_required] = ACTIONS(4845), + [anon_sym_sealed] = ACTIONS(4845), + [anon_sym_virtual] = ACTIONS(4845), + [anon_sym_volatile] = ACTIONS(4845), + [anon_sym_where] = ACTIONS(4845), + [anon_sym_notnull] = ACTIONS(4845), + [anon_sym_unmanaged] = ACTIONS(4845), + [anon_sym_implicit] = ACTIONS(4845), + [anon_sym_explicit] = ACTIONS(4845), + [anon_sym_TILDE] = ACTIONS(4847), + [anon_sym_scoped] = ACTIONS(4845), + [anon_sym_var] = ACTIONS(4845), + [sym_predefined_type] = ACTIONS(4845), + [anon_sym_yield] = ACTIONS(4845), + [anon_sym_when] = ACTIONS(4845), + [anon_sym_from] = ACTIONS(4845), + [anon_sym_into] = ACTIONS(4845), + [anon_sym_join] = ACTIONS(4845), + [anon_sym_on] = ACTIONS(4845), + [anon_sym_equals] = ACTIONS(4845), + [anon_sym_let] = ACTIONS(4845), + [anon_sym_orderby] = ACTIONS(4845), + [anon_sym_ascending] = ACTIONS(4845), + [anon_sym_descending] = ACTIONS(4845), + [anon_sym_group] = ACTIONS(4845), + [anon_sym_by] = ACTIONS(4845), + [anon_sym_select] = ACTIONS(4845), + [sym_grit_metavariable] = ACTIONS(4847), + [aux_sym_preproc_if_token1] = 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), @@ -461797,27 +461603,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2743] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2743), [sym_preproc_endregion] = STATE(2743), [sym_preproc_line] = STATE(2743), @@ -461827,50 +461612,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4851), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4849), + [anon_sym_extern] = ACTIONS(4849), + [anon_sym_alias] = ACTIONS(4849), + [anon_sym_global] = ACTIONS(4849), + [anon_sym_using] = ACTIONS(4849), + [anon_sym_unsafe] = ACTIONS(4849), + [anon_sym_static] = ACTIONS(4849), + [anon_sym_LBRACK] = ACTIONS(4851), + [anon_sym_LPAREN] = ACTIONS(4851), + [anon_sym_event] = ACTIONS(4849), + [anon_sym_namespace] = ACTIONS(4849), + [anon_sym_class] = ACTIONS(4849), + [anon_sym_ref] = ACTIONS(4849), + [anon_sym_struct] = ACTIONS(4849), + [anon_sym_enum] = ACTIONS(4849), + [anon_sym_RBRACE] = ACTIONS(4851), + [anon_sym_interface] = ACTIONS(4849), + [anon_sym_delegate] = ACTIONS(4849), + [anon_sym_record] = ACTIONS(4849), + [anon_sym_public] = ACTIONS(4849), + [anon_sym_private] = ACTIONS(4849), + [anon_sym_readonly] = ACTIONS(4849), + [anon_sym_abstract] = ACTIONS(4849), + [anon_sym_async] = ACTIONS(4849), + [anon_sym_const] = ACTIONS(4849), + [anon_sym_file] = ACTIONS(4849), + [anon_sym_fixed] = ACTIONS(4849), + [anon_sym_internal] = ACTIONS(4849), + [anon_sym_new] = ACTIONS(4849), + [anon_sym_override] = ACTIONS(4849), + [anon_sym_partial] = ACTIONS(4849), + [anon_sym_protected] = ACTIONS(4849), + [anon_sym_required] = ACTIONS(4849), + [anon_sym_sealed] = ACTIONS(4849), + [anon_sym_virtual] = ACTIONS(4849), + [anon_sym_volatile] = ACTIONS(4849), + [anon_sym_where] = ACTIONS(4849), + [anon_sym_notnull] = ACTIONS(4849), + [anon_sym_unmanaged] = ACTIONS(4849), + [anon_sym_implicit] = ACTIONS(4849), + [anon_sym_explicit] = ACTIONS(4849), + [anon_sym_TILDE] = ACTIONS(4851), + [anon_sym_scoped] = ACTIONS(4849), + [anon_sym_var] = ACTIONS(4849), + [sym_predefined_type] = ACTIONS(4849), + [anon_sym_yield] = ACTIONS(4849), + [anon_sym_when] = ACTIONS(4849), + [anon_sym_from] = ACTIONS(4849), + [anon_sym_into] = ACTIONS(4849), + [anon_sym_join] = ACTIONS(4849), + [anon_sym_on] = ACTIONS(4849), + [anon_sym_equals] = ACTIONS(4849), + [anon_sym_let] = ACTIONS(4849), + [anon_sym_orderby] = ACTIONS(4849), + [anon_sym_ascending] = ACTIONS(4849), + [anon_sym_descending] = ACTIONS(4849), + [anon_sym_group] = ACTIONS(4849), + [anon_sym_by] = ACTIONS(4849), + [anon_sym_select] = ACTIONS(4849), + [sym_grit_metavariable] = ACTIONS(4851), + [aux_sym_preproc_if_token1] = ACTIONS(4851), + [aux_sym_preproc_if_token3] = ACTIONS(4851), + [aux_sym_preproc_else_token1] = ACTIONS(4851), + [aux_sym_preproc_elif_token1] = ACTIONS(4851), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461883,27 +461688,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2744] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2744), [sym_preproc_endregion] = STATE(2744), [sym_preproc_line] = STATE(2744), @@ -461913,50 +461697,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4853), + [anon_sym_extern] = ACTIONS(4853), + [anon_sym_alias] = ACTIONS(4853), + [anon_sym_global] = ACTIONS(4853), + [anon_sym_using] = ACTIONS(4853), + [anon_sym_unsafe] = ACTIONS(4853), + [anon_sym_static] = ACTIONS(4853), + [anon_sym_LBRACK] = ACTIONS(4855), + [anon_sym_LPAREN] = ACTIONS(4855), + [anon_sym_event] = ACTIONS(4853), + [anon_sym_namespace] = ACTIONS(4853), + [anon_sym_class] = ACTIONS(4853), + [anon_sym_ref] = ACTIONS(4853), + [anon_sym_struct] = ACTIONS(4853), + [anon_sym_enum] = ACTIONS(4853), + [anon_sym_RBRACE] = ACTIONS(4855), + [anon_sym_interface] = ACTIONS(4853), + [anon_sym_delegate] = ACTIONS(4853), + [anon_sym_record] = ACTIONS(4853), + [anon_sym_public] = ACTIONS(4853), + [anon_sym_private] = ACTIONS(4853), + [anon_sym_readonly] = ACTIONS(4853), + [anon_sym_abstract] = ACTIONS(4853), + [anon_sym_async] = ACTIONS(4853), + [anon_sym_const] = ACTIONS(4853), + [anon_sym_file] = ACTIONS(4853), + [anon_sym_fixed] = ACTIONS(4853), + [anon_sym_internal] = ACTIONS(4853), + [anon_sym_new] = ACTIONS(4853), + [anon_sym_override] = ACTIONS(4853), + [anon_sym_partial] = ACTIONS(4853), + [anon_sym_protected] = ACTIONS(4853), + [anon_sym_required] = ACTIONS(4853), + [anon_sym_sealed] = ACTIONS(4853), + [anon_sym_virtual] = ACTIONS(4853), + [anon_sym_volatile] = ACTIONS(4853), + [anon_sym_where] = ACTIONS(4853), + [anon_sym_notnull] = ACTIONS(4853), + [anon_sym_unmanaged] = ACTIONS(4853), + [anon_sym_implicit] = ACTIONS(4853), + [anon_sym_explicit] = ACTIONS(4853), + [anon_sym_TILDE] = ACTIONS(4855), + [anon_sym_scoped] = ACTIONS(4853), + [anon_sym_var] = ACTIONS(4853), + [sym_predefined_type] = ACTIONS(4853), + [anon_sym_yield] = ACTIONS(4853), + [anon_sym_when] = ACTIONS(4853), + [anon_sym_from] = ACTIONS(4853), + [anon_sym_into] = ACTIONS(4853), + [anon_sym_join] = ACTIONS(4853), + [anon_sym_on] = ACTIONS(4853), + [anon_sym_equals] = ACTIONS(4853), + [anon_sym_let] = ACTIONS(4853), + [anon_sym_orderby] = ACTIONS(4853), + [anon_sym_ascending] = ACTIONS(4853), + [anon_sym_descending] = ACTIONS(4853), + [anon_sym_group] = ACTIONS(4853), + [anon_sym_by] = ACTIONS(4853), + [anon_sym_select] = ACTIONS(4853), + [sym_grit_metavariable] = ACTIONS(4855), + [aux_sym_preproc_if_token1] = ACTIONS(4855), + [aux_sym_preproc_if_token3] = ACTIONS(4855), + [aux_sym_preproc_else_token1] = ACTIONS(4855), + [aux_sym_preproc_elif_token1] = ACTIONS(4855), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461969,27 +461773,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2745] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2745), [sym_preproc_endregion] = STATE(2745), [sym_preproc_line] = STATE(2745), @@ -461999,50 +461782,70 @@ 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(4786), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_RBRACK] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_RBRACE] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4851), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4786), - [aux_sym_preproc_else_token1] = ACTIONS(4786), - [aux_sym_preproc_elif_token1] = ACTIONS(4786), + [sym__identifier_token] = ACTIONS(4857), + [anon_sym_extern] = ACTIONS(4857), + [anon_sym_alias] = ACTIONS(4857), + [anon_sym_global] = ACTIONS(4857), + [anon_sym_using] = ACTIONS(4857), + [anon_sym_unsafe] = ACTIONS(4857), + [anon_sym_static] = ACTIONS(4857), + [anon_sym_LBRACK] = ACTIONS(4859), + [anon_sym_LPAREN] = ACTIONS(4859), + [anon_sym_event] = ACTIONS(4857), + [anon_sym_namespace] = ACTIONS(4857), + [anon_sym_class] = ACTIONS(4857), + [anon_sym_ref] = ACTIONS(4857), + [anon_sym_struct] = ACTIONS(4857), + [anon_sym_enum] = ACTIONS(4857), + [anon_sym_RBRACE] = ACTIONS(4859), + [anon_sym_interface] = ACTIONS(4857), + [anon_sym_delegate] = ACTIONS(4857), + [anon_sym_record] = ACTIONS(4857), + [anon_sym_public] = ACTIONS(4857), + [anon_sym_private] = ACTIONS(4857), + [anon_sym_readonly] = ACTIONS(4857), + [anon_sym_abstract] = ACTIONS(4857), + [anon_sym_async] = ACTIONS(4857), + [anon_sym_const] = ACTIONS(4857), + [anon_sym_file] = ACTIONS(4857), + [anon_sym_fixed] = ACTIONS(4857), + [anon_sym_internal] = ACTIONS(4857), + [anon_sym_new] = ACTIONS(4857), + [anon_sym_override] = ACTIONS(4857), + [anon_sym_partial] = ACTIONS(4857), + [anon_sym_protected] = ACTIONS(4857), + [anon_sym_required] = ACTIONS(4857), + [anon_sym_sealed] = ACTIONS(4857), + [anon_sym_virtual] = ACTIONS(4857), + [anon_sym_volatile] = ACTIONS(4857), + [anon_sym_where] = ACTIONS(4857), + [anon_sym_notnull] = ACTIONS(4857), + [anon_sym_unmanaged] = ACTIONS(4857), + [anon_sym_implicit] = ACTIONS(4857), + [anon_sym_explicit] = ACTIONS(4857), + [anon_sym_TILDE] = ACTIONS(4859), + [anon_sym_scoped] = ACTIONS(4857), + [anon_sym_var] = ACTIONS(4857), + [sym_predefined_type] = ACTIONS(4857), + [anon_sym_yield] = ACTIONS(4857), + [anon_sym_when] = ACTIONS(4857), + [anon_sym_from] = ACTIONS(4857), + [anon_sym_into] = ACTIONS(4857), + [anon_sym_join] = ACTIONS(4857), + [anon_sym_on] = ACTIONS(4857), + [anon_sym_equals] = ACTIONS(4857), + [anon_sym_let] = ACTIONS(4857), + [anon_sym_orderby] = ACTIONS(4857), + [anon_sym_ascending] = ACTIONS(4857), + [anon_sym_descending] = ACTIONS(4857), + [anon_sym_group] = ACTIONS(4857), + [anon_sym_by] = ACTIONS(4857), + [anon_sym_select] = ACTIONS(4857), + [sym_grit_metavariable] = ACTIONS(4859), + [aux_sym_preproc_if_token1] = ACTIONS(4859), + [aux_sym_preproc_if_token3] = ACTIONS(4859), + [aux_sym_preproc_else_token1] = ACTIONS(4859), + [aux_sym_preproc_elif_token1] = ACTIONS(4859), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462055,27 +461858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2746] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), + [sym_type_argument_list] = STATE(2920), [sym_preproc_region] = STATE(2746), [sym_preproc_endregion] = STATE(2746), [sym_preproc_line] = STATE(2746), @@ -462085,50 +461868,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2746), [sym_preproc_define] = STATE(2746), [sym_preproc_undef] = STATE(2746), - [anon_sym_SEMI] = ACTIONS(4752), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_RBRACK] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4752), - [anon_sym_RBRACE] = ACTIONS(4752), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4752), - [aux_sym_preproc_if_token3] = ACTIONS(4752), - [aux_sym_preproc_else_token1] = ACTIONS(4752), - [aux_sym_preproc_elif_token1] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_when] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3957), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462150,71 +461952,70 @@ 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(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3696), + [sym__identifier_token] = ACTIONS(4864), + [anon_sym_extern] = ACTIONS(4864), + [anon_sym_alias] = ACTIONS(4864), + [anon_sym_global] = ACTIONS(4864), + [anon_sym_using] = ACTIONS(4864), + [anon_sym_unsafe] = ACTIONS(4864), + [anon_sym_static] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_LPAREN] = ACTIONS(4866), + [anon_sym_event] = ACTIONS(4864), + [anon_sym_namespace] = ACTIONS(4864), + [anon_sym_class] = ACTIONS(4864), + [anon_sym_ref] = ACTIONS(4864), + [anon_sym_struct] = ACTIONS(4864), + [anon_sym_enum] = ACTIONS(4864), + [anon_sym_RBRACE] = ACTIONS(4866), + [anon_sym_interface] = ACTIONS(4864), + [anon_sym_delegate] = ACTIONS(4864), + [anon_sym_record] = ACTIONS(4864), + [anon_sym_public] = ACTIONS(4864), + [anon_sym_private] = ACTIONS(4864), + [anon_sym_readonly] = ACTIONS(4864), + [anon_sym_abstract] = ACTIONS(4864), + [anon_sym_async] = ACTIONS(4864), + [anon_sym_const] = ACTIONS(4864), + [anon_sym_file] = ACTIONS(4864), + [anon_sym_fixed] = ACTIONS(4864), + [anon_sym_internal] = ACTIONS(4864), + [anon_sym_new] = ACTIONS(4864), + [anon_sym_override] = ACTIONS(4864), + [anon_sym_partial] = ACTIONS(4864), + [anon_sym_protected] = ACTIONS(4864), + [anon_sym_required] = ACTIONS(4864), + [anon_sym_sealed] = ACTIONS(4864), + [anon_sym_virtual] = ACTIONS(4864), + [anon_sym_volatile] = ACTIONS(4864), + [anon_sym_where] = ACTIONS(4864), + [anon_sym_notnull] = ACTIONS(4864), + [anon_sym_unmanaged] = ACTIONS(4864), + [anon_sym_implicit] = ACTIONS(4864), + [anon_sym_explicit] = ACTIONS(4864), + [anon_sym_TILDE] = ACTIONS(4866), + [anon_sym_scoped] = ACTIONS(4864), + [anon_sym_var] = ACTIONS(4864), + [sym_predefined_type] = ACTIONS(4864), + [anon_sym_yield] = ACTIONS(4864), + [anon_sym_when] = 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_ascending] = ACTIONS(4864), + [anon_sym_descending] = ACTIONS(4864), + [anon_sym_group] = ACTIONS(4864), + [anon_sym_by] = ACTIONS(4864), + [anon_sym_select] = ACTIONS(4864), + [sym_grit_metavariable] = ACTIONS(4866), + [aux_sym_preproc_if_token1] = 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), @@ -462227,27 +462028,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2748] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2748), [sym_preproc_endregion] = STATE(2748), [sym_preproc_line] = STATE(2748), @@ -462257,83 +462037,82 @@ 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), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4343), + [anon_sym_alias] = ACTIONS(4343), + [anon_sym_global] = ACTIONS(4343), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_COLON] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_file] = ACTIONS(4343), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_QMARK] = ACTIONS(4343), + [anon_sym_notnull] = ACTIONS(4343), + [anon_sym_unmanaged] = ACTIONS(4343), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_scoped] = ACTIONS(4343), + [anon_sym_var] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_yield] = ACTIONS(4343), + [anon_sym_switch] = ACTIONS(4343), + [anon_sym_when] = ACTIONS(4343), + [sym_discard] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_and] = ACTIONS(4343), + [anon_sym_or] = ACTIONS(4343), + [anon_sym_EQ_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4343), + [sym_op_bitwise_or] = ACTIONS(4343), + [anon_sym_CARET] = ACTIONS(4345), + [sym_op_left_shift] = ACTIONS(4345), + [sym_op_right_shift] = ACTIONS(4343), + [sym_op_unsigned_right_shift] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [sym_op_divide] = ACTIONS(4343), + [sym_op_modulo] = ACTIONS(4345), + [sym_op_coalescing] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_from] = ACTIONS(4343), + [anon_sym_into] = ACTIONS(4343), + [anon_sym_join] = ACTIONS(4343), + [anon_sym_on] = ACTIONS(4343), + [anon_sym_equals] = ACTIONS(4343), + [anon_sym_let] = ACTIONS(4343), + [anon_sym_orderby] = ACTIONS(4343), + [anon_sym_ascending] = ACTIONS(4343), + [anon_sym_descending] = ACTIONS(4343), + [anon_sym_group] = ACTIONS(4343), + [anon_sym_by] = ACTIONS(4343), + [anon_sym_select] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_DASH_GT] = ACTIONS(4345), + [anon_sym_with] = ACTIONS(4343), + [sym_grit_metavariable] = ACTIONS(4345), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4345), }, [2749] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2749), [sym_preproc_endregion] = STATE(2749), [sym_preproc_line] = STATE(2749), @@ -462343,50 +462122,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4778), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_RBRACK] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4851), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4778), - [aux_sym_preproc_else_token1] = ACTIONS(4778), - [aux_sym_preproc_elif_token1] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4526), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_COLON] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_in] = ACTIONS(4524), + [anon_sym_QMARK] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4526), + [anon_sym_EQ_GT] = ACTIONS(4524), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_switch] = ACTIONS(4524), + [anon_sym_when] = ACTIONS(4524), + [anon_sym_DOT_DOT] = ACTIONS(4524), + [anon_sym_LT_EQ] = ACTIONS(4524), + [anon_sym_GT_EQ] = ACTIONS(4524), + [anon_sym_and] = ACTIONS(4524), + [anon_sym_or] = ACTIONS(4524), + [anon_sym_PLUS_EQ] = ACTIONS(4524), + [anon_sym_DASH_EQ] = ACTIONS(4524), + [anon_sym_STAR_EQ] = ACTIONS(4524), + [anon_sym_SLASH_EQ] = ACTIONS(4524), + [anon_sym_PERCENT_EQ] = ACTIONS(4524), + [anon_sym_AMP_EQ] = ACTIONS(4524), + [anon_sym_CARET_EQ] = ACTIONS(4524), + [anon_sym_PIPE_EQ] = ACTIONS(4524), + [anon_sym_LT_LT_EQ] = ACTIONS(4524), + [anon_sym_GT_GT_EQ] = ACTIONS(4524), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4524), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4524), + [anon_sym_EQ_EQ] = ACTIONS(4524), + [anon_sym_BANG_EQ] = ACTIONS(4524), + [anon_sym_AMP_AMP] = ACTIONS(4524), + [anon_sym_PIPE_PIPE] = ACTIONS(4524), + [anon_sym_AMP] = ACTIONS(4526), + [sym_op_bitwise_or] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [sym_op_left_shift] = ACTIONS(4526), + [sym_op_right_shift] = ACTIONS(4526), + [sym_op_unsigned_right_shift] = ACTIONS(4526), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [sym_op_divide] = ACTIONS(4526), + [sym_op_modulo] = ACTIONS(4526), + [sym_op_coalescing] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PLUS_PLUS] = ACTIONS(4524), + [anon_sym_DASH_DASH] = ACTIONS(4524), + [anon_sym_on] = ACTIONS(4524), + [anon_sym_equals] = ACTIONS(4524), + [anon_sym_by] = ACTIONS(4524), + [anon_sym_as] = ACTIONS(4524), + [anon_sym_is] = ACTIONS(4524), + [anon_sym_DASH_GT] = ACTIONS(4524), + [anon_sym_with] = ACTIONS(4524), + [aux_sym_preproc_if_token3] = ACTIONS(4524), + [aux_sym_preproc_else_token1] = ACTIONS(4524), + [aux_sym_preproc_elif_token1] = ACTIONS(4524), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462399,27 +462198,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2750] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2750), [sym_preproc_endregion] = STATE(2750), [sym_preproc_line] = STATE(2750), @@ -462429,50 +462207,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4868), + [anon_sym_extern] = ACTIONS(4868), + [anon_sym_alias] = ACTIONS(4868), + [anon_sym_global] = ACTIONS(4868), + [anon_sym_using] = ACTIONS(4868), + [anon_sym_unsafe] = ACTIONS(4868), + [anon_sym_static] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_LPAREN] = ACTIONS(4870), + [anon_sym_event] = ACTIONS(4868), + [anon_sym_namespace] = ACTIONS(4868), + [anon_sym_class] = ACTIONS(4868), + [anon_sym_ref] = ACTIONS(4868), + [anon_sym_struct] = ACTIONS(4868), + [anon_sym_enum] = ACTIONS(4868), + [anon_sym_RBRACE] = ACTIONS(4870), + [anon_sym_interface] = ACTIONS(4868), + [anon_sym_delegate] = ACTIONS(4868), + [anon_sym_record] = ACTIONS(4868), + [anon_sym_public] = ACTIONS(4868), + [anon_sym_private] = ACTIONS(4868), + [anon_sym_readonly] = ACTIONS(4868), + [anon_sym_abstract] = ACTIONS(4868), + [anon_sym_async] = ACTIONS(4868), + [anon_sym_const] = ACTIONS(4868), + [anon_sym_file] = ACTIONS(4868), + [anon_sym_fixed] = ACTIONS(4868), + [anon_sym_internal] = ACTIONS(4868), + [anon_sym_new] = ACTIONS(4868), + [anon_sym_override] = ACTIONS(4868), + [anon_sym_partial] = ACTIONS(4868), + [anon_sym_protected] = ACTIONS(4868), + [anon_sym_required] = ACTIONS(4868), + [anon_sym_sealed] = ACTIONS(4868), + [anon_sym_virtual] = ACTIONS(4868), + [anon_sym_volatile] = ACTIONS(4868), + [anon_sym_where] = ACTIONS(4868), + [anon_sym_notnull] = ACTIONS(4868), + [anon_sym_unmanaged] = ACTIONS(4868), + [anon_sym_implicit] = ACTIONS(4868), + [anon_sym_explicit] = ACTIONS(4868), + [anon_sym_TILDE] = ACTIONS(4870), + [anon_sym_scoped] = ACTIONS(4868), + [anon_sym_var] = ACTIONS(4868), + [sym_predefined_type] = ACTIONS(4868), + [anon_sym_yield] = ACTIONS(4868), + [anon_sym_when] = 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_ascending] = ACTIONS(4868), + [anon_sym_descending] = ACTIONS(4868), + [anon_sym_group] = ACTIONS(4868), + [anon_sym_by] = ACTIONS(4868), + [anon_sym_select] = ACTIONS(4868), + [sym_grit_metavariable] = ACTIONS(4870), + [aux_sym_preproc_if_token1] = 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), @@ -462485,27 +462283,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2751] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2751), [sym_preproc_endregion] = STATE(2751), [sym_preproc_line] = STATE(2751), @@ -462515,50 +462292,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2751), [sym_preproc_define] = STATE(2751), [sym_preproc_undef] = STATE(2751), - [anon_sym_SEMI] = ACTIONS(4782), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_RBRACK] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4851), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4782), - [aux_sym_preproc_else_token1] = ACTIONS(4782), - [aux_sym_preproc_elif_token1] = ACTIONS(4782), + [sym__identifier_token] = ACTIONS(4310), + [anon_sym_alias] = ACTIONS(4310), + [anon_sym_global] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4312), + [anon_sym_COLON] = ACTIONS(4312), + [anon_sym_COMMA] = ACTIONS(4312), + [anon_sym_LPAREN] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4312), + [anon_sym_file] = ACTIONS(4310), + [anon_sym_LT] = ACTIONS(4310), + [anon_sym_GT] = ACTIONS(4310), + [anon_sym_where] = ACTIONS(4310), + [anon_sym_QMARK] = ACTIONS(4310), + [anon_sym_notnull] = ACTIONS(4310), + [anon_sym_unmanaged] = ACTIONS(4310), + [anon_sym_DOT] = ACTIONS(4310), + [anon_sym_scoped] = ACTIONS(4310), + [anon_sym_var] = ACTIONS(4310), + [anon_sym_STAR] = ACTIONS(4312), + [anon_sym_yield] = ACTIONS(4310), + [anon_sym_switch] = ACTIONS(4310), + [anon_sym_when] = ACTIONS(4310), + [sym_discard] = ACTIONS(4310), + [anon_sym_DOT_DOT] = ACTIONS(4312), + [anon_sym_LT_EQ] = ACTIONS(4312), + [anon_sym_GT_EQ] = ACTIONS(4312), + [anon_sym_and] = ACTIONS(4310), + [anon_sym_or] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_AMP_AMP] = ACTIONS(4312), + [anon_sym_PIPE_PIPE] = ACTIONS(4312), + [anon_sym_AMP] = ACTIONS(4310), + [sym_op_bitwise_or] = ACTIONS(4310), + [anon_sym_CARET] = ACTIONS(4312), + [sym_op_left_shift] = ACTIONS(4312), + [sym_op_right_shift] = ACTIONS(4310), + [sym_op_unsigned_right_shift] = ACTIONS(4312), + [anon_sym_PLUS] = ACTIONS(4310), + [anon_sym_DASH] = ACTIONS(4310), + [sym_op_divide] = ACTIONS(4310), + [sym_op_modulo] = ACTIONS(4312), + [sym_op_coalescing] = ACTIONS(4312), + [anon_sym_BANG] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4312), + [anon_sym_DASH_DASH] = ACTIONS(4312), + [anon_sym_from] = ACTIONS(4310), + [anon_sym_into] = ACTIONS(4310), + [anon_sym_join] = ACTIONS(4310), + [anon_sym_on] = ACTIONS(4310), + [anon_sym_equals] = ACTIONS(4310), + [anon_sym_let] = ACTIONS(4310), + [anon_sym_orderby] = ACTIONS(4310), + [anon_sym_ascending] = ACTIONS(4310), + [anon_sym_descending] = ACTIONS(4310), + [anon_sym_group] = ACTIONS(4310), + [anon_sym_by] = ACTIONS(4310), + [anon_sym_select] = ACTIONS(4310), + [anon_sym_as] = ACTIONS(4310), + [anon_sym_is] = ACTIONS(4310), + [anon_sym_DASH_GT] = ACTIONS(4312), + [anon_sym_with] = ACTIONS(4310), + [sym_grit_metavariable] = ACTIONS(4312), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462569,8 +462365,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(4312), }, [2752] = { + [sym__variable_designation] = STATE(4569), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2752), [sym_preproc_endregion] = STATE(2752), [sym_preproc_line] = STATE(2752), @@ -462580,71 +462381,66 @@ 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(3187), - [anon_sym_alias] = ACTIONS(3187), - [anon_sym_global] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_file] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_where] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_notnull] = ACTIONS(3187), - [anon_sym_unmanaged] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_scoped] = ACTIONS(3187), - [anon_sym_var] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_switch] = ACTIONS(3187), - [anon_sym_when] = ACTIONS(3187), - [sym_discard] = ACTIONS(3187), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = 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_as] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3187), - [sym_grit_metavariable] = ACTIONS(3189), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4252), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462657,10 +462453,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2753] = { - [sym__variable_designation] = STATE(5278), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym_identifier] = STATE(5241), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(2753), [sym_preproc_endregion] = STATE(2753), [sym_preproc_line] = STATE(2753), @@ -462670,67 +462462,70 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4252), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4252), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4252), - [anon_sym_orderby] = ACTIONS(4252), - [anon_sym_ascending] = ACTIONS(4252), - [anon_sym_descending] = ACTIONS(4252), - [anon_sym_group] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4252), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4250), + [sym__identifier_token] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym_alias] = ACTIONS(3680), + [anon_sym_global] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_unsafe] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_event] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_ref] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym_interface] = ACTIONS(3680), + [anon_sym_delegate] = ACTIONS(3680), + [anon_sym_record] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_readonly] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3680), + [anon_sym_async] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3680), + [anon_sym_fixed] = ACTIONS(3680), + [anon_sym_internal] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_override] = ACTIONS(3680), + [anon_sym_partial] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_required] = ACTIONS(3680), + [anon_sym_sealed] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3680), + [anon_sym_unmanaged] = ACTIONS(3680), + [anon_sym_implicit] = ACTIONS(3680), + [anon_sym_explicit] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_scoped] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3680), + [sym_predefined_type] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_orderby] = ACTIONS(3680), + [anon_sym_ascending] = ACTIONS(3680), + [anon_sym_descending] = ACTIONS(3680), + [anon_sym_group] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_select] = ACTIONS(3680), + [sym_grit_metavariable] = ACTIONS(3682), + [aux_sym_preproc_if_token1] = ACTIONS(3682), + [aux_sym_preproc_if_token3] = ACTIONS(3682), + [aux_sym_preproc_else_token1] = ACTIONS(3682), + [aux_sym_preproc_elif_token1] = ACTIONS(3682), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462743,27 +462538,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2754] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2754), [sym_preproc_endregion] = STATE(2754), [sym_preproc_line] = STATE(2754), @@ -462773,50 +462547,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4748), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_RBRACK] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4748), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4851), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4748), - [aux_sym_preproc_else_token1] = ACTIONS(4748), - [aux_sym_preproc_elif_token1] = ACTIONS(4748), + [sym__identifier_token] = ACTIONS(4872), + [anon_sym_extern] = ACTIONS(4872), + [anon_sym_alias] = ACTIONS(4872), + [anon_sym_global] = ACTIONS(4872), + [anon_sym_using] = ACTIONS(4872), + [anon_sym_unsafe] = ACTIONS(4872), + [anon_sym_static] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_event] = ACTIONS(4872), + [anon_sym_namespace] = ACTIONS(4872), + [anon_sym_class] = ACTIONS(4872), + [anon_sym_ref] = ACTIONS(4872), + [anon_sym_struct] = ACTIONS(4872), + [anon_sym_enum] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_interface] = ACTIONS(4872), + [anon_sym_delegate] = ACTIONS(4872), + [anon_sym_record] = ACTIONS(4872), + [anon_sym_public] = ACTIONS(4872), + [anon_sym_private] = ACTIONS(4872), + [anon_sym_readonly] = ACTIONS(4872), + [anon_sym_abstract] = ACTIONS(4872), + [anon_sym_async] = ACTIONS(4872), + [anon_sym_const] = ACTIONS(4872), + [anon_sym_file] = ACTIONS(4872), + [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_protected] = 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(4872), + [anon_sym_notnull] = ACTIONS(4872), + [anon_sym_unmanaged] = ACTIONS(4872), + [anon_sym_implicit] = ACTIONS(4872), + [anon_sym_explicit] = ACTIONS(4872), + [anon_sym_TILDE] = ACTIONS(4874), + [anon_sym_scoped] = ACTIONS(4872), + [anon_sym_var] = ACTIONS(4872), + [sym_predefined_type] = ACTIONS(4872), + [anon_sym_yield] = ACTIONS(4872), + [anon_sym_when] = ACTIONS(4872), + [anon_sym_from] = ACTIONS(4872), + [anon_sym_into] = ACTIONS(4872), + [anon_sym_join] = ACTIONS(4872), + [anon_sym_on] = ACTIONS(4872), + [anon_sym_equals] = ACTIONS(4872), + [anon_sym_let] = ACTIONS(4872), + [anon_sym_orderby] = ACTIONS(4872), + [anon_sym_ascending] = ACTIONS(4872), + [anon_sym_descending] = ACTIONS(4872), + [anon_sym_group] = ACTIONS(4872), + [anon_sym_by] = ACTIONS(4872), + [anon_sym_select] = ACTIONS(4872), + [sym_grit_metavariable] = ACTIONS(4874), + [aux_sym_preproc_if_token1] = ACTIONS(4874), + [aux_sym_preproc_if_token3] = ACTIONS(4874), + [aux_sym_preproc_else_token1] = ACTIONS(4874), + [aux_sym_preproc_elif_token1] = ACTIONS(4874), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462838,71 +462632,70 @@ 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(4855), - [anon_sym_extern] = ACTIONS(4855), - [anon_sym_alias] = ACTIONS(4855), - [anon_sym_global] = ACTIONS(4855), - [anon_sym_using] = ACTIONS(4855), - [anon_sym_unsafe] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4857), - [anon_sym_static] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4859), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_event] = ACTIONS(4855), - [anon_sym_namespace] = ACTIONS(4855), - [anon_sym_class] = ACTIONS(4855), - [anon_sym_ref] = ACTIONS(4855), - [anon_sym_struct] = ACTIONS(4855), - [anon_sym_enum] = ACTIONS(4855), - [anon_sym_RBRACE] = ACTIONS(4859), - [anon_sym_interface] = ACTIONS(4855), - [anon_sym_delegate] = ACTIONS(4855), - [anon_sym_record] = ACTIONS(4855), - [anon_sym_public] = ACTIONS(4855), - [anon_sym_private] = ACTIONS(4855), - [anon_sym_readonly] = ACTIONS(4855), - [anon_sym_abstract] = ACTIONS(4855), - [anon_sym_async] = ACTIONS(4855), - [anon_sym_const] = ACTIONS(4855), - [anon_sym_file] = ACTIONS(4855), - [anon_sym_fixed] = ACTIONS(4855), - [anon_sym_internal] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_override] = ACTIONS(4855), - [anon_sym_partial] = ACTIONS(4855), - [anon_sym_protected] = ACTIONS(4855), - [anon_sym_required] = ACTIONS(4855), - [anon_sym_sealed] = ACTIONS(4855), - [anon_sym_virtual] = ACTIONS(4855), - [anon_sym_volatile] = ACTIONS(4855), - [anon_sym_where] = ACTIONS(4855), - [anon_sym_notnull] = ACTIONS(4855), - [anon_sym_unmanaged] = ACTIONS(4855), - [anon_sym_TILDE] = ACTIONS(4859), - [anon_sym_implicit] = ACTIONS(4855), - [anon_sym_explicit] = ACTIONS(4855), - [anon_sym_scoped] = ACTIONS(4855), - [anon_sym_var] = ACTIONS(4855), - [sym_predefined_type] = ACTIONS(4855), - [anon_sym_yield] = ACTIONS(4855), - [anon_sym_when] = ACTIONS(4855), - [anon_sym_from] = ACTIONS(4855), - [anon_sym_into] = ACTIONS(4855), - [anon_sym_join] = ACTIONS(4855), - [anon_sym_on] = ACTIONS(4855), - [anon_sym_equals] = ACTIONS(4855), - [anon_sym_let] = ACTIONS(4855), - [anon_sym_orderby] = ACTIONS(4855), - [anon_sym_ascending] = ACTIONS(4855), - [anon_sym_descending] = ACTIONS(4855), - [anon_sym_group] = ACTIONS(4855), - [anon_sym_by] = ACTIONS(4855), - [anon_sym_select] = ACTIONS(4855), - [sym_grit_metavariable] = ACTIONS(4859), - [aux_sym_preproc_if_token1] = ACTIONS(4859), - [aux_sym_preproc_if_token3] = ACTIONS(4859), - [aux_sym_preproc_else_token1] = ACTIONS(4859), - [aux_sym_preproc_elif_token1] = ACTIONS(4859), + [sym__identifier_token] = ACTIONS(3584), + [anon_sym_extern] = ACTIONS(3584), + [anon_sym_alias] = ACTIONS(3584), + [anon_sym_global] = ACTIONS(3584), + [anon_sym_using] = ACTIONS(3584), + [anon_sym_unsafe] = ACTIONS(3584), + [anon_sym_static] = ACTIONS(3584), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LPAREN] = ACTIONS(3586), + [anon_sym_event] = ACTIONS(3584), + [anon_sym_namespace] = ACTIONS(3584), + [anon_sym_class] = ACTIONS(3584), + [anon_sym_ref] = ACTIONS(3584), + [anon_sym_struct] = ACTIONS(3584), + [anon_sym_enum] = ACTIONS(3584), + [anon_sym_RBRACE] = ACTIONS(3586), + [anon_sym_interface] = ACTIONS(3584), + [anon_sym_delegate] = ACTIONS(3584), + [anon_sym_record] = ACTIONS(3584), + [anon_sym_public] = ACTIONS(3584), + [anon_sym_private] = ACTIONS(3584), + [anon_sym_readonly] = ACTIONS(3584), + [anon_sym_abstract] = ACTIONS(3584), + [anon_sym_async] = ACTIONS(3584), + [anon_sym_const] = ACTIONS(3584), + [anon_sym_file] = ACTIONS(3584), + [anon_sym_fixed] = ACTIONS(3584), + [anon_sym_internal] = ACTIONS(3584), + [anon_sym_new] = ACTIONS(3584), + [anon_sym_override] = ACTIONS(3584), + [anon_sym_partial] = ACTIONS(3584), + [anon_sym_protected] = ACTIONS(3584), + [anon_sym_required] = ACTIONS(3584), + [anon_sym_sealed] = ACTIONS(3584), + [anon_sym_virtual] = ACTIONS(3584), + [anon_sym_volatile] = ACTIONS(3584), + [anon_sym_where] = ACTIONS(3584), + [anon_sym_notnull] = ACTIONS(3584), + [anon_sym_unmanaged] = ACTIONS(3584), + [anon_sym_implicit] = ACTIONS(3584), + [anon_sym_explicit] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3586), + [anon_sym_scoped] = ACTIONS(3584), + [anon_sym_var] = ACTIONS(3584), + [sym_predefined_type] = ACTIONS(3584), + [anon_sym_yield] = ACTIONS(3584), + [anon_sym_when] = ACTIONS(3584), + [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), + [sym_grit_metavariable] = ACTIONS(3586), + [aux_sym_preproc_if_token1] = ACTIONS(3586), + [aux_sym_preproc_if_token3] = ACTIONS(3586), + [aux_sym_preproc_else_token1] = ACTIONS(3586), + [aux_sym_preproc_elif_token1] = ACTIONS(3586), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462915,7 +462708,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2756] = { - [sym_type_argument_list] = STATE(2854), [sym_preproc_region] = STATE(2756), [sym_preproc_endregion] = STATE(2756), [sym_preproc_line] = STATE(2756), @@ -462925,70 +462717,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_when] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3953), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3951), - [anon_sym_into] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym_alias] = ACTIONS(3636), + [anon_sym_global] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_unsafe] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_event] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_ref] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_interface] = ACTIONS(3636), + [anon_sym_delegate] = ACTIONS(3636), + [anon_sym_record] = ACTIONS(3636), + [anon_sym_public] = ACTIONS(3636), + [anon_sym_private] = ACTIONS(3636), + [anon_sym_readonly] = ACTIONS(3636), + [anon_sym_abstract] = ACTIONS(3636), + [anon_sym_async] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_file] = ACTIONS(3636), + [anon_sym_fixed] = ACTIONS(3636), + [anon_sym_internal] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_override] = ACTIONS(3636), + [anon_sym_partial] = ACTIONS(3636), + [anon_sym_protected] = ACTIONS(3636), + [anon_sym_required] = ACTIONS(3636), + [anon_sym_sealed] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_where] = ACTIONS(3636), + [anon_sym_notnull] = ACTIONS(3636), + [anon_sym_unmanaged] = ACTIONS(3636), + [anon_sym_implicit] = ACTIONS(3636), + [anon_sym_explicit] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3636), + [sym_predefined_type] = ACTIONS(3636), + [anon_sym_yield] = ACTIONS(3636), + [anon_sym_when] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3636), + [anon_sym_into] = ACTIONS(3636), + [anon_sym_join] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_equals] = ACTIONS(3636), + [anon_sym_let] = ACTIONS(3636), + [anon_sym_orderby] = ACTIONS(3636), + [anon_sym_ascending] = ACTIONS(3636), + [anon_sym_descending] = ACTIONS(3636), + [anon_sym_group] = ACTIONS(3636), + [anon_sym_by] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3636), + [sym_grit_metavariable] = ACTIONS(3638), + [aux_sym_preproc_if_token1] = ACTIONS(3638), + [aux_sym_preproc_if_token3] = ACTIONS(3638), + [aux_sym_preproc_else_token1] = ACTIONS(3638), + [aux_sym_preproc_elif_token1] = ACTIONS(3638), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463001,10 +462793,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2757] = { - [sym__variable_designation] = STATE(5320), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym_identifier] = STATE(5241), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(2757), [sym_preproc_endregion] = STATE(2757), [sym_preproc_line] = STATE(2757), @@ -463014,67 +462802,70 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_COMMA] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4308), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4308), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4308), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [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(4450), - [anon_sym_select] = ACTIONS(4308), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4306), + [sym__identifier_token] = ACTIONS(3386), + [anon_sym_extern] = ACTIONS(3386), + [anon_sym_alias] = ACTIONS(3386), + [anon_sym_global] = ACTIONS(3386), + [anon_sym_using] = ACTIONS(3386), + [anon_sym_unsafe] = ACTIONS(3386), + [anon_sym_static] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_event] = ACTIONS(3386), + [anon_sym_namespace] = ACTIONS(3386), + [anon_sym_class] = ACTIONS(3386), + [anon_sym_ref] = ACTIONS(3386), + [anon_sym_struct] = ACTIONS(3386), + [anon_sym_enum] = ACTIONS(3386), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_interface] = ACTIONS(3386), + [anon_sym_delegate] = ACTIONS(3386), + [anon_sym_record] = ACTIONS(3386), + [anon_sym_public] = ACTIONS(3386), + [anon_sym_private] = ACTIONS(3386), + [anon_sym_readonly] = ACTIONS(3386), + [anon_sym_abstract] = ACTIONS(3386), + [anon_sym_async] = ACTIONS(3386), + [anon_sym_const] = ACTIONS(3386), + [anon_sym_file] = ACTIONS(3386), + [anon_sym_fixed] = ACTIONS(3386), + [anon_sym_internal] = ACTIONS(3386), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_override] = ACTIONS(3386), + [anon_sym_partial] = ACTIONS(3386), + [anon_sym_protected] = ACTIONS(3386), + [anon_sym_required] = ACTIONS(3386), + [anon_sym_sealed] = ACTIONS(3386), + [anon_sym_virtual] = ACTIONS(3386), + [anon_sym_volatile] = ACTIONS(3386), + [anon_sym_where] = ACTIONS(3386), + [anon_sym_notnull] = ACTIONS(3386), + [anon_sym_unmanaged] = ACTIONS(3386), + [anon_sym_implicit] = ACTIONS(3386), + [anon_sym_explicit] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_scoped] = ACTIONS(3386), + [anon_sym_var] = ACTIONS(3386), + [sym_predefined_type] = ACTIONS(3386), + [anon_sym_yield] = ACTIONS(3386), + [anon_sym_when] = ACTIONS(3386), + [anon_sym_from] = ACTIONS(3386), + [anon_sym_into] = ACTIONS(3386), + [anon_sym_join] = ACTIONS(3386), + [anon_sym_on] = ACTIONS(3386), + [anon_sym_equals] = ACTIONS(3386), + [anon_sym_let] = ACTIONS(3386), + [anon_sym_orderby] = ACTIONS(3386), + [anon_sym_ascending] = ACTIONS(3386), + [anon_sym_descending] = ACTIONS(3386), + [anon_sym_group] = ACTIONS(3386), + [anon_sym_by] = ACTIONS(3386), + [anon_sym_select] = ACTIONS(3386), + [sym_grit_metavariable] = ACTIONS(3388), + [aux_sym_preproc_if_token1] = ACTIONS(3388), + [aux_sym_preproc_if_token3] = ACTIONS(3388), + [aux_sym_preproc_else_token1] = ACTIONS(3388), + [aux_sym_preproc_elif_token1] = ACTIONS(3388), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463087,27 +462878,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2758] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2758), [sym_preproc_endregion] = STATE(2758), [sym_preproc_line] = STATE(2758), @@ -463117,50 +462887,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_join] = ACTIONS(1435), - [anon_sym_let] = ACTIONS(1435), - [anon_sym_orderby] = ACTIONS(1435), - [anon_sym_ascending] = ACTIONS(1435), - [anon_sym_descending] = ACTIONS(1435), - [anon_sym_group] = ACTIONS(1435), - [anon_sym_select] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1437), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(1435), - [sym_grit_metavariable] = ACTIONS(1435), + [sym__identifier_token] = ACTIONS(4876), + [anon_sym_extern] = ACTIONS(4876), + [anon_sym_alias] = ACTIONS(4876), + [anon_sym_global] = ACTIONS(4876), + [anon_sym_using] = ACTIONS(4876), + [anon_sym_unsafe] = ACTIONS(4876), + [anon_sym_static] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_LPAREN] = ACTIONS(4878), + [anon_sym_event] = ACTIONS(4876), + [anon_sym_namespace] = ACTIONS(4876), + [anon_sym_class] = ACTIONS(4876), + [anon_sym_ref] = ACTIONS(4876), + [anon_sym_struct] = ACTIONS(4876), + [anon_sym_enum] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4878), + [anon_sym_interface] = ACTIONS(4876), + [anon_sym_delegate] = ACTIONS(4876), + [anon_sym_record] = ACTIONS(4876), + [anon_sym_public] = ACTIONS(4876), + [anon_sym_private] = ACTIONS(4876), + [anon_sym_readonly] = ACTIONS(4876), + [anon_sym_abstract] = ACTIONS(4876), + [anon_sym_async] = ACTIONS(4876), + [anon_sym_const] = ACTIONS(4876), + [anon_sym_file] = ACTIONS(4876), + [anon_sym_fixed] = ACTIONS(4876), + [anon_sym_internal] = ACTIONS(4876), + [anon_sym_new] = ACTIONS(4876), + [anon_sym_override] = ACTIONS(4876), + [anon_sym_partial] = ACTIONS(4876), + [anon_sym_protected] = ACTIONS(4876), + [anon_sym_required] = ACTIONS(4876), + [anon_sym_sealed] = ACTIONS(4876), + [anon_sym_virtual] = ACTIONS(4876), + [anon_sym_volatile] = ACTIONS(4876), + [anon_sym_where] = ACTIONS(4876), + [anon_sym_notnull] = ACTIONS(4876), + [anon_sym_unmanaged] = ACTIONS(4876), + [anon_sym_implicit] = ACTIONS(4876), + [anon_sym_explicit] = ACTIONS(4876), + [anon_sym_TILDE] = ACTIONS(4878), + [anon_sym_scoped] = ACTIONS(4876), + [anon_sym_var] = ACTIONS(4876), + [sym_predefined_type] = ACTIONS(4876), + [anon_sym_yield] = ACTIONS(4876), + [anon_sym_when] = ACTIONS(4876), + [anon_sym_from] = ACTIONS(4876), + [anon_sym_into] = ACTIONS(4876), + [anon_sym_join] = ACTIONS(4876), + [anon_sym_on] = ACTIONS(4876), + [anon_sym_equals] = ACTIONS(4876), + [anon_sym_let] = ACTIONS(4876), + [anon_sym_orderby] = ACTIONS(4876), + [anon_sym_ascending] = ACTIONS(4876), + [anon_sym_descending] = ACTIONS(4876), + [anon_sym_group] = ACTIONS(4876), + [anon_sym_by] = ACTIONS(4876), + [anon_sym_select] = ACTIONS(4876), + [sym_grit_metavariable] = ACTIONS(4878), + [aux_sym_preproc_if_token1] = ACTIONS(4878), + [aux_sym_preproc_if_token3] = ACTIONS(4878), + [aux_sym_preproc_else_token1] = ACTIONS(4878), + [aux_sym_preproc_elif_token1] = ACTIONS(4878), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463173,27 +462963,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2759] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2759), [sym_preproc_endregion] = STATE(2759), [sym_preproc_line] = STATE(2759), @@ -463203,66 +462972,82 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_from] = ACTIONS(4766), - [anon_sym_join] = ACTIONS(4766), - [anon_sym_let] = ACTIONS(4766), - [anon_sym_orderby] = ACTIONS(4766), - [anon_sym_ascending] = ACTIONS(4766), - [anon_sym_descending] = ACTIONS(4766), - [anon_sym_group] = ACTIONS(4766), - [anon_sym_select] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4766), - [sym_grit_metavariable] = ACTIONS(4766), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = 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(4880), + [anon_sym_extern] = ACTIONS(4880), + [anon_sym_alias] = ACTIONS(4880), + [anon_sym_global] = ACTIONS(4880), + [anon_sym_using] = ACTIONS(4880), + [anon_sym_unsafe] = ACTIONS(4880), + [anon_sym_static] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_event] = ACTIONS(4880), + [anon_sym_namespace] = ACTIONS(4880), + [anon_sym_class] = ACTIONS(4880), + [anon_sym_ref] = ACTIONS(4880), + [anon_sym_struct] = ACTIONS(4880), + [anon_sym_enum] = ACTIONS(4880), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_interface] = ACTIONS(4880), + [anon_sym_delegate] = ACTIONS(4880), + [anon_sym_record] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_readonly] = ACTIONS(4880), + [anon_sym_abstract] = ACTIONS(4880), + [anon_sym_async] = ACTIONS(4880), + [anon_sym_const] = ACTIONS(4880), + [anon_sym_file] = ACTIONS(4880), + [anon_sym_fixed] = ACTIONS(4880), + [anon_sym_internal] = ACTIONS(4880), + [anon_sym_new] = ACTIONS(4880), + [anon_sym_override] = ACTIONS(4880), + [anon_sym_partial] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_required] = ACTIONS(4880), + [anon_sym_sealed] = ACTIONS(4880), + [anon_sym_virtual] = ACTIONS(4880), + [anon_sym_volatile] = ACTIONS(4880), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_notnull] = ACTIONS(4880), + [anon_sym_unmanaged] = ACTIONS(4880), + [anon_sym_implicit] = ACTIONS(4880), + [anon_sym_explicit] = ACTIONS(4880), + [anon_sym_TILDE] = ACTIONS(4882), + [anon_sym_scoped] = ACTIONS(4880), + [anon_sym_var] = ACTIONS(4880), + [sym_predefined_type] = ACTIONS(4880), + [anon_sym_yield] = ACTIONS(4880), + [anon_sym_when] = ACTIONS(4880), + [anon_sym_from] = ACTIONS(4880), + [anon_sym_into] = ACTIONS(4880), + [anon_sym_join] = ACTIONS(4880), + [anon_sym_on] = ACTIONS(4880), + [anon_sym_equals] = ACTIONS(4880), + [anon_sym_let] = ACTIONS(4880), + [anon_sym_orderby] = ACTIONS(4880), + [anon_sym_ascending] = ACTIONS(4880), + [anon_sym_descending] = ACTIONS(4880), + [anon_sym_group] = ACTIONS(4880), + [anon_sym_by] = ACTIONS(4880), + [anon_sym_select] = ACTIONS(4880), + [sym_grit_metavariable] = ACTIONS(4882), + [aux_sym_preproc_if_token1] = 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_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, [2760] = { - [sym__variable_designation] = STATE(5292), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym_identifier] = STATE(5241), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(2760), [sym_preproc_endregion] = STATE(2760), [sym_preproc_line] = STATE(2760), @@ -463272,67 +463057,70 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_COMMA] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4304), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4304), - [anon_sym_into] = ACTIONS(4304), - [anon_sym_join] = ACTIONS(4304), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [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(4450), - [anon_sym_select] = ACTIONS(4304), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4302), + [anon_sym_SEMI] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_RBRACK] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4020), + [anon_sym_RPAREN] = ACTIONS(4020), + [anon_sym_RBRACE] = ACTIONS(4020), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_in] = ACTIONS(4013), + [anon_sym_QMARK] = ACTIONS(4013), + [anon_sym_DOT] = ACTIONS(4013), + [anon_sym_EQ_GT] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4013), + [anon_sym_switch] = ACTIONS(4020), + [anon_sym_when] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4020), + [anon_sym_or] = ACTIONS(4020), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_into] = ACTIONS(4020), + [anon_sym_on] = ACTIONS(4020), + [anon_sym_equals] = ACTIONS(4020), + [anon_sym_by] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_DASH_GT] = ACTIONS(4020), + [anon_sym_with] = ACTIONS(4020), + [aux_sym_preproc_if_token3] = ACTIONS(4020), + [aux_sym_preproc_else_token1] = ACTIONS(4020), + [aux_sym_preproc_elif_token1] = ACTIONS(4020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463345,10 +463133,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2761] = { - [sym__variable_designation] = STATE(5320), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym_identifier] = STATE(5241), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(2761), [sym_preproc_endregion] = STATE(2761), [sym_preproc_line] = STATE(2761), @@ -463358,67 +463142,70 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_COMMA] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4308), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4308), - [anon_sym_into] = ACTIONS(4308), - [anon_sym_join] = ACTIONS(4308), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [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(4450), - [anon_sym_select] = ACTIONS(4308), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4306), + [sym__identifier_token] = ACTIONS(4884), + [anon_sym_extern] = ACTIONS(4884), + [anon_sym_alias] = ACTIONS(4884), + [anon_sym_global] = ACTIONS(4884), + [anon_sym_using] = ACTIONS(4884), + [anon_sym_unsafe] = ACTIONS(4884), + [anon_sym_static] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4886), + [anon_sym_event] = ACTIONS(4884), + [anon_sym_namespace] = ACTIONS(4884), + [anon_sym_class] = ACTIONS(4884), + [anon_sym_ref] = ACTIONS(4884), + [anon_sym_struct] = ACTIONS(4884), + [anon_sym_enum] = ACTIONS(4884), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_interface] = ACTIONS(4884), + [anon_sym_delegate] = ACTIONS(4884), + [anon_sym_record] = ACTIONS(4884), + [anon_sym_public] = ACTIONS(4884), + [anon_sym_private] = ACTIONS(4884), + [anon_sym_readonly] = ACTIONS(4884), + [anon_sym_abstract] = ACTIONS(4884), + [anon_sym_async] = ACTIONS(4884), + [anon_sym_const] = ACTIONS(4884), + [anon_sym_file] = ACTIONS(4884), + [anon_sym_fixed] = ACTIONS(4884), + [anon_sym_internal] = ACTIONS(4884), + [anon_sym_new] = ACTIONS(4884), + [anon_sym_override] = ACTIONS(4884), + [anon_sym_partial] = ACTIONS(4884), + [anon_sym_protected] = ACTIONS(4884), + [anon_sym_required] = ACTIONS(4884), + [anon_sym_sealed] = ACTIONS(4884), + [anon_sym_virtual] = ACTIONS(4884), + [anon_sym_volatile] = ACTIONS(4884), + [anon_sym_where] = ACTIONS(4884), + [anon_sym_notnull] = ACTIONS(4884), + [anon_sym_unmanaged] = ACTIONS(4884), + [anon_sym_implicit] = ACTIONS(4884), + [anon_sym_explicit] = ACTIONS(4884), + [anon_sym_TILDE] = ACTIONS(4886), + [anon_sym_scoped] = ACTIONS(4884), + [anon_sym_var] = ACTIONS(4884), + [sym_predefined_type] = ACTIONS(4884), + [anon_sym_yield] = ACTIONS(4884), + [anon_sym_when] = ACTIONS(4884), + [anon_sym_from] = ACTIONS(4884), + [anon_sym_into] = ACTIONS(4884), + [anon_sym_join] = ACTIONS(4884), + [anon_sym_on] = ACTIONS(4884), + [anon_sym_equals] = ACTIONS(4884), + [anon_sym_let] = ACTIONS(4884), + [anon_sym_orderby] = ACTIONS(4884), + [anon_sym_ascending] = ACTIONS(4884), + [anon_sym_descending] = ACTIONS(4884), + [anon_sym_group] = ACTIONS(4884), + [anon_sym_by] = ACTIONS(4884), + [anon_sym_select] = ACTIONS(4884), + [sym_grit_metavariable] = ACTIONS(4886), + [aux_sym_preproc_if_token1] = ACTIONS(4886), + [aux_sym_preproc_if_token3] = ACTIONS(4886), + [aux_sym_preproc_else_token1] = ACTIONS(4886), + [aux_sym_preproc_elif_token1] = ACTIONS(4886), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463431,10 +463218,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2762] = { - [sym__variable_designation] = STATE(5278), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym_identifier] = STATE(5241), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(2762), [sym_preproc_endregion] = STATE(2762), [sym_preproc_line] = STATE(2762), @@ -463444,67 +463227,70 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4252), - [anon_sym_into] = ACTIONS(4252), - [anon_sym_join] = ACTIONS(4252), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4252), - [anon_sym_orderby] = ACTIONS(4252), - [anon_sym_ascending] = ACTIONS(4252), - [anon_sym_descending] = ACTIONS(4252), - [anon_sym_group] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4252), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4250), + [sym__identifier_token] = ACTIONS(4888), + [anon_sym_extern] = ACTIONS(4888), + [anon_sym_alias] = ACTIONS(4888), + [anon_sym_global] = ACTIONS(4888), + [anon_sym_using] = ACTIONS(4888), + [anon_sym_unsafe] = ACTIONS(4888), + [anon_sym_static] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4890), + [anon_sym_event] = ACTIONS(4888), + [anon_sym_namespace] = ACTIONS(4888), + [anon_sym_class] = ACTIONS(4888), + [anon_sym_ref] = ACTIONS(4888), + [anon_sym_struct] = ACTIONS(4888), + [anon_sym_enum] = ACTIONS(4888), + [anon_sym_RBRACE] = ACTIONS(4890), + [anon_sym_interface] = ACTIONS(4888), + [anon_sym_delegate] = ACTIONS(4888), + [anon_sym_record] = ACTIONS(4888), + [anon_sym_public] = ACTIONS(4888), + [anon_sym_private] = ACTIONS(4888), + [anon_sym_readonly] = ACTIONS(4888), + [anon_sym_abstract] = ACTIONS(4888), + [anon_sym_async] = ACTIONS(4888), + [anon_sym_const] = ACTIONS(4888), + [anon_sym_file] = ACTIONS(4888), + [anon_sym_fixed] = ACTIONS(4888), + [anon_sym_internal] = ACTIONS(4888), + [anon_sym_new] = ACTIONS(4888), + [anon_sym_override] = ACTIONS(4888), + [anon_sym_partial] = ACTIONS(4888), + [anon_sym_protected] = ACTIONS(4888), + [anon_sym_required] = ACTIONS(4888), + [anon_sym_sealed] = ACTIONS(4888), + [anon_sym_virtual] = ACTIONS(4888), + [anon_sym_volatile] = ACTIONS(4888), + [anon_sym_where] = ACTIONS(4888), + [anon_sym_notnull] = ACTIONS(4888), + [anon_sym_unmanaged] = ACTIONS(4888), + [anon_sym_implicit] = ACTIONS(4888), + [anon_sym_explicit] = ACTIONS(4888), + [anon_sym_TILDE] = ACTIONS(4890), + [anon_sym_scoped] = ACTIONS(4888), + [anon_sym_var] = ACTIONS(4888), + [sym_predefined_type] = ACTIONS(4888), + [anon_sym_yield] = ACTIONS(4888), + [anon_sym_when] = ACTIONS(4888), + [anon_sym_from] = ACTIONS(4888), + [anon_sym_into] = ACTIONS(4888), + [anon_sym_join] = ACTIONS(4888), + [anon_sym_on] = ACTIONS(4888), + [anon_sym_equals] = ACTIONS(4888), + [anon_sym_let] = ACTIONS(4888), + [anon_sym_orderby] = ACTIONS(4888), + [anon_sym_ascending] = ACTIONS(4888), + [anon_sym_descending] = ACTIONS(4888), + [anon_sym_group] = ACTIONS(4888), + [anon_sym_by] = ACTIONS(4888), + [anon_sym_select] = ACTIONS(4888), + [sym_grit_metavariable] = ACTIONS(4890), + [aux_sym_preproc_if_token1] = ACTIONS(4890), + [aux_sym_preproc_if_token3] = ACTIONS(4890), + [aux_sym_preproc_else_token1] = ACTIONS(4890), + [aux_sym_preproc_elif_token1] = ACTIONS(4890), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463517,27 +463303,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2763] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2763), [sym_preproc_endregion] = STATE(2763), [sym_preproc_line] = STATE(2763), @@ -463547,50 +463312,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_where] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_from] = ACTIONS(4794), - [anon_sym_join] = ACTIONS(4794), - [anon_sym_let] = ACTIONS(4794), - [anon_sym_orderby] = ACTIONS(4794), - [anon_sym_ascending] = ACTIONS(4794), - [anon_sym_descending] = ACTIONS(4794), - [anon_sym_group] = ACTIONS(4794), - [anon_sym_select] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4796), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4794), - [sym_grit_metavariable] = ACTIONS(4794), + [sym__identifier_token] = ACTIONS(4892), + [anon_sym_extern] = ACTIONS(4892), + [anon_sym_alias] = ACTIONS(4892), + [anon_sym_global] = ACTIONS(4892), + [anon_sym_using] = ACTIONS(4892), + [anon_sym_unsafe] = ACTIONS(4892), + [anon_sym_static] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_event] = ACTIONS(4892), + [anon_sym_namespace] = ACTIONS(4892), + [anon_sym_class] = ACTIONS(4892), + [anon_sym_ref] = ACTIONS(4892), + [anon_sym_struct] = ACTIONS(4892), + [anon_sym_enum] = ACTIONS(4892), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_interface] = ACTIONS(4892), + [anon_sym_delegate] = ACTIONS(4892), + [anon_sym_record] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_readonly] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_async] = ACTIONS(4892), + [anon_sym_const] = ACTIONS(4892), + [anon_sym_file] = ACTIONS(4892), + [anon_sym_fixed] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_new] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_partial] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_required] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_virtual] = ACTIONS(4892), + [anon_sym_volatile] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_notnull] = ACTIONS(4892), + [anon_sym_unmanaged] = ACTIONS(4892), + [anon_sym_implicit] = ACTIONS(4892), + [anon_sym_explicit] = ACTIONS(4892), + [anon_sym_TILDE] = ACTIONS(4894), + [anon_sym_scoped] = ACTIONS(4892), + [anon_sym_var] = ACTIONS(4892), + [sym_predefined_type] = ACTIONS(4892), + [anon_sym_yield] = ACTIONS(4892), + [anon_sym_when] = 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_ascending] = ACTIONS(4892), + [anon_sym_descending] = ACTIONS(4892), + [anon_sym_group] = ACTIONS(4892), + [anon_sym_by] = ACTIONS(4892), + [anon_sym_select] = ACTIONS(4892), + [sym_grit_metavariable] = ACTIONS(4894), + [aux_sym_preproc_if_token1] = 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), @@ -463603,27 +463388,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2764] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2764), [sym_preproc_endregion] = STATE(2764), [sym_preproc_line] = STATE(2764), @@ -463633,50 +463397,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_where] = ACTIONS(4774), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_from] = ACTIONS(4774), - [anon_sym_join] = ACTIONS(4774), - [anon_sym_let] = ACTIONS(4774), - [anon_sym_orderby] = ACTIONS(4774), - [anon_sym_ascending] = ACTIONS(4774), - [anon_sym_descending] = ACTIONS(4774), - [anon_sym_group] = ACTIONS(4774), - [anon_sym_select] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4776), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4774), - [sym_grit_metavariable] = ACTIONS(4774), + [sym__identifier_token] = ACTIONS(4896), + [anon_sym_extern] = ACTIONS(4896), + [anon_sym_alias] = ACTIONS(4896), + [anon_sym_global] = ACTIONS(4896), + [anon_sym_using] = ACTIONS(4896), + [anon_sym_unsafe] = ACTIONS(4896), + [anon_sym_static] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_event] = ACTIONS(4896), + [anon_sym_namespace] = ACTIONS(4896), + [anon_sym_class] = ACTIONS(4896), + [anon_sym_ref] = ACTIONS(4896), + [anon_sym_struct] = ACTIONS(4896), + [anon_sym_enum] = ACTIONS(4896), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_interface] = ACTIONS(4896), + [anon_sym_delegate] = ACTIONS(4896), + [anon_sym_record] = ACTIONS(4896), + [anon_sym_public] = ACTIONS(4896), + [anon_sym_private] = ACTIONS(4896), + [anon_sym_readonly] = ACTIONS(4896), + [anon_sym_abstract] = ACTIONS(4896), + [anon_sym_async] = ACTIONS(4896), + [anon_sym_const] = ACTIONS(4896), + [anon_sym_file] = ACTIONS(4896), + [anon_sym_fixed] = ACTIONS(4896), + [anon_sym_internal] = ACTIONS(4896), + [anon_sym_new] = ACTIONS(4896), + [anon_sym_override] = ACTIONS(4896), + [anon_sym_partial] = ACTIONS(4896), + [anon_sym_protected] = ACTIONS(4896), + [anon_sym_required] = ACTIONS(4896), + [anon_sym_sealed] = ACTIONS(4896), + [anon_sym_virtual] = ACTIONS(4896), + [anon_sym_volatile] = ACTIONS(4896), + [anon_sym_where] = ACTIONS(4896), + [anon_sym_notnull] = ACTIONS(4896), + [anon_sym_unmanaged] = ACTIONS(4896), + [anon_sym_implicit] = ACTIONS(4896), + [anon_sym_explicit] = ACTIONS(4896), + [anon_sym_TILDE] = ACTIONS(4898), + [anon_sym_scoped] = ACTIONS(4896), + [anon_sym_var] = ACTIONS(4896), + [sym_predefined_type] = ACTIONS(4896), + [anon_sym_yield] = ACTIONS(4896), + [anon_sym_when] = ACTIONS(4896), + [anon_sym_from] = ACTIONS(4896), + [anon_sym_into] = ACTIONS(4896), + [anon_sym_join] = ACTIONS(4896), + [anon_sym_on] = ACTIONS(4896), + [anon_sym_equals] = ACTIONS(4896), + [anon_sym_let] = ACTIONS(4896), + [anon_sym_orderby] = ACTIONS(4896), + [anon_sym_ascending] = ACTIONS(4896), + [anon_sym_descending] = ACTIONS(4896), + [anon_sym_group] = ACTIONS(4896), + [anon_sym_by] = ACTIONS(4896), + [anon_sym_select] = ACTIONS(4896), + [sym_grit_metavariable] = ACTIONS(4898), + [aux_sym_preproc_if_token1] = 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), @@ -463689,10 +463473,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2765] = { - [sym__variable_designation] = STATE(5252), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym_identifier] = STATE(5241), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(2765), [sym_preproc_endregion] = STATE(2765), [sym_preproc_line] = STATE(2765), @@ -463702,67 +463482,70 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_COMMA] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4244), - [anon_sym_into] = ACTIONS(4244), - [anon_sym_join] = ACTIONS(4244), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4244), - [anon_sym_orderby] = ACTIONS(4244), - [anon_sym_ascending] = ACTIONS(4244), - [anon_sym_descending] = ACTIONS(4244), - [anon_sym_group] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4242), + [sym__identifier_token] = ACTIONS(4900), + [anon_sym_extern] = ACTIONS(4900), + [anon_sym_alias] = ACTIONS(4900), + [anon_sym_global] = ACTIONS(4900), + [anon_sym_using] = ACTIONS(4900), + [anon_sym_unsafe] = ACTIONS(4900), + [anon_sym_static] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_LPAREN] = ACTIONS(4902), + [anon_sym_event] = ACTIONS(4900), + [anon_sym_namespace] = ACTIONS(4900), + [anon_sym_class] = ACTIONS(4900), + [anon_sym_ref] = ACTIONS(4900), + [anon_sym_struct] = ACTIONS(4900), + [anon_sym_enum] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4902), + [anon_sym_interface] = ACTIONS(4900), + [anon_sym_delegate] = ACTIONS(4900), + [anon_sym_record] = ACTIONS(4900), + [anon_sym_public] = ACTIONS(4900), + [anon_sym_private] = ACTIONS(4900), + [anon_sym_readonly] = ACTIONS(4900), + [anon_sym_abstract] = ACTIONS(4900), + [anon_sym_async] = ACTIONS(4900), + [anon_sym_const] = ACTIONS(4900), + [anon_sym_file] = ACTIONS(4900), + [anon_sym_fixed] = ACTIONS(4900), + [anon_sym_internal] = ACTIONS(4900), + [anon_sym_new] = ACTIONS(4900), + [anon_sym_override] = ACTIONS(4900), + [anon_sym_partial] = ACTIONS(4900), + [anon_sym_protected] = ACTIONS(4900), + [anon_sym_required] = ACTIONS(4900), + [anon_sym_sealed] = ACTIONS(4900), + [anon_sym_virtual] = ACTIONS(4900), + [anon_sym_volatile] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4900), + [anon_sym_notnull] = ACTIONS(4900), + [anon_sym_unmanaged] = ACTIONS(4900), + [anon_sym_implicit] = ACTIONS(4900), + [anon_sym_explicit] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4902), + [anon_sym_scoped] = ACTIONS(4900), + [anon_sym_var] = ACTIONS(4900), + [sym_predefined_type] = ACTIONS(4900), + [anon_sym_yield] = ACTIONS(4900), + [anon_sym_when] = ACTIONS(4900), + [anon_sym_from] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4900), + [anon_sym_join] = ACTIONS(4900), + [anon_sym_on] = ACTIONS(4900), + [anon_sym_equals] = ACTIONS(4900), + [anon_sym_let] = ACTIONS(4900), + [anon_sym_orderby] = ACTIONS(4900), + [anon_sym_ascending] = ACTIONS(4900), + [anon_sym_descending] = ACTIONS(4900), + [anon_sym_group] = ACTIONS(4900), + [anon_sym_by] = ACTIONS(4900), + [anon_sym_select] = ACTIONS(4900), + [sym_grit_metavariable] = ACTIONS(4902), + [aux_sym_preproc_if_token1] = 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), @@ -463784,71 +463567,70 @@ 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(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4866), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [sym__identifier_token] = ACTIONS(4904), + [anon_sym_extern] = ACTIONS(4904), + [anon_sym_alias] = ACTIONS(4904), + [anon_sym_global] = ACTIONS(4904), + [anon_sym_using] = ACTIONS(4904), + [anon_sym_unsafe] = ACTIONS(4904), + [anon_sym_static] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4906), + [anon_sym_event] = ACTIONS(4904), + [anon_sym_namespace] = ACTIONS(4904), + [anon_sym_class] = ACTIONS(4904), + [anon_sym_ref] = ACTIONS(4904), + [anon_sym_struct] = ACTIONS(4904), + [anon_sym_enum] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4906), + [anon_sym_interface] = ACTIONS(4904), + [anon_sym_delegate] = ACTIONS(4904), + [anon_sym_record] = ACTIONS(4904), + [anon_sym_public] = ACTIONS(4904), + [anon_sym_private] = ACTIONS(4904), + [anon_sym_readonly] = ACTIONS(4904), + [anon_sym_abstract] = ACTIONS(4904), + [anon_sym_async] = ACTIONS(4904), + [anon_sym_const] = ACTIONS(4904), + [anon_sym_file] = ACTIONS(4904), + [anon_sym_fixed] = ACTIONS(4904), + [anon_sym_internal] = ACTIONS(4904), + [anon_sym_new] = ACTIONS(4904), + [anon_sym_override] = ACTIONS(4904), + [anon_sym_partial] = ACTIONS(4904), + [anon_sym_protected] = ACTIONS(4904), + [anon_sym_required] = ACTIONS(4904), + [anon_sym_sealed] = ACTIONS(4904), + [anon_sym_virtual] = ACTIONS(4904), + [anon_sym_volatile] = ACTIONS(4904), + [anon_sym_where] = ACTIONS(4904), + [anon_sym_notnull] = ACTIONS(4904), + [anon_sym_unmanaged] = ACTIONS(4904), + [anon_sym_implicit] = ACTIONS(4904), + [anon_sym_explicit] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4906), + [anon_sym_scoped] = ACTIONS(4904), + [anon_sym_var] = ACTIONS(4904), + [sym_predefined_type] = ACTIONS(4904), + [anon_sym_yield] = ACTIONS(4904), + [anon_sym_when] = ACTIONS(4904), + [anon_sym_from] = ACTIONS(4904), + [anon_sym_into] = ACTIONS(4904), + [anon_sym_join] = ACTIONS(4904), + [anon_sym_on] = ACTIONS(4904), + [anon_sym_equals] = ACTIONS(4904), + [anon_sym_let] = ACTIONS(4904), + [anon_sym_orderby] = ACTIONS(4904), + [anon_sym_ascending] = ACTIONS(4904), + [anon_sym_descending] = ACTIONS(4904), + [anon_sym_group] = ACTIONS(4904), + [anon_sym_by] = ACTIONS(4904), + [anon_sym_select] = ACTIONS(4904), + [sym_grit_metavariable] = ACTIONS(4906), + [aux_sym_preproc_if_token1] = ACTIONS(4906), + [aux_sym_preproc_if_token3] = ACTIONS(4906), + [aux_sym_preproc_else_token1] = ACTIONS(4906), + [aux_sym_preproc_elif_token1] = ACTIONS(4906), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463870,87 +463652,82 @@ 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(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_global] = ACTIONS(3915), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3915), - [anon_sym_unmanaged] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3912), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3912), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3912), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3915), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3915), - [anon_sym_yield] = ACTIONS(3915), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3915), - [sym_discard] = ACTIONS(3915), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3912), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3915), - [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(3915), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3915), - [sym_grit_metavariable] = ACTIONS(3912), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3912), + [sym__identifier_token] = ACTIONS(4908), + [anon_sym_extern] = ACTIONS(4908), + [anon_sym_alias] = ACTIONS(4908), + [anon_sym_global] = ACTIONS(4908), + [anon_sym_using] = ACTIONS(4908), + [anon_sym_unsafe] = ACTIONS(4908), + [anon_sym_static] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_event] = ACTIONS(4908), + [anon_sym_namespace] = ACTIONS(4908), + [anon_sym_class] = ACTIONS(4908), + [anon_sym_ref] = ACTIONS(4908), + [anon_sym_struct] = ACTIONS(4908), + [anon_sym_enum] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4910), + [anon_sym_interface] = ACTIONS(4908), + [anon_sym_delegate] = ACTIONS(4908), + [anon_sym_record] = ACTIONS(4908), + [anon_sym_public] = ACTIONS(4908), + [anon_sym_private] = ACTIONS(4908), + [anon_sym_readonly] = ACTIONS(4908), + [anon_sym_abstract] = ACTIONS(4908), + [anon_sym_async] = ACTIONS(4908), + [anon_sym_const] = ACTIONS(4908), + [anon_sym_file] = ACTIONS(4908), + [anon_sym_fixed] = ACTIONS(4908), + [anon_sym_internal] = ACTIONS(4908), + [anon_sym_new] = ACTIONS(4908), + [anon_sym_override] = ACTIONS(4908), + [anon_sym_partial] = ACTIONS(4908), + [anon_sym_protected] = ACTIONS(4908), + [anon_sym_required] = ACTIONS(4908), + [anon_sym_sealed] = ACTIONS(4908), + [anon_sym_virtual] = ACTIONS(4908), + [anon_sym_volatile] = ACTIONS(4908), + [anon_sym_where] = ACTIONS(4908), + [anon_sym_notnull] = ACTIONS(4908), + [anon_sym_unmanaged] = ACTIONS(4908), + [anon_sym_implicit] = ACTIONS(4908), + [anon_sym_explicit] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4910), + [anon_sym_scoped] = ACTIONS(4908), + [anon_sym_var] = ACTIONS(4908), + [sym_predefined_type] = ACTIONS(4908), + [anon_sym_yield] = ACTIONS(4908), + [anon_sym_when] = 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_ascending] = ACTIONS(4908), + [anon_sym_descending] = ACTIONS(4908), + [anon_sym_group] = ACTIONS(4908), + [anon_sym_by] = ACTIONS(4908), + [anon_sym_select] = ACTIONS(4908), + [sym_grit_metavariable] = ACTIONS(4910), + [aux_sym_preproc_if_token1] = ACTIONS(4910), + [aux_sym_preproc_if_token3] = ACTIONS(4910), + [aux_sym_preproc_else_token1] = ACTIONS(4910), + [aux_sym_preproc_elif_token1] = ACTIONS(4910), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2768] = { - [sym__variable_designation] = STATE(5292), - [sym_parenthesized_variable_designation] = STATE(5236), - [sym_identifier] = STATE(5241), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(2768), [sym_preproc_endregion] = STATE(2768), [sym_preproc_line] = STATE(2768), @@ -463960,67 +463737,70 @@ 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(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_COMMA] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4304), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4450), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4450), - [sym_discard] = ACTIONS(4532), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4304), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4304), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [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(4450), - [anon_sym_select] = ACTIONS(4304), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4302), + [sym__identifier_token] = ACTIONS(3676), + [anon_sym_extern] = ACTIONS(3676), + [anon_sym_alias] = ACTIONS(3676), + [anon_sym_global] = ACTIONS(3676), + [anon_sym_using] = ACTIONS(3676), + [anon_sym_unsafe] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_event] = ACTIONS(3676), + [anon_sym_namespace] = ACTIONS(3676), + [anon_sym_class] = ACTIONS(3676), + [anon_sym_ref] = ACTIONS(3676), + [anon_sym_struct] = ACTIONS(3676), + [anon_sym_enum] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_interface] = ACTIONS(3676), + [anon_sym_delegate] = ACTIONS(3676), + [anon_sym_record] = ACTIONS(3676), + [anon_sym_public] = ACTIONS(3676), + [anon_sym_private] = ACTIONS(3676), + [anon_sym_readonly] = ACTIONS(3676), + [anon_sym_abstract] = ACTIONS(3676), + [anon_sym_async] = ACTIONS(3676), + [anon_sym_const] = ACTIONS(3676), + [anon_sym_file] = ACTIONS(3676), + [anon_sym_fixed] = ACTIONS(3676), + [anon_sym_internal] = ACTIONS(3676), + [anon_sym_new] = ACTIONS(3676), + [anon_sym_override] = ACTIONS(3676), + [anon_sym_partial] = ACTIONS(3676), + [anon_sym_protected] = ACTIONS(3676), + [anon_sym_required] = ACTIONS(3676), + [anon_sym_sealed] = ACTIONS(3676), + [anon_sym_virtual] = ACTIONS(3676), + [anon_sym_volatile] = ACTIONS(3676), + [anon_sym_where] = ACTIONS(3676), + [anon_sym_notnull] = ACTIONS(3676), + [anon_sym_unmanaged] = ACTIONS(3676), + [anon_sym_implicit] = ACTIONS(3676), + [anon_sym_explicit] = ACTIONS(3676), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3676), + [anon_sym_var] = ACTIONS(3676), + [sym_predefined_type] = ACTIONS(3676), + [anon_sym_yield] = ACTIONS(3676), + [anon_sym_when] = ACTIONS(3676), + [anon_sym_from] = ACTIONS(3676), + [anon_sym_into] = ACTIONS(3676), + [anon_sym_join] = ACTIONS(3676), + [anon_sym_on] = ACTIONS(3676), + [anon_sym_equals] = ACTIONS(3676), + [anon_sym_let] = ACTIONS(3676), + [anon_sym_orderby] = ACTIONS(3676), + [anon_sym_ascending] = ACTIONS(3676), + [anon_sym_descending] = ACTIONS(3676), + [anon_sym_group] = ACTIONS(3676), + [anon_sym_by] = ACTIONS(3676), + [anon_sym_select] = ACTIONS(3676), + [sym_grit_metavariable] = ACTIONS(3678), + [aux_sym_preproc_if_token1] = ACTIONS(3678), + [aux_sym_preproc_if_token3] = ACTIONS(3678), + [aux_sym_preproc_else_token1] = ACTIONS(3678), + [aux_sym_preproc_elif_token1] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464033,27 +463813,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2769] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2769), [sym_preproc_endregion] = STATE(2769), [sym_preproc_line] = STATE(2769), @@ -464063,50 +463822,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4708), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_RBRACK] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4708), - [anon_sym_RBRACE] = ACTIONS(4708), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4851), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4708), - [aux_sym_preproc_else_token1] = ACTIONS(4708), - [aux_sym_preproc_elif_token1] = ACTIONS(4708), + [sym__identifier_token] = ACTIONS(3628), + [anon_sym_extern] = ACTIONS(3628), + [anon_sym_alias] = ACTIONS(3628), + [anon_sym_global] = ACTIONS(3628), + [anon_sym_using] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_event] = ACTIONS(3628), + [anon_sym_namespace] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_ref] = ACTIONS(3628), + [anon_sym_struct] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_interface] = ACTIONS(3628), + [anon_sym_delegate] = ACTIONS(3628), + [anon_sym_record] = ACTIONS(3628), + [anon_sym_public] = ACTIONS(3628), + [anon_sym_private] = ACTIONS(3628), + [anon_sym_readonly] = ACTIONS(3628), + [anon_sym_abstract] = ACTIONS(3628), + [anon_sym_async] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_file] = ACTIONS(3628), + [anon_sym_fixed] = ACTIONS(3628), + [anon_sym_internal] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_override] = ACTIONS(3628), + [anon_sym_partial] = ACTIONS(3628), + [anon_sym_protected] = ACTIONS(3628), + [anon_sym_required] = ACTIONS(3628), + [anon_sym_sealed] = ACTIONS(3628), + [anon_sym_virtual] = ACTIONS(3628), + [anon_sym_volatile] = ACTIONS(3628), + [anon_sym_where] = ACTIONS(3628), + [anon_sym_notnull] = ACTIONS(3628), + [anon_sym_unmanaged] = ACTIONS(3628), + [anon_sym_implicit] = ACTIONS(3628), + [anon_sym_explicit] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_scoped] = ACTIONS(3628), + [anon_sym_var] = ACTIONS(3628), + [sym_predefined_type] = ACTIONS(3628), + [anon_sym_yield] = ACTIONS(3628), + [anon_sym_when] = ACTIONS(3628), + [anon_sym_from] = ACTIONS(3628), + [anon_sym_into] = ACTIONS(3628), + [anon_sym_join] = ACTIONS(3628), + [anon_sym_on] = ACTIONS(3628), + [anon_sym_equals] = ACTIONS(3628), + [anon_sym_let] = ACTIONS(3628), + [anon_sym_orderby] = ACTIONS(3628), + [anon_sym_ascending] = ACTIONS(3628), + [anon_sym_descending] = ACTIONS(3628), + [anon_sym_group] = ACTIONS(3628), + [anon_sym_by] = ACTIONS(3628), + [anon_sym_select] = ACTIONS(3628), + [sym_grit_metavariable] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token3] = ACTIONS(3630), + [aux_sym_preproc_else_token1] = ACTIONS(3630), + [aux_sym_preproc_elif_token1] = ACTIONS(3630), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464119,10 +463898,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2770] = { - [sym__variable_designation] = STATE(5041), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(2770), [sym_preproc_endregion] = STATE(2770), [sym_preproc_line] = STATE(2770), @@ -464132,100 +463907,82 @@ 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(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_in] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4141), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4145), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4429), + [anon_sym_alias] = ACTIONS(4429), + [anon_sym_global] = ACTIONS(4429), + [anon_sym_LBRACK] = ACTIONS(4431), + [anon_sym_COLON] = ACTIONS(4431), + [anon_sym_COMMA] = ACTIONS(4431), + [anon_sym_LPAREN] = ACTIONS(4431), + [anon_sym_LBRACE] = ACTIONS(4431), + [anon_sym_file] = ACTIONS(4429), + [anon_sym_LT] = ACTIONS(4429), + [anon_sym_GT] = ACTIONS(4429), + [anon_sym_where] = ACTIONS(4429), + [anon_sym_QMARK] = ACTIONS(4429), + [anon_sym_notnull] = ACTIONS(4429), + [anon_sym_unmanaged] = ACTIONS(4429), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_scoped] = ACTIONS(4429), + [anon_sym_var] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4431), + [anon_sym_yield] = ACTIONS(4429), + [anon_sym_switch] = ACTIONS(4429), + [anon_sym_when] = ACTIONS(4429), + [sym_discard] = ACTIONS(4429), + [anon_sym_DOT_DOT] = ACTIONS(4431), + [anon_sym_LT_EQ] = ACTIONS(4431), + [anon_sym_GT_EQ] = ACTIONS(4431), + [anon_sym_and] = ACTIONS(4429), + [anon_sym_or] = ACTIONS(4429), + [anon_sym_EQ_EQ] = ACTIONS(4431), + [anon_sym_BANG_EQ] = ACTIONS(4431), + [anon_sym_AMP_AMP] = ACTIONS(4431), + [anon_sym_PIPE_PIPE] = ACTIONS(4431), + [anon_sym_AMP] = ACTIONS(4429), + [sym_op_bitwise_or] = ACTIONS(4429), + [anon_sym_CARET] = ACTIONS(4431), + [sym_op_left_shift] = ACTIONS(4431), + [sym_op_right_shift] = ACTIONS(4429), + [sym_op_unsigned_right_shift] = ACTIONS(4431), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4429), + [sym_op_divide] = ACTIONS(4429), + [sym_op_modulo] = ACTIONS(4431), + [sym_op_coalescing] = ACTIONS(4431), + [anon_sym_BANG] = ACTIONS(4429), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [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), + [anon_sym_as] = ACTIONS(4429), + [anon_sym_is] = ACTIONS(4429), + [anon_sym_DASH_GT] = ACTIONS(4431), + [anon_sym_with] = ACTIONS(4429), + [sym_grit_metavariable] = ACTIONS(4431), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4431), }, [2771] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2771), [sym_preproc_endregion] = STATE(2771), [sym_preproc_line] = STATE(2771), @@ -464235,50 +463992,69 @@ 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_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4868), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4870), - [anon_sym_from] = ACTIONS(4790), - [anon_sym_join] = ACTIONS(4790), - [anon_sym_let] = ACTIONS(4790), - [anon_sym_orderby] = ACTIONS(4790), - [anon_sym_ascending] = ACTIONS(4790), - [anon_sym_descending] = ACTIONS(4790), - [anon_sym_group] = ACTIONS(4790), - [anon_sym_select] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4790), + [sym__identifier_token] = ACTIONS(4314), + [anon_sym_alias] = ACTIONS(4314), + [anon_sym_global] = ACTIONS(4314), + [anon_sym_LBRACK] = ACTIONS(4316), + [anon_sym_COLON] = ACTIONS(4316), + [anon_sym_COMMA] = ACTIONS(4316), + [anon_sym_LPAREN] = ACTIONS(4316), + [anon_sym_LBRACE] = ACTIONS(4316), + [anon_sym_file] = ACTIONS(4314), + [anon_sym_LT] = ACTIONS(4314), + [anon_sym_GT] = ACTIONS(4314), + [anon_sym_where] = ACTIONS(4314), + [anon_sym_QMARK] = ACTIONS(4314), + [anon_sym_notnull] = ACTIONS(4314), + [anon_sym_unmanaged] = ACTIONS(4314), + [anon_sym_DOT] = ACTIONS(4314), + [anon_sym_scoped] = ACTIONS(4314), + [anon_sym_var] = ACTIONS(4314), + [anon_sym_STAR] = ACTIONS(4316), + [anon_sym_yield] = ACTIONS(4314), + [anon_sym_switch] = ACTIONS(4314), + [anon_sym_when] = ACTIONS(4314), + [sym_discard] = ACTIONS(4314), + [anon_sym_DOT_DOT] = ACTIONS(4316), + [anon_sym_LT_EQ] = ACTIONS(4316), + [anon_sym_GT_EQ] = ACTIONS(4316), + [anon_sym_and] = ACTIONS(4314), + [anon_sym_or] = ACTIONS(4314), + [anon_sym_EQ_EQ] = ACTIONS(4316), + [anon_sym_BANG_EQ] = ACTIONS(4316), + [anon_sym_AMP_AMP] = ACTIONS(4316), + [anon_sym_PIPE_PIPE] = ACTIONS(4316), + [anon_sym_AMP] = ACTIONS(4314), + [sym_op_bitwise_or] = ACTIONS(4314), + [anon_sym_CARET] = ACTIONS(4316), + [sym_op_left_shift] = ACTIONS(4316), + [sym_op_right_shift] = ACTIONS(4314), + [sym_op_unsigned_right_shift] = ACTIONS(4316), + [anon_sym_PLUS] = ACTIONS(4314), + [anon_sym_DASH] = ACTIONS(4314), + [sym_op_divide] = ACTIONS(4314), + [sym_op_modulo] = ACTIONS(4316), + [sym_op_coalescing] = ACTIONS(4316), + [anon_sym_BANG] = ACTIONS(4314), + [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4316), + [anon_sym_from] = ACTIONS(4314), + [anon_sym_into] = ACTIONS(4314), + [anon_sym_join] = ACTIONS(4314), + [anon_sym_on] = ACTIONS(4314), + [anon_sym_equals] = ACTIONS(4314), + [anon_sym_let] = ACTIONS(4314), + [anon_sym_orderby] = ACTIONS(4314), + [anon_sym_ascending] = ACTIONS(4314), + [anon_sym_descending] = ACTIONS(4314), + [anon_sym_group] = ACTIONS(4314), + [anon_sym_by] = ACTIONS(4314), + [anon_sym_select] = ACTIONS(4314), + [anon_sym_as] = ACTIONS(4314), + [anon_sym_is] = ACTIONS(4314), + [anon_sym_DASH_GT] = ACTIONS(4316), + [anon_sym_with] = ACTIONS(4314), + [sym_grit_metavariable] = ACTIONS(4316), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464289,8 +464065,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(4316), }, [2772] = { + [sym__variable_designation] = STATE(4529), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2772), [sym_preproc_endregion] = STATE(2772), [sym_preproc_line] = STATE(2772), @@ -464300,71 +464081,66 @@ 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(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4874), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4256), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464377,27 +464153,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2773] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2773), [sym_preproc_endregion] = STATE(2773), [sym_preproc_line] = STATE(2773), @@ -464407,50 +464162,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4790), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_RBRACK] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4851), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4790), - [aux_sym_preproc_else_token1] = ACTIONS(4790), - [aux_sym_preproc_elif_token1] = ACTIONS(4790), + [sym__identifier_token] = ACTIONS(4912), + [anon_sym_extern] = ACTIONS(4912), + [anon_sym_alias] = ACTIONS(4912), + [anon_sym_global] = ACTIONS(4912), + [anon_sym_using] = ACTIONS(4912), + [anon_sym_unsafe] = ACTIONS(4912), + [anon_sym_static] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_event] = ACTIONS(4912), + [anon_sym_namespace] = ACTIONS(4912), + [anon_sym_class] = ACTIONS(4912), + [anon_sym_ref] = ACTIONS(4912), + [anon_sym_struct] = ACTIONS(4912), + [anon_sym_enum] = ACTIONS(4912), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_interface] = ACTIONS(4912), + [anon_sym_delegate] = ACTIONS(4912), + [anon_sym_record] = ACTIONS(4912), + [anon_sym_public] = ACTIONS(4912), + [anon_sym_private] = ACTIONS(4912), + [anon_sym_readonly] = ACTIONS(4912), + [anon_sym_abstract] = ACTIONS(4912), + [anon_sym_async] = ACTIONS(4912), + [anon_sym_const] = ACTIONS(4912), + [anon_sym_file] = ACTIONS(4912), + [anon_sym_fixed] = ACTIONS(4912), + [anon_sym_internal] = ACTIONS(4912), + [anon_sym_new] = ACTIONS(4912), + [anon_sym_override] = ACTIONS(4912), + [anon_sym_partial] = ACTIONS(4912), + [anon_sym_protected] = ACTIONS(4912), + [anon_sym_required] = ACTIONS(4912), + [anon_sym_sealed] = ACTIONS(4912), + [anon_sym_virtual] = ACTIONS(4912), + [anon_sym_volatile] = ACTIONS(4912), + [anon_sym_where] = ACTIONS(4912), + [anon_sym_notnull] = ACTIONS(4912), + [anon_sym_unmanaged] = ACTIONS(4912), + [anon_sym_implicit] = ACTIONS(4912), + [anon_sym_explicit] = ACTIONS(4912), + [anon_sym_TILDE] = ACTIONS(4914), + [anon_sym_scoped] = ACTIONS(4912), + [anon_sym_var] = ACTIONS(4912), + [sym_predefined_type] = ACTIONS(4912), + [anon_sym_yield] = ACTIONS(4912), + [anon_sym_when] = ACTIONS(4912), + [anon_sym_from] = ACTIONS(4912), + [anon_sym_into] = ACTIONS(4912), + [anon_sym_join] = ACTIONS(4912), + [anon_sym_on] = ACTIONS(4912), + [anon_sym_equals] = ACTIONS(4912), + [anon_sym_let] = ACTIONS(4912), + [anon_sym_orderby] = ACTIONS(4912), + [anon_sym_ascending] = ACTIONS(4912), + [anon_sym_descending] = ACTIONS(4912), + [anon_sym_group] = ACTIONS(4912), + [anon_sym_by] = ACTIONS(4912), + [anon_sym_select] = ACTIONS(4912), + [sym_grit_metavariable] = ACTIONS(4914), + [aux_sym_preproc_if_token1] = ACTIONS(4914), + [aux_sym_preproc_if_token3] = ACTIONS(4914), + [aux_sym_preproc_else_token1] = ACTIONS(4914), + [aux_sym_preproc_elif_token1] = ACTIONS(4914), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464472,71 +464247,70 @@ 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(4876), - [anon_sym_extern] = ACTIONS(4876), - [anon_sym_alias] = ACTIONS(4876), - [anon_sym_global] = ACTIONS(4876), - [anon_sym_using] = ACTIONS(4876), - [anon_sym_unsafe] = ACTIONS(4876), - [anon_sym_EQ] = ACTIONS(4878), - [anon_sym_static] = ACTIONS(4876), - [anon_sym_LBRACK] = ACTIONS(4878), - [anon_sym_LPAREN] = ACTIONS(4878), - [anon_sym_event] = ACTIONS(4876), - [anon_sym_namespace] = ACTIONS(4876), - [anon_sym_class] = ACTIONS(4876), - [anon_sym_ref] = ACTIONS(4876), - [anon_sym_struct] = ACTIONS(4876), - [anon_sym_enum] = ACTIONS(4876), - [anon_sym_RBRACE] = ACTIONS(4878), - [anon_sym_interface] = ACTIONS(4876), - [anon_sym_delegate] = ACTIONS(4876), - [anon_sym_record] = ACTIONS(4876), - [anon_sym_public] = ACTIONS(4876), - [anon_sym_private] = ACTIONS(4876), - [anon_sym_readonly] = ACTIONS(4876), - [anon_sym_abstract] = ACTIONS(4876), - [anon_sym_async] = ACTIONS(4876), - [anon_sym_const] = ACTIONS(4876), - [anon_sym_file] = ACTIONS(4876), - [anon_sym_fixed] = ACTIONS(4876), - [anon_sym_internal] = ACTIONS(4876), - [anon_sym_new] = ACTIONS(4876), - [anon_sym_override] = ACTIONS(4876), - [anon_sym_partial] = ACTIONS(4876), - [anon_sym_protected] = ACTIONS(4876), - [anon_sym_required] = ACTIONS(4876), - [anon_sym_sealed] = ACTIONS(4876), - [anon_sym_virtual] = ACTIONS(4876), - [anon_sym_volatile] = ACTIONS(4876), - [anon_sym_where] = ACTIONS(4876), - [anon_sym_notnull] = ACTIONS(4876), - [anon_sym_unmanaged] = ACTIONS(4876), - [anon_sym_TILDE] = ACTIONS(4878), - [anon_sym_implicit] = ACTIONS(4876), - [anon_sym_explicit] = ACTIONS(4876), - [anon_sym_scoped] = ACTIONS(4876), - [anon_sym_var] = ACTIONS(4876), - [sym_predefined_type] = ACTIONS(4876), - [anon_sym_yield] = ACTIONS(4876), - [anon_sym_when] = ACTIONS(4876), - [anon_sym_from] = ACTIONS(4876), - [anon_sym_into] = ACTIONS(4876), - [anon_sym_join] = ACTIONS(4876), - [anon_sym_on] = ACTIONS(4876), - [anon_sym_equals] = ACTIONS(4876), - [anon_sym_let] = ACTIONS(4876), - [anon_sym_orderby] = ACTIONS(4876), - [anon_sym_ascending] = ACTIONS(4876), - [anon_sym_descending] = ACTIONS(4876), - [anon_sym_group] = ACTIONS(4876), - [anon_sym_by] = ACTIONS(4876), - [anon_sym_select] = ACTIONS(4876), - [sym_grit_metavariable] = ACTIONS(4878), - [aux_sym_preproc_if_token1] = ACTIONS(4878), - [aux_sym_preproc_if_token3] = ACTIONS(4878), - [aux_sym_preproc_else_token1] = ACTIONS(4878), - [aux_sym_preproc_elif_token1] = ACTIONS(4878), + [sym__identifier_token] = ACTIONS(4916), + [anon_sym_extern] = ACTIONS(4916), + [anon_sym_alias] = ACTIONS(4916), + [anon_sym_global] = ACTIONS(4916), + [anon_sym_using] = ACTIONS(4916), + [anon_sym_unsafe] = ACTIONS(4916), + [anon_sym_static] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_LPAREN] = ACTIONS(4918), + [anon_sym_event] = ACTIONS(4916), + [anon_sym_namespace] = ACTIONS(4916), + [anon_sym_class] = ACTIONS(4916), + [anon_sym_ref] = ACTIONS(4916), + [anon_sym_struct] = ACTIONS(4916), + [anon_sym_enum] = ACTIONS(4916), + [anon_sym_RBRACE] = ACTIONS(4918), + [anon_sym_interface] = ACTIONS(4916), + [anon_sym_delegate] = ACTIONS(4916), + [anon_sym_record] = ACTIONS(4916), + [anon_sym_public] = ACTIONS(4916), + [anon_sym_private] = ACTIONS(4916), + [anon_sym_readonly] = ACTIONS(4916), + [anon_sym_abstract] = ACTIONS(4916), + [anon_sym_async] = ACTIONS(4916), + [anon_sym_const] = ACTIONS(4916), + [anon_sym_file] = ACTIONS(4916), + [anon_sym_fixed] = ACTIONS(4916), + [anon_sym_internal] = ACTIONS(4916), + [anon_sym_new] = ACTIONS(4916), + [anon_sym_override] = ACTIONS(4916), + [anon_sym_partial] = ACTIONS(4916), + [anon_sym_protected] = ACTIONS(4916), + [anon_sym_required] = ACTIONS(4916), + [anon_sym_sealed] = ACTIONS(4916), + [anon_sym_virtual] = ACTIONS(4916), + [anon_sym_volatile] = ACTIONS(4916), + [anon_sym_where] = ACTIONS(4916), + [anon_sym_notnull] = ACTIONS(4916), + [anon_sym_unmanaged] = ACTIONS(4916), + [anon_sym_implicit] = ACTIONS(4916), + [anon_sym_explicit] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4918), + [anon_sym_scoped] = ACTIONS(4916), + [anon_sym_var] = ACTIONS(4916), + [sym_predefined_type] = ACTIONS(4916), + [anon_sym_yield] = ACTIONS(4916), + [anon_sym_when] = ACTIONS(4916), + [anon_sym_from] = ACTIONS(4916), + [anon_sym_into] = ACTIONS(4916), + [anon_sym_join] = ACTIONS(4916), + [anon_sym_on] = ACTIONS(4916), + [anon_sym_equals] = ACTIONS(4916), + [anon_sym_let] = ACTIONS(4916), + [anon_sym_orderby] = ACTIONS(4916), + [anon_sym_ascending] = ACTIONS(4916), + [anon_sym_descending] = ACTIONS(4916), + [anon_sym_group] = ACTIONS(4916), + [anon_sym_by] = ACTIONS(4916), + [anon_sym_select] = ACTIONS(4916), + [sym_grit_metavariable] = ACTIONS(4918), + [aux_sym_preproc_if_token1] = ACTIONS(4918), + [aux_sym_preproc_if_token3] = ACTIONS(4918), + [aux_sym_preproc_else_token1] = ACTIONS(4918), + [aux_sym_preproc_elif_token1] = ACTIONS(4918), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464549,6 +464323,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2775] = { + [sym__variable_designation] = STATE(4532), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2775), [sym_preproc_endregion] = STATE(2775), [sym_preproc_line] = STATE(2775), @@ -464558,71 +464336,66 @@ 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(4880), - [anon_sym_extern] = ACTIONS(4880), - [anon_sym_alias] = ACTIONS(4880), - [anon_sym_global] = ACTIONS(4880), - [anon_sym_using] = ACTIONS(4880), - [anon_sym_unsafe] = ACTIONS(4880), - [anon_sym_EQ] = ACTIONS(4882), - [anon_sym_static] = ACTIONS(4880), - [anon_sym_LBRACK] = ACTIONS(4884), - [anon_sym_LPAREN] = ACTIONS(4884), - [anon_sym_event] = ACTIONS(4880), - [anon_sym_namespace] = ACTIONS(4880), - [anon_sym_class] = ACTIONS(4880), - [anon_sym_ref] = ACTIONS(4880), - [anon_sym_struct] = ACTIONS(4880), - [anon_sym_enum] = ACTIONS(4880), - [anon_sym_RBRACE] = ACTIONS(4884), - [anon_sym_interface] = ACTIONS(4880), - [anon_sym_delegate] = ACTIONS(4880), - [anon_sym_record] = ACTIONS(4880), - [anon_sym_public] = ACTIONS(4880), - [anon_sym_private] = ACTIONS(4880), - [anon_sym_readonly] = ACTIONS(4880), - [anon_sym_abstract] = ACTIONS(4880), - [anon_sym_async] = ACTIONS(4880), - [anon_sym_const] = ACTIONS(4880), - [anon_sym_file] = ACTIONS(4880), - [anon_sym_fixed] = ACTIONS(4880), - [anon_sym_internal] = ACTIONS(4880), - [anon_sym_new] = ACTIONS(4880), - [anon_sym_override] = ACTIONS(4880), - [anon_sym_partial] = ACTIONS(4880), - [anon_sym_protected] = ACTIONS(4880), - [anon_sym_required] = ACTIONS(4880), - [anon_sym_sealed] = ACTIONS(4880), - [anon_sym_virtual] = ACTIONS(4880), - [anon_sym_volatile] = ACTIONS(4880), - [anon_sym_where] = ACTIONS(4880), - [anon_sym_notnull] = ACTIONS(4880), - [anon_sym_unmanaged] = ACTIONS(4880), - [anon_sym_TILDE] = ACTIONS(4884), - [anon_sym_implicit] = ACTIONS(4880), - [anon_sym_explicit] = ACTIONS(4880), - [anon_sym_scoped] = ACTIONS(4880), - [anon_sym_var] = ACTIONS(4880), - [sym_predefined_type] = ACTIONS(4880), - [anon_sym_yield] = ACTIONS(4880), - [anon_sym_when] = ACTIONS(4880), - [anon_sym_from] = ACTIONS(4880), - [anon_sym_into] = ACTIONS(4880), - [anon_sym_join] = ACTIONS(4880), - [anon_sym_on] = ACTIONS(4880), - [anon_sym_equals] = ACTIONS(4880), - [anon_sym_let] = ACTIONS(4880), - [anon_sym_orderby] = ACTIONS(4880), - [anon_sym_ascending] = ACTIONS(4880), - [anon_sym_descending] = ACTIONS(4880), - [anon_sym_group] = ACTIONS(4880), - [anon_sym_by] = ACTIONS(4880), - [anon_sym_select] = ACTIONS(4880), - [sym_grit_metavariable] = ACTIONS(4884), - [aux_sym_preproc_if_token1] = ACTIONS(4884), - [aux_sym_preproc_if_token3] = ACTIONS(4884), - [aux_sym_preproc_else_token1] = ACTIONS(4884), - [aux_sym_preproc_elif_token1] = ACTIONS(4884), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4308), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464635,6 +464408,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2776] = { + [sym__variable_designation] = STATE(4630), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2776), [sym_preproc_endregion] = STATE(2776), [sym_preproc_line] = STATE(2776), @@ -464644,71 +464421,66 @@ 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(4355), - [anon_sym_alias] = ACTIONS(4355), - [anon_sym_global] = ACTIONS(4355), - [anon_sym_LBRACK] = ACTIONS(4357), - [anon_sym_COLON] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4357), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_RPAREN] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4357), - [anon_sym_file] = ACTIONS(4355), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_notnull] = ACTIONS(4355), - [anon_sym_unmanaged] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_PLUS_PLUS] = ACTIONS(4357), - [anon_sym_DASH_DASH] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4357), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4357), - [anon_sym_CARET] = ACTIONS(4357), - [anon_sym_PIPE] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_LT] = ACTIONS(4357), - [anon_sym_GT_GT] = ACTIONS(4355), - [anon_sym_GT_GT_GT] = ACTIONS(4357), - [anon_sym_EQ_EQ] = ACTIONS(4357), - [anon_sym_BANG_EQ] = ACTIONS(4357), - [anon_sym_GT_EQ] = ACTIONS(4357), - [anon_sym_LT_EQ] = ACTIONS(4357), - [anon_sym_DOT] = ACTIONS(4874), - [anon_sym_scoped] = ACTIONS(4355), - [anon_sym_var] = ACTIONS(4355), - [anon_sym_yield] = ACTIONS(4355), - [anon_sym_switch] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [sym_discard] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4357), - [anon_sym_and] = ACTIONS(4355), - [anon_sym_or] = ACTIONS(4355), - [anon_sym_AMP_AMP] = ACTIONS(4357), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [sym_op_coalescing] = ACTIONS(4357), - [anon_sym_from] = ACTIONS(4355), - [anon_sym_into] = ACTIONS(4355), - [anon_sym_join] = ACTIONS(4355), - [anon_sym_on] = ACTIONS(4355), - [anon_sym_equals] = ACTIONS(4355), - [anon_sym_let] = ACTIONS(4355), - [anon_sym_orderby] = ACTIONS(4355), - [anon_sym_ascending] = ACTIONS(4355), - [anon_sym_descending] = ACTIONS(4355), - [anon_sym_group] = ACTIONS(4355), - [anon_sym_by] = ACTIONS(4355), - [anon_sym_select] = ACTIONS(4355), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_DASH_GT] = ACTIONS(4357), - [anon_sym_with] = ACTIONS(4355), - [sym_grit_metavariable] = ACTIONS(4357), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4304), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464721,27 +464493,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2777] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2777), [sym_preproc_endregion] = STATE(2777), [sym_preproc_line] = STATE(2777), @@ -464751,50 +464502,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(4868), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4870), - [anon_sym_from] = ACTIONS(4748), - [anon_sym_join] = ACTIONS(4748), - [anon_sym_let] = ACTIONS(4748), - [anon_sym_orderby] = ACTIONS(4748), - [anon_sym_ascending] = ACTIONS(4748), - [anon_sym_descending] = ACTIONS(4748), - [anon_sym_group] = ACTIONS(4748), - [anon_sym_select] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4748), + [sym__identifier_token] = ACTIONS(4920), + [anon_sym_extern] = ACTIONS(4920), + [anon_sym_alias] = ACTIONS(4920), + [anon_sym_global] = ACTIONS(4920), + [anon_sym_using] = ACTIONS(4920), + [anon_sym_unsafe] = ACTIONS(4920), + [anon_sym_static] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_event] = ACTIONS(4920), + [anon_sym_namespace] = ACTIONS(4920), + [anon_sym_class] = ACTIONS(4920), + [anon_sym_ref] = ACTIONS(4920), + [anon_sym_struct] = ACTIONS(4920), + [anon_sym_enum] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4922), + [anon_sym_interface] = ACTIONS(4920), + [anon_sym_delegate] = ACTIONS(4920), + [anon_sym_record] = ACTIONS(4920), + [anon_sym_public] = ACTIONS(4920), + [anon_sym_private] = ACTIONS(4920), + [anon_sym_readonly] = ACTIONS(4920), + [anon_sym_abstract] = ACTIONS(4920), + [anon_sym_async] = ACTIONS(4920), + [anon_sym_const] = ACTIONS(4920), + [anon_sym_file] = ACTIONS(4920), + [anon_sym_fixed] = ACTIONS(4920), + [anon_sym_internal] = ACTIONS(4920), + [anon_sym_new] = ACTIONS(4920), + [anon_sym_override] = ACTIONS(4920), + [anon_sym_partial] = ACTIONS(4920), + [anon_sym_protected] = ACTIONS(4920), + [anon_sym_required] = ACTIONS(4920), + [anon_sym_sealed] = ACTIONS(4920), + [anon_sym_virtual] = ACTIONS(4920), + [anon_sym_volatile] = ACTIONS(4920), + [anon_sym_where] = ACTIONS(4920), + [anon_sym_notnull] = ACTIONS(4920), + [anon_sym_unmanaged] = ACTIONS(4920), + [anon_sym_implicit] = ACTIONS(4920), + [anon_sym_explicit] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4922), + [anon_sym_scoped] = ACTIONS(4920), + [anon_sym_var] = ACTIONS(4920), + [sym_predefined_type] = ACTIONS(4920), + [anon_sym_yield] = ACTIONS(4920), + [anon_sym_when] = ACTIONS(4920), + [anon_sym_from] = ACTIONS(4920), + [anon_sym_into] = ACTIONS(4920), + [anon_sym_join] = ACTIONS(4920), + [anon_sym_on] = ACTIONS(4920), + [anon_sym_equals] = ACTIONS(4920), + [anon_sym_let] = ACTIONS(4920), + [anon_sym_orderby] = ACTIONS(4920), + [anon_sym_ascending] = ACTIONS(4920), + [anon_sym_descending] = ACTIONS(4920), + [anon_sym_group] = ACTIONS(4920), + [anon_sym_by] = ACTIONS(4920), + [anon_sym_select] = ACTIONS(4920), + [sym_grit_metavariable] = ACTIONS(4922), + [aux_sym_preproc_if_token1] = 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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464807,10 +464578,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2778] = { - [sym__variable_designation] = STATE(4935), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(2778), [sym_preproc_endregion] = STATE(2778), [sym_preproc_line] = STATE(2778), @@ -464820,67 +464587,70 @@ 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(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_in] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4141), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(4924), + [anon_sym_extern] = ACTIONS(4924), + [anon_sym_alias] = ACTIONS(4924), + [anon_sym_global] = ACTIONS(4924), + [anon_sym_using] = ACTIONS(4924), + [anon_sym_unsafe] = ACTIONS(4924), + [anon_sym_static] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4926), + [anon_sym_event] = ACTIONS(4924), + [anon_sym_namespace] = ACTIONS(4924), + [anon_sym_class] = ACTIONS(4924), + [anon_sym_ref] = ACTIONS(4924), + [anon_sym_struct] = ACTIONS(4924), + [anon_sym_enum] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4926), + [anon_sym_interface] = ACTIONS(4924), + [anon_sym_delegate] = ACTIONS(4924), + [anon_sym_record] = ACTIONS(4924), + [anon_sym_public] = ACTIONS(4924), + [anon_sym_private] = ACTIONS(4924), + [anon_sym_readonly] = ACTIONS(4924), + [anon_sym_abstract] = ACTIONS(4924), + [anon_sym_async] = ACTIONS(4924), + [anon_sym_const] = ACTIONS(4924), + [anon_sym_file] = ACTIONS(4924), + [anon_sym_fixed] = ACTIONS(4924), + [anon_sym_internal] = ACTIONS(4924), + [anon_sym_new] = ACTIONS(4924), + [anon_sym_override] = ACTIONS(4924), + [anon_sym_partial] = ACTIONS(4924), + [anon_sym_protected] = ACTIONS(4924), + [anon_sym_required] = ACTIONS(4924), + [anon_sym_sealed] = ACTIONS(4924), + [anon_sym_virtual] = ACTIONS(4924), + [anon_sym_volatile] = ACTIONS(4924), + [anon_sym_where] = ACTIONS(4924), + [anon_sym_notnull] = ACTIONS(4924), + [anon_sym_unmanaged] = ACTIONS(4924), + [anon_sym_implicit] = ACTIONS(4924), + [anon_sym_explicit] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4926), + [anon_sym_scoped] = ACTIONS(4924), + [anon_sym_var] = ACTIONS(4924), + [sym_predefined_type] = ACTIONS(4924), + [anon_sym_yield] = ACTIONS(4924), + [anon_sym_when] = ACTIONS(4924), + [anon_sym_from] = ACTIONS(4924), + [anon_sym_into] = ACTIONS(4924), + [anon_sym_join] = ACTIONS(4924), + [anon_sym_on] = ACTIONS(4924), + [anon_sym_equals] = ACTIONS(4924), + [anon_sym_let] = ACTIONS(4924), + [anon_sym_orderby] = ACTIONS(4924), + [anon_sym_ascending] = ACTIONS(4924), + [anon_sym_descending] = ACTIONS(4924), + [anon_sym_group] = ACTIONS(4924), + [anon_sym_by] = ACTIONS(4924), + [anon_sym_select] = ACTIONS(4924), + [sym_grit_metavariable] = ACTIONS(4926), + [aux_sym_preproc_if_token1] = ACTIONS(4926), + [aux_sym_preproc_if_token3] = ACTIONS(4926), + [aux_sym_preproc_else_token1] = ACTIONS(4926), + [aux_sym_preproc_elif_token1] = ACTIONS(4926), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464893,27 +464663,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2779] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), + [sym__variable_designation] = STATE(4569), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2779), [sym_preproc_endregion] = STATE(2779), [sym_preproc_line] = STATE(2779), @@ -464923,50 +464676,66 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4782), - [anon_sym_QMARK] = ACTIONS(4868), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4870), - [anon_sym_from] = ACTIONS(4782), - [anon_sym_join] = ACTIONS(4782), - [anon_sym_let] = ACTIONS(4782), - [anon_sym_orderby] = ACTIONS(4782), - [anon_sym_ascending] = ACTIONS(4782), - [anon_sym_descending] = ACTIONS(4782), - [anon_sym_group] = ACTIONS(4782), - [anon_sym_select] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4782), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4252), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464988,71 +464757,70 @@ 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(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4886), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [sym__identifier_token] = ACTIONS(4928), + [anon_sym_extern] = ACTIONS(4928), + [anon_sym_alias] = ACTIONS(4928), + [anon_sym_global] = ACTIONS(4928), + [anon_sym_using] = ACTIONS(4928), + [anon_sym_unsafe] = ACTIONS(4928), + [anon_sym_static] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4930), + [anon_sym_event] = ACTIONS(4928), + [anon_sym_namespace] = ACTIONS(4928), + [anon_sym_class] = ACTIONS(4928), + [anon_sym_ref] = ACTIONS(4928), + [anon_sym_struct] = ACTIONS(4928), + [anon_sym_enum] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4930), + [anon_sym_interface] = ACTIONS(4928), + [anon_sym_delegate] = ACTIONS(4928), + [anon_sym_record] = ACTIONS(4928), + [anon_sym_public] = ACTIONS(4928), + [anon_sym_private] = ACTIONS(4928), + [anon_sym_readonly] = ACTIONS(4928), + [anon_sym_abstract] = ACTIONS(4928), + [anon_sym_async] = ACTIONS(4928), + [anon_sym_const] = ACTIONS(4928), + [anon_sym_file] = ACTIONS(4928), + [anon_sym_fixed] = ACTIONS(4928), + [anon_sym_internal] = ACTIONS(4928), + [anon_sym_new] = ACTIONS(4928), + [anon_sym_override] = ACTIONS(4928), + [anon_sym_partial] = ACTIONS(4928), + [anon_sym_protected] = ACTIONS(4928), + [anon_sym_required] = ACTIONS(4928), + [anon_sym_sealed] = ACTIONS(4928), + [anon_sym_virtual] = ACTIONS(4928), + [anon_sym_volatile] = ACTIONS(4928), + [anon_sym_where] = ACTIONS(4928), + [anon_sym_notnull] = ACTIONS(4928), + [anon_sym_unmanaged] = ACTIONS(4928), + [anon_sym_implicit] = ACTIONS(4928), + [anon_sym_explicit] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4930), + [anon_sym_scoped] = ACTIONS(4928), + [anon_sym_var] = ACTIONS(4928), + [sym_predefined_type] = ACTIONS(4928), + [anon_sym_yield] = ACTIONS(4928), + [anon_sym_when] = ACTIONS(4928), + [anon_sym_from] = ACTIONS(4928), + [anon_sym_into] = ACTIONS(4928), + [anon_sym_join] = ACTIONS(4928), + [anon_sym_on] = ACTIONS(4928), + [anon_sym_equals] = ACTIONS(4928), + [anon_sym_let] = ACTIONS(4928), + [anon_sym_orderby] = ACTIONS(4928), + [anon_sym_ascending] = ACTIONS(4928), + [anon_sym_descending] = ACTIONS(4928), + [anon_sym_group] = ACTIONS(4928), + [anon_sym_by] = ACTIONS(4928), + [anon_sym_select] = ACTIONS(4928), + [sym_grit_metavariable] = ACTIONS(4930), + [aux_sym_preproc_if_token1] = ACTIONS(4930), + [aux_sym_preproc_if_token3] = ACTIONS(4930), + [aux_sym_preproc_else_token1] = ACTIONS(4930), + [aux_sym_preproc_elif_token1] = ACTIONS(4930), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465074,70 +464842,70 @@ 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(3187), - [anon_sym_alias] = ACTIONS(3187), - [anon_sym_global] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_EQ] = ACTIONS(3187), [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3187), + [anon_sym_COLON] = ACTIONS(3189), [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACK] = ACTIONS(3189), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_file] = ACTIONS(3187), + [anon_sym_RPAREN] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), [anon_sym_LT] = ACTIONS(3187), [anon_sym_GT] = ACTIONS(3187), - [anon_sym_where] = ACTIONS(3187), + [anon_sym_in] = ACTIONS(3187), [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_notnull] = ACTIONS(3187), - [anon_sym_unmanaged] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_scoped] = ACTIONS(3187), - [anon_sym_COLON_COLON] = ACTIONS(3189), - [anon_sym_var] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_switch] = ACTIONS(3187), - [anon_sym_when] = ACTIONS(3187), - [sym_discard] = ACTIONS(3187), + [anon_sym_EQ_GT] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_when] = ACTIONS(3189), [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3189), + [anon_sym_PLUS_EQ] = ACTIONS(3189), + [anon_sym_DASH_EQ] = ACTIONS(3189), + [anon_sym_STAR_EQ] = ACTIONS(3189), + [anon_sym_SLASH_EQ] = ACTIONS(3189), + [anon_sym_PERCENT_EQ] = ACTIONS(3189), + [anon_sym_AMP_EQ] = ACTIONS(3189), + [anon_sym_CARET_EQ] = ACTIONS(3189), + [anon_sym_PIPE_EQ] = ACTIONS(3189), + [anon_sym_LT_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_GT_EQ] = ACTIONS(3189), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), [anon_sym_AMP_AMP] = ACTIONS(3189), [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = 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_as] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [sym_op_left_shift] = ACTIONS(3187), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3187), + [sym_op_coalescing] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_into] = ACTIONS(3189), + [anon_sym_on] = ACTIONS(3189), + [anon_sym_equals] = ACTIONS(3189), + [anon_sym_by] = ACTIONS(3189), + [anon_sym_as] = ACTIONS(3189), + [anon_sym_is] = ACTIONS(3189), [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3187), - [sym_grit_metavariable] = ACTIONS(3189), + [anon_sym_with] = 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), @@ -465148,9 +464916,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(3189), }, [2782] = { + [sym__variable_designation] = STATE(4529), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2782), [sym_preproc_endregion] = STATE(2782), [sym_preproc_line] = STATE(2782), @@ -465160,70 +464931,66 @@ 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(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3696), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4256), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465234,30 +465001,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(3696), }, [2783] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2783), [sym_preproc_endregion] = STATE(2783), [sym_preproc_line] = STATE(2783), @@ -465267,50 +465012,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4770), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4770), - [anon_sym_RBRACK] = ACTIONS(4770), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4770), - [anon_sym_RBRACE] = ACTIONS(4770), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4770), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4851), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4770), - [aux_sym_preproc_else_token1] = ACTIONS(4770), - [aux_sym_preproc_elif_token1] = ACTIONS(4770), + [sym__identifier_token] = ACTIONS(4932), + [anon_sym_extern] = ACTIONS(4932), + [anon_sym_alias] = ACTIONS(4932), + [anon_sym_global] = ACTIONS(4932), + [anon_sym_using] = ACTIONS(4932), + [anon_sym_unsafe] = ACTIONS(4932), + [anon_sym_static] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_event] = ACTIONS(4932), + [anon_sym_namespace] = ACTIONS(4932), + [anon_sym_class] = ACTIONS(4932), + [anon_sym_ref] = ACTIONS(4932), + [anon_sym_struct] = ACTIONS(4932), + [anon_sym_enum] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4934), + [anon_sym_interface] = ACTIONS(4932), + [anon_sym_delegate] = ACTIONS(4932), + [anon_sym_record] = ACTIONS(4932), + [anon_sym_public] = ACTIONS(4932), + [anon_sym_private] = ACTIONS(4932), + [anon_sym_readonly] = ACTIONS(4932), + [anon_sym_abstract] = ACTIONS(4932), + [anon_sym_async] = ACTIONS(4932), + [anon_sym_const] = ACTIONS(4932), + [anon_sym_file] = ACTIONS(4932), + [anon_sym_fixed] = ACTIONS(4932), + [anon_sym_internal] = ACTIONS(4932), + [anon_sym_new] = ACTIONS(4932), + [anon_sym_override] = ACTIONS(4932), + [anon_sym_partial] = ACTIONS(4932), + [anon_sym_protected] = ACTIONS(4932), + [anon_sym_required] = ACTIONS(4932), + [anon_sym_sealed] = ACTIONS(4932), + [anon_sym_virtual] = ACTIONS(4932), + [anon_sym_volatile] = ACTIONS(4932), + [anon_sym_where] = ACTIONS(4932), + [anon_sym_notnull] = ACTIONS(4932), + [anon_sym_unmanaged] = ACTIONS(4932), + [anon_sym_implicit] = ACTIONS(4932), + [anon_sym_explicit] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4934), + [anon_sym_scoped] = ACTIONS(4932), + [anon_sym_var] = ACTIONS(4932), + [sym_predefined_type] = ACTIONS(4932), + [anon_sym_yield] = ACTIONS(4932), + [anon_sym_when] = 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_ascending] = ACTIONS(4932), + [anon_sym_descending] = ACTIONS(4932), + [anon_sym_group] = ACTIONS(4932), + [anon_sym_by] = ACTIONS(4932), + [anon_sym_select] = ACTIONS(4932), + [sym_grit_metavariable] = ACTIONS(4934), + [aux_sym_preproc_if_token1] = ACTIONS(4934), + [aux_sym_preproc_if_token3] = ACTIONS(4934), + [aux_sym_preproc_else_token1] = ACTIONS(4934), + [aux_sym_preproc_elif_token1] = ACTIONS(4934), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465323,27 +465088,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2784] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2784), [sym_preproc_endregion] = STATE(2784), [sym_preproc_line] = STATE(2784), @@ -465353,83 +465097,82 @@ 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), - [anon_sym_SEMI] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_RBRACK] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_RBRACE] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4766), - [aux_sym_preproc_if_token3] = ACTIONS(4766), - [aux_sym_preproc_else_token1] = ACTIONS(4766), - [aux_sym_preproc_elif_token1] = ACTIONS(4766), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4433), + [anon_sym_alias] = ACTIONS(4433), + [anon_sym_global] = ACTIONS(4433), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(4435), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4435), + [anon_sym_file] = ACTIONS(4433), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_where] = ACTIONS(4433), + [anon_sym_QMARK] = ACTIONS(4433), + [anon_sym_notnull] = ACTIONS(4433), + [anon_sym_unmanaged] = ACTIONS(4433), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_scoped] = ACTIONS(4433), + [anon_sym_var] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4435), + [anon_sym_yield] = ACTIONS(4433), + [anon_sym_switch] = ACTIONS(4433), + [anon_sym_when] = ACTIONS(4433), + [sym_discard] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_and] = ACTIONS(4433), + [anon_sym_or] = ACTIONS(4433), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_AMP] = ACTIONS(4433), + [sym_op_bitwise_or] = ACTIONS(4433), + [anon_sym_CARET] = ACTIONS(4435), + [sym_op_left_shift] = ACTIONS(4435), + [sym_op_right_shift] = ACTIONS(4433), + [sym_op_unsigned_right_shift] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [sym_op_divide] = ACTIONS(4433), + [sym_op_modulo] = ACTIONS(4435), + [sym_op_coalescing] = ACTIONS(4435), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [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), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_DASH_GT] = ACTIONS(4435), + [anon_sym_with] = ACTIONS(4433), + [sym_grit_metavariable] = ACTIONS(4435), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4435), }, [2785] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2785), [sym_preproc_endregion] = STATE(2785), [sym_preproc_line] = STATE(2785), @@ -465439,50 +465182,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_RBRACK] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(1435), - [aux_sym_preproc_if_token3] = ACTIONS(1435), - [aux_sym_preproc_else_token1] = ACTIONS(1435), - [aux_sym_preproc_elif_token1] = ACTIONS(1435), + [sym__identifier_token] = ACTIONS(4936), + [anon_sym_extern] = ACTIONS(4936), + [anon_sym_alias] = ACTIONS(4936), + [anon_sym_global] = ACTIONS(4936), + [anon_sym_using] = ACTIONS(4936), + [anon_sym_unsafe] = ACTIONS(4936), + [anon_sym_static] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_event] = ACTIONS(4936), + [anon_sym_namespace] = ACTIONS(4936), + [anon_sym_class] = ACTIONS(4936), + [anon_sym_ref] = ACTIONS(4936), + [anon_sym_struct] = ACTIONS(4936), + [anon_sym_enum] = ACTIONS(4936), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_interface] = ACTIONS(4936), + [anon_sym_delegate] = ACTIONS(4936), + [anon_sym_record] = ACTIONS(4936), + [anon_sym_public] = ACTIONS(4936), + [anon_sym_private] = ACTIONS(4936), + [anon_sym_readonly] = ACTIONS(4936), + [anon_sym_abstract] = ACTIONS(4936), + [anon_sym_async] = ACTIONS(4936), + [anon_sym_const] = ACTIONS(4936), + [anon_sym_file] = ACTIONS(4936), + [anon_sym_fixed] = ACTIONS(4936), + [anon_sym_internal] = ACTIONS(4936), + [anon_sym_new] = ACTIONS(4936), + [anon_sym_override] = ACTIONS(4936), + [anon_sym_partial] = ACTIONS(4936), + [anon_sym_protected] = ACTIONS(4936), + [anon_sym_required] = ACTIONS(4936), + [anon_sym_sealed] = ACTIONS(4936), + [anon_sym_virtual] = ACTIONS(4936), + [anon_sym_volatile] = ACTIONS(4936), + [anon_sym_where] = ACTIONS(4936), + [anon_sym_notnull] = ACTIONS(4936), + [anon_sym_unmanaged] = ACTIONS(4936), + [anon_sym_implicit] = ACTIONS(4936), + [anon_sym_explicit] = ACTIONS(4936), + [anon_sym_TILDE] = ACTIONS(4938), + [anon_sym_scoped] = ACTIONS(4936), + [anon_sym_var] = ACTIONS(4936), + [sym_predefined_type] = ACTIONS(4936), + [anon_sym_yield] = ACTIONS(4936), + [anon_sym_when] = ACTIONS(4936), + [anon_sym_from] = ACTIONS(4936), + [anon_sym_into] = ACTIONS(4936), + [anon_sym_join] = ACTIONS(4936), + [anon_sym_on] = ACTIONS(4936), + [anon_sym_equals] = ACTIONS(4936), + [anon_sym_let] = ACTIONS(4936), + [anon_sym_orderby] = ACTIONS(4936), + [anon_sym_ascending] = ACTIONS(4936), + [anon_sym_descending] = ACTIONS(4936), + [anon_sym_group] = ACTIONS(4936), + [anon_sym_by] = ACTIONS(4936), + [anon_sym_select] = ACTIONS(4936), + [sym_grit_metavariable] = ACTIONS(4938), + [aux_sym_preproc_if_token1] = 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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465504,87 +465267,82 @@ 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(4888), - [anon_sym_extern] = ACTIONS(4888), - [anon_sym_alias] = ACTIONS(4888), - [anon_sym_global] = ACTIONS(4888), - [anon_sym_using] = ACTIONS(4888), - [anon_sym_unsafe] = ACTIONS(4888), - [anon_sym_EQ] = ACTIONS(4890), - [anon_sym_static] = ACTIONS(4888), - [anon_sym_LBRACK] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_event] = ACTIONS(4888), - [anon_sym_namespace] = ACTIONS(4888), - [anon_sym_class] = ACTIONS(4888), - [anon_sym_ref] = ACTIONS(4888), - [anon_sym_struct] = ACTIONS(4888), - [anon_sym_enum] = ACTIONS(4888), - [anon_sym_RBRACE] = ACTIONS(4892), - [anon_sym_interface] = ACTIONS(4888), - [anon_sym_delegate] = ACTIONS(4888), - [anon_sym_record] = ACTIONS(4888), - [anon_sym_public] = ACTIONS(4888), - [anon_sym_private] = ACTIONS(4888), - [anon_sym_readonly] = ACTIONS(4888), - [anon_sym_abstract] = ACTIONS(4888), - [anon_sym_async] = ACTIONS(4888), - [anon_sym_const] = ACTIONS(4888), - [anon_sym_file] = ACTIONS(4888), - [anon_sym_fixed] = ACTIONS(4888), - [anon_sym_internal] = ACTIONS(4888), - [anon_sym_new] = ACTIONS(4888), - [anon_sym_override] = ACTIONS(4888), - [anon_sym_partial] = ACTIONS(4888), - [anon_sym_protected] = ACTIONS(4888), - [anon_sym_required] = ACTIONS(4888), - [anon_sym_sealed] = ACTIONS(4888), - [anon_sym_virtual] = ACTIONS(4888), - [anon_sym_volatile] = ACTIONS(4888), - [anon_sym_where] = ACTIONS(4888), - [anon_sym_notnull] = ACTIONS(4888), - [anon_sym_unmanaged] = ACTIONS(4888), - [anon_sym_TILDE] = ACTIONS(4892), - [anon_sym_implicit] = ACTIONS(4888), - [anon_sym_explicit] = ACTIONS(4888), - [anon_sym_scoped] = ACTIONS(4888), - [anon_sym_var] = ACTIONS(4888), - [sym_predefined_type] = ACTIONS(4888), - [anon_sym_yield] = ACTIONS(4888), - [anon_sym_when] = ACTIONS(4888), - [anon_sym_from] = ACTIONS(4888), - [anon_sym_into] = ACTIONS(4888), - [anon_sym_join] = ACTIONS(4888), - [anon_sym_on] = ACTIONS(4888), - [anon_sym_equals] = ACTIONS(4888), - [anon_sym_let] = ACTIONS(4888), - [anon_sym_orderby] = ACTIONS(4888), - [anon_sym_ascending] = ACTIONS(4888), - [anon_sym_descending] = ACTIONS(4888), - [anon_sym_group] = ACTIONS(4888), - [anon_sym_by] = ACTIONS(4888), - [anon_sym_select] = ACTIONS(4888), - [sym_grit_metavariable] = ACTIONS(4892), - [aux_sym_preproc_if_token1] = ACTIONS(4892), - [aux_sym_preproc_if_token3] = ACTIONS(4892), - [aux_sym_preproc_else_token1] = ACTIONS(4892), - [aux_sym_preproc_elif_token1] = ACTIONS(4892), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(4280), + [anon_sym_alias] = ACTIONS(4280), + [anon_sym_global] = ACTIONS(4280), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_COLON] = ACTIONS(4282), + [anon_sym_COMMA] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_file] = ACTIONS(4280), + [anon_sym_LT] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4280), + [anon_sym_where] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_notnull] = ACTIONS(4280), + [anon_sym_unmanaged] = ACTIONS(4280), + [anon_sym_DOT] = ACTIONS(4280), + [anon_sym_scoped] = ACTIONS(4280), + [anon_sym_var] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_yield] = ACTIONS(4280), + [anon_sym_switch] = ACTIONS(4280), + [anon_sym_when] = ACTIONS(4280), + [sym_discard] = ACTIONS(4280), + [anon_sym_DOT_DOT] = ACTIONS(4282), + [anon_sym_LT_EQ] = ACTIONS(4282), + [anon_sym_GT_EQ] = ACTIONS(4282), + [anon_sym_and] = ACTIONS(4280), + [anon_sym_or] = ACTIONS(4280), + [anon_sym_EQ_EQ] = ACTIONS(4282), + [anon_sym_BANG_EQ] = ACTIONS(4282), + [anon_sym_AMP_AMP] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4282), + [anon_sym_AMP] = ACTIONS(4280), + [sym_op_bitwise_or] = ACTIONS(4280), + [anon_sym_CARET] = ACTIONS(4282), + [sym_op_left_shift] = ACTIONS(4282), + [sym_op_right_shift] = ACTIONS(4280), + [sym_op_unsigned_right_shift] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + [sym_op_divide] = ACTIONS(4280), + [sym_op_modulo] = ACTIONS(4282), + [sym_op_coalescing] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [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), + [anon_sym_as] = ACTIONS(4280), + [anon_sym_is] = ACTIONS(4280), + [anon_sym_DASH_GT] = ACTIONS(4282), + [anon_sym_with] = ACTIONS(4280), + [sym_grit_metavariable] = ACTIONS(4282), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4282), }, [2787] = { - [sym__variable_designation] = STATE(4967), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(2787), [sym_preproc_endregion] = STATE(2787), [sym_preproc_line] = STATE(2787), @@ -465594,67 +465352,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2787), [sym_preproc_define] = STATE(2787), [sym_preproc_undef] = STATE(2787), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_in] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4141), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4141), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_COLON] = ACTIONS(4015), + [anon_sym_COMMA] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4015), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(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_DOT] = ACTIONS(4008), + [anon_sym_scoped] = ACTIONS(4008), + [anon_sym_var] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4008), + [anon_sym_when] = ACTIONS(4008), + [sym_discard] = ACTIONS(4008), + [anon_sym_DOT_DOT] = ACTIONS(4015), + [anon_sym_LT_EQ] = ACTIONS(4015), + [anon_sym_GT_EQ] = ACTIONS(4015), + [anon_sym_and] = ACTIONS(4008), + [anon_sym_or] = ACTIONS(4008), + [anon_sym_EQ_EQ] = ACTIONS(4015), + [anon_sym_BANG_EQ] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4008), + [sym_op_bitwise_or] = ACTIONS(4008), + [anon_sym_CARET] = ACTIONS(4015), + [sym_op_left_shift] = ACTIONS(4015), + [sym_op_right_shift] = ACTIONS(4008), + [sym_op_unsigned_right_shift] = ACTIONS(4015), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4008), + [sym_op_divide] = ACTIONS(4008), + [sym_op_modulo] = ACTIONS(4015), + [sym_op_coalescing] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(4008), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [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(4015), + [anon_sym_with] = ACTIONS(4008), + [sym_grit_metavariable] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465665,6 +465425,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(4015), }, [2788] = { [sym_preproc_region] = STATE(2788), @@ -465676,71 +465437,70 @@ 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(4894), - [anon_sym_extern] = ACTIONS(4894), - [anon_sym_alias] = ACTIONS(4894), - [anon_sym_global] = ACTIONS(4894), - [anon_sym_using] = ACTIONS(4894), - [anon_sym_unsafe] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4896), - [anon_sym_static] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(4898), - [anon_sym_LPAREN] = ACTIONS(4898), - [anon_sym_event] = ACTIONS(4894), - [anon_sym_namespace] = ACTIONS(4894), - [anon_sym_class] = ACTIONS(4894), - [anon_sym_ref] = ACTIONS(4894), - [anon_sym_struct] = ACTIONS(4894), - [anon_sym_enum] = ACTIONS(4894), - [anon_sym_RBRACE] = ACTIONS(4898), - [anon_sym_interface] = ACTIONS(4894), - [anon_sym_delegate] = ACTIONS(4894), - [anon_sym_record] = ACTIONS(4894), - [anon_sym_public] = ACTIONS(4894), - [anon_sym_private] = ACTIONS(4894), - [anon_sym_readonly] = ACTIONS(4894), - [anon_sym_abstract] = ACTIONS(4894), - [anon_sym_async] = ACTIONS(4894), - [anon_sym_const] = ACTIONS(4894), - [anon_sym_file] = ACTIONS(4894), - [anon_sym_fixed] = ACTIONS(4894), - [anon_sym_internal] = ACTIONS(4894), - [anon_sym_new] = ACTIONS(4894), - [anon_sym_override] = ACTIONS(4894), - [anon_sym_partial] = ACTIONS(4894), - [anon_sym_protected] = ACTIONS(4894), - [anon_sym_required] = ACTIONS(4894), - [anon_sym_sealed] = ACTIONS(4894), - [anon_sym_virtual] = ACTIONS(4894), - [anon_sym_volatile] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_notnull] = ACTIONS(4894), - [anon_sym_unmanaged] = ACTIONS(4894), - [anon_sym_TILDE] = ACTIONS(4898), - [anon_sym_implicit] = ACTIONS(4894), - [anon_sym_explicit] = ACTIONS(4894), - [anon_sym_scoped] = ACTIONS(4894), - [anon_sym_var] = ACTIONS(4894), - [sym_predefined_type] = ACTIONS(4894), - [anon_sym_yield] = ACTIONS(4894), - [anon_sym_when] = 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_ascending] = ACTIONS(4894), - [anon_sym_descending] = ACTIONS(4894), - [anon_sym_group] = ACTIONS(4894), - [anon_sym_by] = ACTIONS(4894), - [anon_sym_select] = ACTIONS(4894), - [sym_grit_metavariable] = ACTIONS(4898), - [aux_sym_preproc_if_token1] = ACTIONS(4898), - [aux_sym_preproc_if_token3] = ACTIONS(4898), - [aux_sym_preproc_else_token1] = ACTIONS(4898), - [aux_sym_preproc_elif_token1] = ACTIONS(4898), + [sym__identifier_token] = ACTIONS(3191), + [anon_sym_extern] = ACTIONS(3191), + [anon_sym_alias] = ACTIONS(3191), + [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_event] = 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_RBRACE] = ACTIONS(3193), + [anon_sym_interface] = ACTIONS(3191), + [anon_sym_delegate] = ACTIONS(3191), + [anon_sym_record] = ACTIONS(3191), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_readonly] = 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_protected] = 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_implicit] = ACTIONS(3191), + [anon_sym_explicit] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_scoped] = ACTIONS(3191), + [anon_sym_var] = ACTIONS(3191), + [sym_predefined_type] = ACTIONS(3191), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_when] = ACTIONS(3191), + [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), + [sym_grit_metavariable] = 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), @@ -465753,27 +465513,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2789] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2789), [sym_preproc_endregion] = STATE(2789), [sym_preproc_line] = STATE(2789), @@ -465783,50 +465522,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4870), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4940), + [anon_sym_extern] = ACTIONS(4940), + [anon_sym_alias] = ACTIONS(4940), + [anon_sym_global] = ACTIONS(4940), + [anon_sym_using] = ACTIONS(4940), + [anon_sym_unsafe] = ACTIONS(4940), + [anon_sym_static] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_event] = ACTIONS(4940), + [anon_sym_namespace] = ACTIONS(4940), + [anon_sym_class] = ACTIONS(4940), + [anon_sym_ref] = ACTIONS(4940), + [anon_sym_struct] = ACTIONS(4940), + [anon_sym_enum] = ACTIONS(4940), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_interface] = ACTIONS(4940), + [anon_sym_delegate] = ACTIONS(4940), + [anon_sym_record] = ACTIONS(4940), + [anon_sym_public] = ACTIONS(4940), + [anon_sym_private] = ACTIONS(4940), + [anon_sym_readonly] = ACTIONS(4940), + [anon_sym_abstract] = ACTIONS(4940), + [anon_sym_async] = ACTIONS(4940), + [anon_sym_const] = ACTIONS(4940), + [anon_sym_file] = ACTIONS(4940), + [anon_sym_fixed] = ACTIONS(4940), + [anon_sym_internal] = ACTIONS(4940), + [anon_sym_new] = ACTIONS(4940), + [anon_sym_override] = ACTIONS(4940), + [anon_sym_partial] = ACTIONS(4940), + [anon_sym_protected] = ACTIONS(4940), + [anon_sym_required] = ACTIONS(4940), + [anon_sym_sealed] = ACTIONS(4940), + [anon_sym_virtual] = ACTIONS(4940), + [anon_sym_volatile] = ACTIONS(4940), + [anon_sym_where] = ACTIONS(4940), + [anon_sym_notnull] = ACTIONS(4940), + [anon_sym_unmanaged] = ACTIONS(4940), + [anon_sym_implicit] = ACTIONS(4940), + [anon_sym_explicit] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4942), + [anon_sym_scoped] = ACTIONS(4940), + [anon_sym_var] = ACTIONS(4940), + [sym_predefined_type] = ACTIONS(4940), + [anon_sym_yield] = ACTIONS(4940), + [anon_sym_when] = ACTIONS(4940), + [anon_sym_from] = ACTIONS(4940), + [anon_sym_into] = ACTIONS(4940), + [anon_sym_join] = ACTIONS(4940), + [anon_sym_on] = ACTIONS(4940), + [anon_sym_equals] = ACTIONS(4940), + [anon_sym_let] = ACTIONS(4940), + [anon_sym_orderby] = ACTIONS(4940), + [anon_sym_ascending] = ACTIONS(4940), + [anon_sym_descending] = ACTIONS(4940), + [anon_sym_group] = ACTIONS(4940), + [anon_sym_by] = ACTIONS(4940), + [anon_sym_select] = ACTIONS(4940), + [sym_grit_metavariable] = ACTIONS(4942), + [aux_sym_preproc_if_token1] = ACTIONS(4942), + [aux_sym_preproc_if_token3] = ACTIONS(4942), + [aux_sym_preproc_else_token1] = ACTIONS(4942), + [aux_sym_preproc_elif_token1] = ACTIONS(4942), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465839,27 +465598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2790] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), + [sym__variable_designation] = STATE(4532), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2790), [sym_preproc_endregion] = STATE(2790), [sym_preproc_line] = STATE(2790), @@ -465869,50 +465611,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2790), [sym_preproc_define] = STATE(2790), [sym_preproc_undef] = STATE(2790), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4778), - [anon_sym_QMARK] = ACTIONS(4868), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4870), - [anon_sym_from] = ACTIONS(4778), - [anon_sym_join] = ACTIONS(4778), - [anon_sym_let] = ACTIONS(4778), - [anon_sym_orderby] = ACTIONS(4778), - [anon_sym_ascending] = ACTIONS(4778), - [anon_sym_descending] = ACTIONS(4778), - [anon_sym_group] = ACTIONS(4778), - [anon_sym_select] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4778), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4308), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465934,71 +465692,70 @@ 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(4900), - [anon_sym_extern] = ACTIONS(4900), - [anon_sym_alias] = ACTIONS(4900), - [anon_sym_global] = ACTIONS(4900), - [anon_sym_using] = ACTIONS(4900), - [anon_sym_unsafe] = ACTIONS(4900), - [anon_sym_EQ] = ACTIONS(4902), - [anon_sym_static] = ACTIONS(4900), - [anon_sym_LBRACK] = ACTIONS(4904), - [anon_sym_LPAREN] = ACTIONS(4904), - [anon_sym_event] = ACTIONS(4900), - [anon_sym_namespace] = ACTIONS(4900), - [anon_sym_class] = ACTIONS(4900), - [anon_sym_ref] = ACTIONS(4900), - [anon_sym_struct] = ACTIONS(4900), - [anon_sym_enum] = ACTIONS(4900), - [anon_sym_RBRACE] = ACTIONS(4904), - [anon_sym_interface] = ACTIONS(4900), - [anon_sym_delegate] = ACTIONS(4900), - [anon_sym_record] = ACTIONS(4900), - [anon_sym_public] = ACTIONS(4900), - [anon_sym_private] = ACTIONS(4900), - [anon_sym_readonly] = ACTIONS(4900), - [anon_sym_abstract] = ACTIONS(4900), - [anon_sym_async] = ACTIONS(4900), - [anon_sym_const] = ACTIONS(4900), - [anon_sym_file] = ACTIONS(4900), - [anon_sym_fixed] = ACTIONS(4900), - [anon_sym_internal] = ACTIONS(4900), - [anon_sym_new] = ACTIONS(4900), - [anon_sym_override] = ACTIONS(4900), - [anon_sym_partial] = ACTIONS(4900), - [anon_sym_protected] = ACTIONS(4900), - [anon_sym_required] = ACTIONS(4900), - [anon_sym_sealed] = ACTIONS(4900), - [anon_sym_virtual] = ACTIONS(4900), - [anon_sym_volatile] = ACTIONS(4900), - [anon_sym_where] = ACTIONS(4900), - [anon_sym_notnull] = ACTIONS(4900), - [anon_sym_unmanaged] = ACTIONS(4900), - [anon_sym_TILDE] = ACTIONS(4904), - [anon_sym_implicit] = ACTIONS(4900), - [anon_sym_explicit] = ACTIONS(4900), - [anon_sym_scoped] = ACTIONS(4900), - [anon_sym_var] = ACTIONS(4900), - [sym_predefined_type] = ACTIONS(4900), - [anon_sym_yield] = ACTIONS(4900), - [anon_sym_when] = ACTIONS(4900), - [anon_sym_from] = ACTIONS(4900), - [anon_sym_into] = ACTIONS(4900), - [anon_sym_join] = ACTIONS(4900), - [anon_sym_on] = ACTIONS(4900), - [anon_sym_equals] = ACTIONS(4900), - [anon_sym_let] = ACTIONS(4900), - [anon_sym_orderby] = ACTIONS(4900), - [anon_sym_ascending] = ACTIONS(4900), - [anon_sym_descending] = ACTIONS(4900), - [anon_sym_group] = ACTIONS(4900), - [anon_sym_by] = ACTIONS(4900), - [anon_sym_select] = ACTIONS(4900), - [sym_grit_metavariable] = ACTIONS(4904), - [aux_sym_preproc_if_token1] = ACTIONS(4904), - [aux_sym_preproc_if_token3] = ACTIONS(4904), - [aux_sym_preproc_else_token1] = ACTIONS(4904), - [aux_sym_preproc_elif_token1] = ACTIONS(4904), + [sym__identifier_token] = ACTIONS(4944), + [anon_sym_extern] = ACTIONS(4944), + [anon_sym_alias] = ACTIONS(4944), + [anon_sym_global] = ACTIONS(4944), + [anon_sym_using] = ACTIONS(4944), + [anon_sym_unsafe] = ACTIONS(4944), + [anon_sym_static] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_LPAREN] = ACTIONS(4946), + [anon_sym_event] = ACTIONS(4944), + [anon_sym_namespace] = ACTIONS(4944), + [anon_sym_class] = ACTIONS(4944), + [anon_sym_ref] = ACTIONS(4944), + [anon_sym_struct] = ACTIONS(4944), + [anon_sym_enum] = ACTIONS(4944), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_interface] = ACTIONS(4944), + [anon_sym_delegate] = ACTIONS(4944), + [anon_sym_record] = ACTIONS(4944), + [anon_sym_public] = ACTIONS(4944), + [anon_sym_private] = ACTIONS(4944), + [anon_sym_readonly] = ACTIONS(4944), + [anon_sym_abstract] = ACTIONS(4944), + [anon_sym_async] = ACTIONS(4944), + [anon_sym_const] = ACTIONS(4944), + [anon_sym_file] = ACTIONS(4944), + [anon_sym_fixed] = ACTIONS(4944), + [anon_sym_internal] = ACTIONS(4944), + [anon_sym_new] = ACTIONS(4944), + [anon_sym_override] = ACTIONS(4944), + [anon_sym_partial] = ACTIONS(4944), + [anon_sym_protected] = ACTIONS(4944), + [anon_sym_required] = ACTIONS(4944), + [anon_sym_sealed] = ACTIONS(4944), + [anon_sym_virtual] = ACTIONS(4944), + [anon_sym_volatile] = ACTIONS(4944), + [anon_sym_where] = ACTIONS(4944), + [anon_sym_notnull] = ACTIONS(4944), + [anon_sym_unmanaged] = ACTIONS(4944), + [anon_sym_implicit] = ACTIONS(4944), + [anon_sym_explicit] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4946), + [anon_sym_scoped] = ACTIONS(4944), + [anon_sym_var] = ACTIONS(4944), + [sym_predefined_type] = ACTIONS(4944), + [anon_sym_yield] = ACTIONS(4944), + [anon_sym_when] = ACTIONS(4944), + [anon_sym_from] = ACTIONS(4944), + [anon_sym_into] = ACTIONS(4944), + [anon_sym_join] = ACTIONS(4944), + [anon_sym_on] = ACTIONS(4944), + [anon_sym_equals] = ACTIONS(4944), + [anon_sym_let] = ACTIONS(4944), + [anon_sym_orderby] = ACTIONS(4944), + [anon_sym_ascending] = ACTIONS(4944), + [anon_sym_descending] = ACTIONS(4944), + [anon_sym_group] = ACTIONS(4944), + [anon_sym_by] = ACTIONS(4944), + [anon_sym_select] = ACTIONS(4944), + [sym_grit_metavariable] = ACTIONS(4946), + [aux_sym_preproc_if_token1] = ACTIONS(4946), + [aux_sym_preproc_if_token3] = ACTIONS(4946), + [aux_sym_preproc_else_token1] = ACTIONS(4946), + [aux_sym_preproc_elif_token1] = ACTIONS(4946), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466011,6 +465768,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2792] = { + [sym__variable_designation] = STATE(4630), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2792), [sym_preproc_endregion] = STATE(2792), [sym_preproc_line] = STATE(2792), @@ -466020,71 +465781,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2792), [sym_preproc_define] = STATE(2792), [sym_preproc_undef] = STATE(2792), - [sym__identifier_token] = ACTIONS(4906), - [anon_sym_extern] = ACTIONS(4906), - [anon_sym_alias] = ACTIONS(4906), - [anon_sym_global] = ACTIONS(4906), - [anon_sym_using] = ACTIONS(4906), - [anon_sym_unsafe] = ACTIONS(4906), - [anon_sym_EQ] = ACTIONS(4908), - [anon_sym_static] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(4910), - [anon_sym_LPAREN] = ACTIONS(4910), - [anon_sym_event] = ACTIONS(4906), - [anon_sym_namespace] = ACTIONS(4906), - [anon_sym_class] = ACTIONS(4906), - [anon_sym_ref] = ACTIONS(4906), - [anon_sym_struct] = ACTIONS(4906), - [anon_sym_enum] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4910), - [anon_sym_interface] = ACTIONS(4906), - [anon_sym_delegate] = ACTIONS(4906), - [anon_sym_record] = ACTIONS(4906), - [anon_sym_public] = ACTIONS(4906), - [anon_sym_private] = ACTIONS(4906), - [anon_sym_readonly] = ACTIONS(4906), - [anon_sym_abstract] = ACTIONS(4906), - [anon_sym_async] = ACTIONS(4906), - [anon_sym_const] = ACTIONS(4906), - [anon_sym_file] = ACTIONS(4906), - [anon_sym_fixed] = ACTIONS(4906), - [anon_sym_internal] = ACTIONS(4906), - [anon_sym_new] = ACTIONS(4906), - [anon_sym_override] = ACTIONS(4906), - [anon_sym_partial] = ACTIONS(4906), - [anon_sym_protected] = ACTIONS(4906), - [anon_sym_required] = ACTIONS(4906), - [anon_sym_sealed] = ACTIONS(4906), - [anon_sym_virtual] = ACTIONS(4906), - [anon_sym_volatile] = ACTIONS(4906), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_notnull] = ACTIONS(4906), - [anon_sym_unmanaged] = ACTIONS(4906), - [anon_sym_TILDE] = ACTIONS(4910), - [anon_sym_implicit] = ACTIONS(4906), - [anon_sym_explicit] = ACTIONS(4906), - [anon_sym_scoped] = ACTIONS(4906), - [anon_sym_var] = ACTIONS(4906), - [sym_predefined_type] = ACTIONS(4906), - [anon_sym_yield] = ACTIONS(4906), - [anon_sym_when] = 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_ascending] = ACTIONS(4906), - [anon_sym_descending] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_by] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [sym_grit_metavariable] = ACTIONS(4910), - [aux_sym_preproc_if_token1] = ACTIONS(4910), - [aux_sym_preproc_if_token3] = ACTIONS(4910), - [aux_sym_preproc_else_token1] = ACTIONS(4910), - [aux_sym_preproc_elif_token1] = ACTIONS(4910), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4304), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466106,71 +465862,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2793), [sym_preproc_define] = STATE(2793), [sym_preproc_undef] = STATE(2793), - [sym__identifier_token] = ACTIONS(4912), - [anon_sym_extern] = ACTIONS(4912), - [anon_sym_alias] = ACTIONS(4912), - [anon_sym_global] = ACTIONS(4912), - [anon_sym_using] = ACTIONS(4912), - [anon_sym_unsafe] = ACTIONS(4912), - [anon_sym_EQ] = ACTIONS(4914), - [anon_sym_static] = ACTIONS(4912), - [anon_sym_LBRACK] = ACTIONS(4914), - [anon_sym_LPAREN] = ACTIONS(4914), - [anon_sym_event] = ACTIONS(4912), - [anon_sym_namespace] = ACTIONS(4912), - [anon_sym_class] = ACTIONS(4912), - [anon_sym_ref] = ACTIONS(4912), - [anon_sym_struct] = ACTIONS(4912), - [anon_sym_enum] = ACTIONS(4912), - [anon_sym_RBRACE] = ACTIONS(4914), - [anon_sym_interface] = ACTIONS(4912), - [anon_sym_delegate] = ACTIONS(4912), - [anon_sym_record] = ACTIONS(4912), - [anon_sym_public] = ACTIONS(4912), - [anon_sym_private] = ACTIONS(4912), - [anon_sym_readonly] = ACTIONS(4912), - [anon_sym_abstract] = ACTIONS(4912), - [anon_sym_async] = ACTIONS(4912), - [anon_sym_const] = ACTIONS(4912), - [anon_sym_file] = ACTIONS(4912), - [anon_sym_fixed] = ACTIONS(4912), - [anon_sym_internal] = ACTIONS(4912), - [anon_sym_new] = ACTIONS(4912), - [anon_sym_override] = ACTIONS(4912), - [anon_sym_partial] = ACTIONS(4912), - [anon_sym_protected] = ACTIONS(4912), - [anon_sym_required] = ACTIONS(4912), - [anon_sym_sealed] = ACTIONS(4912), - [anon_sym_virtual] = ACTIONS(4912), - [anon_sym_volatile] = ACTIONS(4912), - [anon_sym_where] = ACTIONS(4912), - [anon_sym_notnull] = ACTIONS(4912), - [anon_sym_unmanaged] = ACTIONS(4912), - [anon_sym_TILDE] = ACTIONS(4914), - [anon_sym_implicit] = ACTIONS(4912), - [anon_sym_explicit] = ACTIONS(4912), - [anon_sym_scoped] = ACTIONS(4912), - [anon_sym_var] = ACTIONS(4912), - [sym_predefined_type] = ACTIONS(4912), - [anon_sym_yield] = ACTIONS(4912), - [anon_sym_when] = ACTIONS(4912), - [anon_sym_from] = ACTIONS(4912), - [anon_sym_into] = ACTIONS(4912), - [anon_sym_join] = ACTIONS(4912), - [anon_sym_on] = ACTIONS(4912), - [anon_sym_equals] = ACTIONS(4912), - [anon_sym_let] = ACTIONS(4912), - [anon_sym_orderby] = ACTIONS(4912), - [anon_sym_ascending] = ACTIONS(4912), - [anon_sym_descending] = ACTIONS(4912), - [anon_sym_group] = ACTIONS(4912), - [anon_sym_by] = ACTIONS(4912), - [anon_sym_select] = ACTIONS(4912), - [sym_grit_metavariable] = ACTIONS(4914), - [aux_sym_preproc_if_token1] = ACTIONS(4914), - [aux_sym_preproc_if_token3] = ACTIONS(4914), - [aux_sym_preproc_else_token1] = ACTIONS(4914), - [aux_sym_preproc_elif_token1] = ACTIONS(4914), + [sym__identifier_token] = ACTIONS(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [sym_discard] = ACTIONS(3696), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3696), + [sym_grit_metavariable] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466181,29 +465935,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(3694), }, [2794] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2794), [sym_preproc_endregion] = STATE(2794), [sym_preproc_line] = STATE(2794), @@ -466213,50 +465947,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4708), - [anon_sym_QMARK] = ACTIONS(4868), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4870), - [anon_sym_from] = ACTIONS(4708), - [anon_sym_join] = ACTIONS(4708), - [anon_sym_let] = ACTIONS(4708), - [anon_sym_orderby] = ACTIONS(4708), - [anon_sym_ascending] = ACTIONS(4708), - [anon_sym_descending] = ACTIONS(4708), - [anon_sym_group] = ACTIONS(4708), - [anon_sym_select] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4708), + [sym__identifier_token] = ACTIONS(4948), + [anon_sym_extern] = ACTIONS(4948), + [anon_sym_alias] = ACTIONS(4948), + [anon_sym_global] = ACTIONS(4948), + [anon_sym_using] = ACTIONS(4948), + [anon_sym_unsafe] = ACTIONS(4948), + [anon_sym_static] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_event] = ACTIONS(4948), + [anon_sym_namespace] = ACTIONS(4948), + [anon_sym_class] = ACTIONS(4948), + [anon_sym_ref] = ACTIONS(4948), + [anon_sym_struct] = ACTIONS(4948), + [anon_sym_enum] = ACTIONS(4948), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_interface] = ACTIONS(4948), + [anon_sym_delegate] = ACTIONS(4948), + [anon_sym_record] = ACTIONS(4948), + [anon_sym_public] = ACTIONS(4948), + [anon_sym_private] = ACTIONS(4948), + [anon_sym_readonly] = ACTIONS(4948), + [anon_sym_abstract] = ACTIONS(4948), + [anon_sym_async] = ACTIONS(4948), + [anon_sym_const] = ACTIONS(4948), + [anon_sym_file] = ACTIONS(4948), + [anon_sym_fixed] = ACTIONS(4948), + [anon_sym_internal] = ACTIONS(4948), + [anon_sym_new] = ACTIONS(4948), + [anon_sym_override] = ACTIONS(4948), + [anon_sym_partial] = ACTIONS(4948), + [anon_sym_protected] = ACTIONS(4948), + [anon_sym_required] = ACTIONS(4948), + [anon_sym_sealed] = ACTIONS(4948), + [anon_sym_virtual] = ACTIONS(4948), + [anon_sym_volatile] = ACTIONS(4948), + [anon_sym_where] = ACTIONS(4948), + [anon_sym_notnull] = ACTIONS(4948), + [anon_sym_unmanaged] = ACTIONS(4948), + [anon_sym_implicit] = ACTIONS(4948), + [anon_sym_explicit] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4950), + [anon_sym_scoped] = ACTIONS(4948), + [anon_sym_var] = ACTIONS(4948), + [sym_predefined_type] = ACTIONS(4948), + [anon_sym_yield] = ACTIONS(4948), + [anon_sym_when] = ACTIONS(4948), + [anon_sym_from] = ACTIONS(4948), + [anon_sym_into] = ACTIONS(4948), + [anon_sym_join] = ACTIONS(4948), + [anon_sym_on] = ACTIONS(4948), + [anon_sym_equals] = ACTIONS(4948), + [anon_sym_let] = ACTIONS(4948), + [anon_sym_orderby] = ACTIONS(4948), + [anon_sym_ascending] = ACTIONS(4948), + [anon_sym_descending] = ACTIONS(4948), + [anon_sym_group] = ACTIONS(4948), + [anon_sym_by] = ACTIONS(4948), + [anon_sym_select] = ACTIONS(4948), + [sym_grit_metavariable] = ACTIONS(4950), + [aux_sym_preproc_if_token1] = 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), @@ -466269,27 +466023,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2795] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2795), [sym_preproc_endregion] = STATE(2795), [sym_preproc_line] = STATE(2795), @@ -466299,50 +466032,70 @@ 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_SEMI] = ACTIONS(4794), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_RBRACK] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4794), - [anon_sym_RBRACE] = ACTIONS(4794), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4794), - [aux_sym_preproc_if_token3] = ACTIONS(4794), - [aux_sym_preproc_else_token1] = ACTIONS(4794), - [aux_sym_preproc_elif_token1] = ACTIONS(4794), + [sym__identifier_token] = ACTIONS(4952), + [anon_sym_extern] = ACTIONS(4952), + [anon_sym_alias] = ACTIONS(4952), + [anon_sym_global] = ACTIONS(4952), + [anon_sym_using] = ACTIONS(4952), + [anon_sym_unsafe] = ACTIONS(4952), + [anon_sym_static] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_event] = ACTIONS(4952), + [anon_sym_namespace] = ACTIONS(4952), + [anon_sym_class] = ACTIONS(4952), + [anon_sym_ref] = ACTIONS(4952), + [anon_sym_struct] = ACTIONS(4952), + [anon_sym_enum] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_interface] = ACTIONS(4952), + [anon_sym_delegate] = ACTIONS(4952), + [anon_sym_record] = ACTIONS(4952), + [anon_sym_public] = ACTIONS(4952), + [anon_sym_private] = ACTIONS(4952), + [anon_sym_readonly] = ACTIONS(4952), + [anon_sym_abstract] = ACTIONS(4952), + [anon_sym_async] = ACTIONS(4952), + [anon_sym_const] = ACTIONS(4952), + [anon_sym_file] = ACTIONS(4952), + [anon_sym_fixed] = ACTIONS(4952), + [anon_sym_internal] = ACTIONS(4952), + [anon_sym_new] = ACTIONS(4952), + [anon_sym_override] = ACTIONS(4952), + [anon_sym_partial] = ACTIONS(4952), + [anon_sym_protected] = ACTIONS(4952), + [anon_sym_required] = ACTIONS(4952), + [anon_sym_sealed] = ACTIONS(4952), + [anon_sym_virtual] = ACTIONS(4952), + [anon_sym_volatile] = ACTIONS(4952), + [anon_sym_where] = ACTIONS(4952), + [anon_sym_notnull] = ACTIONS(4952), + [anon_sym_unmanaged] = ACTIONS(4952), + [anon_sym_implicit] = ACTIONS(4952), + [anon_sym_explicit] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4954), + [anon_sym_scoped] = ACTIONS(4952), + [anon_sym_var] = ACTIONS(4952), + [sym_predefined_type] = ACTIONS(4952), + [anon_sym_yield] = ACTIONS(4952), + [anon_sym_when] = ACTIONS(4952), + [anon_sym_from] = ACTIONS(4952), + [anon_sym_into] = ACTIONS(4952), + [anon_sym_join] = ACTIONS(4952), + [anon_sym_on] = ACTIONS(4952), + [anon_sym_equals] = ACTIONS(4952), + [anon_sym_let] = ACTIONS(4952), + [anon_sym_orderby] = ACTIONS(4952), + [anon_sym_ascending] = ACTIONS(4952), + [anon_sym_descending] = ACTIONS(4952), + [anon_sym_group] = ACTIONS(4952), + [anon_sym_by] = ACTIONS(4952), + [anon_sym_select] = ACTIONS(4952), + [sym_grit_metavariable] = ACTIONS(4954), + [aux_sym_preproc_if_token1] = ACTIONS(4954), + [aux_sym_preproc_if_token3] = ACTIONS(4954), + [aux_sym_preproc_else_token1] = ACTIONS(4954), + [aux_sym_preproc_elif_token1] = ACTIONS(4954), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466364,70 +466117,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2796), [sym_preproc_define] = STATE(2796), [sym_preproc_undef] = STATE(2796), - [sym__identifier_token] = ACTIONS(4454), - [anon_sym_alias] = ACTIONS(4454), - [anon_sym_global] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4456), - [anon_sym_COLON] = ACTIONS(4456), - [anon_sym_COMMA] = ACTIONS(4456), - [anon_sym_LPAREN] = ACTIONS(4456), - [anon_sym_LBRACE] = ACTIONS(4456), - [anon_sym_file] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4454), - [anon_sym_GT] = ACTIONS(4454), - [anon_sym_where] = ACTIONS(4454), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_notnull] = ACTIONS(4454), - [anon_sym_unmanaged] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4456), - [anon_sym_DASH_DASH] = ACTIONS(4456), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4456), - [anon_sym_SLASH] = ACTIONS(4454), - [anon_sym_PERCENT] = ACTIONS(4456), - [anon_sym_CARET] = ACTIONS(4456), - [anon_sym_PIPE] = ACTIONS(4454), - [anon_sym_AMP] = ACTIONS(4454), - [anon_sym_LT_LT] = ACTIONS(4456), - [anon_sym_GT_GT] = ACTIONS(4454), - [anon_sym_GT_GT_GT] = ACTIONS(4456), - [anon_sym_EQ_EQ] = ACTIONS(4456), - [anon_sym_BANG_EQ] = ACTIONS(4456), - [anon_sym_GT_EQ] = ACTIONS(4456), - [anon_sym_LT_EQ] = ACTIONS(4456), - [anon_sym_DOT] = ACTIONS(4454), - [anon_sym_scoped] = ACTIONS(4454), - [anon_sym_EQ_GT] = ACTIONS(4458), - [anon_sym_var] = ACTIONS(4454), - [anon_sym_yield] = ACTIONS(4454), - [anon_sym_switch] = ACTIONS(4454), - [anon_sym_when] = ACTIONS(4454), - [sym_discard] = ACTIONS(4454), - [anon_sym_DOT_DOT] = ACTIONS(4456), - [anon_sym_and] = ACTIONS(4454), - [anon_sym_or] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4456), - [anon_sym_PIPE_PIPE] = ACTIONS(4456), - [sym_op_coalescing] = ACTIONS(4456), - [anon_sym_from] = ACTIONS(4454), - [anon_sym_into] = ACTIONS(4454), - [anon_sym_join] = ACTIONS(4454), - [anon_sym_on] = ACTIONS(4454), - [anon_sym_equals] = ACTIONS(4454), - [anon_sym_let] = ACTIONS(4454), - [anon_sym_orderby] = ACTIONS(4454), - [anon_sym_ascending] = ACTIONS(4454), - [anon_sym_descending] = ACTIONS(4454), - [anon_sym_group] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(4454), - [anon_sym_select] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4454), - [anon_sym_DASH_GT] = ACTIONS(4456), - [anon_sym_with] = ACTIONS(4454), - [sym_grit_metavariable] = ACTIONS(4456), + [sym__identifier_token] = ACTIONS(3187), + [anon_sym_alias] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3189), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_file] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_where] = ACTIONS(3187), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_notnull] = ACTIONS(3187), + [anon_sym_unmanaged] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_scoped] = ACTIONS(3187), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_when] = ACTIONS(3187), + [sym_discard] = ACTIONS(3187), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3187), + [anon_sym_or] = ACTIONS(3187), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3189), + [sym_op_left_shift] = ACTIONS(3189), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3189), + [sym_op_coalescing] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = 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_as] = ACTIONS(3187), + [anon_sym_is] = ACTIONS(3187), + [anon_sym_DASH_GT] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3187), + [sym_grit_metavariable] = ACTIONS(3189), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466438,30 +466190,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(4456), + [sym_interpolation_close_brace] = ACTIONS(3189), }, [2797] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2797), [sym_preproc_endregion] = STATE(2797), [sym_preproc_line] = STATE(2797), @@ -466471,50 +466202,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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4752), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_from] = ACTIONS(4752), - [anon_sym_join] = ACTIONS(4752), - [anon_sym_let] = ACTIONS(4752), - [anon_sym_orderby] = ACTIONS(4752), - [anon_sym_ascending] = ACTIONS(4752), - [anon_sym_descending] = ACTIONS(4752), - [anon_sym_group] = ACTIONS(4752), - [anon_sym_select] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4752), - [sym_grit_metavariable] = ACTIONS(4752), + [sym__identifier_token] = ACTIONS(4339), + [anon_sym_alias] = ACTIONS(4339), + [anon_sym_global] = ACTIONS(4339), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_COLON] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_file] = ACTIONS(4339), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(4339), + [anon_sym_QMARK] = ACTIONS(4339), + [anon_sym_notnull] = ACTIONS(4339), + [anon_sym_unmanaged] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_scoped] = ACTIONS(4339), + [anon_sym_var] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4341), + [anon_sym_yield] = ACTIONS(4339), + [anon_sym_switch] = ACTIONS(4339), + [anon_sym_when] = ACTIONS(4339), + [sym_discard] = ACTIONS(4339), + [anon_sym_DOT_DOT] = ACTIONS(4341), + [anon_sym_LT_EQ] = ACTIONS(4341), + [anon_sym_GT_EQ] = ACTIONS(4341), + [anon_sym_and] = ACTIONS(4339), + [anon_sym_or] = ACTIONS(4339), + [anon_sym_EQ_EQ] = ACTIONS(4341), + [anon_sym_BANG_EQ] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_PIPE_PIPE] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4339), + [sym_op_bitwise_or] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4341), + [sym_op_left_shift] = ACTIONS(4341), + [sym_op_right_shift] = ACTIONS(4339), + [sym_op_unsigned_right_shift] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [sym_op_divide] = ACTIONS(4339), + [sym_op_modulo] = ACTIONS(4341), + [sym_op_coalescing] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4339), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_from] = ACTIONS(4339), + [anon_sym_into] = ACTIONS(4339), + [anon_sym_join] = ACTIONS(4339), + [anon_sym_on] = ACTIONS(4339), + [anon_sym_equals] = ACTIONS(4339), + [anon_sym_let] = ACTIONS(4339), + [anon_sym_orderby] = ACTIONS(4339), + [anon_sym_ascending] = ACTIONS(4339), + [anon_sym_descending] = ACTIONS(4339), + [anon_sym_group] = ACTIONS(4339), + [anon_sym_by] = ACTIONS(4339), + [anon_sym_select] = ACTIONS(4339), + [anon_sym_as] = ACTIONS(4339), + [anon_sym_is] = ACTIONS(4339), + [anon_sym_DASH_GT] = ACTIONS(4341), + [anon_sym_with] = ACTIONS(4339), + [sym_grit_metavariable] = ACTIONS(4341), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466525,8 +466275,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(4341), }, [2798] = { + [sym__variable_designation] = STATE(5499), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym_identifier] = STATE(5489), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2798), [sym_preproc_endregion] = STATE(2798), [sym_preproc_line] = STATE(2798), @@ -466536,71 +466291,66 @@ 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(4916), - [anon_sym_extern] = ACTIONS(4916), - [anon_sym_alias] = ACTIONS(4916), - [anon_sym_global] = ACTIONS(4916), - [anon_sym_using] = ACTIONS(4916), - [anon_sym_unsafe] = ACTIONS(4916), - [anon_sym_EQ] = ACTIONS(4918), - [anon_sym_static] = ACTIONS(4916), - [anon_sym_LBRACK] = ACTIONS(4920), - [anon_sym_LPAREN] = ACTIONS(4920), - [anon_sym_event] = ACTIONS(4916), - [anon_sym_namespace] = ACTIONS(4916), - [anon_sym_class] = ACTIONS(4916), - [anon_sym_ref] = ACTIONS(4916), - [anon_sym_struct] = ACTIONS(4916), - [anon_sym_enum] = ACTIONS(4916), - [anon_sym_RBRACE] = ACTIONS(4920), - [anon_sym_interface] = ACTIONS(4916), - [anon_sym_delegate] = ACTIONS(4916), - [anon_sym_record] = ACTIONS(4916), - [anon_sym_public] = ACTIONS(4916), - [anon_sym_private] = ACTIONS(4916), - [anon_sym_readonly] = ACTIONS(4916), - [anon_sym_abstract] = ACTIONS(4916), - [anon_sym_async] = ACTIONS(4916), - [anon_sym_const] = ACTIONS(4916), - [anon_sym_file] = ACTIONS(4916), - [anon_sym_fixed] = ACTIONS(4916), - [anon_sym_internal] = ACTIONS(4916), - [anon_sym_new] = ACTIONS(4916), - [anon_sym_override] = ACTIONS(4916), - [anon_sym_partial] = ACTIONS(4916), - [anon_sym_protected] = ACTIONS(4916), - [anon_sym_required] = ACTIONS(4916), - [anon_sym_sealed] = ACTIONS(4916), - [anon_sym_virtual] = ACTIONS(4916), - [anon_sym_volatile] = ACTIONS(4916), - [anon_sym_where] = ACTIONS(4916), - [anon_sym_notnull] = ACTIONS(4916), - [anon_sym_unmanaged] = ACTIONS(4916), - [anon_sym_TILDE] = ACTIONS(4920), - [anon_sym_implicit] = ACTIONS(4916), - [anon_sym_explicit] = ACTIONS(4916), - [anon_sym_scoped] = ACTIONS(4916), - [anon_sym_var] = ACTIONS(4916), - [sym_predefined_type] = ACTIONS(4916), - [anon_sym_yield] = ACTIONS(4916), - [anon_sym_when] = ACTIONS(4916), - [anon_sym_from] = ACTIONS(4916), - [anon_sym_into] = ACTIONS(4916), - [anon_sym_join] = ACTIONS(4916), - [anon_sym_on] = ACTIONS(4916), - [anon_sym_equals] = ACTIONS(4916), - [anon_sym_let] = ACTIONS(4916), - [anon_sym_orderby] = ACTIONS(4916), - [anon_sym_ascending] = ACTIONS(4916), - [anon_sym_descending] = ACTIONS(4916), - [anon_sym_group] = ACTIONS(4916), - [anon_sym_by] = ACTIONS(4916), - [anon_sym_select] = ACTIONS(4916), - [sym_grit_metavariable] = ACTIONS(4920), - [aux_sym_preproc_if_token1] = ACTIONS(4920), - [aux_sym_preproc_if_token3] = ACTIONS(4920), - [aux_sym_preproc_else_token1] = ACTIONS(4920), - [aux_sym_preproc_elif_token1] = ACTIONS(4920), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4304), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4210), + [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4210), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4304), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4304), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4304), + [anon_sym_orderby] = ACTIONS(4304), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4304), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4304), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466613,27 +466363,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2799] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2799), [sym_preproc_endregion] = STATE(2799), [sym_preproc_line] = STATE(2799), @@ -466643,50 +466372,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4526), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_COLON] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_RPAREN] = ACTIONS(4524), + [anon_sym_RBRACE] = ACTIONS(4524), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_in] = ACTIONS(4526), + [anon_sym_QMARK] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4526), + [anon_sym_EQ_GT] = ACTIONS(4524), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_switch] = ACTIONS(4524), + [anon_sym_when] = ACTIONS(4524), + [anon_sym_DOT_DOT] = ACTIONS(4524), + [anon_sym_LT_EQ] = ACTIONS(4524), + [anon_sym_GT_EQ] = ACTIONS(4524), + [anon_sym_and] = ACTIONS(4524), + [anon_sym_or] = ACTIONS(4524), + [anon_sym_PLUS_EQ] = ACTIONS(4524), + [anon_sym_DASH_EQ] = ACTIONS(4524), + [anon_sym_STAR_EQ] = ACTIONS(4524), + [anon_sym_SLASH_EQ] = ACTIONS(4524), + [anon_sym_PERCENT_EQ] = ACTIONS(4524), + [anon_sym_AMP_EQ] = ACTIONS(4524), + [anon_sym_CARET_EQ] = ACTIONS(4524), + [anon_sym_PIPE_EQ] = ACTIONS(4524), + [anon_sym_LT_LT_EQ] = ACTIONS(4524), + [anon_sym_GT_GT_EQ] = ACTIONS(4524), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4524), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4524), + [anon_sym_EQ_EQ] = ACTIONS(4524), + [anon_sym_BANG_EQ] = ACTIONS(4524), + [anon_sym_AMP_AMP] = ACTIONS(4524), + [anon_sym_PIPE_PIPE] = ACTIONS(4524), + [anon_sym_AMP] = ACTIONS(4526), + [sym_op_bitwise_or] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [sym_op_left_shift] = ACTIONS(4526), + [sym_op_right_shift] = ACTIONS(4526), + [sym_op_unsigned_right_shift] = ACTIONS(4526), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [sym_op_divide] = ACTIONS(4526), + [sym_op_modulo] = ACTIONS(4526), + [sym_op_coalescing] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PLUS_PLUS] = ACTIONS(4524), + [anon_sym_DASH_DASH] = ACTIONS(4524), + [anon_sym_into] = ACTIONS(4524), + [anon_sym_on] = ACTIONS(4524), + [anon_sym_equals] = ACTIONS(4524), + [anon_sym_by] = ACTIONS(4524), + [anon_sym_as] = ACTIONS(4524), + [anon_sym_is] = ACTIONS(4524), + [anon_sym_DASH_GT] = ACTIONS(4524), + [anon_sym_with] = ACTIONS(4524), + [aux_sym_preproc_if_token3] = ACTIONS(4524), + [aux_sym_preproc_else_token1] = ACTIONS(4524), + [aux_sym_preproc_elif_token1] = ACTIONS(4524), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466699,27 +466448,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2800] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2800), [sym_preproc_endregion] = STATE(2800), [sym_preproc_line] = STATE(2800), @@ -466729,50 +466457,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2800), [sym_preproc_define] = STATE(2800), [sym_preproc_undef] = STATE(2800), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_RBRACE] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_in] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_DOT] = ACTIONS(4540), + [anon_sym_EQ_GT] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_switch] = ACTIONS(4534), + [anon_sym_when] = ACTIONS(4534), + [anon_sym_DOT_DOT] = ACTIONS(4534), + [anon_sym_LT_EQ] = ACTIONS(4534), + [anon_sym_GT_EQ] = ACTIONS(4534), + [anon_sym_and] = ACTIONS(4534), + [anon_sym_or] = ACTIONS(4534), + [anon_sym_PLUS_EQ] = ACTIONS(4538), + [anon_sym_DASH_EQ] = ACTIONS(4538), + [anon_sym_STAR_EQ] = ACTIONS(4538), + [anon_sym_SLASH_EQ] = ACTIONS(4538), + [anon_sym_PERCENT_EQ] = ACTIONS(4538), + [anon_sym_AMP_EQ] = ACTIONS(4538), + [anon_sym_CARET_EQ] = ACTIONS(4538), + [anon_sym_PIPE_EQ] = ACTIONS(4538), + [anon_sym_LT_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4534), + [anon_sym_BANG_EQ] = ACTIONS(4534), + [anon_sym_AMP_AMP] = ACTIONS(4534), + [anon_sym_PIPE_PIPE] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4540), + [sym_op_bitwise_or] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [sym_op_left_shift] = ACTIONS(4540), + [sym_op_right_shift] = ACTIONS(4540), + [sym_op_unsigned_right_shift] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [sym_op_divide] = ACTIONS(4540), + [sym_op_modulo] = ACTIONS(4540), + [sym_op_coalescing] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PLUS_PLUS] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4534), + [anon_sym_into] = ACTIONS(4534), + [anon_sym_on] = ACTIONS(4534), + [anon_sym_equals] = ACTIONS(4534), + [anon_sym_by] = ACTIONS(4534), + [anon_sym_as] = ACTIONS(4534), + [anon_sym_is] = ACTIONS(4534), + [anon_sym_DASH_GT] = ACTIONS(4534), + [anon_sym_with] = ACTIONS(4534), + [aux_sym_preproc_if_token3] = ACTIONS(4534), + [aux_sym_preproc_else_token1] = ACTIONS(4534), + [aux_sym_preproc_elif_token1] = ACTIONS(4534), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466785,27 +466533,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2801] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2801), [sym_preproc_endregion] = STATE(2801), [sym_preproc_line] = STATE(2801), @@ -466815,50 +466542,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4956), + [anon_sym_extern] = ACTIONS(4956), + [anon_sym_alias] = ACTIONS(4956), + [anon_sym_global] = ACTIONS(4956), + [anon_sym_using] = ACTIONS(4956), + [anon_sym_unsafe] = ACTIONS(4956), + [anon_sym_static] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_event] = ACTIONS(4956), + [anon_sym_namespace] = ACTIONS(4956), + [anon_sym_class] = ACTIONS(4956), + [anon_sym_ref] = ACTIONS(4956), + [anon_sym_struct] = ACTIONS(4956), + [anon_sym_enum] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_interface] = ACTIONS(4956), + [anon_sym_delegate] = ACTIONS(4956), + [anon_sym_record] = ACTIONS(4956), + [anon_sym_public] = ACTIONS(4956), + [anon_sym_private] = ACTIONS(4956), + [anon_sym_readonly] = ACTIONS(4956), + [anon_sym_abstract] = ACTIONS(4956), + [anon_sym_async] = ACTIONS(4956), + [anon_sym_const] = ACTIONS(4956), + [anon_sym_file] = ACTIONS(4956), + [anon_sym_fixed] = ACTIONS(4956), + [anon_sym_internal] = ACTIONS(4956), + [anon_sym_new] = ACTIONS(4956), + [anon_sym_override] = ACTIONS(4956), + [anon_sym_partial] = ACTIONS(4956), + [anon_sym_protected] = ACTIONS(4956), + [anon_sym_required] = ACTIONS(4956), + [anon_sym_sealed] = ACTIONS(4956), + [anon_sym_virtual] = ACTIONS(4956), + [anon_sym_volatile] = ACTIONS(4956), + [anon_sym_where] = ACTIONS(4956), + [anon_sym_notnull] = ACTIONS(4956), + [anon_sym_unmanaged] = ACTIONS(4956), + [anon_sym_implicit] = ACTIONS(4956), + [anon_sym_explicit] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4958), + [anon_sym_scoped] = ACTIONS(4956), + [anon_sym_var] = ACTIONS(4956), + [sym_predefined_type] = ACTIONS(4956), + [anon_sym_yield] = ACTIONS(4956), + [anon_sym_when] = ACTIONS(4956), + [anon_sym_from] = ACTIONS(4956), + [anon_sym_into] = ACTIONS(4956), + [anon_sym_join] = ACTIONS(4956), + [anon_sym_on] = ACTIONS(4956), + [anon_sym_equals] = ACTIONS(4956), + [anon_sym_let] = ACTIONS(4956), + [anon_sym_orderby] = ACTIONS(4956), + [anon_sym_ascending] = ACTIONS(4956), + [anon_sym_descending] = ACTIONS(4956), + [anon_sym_group] = ACTIONS(4956), + [anon_sym_by] = ACTIONS(4956), + [anon_sym_select] = ACTIONS(4956), + [sym_grit_metavariable] = ACTIONS(4958), + [aux_sym_preproc_if_token1] = ACTIONS(4958), + [aux_sym_preproc_if_token3] = ACTIONS(4958), + [aux_sym_preproc_else_token1] = ACTIONS(4958), + [aux_sym_preproc_elif_token1] = ACTIONS(4958), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466871,27 +466618,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2802] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2802), [sym_preproc_endregion] = STATE(2802), [sym_preproc_line] = STATE(2802), @@ -466901,50 +466627,69 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466955,29 +466700,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(4331), }, [2803] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2803), [sym_preproc_endregion] = STATE(2803), [sym_preproc_line] = STATE(2803), @@ -466987,50 +466712,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4960), + [anon_sym_extern] = ACTIONS(4960), + [anon_sym_alias] = ACTIONS(4960), + [anon_sym_global] = ACTIONS(4960), + [anon_sym_using] = ACTIONS(4960), + [anon_sym_unsafe] = ACTIONS(4960), + [anon_sym_static] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_event] = ACTIONS(4960), + [anon_sym_namespace] = ACTIONS(4960), + [anon_sym_class] = ACTIONS(4960), + [anon_sym_ref] = ACTIONS(4960), + [anon_sym_struct] = ACTIONS(4960), + [anon_sym_enum] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_interface] = ACTIONS(4960), + [anon_sym_delegate] = ACTIONS(4960), + [anon_sym_record] = ACTIONS(4960), + [anon_sym_public] = ACTIONS(4960), + [anon_sym_private] = ACTIONS(4960), + [anon_sym_readonly] = ACTIONS(4960), + [anon_sym_abstract] = ACTIONS(4960), + [anon_sym_async] = ACTIONS(4960), + [anon_sym_const] = ACTIONS(4960), + [anon_sym_file] = ACTIONS(4960), + [anon_sym_fixed] = ACTIONS(4960), + [anon_sym_internal] = ACTIONS(4960), + [anon_sym_new] = ACTIONS(4960), + [anon_sym_override] = ACTIONS(4960), + [anon_sym_partial] = ACTIONS(4960), + [anon_sym_protected] = ACTIONS(4960), + [anon_sym_required] = ACTIONS(4960), + [anon_sym_sealed] = ACTIONS(4960), + [anon_sym_virtual] = ACTIONS(4960), + [anon_sym_volatile] = ACTIONS(4960), + [anon_sym_where] = ACTIONS(4960), + [anon_sym_notnull] = ACTIONS(4960), + [anon_sym_unmanaged] = ACTIONS(4960), + [anon_sym_implicit] = ACTIONS(4960), + [anon_sym_explicit] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4962), + [anon_sym_scoped] = ACTIONS(4960), + [anon_sym_var] = ACTIONS(4960), + [sym_predefined_type] = ACTIONS(4960), + [anon_sym_yield] = ACTIONS(4960), + [anon_sym_when] = ACTIONS(4960), + [anon_sym_from] = ACTIONS(4960), + [anon_sym_into] = ACTIONS(4960), + [anon_sym_join] = ACTIONS(4960), + [anon_sym_on] = ACTIONS(4960), + [anon_sym_equals] = ACTIONS(4960), + [anon_sym_let] = ACTIONS(4960), + [anon_sym_orderby] = ACTIONS(4960), + [anon_sym_ascending] = ACTIONS(4960), + [anon_sym_descending] = ACTIONS(4960), + [anon_sym_group] = ACTIONS(4960), + [anon_sym_by] = ACTIONS(4960), + [anon_sym_select] = ACTIONS(4960), + [sym_grit_metavariable] = ACTIONS(4962), + [aux_sym_preproc_if_token1] = 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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467043,27 +466788,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2804] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2804), [sym_preproc_endregion] = STATE(2804), [sym_preproc_line] = STATE(2804), @@ -467073,50 +466797,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(4964), + [anon_sym_extern] = ACTIONS(4964), + [anon_sym_alias] = ACTIONS(4964), + [anon_sym_global] = ACTIONS(4964), + [anon_sym_using] = ACTIONS(4964), + [anon_sym_unsafe] = ACTIONS(4964), + [anon_sym_static] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_event] = ACTIONS(4964), + [anon_sym_namespace] = ACTIONS(4964), + [anon_sym_class] = ACTIONS(4964), + [anon_sym_ref] = ACTIONS(4964), + [anon_sym_struct] = ACTIONS(4964), + [anon_sym_enum] = ACTIONS(4964), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_interface] = ACTIONS(4964), + [anon_sym_delegate] = ACTIONS(4964), + [anon_sym_record] = ACTIONS(4964), + [anon_sym_public] = ACTIONS(4964), + [anon_sym_private] = ACTIONS(4964), + [anon_sym_readonly] = ACTIONS(4964), + [anon_sym_abstract] = ACTIONS(4964), + [anon_sym_async] = ACTIONS(4964), + [anon_sym_const] = ACTIONS(4964), + [anon_sym_file] = ACTIONS(4964), + [anon_sym_fixed] = ACTIONS(4964), + [anon_sym_internal] = ACTIONS(4964), + [anon_sym_new] = ACTIONS(4964), + [anon_sym_override] = ACTIONS(4964), + [anon_sym_partial] = ACTIONS(4964), + [anon_sym_protected] = ACTIONS(4964), + [anon_sym_required] = ACTIONS(4964), + [anon_sym_sealed] = ACTIONS(4964), + [anon_sym_virtual] = ACTIONS(4964), + [anon_sym_volatile] = ACTIONS(4964), + [anon_sym_where] = ACTIONS(4964), + [anon_sym_notnull] = ACTIONS(4964), + [anon_sym_unmanaged] = ACTIONS(4964), + [anon_sym_implicit] = ACTIONS(4964), + [anon_sym_explicit] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4966), + [anon_sym_scoped] = ACTIONS(4964), + [anon_sym_var] = ACTIONS(4964), + [sym_predefined_type] = ACTIONS(4964), + [anon_sym_yield] = ACTIONS(4964), + [anon_sym_when] = ACTIONS(4964), + [anon_sym_from] = ACTIONS(4964), + [anon_sym_into] = ACTIONS(4964), + [anon_sym_join] = ACTIONS(4964), + [anon_sym_on] = ACTIONS(4964), + [anon_sym_equals] = ACTIONS(4964), + [anon_sym_let] = ACTIONS(4964), + [anon_sym_orderby] = ACTIONS(4964), + [anon_sym_ascending] = ACTIONS(4964), + [anon_sym_descending] = ACTIONS(4964), + [anon_sym_group] = ACTIONS(4964), + [anon_sym_by] = ACTIONS(4964), + [anon_sym_select] = ACTIONS(4964), + [sym_grit_metavariable] = ACTIONS(4966), + [aux_sym_preproc_if_token1] = ACTIONS(4966), + [aux_sym_preproc_if_token3] = ACTIONS(4966), + [aux_sym_preproc_else_token1] = ACTIONS(4966), + [aux_sym_preproc_elif_token1] = ACTIONS(4966), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467129,27 +466873,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2805] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2805), [sym_preproc_endregion] = STATE(2805), [sym_preproc_line] = STATE(2805), @@ -467159,136 +466882,155 @@ 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_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2806] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), - [sym_preproc_region] = STATE(2806), - [sym_preproc_endregion] = STATE(2806), - [sym_preproc_line] = STATE(2806), - [sym_preproc_pragma] = STATE(2806), + [sym__identifier_token] = ACTIONS(3588), + [anon_sym_extern] = ACTIONS(3588), + [anon_sym_alias] = ACTIONS(3588), + [anon_sym_global] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_unsafe] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3590), + [anon_sym_event] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_ref] = ACTIONS(3588), + [anon_sym_struct] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3590), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_delegate] = ACTIONS(3588), + [anon_sym_record] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_file] = ACTIONS(3588), + [anon_sym_fixed] = ACTIONS(3588), + [anon_sym_internal] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_partial] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_sealed] = ACTIONS(3588), + [anon_sym_virtual] = ACTIONS(3588), + [anon_sym_volatile] = ACTIONS(3588), + [anon_sym_where] = ACTIONS(3588), + [anon_sym_notnull] = ACTIONS(3588), + [anon_sym_unmanaged] = ACTIONS(3588), + [anon_sym_implicit] = ACTIONS(3588), + [anon_sym_explicit] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_scoped] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [sym_predefined_type] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_when] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_into] = ACTIONS(3588), + [anon_sym_join] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_equals] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_orderby] = ACTIONS(3588), + [anon_sym_ascending] = ACTIONS(3588), + [anon_sym_descending] = ACTIONS(3588), + [anon_sym_group] = ACTIONS(3588), + [anon_sym_by] = ACTIONS(3588), + [anon_sym_select] = ACTIONS(3588), + [sym_grit_metavariable] = ACTIONS(3590), + [aux_sym_preproc_if_token1] = ACTIONS(3590), + [aux_sym_preproc_if_token3] = ACTIONS(3590), + [aux_sym_preproc_else_token1] = ACTIONS(3590), + [aux_sym_preproc_elif_token1] = ACTIONS(3590), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2806] = { + [sym_preproc_region] = STATE(2806), + [sym_preproc_endregion] = STATE(2806), + [sym_preproc_line] = STATE(2806), + [sym_preproc_pragma] = STATE(2806), [sym_preproc_nullable] = STATE(2806), [sym_preproc_error] = STATE(2806), [sym_preproc_warning] = STATE(2806), [sym_preproc_define] = STATE(2806), [sym_preproc_undef] = STATE(2806), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(3596), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym_alias] = ACTIONS(3596), + [anon_sym_global] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_unsafe] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_event] = ACTIONS(3596), + [anon_sym_namespace] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_ref] = ACTIONS(3596), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_RBRACE] = ACTIONS(3598), + [anon_sym_interface] = ACTIONS(3596), + [anon_sym_delegate] = ACTIONS(3596), + [anon_sym_record] = ACTIONS(3596), + [anon_sym_public] = ACTIONS(3596), + [anon_sym_private] = ACTIONS(3596), + [anon_sym_readonly] = ACTIONS(3596), + [anon_sym_abstract] = ACTIONS(3596), + [anon_sym_async] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_file] = ACTIONS(3596), + [anon_sym_fixed] = ACTIONS(3596), + [anon_sym_internal] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_override] = ACTIONS(3596), + [anon_sym_partial] = ACTIONS(3596), + [anon_sym_protected] = ACTIONS(3596), + [anon_sym_required] = ACTIONS(3596), + [anon_sym_sealed] = ACTIONS(3596), + [anon_sym_virtual] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_where] = ACTIONS(3596), + [anon_sym_notnull] = ACTIONS(3596), + [anon_sym_unmanaged] = ACTIONS(3596), + [anon_sym_implicit] = ACTIONS(3596), + [anon_sym_explicit] = ACTIONS(3596), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_scoped] = ACTIONS(3596), + [anon_sym_var] = ACTIONS(3596), + [sym_predefined_type] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_when] = 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), + [sym_grit_metavariable] = ACTIONS(3598), + [aux_sym_preproc_if_token1] = 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), @@ -467301,27 +467043,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2807] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2807), [sym_preproc_endregion] = STATE(2807), [sym_preproc_line] = STATE(2807), @@ -467331,50 +467052,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_when] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3957), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467387,27 +467128,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2808] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2808), [sym_preproc_endregion] = STATE(2808), [sym_preproc_line] = STATE(2808), @@ -467417,50 +467137,70 @@ 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_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_ascending] = ACTIONS(4672), - [anon_sym_descending] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4676), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(3580), + [anon_sym_extern] = ACTIONS(3580), + [anon_sym_alias] = ACTIONS(3580), + [anon_sym_global] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LPAREN] = ACTIONS(3582), + [anon_sym_event] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_ref] = ACTIONS(3580), + [anon_sym_struct] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3582), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_delegate] = ACTIONS(3580), + [anon_sym_record] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_file] = ACTIONS(3580), + [anon_sym_fixed] = ACTIONS(3580), + [anon_sym_internal] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_partial] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_sealed] = ACTIONS(3580), + [anon_sym_virtual] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(3580), + [anon_sym_notnull] = ACTIONS(3580), + [anon_sym_unmanaged] = ACTIONS(3580), + [anon_sym_implicit] = ACTIONS(3580), + [anon_sym_explicit] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_scoped] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [sym_predefined_type] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_when] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_into] = ACTIONS(3580), + [anon_sym_join] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_equals] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_orderby] = ACTIONS(3580), + [anon_sym_ascending] = ACTIONS(3580), + [anon_sym_descending] = ACTIONS(3580), + [anon_sym_group] = ACTIONS(3580), + [anon_sym_by] = ACTIONS(3580), + [anon_sym_select] = ACTIONS(3580), + [sym_grit_metavariable] = ACTIONS(3582), + [aux_sym_preproc_if_token1] = ACTIONS(3582), + [aux_sym_preproc_if_token3] = ACTIONS(3582), + [aux_sym_preproc_else_token1] = ACTIONS(3582), + [aux_sym_preproc_elif_token1] = ACTIONS(3582), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467473,27 +467213,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2809] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), [sym_preproc_region] = STATE(2809), [sym_preproc_endregion] = STATE(2809), [sym_preproc_line] = STATE(2809), @@ -467503,83 +467222,82 @@ 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(4760), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_RBRACK] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4760), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4851), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_if_token3] = ACTIONS(4760), - [aux_sym_preproc_else_token1] = ACTIONS(4760), - [aux_sym_preproc_elif_token1] = ACTIONS(4760), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4409), + [anon_sym_alias] = ACTIONS(4409), + [anon_sym_global] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_COLON] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4411), + [anon_sym_file] = ACTIONS(4409), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4409), + [anon_sym_QMARK] = ACTIONS(4409), + [anon_sym_notnull] = ACTIONS(4409), + [anon_sym_unmanaged] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_scoped] = ACTIONS(4409), + [anon_sym_var] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_yield] = ACTIONS(4409), + [anon_sym_switch] = ACTIONS(4409), + [anon_sym_when] = ACTIONS(4409), + [sym_discard] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_and] = ACTIONS(4409), + [anon_sym_or] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4409), + [sym_op_bitwise_or] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4411), + [sym_op_left_shift] = ACTIONS(4411), + [sym_op_right_shift] = ACTIONS(4409), + [sym_op_unsigned_right_shift] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [sym_op_divide] = ACTIONS(4409), + [sym_op_modulo] = ACTIONS(4411), + [sym_op_coalescing] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [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), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_DASH_GT] = ACTIONS(4411), + [anon_sym_with] = ACTIONS(4409), + [sym_grit_metavariable] = ACTIONS(4411), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4411), }, [2810] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(913), - [sym_op_neq] = STATE(913), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(910), - [sym_op_or] = STATE(899), - [sym_op_bitwise_and] = STATE(892), - [sym_op_bitwise_or] = STATE(889), - [sym_op_bitwise_xor] = STATE(888), - [sym_op_left_shift] = STATE(887), - [sym_op_right_shift] = STATE(887), - [sym_op_unsigned_right_shift] = STATE(887), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(880), - [sym_op_divide] = STATE(880), - [sym_op_modulo] = STATE(880), [sym_preproc_region] = STATE(2810), [sym_preproc_endregion] = STATE(2810), [sym_preproc_line] = STATE(2810), @@ -467589,50 +467307,70 @@ 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_LBRACK] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4922), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4868), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4870), - [anon_sym_from] = ACTIONS(4922), - [anon_sym_join] = ACTIONS(4922), - [anon_sym_let] = ACTIONS(4922), - [anon_sym_orderby] = ACTIONS(4922), - [anon_sym_ascending] = ACTIONS(4924), - [anon_sym_descending] = ACTIONS(4924), - [anon_sym_group] = ACTIONS(4922), - [anon_sym_select] = ACTIONS(4922), - [anon_sym_as] = ACTIONS(4804), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4706), - [sym_grit_metavariable] = ACTIONS(4924), + [sym__identifier_token] = ACTIONS(4968), + [anon_sym_extern] = ACTIONS(4968), + [anon_sym_alias] = ACTIONS(4968), + [anon_sym_global] = ACTIONS(4968), + [anon_sym_using] = ACTIONS(4968), + [anon_sym_unsafe] = ACTIONS(4968), + [anon_sym_static] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_event] = ACTIONS(4968), + [anon_sym_namespace] = ACTIONS(4968), + [anon_sym_class] = ACTIONS(4968), + [anon_sym_ref] = ACTIONS(4968), + [anon_sym_struct] = ACTIONS(4968), + [anon_sym_enum] = ACTIONS(4968), + [anon_sym_RBRACE] = ACTIONS(4970), + [anon_sym_interface] = ACTIONS(4968), + [anon_sym_delegate] = ACTIONS(4968), + [anon_sym_record] = ACTIONS(4968), + [anon_sym_public] = ACTIONS(4968), + [anon_sym_private] = ACTIONS(4968), + [anon_sym_readonly] = ACTIONS(4968), + [anon_sym_abstract] = ACTIONS(4968), + [anon_sym_async] = ACTIONS(4968), + [anon_sym_const] = ACTIONS(4968), + [anon_sym_file] = ACTIONS(4968), + [anon_sym_fixed] = ACTIONS(4968), + [anon_sym_internal] = ACTIONS(4968), + [anon_sym_new] = ACTIONS(4968), + [anon_sym_override] = ACTIONS(4968), + [anon_sym_partial] = ACTIONS(4968), + [anon_sym_protected] = ACTIONS(4968), + [anon_sym_required] = ACTIONS(4968), + [anon_sym_sealed] = ACTIONS(4968), + [anon_sym_virtual] = ACTIONS(4968), + [anon_sym_volatile] = ACTIONS(4968), + [anon_sym_where] = ACTIONS(4968), + [anon_sym_notnull] = ACTIONS(4968), + [anon_sym_unmanaged] = ACTIONS(4968), + [anon_sym_implicit] = ACTIONS(4968), + [anon_sym_explicit] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4970), + [anon_sym_scoped] = ACTIONS(4968), + [anon_sym_var] = ACTIONS(4968), + [sym_predefined_type] = ACTIONS(4968), + [anon_sym_yield] = ACTIONS(4968), + [anon_sym_when] = ACTIONS(4968), + [anon_sym_from] = ACTIONS(4968), + [anon_sym_into] = ACTIONS(4968), + [anon_sym_join] = ACTIONS(4968), + [anon_sym_on] = ACTIONS(4968), + [anon_sym_equals] = ACTIONS(4968), + [anon_sym_let] = ACTIONS(4968), + [anon_sym_orderby] = ACTIONS(4968), + [anon_sym_ascending] = ACTIONS(4968), + [anon_sym_descending] = ACTIONS(4968), + [anon_sym_group] = ACTIONS(4968), + [anon_sym_by] = ACTIONS(4968), + [anon_sym_select] = ACTIONS(4968), + [sym_grit_metavariable] = ACTIONS(4970), + [aux_sym_preproc_if_token1] = ACTIONS(4970), + [aux_sym_preproc_if_token3] = ACTIONS(4970), + [aux_sym_preproc_else_token1] = ACTIONS(4970), + [aux_sym_preproc_elif_token1] = ACTIONS(4970), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467654,70 +467392,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2811), [sym_preproc_define] = STATE(2811), [sym_preproc_undef] = STATE(2811), - [sym__identifier_token] = ACTIONS(4926), - [anon_sym_extern] = ACTIONS(4926), - [anon_sym_alias] = ACTIONS(4926), - [anon_sym_global] = ACTIONS(4926), - [anon_sym_using] = ACTIONS(4926), - [anon_sym_unsafe] = ACTIONS(4926), - [anon_sym_static] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_event] = ACTIONS(4926), - [anon_sym_namespace] = ACTIONS(4926), - [anon_sym_class] = ACTIONS(4926), - [anon_sym_ref] = ACTIONS(4926), - [anon_sym_struct] = ACTIONS(4926), - [anon_sym_enum] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_interface] = ACTIONS(4926), - [anon_sym_delegate] = ACTIONS(4926), - [anon_sym_record] = ACTIONS(4926), - [anon_sym_public] = ACTIONS(4926), - [anon_sym_private] = ACTIONS(4926), - [anon_sym_readonly] = ACTIONS(4926), - [anon_sym_abstract] = ACTIONS(4926), - [anon_sym_async] = ACTIONS(4926), - [anon_sym_const] = ACTIONS(4926), - [anon_sym_file] = ACTIONS(4926), - [anon_sym_fixed] = ACTIONS(4926), - [anon_sym_internal] = ACTIONS(4926), - [anon_sym_new] = ACTIONS(4926), - [anon_sym_override] = ACTIONS(4926), - [anon_sym_partial] = ACTIONS(4926), - [anon_sym_protected] = ACTIONS(4926), - [anon_sym_required] = ACTIONS(4926), - [anon_sym_sealed] = ACTIONS(4926), - [anon_sym_virtual] = ACTIONS(4926), - [anon_sym_volatile] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_notnull] = ACTIONS(4926), - [anon_sym_unmanaged] = ACTIONS(4926), - [anon_sym_TILDE] = ACTIONS(4928), - [anon_sym_implicit] = ACTIONS(4926), - [anon_sym_explicit] = ACTIONS(4926), - [anon_sym_scoped] = ACTIONS(4926), - [anon_sym_var] = ACTIONS(4926), - [sym_predefined_type] = ACTIONS(4926), - [anon_sym_yield] = ACTIONS(4926), - [anon_sym_when] = 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_ascending] = ACTIONS(4926), - [anon_sym_descending] = ACTIONS(4926), - [anon_sym_group] = ACTIONS(4926), - [anon_sym_by] = ACTIONS(4926), - [anon_sym_select] = ACTIONS(4926), - [sym_grit_metavariable] = ACTIONS(4928), - [aux_sym_preproc_if_token1] = ACTIONS(4928), - [aux_sym_preproc_if_token3] = ACTIONS(4928), - [aux_sym_preproc_else_token1] = ACTIONS(4928), - [aux_sym_preproc_elif_token1] = ACTIONS(4928), + [sym__identifier_token] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym_alias] = ACTIONS(3672), + [anon_sym_global] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_unsafe] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_LPAREN] = ACTIONS(3674), + [anon_sym_event] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_ref] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_interface] = ACTIONS(3672), + [anon_sym_delegate] = ACTIONS(3672), + [anon_sym_record] = ACTIONS(3672), + [anon_sym_public] = ACTIONS(3672), + [anon_sym_private] = ACTIONS(3672), + [anon_sym_readonly] = ACTIONS(3672), + [anon_sym_abstract] = ACTIONS(3672), + [anon_sym_async] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_file] = ACTIONS(3672), + [anon_sym_fixed] = ACTIONS(3672), + [anon_sym_internal] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_override] = ACTIONS(3672), + [anon_sym_partial] = ACTIONS(3672), + [anon_sym_protected] = ACTIONS(3672), + [anon_sym_required] = ACTIONS(3672), + [anon_sym_sealed] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_where] = ACTIONS(3672), + [anon_sym_notnull] = ACTIONS(3672), + [anon_sym_unmanaged] = ACTIONS(3672), + [anon_sym_implicit] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_scoped] = ACTIONS(3672), + [anon_sym_var] = ACTIONS(3672), + [sym_predefined_type] = ACTIONS(3672), + [anon_sym_yield] = ACTIONS(3672), + [anon_sym_when] = ACTIONS(3672), + [anon_sym_from] = ACTIONS(3672), + [anon_sym_into] = ACTIONS(3672), + [anon_sym_join] = ACTIONS(3672), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_equals] = ACTIONS(3672), + [anon_sym_let] = ACTIONS(3672), + [anon_sym_orderby] = ACTIONS(3672), + [anon_sym_ascending] = ACTIONS(3672), + [anon_sym_descending] = ACTIONS(3672), + [anon_sym_group] = ACTIONS(3672), + [anon_sym_by] = ACTIONS(3672), + [anon_sym_select] = ACTIONS(3672), + [sym_grit_metavariable] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3674), + [aux_sym_preproc_if_token3] = ACTIONS(3674), + [aux_sym_preproc_else_token1] = ACTIONS(3674), + [aux_sym_preproc_elif_token1] = ACTIONS(3674), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467739,70 +467477,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2812), [sym_preproc_define] = STATE(2812), [sym_preproc_undef] = STATE(2812), - [sym__identifier_token] = ACTIONS(4930), - [anon_sym_extern] = ACTIONS(4930), - [anon_sym_alias] = ACTIONS(4930), - [anon_sym_global] = ACTIONS(4930), - [anon_sym_using] = ACTIONS(4930), - [anon_sym_unsafe] = ACTIONS(4930), - [anon_sym_static] = ACTIONS(4930), - [anon_sym_LBRACK] = ACTIONS(4932), - [anon_sym_LPAREN] = ACTIONS(4932), - [anon_sym_event] = ACTIONS(4930), - [anon_sym_namespace] = ACTIONS(4930), - [anon_sym_class] = ACTIONS(4930), - [anon_sym_ref] = ACTIONS(4930), - [anon_sym_struct] = ACTIONS(4930), - [anon_sym_enum] = ACTIONS(4930), - [anon_sym_RBRACE] = ACTIONS(4932), - [anon_sym_interface] = ACTIONS(4930), - [anon_sym_delegate] = ACTIONS(4930), - [anon_sym_record] = ACTIONS(4930), - [anon_sym_public] = ACTIONS(4930), - [anon_sym_private] = ACTIONS(4930), - [anon_sym_readonly] = ACTIONS(4930), - [anon_sym_abstract] = ACTIONS(4930), - [anon_sym_async] = ACTIONS(4930), - [anon_sym_const] = ACTIONS(4930), - [anon_sym_file] = ACTIONS(4930), - [anon_sym_fixed] = ACTIONS(4930), - [anon_sym_internal] = ACTIONS(4930), - [anon_sym_new] = ACTIONS(4930), - [anon_sym_override] = ACTIONS(4930), - [anon_sym_partial] = ACTIONS(4930), - [anon_sym_protected] = ACTIONS(4930), - [anon_sym_required] = ACTIONS(4930), - [anon_sym_sealed] = ACTIONS(4930), - [anon_sym_virtual] = ACTIONS(4930), - [anon_sym_volatile] = ACTIONS(4930), - [anon_sym_where] = ACTIONS(4930), - [anon_sym_notnull] = ACTIONS(4930), - [anon_sym_unmanaged] = ACTIONS(4930), - [anon_sym_TILDE] = ACTIONS(4932), - [anon_sym_implicit] = ACTIONS(4930), - [anon_sym_explicit] = ACTIONS(4930), - [anon_sym_scoped] = ACTIONS(4930), - [anon_sym_var] = ACTIONS(4930), - [sym_predefined_type] = ACTIONS(4930), - [anon_sym_yield] = ACTIONS(4930), - [anon_sym_when] = ACTIONS(4930), - [anon_sym_from] = ACTIONS(4930), - [anon_sym_into] = ACTIONS(4930), - [anon_sym_join] = ACTIONS(4930), - [anon_sym_on] = ACTIONS(4930), - [anon_sym_equals] = ACTIONS(4930), - [anon_sym_let] = ACTIONS(4930), - [anon_sym_orderby] = ACTIONS(4930), - [anon_sym_ascending] = ACTIONS(4930), - [anon_sym_descending] = ACTIONS(4930), - [anon_sym_group] = ACTIONS(4930), - [anon_sym_by] = ACTIONS(4930), - [anon_sym_select] = ACTIONS(4930), - [sym_grit_metavariable] = ACTIONS(4932), - [aux_sym_preproc_if_token1] = ACTIONS(4932), - [aux_sym_preproc_if_token3] = ACTIONS(4932), - [aux_sym_preproc_else_token1] = ACTIONS(4932), - [aux_sym_preproc_elif_token1] = ACTIONS(4932), + [sym__identifier_token] = ACTIONS(4391), + [anon_sym_alias] = ACTIONS(4391), + [anon_sym_global] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_COLON] = ACTIONS(4393), + [anon_sym_COMMA] = ACTIONS(4393), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4393), + [anon_sym_file] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4391), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_where] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_notnull] = ACTIONS(4391), + [anon_sym_unmanaged] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_scoped] = ACTIONS(4391), + [anon_sym_var] = ACTIONS(4391), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_yield] = ACTIONS(4391), + [anon_sym_switch] = ACTIONS(4391), + [anon_sym_when] = ACTIONS(4391), + [sym_discard] = ACTIONS(4391), + [anon_sym_DOT_DOT] = ACTIONS(4393), + [anon_sym_LT_EQ] = ACTIONS(4393), + [anon_sym_GT_EQ] = ACTIONS(4393), + [anon_sym_and] = ACTIONS(4391), + [anon_sym_or] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_AMP_AMP] = ACTIONS(4393), + [anon_sym_PIPE_PIPE] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(4391), + [sym_op_bitwise_or] = ACTIONS(4391), + [anon_sym_CARET] = ACTIONS(4393), + [sym_op_left_shift] = ACTIONS(4393), + [sym_op_right_shift] = ACTIONS(4391), + [sym_op_unsigned_right_shift] = ACTIONS(4393), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [sym_op_divide] = ACTIONS(4391), + [sym_op_modulo] = ACTIONS(4393), + [sym_op_coalescing] = ACTIONS(4393), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4393), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_from] = ACTIONS(4391), + [anon_sym_into] = ACTIONS(4391), + [anon_sym_join] = ACTIONS(4391), + [anon_sym_on] = ACTIONS(4391), + [anon_sym_equals] = ACTIONS(4391), + [anon_sym_let] = ACTIONS(4391), + [anon_sym_orderby] = ACTIONS(4391), + [anon_sym_ascending] = ACTIONS(4391), + [anon_sym_descending] = ACTIONS(4391), + [anon_sym_group] = ACTIONS(4391), + [anon_sym_by] = ACTIONS(4391), + [anon_sym_select] = ACTIONS(4391), + [anon_sym_as] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4391), + [anon_sym_DASH_GT] = ACTIONS(4393), + [anon_sym_with] = ACTIONS(4391), + [sym_grit_metavariable] = ACTIONS(4393), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467813,6 +467550,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(4393), }, [2813] = { [sym_preproc_region] = STATE(2813), @@ -467824,70 +467562,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2813), [sym_preproc_define] = STATE(2813), [sym_preproc_undef] = STATE(2813), - [sym__identifier_token] = ACTIONS(3640), - [anon_sym_extern] = ACTIONS(3640), - [anon_sym_alias] = ACTIONS(3640), - [anon_sym_global] = ACTIONS(3640), - [anon_sym_using] = ACTIONS(3640), - [anon_sym_unsafe] = ACTIONS(3640), - [anon_sym_static] = ACTIONS(3640), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3642), - [anon_sym_event] = ACTIONS(3640), - [anon_sym_namespace] = ACTIONS(3640), - [anon_sym_class] = ACTIONS(3640), - [anon_sym_ref] = ACTIONS(3640), - [anon_sym_struct] = ACTIONS(3640), - [anon_sym_enum] = ACTIONS(3640), - [anon_sym_RBRACE] = ACTIONS(3642), - [anon_sym_interface] = ACTIONS(3640), - [anon_sym_delegate] = ACTIONS(3640), - [anon_sym_record] = ACTIONS(3640), - [anon_sym_public] = ACTIONS(3640), - [anon_sym_private] = ACTIONS(3640), - [anon_sym_readonly] = ACTIONS(3640), - [anon_sym_abstract] = ACTIONS(3640), - [anon_sym_async] = ACTIONS(3640), - [anon_sym_const] = ACTIONS(3640), - [anon_sym_file] = ACTIONS(3640), - [anon_sym_fixed] = ACTIONS(3640), - [anon_sym_internal] = ACTIONS(3640), - [anon_sym_new] = ACTIONS(3640), - [anon_sym_override] = ACTIONS(3640), - [anon_sym_partial] = ACTIONS(3640), - [anon_sym_protected] = ACTIONS(3640), - [anon_sym_required] = ACTIONS(3640), - [anon_sym_sealed] = ACTIONS(3640), - [anon_sym_virtual] = ACTIONS(3640), - [anon_sym_volatile] = ACTIONS(3640), - [anon_sym_where] = ACTIONS(3640), - [anon_sym_notnull] = ACTIONS(3640), - [anon_sym_unmanaged] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_implicit] = ACTIONS(3640), - [anon_sym_explicit] = ACTIONS(3640), - [anon_sym_scoped] = ACTIONS(3640), - [anon_sym_var] = ACTIONS(3640), - [sym_predefined_type] = ACTIONS(3640), - [anon_sym_yield] = ACTIONS(3640), - [anon_sym_when] = ACTIONS(3640), - [anon_sym_from] = ACTIONS(3640), - [anon_sym_into] = ACTIONS(3640), - [anon_sym_join] = ACTIONS(3640), - [anon_sym_on] = ACTIONS(3640), - [anon_sym_equals] = ACTIONS(3640), - [anon_sym_let] = ACTIONS(3640), - [anon_sym_orderby] = ACTIONS(3640), - [anon_sym_ascending] = ACTIONS(3640), - [anon_sym_descending] = ACTIONS(3640), - [anon_sym_group] = ACTIONS(3640), - [anon_sym_by] = ACTIONS(3640), - [anon_sym_select] = ACTIONS(3640), - [sym_grit_metavariable] = ACTIONS(3642), - [aux_sym_preproc_if_token1] = 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(4972), + [anon_sym_extern] = ACTIONS(4972), + [anon_sym_alias] = ACTIONS(4972), + [anon_sym_global] = ACTIONS(4972), + [anon_sym_using] = ACTIONS(4972), + [anon_sym_unsafe] = ACTIONS(4972), + [anon_sym_static] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_event] = ACTIONS(4972), + [anon_sym_namespace] = ACTIONS(4972), + [anon_sym_class] = ACTIONS(4972), + [anon_sym_ref] = ACTIONS(4972), + [anon_sym_struct] = ACTIONS(4972), + [anon_sym_enum] = ACTIONS(4972), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_interface] = ACTIONS(4972), + [anon_sym_delegate] = ACTIONS(4972), + [anon_sym_record] = ACTIONS(4972), + [anon_sym_public] = ACTIONS(4972), + [anon_sym_private] = ACTIONS(4972), + [anon_sym_readonly] = ACTIONS(4972), + [anon_sym_abstract] = ACTIONS(4972), + [anon_sym_async] = ACTIONS(4972), + [anon_sym_const] = ACTIONS(4972), + [anon_sym_file] = ACTIONS(4972), + [anon_sym_fixed] = ACTIONS(4972), + [anon_sym_internal] = ACTIONS(4972), + [anon_sym_new] = ACTIONS(4972), + [anon_sym_override] = ACTIONS(4972), + [anon_sym_partial] = ACTIONS(4972), + [anon_sym_protected] = ACTIONS(4972), + [anon_sym_required] = ACTIONS(4972), + [anon_sym_sealed] = ACTIONS(4972), + [anon_sym_virtual] = ACTIONS(4972), + [anon_sym_volatile] = ACTIONS(4972), + [anon_sym_where] = ACTIONS(4972), + [anon_sym_notnull] = ACTIONS(4972), + [anon_sym_unmanaged] = ACTIONS(4972), + [anon_sym_implicit] = ACTIONS(4972), + [anon_sym_explicit] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4974), + [anon_sym_scoped] = ACTIONS(4972), + [anon_sym_var] = ACTIONS(4972), + [sym_predefined_type] = ACTIONS(4972), + [anon_sym_yield] = ACTIONS(4972), + [anon_sym_when] = ACTIONS(4972), + [anon_sym_from] = ACTIONS(4972), + [anon_sym_into] = ACTIONS(4972), + [anon_sym_join] = ACTIONS(4972), + [anon_sym_on] = ACTIONS(4972), + [anon_sym_equals] = ACTIONS(4972), + [anon_sym_let] = ACTIONS(4972), + [anon_sym_orderby] = ACTIONS(4972), + [anon_sym_ascending] = ACTIONS(4972), + [anon_sym_descending] = ACTIONS(4972), + [anon_sym_group] = ACTIONS(4972), + [anon_sym_by] = ACTIONS(4972), + [anon_sym_select] = ACTIONS(4972), + [sym_grit_metavariable] = ACTIONS(4974), + [aux_sym_preproc_if_token1] = ACTIONS(4974), + [aux_sym_preproc_if_token3] = ACTIONS(4974), + [aux_sym_preproc_else_token1] = ACTIONS(4974), + [aux_sym_preproc_elif_token1] = ACTIONS(4974), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467909,70 +467647,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2814), [sym_preproc_define] = STATE(2814), [sym_preproc_undef] = STATE(2814), - [sym__identifier_token] = ACTIONS(3580), - [anon_sym_extern] = ACTIONS(3580), - [anon_sym_alias] = ACTIONS(3580), - [anon_sym_global] = ACTIONS(3580), - [anon_sym_using] = ACTIONS(3580), - [anon_sym_unsafe] = ACTIONS(3580), - [anon_sym_static] = ACTIONS(3580), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_event] = ACTIONS(3580), - [anon_sym_namespace] = ACTIONS(3580), - [anon_sym_class] = ACTIONS(3580), - [anon_sym_ref] = ACTIONS(3580), - [anon_sym_struct] = ACTIONS(3580), - [anon_sym_enum] = ACTIONS(3580), - [anon_sym_RBRACE] = ACTIONS(3582), - [anon_sym_interface] = ACTIONS(3580), - [anon_sym_delegate] = ACTIONS(3580), - [anon_sym_record] = ACTIONS(3580), - [anon_sym_public] = ACTIONS(3580), - [anon_sym_private] = ACTIONS(3580), - [anon_sym_readonly] = ACTIONS(3580), - [anon_sym_abstract] = ACTIONS(3580), - [anon_sym_async] = ACTIONS(3580), - [anon_sym_const] = ACTIONS(3580), - [anon_sym_file] = ACTIONS(3580), - [anon_sym_fixed] = ACTIONS(3580), - [anon_sym_internal] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3580), - [anon_sym_override] = ACTIONS(3580), - [anon_sym_partial] = ACTIONS(3580), - [anon_sym_protected] = ACTIONS(3580), - [anon_sym_required] = ACTIONS(3580), - [anon_sym_sealed] = ACTIONS(3580), - [anon_sym_virtual] = ACTIONS(3580), - [anon_sym_volatile] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(3580), - [anon_sym_notnull] = ACTIONS(3580), - [anon_sym_unmanaged] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_implicit] = ACTIONS(3580), - [anon_sym_explicit] = ACTIONS(3580), - [anon_sym_scoped] = ACTIONS(3580), - [anon_sym_var] = ACTIONS(3580), - [sym_predefined_type] = ACTIONS(3580), - [anon_sym_yield] = ACTIONS(3580), - [anon_sym_when] = ACTIONS(3580), - [anon_sym_from] = ACTIONS(3580), - [anon_sym_into] = ACTIONS(3580), - [anon_sym_join] = ACTIONS(3580), - [anon_sym_on] = ACTIONS(3580), - [anon_sym_equals] = ACTIONS(3580), - [anon_sym_let] = ACTIONS(3580), - [anon_sym_orderby] = ACTIONS(3580), - [anon_sym_ascending] = ACTIONS(3580), - [anon_sym_descending] = ACTIONS(3580), - [anon_sym_group] = ACTIONS(3580), - [anon_sym_by] = ACTIONS(3580), - [anon_sym_select] = ACTIONS(3580), - [sym_grit_metavariable] = ACTIONS(3582), - [aux_sym_preproc_if_token1] = ACTIONS(3582), - [aux_sym_preproc_if_token3] = ACTIONS(3582), - [aux_sym_preproc_else_token1] = ACTIONS(3582), - [aux_sym_preproc_elif_token1] = ACTIONS(3582), + [sym__identifier_token] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym_alias] = ACTIONS(3668), + [anon_sym_global] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_unsafe] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_LPAREN] = ACTIONS(3670), + [anon_sym_event] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_ref] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_interface] = ACTIONS(3668), + [anon_sym_delegate] = ACTIONS(3668), + [anon_sym_record] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_readonly] = ACTIONS(3668), + [anon_sym_abstract] = ACTIONS(3668), + [anon_sym_async] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_file] = ACTIONS(3668), + [anon_sym_fixed] = ACTIONS(3668), + [anon_sym_internal] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_override] = ACTIONS(3668), + [anon_sym_partial] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_required] = ACTIONS(3668), + [anon_sym_sealed] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_where] = ACTIONS(3668), + [anon_sym_notnull] = ACTIONS(3668), + [anon_sym_unmanaged] = ACTIONS(3668), + [anon_sym_implicit] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_scoped] = ACTIONS(3668), + [anon_sym_var] = ACTIONS(3668), + [sym_predefined_type] = ACTIONS(3668), + [anon_sym_yield] = ACTIONS(3668), + [anon_sym_when] = ACTIONS(3668), + [anon_sym_from] = ACTIONS(3668), + [anon_sym_into] = ACTIONS(3668), + [anon_sym_join] = ACTIONS(3668), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_equals] = ACTIONS(3668), + [anon_sym_let] = ACTIONS(3668), + [anon_sym_orderby] = ACTIONS(3668), + [anon_sym_ascending] = ACTIONS(3668), + [anon_sym_descending] = ACTIONS(3668), + [anon_sym_group] = ACTIONS(3668), + [anon_sym_by] = ACTIONS(3668), + [anon_sym_select] = ACTIONS(3668), + [sym_grit_metavariable] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3670), + [aux_sym_preproc_if_token3] = ACTIONS(3670), + [aux_sym_preproc_else_token1] = ACTIONS(3670), + [aux_sym_preproc_elif_token1] = ACTIONS(3670), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467994,70 +467732,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2815), [sym_preproc_define] = STATE(2815), [sym_preproc_undef] = STATE(2815), - [sym__identifier_token] = ACTIONS(3616), - [anon_sym_extern] = ACTIONS(3616), - [anon_sym_alias] = ACTIONS(3616), - [anon_sym_global] = ACTIONS(3616), - [anon_sym_using] = ACTIONS(3616), - [anon_sym_unsafe] = ACTIONS(3616), - [anon_sym_static] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_event] = ACTIONS(3616), - [anon_sym_namespace] = ACTIONS(3616), - [anon_sym_class] = ACTIONS(3616), - [anon_sym_ref] = ACTIONS(3616), - [anon_sym_struct] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3618), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_delegate] = ACTIONS(3616), - [anon_sym_record] = ACTIONS(3616), - [anon_sym_public] = ACTIONS(3616), - [anon_sym_private] = ACTIONS(3616), - [anon_sym_readonly] = ACTIONS(3616), - [anon_sym_abstract] = ACTIONS(3616), - [anon_sym_async] = ACTIONS(3616), - [anon_sym_const] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3616), - [anon_sym_fixed] = ACTIONS(3616), - [anon_sym_internal] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3616), - [anon_sym_override] = ACTIONS(3616), - [anon_sym_partial] = ACTIONS(3616), - [anon_sym_protected] = ACTIONS(3616), - [anon_sym_required] = ACTIONS(3616), - [anon_sym_sealed] = ACTIONS(3616), - [anon_sym_virtual] = ACTIONS(3616), - [anon_sym_volatile] = ACTIONS(3616), - [anon_sym_where] = ACTIONS(3616), - [anon_sym_notnull] = ACTIONS(3616), - [anon_sym_unmanaged] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3618), - [anon_sym_implicit] = ACTIONS(3616), - [anon_sym_explicit] = ACTIONS(3616), - [anon_sym_scoped] = ACTIONS(3616), - [anon_sym_var] = ACTIONS(3616), - [sym_predefined_type] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3616), - [anon_sym_when] = 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_ascending] = ACTIONS(3616), - [anon_sym_descending] = ACTIONS(3616), - [anon_sym_group] = ACTIONS(3616), - [anon_sym_by] = ACTIONS(3616), - [anon_sym_select] = ACTIONS(3616), - [sym_grit_metavariable] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token3] = ACTIONS(3618), - [aux_sym_preproc_else_token1] = ACTIONS(3618), - [aux_sym_preproc_elif_token1] = ACTIONS(3618), + [sym__identifier_token] = ACTIONS(4976), + [anon_sym_extern] = ACTIONS(4976), + [anon_sym_alias] = ACTIONS(4976), + [anon_sym_global] = ACTIONS(4976), + [anon_sym_using] = ACTIONS(4976), + [anon_sym_unsafe] = ACTIONS(4976), + [anon_sym_static] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_event] = ACTIONS(4976), + [anon_sym_namespace] = ACTIONS(4976), + [anon_sym_class] = ACTIONS(4976), + [anon_sym_ref] = ACTIONS(4976), + [anon_sym_struct] = ACTIONS(4976), + [anon_sym_enum] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_interface] = ACTIONS(4976), + [anon_sym_delegate] = ACTIONS(4976), + [anon_sym_record] = ACTIONS(4976), + [anon_sym_public] = ACTIONS(4976), + [anon_sym_private] = ACTIONS(4976), + [anon_sym_readonly] = ACTIONS(4976), + [anon_sym_abstract] = ACTIONS(4976), + [anon_sym_async] = ACTIONS(4976), + [anon_sym_const] = ACTIONS(4976), + [anon_sym_file] = ACTIONS(4976), + [anon_sym_fixed] = ACTIONS(4976), + [anon_sym_internal] = ACTIONS(4976), + [anon_sym_new] = ACTIONS(4976), + [anon_sym_override] = ACTIONS(4976), + [anon_sym_partial] = ACTIONS(4976), + [anon_sym_protected] = ACTIONS(4976), + [anon_sym_required] = ACTIONS(4976), + [anon_sym_sealed] = ACTIONS(4976), + [anon_sym_virtual] = ACTIONS(4976), + [anon_sym_volatile] = ACTIONS(4976), + [anon_sym_where] = ACTIONS(4976), + [anon_sym_notnull] = ACTIONS(4976), + [anon_sym_unmanaged] = ACTIONS(4976), + [anon_sym_implicit] = ACTIONS(4976), + [anon_sym_explicit] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4978), + [anon_sym_scoped] = ACTIONS(4976), + [anon_sym_var] = ACTIONS(4976), + [sym_predefined_type] = ACTIONS(4976), + [anon_sym_yield] = ACTIONS(4976), + [anon_sym_when] = ACTIONS(4976), + [anon_sym_from] = ACTIONS(4976), + [anon_sym_into] = ACTIONS(4976), + [anon_sym_join] = ACTIONS(4976), + [anon_sym_on] = ACTIONS(4976), + [anon_sym_equals] = ACTIONS(4976), + [anon_sym_let] = ACTIONS(4976), + [anon_sym_orderby] = ACTIONS(4976), + [anon_sym_ascending] = ACTIONS(4976), + [anon_sym_descending] = ACTIONS(4976), + [anon_sym_group] = ACTIONS(4976), + [anon_sym_by] = ACTIONS(4976), + [anon_sym_select] = ACTIONS(4976), + [sym_grit_metavariable] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token3] = ACTIONS(4978), + [aux_sym_preproc_else_token1] = ACTIONS(4978), + [aux_sym_preproc_elif_token1] = ACTIONS(4978), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468079,70 +467817,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2816), [sym_preproc_define] = STATE(2816), [sym_preproc_undef] = STATE(2816), - [sym__identifier_token] = ACTIONS(3632), - [anon_sym_extern] = ACTIONS(3632), - [anon_sym_alias] = ACTIONS(3632), - [anon_sym_global] = ACTIONS(3632), - [anon_sym_using] = ACTIONS(3632), - [anon_sym_unsafe] = ACTIONS(3632), - [anon_sym_static] = ACTIONS(3632), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_event] = ACTIONS(3632), - [anon_sym_namespace] = ACTIONS(3632), - [anon_sym_class] = ACTIONS(3632), - [anon_sym_ref] = ACTIONS(3632), - [anon_sym_struct] = ACTIONS(3632), - [anon_sym_enum] = ACTIONS(3632), - [anon_sym_RBRACE] = ACTIONS(3634), - [anon_sym_interface] = ACTIONS(3632), - [anon_sym_delegate] = ACTIONS(3632), - [anon_sym_record] = ACTIONS(3632), - [anon_sym_public] = ACTIONS(3632), - [anon_sym_private] = ACTIONS(3632), - [anon_sym_readonly] = ACTIONS(3632), - [anon_sym_abstract] = ACTIONS(3632), - [anon_sym_async] = ACTIONS(3632), - [anon_sym_const] = ACTIONS(3632), - [anon_sym_file] = ACTIONS(3632), - [anon_sym_fixed] = ACTIONS(3632), - [anon_sym_internal] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3632), - [anon_sym_override] = ACTIONS(3632), - [anon_sym_partial] = ACTIONS(3632), - [anon_sym_protected] = ACTIONS(3632), - [anon_sym_required] = ACTIONS(3632), - [anon_sym_sealed] = ACTIONS(3632), - [anon_sym_virtual] = ACTIONS(3632), - [anon_sym_volatile] = ACTIONS(3632), - [anon_sym_where] = ACTIONS(3632), - [anon_sym_notnull] = ACTIONS(3632), - [anon_sym_unmanaged] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3634), - [anon_sym_implicit] = ACTIONS(3632), - [anon_sym_explicit] = ACTIONS(3632), - [anon_sym_scoped] = ACTIONS(3632), - [anon_sym_var] = ACTIONS(3632), - [sym_predefined_type] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3632), - [anon_sym_when] = ACTIONS(3632), - [anon_sym_from] = ACTIONS(3632), - [anon_sym_into] = ACTIONS(3632), - [anon_sym_join] = ACTIONS(3632), - [anon_sym_on] = ACTIONS(3632), - [anon_sym_equals] = ACTIONS(3632), - [anon_sym_let] = ACTIONS(3632), - [anon_sym_orderby] = ACTIONS(3632), - [anon_sym_ascending] = ACTIONS(3632), - [anon_sym_descending] = ACTIONS(3632), - [anon_sym_group] = ACTIONS(3632), - [anon_sym_by] = ACTIONS(3632), - [anon_sym_select] = ACTIONS(3632), - [sym_grit_metavariable] = ACTIONS(3634), - [aux_sym_preproc_if_token1] = ACTIONS(3634), - [aux_sym_preproc_if_token3] = ACTIONS(3634), - [aux_sym_preproc_else_token1] = ACTIONS(3634), - [aux_sym_preproc_elif_token1] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_when] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3694), + [anon_sym_or] = ACTIONS(3694), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_into] = ACTIONS(3694), + [anon_sym_on] = ACTIONS(3694), + [anon_sym_equals] = ACTIONS(3694), + [anon_sym_by] = ACTIONS(3694), + [anon_sym_as] = ACTIONS(3694), + [anon_sym_is] = ACTIONS(3694), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3694), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468164,80 +467902,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2817), [sym_preproc_define] = STATE(2817), [sym_preproc_undef] = STATE(2817), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4430), - [anon_sym_global] = ACTIONS(4430), - [anon_sym_LBRACK] = ACTIONS(4432), - [anon_sym_COLON] = ACTIONS(4432), - [anon_sym_COMMA] = ACTIONS(4432), - [anon_sym_LPAREN] = ACTIONS(4432), - [anon_sym_LBRACE] = ACTIONS(4432), - [anon_sym_file] = ACTIONS(4430), - [anon_sym_LT] = ACTIONS(4430), - [anon_sym_GT] = ACTIONS(4430), - [anon_sym_where] = ACTIONS(4430), - [anon_sym_QMARK] = ACTIONS(4430), - [anon_sym_notnull] = ACTIONS(4430), - [anon_sym_unmanaged] = ACTIONS(4430), - [anon_sym_BANG] = ACTIONS(4430), - [anon_sym_PLUS_PLUS] = ACTIONS(4432), - [anon_sym_DASH_DASH] = ACTIONS(4432), - [anon_sym_PLUS] = ACTIONS(4430), - [anon_sym_DASH] = ACTIONS(4430), - [anon_sym_STAR] = ACTIONS(4432), - [anon_sym_SLASH] = ACTIONS(4430), - [anon_sym_PERCENT] = ACTIONS(4432), - [anon_sym_CARET] = ACTIONS(4432), - [anon_sym_PIPE] = ACTIONS(4430), - [anon_sym_AMP] = ACTIONS(4430), - [anon_sym_LT_LT] = ACTIONS(4432), - [anon_sym_GT_GT] = ACTIONS(4430), - [anon_sym_GT_GT_GT] = ACTIONS(4432), - [anon_sym_EQ_EQ] = ACTIONS(4432), - [anon_sym_BANG_EQ] = ACTIONS(4432), - [anon_sym_GT_EQ] = ACTIONS(4432), - [anon_sym_LT_EQ] = ACTIONS(4432), - [anon_sym_DOT] = ACTIONS(4430), - [anon_sym_scoped] = ACTIONS(4430), - [anon_sym_var] = ACTIONS(4430), - [anon_sym_yield] = ACTIONS(4430), - [anon_sym_switch] = ACTIONS(4430), - [anon_sym_when] = ACTIONS(4430), - [sym_discard] = ACTIONS(4430), - [anon_sym_DOT_DOT] = ACTIONS(4432), - [anon_sym_and] = ACTIONS(4430), - [anon_sym_or] = ACTIONS(4430), - [anon_sym_AMP_AMP] = ACTIONS(4432), - [anon_sym_PIPE_PIPE] = ACTIONS(4432), - [sym_op_coalescing] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4430), - [anon_sym_into] = ACTIONS(4430), - [anon_sym_join] = ACTIONS(4430), - [anon_sym_on] = ACTIONS(4430), - [anon_sym_equals] = ACTIONS(4430), - [anon_sym_let] = ACTIONS(4430), - [anon_sym_orderby] = ACTIONS(4430), - [anon_sym_ascending] = ACTIONS(4430), - [anon_sym_descending] = ACTIONS(4430), - [anon_sym_group] = ACTIONS(4430), - [anon_sym_by] = ACTIONS(4430), - [anon_sym_select] = ACTIONS(4430), - [anon_sym_as] = ACTIONS(4430), - [anon_sym_is] = ACTIONS(4430), - [anon_sym_DASH_GT] = ACTIONS(4432), - [anon_sym_with] = ACTIONS(4430), - [sym_grit_metavariable] = ACTIONS(4432), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4432), + [sym__identifier_token] = ACTIONS(4980), + [anon_sym_extern] = ACTIONS(4980), + [anon_sym_alias] = ACTIONS(4980), + [anon_sym_global] = ACTIONS(4980), + [anon_sym_using] = ACTIONS(4980), + [anon_sym_unsafe] = ACTIONS(4980), + [anon_sym_static] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_event] = ACTIONS(4980), + [anon_sym_namespace] = ACTIONS(4980), + [anon_sym_class] = ACTIONS(4980), + [anon_sym_ref] = ACTIONS(4980), + [anon_sym_struct] = ACTIONS(4980), + [anon_sym_enum] = ACTIONS(4980), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_interface] = ACTIONS(4980), + [anon_sym_delegate] = ACTIONS(4980), + [anon_sym_record] = ACTIONS(4980), + [anon_sym_public] = ACTIONS(4980), + [anon_sym_private] = ACTIONS(4980), + [anon_sym_readonly] = ACTIONS(4980), + [anon_sym_abstract] = ACTIONS(4980), + [anon_sym_async] = ACTIONS(4980), + [anon_sym_const] = ACTIONS(4980), + [anon_sym_file] = ACTIONS(4980), + [anon_sym_fixed] = ACTIONS(4980), + [anon_sym_internal] = ACTIONS(4980), + [anon_sym_new] = ACTIONS(4980), + [anon_sym_override] = ACTIONS(4980), + [anon_sym_partial] = ACTIONS(4980), + [anon_sym_protected] = ACTIONS(4980), + [anon_sym_required] = ACTIONS(4980), + [anon_sym_sealed] = ACTIONS(4980), + [anon_sym_virtual] = ACTIONS(4980), + [anon_sym_volatile] = ACTIONS(4980), + [anon_sym_where] = ACTIONS(4980), + [anon_sym_notnull] = ACTIONS(4980), + [anon_sym_unmanaged] = ACTIONS(4980), + [anon_sym_implicit] = ACTIONS(4980), + [anon_sym_explicit] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4982), + [anon_sym_scoped] = ACTIONS(4980), + [anon_sym_var] = ACTIONS(4980), + [sym_predefined_type] = ACTIONS(4980), + [anon_sym_yield] = ACTIONS(4980), + [anon_sym_when] = ACTIONS(4980), + [anon_sym_from] = ACTIONS(4980), + [anon_sym_into] = ACTIONS(4980), + [anon_sym_join] = ACTIONS(4980), + [anon_sym_on] = ACTIONS(4980), + [anon_sym_equals] = ACTIONS(4980), + [anon_sym_let] = ACTIONS(4980), + [anon_sym_orderby] = ACTIONS(4980), + [anon_sym_ascending] = ACTIONS(4980), + [anon_sym_descending] = ACTIONS(4980), + [anon_sym_group] = ACTIONS(4980), + [anon_sym_by] = ACTIONS(4980), + [anon_sym_select] = ACTIONS(4980), + [sym_grit_metavariable] = ACTIONS(4982), + [aux_sym_preproc_if_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token3] = ACTIONS(4982), + [aux_sym_preproc_else_token1] = ACTIONS(4982), + [aux_sym_preproc_elif_token1] = ACTIONS(4982), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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_preproc_region] = STATE(2818), @@ -468249,70 +467987,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2818), [sym_preproc_define] = STATE(2818), [sym_preproc_undef] = STATE(2818), - [sym__identifier_token] = ACTIONS(3596), - [anon_sym_extern] = ACTIONS(3596), - [anon_sym_alias] = ACTIONS(3596), - [anon_sym_global] = ACTIONS(3596), - [anon_sym_using] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3596), - [anon_sym_static] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_event] = ACTIONS(3596), - [anon_sym_namespace] = ACTIONS(3596), - [anon_sym_class] = ACTIONS(3596), - [anon_sym_ref] = ACTIONS(3596), - [anon_sym_struct] = ACTIONS(3596), - [anon_sym_enum] = ACTIONS(3596), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_interface] = ACTIONS(3596), - [anon_sym_delegate] = ACTIONS(3596), - [anon_sym_record] = ACTIONS(3596), - [anon_sym_public] = ACTIONS(3596), - [anon_sym_private] = ACTIONS(3596), - [anon_sym_readonly] = ACTIONS(3596), - [anon_sym_abstract] = ACTIONS(3596), - [anon_sym_async] = ACTIONS(3596), - [anon_sym_const] = ACTIONS(3596), - [anon_sym_file] = ACTIONS(3596), - [anon_sym_fixed] = ACTIONS(3596), - [anon_sym_internal] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3596), - [anon_sym_override] = ACTIONS(3596), - [anon_sym_partial] = ACTIONS(3596), - [anon_sym_protected] = ACTIONS(3596), - [anon_sym_required] = ACTIONS(3596), - [anon_sym_sealed] = ACTIONS(3596), - [anon_sym_virtual] = ACTIONS(3596), - [anon_sym_volatile] = ACTIONS(3596), - [anon_sym_where] = ACTIONS(3596), - [anon_sym_notnull] = ACTIONS(3596), - [anon_sym_unmanaged] = ACTIONS(3596), - [anon_sym_TILDE] = ACTIONS(3598), - [anon_sym_implicit] = ACTIONS(3596), - [anon_sym_explicit] = ACTIONS(3596), - [anon_sym_scoped] = ACTIONS(3596), - [anon_sym_var] = ACTIONS(3596), - [sym_predefined_type] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_when] = 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), - [sym_grit_metavariable] = ACTIONS(3598), - [aux_sym_preproc_if_token1] = 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(4984), + [anon_sym_extern] = ACTIONS(4984), + [anon_sym_alias] = ACTIONS(4984), + [anon_sym_global] = ACTIONS(4984), + [anon_sym_using] = ACTIONS(4984), + [anon_sym_unsafe] = ACTIONS(4984), + [anon_sym_static] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_event] = ACTIONS(4984), + [anon_sym_namespace] = ACTIONS(4984), + [anon_sym_class] = ACTIONS(4984), + [anon_sym_ref] = ACTIONS(4984), + [anon_sym_struct] = ACTIONS(4984), + [anon_sym_enum] = ACTIONS(4984), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_interface] = ACTIONS(4984), + [anon_sym_delegate] = ACTIONS(4984), + [anon_sym_record] = ACTIONS(4984), + [anon_sym_public] = ACTIONS(4984), + [anon_sym_private] = ACTIONS(4984), + [anon_sym_readonly] = ACTIONS(4984), + [anon_sym_abstract] = ACTIONS(4984), + [anon_sym_async] = ACTIONS(4984), + [anon_sym_const] = ACTIONS(4984), + [anon_sym_file] = ACTIONS(4984), + [anon_sym_fixed] = ACTIONS(4984), + [anon_sym_internal] = ACTIONS(4984), + [anon_sym_new] = ACTIONS(4984), + [anon_sym_override] = ACTIONS(4984), + [anon_sym_partial] = ACTIONS(4984), + [anon_sym_protected] = ACTIONS(4984), + [anon_sym_required] = ACTIONS(4984), + [anon_sym_sealed] = ACTIONS(4984), + [anon_sym_virtual] = ACTIONS(4984), + [anon_sym_volatile] = ACTIONS(4984), + [anon_sym_where] = ACTIONS(4984), + [anon_sym_notnull] = ACTIONS(4984), + [anon_sym_unmanaged] = ACTIONS(4984), + [anon_sym_implicit] = ACTIONS(4984), + [anon_sym_explicit] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4986), + [anon_sym_scoped] = ACTIONS(4984), + [anon_sym_var] = ACTIONS(4984), + [sym_predefined_type] = ACTIONS(4984), + [anon_sym_yield] = ACTIONS(4984), + [anon_sym_when] = ACTIONS(4984), + [anon_sym_from] = ACTIONS(4984), + [anon_sym_into] = ACTIONS(4984), + [anon_sym_join] = ACTIONS(4984), + [anon_sym_on] = ACTIONS(4984), + [anon_sym_equals] = ACTIONS(4984), + [anon_sym_let] = ACTIONS(4984), + [anon_sym_orderby] = ACTIONS(4984), + [anon_sym_ascending] = ACTIONS(4984), + [anon_sym_descending] = ACTIONS(4984), + [anon_sym_group] = ACTIONS(4984), + [anon_sym_by] = ACTIONS(4984), + [anon_sym_select] = ACTIONS(4984), + [sym_grit_metavariable] = ACTIONS(4986), + [aux_sym_preproc_if_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token3] = ACTIONS(4986), + [aux_sym_preproc_else_token1] = ACTIONS(4986), + [aux_sym_preproc_elif_token1] = ACTIONS(4986), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468334,70 +468072,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2819), [sym_preproc_define] = STATE(2819), [sym_preproc_undef] = STATE(2819), - [sym__identifier_token] = ACTIONS(3624), - [anon_sym_extern] = ACTIONS(3624), - [anon_sym_alias] = ACTIONS(3624), - [anon_sym_global] = ACTIONS(3624), - [anon_sym_using] = ACTIONS(3624), - [anon_sym_unsafe] = ACTIONS(3624), - [anon_sym_static] = ACTIONS(3624), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_event] = ACTIONS(3624), - [anon_sym_namespace] = ACTIONS(3624), - [anon_sym_class] = ACTIONS(3624), - [anon_sym_ref] = ACTIONS(3624), - [anon_sym_struct] = ACTIONS(3624), - [anon_sym_enum] = ACTIONS(3624), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3624), - [anon_sym_delegate] = ACTIONS(3624), - [anon_sym_record] = ACTIONS(3624), - [anon_sym_public] = ACTIONS(3624), - [anon_sym_private] = ACTIONS(3624), - [anon_sym_readonly] = ACTIONS(3624), - [anon_sym_abstract] = ACTIONS(3624), - [anon_sym_async] = ACTIONS(3624), - [anon_sym_const] = ACTIONS(3624), - [anon_sym_file] = ACTIONS(3624), - [anon_sym_fixed] = ACTIONS(3624), - [anon_sym_internal] = ACTIONS(3624), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_override] = ACTIONS(3624), - [anon_sym_partial] = ACTIONS(3624), - [anon_sym_protected] = ACTIONS(3624), - [anon_sym_required] = ACTIONS(3624), - [anon_sym_sealed] = ACTIONS(3624), - [anon_sym_virtual] = ACTIONS(3624), - [anon_sym_volatile] = ACTIONS(3624), - [anon_sym_where] = ACTIONS(3624), - [anon_sym_notnull] = ACTIONS(3624), - [anon_sym_unmanaged] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_implicit] = ACTIONS(3624), - [anon_sym_explicit] = ACTIONS(3624), - [anon_sym_scoped] = ACTIONS(3624), - [anon_sym_var] = ACTIONS(3624), - [sym_predefined_type] = ACTIONS(3624), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_when] = ACTIONS(3624), - [anon_sym_from] = ACTIONS(3624), - [anon_sym_into] = ACTIONS(3624), - [anon_sym_join] = ACTIONS(3624), - [anon_sym_on] = ACTIONS(3624), - [anon_sym_equals] = ACTIONS(3624), - [anon_sym_let] = ACTIONS(3624), - [anon_sym_orderby] = ACTIONS(3624), - [anon_sym_ascending] = ACTIONS(3624), - [anon_sym_descending] = ACTIONS(3624), - [anon_sym_group] = ACTIONS(3624), - [anon_sym_by] = ACTIONS(3624), - [anon_sym_select] = ACTIONS(3624), - [sym_grit_metavariable] = ACTIONS(3626), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token3] = ACTIONS(3626), - [aux_sym_preproc_else_token1] = ACTIONS(3626), - [aux_sym_preproc_elif_token1] = ACTIONS(3626), + [sym__identifier_token] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym_alias] = ACTIONS(3648), + [anon_sym_global] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_unsafe] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_LPAREN] = ACTIONS(3650), + [anon_sym_event] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_ref] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_interface] = ACTIONS(3648), + [anon_sym_delegate] = ACTIONS(3648), + [anon_sym_record] = ACTIONS(3648), + [anon_sym_public] = ACTIONS(3648), + [anon_sym_private] = ACTIONS(3648), + [anon_sym_readonly] = ACTIONS(3648), + [anon_sym_abstract] = ACTIONS(3648), + [anon_sym_async] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_file] = ACTIONS(3648), + [anon_sym_fixed] = ACTIONS(3648), + [anon_sym_internal] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_override] = ACTIONS(3648), + [anon_sym_partial] = ACTIONS(3648), + [anon_sym_protected] = ACTIONS(3648), + [anon_sym_required] = ACTIONS(3648), + [anon_sym_sealed] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_where] = ACTIONS(3648), + [anon_sym_notnull] = ACTIONS(3648), + [anon_sym_unmanaged] = ACTIONS(3648), + [anon_sym_implicit] = ACTIONS(3648), + [anon_sym_explicit] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_scoped] = ACTIONS(3648), + [anon_sym_var] = ACTIONS(3648), + [sym_predefined_type] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3648), + [anon_sym_when] = ACTIONS(3648), + [anon_sym_from] = ACTIONS(3648), + [anon_sym_into] = ACTIONS(3648), + [anon_sym_join] = ACTIONS(3648), + [anon_sym_on] = ACTIONS(3648), + [anon_sym_equals] = ACTIONS(3648), + [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(3648), + [anon_sym_select] = ACTIONS(3648), + [sym_grit_metavariable] = ACTIONS(3650), + [aux_sym_preproc_if_token1] = ACTIONS(3650), + [aux_sym_preproc_if_token3] = ACTIONS(3650), + [aux_sym_preproc_else_token1] = ACTIONS(3650), + [aux_sym_preproc_elif_token1] = ACTIONS(3650), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468419,70 +468157,70 @@ 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(4524), - [anon_sym_EQ] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4524), - [anon_sym_COLON] = ACTIONS(4528), - [anon_sym_COMMA] = ACTIONS(4524), - [anon_sym_RBRACK] = ACTIONS(4524), - [anon_sym_LPAREN] = ACTIONS(4524), - [anon_sym_RPAREN] = ACTIONS(4524), - [anon_sym_RBRACE] = ACTIONS(4524), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_QMARK] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4524), - [anon_sym_DASH_DASH] = ACTIONS(4524), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_CARET] = ACTIONS(4530), - [anon_sym_PIPE] = ACTIONS(4530), - [anon_sym_AMP] = ACTIONS(4530), - [anon_sym_LT_LT] = ACTIONS(4530), - [anon_sym_GT_GT] = ACTIONS(4530), - [anon_sym_GT_GT_GT] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4524), - [anon_sym_BANG_EQ] = ACTIONS(4524), - [anon_sym_GT_EQ] = ACTIONS(4524), - [anon_sym_LT_EQ] = ACTIONS(4524), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_EQ_GT] = ACTIONS(4524), - [anon_sym_switch] = ACTIONS(4524), - [anon_sym_when] = ACTIONS(4524), - [anon_sym_DOT_DOT] = ACTIONS(4524), - [anon_sym_and] = ACTIONS(4524), - [anon_sym_or] = ACTIONS(4524), - [anon_sym_PLUS_EQ] = ACTIONS(4528), - [anon_sym_DASH_EQ] = ACTIONS(4528), - [anon_sym_STAR_EQ] = ACTIONS(4528), - [anon_sym_SLASH_EQ] = ACTIONS(4528), - [anon_sym_PERCENT_EQ] = ACTIONS(4528), - [anon_sym_AMP_EQ] = ACTIONS(4528), - [anon_sym_CARET_EQ] = ACTIONS(4528), - [anon_sym_PIPE_EQ] = ACTIONS(4528), - [anon_sym_LT_LT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4524), - [anon_sym_PIPE_PIPE] = ACTIONS(4524), - [sym_op_coalescing] = ACTIONS(4530), - [anon_sym_into] = ACTIONS(4524), - [anon_sym_on] = ACTIONS(4524), - [anon_sym_equals] = ACTIONS(4524), - [anon_sym_by] = ACTIONS(4524), - [anon_sym_as] = ACTIONS(4524), - [anon_sym_is] = ACTIONS(4524), - [anon_sym_DASH_GT] = ACTIONS(4524), - [anon_sym_with] = ACTIONS(4524), - [aux_sym_preproc_if_token3] = ACTIONS(4524), - [aux_sym_preproc_else_token1] = ACTIONS(4524), - [aux_sym_preproc_elif_token1] = ACTIONS(4524), + [sym__identifier_token] = ACTIONS(4988), + [anon_sym_extern] = ACTIONS(4988), + [anon_sym_alias] = ACTIONS(4988), + [anon_sym_global] = ACTIONS(4988), + [anon_sym_using] = ACTIONS(4988), + [anon_sym_unsafe] = ACTIONS(4988), + [anon_sym_static] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_event] = ACTIONS(4988), + [anon_sym_namespace] = ACTIONS(4988), + [anon_sym_class] = ACTIONS(4988), + [anon_sym_ref] = ACTIONS(4988), + [anon_sym_struct] = ACTIONS(4988), + [anon_sym_enum] = ACTIONS(4988), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_interface] = ACTIONS(4988), + [anon_sym_delegate] = ACTIONS(4988), + [anon_sym_record] = ACTIONS(4988), + [anon_sym_public] = ACTIONS(4988), + [anon_sym_private] = ACTIONS(4988), + [anon_sym_readonly] = ACTIONS(4988), + [anon_sym_abstract] = ACTIONS(4988), + [anon_sym_async] = ACTIONS(4988), + [anon_sym_const] = ACTIONS(4988), + [anon_sym_file] = ACTIONS(4988), + [anon_sym_fixed] = ACTIONS(4988), + [anon_sym_internal] = ACTIONS(4988), + [anon_sym_new] = ACTIONS(4988), + [anon_sym_override] = ACTIONS(4988), + [anon_sym_partial] = ACTIONS(4988), + [anon_sym_protected] = ACTIONS(4988), + [anon_sym_required] = ACTIONS(4988), + [anon_sym_sealed] = ACTIONS(4988), + [anon_sym_virtual] = ACTIONS(4988), + [anon_sym_volatile] = ACTIONS(4988), + [anon_sym_where] = ACTIONS(4988), + [anon_sym_notnull] = ACTIONS(4988), + [anon_sym_unmanaged] = ACTIONS(4988), + [anon_sym_implicit] = ACTIONS(4988), + [anon_sym_explicit] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4990), + [anon_sym_scoped] = ACTIONS(4988), + [anon_sym_var] = ACTIONS(4988), + [sym_predefined_type] = ACTIONS(4988), + [anon_sym_yield] = ACTIONS(4988), + [anon_sym_when] = ACTIONS(4988), + [anon_sym_from] = ACTIONS(4988), + [anon_sym_into] = ACTIONS(4988), + [anon_sym_join] = ACTIONS(4988), + [anon_sym_on] = ACTIONS(4988), + [anon_sym_equals] = ACTIONS(4988), + [anon_sym_let] = ACTIONS(4988), + [anon_sym_orderby] = ACTIONS(4988), + [anon_sym_ascending] = ACTIONS(4988), + [anon_sym_descending] = ACTIONS(4988), + [anon_sym_group] = ACTIONS(4988), + [anon_sym_by] = ACTIONS(4988), + [anon_sym_select] = ACTIONS(4988), + [sym_grit_metavariable] = ACTIONS(4990), + [aux_sym_preproc_if_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token3] = ACTIONS(4990), + [aux_sym_preproc_else_token1] = ACTIONS(4990), + [aux_sym_preproc_elif_token1] = ACTIONS(4990), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468504,69 +468242,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2821), [sym_preproc_define] = STATE(2821), [sym_preproc_undef] = STATE(2821), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_from] = ACTIONS(3951), - [anon_sym_into] = ACTIONS(3951), - [anon_sym_join] = ACTIONS(3951), - [anon_sym_on] = ACTIONS(3951), - [anon_sym_equals] = ACTIONS(3951), - [anon_sym_let] = ACTIONS(3951), - [anon_sym_orderby] = ACTIONS(3951), - [anon_sym_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3951), - [sym_grit_metavariable] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(4992), + [anon_sym_extern] = ACTIONS(4992), + [anon_sym_alias] = ACTIONS(4992), + [anon_sym_global] = ACTIONS(4992), + [anon_sym_using] = ACTIONS(4992), + [anon_sym_unsafe] = ACTIONS(4992), + [anon_sym_static] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_event] = ACTIONS(4992), + [anon_sym_namespace] = ACTIONS(4992), + [anon_sym_class] = ACTIONS(4992), + [anon_sym_ref] = ACTIONS(4992), + [anon_sym_struct] = ACTIONS(4992), + [anon_sym_enum] = ACTIONS(4992), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_interface] = ACTIONS(4992), + [anon_sym_delegate] = ACTIONS(4992), + [anon_sym_record] = ACTIONS(4992), + [anon_sym_public] = ACTIONS(4992), + [anon_sym_private] = ACTIONS(4992), + [anon_sym_readonly] = ACTIONS(4992), + [anon_sym_abstract] = ACTIONS(4992), + [anon_sym_async] = ACTIONS(4992), + [anon_sym_const] = ACTIONS(4992), + [anon_sym_file] = ACTIONS(4992), + [anon_sym_fixed] = ACTIONS(4992), + [anon_sym_internal] = ACTIONS(4992), + [anon_sym_new] = ACTIONS(4992), + [anon_sym_override] = ACTIONS(4992), + [anon_sym_partial] = ACTIONS(4992), + [anon_sym_protected] = ACTIONS(4992), + [anon_sym_required] = ACTIONS(4992), + [anon_sym_sealed] = ACTIONS(4992), + [anon_sym_virtual] = ACTIONS(4992), + [anon_sym_volatile] = ACTIONS(4992), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_notnull] = ACTIONS(4992), + [anon_sym_unmanaged] = ACTIONS(4992), + [anon_sym_implicit] = ACTIONS(4992), + [anon_sym_explicit] = ACTIONS(4992), + [anon_sym_TILDE] = ACTIONS(4994), + [anon_sym_scoped] = ACTIONS(4992), + [anon_sym_var] = ACTIONS(4992), + [sym_predefined_type] = ACTIONS(4992), + [anon_sym_yield] = ACTIONS(4992), + [anon_sym_when] = ACTIONS(4992), + [anon_sym_from] = ACTIONS(4992), + [anon_sym_into] = ACTIONS(4992), + [anon_sym_join] = ACTIONS(4992), + [anon_sym_on] = ACTIONS(4992), + [anon_sym_equals] = ACTIONS(4992), + [anon_sym_let] = ACTIONS(4992), + [anon_sym_orderby] = ACTIONS(4992), + [anon_sym_ascending] = ACTIONS(4992), + [anon_sym_descending] = ACTIONS(4992), + [anon_sym_group] = ACTIONS(4992), + [anon_sym_by] = ACTIONS(4992), + [anon_sym_select] = ACTIONS(4992), + [sym_grit_metavariable] = ACTIONS(4994), + [aux_sym_preproc_if_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token3] = ACTIONS(4994), + [aux_sym_preproc_else_token1] = ACTIONS(4994), + [aux_sym_preproc_elif_token1] = ACTIONS(4994), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468577,7 +468316,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(3953), }, [2822] = { [sym_preproc_region] = STATE(2822), @@ -468589,69 +468327,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2822), [sym_preproc_define] = STATE(2822), [sym_preproc_undef] = STATE(2822), - [sym__identifier_token] = ACTIONS(3955), - [anon_sym_alias] = ACTIONS(3955), - [anon_sym_global] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_LBRACE] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3955), - [anon_sym_LT] = ACTIONS(3955), - [anon_sym_GT] = ACTIONS(3955), - [anon_sym_where] = ACTIONS(3955), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_notnull] = ACTIONS(3955), - [anon_sym_unmanaged] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3955), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3955), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_scoped] = ACTIONS(3955), - [anon_sym_var] = ACTIONS(3955), - [anon_sym_yield] = ACTIONS(3955), - [anon_sym_switch] = ACTIONS(3955), - [anon_sym_when] = ACTIONS(3955), - [sym_discard] = ACTIONS(3955), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3955), - [anon_sym_or] = ACTIONS(3955), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [sym_op_coalescing] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3955), - [anon_sym_into] = ACTIONS(3955), - [anon_sym_join] = ACTIONS(3955), - [anon_sym_on] = ACTIONS(3955), - [anon_sym_equals] = ACTIONS(3955), - [anon_sym_let] = ACTIONS(3955), - [anon_sym_orderby] = ACTIONS(3955), - [anon_sym_ascending] = ACTIONS(3955), - [anon_sym_descending] = ACTIONS(3955), - [anon_sym_group] = ACTIONS(3955), - [anon_sym_by] = ACTIONS(3955), - [anon_sym_select] = ACTIONS(3955), - [anon_sym_as] = ACTIONS(3955), - [anon_sym_is] = ACTIONS(3955), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3955), - [sym_grit_metavariable] = ACTIONS(3957), + [sym__identifier_token] = ACTIONS(4996), + [anon_sym_extern] = ACTIONS(4996), + [anon_sym_alias] = ACTIONS(4996), + [anon_sym_global] = ACTIONS(4996), + [anon_sym_using] = ACTIONS(4996), + [anon_sym_unsafe] = ACTIONS(4996), + [anon_sym_static] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_event] = ACTIONS(4996), + [anon_sym_namespace] = ACTIONS(4996), + [anon_sym_class] = ACTIONS(4996), + [anon_sym_ref] = ACTIONS(4996), + [anon_sym_struct] = ACTIONS(4996), + [anon_sym_enum] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_interface] = ACTIONS(4996), + [anon_sym_delegate] = ACTIONS(4996), + [anon_sym_record] = ACTIONS(4996), + [anon_sym_public] = ACTIONS(4996), + [anon_sym_private] = ACTIONS(4996), + [anon_sym_readonly] = ACTIONS(4996), + [anon_sym_abstract] = ACTIONS(4996), + [anon_sym_async] = ACTIONS(4996), + [anon_sym_const] = ACTIONS(4996), + [anon_sym_file] = ACTIONS(4996), + [anon_sym_fixed] = ACTIONS(4996), + [anon_sym_internal] = ACTIONS(4996), + [anon_sym_new] = ACTIONS(4996), + [anon_sym_override] = ACTIONS(4996), + [anon_sym_partial] = ACTIONS(4996), + [anon_sym_protected] = ACTIONS(4996), + [anon_sym_required] = ACTIONS(4996), + [anon_sym_sealed] = ACTIONS(4996), + [anon_sym_virtual] = ACTIONS(4996), + [anon_sym_volatile] = ACTIONS(4996), + [anon_sym_where] = ACTIONS(4996), + [anon_sym_notnull] = ACTIONS(4996), + [anon_sym_unmanaged] = ACTIONS(4996), + [anon_sym_implicit] = ACTIONS(4996), + [anon_sym_explicit] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4998), + [anon_sym_scoped] = ACTIONS(4996), + [anon_sym_var] = ACTIONS(4996), + [sym_predefined_type] = ACTIONS(4996), + [anon_sym_yield] = ACTIONS(4996), + [anon_sym_when] = ACTIONS(4996), + [anon_sym_from] = ACTIONS(4996), + [anon_sym_into] = ACTIONS(4996), + [anon_sym_join] = ACTIONS(4996), + [anon_sym_on] = ACTIONS(4996), + [anon_sym_equals] = ACTIONS(4996), + [anon_sym_let] = ACTIONS(4996), + [anon_sym_orderby] = ACTIONS(4996), + [anon_sym_ascending] = ACTIONS(4996), + [anon_sym_descending] = ACTIONS(4996), + [anon_sym_group] = ACTIONS(4996), + [anon_sym_by] = ACTIONS(4996), + [anon_sym_select] = ACTIONS(4996), + [sym_grit_metavariable] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token3] = ACTIONS(4998), + [aux_sym_preproc_else_token1] = ACTIONS(4998), + [aux_sym_preproc_elif_token1] = ACTIONS(4998), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468662,7 +468401,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(3957), }, [2823] = { [sym_preproc_region] = STATE(2823), @@ -468674,80 +468412,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2823), [sym_preproc_define] = STATE(2823), [sym_preproc_undef] = STATE(2823), - [sym__identifier_token] = ACTIONS(4260), - [anon_sym_alias] = ACTIONS(4260), - [anon_sym_global] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_COLON] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4262), - [anon_sym_file] = ACTIONS(4260), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(4260), - [anon_sym_QMARK] = ACTIONS(4260), - [anon_sym_notnull] = ACTIONS(4260), - [anon_sym_unmanaged] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_CARET] = ACTIONS(4262), - [anon_sym_PIPE] = ACTIONS(4260), - [anon_sym_AMP] = ACTIONS(4260), - [anon_sym_LT_LT] = ACTIONS(4262), - [anon_sym_GT_GT] = ACTIONS(4260), - [anon_sym_GT_GT_GT] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_scoped] = ACTIONS(4260), - [anon_sym_var] = ACTIONS(4260), - [anon_sym_yield] = ACTIONS(4260), - [anon_sym_switch] = ACTIONS(4260), - [anon_sym_when] = ACTIONS(4260), - [sym_discard] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_and] = ACTIONS(4260), - [anon_sym_or] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [sym_op_coalescing] = ACTIONS(4262), - [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), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_DASH_GT] = ACTIONS(4262), - [anon_sym_with] = ACTIONS(4260), - [sym_grit_metavariable] = ACTIONS(4262), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4262), + [sym__identifier_token] = ACTIONS(5000), + [anon_sym_extern] = ACTIONS(5000), + [anon_sym_alias] = ACTIONS(5000), + [anon_sym_global] = ACTIONS(5000), + [anon_sym_using] = ACTIONS(5000), + [anon_sym_unsafe] = ACTIONS(5000), + [anon_sym_static] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_event] = ACTIONS(5000), + [anon_sym_namespace] = ACTIONS(5000), + [anon_sym_class] = ACTIONS(5000), + [anon_sym_ref] = ACTIONS(5000), + [anon_sym_struct] = ACTIONS(5000), + [anon_sym_enum] = ACTIONS(5000), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_interface] = ACTIONS(5000), + [anon_sym_delegate] = ACTIONS(5000), + [anon_sym_record] = ACTIONS(5000), + [anon_sym_public] = ACTIONS(5000), + [anon_sym_private] = ACTIONS(5000), + [anon_sym_readonly] = ACTIONS(5000), + [anon_sym_abstract] = ACTIONS(5000), + [anon_sym_async] = ACTIONS(5000), + [anon_sym_const] = ACTIONS(5000), + [anon_sym_file] = ACTIONS(5000), + [anon_sym_fixed] = ACTIONS(5000), + [anon_sym_internal] = ACTIONS(5000), + [anon_sym_new] = ACTIONS(5000), + [anon_sym_override] = ACTIONS(5000), + [anon_sym_partial] = ACTIONS(5000), + [anon_sym_protected] = ACTIONS(5000), + [anon_sym_required] = ACTIONS(5000), + [anon_sym_sealed] = ACTIONS(5000), + [anon_sym_virtual] = ACTIONS(5000), + [anon_sym_volatile] = ACTIONS(5000), + [anon_sym_where] = ACTIONS(5000), + [anon_sym_notnull] = ACTIONS(5000), + [anon_sym_unmanaged] = ACTIONS(5000), + [anon_sym_implicit] = ACTIONS(5000), + [anon_sym_explicit] = ACTIONS(5000), + [anon_sym_TILDE] = ACTIONS(5002), + [anon_sym_scoped] = ACTIONS(5000), + [anon_sym_var] = ACTIONS(5000), + [sym_predefined_type] = ACTIONS(5000), + [anon_sym_yield] = ACTIONS(5000), + [anon_sym_when] = ACTIONS(5000), + [anon_sym_from] = ACTIONS(5000), + [anon_sym_into] = ACTIONS(5000), + [anon_sym_join] = ACTIONS(5000), + [anon_sym_on] = ACTIONS(5000), + [anon_sym_equals] = ACTIONS(5000), + [anon_sym_let] = ACTIONS(5000), + [anon_sym_orderby] = ACTIONS(5000), + [anon_sym_ascending] = ACTIONS(5000), + [anon_sym_descending] = ACTIONS(5000), + [anon_sym_group] = ACTIONS(5000), + [anon_sym_by] = ACTIONS(5000), + [anon_sym_select] = ACTIONS(5000), + [sym_grit_metavariable] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token3] = ACTIONS(5002), + [aux_sym_preproc_else_token1] = ACTIONS(5002), + [aux_sym_preproc_elif_token1] = ACTIONS(5002), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2824] = { [sym_preproc_region] = STATE(2824), @@ -468759,69 +468497,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2824), [sym_preproc_define] = STATE(2824), [sym_preproc_undef] = STATE(2824), - [sym__identifier_token] = ACTIONS(3970), - [anon_sym_alias] = ACTIONS(3970), - [anon_sym_global] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_COLON] = ACTIONS(3972), - [anon_sym_COMMA] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3972), - [anon_sym_LBRACE] = ACTIONS(3972), - [anon_sym_file] = ACTIONS(3970), - [anon_sym_LT] = ACTIONS(3970), - [anon_sym_GT] = ACTIONS(3970), - [anon_sym_where] = ACTIONS(3970), - [anon_sym_QMARK] = ACTIONS(3970), - [anon_sym_notnull] = ACTIONS(3970), - [anon_sym_unmanaged] = ACTIONS(3970), - [anon_sym_BANG] = ACTIONS(3970), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(3970), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_CARET] = ACTIONS(3972), - [anon_sym_PIPE] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_LT_LT] = ACTIONS(3972), - [anon_sym_GT_GT] = ACTIONS(3970), - [anon_sym_GT_GT_GT] = ACTIONS(3972), - [anon_sym_EQ_EQ] = ACTIONS(3972), - [anon_sym_BANG_EQ] = ACTIONS(3972), - [anon_sym_GT_EQ] = ACTIONS(3972), - [anon_sym_LT_EQ] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(3970), - [anon_sym_scoped] = ACTIONS(3970), - [anon_sym_var] = ACTIONS(3970), - [anon_sym_yield] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_when] = ACTIONS(3970), - [sym_discard] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(3972), - [anon_sym_and] = ACTIONS(3970), - [anon_sym_or] = ACTIONS(3970), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_PIPE_PIPE] = ACTIONS(3972), - [sym_op_coalescing] = ACTIONS(3972), - [anon_sym_from] = ACTIONS(3970), - [anon_sym_into] = ACTIONS(3970), - [anon_sym_join] = ACTIONS(3970), - [anon_sym_on] = ACTIONS(3970), - [anon_sym_equals] = ACTIONS(3970), - [anon_sym_let] = ACTIONS(3970), - [anon_sym_orderby] = ACTIONS(3970), - [anon_sym_ascending] = ACTIONS(3970), - [anon_sym_descending] = ACTIONS(3970), - [anon_sym_group] = ACTIONS(3970), - [anon_sym_by] = ACTIONS(3970), - [anon_sym_select] = ACTIONS(3970), - [anon_sym_as] = ACTIONS(3970), - [anon_sym_is] = ACTIONS(3970), - [anon_sym_DASH_GT] = ACTIONS(3972), - [anon_sym_with] = ACTIONS(3970), - [sym_grit_metavariable] = ACTIONS(3972), + [sym__identifier_token] = ACTIONS(5004), + [anon_sym_extern] = ACTIONS(5004), + [anon_sym_alias] = ACTIONS(5004), + [anon_sym_global] = ACTIONS(5004), + [anon_sym_using] = ACTIONS(5004), + [anon_sym_unsafe] = ACTIONS(5004), + [anon_sym_static] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_event] = ACTIONS(5004), + [anon_sym_namespace] = ACTIONS(5004), + [anon_sym_class] = ACTIONS(5004), + [anon_sym_ref] = ACTIONS(5004), + [anon_sym_struct] = ACTIONS(5004), + [anon_sym_enum] = ACTIONS(5004), + [anon_sym_RBRACE] = ACTIONS(5006), + [anon_sym_interface] = ACTIONS(5004), + [anon_sym_delegate] = ACTIONS(5004), + [anon_sym_record] = ACTIONS(5004), + [anon_sym_public] = ACTIONS(5004), + [anon_sym_private] = ACTIONS(5004), + [anon_sym_readonly] = ACTIONS(5004), + [anon_sym_abstract] = ACTIONS(5004), + [anon_sym_async] = ACTIONS(5004), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_file] = ACTIONS(5004), + [anon_sym_fixed] = ACTIONS(5004), + [anon_sym_internal] = ACTIONS(5004), + [anon_sym_new] = ACTIONS(5004), + [anon_sym_override] = ACTIONS(5004), + [anon_sym_partial] = ACTIONS(5004), + [anon_sym_protected] = ACTIONS(5004), + [anon_sym_required] = ACTIONS(5004), + [anon_sym_sealed] = ACTIONS(5004), + [anon_sym_virtual] = ACTIONS(5004), + [anon_sym_volatile] = ACTIONS(5004), + [anon_sym_where] = ACTIONS(5004), + [anon_sym_notnull] = ACTIONS(5004), + [anon_sym_unmanaged] = ACTIONS(5004), + [anon_sym_implicit] = ACTIONS(5004), + [anon_sym_explicit] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5006), + [anon_sym_scoped] = ACTIONS(5004), + [anon_sym_var] = ACTIONS(5004), + [sym_predefined_type] = ACTIONS(5004), + [anon_sym_yield] = ACTIONS(5004), + [anon_sym_when] = ACTIONS(5004), + [anon_sym_from] = ACTIONS(5004), + [anon_sym_into] = ACTIONS(5004), + [anon_sym_join] = ACTIONS(5004), + [anon_sym_on] = ACTIONS(5004), + [anon_sym_equals] = ACTIONS(5004), + [anon_sym_let] = ACTIONS(5004), + [anon_sym_orderby] = ACTIONS(5004), + [anon_sym_ascending] = ACTIONS(5004), + [anon_sym_descending] = ACTIONS(5004), + [anon_sym_group] = ACTIONS(5004), + [anon_sym_by] = ACTIONS(5004), + [anon_sym_select] = ACTIONS(5004), + [sym_grit_metavariable] = ACTIONS(5006), + [aux_sym_preproc_if_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token3] = ACTIONS(5006), + [aux_sym_preproc_else_token1] = ACTIONS(5006), + [aux_sym_preproc_elif_token1] = ACTIONS(5006), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468832,7 +468571,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(3972), }, [2825] = { [sym_preproc_region] = STATE(2825), @@ -468844,70 +468582,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2825), [sym_preproc_define] = STATE(2825), [sym_preproc_undef] = STATE(2825), - [sym__identifier_token] = ACTIONS(3644), - [anon_sym_extern] = ACTIONS(3644), - [anon_sym_alias] = ACTIONS(3644), - [anon_sym_global] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_unsafe] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3646), - [anon_sym_LPAREN] = ACTIONS(3646), - [anon_sym_event] = ACTIONS(3644), - [anon_sym_namespace] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_ref] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), - [anon_sym_RBRACE] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3644), - [anon_sym_delegate] = ACTIONS(3644), - [anon_sym_record] = ACTIONS(3644), - [anon_sym_public] = ACTIONS(3644), - [anon_sym_private] = ACTIONS(3644), - [anon_sym_readonly] = ACTIONS(3644), - [anon_sym_abstract] = ACTIONS(3644), - [anon_sym_async] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_file] = ACTIONS(3644), - [anon_sym_fixed] = ACTIONS(3644), - [anon_sym_internal] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_override] = ACTIONS(3644), - [anon_sym_partial] = ACTIONS(3644), - [anon_sym_protected] = ACTIONS(3644), - [anon_sym_required] = ACTIONS(3644), - [anon_sym_sealed] = ACTIONS(3644), - [anon_sym_virtual] = ACTIONS(3644), - [anon_sym_volatile] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3644), - [anon_sym_unmanaged] = ACTIONS(3644), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_implicit] = ACTIONS(3644), - [anon_sym_explicit] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3644), - [anon_sym_var] = ACTIONS(3644), - [sym_predefined_type] = ACTIONS(3644), - [anon_sym_yield] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3644), - [anon_sym_into] = ACTIONS(3644), - [anon_sym_join] = ACTIONS(3644), - [anon_sym_on] = ACTIONS(3644), - [anon_sym_equals] = ACTIONS(3644), - [anon_sym_let] = ACTIONS(3644), - [anon_sym_orderby] = ACTIONS(3644), - [anon_sym_ascending] = ACTIONS(3644), - [anon_sym_descending] = ACTIONS(3644), - [anon_sym_group] = ACTIONS(3644), - [anon_sym_by] = ACTIONS(3644), - [anon_sym_select] = ACTIONS(3644), - [sym_grit_metavariable] = ACTIONS(3646), - [aux_sym_preproc_if_token1] = ACTIONS(3646), - [aux_sym_preproc_if_token3] = ACTIONS(3646), - [aux_sym_preproc_else_token1] = ACTIONS(3646), - [aux_sym_preproc_elif_token1] = ACTIONS(3646), + [sym__identifier_token] = ACTIONS(5008), + [anon_sym_extern] = ACTIONS(5008), + [anon_sym_alias] = ACTIONS(5008), + [anon_sym_global] = ACTIONS(5008), + [anon_sym_using] = ACTIONS(5008), + [anon_sym_unsafe] = ACTIONS(5008), + [anon_sym_static] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_LPAREN] = ACTIONS(5010), + [anon_sym_event] = ACTIONS(5008), + [anon_sym_namespace] = ACTIONS(5008), + [anon_sym_class] = ACTIONS(5008), + [anon_sym_ref] = ACTIONS(5008), + [anon_sym_struct] = ACTIONS(5008), + [anon_sym_enum] = ACTIONS(5008), + [anon_sym_RBRACE] = ACTIONS(5010), + [anon_sym_interface] = ACTIONS(5008), + [anon_sym_delegate] = ACTIONS(5008), + [anon_sym_record] = ACTIONS(5008), + [anon_sym_public] = ACTIONS(5008), + [anon_sym_private] = ACTIONS(5008), + [anon_sym_readonly] = ACTIONS(5008), + [anon_sym_abstract] = ACTIONS(5008), + [anon_sym_async] = ACTIONS(5008), + [anon_sym_const] = ACTIONS(5008), + [anon_sym_file] = ACTIONS(5008), + [anon_sym_fixed] = ACTIONS(5008), + [anon_sym_internal] = ACTIONS(5008), + [anon_sym_new] = ACTIONS(5008), + [anon_sym_override] = ACTIONS(5008), + [anon_sym_partial] = ACTIONS(5008), + [anon_sym_protected] = ACTIONS(5008), + [anon_sym_required] = ACTIONS(5008), + [anon_sym_sealed] = ACTIONS(5008), + [anon_sym_virtual] = ACTIONS(5008), + [anon_sym_volatile] = ACTIONS(5008), + [anon_sym_where] = ACTIONS(5008), + [anon_sym_notnull] = ACTIONS(5008), + [anon_sym_unmanaged] = ACTIONS(5008), + [anon_sym_implicit] = ACTIONS(5008), + [anon_sym_explicit] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5010), + [anon_sym_scoped] = ACTIONS(5008), + [anon_sym_var] = ACTIONS(5008), + [sym_predefined_type] = ACTIONS(5008), + [anon_sym_yield] = ACTIONS(5008), + [anon_sym_when] = ACTIONS(5008), + [anon_sym_from] = ACTIONS(5008), + [anon_sym_into] = ACTIONS(5008), + [anon_sym_join] = ACTIONS(5008), + [anon_sym_on] = ACTIONS(5008), + [anon_sym_equals] = ACTIONS(5008), + [anon_sym_let] = ACTIONS(5008), + [anon_sym_orderby] = ACTIONS(5008), + [anon_sym_ascending] = ACTIONS(5008), + [anon_sym_descending] = ACTIONS(5008), + [anon_sym_group] = ACTIONS(5008), + [anon_sym_by] = ACTIONS(5008), + [anon_sym_select] = ACTIONS(5008), + [sym_grit_metavariable] = ACTIONS(5010), + [aux_sym_preproc_if_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token3] = ACTIONS(5010), + [aux_sym_preproc_else_token1] = ACTIONS(5010), + [aux_sym_preproc_elif_token1] = ACTIONS(5010), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468920,10 +468658,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2826] = { - [sym__variable_designation] = STATE(5500), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym_identifier] = STATE(5505), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(2826), [sym_preproc_endregion] = STATE(2826), [sym_preproc_line] = STATE(2826), @@ -468933,66 +468667,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2826), [sym_preproc_define] = STATE(2826), [sym_preproc_undef] = STATE(2826), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4228), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4244), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4244), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4244), - [anon_sym_orderby] = ACTIONS(4244), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym_alias] = ACTIONS(3640), + [anon_sym_global] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_event] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_ref] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_interface] = ACTIONS(3640), + [anon_sym_delegate] = ACTIONS(3640), + [anon_sym_record] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_readonly] = ACTIONS(3640), + [anon_sym_abstract] = ACTIONS(3640), + [anon_sym_async] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3640), + [anon_sym_fixed] = ACTIONS(3640), + [anon_sym_internal] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_override] = ACTIONS(3640), + [anon_sym_partial] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_required] = ACTIONS(3640), + [anon_sym_sealed] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_where] = ACTIONS(3640), + [anon_sym_notnull] = ACTIONS(3640), + [anon_sym_unmanaged] = ACTIONS(3640), + [anon_sym_implicit] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_scoped] = ACTIONS(3640), + [anon_sym_var] = ACTIONS(3640), + [sym_predefined_type] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3640), + [anon_sym_when] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_join] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_orderby] = ACTIONS(3640), + [anon_sym_ascending] = ACTIONS(3640), + [anon_sym_descending] = ACTIONS(3640), + [anon_sym_group] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_select] = ACTIONS(3640), + [sym_grit_metavariable] = ACTIONS(3642), + [aux_sym_preproc_if_token1] = 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), @@ -469014,70 +468752,70 @@ 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), - [sym__identifier_token] = ACTIONS(3199), - [anon_sym_extern] = ACTIONS(3199), - [anon_sym_alias] = ACTIONS(3199), - [anon_sym_global] = ACTIONS(3199), - [anon_sym_using] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_static] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_event] = ACTIONS(3199), - [anon_sym_namespace] = ACTIONS(3199), - [anon_sym_class] = ACTIONS(3199), - [anon_sym_ref] = ACTIONS(3199), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_enum] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_interface] = ACTIONS(3199), - [anon_sym_delegate] = ACTIONS(3199), - [anon_sym_record] = ACTIONS(3199), - [anon_sym_public] = ACTIONS(3199), - [anon_sym_private] = ACTIONS(3199), - [anon_sym_readonly] = ACTIONS(3199), - [anon_sym_abstract] = ACTIONS(3199), - [anon_sym_async] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_file] = ACTIONS(3199), - [anon_sym_fixed] = ACTIONS(3199), - [anon_sym_internal] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3199), - [anon_sym_override] = ACTIONS(3199), - [anon_sym_partial] = ACTIONS(3199), - [anon_sym_protected] = ACTIONS(3199), - [anon_sym_required] = ACTIONS(3199), - [anon_sym_sealed] = ACTIONS(3199), - [anon_sym_virtual] = ACTIONS(3199), - [anon_sym_volatile] = ACTIONS(3199), - [anon_sym_where] = ACTIONS(3199), - [anon_sym_notnull] = ACTIONS(3199), - [anon_sym_unmanaged] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_implicit] = ACTIONS(3199), - [anon_sym_explicit] = ACTIONS(3199), - [anon_sym_scoped] = ACTIONS(3199), - [anon_sym_var] = ACTIONS(3199), - [sym_predefined_type] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3199), - [anon_sym_when] = ACTIONS(3199), - [anon_sym_from] = ACTIONS(3199), - [anon_sym_into] = ACTIONS(3199), - [anon_sym_join] = ACTIONS(3199), - [anon_sym_on] = ACTIONS(3199), - [anon_sym_equals] = ACTIONS(3199), - [anon_sym_let] = ACTIONS(3199), - [anon_sym_orderby] = ACTIONS(3199), - [anon_sym_ascending] = ACTIONS(3199), - [anon_sym_descending] = ACTIONS(3199), - [anon_sym_group] = ACTIONS(3199), - [anon_sym_by] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [sym_grit_metavariable] = ACTIONS(3201), - [aux_sym_preproc_if_token1] = ACTIONS(3201), - [aux_sym_preproc_if_token3] = ACTIONS(3201), - [aux_sym_preproc_else_token1] = ACTIONS(3201), - [aux_sym_preproc_elif_token1] = ACTIONS(3201), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_EQ] = ACTIONS(3974), + [anon_sym_LBRACK] = ACTIONS(3976), + [anon_sym_COLON] = ACTIONS(3976), + [anon_sym_COMMA] = ACTIONS(3976), + [anon_sym_RBRACK] = ACTIONS(3976), + [anon_sym_LPAREN] = ACTIONS(3976), + [anon_sym_RPAREN] = ACTIONS(3976), + [anon_sym_RBRACE] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3974), + [anon_sym_GT] = ACTIONS(3974), + [anon_sym_in] = ACTIONS(3974), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3974), + [anon_sym_EQ_GT] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3974), + [anon_sym_switch] = ACTIONS(3976), + [anon_sym_when] = ACTIONS(3976), + [anon_sym_DOT_DOT] = ACTIONS(3976), + [anon_sym_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_EQ] = ACTIONS(3976), + [anon_sym_and] = ACTIONS(3976), + [anon_sym_or] = ACTIONS(3976), + [anon_sym_PLUS_EQ] = ACTIONS(3976), + [anon_sym_DASH_EQ] = ACTIONS(3976), + [anon_sym_STAR_EQ] = ACTIONS(3976), + [anon_sym_SLASH_EQ] = ACTIONS(3976), + [anon_sym_PERCENT_EQ] = ACTIONS(3976), + [anon_sym_AMP_EQ] = ACTIONS(3976), + [anon_sym_CARET_EQ] = ACTIONS(3976), + [anon_sym_PIPE_EQ] = ACTIONS(3976), + [anon_sym_LT_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_GT_EQ] = ACTIONS(3976), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3976), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3976), + [anon_sym_EQ_EQ] = ACTIONS(3976), + [anon_sym_BANG_EQ] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [sym_op_bitwise_or] = ACTIONS(3974), + [anon_sym_CARET] = ACTIONS(3974), + [sym_op_left_shift] = ACTIONS(3974), + [sym_op_right_shift] = ACTIONS(3974), + [sym_op_unsigned_right_shift] = ACTIONS(3974), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [sym_op_divide] = ACTIONS(3974), + [sym_op_modulo] = ACTIONS(3974), + [sym_op_coalescing] = ACTIONS(3974), + [anon_sym_BANG] = ACTIONS(3974), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_into] = ACTIONS(3976), + [anon_sym_on] = ACTIONS(3976), + [anon_sym_equals] = ACTIONS(3976), + [anon_sym_by] = ACTIONS(3976), + [anon_sym_as] = ACTIONS(3976), + [anon_sym_is] = ACTIONS(3976), + [anon_sym_DASH_GT] = ACTIONS(3976), + [anon_sym_with] = ACTIONS(3976), + [aux_sym_preproc_if_token3] = ACTIONS(3976), + [aux_sym_preproc_else_token1] = ACTIONS(3976), + [aux_sym_preproc_elif_token1] = ACTIONS(3976), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469099,80 +468837,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2828), [sym_preproc_define] = STATE(2828), [sym_preproc_undef] = STATE(2828), - [sym__identifier_token] = ACTIONS(3966), - [anon_sym_alias] = ACTIONS(3966), - [anon_sym_global] = ACTIONS(3966), - [anon_sym_LBRACK] = ACTIONS(3968), - [anon_sym_COLON] = ACTIONS(3968), - [anon_sym_COMMA] = ACTIONS(3968), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_LBRACE] = ACTIONS(3968), - [anon_sym_file] = ACTIONS(3966), - [anon_sym_LT] = ACTIONS(3966), - [anon_sym_GT] = ACTIONS(3966), - [anon_sym_where] = ACTIONS(3966), - [anon_sym_QMARK] = ACTIONS(3966), - [anon_sym_notnull] = ACTIONS(3966), - [anon_sym_unmanaged] = ACTIONS(3966), - [anon_sym_BANG] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_SLASH] = ACTIONS(3966), - [anon_sym_PERCENT] = ACTIONS(3968), - [anon_sym_CARET] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(3966), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_LT_LT] = ACTIONS(3968), - [anon_sym_GT_GT] = ACTIONS(3966), - [anon_sym_GT_GT_GT] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3968), - [anon_sym_BANG_EQ] = ACTIONS(3968), - [anon_sym_GT_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3968), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_scoped] = ACTIONS(3966), - [anon_sym_var] = ACTIONS(3966), - [anon_sym_yield] = ACTIONS(3966), - [anon_sym_switch] = ACTIONS(3966), - [anon_sym_when] = ACTIONS(3966), - [sym_discard] = ACTIONS(3966), - [anon_sym_DOT_DOT] = ACTIONS(3968), - [anon_sym_and] = ACTIONS(3966), - [anon_sym_or] = ACTIONS(3966), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_PIPE_PIPE] = ACTIONS(3968), - [sym_op_coalescing] = ACTIONS(3968), - [anon_sym_from] = ACTIONS(3966), - [anon_sym_into] = ACTIONS(3966), - [anon_sym_join] = ACTIONS(3966), - [anon_sym_on] = ACTIONS(3966), - [anon_sym_equals] = ACTIONS(3966), - [anon_sym_let] = ACTIONS(3966), - [anon_sym_orderby] = ACTIONS(3966), - [anon_sym_ascending] = ACTIONS(3966), - [anon_sym_descending] = ACTIONS(3966), - [anon_sym_group] = ACTIONS(3966), - [anon_sym_by] = ACTIONS(3966), - [anon_sym_select] = ACTIONS(3966), - [anon_sym_as] = ACTIONS(3966), - [anon_sym_is] = ACTIONS(3966), - [anon_sym_DASH_GT] = ACTIONS(3968), - [anon_sym_with] = ACTIONS(3966), - [sym_grit_metavariable] = ACTIONS(3968), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3968), + [sym__identifier_token] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym_alias] = ACTIONS(3664), + [anon_sym_global] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_event] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_ref] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_interface] = ACTIONS(3664), + [anon_sym_delegate] = ACTIONS(3664), + [anon_sym_record] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_readonly] = ACTIONS(3664), + [anon_sym_abstract] = ACTIONS(3664), + [anon_sym_async] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_file] = ACTIONS(3664), + [anon_sym_fixed] = ACTIONS(3664), + [anon_sym_internal] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_override] = ACTIONS(3664), + [anon_sym_partial] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_required] = ACTIONS(3664), + [anon_sym_sealed] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_where] = ACTIONS(3664), + [anon_sym_notnull] = ACTIONS(3664), + [anon_sym_unmanaged] = ACTIONS(3664), + [anon_sym_implicit] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_scoped] = ACTIONS(3664), + [anon_sym_var] = ACTIONS(3664), + [sym_predefined_type] = ACTIONS(3664), + [anon_sym_yield] = ACTIONS(3664), + [anon_sym_when] = ACTIONS(3664), + [anon_sym_from] = ACTIONS(3664), + [anon_sym_into] = ACTIONS(3664), + [anon_sym_join] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_equals] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(3664), + [anon_sym_orderby] = ACTIONS(3664), + [anon_sym_ascending] = ACTIONS(3664), + [anon_sym_descending] = ACTIONS(3664), + [anon_sym_group] = ACTIONS(3664), + [anon_sym_by] = ACTIONS(3664), + [anon_sym_select] = ACTIONS(3664), + [sym_grit_metavariable] = ACTIONS(3666), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_if_token3] = ACTIONS(3666), + [aux_sym_preproc_else_token1] = ACTIONS(3666), + [aux_sym_preproc_elif_token1] = ACTIONS(3666), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2829] = { [sym_preproc_region] = STATE(2829), @@ -469184,69 +468922,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2829), [sym_preproc_define] = STATE(2829), [sym_preproc_undef] = STATE(2829), - [sym__identifier_token] = ACTIONS(3978), - [anon_sym_alias] = ACTIONS(3978), - [anon_sym_global] = ACTIONS(3978), - [anon_sym_LBRACK] = ACTIONS(3980), - [anon_sym_COLON] = ACTIONS(3980), - [anon_sym_COMMA] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_file] = ACTIONS(3978), - [anon_sym_LT] = ACTIONS(3978), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_where] = ACTIONS(3978), - [anon_sym_QMARK] = ACTIONS(3978), - [anon_sym_notnull] = ACTIONS(3978), - [anon_sym_unmanaged] = ACTIONS(3978), - [anon_sym_BANG] = ACTIONS(3978), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_SLASH] = ACTIONS(3978), - [anon_sym_PERCENT] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3978), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_LT_LT] = ACTIONS(3980), - [anon_sym_GT_GT] = ACTIONS(3978), - [anon_sym_GT_GT_GT] = ACTIONS(3980), - [anon_sym_EQ_EQ] = ACTIONS(3980), - [anon_sym_BANG_EQ] = ACTIONS(3980), - [anon_sym_GT_EQ] = ACTIONS(3980), - [anon_sym_LT_EQ] = ACTIONS(3980), - [anon_sym_DOT] = ACTIONS(3978), - [anon_sym_scoped] = ACTIONS(3978), - [anon_sym_var] = ACTIONS(3978), - [anon_sym_yield] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_when] = ACTIONS(3978), - [sym_discard] = ACTIONS(3978), - [anon_sym_DOT_DOT] = ACTIONS(3980), - [anon_sym_and] = ACTIONS(3978), - [anon_sym_or] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_PIPE_PIPE] = ACTIONS(3980), - [sym_op_coalescing] = ACTIONS(3980), - [anon_sym_from] = ACTIONS(3978), - [anon_sym_into] = ACTIONS(3978), - [anon_sym_join] = ACTIONS(3978), - [anon_sym_on] = ACTIONS(3978), - [anon_sym_equals] = ACTIONS(3978), - [anon_sym_let] = ACTIONS(3978), - [anon_sym_orderby] = ACTIONS(3978), - [anon_sym_ascending] = ACTIONS(3978), - [anon_sym_descending] = ACTIONS(3978), - [anon_sym_group] = ACTIONS(3978), - [anon_sym_by] = ACTIONS(3978), - [anon_sym_select] = ACTIONS(3978), - [anon_sym_as] = ACTIONS(3978), - [anon_sym_is] = ACTIONS(3978), - [anon_sym_DASH_GT] = ACTIONS(3980), - [anon_sym_with] = ACTIONS(3978), - [sym_grit_metavariable] = ACTIONS(3980), + [sym__identifier_token] = ACTIONS(5012), + [anon_sym_extern] = ACTIONS(5012), + [anon_sym_alias] = ACTIONS(5012), + [anon_sym_global] = ACTIONS(5012), + [anon_sym_using] = ACTIONS(5012), + [anon_sym_unsafe] = ACTIONS(5012), + [anon_sym_static] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_LPAREN] = ACTIONS(5014), + [anon_sym_event] = ACTIONS(5012), + [anon_sym_namespace] = ACTIONS(5012), + [anon_sym_class] = ACTIONS(5012), + [anon_sym_ref] = ACTIONS(5012), + [anon_sym_struct] = ACTIONS(5012), + [anon_sym_enum] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5014), + [anon_sym_interface] = ACTIONS(5012), + [anon_sym_delegate] = ACTIONS(5012), + [anon_sym_record] = ACTIONS(5012), + [anon_sym_public] = ACTIONS(5012), + [anon_sym_private] = ACTIONS(5012), + [anon_sym_readonly] = ACTIONS(5012), + [anon_sym_abstract] = ACTIONS(5012), + [anon_sym_async] = ACTIONS(5012), + [anon_sym_const] = ACTIONS(5012), + [anon_sym_file] = ACTIONS(5012), + [anon_sym_fixed] = ACTIONS(5012), + [anon_sym_internal] = ACTIONS(5012), + [anon_sym_new] = ACTIONS(5012), + [anon_sym_override] = ACTIONS(5012), + [anon_sym_partial] = ACTIONS(5012), + [anon_sym_protected] = ACTIONS(5012), + [anon_sym_required] = ACTIONS(5012), + [anon_sym_sealed] = ACTIONS(5012), + [anon_sym_virtual] = ACTIONS(5012), + [anon_sym_volatile] = ACTIONS(5012), + [anon_sym_where] = ACTIONS(5012), + [anon_sym_notnull] = ACTIONS(5012), + [anon_sym_unmanaged] = ACTIONS(5012), + [anon_sym_implicit] = ACTIONS(5012), + [anon_sym_explicit] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5014), + [anon_sym_scoped] = ACTIONS(5012), + [anon_sym_var] = ACTIONS(5012), + [sym_predefined_type] = ACTIONS(5012), + [anon_sym_yield] = ACTIONS(5012), + [anon_sym_when] = 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_ascending] = ACTIONS(5012), + [anon_sym_descending] = ACTIONS(5012), + [anon_sym_group] = ACTIONS(5012), + [anon_sym_by] = ACTIONS(5012), + [anon_sym_select] = ACTIONS(5012), + [sym_grit_metavariable] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token3] = ACTIONS(5014), + [aux_sym_preproc_else_token1] = ACTIONS(5014), + [aux_sym_preproc_elif_token1] = ACTIONS(5014), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469257,9 +468996,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(3980), }, [2830] = { + [sym__variable_designation] = STATE(4246), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2830), [sym_preproc_endregion] = STATE(2830), [sym_preproc_line] = STATE(2830), @@ -469269,69 +469011,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2830), [sym_preproc_define] = STATE(2830), [sym_preproc_undef] = STATE(2830), - [sym__identifier_token] = ACTIONS(3974), - [anon_sym_alias] = ACTIONS(3974), - [anon_sym_global] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3976), - [anon_sym_COLON] = ACTIONS(3976), - [anon_sym_COMMA] = ACTIONS(3976), - [anon_sym_LPAREN] = ACTIONS(3976), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_file] = ACTIONS(3974), - [anon_sym_LT] = ACTIONS(3974), - [anon_sym_GT] = ACTIONS(3974), - [anon_sym_where] = ACTIONS(3974), - [anon_sym_QMARK] = ACTIONS(3974), - [anon_sym_notnull] = ACTIONS(3974), - [anon_sym_unmanaged] = ACTIONS(3974), - [anon_sym_BANG] = ACTIONS(3974), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_SLASH] = ACTIONS(3974), - [anon_sym_PERCENT] = ACTIONS(3976), - [anon_sym_CARET] = ACTIONS(3976), - [anon_sym_PIPE] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_LT_LT] = ACTIONS(3976), - [anon_sym_GT_GT] = ACTIONS(3974), - [anon_sym_GT_GT_GT] = ACTIONS(3976), - [anon_sym_EQ_EQ] = ACTIONS(3976), - [anon_sym_BANG_EQ] = ACTIONS(3976), - [anon_sym_GT_EQ] = ACTIONS(3976), - [anon_sym_LT_EQ] = ACTIONS(3976), - [anon_sym_DOT] = ACTIONS(3974), - [anon_sym_scoped] = ACTIONS(3974), - [anon_sym_var] = ACTIONS(3974), - [anon_sym_yield] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_when] = ACTIONS(3974), - [sym_discard] = ACTIONS(3974), - [anon_sym_DOT_DOT] = ACTIONS(3976), - [anon_sym_and] = ACTIONS(3974), - [anon_sym_or] = ACTIONS(3974), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_PIPE_PIPE] = ACTIONS(3976), - [sym_op_coalescing] = ACTIONS(3976), - [anon_sym_from] = ACTIONS(3974), - [anon_sym_into] = ACTIONS(3974), - [anon_sym_join] = ACTIONS(3974), - [anon_sym_on] = ACTIONS(3974), - [anon_sym_equals] = ACTIONS(3974), - [anon_sym_let] = ACTIONS(3974), - [anon_sym_orderby] = ACTIONS(3974), - [anon_sym_ascending] = ACTIONS(3974), - [anon_sym_descending] = ACTIONS(3974), - [anon_sym_group] = ACTIONS(3974), - [anon_sym_by] = ACTIONS(3974), - [anon_sym_select] = ACTIONS(3974), - [anon_sym_as] = ACTIONS(3974), - [anon_sym_is] = ACTIONS(3974), - [anon_sym_DASH_GT] = ACTIONS(3976), - [anon_sym_with] = ACTIONS(3974), - [sym_grit_metavariable] = ACTIONS(3976), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4252), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4252), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469342,7 +469081,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(3976), }, [2831] = { [sym_preproc_region] = STATE(2831), @@ -469354,70 +469092,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2831), [sym_preproc_define] = STATE(2831), [sym_preproc_undef] = STATE(2831), - [sym__identifier_token] = ACTIONS(3612), - [anon_sym_extern] = ACTIONS(3612), - [anon_sym_alias] = ACTIONS(3612), - [anon_sym_global] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_unsafe] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_event] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_ref] = ACTIONS(3612), - [anon_sym_struct] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3614), - [anon_sym_interface] = ACTIONS(3612), - [anon_sym_delegate] = ACTIONS(3612), - [anon_sym_record] = ACTIONS(3612), - [anon_sym_public] = ACTIONS(3612), - [anon_sym_private] = ACTIONS(3612), - [anon_sym_readonly] = ACTIONS(3612), - [anon_sym_abstract] = ACTIONS(3612), - [anon_sym_async] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_file] = ACTIONS(3612), - [anon_sym_fixed] = ACTIONS(3612), - [anon_sym_internal] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_override] = ACTIONS(3612), - [anon_sym_partial] = ACTIONS(3612), - [anon_sym_protected] = ACTIONS(3612), - [anon_sym_required] = ACTIONS(3612), - [anon_sym_sealed] = ACTIONS(3612), - [anon_sym_virtual] = ACTIONS(3612), - [anon_sym_volatile] = ACTIONS(3612), - [anon_sym_where] = ACTIONS(3612), - [anon_sym_notnull] = ACTIONS(3612), - [anon_sym_unmanaged] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3614), - [anon_sym_implicit] = ACTIONS(3612), - [anon_sym_explicit] = ACTIONS(3612), - [anon_sym_scoped] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3612), - [sym_predefined_type] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_when] = 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_ascending] = ACTIONS(3612), - [anon_sym_descending] = ACTIONS(3612), - [anon_sym_group] = ACTIONS(3612), - [anon_sym_by] = ACTIONS(3612), - [anon_sym_select] = ACTIONS(3612), - [sym_grit_metavariable] = ACTIONS(3614), - [aux_sym_preproc_if_token1] = ACTIONS(3614), - [aux_sym_preproc_if_token3] = ACTIONS(3614), - [aux_sym_preproc_else_token1] = ACTIONS(3614), - [aux_sym_preproc_elif_token1] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3959), + [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_LT] = ACTIONS(3959), + [anon_sym_GT] = ACTIONS(3959), + [anon_sym_in] = ACTIONS(3959), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_DOT] = ACTIONS(3959), + [anon_sym_EQ_GT] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3959), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3961), + [anon_sym_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_EQ] = ACTIONS(3961), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_PLUS_EQ] = ACTIONS(3961), + [anon_sym_DASH_EQ] = ACTIONS(3961), + [anon_sym_STAR_EQ] = ACTIONS(3961), + [anon_sym_SLASH_EQ] = ACTIONS(3961), + [anon_sym_PERCENT_EQ] = ACTIONS(3961), + [anon_sym_AMP_EQ] = ACTIONS(3961), + [anon_sym_CARET_EQ] = ACTIONS(3961), + [anon_sym_PIPE_EQ] = ACTIONS(3961), + [anon_sym_LT_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_GT_EQ] = ACTIONS(3961), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3961), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3961), + [anon_sym_EQ_EQ] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [sym_op_bitwise_or] = ACTIONS(3959), + [anon_sym_CARET] = ACTIONS(3959), + [sym_op_left_shift] = ACTIONS(3959), + [sym_op_right_shift] = ACTIONS(3959), + [sym_op_unsigned_right_shift] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3959), + [sym_op_divide] = ACTIONS(3959), + [sym_op_modulo] = ACTIONS(3959), + [sym_op_coalescing] = ACTIONS(3959), + [anon_sym_BANG] = ACTIONS(3959), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), + [anon_sym_with] = ACTIONS(3961), + [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), @@ -469439,70 +469177,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2832), [sym_preproc_define] = STATE(2832), [sym_preproc_undef] = STATE(2832), - [sym__identifier_token] = ACTIONS(3628), - [anon_sym_extern] = ACTIONS(3628), - [anon_sym_alias] = ACTIONS(3628), - [anon_sym_global] = ACTIONS(3628), - [anon_sym_using] = ACTIONS(3628), - [anon_sym_unsafe] = ACTIONS(3628), - [anon_sym_static] = ACTIONS(3628), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_event] = ACTIONS(3628), - [anon_sym_namespace] = ACTIONS(3628), - [anon_sym_class] = ACTIONS(3628), - [anon_sym_ref] = ACTIONS(3628), - [anon_sym_struct] = ACTIONS(3628), - [anon_sym_enum] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3630), - [anon_sym_interface] = ACTIONS(3628), - [anon_sym_delegate] = ACTIONS(3628), - [anon_sym_record] = ACTIONS(3628), - [anon_sym_public] = ACTIONS(3628), - [anon_sym_private] = ACTIONS(3628), - [anon_sym_readonly] = ACTIONS(3628), - [anon_sym_abstract] = ACTIONS(3628), - [anon_sym_async] = ACTIONS(3628), - [anon_sym_const] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3628), - [anon_sym_fixed] = ACTIONS(3628), - [anon_sym_internal] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3628), - [anon_sym_override] = ACTIONS(3628), - [anon_sym_partial] = ACTIONS(3628), - [anon_sym_protected] = ACTIONS(3628), - [anon_sym_required] = ACTIONS(3628), - [anon_sym_sealed] = ACTIONS(3628), - [anon_sym_virtual] = ACTIONS(3628), - [anon_sym_volatile] = ACTIONS(3628), - [anon_sym_where] = ACTIONS(3628), - [anon_sym_notnull] = ACTIONS(3628), - [anon_sym_unmanaged] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3630), - [anon_sym_implicit] = ACTIONS(3628), - [anon_sym_explicit] = ACTIONS(3628), - [anon_sym_scoped] = ACTIONS(3628), - [anon_sym_var] = ACTIONS(3628), - [sym_predefined_type] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3628), - [anon_sym_when] = ACTIONS(3628), - [anon_sym_from] = ACTIONS(3628), - [anon_sym_into] = ACTIONS(3628), - [anon_sym_join] = ACTIONS(3628), - [anon_sym_on] = ACTIONS(3628), - [anon_sym_equals] = ACTIONS(3628), - [anon_sym_let] = ACTIONS(3628), - [anon_sym_orderby] = ACTIONS(3628), - [anon_sym_ascending] = ACTIONS(3628), - [anon_sym_descending] = ACTIONS(3628), - [anon_sym_group] = ACTIONS(3628), - [anon_sym_by] = ACTIONS(3628), - [anon_sym_select] = ACTIONS(3628), - [sym_grit_metavariable] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token3] = ACTIONS(3630), - [aux_sym_preproc_else_token1] = ACTIONS(3630), - [aux_sym_preproc_elif_token1] = ACTIONS(3630), + [sym__identifier_token] = ACTIONS(5016), + [anon_sym_extern] = ACTIONS(5016), + [anon_sym_alias] = ACTIONS(5016), + [anon_sym_global] = ACTIONS(5016), + [anon_sym_using] = ACTIONS(5016), + [anon_sym_unsafe] = ACTIONS(5016), + [anon_sym_static] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5018), + [anon_sym_event] = ACTIONS(5016), + [anon_sym_namespace] = ACTIONS(5016), + [anon_sym_class] = ACTIONS(5016), + [anon_sym_ref] = ACTIONS(5016), + [anon_sym_struct] = ACTIONS(5016), + [anon_sym_enum] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5018), + [anon_sym_interface] = ACTIONS(5016), + [anon_sym_delegate] = ACTIONS(5016), + [anon_sym_record] = ACTIONS(5016), + [anon_sym_public] = ACTIONS(5016), + [anon_sym_private] = ACTIONS(5016), + [anon_sym_readonly] = ACTIONS(5016), + [anon_sym_abstract] = ACTIONS(5016), + [anon_sym_async] = ACTIONS(5016), + [anon_sym_const] = ACTIONS(5016), + [anon_sym_file] = ACTIONS(5016), + [anon_sym_fixed] = ACTIONS(5016), + [anon_sym_internal] = ACTIONS(5016), + [anon_sym_new] = ACTIONS(5016), + [anon_sym_override] = ACTIONS(5016), + [anon_sym_partial] = ACTIONS(5016), + [anon_sym_protected] = ACTIONS(5016), + [anon_sym_required] = ACTIONS(5016), + [anon_sym_sealed] = ACTIONS(5016), + [anon_sym_virtual] = ACTIONS(5016), + [anon_sym_volatile] = ACTIONS(5016), + [anon_sym_where] = ACTIONS(5016), + [anon_sym_notnull] = ACTIONS(5016), + [anon_sym_unmanaged] = ACTIONS(5016), + [anon_sym_implicit] = ACTIONS(5016), + [anon_sym_explicit] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5018), + [anon_sym_scoped] = ACTIONS(5016), + [anon_sym_var] = ACTIONS(5016), + [sym_predefined_type] = 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), + [sym_grit_metavariable] = ACTIONS(5018), + [aux_sym_preproc_if_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token3] = ACTIONS(5018), + [aux_sym_preproc_else_token1] = ACTIONS(5018), + [aux_sym_preproc_elif_token1] = ACTIONS(5018), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469515,10 +469253,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2833] = { - [sym__variable_designation] = STATE(5500), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym_identifier] = STATE(5505), - [sym__reserved_identifier] = STATE(3398), [sym_preproc_region] = STATE(2833), [sym_preproc_endregion] = STATE(2833), [sym_preproc_line] = STATE(2833), @@ -469528,66 +469262,70 @@ 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), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4197), - [anon_sym_var] = ACTIONS(4197), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4197), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4244), - [anon_sym_into] = ACTIONS(4244), - [anon_sym_join] = ACTIONS(4244), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4244), - [anon_sym_orderby] = ACTIONS(4244), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4244), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(5020), + [anon_sym_extern] = ACTIONS(5020), + [anon_sym_alias] = ACTIONS(5020), + [anon_sym_global] = ACTIONS(5020), + [anon_sym_using] = ACTIONS(5020), + [anon_sym_unsafe] = ACTIONS(5020), + [anon_sym_static] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5022), + [anon_sym_event] = ACTIONS(5020), + [anon_sym_namespace] = ACTIONS(5020), + [anon_sym_class] = ACTIONS(5020), + [anon_sym_ref] = ACTIONS(5020), + [anon_sym_struct] = ACTIONS(5020), + [anon_sym_enum] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5022), + [anon_sym_interface] = ACTIONS(5020), + [anon_sym_delegate] = ACTIONS(5020), + [anon_sym_record] = ACTIONS(5020), + [anon_sym_public] = ACTIONS(5020), + [anon_sym_private] = ACTIONS(5020), + [anon_sym_readonly] = ACTIONS(5020), + [anon_sym_abstract] = ACTIONS(5020), + [anon_sym_async] = ACTIONS(5020), + [anon_sym_const] = ACTIONS(5020), + [anon_sym_file] = ACTIONS(5020), + [anon_sym_fixed] = ACTIONS(5020), + [anon_sym_internal] = ACTIONS(5020), + [anon_sym_new] = ACTIONS(5020), + [anon_sym_override] = ACTIONS(5020), + [anon_sym_partial] = ACTIONS(5020), + [anon_sym_protected] = ACTIONS(5020), + [anon_sym_required] = ACTIONS(5020), + [anon_sym_sealed] = ACTIONS(5020), + [anon_sym_virtual] = ACTIONS(5020), + [anon_sym_volatile] = ACTIONS(5020), + [anon_sym_where] = ACTIONS(5020), + [anon_sym_notnull] = ACTIONS(5020), + [anon_sym_unmanaged] = ACTIONS(5020), + [anon_sym_implicit] = ACTIONS(5020), + [anon_sym_explicit] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5022), + [anon_sym_scoped] = ACTIONS(5020), + [anon_sym_var] = ACTIONS(5020), + [sym_predefined_type] = ACTIONS(5020), + [anon_sym_yield] = ACTIONS(5020), + [anon_sym_when] = 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_ascending] = ACTIONS(5020), + [anon_sym_descending] = ACTIONS(5020), + [anon_sym_group] = ACTIONS(5020), + [anon_sym_by] = ACTIONS(5020), + [anon_sym_select] = ACTIONS(5020), + [sym_grit_metavariable] = ACTIONS(5022), + [aux_sym_preproc_if_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token3] = ACTIONS(5022), + [aux_sym_preproc_else_token1] = ACTIONS(5022), + [aux_sym_preproc_elif_token1] = ACTIONS(5022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469600,10 +469338,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2834] = { - [sym__variable_designation] = STATE(5517), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym_identifier] = STATE(5505), - [sym__reserved_identifier] = STATE(3398), [sym_preproc_region] = STATE(2834), [sym_preproc_endregion] = STATE(2834), [sym_preproc_line] = STATE(2834), @@ -469613,66 +469347,70 @@ 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), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4197), - [anon_sym_var] = ACTIONS(4197), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4197), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4252), - [anon_sym_into] = ACTIONS(4252), - [anon_sym_join] = ACTIONS(4252), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4252), - [anon_sym_orderby] = ACTIONS(4252), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4252), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(5024), + [anon_sym_extern] = ACTIONS(5024), + [anon_sym_alias] = ACTIONS(5024), + [anon_sym_global] = ACTIONS(5024), + [anon_sym_using] = ACTIONS(5024), + [anon_sym_unsafe] = ACTIONS(5024), + [anon_sym_static] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_event] = ACTIONS(5024), + [anon_sym_namespace] = ACTIONS(5024), + [anon_sym_class] = ACTIONS(5024), + [anon_sym_ref] = ACTIONS(5024), + [anon_sym_struct] = ACTIONS(5024), + [anon_sym_enum] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_interface] = ACTIONS(5024), + [anon_sym_delegate] = ACTIONS(5024), + [anon_sym_record] = ACTIONS(5024), + [anon_sym_public] = ACTIONS(5024), + [anon_sym_private] = ACTIONS(5024), + [anon_sym_readonly] = ACTIONS(5024), + [anon_sym_abstract] = ACTIONS(5024), + [anon_sym_async] = ACTIONS(5024), + [anon_sym_const] = ACTIONS(5024), + [anon_sym_file] = ACTIONS(5024), + [anon_sym_fixed] = ACTIONS(5024), + [anon_sym_internal] = ACTIONS(5024), + [anon_sym_new] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_partial] = ACTIONS(5024), + [anon_sym_protected] = ACTIONS(5024), + [anon_sym_required] = ACTIONS(5024), + [anon_sym_sealed] = ACTIONS(5024), + [anon_sym_virtual] = ACTIONS(5024), + [anon_sym_volatile] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_notnull] = ACTIONS(5024), + [anon_sym_unmanaged] = ACTIONS(5024), + [anon_sym_implicit] = ACTIONS(5024), + [anon_sym_explicit] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5026), + [anon_sym_scoped] = ACTIONS(5024), + [anon_sym_var] = ACTIONS(5024), + [sym_predefined_type] = ACTIONS(5024), + [anon_sym_yield] = ACTIONS(5024), + [anon_sym_when] = ACTIONS(5024), + [anon_sym_from] = ACTIONS(5024), + [anon_sym_into] = ACTIONS(5024), + [anon_sym_join] = ACTIONS(5024), + [anon_sym_on] = ACTIONS(5024), + [anon_sym_equals] = ACTIONS(5024), + [anon_sym_let] = ACTIONS(5024), + [anon_sym_orderby] = ACTIONS(5024), + [anon_sym_ascending] = ACTIONS(5024), + [anon_sym_descending] = ACTIONS(5024), + [anon_sym_group] = ACTIONS(5024), + [anon_sym_by] = ACTIONS(5024), + [anon_sym_select] = ACTIONS(5024), + [sym_grit_metavariable] = ACTIONS(5026), + [aux_sym_preproc_if_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token3] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5026), + [aux_sym_preproc_elif_token1] = ACTIONS(5026), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469685,10 +469423,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2835] = { - [sym__variable_designation] = STATE(5512), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym_identifier] = STATE(5505), - [sym__reserved_identifier] = STATE(3398), [sym_preproc_region] = STATE(2835), [sym_preproc_endregion] = STATE(2835), [sym_preproc_line] = STATE(2835), @@ -469698,66 +469432,70 @@ 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), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4308), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4197), - [anon_sym_var] = ACTIONS(4197), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4197), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4308), - [anon_sym_into] = ACTIONS(4308), - [anon_sym_join] = ACTIONS(4308), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4308), - [anon_sym_orderby] = ACTIONS(4308), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4308), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4308), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym_alias] = ACTIONS(3644), + [anon_sym_global] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_unsafe] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_event] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_ref] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_interface] = ACTIONS(3644), + [anon_sym_delegate] = ACTIONS(3644), + [anon_sym_record] = ACTIONS(3644), + [anon_sym_public] = ACTIONS(3644), + [anon_sym_private] = ACTIONS(3644), + [anon_sym_readonly] = ACTIONS(3644), + [anon_sym_abstract] = ACTIONS(3644), + [anon_sym_async] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_file] = ACTIONS(3644), + [anon_sym_fixed] = ACTIONS(3644), + [anon_sym_internal] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_override] = ACTIONS(3644), + [anon_sym_partial] = ACTIONS(3644), + [anon_sym_protected] = ACTIONS(3644), + [anon_sym_required] = ACTIONS(3644), + [anon_sym_sealed] = ACTIONS(3644), + [anon_sym_virtual] = ACTIONS(3644), + [anon_sym_volatile] = ACTIONS(3644), + [anon_sym_where] = ACTIONS(3644), + [anon_sym_notnull] = ACTIONS(3644), + [anon_sym_unmanaged] = ACTIONS(3644), + [anon_sym_implicit] = ACTIONS(3644), + [anon_sym_explicit] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_scoped] = ACTIONS(3644), + [anon_sym_var] = ACTIONS(3644), + [sym_predefined_type] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3644), + [anon_sym_when] = ACTIONS(3644), + [anon_sym_from] = ACTIONS(3644), + [anon_sym_into] = ACTIONS(3644), + [anon_sym_join] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_equals] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_orderby] = ACTIONS(3644), + [anon_sym_ascending] = ACTIONS(3644), + [anon_sym_descending] = ACTIONS(3644), + [anon_sym_group] = ACTIONS(3644), + [anon_sym_by] = ACTIONS(3644), + [anon_sym_select] = ACTIONS(3644), + [sym_grit_metavariable] = ACTIONS(3646), + [aux_sym_preproc_if_token1] = ACTIONS(3646), + [aux_sym_preproc_if_token3] = ACTIONS(3646), + [aux_sym_preproc_else_token1] = ACTIONS(3646), + [aux_sym_preproc_elif_token1] = ACTIONS(3646), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469770,10 +469508,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2836] = { - [sym__variable_designation] = STATE(5522), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym_identifier] = STATE(5505), - [sym__reserved_identifier] = STATE(3398), + [sym__variable_designation] = STATE(4143), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2836), [sym_preproc_endregion] = STATE(2836), [sym_preproc_line] = STATE(2836), @@ -469783,66 +469521,66 @@ 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), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4304), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4197), - [anon_sym_var] = ACTIONS(4197), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4197), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4304), - [anon_sym_into] = ACTIONS(4304), - [anon_sym_join] = ACTIONS(4304), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4304), - [anon_sym_orderby] = ACTIONS(4304), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4304), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4304), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4256), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469855,10 +469593,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2837] = { - [sym__variable_designation] = STATE(4967), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2837), [sym_preproc_endregion] = STATE(2837), [sym_preproc_line] = STATE(2837), @@ -469868,66 +469602,70 @@ 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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4244), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(5028), + [anon_sym_extern] = ACTIONS(5028), + [anon_sym_alias] = ACTIONS(5028), + [anon_sym_global] = ACTIONS(5028), + [anon_sym_using] = ACTIONS(5028), + [anon_sym_unsafe] = ACTIONS(5028), + [anon_sym_static] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_LPAREN] = ACTIONS(5030), + [anon_sym_event] = ACTIONS(5028), + [anon_sym_namespace] = ACTIONS(5028), + [anon_sym_class] = ACTIONS(5028), + [anon_sym_ref] = ACTIONS(5028), + [anon_sym_struct] = ACTIONS(5028), + [anon_sym_enum] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5030), + [anon_sym_interface] = ACTIONS(5028), + [anon_sym_delegate] = ACTIONS(5028), + [anon_sym_record] = ACTIONS(5028), + [anon_sym_public] = ACTIONS(5028), + [anon_sym_private] = ACTIONS(5028), + [anon_sym_readonly] = ACTIONS(5028), + [anon_sym_abstract] = ACTIONS(5028), + [anon_sym_async] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_file] = ACTIONS(5028), + [anon_sym_fixed] = ACTIONS(5028), + [anon_sym_internal] = ACTIONS(5028), + [anon_sym_new] = ACTIONS(5028), + [anon_sym_override] = ACTIONS(5028), + [anon_sym_partial] = ACTIONS(5028), + [anon_sym_protected] = ACTIONS(5028), + [anon_sym_required] = ACTIONS(5028), + [anon_sym_sealed] = ACTIONS(5028), + [anon_sym_virtual] = ACTIONS(5028), + [anon_sym_volatile] = ACTIONS(5028), + [anon_sym_where] = ACTIONS(5028), + [anon_sym_notnull] = ACTIONS(5028), + [anon_sym_unmanaged] = ACTIONS(5028), + [anon_sym_implicit] = ACTIONS(5028), + [anon_sym_explicit] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5030), + [anon_sym_scoped] = ACTIONS(5028), + [anon_sym_var] = ACTIONS(5028), + [sym_predefined_type] = ACTIONS(5028), + [anon_sym_yield] = ACTIONS(5028), + [anon_sym_when] = ACTIONS(5028), + [anon_sym_from] = ACTIONS(5028), + [anon_sym_into] = ACTIONS(5028), + [anon_sym_join] = ACTIONS(5028), + [anon_sym_on] = ACTIONS(5028), + [anon_sym_equals] = ACTIONS(5028), + [anon_sym_let] = ACTIONS(5028), + [anon_sym_orderby] = ACTIONS(5028), + [anon_sym_ascending] = ACTIONS(5028), + [anon_sym_descending] = ACTIONS(5028), + [anon_sym_group] = ACTIONS(5028), + [anon_sym_by] = ACTIONS(5028), + [anon_sym_select] = ACTIONS(5028), + [sym_grit_metavariable] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token3] = ACTIONS(5030), + [aux_sym_preproc_else_token1] = ACTIONS(5030), + [aux_sym_preproc_elif_token1] = ACTIONS(5030), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469940,10 +469678,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2838] = { - [sym__variable_designation] = STATE(4935), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2838), [sym_preproc_endregion] = STATE(2838), [sym_preproc_line] = STATE(2838), @@ -469953,6 +469687,350 @@ 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), + [sym__identifier_token] = ACTIONS(5032), + [anon_sym_extern] = ACTIONS(5032), + [anon_sym_alias] = ACTIONS(5032), + [anon_sym_global] = ACTIONS(5032), + [anon_sym_using] = ACTIONS(5032), + [anon_sym_unsafe] = ACTIONS(5032), + [anon_sym_static] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_LPAREN] = ACTIONS(5034), + [anon_sym_event] = ACTIONS(5032), + [anon_sym_namespace] = ACTIONS(5032), + [anon_sym_class] = ACTIONS(5032), + [anon_sym_ref] = ACTIONS(5032), + [anon_sym_struct] = ACTIONS(5032), + [anon_sym_enum] = ACTIONS(5032), + [anon_sym_RBRACE] = ACTIONS(5034), + [anon_sym_interface] = ACTIONS(5032), + [anon_sym_delegate] = ACTIONS(5032), + [anon_sym_record] = ACTIONS(5032), + [anon_sym_public] = ACTIONS(5032), + [anon_sym_private] = ACTIONS(5032), + [anon_sym_readonly] = ACTIONS(5032), + [anon_sym_abstract] = ACTIONS(5032), + [anon_sym_async] = ACTIONS(5032), + [anon_sym_const] = ACTIONS(5032), + [anon_sym_file] = ACTIONS(5032), + [anon_sym_fixed] = ACTIONS(5032), + [anon_sym_internal] = ACTIONS(5032), + [anon_sym_new] = ACTIONS(5032), + [anon_sym_override] = ACTIONS(5032), + [anon_sym_partial] = ACTIONS(5032), + [anon_sym_protected] = ACTIONS(5032), + [anon_sym_required] = ACTIONS(5032), + [anon_sym_sealed] = ACTIONS(5032), + [anon_sym_virtual] = ACTIONS(5032), + [anon_sym_volatile] = ACTIONS(5032), + [anon_sym_where] = ACTIONS(5032), + [anon_sym_notnull] = ACTIONS(5032), + [anon_sym_unmanaged] = ACTIONS(5032), + [anon_sym_implicit] = ACTIONS(5032), + [anon_sym_explicit] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5034), + [anon_sym_scoped] = ACTIONS(5032), + [anon_sym_var] = ACTIONS(5032), + [sym_predefined_type] = ACTIONS(5032), + [anon_sym_yield] = ACTIONS(5032), + [anon_sym_when] = ACTIONS(5032), + [anon_sym_from] = ACTIONS(5032), + [anon_sym_into] = ACTIONS(5032), + [anon_sym_join] = ACTIONS(5032), + [anon_sym_on] = ACTIONS(5032), + [anon_sym_equals] = ACTIONS(5032), + [anon_sym_let] = ACTIONS(5032), + [anon_sym_orderby] = ACTIONS(5032), + [anon_sym_ascending] = ACTIONS(5032), + [anon_sym_descending] = ACTIONS(5032), + [anon_sym_group] = ACTIONS(5032), + [anon_sym_by] = ACTIONS(5032), + [anon_sym_select] = ACTIONS(5032), + [sym_grit_metavariable] = ACTIONS(5034), + [aux_sym_preproc_if_token1] = ACTIONS(5034), + [aux_sym_preproc_if_token3] = ACTIONS(5034), + [aux_sym_preproc_else_token1] = ACTIONS(5034), + [aux_sym_preproc_elif_token1] = ACTIONS(5034), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2839] = { + [sym__variable_designation] = STATE(4136), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), + [sym_preproc_region] = STATE(2839), + [sym_preproc_endregion] = STATE(2839), + [sym_preproc_line] = STATE(2839), + [sym_preproc_pragma] = STATE(2839), + [sym_preproc_nullable] = STATE(2839), + [sym_preproc_error] = STATE(2839), + [sym_preproc_warning] = STATE(2839), + [sym_preproc_define] = STATE(2839), + [sym_preproc_undef] = STATE(2839), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4308), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4308), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4230), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2840] = { + [sym_preproc_region] = STATE(2840), + [sym_preproc_endregion] = STATE(2840), + [sym_preproc_line] = STATE(2840), + [sym_preproc_pragma] = STATE(2840), + [sym_preproc_nullable] = STATE(2840), + [sym_preproc_error] = STATE(2840), + [sym_preproc_warning] = STATE(2840), + [sym_preproc_define] = STATE(2840), + [sym_preproc_undef] = STATE(2840), + [sym__identifier_token] = ACTIONS(5036), + [anon_sym_extern] = ACTIONS(5036), + [anon_sym_alias] = ACTIONS(5036), + [anon_sym_global] = ACTIONS(5036), + [anon_sym_using] = ACTIONS(5036), + [anon_sym_unsafe] = ACTIONS(5036), + [anon_sym_static] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_LPAREN] = ACTIONS(5038), + [anon_sym_event] = ACTIONS(5036), + [anon_sym_namespace] = ACTIONS(5036), + [anon_sym_class] = ACTIONS(5036), + [anon_sym_ref] = ACTIONS(5036), + [anon_sym_struct] = ACTIONS(5036), + [anon_sym_enum] = ACTIONS(5036), + [anon_sym_RBRACE] = ACTIONS(5038), + [anon_sym_interface] = ACTIONS(5036), + [anon_sym_delegate] = ACTIONS(5036), + [anon_sym_record] = ACTIONS(5036), + [anon_sym_public] = ACTIONS(5036), + [anon_sym_private] = ACTIONS(5036), + [anon_sym_readonly] = ACTIONS(5036), + [anon_sym_abstract] = ACTIONS(5036), + [anon_sym_async] = ACTIONS(5036), + [anon_sym_const] = ACTIONS(5036), + [anon_sym_file] = ACTIONS(5036), + [anon_sym_fixed] = ACTIONS(5036), + [anon_sym_internal] = ACTIONS(5036), + [anon_sym_new] = ACTIONS(5036), + [anon_sym_override] = ACTIONS(5036), + [anon_sym_partial] = ACTIONS(5036), + [anon_sym_protected] = ACTIONS(5036), + [anon_sym_required] = ACTIONS(5036), + [anon_sym_sealed] = ACTIONS(5036), + [anon_sym_virtual] = ACTIONS(5036), + [anon_sym_volatile] = ACTIONS(5036), + [anon_sym_where] = ACTIONS(5036), + [anon_sym_notnull] = ACTIONS(5036), + [anon_sym_unmanaged] = ACTIONS(5036), + [anon_sym_implicit] = ACTIONS(5036), + [anon_sym_explicit] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5038), + [anon_sym_scoped] = ACTIONS(5036), + [anon_sym_var] = ACTIONS(5036), + [sym_predefined_type] = ACTIONS(5036), + [anon_sym_yield] = ACTIONS(5036), + [anon_sym_when] = ACTIONS(5036), + [anon_sym_from] = ACTIONS(5036), + [anon_sym_into] = ACTIONS(5036), + [anon_sym_join] = ACTIONS(5036), + [anon_sym_on] = ACTIONS(5036), + [anon_sym_equals] = ACTIONS(5036), + [anon_sym_let] = ACTIONS(5036), + [anon_sym_orderby] = ACTIONS(5036), + [anon_sym_ascending] = ACTIONS(5036), + [anon_sym_descending] = ACTIONS(5036), + [anon_sym_group] = ACTIONS(5036), + [anon_sym_by] = ACTIONS(5036), + [anon_sym_select] = ACTIONS(5036), + [sym_grit_metavariable] = ACTIONS(5038), + [aux_sym_preproc_if_token1] = ACTIONS(5038), + [aux_sym_preproc_if_token3] = ACTIONS(5038), + [aux_sym_preproc_else_token1] = ACTIONS(5038), + [aux_sym_preproc_elif_token1] = ACTIONS(5038), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2841] = { + [sym_preproc_region] = STATE(2841), + [sym_preproc_endregion] = STATE(2841), + [sym_preproc_line] = STATE(2841), + [sym_preproc_pragma] = STATE(2841), + [sym_preproc_nullable] = STATE(2841), + [sym_preproc_error] = STATE(2841), + [sym_preproc_warning] = STATE(2841), + [sym_preproc_define] = STATE(2841), + [sym_preproc_undef] = STATE(2841), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_EQ] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_COLON] = ACTIONS(3982), + [anon_sym_COMMA] = ACTIONS(3982), + [anon_sym_RBRACK] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym_RPAREN] = ACTIONS(3982), + [anon_sym_RBRACE] = ACTIONS(3982), + [anon_sym_LT] = ACTIONS(3980), + [anon_sym_GT] = ACTIONS(3980), + [anon_sym_in] = ACTIONS(3980), + [anon_sym_QMARK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_EQ_GT] = ACTIONS(3982), + [anon_sym_STAR] = ACTIONS(3980), + [anon_sym_switch] = ACTIONS(3982), + [anon_sym_when] = ACTIONS(3982), + [anon_sym_DOT_DOT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_EQ] = ACTIONS(3982), + [anon_sym_and] = ACTIONS(3982), + [anon_sym_or] = ACTIONS(3982), + [anon_sym_PLUS_EQ] = ACTIONS(3982), + [anon_sym_DASH_EQ] = ACTIONS(3982), + [anon_sym_STAR_EQ] = ACTIONS(3982), + [anon_sym_SLASH_EQ] = ACTIONS(3982), + [anon_sym_PERCENT_EQ] = ACTIONS(3982), + [anon_sym_AMP_EQ] = ACTIONS(3982), + [anon_sym_CARET_EQ] = ACTIONS(3982), + [anon_sym_PIPE_EQ] = ACTIONS(3982), + [anon_sym_LT_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_GT_EQ] = ACTIONS(3982), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3982), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3982), + [anon_sym_EQ_EQ] = ACTIONS(3982), + [anon_sym_BANG_EQ] = ACTIONS(3982), + [anon_sym_AMP_AMP] = ACTIONS(3982), + [anon_sym_PIPE_PIPE] = ACTIONS(3982), + [anon_sym_AMP] = ACTIONS(3980), + [sym_op_bitwise_or] = ACTIONS(3980), + [anon_sym_CARET] = ACTIONS(3980), + [sym_op_left_shift] = ACTIONS(3980), + [sym_op_right_shift] = ACTIONS(3980), + [sym_op_unsigned_right_shift] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3980), + [sym_op_divide] = ACTIONS(3980), + [sym_op_modulo] = ACTIONS(3980), + [sym_op_coalescing] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3982), + [anon_sym_into] = ACTIONS(3982), + [anon_sym_on] = ACTIONS(3982), + [anon_sym_equals] = ACTIONS(3982), + [anon_sym_by] = ACTIONS(3982), + [anon_sym_as] = ACTIONS(3982), + [anon_sym_is] = ACTIONS(3982), + [anon_sym_DASH_GT] = ACTIONS(3982), + [anon_sym_with] = ACTIONS(3982), + [aux_sym_preproc_if_token3] = ACTIONS(3982), + [aux_sym_preproc_else_token1] = ACTIONS(3982), + [aux_sym_preproc_elif_token1] = ACTIONS(3982), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2842] = { + [sym__variable_designation] = STATE(5514), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym_identifier] = STATE(5489), + [sym__reserved_identifier] = STATE(3148), + [sym_preproc_region] = STATE(2842), + [sym_preproc_endregion] = STATE(2842), + [sym_preproc_line] = STATE(2842), + [sym_preproc_pragma] = STATE(2842), + [sym_preproc_nullable] = STATE(2842), + [sym_preproc_error] = STATE(2842), + [sym_preproc_warning] = STATE(2842), + [sym_preproc_define] = STATE(2842), + [sym_preproc_undef] = STATE(2842), [sym__identifier_token] = ACTIONS(4208), [anon_sym_alias] = ACTIONS(4210), [anon_sym_global] = ACTIONS(4210), @@ -469961,398 +470039,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_file] = ACTIONS(4210), [anon_sym_LT] = ACTIONS(4252), [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4252), [anon_sym_QMARK] = ACTIONS(4252), [anon_sym_notnull] = ACTIONS(4210), [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), [anon_sym_DOT] = ACTIONS(4252), [anon_sym_scoped] = ACTIONS(4210), [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4250), [anon_sym_yield] = ACTIONS(4210), [anon_sym_switch] = ACTIONS(4252), [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), + [sym_discard] = ACTIONS(4576), [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), [anon_sym_and] = ACTIONS(4252), [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), [anon_sym_AMP_AMP] = ACTIONS(4250), [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4252), [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4252), [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4252), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4252), + [anon_sym_orderby] = ACTIONS(4252), [anon_sym_ascending] = ACTIONS(4210), [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4252), [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4252), [anon_sym_as] = ACTIONS(4252), [anon_sym_is] = ACTIONS(4252), [anon_sym_DASH_GT] = ACTIONS(4250), [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2839] = { - [sym_preproc_region] = STATE(2839), - [sym_preproc_endregion] = STATE(2839), - [sym_preproc_line] = STATE(2839), - [sym_preproc_pragma] = STATE(2839), - [sym_preproc_nullable] = STATE(2839), - [sym_preproc_error] = STATE(2839), - [sym_preproc_warning] = STATE(2839), - [sym_preproc_define] = STATE(2839), - [sym_preproc_undef] = STATE(2839), - [sym__identifier_token] = ACTIONS(4347), - [anon_sym_alias] = ACTIONS(4347), - [anon_sym_global] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(4349), - [anon_sym_COLON] = ACTIONS(4349), - [anon_sym_COMMA] = ACTIONS(4349), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym_LBRACE] = ACTIONS(4349), - [anon_sym_file] = ACTIONS(4347), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_where] = ACTIONS(4347), - [anon_sym_QMARK] = ACTIONS(4347), - [anon_sym_notnull] = ACTIONS(4347), - [anon_sym_unmanaged] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_PLUS_PLUS] = ACTIONS(4349), - [anon_sym_DASH_DASH] = ACTIONS(4349), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4349), - [anon_sym_CARET] = ACTIONS(4349), - [anon_sym_PIPE] = ACTIONS(4347), - [anon_sym_AMP] = ACTIONS(4347), - [anon_sym_LT_LT] = ACTIONS(4349), - [anon_sym_GT_GT] = ACTIONS(4347), - [anon_sym_GT_GT_GT] = ACTIONS(4349), - [anon_sym_EQ_EQ] = ACTIONS(4349), - [anon_sym_BANG_EQ] = ACTIONS(4349), - [anon_sym_GT_EQ] = ACTIONS(4349), - [anon_sym_LT_EQ] = ACTIONS(4349), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_scoped] = ACTIONS(4347), - [anon_sym_var] = ACTIONS(4347), - [anon_sym_yield] = ACTIONS(4347), - [anon_sym_switch] = ACTIONS(4347), - [anon_sym_when] = ACTIONS(4347), - [sym_discard] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4349), - [anon_sym_and] = ACTIONS(4347), - [anon_sym_or] = ACTIONS(4347), - [anon_sym_AMP_AMP] = ACTIONS(4349), - [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [sym_op_coalescing] = ACTIONS(4349), - [anon_sym_from] = ACTIONS(4347), - [anon_sym_into] = ACTIONS(4347), - [anon_sym_join] = ACTIONS(4347), - [anon_sym_on] = ACTIONS(4347), - [anon_sym_equals] = ACTIONS(4347), - [anon_sym_let] = ACTIONS(4347), - [anon_sym_orderby] = ACTIONS(4347), - [anon_sym_ascending] = ACTIONS(4347), - [anon_sym_descending] = ACTIONS(4347), - [anon_sym_group] = ACTIONS(4347), - [anon_sym_by] = ACTIONS(4347), - [anon_sym_select] = ACTIONS(4347), - [anon_sym_as] = ACTIONS(4347), - [anon_sym_is] = ACTIONS(4347), - [anon_sym_DASH_GT] = ACTIONS(4349), - [anon_sym_with] = ACTIONS(4347), - [sym_grit_metavariable] = ACTIONS(4349), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4349), - }, - [2840] = { - [sym__variable_designation] = STATE(5041), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2840), - [sym_preproc_endregion] = STATE(2840), - [sym_preproc_line] = STATE(2840), - [sym_preproc_pragma] = STATE(2840), - [sym_preproc_nullable] = STATE(2840), - [sym_preproc_error] = STATE(2840), - [sym_preproc_warning] = STATE(2840), - [sym_preproc_define] = STATE(2840), - [sym_preproc_undef] = STATE(2840), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4308), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2841] = { - [sym__variable_designation] = STATE(5009), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), - [sym_preproc_region] = STATE(2841), - [sym_preproc_endregion] = STATE(2841), - [sym_preproc_line] = STATE(2841), - [sym_preproc_pragma] = STATE(2841), - [sym_preproc_nullable] = STATE(2841), - [sym_preproc_error] = STATE(2841), - [sym_preproc_warning] = STATE(2841), - [sym_preproc_define] = STATE(2841), - [sym_preproc_undef] = STATE(2841), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4304), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2842] = { - [sym_preproc_region] = STATE(2842), - [sym_preproc_endregion] = STATE(2842), - [sym_preproc_line] = STATE(2842), - [sym_preproc_pragma] = STATE(2842), - [sym_preproc_nullable] = STATE(2842), - [sym_preproc_error] = STATE(2842), - [sym_preproc_warning] = STATE(2842), - [sym_preproc_define] = STATE(2842), - [sym_preproc_undef] = STATE(2842), - [sym__identifier_token] = ACTIONS(3676), - [anon_sym_extern] = ACTIONS(3676), - [anon_sym_alias] = ACTIONS(3676), - [anon_sym_global] = ACTIONS(3676), - [anon_sym_using] = ACTIONS(3676), - [anon_sym_unsafe] = ACTIONS(3676), - [anon_sym_static] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_LPAREN] = ACTIONS(3678), - [anon_sym_event] = ACTIONS(3676), - [anon_sym_namespace] = ACTIONS(3676), - [anon_sym_class] = ACTIONS(3676), - [anon_sym_ref] = ACTIONS(3676), - [anon_sym_struct] = ACTIONS(3676), - [anon_sym_enum] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3678), - [anon_sym_interface] = ACTIONS(3676), - [anon_sym_delegate] = ACTIONS(3676), - [anon_sym_record] = ACTIONS(3676), - [anon_sym_public] = ACTIONS(3676), - [anon_sym_private] = ACTIONS(3676), - [anon_sym_readonly] = ACTIONS(3676), - [anon_sym_abstract] = ACTIONS(3676), - [anon_sym_async] = ACTIONS(3676), - [anon_sym_const] = ACTIONS(3676), - [anon_sym_file] = ACTIONS(3676), - [anon_sym_fixed] = ACTIONS(3676), - [anon_sym_internal] = ACTIONS(3676), - [anon_sym_new] = ACTIONS(3676), - [anon_sym_override] = ACTIONS(3676), - [anon_sym_partial] = ACTIONS(3676), - [anon_sym_protected] = ACTIONS(3676), - [anon_sym_required] = ACTIONS(3676), - [anon_sym_sealed] = ACTIONS(3676), - [anon_sym_virtual] = ACTIONS(3676), - [anon_sym_volatile] = ACTIONS(3676), - [anon_sym_where] = ACTIONS(3676), - [anon_sym_notnull] = ACTIONS(3676), - [anon_sym_unmanaged] = ACTIONS(3676), - [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_implicit] = ACTIONS(3676), - [anon_sym_explicit] = ACTIONS(3676), - [anon_sym_scoped] = ACTIONS(3676), - [anon_sym_var] = ACTIONS(3676), - [sym_predefined_type] = ACTIONS(3676), - [anon_sym_yield] = ACTIONS(3676), - [anon_sym_when] = ACTIONS(3676), - [anon_sym_from] = ACTIONS(3676), - [anon_sym_into] = ACTIONS(3676), - [anon_sym_join] = ACTIONS(3676), - [anon_sym_on] = ACTIONS(3676), - [anon_sym_equals] = ACTIONS(3676), - [anon_sym_let] = ACTIONS(3676), - [anon_sym_orderby] = ACTIONS(3676), - [anon_sym_ascending] = ACTIONS(3676), - [anon_sym_descending] = ACTIONS(3676), - [anon_sym_group] = ACTIONS(3676), - [anon_sym_by] = ACTIONS(3676), - [anon_sym_select] = ACTIONS(3676), - [sym_grit_metavariable] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token3] = ACTIONS(3678), - [aux_sym_preproc_else_token1] = ACTIONS(3678), - [aux_sym_preproc_elif_token1] = ACTIONS(3678), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470374,70 +470112,70 @@ 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), - [sym__identifier_token] = ACTIONS(3684), - [anon_sym_extern] = ACTIONS(3684), - [anon_sym_alias] = ACTIONS(3684), - [anon_sym_global] = ACTIONS(3684), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_unsafe] = ACTIONS(3684), - [anon_sym_static] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_event] = ACTIONS(3684), - [anon_sym_namespace] = ACTIONS(3684), - [anon_sym_class] = ACTIONS(3684), - [anon_sym_ref] = ACTIONS(3684), - [anon_sym_struct] = ACTIONS(3684), - [anon_sym_enum] = ACTIONS(3684), - [anon_sym_RBRACE] = ACTIONS(3686), - [anon_sym_interface] = ACTIONS(3684), - [anon_sym_delegate] = ACTIONS(3684), - [anon_sym_record] = ACTIONS(3684), - [anon_sym_public] = ACTIONS(3684), - [anon_sym_private] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_abstract] = ACTIONS(3684), - [anon_sym_async] = ACTIONS(3684), - [anon_sym_const] = ACTIONS(3684), - [anon_sym_file] = ACTIONS(3684), - [anon_sym_fixed] = ACTIONS(3684), - [anon_sym_internal] = ACTIONS(3684), - [anon_sym_new] = ACTIONS(3684), - [anon_sym_override] = ACTIONS(3684), - [anon_sym_partial] = ACTIONS(3684), - [anon_sym_protected] = ACTIONS(3684), - [anon_sym_required] = ACTIONS(3684), - [anon_sym_sealed] = ACTIONS(3684), - [anon_sym_virtual] = ACTIONS(3684), - [anon_sym_volatile] = ACTIONS(3684), - [anon_sym_where] = ACTIONS(3684), - [anon_sym_notnull] = ACTIONS(3684), - [anon_sym_unmanaged] = ACTIONS(3684), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_implicit] = ACTIONS(3684), - [anon_sym_explicit] = ACTIONS(3684), - [anon_sym_scoped] = ACTIONS(3684), - [anon_sym_var] = ACTIONS(3684), - [sym_predefined_type] = ACTIONS(3684), - [anon_sym_yield] = ACTIONS(3684), - [anon_sym_when] = ACTIONS(3684), - [anon_sym_from] = ACTIONS(3684), - [anon_sym_into] = ACTIONS(3684), - [anon_sym_join] = ACTIONS(3684), - [anon_sym_on] = ACTIONS(3684), - [anon_sym_equals] = ACTIONS(3684), - [anon_sym_let] = ACTIONS(3684), - [anon_sym_orderby] = ACTIONS(3684), - [anon_sym_ascending] = ACTIONS(3684), - [anon_sym_descending] = ACTIONS(3684), - [anon_sym_group] = ACTIONS(3684), - [anon_sym_by] = ACTIONS(3684), - [anon_sym_select] = ACTIONS(3684), - [sym_grit_metavariable] = ACTIONS(3686), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token3] = ACTIONS(3686), - [aux_sym_preproc_else_token1] = ACTIONS(3686), - [aux_sym_preproc_elif_token1] = ACTIONS(3686), + [sym__identifier_token] = ACTIONS(5040), + [anon_sym_extern] = ACTIONS(5040), + [anon_sym_alias] = ACTIONS(5040), + [anon_sym_global] = ACTIONS(5040), + [anon_sym_using] = ACTIONS(5040), + [anon_sym_unsafe] = ACTIONS(5040), + [anon_sym_static] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_LPAREN] = ACTIONS(5042), + [anon_sym_event] = ACTIONS(5040), + [anon_sym_namespace] = ACTIONS(5040), + [anon_sym_class] = ACTIONS(5040), + [anon_sym_ref] = ACTIONS(5040), + [anon_sym_struct] = ACTIONS(5040), + [anon_sym_enum] = ACTIONS(5040), + [anon_sym_RBRACE] = ACTIONS(5042), + [anon_sym_interface] = ACTIONS(5040), + [anon_sym_delegate] = ACTIONS(5040), + [anon_sym_record] = ACTIONS(5040), + [anon_sym_public] = ACTIONS(5040), + [anon_sym_private] = ACTIONS(5040), + [anon_sym_readonly] = ACTIONS(5040), + [anon_sym_abstract] = ACTIONS(5040), + [anon_sym_async] = ACTIONS(5040), + [anon_sym_const] = ACTIONS(5040), + [anon_sym_file] = ACTIONS(5040), + [anon_sym_fixed] = ACTIONS(5040), + [anon_sym_internal] = ACTIONS(5040), + [anon_sym_new] = ACTIONS(5040), + [anon_sym_override] = ACTIONS(5040), + [anon_sym_partial] = ACTIONS(5040), + [anon_sym_protected] = ACTIONS(5040), + [anon_sym_required] = ACTIONS(5040), + [anon_sym_sealed] = ACTIONS(5040), + [anon_sym_virtual] = ACTIONS(5040), + [anon_sym_volatile] = ACTIONS(5040), + [anon_sym_where] = ACTIONS(5040), + [anon_sym_notnull] = ACTIONS(5040), + [anon_sym_unmanaged] = ACTIONS(5040), + [anon_sym_implicit] = ACTIONS(5040), + [anon_sym_explicit] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5042), + [anon_sym_scoped] = ACTIONS(5040), + [anon_sym_var] = ACTIONS(5040), + [sym_predefined_type] = ACTIONS(5040), + [anon_sym_yield] = ACTIONS(5040), + [anon_sym_when] = ACTIONS(5040), + [anon_sym_from] = ACTIONS(5040), + [anon_sym_into] = ACTIONS(5040), + [anon_sym_join] = ACTIONS(5040), + [anon_sym_on] = ACTIONS(5040), + [anon_sym_equals] = ACTIONS(5040), + [anon_sym_let] = ACTIONS(5040), + [anon_sym_orderby] = ACTIONS(5040), + [anon_sym_ascending] = ACTIONS(5040), + [anon_sym_descending] = ACTIONS(5040), + [anon_sym_group] = ACTIONS(5040), + [anon_sym_by] = ACTIONS(5040), + [anon_sym_select] = ACTIONS(5040), + [sym_grit_metavariable] = ACTIONS(5042), + [aux_sym_preproc_if_token1] = 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), @@ -470450,10 +470188,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2844] = { - [sym__variable_designation] = STATE(4967), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2844), [sym_preproc_endregion] = STATE(2844), [sym_preproc_line] = STATE(2844), @@ -470463,66 +470197,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2844), [sym_preproc_define] = STATE(2844), [sym_preproc_undef] = STATE(2844), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4244), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(5044), + [anon_sym_extern] = ACTIONS(5044), + [anon_sym_alias] = ACTIONS(5044), + [anon_sym_global] = ACTIONS(5044), + [anon_sym_using] = ACTIONS(5044), + [anon_sym_unsafe] = ACTIONS(5044), + [anon_sym_static] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_event] = ACTIONS(5044), + [anon_sym_namespace] = ACTIONS(5044), + [anon_sym_class] = ACTIONS(5044), + [anon_sym_ref] = ACTIONS(5044), + [anon_sym_struct] = ACTIONS(5044), + [anon_sym_enum] = ACTIONS(5044), + [anon_sym_RBRACE] = ACTIONS(5046), + [anon_sym_interface] = ACTIONS(5044), + [anon_sym_delegate] = ACTIONS(5044), + [anon_sym_record] = ACTIONS(5044), + [anon_sym_public] = ACTIONS(5044), + [anon_sym_private] = ACTIONS(5044), + [anon_sym_readonly] = ACTIONS(5044), + [anon_sym_abstract] = ACTIONS(5044), + [anon_sym_async] = ACTIONS(5044), + [anon_sym_const] = ACTIONS(5044), + [anon_sym_file] = ACTIONS(5044), + [anon_sym_fixed] = ACTIONS(5044), + [anon_sym_internal] = ACTIONS(5044), + [anon_sym_new] = ACTIONS(5044), + [anon_sym_override] = ACTIONS(5044), + [anon_sym_partial] = ACTIONS(5044), + [anon_sym_protected] = ACTIONS(5044), + [anon_sym_required] = ACTIONS(5044), + [anon_sym_sealed] = ACTIONS(5044), + [anon_sym_virtual] = ACTIONS(5044), + [anon_sym_volatile] = ACTIONS(5044), + [anon_sym_where] = ACTIONS(5044), + [anon_sym_notnull] = ACTIONS(5044), + [anon_sym_unmanaged] = ACTIONS(5044), + [anon_sym_implicit] = ACTIONS(5044), + [anon_sym_explicit] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_scoped] = ACTIONS(5044), + [anon_sym_var] = ACTIONS(5044), + [sym_predefined_type] = ACTIONS(5044), + [anon_sym_yield] = ACTIONS(5044), + [anon_sym_when] = ACTIONS(5044), + [anon_sym_from] = ACTIONS(5044), + [anon_sym_into] = ACTIONS(5044), + [anon_sym_join] = ACTIONS(5044), + [anon_sym_on] = ACTIONS(5044), + [anon_sym_equals] = ACTIONS(5044), + [anon_sym_let] = ACTIONS(5044), + [anon_sym_orderby] = ACTIONS(5044), + [anon_sym_ascending] = ACTIONS(5044), + [anon_sym_descending] = ACTIONS(5044), + [anon_sym_group] = ACTIONS(5044), + [anon_sym_by] = ACTIONS(5044), + [anon_sym_select] = ACTIONS(5044), + [sym_grit_metavariable] = ACTIONS(5046), + [aux_sym_preproc_if_token1] = 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), @@ -470535,10 +470273,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2845] = { - [sym__variable_designation] = STATE(4935), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2845), [sym_preproc_endregion] = STATE(2845), [sym_preproc_line] = STATE(2845), @@ -470548,66 +470282,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2845), [sym_preproc_define] = STATE(2845), [sym_preproc_undef] = STATE(2845), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4252), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(5048), + [anon_sym_extern] = ACTIONS(5048), + [anon_sym_alias] = ACTIONS(5048), + [anon_sym_global] = ACTIONS(5048), + [anon_sym_using] = ACTIONS(5048), + [anon_sym_unsafe] = ACTIONS(5048), + [anon_sym_static] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_LPAREN] = ACTIONS(5050), + [anon_sym_event] = ACTIONS(5048), + [anon_sym_namespace] = ACTIONS(5048), + [anon_sym_class] = ACTIONS(5048), + [anon_sym_ref] = ACTIONS(5048), + [anon_sym_struct] = ACTIONS(5048), + [anon_sym_enum] = ACTIONS(5048), + [anon_sym_RBRACE] = ACTIONS(5050), + [anon_sym_interface] = ACTIONS(5048), + [anon_sym_delegate] = ACTIONS(5048), + [anon_sym_record] = ACTIONS(5048), + [anon_sym_public] = ACTIONS(5048), + [anon_sym_private] = ACTIONS(5048), + [anon_sym_readonly] = ACTIONS(5048), + [anon_sym_abstract] = ACTIONS(5048), + [anon_sym_async] = ACTIONS(5048), + [anon_sym_const] = ACTIONS(5048), + [anon_sym_file] = ACTIONS(5048), + [anon_sym_fixed] = ACTIONS(5048), + [anon_sym_internal] = ACTIONS(5048), + [anon_sym_new] = ACTIONS(5048), + [anon_sym_override] = ACTIONS(5048), + [anon_sym_partial] = ACTIONS(5048), + [anon_sym_protected] = ACTIONS(5048), + [anon_sym_required] = ACTIONS(5048), + [anon_sym_sealed] = ACTIONS(5048), + [anon_sym_virtual] = ACTIONS(5048), + [anon_sym_volatile] = ACTIONS(5048), + [anon_sym_where] = ACTIONS(5048), + [anon_sym_notnull] = ACTIONS(5048), + [anon_sym_unmanaged] = ACTIONS(5048), + [anon_sym_implicit] = ACTIONS(5048), + [anon_sym_explicit] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5050), + [anon_sym_scoped] = ACTIONS(5048), + [anon_sym_var] = ACTIONS(5048), + [sym_predefined_type] = ACTIONS(5048), + [anon_sym_yield] = ACTIONS(5048), + [anon_sym_when] = ACTIONS(5048), + [anon_sym_from] = ACTIONS(5048), + [anon_sym_into] = ACTIONS(5048), + [anon_sym_join] = ACTIONS(5048), + [anon_sym_on] = ACTIONS(5048), + [anon_sym_equals] = ACTIONS(5048), + [anon_sym_let] = ACTIONS(5048), + [anon_sym_orderby] = ACTIONS(5048), + [anon_sym_ascending] = ACTIONS(5048), + [anon_sym_descending] = ACTIONS(5048), + [anon_sym_group] = ACTIONS(5048), + [anon_sym_by] = ACTIONS(5048), + [anon_sym_select] = ACTIONS(5048), + [sym_grit_metavariable] = ACTIONS(5050), + [aux_sym_preproc_if_token1] = 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), @@ -470620,10 +470358,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2846] = { - [sym__variable_designation] = STATE(5041), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2846), [sym_preproc_endregion] = STATE(2846), [sym_preproc_line] = STATE(2846), @@ -470633,66 +470367,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2846), [sym_preproc_define] = STATE(2846), [sym_preproc_undef] = STATE(2846), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4308), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(5052), + [anon_sym_extern] = ACTIONS(5052), + [anon_sym_alias] = ACTIONS(5052), + [anon_sym_global] = ACTIONS(5052), + [anon_sym_using] = ACTIONS(5052), + [anon_sym_unsafe] = ACTIONS(5052), + [anon_sym_static] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_LPAREN] = ACTIONS(5054), + [anon_sym_event] = ACTIONS(5052), + [anon_sym_namespace] = ACTIONS(5052), + [anon_sym_class] = ACTIONS(5052), + [anon_sym_ref] = ACTIONS(5052), + [anon_sym_struct] = ACTIONS(5052), + [anon_sym_enum] = ACTIONS(5052), + [anon_sym_RBRACE] = ACTIONS(5054), + [anon_sym_interface] = ACTIONS(5052), + [anon_sym_delegate] = ACTIONS(5052), + [anon_sym_record] = ACTIONS(5052), + [anon_sym_public] = ACTIONS(5052), + [anon_sym_private] = ACTIONS(5052), + [anon_sym_readonly] = ACTIONS(5052), + [anon_sym_abstract] = ACTIONS(5052), + [anon_sym_async] = ACTIONS(5052), + [anon_sym_const] = ACTIONS(5052), + [anon_sym_file] = ACTIONS(5052), + [anon_sym_fixed] = ACTIONS(5052), + [anon_sym_internal] = ACTIONS(5052), + [anon_sym_new] = ACTIONS(5052), + [anon_sym_override] = ACTIONS(5052), + [anon_sym_partial] = ACTIONS(5052), + [anon_sym_protected] = ACTIONS(5052), + [anon_sym_required] = ACTIONS(5052), + [anon_sym_sealed] = ACTIONS(5052), + [anon_sym_virtual] = ACTIONS(5052), + [anon_sym_volatile] = ACTIONS(5052), + [anon_sym_where] = ACTIONS(5052), + [anon_sym_notnull] = ACTIONS(5052), + [anon_sym_unmanaged] = ACTIONS(5052), + [anon_sym_implicit] = ACTIONS(5052), + [anon_sym_explicit] = ACTIONS(5052), + [anon_sym_TILDE] = ACTIONS(5054), + [anon_sym_scoped] = ACTIONS(5052), + [anon_sym_var] = ACTIONS(5052), + [sym_predefined_type] = ACTIONS(5052), + [anon_sym_yield] = ACTIONS(5052), + [anon_sym_when] = ACTIONS(5052), + [anon_sym_from] = ACTIONS(5052), + [anon_sym_into] = ACTIONS(5052), + [anon_sym_join] = ACTIONS(5052), + [anon_sym_on] = ACTIONS(5052), + [anon_sym_equals] = ACTIONS(5052), + [anon_sym_let] = ACTIONS(5052), + [anon_sym_orderby] = ACTIONS(5052), + [anon_sym_ascending] = ACTIONS(5052), + [anon_sym_descending] = ACTIONS(5052), + [anon_sym_group] = ACTIONS(5052), + [anon_sym_by] = ACTIONS(5052), + [anon_sym_select] = ACTIONS(5052), + [sym_grit_metavariable] = ACTIONS(5054), + [aux_sym_preproc_if_token1] = 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), @@ -470714,69 +470452,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2847), [sym_preproc_define] = STATE(2847), [sym_preproc_undef] = STATE(2847), - [sym__identifier_token] = ACTIONS(4335), - [anon_sym_alias] = ACTIONS(4335), - [anon_sym_global] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_COLON] = ACTIONS(4337), - [anon_sym_COMMA] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_file] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4335), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_where] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_notnull] = ACTIONS(4335), - [anon_sym_unmanaged] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_PLUS_PLUS] = ACTIONS(4337), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4335), - [anon_sym_LT_LT] = ACTIONS(4337), - [anon_sym_GT_GT] = ACTIONS(4335), - [anon_sym_GT_GT_GT] = ACTIONS(4337), - [anon_sym_EQ_EQ] = ACTIONS(4337), - [anon_sym_BANG_EQ] = ACTIONS(4337), - [anon_sym_GT_EQ] = ACTIONS(4337), - [anon_sym_LT_EQ] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_scoped] = ACTIONS(4335), - [anon_sym_var] = ACTIONS(4335), - [anon_sym_yield] = ACTIONS(4335), - [anon_sym_switch] = ACTIONS(4335), - [anon_sym_when] = ACTIONS(4335), - [sym_discard] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(4337), - [anon_sym_and] = ACTIONS(4335), - [anon_sym_or] = ACTIONS(4335), - [anon_sym_AMP_AMP] = ACTIONS(4337), - [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [sym_op_coalescing] = ACTIONS(4337), - [anon_sym_from] = ACTIONS(4335), - [anon_sym_into] = ACTIONS(4335), - [anon_sym_join] = ACTIONS(4335), - [anon_sym_on] = ACTIONS(4335), - [anon_sym_equals] = ACTIONS(4335), - [anon_sym_let] = ACTIONS(4335), - [anon_sym_orderby] = ACTIONS(4335), - [anon_sym_ascending] = ACTIONS(4335), - [anon_sym_descending] = ACTIONS(4335), - [anon_sym_group] = ACTIONS(4335), - [anon_sym_by] = ACTIONS(4335), - [anon_sym_select] = ACTIONS(4335), - [anon_sym_as] = ACTIONS(4335), - [anon_sym_is] = ACTIONS(4335), - [anon_sym_DASH_GT] = ACTIONS(4337), - [anon_sym_with] = ACTIONS(4335), - [sym_grit_metavariable] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_in] = ACTIONS(3951), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_EQ_GT] = ACTIONS(3953), + [anon_sym_STAR] = ACTIONS(3951), + [anon_sym_switch] = ACTIONS(3953), + [anon_sym_when] = ACTIONS(3953), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3953), + [anon_sym_or] = ACTIONS(3953), + [anon_sym_PLUS_EQ] = ACTIONS(3953), + [anon_sym_DASH_EQ] = ACTIONS(3953), + [anon_sym_STAR_EQ] = ACTIONS(3953), + [anon_sym_SLASH_EQ] = ACTIONS(3953), + [anon_sym_PERCENT_EQ] = ACTIONS(3953), + [anon_sym_AMP_EQ] = ACTIONS(3953), + [anon_sym_CARET_EQ] = ACTIONS(3953), + [anon_sym_PIPE_EQ] = ACTIONS(3953), + [anon_sym_LT_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_GT_EQ] = ACTIONS(3953), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP] = ACTIONS(3951), + [sym_op_bitwise_or] = ACTIONS(3951), + [anon_sym_CARET] = ACTIONS(3951), + [sym_op_left_shift] = ACTIONS(3951), + [sym_op_right_shift] = ACTIONS(3951), + [sym_op_unsigned_right_shift] = ACTIONS(3951), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [sym_op_divide] = ACTIONS(3951), + [sym_op_modulo] = ACTIONS(3951), + [sym_op_coalescing] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_into] = ACTIONS(3953), + [anon_sym_on] = ACTIONS(3953), + [anon_sym_equals] = ACTIONS(3953), + [anon_sym_by] = ACTIONS(3953), + [anon_sym_as] = ACTIONS(3953), + [anon_sym_is] = ACTIONS(3953), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3953), + [aux_sym_preproc_if_token3] = ACTIONS(3953), + [aux_sym_preproc_else_token1] = ACTIONS(3953), + [aux_sym_preproc_elif_token1] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470787,13 +470526,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(4337), }, [2848] = { - [sym__variable_designation] = STATE(5009), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), + [sym__variable_designation] = STATE(4630), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2848), [sym_preproc_endregion] = STATE(2848), [sym_preproc_line] = STATE(2848), @@ -470803,66 +470541,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2848), [sym_preproc_define] = STATE(2848), [sym_preproc_undef] = STATE(2848), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), [anon_sym_LBRACK] = ACTIONS(4302), [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4210), + [anon_sym_file] = ACTIONS(4218), [anon_sym_LT] = ACTIONS(4304), [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4218), [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4218), [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4218), [sym_discard] = ACTIONS(4234), [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), [anon_sym_and] = ACTIONS(4304), [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), [anon_sym_AMP_AMP] = ACTIONS(4302), [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4304), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4304), + [anon_sym_select] = ACTIONS(4218), [anon_sym_as] = ACTIONS(4304), [anon_sym_is] = ACTIONS(4304), [anon_sym_DASH_GT] = ACTIONS(4302), [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4220), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470884,69 +470622,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2849), [sym_preproc_define] = STATE(2849), [sym_preproc_undef] = STATE(2849), - [sym__identifier_token] = ACTIONS(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [sym_discard] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_as] = ACTIONS(3698), - [anon_sym_is] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3698), - [sym_grit_metavariable] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_RBRACK] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [anon_sym_RBRACE] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [anon_sym_in] = ACTIONS(4548), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_EQ_GT] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_switch] = ACTIONS(4546), + [anon_sym_when] = ACTIONS(4546), + [anon_sym_DOT_DOT] = ACTIONS(4546), + [anon_sym_LT_EQ] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_or] = ACTIONS(4546), + [anon_sym_PLUS_EQ] = ACTIONS(4546), + [anon_sym_DASH_EQ] = ACTIONS(4546), + [anon_sym_STAR_EQ] = ACTIONS(4546), + [anon_sym_SLASH_EQ] = ACTIONS(4546), + [anon_sym_PERCENT_EQ] = ACTIONS(4546), + [anon_sym_AMP_EQ] = ACTIONS(4546), + [anon_sym_CARET_EQ] = ACTIONS(4546), + [anon_sym_PIPE_EQ] = ACTIONS(4546), + [anon_sym_LT_LT_EQ] = ACTIONS(4546), + [anon_sym_GT_GT_EQ] = ACTIONS(4546), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4546), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4546), + [anon_sym_BANG_EQ] = ACTIONS(4546), + [anon_sym_AMP_AMP] = ACTIONS(4546), + [anon_sym_PIPE_PIPE] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [sym_op_bitwise_or] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [sym_op_left_shift] = ACTIONS(4548), + [sym_op_right_shift] = ACTIONS(4548), + [sym_op_unsigned_right_shift] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [sym_op_divide] = ACTIONS(4548), + [sym_op_modulo] = ACTIONS(4548), + [sym_op_coalescing] = ACTIONS(4548), + [anon_sym_BANG] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4546), + [anon_sym_into] = ACTIONS(4546), + [anon_sym_on] = ACTIONS(4546), + [anon_sym_equals] = ACTIONS(4546), + [anon_sym_by] = ACTIONS(4546), + [anon_sym_as] = ACTIONS(4546), + [anon_sym_is] = ACTIONS(4546), + [anon_sym_DASH_GT] = ACTIONS(4546), + [anon_sym_with] = ACTIONS(4546), + [aux_sym_preproc_if_token3] = ACTIONS(4546), + [aux_sym_preproc_else_token1] = ACTIONS(4546), + [aux_sym_preproc_elif_token1] = ACTIONS(4546), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470957,7 +470696,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(3696), }, [2850] = { [sym_preproc_region] = STATE(2850), @@ -470969,69 +470707,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2850), [sym_preproc_define] = STATE(2850), [sym_preproc_undef] = STATE(2850), - [sym__identifier_token] = ACTIONS(3187), - [anon_sym_alias] = ACTIONS(3187), - [anon_sym_global] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_file] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_where] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_notnull] = ACTIONS(3187), - [anon_sym_unmanaged] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_scoped] = ACTIONS(3187), - [anon_sym_var] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_switch] = ACTIONS(3187), - [anon_sym_when] = ACTIONS(3187), - [sym_discard] = ACTIONS(3187), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = 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_as] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3187), - [sym_grit_metavariable] = ACTIONS(3189), + [sym__identifier_token] = ACTIONS(5056), + [anon_sym_extern] = ACTIONS(5056), + [anon_sym_alias] = ACTIONS(5056), + [anon_sym_global] = ACTIONS(5056), + [anon_sym_using] = ACTIONS(5056), + [anon_sym_unsafe] = ACTIONS(5056), + [anon_sym_static] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_LPAREN] = ACTIONS(5058), + [anon_sym_event] = ACTIONS(5056), + [anon_sym_namespace] = ACTIONS(5056), + [anon_sym_class] = ACTIONS(5056), + [anon_sym_ref] = ACTIONS(5056), + [anon_sym_struct] = ACTIONS(5056), + [anon_sym_enum] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5058), + [anon_sym_interface] = ACTIONS(5056), + [anon_sym_delegate] = ACTIONS(5056), + [anon_sym_record] = ACTIONS(5056), + [anon_sym_public] = ACTIONS(5056), + [anon_sym_private] = ACTIONS(5056), + [anon_sym_readonly] = ACTIONS(5056), + [anon_sym_abstract] = ACTIONS(5056), + [anon_sym_async] = ACTIONS(5056), + [anon_sym_const] = ACTIONS(5056), + [anon_sym_file] = ACTIONS(5056), + [anon_sym_fixed] = ACTIONS(5056), + [anon_sym_internal] = ACTIONS(5056), + [anon_sym_new] = ACTIONS(5056), + [anon_sym_override] = ACTIONS(5056), + [anon_sym_partial] = ACTIONS(5056), + [anon_sym_protected] = ACTIONS(5056), + [anon_sym_required] = ACTIONS(5056), + [anon_sym_sealed] = ACTIONS(5056), + [anon_sym_virtual] = ACTIONS(5056), + [anon_sym_volatile] = ACTIONS(5056), + [anon_sym_where] = ACTIONS(5056), + [anon_sym_notnull] = ACTIONS(5056), + [anon_sym_unmanaged] = ACTIONS(5056), + [anon_sym_implicit] = ACTIONS(5056), + [anon_sym_explicit] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5058), + [anon_sym_scoped] = ACTIONS(5056), + [anon_sym_var] = ACTIONS(5056), + [sym_predefined_type] = ACTIONS(5056), + [anon_sym_yield] = ACTIONS(5056), + [anon_sym_when] = ACTIONS(5056), + [anon_sym_from] = ACTIONS(5056), + [anon_sym_into] = ACTIONS(5056), + [anon_sym_join] = ACTIONS(5056), + [anon_sym_on] = ACTIONS(5056), + [anon_sym_equals] = ACTIONS(5056), + [anon_sym_let] = ACTIONS(5056), + [anon_sym_orderby] = ACTIONS(5056), + [anon_sym_ascending] = ACTIONS(5056), + [anon_sym_descending] = ACTIONS(5056), + [anon_sym_group] = ACTIONS(5056), + [anon_sym_by] = ACTIONS(5056), + [anon_sym_select] = ACTIONS(5056), + [sym_grit_metavariable] = ACTIONS(5058), + [aux_sym_preproc_if_token1] = 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), @@ -471042,7 +470781,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(3189), }, [2851] = { [sym_preproc_region] = STATE(2851), @@ -471054,70 +470792,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2851), [sym_preproc_define] = STATE(2851), [sym_preproc_undef] = STATE(2851), - [sym__identifier_token] = ACTIONS(3636), - [anon_sym_extern] = ACTIONS(3636), - [anon_sym_alias] = ACTIONS(3636), - [anon_sym_global] = ACTIONS(3636), - [anon_sym_using] = ACTIONS(3636), - [anon_sym_unsafe] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_event] = ACTIONS(3636), - [anon_sym_namespace] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_ref] = ACTIONS(3636), - [anon_sym_struct] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), - [anon_sym_RBRACE] = ACTIONS(3638), - [anon_sym_interface] = ACTIONS(3636), - [anon_sym_delegate] = ACTIONS(3636), - [anon_sym_record] = ACTIONS(3636), - [anon_sym_public] = ACTIONS(3636), - [anon_sym_private] = ACTIONS(3636), - [anon_sym_readonly] = ACTIONS(3636), - [anon_sym_abstract] = ACTIONS(3636), - [anon_sym_async] = ACTIONS(3636), - [anon_sym_const] = ACTIONS(3636), - [anon_sym_file] = ACTIONS(3636), - [anon_sym_fixed] = ACTIONS(3636), - [anon_sym_internal] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_override] = ACTIONS(3636), - [anon_sym_partial] = ACTIONS(3636), - [anon_sym_protected] = ACTIONS(3636), - [anon_sym_required] = ACTIONS(3636), - [anon_sym_sealed] = ACTIONS(3636), - [anon_sym_virtual] = ACTIONS(3636), - [anon_sym_volatile] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3636), - [anon_sym_notnull] = ACTIONS(3636), - [anon_sym_unmanaged] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_implicit] = ACTIONS(3636), - [anon_sym_explicit] = ACTIONS(3636), - [anon_sym_scoped] = ACTIONS(3636), - [anon_sym_var] = ACTIONS(3636), - [sym_predefined_type] = ACTIONS(3636), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3636), - [anon_sym_into] = ACTIONS(3636), - [anon_sym_join] = ACTIONS(3636), - [anon_sym_on] = ACTIONS(3636), - [anon_sym_equals] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_orderby] = ACTIONS(3636), - [anon_sym_ascending] = ACTIONS(3636), - [anon_sym_descending] = ACTIONS(3636), - [anon_sym_group] = ACTIONS(3636), - [anon_sym_by] = ACTIONS(3636), - [anon_sym_select] = ACTIONS(3636), - [sym_grit_metavariable] = ACTIONS(3638), - [aux_sym_preproc_if_token1] = ACTIONS(3638), - [aux_sym_preproc_if_token3] = ACTIONS(3638), - [aux_sym_preproc_else_token1] = ACTIONS(3638), - [aux_sym_preproc_elif_token1] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_COLON] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_RPAREN] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_QMARK] = ACTIONS(3970), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_EQ_GT] = ACTIONS(3972), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_switch] = ACTIONS(3972), + [anon_sym_when] = ACTIONS(3972), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_and] = ACTIONS(3972), + [anon_sym_or] = ACTIONS(3972), + [anon_sym_PLUS_EQ] = ACTIONS(3972), + [anon_sym_DASH_EQ] = ACTIONS(3972), + [anon_sym_STAR_EQ] = ACTIONS(3972), + [anon_sym_SLASH_EQ] = ACTIONS(3972), + [anon_sym_PERCENT_EQ] = ACTIONS(3972), + [anon_sym_AMP_EQ] = ACTIONS(3972), + [anon_sym_CARET_EQ] = ACTIONS(3972), + [anon_sym_PIPE_EQ] = ACTIONS(3972), + [anon_sym_LT_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_GT_EQ] = ACTIONS(3972), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3972), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [sym_op_bitwise_or] = ACTIONS(3970), + [anon_sym_CARET] = ACTIONS(3970), + [sym_op_left_shift] = ACTIONS(3970), + [sym_op_right_shift] = ACTIONS(3970), + [sym_op_unsigned_right_shift] = ACTIONS(3970), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [sym_op_divide] = ACTIONS(3970), + [sym_op_modulo] = ACTIONS(3970), + [sym_op_coalescing] = ACTIONS(3970), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_into] = ACTIONS(3972), + [anon_sym_on] = ACTIONS(3972), + [anon_sym_equals] = ACTIONS(3972), + [anon_sym_by] = ACTIONS(3972), + [anon_sym_as] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3972), + [anon_sym_DASH_GT] = ACTIONS(3972), + [anon_sym_with] = ACTIONS(3972), + [aux_sym_preproc_if_token3] = ACTIONS(3972), + [aux_sym_preproc_else_token1] = ACTIONS(3972), + [aux_sym_preproc_elif_token1] = ACTIONS(3972), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471130,10 +470868,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2852] = { - [sym__variable_designation] = STATE(5009), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), + [sym__variable_designation] = STATE(4532), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2852), [sym_preproc_endregion] = STATE(2852), [sym_preproc_line] = STATE(2852), @@ -471143,66 +470881,66 @@ 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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4210), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4218), [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4304), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4220), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4308), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471224,70 +470962,70 @@ 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(3953), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_when] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3953), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3951), - [anon_sym_into] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(5060), + [anon_sym_extern] = ACTIONS(5060), + [anon_sym_alias] = ACTIONS(5060), + [anon_sym_global] = ACTIONS(5060), + [anon_sym_using] = ACTIONS(5060), + [anon_sym_unsafe] = ACTIONS(5060), + [anon_sym_static] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5062), + [anon_sym_LPAREN] = ACTIONS(5062), + [anon_sym_event] = ACTIONS(5060), + [anon_sym_namespace] = ACTIONS(5060), + [anon_sym_class] = ACTIONS(5060), + [anon_sym_ref] = ACTIONS(5060), + [anon_sym_struct] = ACTIONS(5060), + [anon_sym_enum] = ACTIONS(5060), + [anon_sym_RBRACE] = ACTIONS(5062), + [anon_sym_interface] = ACTIONS(5060), + [anon_sym_delegate] = ACTIONS(5060), + [anon_sym_record] = ACTIONS(5060), + [anon_sym_public] = ACTIONS(5060), + [anon_sym_private] = ACTIONS(5060), + [anon_sym_readonly] = ACTIONS(5060), + [anon_sym_abstract] = ACTIONS(5060), + [anon_sym_async] = ACTIONS(5060), + [anon_sym_const] = ACTIONS(5060), + [anon_sym_file] = ACTIONS(5060), + [anon_sym_fixed] = ACTIONS(5060), + [anon_sym_internal] = ACTIONS(5060), + [anon_sym_new] = ACTIONS(5060), + [anon_sym_override] = ACTIONS(5060), + [anon_sym_partial] = ACTIONS(5060), + [anon_sym_protected] = ACTIONS(5060), + [anon_sym_required] = ACTIONS(5060), + [anon_sym_sealed] = ACTIONS(5060), + [anon_sym_virtual] = ACTIONS(5060), + [anon_sym_volatile] = ACTIONS(5060), + [anon_sym_where] = ACTIONS(5060), + [anon_sym_notnull] = ACTIONS(5060), + [anon_sym_unmanaged] = ACTIONS(5060), + [anon_sym_implicit] = ACTIONS(5060), + [anon_sym_explicit] = ACTIONS(5060), + [anon_sym_TILDE] = ACTIONS(5062), + [anon_sym_scoped] = ACTIONS(5060), + [anon_sym_var] = ACTIONS(5060), + [sym_predefined_type] = ACTIONS(5060), + [anon_sym_yield] = ACTIONS(5060), + [anon_sym_when] = ACTIONS(5060), + [anon_sym_from] = ACTIONS(5060), + [anon_sym_into] = ACTIONS(5060), + [anon_sym_join] = ACTIONS(5060), + [anon_sym_on] = ACTIONS(5060), + [anon_sym_equals] = ACTIONS(5060), + [anon_sym_let] = ACTIONS(5060), + [anon_sym_orderby] = ACTIONS(5060), + [anon_sym_ascending] = ACTIONS(5060), + [anon_sym_descending] = ACTIONS(5060), + [anon_sym_group] = ACTIONS(5060), + [anon_sym_by] = ACTIONS(5060), + [anon_sym_select] = ACTIONS(5060), + [sym_grit_metavariable] = ACTIONS(5062), + [aux_sym_preproc_if_token1] = ACTIONS(5062), + [aux_sym_preproc_if_token3] = ACTIONS(5062), + [aux_sym_preproc_else_token1] = ACTIONS(5062), + [aux_sym_preproc_elif_token1] = ACTIONS(5062), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471300,6 +471038,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2854] = { + [sym__variable_designation] = STATE(4215), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2854), [sym_preproc_endregion] = STATE(2854), [sym_preproc_line] = STATE(2854), @@ -471309,70 +471051,66 @@ 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(3957), - [anon_sym_EQ] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_RBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_RBRACE] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3955), - [anon_sym_GT] = ACTIONS(3955), - [anon_sym_in] = ACTIONS(3955), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3955), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_CARET] = ACTIONS(3955), - [anon_sym_PIPE] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_LT_LT] = ACTIONS(3955), - [anon_sym_GT_GT] = ACTIONS(3955), - [anon_sym_GT_GT_GT] = ACTIONS(3955), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_EQ_GT] = ACTIONS(3957), - [anon_sym_switch] = ACTIONS(3957), - [anon_sym_when] = ACTIONS(3957), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3957), - [anon_sym_or] = ACTIONS(3957), - [anon_sym_PLUS_EQ] = ACTIONS(3957), - [anon_sym_DASH_EQ] = ACTIONS(3957), - [anon_sym_STAR_EQ] = ACTIONS(3957), - [anon_sym_SLASH_EQ] = ACTIONS(3957), - [anon_sym_PERCENT_EQ] = ACTIONS(3957), - [anon_sym_AMP_EQ] = ACTIONS(3957), - [anon_sym_CARET_EQ] = ACTIONS(3957), - [anon_sym_PIPE_EQ] = ACTIONS(3957), - [anon_sym_LT_LT_EQ] = ACTIONS(3957), - [anon_sym_GT_GT_EQ] = ACTIONS(3957), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [sym_op_coalescing] = ACTIONS(3955), - [anon_sym_into] = ACTIONS(3957), - [anon_sym_on] = ACTIONS(3957), - [anon_sym_equals] = ACTIONS(3957), - [anon_sym_by] = ACTIONS(3957), - [anon_sym_as] = ACTIONS(3957), - [anon_sym_is] = ACTIONS(3957), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3957), - [aux_sym_preproc_if_token3] = ACTIONS(3957), - [aux_sym_preproc_else_token1] = ACTIONS(3957), - [aux_sym_preproc_elif_token1] = ACTIONS(3957), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4304), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4304), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471385,6 +471123,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2855] = { + [sym__variable_designation] = STATE(4529), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2855), [sym_preproc_endregion] = STATE(2855), [sym_preproc_line] = STATE(2855), @@ -471394,70 +471136,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(4534), - [anon_sym_EQ] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4534), - [anon_sym_COLON] = ACTIONS(4534), - [anon_sym_COMMA] = ACTIONS(4534), - [anon_sym_RBRACK] = ACTIONS(4534), - [anon_sym_LPAREN] = ACTIONS(4534), - [anon_sym_RPAREN] = ACTIONS(4534), - [anon_sym_RBRACE] = ACTIONS(4534), - [anon_sym_LT] = ACTIONS(4536), - [anon_sym_GT] = ACTIONS(4536), - [anon_sym_in] = ACTIONS(4536), - [anon_sym_QMARK] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4534), - [anon_sym_DASH_DASH] = ACTIONS(4534), - [anon_sym_PLUS] = ACTIONS(4536), - [anon_sym_DASH] = ACTIONS(4536), - [anon_sym_STAR] = ACTIONS(4536), - [anon_sym_SLASH] = ACTIONS(4536), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_CARET] = ACTIONS(4536), - [anon_sym_PIPE] = ACTIONS(4536), - [anon_sym_AMP] = ACTIONS(4536), - [anon_sym_LT_LT] = ACTIONS(4536), - [anon_sym_GT_GT] = ACTIONS(4536), - [anon_sym_GT_GT_GT] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_GT_EQ] = ACTIONS(4534), - [anon_sym_LT_EQ] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4536), - [anon_sym_EQ_GT] = ACTIONS(4534), - [anon_sym_switch] = ACTIONS(4534), - [anon_sym_when] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4534), - [anon_sym_and] = ACTIONS(4534), - [anon_sym_or] = ACTIONS(4534), - [anon_sym_PLUS_EQ] = ACTIONS(4534), - [anon_sym_DASH_EQ] = ACTIONS(4534), - [anon_sym_STAR_EQ] = ACTIONS(4534), - [anon_sym_SLASH_EQ] = ACTIONS(4534), - [anon_sym_PERCENT_EQ] = ACTIONS(4534), - [anon_sym_AMP_EQ] = ACTIONS(4534), - [anon_sym_CARET_EQ] = ACTIONS(4534), - [anon_sym_PIPE_EQ] = ACTIONS(4534), - [anon_sym_LT_LT_EQ] = ACTIONS(4534), - [anon_sym_GT_GT_EQ] = ACTIONS(4534), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4534), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4534), - [anon_sym_AMP_AMP] = ACTIONS(4534), - [anon_sym_PIPE_PIPE] = ACTIONS(4534), - [sym_op_coalescing] = ACTIONS(4536), - [anon_sym_into] = ACTIONS(4534), - [anon_sym_on] = ACTIONS(4534), - [anon_sym_equals] = ACTIONS(4534), - [anon_sym_by] = ACTIONS(4534), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_DASH_GT] = ACTIONS(4534), - [anon_sym_with] = ACTIONS(4534), - [aux_sym_preproc_if_token3] = ACTIONS(4534), - [aux_sym_preproc_else_token1] = ACTIONS(4534), - [aux_sym_preproc_elif_token1] = ACTIONS(4534), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4256), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471470,10 +471208,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2856] = { - [sym__variable_designation] = STATE(5041), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2856), [sym_preproc_endregion] = STATE(2856), [sym_preproc_line] = STATE(2856), @@ -471483,66 +471217,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2856), [sym_preproc_define] = STATE(2856), [sym_preproc_undef] = STATE(2856), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4308), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4464), + [anon_sym_alias] = ACTIONS(4464), + [anon_sym_global] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_COLON] = ACTIONS(4466), + [anon_sym_COMMA] = ACTIONS(4466), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_file] = ACTIONS(4464), + [anon_sym_LT] = ACTIONS(4464), + [anon_sym_GT] = ACTIONS(4464), + [anon_sym_where] = ACTIONS(4464), + [anon_sym_QMARK] = ACTIONS(4464), + [anon_sym_notnull] = ACTIONS(4464), + [anon_sym_unmanaged] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4464), + [anon_sym_scoped] = ACTIONS(4464), + [anon_sym_var] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4466), + [anon_sym_yield] = ACTIONS(4464), + [anon_sym_switch] = ACTIONS(4464), + [anon_sym_when] = ACTIONS(4464), + [sym_discard] = ACTIONS(4464), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4466), + [anon_sym_and] = ACTIONS(4464), + [anon_sym_or] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4464), + [sym_op_bitwise_or] = ACTIONS(4464), + [anon_sym_CARET] = ACTIONS(4466), + [sym_op_left_shift] = ACTIONS(4466), + [sym_op_right_shift] = ACTIONS(4464), + [sym_op_unsigned_right_shift] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4464), + [sym_op_divide] = ACTIONS(4464), + [sym_op_modulo] = ACTIONS(4466), + [sym_op_coalescing] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4466), + [anon_sym_DASH_DASH] = ACTIONS(4466), + [anon_sym_from] = ACTIONS(4464), + [anon_sym_into] = ACTIONS(4464), + [anon_sym_join] = ACTIONS(4464), + [anon_sym_on] = ACTIONS(4464), + [anon_sym_equals] = ACTIONS(4464), + [anon_sym_let] = ACTIONS(4464), + [anon_sym_orderby] = ACTIONS(4464), + [anon_sym_ascending] = ACTIONS(4464), + [anon_sym_descending] = ACTIONS(4464), + [anon_sym_group] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(4464), + [anon_sym_select] = ACTIONS(4464), + [anon_sym_as] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4464), + [anon_sym_DASH_GT] = ACTIONS(4466), + [anon_sym_with] = ACTIONS(4464), + [sym_grit_metavariable] = ACTIONS(4466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471553,12 +471290,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(4466), }, [2857] = { - [sym__variable_designation] = STATE(4857), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2857), [sym_preproc_endregion] = STATE(2857), [sym_preproc_line] = STATE(2857), @@ -471568,66 +471302,69 @@ 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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4244), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4244), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4347), + [anon_sym_alias] = ACTIONS(4347), + [anon_sym_global] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_COLON] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_file] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_QMARK] = ACTIONS(4347), + [anon_sym_notnull] = ACTIONS(4347), + [anon_sym_unmanaged] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_scoped] = ACTIONS(4347), + [anon_sym_var] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_yield] = ACTIONS(4347), + [anon_sym_switch] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [sym_discard] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_and] = ACTIONS(4347), + [anon_sym_or] = ACTIONS(4347), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(4347), + [sym_op_bitwise_or] = ACTIONS(4347), + [anon_sym_CARET] = ACTIONS(4349), + [sym_op_left_shift] = ACTIONS(4349), + [sym_op_right_shift] = ACTIONS(4347), + [sym_op_unsigned_right_shift] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [sym_op_divide] = ACTIONS(4347), + [sym_op_modulo] = ACTIONS(4349), + [sym_op_coalescing] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_from] = ACTIONS(4347), + [anon_sym_into] = ACTIONS(4347), + [anon_sym_join] = ACTIONS(4347), + [anon_sym_on] = ACTIONS(4347), + [anon_sym_equals] = ACTIONS(4347), + [anon_sym_let] = ACTIONS(4347), + [anon_sym_orderby] = ACTIONS(4347), + [anon_sym_ascending] = ACTIONS(4347), + [anon_sym_descending] = ACTIONS(4347), + [anon_sym_group] = ACTIONS(4347), + [anon_sym_by] = ACTIONS(4347), + [anon_sym_select] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_DASH_GT] = ACTIONS(4349), + [anon_sym_with] = ACTIONS(4347), + [sym_grit_metavariable] = ACTIONS(4349), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471638,6 +471375,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(4349), }, [2858] = { [sym_preproc_region] = STATE(2858), @@ -471649,80 +471387,80 @@ 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(3972), - [anon_sym_EQ] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_COLON] = ACTIONS(3972), - [anon_sym_COMMA] = ACTIONS(3972), - [anon_sym_RBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3972), - [anon_sym_RPAREN] = ACTIONS(3972), - [anon_sym_RBRACE] = ACTIONS(3972), - [anon_sym_LT] = ACTIONS(3970), - [anon_sym_GT] = ACTIONS(3970), - [anon_sym_in] = ACTIONS(3970), - [anon_sym_QMARK] = ACTIONS(3970), - [anon_sym_BANG] = ACTIONS(3970), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3970), - [anon_sym_SLASH] = ACTIONS(3970), - [anon_sym_PERCENT] = ACTIONS(3970), - [anon_sym_CARET] = ACTIONS(3970), - [anon_sym_PIPE] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_LT_LT] = ACTIONS(3970), - [anon_sym_GT_GT] = ACTIONS(3970), - [anon_sym_GT_GT_GT] = ACTIONS(3970), - [anon_sym_EQ_EQ] = ACTIONS(3972), - [anon_sym_BANG_EQ] = ACTIONS(3972), - [anon_sym_GT_EQ] = ACTIONS(3972), - [anon_sym_LT_EQ] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(3970), - [anon_sym_EQ_GT] = ACTIONS(3972), - [anon_sym_switch] = ACTIONS(3972), - [anon_sym_when] = ACTIONS(3972), - [anon_sym_DOT_DOT] = ACTIONS(3972), - [anon_sym_and] = ACTIONS(3972), - [anon_sym_or] = ACTIONS(3972), - [anon_sym_PLUS_EQ] = ACTIONS(3972), - [anon_sym_DASH_EQ] = ACTIONS(3972), - [anon_sym_STAR_EQ] = ACTIONS(3972), - [anon_sym_SLASH_EQ] = ACTIONS(3972), - [anon_sym_PERCENT_EQ] = ACTIONS(3972), - [anon_sym_AMP_EQ] = ACTIONS(3972), - [anon_sym_CARET_EQ] = ACTIONS(3972), - [anon_sym_PIPE_EQ] = ACTIONS(3972), - [anon_sym_LT_LT_EQ] = ACTIONS(3972), - [anon_sym_GT_GT_EQ] = ACTIONS(3972), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3972), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_PIPE_PIPE] = ACTIONS(3972), - [sym_op_coalescing] = ACTIONS(3970), - [anon_sym_into] = ACTIONS(3972), - [anon_sym_on] = ACTIONS(3972), - [anon_sym_equals] = ACTIONS(3972), - [anon_sym_by] = ACTIONS(3972), - [anon_sym_as] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3972), - [anon_sym_DASH_GT] = ACTIONS(3972), - [anon_sym_with] = ACTIONS(3972), - [aux_sym_preproc_if_token3] = ACTIONS(3972), - [aux_sym_preproc_else_token1] = ACTIONS(3972), - [aux_sym_preproc_elif_token1] = ACTIONS(3972), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4456), + [anon_sym_alias] = ACTIONS(4456), + [anon_sym_global] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4458), + [anon_sym_COLON] = ACTIONS(4458), + [anon_sym_COMMA] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4458), + [anon_sym_file] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4456), + [anon_sym_where] = ACTIONS(4456), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_notnull] = ACTIONS(4456), + [anon_sym_unmanaged] = ACTIONS(4456), + [anon_sym_DOT] = ACTIONS(4456), + [anon_sym_scoped] = ACTIONS(4456), + [anon_sym_var] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_yield] = ACTIONS(4456), + [anon_sym_switch] = ACTIONS(4456), + [anon_sym_when] = ACTIONS(4456), + [sym_discard] = ACTIONS(4456), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4456), + [anon_sym_or] = ACTIONS(4456), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_AMP_AMP] = ACTIONS(4458), + [anon_sym_PIPE_PIPE] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [sym_op_bitwise_or] = ACTIONS(4456), + [anon_sym_CARET] = ACTIONS(4458), + [sym_op_left_shift] = ACTIONS(4458), + [sym_op_right_shift] = ACTIONS(4456), + [sym_op_unsigned_right_shift] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [sym_op_divide] = ACTIONS(4456), + [sym_op_modulo] = ACTIONS(4458), + [sym_op_coalescing] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4456), + [anon_sym_PLUS_PLUS] = ACTIONS(4458), + [anon_sym_DASH_DASH] = ACTIONS(4458), + [anon_sym_from] = ACTIONS(4456), + [anon_sym_into] = ACTIONS(4456), + [anon_sym_join] = ACTIONS(4456), + [anon_sym_on] = ACTIONS(4456), + [anon_sym_equals] = ACTIONS(4456), + [anon_sym_let] = ACTIONS(4456), + [anon_sym_orderby] = ACTIONS(4456), + [anon_sym_ascending] = ACTIONS(4456), + [anon_sym_descending] = ACTIONS(4456), + [anon_sym_group] = ACTIONS(4456), + [anon_sym_by] = ACTIONS(4456), + [anon_sym_select] = ACTIONS(4456), + [anon_sym_as] = ACTIONS(4456), + [anon_sym_is] = ACTIONS(4456), + [anon_sym_DASH_GT] = ACTIONS(4458), + [anon_sym_with] = ACTIONS(4456), + [sym_grit_metavariable] = ACTIONS(4458), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4458), }, [2859] = { [sym_preproc_region] = STATE(2859), @@ -471734,70 +471472,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2859), [sym_preproc_define] = STATE(2859), [sym_preproc_undef] = STATE(2859), - [sym__identifier_token] = ACTIONS(3608), - [anon_sym_extern] = ACTIONS(3608), - [anon_sym_alias] = ACTIONS(3608), - [anon_sym_global] = ACTIONS(3608), - [anon_sym_using] = ACTIONS(3608), - [anon_sym_unsafe] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_event] = ACTIONS(3608), - [anon_sym_namespace] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_ref] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), - [anon_sym_RBRACE] = ACTIONS(3610), - [anon_sym_interface] = ACTIONS(3608), - [anon_sym_delegate] = ACTIONS(3608), - [anon_sym_record] = ACTIONS(3608), - [anon_sym_public] = ACTIONS(3608), - [anon_sym_private] = ACTIONS(3608), - [anon_sym_readonly] = ACTIONS(3608), - [anon_sym_abstract] = ACTIONS(3608), - [anon_sym_async] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_file] = ACTIONS(3608), - [anon_sym_fixed] = ACTIONS(3608), - [anon_sym_internal] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3608), - [anon_sym_override] = ACTIONS(3608), - [anon_sym_partial] = ACTIONS(3608), - [anon_sym_protected] = ACTIONS(3608), - [anon_sym_required] = ACTIONS(3608), - [anon_sym_sealed] = ACTIONS(3608), - [anon_sym_virtual] = ACTIONS(3608), - [anon_sym_volatile] = ACTIONS(3608), - [anon_sym_where] = ACTIONS(3608), - [anon_sym_notnull] = ACTIONS(3608), - [anon_sym_unmanaged] = ACTIONS(3608), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_implicit] = ACTIONS(3608), - [anon_sym_explicit] = ACTIONS(3608), - [anon_sym_scoped] = ACTIONS(3608), - [anon_sym_var] = ACTIONS(3608), - [sym_predefined_type] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3608), - [anon_sym_when] = 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_ascending] = ACTIONS(3608), - [anon_sym_descending] = ACTIONS(3608), - [anon_sym_group] = ACTIONS(3608), - [anon_sym_by] = ACTIONS(3608), - [anon_sym_select] = ACTIONS(3608), - [sym_grit_metavariable] = ACTIONS(3610), - [aux_sym_preproc_if_token1] = ACTIONS(3610), - [aux_sym_preproc_if_token3] = ACTIONS(3610), - [aux_sym_preproc_else_token1] = ACTIONS(3610), - [aux_sym_preproc_elif_token1] = ACTIONS(3610), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_RBRACK] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [anon_sym_RBRACE] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4556), + [anon_sym_in] = ACTIONS(4556), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_EQ_GT] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4556), + [anon_sym_switch] = ACTIONS(4554), + [anon_sym_when] = ACTIONS(4554), + [anon_sym_DOT_DOT] = ACTIONS(4554), + [anon_sym_LT_EQ] = ACTIONS(4554), + [anon_sym_GT_EQ] = ACTIONS(4554), + [anon_sym_and] = ACTIONS(4554), + [anon_sym_or] = ACTIONS(4554), + [anon_sym_PLUS_EQ] = ACTIONS(4554), + [anon_sym_DASH_EQ] = ACTIONS(4554), + [anon_sym_STAR_EQ] = ACTIONS(4554), + [anon_sym_SLASH_EQ] = ACTIONS(4554), + [anon_sym_PERCENT_EQ] = ACTIONS(4554), + [anon_sym_AMP_EQ] = ACTIONS(4554), + [anon_sym_CARET_EQ] = ACTIONS(4554), + [anon_sym_PIPE_EQ] = ACTIONS(4554), + [anon_sym_LT_LT_EQ] = ACTIONS(4554), + [anon_sym_GT_GT_EQ] = ACTIONS(4554), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4554), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4554), + [anon_sym_EQ_EQ] = ACTIONS(4554), + [anon_sym_BANG_EQ] = ACTIONS(4554), + [anon_sym_AMP_AMP] = ACTIONS(4554), + [anon_sym_PIPE_PIPE] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [sym_op_bitwise_or] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [sym_op_left_shift] = ACTIONS(4556), + [sym_op_right_shift] = ACTIONS(4556), + [sym_op_unsigned_right_shift] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4556), + [anon_sym_DASH] = ACTIONS(4556), + [sym_op_divide] = ACTIONS(4556), + [sym_op_modulo] = ACTIONS(4556), + [sym_op_coalescing] = ACTIONS(4556), + [anon_sym_BANG] = ACTIONS(4556), + [anon_sym_PLUS_PLUS] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4554), + [anon_sym_into] = ACTIONS(4554), + [anon_sym_on] = ACTIONS(4554), + [anon_sym_equals] = ACTIONS(4554), + [anon_sym_by] = ACTIONS(4554), + [anon_sym_as] = ACTIONS(4554), + [anon_sym_is] = ACTIONS(4554), + [anon_sym_DASH_GT] = ACTIONS(4554), + [anon_sym_with] = ACTIONS(4554), + [aux_sym_preproc_if_token3] = ACTIONS(4554), + [aux_sym_preproc_else_token1] = ACTIONS(4554), + [aux_sym_preproc_elif_token1] = ACTIONS(4554), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471810,10 +471548,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2860] = { - [sym__variable_designation] = STATE(4935), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), + [sym__variable_designation] = STATE(4136), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2860), [sym_preproc_endregion] = STATE(2860), [sym_preproc_line] = STATE(2860), @@ -471823,66 +471561,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2860), [sym_preproc_define] = STATE(2860), [sym_preproc_undef] = STATE(2860), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4252), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4308), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4308), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471895,10 +471633,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2861] = { - [sym__variable_designation] = STATE(4886), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), + [sym__variable_designation] = STATE(4143), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2861), [sym_preproc_endregion] = STATE(2861), [sym_preproc_line] = STATE(2861), @@ -471908,66 +471646,66 @@ 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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4252), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4252), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4256), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471989,70 +471727,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2862), [sym_preproc_define] = STATE(2862), [sym_preproc_undef] = STATE(2862), - [sym__identifier_token] = ACTIONS(4934), - [anon_sym_extern] = ACTIONS(4934), - [anon_sym_alias] = ACTIONS(4934), - [anon_sym_global] = ACTIONS(4934), - [anon_sym_using] = ACTIONS(4934), - [anon_sym_unsafe] = ACTIONS(4934), - [anon_sym_static] = ACTIONS(4934), - [anon_sym_LBRACK] = ACTIONS(4936), - [anon_sym_LPAREN] = ACTIONS(4936), - [anon_sym_event] = ACTIONS(4934), - [anon_sym_namespace] = ACTIONS(4934), - [anon_sym_class] = ACTIONS(4934), - [anon_sym_ref] = ACTIONS(4934), - [anon_sym_struct] = ACTIONS(4934), - [anon_sym_enum] = ACTIONS(4934), - [anon_sym_RBRACE] = ACTIONS(4936), - [anon_sym_interface] = ACTIONS(4934), - [anon_sym_delegate] = ACTIONS(4934), - [anon_sym_record] = ACTIONS(4934), - [anon_sym_public] = ACTIONS(4934), - [anon_sym_private] = ACTIONS(4934), - [anon_sym_readonly] = ACTIONS(4934), - [anon_sym_abstract] = ACTIONS(4934), - [anon_sym_async] = ACTIONS(4934), - [anon_sym_const] = ACTIONS(4934), - [anon_sym_file] = ACTIONS(4934), - [anon_sym_fixed] = ACTIONS(4934), - [anon_sym_internal] = ACTIONS(4934), - [anon_sym_new] = ACTIONS(4934), - [anon_sym_override] = ACTIONS(4934), - [anon_sym_partial] = ACTIONS(4934), - [anon_sym_protected] = ACTIONS(4934), - [anon_sym_required] = ACTIONS(4934), - [anon_sym_sealed] = ACTIONS(4934), - [anon_sym_virtual] = ACTIONS(4934), - [anon_sym_volatile] = ACTIONS(4934), - [anon_sym_where] = ACTIONS(4934), - [anon_sym_notnull] = ACTIONS(4934), - [anon_sym_unmanaged] = ACTIONS(4934), - [anon_sym_TILDE] = ACTIONS(4936), - [anon_sym_implicit] = ACTIONS(4934), - [anon_sym_explicit] = ACTIONS(4934), - [anon_sym_scoped] = ACTIONS(4934), - [anon_sym_var] = ACTIONS(4934), - [sym_predefined_type] = ACTIONS(4934), - [anon_sym_yield] = ACTIONS(4934), - [anon_sym_when] = ACTIONS(4934), - [anon_sym_from] = ACTIONS(4934), - [anon_sym_into] = ACTIONS(4934), - [anon_sym_join] = ACTIONS(4934), - [anon_sym_on] = ACTIONS(4934), - [anon_sym_equals] = ACTIONS(4934), - [anon_sym_let] = ACTIONS(4934), - [anon_sym_orderby] = ACTIONS(4934), - [anon_sym_ascending] = ACTIONS(4934), - [anon_sym_descending] = ACTIONS(4934), - [anon_sym_group] = ACTIONS(4934), - [anon_sym_by] = ACTIONS(4934), - [anon_sym_select] = ACTIONS(4934), - [sym_grit_metavariable] = ACTIONS(4936), - [aux_sym_preproc_if_token1] = ACTIONS(4936), - [aux_sym_preproc_if_token3] = ACTIONS(4936), - [aux_sym_preproc_else_token1] = ACTIONS(4936), - [aux_sym_preproc_elif_token1] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_RBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [anon_sym_RBRACE] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4552), + [anon_sym_in] = ACTIONS(4552), + [anon_sym_QMARK] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_EQ_GT] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4552), + [anon_sym_switch] = ACTIONS(4550), + [anon_sym_when] = ACTIONS(4550), + [anon_sym_DOT_DOT] = ACTIONS(4550), + [anon_sym_LT_EQ] = ACTIONS(4550), + [anon_sym_GT_EQ] = ACTIONS(4550), + [anon_sym_and] = ACTIONS(4550), + [anon_sym_or] = ACTIONS(4550), + [anon_sym_PLUS_EQ] = ACTIONS(4550), + [anon_sym_DASH_EQ] = ACTIONS(4550), + [anon_sym_STAR_EQ] = ACTIONS(4550), + [anon_sym_SLASH_EQ] = ACTIONS(4550), + [anon_sym_PERCENT_EQ] = ACTIONS(4550), + [anon_sym_AMP_EQ] = ACTIONS(4550), + [anon_sym_CARET_EQ] = ACTIONS(4550), + [anon_sym_PIPE_EQ] = ACTIONS(4550), + [anon_sym_LT_LT_EQ] = ACTIONS(4550), + [anon_sym_GT_GT_EQ] = ACTIONS(4550), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4550), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4550), + [anon_sym_EQ_EQ] = ACTIONS(4550), + [anon_sym_BANG_EQ] = ACTIONS(4550), + [anon_sym_AMP_AMP] = ACTIONS(4550), + [anon_sym_PIPE_PIPE] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [sym_op_bitwise_or] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [sym_op_left_shift] = ACTIONS(4552), + [sym_op_right_shift] = ACTIONS(4552), + [sym_op_unsigned_right_shift] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4552), + [sym_op_divide] = ACTIONS(4552), + [sym_op_modulo] = ACTIONS(4552), + [sym_op_coalescing] = ACTIONS(4552), + [anon_sym_BANG] = ACTIONS(4552), + [anon_sym_PLUS_PLUS] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4550), + [anon_sym_into] = ACTIONS(4550), + [anon_sym_on] = ACTIONS(4550), + [anon_sym_equals] = ACTIONS(4550), + [anon_sym_by] = ACTIONS(4550), + [anon_sym_as] = ACTIONS(4550), + [anon_sym_is] = ACTIONS(4550), + [anon_sym_DASH_GT] = ACTIONS(4550), + [anon_sym_with] = ACTIONS(4550), + [aux_sym_preproc_if_token3] = ACTIONS(4550), + [aux_sym_preproc_else_token1] = ACTIONS(4550), + [aux_sym_preproc_elif_token1] = ACTIONS(4550), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472074,70 +471812,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2863), [sym_preproc_define] = STATE(2863), [sym_preproc_undef] = STATE(2863), - [sym__identifier_token] = ACTIONS(4938), - [anon_sym_extern] = ACTIONS(4938), - [anon_sym_alias] = ACTIONS(4938), - [anon_sym_global] = ACTIONS(4938), - [anon_sym_using] = ACTIONS(4938), - [anon_sym_unsafe] = ACTIONS(4938), - [anon_sym_static] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4940), - [anon_sym_LPAREN] = ACTIONS(4940), - [anon_sym_event] = ACTIONS(4938), - [anon_sym_namespace] = ACTIONS(4938), - [anon_sym_class] = ACTIONS(4938), - [anon_sym_ref] = ACTIONS(4938), - [anon_sym_struct] = ACTIONS(4938), - [anon_sym_enum] = ACTIONS(4938), - [anon_sym_RBRACE] = ACTIONS(4940), - [anon_sym_interface] = ACTIONS(4938), - [anon_sym_delegate] = ACTIONS(4938), - [anon_sym_record] = ACTIONS(4938), - [anon_sym_public] = ACTIONS(4938), - [anon_sym_private] = ACTIONS(4938), - [anon_sym_readonly] = ACTIONS(4938), - [anon_sym_abstract] = ACTIONS(4938), - [anon_sym_async] = ACTIONS(4938), - [anon_sym_const] = ACTIONS(4938), - [anon_sym_file] = ACTIONS(4938), - [anon_sym_fixed] = ACTIONS(4938), - [anon_sym_internal] = ACTIONS(4938), - [anon_sym_new] = ACTIONS(4938), - [anon_sym_override] = ACTIONS(4938), - [anon_sym_partial] = ACTIONS(4938), - [anon_sym_protected] = ACTIONS(4938), - [anon_sym_required] = ACTIONS(4938), - [anon_sym_sealed] = ACTIONS(4938), - [anon_sym_virtual] = ACTIONS(4938), - [anon_sym_volatile] = ACTIONS(4938), - [anon_sym_where] = ACTIONS(4938), - [anon_sym_notnull] = ACTIONS(4938), - [anon_sym_unmanaged] = ACTIONS(4938), - [anon_sym_TILDE] = ACTIONS(4940), - [anon_sym_implicit] = ACTIONS(4938), - [anon_sym_explicit] = ACTIONS(4938), - [anon_sym_scoped] = ACTIONS(4938), - [anon_sym_var] = ACTIONS(4938), - [sym_predefined_type] = ACTIONS(4938), - [anon_sym_yield] = ACTIONS(4938), - [anon_sym_when] = 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_ascending] = ACTIONS(4938), - [anon_sym_descending] = ACTIONS(4938), - [anon_sym_group] = ACTIONS(4938), - [anon_sym_by] = ACTIONS(4938), - [anon_sym_select] = ACTIONS(4938), - [sym_grit_metavariable] = ACTIONS(4940), - [aux_sym_preproc_if_token1] = ACTIONS(4940), - [aux_sym_preproc_if_token3] = ACTIONS(4940), - [aux_sym_preproc_else_token1] = ACTIONS(4940), - [aux_sym_preproc_elif_token1] = ACTIONS(4940), + [sym__identifier_token] = ACTIONS(5064), + [anon_sym_extern] = ACTIONS(5064), + [anon_sym_alias] = ACTIONS(5064), + [anon_sym_global] = ACTIONS(5064), + [anon_sym_using] = ACTIONS(5064), + [anon_sym_unsafe] = ACTIONS(5064), + [anon_sym_static] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5066), + [anon_sym_event] = ACTIONS(5064), + [anon_sym_namespace] = ACTIONS(5064), + [anon_sym_class] = ACTIONS(5064), + [anon_sym_ref] = ACTIONS(5064), + [anon_sym_struct] = ACTIONS(5064), + [anon_sym_enum] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5066), + [anon_sym_interface] = ACTIONS(5064), + [anon_sym_delegate] = ACTIONS(5064), + [anon_sym_record] = ACTIONS(5064), + [anon_sym_public] = ACTIONS(5064), + [anon_sym_private] = ACTIONS(5064), + [anon_sym_readonly] = ACTIONS(5064), + [anon_sym_abstract] = ACTIONS(5064), + [anon_sym_async] = ACTIONS(5064), + [anon_sym_const] = ACTIONS(5064), + [anon_sym_file] = ACTIONS(5064), + [anon_sym_fixed] = ACTIONS(5064), + [anon_sym_internal] = ACTIONS(5064), + [anon_sym_new] = ACTIONS(5064), + [anon_sym_override] = ACTIONS(5064), + [anon_sym_partial] = ACTIONS(5064), + [anon_sym_protected] = ACTIONS(5064), + [anon_sym_required] = ACTIONS(5064), + [anon_sym_sealed] = ACTIONS(5064), + [anon_sym_virtual] = ACTIONS(5064), + [anon_sym_volatile] = ACTIONS(5064), + [anon_sym_where] = ACTIONS(5064), + [anon_sym_notnull] = ACTIONS(5064), + [anon_sym_unmanaged] = ACTIONS(5064), + [anon_sym_implicit] = ACTIONS(5064), + [anon_sym_explicit] = ACTIONS(5064), + [anon_sym_TILDE] = ACTIONS(5066), + [anon_sym_scoped] = ACTIONS(5064), + [anon_sym_var] = ACTIONS(5064), + [sym_predefined_type] = ACTIONS(5064), + [anon_sym_yield] = ACTIONS(5064), + [anon_sym_when] = 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_ascending] = ACTIONS(5064), + [anon_sym_descending] = ACTIONS(5064), + [anon_sym_group] = ACTIONS(5064), + [anon_sym_by] = ACTIONS(5064), + [anon_sym_select] = ACTIONS(5064), + [sym_grit_metavariable] = ACTIONS(5066), + [aux_sym_preproc_if_token1] = ACTIONS(5066), + [aux_sym_preproc_if_token3] = ACTIONS(5066), + [aux_sym_preproc_else_token1] = ACTIONS(5066), + [aux_sym_preproc_elif_token1] = ACTIONS(5066), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472150,27 +471888,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2864] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), + [sym__variable_designation] = STATE(4246), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2864), [sym_preproc_endregion] = STATE(2864), [sym_preproc_line] = STATE(2864), @@ -472180,49 +471901,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2864), [sym_preproc_define] = STATE(2864), [sym_preproc_undef] = STATE(2864), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_join] = ACTIONS(1435), - [anon_sym_let] = ACTIONS(1435), - [anon_sym_orderby] = ACTIONS(1435), - [anon_sym_group] = ACTIONS(1435), - [anon_sym_select] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(1435), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4252), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4252), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472235,27 +471973,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2865] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), [sym_preproc_region] = STATE(2865), [sym_preproc_endregion] = STATE(2865), [sym_preproc_line] = STATE(2865), @@ -472265,49 +471982,70 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(4956), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4960), - [anon_sym_from] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_join] = ACTIONS(4786), - [anon_sym_let] = ACTIONS(4786), - [anon_sym_orderby] = ACTIONS(4786), - [anon_sym_group] = ACTIONS(4786), - [anon_sym_select] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(5070), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(5070), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5076), + [anon_sym_QMARK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_EQ_GT] = ACTIONS(5068), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_switch] = ACTIONS(5070), + [anon_sym_when] = ACTIONS(5068), + [anon_sym_DOT_DOT] = ACTIONS(5070), + [anon_sym_LT_EQ] = ACTIONS(5070), + [anon_sym_GT_EQ] = ACTIONS(5070), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5068), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(5070), + [anon_sym_BANG_EQ] = ACTIONS(5070), + [anon_sym_AMP_AMP] = ACTIONS(5070), + [anon_sym_PIPE_PIPE] = ACTIONS(5070), + [anon_sym_AMP] = ACTIONS(5073), + [sym_op_bitwise_or] = ACTIONS(5073), + [anon_sym_CARET] = ACTIONS(5073), + [sym_op_left_shift] = ACTIONS(5073), + [sym_op_right_shift] = ACTIONS(5073), + [sym_op_unsigned_right_shift] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [sym_op_divide] = ACTIONS(5073), + [sym_op_modulo] = ACTIONS(5073), + [sym_op_coalescing] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5070), + [anon_sym_DASH_DASH] = ACTIONS(5070), + [anon_sym_into] = ACTIONS(5068), + [anon_sym_on] = ACTIONS(5068), + [anon_sym_equals] = ACTIONS(5068), + [anon_sym_by] = ACTIONS(5068), + [anon_sym_as] = ACTIONS(5070), + [anon_sym_is] = ACTIONS(5070), + [anon_sym_DASH_GT] = ACTIONS(5070), + [anon_sym_with] = ACTIONS(5070), + [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), @@ -472320,27 +472058,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2866] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), + [sym__variable_designation] = STATE(4569), + [sym_parenthesized_variable_designation] = STATE(4585), + [sym_identifier] = STATE(4583), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2866), [sym_preproc_endregion] = STATE(2866), [sym_preproc_line] = STATE(2866), @@ -472350,49 +472071,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2866), [sym_preproc_define] = STATE(2866), [sym_preproc_undef] = STATE(2866), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_from] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_join] = ACTIONS(4766), - [anon_sym_let] = ACTIONS(4766), - [anon_sym_orderby] = ACTIONS(4766), - [anon_sym_group] = ACTIONS(4766), - [anon_sym_select] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4766), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4218), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4218), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4252), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472405,27 +472143,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2867] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), [sym_preproc_region] = STATE(2867), [sym_preproc_endregion] = STATE(2867), [sym_preproc_line] = STATE(2867), @@ -472435,49 +472152,70 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_where] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_from] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_join] = ACTIONS(4794), - [anon_sym_let] = ACTIONS(4794), - [anon_sym_orderby] = ACTIONS(4794), - [anon_sym_group] = ACTIONS(4794), - [anon_sym_select] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4794), + [sym__identifier_token] = ACTIONS(5078), + [anon_sym_extern] = ACTIONS(5078), + [anon_sym_alias] = ACTIONS(5078), + [anon_sym_global] = ACTIONS(5078), + [anon_sym_using] = ACTIONS(5078), + [anon_sym_unsafe] = ACTIONS(5078), + [anon_sym_static] = ACTIONS(5078), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_event] = ACTIONS(5078), + [anon_sym_namespace] = ACTIONS(5078), + [anon_sym_class] = ACTIONS(5078), + [anon_sym_ref] = ACTIONS(5078), + [anon_sym_struct] = ACTIONS(5078), + [anon_sym_enum] = ACTIONS(5078), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_interface] = ACTIONS(5078), + [anon_sym_delegate] = ACTIONS(5078), + [anon_sym_record] = ACTIONS(5078), + [anon_sym_public] = ACTIONS(5078), + [anon_sym_private] = ACTIONS(5078), + [anon_sym_readonly] = ACTIONS(5078), + [anon_sym_abstract] = ACTIONS(5078), + [anon_sym_async] = ACTIONS(5078), + [anon_sym_const] = ACTIONS(5078), + [anon_sym_file] = ACTIONS(5078), + [anon_sym_fixed] = ACTIONS(5078), + [anon_sym_internal] = ACTIONS(5078), + [anon_sym_new] = ACTIONS(5078), + [anon_sym_override] = ACTIONS(5078), + [anon_sym_partial] = ACTIONS(5078), + [anon_sym_protected] = ACTIONS(5078), + [anon_sym_required] = ACTIONS(5078), + [anon_sym_sealed] = ACTIONS(5078), + [anon_sym_virtual] = ACTIONS(5078), + [anon_sym_volatile] = ACTIONS(5078), + [anon_sym_where] = ACTIONS(5078), + [anon_sym_notnull] = ACTIONS(5078), + [anon_sym_unmanaged] = ACTIONS(5078), + [anon_sym_implicit] = ACTIONS(5078), + [anon_sym_explicit] = ACTIONS(5078), + [anon_sym_TILDE] = ACTIONS(5080), + [anon_sym_scoped] = ACTIONS(5078), + [anon_sym_var] = ACTIONS(5078), + [sym_predefined_type] = ACTIONS(5078), + [anon_sym_yield] = ACTIONS(5078), + [anon_sym_when] = ACTIONS(5078), + [anon_sym_from] = ACTIONS(5078), + [anon_sym_into] = ACTIONS(5078), + [anon_sym_join] = ACTIONS(5078), + [anon_sym_on] = ACTIONS(5078), + [anon_sym_equals] = ACTIONS(5078), + [anon_sym_let] = ACTIONS(5078), + [anon_sym_orderby] = ACTIONS(5078), + [anon_sym_ascending] = ACTIONS(5078), + [anon_sym_descending] = ACTIONS(5078), + [anon_sym_group] = ACTIONS(5078), + [anon_sym_by] = ACTIONS(5078), + [anon_sym_select] = ACTIONS(5078), + [sym_grit_metavariable] = ACTIONS(5080), + [aux_sym_preproc_if_token1] = 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), @@ -472490,10 +472228,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2868] = { - [sym__variable_designation] = STATE(4893), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2868), [sym_preproc_endregion] = STATE(2868), [sym_preproc_line] = STATE(2868), @@ -472503,66 +472237,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2868), [sym_preproc_define] = STATE(2868), [sym_preproc_undef] = STATE(2868), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4308), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4308), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(5082), + [anon_sym_extern] = ACTIONS(5082), + [anon_sym_alias] = ACTIONS(5082), + [anon_sym_global] = ACTIONS(5082), + [anon_sym_using] = ACTIONS(5082), + [anon_sym_unsafe] = ACTIONS(5082), + [anon_sym_static] = ACTIONS(5082), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_event] = ACTIONS(5082), + [anon_sym_namespace] = ACTIONS(5082), + [anon_sym_class] = ACTIONS(5082), + [anon_sym_ref] = ACTIONS(5082), + [anon_sym_struct] = ACTIONS(5082), + [anon_sym_enum] = ACTIONS(5082), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_interface] = ACTIONS(5082), + [anon_sym_delegate] = ACTIONS(5082), + [anon_sym_record] = ACTIONS(5082), + [anon_sym_public] = ACTIONS(5082), + [anon_sym_private] = ACTIONS(5082), + [anon_sym_readonly] = ACTIONS(5082), + [anon_sym_abstract] = ACTIONS(5082), + [anon_sym_async] = ACTIONS(5082), + [anon_sym_const] = ACTIONS(5082), + [anon_sym_file] = ACTIONS(5082), + [anon_sym_fixed] = ACTIONS(5082), + [anon_sym_internal] = ACTIONS(5082), + [anon_sym_new] = ACTIONS(5082), + [anon_sym_override] = ACTIONS(5082), + [anon_sym_partial] = ACTIONS(5082), + [anon_sym_protected] = ACTIONS(5082), + [anon_sym_required] = ACTIONS(5082), + [anon_sym_sealed] = ACTIONS(5082), + [anon_sym_virtual] = ACTIONS(5082), + [anon_sym_volatile] = ACTIONS(5082), + [anon_sym_where] = ACTIONS(5082), + [anon_sym_notnull] = ACTIONS(5082), + [anon_sym_unmanaged] = ACTIONS(5082), + [anon_sym_implicit] = ACTIONS(5082), + [anon_sym_explicit] = ACTIONS(5082), + [anon_sym_TILDE] = ACTIONS(5084), + [anon_sym_scoped] = ACTIONS(5082), + [anon_sym_var] = ACTIONS(5082), + [sym_predefined_type] = ACTIONS(5082), + [anon_sym_yield] = ACTIONS(5082), + [anon_sym_when] = ACTIONS(5082), + [anon_sym_from] = ACTIONS(5082), + [anon_sym_into] = ACTIONS(5082), + [anon_sym_join] = ACTIONS(5082), + [anon_sym_on] = ACTIONS(5082), + [anon_sym_equals] = ACTIONS(5082), + [anon_sym_let] = ACTIONS(5082), + [anon_sym_orderby] = ACTIONS(5082), + [anon_sym_ascending] = ACTIONS(5082), + [anon_sym_descending] = ACTIONS(5082), + [anon_sym_group] = ACTIONS(5082), + [anon_sym_by] = ACTIONS(5082), + [anon_sym_select] = ACTIONS(5082), + [sym_grit_metavariable] = ACTIONS(5084), + [aux_sym_preproc_if_token1] = ACTIONS(5084), + [aux_sym_preproc_if_token3] = ACTIONS(5084), + [aux_sym_preproc_else_token1] = ACTIONS(5084), + [aux_sym_preproc_elif_token1] = ACTIONS(5084), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472584,70 +472322,70 @@ 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(3968), - [anon_sym_EQ] = ACTIONS(3966), - [anon_sym_LBRACK] = ACTIONS(3968), - [anon_sym_COLON] = ACTIONS(3968), - [anon_sym_COMMA] = ACTIONS(3968), - [anon_sym_RBRACK] = ACTIONS(3968), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_RPAREN] = ACTIONS(3968), - [anon_sym_RBRACE] = ACTIONS(3968), - [anon_sym_LT] = ACTIONS(3966), - [anon_sym_GT] = ACTIONS(3966), - [anon_sym_in] = ACTIONS(3966), - [anon_sym_QMARK] = ACTIONS(3966), - [anon_sym_BANG] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3966), - [anon_sym_SLASH] = ACTIONS(3966), - [anon_sym_PERCENT] = ACTIONS(3966), - [anon_sym_CARET] = ACTIONS(3966), - [anon_sym_PIPE] = ACTIONS(3966), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_LT_LT] = ACTIONS(3966), - [anon_sym_GT_GT] = ACTIONS(3966), - [anon_sym_GT_GT_GT] = ACTIONS(3966), - [anon_sym_EQ_EQ] = ACTIONS(3968), - [anon_sym_BANG_EQ] = ACTIONS(3968), - [anon_sym_GT_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3968), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_EQ_GT] = ACTIONS(3968), - [anon_sym_switch] = ACTIONS(3968), - [anon_sym_when] = ACTIONS(3968), - [anon_sym_DOT_DOT] = ACTIONS(3968), - [anon_sym_and] = ACTIONS(3968), - [anon_sym_or] = ACTIONS(3968), - [anon_sym_PLUS_EQ] = ACTIONS(3968), - [anon_sym_DASH_EQ] = ACTIONS(3968), - [anon_sym_STAR_EQ] = ACTIONS(3968), - [anon_sym_SLASH_EQ] = ACTIONS(3968), - [anon_sym_PERCENT_EQ] = ACTIONS(3968), - [anon_sym_AMP_EQ] = ACTIONS(3968), - [anon_sym_CARET_EQ] = ACTIONS(3968), - [anon_sym_PIPE_EQ] = ACTIONS(3968), - [anon_sym_LT_LT_EQ] = ACTIONS(3968), - [anon_sym_GT_GT_EQ] = ACTIONS(3968), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3968), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_PIPE_PIPE] = ACTIONS(3968), - [sym_op_coalescing] = ACTIONS(3966), - [anon_sym_into] = ACTIONS(3968), - [anon_sym_on] = ACTIONS(3968), - [anon_sym_equals] = ACTIONS(3968), - [anon_sym_by] = ACTIONS(3968), - [anon_sym_as] = ACTIONS(3968), - [anon_sym_is] = ACTIONS(3968), - [anon_sym_DASH_GT] = ACTIONS(3968), - [anon_sym_with] = ACTIONS(3968), - [aux_sym_preproc_if_token3] = ACTIONS(3968), - [aux_sym_preproc_else_token1] = ACTIONS(3968), - [aux_sym_preproc_elif_token1] = ACTIONS(3968), + [sym__identifier_token] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym_alias] = ACTIONS(3600), + [anon_sym_global] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_unsafe] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_event] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_ref] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3602), + [anon_sym_interface] = ACTIONS(3600), + [anon_sym_delegate] = ACTIONS(3600), + [anon_sym_record] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_readonly] = ACTIONS(3600), + [anon_sym_abstract] = ACTIONS(3600), + [anon_sym_async] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3600), + [anon_sym_fixed] = ACTIONS(3600), + [anon_sym_internal] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_override] = ACTIONS(3600), + [anon_sym_partial] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_required] = ACTIONS(3600), + [anon_sym_sealed] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_where] = ACTIONS(3600), + [anon_sym_notnull] = ACTIONS(3600), + [anon_sym_unmanaged] = ACTIONS(3600), + [anon_sym_implicit] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_scoped] = ACTIONS(3600), + [anon_sym_var] = ACTIONS(3600), + [sym_predefined_type] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3600), + [anon_sym_when] = 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), + [sym_grit_metavariable] = ACTIONS(3602), + [aux_sym_preproc_if_token1] = 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), @@ -472660,27 +472398,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2870] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), [sym_preproc_region] = STATE(2870), [sym_preproc_endregion] = STATE(2870), [sym_preproc_line] = STATE(2870), @@ -472690,49 +472407,70 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_where] = ACTIONS(4774), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_from] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_join] = ACTIONS(4774), - [anon_sym_let] = ACTIONS(4774), - [anon_sym_orderby] = ACTIONS(4774), - [anon_sym_group] = ACTIONS(4774), - [anon_sym_select] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4774), + [sym__identifier_token] = ACTIONS(5086), + [anon_sym_extern] = ACTIONS(5086), + [anon_sym_alias] = ACTIONS(5086), + [anon_sym_global] = ACTIONS(5086), + [anon_sym_using] = ACTIONS(5086), + [anon_sym_unsafe] = ACTIONS(5086), + [anon_sym_static] = ACTIONS(5086), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_LPAREN] = ACTIONS(5088), + [anon_sym_event] = ACTIONS(5086), + [anon_sym_namespace] = ACTIONS(5086), + [anon_sym_class] = ACTIONS(5086), + [anon_sym_ref] = ACTIONS(5086), + [anon_sym_struct] = ACTIONS(5086), + [anon_sym_enum] = ACTIONS(5086), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_interface] = ACTIONS(5086), + [anon_sym_delegate] = ACTIONS(5086), + [anon_sym_record] = ACTIONS(5086), + [anon_sym_public] = ACTIONS(5086), + [anon_sym_private] = ACTIONS(5086), + [anon_sym_readonly] = ACTIONS(5086), + [anon_sym_abstract] = ACTIONS(5086), + [anon_sym_async] = ACTIONS(5086), + [anon_sym_const] = ACTIONS(5086), + [anon_sym_file] = ACTIONS(5086), + [anon_sym_fixed] = ACTIONS(5086), + [anon_sym_internal] = ACTIONS(5086), + [anon_sym_new] = ACTIONS(5086), + [anon_sym_override] = ACTIONS(5086), + [anon_sym_partial] = ACTIONS(5086), + [anon_sym_protected] = ACTIONS(5086), + [anon_sym_required] = ACTIONS(5086), + [anon_sym_sealed] = ACTIONS(5086), + [anon_sym_virtual] = ACTIONS(5086), + [anon_sym_volatile] = ACTIONS(5086), + [anon_sym_where] = ACTIONS(5086), + [anon_sym_notnull] = ACTIONS(5086), + [anon_sym_unmanaged] = ACTIONS(5086), + [anon_sym_implicit] = ACTIONS(5086), + [anon_sym_explicit] = ACTIONS(5086), + [anon_sym_TILDE] = ACTIONS(5088), + [anon_sym_scoped] = ACTIONS(5086), + [anon_sym_var] = ACTIONS(5086), + [sym_predefined_type] = ACTIONS(5086), + [anon_sym_yield] = ACTIONS(5086), + [anon_sym_when] = 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_ascending] = ACTIONS(5086), + [anon_sym_descending] = ACTIONS(5086), + [anon_sym_group] = ACTIONS(5086), + [anon_sym_by] = ACTIONS(5086), + [anon_sym_select] = ACTIONS(5086), + [sym_grit_metavariable] = ACTIONS(5088), + [aux_sym_preproc_if_token1] = ACTIONS(5088), + [aux_sym_preproc_if_token3] = ACTIONS(5088), + [aux_sym_preproc_else_token1] = ACTIONS(5088), + [aux_sym_preproc_elif_token1] = ACTIONS(5088), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472754,70 +472492,70 @@ 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(3980), - [anon_sym_EQ] = ACTIONS(3978), - [anon_sym_LBRACK] = ACTIONS(3980), - [anon_sym_COLON] = ACTIONS(3980), - [anon_sym_COMMA] = ACTIONS(3980), - [anon_sym_RBRACK] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym_RPAREN] = ACTIONS(3980), - [anon_sym_RBRACE] = ACTIONS(3980), - [anon_sym_LT] = ACTIONS(3978), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_in] = ACTIONS(3978), - [anon_sym_QMARK] = ACTIONS(3978), - [anon_sym_BANG] = ACTIONS(3978), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3978), - [anon_sym_SLASH] = ACTIONS(3978), - [anon_sym_PERCENT] = ACTIONS(3978), - [anon_sym_CARET] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(3978), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_LT_LT] = ACTIONS(3978), - [anon_sym_GT_GT] = ACTIONS(3978), - [anon_sym_GT_GT_GT] = ACTIONS(3978), - [anon_sym_EQ_EQ] = ACTIONS(3980), - [anon_sym_BANG_EQ] = ACTIONS(3980), - [anon_sym_GT_EQ] = ACTIONS(3980), - [anon_sym_LT_EQ] = ACTIONS(3980), - [anon_sym_DOT] = ACTIONS(3978), - [anon_sym_EQ_GT] = ACTIONS(3980), - [anon_sym_switch] = ACTIONS(3980), - [anon_sym_when] = ACTIONS(3980), - [anon_sym_DOT_DOT] = ACTIONS(3980), - [anon_sym_and] = ACTIONS(3980), - [anon_sym_or] = ACTIONS(3980), - [anon_sym_PLUS_EQ] = ACTIONS(3980), - [anon_sym_DASH_EQ] = ACTIONS(3980), - [anon_sym_STAR_EQ] = ACTIONS(3980), - [anon_sym_SLASH_EQ] = ACTIONS(3980), - [anon_sym_PERCENT_EQ] = ACTIONS(3980), - [anon_sym_AMP_EQ] = ACTIONS(3980), - [anon_sym_CARET_EQ] = ACTIONS(3980), - [anon_sym_PIPE_EQ] = ACTIONS(3980), - [anon_sym_LT_LT_EQ] = ACTIONS(3980), - [anon_sym_GT_GT_EQ] = ACTIONS(3980), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3980), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_PIPE_PIPE] = ACTIONS(3980), - [sym_op_coalescing] = ACTIONS(3978), - [anon_sym_into] = ACTIONS(3980), - [anon_sym_on] = ACTIONS(3980), - [anon_sym_equals] = ACTIONS(3980), - [anon_sym_by] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(3980), - [anon_sym_is] = ACTIONS(3980), - [anon_sym_DASH_GT] = ACTIONS(3980), - [anon_sym_with] = ACTIONS(3980), - [aux_sym_preproc_if_token3] = ACTIONS(3980), - [aux_sym_preproc_else_token1] = ACTIONS(3980), - [aux_sym_preproc_elif_token1] = ACTIONS(3980), + [sym__identifier_token] = ACTIONS(5090), + [anon_sym_extern] = ACTIONS(5090), + [anon_sym_alias] = ACTIONS(5090), + [anon_sym_global] = ACTIONS(5090), + [anon_sym_using] = ACTIONS(5090), + [anon_sym_unsafe] = ACTIONS(5090), + [anon_sym_static] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5092), + [anon_sym_LPAREN] = ACTIONS(5092), + [anon_sym_event] = ACTIONS(5090), + [anon_sym_namespace] = ACTIONS(5090), + [anon_sym_class] = ACTIONS(5090), + [anon_sym_ref] = ACTIONS(5090), + [anon_sym_struct] = ACTIONS(5090), + [anon_sym_enum] = ACTIONS(5090), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_interface] = ACTIONS(5090), + [anon_sym_delegate] = ACTIONS(5090), + [anon_sym_record] = ACTIONS(5090), + [anon_sym_public] = ACTIONS(5090), + [anon_sym_private] = ACTIONS(5090), + [anon_sym_readonly] = ACTIONS(5090), + [anon_sym_abstract] = ACTIONS(5090), + [anon_sym_async] = ACTIONS(5090), + [anon_sym_const] = ACTIONS(5090), + [anon_sym_file] = ACTIONS(5090), + [anon_sym_fixed] = ACTIONS(5090), + [anon_sym_internal] = ACTIONS(5090), + [anon_sym_new] = ACTIONS(5090), + [anon_sym_override] = ACTIONS(5090), + [anon_sym_partial] = ACTIONS(5090), + [anon_sym_protected] = ACTIONS(5090), + [anon_sym_required] = ACTIONS(5090), + [anon_sym_sealed] = ACTIONS(5090), + [anon_sym_virtual] = ACTIONS(5090), + [anon_sym_volatile] = ACTIONS(5090), + [anon_sym_where] = ACTIONS(5090), + [anon_sym_notnull] = ACTIONS(5090), + [anon_sym_unmanaged] = ACTIONS(5090), + [anon_sym_implicit] = ACTIONS(5090), + [anon_sym_explicit] = ACTIONS(5090), + [anon_sym_TILDE] = ACTIONS(5092), + [anon_sym_scoped] = ACTIONS(5090), + [anon_sym_var] = ACTIONS(5090), + [sym_predefined_type] = ACTIONS(5090), + [anon_sym_yield] = ACTIONS(5090), + [anon_sym_when] = 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_ascending] = ACTIONS(5090), + [anon_sym_descending] = ACTIONS(5090), + [anon_sym_group] = ACTIONS(5090), + [anon_sym_by] = ACTIONS(5090), + [anon_sym_select] = ACTIONS(5090), + [sym_grit_metavariable] = ACTIONS(5092), + [aux_sym_preproc_if_token1] = ACTIONS(5092), + [aux_sym_preproc_if_token3] = ACTIONS(5092), + [aux_sym_preproc_else_token1] = ACTIONS(5092), + [aux_sym_preproc_elif_token1] = ACTIONS(5092), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472830,27 +472568,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2872] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), [sym_preproc_region] = STATE(2872), [sym_preproc_endregion] = STATE(2872), [sym_preproc_line] = STATE(2872), @@ -472860,49 +472577,70 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [sym__identifier_token] = ACTIONS(5094), + [anon_sym_extern] = ACTIONS(5094), + [anon_sym_alias] = ACTIONS(5094), + [anon_sym_global] = ACTIONS(5094), + [anon_sym_using] = ACTIONS(5094), + [anon_sym_unsafe] = ACTIONS(5094), + [anon_sym_static] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5096), + [anon_sym_event] = ACTIONS(5094), + [anon_sym_namespace] = ACTIONS(5094), + [anon_sym_class] = ACTIONS(5094), + [anon_sym_ref] = ACTIONS(5094), + [anon_sym_struct] = ACTIONS(5094), + [anon_sym_enum] = ACTIONS(5094), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_interface] = ACTIONS(5094), + [anon_sym_delegate] = ACTIONS(5094), + [anon_sym_record] = ACTIONS(5094), + [anon_sym_public] = ACTIONS(5094), + [anon_sym_private] = ACTIONS(5094), + [anon_sym_readonly] = ACTIONS(5094), + [anon_sym_abstract] = ACTIONS(5094), + [anon_sym_async] = ACTIONS(5094), + [anon_sym_const] = ACTIONS(5094), + [anon_sym_file] = ACTIONS(5094), + [anon_sym_fixed] = ACTIONS(5094), + [anon_sym_internal] = ACTIONS(5094), + [anon_sym_new] = ACTIONS(5094), + [anon_sym_override] = ACTIONS(5094), + [anon_sym_partial] = ACTIONS(5094), + [anon_sym_protected] = ACTIONS(5094), + [anon_sym_required] = ACTIONS(5094), + [anon_sym_sealed] = ACTIONS(5094), + [anon_sym_virtual] = ACTIONS(5094), + [anon_sym_volatile] = ACTIONS(5094), + [anon_sym_where] = ACTIONS(5094), + [anon_sym_notnull] = ACTIONS(5094), + [anon_sym_unmanaged] = ACTIONS(5094), + [anon_sym_implicit] = ACTIONS(5094), + [anon_sym_explicit] = ACTIONS(5094), + [anon_sym_TILDE] = ACTIONS(5096), + [anon_sym_scoped] = ACTIONS(5094), + [anon_sym_var] = ACTIONS(5094), + [sym_predefined_type] = ACTIONS(5094), + [anon_sym_yield] = ACTIONS(5094), + [anon_sym_when] = 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_ascending] = ACTIONS(5094), + [anon_sym_descending] = ACTIONS(5094), + [anon_sym_group] = ACTIONS(5094), + [anon_sym_by] = ACTIONS(5094), + [anon_sym_select] = ACTIONS(5094), + [sym_grit_metavariable] = ACTIONS(5096), + [aux_sym_preproc_if_token1] = ACTIONS(5096), + [aux_sym_preproc_if_token3] = ACTIONS(5096), + [aux_sym_preproc_else_token1] = ACTIONS(5096), + [aux_sym_preproc_elif_token1] = ACTIONS(5096), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472915,27 +472653,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2873] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), [sym_preproc_region] = STATE(2873), [sym_preproc_endregion] = STATE(2873), [sym_preproc_line] = STATE(2873), @@ -472945,49 +472662,70 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [sym__identifier_token] = ACTIONS(5098), + [anon_sym_extern] = ACTIONS(5098), + [anon_sym_alias] = ACTIONS(5098), + [anon_sym_global] = ACTIONS(5098), + [anon_sym_using] = 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_namespace] = ACTIONS(5098), + [anon_sym_class] = ACTIONS(5098), + [anon_sym_ref] = ACTIONS(5098), + [anon_sym_struct] = ACTIONS(5098), + [anon_sym_enum] = ACTIONS(5098), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_interface] = ACTIONS(5098), + [anon_sym_delegate] = ACTIONS(5098), + [anon_sym_record] = ACTIONS(5098), + [anon_sym_public] = ACTIONS(5098), + [anon_sym_private] = ACTIONS(5098), + [anon_sym_readonly] = 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_protected] = 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_implicit] = ACTIONS(5098), + [anon_sym_explicit] = ACTIONS(5098), + [anon_sym_TILDE] = ACTIONS(5100), + [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_grit_metavariable] = ACTIONS(5100), + [aux_sym_preproc_if_token1] = ACTIONS(5100), + [aux_sym_preproc_if_token3] = ACTIONS(5100), + [aux_sym_preproc_else_token1] = ACTIONS(5100), + [aux_sym_preproc_elif_token1] = ACTIONS(5100), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473000,10 +472738,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2874] = { - [sym__variable_designation] = STATE(4909), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2874), [sym_preproc_endregion] = STATE(2874), [sym_preproc_line] = STATE(2874), @@ -473013,257 +472747,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2874), [sym_preproc_define] = STATE(2874), [sym_preproc_undef] = STATE(2874), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4304), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4304), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2875] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), - [sym_preproc_region] = STATE(2875), - [sym_preproc_endregion] = STATE(2875), - [sym_preproc_line] = STATE(2875), - [sym_preproc_pragma] = STATE(2875), - [sym_preproc_nullable] = STATE(2875), - [sym_preproc_error] = STATE(2875), - [sym_preproc_warning] = STATE(2875), - [sym_preproc_define] = STATE(2875), - [sym_preproc_undef] = STATE(2875), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2876] = { - [sym_preproc_region] = STATE(2876), - [sym_preproc_endregion] = STATE(2876), - [sym_preproc_line] = STATE(2876), - [sym_preproc_pragma] = STATE(2876), - [sym_preproc_nullable] = STATE(2876), - [sym_preproc_error] = STATE(2876), - [sym_preproc_warning] = STATE(2876), - [sym_preproc_define] = STATE(2876), - [sym_preproc_undef] = STATE(2876), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_EQ] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3976), - [anon_sym_COLON] = ACTIONS(3976), - [anon_sym_COMMA] = ACTIONS(3976), - [anon_sym_RBRACK] = ACTIONS(3976), - [anon_sym_LPAREN] = ACTIONS(3976), - [anon_sym_RPAREN] = ACTIONS(3976), - [anon_sym_RBRACE] = ACTIONS(3976), - [anon_sym_LT] = ACTIONS(3974), - [anon_sym_GT] = ACTIONS(3974), - [anon_sym_in] = ACTIONS(3974), - [anon_sym_QMARK] = ACTIONS(3974), - [anon_sym_BANG] = ACTIONS(3974), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3974), - [anon_sym_PERCENT] = ACTIONS(3974), - [anon_sym_CARET] = ACTIONS(3974), - [anon_sym_PIPE] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_LT_LT] = ACTIONS(3974), - [anon_sym_GT_GT] = ACTIONS(3974), - [anon_sym_GT_GT_GT] = ACTIONS(3974), - [anon_sym_EQ_EQ] = ACTIONS(3976), - [anon_sym_BANG_EQ] = ACTIONS(3976), - [anon_sym_GT_EQ] = ACTIONS(3976), - [anon_sym_LT_EQ] = ACTIONS(3976), - [anon_sym_DOT] = ACTIONS(3974), - [anon_sym_EQ_GT] = ACTIONS(3976), - [anon_sym_switch] = ACTIONS(3976), - [anon_sym_when] = ACTIONS(3976), - [anon_sym_DOT_DOT] = ACTIONS(3976), - [anon_sym_and] = ACTIONS(3976), - [anon_sym_or] = ACTIONS(3976), - [anon_sym_PLUS_EQ] = ACTIONS(3976), - [anon_sym_DASH_EQ] = ACTIONS(3976), - [anon_sym_STAR_EQ] = ACTIONS(3976), - [anon_sym_SLASH_EQ] = ACTIONS(3976), - [anon_sym_PERCENT_EQ] = ACTIONS(3976), - [anon_sym_AMP_EQ] = ACTIONS(3976), - [anon_sym_CARET_EQ] = ACTIONS(3976), - [anon_sym_PIPE_EQ] = ACTIONS(3976), - [anon_sym_LT_LT_EQ] = ACTIONS(3976), - [anon_sym_GT_GT_EQ] = ACTIONS(3976), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3976), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_PIPE_PIPE] = ACTIONS(3976), - [sym_op_coalescing] = ACTIONS(3974), - [anon_sym_into] = ACTIONS(3976), - [anon_sym_on] = ACTIONS(3976), - [anon_sym_equals] = ACTIONS(3976), - [anon_sym_by] = ACTIONS(3976), - [anon_sym_as] = ACTIONS(3976), - [anon_sym_is] = ACTIONS(3976), - [anon_sym_DASH_GT] = ACTIONS(3976), - [anon_sym_with] = ACTIONS(3976), - [aux_sym_preproc_if_token3] = ACTIONS(3976), - [aux_sym_preproc_else_token1] = ACTIONS(3976), - [aux_sym_preproc_elif_token1] = ACTIONS(3976), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2877] = { - [sym_preproc_region] = STATE(2877), - [sym_preproc_endregion] = STATE(2877), - [sym_preproc_line] = STATE(2877), - [sym_preproc_pragma] = STATE(2877), - [sym_preproc_nullable] = STATE(2877), - [sym_preproc_error] = STATE(2877), - [sym_preproc_warning] = STATE(2877), - [sym_preproc_define] = STATE(2877), - [sym_preproc_undef] = STATE(2877), [sym__identifier_token] = ACTIONS(3604), [anon_sym_extern] = ACTIONS(3604), [anon_sym_alias] = ACTIONS(3604), @@ -473303,9 +472786,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(3604), [anon_sym_notnull] = ACTIONS(3604), [anon_sym_unmanaged] = ACTIONS(3604), - [anon_sym_TILDE] = ACTIONS(3606), [anon_sym_implicit] = ACTIONS(3604), [anon_sym_explicit] = ACTIONS(3604), + [anon_sym_TILDE] = ACTIONS(3606), [anon_sym_scoped] = ACTIONS(3604), [anon_sym_var] = ACTIONS(3604), [sym_predefined_type] = ACTIONS(3604), @@ -473339,28 +472822,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2875] = { + [sym_preproc_region] = STATE(2875), + [sym_preproc_endregion] = STATE(2875), + [sym_preproc_line] = STATE(2875), + [sym_preproc_pragma] = STATE(2875), + [sym_preproc_nullable] = STATE(2875), + [sym_preproc_error] = STATE(2875), + [sym_preproc_warning] = STATE(2875), + [sym_preproc_define] = STATE(2875), + [sym_preproc_undef] = STATE(2875), + [sym__identifier_token] = ACTIONS(5102), + [anon_sym_extern] = ACTIONS(5102), + [anon_sym_alias] = ACTIONS(5102), + [anon_sym_global] = ACTIONS(5102), + [anon_sym_using] = 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_namespace] = ACTIONS(5102), + [anon_sym_class] = ACTIONS(5102), + [anon_sym_ref] = ACTIONS(5102), + [anon_sym_struct] = ACTIONS(5102), + [anon_sym_enum] = ACTIONS(5102), + [anon_sym_RBRACE] = ACTIONS(5104), + [anon_sym_interface] = ACTIONS(5102), + [anon_sym_delegate] = ACTIONS(5102), + [anon_sym_record] = ACTIONS(5102), + [anon_sym_public] = ACTIONS(5102), + [anon_sym_private] = ACTIONS(5102), + [anon_sym_readonly] = 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_protected] = 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_implicit] = ACTIONS(5102), + [anon_sym_explicit] = ACTIONS(5102), + [anon_sym_TILDE] = ACTIONS(5104), + [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), + [sym_grit_metavariable] = ACTIONS(5104), + [aux_sym_preproc_if_token1] = ACTIONS(5104), + [aux_sym_preproc_if_token3] = ACTIONS(5104), + [aux_sym_preproc_else_token1] = ACTIONS(5104), + [aux_sym_preproc_elif_token1] = ACTIONS(5104), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2876] = { + [sym_preproc_region] = STATE(2876), + [sym_preproc_endregion] = STATE(2876), + [sym_preproc_line] = STATE(2876), + [sym_preproc_pragma] = STATE(2876), + [sym_preproc_nullable] = STATE(2876), + [sym_preproc_error] = STATE(2876), + [sym_preproc_warning] = STATE(2876), + [sym_preproc_define] = STATE(2876), + [sym_preproc_undef] = STATE(2876), + [sym__identifier_token] = ACTIONS(5106), + [anon_sym_extern] = ACTIONS(5106), + [anon_sym_alias] = ACTIONS(5106), + [anon_sym_global] = ACTIONS(5106), + [anon_sym_using] = ACTIONS(5106), + [anon_sym_unsafe] = ACTIONS(5106), + [anon_sym_static] = ACTIONS(5106), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_event] = ACTIONS(5106), + [anon_sym_namespace] = ACTIONS(5106), + [anon_sym_class] = ACTIONS(5106), + [anon_sym_ref] = ACTIONS(5106), + [anon_sym_struct] = ACTIONS(5106), + [anon_sym_enum] = ACTIONS(5106), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_interface] = ACTIONS(5106), + [anon_sym_delegate] = ACTIONS(5106), + [anon_sym_record] = ACTIONS(5106), + [anon_sym_public] = ACTIONS(5106), + [anon_sym_private] = ACTIONS(5106), + [anon_sym_readonly] = ACTIONS(5106), + [anon_sym_abstract] = ACTIONS(5106), + [anon_sym_async] = ACTIONS(5106), + [anon_sym_const] = ACTIONS(5106), + [anon_sym_file] = ACTIONS(5106), + [anon_sym_fixed] = ACTIONS(5106), + [anon_sym_internal] = ACTIONS(5106), + [anon_sym_new] = ACTIONS(5106), + [anon_sym_override] = ACTIONS(5106), + [anon_sym_partial] = ACTIONS(5106), + [anon_sym_protected] = ACTIONS(5106), + [anon_sym_required] = ACTIONS(5106), + [anon_sym_sealed] = ACTIONS(5106), + [anon_sym_virtual] = ACTIONS(5106), + [anon_sym_volatile] = ACTIONS(5106), + [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_TILDE] = ACTIONS(5108), + [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_grit_metavariable] = ACTIONS(5108), + [aux_sym_preproc_if_token1] = ACTIONS(5108), + [aux_sym_preproc_if_token3] = ACTIONS(5108), + [aux_sym_preproc_else_token1] = ACTIONS(5108), + [aux_sym_preproc_elif_token1] = ACTIONS(5108), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2877] = { + [sym_preproc_region] = STATE(2877), + [sym_preproc_endregion] = STATE(2877), + [sym_preproc_line] = STATE(2877), + [sym_preproc_pragma] = STATE(2877), + [sym_preproc_nullable] = STATE(2877), + [sym_preproc_error] = STATE(2877), + [sym_preproc_warning] = STATE(2877), + [sym_preproc_define] = STATE(2877), + [sym_preproc_undef] = STATE(2877), + [sym__identifier_token] = ACTIONS(5110), + [anon_sym_extern] = ACTIONS(5110), + [anon_sym_alias] = ACTIONS(5110), + [anon_sym_global] = ACTIONS(5110), + [anon_sym_using] = ACTIONS(5110), + [anon_sym_unsafe] = ACTIONS(5110), + [anon_sym_static] = ACTIONS(5110), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_event] = ACTIONS(5110), + [anon_sym_namespace] = ACTIONS(5110), + [anon_sym_class] = ACTIONS(5110), + [anon_sym_ref] = ACTIONS(5110), + [anon_sym_struct] = ACTIONS(5110), + [anon_sym_enum] = ACTIONS(5110), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_interface] = ACTIONS(5110), + [anon_sym_delegate] = ACTIONS(5110), + [anon_sym_record] = ACTIONS(5110), + [anon_sym_public] = ACTIONS(5110), + [anon_sym_private] = ACTIONS(5110), + [anon_sym_readonly] = ACTIONS(5110), + [anon_sym_abstract] = ACTIONS(5110), + [anon_sym_async] = ACTIONS(5110), + [anon_sym_const] = ACTIONS(5110), + [anon_sym_file] = ACTIONS(5110), + [anon_sym_fixed] = ACTIONS(5110), + [anon_sym_internal] = ACTIONS(5110), + [anon_sym_new] = ACTIONS(5110), + [anon_sym_override] = ACTIONS(5110), + [anon_sym_partial] = ACTIONS(5110), + [anon_sym_protected] = ACTIONS(5110), + [anon_sym_required] = ACTIONS(5110), + [anon_sym_sealed] = ACTIONS(5110), + [anon_sym_virtual] = ACTIONS(5110), + [anon_sym_volatile] = ACTIONS(5110), + [anon_sym_where] = ACTIONS(5110), + [anon_sym_notnull] = ACTIONS(5110), + [anon_sym_unmanaged] = ACTIONS(5110), + [anon_sym_implicit] = ACTIONS(5110), + [anon_sym_explicit] = ACTIONS(5110), + [anon_sym_TILDE] = ACTIONS(5112), + [anon_sym_scoped] = ACTIONS(5110), + [anon_sym_var] = ACTIONS(5110), + [sym_predefined_type] = ACTIONS(5110), + [anon_sym_yield] = ACTIONS(5110), + [anon_sym_when] = 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_ascending] = ACTIONS(5110), + [anon_sym_descending] = ACTIONS(5110), + [anon_sym_group] = ACTIONS(5110), + [anon_sym_by] = ACTIONS(5110), + [anon_sym_select] = ACTIONS(5110), + [sym_grit_metavariable] = ACTIONS(5112), + [aux_sym_preproc_if_token1] = ACTIONS(5112), + [aux_sym_preproc_if_token3] = ACTIONS(5112), + [aux_sym_preproc_else_token1] = ACTIONS(5112), + [aux_sym_preproc_elif_token1] = ACTIONS(5112), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2878] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), [sym_preproc_region] = STATE(2878), [sym_preproc_endregion] = STATE(2878), [sym_preproc_line] = STATE(2878), @@ -473370,49 +473087,70 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(3991), + [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_RBRACE] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_in] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_EQ_GT] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_switch] = ACTIONS(4006), + [anon_sym_when] = ACTIONS(4006), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(4006), + [anon_sym_or] = ACTIONS(4006), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = 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), @@ -473434,69 +473172,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2879), [sym_preproc_define] = STATE(2879), [sym_preproc_undef] = STATE(2879), - [sym__identifier_token] = ACTIONS(4314), - [anon_sym_alias] = ACTIONS(4314), - [anon_sym_global] = ACTIONS(4314), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_COLON] = ACTIONS(4316), - [anon_sym_COMMA] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4316), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_file] = ACTIONS(4314), - [anon_sym_LT] = ACTIONS(4314), - [anon_sym_GT] = ACTIONS(4314), - [anon_sym_where] = ACTIONS(4314), - [anon_sym_QMARK] = ACTIONS(4314), - [anon_sym_notnull] = ACTIONS(4314), - [anon_sym_unmanaged] = ACTIONS(4314), - [anon_sym_BANG] = ACTIONS(4314), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_STAR] = ACTIONS(4316), - [anon_sym_SLASH] = ACTIONS(4314), - [anon_sym_PERCENT] = ACTIONS(4316), - [anon_sym_CARET] = ACTIONS(4316), - [anon_sym_PIPE] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4314), - [anon_sym_LT_LT] = ACTIONS(4316), - [anon_sym_GT_GT] = ACTIONS(4314), - [anon_sym_GT_GT_GT] = ACTIONS(4316), - [anon_sym_EQ_EQ] = ACTIONS(4316), - [anon_sym_BANG_EQ] = ACTIONS(4316), - [anon_sym_GT_EQ] = ACTIONS(4316), - [anon_sym_LT_EQ] = ACTIONS(4316), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_scoped] = ACTIONS(4314), - [anon_sym_var] = ACTIONS(4314), - [anon_sym_yield] = ACTIONS(4314), - [anon_sym_switch] = ACTIONS(4314), - [anon_sym_when] = ACTIONS(4314), - [sym_discard] = ACTIONS(4314), - [anon_sym_DOT_DOT] = ACTIONS(4316), - [anon_sym_and] = ACTIONS(4314), - [anon_sym_or] = ACTIONS(4314), - [anon_sym_AMP_AMP] = ACTIONS(4316), - [anon_sym_PIPE_PIPE] = ACTIONS(4316), - [sym_op_coalescing] = ACTIONS(4316), - [anon_sym_from] = ACTIONS(4314), - [anon_sym_into] = ACTIONS(4314), - [anon_sym_join] = ACTIONS(4314), - [anon_sym_on] = ACTIONS(4314), - [anon_sym_equals] = ACTIONS(4314), - [anon_sym_let] = ACTIONS(4314), - [anon_sym_orderby] = ACTIONS(4314), - [anon_sym_ascending] = ACTIONS(4314), - [anon_sym_descending] = ACTIONS(4314), - [anon_sym_group] = ACTIONS(4314), - [anon_sym_by] = ACTIONS(4314), - [anon_sym_select] = ACTIONS(4314), - [anon_sym_as] = ACTIONS(4314), - [anon_sym_is] = ACTIONS(4314), - [anon_sym_DASH_GT] = ACTIONS(4316), - [anon_sym_with] = ACTIONS(4314), - [sym_grit_metavariable] = ACTIONS(4316), + [sym__identifier_token] = ACTIONS(5114), + [anon_sym_extern] = ACTIONS(5114), + [anon_sym_alias] = ACTIONS(5114), + [anon_sym_global] = ACTIONS(5114), + [anon_sym_using] = ACTIONS(5114), + [anon_sym_unsafe] = ACTIONS(5114), + [anon_sym_static] = ACTIONS(5114), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_event] = ACTIONS(5114), + [anon_sym_namespace] = ACTIONS(5114), + [anon_sym_class] = ACTIONS(5114), + [anon_sym_ref] = ACTIONS(5114), + [anon_sym_struct] = ACTIONS(5114), + [anon_sym_enum] = ACTIONS(5114), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_interface] = ACTIONS(5114), + [anon_sym_delegate] = ACTIONS(5114), + [anon_sym_record] = ACTIONS(5114), + [anon_sym_public] = ACTIONS(5114), + [anon_sym_private] = ACTIONS(5114), + [anon_sym_readonly] = ACTIONS(5114), + [anon_sym_abstract] = ACTIONS(5114), + [anon_sym_async] = ACTIONS(5114), + [anon_sym_const] = ACTIONS(5114), + [anon_sym_file] = ACTIONS(5114), + [anon_sym_fixed] = ACTIONS(5114), + [anon_sym_internal] = ACTIONS(5114), + [anon_sym_new] = ACTIONS(5114), + [anon_sym_override] = ACTIONS(5114), + [anon_sym_partial] = ACTIONS(5114), + [anon_sym_protected] = ACTIONS(5114), + [anon_sym_required] = ACTIONS(5114), + [anon_sym_sealed] = ACTIONS(5114), + [anon_sym_virtual] = ACTIONS(5114), + [anon_sym_volatile] = ACTIONS(5114), + [anon_sym_where] = ACTIONS(5114), + [anon_sym_notnull] = ACTIONS(5114), + [anon_sym_unmanaged] = ACTIONS(5114), + [anon_sym_implicit] = ACTIONS(5114), + [anon_sym_explicit] = ACTIONS(5114), + [anon_sym_TILDE] = ACTIONS(5116), + [anon_sym_scoped] = ACTIONS(5114), + [anon_sym_var] = ACTIONS(5114), + [sym_predefined_type] = ACTIONS(5114), + [anon_sym_yield] = ACTIONS(5114), + [anon_sym_when] = 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_ascending] = ACTIONS(5114), + [anon_sym_descending] = ACTIONS(5114), + [anon_sym_group] = ACTIONS(5114), + [anon_sym_by] = ACTIONS(5114), + [anon_sym_select] = ACTIONS(5114), + [sym_grit_metavariable] = ACTIONS(5116), + [aux_sym_preproc_if_token1] = ACTIONS(5116), + [aux_sym_preproc_if_token3] = ACTIONS(5116), + [aux_sym_preproc_else_token1] = ACTIONS(5116), + [aux_sym_preproc_elif_token1] = ACTIONS(5116), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473507,7 +473246,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(4316), }, [2880] = { [sym_preproc_region] = STATE(2880), @@ -473519,69 +473257,70 @@ 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), - [sym__identifier_token] = ACTIONS(4339), - [anon_sym_alias] = ACTIONS(4339), - [anon_sym_global] = ACTIONS(4339), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_LBRACE] = ACTIONS(4341), - [anon_sym_file] = ACTIONS(4339), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4339), - [anon_sym_QMARK] = ACTIONS(4339), - [anon_sym_notnull] = ACTIONS(4339), - [anon_sym_unmanaged] = ACTIONS(4339), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_CARET] = ACTIONS(4341), - [anon_sym_PIPE] = ACTIONS(4339), - [anon_sym_AMP] = ACTIONS(4339), - [anon_sym_LT_LT] = ACTIONS(4341), - [anon_sym_GT_GT] = ACTIONS(4339), - [anon_sym_GT_GT_GT] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_scoped] = ACTIONS(4339), - [anon_sym_var] = ACTIONS(4339), - [anon_sym_yield] = ACTIONS(4339), - [anon_sym_switch] = ACTIONS(4339), - [anon_sym_when] = ACTIONS(4339), - [sym_discard] = ACTIONS(4339), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_and] = ACTIONS(4339), - [anon_sym_or] = ACTIONS(4339), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [sym_op_coalescing] = ACTIONS(4341), - [anon_sym_from] = ACTIONS(4339), - [anon_sym_into] = ACTIONS(4339), - [anon_sym_join] = ACTIONS(4339), - [anon_sym_on] = ACTIONS(4339), - [anon_sym_equals] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4339), - [anon_sym_orderby] = ACTIONS(4339), - [anon_sym_ascending] = ACTIONS(4339), - [anon_sym_descending] = ACTIONS(4339), - [anon_sym_group] = ACTIONS(4339), - [anon_sym_by] = ACTIONS(4339), - [anon_sym_select] = ACTIONS(4339), - [anon_sym_as] = ACTIONS(4339), - [anon_sym_is] = ACTIONS(4339), - [anon_sym_DASH_GT] = ACTIONS(4341), - [anon_sym_with] = ACTIONS(4339), - [sym_grit_metavariable] = ACTIONS(4341), + [sym__identifier_token] = ACTIONS(5118), + [anon_sym_extern] = ACTIONS(5118), + [anon_sym_alias] = ACTIONS(5118), + [anon_sym_global] = ACTIONS(5118), + [anon_sym_using] = ACTIONS(5118), + [anon_sym_unsafe] = ACTIONS(5118), + [anon_sym_static] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_event] = ACTIONS(5118), + [anon_sym_namespace] = ACTIONS(5118), + [anon_sym_class] = ACTIONS(5118), + [anon_sym_ref] = ACTIONS(5118), + [anon_sym_struct] = ACTIONS(5118), + [anon_sym_enum] = ACTIONS(5118), + [anon_sym_RBRACE] = ACTIONS(5120), + [anon_sym_interface] = ACTIONS(5118), + [anon_sym_delegate] = ACTIONS(5118), + [anon_sym_record] = ACTIONS(5118), + [anon_sym_public] = ACTIONS(5118), + [anon_sym_private] = ACTIONS(5118), + [anon_sym_readonly] = ACTIONS(5118), + [anon_sym_abstract] = ACTIONS(5118), + [anon_sym_async] = ACTIONS(5118), + [anon_sym_const] = ACTIONS(5118), + [anon_sym_file] = ACTIONS(5118), + [anon_sym_fixed] = ACTIONS(5118), + [anon_sym_internal] = ACTIONS(5118), + [anon_sym_new] = ACTIONS(5118), + [anon_sym_override] = ACTIONS(5118), + [anon_sym_partial] = ACTIONS(5118), + [anon_sym_protected] = ACTIONS(5118), + [anon_sym_required] = ACTIONS(5118), + [anon_sym_sealed] = ACTIONS(5118), + [anon_sym_virtual] = ACTIONS(5118), + [anon_sym_volatile] = ACTIONS(5118), + [anon_sym_where] = ACTIONS(5118), + [anon_sym_notnull] = ACTIONS(5118), + [anon_sym_unmanaged] = ACTIONS(5118), + [anon_sym_implicit] = ACTIONS(5118), + [anon_sym_explicit] = ACTIONS(5118), + [anon_sym_TILDE] = ACTIONS(5120), + [anon_sym_scoped] = ACTIONS(5118), + [anon_sym_var] = ACTIONS(5118), + [sym_predefined_type] = ACTIONS(5118), + [anon_sym_yield] = ACTIONS(5118), + [anon_sym_when] = 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_ascending] = ACTIONS(5118), + [anon_sym_descending] = ACTIONS(5118), + [anon_sym_group] = ACTIONS(5118), + [anon_sym_by] = ACTIONS(5118), + [anon_sym_select] = ACTIONS(5118), + [sym_grit_metavariable] = ACTIONS(5120), + [aux_sym_preproc_if_token1] = ACTIONS(5120), + [aux_sym_preproc_if_token3] = ACTIONS(5120), + [aux_sym_preproc_else_token1] = ACTIONS(5120), + [aux_sym_preproc_elif_token1] = ACTIONS(5120), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473592,7 +473331,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(4341), }, [2881] = { [sym_preproc_region] = STATE(2881), @@ -473604,80 +473342,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2881), [sym_preproc_define] = STATE(2881), [sym_preproc_undef] = STATE(2881), - [sym__identifier_token] = ACTIONS(4355), - [anon_sym_alias] = ACTIONS(4355), - [anon_sym_global] = ACTIONS(4355), - [anon_sym_LBRACK] = ACTIONS(4357), - [anon_sym_COLON] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4357), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_file] = ACTIONS(4355), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_notnull] = ACTIONS(4355), - [anon_sym_unmanaged] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_PLUS_PLUS] = ACTIONS(4357), - [anon_sym_DASH_DASH] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4357), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4357), - [anon_sym_CARET] = ACTIONS(4357), - [anon_sym_PIPE] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_LT] = ACTIONS(4357), - [anon_sym_GT_GT] = ACTIONS(4355), - [anon_sym_GT_GT_GT] = ACTIONS(4357), - [anon_sym_EQ_EQ] = ACTIONS(4357), - [anon_sym_BANG_EQ] = ACTIONS(4357), - [anon_sym_GT_EQ] = ACTIONS(4357), - [anon_sym_LT_EQ] = ACTIONS(4357), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_scoped] = ACTIONS(4355), - [anon_sym_var] = ACTIONS(4355), - [anon_sym_yield] = ACTIONS(4355), - [anon_sym_switch] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [sym_discard] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4357), - [anon_sym_and] = ACTIONS(4355), - [anon_sym_or] = ACTIONS(4355), - [anon_sym_AMP_AMP] = ACTIONS(4357), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [sym_op_coalescing] = ACTIONS(4357), - [anon_sym_from] = ACTIONS(4355), - [anon_sym_into] = ACTIONS(4355), - [anon_sym_join] = ACTIONS(4355), - [anon_sym_on] = ACTIONS(4355), - [anon_sym_equals] = ACTIONS(4355), - [anon_sym_let] = ACTIONS(4355), - [anon_sym_orderby] = ACTIONS(4355), - [anon_sym_ascending] = ACTIONS(4355), - [anon_sym_descending] = ACTIONS(4355), - [anon_sym_group] = ACTIONS(4355), - [anon_sym_by] = ACTIONS(4355), - [anon_sym_select] = ACTIONS(4355), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_DASH_GT] = ACTIONS(4357), - [anon_sym_with] = ACTIONS(4355), - [sym_grit_metavariable] = ACTIONS(4357), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_RBRACK] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [anon_sym_RBRACE] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4560), + [anon_sym_in] = ACTIONS(4560), + [anon_sym_QMARK] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_EQ_GT] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_switch] = ACTIONS(4558), + [anon_sym_when] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(4558), + [anon_sym_LT_EQ] = ACTIONS(4558), + [anon_sym_GT_EQ] = ACTIONS(4558), + [anon_sym_and] = ACTIONS(4558), + [anon_sym_or] = ACTIONS(4558), + [anon_sym_PLUS_EQ] = ACTIONS(4558), + [anon_sym_DASH_EQ] = ACTIONS(4558), + [anon_sym_STAR_EQ] = ACTIONS(4558), + [anon_sym_SLASH_EQ] = ACTIONS(4558), + [anon_sym_PERCENT_EQ] = ACTIONS(4558), + [anon_sym_AMP_EQ] = ACTIONS(4558), + [anon_sym_CARET_EQ] = ACTIONS(4558), + [anon_sym_PIPE_EQ] = ACTIONS(4558), + [anon_sym_LT_LT_EQ] = ACTIONS(4558), + [anon_sym_GT_GT_EQ] = ACTIONS(4558), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4558), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4558), + [anon_sym_EQ_EQ] = ACTIONS(4558), + [anon_sym_BANG_EQ] = ACTIONS(4558), + [anon_sym_AMP_AMP] = ACTIONS(4558), + [anon_sym_PIPE_PIPE] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [sym_op_bitwise_or] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [sym_op_left_shift] = ACTIONS(4560), + [sym_op_right_shift] = ACTIONS(4560), + [sym_op_unsigned_right_shift] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4560), + [anon_sym_DASH] = ACTIONS(4560), + [sym_op_divide] = ACTIONS(4560), + [sym_op_modulo] = ACTIONS(4560), + [sym_op_coalescing] = ACTIONS(4560), + [anon_sym_BANG] = ACTIONS(4560), + [anon_sym_PLUS_PLUS] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4558), + [anon_sym_into] = ACTIONS(4558), + [anon_sym_on] = ACTIONS(4558), + [anon_sym_equals] = ACTIONS(4558), + [anon_sym_by] = ACTIONS(4558), + [anon_sym_as] = ACTIONS(4558), + [anon_sym_is] = ACTIONS(4558), + [anon_sym_DASH_GT] = ACTIONS(4558), + [anon_sym_with] = ACTIONS(4558), + [aux_sym_preproc_if_token3] = ACTIONS(4558), + [aux_sym_preproc_else_token1] = ACTIONS(4558), + [aux_sym_preproc_elif_token1] = ACTIONS(4558), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2882] = { [sym_preproc_region] = STATE(2882), @@ -473689,80 +473427,80 @@ 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), - [sym__identifier_token] = ACTIONS(4355), - [anon_sym_alias] = ACTIONS(4355), - [anon_sym_global] = ACTIONS(4355), - [anon_sym_LBRACK] = ACTIONS(4357), - [anon_sym_COLON] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4357), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_file] = ACTIONS(4355), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_notnull] = ACTIONS(4355), - [anon_sym_unmanaged] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_PLUS_PLUS] = ACTIONS(4357), - [anon_sym_DASH_DASH] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4357), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4357), - [anon_sym_CARET] = ACTIONS(4357), - [anon_sym_PIPE] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_LT] = ACTIONS(4357), - [anon_sym_GT_GT] = ACTIONS(4355), - [anon_sym_GT_GT_GT] = ACTIONS(4357), - [anon_sym_EQ_EQ] = ACTIONS(4357), - [anon_sym_BANG_EQ] = ACTIONS(4357), - [anon_sym_GT_EQ] = ACTIONS(4357), - [anon_sym_LT_EQ] = ACTIONS(4357), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_scoped] = ACTIONS(4355), - [anon_sym_var] = ACTIONS(4355), - [anon_sym_yield] = ACTIONS(4355), - [anon_sym_switch] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [sym_discard] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4357), - [anon_sym_and] = ACTIONS(4355), - [anon_sym_or] = ACTIONS(4355), - [anon_sym_AMP_AMP] = ACTIONS(4357), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [sym_op_coalescing] = ACTIONS(4357), - [anon_sym_from] = ACTIONS(4355), - [anon_sym_into] = ACTIONS(4355), - [anon_sym_join] = ACTIONS(4355), - [anon_sym_on] = ACTIONS(4355), - [anon_sym_equals] = ACTIONS(4355), - [anon_sym_let] = ACTIONS(4355), - [anon_sym_orderby] = ACTIONS(4355), - [anon_sym_ascending] = ACTIONS(4355), - [anon_sym_descending] = ACTIONS(4355), - [anon_sym_group] = ACTIONS(4355), - [anon_sym_by] = ACTIONS(4355), - [anon_sym_select] = ACTIONS(4355), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_DASH_GT] = ACTIONS(4357), - [anon_sym_with] = ACTIONS(4355), - [sym_grit_metavariable] = ACTIONS(4357), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4357), + [sym__identifier_token] = ACTIONS(5122), + [anon_sym_extern] = ACTIONS(5122), + [anon_sym_alias] = ACTIONS(5122), + [anon_sym_global] = ACTIONS(5122), + [anon_sym_using] = ACTIONS(5122), + [anon_sym_unsafe] = ACTIONS(5122), + [anon_sym_static] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_event] = ACTIONS(5122), + [anon_sym_namespace] = ACTIONS(5122), + [anon_sym_class] = ACTIONS(5122), + [anon_sym_ref] = ACTIONS(5122), + [anon_sym_struct] = ACTIONS(5122), + [anon_sym_enum] = ACTIONS(5122), + [anon_sym_RBRACE] = ACTIONS(5124), + [anon_sym_interface] = ACTIONS(5122), + [anon_sym_delegate] = ACTIONS(5122), + [anon_sym_record] = ACTIONS(5122), + [anon_sym_public] = ACTIONS(5122), + [anon_sym_private] = ACTIONS(5122), + [anon_sym_readonly] = ACTIONS(5122), + [anon_sym_abstract] = ACTIONS(5122), + [anon_sym_async] = ACTIONS(5122), + [anon_sym_const] = ACTIONS(5122), + [anon_sym_file] = ACTIONS(5122), + [anon_sym_fixed] = ACTIONS(5122), + [anon_sym_internal] = ACTIONS(5122), + [anon_sym_new] = ACTIONS(5122), + [anon_sym_override] = ACTIONS(5122), + [anon_sym_partial] = ACTIONS(5122), + [anon_sym_protected] = ACTIONS(5122), + [anon_sym_required] = ACTIONS(5122), + [anon_sym_sealed] = ACTIONS(5122), + [anon_sym_virtual] = ACTIONS(5122), + [anon_sym_volatile] = ACTIONS(5122), + [anon_sym_where] = ACTIONS(5122), + [anon_sym_notnull] = ACTIONS(5122), + [anon_sym_unmanaged] = ACTIONS(5122), + [anon_sym_implicit] = ACTIONS(5122), + [anon_sym_explicit] = ACTIONS(5122), + [anon_sym_TILDE] = ACTIONS(5124), + [anon_sym_scoped] = ACTIONS(5122), + [anon_sym_var] = ACTIONS(5122), + [sym_predefined_type] = ACTIONS(5122), + [anon_sym_yield] = ACTIONS(5122), + [anon_sym_when] = 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_ascending] = ACTIONS(5122), + [anon_sym_descending] = ACTIONS(5122), + [anon_sym_group] = ACTIONS(5122), + [anon_sym_by] = ACTIONS(5122), + [anon_sym_select] = ACTIONS(5122), + [sym_grit_metavariable] = ACTIONS(5124), + [aux_sym_preproc_if_token1] = ACTIONS(5124), + [aux_sym_preproc_if_token3] = ACTIONS(5124), + [aux_sym_preproc_else_token1] = ACTIONS(5124), + [aux_sym_preproc_elif_token1] = ACTIONS(5124), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2883] = { [sym_preproc_region] = STATE(2883), @@ -473774,70 +473512,70 @@ 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), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_unsafe] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_event] = ACTIONS(3600), - [anon_sym_namespace] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_ref] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_interface] = ACTIONS(3600), - [anon_sym_delegate] = ACTIONS(3600), - [anon_sym_record] = ACTIONS(3600), - [anon_sym_public] = ACTIONS(3600), - [anon_sym_private] = ACTIONS(3600), - [anon_sym_readonly] = ACTIONS(3600), - [anon_sym_abstract] = ACTIONS(3600), - [anon_sym_async] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_fixed] = ACTIONS(3600), - [anon_sym_internal] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3600), - [anon_sym_override] = ACTIONS(3600), - [anon_sym_partial] = ACTIONS(3600), - [anon_sym_protected] = ACTIONS(3600), - [anon_sym_required] = ACTIONS(3600), - [anon_sym_sealed] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_implicit] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_var] = ACTIONS(3600), - [sym_predefined_type] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_when] = 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), - [sym_grit_metavariable] = ACTIONS(3602), - [aux_sym_preproc_if_token1] = 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(4562), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_RBRACK] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [anon_sym_RBRACE] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4564), + [anon_sym_in] = ACTIONS(4564), + [anon_sym_QMARK] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_EQ_GT] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4564), + [anon_sym_switch] = ACTIONS(4562), + [anon_sym_when] = ACTIONS(4562), + [anon_sym_DOT_DOT] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_and] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4562), + [anon_sym_PLUS_EQ] = ACTIONS(4562), + [anon_sym_DASH_EQ] = ACTIONS(4562), + [anon_sym_STAR_EQ] = ACTIONS(4562), + [anon_sym_SLASH_EQ] = ACTIONS(4562), + [anon_sym_PERCENT_EQ] = ACTIONS(4562), + [anon_sym_AMP_EQ] = ACTIONS(4562), + [anon_sym_CARET_EQ] = ACTIONS(4562), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_LT_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4562), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4562), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [sym_op_bitwise_or] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [sym_op_left_shift] = ACTIONS(4564), + [sym_op_right_shift] = ACTIONS(4564), + [sym_op_unsigned_right_shift] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4564), + [sym_op_divide] = ACTIONS(4564), + [sym_op_modulo] = ACTIONS(4564), + [sym_op_coalescing] = ACTIONS(4564), + [anon_sym_BANG] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_into] = ACTIONS(4562), + [anon_sym_on] = ACTIONS(4562), + [anon_sym_equals] = ACTIONS(4562), + [anon_sym_by] = ACTIONS(4562), + [anon_sym_as] = ACTIONS(4562), + [anon_sym_is] = ACTIONS(4562), + [anon_sym_DASH_GT] = ACTIONS(4562), + [anon_sym_with] = ACTIONS(4562), + [aux_sym_preproc_if_token3] = ACTIONS(4562), + [aux_sym_preproc_else_token1] = ACTIONS(4562), + [aux_sym_preproc_elif_token1] = ACTIONS(4562), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473859,70 +473597,70 @@ 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), - [sym__identifier_token] = ACTIONS(3668), - [anon_sym_extern] = ACTIONS(3668), - [anon_sym_alias] = ACTIONS(3668), - [anon_sym_global] = ACTIONS(3668), - [anon_sym_using] = ACTIONS(3668), - [anon_sym_unsafe] = ACTIONS(3668), - [anon_sym_static] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3670), - [anon_sym_LPAREN] = ACTIONS(3670), - [anon_sym_event] = ACTIONS(3668), - [anon_sym_namespace] = ACTIONS(3668), - [anon_sym_class] = ACTIONS(3668), - [anon_sym_ref] = ACTIONS(3668), - [anon_sym_struct] = ACTIONS(3668), - [anon_sym_enum] = ACTIONS(3668), - [anon_sym_RBRACE] = ACTIONS(3670), - [anon_sym_interface] = ACTIONS(3668), - [anon_sym_delegate] = ACTIONS(3668), - [anon_sym_record] = ACTIONS(3668), - [anon_sym_public] = ACTIONS(3668), - [anon_sym_private] = ACTIONS(3668), - [anon_sym_readonly] = ACTIONS(3668), - [anon_sym_abstract] = ACTIONS(3668), - [anon_sym_async] = ACTIONS(3668), - [anon_sym_const] = ACTIONS(3668), - [anon_sym_file] = ACTIONS(3668), - [anon_sym_fixed] = ACTIONS(3668), - [anon_sym_internal] = ACTIONS(3668), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_override] = ACTIONS(3668), - [anon_sym_partial] = ACTIONS(3668), - [anon_sym_protected] = ACTIONS(3668), - [anon_sym_required] = ACTIONS(3668), - [anon_sym_sealed] = ACTIONS(3668), - [anon_sym_virtual] = ACTIONS(3668), - [anon_sym_volatile] = ACTIONS(3668), - [anon_sym_where] = ACTIONS(3668), - [anon_sym_notnull] = ACTIONS(3668), - [anon_sym_unmanaged] = ACTIONS(3668), - [anon_sym_TILDE] = ACTIONS(3670), - [anon_sym_implicit] = ACTIONS(3668), - [anon_sym_explicit] = ACTIONS(3668), - [anon_sym_scoped] = ACTIONS(3668), - [anon_sym_var] = ACTIONS(3668), - [sym_predefined_type] = ACTIONS(3668), - [anon_sym_yield] = ACTIONS(3668), - [anon_sym_when] = ACTIONS(3668), - [anon_sym_from] = ACTIONS(3668), - [anon_sym_into] = ACTIONS(3668), - [anon_sym_join] = ACTIONS(3668), - [anon_sym_on] = ACTIONS(3668), - [anon_sym_equals] = ACTIONS(3668), - [anon_sym_let] = ACTIONS(3668), - [anon_sym_orderby] = ACTIONS(3668), - [anon_sym_ascending] = ACTIONS(3668), - [anon_sym_descending] = ACTIONS(3668), - [anon_sym_group] = ACTIONS(3668), - [anon_sym_by] = ACTIONS(3668), - [anon_sym_select] = ACTIONS(3668), - [sym_grit_metavariable] = ACTIONS(3670), - [aux_sym_preproc_if_token1] = ACTIONS(3670), - [aux_sym_preproc_if_token3] = ACTIONS(3670), - [aux_sym_preproc_else_token1] = ACTIONS(3670), - [aux_sym_preproc_elif_token1] = ACTIONS(3670), + [sym__identifier_token] = ACTIONS(3612), + [anon_sym_extern] = ACTIONS(3612), + [anon_sym_alias] = ACTIONS(3612), + [anon_sym_global] = ACTIONS(3612), + [anon_sym_using] = ACTIONS(3612), + [anon_sym_unsafe] = ACTIONS(3612), + [anon_sym_static] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_event] = ACTIONS(3612), + [anon_sym_namespace] = ACTIONS(3612), + [anon_sym_class] = ACTIONS(3612), + [anon_sym_ref] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3612), + [anon_sym_enum] = ACTIONS(3612), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym_interface] = ACTIONS(3612), + [anon_sym_delegate] = ACTIONS(3612), + [anon_sym_record] = ACTIONS(3612), + [anon_sym_public] = ACTIONS(3612), + [anon_sym_private] = ACTIONS(3612), + [anon_sym_readonly] = ACTIONS(3612), + [anon_sym_abstract] = ACTIONS(3612), + [anon_sym_async] = ACTIONS(3612), + [anon_sym_const] = ACTIONS(3612), + [anon_sym_file] = ACTIONS(3612), + [anon_sym_fixed] = ACTIONS(3612), + [anon_sym_internal] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_override] = ACTIONS(3612), + [anon_sym_partial] = ACTIONS(3612), + [anon_sym_protected] = ACTIONS(3612), + [anon_sym_required] = ACTIONS(3612), + [anon_sym_sealed] = ACTIONS(3612), + [anon_sym_virtual] = ACTIONS(3612), + [anon_sym_volatile] = ACTIONS(3612), + [anon_sym_where] = ACTIONS(3612), + [anon_sym_notnull] = ACTIONS(3612), + [anon_sym_unmanaged] = ACTIONS(3612), + [anon_sym_implicit] = ACTIONS(3612), + [anon_sym_explicit] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_scoped] = ACTIONS(3612), + [anon_sym_var] = ACTIONS(3612), + [sym_predefined_type] = ACTIONS(3612), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_when] = 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_ascending] = ACTIONS(3612), + [anon_sym_descending] = ACTIONS(3612), + [anon_sym_group] = ACTIONS(3612), + [anon_sym_by] = ACTIONS(3612), + [anon_sym_select] = ACTIONS(3612), + [sym_grit_metavariable] = ACTIONS(3614), + [aux_sym_preproc_if_token1] = ACTIONS(3614), + [aux_sym_preproc_if_token3] = ACTIONS(3614), + [aux_sym_preproc_else_token1] = ACTIONS(3614), + [aux_sym_preproc_elif_token1] = ACTIONS(3614), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473935,27 +473673,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2885] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), [sym_preproc_region] = STATE(2885), [sym_preproc_endregion] = STATE(2885), [sym_preproc_line] = STATE(2885), @@ -473965,49 +473682,70 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4752), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_from] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_join] = ACTIONS(4752), - [anon_sym_let] = ACTIONS(4752), - [anon_sym_orderby] = ACTIONS(4752), - [anon_sym_group] = ACTIONS(4752), - [anon_sym_select] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4538), + [anon_sym_COLON] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4538), + [anon_sym_RBRACK] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4538), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_RBRACE] = ACTIONS(4538), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_in] = ACTIONS(4536), + [anon_sym_QMARK] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_EQ_GT] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_switch] = ACTIONS(4538), + [anon_sym_when] = ACTIONS(4538), + [anon_sym_DOT_DOT] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4538), + [anon_sym_and] = ACTIONS(4538), + [anon_sym_or] = ACTIONS(4538), + [anon_sym_PLUS_EQ] = ACTIONS(4538), + [anon_sym_DASH_EQ] = ACTIONS(4538), + [anon_sym_STAR_EQ] = ACTIONS(4538), + [anon_sym_SLASH_EQ] = ACTIONS(4538), + [anon_sym_PERCENT_EQ] = ACTIONS(4538), + [anon_sym_AMP_EQ] = ACTIONS(4538), + [anon_sym_CARET_EQ] = ACTIONS(4538), + [anon_sym_PIPE_EQ] = ACTIONS(4538), + [anon_sym_LT_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4538), + [anon_sym_BANG_EQ] = ACTIONS(4538), + [anon_sym_AMP_AMP] = ACTIONS(4538), + [anon_sym_PIPE_PIPE] = ACTIONS(4538), + [anon_sym_AMP] = ACTIONS(4536), + [sym_op_bitwise_or] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [sym_op_left_shift] = ACTIONS(4536), + [sym_op_right_shift] = ACTIONS(4536), + [sym_op_unsigned_right_shift] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [sym_op_divide] = ACTIONS(4536), + [sym_op_modulo] = ACTIONS(4536), + [sym_op_coalescing] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PLUS_PLUS] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4538), + [anon_sym_into] = ACTIONS(4538), + [anon_sym_on] = ACTIONS(4538), + [anon_sym_equals] = ACTIONS(4538), + [anon_sym_by] = ACTIONS(4538), + [anon_sym_as] = ACTIONS(4538), + [anon_sym_is] = ACTIONS(4538), + [anon_sym_DASH_GT] = ACTIONS(4538), + [anon_sym_with] = ACTIONS(4538), + [aux_sym_preproc_if_token3] = ACTIONS(4538), + [aux_sym_preproc_else_token1] = ACTIONS(4538), + [aux_sym_preproc_elif_token1] = ACTIONS(4538), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474029,70 +473767,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2886), [sym_preproc_define] = STATE(2886), [sym_preproc_undef] = STATE(2886), - [sym__identifier_token] = ACTIONS(3592), - [anon_sym_extern] = ACTIONS(3592), - [anon_sym_alias] = ACTIONS(3592), - [anon_sym_global] = ACTIONS(3592), - [anon_sym_using] = ACTIONS(3592), - [anon_sym_unsafe] = ACTIONS(3592), - [anon_sym_static] = ACTIONS(3592), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_event] = ACTIONS(3592), - [anon_sym_namespace] = ACTIONS(3592), - [anon_sym_class] = ACTIONS(3592), - [anon_sym_ref] = ACTIONS(3592), - [anon_sym_struct] = ACTIONS(3592), - [anon_sym_enum] = ACTIONS(3592), - [anon_sym_RBRACE] = ACTIONS(3594), - [anon_sym_interface] = ACTIONS(3592), - [anon_sym_delegate] = ACTIONS(3592), - [anon_sym_record] = ACTIONS(3592), - [anon_sym_public] = ACTIONS(3592), - [anon_sym_private] = ACTIONS(3592), - [anon_sym_readonly] = ACTIONS(3592), - [anon_sym_abstract] = ACTIONS(3592), - [anon_sym_async] = ACTIONS(3592), - [anon_sym_const] = ACTIONS(3592), - [anon_sym_file] = ACTIONS(3592), - [anon_sym_fixed] = ACTIONS(3592), - [anon_sym_internal] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3592), - [anon_sym_override] = ACTIONS(3592), - [anon_sym_partial] = ACTIONS(3592), - [anon_sym_protected] = ACTIONS(3592), - [anon_sym_required] = ACTIONS(3592), - [anon_sym_sealed] = ACTIONS(3592), - [anon_sym_virtual] = ACTIONS(3592), - [anon_sym_volatile] = ACTIONS(3592), - [anon_sym_where] = ACTIONS(3592), - [anon_sym_notnull] = ACTIONS(3592), - [anon_sym_unmanaged] = ACTIONS(3592), - [anon_sym_TILDE] = ACTIONS(3594), - [anon_sym_implicit] = ACTIONS(3592), - [anon_sym_explicit] = ACTIONS(3592), - [anon_sym_scoped] = ACTIONS(3592), - [anon_sym_var] = ACTIONS(3592), - [sym_predefined_type] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3592), - [anon_sym_when] = ACTIONS(3592), - [anon_sym_from] = ACTIONS(3592), - [anon_sym_into] = ACTIONS(3592), - [anon_sym_join] = ACTIONS(3592), - [anon_sym_on] = ACTIONS(3592), - [anon_sym_equals] = ACTIONS(3592), - [anon_sym_let] = ACTIONS(3592), - [anon_sym_orderby] = ACTIONS(3592), - [anon_sym_ascending] = ACTIONS(3592), - [anon_sym_descending] = ACTIONS(3592), - [anon_sym_group] = ACTIONS(3592), - [anon_sym_by] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3592), - [sym_grit_metavariable] = ACTIONS(3594), - [aux_sym_preproc_if_token1] = ACTIONS(3594), - [aux_sym_preproc_if_token3] = ACTIONS(3594), - [aux_sym_preproc_else_token1] = ACTIONS(3594), - [aux_sym_preproc_elif_token1] = ACTIONS(3594), + [sym__identifier_token] = ACTIONS(5126), + [anon_sym_extern] = ACTIONS(5126), + [anon_sym_alias] = ACTIONS(5126), + [anon_sym_global] = ACTIONS(5126), + [anon_sym_using] = ACTIONS(5126), + [anon_sym_unsafe] = ACTIONS(5126), + [anon_sym_static] = ACTIONS(5126), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_event] = ACTIONS(5126), + [anon_sym_namespace] = ACTIONS(5126), + [anon_sym_class] = ACTIONS(5126), + [anon_sym_ref] = ACTIONS(5126), + [anon_sym_struct] = ACTIONS(5126), + [anon_sym_enum] = ACTIONS(5126), + [anon_sym_RBRACE] = ACTIONS(5128), + [anon_sym_interface] = ACTIONS(5126), + [anon_sym_delegate] = ACTIONS(5126), + [anon_sym_record] = ACTIONS(5126), + [anon_sym_public] = ACTIONS(5126), + [anon_sym_private] = ACTIONS(5126), + [anon_sym_readonly] = ACTIONS(5126), + [anon_sym_abstract] = ACTIONS(5126), + [anon_sym_async] = ACTIONS(5126), + [anon_sym_const] = ACTIONS(5126), + [anon_sym_file] = ACTIONS(5126), + [anon_sym_fixed] = ACTIONS(5126), + [anon_sym_internal] = ACTIONS(5126), + [anon_sym_new] = ACTIONS(5126), + [anon_sym_override] = ACTIONS(5126), + [anon_sym_partial] = ACTIONS(5126), + [anon_sym_protected] = ACTIONS(5126), + [anon_sym_required] = ACTIONS(5126), + [anon_sym_sealed] = ACTIONS(5126), + [anon_sym_virtual] = ACTIONS(5126), + [anon_sym_volatile] = ACTIONS(5126), + [anon_sym_where] = ACTIONS(5126), + [anon_sym_notnull] = ACTIONS(5126), + [anon_sym_unmanaged] = ACTIONS(5126), + [anon_sym_implicit] = ACTIONS(5126), + [anon_sym_explicit] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5128), + [anon_sym_scoped] = ACTIONS(5126), + [anon_sym_var] = ACTIONS(5126), + [sym_predefined_type] = ACTIONS(5126), + [anon_sym_yield] = ACTIONS(5126), + [anon_sym_when] = 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_ascending] = ACTIONS(5126), + [anon_sym_descending] = ACTIONS(5126), + [anon_sym_group] = ACTIONS(5126), + [anon_sym_by] = ACTIONS(5126), + [anon_sym_select] = ACTIONS(5126), + [sym_grit_metavariable] = ACTIONS(5128), + [aux_sym_preproc_if_token1] = ACTIONS(5128), + [aux_sym_preproc_if_token3] = ACTIONS(5128), + [aux_sym_preproc_else_token1] = ACTIONS(5128), + [aux_sym_preproc_elif_token1] = ACTIONS(5128), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474114,70 +473852,70 @@ 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(4546), - [anon_sym_EQ] = ACTIONS(4548), - [anon_sym_LBRACK] = ACTIONS(4546), - [anon_sym_COLON] = ACTIONS(4546), - [anon_sym_COMMA] = ACTIONS(4546), - [anon_sym_RBRACK] = ACTIONS(4546), - [anon_sym_LPAREN] = ACTIONS(4546), - [anon_sym_RPAREN] = ACTIONS(4546), - [anon_sym_RBRACE] = ACTIONS(4546), - [anon_sym_LT] = ACTIONS(4548), - [anon_sym_GT] = ACTIONS(4548), - [anon_sym_in] = ACTIONS(4548), - [anon_sym_QMARK] = ACTIONS(4548), - [anon_sym_BANG] = ACTIONS(4548), - [anon_sym_PLUS_PLUS] = ACTIONS(4546), - [anon_sym_DASH_DASH] = ACTIONS(4546), - [anon_sym_PLUS] = ACTIONS(4548), - [anon_sym_DASH] = ACTIONS(4548), - [anon_sym_STAR] = ACTIONS(4548), - [anon_sym_SLASH] = ACTIONS(4548), - [anon_sym_PERCENT] = ACTIONS(4548), - [anon_sym_CARET] = ACTIONS(4548), - [anon_sym_PIPE] = ACTIONS(4548), - [anon_sym_AMP] = ACTIONS(4548), - [anon_sym_LT_LT] = ACTIONS(4548), - [anon_sym_GT_GT] = ACTIONS(4548), - [anon_sym_GT_GT_GT] = ACTIONS(4548), - [anon_sym_EQ_EQ] = ACTIONS(4546), - [anon_sym_BANG_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_DOT] = ACTIONS(4548), - [anon_sym_EQ_GT] = ACTIONS(4546), - [anon_sym_switch] = ACTIONS(4546), - [anon_sym_when] = ACTIONS(4546), - [anon_sym_DOT_DOT] = ACTIONS(4546), - [anon_sym_and] = ACTIONS(4546), - [anon_sym_or] = ACTIONS(4546), - [anon_sym_PLUS_EQ] = ACTIONS(4546), - [anon_sym_DASH_EQ] = ACTIONS(4546), - [anon_sym_STAR_EQ] = ACTIONS(4546), - [anon_sym_SLASH_EQ] = ACTIONS(4546), - [anon_sym_PERCENT_EQ] = ACTIONS(4546), - [anon_sym_AMP_EQ] = ACTIONS(4546), - [anon_sym_CARET_EQ] = ACTIONS(4546), - [anon_sym_PIPE_EQ] = ACTIONS(4546), - [anon_sym_LT_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_GT_EQ] = ACTIONS(4546), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4546), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4546), - [anon_sym_AMP_AMP] = ACTIONS(4546), - [anon_sym_PIPE_PIPE] = ACTIONS(4546), - [sym_op_coalescing] = ACTIONS(4548), - [anon_sym_into] = ACTIONS(4546), - [anon_sym_on] = ACTIONS(4546), - [anon_sym_equals] = ACTIONS(4546), - [anon_sym_by] = ACTIONS(4546), - [anon_sym_as] = ACTIONS(4546), - [anon_sym_is] = ACTIONS(4546), - [anon_sym_DASH_GT] = ACTIONS(4546), - [anon_sym_with] = ACTIONS(4546), - [aux_sym_preproc_if_token3] = ACTIONS(4546), - [aux_sym_preproc_else_token1] = ACTIONS(4546), - [aux_sym_preproc_elif_token1] = ACTIONS(4546), + [sym__identifier_token] = ACTIONS(3616), + [anon_sym_extern] = ACTIONS(3616), + [anon_sym_alias] = ACTIONS(3616), + [anon_sym_global] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_unsafe] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_event] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_ref] = ACTIONS(3616), + [anon_sym_struct] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3616), + [anon_sym_delegate] = ACTIONS(3616), + [anon_sym_record] = ACTIONS(3616), + [anon_sym_public] = ACTIONS(3616), + [anon_sym_private] = ACTIONS(3616), + [anon_sym_readonly] = ACTIONS(3616), + [anon_sym_abstract] = ACTIONS(3616), + [anon_sym_async] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_file] = ACTIONS(3616), + [anon_sym_fixed] = ACTIONS(3616), + [anon_sym_internal] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_override] = ACTIONS(3616), + [anon_sym_partial] = ACTIONS(3616), + [anon_sym_protected] = ACTIONS(3616), + [anon_sym_required] = ACTIONS(3616), + [anon_sym_sealed] = ACTIONS(3616), + [anon_sym_virtual] = ACTIONS(3616), + [anon_sym_volatile] = ACTIONS(3616), + [anon_sym_where] = ACTIONS(3616), + [anon_sym_notnull] = ACTIONS(3616), + [anon_sym_unmanaged] = ACTIONS(3616), + [anon_sym_implicit] = ACTIONS(3616), + [anon_sym_explicit] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_scoped] = ACTIONS(3616), + [anon_sym_var] = ACTIONS(3616), + [sym_predefined_type] = ACTIONS(3616), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_when] = 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_ascending] = ACTIONS(3616), + [anon_sym_descending] = ACTIONS(3616), + [anon_sym_group] = ACTIONS(3616), + [anon_sym_by] = ACTIONS(3616), + [anon_sym_select] = ACTIONS(3616), + [sym_grit_metavariable] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token3] = ACTIONS(3618), + [aux_sym_preproc_else_token1] = ACTIONS(3618), + [aux_sym_preproc_elif_token1] = ACTIONS(3618), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474190,6 +473928,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2888] = { + [sym__variable_designation] = STATE(5503), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym_identifier] = STATE(5489), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2888), [sym_preproc_endregion] = STATE(2888), [sym_preproc_line] = STATE(2888), @@ -474199,155 +473941,151 @@ 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(4550), - [anon_sym_EQ] = ACTIONS(4552), - [anon_sym_LBRACK] = ACTIONS(4550), - [anon_sym_COLON] = ACTIONS(4550), - [anon_sym_COMMA] = ACTIONS(4550), - [anon_sym_RBRACK] = ACTIONS(4550), - [anon_sym_LPAREN] = ACTIONS(4550), - [anon_sym_RPAREN] = ACTIONS(4550), - [anon_sym_RBRACE] = ACTIONS(4550), - [anon_sym_LT] = ACTIONS(4552), - [anon_sym_GT] = ACTIONS(4552), - [anon_sym_in] = ACTIONS(4552), - [anon_sym_QMARK] = ACTIONS(4552), - [anon_sym_BANG] = ACTIONS(4552), - [anon_sym_PLUS_PLUS] = ACTIONS(4550), - [anon_sym_DASH_DASH] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4552), - [anon_sym_SLASH] = ACTIONS(4552), - [anon_sym_PERCENT] = ACTIONS(4552), - [anon_sym_CARET] = ACTIONS(4552), - [anon_sym_PIPE] = ACTIONS(4552), - [anon_sym_AMP] = ACTIONS(4552), - [anon_sym_LT_LT] = ACTIONS(4552), - [anon_sym_GT_GT] = ACTIONS(4552), - [anon_sym_GT_GT_GT] = ACTIONS(4552), - [anon_sym_EQ_EQ] = ACTIONS(4550), - [anon_sym_BANG_EQ] = ACTIONS(4550), - [anon_sym_GT_EQ] = ACTIONS(4550), - [anon_sym_LT_EQ] = ACTIONS(4550), - [anon_sym_DOT] = ACTIONS(4552), - [anon_sym_EQ_GT] = ACTIONS(4550), - [anon_sym_switch] = ACTIONS(4550), - [anon_sym_when] = ACTIONS(4550), - [anon_sym_DOT_DOT] = ACTIONS(4550), - [anon_sym_and] = ACTIONS(4550), - [anon_sym_or] = ACTIONS(4550), - [anon_sym_PLUS_EQ] = ACTIONS(4550), - [anon_sym_DASH_EQ] = ACTIONS(4550), - [anon_sym_STAR_EQ] = ACTIONS(4550), - [anon_sym_SLASH_EQ] = ACTIONS(4550), - [anon_sym_PERCENT_EQ] = ACTIONS(4550), - [anon_sym_AMP_EQ] = ACTIONS(4550), - [anon_sym_CARET_EQ] = ACTIONS(4550), - [anon_sym_PIPE_EQ] = ACTIONS(4550), - [anon_sym_LT_LT_EQ] = ACTIONS(4550), - [anon_sym_GT_GT_EQ] = ACTIONS(4550), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4550), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4550), - [anon_sym_AMP_AMP] = ACTIONS(4550), - [anon_sym_PIPE_PIPE] = ACTIONS(4550), - [sym_op_coalescing] = ACTIONS(4552), - [anon_sym_into] = ACTIONS(4550), - [anon_sym_on] = ACTIONS(4550), - [anon_sym_equals] = ACTIONS(4550), - [anon_sym_by] = ACTIONS(4550), - [anon_sym_as] = ACTIONS(4550), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_DASH_GT] = ACTIONS(4550), - [anon_sym_with] = ACTIONS(4550), - [aux_sym_preproc_if_token3] = ACTIONS(4550), - [aux_sym_preproc_else_token1] = ACTIONS(4550), - [aux_sym_preproc_elif_token1] = ACTIONS(4550), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2889] = { - [sym_preproc_region] = STATE(2889), - [sym_preproc_endregion] = STATE(2889), - [sym_preproc_line] = STATE(2889), - [sym_preproc_pragma] = STATE(2889), - [sym_preproc_nullable] = STATE(2889), - [sym_preproc_error] = STATE(2889), - [sym_preproc_warning] = STATE(2889), - [sym_preproc_define] = STATE(2889), - [sym_preproc_undef] = STATE(2889), - [sym__identifier_token] = ACTIONS(3656), - [anon_sym_extern] = ACTIONS(3656), - [anon_sym_alias] = ACTIONS(3656), - [anon_sym_global] = ACTIONS(3656), - [anon_sym_using] = ACTIONS(3656), - [anon_sym_unsafe] = ACTIONS(3656), - [anon_sym_static] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_event] = ACTIONS(3656), - [anon_sym_namespace] = ACTIONS(3656), - [anon_sym_class] = ACTIONS(3656), - [anon_sym_ref] = ACTIONS(3656), - [anon_sym_struct] = ACTIONS(3656), - [anon_sym_enum] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3658), - [anon_sym_interface] = ACTIONS(3656), - [anon_sym_delegate] = ACTIONS(3656), - [anon_sym_record] = ACTIONS(3656), - [anon_sym_public] = ACTIONS(3656), - [anon_sym_private] = ACTIONS(3656), - [anon_sym_readonly] = ACTIONS(3656), - [anon_sym_abstract] = ACTIONS(3656), - [anon_sym_async] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_file] = ACTIONS(3656), - [anon_sym_fixed] = ACTIONS(3656), - [anon_sym_internal] = ACTIONS(3656), - [anon_sym_new] = ACTIONS(3656), - [anon_sym_override] = ACTIONS(3656), - [anon_sym_partial] = ACTIONS(3656), - [anon_sym_protected] = ACTIONS(3656), - [anon_sym_required] = ACTIONS(3656), - [anon_sym_sealed] = ACTIONS(3656), - [anon_sym_virtual] = ACTIONS(3656), - [anon_sym_volatile] = ACTIONS(3656), - [anon_sym_where] = ACTIONS(3656), - [anon_sym_notnull] = ACTIONS(3656), - [anon_sym_unmanaged] = ACTIONS(3656), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_implicit] = ACTIONS(3656), - [anon_sym_explicit] = ACTIONS(3656), - [anon_sym_scoped] = ACTIONS(3656), - [anon_sym_var] = ACTIONS(3656), - [sym_predefined_type] = ACTIONS(3656), - [anon_sym_yield] = ACTIONS(3656), - [anon_sym_when] = 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_ascending] = ACTIONS(3656), - [anon_sym_descending] = ACTIONS(3656), - [anon_sym_group] = ACTIONS(3656), - [anon_sym_by] = ACTIONS(3656), - [anon_sym_select] = ACTIONS(3656), - [sym_grit_metavariable] = ACTIONS(3658), - [aux_sym_preproc_if_token1] = ACTIONS(3658), - [aux_sym_preproc_if_token3] = ACTIONS(3658), - [aux_sym_preproc_else_token1] = ACTIONS(3658), - [aux_sym_preproc_elif_token1] = ACTIONS(3658), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4308), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4210), + [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4210), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4308), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4308), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4308), + [anon_sym_orderby] = ACTIONS(4308), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4308), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4308), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4214), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2889] = { + [sym_preproc_region] = STATE(2889), + [sym_preproc_endregion] = STATE(2889), + [sym_preproc_line] = STATE(2889), + [sym_preproc_pragma] = STATE(2889), + [sym_preproc_nullable] = STATE(2889), + [sym_preproc_error] = STATE(2889), + [sym_preproc_warning] = STATE(2889), + [sym_preproc_define] = STATE(2889), + [sym_preproc_undef] = STATE(2889), + [sym__identifier_token] = ACTIONS(5130), + [anon_sym_extern] = ACTIONS(5130), + [anon_sym_alias] = ACTIONS(5130), + [anon_sym_global] = ACTIONS(5130), + [anon_sym_using] = 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_namespace] = ACTIONS(5130), + [anon_sym_class] = ACTIONS(5130), + [anon_sym_ref] = ACTIONS(5130), + [anon_sym_struct] = ACTIONS(5130), + [anon_sym_enum] = ACTIONS(5130), + [anon_sym_RBRACE] = ACTIONS(5132), + [anon_sym_interface] = ACTIONS(5130), + [anon_sym_delegate] = ACTIONS(5130), + [anon_sym_record] = ACTIONS(5130), + [anon_sym_public] = ACTIONS(5130), + [anon_sym_private] = ACTIONS(5130), + [anon_sym_readonly] = 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_protected] = 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_implicit] = ACTIONS(5130), + [anon_sym_explicit] = ACTIONS(5130), + [anon_sym_TILDE] = ACTIONS(5132), + [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), + [sym_grit_metavariable] = ACTIONS(5132), + [aux_sym_preproc_if_token1] = ACTIONS(5132), + [aux_sym_preproc_if_token3] = ACTIONS(5132), + [aux_sym_preproc_else_token1] = ACTIONS(5132), + [aux_sym_preproc_elif_token1] = ACTIONS(5132), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474369,70 +474107,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2890), [sym_preproc_define] = STATE(2890), [sym_preproc_undef] = STATE(2890), - [sym__identifier_token] = ACTIONS(3672), - [anon_sym_extern] = ACTIONS(3672), - [anon_sym_alias] = ACTIONS(3672), - [anon_sym_global] = ACTIONS(3672), - [anon_sym_using] = ACTIONS(3672), - [anon_sym_unsafe] = ACTIONS(3672), - [anon_sym_static] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_event] = ACTIONS(3672), - [anon_sym_namespace] = ACTIONS(3672), - [anon_sym_class] = ACTIONS(3672), - [anon_sym_ref] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(3672), - [anon_sym_enum] = ACTIONS(3672), - [anon_sym_RBRACE] = ACTIONS(3674), - [anon_sym_interface] = ACTIONS(3672), - [anon_sym_delegate] = ACTIONS(3672), - [anon_sym_record] = ACTIONS(3672), - [anon_sym_public] = ACTIONS(3672), - [anon_sym_private] = ACTIONS(3672), - [anon_sym_readonly] = ACTIONS(3672), - [anon_sym_abstract] = ACTIONS(3672), - [anon_sym_async] = ACTIONS(3672), - [anon_sym_const] = ACTIONS(3672), - [anon_sym_file] = ACTIONS(3672), - [anon_sym_fixed] = ACTIONS(3672), - [anon_sym_internal] = ACTIONS(3672), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_override] = ACTIONS(3672), - [anon_sym_partial] = ACTIONS(3672), - [anon_sym_protected] = ACTIONS(3672), - [anon_sym_required] = ACTIONS(3672), - [anon_sym_sealed] = ACTIONS(3672), - [anon_sym_virtual] = ACTIONS(3672), - [anon_sym_volatile] = ACTIONS(3672), - [anon_sym_where] = ACTIONS(3672), - [anon_sym_notnull] = ACTIONS(3672), - [anon_sym_unmanaged] = ACTIONS(3672), - [anon_sym_TILDE] = ACTIONS(3674), - [anon_sym_implicit] = ACTIONS(3672), - [anon_sym_explicit] = ACTIONS(3672), - [anon_sym_scoped] = ACTIONS(3672), - [anon_sym_var] = ACTIONS(3672), - [sym_predefined_type] = ACTIONS(3672), - [anon_sym_yield] = ACTIONS(3672), - [anon_sym_when] = ACTIONS(3672), - [anon_sym_from] = ACTIONS(3672), - [anon_sym_into] = ACTIONS(3672), - [anon_sym_join] = ACTIONS(3672), - [anon_sym_on] = ACTIONS(3672), - [anon_sym_equals] = ACTIONS(3672), - [anon_sym_let] = ACTIONS(3672), - [anon_sym_orderby] = ACTIONS(3672), - [anon_sym_ascending] = ACTIONS(3672), - [anon_sym_descending] = ACTIONS(3672), - [anon_sym_group] = ACTIONS(3672), - [anon_sym_by] = ACTIONS(3672), - [anon_sym_select] = ACTIONS(3672), - [sym_grit_metavariable] = ACTIONS(3674), - [aux_sym_preproc_if_token1] = ACTIONS(3674), - [aux_sym_preproc_if_token3] = ACTIONS(3674), - [aux_sym_preproc_else_token1] = ACTIONS(3674), - [aux_sym_preproc_elif_token1] = ACTIONS(3674), + [sym__identifier_token] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym_alias] = ACTIONS(5134), + [anon_sym_global] = ACTIONS(5134), + [anon_sym_using] = ACTIONS(5134), + [anon_sym_unsafe] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_LPAREN] = ACTIONS(5136), + [anon_sym_event] = ACTIONS(5134), + [anon_sym_namespace] = ACTIONS(5134), + [anon_sym_class] = ACTIONS(5134), + [anon_sym_ref] = ACTIONS(5134), + [anon_sym_struct] = ACTIONS(5134), + [anon_sym_enum] = ACTIONS(5134), + [anon_sym_RBRACE] = ACTIONS(5136), + [anon_sym_interface] = ACTIONS(5134), + [anon_sym_delegate] = ACTIONS(5134), + [anon_sym_record] = ACTIONS(5134), + [anon_sym_public] = ACTIONS(5134), + [anon_sym_private] = ACTIONS(5134), + [anon_sym_readonly] = ACTIONS(5134), + [anon_sym_abstract] = ACTIONS(5134), + [anon_sym_async] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_file] = ACTIONS(5134), + [anon_sym_fixed] = ACTIONS(5134), + [anon_sym_internal] = ACTIONS(5134), + [anon_sym_new] = ACTIONS(5134), + [anon_sym_override] = ACTIONS(5134), + [anon_sym_partial] = ACTIONS(5134), + [anon_sym_protected] = ACTIONS(5134), + [anon_sym_required] = ACTIONS(5134), + [anon_sym_sealed] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_where] = ACTIONS(5134), + [anon_sym_notnull] = ACTIONS(5134), + [anon_sym_unmanaged] = ACTIONS(5134), + [anon_sym_implicit] = ACTIONS(5134), + [anon_sym_explicit] = ACTIONS(5134), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_scoped] = ACTIONS(5134), + [anon_sym_var] = ACTIONS(5134), + [sym_predefined_type] = ACTIONS(5134), + [anon_sym_yield] = ACTIONS(5134), + [anon_sym_when] = ACTIONS(5134), + [anon_sym_from] = ACTIONS(5134), + [anon_sym_into] = ACTIONS(5134), + [anon_sym_join] = ACTIONS(5134), + [anon_sym_on] = ACTIONS(5134), + [anon_sym_equals] = ACTIONS(5134), + [anon_sym_let] = ACTIONS(5134), + [anon_sym_orderby] = ACTIONS(5134), + [anon_sym_ascending] = ACTIONS(5134), + [anon_sym_descending] = ACTIONS(5134), + [anon_sym_group] = ACTIONS(5134), + [anon_sym_by] = ACTIONS(5134), + [anon_sym_select] = ACTIONS(5134), + [sym_grit_metavariable] = ACTIONS(5136), + [aux_sym_preproc_if_token1] = ACTIONS(5136), + [aux_sym_preproc_if_token3] = ACTIONS(5136), + [aux_sym_preproc_else_token1] = ACTIONS(5136), + [aux_sym_preproc_elif_token1] = ACTIONS(5136), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474445,10 +474183,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2891] = { - [sym__variable_designation] = STATE(4857), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2891), [sym_preproc_endregion] = STATE(2891), [sym_preproc_line] = STATE(2891), @@ -474458,66 +474192,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2891), [sym_preproc_define] = STATE(2891), [sym_preproc_undef] = STATE(2891), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4244), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4244), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(5138), + [anon_sym_extern] = ACTIONS(5138), + [anon_sym_alias] = ACTIONS(5138), + [anon_sym_global] = ACTIONS(5138), + [anon_sym_using] = ACTIONS(5138), + [anon_sym_unsafe] = ACTIONS(5138), + [anon_sym_static] = ACTIONS(5138), + [anon_sym_LBRACK] = ACTIONS(5140), + [anon_sym_LPAREN] = ACTIONS(5140), + [anon_sym_event] = ACTIONS(5138), + [anon_sym_namespace] = ACTIONS(5138), + [anon_sym_class] = ACTIONS(5138), + [anon_sym_ref] = ACTIONS(5138), + [anon_sym_struct] = ACTIONS(5138), + [anon_sym_enum] = ACTIONS(5138), + [anon_sym_RBRACE] = ACTIONS(5140), + [anon_sym_interface] = ACTIONS(5138), + [anon_sym_delegate] = ACTIONS(5138), + [anon_sym_record] = ACTIONS(5138), + [anon_sym_public] = ACTIONS(5138), + [anon_sym_private] = ACTIONS(5138), + [anon_sym_readonly] = ACTIONS(5138), + [anon_sym_abstract] = ACTIONS(5138), + [anon_sym_async] = ACTIONS(5138), + [anon_sym_const] = ACTIONS(5138), + [anon_sym_file] = ACTIONS(5138), + [anon_sym_fixed] = ACTIONS(5138), + [anon_sym_internal] = ACTIONS(5138), + [anon_sym_new] = ACTIONS(5138), + [anon_sym_override] = ACTIONS(5138), + [anon_sym_partial] = ACTIONS(5138), + [anon_sym_protected] = ACTIONS(5138), + [anon_sym_required] = ACTIONS(5138), + [anon_sym_sealed] = ACTIONS(5138), + [anon_sym_virtual] = ACTIONS(5138), + [anon_sym_volatile] = ACTIONS(5138), + [anon_sym_where] = ACTIONS(5138), + [anon_sym_notnull] = ACTIONS(5138), + [anon_sym_unmanaged] = ACTIONS(5138), + [anon_sym_implicit] = ACTIONS(5138), + [anon_sym_explicit] = ACTIONS(5138), + [anon_sym_TILDE] = ACTIONS(5140), + [anon_sym_scoped] = ACTIONS(5138), + [anon_sym_var] = ACTIONS(5138), + [sym_predefined_type] = ACTIONS(5138), + [anon_sym_yield] = ACTIONS(5138), + [anon_sym_when] = ACTIONS(5138), + [anon_sym_from] = ACTIONS(5138), + [anon_sym_into] = ACTIONS(5138), + [anon_sym_join] = ACTIONS(5138), + [anon_sym_on] = ACTIONS(5138), + [anon_sym_equals] = ACTIONS(5138), + [anon_sym_let] = ACTIONS(5138), + [anon_sym_orderby] = ACTIONS(5138), + [anon_sym_ascending] = ACTIONS(5138), + [anon_sym_descending] = ACTIONS(5138), + [anon_sym_group] = ACTIONS(5138), + [anon_sym_by] = ACTIONS(5138), + [anon_sym_select] = ACTIONS(5138), + [sym_grit_metavariable] = ACTIONS(5140), + [aux_sym_preproc_if_token1] = ACTIONS(5140), + [aux_sym_preproc_if_token3] = ACTIONS(5140), + [aux_sym_preproc_else_token1] = ACTIONS(5140), + [aux_sym_preproc_elif_token1] = ACTIONS(5140), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474539,70 +474277,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2892), [sym_preproc_define] = STATE(2892), [sym_preproc_undef] = STATE(2892), - [sym__identifier_token] = ACTIONS(3584), - [anon_sym_extern] = ACTIONS(3584), - [anon_sym_alias] = ACTIONS(3584), - [anon_sym_global] = ACTIONS(3584), - [anon_sym_using] = ACTIONS(3584), - [anon_sym_unsafe] = ACTIONS(3584), - [anon_sym_static] = ACTIONS(3584), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_event] = ACTIONS(3584), - [anon_sym_namespace] = ACTIONS(3584), - [anon_sym_class] = ACTIONS(3584), - [anon_sym_ref] = ACTIONS(3584), - [anon_sym_struct] = ACTIONS(3584), - [anon_sym_enum] = ACTIONS(3584), - [anon_sym_RBRACE] = ACTIONS(3586), - [anon_sym_interface] = ACTIONS(3584), - [anon_sym_delegate] = ACTIONS(3584), - [anon_sym_record] = ACTIONS(3584), - [anon_sym_public] = ACTIONS(3584), - [anon_sym_private] = ACTIONS(3584), - [anon_sym_readonly] = ACTIONS(3584), - [anon_sym_abstract] = ACTIONS(3584), - [anon_sym_async] = ACTIONS(3584), - [anon_sym_const] = ACTIONS(3584), - [anon_sym_file] = ACTIONS(3584), - [anon_sym_fixed] = ACTIONS(3584), - [anon_sym_internal] = ACTIONS(3584), - [anon_sym_new] = ACTIONS(3584), - [anon_sym_override] = ACTIONS(3584), - [anon_sym_partial] = ACTIONS(3584), - [anon_sym_protected] = ACTIONS(3584), - [anon_sym_required] = ACTIONS(3584), - [anon_sym_sealed] = ACTIONS(3584), - [anon_sym_virtual] = ACTIONS(3584), - [anon_sym_volatile] = ACTIONS(3584), - [anon_sym_where] = ACTIONS(3584), - [anon_sym_notnull] = ACTIONS(3584), - [anon_sym_unmanaged] = ACTIONS(3584), - [anon_sym_TILDE] = ACTIONS(3586), - [anon_sym_implicit] = ACTIONS(3584), - [anon_sym_explicit] = ACTIONS(3584), - [anon_sym_scoped] = ACTIONS(3584), - [anon_sym_var] = ACTIONS(3584), - [sym_predefined_type] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3584), - [anon_sym_when] = ACTIONS(3584), - [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), - [sym_grit_metavariable] = ACTIONS(3586), - [aux_sym_preproc_if_token1] = ACTIONS(3586), - [aux_sym_preproc_if_token3] = ACTIONS(3586), - [aux_sym_preproc_else_token1] = ACTIONS(3586), - [aux_sym_preproc_elif_token1] = ACTIONS(3586), + [sym__identifier_token] = ACTIONS(5142), + [anon_sym_extern] = ACTIONS(5142), + [anon_sym_alias] = ACTIONS(5142), + [anon_sym_global] = ACTIONS(5142), + [anon_sym_using] = ACTIONS(5142), + [anon_sym_unsafe] = ACTIONS(5142), + [anon_sym_static] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5144), + [anon_sym_LPAREN] = ACTIONS(5144), + [anon_sym_event] = ACTIONS(5142), + [anon_sym_namespace] = ACTIONS(5142), + [anon_sym_class] = ACTIONS(5142), + [anon_sym_ref] = ACTIONS(5142), + [anon_sym_struct] = ACTIONS(5142), + [anon_sym_enum] = ACTIONS(5142), + [anon_sym_RBRACE] = ACTIONS(5144), + [anon_sym_interface] = ACTIONS(5142), + [anon_sym_delegate] = ACTIONS(5142), + [anon_sym_record] = ACTIONS(5142), + [anon_sym_public] = ACTIONS(5142), + [anon_sym_private] = ACTIONS(5142), + [anon_sym_readonly] = ACTIONS(5142), + [anon_sym_abstract] = ACTIONS(5142), + [anon_sym_async] = ACTIONS(5142), + [anon_sym_const] = ACTIONS(5142), + [anon_sym_file] = ACTIONS(5142), + [anon_sym_fixed] = ACTIONS(5142), + [anon_sym_internal] = ACTIONS(5142), + [anon_sym_new] = ACTIONS(5142), + [anon_sym_override] = ACTIONS(5142), + [anon_sym_partial] = ACTIONS(5142), + [anon_sym_protected] = ACTIONS(5142), + [anon_sym_required] = ACTIONS(5142), + [anon_sym_sealed] = ACTIONS(5142), + [anon_sym_virtual] = ACTIONS(5142), + [anon_sym_volatile] = ACTIONS(5142), + [anon_sym_where] = ACTIONS(5142), + [anon_sym_notnull] = ACTIONS(5142), + [anon_sym_unmanaged] = ACTIONS(5142), + [anon_sym_implicit] = ACTIONS(5142), + [anon_sym_explicit] = ACTIONS(5142), + [anon_sym_TILDE] = ACTIONS(5144), + [anon_sym_scoped] = ACTIONS(5142), + [anon_sym_var] = ACTIONS(5142), + [sym_predefined_type] = ACTIONS(5142), + [anon_sym_yield] = ACTIONS(5142), + [anon_sym_when] = 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_ascending] = ACTIONS(5142), + [anon_sym_descending] = ACTIONS(5142), + [anon_sym_group] = ACTIONS(5142), + [anon_sym_by] = ACTIONS(5142), + [anon_sym_select] = ACTIONS(5142), + [sym_grit_metavariable] = ACTIONS(5144), + [aux_sym_preproc_if_token1] = ACTIONS(5144), + [aux_sym_preproc_if_token3] = ACTIONS(5144), + [aux_sym_preproc_else_token1] = ACTIONS(5144), + [aux_sym_preproc_elif_token1] = ACTIONS(5144), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474624,70 +474362,70 @@ 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(4970), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4972), - [anon_sym_COLON] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4972), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_in] = ACTIONS(4978), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_PLUS_PLUS] = ACTIONS(4972), - [anon_sym_DASH_DASH] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4975), - [anon_sym_LT_LT] = ACTIONS(4975), - [anon_sym_GT_GT] = ACTIONS(4975), - [anon_sym_GT_GT_GT] = ACTIONS(4975), - [anon_sym_EQ_EQ] = ACTIONS(4972), - [anon_sym_BANG_EQ] = ACTIONS(4972), - [anon_sym_GT_EQ] = ACTIONS(4972), - [anon_sym_LT_EQ] = ACTIONS(4972), - [anon_sym_DOT] = ACTIONS(4975), - [anon_sym_EQ_GT] = ACTIONS(4970), - [anon_sym_switch] = ACTIONS(4972), - [anon_sym_when] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(4972), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4972), - [anon_sym_PIPE_PIPE] = ACTIONS(4972), - [sym_op_coalescing] = ACTIONS(4975), - [anon_sym_into] = ACTIONS(4970), - [anon_sym_on] = ACTIONS(4970), - [anon_sym_equals] = ACTIONS(4970), - [anon_sym_by] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(4972), - [anon_sym_is] = ACTIONS(4972), - [anon_sym_DASH_GT] = ACTIONS(4972), - [anon_sym_with] = ACTIONS(4972), - [aux_sym_preproc_if_token3] = ACTIONS(4970), - [aux_sym_preproc_else_token1] = ACTIONS(4970), - [aux_sym_preproc_elif_token1] = ACTIONS(4970), + [sym__identifier_token] = ACTIONS(5146), + [anon_sym_extern] = ACTIONS(5146), + [anon_sym_alias] = ACTIONS(5146), + [anon_sym_global] = ACTIONS(5146), + [anon_sym_using] = ACTIONS(5146), + [anon_sym_unsafe] = ACTIONS(5146), + [anon_sym_static] = ACTIONS(5146), + [anon_sym_LBRACK] = ACTIONS(5148), + [anon_sym_LPAREN] = ACTIONS(5148), + [anon_sym_event] = ACTIONS(5146), + [anon_sym_namespace] = ACTIONS(5146), + [anon_sym_class] = ACTIONS(5146), + [anon_sym_ref] = ACTIONS(5146), + [anon_sym_struct] = ACTIONS(5146), + [anon_sym_enum] = ACTIONS(5146), + [anon_sym_RBRACE] = ACTIONS(5148), + [anon_sym_interface] = ACTIONS(5146), + [anon_sym_delegate] = ACTIONS(5146), + [anon_sym_record] = ACTIONS(5146), + [anon_sym_public] = ACTIONS(5146), + [anon_sym_private] = ACTIONS(5146), + [anon_sym_readonly] = ACTIONS(5146), + [anon_sym_abstract] = ACTIONS(5146), + [anon_sym_async] = ACTIONS(5146), + [anon_sym_const] = ACTIONS(5146), + [anon_sym_file] = ACTIONS(5146), + [anon_sym_fixed] = ACTIONS(5146), + [anon_sym_internal] = ACTIONS(5146), + [anon_sym_new] = ACTIONS(5146), + [anon_sym_override] = ACTIONS(5146), + [anon_sym_partial] = ACTIONS(5146), + [anon_sym_protected] = ACTIONS(5146), + [anon_sym_required] = ACTIONS(5146), + [anon_sym_sealed] = ACTIONS(5146), + [anon_sym_virtual] = ACTIONS(5146), + [anon_sym_volatile] = ACTIONS(5146), + [anon_sym_where] = ACTIONS(5146), + [anon_sym_notnull] = ACTIONS(5146), + [anon_sym_unmanaged] = ACTIONS(5146), + [anon_sym_implicit] = ACTIONS(5146), + [anon_sym_explicit] = ACTIONS(5146), + [anon_sym_TILDE] = ACTIONS(5148), + [anon_sym_scoped] = ACTIONS(5146), + [anon_sym_var] = ACTIONS(5146), + [sym_predefined_type] = ACTIONS(5146), + [anon_sym_yield] = ACTIONS(5146), + [anon_sym_when] = 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_ascending] = ACTIONS(5146), + [anon_sym_descending] = ACTIONS(5146), + [anon_sym_group] = ACTIONS(5146), + [anon_sym_by] = ACTIONS(5146), + [anon_sym_select] = ACTIONS(5146), + [sym_grit_metavariable] = ACTIONS(5148), + [aux_sym_preproc_if_token1] = ACTIONS(5148), + [aux_sym_preproc_if_token3] = ACTIONS(5148), + [aux_sym_preproc_else_token1] = ACTIONS(5148), + [aux_sym_preproc_elif_token1] = ACTIONS(5148), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474700,10 +474438,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2894] = { - [sym__variable_designation] = STATE(4886), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), + [sym__variable_designation] = STATE(4215), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2894), [sym_preproc_endregion] = STATE(2894), [sym_preproc_line] = STATE(2894), @@ -474713,66 +474451,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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4252), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4252), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4304), + [anon_sym_GT] = ACTIONS(4304), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4304), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_and] = ACTIONS(4304), + [anon_sym_or] = ACTIONS(4304), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4304), + [sym_op_bitwise_or] = ACTIONS(4304), + [anon_sym_CARET] = ACTIONS(4302), + [sym_op_left_shift] = ACTIONS(4302), + [sym_op_right_shift] = ACTIONS(4304), + [sym_op_unsigned_right_shift] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym_op_divide] = ACTIONS(4304), + [sym_op_modulo] = ACTIONS(4302), + [sym_op_coalescing] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4302), + [anon_sym_DASH_DASH] = ACTIONS(4302), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4304), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4304), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4304), + [anon_sym_is] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4302), + [anon_sym_with] = ACTIONS(4304), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474785,10 +474523,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2895] = { - [sym__variable_designation] = STATE(4967), - [sym_parenthesized_variable_designation] = STATE(4985), - [sym_identifier] = STATE(4983), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2895), [sym_preproc_endregion] = STATE(2895), [sym_preproc_line] = STATE(2895), @@ -474798,66 +474532,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2895), [sym_preproc_define] = STATE(2895), [sym_preproc_undef] = STATE(2895), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4244), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(5150), + [anon_sym_extern] = ACTIONS(5150), + [anon_sym_alias] = ACTIONS(5150), + [anon_sym_global] = ACTIONS(5150), + [anon_sym_using] = ACTIONS(5150), + [anon_sym_unsafe] = ACTIONS(5150), + [anon_sym_static] = ACTIONS(5150), + [anon_sym_LBRACK] = ACTIONS(5152), + [anon_sym_LPAREN] = ACTIONS(5152), + [anon_sym_event] = ACTIONS(5150), + [anon_sym_namespace] = ACTIONS(5150), + [anon_sym_class] = ACTIONS(5150), + [anon_sym_ref] = ACTIONS(5150), + [anon_sym_struct] = ACTIONS(5150), + [anon_sym_enum] = ACTIONS(5150), + [anon_sym_RBRACE] = ACTIONS(5152), + [anon_sym_interface] = ACTIONS(5150), + [anon_sym_delegate] = ACTIONS(5150), + [anon_sym_record] = ACTIONS(5150), + [anon_sym_public] = ACTIONS(5150), + [anon_sym_private] = ACTIONS(5150), + [anon_sym_readonly] = ACTIONS(5150), + [anon_sym_abstract] = ACTIONS(5150), + [anon_sym_async] = ACTIONS(5150), + [anon_sym_const] = ACTIONS(5150), + [anon_sym_file] = ACTIONS(5150), + [anon_sym_fixed] = ACTIONS(5150), + [anon_sym_internal] = ACTIONS(5150), + [anon_sym_new] = ACTIONS(5150), + [anon_sym_override] = ACTIONS(5150), + [anon_sym_partial] = ACTIONS(5150), + [anon_sym_protected] = ACTIONS(5150), + [anon_sym_required] = ACTIONS(5150), + [anon_sym_sealed] = ACTIONS(5150), + [anon_sym_virtual] = ACTIONS(5150), + [anon_sym_volatile] = ACTIONS(5150), + [anon_sym_where] = ACTIONS(5150), + [anon_sym_notnull] = ACTIONS(5150), + [anon_sym_unmanaged] = ACTIONS(5150), + [anon_sym_implicit] = ACTIONS(5150), + [anon_sym_explicit] = ACTIONS(5150), + [anon_sym_TILDE] = ACTIONS(5152), + [anon_sym_scoped] = ACTIONS(5150), + [anon_sym_var] = ACTIONS(5150), + [sym_predefined_type] = ACTIONS(5150), + [anon_sym_yield] = ACTIONS(5150), + [anon_sym_when] = ACTIONS(5150), + [anon_sym_from] = ACTIONS(5150), + [anon_sym_into] = ACTIONS(5150), + [anon_sym_join] = ACTIONS(5150), + [anon_sym_on] = ACTIONS(5150), + [anon_sym_equals] = ACTIONS(5150), + [anon_sym_let] = ACTIONS(5150), + [anon_sym_orderby] = ACTIONS(5150), + [anon_sym_ascending] = ACTIONS(5150), + [anon_sym_descending] = ACTIONS(5150), + [anon_sym_group] = ACTIONS(5150), + [anon_sym_by] = ACTIONS(5150), + [anon_sym_select] = ACTIONS(5150), + [sym_grit_metavariable] = ACTIONS(5152), + [aux_sym_preproc_if_token1] = 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), @@ -474870,10 +474608,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2896] = { - [sym__variable_designation] = STATE(4893), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2896), [sym_preproc_endregion] = STATE(2896), [sym_preproc_line] = STATE(2896), @@ -474883,66 +474617,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2896), [sym_preproc_define] = STATE(2896), [sym_preproc_undef] = STATE(2896), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4308), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4308), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(5154), + [anon_sym_extern] = ACTIONS(5154), + [anon_sym_alias] = ACTIONS(5154), + [anon_sym_global] = ACTIONS(5154), + [anon_sym_using] = ACTIONS(5154), + [anon_sym_unsafe] = ACTIONS(5154), + [anon_sym_static] = ACTIONS(5154), + [anon_sym_LBRACK] = ACTIONS(5156), + [anon_sym_LPAREN] = ACTIONS(5156), + [anon_sym_event] = ACTIONS(5154), + [anon_sym_namespace] = ACTIONS(5154), + [anon_sym_class] = ACTIONS(5154), + [anon_sym_ref] = ACTIONS(5154), + [anon_sym_struct] = ACTIONS(5154), + [anon_sym_enum] = ACTIONS(5154), + [anon_sym_RBRACE] = ACTIONS(5156), + [anon_sym_interface] = ACTIONS(5154), + [anon_sym_delegate] = ACTIONS(5154), + [anon_sym_record] = ACTIONS(5154), + [anon_sym_public] = ACTIONS(5154), + [anon_sym_private] = ACTIONS(5154), + [anon_sym_readonly] = ACTIONS(5154), + [anon_sym_abstract] = ACTIONS(5154), + [anon_sym_async] = ACTIONS(5154), + [anon_sym_const] = ACTIONS(5154), + [anon_sym_file] = ACTIONS(5154), + [anon_sym_fixed] = ACTIONS(5154), + [anon_sym_internal] = ACTIONS(5154), + [anon_sym_new] = ACTIONS(5154), + [anon_sym_override] = ACTIONS(5154), + [anon_sym_partial] = ACTIONS(5154), + [anon_sym_protected] = ACTIONS(5154), + [anon_sym_required] = ACTIONS(5154), + [anon_sym_sealed] = ACTIONS(5154), + [anon_sym_virtual] = ACTIONS(5154), + [anon_sym_volatile] = ACTIONS(5154), + [anon_sym_where] = ACTIONS(5154), + [anon_sym_notnull] = ACTIONS(5154), + [anon_sym_unmanaged] = ACTIONS(5154), + [anon_sym_implicit] = ACTIONS(5154), + [anon_sym_explicit] = ACTIONS(5154), + [anon_sym_TILDE] = ACTIONS(5156), + [anon_sym_scoped] = ACTIONS(5154), + [anon_sym_var] = ACTIONS(5154), + [sym_predefined_type] = ACTIONS(5154), + [anon_sym_yield] = ACTIONS(5154), + [anon_sym_when] = ACTIONS(5154), + [anon_sym_from] = ACTIONS(5154), + [anon_sym_into] = ACTIONS(5154), + [anon_sym_join] = ACTIONS(5154), + [anon_sym_on] = ACTIONS(5154), + [anon_sym_equals] = ACTIONS(5154), + [anon_sym_let] = ACTIONS(5154), + [anon_sym_orderby] = ACTIONS(5154), + [anon_sym_ascending] = ACTIONS(5154), + [anon_sym_descending] = ACTIONS(5154), + [anon_sym_group] = ACTIONS(5154), + [anon_sym_by] = ACTIONS(5154), + [anon_sym_select] = ACTIONS(5154), + [sym_grit_metavariable] = ACTIONS(5156), + [aux_sym_preproc_if_token1] = 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), @@ -474955,10 +474693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2897] = { - [sym__variable_designation] = STATE(4909), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2897), [sym_preproc_endregion] = STATE(2897), [sym_preproc_line] = STATE(2897), @@ -474968,66 +474702,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2897), [sym_preproc_define] = STATE(2897), [sym_preproc_undef] = STATE(2897), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4304), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4304), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(5158), + [anon_sym_extern] = ACTIONS(5158), + [anon_sym_alias] = ACTIONS(5158), + [anon_sym_global] = ACTIONS(5158), + [anon_sym_using] = ACTIONS(5158), + [anon_sym_unsafe] = ACTIONS(5158), + [anon_sym_static] = ACTIONS(5158), + [anon_sym_LBRACK] = ACTIONS(5160), + [anon_sym_LPAREN] = ACTIONS(5160), + [anon_sym_event] = ACTIONS(5158), + [anon_sym_namespace] = ACTIONS(5158), + [anon_sym_class] = ACTIONS(5158), + [anon_sym_ref] = ACTIONS(5158), + [anon_sym_struct] = ACTIONS(5158), + [anon_sym_enum] = ACTIONS(5158), + [anon_sym_RBRACE] = ACTIONS(5160), + [anon_sym_interface] = ACTIONS(5158), + [anon_sym_delegate] = ACTIONS(5158), + [anon_sym_record] = ACTIONS(5158), + [anon_sym_public] = ACTIONS(5158), + [anon_sym_private] = ACTIONS(5158), + [anon_sym_readonly] = ACTIONS(5158), + [anon_sym_abstract] = ACTIONS(5158), + [anon_sym_async] = ACTIONS(5158), + [anon_sym_const] = ACTIONS(5158), + [anon_sym_file] = ACTIONS(5158), + [anon_sym_fixed] = ACTIONS(5158), + [anon_sym_internal] = ACTIONS(5158), + [anon_sym_new] = ACTIONS(5158), + [anon_sym_override] = ACTIONS(5158), + [anon_sym_partial] = ACTIONS(5158), + [anon_sym_protected] = ACTIONS(5158), + [anon_sym_required] = ACTIONS(5158), + [anon_sym_sealed] = ACTIONS(5158), + [anon_sym_virtual] = ACTIONS(5158), + [anon_sym_volatile] = ACTIONS(5158), + [anon_sym_where] = ACTIONS(5158), + [anon_sym_notnull] = ACTIONS(5158), + [anon_sym_unmanaged] = ACTIONS(5158), + [anon_sym_implicit] = ACTIONS(5158), + [anon_sym_explicit] = ACTIONS(5158), + [anon_sym_TILDE] = ACTIONS(5160), + [anon_sym_scoped] = ACTIONS(5158), + [anon_sym_var] = ACTIONS(5158), + [sym_predefined_type] = ACTIONS(5158), + [anon_sym_yield] = ACTIONS(5158), + [anon_sym_when] = ACTIONS(5158), + [anon_sym_from] = ACTIONS(5158), + [anon_sym_into] = ACTIONS(5158), + [anon_sym_join] = ACTIONS(5158), + [anon_sym_on] = ACTIONS(5158), + [anon_sym_equals] = ACTIONS(5158), + [anon_sym_let] = ACTIONS(5158), + [anon_sym_orderby] = ACTIONS(5158), + [anon_sym_ascending] = ACTIONS(5158), + [anon_sym_descending] = ACTIONS(5158), + [anon_sym_group] = ACTIONS(5158), + [anon_sym_by] = ACTIONS(5158), + [anon_sym_select] = ACTIONS(5158), + [sym_grit_metavariable] = ACTIONS(5160), + [aux_sym_preproc_if_token1] = 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), @@ -475049,69 +474787,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2898), [sym_preproc_define] = STATE(2898), [sym_preproc_undef] = STATE(2898), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4980), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4983), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [sym__identifier_token] = ACTIONS(5162), + [anon_sym_extern] = ACTIONS(5162), + [anon_sym_alias] = ACTIONS(5162), + [anon_sym_global] = ACTIONS(5162), + [anon_sym_using] = ACTIONS(5162), + [anon_sym_unsafe] = ACTIONS(5162), + [anon_sym_static] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5164), + [anon_sym_LPAREN] = ACTIONS(5164), + [anon_sym_event] = ACTIONS(5162), + [anon_sym_namespace] = ACTIONS(5162), + [anon_sym_class] = ACTIONS(5162), + [anon_sym_ref] = ACTIONS(5162), + [anon_sym_struct] = ACTIONS(5162), + [anon_sym_enum] = ACTIONS(5162), + [anon_sym_RBRACE] = ACTIONS(5164), + [anon_sym_interface] = ACTIONS(5162), + [anon_sym_delegate] = ACTIONS(5162), + [anon_sym_record] = ACTIONS(5162), + [anon_sym_public] = ACTIONS(5162), + [anon_sym_private] = ACTIONS(5162), + [anon_sym_readonly] = ACTIONS(5162), + [anon_sym_abstract] = ACTIONS(5162), + [anon_sym_async] = ACTIONS(5162), + [anon_sym_const] = ACTIONS(5162), + [anon_sym_file] = ACTIONS(5162), + [anon_sym_fixed] = ACTIONS(5162), + [anon_sym_internal] = ACTIONS(5162), + [anon_sym_new] = ACTIONS(5162), + [anon_sym_override] = ACTIONS(5162), + [anon_sym_partial] = ACTIONS(5162), + [anon_sym_protected] = ACTIONS(5162), + [anon_sym_required] = ACTIONS(5162), + [anon_sym_sealed] = ACTIONS(5162), + [anon_sym_virtual] = ACTIONS(5162), + [anon_sym_volatile] = ACTIONS(5162), + [anon_sym_where] = ACTIONS(5162), + [anon_sym_notnull] = ACTIONS(5162), + [anon_sym_unmanaged] = ACTIONS(5162), + [anon_sym_implicit] = ACTIONS(5162), + [anon_sym_explicit] = ACTIONS(5162), + [anon_sym_TILDE] = ACTIONS(5164), + [anon_sym_scoped] = ACTIONS(5162), + [anon_sym_var] = ACTIONS(5162), + [sym_predefined_type] = ACTIONS(5162), + [anon_sym_yield] = ACTIONS(5162), + [anon_sym_when] = ACTIONS(5162), + [anon_sym_from] = ACTIONS(5162), + [anon_sym_into] = ACTIONS(5162), + [anon_sym_join] = ACTIONS(5162), + [anon_sym_on] = ACTIONS(5162), + [anon_sym_equals] = ACTIONS(5162), + [anon_sym_let] = ACTIONS(5162), + [anon_sym_orderby] = ACTIONS(5162), + [anon_sym_ascending] = ACTIONS(5162), + [anon_sym_descending] = ACTIONS(5162), + [anon_sym_group] = ACTIONS(5162), + [anon_sym_by] = ACTIONS(5162), + [anon_sym_select] = ACTIONS(5162), + [sym_grit_metavariable] = ACTIONS(5164), + [aux_sym_preproc_if_token1] = 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), @@ -475122,7 +474861,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(4331), }, [2899] = { [sym_preproc_region] = STATE(2899), @@ -475134,70 +474872,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2899), [sym_preproc_define] = STATE(2899), [sym_preproc_undef] = STATE(2899), - [sym__identifier_token] = ACTIONS(4987), - [anon_sym_extern] = ACTIONS(4987), - [anon_sym_alias] = ACTIONS(4987), - [anon_sym_global] = ACTIONS(4987), - [anon_sym_using] = ACTIONS(4987), - [anon_sym_unsafe] = ACTIONS(4987), - [anon_sym_static] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_event] = ACTIONS(4987), - [anon_sym_namespace] = ACTIONS(4987), - [anon_sym_class] = ACTIONS(4987), - [anon_sym_ref] = ACTIONS(4987), - [anon_sym_struct] = ACTIONS(4987), - [anon_sym_enum] = ACTIONS(4987), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_interface] = ACTIONS(4987), - [anon_sym_delegate] = ACTIONS(4987), - [anon_sym_record] = ACTIONS(4987), - [anon_sym_public] = ACTIONS(4987), - [anon_sym_private] = ACTIONS(4987), - [anon_sym_readonly] = ACTIONS(4987), - [anon_sym_abstract] = ACTIONS(4987), - [anon_sym_async] = ACTIONS(4987), - [anon_sym_const] = ACTIONS(4987), - [anon_sym_file] = ACTIONS(4987), - [anon_sym_fixed] = ACTIONS(4987), - [anon_sym_internal] = ACTIONS(4987), - [anon_sym_new] = ACTIONS(4987), - [anon_sym_override] = ACTIONS(4987), - [anon_sym_partial] = ACTIONS(4987), - [anon_sym_protected] = ACTIONS(4987), - [anon_sym_required] = ACTIONS(4987), - [anon_sym_sealed] = ACTIONS(4987), - [anon_sym_virtual] = ACTIONS(4987), - [anon_sym_volatile] = ACTIONS(4987), - [anon_sym_where] = ACTIONS(4987), - [anon_sym_notnull] = ACTIONS(4987), - [anon_sym_unmanaged] = ACTIONS(4987), - [anon_sym_TILDE] = ACTIONS(4989), - [anon_sym_implicit] = ACTIONS(4987), - [anon_sym_explicit] = ACTIONS(4987), - [anon_sym_scoped] = ACTIONS(4987), - [anon_sym_var] = ACTIONS(4987), - [sym_predefined_type] = ACTIONS(4987), - [anon_sym_yield] = ACTIONS(4987), - [anon_sym_when] = ACTIONS(4987), - [anon_sym_from] = ACTIONS(4987), - [anon_sym_into] = ACTIONS(4987), - [anon_sym_join] = ACTIONS(4987), - [anon_sym_on] = ACTIONS(4987), - [anon_sym_equals] = ACTIONS(4987), - [anon_sym_let] = ACTIONS(4987), - [anon_sym_orderby] = ACTIONS(4987), - [anon_sym_ascending] = ACTIONS(4987), - [anon_sym_descending] = ACTIONS(4987), - [anon_sym_group] = ACTIONS(4987), - [anon_sym_by] = ACTIONS(4987), - [anon_sym_select] = ACTIONS(4987), - [sym_grit_metavariable] = ACTIONS(4989), - [aux_sym_preproc_if_token1] = ACTIONS(4989), - [aux_sym_preproc_if_token3] = ACTIONS(4989), - [aux_sym_preproc_else_token1] = ACTIONS(4989), - [aux_sym_preproc_elif_token1] = ACTIONS(4989), + [sym__identifier_token] = ACTIONS(5166), + [anon_sym_extern] = ACTIONS(5166), + [anon_sym_alias] = ACTIONS(5166), + [anon_sym_global] = ACTIONS(5166), + [anon_sym_using] = ACTIONS(5166), + [anon_sym_unsafe] = ACTIONS(5166), + [anon_sym_static] = ACTIONS(5166), + [anon_sym_LBRACK] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(5168), + [anon_sym_event] = ACTIONS(5166), + [anon_sym_namespace] = ACTIONS(5166), + [anon_sym_class] = ACTIONS(5166), + [anon_sym_ref] = ACTIONS(5166), + [anon_sym_struct] = ACTIONS(5166), + [anon_sym_enum] = ACTIONS(5166), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_interface] = ACTIONS(5166), + [anon_sym_delegate] = ACTIONS(5166), + [anon_sym_record] = ACTIONS(5166), + [anon_sym_public] = ACTIONS(5166), + [anon_sym_private] = ACTIONS(5166), + [anon_sym_readonly] = ACTIONS(5166), + [anon_sym_abstract] = ACTIONS(5166), + [anon_sym_async] = ACTIONS(5166), + [anon_sym_const] = ACTIONS(5166), + [anon_sym_file] = ACTIONS(5166), + [anon_sym_fixed] = ACTIONS(5166), + [anon_sym_internal] = ACTIONS(5166), + [anon_sym_new] = ACTIONS(5166), + [anon_sym_override] = ACTIONS(5166), + [anon_sym_partial] = ACTIONS(5166), + [anon_sym_protected] = ACTIONS(5166), + [anon_sym_required] = ACTIONS(5166), + [anon_sym_sealed] = ACTIONS(5166), + [anon_sym_virtual] = ACTIONS(5166), + [anon_sym_volatile] = ACTIONS(5166), + [anon_sym_where] = ACTIONS(5166), + [anon_sym_notnull] = ACTIONS(5166), + [anon_sym_unmanaged] = ACTIONS(5166), + [anon_sym_implicit] = ACTIONS(5166), + [anon_sym_explicit] = ACTIONS(5166), + [anon_sym_TILDE] = ACTIONS(5168), + [anon_sym_scoped] = ACTIONS(5166), + [anon_sym_var] = ACTIONS(5166), + [sym_predefined_type] = ACTIONS(5166), + [anon_sym_yield] = ACTIONS(5166), + [anon_sym_when] = ACTIONS(5166), + [anon_sym_from] = ACTIONS(5166), + [anon_sym_into] = ACTIONS(5166), + [anon_sym_join] = ACTIONS(5166), + [anon_sym_on] = ACTIONS(5166), + [anon_sym_equals] = ACTIONS(5166), + [anon_sym_let] = ACTIONS(5166), + [anon_sym_orderby] = ACTIONS(5166), + [anon_sym_ascending] = ACTIONS(5166), + [anon_sym_descending] = ACTIONS(5166), + [anon_sym_group] = ACTIONS(5166), + [anon_sym_by] = ACTIONS(5166), + [anon_sym_select] = ACTIONS(5166), + [sym_grit_metavariable] = ACTIONS(5168), + [aux_sym_preproc_if_token1] = 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), @@ -475210,10 +474948,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2900] = { - [sym__variable_designation] = STATE(4857), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), + [sym__variable_designation] = STATE(5506), + [sym_parenthesized_variable_designation] = STATE(5504), + [sym_identifier] = STATE(5489), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(2900), [sym_preproc_endregion] = STATE(2900), [sym_preproc_line] = STATE(2900), @@ -475226,63 +474964,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4208), [anon_sym_alias] = ACTIONS(4210), [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4244), - [anon_sym_GT] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4244), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4256), + [anon_sym_QMARK] = ACTIONS(4256), [anon_sym_notnull] = ACTIONS(4210), [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_PIPE] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4244), - [anon_sym_GT_GT_GT] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_GT_EQ] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4242), - [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_DOT] = ACTIONS(4256), [anon_sym_scoped] = ACTIONS(4210), [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4254), [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4244), + [anon_sym_switch] = ACTIONS(4256), [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4242), - [anon_sym_and] = ACTIONS(4244), - [anon_sym_or] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4242), - [sym_op_coalescing] = ACTIONS(4242), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4244), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4244), + [sym_discard] = ACTIONS(4576), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4256), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4256), + [anon_sym_on] = ACTIONS(4210), [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4256), + [anon_sym_orderby] = ACTIONS(4256), [anon_sym_ascending] = ACTIONS(4210), [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4256), [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_is] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4242), - [anon_sym_with] = ACTIONS(4244), - [sym_grit_metavariable] = ACTIONS(4220), + [anon_sym_select] = ACTIONS(4256), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475295,10 +475033,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2901] = { - [sym__variable_designation] = STATE(4886), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), + [sym__variable_designation] = STATE(4136), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2901), [sym_preproc_endregion] = STATE(2901), [sym_preproc_line] = STATE(2901), @@ -475308,66 +475046,66 @@ 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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4252), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4252), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4308), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4308), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4308), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4308), + [anon_sym_or] = ACTIONS(4308), + [anon_sym_EQ_EQ] = ACTIONS(4306), + [anon_sym_BANG_EQ] = ACTIONS(4306), + [anon_sym_AMP_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4308), + [sym_op_bitwise_or] = ACTIONS(4308), + [anon_sym_CARET] = ACTIONS(4306), + [sym_op_left_shift] = ACTIONS(4306), + [sym_op_right_shift] = ACTIONS(4308), + [sym_op_unsigned_right_shift] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4308), + [anon_sym_DASH] = ACTIONS(4308), + [sym_op_divide] = ACTIONS(4308), + [sym_op_modulo] = ACTIONS(4306), + [sym_op_coalescing] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4306), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4308), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4308), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4308), + [anon_sym_is] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(4306), + [anon_sym_with] = ACTIONS(4308), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475380,10 +475118,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2902] = { - [sym__variable_designation] = STATE(4893), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2902), [sym_preproc_endregion] = STATE(2902), [sym_preproc_line] = STATE(2902), @@ -475393,66 +475127,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2902), [sym_preproc_define] = STATE(2902), [sym_preproc_undef] = STATE(2902), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4308), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4308), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(5170), + [anon_sym_extern] = ACTIONS(5170), + [anon_sym_alias] = ACTIONS(5170), + [anon_sym_global] = ACTIONS(5170), + [anon_sym_using] = ACTIONS(5170), + [anon_sym_unsafe] = ACTIONS(5170), + [anon_sym_static] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(5172), + [anon_sym_LPAREN] = ACTIONS(5172), + [anon_sym_event] = ACTIONS(5170), + [anon_sym_namespace] = ACTIONS(5170), + [anon_sym_class] = ACTIONS(5170), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_struct] = ACTIONS(5170), + [anon_sym_enum] = ACTIONS(5170), + [anon_sym_RBRACE] = ACTIONS(5172), + [anon_sym_interface] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5170), + [anon_sym_record] = ACTIONS(5170), + [anon_sym_public] = ACTIONS(5170), + [anon_sym_private] = ACTIONS(5170), + [anon_sym_readonly] = ACTIONS(5170), + [anon_sym_abstract] = ACTIONS(5170), + [anon_sym_async] = ACTIONS(5170), + [anon_sym_const] = ACTIONS(5170), + [anon_sym_file] = ACTIONS(5170), + [anon_sym_fixed] = ACTIONS(5170), + [anon_sym_internal] = ACTIONS(5170), + [anon_sym_new] = ACTIONS(5170), + [anon_sym_override] = ACTIONS(5170), + [anon_sym_partial] = ACTIONS(5170), + [anon_sym_protected] = ACTIONS(5170), + [anon_sym_required] = ACTIONS(5170), + [anon_sym_sealed] = ACTIONS(5170), + [anon_sym_virtual] = ACTIONS(5170), + [anon_sym_volatile] = ACTIONS(5170), + [anon_sym_where] = ACTIONS(5170), + [anon_sym_notnull] = ACTIONS(5170), + [anon_sym_unmanaged] = ACTIONS(5170), + [anon_sym_implicit] = ACTIONS(5170), + [anon_sym_explicit] = ACTIONS(5170), + [anon_sym_TILDE] = ACTIONS(5172), + [anon_sym_scoped] = ACTIONS(5170), + [anon_sym_var] = ACTIONS(5170), + [sym_predefined_type] = ACTIONS(5170), + [anon_sym_yield] = ACTIONS(5170), + [anon_sym_when] = ACTIONS(5170), + [anon_sym_from] = ACTIONS(5170), + [anon_sym_into] = ACTIONS(5170), + [anon_sym_join] = ACTIONS(5170), + [anon_sym_on] = ACTIONS(5170), + [anon_sym_equals] = ACTIONS(5170), + [anon_sym_let] = ACTIONS(5170), + [anon_sym_orderby] = ACTIONS(5170), + [anon_sym_ascending] = ACTIONS(5170), + [anon_sym_descending] = ACTIONS(5170), + [anon_sym_group] = ACTIONS(5170), + [anon_sym_by] = ACTIONS(5170), + [anon_sym_select] = ACTIONS(5170), + [sym_grit_metavariable] = ACTIONS(5172), + [aux_sym_preproc_if_token1] = 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), @@ -475465,10 +475203,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2903] = { - [sym__variable_designation] = STATE(4909), - [sym_parenthesized_variable_designation] = STATE(4847), - [sym_identifier] = STATE(4851), - [sym__reserved_identifier] = STATE(4670), [sym_preproc_region] = STATE(2903), [sym_preproc_endregion] = STATE(2903), [sym_preproc_line] = STATE(2903), @@ -475478,66 +475212,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2903), [sym_preproc_define] = STATE(2903), [sym_preproc_undef] = STATE(2903), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4304), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4304), - [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = ACTIONS(4210), - [anon_sym_ascending] = ACTIONS(4210), - [anon_sym_descending] = ACTIONS(4210), - [anon_sym_group] = ACTIONS(4210), - [anon_sym_by] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(5174), + [anon_sym_extern] = ACTIONS(5174), + [anon_sym_alias] = ACTIONS(5174), + [anon_sym_global] = ACTIONS(5174), + [anon_sym_using] = ACTIONS(5174), + [anon_sym_unsafe] = ACTIONS(5174), + [anon_sym_static] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5176), + [anon_sym_LPAREN] = ACTIONS(5176), + [anon_sym_event] = ACTIONS(5174), + [anon_sym_namespace] = ACTIONS(5174), + [anon_sym_class] = ACTIONS(5174), + [anon_sym_ref] = ACTIONS(5174), + [anon_sym_struct] = ACTIONS(5174), + [anon_sym_enum] = ACTIONS(5174), + [anon_sym_RBRACE] = ACTIONS(5176), + [anon_sym_interface] = ACTIONS(5174), + [anon_sym_delegate] = ACTIONS(5174), + [anon_sym_record] = ACTIONS(5174), + [anon_sym_public] = ACTIONS(5174), + [anon_sym_private] = ACTIONS(5174), + [anon_sym_readonly] = ACTIONS(5174), + [anon_sym_abstract] = ACTIONS(5174), + [anon_sym_async] = ACTIONS(5174), + [anon_sym_const] = ACTIONS(5174), + [anon_sym_file] = ACTIONS(5174), + [anon_sym_fixed] = ACTIONS(5174), + [anon_sym_internal] = ACTIONS(5174), + [anon_sym_new] = ACTIONS(5174), + [anon_sym_override] = ACTIONS(5174), + [anon_sym_partial] = ACTIONS(5174), + [anon_sym_protected] = ACTIONS(5174), + [anon_sym_required] = ACTIONS(5174), + [anon_sym_sealed] = ACTIONS(5174), + [anon_sym_virtual] = ACTIONS(5174), + [anon_sym_volatile] = ACTIONS(5174), + [anon_sym_where] = ACTIONS(5174), + [anon_sym_notnull] = ACTIONS(5174), + [anon_sym_unmanaged] = ACTIONS(5174), + [anon_sym_implicit] = ACTIONS(5174), + [anon_sym_explicit] = ACTIONS(5174), + [anon_sym_TILDE] = ACTIONS(5176), + [anon_sym_scoped] = ACTIONS(5174), + [anon_sym_var] = ACTIONS(5174), + [sym_predefined_type] = ACTIONS(5174), + [anon_sym_yield] = ACTIONS(5174), + [anon_sym_when] = ACTIONS(5174), + [anon_sym_from] = ACTIONS(5174), + [anon_sym_into] = ACTIONS(5174), + [anon_sym_join] = ACTIONS(5174), + [anon_sym_on] = ACTIONS(5174), + [anon_sym_equals] = ACTIONS(5174), + [anon_sym_let] = ACTIONS(5174), + [anon_sym_orderby] = ACTIONS(5174), + [anon_sym_ascending] = ACTIONS(5174), + [anon_sym_descending] = ACTIONS(5174), + [anon_sym_group] = ACTIONS(5174), + [anon_sym_by] = ACTIONS(5174), + [anon_sym_select] = ACTIONS(5174), + [sym_grit_metavariable] = ACTIONS(5176), + [aux_sym_preproc_if_token1] = 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), @@ -475559,70 +475297,70 @@ 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(3696), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_when] = ACTIONS(3696), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3696), - [anon_sym_or] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3696), - [anon_sym_on] = ACTIONS(3696), - [anon_sym_equals] = ACTIONS(3696), - [anon_sym_by] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3696), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [sym__identifier_token] = ACTIONS(5178), + [anon_sym_extern] = ACTIONS(5178), + [anon_sym_alias] = ACTIONS(5178), + [anon_sym_global] = ACTIONS(5178), + [anon_sym_using] = ACTIONS(5178), + [anon_sym_unsafe] = ACTIONS(5178), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(5180), + [anon_sym_LPAREN] = ACTIONS(5180), + [anon_sym_event] = ACTIONS(5178), + [anon_sym_namespace] = ACTIONS(5178), + [anon_sym_class] = ACTIONS(5178), + [anon_sym_ref] = ACTIONS(5178), + [anon_sym_struct] = ACTIONS(5178), + [anon_sym_enum] = ACTIONS(5178), + [anon_sym_RBRACE] = ACTIONS(5180), + [anon_sym_interface] = ACTIONS(5178), + [anon_sym_delegate] = ACTIONS(5178), + [anon_sym_record] = ACTIONS(5178), + [anon_sym_public] = ACTIONS(5178), + [anon_sym_private] = ACTIONS(5178), + [anon_sym_readonly] = ACTIONS(5178), + [anon_sym_abstract] = ACTIONS(5178), + [anon_sym_async] = ACTIONS(5178), + [anon_sym_const] = ACTIONS(5178), + [anon_sym_file] = ACTIONS(5178), + [anon_sym_fixed] = ACTIONS(5178), + [anon_sym_internal] = ACTIONS(5178), + [anon_sym_new] = ACTIONS(5178), + [anon_sym_override] = ACTIONS(5178), + [anon_sym_partial] = ACTIONS(5178), + [anon_sym_protected] = ACTIONS(5178), + [anon_sym_required] = ACTIONS(5178), + [anon_sym_sealed] = ACTIONS(5178), + [anon_sym_virtual] = ACTIONS(5178), + [anon_sym_volatile] = ACTIONS(5178), + [anon_sym_where] = ACTIONS(5178), + [anon_sym_notnull] = ACTIONS(5178), + [anon_sym_unmanaged] = ACTIONS(5178), + [anon_sym_implicit] = ACTIONS(5178), + [anon_sym_explicit] = ACTIONS(5178), + [anon_sym_TILDE] = ACTIONS(5180), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(5178), + [sym_predefined_type] = ACTIONS(5178), + [anon_sym_yield] = ACTIONS(5178), + [anon_sym_when] = ACTIONS(5178), + [anon_sym_from] = ACTIONS(5178), + [anon_sym_into] = ACTIONS(5178), + [anon_sym_join] = ACTIONS(5178), + [anon_sym_on] = ACTIONS(5178), + [anon_sym_equals] = ACTIONS(5178), + [anon_sym_let] = ACTIONS(5178), + [anon_sym_orderby] = ACTIONS(5178), + [anon_sym_ascending] = ACTIONS(5178), + [anon_sym_descending] = ACTIONS(5178), + [anon_sym_group] = ACTIONS(5178), + [anon_sym_by] = ACTIONS(5178), + [anon_sym_select] = ACTIONS(5178), + [sym_grit_metavariable] = ACTIONS(5180), + [aux_sym_preproc_if_token1] = 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), @@ -475644,70 +475382,70 @@ 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(3189), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_EQ_GT] = ACTIONS(3189), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_PLUS_EQ] = ACTIONS(3189), - [anon_sym_DASH_EQ] = ACTIONS(3189), - [anon_sym_STAR_EQ] = ACTIONS(3189), - [anon_sym_SLASH_EQ] = ACTIONS(3189), - [anon_sym_PERCENT_EQ] = ACTIONS(3189), - [anon_sym_AMP_EQ] = ACTIONS(3189), - [anon_sym_CARET_EQ] = ACTIONS(3189), - [anon_sym_PIPE_EQ] = ACTIONS(3189), - [anon_sym_LT_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = ACTIONS(3187), - [anon_sym_into] = ACTIONS(3189), - [anon_sym_on] = ACTIONS(3189), - [anon_sym_equals] = ACTIONS(3189), - [anon_sym_by] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3189), - [aux_sym_preproc_if_token3] = ACTIONS(3189), - [aux_sym_preproc_else_token1] = ACTIONS(3189), - [aux_sym_preproc_elif_token1] = ACTIONS(3189), + [sym__identifier_token] = ACTIONS(5182), + [anon_sym_extern] = ACTIONS(5182), + [anon_sym_alias] = ACTIONS(5182), + [anon_sym_global] = ACTIONS(5182), + [anon_sym_using] = ACTIONS(5182), + [anon_sym_unsafe] = ACTIONS(5182), + [anon_sym_static] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5184), + [anon_sym_LPAREN] = ACTIONS(5184), + [anon_sym_event] = ACTIONS(5182), + [anon_sym_namespace] = ACTIONS(5182), + [anon_sym_class] = ACTIONS(5182), + [anon_sym_ref] = ACTIONS(5182), + [anon_sym_struct] = ACTIONS(5182), + [anon_sym_enum] = ACTIONS(5182), + [anon_sym_RBRACE] = ACTIONS(5184), + [anon_sym_interface] = ACTIONS(5182), + [anon_sym_delegate] = ACTIONS(5182), + [anon_sym_record] = ACTIONS(5182), + [anon_sym_public] = ACTIONS(5182), + [anon_sym_private] = ACTIONS(5182), + [anon_sym_readonly] = ACTIONS(5182), + [anon_sym_abstract] = ACTIONS(5182), + [anon_sym_async] = ACTIONS(5182), + [anon_sym_const] = ACTIONS(5182), + [anon_sym_file] = ACTIONS(5182), + [anon_sym_fixed] = ACTIONS(5182), + [anon_sym_internal] = ACTIONS(5182), + [anon_sym_new] = ACTIONS(5182), + [anon_sym_override] = ACTIONS(5182), + [anon_sym_partial] = ACTIONS(5182), + [anon_sym_protected] = ACTIONS(5182), + [anon_sym_required] = ACTIONS(5182), + [anon_sym_sealed] = ACTIONS(5182), + [anon_sym_virtual] = ACTIONS(5182), + [anon_sym_volatile] = ACTIONS(5182), + [anon_sym_where] = ACTIONS(5182), + [anon_sym_notnull] = ACTIONS(5182), + [anon_sym_unmanaged] = ACTIONS(5182), + [anon_sym_implicit] = ACTIONS(5182), + [anon_sym_explicit] = ACTIONS(5182), + [anon_sym_TILDE] = ACTIONS(5184), + [anon_sym_scoped] = ACTIONS(5182), + [anon_sym_var] = ACTIONS(5182), + [sym_predefined_type] = ACTIONS(5182), + [anon_sym_yield] = ACTIONS(5182), + [anon_sym_when] = ACTIONS(5182), + [anon_sym_from] = ACTIONS(5182), + [anon_sym_into] = ACTIONS(5182), + [anon_sym_join] = ACTIONS(5182), + [anon_sym_on] = ACTIONS(5182), + [anon_sym_equals] = ACTIONS(5182), + [anon_sym_let] = ACTIONS(5182), + [anon_sym_orderby] = ACTIONS(5182), + [anon_sym_ascending] = ACTIONS(5182), + [anon_sym_descending] = ACTIONS(5182), + [anon_sym_group] = ACTIONS(5182), + [anon_sym_by] = ACTIONS(5182), + [anon_sym_select] = ACTIONS(5182), + [sym_grit_metavariable] = ACTIONS(5184), + [aux_sym_preproc_if_token1] = 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), @@ -475720,10 +475458,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2906] = { - [sym__variable_designation] = STATE(5517), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym_identifier] = STATE(5505), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(2906), [sym_preproc_endregion] = STATE(2906), [sym_preproc_line] = STATE(2906), @@ -475733,66 +475467,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2906), [sym_preproc_define] = STATE(2906), [sym_preproc_undef] = STATE(2906), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_PLUS_PLUS] = ACTIONS(4250), - [anon_sym_DASH_DASH] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_SLASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_PIPE] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_LT] = ACTIONS(4250), - [anon_sym_GT_GT] = ACTIONS(4252), - [anon_sym_GT_GT_GT] = ACTIONS(4250), - [anon_sym_EQ_EQ] = ACTIONS(4250), - [anon_sym_BANG_EQ] = ACTIONS(4250), - [anon_sym_GT_EQ] = ACTIONS(4250), - [anon_sym_LT_EQ] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4228), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4250), - [anon_sym_and] = ACTIONS(4252), - [anon_sym_or] = ACTIONS(4252), - [anon_sym_AMP_AMP] = ACTIONS(4250), - [anon_sym_PIPE_PIPE] = ACTIONS(4250), - [sym_op_coalescing] = ACTIONS(4250), - [anon_sym_from] = ACTIONS(4252), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4252), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4252), - [anon_sym_orderby] = ACTIONS(4252), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4252), - [anon_sym_as] = ACTIONS(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4530), + [anon_sym_EQ] = ACTIONS(4532), + [anon_sym_LBRACK] = ACTIONS(4530), + [anon_sym_COLON] = ACTIONS(4530), + [anon_sym_COMMA] = ACTIONS(4530), + [anon_sym_RBRACK] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(4530), + [anon_sym_RPAREN] = ACTIONS(4530), + [anon_sym_RBRACE] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4532), + [anon_sym_GT] = ACTIONS(4532), + [anon_sym_in] = ACTIONS(4532), + [anon_sym_QMARK] = ACTIONS(4532), + [anon_sym_DOT] = ACTIONS(4532), + [anon_sym_EQ_GT] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4532), + [anon_sym_switch] = ACTIONS(4530), + [anon_sym_when] = ACTIONS(4530), + [anon_sym_DOT_DOT] = ACTIONS(4530), + [anon_sym_LT_EQ] = ACTIONS(4530), + [anon_sym_GT_EQ] = ACTIONS(4530), + [anon_sym_and] = ACTIONS(4530), + [anon_sym_or] = ACTIONS(4530), + [anon_sym_PLUS_EQ] = ACTIONS(4530), + [anon_sym_DASH_EQ] = ACTIONS(4530), + [anon_sym_STAR_EQ] = ACTIONS(4530), + [anon_sym_SLASH_EQ] = ACTIONS(4530), + [anon_sym_PERCENT_EQ] = ACTIONS(4530), + [anon_sym_AMP_EQ] = ACTIONS(4530), + [anon_sym_CARET_EQ] = ACTIONS(4530), + [anon_sym_PIPE_EQ] = ACTIONS(4530), + [anon_sym_LT_LT_EQ] = ACTIONS(4530), + [anon_sym_GT_GT_EQ] = ACTIONS(4530), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4530), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4530), + [anon_sym_EQ_EQ] = ACTIONS(4530), + [anon_sym_BANG_EQ] = ACTIONS(4530), + [anon_sym_AMP_AMP] = ACTIONS(4530), + [anon_sym_PIPE_PIPE] = ACTIONS(4530), + [anon_sym_AMP] = ACTIONS(4532), + [sym_op_bitwise_or] = ACTIONS(4532), + [anon_sym_CARET] = ACTIONS(4532), + [sym_op_left_shift] = ACTIONS(4532), + [sym_op_right_shift] = ACTIONS(4532), + [sym_op_unsigned_right_shift] = ACTIONS(4532), + [anon_sym_PLUS] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [sym_op_divide] = ACTIONS(4532), + [sym_op_modulo] = ACTIONS(4532), + [sym_op_coalescing] = ACTIONS(4532), + [anon_sym_BANG] = ACTIONS(4532), + [anon_sym_PLUS_PLUS] = ACTIONS(4530), + [anon_sym_DASH_DASH] = ACTIONS(4530), + [anon_sym_into] = ACTIONS(4530), + [anon_sym_on] = ACTIONS(4530), + [anon_sym_equals] = ACTIONS(4530), + [anon_sym_by] = ACTIONS(4530), + [anon_sym_as] = ACTIONS(4530), + [anon_sym_is] = ACTIONS(4530), + [anon_sym_DASH_GT] = ACTIONS(4530), + [anon_sym_with] = ACTIONS(4530), + [aux_sym_preproc_if_token3] = ACTIONS(4530), + [aux_sym_preproc_else_token1] = ACTIONS(4530), + [aux_sym_preproc_elif_token1] = ACTIONS(4530), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475814,70 +475552,70 @@ 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), - [sym__identifier_token] = ACTIONS(4991), - [anon_sym_extern] = ACTIONS(4991), - [anon_sym_alias] = ACTIONS(4991), - [anon_sym_global] = ACTIONS(4991), - [anon_sym_using] = ACTIONS(4991), - [anon_sym_unsafe] = ACTIONS(4991), - [anon_sym_static] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_LPAREN] = ACTIONS(4993), - [anon_sym_event] = ACTIONS(4991), - [anon_sym_namespace] = ACTIONS(4991), - [anon_sym_class] = ACTIONS(4991), - [anon_sym_ref] = ACTIONS(4991), - [anon_sym_struct] = ACTIONS(4991), - [anon_sym_enum] = ACTIONS(4991), - [anon_sym_RBRACE] = ACTIONS(4993), - [anon_sym_interface] = ACTIONS(4991), - [anon_sym_delegate] = ACTIONS(4991), - [anon_sym_record] = ACTIONS(4991), - [anon_sym_public] = ACTIONS(4991), - [anon_sym_private] = ACTIONS(4991), - [anon_sym_readonly] = ACTIONS(4991), - [anon_sym_abstract] = ACTIONS(4991), - [anon_sym_async] = ACTIONS(4991), - [anon_sym_const] = ACTIONS(4991), - [anon_sym_file] = ACTIONS(4991), - [anon_sym_fixed] = ACTIONS(4991), - [anon_sym_internal] = ACTIONS(4991), - [anon_sym_new] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_partial] = ACTIONS(4991), - [anon_sym_protected] = ACTIONS(4991), - [anon_sym_required] = ACTIONS(4991), - [anon_sym_sealed] = ACTIONS(4991), - [anon_sym_virtual] = ACTIONS(4991), - [anon_sym_volatile] = ACTIONS(4991), - [anon_sym_where] = ACTIONS(4991), - [anon_sym_notnull] = ACTIONS(4991), - [anon_sym_unmanaged] = ACTIONS(4991), - [anon_sym_TILDE] = ACTIONS(4993), - [anon_sym_implicit] = ACTIONS(4991), - [anon_sym_explicit] = ACTIONS(4991), - [anon_sym_scoped] = ACTIONS(4991), - [anon_sym_var] = ACTIONS(4991), - [sym_predefined_type] = ACTIONS(4991), - [anon_sym_yield] = ACTIONS(4991), - [anon_sym_when] = ACTIONS(4991), - [anon_sym_from] = ACTIONS(4991), - [anon_sym_into] = ACTIONS(4991), - [anon_sym_join] = ACTIONS(4991), - [anon_sym_on] = ACTIONS(4991), - [anon_sym_equals] = ACTIONS(4991), - [anon_sym_let] = ACTIONS(4991), - [anon_sym_orderby] = ACTIONS(4991), - [anon_sym_ascending] = ACTIONS(4991), - [anon_sym_descending] = ACTIONS(4991), - [anon_sym_group] = ACTIONS(4991), - [anon_sym_by] = ACTIONS(4991), - [anon_sym_select] = ACTIONS(4991), - [sym_grit_metavariable] = ACTIONS(4993), - [aux_sym_preproc_if_token1] = ACTIONS(4993), - [aux_sym_preproc_if_token3] = ACTIONS(4993), - [aux_sym_preproc_else_token1] = ACTIONS(4993), - [aux_sym_preproc_elif_token1] = ACTIONS(4993), + [sym__identifier_token] = ACTIONS(3652), + [anon_sym_extern] = ACTIONS(3652), + [anon_sym_alias] = ACTIONS(3652), + [anon_sym_global] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_unsafe] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_event] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_ref] = ACTIONS(3652), + [anon_sym_struct] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [anon_sym_RBRACE] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3652), + [anon_sym_delegate] = ACTIONS(3652), + [anon_sym_record] = ACTIONS(3652), + [anon_sym_public] = ACTIONS(3652), + [anon_sym_private] = ACTIONS(3652), + [anon_sym_readonly] = ACTIONS(3652), + [anon_sym_abstract] = ACTIONS(3652), + [anon_sym_async] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_file] = ACTIONS(3652), + [anon_sym_fixed] = ACTIONS(3652), + [anon_sym_internal] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_override] = ACTIONS(3652), + [anon_sym_partial] = ACTIONS(3652), + [anon_sym_protected] = ACTIONS(3652), + [anon_sym_required] = ACTIONS(3652), + [anon_sym_sealed] = ACTIONS(3652), + [anon_sym_virtual] = ACTIONS(3652), + [anon_sym_volatile] = ACTIONS(3652), + [anon_sym_where] = ACTIONS(3652), + [anon_sym_notnull] = ACTIONS(3652), + [anon_sym_unmanaged] = ACTIONS(3652), + [anon_sym_implicit] = ACTIONS(3652), + [anon_sym_explicit] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_scoped] = ACTIONS(3652), + [anon_sym_var] = ACTIONS(3652), + [sym_predefined_type] = ACTIONS(3652), + [anon_sym_yield] = ACTIONS(3652), + [anon_sym_when] = 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_ascending] = ACTIONS(3652), + [anon_sym_descending] = ACTIONS(3652), + [anon_sym_group] = ACTIONS(3652), + [anon_sym_by] = ACTIONS(3652), + [anon_sym_select] = ACTIONS(3652), + [sym_grit_metavariable] = ACTIONS(3654), + [aux_sym_preproc_if_token1] = ACTIONS(3654), + [aux_sym_preproc_if_token3] = ACTIONS(3654), + [aux_sym_preproc_else_token1] = ACTIONS(3654), + [aux_sym_preproc_elif_token1] = ACTIONS(3654), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475899,70 +475637,70 @@ 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), - [sym__identifier_token] = ACTIONS(4995), - [anon_sym_extern] = ACTIONS(4995), - [anon_sym_alias] = ACTIONS(4995), - [anon_sym_global] = ACTIONS(4995), - [anon_sym_using] = ACTIONS(4995), - [anon_sym_unsafe] = ACTIONS(4995), - [anon_sym_static] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_event] = ACTIONS(4995), - [anon_sym_namespace] = ACTIONS(4995), - [anon_sym_class] = ACTIONS(4995), - [anon_sym_ref] = ACTIONS(4995), - [anon_sym_struct] = ACTIONS(4995), - [anon_sym_enum] = ACTIONS(4995), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_interface] = ACTIONS(4995), - [anon_sym_delegate] = ACTIONS(4995), - [anon_sym_record] = ACTIONS(4995), - [anon_sym_public] = ACTIONS(4995), - [anon_sym_private] = ACTIONS(4995), - [anon_sym_readonly] = ACTIONS(4995), - [anon_sym_abstract] = ACTIONS(4995), - [anon_sym_async] = ACTIONS(4995), - [anon_sym_const] = ACTIONS(4995), - [anon_sym_file] = ACTIONS(4995), - [anon_sym_fixed] = ACTIONS(4995), - [anon_sym_internal] = ACTIONS(4995), - [anon_sym_new] = ACTIONS(4995), - [anon_sym_override] = ACTIONS(4995), - [anon_sym_partial] = ACTIONS(4995), - [anon_sym_protected] = ACTIONS(4995), - [anon_sym_required] = ACTIONS(4995), - [anon_sym_sealed] = ACTIONS(4995), - [anon_sym_virtual] = ACTIONS(4995), - [anon_sym_volatile] = ACTIONS(4995), - [anon_sym_where] = ACTIONS(4995), - [anon_sym_notnull] = ACTIONS(4995), - [anon_sym_unmanaged] = ACTIONS(4995), - [anon_sym_TILDE] = ACTIONS(4997), - [anon_sym_implicit] = ACTIONS(4995), - [anon_sym_explicit] = ACTIONS(4995), - [anon_sym_scoped] = ACTIONS(4995), - [anon_sym_var] = ACTIONS(4995), - [sym_predefined_type] = ACTIONS(4995), - [anon_sym_yield] = ACTIONS(4995), - [anon_sym_when] = ACTIONS(4995), - [anon_sym_from] = ACTIONS(4995), - [anon_sym_into] = ACTIONS(4995), - [anon_sym_join] = ACTIONS(4995), - [anon_sym_on] = ACTIONS(4995), - [anon_sym_equals] = ACTIONS(4995), - [anon_sym_let] = ACTIONS(4995), - [anon_sym_orderby] = ACTIONS(4995), - [anon_sym_ascending] = ACTIONS(4995), - [anon_sym_descending] = ACTIONS(4995), - [anon_sym_group] = ACTIONS(4995), - [anon_sym_by] = ACTIONS(4995), - [anon_sym_select] = ACTIONS(4995), - [sym_grit_metavariable] = ACTIONS(4997), - [aux_sym_preproc_if_token1] = ACTIONS(4997), - [aux_sym_preproc_if_token3] = ACTIONS(4997), - [aux_sym_preproc_else_token1] = ACTIONS(4997), - [aux_sym_preproc_elif_token1] = ACTIONS(4997), + [sym__identifier_token] = ACTIONS(5186), + [anon_sym_extern] = ACTIONS(5186), + [anon_sym_alias] = ACTIONS(5186), + [anon_sym_global] = ACTIONS(5186), + [anon_sym_using] = ACTIONS(5186), + [anon_sym_unsafe] = ACTIONS(5186), + [anon_sym_static] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(5188), + [anon_sym_LPAREN] = ACTIONS(5188), + [anon_sym_event] = ACTIONS(5186), + [anon_sym_namespace] = ACTIONS(5186), + [anon_sym_class] = ACTIONS(5186), + [anon_sym_ref] = ACTIONS(5186), + [anon_sym_struct] = ACTIONS(5186), + [anon_sym_enum] = ACTIONS(5186), + [anon_sym_RBRACE] = ACTIONS(5188), + [anon_sym_interface] = ACTIONS(5186), + [anon_sym_delegate] = ACTIONS(5186), + [anon_sym_record] = ACTIONS(5186), + [anon_sym_public] = ACTIONS(5186), + [anon_sym_private] = ACTIONS(5186), + [anon_sym_readonly] = ACTIONS(5186), + [anon_sym_abstract] = ACTIONS(5186), + [anon_sym_async] = ACTIONS(5186), + [anon_sym_const] = ACTIONS(5186), + [anon_sym_file] = ACTIONS(5186), + [anon_sym_fixed] = ACTIONS(5186), + [anon_sym_internal] = ACTIONS(5186), + [anon_sym_new] = ACTIONS(5186), + [anon_sym_override] = ACTIONS(5186), + [anon_sym_partial] = ACTIONS(5186), + [anon_sym_protected] = ACTIONS(5186), + [anon_sym_required] = ACTIONS(5186), + [anon_sym_sealed] = ACTIONS(5186), + [anon_sym_virtual] = ACTIONS(5186), + [anon_sym_volatile] = ACTIONS(5186), + [anon_sym_where] = ACTIONS(5186), + [anon_sym_notnull] = ACTIONS(5186), + [anon_sym_unmanaged] = ACTIONS(5186), + [anon_sym_implicit] = ACTIONS(5186), + [anon_sym_explicit] = ACTIONS(5186), + [anon_sym_TILDE] = ACTIONS(5188), + [anon_sym_scoped] = ACTIONS(5186), + [anon_sym_var] = ACTIONS(5186), + [sym_predefined_type] = ACTIONS(5186), + [anon_sym_yield] = ACTIONS(5186), + [anon_sym_when] = ACTIONS(5186), + [anon_sym_from] = ACTIONS(5186), + [anon_sym_into] = ACTIONS(5186), + [anon_sym_join] = ACTIONS(5186), + [anon_sym_on] = ACTIONS(5186), + [anon_sym_equals] = ACTIONS(5186), + [anon_sym_let] = ACTIONS(5186), + [anon_sym_orderby] = ACTIONS(5186), + [anon_sym_ascending] = ACTIONS(5186), + [anon_sym_descending] = ACTIONS(5186), + [anon_sym_group] = ACTIONS(5186), + [anon_sym_by] = ACTIONS(5186), + [anon_sym_select] = ACTIONS(5186), + [sym_grit_metavariable] = ACTIONS(5188), + [aux_sym_preproc_if_token1] = 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), @@ -475984,70 +475722,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2909), [sym_preproc_define] = STATE(2909), [sym_preproc_undef] = STATE(2909), - [sym__identifier_token] = ACTIONS(4999), - [anon_sym_extern] = ACTIONS(4999), - [anon_sym_alias] = ACTIONS(4999), - [anon_sym_global] = ACTIONS(4999), - [anon_sym_using] = ACTIONS(4999), - [anon_sym_unsafe] = ACTIONS(4999), - [anon_sym_static] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_event] = ACTIONS(4999), - [anon_sym_namespace] = ACTIONS(4999), - [anon_sym_class] = ACTIONS(4999), - [anon_sym_ref] = ACTIONS(4999), - [anon_sym_struct] = ACTIONS(4999), - [anon_sym_enum] = ACTIONS(4999), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_interface] = ACTIONS(4999), - [anon_sym_delegate] = ACTIONS(4999), - [anon_sym_record] = ACTIONS(4999), - [anon_sym_public] = ACTIONS(4999), - [anon_sym_private] = ACTIONS(4999), - [anon_sym_readonly] = ACTIONS(4999), - [anon_sym_abstract] = ACTIONS(4999), - [anon_sym_async] = ACTIONS(4999), - [anon_sym_const] = ACTIONS(4999), - [anon_sym_file] = ACTIONS(4999), - [anon_sym_fixed] = ACTIONS(4999), - [anon_sym_internal] = ACTIONS(4999), - [anon_sym_new] = ACTIONS(4999), - [anon_sym_override] = ACTIONS(4999), - [anon_sym_partial] = ACTIONS(4999), - [anon_sym_protected] = ACTIONS(4999), - [anon_sym_required] = ACTIONS(4999), - [anon_sym_sealed] = ACTIONS(4999), - [anon_sym_virtual] = ACTIONS(4999), - [anon_sym_volatile] = ACTIONS(4999), - [anon_sym_where] = ACTIONS(4999), - [anon_sym_notnull] = ACTIONS(4999), - [anon_sym_unmanaged] = ACTIONS(4999), - [anon_sym_TILDE] = ACTIONS(5001), - [anon_sym_implicit] = ACTIONS(4999), - [anon_sym_explicit] = ACTIONS(4999), - [anon_sym_scoped] = ACTIONS(4999), - [anon_sym_var] = ACTIONS(4999), - [sym_predefined_type] = ACTIONS(4999), - [anon_sym_yield] = ACTIONS(4999), - [anon_sym_when] = ACTIONS(4999), - [anon_sym_from] = ACTIONS(4999), - [anon_sym_into] = ACTIONS(4999), - [anon_sym_join] = ACTIONS(4999), - [anon_sym_on] = ACTIONS(4999), - [anon_sym_equals] = ACTIONS(4999), - [anon_sym_let] = ACTIONS(4999), - [anon_sym_orderby] = ACTIONS(4999), - [anon_sym_ascending] = ACTIONS(4999), - [anon_sym_descending] = ACTIONS(4999), - [anon_sym_group] = ACTIONS(4999), - [anon_sym_by] = ACTIONS(4999), - [anon_sym_select] = ACTIONS(4999), - [sym_grit_metavariable] = ACTIONS(5001), - [aux_sym_preproc_if_token1] = ACTIONS(5001), - [aux_sym_preproc_if_token3] = ACTIONS(5001), - [aux_sym_preproc_else_token1] = ACTIONS(5001), - [aux_sym_preproc_elif_token1] = ACTIONS(5001), + [sym__identifier_token] = ACTIONS(5190), + [anon_sym_extern] = ACTIONS(5190), + [anon_sym_alias] = ACTIONS(5190), + [anon_sym_global] = ACTIONS(5190), + [anon_sym_using] = ACTIONS(5190), + [anon_sym_unsafe] = ACTIONS(5190), + [anon_sym_static] = ACTIONS(5190), + [anon_sym_LBRACK] = ACTIONS(5192), + [anon_sym_LPAREN] = ACTIONS(5192), + [anon_sym_event] = ACTIONS(5190), + [anon_sym_namespace] = ACTIONS(5190), + [anon_sym_class] = ACTIONS(5190), + [anon_sym_ref] = ACTIONS(5190), + [anon_sym_struct] = ACTIONS(5190), + [anon_sym_enum] = ACTIONS(5190), + [anon_sym_RBRACE] = ACTIONS(5192), + [anon_sym_interface] = ACTIONS(5190), + [anon_sym_delegate] = ACTIONS(5190), + [anon_sym_record] = ACTIONS(5190), + [anon_sym_public] = ACTIONS(5190), + [anon_sym_private] = ACTIONS(5190), + [anon_sym_readonly] = ACTIONS(5190), + [anon_sym_abstract] = ACTIONS(5190), + [anon_sym_async] = ACTIONS(5190), + [anon_sym_const] = ACTIONS(5190), + [anon_sym_file] = ACTIONS(5190), + [anon_sym_fixed] = ACTIONS(5190), + [anon_sym_internal] = ACTIONS(5190), + [anon_sym_new] = ACTIONS(5190), + [anon_sym_override] = ACTIONS(5190), + [anon_sym_partial] = ACTIONS(5190), + [anon_sym_protected] = ACTIONS(5190), + [anon_sym_required] = ACTIONS(5190), + [anon_sym_sealed] = ACTIONS(5190), + [anon_sym_virtual] = ACTIONS(5190), + [anon_sym_volatile] = ACTIONS(5190), + [anon_sym_where] = ACTIONS(5190), + [anon_sym_notnull] = ACTIONS(5190), + [anon_sym_unmanaged] = ACTIONS(5190), + [anon_sym_implicit] = ACTIONS(5190), + [anon_sym_explicit] = ACTIONS(5190), + [anon_sym_TILDE] = ACTIONS(5192), + [anon_sym_scoped] = ACTIONS(5190), + [anon_sym_var] = ACTIONS(5190), + [sym_predefined_type] = ACTIONS(5190), + [anon_sym_yield] = ACTIONS(5190), + [anon_sym_when] = ACTIONS(5190), + [anon_sym_from] = ACTIONS(5190), + [anon_sym_into] = ACTIONS(5190), + [anon_sym_join] = ACTIONS(5190), + [anon_sym_on] = ACTIONS(5190), + [anon_sym_equals] = ACTIONS(5190), + [anon_sym_let] = ACTIONS(5190), + [anon_sym_orderby] = ACTIONS(5190), + [anon_sym_ascending] = ACTIONS(5190), + [anon_sym_descending] = ACTIONS(5190), + [anon_sym_group] = ACTIONS(5190), + [anon_sym_by] = ACTIONS(5190), + [anon_sym_select] = ACTIONS(5190), + [sym_grit_metavariable] = ACTIONS(5192), + [aux_sym_preproc_if_token1] = 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), @@ -476069,70 +475807,70 @@ 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), - [sym__identifier_token] = ACTIONS(5003), - [anon_sym_extern] = ACTIONS(5003), - [anon_sym_alias] = ACTIONS(5003), - [anon_sym_global] = ACTIONS(5003), - [anon_sym_using] = ACTIONS(5003), - [anon_sym_unsafe] = ACTIONS(5003), - [anon_sym_static] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_event] = ACTIONS(5003), - [anon_sym_namespace] = ACTIONS(5003), - [anon_sym_class] = ACTIONS(5003), - [anon_sym_ref] = ACTIONS(5003), - [anon_sym_struct] = ACTIONS(5003), - [anon_sym_enum] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(5005), - [anon_sym_interface] = ACTIONS(5003), - [anon_sym_delegate] = ACTIONS(5003), - [anon_sym_record] = ACTIONS(5003), - [anon_sym_public] = ACTIONS(5003), - [anon_sym_private] = ACTIONS(5003), - [anon_sym_readonly] = ACTIONS(5003), - [anon_sym_abstract] = ACTIONS(5003), - [anon_sym_async] = ACTIONS(5003), - [anon_sym_const] = ACTIONS(5003), - [anon_sym_file] = ACTIONS(5003), - [anon_sym_fixed] = ACTIONS(5003), - [anon_sym_internal] = ACTIONS(5003), - [anon_sym_new] = ACTIONS(5003), - [anon_sym_override] = ACTIONS(5003), - [anon_sym_partial] = ACTIONS(5003), - [anon_sym_protected] = ACTIONS(5003), - [anon_sym_required] = ACTIONS(5003), - [anon_sym_sealed] = ACTIONS(5003), - [anon_sym_virtual] = ACTIONS(5003), - [anon_sym_volatile] = ACTIONS(5003), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_notnull] = ACTIONS(5003), - [anon_sym_unmanaged] = ACTIONS(5003), - [anon_sym_TILDE] = ACTIONS(5005), - [anon_sym_implicit] = ACTIONS(5003), - [anon_sym_explicit] = ACTIONS(5003), - [anon_sym_scoped] = ACTIONS(5003), - [anon_sym_var] = ACTIONS(5003), - [sym_predefined_type] = ACTIONS(5003), - [anon_sym_yield] = ACTIONS(5003), - [anon_sym_when] = ACTIONS(5003), - [anon_sym_from] = ACTIONS(5003), - [anon_sym_into] = ACTIONS(5003), - [anon_sym_join] = ACTIONS(5003), - [anon_sym_on] = ACTIONS(5003), - [anon_sym_equals] = ACTIONS(5003), - [anon_sym_let] = ACTIONS(5003), - [anon_sym_orderby] = ACTIONS(5003), - [anon_sym_ascending] = ACTIONS(5003), - [anon_sym_descending] = ACTIONS(5003), - [anon_sym_group] = ACTIONS(5003), - [anon_sym_by] = ACTIONS(5003), - [anon_sym_select] = ACTIONS(5003), - [sym_grit_metavariable] = ACTIONS(5005), - [aux_sym_preproc_if_token1] = ACTIONS(5005), - [aux_sym_preproc_if_token3] = ACTIONS(5005), - [aux_sym_preproc_else_token1] = ACTIONS(5005), - [aux_sym_preproc_elif_token1] = ACTIONS(5005), + [sym__identifier_token] = ACTIONS(5194), + [anon_sym_extern] = ACTIONS(5194), + [anon_sym_alias] = ACTIONS(5194), + [anon_sym_global] = ACTIONS(5194), + [anon_sym_using] = ACTIONS(5194), + [anon_sym_unsafe] = ACTIONS(5194), + [anon_sym_static] = ACTIONS(5194), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_LPAREN] = ACTIONS(5196), + [anon_sym_event] = ACTIONS(5194), + [anon_sym_namespace] = ACTIONS(5194), + [anon_sym_class] = ACTIONS(5194), + [anon_sym_ref] = ACTIONS(5194), + [anon_sym_struct] = ACTIONS(5194), + [anon_sym_enum] = ACTIONS(5194), + [anon_sym_RBRACE] = ACTIONS(5196), + [anon_sym_interface] = ACTIONS(5194), + [anon_sym_delegate] = ACTIONS(5194), + [anon_sym_record] = ACTIONS(5194), + [anon_sym_public] = ACTIONS(5194), + [anon_sym_private] = ACTIONS(5194), + [anon_sym_readonly] = ACTIONS(5194), + [anon_sym_abstract] = ACTIONS(5194), + [anon_sym_async] = ACTIONS(5194), + [anon_sym_const] = ACTIONS(5194), + [anon_sym_file] = ACTIONS(5194), + [anon_sym_fixed] = ACTIONS(5194), + [anon_sym_internal] = ACTIONS(5194), + [anon_sym_new] = ACTIONS(5194), + [anon_sym_override] = ACTIONS(5194), + [anon_sym_partial] = ACTIONS(5194), + [anon_sym_protected] = ACTIONS(5194), + [anon_sym_required] = ACTIONS(5194), + [anon_sym_sealed] = ACTIONS(5194), + [anon_sym_virtual] = ACTIONS(5194), + [anon_sym_volatile] = ACTIONS(5194), + [anon_sym_where] = ACTIONS(5194), + [anon_sym_notnull] = ACTIONS(5194), + [anon_sym_unmanaged] = ACTIONS(5194), + [anon_sym_implicit] = ACTIONS(5194), + [anon_sym_explicit] = ACTIONS(5194), + [anon_sym_TILDE] = ACTIONS(5196), + [anon_sym_scoped] = ACTIONS(5194), + [anon_sym_var] = ACTIONS(5194), + [sym_predefined_type] = ACTIONS(5194), + [anon_sym_yield] = ACTIONS(5194), + [anon_sym_when] = ACTIONS(5194), + [anon_sym_from] = ACTIONS(5194), + [anon_sym_into] = ACTIONS(5194), + [anon_sym_join] = ACTIONS(5194), + [anon_sym_on] = ACTIONS(5194), + [anon_sym_equals] = ACTIONS(5194), + [anon_sym_let] = ACTIONS(5194), + [anon_sym_orderby] = ACTIONS(5194), + [anon_sym_ascending] = ACTIONS(5194), + [anon_sym_descending] = ACTIONS(5194), + [anon_sym_group] = ACTIONS(5194), + [anon_sym_by] = ACTIONS(5194), + [anon_sym_select] = ACTIONS(5194), + [sym_grit_metavariable] = ACTIONS(5196), + [aux_sym_preproc_if_token1] = 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), @@ -476145,10 +475883,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2911] = { - [sym__variable_designation] = STATE(5512), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym_identifier] = STATE(5505), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(2911), [sym_preproc_endregion] = STATE(2911), [sym_preproc_line] = STATE(2911), @@ -476158,66 +475892,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2911), [sym_preproc_define] = STATE(2911), [sym_preproc_undef] = STATE(2911), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(4308), - [anon_sym_GT] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4308), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_PLUS_PLUS] = ACTIONS(4306), - [anon_sym_DASH_DASH] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4306), - [anon_sym_SLASH] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4306), - [anon_sym_CARET] = ACTIONS(4306), - [anon_sym_PIPE] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_LT] = ACTIONS(4306), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_GT_GT_GT] = ACTIONS(4306), - [anon_sym_EQ_EQ] = ACTIONS(4306), - [anon_sym_BANG_EQ] = ACTIONS(4306), - [anon_sym_GT_EQ] = ACTIONS(4306), - [anon_sym_LT_EQ] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4228), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4306), - [anon_sym_and] = ACTIONS(4308), - [anon_sym_or] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4306), - [anon_sym_PIPE_PIPE] = ACTIONS(4306), - [sym_op_coalescing] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4308), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4308), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4308), - [anon_sym_orderby] = ACTIONS(4308), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4308), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4308), - [anon_sym_as] = ACTIONS(4308), - [anon_sym_is] = ACTIONS(4308), - [anon_sym_DASH_GT] = ACTIONS(4306), - [anon_sym_with] = ACTIONS(4308), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5198), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476228,8 +475965,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(4331), }, [2912] = { + [sym__variable_designation] = STATE(4143), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2912), [sym_preproc_endregion] = STATE(2912), [sym_preproc_line] = STATE(2912), @@ -476239,70 +475981,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2912), [sym_preproc_define] = STATE(2912), [sym_preproc_undef] = STATE(2912), - [sym__identifier_token] = ACTIONS(5007), - [anon_sym_extern] = ACTIONS(5007), - [anon_sym_alias] = ACTIONS(5007), - [anon_sym_global] = ACTIONS(5007), - [anon_sym_using] = ACTIONS(5007), - [anon_sym_unsafe] = ACTIONS(5007), - [anon_sym_static] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_event] = ACTIONS(5007), - [anon_sym_namespace] = ACTIONS(5007), - [anon_sym_class] = ACTIONS(5007), - [anon_sym_ref] = ACTIONS(5007), - [anon_sym_struct] = ACTIONS(5007), - [anon_sym_enum] = ACTIONS(5007), - [anon_sym_RBRACE] = ACTIONS(5009), - [anon_sym_interface] = ACTIONS(5007), - [anon_sym_delegate] = ACTIONS(5007), - [anon_sym_record] = ACTIONS(5007), - [anon_sym_public] = ACTIONS(5007), - [anon_sym_private] = ACTIONS(5007), - [anon_sym_readonly] = ACTIONS(5007), - [anon_sym_abstract] = ACTIONS(5007), - [anon_sym_async] = ACTIONS(5007), - [anon_sym_const] = ACTIONS(5007), - [anon_sym_file] = ACTIONS(5007), - [anon_sym_fixed] = ACTIONS(5007), - [anon_sym_internal] = ACTIONS(5007), - [anon_sym_new] = ACTIONS(5007), - [anon_sym_override] = ACTIONS(5007), - [anon_sym_partial] = ACTIONS(5007), - [anon_sym_protected] = ACTIONS(5007), - [anon_sym_required] = ACTIONS(5007), - [anon_sym_sealed] = ACTIONS(5007), - [anon_sym_virtual] = ACTIONS(5007), - [anon_sym_volatile] = ACTIONS(5007), - [anon_sym_where] = ACTIONS(5007), - [anon_sym_notnull] = ACTIONS(5007), - [anon_sym_unmanaged] = ACTIONS(5007), - [anon_sym_TILDE] = ACTIONS(5009), - [anon_sym_implicit] = ACTIONS(5007), - [anon_sym_explicit] = ACTIONS(5007), - [anon_sym_scoped] = ACTIONS(5007), - [anon_sym_var] = ACTIONS(5007), - [sym_predefined_type] = ACTIONS(5007), - [anon_sym_yield] = ACTIONS(5007), - [anon_sym_when] = ACTIONS(5007), - [anon_sym_from] = ACTIONS(5007), - [anon_sym_into] = ACTIONS(5007), - [anon_sym_join] = ACTIONS(5007), - [anon_sym_on] = ACTIONS(5007), - [anon_sym_equals] = ACTIONS(5007), - [anon_sym_let] = ACTIONS(5007), - [anon_sym_orderby] = ACTIONS(5007), - [anon_sym_ascending] = ACTIONS(5007), - [anon_sym_descending] = ACTIONS(5007), - [anon_sym_group] = ACTIONS(5007), - [anon_sym_by] = ACTIONS(5007), - [anon_sym_select] = ACTIONS(5007), - [sym_grit_metavariable] = ACTIONS(5009), - [aux_sym_preproc_if_token1] = ACTIONS(5009), - [aux_sym_preproc_if_token3] = ACTIONS(5009), - [aux_sym_preproc_else_token1] = ACTIONS(5009), - [aux_sym_preproc_elif_token1] = ACTIONS(5009), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4256), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4254), + [anon_sym_LT_EQ] = ACTIONS(4254), + [anon_sym_GT_EQ] = ACTIONS(4254), + [anon_sym_and] = ACTIONS(4256), + [anon_sym_or] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_AMP_AMP] = ACTIONS(4254), + [anon_sym_PIPE_PIPE] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4256), + [sym_op_bitwise_or] = ACTIONS(4256), + [anon_sym_CARET] = ACTIONS(4254), + [sym_op_left_shift] = ACTIONS(4254), + [sym_op_right_shift] = ACTIONS(4256), + [sym_op_unsigned_right_shift] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [sym_op_divide] = ACTIONS(4256), + [sym_op_modulo] = ACTIONS(4254), + [sym_op_coalescing] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4254), + [anon_sym_DASH_DASH] = ACTIONS(4254), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4256), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4256), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_with] = ACTIONS(4256), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476315,6 +476053,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2913] = { + [sym__variable_designation] = STATE(4246), + [sym_parenthesized_variable_designation] = STATE(4402), + [sym_identifier] = STATE(4390), + [sym__reserved_identifier] = STATE(3771), [sym_preproc_region] = STATE(2913), [sym_preproc_endregion] = STATE(2913), [sym_preproc_line] = STATE(2913), @@ -476324,70 +476066,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2913), [sym_preproc_define] = STATE(2913), [sym_preproc_undef] = STATE(2913), - [anon_sym_SEMI] = ACTIONS(4554), - [anon_sym_EQ] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(4554), - [anon_sym_COMMA] = ACTIONS(4554), - [anon_sym_RBRACK] = ACTIONS(4554), - [anon_sym_LPAREN] = ACTIONS(4554), - [anon_sym_RPAREN] = ACTIONS(4554), - [anon_sym_RBRACE] = ACTIONS(4554), - [anon_sym_LT] = ACTIONS(4556), - [anon_sym_GT] = ACTIONS(4556), - [anon_sym_in] = ACTIONS(4556), - [anon_sym_QMARK] = ACTIONS(4556), - [anon_sym_BANG] = ACTIONS(4556), - [anon_sym_PLUS_PLUS] = ACTIONS(4554), - [anon_sym_DASH_DASH] = ACTIONS(4554), - [anon_sym_PLUS] = ACTIONS(4556), - [anon_sym_DASH] = ACTIONS(4556), - [anon_sym_STAR] = ACTIONS(4556), - [anon_sym_SLASH] = ACTIONS(4556), - [anon_sym_PERCENT] = ACTIONS(4556), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_PIPE] = ACTIONS(4556), - [anon_sym_AMP] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4556), - [anon_sym_GT_GT] = ACTIONS(4556), - [anon_sym_GT_GT_GT] = ACTIONS(4556), - [anon_sym_EQ_EQ] = ACTIONS(4554), - [anon_sym_BANG_EQ] = ACTIONS(4554), - [anon_sym_GT_EQ] = ACTIONS(4554), - [anon_sym_LT_EQ] = ACTIONS(4554), - [anon_sym_DOT] = ACTIONS(4556), - [anon_sym_EQ_GT] = ACTIONS(4554), - [anon_sym_switch] = ACTIONS(4554), - [anon_sym_when] = ACTIONS(4554), - [anon_sym_DOT_DOT] = ACTIONS(4554), - [anon_sym_and] = ACTIONS(4554), - [anon_sym_or] = ACTIONS(4554), - [anon_sym_PLUS_EQ] = ACTIONS(4554), - [anon_sym_DASH_EQ] = ACTIONS(4554), - [anon_sym_STAR_EQ] = ACTIONS(4554), - [anon_sym_SLASH_EQ] = ACTIONS(4554), - [anon_sym_PERCENT_EQ] = ACTIONS(4554), - [anon_sym_AMP_EQ] = ACTIONS(4554), - [anon_sym_CARET_EQ] = ACTIONS(4554), - [anon_sym_PIPE_EQ] = ACTIONS(4554), - [anon_sym_LT_LT_EQ] = ACTIONS(4554), - [anon_sym_GT_GT_EQ] = ACTIONS(4554), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4554), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4554), - [anon_sym_AMP_AMP] = ACTIONS(4554), - [anon_sym_PIPE_PIPE] = ACTIONS(4554), - [sym_op_coalescing] = ACTIONS(4556), - [anon_sym_into] = ACTIONS(4554), - [anon_sym_on] = ACTIONS(4554), - [anon_sym_equals] = ACTIONS(4554), - [anon_sym_by] = ACTIONS(4554), - [anon_sym_as] = ACTIONS(4554), - [anon_sym_is] = ACTIONS(4554), - [anon_sym_DASH_GT] = ACTIONS(4554), - [anon_sym_with] = ACTIONS(4554), - [aux_sym_preproc_if_token3] = ACTIONS(4554), - [aux_sym_preproc_else_token1] = ACTIONS(4554), - [aux_sym_preproc_elif_token1] = ACTIONS(4554), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_file] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4252), + [anon_sym_notnull] = ACTIONS(4218), + [anon_sym_unmanaged] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4252), + [anon_sym_scoped] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_yield] = ACTIONS(4218), + [anon_sym_switch] = ACTIONS(4252), + [anon_sym_when] = ACTIONS(4218), + [sym_discard] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_and] = ACTIONS(4252), + [anon_sym_or] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [sym_op_bitwise_or] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4250), + [sym_op_left_shift] = ACTIONS(4250), + [sym_op_right_shift] = ACTIONS(4252), + [sym_op_unsigned_right_shift] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym_op_divide] = ACTIONS(4252), + [sym_op_modulo] = ACTIONS(4250), + [sym_op_coalescing] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_from] = ACTIONS(4218), + [anon_sym_into] = ACTIONS(4252), + [anon_sym_join] = ACTIONS(4218), + [anon_sym_on] = ACTIONS(4218), + [anon_sym_equals] = ACTIONS(4252), + [anon_sym_let] = ACTIONS(4218), + [anon_sym_orderby] = ACTIONS(4218), + [anon_sym_ascending] = ACTIONS(4218), + [anon_sym_descending] = ACTIONS(4218), + [anon_sym_group] = ACTIONS(4218), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4250), + [anon_sym_with] = ACTIONS(4252), + [sym_grit_metavariable] = ACTIONS(4230), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476409,70 +476147,69 @@ 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), - [sym__identifier_token] = ACTIONS(5011), - [anon_sym_extern] = ACTIONS(5011), - [anon_sym_alias] = ACTIONS(5011), - [anon_sym_global] = ACTIONS(5011), - [anon_sym_using] = ACTIONS(5011), - [anon_sym_unsafe] = ACTIONS(5011), - [anon_sym_static] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_event] = ACTIONS(5011), - [anon_sym_namespace] = ACTIONS(5011), - [anon_sym_class] = ACTIONS(5011), - [anon_sym_ref] = ACTIONS(5011), - [anon_sym_struct] = ACTIONS(5011), - [anon_sym_enum] = ACTIONS(5011), - [anon_sym_RBRACE] = ACTIONS(5013), - [anon_sym_interface] = ACTIONS(5011), - [anon_sym_delegate] = ACTIONS(5011), - [anon_sym_record] = ACTIONS(5011), - [anon_sym_public] = ACTIONS(5011), - [anon_sym_private] = ACTIONS(5011), - [anon_sym_readonly] = ACTIONS(5011), - [anon_sym_abstract] = ACTIONS(5011), - [anon_sym_async] = ACTIONS(5011), - [anon_sym_const] = ACTIONS(5011), - [anon_sym_file] = ACTIONS(5011), - [anon_sym_fixed] = ACTIONS(5011), - [anon_sym_internal] = ACTIONS(5011), - [anon_sym_new] = ACTIONS(5011), - [anon_sym_override] = ACTIONS(5011), - [anon_sym_partial] = ACTIONS(5011), - [anon_sym_protected] = ACTIONS(5011), - [anon_sym_required] = ACTIONS(5011), - [anon_sym_sealed] = ACTIONS(5011), - [anon_sym_virtual] = ACTIONS(5011), - [anon_sym_volatile] = ACTIONS(5011), - [anon_sym_where] = ACTIONS(5011), - [anon_sym_notnull] = ACTIONS(5011), - [anon_sym_unmanaged] = ACTIONS(5011), - [anon_sym_TILDE] = ACTIONS(5013), - [anon_sym_implicit] = ACTIONS(5011), - [anon_sym_explicit] = ACTIONS(5011), - [anon_sym_scoped] = ACTIONS(5011), - [anon_sym_var] = ACTIONS(5011), - [sym_predefined_type] = ACTIONS(5011), - [anon_sym_yield] = ACTIONS(5011), - [anon_sym_when] = ACTIONS(5011), - [anon_sym_from] = ACTIONS(5011), - [anon_sym_into] = ACTIONS(5011), - [anon_sym_join] = ACTIONS(5011), - [anon_sym_on] = ACTIONS(5011), - [anon_sym_equals] = ACTIONS(5011), - [anon_sym_let] = ACTIONS(5011), - [anon_sym_orderby] = ACTIONS(5011), - [anon_sym_ascending] = ACTIONS(5011), - [anon_sym_descending] = ACTIONS(5011), - [anon_sym_group] = ACTIONS(5011), - [anon_sym_by] = ACTIONS(5011), - [anon_sym_select] = ACTIONS(5011), - [sym_grit_metavariable] = ACTIONS(5013), - [aux_sym_preproc_if_token1] = ACTIONS(5013), - [aux_sym_preproc_if_token3] = ACTIONS(5013), - [aux_sym_preproc_else_token1] = ACTIONS(5013), - [aux_sym_preproc_elif_token1] = ACTIONS(5013), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5200), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476483,6 +476220,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(4331), }, [2915] = { [sym_preproc_region] = STATE(2915), @@ -476494,70 +476232,70 @@ 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(4558), - [anon_sym_EQ] = ACTIONS(4560), - [anon_sym_LBRACK] = ACTIONS(4558), - [anon_sym_COLON] = ACTIONS(4558), - [anon_sym_COMMA] = ACTIONS(4558), - [anon_sym_RBRACK] = ACTIONS(4558), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_RPAREN] = ACTIONS(4558), - [anon_sym_RBRACE] = ACTIONS(4558), - [anon_sym_LT] = ACTIONS(4560), - [anon_sym_GT] = ACTIONS(4560), - [anon_sym_in] = ACTIONS(4560), - [anon_sym_QMARK] = ACTIONS(4560), - [anon_sym_BANG] = ACTIONS(4560), - [anon_sym_PLUS_PLUS] = ACTIONS(4558), - [anon_sym_DASH_DASH] = ACTIONS(4558), - [anon_sym_PLUS] = ACTIONS(4560), - [anon_sym_DASH] = ACTIONS(4560), - [anon_sym_STAR] = ACTIONS(4560), - [anon_sym_SLASH] = ACTIONS(4560), - [anon_sym_PERCENT] = ACTIONS(4560), - [anon_sym_CARET] = ACTIONS(4560), - [anon_sym_PIPE] = ACTIONS(4560), - [anon_sym_AMP] = ACTIONS(4560), - [anon_sym_LT_LT] = ACTIONS(4560), - [anon_sym_GT_GT] = ACTIONS(4560), - [anon_sym_GT_GT_GT] = ACTIONS(4560), - [anon_sym_EQ_EQ] = ACTIONS(4558), - [anon_sym_BANG_EQ] = ACTIONS(4558), - [anon_sym_GT_EQ] = ACTIONS(4558), - [anon_sym_LT_EQ] = ACTIONS(4558), - [anon_sym_DOT] = ACTIONS(4560), - [anon_sym_EQ_GT] = ACTIONS(4558), - [anon_sym_switch] = ACTIONS(4558), - [anon_sym_when] = ACTIONS(4558), - [anon_sym_DOT_DOT] = ACTIONS(4558), - [anon_sym_and] = ACTIONS(4558), - [anon_sym_or] = ACTIONS(4558), - [anon_sym_PLUS_EQ] = ACTIONS(4558), - [anon_sym_DASH_EQ] = ACTIONS(4558), - [anon_sym_STAR_EQ] = ACTIONS(4558), - [anon_sym_SLASH_EQ] = ACTIONS(4558), - [anon_sym_PERCENT_EQ] = ACTIONS(4558), - [anon_sym_AMP_EQ] = ACTIONS(4558), - [anon_sym_CARET_EQ] = ACTIONS(4558), - [anon_sym_PIPE_EQ] = ACTIONS(4558), - [anon_sym_LT_LT_EQ] = ACTIONS(4558), - [anon_sym_GT_GT_EQ] = ACTIONS(4558), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4558), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4558), - [anon_sym_AMP_AMP] = ACTIONS(4558), - [anon_sym_PIPE_PIPE] = ACTIONS(4558), - [sym_op_coalescing] = ACTIONS(4560), - [anon_sym_into] = ACTIONS(4558), - [anon_sym_on] = ACTIONS(4558), - [anon_sym_equals] = ACTIONS(4558), - [anon_sym_by] = ACTIONS(4558), - [anon_sym_as] = ACTIONS(4558), - [anon_sym_is] = ACTIONS(4558), - [anon_sym_DASH_GT] = ACTIONS(4558), - [anon_sym_with] = ACTIONS(4558), - [aux_sym_preproc_if_token3] = ACTIONS(4558), - [aux_sym_preproc_else_token1] = ACTIONS(4558), - [aux_sym_preproc_elif_token1] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(4542), + [anon_sym_EQ] = ACTIONS(4544), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_COLON] = ACTIONS(4542), + [anon_sym_COMMA] = ACTIONS(4542), + [anon_sym_RBRACK] = ACTIONS(4542), + [anon_sym_LPAREN] = ACTIONS(4542), + [anon_sym_RPAREN] = ACTIONS(4542), + [anon_sym_RBRACE] = ACTIONS(4542), + [anon_sym_LT] = ACTIONS(4544), + [anon_sym_GT] = ACTIONS(4544), + [anon_sym_in] = ACTIONS(4544), + [anon_sym_QMARK] = ACTIONS(4544), + [anon_sym_DOT] = ACTIONS(4544), + [anon_sym_EQ_GT] = ACTIONS(4542), + [anon_sym_STAR] = ACTIONS(4544), + [anon_sym_switch] = ACTIONS(4542), + [anon_sym_when] = ACTIONS(4542), + [anon_sym_DOT_DOT] = ACTIONS(4542), + [anon_sym_LT_EQ] = ACTIONS(4542), + [anon_sym_GT_EQ] = ACTIONS(4542), + [anon_sym_and] = ACTIONS(4542), + [anon_sym_or] = ACTIONS(4542), + [anon_sym_PLUS_EQ] = ACTIONS(4542), + [anon_sym_DASH_EQ] = ACTIONS(4542), + [anon_sym_STAR_EQ] = ACTIONS(4542), + [anon_sym_SLASH_EQ] = ACTIONS(4542), + [anon_sym_PERCENT_EQ] = ACTIONS(4542), + [anon_sym_AMP_EQ] = ACTIONS(4542), + [anon_sym_CARET_EQ] = ACTIONS(4542), + [anon_sym_PIPE_EQ] = ACTIONS(4542), + [anon_sym_LT_LT_EQ] = ACTIONS(4542), + [anon_sym_GT_GT_EQ] = ACTIONS(4542), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4542), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4542), + [anon_sym_EQ_EQ] = ACTIONS(4542), + [anon_sym_BANG_EQ] = ACTIONS(4542), + [anon_sym_AMP_AMP] = ACTIONS(4542), + [anon_sym_PIPE_PIPE] = ACTIONS(4542), + [anon_sym_AMP] = ACTIONS(4544), + [sym_op_bitwise_or] = ACTIONS(4544), + [anon_sym_CARET] = ACTIONS(4544), + [sym_op_left_shift] = ACTIONS(4544), + [sym_op_right_shift] = ACTIONS(4544), + [sym_op_unsigned_right_shift] = ACTIONS(4544), + [anon_sym_PLUS] = ACTIONS(4544), + [anon_sym_DASH] = ACTIONS(4544), + [sym_op_divide] = ACTIONS(4544), + [sym_op_modulo] = ACTIONS(4544), + [sym_op_coalescing] = ACTIONS(4544), + [anon_sym_BANG] = ACTIONS(4544), + [anon_sym_PLUS_PLUS] = ACTIONS(4542), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_into] = ACTIONS(4542), + [anon_sym_on] = ACTIONS(4542), + [anon_sym_equals] = ACTIONS(4542), + [anon_sym_by] = ACTIONS(4542), + [anon_sym_as] = ACTIONS(4542), + [anon_sym_is] = ACTIONS(4542), + [anon_sym_DASH_GT] = ACTIONS(4542), + [anon_sym_with] = ACTIONS(4542), + [aux_sym_preproc_if_token3] = ACTIONS(4542), + [aux_sym_preproc_else_token1] = ACTIONS(4542), + [aux_sym_preproc_elif_token1] = ACTIONS(4542), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476579,70 +476317,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2916), [sym_preproc_define] = STATE(2916), [sym_preproc_undef] = STATE(2916), - [sym__identifier_token] = ACTIONS(5015), - [anon_sym_extern] = ACTIONS(5015), - [anon_sym_alias] = ACTIONS(5015), - [anon_sym_global] = ACTIONS(5015), - [anon_sym_using] = ACTIONS(5015), - [anon_sym_unsafe] = ACTIONS(5015), - [anon_sym_static] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_LPAREN] = ACTIONS(5017), - [anon_sym_event] = ACTIONS(5015), - [anon_sym_namespace] = ACTIONS(5015), - [anon_sym_class] = ACTIONS(5015), - [anon_sym_ref] = ACTIONS(5015), - [anon_sym_struct] = ACTIONS(5015), - [anon_sym_enum] = ACTIONS(5015), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_interface] = ACTIONS(5015), - [anon_sym_delegate] = ACTIONS(5015), - [anon_sym_record] = ACTIONS(5015), - [anon_sym_public] = ACTIONS(5015), - [anon_sym_private] = ACTIONS(5015), - [anon_sym_readonly] = ACTIONS(5015), - [anon_sym_abstract] = ACTIONS(5015), - [anon_sym_async] = ACTIONS(5015), - [anon_sym_const] = ACTIONS(5015), - [anon_sym_file] = ACTIONS(5015), - [anon_sym_fixed] = ACTIONS(5015), - [anon_sym_internal] = ACTIONS(5015), - [anon_sym_new] = ACTIONS(5015), - [anon_sym_override] = ACTIONS(5015), - [anon_sym_partial] = ACTIONS(5015), - [anon_sym_protected] = ACTIONS(5015), - [anon_sym_required] = ACTIONS(5015), - [anon_sym_sealed] = ACTIONS(5015), - [anon_sym_virtual] = ACTIONS(5015), - [anon_sym_volatile] = ACTIONS(5015), - [anon_sym_where] = ACTIONS(5015), - [anon_sym_notnull] = ACTIONS(5015), - [anon_sym_unmanaged] = ACTIONS(5015), - [anon_sym_TILDE] = ACTIONS(5017), - [anon_sym_implicit] = ACTIONS(5015), - [anon_sym_explicit] = ACTIONS(5015), - [anon_sym_scoped] = ACTIONS(5015), - [anon_sym_var] = ACTIONS(5015), - [sym_predefined_type] = ACTIONS(5015), - [anon_sym_yield] = ACTIONS(5015), - [anon_sym_when] = ACTIONS(5015), - [anon_sym_from] = ACTIONS(5015), - [anon_sym_into] = ACTIONS(5015), - [anon_sym_join] = ACTIONS(5015), - [anon_sym_on] = ACTIONS(5015), - [anon_sym_equals] = ACTIONS(5015), - [anon_sym_let] = ACTIONS(5015), - [anon_sym_orderby] = ACTIONS(5015), - [anon_sym_ascending] = ACTIONS(5015), - [anon_sym_descending] = ACTIONS(5015), - [anon_sym_group] = ACTIONS(5015), - [anon_sym_by] = ACTIONS(5015), - [anon_sym_select] = ACTIONS(5015), - [sym_grit_metavariable] = ACTIONS(5017), - [aux_sym_preproc_if_token1] = ACTIONS(5017), - [aux_sym_preproc_if_token3] = ACTIONS(5017), - [aux_sym_preproc_else_token1] = ACTIONS(5017), - [aux_sym_preproc_elif_token1] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(4542), + [anon_sym_EQ] = ACTIONS(4544), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_COLON] = ACTIONS(4542), + [anon_sym_COMMA] = ACTIONS(4542), + [anon_sym_RBRACK] = ACTIONS(4542), + [anon_sym_LPAREN] = ACTIONS(4542), + [anon_sym_RPAREN] = ACTIONS(4542), + [anon_sym_RBRACE] = ACTIONS(4542), + [anon_sym_LT] = ACTIONS(4544), + [anon_sym_GT] = ACTIONS(4544), + [anon_sym_in] = ACTIONS(4542), + [anon_sym_QMARK] = ACTIONS(4544), + [anon_sym_DOT] = ACTIONS(4544), + [anon_sym_EQ_GT] = ACTIONS(4542), + [anon_sym_STAR] = ACTIONS(4544), + [anon_sym_switch] = ACTIONS(4542), + [anon_sym_when] = ACTIONS(4542), + [anon_sym_DOT_DOT] = ACTIONS(4542), + [anon_sym_LT_EQ] = ACTIONS(4542), + [anon_sym_GT_EQ] = ACTIONS(4542), + [anon_sym_and] = ACTIONS(4542), + [anon_sym_or] = ACTIONS(4542), + [anon_sym_PLUS_EQ] = ACTIONS(4542), + [anon_sym_DASH_EQ] = ACTIONS(4542), + [anon_sym_STAR_EQ] = ACTIONS(4542), + [anon_sym_SLASH_EQ] = ACTIONS(4542), + [anon_sym_PERCENT_EQ] = ACTIONS(4542), + [anon_sym_AMP_EQ] = ACTIONS(4542), + [anon_sym_CARET_EQ] = ACTIONS(4542), + [anon_sym_PIPE_EQ] = ACTIONS(4542), + [anon_sym_LT_LT_EQ] = ACTIONS(4542), + [anon_sym_GT_GT_EQ] = ACTIONS(4542), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4542), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4542), + [anon_sym_EQ_EQ] = ACTIONS(4542), + [anon_sym_BANG_EQ] = ACTIONS(4542), + [anon_sym_AMP_AMP] = ACTIONS(4542), + [anon_sym_PIPE_PIPE] = ACTIONS(4542), + [anon_sym_AMP] = ACTIONS(4544), + [sym_op_bitwise_or] = ACTIONS(4544), + [anon_sym_CARET] = ACTIONS(4544), + [sym_op_left_shift] = ACTIONS(4544), + [sym_op_right_shift] = ACTIONS(4544), + [sym_op_unsigned_right_shift] = ACTIONS(4544), + [anon_sym_PLUS] = ACTIONS(4544), + [anon_sym_DASH] = ACTIONS(4544), + [sym_op_divide] = ACTIONS(4544), + [sym_op_modulo] = ACTIONS(4544), + [sym_op_coalescing] = ACTIONS(4544), + [anon_sym_BANG] = ACTIONS(4544), + [anon_sym_PLUS_PLUS] = ACTIONS(4542), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_on] = ACTIONS(4542), + [anon_sym_equals] = ACTIONS(4542), + [anon_sym_by] = ACTIONS(4542), + [anon_sym_as] = ACTIONS(4542), + [anon_sym_is] = ACTIONS(4542), + [anon_sym_DASH_GT] = ACTIONS(4542), + [anon_sym_with] = ACTIONS(4542), + [aux_sym_preproc_if_token3] = ACTIONS(4542), + [aux_sym_preproc_else_token1] = ACTIONS(4542), + [aux_sym_preproc_elif_token1] = ACTIONS(4542), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476664,70 +476401,69 @@ 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), - [sym__identifier_token] = ACTIONS(5019), - [anon_sym_extern] = ACTIONS(5019), - [anon_sym_alias] = ACTIONS(5019), - [anon_sym_global] = ACTIONS(5019), - [anon_sym_using] = ACTIONS(5019), - [anon_sym_unsafe] = ACTIONS(5019), - [anon_sym_static] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5021), - [anon_sym_event] = ACTIONS(5019), - [anon_sym_namespace] = ACTIONS(5019), - [anon_sym_class] = ACTIONS(5019), - [anon_sym_ref] = ACTIONS(5019), - [anon_sym_struct] = ACTIONS(5019), - [anon_sym_enum] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5021), - [anon_sym_interface] = ACTIONS(5019), - [anon_sym_delegate] = ACTIONS(5019), - [anon_sym_record] = ACTIONS(5019), - [anon_sym_public] = ACTIONS(5019), - [anon_sym_private] = ACTIONS(5019), - [anon_sym_readonly] = ACTIONS(5019), - [anon_sym_abstract] = ACTIONS(5019), - [anon_sym_async] = ACTIONS(5019), - [anon_sym_const] = ACTIONS(5019), - [anon_sym_file] = ACTIONS(5019), - [anon_sym_fixed] = ACTIONS(5019), - [anon_sym_internal] = ACTIONS(5019), - [anon_sym_new] = ACTIONS(5019), - [anon_sym_override] = ACTIONS(5019), - [anon_sym_partial] = ACTIONS(5019), - [anon_sym_protected] = ACTIONS(5019), - [anon_sym_required] = ACTIONS(5019), - [anon_sym_sealed] = ACTIONS(5019), - [anon_sym_virtual] = ACTIONS(5019), - [anon_sym_volatile] = ACTIONS(5019), - [anon_sym_where] = ACTIONS(5019), - [anon_sym_notnull] = ACTIONS(5019), - [anon_sym_unmanaged] = ACTIONS(5019), - [anon_sym_TILDE] = ACTIONS(5021), - [anon_sym_implicit] = ACTIONS(5019), - [anon_sym_explicit] = ACTIONS(5019), - [anon_sym_scoped] = ACTIONS(5019), - [anon_sym_var] = ACTIONS(5019), - [sym_predefined_type] = ACTIONS(5019), - [anon_sym_yield] = ACTIONS(5019), - [anon_sym_when] = ACTIONS(5019), - [anon_sym_from] = ACTIONS(5019), - [anon_sym_into] = ACTIONS(5019), - [anon_sym_join] = ACTIONS(5019), - [anon_sym_on] = ACTIONS(5019), - [anon_sym_equals] = ACTIONS(5019), - [anon_sym_let] = ACTIONS(5019), - [anon_sym_orderby] = ACTIONS(5019), - [anon_sym_ascending] = ACTIONS(5019), - [anon_sym_descending] = ACTIONS(5019), - [anon_sym_group] = ACTIONS(5019), - [anon_sym_by] = ACTIONS(5019), - [anon_sym_select] = ACTIONS(5019), - [sym_grit_metavariable] = ACTIONS(5021), - [aux_sym_preproc_if_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token3] = ACTIONS(5021), - [aux_sym_preproc_else_token1] = ACTIONS(5021), - [aux_sym_preproc_elif_token1] = ACTIONS(5021), + [anon_sym_SEMI] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4538), + [anon_sym_COLON] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4538), + [anon_sym_RBRACK] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4538), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_RBRACE] = ACTIONS(4538), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_in] = ACTIONS(4538), + [anon_sym_QMARK] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_EQ_GT] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_switch] = ACTIONS(4538), + [anon_sym_when] = ACTIONS(4538), + [anon_sym_DOT_DOT] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4538), + [anon_sym_and] = ACTIONS(4538), + [anon_sym_or] = ACTIONS(4538), + [anon_sym_PLUS_EQ] = ACTIONS(4538), + [anon_sym_DASH_EQ] = ACTIONS(4538), + [anon_sym_STAR_EQ] = ACTIONS(4538), + [anon_sym_SLASH_EQ] = ACTIONS(4538), + [anon_sym_PERCENT_EQ] = ACTIONS(4538), + [anon_sym_AMP_EQ] = ACTIONS(4538), + [anon_sym_CARET_EQ] = ACTIONS(4538), + [anon_sym_PIPE_EQ] = ACTIONS(4538), + [anon_sym_LT_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4538), + [anon_sym_BANG_EQ] = ACTIONS(4538), + [anon_sym_AMP_AMP] = ACTIONS(4538), + [anon_sym_PIPE_PIPE] = ACTIONS(4538), + [anon_sym_AMP] = ACTIONS(4536), + [sym_op_bitwise_or] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [sym_op_left_shift] = ACTIONS(4536), + [sym_op_right_shift] = ACTIONS(4536), + [sym_op_unsigned_right_shift] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [sym_op_divide] = ACTIONS(4536), + [sym_op_modulo] = ACTIONS(4536), + [sym_op_coalescing] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PLUS_PLUS] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4538), + [anon_sym_on] = ACTIONS(4538), + [anon_sym_equals] = ACTIONS(4538), + [anon_sym_by] = ACTIONS(4538), + [anon_sym_as] = ACTIONS(4538), + [anon_sym_is] = ACTIONS(4538), + [anon_sym_DASH_GT] = ACTIONS(4538), + [anon_sym_with] = ACTIONS(4538), + [aux_sym_preproc_if_token3] = ACTIONS(4538), + [aux_sym_preproc_else_token1] = ACTIONS(4538), + [aux_sym_preproc_elif_token1] = ACTIONS(4538), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476749,80 +476485,79 @@ 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), - [sym__identifier_token] = ACTIONS(5023), - [anon_sym_extern] = ACTIONS(5023), - [anon_sym_alias] = ACTIONS(5023), - [anon_sym_global] = ACTIONS(5023), - [anon_sym_using] = ACTIONS(5023), - [anon_sym_unsafe] = ACTIONS(5023), - [anon_sym_static] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5025), - [anon_sym_event] = ACTIONS(5023), - [anon_sym_namespace] = ACTIONS(5023), - [anon_sym_class] = ACTIONS(5023), - [anon_sym_ref] = ACTIONS(5023), - [anon_sym_struct] = ACTIONS(5023), - [anon_sym_enum] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5025), - [anon_sym_interface] = ACTIONS(5023), - [anon_sym_delegate] = ACTIONS(5023), - [anon_sym_record] = ACTIONS(5023), - [anon_sym_public] = ACTIONS(5023), - [anon_sym_private] = ACTIONS(5023), - [anon_sym_readonly] = ACTIONS(5023), - [anon_sym_abstract] = ACTIONS(5023), - [anon_sym_async] = ACTIONS(5023), - [anon_sym_const] = ACTIONS(5023), - [anon_sym_file] = ACTIONS(5023), - [anon_sym_fixed] = ACTIONS(5023), - [anon_sym_internal] = ACTIONS(5023), - [anon_sym_new] = ACTIONS(5023), - [anon_sym_override] = ACTIONS(5023), - [anon_sym_partial] = ACTIONS(5023), - [anon_sym_protected] = ACTIONS(5023), - [anon_sym_required] = ACTIONS(5023), - [anon_sym_sealed] = ACTIONS(5023), - [anon_sym_virtual] = ACTIONS(5023), - [anon_sym_volatile] = ACTIONS(5023), - [anon_sym_where] = ACTIONS(5023), - [anon_sym_notnull] = ACTIONS(5023), - [anon_sym_unmanaged] = ACTIONS(5023), - [anon_sym_TILDE] = ACTIONS(5025), - [anon_sym_implicit] = ACTIONS(5023), - [anon_sym_explicit] = ACTIONS(5023), - [anon_sym_scoped] = ACTIONS(5023), - [anon_sym_var] = ACTIONS(5023), - [sym_predefined_type] = ACTIONS(5023), - [anon_sym_yield] = ACTIONS(5023), - [anon_sym_when] = ACTIONS(5023), - [anon_sym_from] = ACTIONS(5023), - [anon_sym_into] = ACTIONS(5023), - [anon_sym_join] = ACTIONS(5023), - [anon_sym_on] = ACTIONS(5023), - [anon_sym_equals] = ACTIONS(5023), - [anon_sym_let] = ACTIONS(5023), - [anon_sym_orderby] = ACTIONS(5023), - [anon_sym_ascending] = ACTIONS(5023), - [anon_sym_descending] = ACTIONS(5023), - [anon_sym_group] = ACTIONS(5023), - [anon_sym_by] = ACTIONS(5023), - [anon_sym_select] = ACTIONS(5023), - [sym_grit_metavariable] = ACTIONS(5025), - [aux_sym_preproc_if_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token3] = ACTIONS(5025), - [aux_sym_preproc_else_token1] = ACTIONS(5025), - [aux_sym_preproc_elif_token1] = ACTIONS(5025), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4518), + [anon_sym_alias] = ACTIONS(4518), + [anon_sym_global] = ACTIONS(4518), + [anon_sym_LBRACK] = ACTIONS(4520), + [anon_sym_COLON] = ACTIONS(4520), + [anon_sym_COMMA] = ACTIONS(4520), + [anon_sym_LPAREN] = ACTIONS(4520), + [anon_sym_file] = ACTIONS(4518), + [anon_sym_LT] = ACTIONS(4518), + [anon_sym_GT] = ACTIONS(4518), + [anon_sym_where] = ACTIONS(4518), + [anon_sym_QMARK] = ACTIONS(4518), + [anon_sym_notnull] = ACTIONS(4518), + [anon_sym_unmanaged] = ACTIONS(4518), + [anon_sym_DOT] = ACTIONS(4518), + [anon_sym_scoped] = ACTIONS(4518), + [anon_sym_var] = ACTIONS(4518), + [anon_sym_STAR] = ACTIONS(4520), + [anon_sym_yield] = ACTIONS(4518), + [anon_sym_switch] = ACTIONS(4518), + [anon_sym_when] = ACTIONS(4518), + [sym_discard] = ACTIONS(4518), + [anon_sym_DOT_DOT] = ACTIONS(4520), + [anon_sym_LT_EQ] = ACTIONS(4520), + [anon_sym_GT_EQ] = ACTIONS(4520), + [anon_sym_and] = ACTIONS(4518), + [anon_sym_or] = ACTIONS(4518), + [anon_sym_EQ_EQ] = ACTIONS(4520), + [anon_sym_BANG_EQ] = ACTIONS(4520), + [anon_sym_AMP_AMP] = ACTIONS(4520), + [anon_sym_PIPE_PIPE] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4518), + [sym_op_bitwise_or] = ACTIONS(4518), + [anon_sym_CARET] = ACTIONS(4520), + [sym_op_left_shift] = ACTIONS(4520), + [sym_op_right_shift] = ACTIONS(4518), + [sym_op_unsigned_right_shift] = ACTIONS(4520), + [anon_sym_PLUS] = ACTIONS(4518), + [anon_sym_DASH] = ACTIONS(4518), + [sym_op_divide] = ACTIONS(4518), + [sym_op_modulo] = ACTIONS(4520), + [sym_op_coalescing] = ACTIONS(4520), + [anon_sym_BANG] = ACTIONS(4518), + [anon_sym_PLUS_PLUS] = ACTIONS(4520), + [anon_sym_DASH_DASH] = ACTIONS(4520), + [anon_sym_from] = ACTIONS(4518), + [anon_sym_into] = ACTIONS(4518), + [anon_sym_join] = ACTIONS(4518), + [anon_sym_on] = ACTIONS(4518), + [anon_sym_equals] = ACTIONS(4518), + [anon_sym_let] = ACTIONS(4518), + [anon_sym_orderby] = ACTIONS(4518), + [anon_sym_ascending] = ACTIONS(4518), + [anon_sym_descending] = ACTIONS(4518), + [anon_sym_group] = ACTIONS(4518), + [anon_sym_by] = ACTIONS(4518), + [anon_sym_select] = ACTIONS(4518), + [anon_sym_as] = ACTIONS(4518), + [anon_sym_is] = ACTIONS(4518), + [anon_sym_DASH_GT] = ACTIONS(4520), + [anon_sym_with] = ACTIONS(4518), + [sym_grit_metavariable] = ACTIONS(4520), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4520), }, [2919] = { [sym_preproc_region] = STATE(2919), @@ -476834,70 +476569,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2919), [sym_preproc_define] = STATE(2919), [sym_preproc_undef] = STATE(2919), - [sym__identifier_token] = ACTIONS(5027), - [anon_sym_extern] = ACTIONS(5027), - [anon_sym_alias] = ACTIONS(5027), - [anon_sym_global] = ACTIONS(5027), - [anon_sym_using] = ACTIONS(5027), - [anon_sym_unsafe] = ACTIONS(5027), - [anon_sym_static] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5029), - [anon_sym_event] = ACTIONS(5027), - [anon_sym_namespace] = ACTIONS(5027), - [anon_sym_class] = ACTIONS(5027), - [anon_sym_ref] = ACTIONS(5027), - [anon_sym_struct] = ACTIONS(5027), - [anon_sym_enum] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5029), - [anon_sym_interface] = ACTIONS(5027), - [anon_sym_delegate] = ACTIONS(5027), - [anon_sym_record] = ACTIONS(5027), - [anon_sym_public] = ACTIONS(5027), - [anon_sym_private] = ACTIONS(5027), - [anon_sym_readonly] = ACTIONS(5027), - [anon_sym_abstract] = ACTIONS(5027), - [anon_sym_async] = ACTIONS(5027), - [anon_sym_const] = ACTIONS(5027), - [anon_sym_file] = ACTIONS(5027), - [anon_sym_fixed] = ACTIONS(5027), - [anon_sym_internal] = ACTIONS(5027), - [anon_sym_new] = ACTIONS(5027), - [anon_sym_override] = ACTIONS(5027), - [anon_sym_partial] = ACTIONS(5027), - [anon_sym_protected] = ACTIONS(5027), - [anon_sym_required] = ACTIONS(5027), - [anon_sym_sealed] = ACTIONS(5027), - [anon_sym_virtual] = ACTIONS(5027), - [anon_sym_volatile] = ACTIONS(5027), - [anon_sym_where] = ACTIONS(5027), - [anon_sym_notnull] = ACTIONS(5027), - [anon_sym_unmanaged] = ACTIONS(5027), - [anon_sym_TILDE] = ACTIONS(5029), - [anon_sym_implicit] = ACTIONS(5027), - [anon_sym_explicit] = ACTIONS(5027), - [anon_sym_scoped] = ACTIONS(5027), - [anon_sym_var] = ACTIONS(5027), - [sym_predefined_type] = ACTIONS(5027), - [anon_sym_yield] = ACTIONS(5027), - [anon_sym_when] = ACTIONS(5027), - [anon_sym_from] = ACTIONS(5027), - [anon_sym_into] = ACTIONS(5027), - [anon_sym_join] = ACTIONS(5027), - [anon_sym_on] = ACTIONS(5027), - [anon_sym_equals] = ACTIONS(5027), - [anon_sym_let] = ACTIONS(5027), - [anon_sym_orderby] = ACTIONS(5027), - [anon_sym_ascending] = ACTIONS(5027), - [anon_sym_descending] = ACTIONS(5027), - [anon_sym_group] = ACTIONS(5027), - [anon_sym_by] = ACTIONS(5027), - [anon_sym_select] = ACTIONS(5027), - [sym_grit_metavariable] = ACTIONS(5029), - [aux_sym_preproc_if_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token3] = ACTIONS(5029), - [aux_sym_preproc_else_token1] = ACTIONS(5029), - [aux_sym_preproc_elif_token1] = ACTIONS(5029), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_COLON] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_RPAREN] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_in] = ACTIONS(3972), + [anon_sym_QMARK] = ACTIONS(3970), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_EQ_GT] = ACTIONS(3972), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_switch] = ACTIONS(3972), + [anon_sym_when] = ACTIONS(3972), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_and] = ACTIONS(3972), + [anon_sym_or] = ACTIONS(3972), + [anon_sym_PLUS_EQ] = ACTIONS(3972), + [anon_sym_DASH_EQ] = ACTIONS(3972), + [anon_sym_STAR_EQ] = ACTIONS(3972), + [anon_sym_SLASH_EQ] = ACTIONS(3972), + [anon_sym_PERCENT_EQ] = ACTIONS(3972), + [anon_sym_AMP_EQ] = ACTIONS(3972), + [anon_sym_CARET_EQ] = ACTIONS(3972), + [anon_sym_PIPE_EQ] = ACTIONS(3972), + [anon_sym_LT_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_GT_EQ] = ACTIONS(3972), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3972), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [sym_op_bitwise_or] = ACTIONS(3970), + [anon_sym_CARET] = ACTIONS(3970), + [sym_op_left_shift] = ACTIONS(3970), + [sym_op_right_shift] = ACTIONS(3970), + [sym_op_unsigned_right_shift] = ACTIONS(3970), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [sym_op_divide] = ACTIONS(3970), + [sym_op_modulo] = ACTIONS(3970), + [sym_op_coalescing] = ACTIONS(3970), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_on] = ACTIONS(3972), + [anon_sym_equals] = ACTIONS(3972), + [anon_sym_by] = ACTIONS(3972), + [anon_sym_as] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3972), + [anon_sym_DASH_GT] = ACTIONS(3972), + [anon_sym_with] = ACTIONS(3972), + [aux_sym_preproc_if_token3] = ACTIONS(3972), + [aux_sym_preproc_else_token1] = ACTIONS(3972), + [aux_sym_preproc_elif_token1] = ACTIONS(3972), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476919,70 +476653,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2920), [sym_preproc_define] = STATE(2920), [sym_preproc_undef] = STATE(2920), - [sym__identifier_token] = ACTIONS(5031), - [anon_sym_extern] = ACTIONS(5031), - [anon_sym_alias] = ACTIONS(5031), - [anon_sym_global] = ACTIONS(5031), - [anon_sym_using] = ACTIONS(5031), - [anon_sym_unsafe] = ACTIONS(5031), - [anon_sym_static] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5033), - [anon_sym_event] = ACTIONS(5031), - [anon_sym_namespace] = ACTIONS(5031), - [anon_sym_class] = ACTIONS(5031), - [anon_sym_ref] = ACTIONS(5031), - [anon_sym_struct] = ACTIONS(5031), - [anon_sym_enum] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5033), - [anon_sym_interface] = ACTIONS(5031), - [anon_sym_delegate] = ACTIONS(5031), - [anon_sym_record] = ACTIONS(5031), - [anon_sym_public] = ACTIONS(5031), - [anon_sym_private] = ACTIONS(5031), - [anon_sym_readonly] = ACTIONS(5031), - [anon_sym_abstract] = ACTIONS(5031), - [anon_sym_async] = ACTIONS(5031), - [anon_sym_const] = ACTIONS(5031), - [anon_sym_file] = ACTIONS(5031), - [anon_sym_fixed] = ACTIONS(5031), - [anon_sym_internal] = ACTIONS(5031), - [anon_sym_new] = ACTIONS(5031), - [anon_sym_override] = ACTIONS(5031), - [anon_sym_partial] = ACTIONS(5031), - [anon_sym_protected] = ACTIONS(5031), - [anon_sym_required] = ACTIONS(5031), - [anon_sym_sealed] = ACTIONS(5031), - [anon_sym_virtual] = ACTIONS(5031), - [anon_sym_volatile] = ACTIONS(5031), - [anon_sym_where] = ACTIONS(5031), - [anon_sym_notnull] = ACTIONS(5031), - [anon_sym_unmanaged] = ACTIONS(5031), - [anon_sym_TILDE] = ACTIONS(5033), - [anon_sym_implicit] = ACTIONS(5031), - [anon_sym_explicit] = ACTIONS(5031), - [anon_sym_scoped] = ACTIONS(5031), - [anon_sym_var] = ACTIONS(5031), - [sym_predefined_type] = ACTIONS(5031), - [anon_sym_yield] = ACTIONS(5031), - [anon_sym_when] = ACTIONS(5031), - [anon_sym_from] = ACTIONS(5031), - [anon_sym_into] = ACTIONS(5031), - [anon_sym_join] = ACTIONS(5031), - [anon_sym_on] = ACTIONS(5031), - [anon_sym_equals] = ACTIONS(5031), - [anon_sym_let] = ACTIONS(5031), - [anon_sym_orderby] = ACTIONS(5031), - [anon_sym_ascending] = ACTIONS(5031), - [anon_sym_descending] = ACTIONS(5031), - [anon_sym_group] = ACTIONS(5031), - [anon_sym_by] = ACTIONS(5031), - [anon_sym_select] = ACTIONS(5031), - [sym_grit_metavariable] = ACTIONS(5033), - [aux_sym_preproc_if_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token3] = ACTIONS(5033), - [aux_sym_preproc_else_token1] = ACTIONS(5033), - [aux_sym_preproc_elif_token1] = ACTIONS(5033), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_EQ] = ACTIONS(3974), + [anon_sym_LBRACK] = ACTIONS(3976), + [anon_sym_COLON] = ACTIONS(3976), + [anon_sym_COMMA] = ACTIONS(3976), + [anon_sym_RBRACK] = ACTIONS(3976), + [anon_sym_LPAREN] = ACTIONS(3976), + [anon_sym_RPAREN] = ACTIONS(3976), + [anon_sym_RBRACE] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3974), + [anon_sym_GT] = ACTIONS(3974), + [anon_sym_in] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3974), + [anon_sym_EQ_GT] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3974), + [anon_sym_switch] = ACTIONS(3976), + [anon_sym_when] = ACTIONS(3976), + [anon_sym_DOT_DOT] = ACTIONS(3976), + [anon_sym_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_EQ] = ACTIONS(3976), + [anon_sym_and] = ACTIONS(3976), + [anon_sym_or] = ACTIONS(3976), + [anon_sym_PLUS_EQ] = ACTIONS(3976), + [anon_sym_DASH_EQ] = ACTIONS(3976), + [anon_sym_STAR_EQ] = ACTIONS(3976), + [anon_sym_SLASH_EQ] = ACTIONS(3976), + [anon_sym_PERCENT_EQ] = ACTIONS(3976), + [anon_sym_AMP_EQ] = ACTIONS(3976), + [anon_sym_CARET_EQ] = ACTIONS(3976), + [anon_sym_PIPE_EQ] = ACTIONS(3976), + [anon_sym_LT_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_GT_EQ] = ACTIONS(3976), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3976), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3976), + [anon_sym_EQ_EQ] = ACTIONS(3976), + [anon_sym_BANG_EQ] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [sym_op_bitwise_or] = ACTIONS(3974), + [anon_sym_CARET] = ACTIONS(3974), + [sym_op_left_shift] = ACTIONS(3974), + [sym_op_right_shift] = ACTIONS(3974), + [sym_op_unsigned_right_shift] = ACTIONS(3974), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [sym_op_divide] = ACTIONS(3974), + [sym_op_modulo] = ACTIONS(3974), + [sym_op_coalescing] = ACTIONS(3974), + [anon_sym_BANG] = ACTIONS(3974), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_on] = ACTIONS(3976), + [anon_sym_equals] = ACTIONS(3976), + [anon_sym_by] = ACTIONS(3976), + [anon_sym_as] = ACTIONS(3976), + [anon_sym_is] = ACTIONS(3976), + [anon_sym_DASH_GT] = ACTIONS(3976), + [anon_sym_with] = ACTIONS(3976), + [aux_sym_preproc_if_token3] = ACTIONS(3976), + [aux_sym_preproc_else_token1] = ACTIONS(3976), + [aux_sym_preproc_elif_token1] = ACTIONS(3976), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476995,6 +476728,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2921] = { + [sym_preproc_else_in_attribute_list] = STATE(7790), + [sym_preproc_elif_in_attribute_list] = STATE(7790), [sym_preproc_region] = STATE(2921), [sym_preproc_endregion] = STATE(2921), [sym_preproc_line] = STATE(2921), @@ -477004,70 +476739,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2921), [sym_preproc_define] = STATE(2921), [sym_preproc_undef] = STATE(2921), - [sym__identifier_token] = ACTIONS(5035), - [anon_sym_extern] = ACTIONS(5035), - [anon_sym_alias] = ACTIONS(5035), - [anon_sym_global] = ACTIONS(5035), - [anon_sym_using] = ACTIONS(5035), - [anon_sym_unsafe] = ACTIONS(5035), - [anon_sym_static] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5037), - [anon_sym_event] = ACTIONS(5035), - [anon_sym_namespace] = ACTIONS(5035), - [anon_sym_class] = ACTIONS(5035), - [anon_sym_ref] = ACTIONS(5035), - [anon_sym_struct] = ACTIONS(5035), - [anon_sym_enum] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5037), - [anon_sym_interface] = ACTIONS(5035), - [anon_sym_delegate] = ACTIONS(5035), - [anon_sym_record] = ACTIONS(5035), - [anon_sym_public] = ACTIONS(5035), - [anon_sym_private] = ACTIONS(5035), - [anon_sym_readonly] = ACTIONS(5035), - [anon_sym_abstract] = ACTIONS(5035), - [anon_sym_async] = ACTIONS(5035), - [anon_sym_const] = ACTIONS(5035), - [anon_sym_file] = ACTIONS(5035), - [anon_sym_fixed] = ACTIONS(5035), - [anon_sym_internal] = ACTIONS(5035), - [anon_sym_new] = ACTIONS(5035), - [anon_sym_override] = ACTIONS(5035), - [anon_sym_partial] = ACTIONS(5035), - [anon_sym_protected] = ACTIONS(5035), - [anon_sym_required] = ACTIONS(5035), - [anon_sym_sealed] = ACTIONS(5035), - [anon_sym_virtual] = ACTIONS(5035), - [anon_sym_volatile] = ACTIONS(5035), - [anon_sym_where] = ACTIONS(5035), - [anon_sym_notnull] = ACTIONS(5035), - [anon_sym_unmanaged] = ACTIONS(5035), - [anon_sym_TILDE] = ACTIONS(5037), - [anon_sym_implicit] = ACTIONS(5035), - [anon_sym_explicit] = ACTIONS(5035), - [anon_sym_scoped] = ACTIONS(5035), - [anon_sym_var] = ACTIONS(5035), - [sym_predefined_type] = ACTIONS(5035), - [anon_sym_yield] = ACTIONS(5035), - [anon_sym_when] = ACTIONS(5035), - [anon_sym_from] = ACTIONS(5035), - [anon_sym_into] = ACTIONS(5035), - [anon_sym_join] = ACTIONS(5035), - [anon_sym_on] = ACTIONS(5035), - [anon_sym_equals] = ACTIONS(5035), - [anon_sym_let] = ACTIONS(5035), - [anon_sym_orderby] = ACTIONS(5035), - [anon_sym_ascending] = ACTIONS(5035), - [anon_sym_descending] = ACTIONS(5035), - [anon_sym_group] = ACTIONS(5035), - [anon_sym_by] = ACTIONS(5035), - [anon_sym_select] = ACTIONS(5035), - [sym_grit_metavariable] = ACTIONS(5037), - [aux_sym_preproc_if_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token3] = ACTIONS(5037), - [aux_sym_preproc_else_token1] = ACTIONS(5037), - [aux_sym_preproc_elif_token1] = ACTIONS(5037), + [sym__identifier_token] = ACTIONS(5202), + [anon_sym_extern] = ACTIONS(5202), + [anon_sym_alias] = ACTIONS(5202), + [anon_sym_global] = ACTIONS(5202), + [anon_sym_unsafe] = ACTIONS(5202), + [anon_sym_static] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_LPAREN] = ACTIONS(5204), + [anon_sym_event] = ACTIONS(5202), + [anon_sym_class] = ACTIONS(5202), + [anon_sym_ref] = ACTIONS(5202), + [anon_sym_struct] = ACTIONS(5202), + [anon_sym_enum] = ACTIONS(5202), + [anon_sym_interface] = ACTIONS(5202), + [anon_sym_delegate] = ACTIONS(5202), + [anon_sym_record] = ACTIONS(5202), + [anon_sym_public] = ACTIONS(5202), + [anon_sym_private] = ACTIONS(5202), + [anon_sym_readonly] = ACTIONS(5202), + [anon_sym_abstract] = ACTIONS(5202), + [anon_sym_async] = ACTIONS(5202), + [anon_sym_const] = ACTIONS(5202), + [anon_sym_file] = ACTIONS(5202), + [anon_sym_fixed] = ACTIONS(5202), + [anon_sym_internal] = ACTIONS(5202), + [anon_sym_new] = ACTIONS(5202), + [anon_sym_override] = ACTIONS(5202), + [anon_sym_partial] = ACTIONS(5202), + [anon_sym_protected] = ACTIONS(5202), + [anon_sym_required] = ACTIONS(5202), + [anon_sym_sealed] = ACTIONS(5202), + [anon_sym_virtual] = ACTIONS(5202), + [anon_sym_volatile] = ACTIONS(5202), + [anon_sym_where] = ACTIONS(5202), + [anon_sym_notnull] = ACTIONS(5202), + [anon_sym_unmanaged] = ACTIONS(5202), + [anon_sym_implicit] = ACTIONS(5202), + [anon_sym_explicit] = ACTIONS(5202), + [anon_sym_TILDE] = ACTIONS(5204), + [anon_sym_scoped] = ACTIONS(5202), + [anon_sym_var] = ACTIONS(5202), + [sym_predefined_type] = ACTIONS(5202), + [anon_sym_yield] = ACTIONS(5202), + [anon_sym_when] = ACTIONS(5202), + [anon_sym_from] = ACTIONS(5202), + [anon_sym_into] = ACTIONS(5202), + [anon_sym_join] = ACTIONS(5202), + [anon_sym_on] = ACTIONS(5202), + [anon_sym_equals] = ACTIONS(5202), + [anon_sym_let] = ACTIONS(5202), + [anon_sym_orderby] = ACTIONS(5202), + [anon_sym_ascending] = ACTIONS(5202), + [anon_sym_descending] = ACTIONS(5202), + [anon_sym_group] = ACTIONS(5202), + [anon_sym_by] = ACTIONS(5202), + [anon_sym_select] = ACTIONS(5202), + [sym_grit_metavariable] = ACTIONS(5204), + [aux_sym_preproc_if_token1] = ACTIONS(5204), + [aux_sym_preproc_if_token3] = ACTIONS(5206), + [aux_sym_preproc_else_token1] = ACTIONS(5208), + [aux_sym_preproc_elif_token1] = ACTIONS(5210), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477080,6 +476812,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2922] = { + [sym_preproc_else_in_attribute_list] = STATE(7745), + [sym_preproc_elif_in_attribute_list] = STATE(7745), [sym_preproc_region] = STATE(2922), [sym_preproc_endregion] = STATE(2922), [sym_preproc_line] = STATE(2922), @@ -477089,70 +476823,67 @@ 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), - [sym__identifier_token] = ACTIONS(5039), - [anon_sym_extern] = ACTIONS(5039), - [anon_sym_alias] = ACTIONS(5039), - [anon_sym_global] = ACTIONS(5039), - [anon_sym_using] = ACTIONS(5039), - [anon_sym_unsafe] = ACTIONS(5039), - [anon_sym_static] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5041), - [anon_sym_event] = ACTIONS(5039), - [anon_sym_namespace] = ACTIONS(5039), - [anon_sym_class] = ACTIONS(5039), - [anon_sym_ref] = ACTIONS(5039), - [anon_sym_struct] = ACTIONS(5039), - [anon_sym_enum] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5041), - [anon_sym_interface] = ACTIONS(5039), - [anon_sym_delegate] = ACTIONS(5039), - [anon_sym_record] = ACTIONS(5039), - [anon_sym_public] = ACTIONS(5039), - [anon_sym_private] = ACTIONS(5039), - [anon_sym_readonly] = ACTIONS(5039), - [anon_sym_abstract] = ACTIONS(5039), - [anon_sym_async] = ACTIONS(5039), - [anon_sym_const] = ACTIONS(5039), - [anon_sym_file] = ACTIONS(5039), - [anon_sym_fixed] = ACTIONS(5039), - [anon_sym_internal] = ACTIONS(5039), - [anon_sym_new] = ACTIONS(5039), - [anon_sym_override] = ACTIONS(5039), - [anon_sym_partial] = ACTIONS(5039), - [anon_sym_protected] = ACTIONS(5039), - [anon_sym_required] = ACTIONS(5039), - [anon_sym_sealed] = ACTIONS(5039), - [anon_sym_virtual] = ACTIONS(5039), - [anon_sym_volatile] = ACTIONS(5039), - [anon_sym_where] = ACTIONS(5039), - [anon_sym_notnull] = ACTIONS(5039), - [anon_sym_unmanaged] = ACTIONS(5039), - [anon_sym_TILDE] = ACTIONS(5041), - [anon_sym_implicit] = ACTIONS(5039), - [anon_sym_explicit] = ACTIONS(5039), - [anon_sym_scoped] = ACTIONS(5039), - [anon_sym_var] = ACTIONS(5039), - [sym_predefined_type] = ACTIONS(5039), - [anon_sym_yield] = ACTIONS(5039), - [anon_sym_when] = ACTIONS(5039), - [anon_sym_from] = ACTIONS(5039), - [anon_sym_into] = ACTIONS(5039), - [anon_sym_join] = ACTIONS(5039), - [anon_sym_on] = ACTIONS(5039), - [anon_sym_equals] = ACTIONS(5039), - [anon_sym_let] = ACTIONS(5039), - [anon_sym_orderby] = ACTIONS(5039), - [anon_sym_ascending] = ACTIONS(5039), - [anon_sym_descending] = ACTIONS(5039), - [anon_sym_group] = ACTIONS(5039), - [anon_sym_by] = ACTIONS(5039), - [anon_sym_select] = ACTIONS(5039), - [sym_grit_metavariable] = ACTIONS(5041), - [aux_sym_preproc_if_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token3] = ACTIONS(5041), - [aux_sym_preproc_else_token1] = ACTIONS(5041), - [aux_sym_preproc_elif_token1] = ACTIONS(5041), + [sym__identifier_token] = ACTIONS(5202), + [anon_sym_extern] = ACTIONS(5202), + [anon_sym_alias] = ACTIONS(5202), + [anon_sym_global] = ACTIONS(5202), + [anon_sym_unsafe] = ACTIONS(5202), + [anon_sym_static] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_LPAREN] = ACTIONS(5204), + [anon_sym_event] = ACTIONS(5202), + [anon_sym_class] = ACTIONS(5202), + [anon_sym_ref] = ACTIONS(5202), + [anon_sym_struct] = ACTIONS(5202), + [anon_sym_enum] = ACTIONS(5202), + [anon_sym_interface] = ACTIONS(5202), + [anon_sym_delegate] = ACTIONS(5202), + [anon_sym_record] = ACTIONS(5202), + [anon_sym_public] = ACTIONS(5202), + [anon_sym_private] = ACTIONS(5202), + [anon_sym_readonly] = ACTIONS(5202), + [anon_sym_abstract] = ACTIONS(5202), + [anon_sym_async] = ACTIONS(5202), + [anon_sym_const] = ACTIONS(5202), + [anon_sym_file] = ACTIONS(5202), + [anon_sym_fixed] = ACTIONS(5202), + [anon_sym_internal] = ACTIONS(5202), + [anon_sym_new] = ACTIONS(5202), + [anon_sym_override] = ACTIONS(5202), + [anon_sym_partial] = ACTIONS(5202), + [anon_sym_protected] = ACTIONS(5202), + [anon_sym_required] = ACTIONS(5202), + [anon_sym_sealed] = ACTIONS(5202), + [anon_sym_virtual] = ACTIONS(5202), + [anon_sym_volatile] = ACTIONS(5202), + [anon_sym_where] = ACTIONS(5202), + [anon_sym_notnull] = ACTIONS(5202), + [anon_sym_unmanaged] = ACTIONS(5202), + [anon_sym_implicit] = ACTIONS(5202), + [anon_sym_explicit] = ACTIONS(5202), + [anon_sym_TILDE] = ACTIONS(5204), + [anon_sym_scoped] = ACTIONS(5202), + [anon_sym_var] = ACTIONS(5202), + [sym_predefined_type] = ACTIONS(5202), + [anon_sym_yield] = ACTIONS(5202), + [anon_sym_when] = ACTIONS(5202), + [anon_sym_from] = ACTIONS(5202), + [anon_sym_into] = ACTIONS(5202), + [anon_sym_join] = ACTIONS(5202), + [anon_sym_on] = ACTIONS(5202), + [anon_sym_equals] = ACTIONS(5202), + [anon_sym_let] = ACTIONS(5202), + [anon_sym_orderby] = ACTIONS(5202), + [anon_sym_ascending] = ACTIONS(5202), + [anon_sym_descending] = ACTIONS(5202), + [anon_sym_group] = ACTIONS(5202), + [anon_sym_by] = ACTIONS(5202), + [anon_sym_select] = ACTIONS(5202), + [sym_grit_metavariable] = ACTIONS(5204), + [aux_sym_preproc_if_token1] = ACTIONS(5204), + [aux_sym_preproc_if_token3] = ACTIONS(5212), + [aux_sym_preproc_else_token1] = ACTIONS(5208), + [aux_sym_preproc_elif_token1] = ACTIONS(5210), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477174,70 +476905,69 @@ 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), - [sym__identifier_token] = ACTIONS(5043), - [anon_sym_extern] = ACTIONS(5043), - [anon_sym_alias] = ACTIONS(5043), - [anon_sym_global] = ACTIONS(5043), - [anon_sym_using] = ACTIONS(5043), - [anon_sym_unsafe] = ACTIONS(5043), - [anon_sym_static] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_LPAREN] = ACTIONS(5045), - [anon_sym_event] = ACTIONS(5043), - [anon_sym_namespace] = ACTIONS(5043), - [anon_sym_class] = ACTIONS(5043), - [anon_sym_ref] = ACTIONS(5043), - [anon_sym_struct] = ACTIONS(5043), - [anon_sym_enum] = ACTIONS(5043), - [anon_sym_RBRACE] = ACTIONS(5045), - [anon_sym_interface] = ACTIONS(5043), - [anon_sym_delegate] = ACTIONS(5043), - [anon_sym_record] = ACTIONS(5043), - [anon_sym_public] = ACTIONS(5043), - [anon_sym_private] = ACTIONS(5043), - [anon_sym_readonly] = ACTIONS(5043), - [anon_sym_abstract] = ACTIONS(5043), - [anon_sym_async] = ACTIONS(5043), - [anon_sym_const] = ACTIONS(5043), - [anon_sym_file] = ACTIONS(5043), - [anon_sym_fixed] = ACTIONS(5043), - [anon_sym_internal] = ACTIONS(5043), - [anon_sym_new] = ACTIONS(5043), - [anon_sym_override] = ACTIONS(5043), - [anon_sym_partial] = ACTIONS(5043), - [anon_sym_protected] = ACTIONS(5043), - [anon_sym_required] = ACTIONS(5043), - [anon_sym_sealed] = ACTIONS(5043), - [anon_sym_virtual] = ACTIONS(5043), - [anon_sym_volatile] = ACTIONS(5043), - [anon_sym_where] = ACTIONS(5043), - [anon_sym_notnull] = ACTIONS(5043), - [anon_sym_unmanaged] = ACTIONS(5043), - [anon_sym_TILDE] = ACTIONS(5045), - [anon_sym_implicit] = ACTIONS(5043), - [anon_sym_explicit] = ACTIONS(5043), - [anon_sym_scoped] = ACTIONS(5043), - [anon_sym_var] = ACTIONS(5043), - [sym_predefined_type] = ACTIONS(5043), - [anon_sym_yield] = ACTIONS(5043), - [anon_sym_when] = ACTIONS(5043), - [anon_sym_from] = ACTIONS(5043), - [anon_sym_into] = ACTIONS(5043), - [anon_sym_join] = ACTIONS(5043), - [anon_sym_on] = ACTIONS(5043), - [anon_sym_equals] = ACTIONS(5043), - [anon_sym_let] = ACTIONS(5043), - [anon_sym_orderby] = ACTIONS(5043), - [anon_sym_ascending] = ACTIONS(5043), - [anon_sym_descending] = ACTIONS(5043), - [anon_sym_group] = ACTIONS(5043), - [anon_sym_by] = ACTIONS(5043), - [anon_sym_select] = ACTIONS(5043), - [sym_grit_metavariable] = ACTIONS(5045), - [aux_sym_preproc_if_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token3] = ACTIONS(5045), - [aux_sym_preproc_else_token1] = ACTIONS(5045), - [aux_sym_preproc_elif_token1] = ACTIONS(5045), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_RBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_RPAREN] = ACTIONS(4550), + [anon_sym_RBRACE] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4552), + [anon_sym_in] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_EQ_GT] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4552), + [anon_sym_switch] = ACTIONS(4550), + [anon_sym_when] = ACTIONS(4550), + [anon_sym_DOT_DOT] = ACTIONS(4550), + [anon_sym_LT_EQ] = ACTIONS(4550), + [anon_sym_GT_EQ] = ACTIONS(4550), + [anon_sym_and] = ACTIONS(4550), + [anon_sym_or] = ACTIONS(4550), + [anon_sym_PLUS_EQ] = ACTIONS(4550), + [anon_sym_DASH_EQ] = ACTIONS(4550), + [anon_sym_STAR_EQ] = ACTIONS(4550), + [anon_sym_SLASH_EQ] = ACTIONS(4550), + [anon_sym_PERCENT_EQ] = ACTIONS(4550), + [anon_sym_AMP_EQ] = ACTIONS(4550), + [anon_sym_CARET_EQ] = ACTIONS(4550), + [anon_sym_PIPE_EQ] = ACTIONS(4550), + [anon_sym_LT_LT_EQ] = ACTIONS(4550), + [anon_sym_GT_GT_EQ] = ACTIONS(4550), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4550), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4550), + [anon_sym_EQ_EQ] = ACTIONS(4550), + [anon_sym_BANG_EQ] = ACTIONS(4550), + [anon_sym_AMP_AMP] = ACTIONS(4550), + [anon_sym_PIPE_PIPE] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [sym_op_bitwise_or] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [sym_op_left_shift] = ACTIONS(4552), + [sym_op_right_shift] = ACTIONS(4552), + [sym_op_unsigned_right_shift] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4552), + [sym_op_divide] = ACTIONS(4552), + [sym_op_modulo] = ACTIONS(4552), + [sym_op_coalescing] = ACTIONS(4552), + [anon_sym_BANG] = ACTIONS(4552), + [anon_sym_PLUS_PLUS] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4550), + [anon_sym_on] = ACTIONS(4550), + [anon_sym_equals] = ACTIONS(4550), + [anon_sym_by] = ACTIONS(4550), + [anon_sym_as] = ACTIONS(4550), + [anon_sym_is] = ACTIONS(4550), + [anon_sym_DASH_GT] = ACTIONS(4550), + [anon_sym_with] = ACTIONS(4550), + [aux_sym_preproc_if_token3] = ACTIONS(4550), + [aux_sym_preproc_else_token1] = ACTIONS(4550), + [aux_sym_preproc_elif_token1] = ACTIONS(4550), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477259,70 +476989,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2924), [sym_preproc_define] = STATE(2924), [sym_preproc_undef] = STATE(2924), - [sym__identifier_token] = ACTIONS(5047), - [anon_sym_extern] = ACTIONS(5047), - [anon_sym_alias] = ACTIONS(5047), - [anon_sym_global] = ACTIONS(5047), - [anon_sym_using] = ACTIONS(5047), - [anon_sym_unsafe] = ACTIONS(5047), - [anon_sym_static] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5049), - [anon_sym_event] = ACTIONS(5047), - [anon_sym_namespace] = ACTIONS(5047), - [anon_sym_class] = ACTIONS(5047), - [anon_sym_ref] = ACTIONS(5047), - [anon_sym_struct] = ACTIONS(5047), - [anon_sym_enum] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5049), - [anon_sym_interface] = ACTIONS(5047), - [anon_sym_delegate] = ACTIONS(5047), - [anon_sym_record] = ACTIONS(5047), - [anon_sym_public] = ACTIONS(5047), - [anon_sym_private] = ACTIONS(5047), - [anon_sym_readonly] = ACTIONS(5047), - [anon_sym_abstract] = ACTIONS(5047), - [anon_sym_async] = ACTIONS(5047), - [anon_sym_const] = ACTIONS(5047), - [anon_sym_file] = ACTIONS(5047), - [anon_sym_fixed] = ACTIONS(5047), - [anon_sym_internal] = ACTIONS(5047), - [anon_sym_new] = ACTIONS(5047), - [anon_sym_override] = ACTIONS(5047), - [anon_sym_partial] = ACTIONS(5047), - [anon_sym_protected] = ACTIONS(5047), - [anon_sym_required] = ACTIONS(5047), - [anon_sym_sealed] = ACTIONS(5047), - [anon_sym_virtual] = ACTIONS(5047), - [anon_sym_volatile] = ACTIONS(5047), - [anon_sym_where] = ACTIONS(5047), - [anon_sym_notnull] = ACTIONS(5047), - [anon_sym_unmanaged] = ACTIONS(5047), - [anon_sym_TILDE] = ACTIONS(5049), - [anon_sym_implicit] = ACTIONS(5047), - [anon_sym_explicit] = ACTIONS(5047), - [anon_sym_scoped] = ACTIONS(5047), - [anon_sym_var] = ACTIONS(5047), - [sym_predefined_type] = ACTIONS(5047), - [anon_sym_yield] = ACTIONS(5047), - [anon_sym_when] = ACTIONS(5047), - [anon_sym_from] = ACTIONS(5047), - [anon_sym_into] = ACTIONS(5047), - [anon_sym_join] = ACTIONS(5047), - [anon_sym_on] = ACTIONS(5047), - [anon_sym_equals] = ACTIONS(5047), - [anon_sym_let] = ACTIONS(5047), - [anon_sym_orderby] = ACTIONS(5047), - [anon_sym_ascending] = ACTIONS(5047), - [anon_sym_descending] = ACTIONS(5047), - [anon_sym_group] = ACTIONS(5047), - [anon_sym_by] = ACTIONS(5047), - [anon_sym_select] = ACTIONS(5047), - [sym_grit_metavariable] = ACTIONS(5049), - [aux_sym_preproc_if_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token3] = ACTIONS(5049), - [aux_sym_preproc_else_token1] = ACTIONS(5049), - [aux_sym_preproc_elif_token1] = ACTIONS(5049), + [anon_sym_SEMI] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_RBRACK] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_RPAREN] = ACTIONS(4554), + [anon_sym_RBRACE] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4556), + [anon_sym_in] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_EQ_GT] = ACTIONS(4554), + [anon_sym_STAR] = ACTIONS(4556), + [anon_sym_switch] = ACTIONS(4554), + [anon_sym_when] = ACTIONS(4554), + [anon_sym_DOT_DOT] = ACTIONS(4554), + [anon_sym_LT_EQ] = ACTIONS(4554), + [anon_sym_GT_EQ] = ACTIONS(4554), + [anon_sym_and] = ACTIONS(4554), + [anon_sym_or] = ACTIONS(4554), + [anon_sym_PLUS_EQ] = ACTIONS(4554), + [anon_sym_DASH_EQ] = ACTIONS(4554), + [anon_sym_STAR_EQ] = ACTIONS(4554), + [anon_sym_SLASH_EQ] = ACTIONS(4554), + [anon_sym_PERCENT_EQ] = ACTIONS(4554), + [anon_sym_AMP_EQ] = ACTIONS(4554), + [anon_sym_CARET_EQ] = ACTIONS(4554), + [anon_sym_PIPE_EQ] = ACTIONS(4554), + [anon_sym_LT_LT_EQ] = ACTIONS(4554), + [anon_sym_GT_GT_EQ] = ACTIONS(4554), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4554), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4554), + [anon_sym_EQ_EQ] = ACTIONS(4554), + [anon_sym_BANG_EQ] = ACTIONS(4554), + [anon_sym_AMP_AMP] = ACTIONS(4554), + [anon_sym_PIPE_PIPE] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [sym_op_bitwise_or] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [sym_op_left_shift] = ACTIONS(4556), + [sym_op_right_shift] = ACTIONS(4556), + [sym_op_unsigned_right_shift] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4556), + [anon_sym_DASH] = ACTIONS(4556), + [sym_op_divide] = ACTIONS(4556), + [sym_op_modulo] = ACTIONS(4556), + [sym_op_coalescing] = ACTIONS(4556), + [anon_sym_BANG] = ACTIONS(4556), + [anon_sym_PLUS_PLUS] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4554), + [anon_sym_on] = ACTIONS(4554), + [anon_sym_equals] = ACTIONS(4554), + [anon_sym_by] = ACTIONS(4554), + [anon_sym_as] = ACTIONS(4554), + [anon_sym_is] = ACTIONS(4554), + [anon_sym_DASH_GT] = ACTIONS(4554), + [anon_sym_with] = ACTIONS(4554), + [aux_sym_preproc_if_token3] = ACTIONS(4554), + [aux_sym_preproc_else_token1] = ACTIONS(4554), + [aux_sym_preproc_elif_token1] = ACTIONS(4554), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477344,70 +477073,69 @@ 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), - [sym__identifier_token] = ACTIONS(5051), - [anon_sym_extern] = ACTIONS(5051), - [anon_sym_alias] = ACTIONS(5051), - [anon_sym_global] = ACTIONS(5051), - [anon_sym_using] = ACTIONS(5051), - [anon_sym_unsafe] = ACTIONS(5051), - [anon_sym_static] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5053), - [anon_sym_event] = ACTIONS(5051), - [anon_sym_namespace] = ACTIONS(5051), - [anon_sym_class] = ACTIONS(5051), - [anon_sym_ref] = ACTIONS(5051), - [anon_sym_struct] = ACTIONS(5051), - [anon_sym_enum] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5053), - [anon_sym_interface] = ACTIONS(5051), - [anon_sym_delegate] = ACTIONS(5051), - [anon_sym_record] = ACTIONS(5051), - [anon_sym_public] = ACTIONS(5051), - [anon_sym_private] = ACTIONS(5051), - [anon_sym_readonly] = ACTIONS(5051), - [anon_sym_abstract] = ACTIONS(5051), - [anon_sym_async] = ACTIONS(5051), - [anon_sym_const] = ACTIONS(5051), - [anon_sym_file] = ACTIONS(5051), - [anon_sym_fixed] = ACTIONS(5051), - [anon_sym_internal] = ACTIONS(5051), - [anon_sym_new] = ACTIONS(5051), - [anon_sym_override] = ACTIONS(5051), - [anon_sym_partial] = ACTIONS(5051), - [anon_sym_protected] = ACTIONS(5051), - [anon_sym_required] = ACTIONS(5051), - [anon_sym_sealed] = ACTIONS(5051), - [anon_sym_virtual] = ACTIONS(5051), - [anon_sym_volatile] = ACTIONS(5051), - [anon_sym_where] = ACTIONS(5051), - [anon_sym_notnull] = ACTIONS(5051), - [anon_sym_unmanaged] = ACTIONS(5051), - [anon_sym_TILDE] = ACTIONS(5053), - [anon_sym_implicit] = ACTIONS(5051), - [anon_sym_explicit] = ACTIONS(5051), - [anon_sym_scoped] = ACTIONS(5051), - [anon_sym_var] = ACTIONS(5051), - [sym_predefined_type] = ACTIONS(5051), - [anon_sym_yield] = ACTIONS(5051), - [anon_sym_when] = ACTIONS(5051), - [anon_sym_from] = ACTIONS(5051), - [anon_sym_into] = ACTIONS(5051), - [anon_sym_join] = ACTIONS(5051), - [anon_sym_on] = ACTIONS(5051), - [anon_sym_equals] = ACTIONS(5051), - [anon_sym_let] = ACTIONS(5051), - [anon_sym_orderby] = ACTIONS(5051), - [anon_sym_ascending] = ACTIONS(5051), - [anon_sym_descending] = ACTIONS(5051), - [anon_sym_group] = ACTIONS(5051), - [anon_sym_by] = ACTIONS(5051), - [anon_sym_select] = ACTIONS(5051), - [sym_grit_metavariable] = ACTIONS(5053), - [aux_sym_preproc_if_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token3] = ACTIONS(5053), - [aux_sym_preproc_else_token1] = ACTIONS(5053), - [aux_sym_preproc_elif_token1] = ACTIONS(5053), + [anon_sym_SEMI] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_RBRACK] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_RPAREN] = ACTIONS(4558), + [anon_sym_RBRACE] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4560), + [anon_sym_in] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_EQ_GT] = ACTIONS(4558), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_switch] = ACTIONS(4558), + [anon_sym_when] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(4558), + [anon_sym_LT_EQ] = ACTIONS(4558), + [anon_sym_GT_EQ] = ACTIONS(4558), + [anon_sym_and] = ACTIONS(4558), + [anon_sym_or] = ACTIONS(4558), + [anon_sym_PLUS_EQ] = ACTIONS(4558), + [anon_sym_DASH_EQ] = ACTIONS(4558), + [anon_sym_STAR_EQ] = ACTIONS(4558), + [anon_sym_SLASH_EQ] = ACTIONS(4558), + [anon_sym_PERCENT_EQ] = ACTIONS(4558), + [anon_sym_AMP_EQ] = ACTIONS(4558), + [anon_sym_CARET_EQ] = ACTIONS(4558), + [anon_sym_PIPE_EQ] = ACTIONS(4558), + [anon_sym_LT_LT_EQ] = ACTIONS(4558), + [anon_sym_GT_GT_EQ] = ACTIONS(4558), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4558), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4558), + [anon_sym_EQ_EQ] = ACTIONS(4558), + [anon_sym_BANG_EQ] = ACTIONS(4558), + [anon_sym_AMP_AMP] = ACTIONS(4558), + [anon_sym_PIPE_PIPE] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [sym_op_bitwise_or] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [sym_op_left_shift] = ACTIONS(4560), + [sym_op_right_shift] = ACTIONS(4560), + [sym_op_unsigned_right_shift] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4560), + [anon_sym_DASH] = ACTIONS(4560), + [sym_op_divide] = ACTIONS(4560), + [sym_op_modulo] = ACTIONS(4560), + [sym_op_coalescing] = ACTIONS(4560), + [anon_sym_BANG] = ACTIONS(4560), + [anon_sym_PLUS_PLUS] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4558), + [anon_sym_on] = ACTIONS(4558), + [anon_sym_equals] = ACTIONS(4558), + [anon_sym_by] = ACTIONS(4558), + [anon_sym_as] = ACTIONS(4558), + [anon_sym_is] = ACTIONS(4558), + [anon_sym_DASH_GT] = ACTIONS(4558), + [anon_sym_with] = ACTIONS(4558), + [aux_sym_preproc_if_token3] = ACTIONS(4558), + [aux_sym_preproc_else_token1] = ACTIONS(4558), + [aux_sym_preproc_elif_token1] = ACTIONS(4558), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477429,91 +477157,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2926), [sym_preproc_define] = STATE(2926), [sym_preproc_undef] = STATE(2926), - [sym__identifier_token] = ACTIONS(4310), - [anon_sym_alias] = ACTIONS(4310), - [anon_sym_global] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(4312), - [anon_sym_COLON] = ACTIONS(4312), - [anon_sym_COMMA] = ACTIONS(4312), - [anon_sym_LPAREN] = ACTIONS(4312), - [anon_sym_LBRACE] = ACTIONS(4312), - [anon_sym_file] = ACTIONS(4310), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym_GT] = ACTIONS(4310), - [anon_sym_where] = ACTIONS(4310), - [anon_sym_QMARK] = ACTIONS(4310), - [anon_sym_notnull] = ACTIONS(4310), - [anon_sym_unmanaged] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(4310), - [anon_sym_PLUS_PLUS] = ACTIONS(4312), - [anon_sym_DASH_DASH] = ACTIONS(4312), - [anon_sym_PLUS] = ACTIONS(4310), - [anon_sym_DASH] = ACTIONS(4310), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_SLASH] = ACTIONS(4310), - [anon_sym_PERCENT] = ACTIONS(4312), - [anon_sym_CARET] = ACTIONS(4312), - [anon_sym_PIPE] = ACTIONS(4310), - [anon_sym_AMP] = ACTIONS(4310), - [anon_sym_LT_LT] = ACTIONS(4312), - [anon_sym_GT_GT] = ACTIONS(4310), - [anon_sym_GT_GT_GT] = ACTIONS(4312), - [anon_sym_EQ_EQ] = ACTIONS(4312), - [anon_sym_BANG_EQ] = ACTIONS(4312), - [anon_sym_GT_EQ] = ACTIONS(4312), - [anon_sym_LT_EQ] = ACTIONS(4312), - [anon_sym_DOT] = ACTIONS(4310), - [anon_sym_scoped] = ACTIONS(4310), - [anon_sym_var] = ACTIONS(4310), - [anon_sym_yield] = ACTIONS(4310), - [anon_sym_switch] = ACTIONS(4310), - [anon_sym_when] = ACTIONS(4310), - [sym_discard] = ACTIONS(4310), - [anon_sym_DOT_DOT] = ACTIONS(4312), - [anon_sym_and] = ACTIONS(4310), - [anon_sym_or] = ACTIONS(4310), - [anon_sym_AMP_AMP] = ACTIONS(4312), - [anon_sym_PIPE_PIPE] = ACTIONS(4312), - [sym_op_coalescing] = ACTIONS(4312), - [anon_sym_from] = ACTIONS(4310), - [anon_sym_into] = ACTIONS(4310), - [anon_sym_join] = ACTIONS(4310), - [anon_sym_on] = ACTIONS(4310), - [anon_sym_equals] = ACTIONS(4310), - [anon_sym_let] = ACTIONS(4310), - [anon_sym_orderby] = ACTIONS(4310), - [anon_sym_ascending] = ACTIONS(4310), - [anon_sym_descending] = ACTIONS(4310), - [anon_sym_group] = ACTIONS(4310), - [anon_sym_by] = ACTIONS(4310), - [anon_sym_select] = ACTIONS(4310), - [anon_sym_as] = ACTIONS(4310), - [anon_sym_is] = ACTIONS(4310), - [anon_sym_DASH_GT] = ACTIONS(4312), - [anon_sym_with] = ACTIONS(4310), - [sym_grit_metavariable] = ACTIONS(4312), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4312), - }, - [2927] = { - [sym_preproc_region] = STATE(2927), - [sym_preproc_endregion] = STATE(2927), - [sym_preproc_line] = STATE(2927), - [sym_preproc_pragma] = STATE(2927), - [sym_preproc_nullable] = STATE(2927), - [sym_preproc_error] = STATE(2927), - [sym_preproc_warning] = STATE(2927), - [sym_preproc_define] = STATE(2927), - [sym_preproc_undef] = STATE(2927), [anon_sym_SEMI] = ACTIONS(4562), [anon_sym_EQ] = ACTIONS(4564), [anon_sym_LBRACK] = ACTIONS(4562), @@ -477525,31 +477168,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(4562), [anon_sym_LT] = ACTIONS(4564), [anon_sym_GT] = ACTIONS(4564), - [anon_sym_in] = ACTIONS(4564), + [anon_sym_in] = ACTIONS(4562), [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_BANG] = ACTIONS(4564), - [anon_sym_PLUS_PLUS] = ACTIONS(4562), - [anon_sym_DASH_DASH] = ACTIONS(4562), - [anon_sym_PLUS] = ACTIONS(4564), - [anon_sym_DASH] = ACTIONS(4564), - [anon_sym_STAR] = ACTIONS(4564), - [anon_sym_SLASH] = ACTIONS(4564), - [anon_sym_PERCENT] = ACTIONS(4564), - [anon_sym_CARET] = ACTIONS(4564), - [anon_sym_PIPE] = ACTIONS(4564), - [anon_sym_AMP] = ACTIONS(4564), - [anon_sym_LT_LT] = ACTIONS(4564), - [anon_sym_GT_GT] = ACTIONS(4564), - [anon_sym_GT_GT_GT] = ACTIONS(4564), - [anon_sym_EQ_EQ] = ACTIONS(4562), - [anon_sym_BANG_EQ] = ACTIONS(4562), - [anon_sym_GT_EQ] = ACTIONS(4562), - [anon_sym_LT_EQ] = ACTIONS(4562), [anon_sym_DOT] = ACTIONS(4564), [anon_sym_EQ_GT] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4564), [anon_sym_switch] = ACTIONS(4562), [anon_sym_when] = ACTIONS(4562), [anon_sym_DOT_DOT] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_EQ] = ACTIONS(4562), [anon_sym_and] = ACTIONS(4562), [anon_sym_or] = ACTIONS(4562), [anon_sym_PLUS_EQ] = ACTIONS(4562), @@ -477564,10 +477192,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4562), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4562), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4562), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), [anon_sym_AMP_AMP] = ACTIONS(4562), [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [sym_op_bitwise_or] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [sym_op_left_shift] = ACTIONS(4564), + [sym_op_right_shift] = ACTIONS(4564), + [sym_op_unsigned_right_shift] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4564), + [sym_op_divide] = ACTIONS(4564), + [sym_op_modulo] = ACTIONS(4564), [sym_op_coalescing] = ACTIONS(4564), - [anon_sym_into] = ACTIONS(4562), + [anon_sym_BANG] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4562), [anon_sym_on] = ACTIONS(4562), [anon_sym_equals] = ACTIONS(4562), [anon_sym_by] = ACTIONS(4562), @@ -477589,80 +477231,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2928] = { - [sym_preproc_region] = STATE(2928), - [sym_preproc_endregion] = STATE(2928), - [sym_preproc_line] = STATE(2928), - [sym_preproc_pragma] = STATE(2928), - [sym_preproc_nullable] = STATE(2928), - [sym_preproc_error] = STATE(2928), - [sym_preproc_warning] = STATE(2928), - [sym_preproc_define] = STATE(2928), - [sym_preproc_undef] = STATE(2928), - [sym__identifier_token] = ACTIONS(5055), - [anon_sym_extern] = ACTIONS(5055), - [anon_sym_alias] = ACTIONS(5055), - [anon_sym_global] = ACTIONS(5055), - [anon_sym_using] = ACTIONS(5055), - [anon_sym_unsafe] = ACTIONS(5055), - [anon_sym_static] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5057), - [anon_sym_event] = ACTIONS(5055), - [anon_sym_namespace] = ACTIONS(5055), - [anon_sym_class] = ACTIONS(5055), - [anon_sym_ref] = ACTIONS(5055), - [anon_sym_struct] = ACTIONS(5055), - [anon_sym_enum] = ACTIONS(5055), - [anon_sym_RBRACE] = ACTIONS(5057), - [anon_sym_interface] = ACTIONS(5055), - [anon_sym_delegate] = ACTIONS(5055), - [anon_sym_record] = ACTIONS(5055), - [anon_sym_public] = ACTIONS(5055), - [anon_sym_private] = ACTIONS(5055), - [anon_sym_readonly] = ACTIONS(5055), - [anon_sym_abstract] = ACTIONS(5055), - [anon_sym_async] = ACTIONS(5055), - [anon_sym_const] = ACTIONS(5055), - [anon_sym_file] = ACTIONS(5055), - [anon_sym_fixed] = ACTIONS(5055), - [anon_sym_internal] = ACTIONS(5055), - [anon_sym_new] = ACTIONS(5055), - [anon_sym_override] = ACTIONS(5055), - [anon_sym_partial] = ACTIONS(5055), - [anon_sym_protected] = ACTIONS(5055), - [anon_sym_required] = ACTIONS(5055), - [anon_sym_sealed] = ACTIONS(5055), - [anon_sym_virtual] = ACTIONS(5055), - [anon_sym_volatile] = ACTIONS(5055), - [anon_sym_where] = ACTIONS(5055), - [anon_sym_notnull] = ACTIONS(5055), - [anon_sym_unmanaged] = ACTIONS(5055), - [anon_sym_TILDE] = ACTIONS(5057), - [anon_sym_implicit] = ACTIONS(5055), - [anon_sym_explicit] = ACTIONS(5055), - [anon_sym_scoped] = ACTIONS(5055), - [anon_sym_var] = ACTIONS(5055), - [sym_predefined_type] = ACTIONS(5055), - [anon_sym_yield] = ACTIONS(5055), - [anon_sym_when] = ACTIONS(5055), - [anon_sym_from] = ACTIONS(5055), - [anon_sym_into] = ACTIONS(5055), - [anon_sym_join] = ACTIONS(5055), - [anon_sym_on] = ACTIONS(5055), - [anon_sym_equals] = ACTIONS(5055), - [anon_sym_let] = ACTIONS(5055), - [anon_sym_orderby] = ACTIONS(5055), - [anon_sym_ascending] = ACTIONS(5055), - [anon_sym_descending] = ACTIONS(5055), - [anon_sym_group] = ACTIONS(5055), - [anon_sym_by] = ACTIONS(5055), - [anon_sym_select] = ACTIONS(5055), - [sym_grit_metavariable] = ACTIONS(5057), - [aux_sym_preproc_if_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token3] = ACTIONS(5057), - [aux_sym_preproc_else_token1] = ACTIONS(5057), - [aux_sym_preproc_elif_token1] = ACTIONS(5057), + [2927] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6223), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym__lambda_parameters] = STATE(8081), + [sym_identifier] = STATE(5942), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if_in_attribute_list] = STATE(5920), + [sym_preproc_region] = STATE(2927), + [sym_preproc_endregion] = STATE(2927), + [sym_preproc_line] = STATE(2927), + [sym_preproc_pragma] = STATE(2927), + [sym_preproc_nullable] = STATE(2927), + [sym_preproc_error] = STATE(2927), + [sym_preproc_warning] = STATE(2927), + [sym_preproc_define] = STATE(2927), + [sym_preproc_undef] = STATE(2927), + [aux_sym__class_declaration_initializer_repeat1] = STATE(5548), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4146), + [aux_sym__lambda_expression_init_repeat1] = STATE(4103), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_ref] = ACTIONS(5216), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_out] = ACTIONS(1311), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_this] = ACTIONS(1311), + [anon_sym_scoped] = ACTIONS(5218), + [anon_sym_params] = ACTIONS(5220), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(5222), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477674,6 +477315,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2928] = { + [sym_preproc_region] = STATE(2928), + [sym_preproc_endregion] = STATE(2928), + [sym_preproc_line] = STATE(2928), + [sym_preproc_pragma] = STATE(2928), + [sym_preproc_nullable] = STATE(2928), + [sym_preproc_error] = STATE(2928), + [sym_preproc_warning] = STATE(2928), + [sym_preproc_define] = STATE(2928), + [sym_preproc_undef] = STATE(2928), + [sym__identifier_token] = ACTIONS(4470), + [anon_sym_alias] = ACTIONS(4470), + [anon_sym_global] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4472), + [anon_sym_COLON] = ACTIONS(4472), + [anon_sym_COMMA] = ACTIONS(4472), + [anon_sym_LPAREN] = ACTIONS(4472), + [anon_sym_file] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4470), + [anon_sym_where] = ACTIONS(4470), + [anon_sym_QMARK] = ACTIONS(4470), + [anon_sym_notnull] = ACTIONS(4470), + [anon_sym_unmanaged] = ACTIONS(4470), + [anon_sym_DOT] = ACTIONS(4470), + [anon_sym_scoped] = ACTIONS(4470), + [anon_sym_var] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4472), + [anon_sym_yield] = ACTIONS(4470), + [anon_sym_switch] = ACTIONS(4470), + [anon_sym_when] = ACTIONS(4470), + [sym_discard] = ACTIONS(4470), + [anon_sym_DOT_DOT] = ACTIONS(4472), + [anon_sym_LT_EQ] = ACTIONS(4472), + [anon_sym_GT_EQ] = ACTIONS(4472), + [anon_sym_and] = ACTIONS(4470), + [anon_sym_or] = ACTIONS(4470), + [anon_sym_EQ_EQ] = ACTIONS(4472), + [anon_sym_BANG_EQ] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_PIPE_PIPE] = ACTIONS(4472), + [anon_sym_AMP] = ACTIONS(4470), + [sym_op_bitwise_or] = ACTIONS(4470), + [anon_sym_CARET] = ACTIONS(4472), + [sym_op_left_shift] = ACTIONS(4472), + [sym_op_right_shift] = ACTIONS(4470), + [sym_op_unsigned_right_shift] = ACTIONS(4472), + [anon_sym_PLUS] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4470), + [sym_op_divide] = ACTIONS(4470), + [sym_op_modulo] = ACTIONS(4472), + [sym_op_coalescing] = ACTIONS(4472), + [anon_sym_BANG] = ACTIONS(4470), + [anon_sym_PLUS_PLUS] = ACTIONS(4472), + [anon_sym_DASH_DASH] = ACTIONS(4472), + [anon_sym_from] = ACTIONS(4470), + [anon_sym_into] = ACTIONS(4470), + [anon_sym_join] = ACTIONS(4470), + [anon_sym_on] = ACTIONS(4470), + [anon_sym_equals] = ACTIONS(4470), + [anon_sym_let] = ACTIONS(4470), + [anon_sym_orderby] = ACTIONS(4470), + [anon_sym_ascending] = ACTIONS(4470), + [anon_sym_descending] = ACTIONS(4470), + [anon_sym_group] = ACTIONS(4470), + [anon_sym_by] = ACTIONS(4470), + [anon_sym_select] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4470), + [anon_sym_is] = ACTIONS(4470), + [anon_sym_DASH_GT] = ACTIONS(4472), + [anon_sym_with] = ACTIONS(4470), + [sym_grit_metavariable] = ACTIONS(4472), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4472), + }, [2929] = { [sym_preproc_region] = STATE(2929), [sym_preproc_endregion] = STATE(2929), @@ -477684,70 +477409,69 @@ 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), - [sym__identifier_token] = ACTIONS(5059), - [anon_sym_extern] = ACTIONS(5059), - [anon_sym_alias] = ACTIONS(5059), - [anon_sym_global] = ACTIONS(5059), - [anon_sym_using] = ACTIONS(5059), - [anon_sym_unsafe] = ACTIONS(5059), - [anon_sym_static] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5061), - [anon_sym_event] = ACTIONS(5059), - [anon_sym_namespace] = ACTIONS(5059), - [anon_sym_class] = ACTIONS(5059), - [anon_sym_ref] = ACTIONS(5059), - [anon_sym_struct] = ACTIONS(5059), - [anon_sym_enum] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5061), - [anon_sym_interface] = ACTIONS(5059), - [anon_sym_delegate] = ACTIONS(5059), - [anon_sym_record] = ACTIONS(5059), - [anon_sym_public] = ACTIONS(5059), - [anon_sym_private] = ACTIONS(5059), - [anon_sym_readonly] = ACTIONS(5059), - [anon_sym_abstract] = ACTIONS(5059), - [anon_sym_async] = ACTIONS(5059), - [anon_sym_const] = ACTIONS(5059), - [anon_sym_file] = ACTIONS(5059), - [anon_sym_fixed] = ACTIONS(5059), - [anon_sym_internal] = ACTIONS(5059), - [anon_sym_new] = ACTIONS(5059), - [anon_sym_override] = ACTIONS(5059), - [anon_sym_partial] = ACTIONS(5059), - [anon_sym_protected] = ACTIONS(5059), - [anon_sym_required] = ACTIONS(5059), - [anon_sym_sealed] = ACTIONS(5059), - [anon_sym_virtual] = ACTIONS(5059), - [anon_sym_volatile] = ACTIONS(5059), - [anon_sym_where] = ACTIONS(5059), - [anon_sym_notnull] = ACTIONS(5059), - [anon_sym_unmanaged] = ACTIONS(5059), - [anon_sym_TILDE] = ACTIONS(5061), - [anon_sym_implicit] = ACTIONS(5059), - [anon_sym_explicit] = ACTIONS(5059), - [anon_sym_scoped] = ACTIONS(5059), - [anon_sym_var] = ACTIONS(5059), - [sym_predefined_type] = ACTIONS(5059), - [anon_sym_yield] = ACTIONS(5059), - [anon_sym_when] = ACTIONS(5059), - [anon_sym_from] = ACTIONS(5059), - [anon_sym_into] = ACTIONS(5059), - [anon_sym_join] = ACTIONS(5059), - [anon_sym_on] = ACTIONS(5059), - [anon_sym_equals] = ACTIONS(5059), - [anon_sym_let] = ACTIONS(5059), - [anon_sym_orderby] = ACTIONS(5059), - [anon_sym_ascending] = ACTIONS(5059), - [anon_sym_descending] = ACTIONS(5059), - [anon_sym_group] = ACTIONS(5059), - [anon_sym_by] = ACTIONS(5059), - [anon_sym_select] = ACTIONS(5059), - [sym_grit_metavariable] = ACTIONS(5061), - [aux_sym_preproc_if_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token3] = ACTIONS(5061), - [aux_sym_preproc_else_token1] = ACTIONS(5061), - [aux_sym_preproc_elif_token1] = ACTIONS(5061), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_when] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3957), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477769,70 +477493,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2930), [sym_preproc_define] = STATE(2930), [sym_preproc_undef] = STATE(2930), - [sym__identifier_token] = ACTIONS(5063), - [anon_sym_extern] = ACTIONS(5063), - [anon_sym_alias] = ACTIONS(5063), - [anon_sym_global] = ACTIONS(5063), - [anon_sym_using] = ACTIONS(5063), - [anon_sym_unsafe] = ACTIONS(5063), - [anon_sym_static] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5065), - [anon_sym_event] = ACTIONS(5063), - [anon_sym_namespace] = ACTIONS(5063), - [anon_sym_class] = ACTIONS(5063), - [anon_sym_ref] = ACTIONS(5063), - [anon_sym_struct] = ACTIONS(5063), - [anon_sym_enum] = ACTIONS(5063), - [anon_sym_RBRACE] = ACTIONS(5065), - [anon_sym_interface] = ACTIONS(5063), - [anon_sym_delegate] = ACTIONS(5063), - [anon_sym_record] = ACTIONS(5063), - [anon_sym_public] = ACTIONS(5063), - [anon_sym_private] = ACTIONS(5063), - [anon_sym_readonly] = ACTIONS(5063), - [anon_sym_abstract] = ACTIONS(5063), - [anon_sym_async] = ACTIONS(5063), - [anon_sym_const] = ACTIONS(5063), - [anon_sym_file] = ACTIONS(5063), - [anon_sym_fixed] = ACTIONS(5063), - [anon_sym_internal] = ACTIONS(5063), - [anon_sym_new] = ACTIONS(5063), - [anon_sym_override] = ACTIONS(5063), - [anon_sym_partial] = ACTIONS(5063), - [anon_sym_protected] = ACTIONS(5063), - [anon_sym_required] = ACTIONS(5063), - [anon_sym_sealed] = ACTIONS(5063), - [anon_sym_virtual] = ACTIONS(5063), - [anon_sym_volatile] = ACTIONS(5063), - [anon_sym_where] = ACTIONS(5063), - [anon_sym_notnull] = ACTIONS(5063), - [anon_sym_unmanaged] = ACTIONS(5063), - [anon_sym_TILDE] = ACTIONS(5065), - [anon_sym_implicit] = ACTIONS(5063), - [anon_sym_explicit] = ACTIONS(5063), - [anon_sym_scoped] = ACTIONS(5063), - [anon_sym_var] = ACTIONS(5063), - [sym_predefined_type] = ACTIONS(5063), - [anon_sym_yield] = ACTIONS(5063), - [anon_sym_when] = ACTIONS(5063), - [anon_sym_from] = ACTIONS(5063), - [anon_sym_into] = ACTIONS(5063), - [anon_sym_join] = ACTIONS(5063), - [anon_sym_on] = ACTIONS(5063), - [anon_sym_equals] = ACTIONS(5063), - [anon_sym_let] = ACTIONS(5063), - [anon_sym_orderby] = ACTIONS(5063), - [anon_sym_ascending] = ACTIONS(5063), - [anon_sym_descending] = ACTIONS(5063), - [anon_sym_group] = ACTIONS(5063), - [anon_sym_by] = ACTIONS(5063), - [anon_sym_select] = ACTIONS(5063), - [sym_grit_metavariable] = ACTIONS(5065), - [aux_sym_preproc_if_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token3] = ACTIONS(5065), - [aux_sym_preproc_else_token1] = ACTIONS(5065), - [aux_sym_preproc_elif_token1] = ACTIONS(5065), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_EQ] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_COLON] = ACTIONS(3982), + [anon_sym_COMMA] = ACTIONS(3982), + [anon_sym_RBRACK] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym_RPAREN] = ACTIONS(3982), + [anon_sym_RBRACE] = ACTIONS(3982), + [anon_sym_LT] = ACTIONS(3980), + [anon_sym_GT] = ACTIONS(3980), + [anon_sym_in] = ACTIONS(3982), + [anon_sym_QMARK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_EQ_GT] = ACTIONS(3982), + [anon_sym_STAR] = ACTIONS(3980), + [anon_sym_switch] = ACTIONS(3982), + [anon_sym_when] = ACTIONS(3982), + [anon_sym_DOT_DOT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_EQ] = ACTIONS(3982), + [anon_sym_and] = ACTIONS(3982), + [anon_sym_or] = ACTIONS(3982), + [anon_sym_PLUS_EQ] = ACTIONS(3982), + [anon_sym_DASH_EQ] = ACTIONS(3982), + [anon_sym_STAR_EQ] = ACTIONS(3982), + [anon_sym_SLASH_EQ] = ACTIONS(3982), + [anon_sym_PERCENT_EQ] = ACTIONS(3982), + [anon_sym_AMP_EQ] = ACTIONS(3982), + [anon_sym_CARET_EQ] = ACTIONS(3982), + [anon_sym_PIPE_EQ] = ACTIONS(3982), + [anon_sym_LT_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_GT_EQ] = ACTIONS(3982), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3982), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3982), + [anon_sym_EQ_EQ] = ACTIONS(3982), + [anon_sym_BANG_EQ] = ACTIONS(3982), + [anon_sym_AMP_AMP] = ACTIONS(3982), + [anon_sym_PIPE_PIPE] = ACTIONS(3982), + [anon_sym_AMP] = ACTIONS(3980), + [sym_op_bitwise_or] = ACTIONS(3980), + [anon_sym_CARET] = ACTIONS(3980), + [sym_op_left_shift] = ACTIONS(3980), + [sym_op_right_shift] = ACTIONS(3980), + [sym_op_unsigned_right_shift] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3980), + [sym_op_divide] = ACTIONS(3980), + [sym_op_modulo] = ACTIONS(3980), + [sym_op_coalescing] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3982), + [anon_sym_on] = ACTIONS(3982), + [anon_sym_equals] = ACTIONS(3982), + [anon_sym_by] = ACTIONS(3982), + [anon_sym_as] = ACTIONS(3982), + [anon_sym_is] = ACTIONS(3982), + [anon_sym_DASH_GT] = ACTIONS(3982), + [anon_sym_with] = ACTIONS(3982), + [aux_sym_preproc_if_token3] = ACTIONS(3982), + [aux_sym_preproc_else_token1] = ACTIONS(3982), + [aux_sym_preproc_elif_token1] = ACTIONS(3982), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477854,80 +477577,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2931), [sym_preproc_define] = STATE(2931), [sym_preproc_undef] = STATE(2931), - [sym__identifier_token] = ACTIONS(5067), - [anon_sym_extern] = ACTIONS(5067), - [anon_sym_alias] = ACTIONS(5067), - [anon_sym_global] = ACTIONS(5067), - [anon_sym_using] = ACTIONS(5067), - [anon_sym_unsafe] = ACTIONS(5067), - [anon_sym_static] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_event] = ACTIONS(5067), - [anon_sym_namespace] = ACTIONS(5067), - [anon_sym_class] = ACTIONS(5067), - [anon_sym_ref] = ACTIONS(5067), - [anon_sym_struct] = ACTIONS(5067), - [anon_sym_enum] = ACTIONS(5067), - [anon_sym_RBRACE] = ACTIONS(5069), - [anon_sym_interface] = ACTIONS(5067), - [anon_sym_delegate] = ACTIONS(5067), - [anon_sym_record] = ACTIONS(5067), - [anon_sym_public] = ACTIONS(5067), - [anon_sym_private] = ACTIONS(5067), - [anon_sym_readonly] = ACTIONS(5067), - [anon_sym_abstract] = ACTIONS(5067), - [anon_sym_async] = ACTIONS(5067), - [anon_sym_const] = ACTIONS(5067), - [anon_sym_file] = ACTIONS(5067), - [anon_sym_fixed] = ACTIONS(5067), - [anon_sym_internal] = ACTIONS(5067), - [anon_sym_new] = ACTIONS(5067), - [anon_sym_override] = ACTIONS(5067), - [anon_sym_partial] = ACTIONS(5067), - [anon_sym_protected] = ACTIONS(5067), - [anon_sym_required] = ACTIONS(5067), - [anon_sym_sealed] = ACTIONS(5067), - [anon_sym_virtual] = ACTIONS(5067), - [anon_sym_volatile] = ACTIONS(5067), - [anon_sym_where] = ACTIONS(5067), - [anon_sym_notnull] = ACTIONS(5067), - [anon_sym_unmanaged] = ACTIONS(5067), - [anon_sym_TILDE] = ACTIONS(5069), - [anon_sym_implicit] = ACTIONS(5067), - [anon_sym_explicit] = ACTIONS(5067), - [anon_sym_scoped] = ACTIONS(5067), - [anon_sym_var] = ACTIONS(5067), - [sym_predefined_type] = ACTIONS(5067), - [anon_sym_yield] = ACTIONS(5067), - [anon_sym_when] = ACTIONS(5067), - [anon_sym_from] = ACTIONS(5067), - [anon_sym_into] = ACTIONS(5067), - [anon_sym_join] = ACTIONS(5067), - [anon_sym_on] = ACTIONS(5067), - [anon_sym_equals] = ACTIONS(5067), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_orderby] = ACTIONS(5067), - [anon_sym_ascending] = ACTIONS(5067), - [anon_sym_descending] = ACTIONS(5067), - [anon_sym_group] = ACTIONS(5067), - [anon_sym_by] = ACTIONS(5067), - [anon_sym_select] = ACTIONS(5067), - [sym_grit_metavariable] = ACTIONS(5069), - [aux_sym_preproc_if_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token3] = ACTIONS(5069), - [aux_sym_preproc_else_token1] = ACTIONS(5069), - [aux_sym_preproc_elif_token1] = ACTIONS(5069), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4478), + [anon_sym_alias] = ACTIONS(4478), + [anon_sym_global] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4480), + [anon_sym_COLON] = ACTIONS(4480), + [anon_sym_COMMA] = ACTIONS(4480), + [anon_sym_LPAREN] = ACTIONS(4480), + [anon_sym_file] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4478), + [anon_sym_GT] = ACTIONS(4478), + [anon_sym_where] = ACTIONS(4478), + [anon_sym_QMARK] = ACTIONS(4478), + [anon_sym_notnull] = ACTIONS(4478), + [anon_sym_unmanaged] = ACTIONS(4478), + [anon_sym_DOT] = ACTIONS(4478), + [anon_sym_scoped] = ACTIONS(4478), + [anon_sym_var] = ACTIONS(4478), + [anon_sym_STAR] = ACTIONS(4480), + [anon_sym_yield] = ACTIONS(4478), + [anon_sym_switch] = ACTIONS(4478), + [anon_sym_when] = ACTIONS(4478), + [sym_discard] = ACTIONS(4478), + [anon_sym_DOT_DOT] = ACTIONS(4480), + [anon_sym_LT_EQ] = ACTIONS(4480), + [anon_sym_GT_EQ] = ACTIONS(4480), + [anon_sym_and] = ACTIONS(4478), + [anon_sym_or] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4480), + [anon_sym_BANG_EQ] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_PIPE_PIPE] = ACTIONS(4480), + [anon_sym_AMP] = ACTIONS(4478), + [sym_op_bitwise_or] = ACTIONS(4478), + [anon_sym_CARET] = ACTIONS(4480), + [sym_op_left_shift] = ACTIONS(4480), + [sym_op_right_shift] = ACTIONS(4478), + [sym_op_unsigned_right_shift] = ACTIONS(4480), + [anon_sym_PLUS] = ACTIONS(4478), + [anon_sym_DASH] = ACTIONS(4478), + [sym_op_divide] = ACTIONS(4478), + [sym_op_modulo] = ACTIONS(4480), + [sym_op_coalescing] = ACTIONS(4480), + [anon_sym_BANG] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4480), + [anon_sym_DASH_DASH] = ACTIONS(4480), + [anon_sym_from] = ACTIONS(4478), + [anon_sym_into] = ACTIONS(4478), + [anon_sym_join] = ACTIONS(4478), + [anon_sym_on] = ACTIONS(4478), + [anon_sym_equals] = ACTIONS(4478), + [anon_sym_let] = ACTIONS(4478), + [anon_sym_orderby] = ACTIONS(4478), + [anon_sym_ascending] = ACTIONS(4478), + [anon_sym_descending] = ACTIONS(4478), + [anon_sym_group] = ACTIONS(4478), + [anon_sym_by] = ACTIONS(4478), + [anon_sym_select] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4478), + [anon_sym_DASH_GT] = ACTIONS(4480), + [anon_sym_with] = ACTIONS(4478), + [sym_grit_metavariable] = ACTIONS(4480), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4480), }, [2932] = { [sym_preproc_region] = STATE(2932), @@ -477939,70 +477661,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2932), [sym_preproc_define] = STATE(2932), [sym_preproc_undef] = STATE(2932), - [sym__identifier_token] = ACTIONS(5071), - [anon_sym_extern] = ACTIONS(5071), - [anon_sym_alias] = ACTIONS(5071), - [anon_sym_global] = ACTIONS(5071), - [anon_sym_using] = ACTIONS(5071), - [anon_sym_unsafe] = ACTIONS(5071), - [anon_sym_static] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5073), - [anon_sym_event] = ACTIONS(5071), - [anon_sym_namespace] = ACTIONS(5071), - [anon_sym_class] = ACTIONS(5071), - [anon_sym_ref] = ACTIONS(5071), - [anon_sym_struct] = ACTIONS(5071), - [anon_sym_enum] = ACTIONS(5071), - [anon_sym_RBRACE] = ACTIONS(5073), - [anon_sym_interface] = ACTIONS(5071), - [anon_sym_delegate] = ACTIONS(5071), - [anon_sym_record] = ACTIONS(5071), - [anon_sym_public] = ACTIONS(5071), - [anon_sym_private] = ACTIONS(5071), - [anon_sym_readonly] = ACTIONS(5071), - [anon_sym_abstract] = ACTIONS(5071), - [anon_sym_async] = ACTIONS(5071), - [anon_sym_const] = ACTIONS(5071), - [anon_sym_file] = ACTIONS(5071), - [anon_sym_fixed] = ACTIONS(5071), - [anon_sym_internal] = ACTIONS(5071), - [anon_sym_new] = ACTIONS(5071), - [anon_sym_override] = ACTIONS(5071), - [anon_sym_partial] = ACTIONS(5071), - [anon_sym_protected] = ACTIONS(5071), - [anon_sym_required] = ACTIONS(5071), - [anon_sym_sealed] = ACTIONS(5071), - [anon_sym_virtual] = ACTIONS(5071), - [anon_sym_volatile] = ACTIONS(5071), - [anon_sym_where] = ACTIONS(5071), - [anon_sym_notnull] = ACTIONS(5071), - [anon_sym_unmanaged] = ACTIONS(5071), - [anon_sym_TILDE] = ACTIONS(5073), - [anon_sym_implicit] = ACTIONS(5071), - [anon_sym_explicit] = ACTIONS(5071), - [anon_sym_scoped] = ACTIONS(5071), - [anon_sym_var] = ACTIONS(5071), - [sym_predefined_type] = ACTIONS(5071), - [anon_sym_yield] = ACTIONS(5071), - [anon_sym_when] = ACTIONS(5071), - [anon_sym_from] = ACTIONS(5071), - [anon_sym_into] = ACTIONS(5071), - [anon_sym_join] = ACTIONS(5071), - [anon_sym_on] = ACTIONS(5071), - [anon_sym_equals] = ACTIONS(5071), - [anon_sym_let] = ACTIONS(5071), - [anon_sym_orderby] = ACTIONS(5071), - [anon_sym_ascending] = ACTIONS(5071), - [anon_sym_descending] = ACTIONS(5071), - [anon_sym_group] = ACTIONS(5071), - [anon_sym_by] = ACTIONS(5071), - [anon_sym_select] = ACTIONS(5071), - [sym_grit_metavariable] = ACTIONS(5073), - [aux_sym_preproc_if_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token3] = ACTIONS(5073), - [aux_sym_preproc_else_token1] = ACTIONS(5073), - [aux_sym_preproc_elif_token1] = ACTIONS(5073), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_RBRACK] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_RBRACE] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_in] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_DOT] = ACTIONS(4540), + [anon_sym_EQ_GT] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_switch] = ACTIONS(4534), + [anon_sym_when] = ACTIONS(4534), + [anon_sym_DOT_DOT] = ACTIONS(4534), + [anon_sym_LT_EQ] = ACTIONS(4534), + [anon_sym_GT_EQ] = ACTIONS(4534), + [anon_sym_and] = ACTIONS(4534), + [anon_sym_or] = ACTIONS(4534), + [anon_sym_PLUS_EQ] = ACTIONS(4538), + [anon_sym_DASH_EQ] = ACTIONS(4538), + [anon_sym_STAR_EQ] = ACTIONS(4538), + [anon_sym_SLASH_EQ] = ACTIONS(4538), + [anon_sym_PERCENT_EQ] = ACTIONS(4538), + [anon_sym_AMP_EQ] = ACTIONS(4538), + [anon_sym_CARET_EQ] = ACTIONS(4538), + [anon_sym_PIPE_EQ] = ACTIONS(4538), + [anon_sym_LT_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4534), + [anon_sym_BANG_EQ] = ACTIONS(4534), + [anon_sym_AMP_AMP] = ACTIONS(4534), + [anon_sym_PIPE_PIPE] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4540), + [sym_op_bitwise_or] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [sym_op_left_shift] = ACTIONS(4540), + [sym_op_right_shift] = ACTIONS(4540), + [sym_op_unsigned_right_shift] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [sym_op_divide] = ACTIONS(4540), + [sym_op_modulo] = ACTIONS(4540), + [sym_op_coalescing] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PLUS_PLUS] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4534), + [anon_sym_on] = ACTIONS(4534), + [anon_sym_equals] = ACTIONS(4534), + [anon_sym_by] = ACTIONS(4534), + [anon_sym_as] = ACTIONS(4534), + [anon_sym_is] = ACTIONS(4534), + [anon_sym_DASH_GT] = ACTIONS(4534), + [anon_sym_with] = ACTIONS(4534), + [aux_sym_preproc_if_token3] = ACTIONS(4534), + [aux_sym_preproc_else_token1] = ACTIONS(4534), + [aux_sym_preproc_elif_token1] = ACTIONS(4534), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478024,70 +477745,69 @@ 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), - [sym__identifier_token] = ACTIONS(5075), - [anon_sym_extern] = ACTIONS(5075), - [anon_sym_alias] = ACTIONS(5075), - [anon_sym_global] = ACTIONS(5075), - [anon_sym_using] = ACTIONS(5075), - [anon_sym_unsafe] = ACTIONS(5075), - [anon_sym_static] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5077), - [anon_sym_event] = ACTIONS(5075), - [anon_sym_namespace] = ACTIONS(5075), - [anon_sym_class] = ACTIONS(5075), - [anon_sym_ref] = ACTIONS(5075), - [anon_sym_struct] = ACTIONS(5075), - [anon_sym_enum] = ACTIONS(5075), - [anon_sym_RBRACE] = ACTIONS(5077), - [anon_sym_interface] = ACTIONS(5075), - [anon_sym_delegate] = ACTIONS(5075), - [anon_sym_record] = ACTIONS(5075), - [anon_sym_public] = ACTIONS(5075), - [anon_sym_private] = ACTIONS(5075), - [anon_sym_readonly] = ACTIONS(5075), - [anon_sym_abstract] = ACTIONS(5075), - [anon_sym_async] = ACTIONS(5075), - [anon_sym_const] = ACTIONS(5075), - [anon_sym_file] = ACTIONS(5075), - [anon_sym_fixed] = ACTIONS(5075), - [anon_sym_internal] = ACTIONS(5075), - [anon_sym_new] = ACTIONS(5075), - [anon_sym_override] = ACTIONS(5075), - [anon_sym_partial] = ACTIONS(5075), - [anon_sym_protected] = ACTIONS(5075), - [anon_sym_required] = ACTIONS(5075), - [anon_sym_sealed] = ACTIONS(5075), - [anon_sym_virtual] = ACTIONS(5075), - [anon_sym_volatile] = ACTIONS(5075), - [anon_sym_where] = ACTIONS(5075), - [anon_sym_notnull] = ACTIONS(5075), - [anon_sym_unmanaged] = ACTIONS(5075), - [anon_sym_TILDE] = ACTIONS(5077), - [anon_sym_implicit] = ACTIONS(5075), - [anon_sym_explicit] = ACTIONS(5075), - [anon_sym_scoped] = ACTIONS(5075), - [anon_sym_var] = ACTIONS(5075), - [sym_predefined_type] = ACTIONS(5075), - [anon_sym_yield] = ACTIONS(5075), - [anon_sym_when] = ACTIONS(5075), - [anon_sym_from] = ACTIONS(5075), - [anon_sym_into] = ACTIONS(5075), - [anon_sym_join] = ACTIONS(5075), - [anon_sym_on] = ACTIONS(5075), - [anon_sym_equals] = ACTIONS(5075), - [anon_sym_let] = ACTIONS(5075), - [anon_sym_orderby] = ACTIONS(5075), - [anon_sym_ascending] = ACTIONS(5075), - [anon_sym_descending] = ACTIONS(5075), - [anon_sym_group] = ACTIONS(5075), - [anon_sym_by] = ACTIONS(5075), - [anon_sym_select] = ACTIONS(5075), - [sym_grit_metavariable] = ACTIONS(5077), - [aux_sym_preproc_if_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token3] = ACTIONS(5077), - [aux_sym_preproc_else_token1] = ACTIONS(5077), - [aux_sym_preproc_elif_token1] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(3991), + [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_RBRACE] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_in] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_EQ_GT] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_switch] = ACTIONS(4006), + [anon_sym_when] = ACTIONS(4006), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(4006), + [anon_sym_or] = ACTIONS(4006), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = 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), @@ -478109,70 +477829,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2934), [sym_preproc_define] = STATE(2934), [sym_preproc_undef] = STATE(2934), - [sym__identifier_token] = ACTIONS(5079), - [anon_sym_extern] = ACTIONS(5079), - [anon_sym_alias] = ACTIONS(5079), - [anon_sym_global] = ACTIONS(5079), - [anon_sym_using] = ACTIONS(5079), - [anon_sym_unsafe] = ACTIONS(5079), - [anon_sym_static] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5081), - [anon_sym_event] = ACTIONS(5079), - [anon_sym_namespace] = ACTIONS(5079), - [anon_sym_class] = ACTIONS(5079), - [anon_sym_ref] = ACTIONS(5079), - [anon_sym_struct] = ACTIONS(5079), - [anon_sym_enum] = ACTIONS(5079), - [anon_sym_RBRACE] = ACTIONS(5081), - [anon_sym_interface] = ACTIONS(5079), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_record] = ACTIONS(5079), - [anon_sym_public] = ACTIONS(5079), - [anon_sym_private] = ACTIONS(5079), - [anon_sym_readonly] = ACTIONS(5079), - [anon_sym_abstract] = ACTIONS(5079), - [anon_sym_async] = ACTIONS(5079), - [anon_sym_const] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(5079), - [anon_sym_fixed] = ACTIONS(5079), - [anon_sym_internal] = ACTIONS(5079), - [anon_sym_new] = ACTIONS(5079), - [anon_sym_override] = ACTIONS(5079), - [anon_sym_partial] = ACTIONS(5079), - [anon_sym_protected] = ACTIONS(5079), - [anon_sym_required] = ACTIONS(5079), - [anon_sym_sealed] = ACTIONS(5079), - [anon_sym_virtual] = ACTIONS(5079), - [anon_sym_volatile] = ACTIONS(5079), - [anon_sym_where] = ACTIONS(5079), - [anon_sym_notnull] = ACTIONS(5079), - [anon_sym_unmanaged] = ACTIONS(5079), - [anon_sym_TILDE] = ACTIONS(5081), - [anon_sym_implicit] = ACTIONS(5079), - [anon_sym_explicit] = ACTIONS(5079), - [anon_sym_scoped] = ACTIONS(5079), - [anon_sym_var] = ACTIONS(5079), - [sym_predefined_type] = ACTIONS(5079), - [anon_sym_yield] = ACTIONS(5079), - [anon_sym_when] = ACTIONS(5079), - [anon_sym_from] = ACTIONS(5079), - [anon_sym_into] = ACTIONS(5079), - [anon_sym_join] = ACTIONS(5079), - [anon_sym_on] = ACTIONS(5079), - [anon_sym_equals] = ACTIONS(5079), - [anon_sym_let] = ACTIONS(5079), - [anon_sym_orderby] = ACTIONS(5079), - [anon_sym_ascending] = ACTIONS(5079), - [anon_sym_descending] = ACTIONS(5079), - [anon_sym_group] = ACTIONS(5079), - [anon_sym_by] = ACTIONS(5079), - [anon_sym_select] = ACTIONS(5079), - [sym_grit_metavariable] = ACTIONS(5081), - [aux_sym_preproc_if_token1] = ACTIONS(5081), - [aux_sym_preproc_if_token3] = ACTIONS(5081), - [aux_sym_preproc_else_token1] = ACTIONS(5081), - [aux_sym_preproc_elif_token1] = ACTIONS(5081), + [anon_sym_SEMI] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_RBRACK] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4020), + [anon_sym_RPAREN] = ACTIONS(4020), + [anon_sym_RBRACE] = ACTIONS(4020), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_in] = ACTIONS(4020), + [anon_sym_QMARK] = ACTIONS(4013), + [anon_sym_DOT] = ACTIONS(4013), + [anon_sym_EQ_GT] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4013), + [anon_sym_switch] = ACTIONS(4020), + [anon_sym_when] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4020), + [anon_sym_or] = ACTIONS(4020), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_on] = ACTIONS(4020), + [anon_sym_equals] = ACTIONS(4020), + [anon_sym_by] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_DASH_GT] = ACTIONS(4020), + [anon_sym_with] = ACTIONS(4020), + [aux_sym_preproc_if_token3] = ACTIONS(4020), + [aux_sym_preproc_else_token1] = ACTIONS(4020), + [aux_sym_preproc_elif_token1] = ACTIONS(4020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478194,80 +477913,79 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4331), + [sym__identifier_token] = ACTIONS(4470), + [anon_sym_alias] = ACTIONS(4470), + [anon_sym_global] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4472), + [anon_sym_COLON] = ACTIONS(4472), + [anon_sym_COMMA] = ACTIONS(4472), + [anon_sym_LPAREN] = ACTIONS(4472), + [anon_sym_file] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4470), + [anon_sym_where] = ACTIONS(4470), + [anon_sym_QMARK] = ACTIONS(4470), + [anon_sym_notnull] = ACTIONS(4470), + [anon_sym_unmanaged] = ACTIONS(4470), + [anon_sym_DOT] = ACTIONS(4470), + [anon_sym_scoped] = ACTIONS(4470), + [anon_sym_var] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4472), + [anon_sym_yield] = ACTIONS(4470), + [anon_sym_switch] = ACTIONS(4470), + [anon_sym_when] = ACTIONS(4470), + [sym_discard] = ACTIONS(4470), + [anon_sym_DOT_DOT] = ACTIONS(4472), + [anon_sym_LT_EQ] = ACTIONS(4472), + [anon_sym_GT_EQ] = ACTIONS(4472), + [anon_sym_and] = ACTIONS(4470), + [anon_sym_or] = ACTIONS(4470), + [anon_sym_EQ_EQ] = ACTIONS(4472), + [anon_sym_BANG_EQ] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_PIPE_PIPE] = ACTIONS(4472), + [anon_sym_AMP] = ACTIONS(4470), + [sym_op_bitwise_or] = ACTIONS(4470), + [anon_sym_CARET] = ACTIONS(4472), + [sym_op_left_shift] = ACTIONS(4472), + [sym_op_right_shift] = ACTIONS(4470), + [sym_op_unsigned_right_shift] = ACTIONS(4472), + [anon_sym_PLUS] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4470), + [sym_op_divide] = ACTIONS(4470), + [sym_op_modulo] = ACTIONS(4472), + [sym_op_coalescing] = ACTIONS(4472), + [anon_sym_BANG] = ACTIONS(4470), + [anon_sym_PLUS_PLUS] = ACTIONS(4472), + [anon_sym_DASH_DASH] = ACTIONS(4472), + [anon_sym_from] = ACTIONS(4470), + [anon_sym_into] = ACTIONS(4470), + [anon_sym_join] = ACTIONS(4470), + [anon_sym_on] = ACTIONS(4470), + [anon_sym_equals] = ACTIONS(4470), + [anon_sym_let] = ACTIONS(4470), + [anon_sym_orderby] = ACTIONS(4470), + [anon_sym_ascending] = ACTIONS(4470), + [anon_sym_descending] = ACTIONS(4470), + [anon_sym_group] = ACTIONS(4470), + [anon_sym_by] = ACTIONS(4470), + [anon_sym_select] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4470), + [anon_sym_is] = ACTIONS(4470), + [anon_sym_DASH_GT] = ACTIONS(4472), + [anon_sym_with] = ACTIONS(4470), + [sym_grit_metavariable] = ACTIONS(4472), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4472), }, [2936] = { [sym_preproc_region] = STATE(2936), @@ -478279,70 +477997,69 @@ 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), - [sym__identifier_token] = ACTIONS(5083), - [anon_sym_extern] = ACTIONS(5083), - [anon_sym_alias] = ACTIONS(5083), - [anon_sym_global] = ACTIONS(5083), - [anon_sym_using] = ACTIONS(5083), - [anon_sym_unsafe] = ACTIONS(5083), - [anon_sym_static] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5085), - [anon_sym_event] = ACTIONS(5083), - [anon_sym_namespace] = ACTIONS(5083), - [anon_sym_class] = ACTIONS(5083), - [anon_sym_ref] = ACTIONS(5083), - [anon_sym_struct] = ACTIONS(5083), - [anon_sym_enum] = ACTIONS(5083), - [anon_sym_RBRACE] = ACTIONS(5085), - [anon_sym_interface] = ACTIONS(5083), - [anon_sym_delegate] = ACTIONS(5083), - [anon_sym_record] = ACTIONS(5083), - [anon_sym_public] = ACTIONS(5083), - [anon_sym_private] = ACTIONS(5083), - [anon_sym_readonly] = ACTIONS(5083), - [anon_sym_abstract] = ACTIONS(5083), - [anon_sym_async] = ACTIONS(5083), - [anon_sym_const] = ACTIONS(5083), - [anon_sym_file] = ACTIONS(5083), - [anon_sym_fixed] = ACTIONS(5083), - [anon_sym_internal] = ACTIONS(5083), - [anon_sym_new] = ACTIONS(5083), - [anon_sym_override] = ACTIONS(5083), - [anon_sym_partial] = ACTIONS(5083), - [anon_sym_protected] = ACTIONS(5083), - [anon_sym_required] = ACTIONS(5083), - [anon_sym_sealed] = ACTIONS(5083), - [anon_sym_virtual] = ACTIONS(5083), - [anon_sym_volatile] = ACTIONS(5083), - [anon_sym_where] = ACTIONS(5083), - [anon_sym_notnull] = ACTIONS(5083), - [anon_sym_unmanaged] = ACTIONS(5083), - [anon_sym_TILDE] = ACTIONS(5085), - [anon_sym_implicit] = ACTIONS(5083), - [anon_sym_explicit] = ACTIONS(5083), - [anon_sym_scoped] = ACTIONS(5083), - [anon_sym_var] = ACTIONS(5083), - [sym_predefined_type] = ACTIONS(5083), - [anon_sym_yield] = ACTIONS(5083), - [anon_sym_when] = ACTIONS(5083), - [anon_sym_from] = ACTIONS(5083), - [anon_sym_into] = ACTIONS(5083), - [anon_sym_join] = ACTIONS(5083), - [anon_sym_on] = ACTIONS(5083), - [anon_sym_equals] = ACTIONS(5083), - [anon_sym_let] = ACTIONS(5083), - [anon_sym_orderby] = ACTIONS(5083), - [anon_sym_ascending] = ACTIONS(5083), - [anon_sym_descending] = ACTIONS(5083), - [anon_sym_group] = ACTIONS(5083), - [anon_sym_by] = ACTIONS(5083), - [anon_sym_select] = ACTIONS(5083), - [sym_grit_metavariable] = ACTIONS(5085), - [aux_sym_preproc_if_token1] = ACTIONS(5085), - [aux_sym_preproc_if_token3] = ACTIONS(5085), - [aux_sym_preproc_else_token1] = ACTIONS(5085), - [aux_sym_preproc_elif_token1] = ACTIONS(5085), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3959), + [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_LT] = ACTIONS(3959), + [anon_sym_GT] = ACTIONS(3959), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_DOT] = ACTIONS(3959), + [anon_sym_EQ_GT] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3959), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3961), + [anon_sym_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_EQ] = ACTIONS(3961), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_PLUS_EQ] = ACTIONS(3961), + [anon_sym_DASH_EQ] = ACTIONS(3961), + [anon_sym_STAR_EQ] = ACTIONS(3961), + [anon_sym_SLASH_EQ] = ACTIONS(3961), + [anon_sym_PERCENT_EQ] = ACTIONS(3961), + [anon_sym_AMP_EQ] = ACTIONS(3961), + [anon_sym_CARET_EQ] = ACTIONS(3961), + [anon_sym_PIPE_EQ] = ACTIONS(3961), + [anon_sym_LT_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_GT_EQ] = ACTIONS(3961), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3961), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3961), + [anon_sym_EQ_EQ] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [sym_op_bitwise_or] = ACTIONS(3959), + [anon_sym_CARET] = ACTIONS(3959), + [sym_op_left_shift] = ACTIONS(3959), + [sym_op_right_shift] = ACTIONS(3959), + [sym_op_unsigned_right_shift] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3959), + [sym_op_divide] = ACTIONS(3959), + [sym_op_modulo] = ACTIONS(3959), + [sym_op_coalescing] = ACTIONS(3959), + [anon_sym_BANG] = ACTIONS(3959), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), + [anon_sym_with] = ACTIONS(3961), + [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), @@ -478355,6 +478072,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2937] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym_tuple_pattern] = STATE(7102), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6417), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6008), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(2937), [sym_preproc_endregion] = STATE(2937), [sym_preproc_line] = STATE(2937), @@ -478364,70 +478105,45 @@ 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), - [sym__identifier_token] = ACTIONS(5087), - [anon_sym_extern] = ACTIONS(5087), - [anon_sym_alias] = ACTIONS(5087), - [anon_sym_global] = ACTIONS(5087), - [anon_sym_using] = ACTIONS(5087), - [anon_sym_unsafe] = ACTIONS(5087), - [anon_sym_static] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5089), - [anon_sym_event] = ACTIONS(5087), - [anon_sym_namespace] = ACTIONS(5087), - [anon_sym_class] = ACTIONS(5087), - [anon_sym_ref] = ACTIONS(5087), - [anon_sym_struct] = ACTIONS(5087), - [anon_sym_enum] = ACTIONS(5087), - [anon_sym_RBRACE] = ACTIONS(5089), - [anon_sym_interface] = ACTIONS(5087), - [anon_sym_delegate] = ACTIONS(5087), - [anon_sym_record] = ACTIONS(5087), - [anon_sym_public] = ACTIONS(5087), - [anon_sym_private] = ACTIONS(5087), - [anon_sym_readonly] = ACTIONS(5087), - [anon_sym_abstract] = ACTIONS(5087), - [anon_sym_async] = ACTIONS(5087), - [anon_sym_const] = ACTIONS(5087), - [anon_sym_file] = ACTIONS(5087), - [anon_sym_fixed] = ACTIONS(5087), - [anon_sym_internal] = ACTIONS(5087), - [anon_sym_new] = ACTIONS(5087), - [anon_sym_override] = ACTIONS(5087), - [anon_sym_partial] = ACTIONS(5087), - [anon_sym_protected] = ACTIONS(5087), - [anon_sym_required] = ACTIONS(5087), - [anon_sym_sealed] = ACTIONS(5087), - [anon_sym_virtual] = ACTIONS(5087), - [anon_sym_volatile] = ACTIONS(5087), - [anon_sym_where] = ACTIONS(5087), - [anon_sym_notnull] = ACTIONS(5087), - [anon_sym_unmanaged] = ACTIONS(5087), - [anon_sym_TILDE] = ACTIONS(5089), - [anon_sym_implicit] = ACTIONS(5087), - [anon_sym_explicit] = ACTIONS(5087), - [anon_sym_scoped] = ACTIONS(5087), - [anon_sym_var] = ACTIONS(5087), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(5087), - [anon_sym_when] = ACTIONS(5087), - [anon_sym_from] = ACTIONS(5087), - [anon_sym_into] = ACTIONS(5087), - [anon_sym_join] = ACTIONS(5087), - [anon_sym_on] = ACTIONS(5087), - [anon_sym_equals] = ACTIONS(5087), - [anon_sym_let] = ACTIONS(5087), - [anon_sym_orderby] = ACTIONS(5087), - [anon_sym_ascending] = ACTIONS(5087), - [anon_sym_descending] = ACTIONS(5087), - [anon_sym_group] = ACTIONS(5087), - [anon_sym_by] = ACTIONS(5087), - [anon_sym_select] = ACTIONS(5087), - [sym_grit_metavariable] = ACTIONS(5089), - [aux_sym_preproc_if_token1] = ACTIONS(5089), - [aux_sym_preproc_if_token3] = ACTIONS(5089), - [aux_sym_preproc_else_token1] = ACTIONS(5089), - [aux_sym_preproc_elif_token1] = ACTIONS(5089), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3162), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(5224), + [anon_sym_RPAREN] = ACTIONS(2853), + [anon_sym_ref] = ACTIONS(5216), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(1311), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_out] = ACTIONS(1311), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_this] = ACTIONS(1311), + [anon_sym_scoped] = ACTIONS(5226), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [sym_discard] = ACTIONS(5228), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(5222), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478449,70 +478165,69 @@ 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(4538), - [anon_sym_EQ] = ACTIONS(4540), - [anon_sym_LBRACK] = ACTIONS(4538), - [anon_sym_COLON] = ACTIONS(4538), - [anon_sym_COMMA] = ACTIONS(4538), - [anon_sym_RBRACK] = ACTIONS(4538), - [anon_sym_LPAREN] = ACTIONS(4538), - [anon_sym_RPAREN] = ACTIONS(4538), - [anon_sym_RBRACE] = ACTIONS(4538), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_in] = ACTIONS(4540), - [anon_sym_QMARK] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4540), - [anon_sym_PLUS_PLUS] = ACTIONS(4538), - [anon_sym_DASH_DASH] = ACTIONS(4538), - [anon_sym_PLUS] = ACTIONS(4540), - [anon_sym_DASH] = ACTIONS(4540), - [anon_sym_STAR] = ACTIONS(4540), - [anon_sym_SLASH] = ACTIONS(4540), - [anon_sym_PERCENT] = ACTIONS(4540), - [anon_sym_CARET] = ACTIONS(4540), - [anon_sym_PIPE] = ACTIONS(4540), - [anon_sym_AMP] = ACTIONS(4540), - [anon_sym_LT_LT] = ACTIONS(4540), - [anon_sym_GT_GT] = ACTIONS(4540), - [anon_sym_GT_GT_GT] = ACTIONS(4540), - [anon_sym_EQ_EQ] = ACTIONS(4538), - [anon_sym_BANG_EQ] = ACTIONS(4538), - [anon_sym_GT_EQ] = ACTIONS(4538), - [anon_sym_LT_EQ] = ACTIONS(4538), - [anon_sym_DOT] = ACTIONS(4540), - [anon_sym_EQ_GT] = ACTIONS(4538), - [anon_sym_switch] = ACTIONS(4538), - [anon_sym_when] = ACTIONS(4538), - [anon_sym_DOT_DOT] = ACTIONS(4538), - [anon_sym_and] = ACTIONS(4538), - [anon_sym_or] = ACTIONS(4538), - [anon_sym_PLUS_EQ] = ACTIONS(4538), - [anon_sym_DASH_EQ] = ACTIONS(4538), - [anon_sym_STAR_EQ] = ACTIONS(4538), - [anon_sym_SLASH_EQ] = ACTIONS(4538), - [anon_sym_PERCENT_EQ] = ACTIONS(4538), - [anon_sym_AMP_EQ] = ACTIONS(4538), - [anon_sym_CARET_EQ] = ACTIONS(4538), - [anon_sym_PIPE_EQ] = ACTIONS(4538), - [anon_sym_LT_LT_EQ] = ACTIONS(4538), - [anon_sym_GT_GT_EQ] = ACTIONS(4538), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), - [anon_sym_AMP_AMP] = ACTIONS(4538), - [anon_sym_PIPE_PIPE] = ACTIONS(4538), - [sym_op_coalescing] = ACTIONS(4540), - [anon_sym_into] = ACTIONS(4538), - [anon_sym_on] = ACTIONS(4538), - [anon_sym_equals] = ACTIONS(4538), - [anon_sym_by] = ACTIONS(4538), - [anon_sym_as] = ACTIONS(4538), - [anon_sym_is] = ACTIONS(4538), - [anon_sym_DASH_GT] = ACTIONS(4538), - [anon_sym_with] = ACTIONS(4538), - [aux_sym_preproc_if_token3] = ACTIONS(4538), - [aux_sym_preproc_else_token1] = ACTIONS(4538), - [aux_sym_preproc_elif_token1] = ACTIONS(4538), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_in] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_EQ_GT] = ACTIONS(3953), + [anon_sym_STAR] = ACTIONS(3951), + [anon_sym_switch] = ACTIONS(3953), + [anon_sym_when] = ACTIONS(3953), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3953), + [anon_sym_or] = ACTIONS(3953), + [anon_sym_PLUS_EQ] = ACTIONS(3953), + [anon_sym_DASH_EQ] = ACTIONS(3953), + [anon_sym_STAR_EQ] = ACTIONS(3953), + [anon_sym_SLASH_EQ] = ACTIONS(3953), + [anon_sym_PERCENT_EQ] = ACTIONS(3953), + [anon_sym_AMP_EQ] = ACTIONS(3953), + [anon_sym_CARET_EQ] = ACTIONS(3953), + [anon_sym_PIPE_EQ] = ACTIONS(3953), + [anon_sym_LT_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_GT_EQ] = ACTIONS(3953), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP] = ACTIONS(3951), + [sym_op_bitwise_or] = ACTIONS(3951), + [anon_sym_CARET] = ACTIONS(3951), + [sym_op_left_shift] = ACTIONS(3951), + [sym_op_right_shift] = ACTIONS(3951), + [sym_op_unsigned_right_shift] = ACTIONS(3951), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [sym_op_divide] = ACTIONS(3951), + [sym_op_modulo] = ACTIONS(3951), + [sym_op_coalescing] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_on] = ACTIONS(3953), + [anon_sym_equals] = ACTIONS(3953), + [anon_sym_by] = ACTIONS(3953), + [anon_sym_as] = ACTIONS(3953), + [anon_sym_is] = ACTIONS(3953), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3953), + [aux_sym_preproc_if_token3] = ACTIONS(3953), + [aux_sym_preproc_else_token1] = ACTIONS(3953), + [aux_sym_preproc_elif_token1] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478534,80 +478249,79 @@ 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), - [sym__identifier_token] = ACTIONS(5091), - [anon_sym_extern] = ACTIONS(5091), - [anon_sym_alias] = ACTIONS(5091), - [anon_sym_global] = ACTIONS(5091), - [anon_sym_using] = ACTIONS(5091), - [anon_sym_unsafe] = ACTIONS(5091), - [anon_sym_static] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5093), - [anon_sym_event] = ACTIONS(5091), - [anon_sym_namespace] = ACTIONS(5091), - [anon_sym_class] = ACTIONS(5091), - [anon_sym_ref] = ACTIONS(5091), - [anon_sym_struct] = ACTIONS(5091), - [anon_sym_enum] = ACTIONS(5091), - [anon_sym_RBRACE] = ACTIONS(5093), - [anon_sym_interface] = ACTIONS(5091), - [anon_sym_delegate] = ACTIONS(5091), - [anon_sym_record] = ACTIONS(5091), - [anon_sym_public] = ACTIONS(5091), - [anon_sym_private] = ACTIONS(5091), - [anon_sym_readonly] = ACTIONS(5091), - [anon_sym_abstract] = ACTIONS(5091), - [anon_sym_async] = ACTIONS(5091), - [anon_sym_const] = ACTIONS(5091), - [anon_sym_file] = ACTIONS(5091), - [anon_sym_fixed] = ACTIONS(5091), - [anon_sym_internal] = ACTIONS(5091), - [anon_sym_new] = ACTIONS(5091), - [anon_sym_override] = ACTIONS(5091), - [anon_sym_partial] = ACTIONS(5091), - [anon_sym_protected] = ACTIONS(5091), - [anon_sym_required] = ACTIONS(5091), - [anon_sym_sealed] = ACTIONS(5091), - [anon_sym_virtual] = ACTIONS(5091), - [anon_sym_volatile] = ACTIONS(5091), - [anon_sym_where] = ACTIONS(5091), - [anon_sym_notnull] = ACTIONS(5091), - [anon_sym_unmanaged] = ACTIONS(5091), - [anon_sym_TILDE] = ACTIONS(5093), - [anon_sym_implicit] = ACTIONS(5091), - [anon_sym_explicit] = ACTIONS(5091), - [anon_sym_scoped] = ACTIONS(5091), - [anon_sym_var] = ACTIONS(5091), - [sym_predefined_type] = ACTIONS(5091), - [anon_sym_yield] = ACTIONS(5091), - [anon_sym_when] = ACTIONS(5091), - [anon_sym_from] = ACTIONS(5091), - [anon_sym_into] = ACTIONS(5091), - [anon_sym_join] = ACTIONS(5091), - [anon_sym_on] = ACTIONS(5091), - [anon_sym_equals] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5091), - [anon_sym_orderby] = ACTIONS(5091), - [anon_sym_ascending] = ACTIONS(5091), - [anon_sym_descending] = ACTIONS(5091), - [anon_sym_group] = ACTIONS(5091), - [anon_sym_by] = ACTIONS(5091), - [anon_sym_select] = ACTIONS(5091), - [sym_grit_metavariable] = ACTIONS(5093), - [aux_sym_preproc_if_token1] = ACTIONS(5093), - [aux_sym_preproc_if_token3] = ACTIONS(5093), - [aux_sym_preproc_else_token1] = ACTIONS(5093), - [aux_sym_preproc_elif_token1] = ACTIONS(5093), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4512), + [anon_sym_alias] = ACTIONS(4512), + [anon_sym_global] = ACTIONS(4512), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym_COLON] = ACTIONS(4514), + [anon_sym_COMMA] = ACTIONS(4514), + [anon_sym_LPAREN] = ACTIONS(4514), + [anon_sym_file] = ACTIONS(4512), + [anon_sym_LT] = ACTIONS(4512), + [anon_sym_GT] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_notnull] = ACTIONS(4512), + [anon_sym_unmanaged] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_scoped] = ACTIONS(4512), + [anon_sym_var] = ACTIONS(4512), + [anon_sym_STAR] = ACTIONS(4514), + [anon_sym_yield] = ACTIONS(4512), + [anon_sym_switch] = ACTIONS(4512), + [anon_sym_when] = ACTIONS(4512), + [sym_discard] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4514), + [anon_sym_LT_EQ] = ACTIONS(4514), + [anon_sym_GT_EQ] = ACTIONS(4514), + [anon_sym_and] = ACTIONS(4512), + [anon_sym_or] = ACTIONS(4512), + [anon_sym_EQ_EQ] = ACTIONS(4514), + [anon_sym_BANG_EQ] = ACTIONS(4514), + [anon_sym_AMP_AMP] = ACTIONS(4514), + [anon_sym_PIPE_PIPE] = ACTIONS(4514), + [anon_sym_AMP] = ACTIONS(4512), + [sym_op_bitwise_or] = ACTIONS(4512), + [anon_sym_CARET] = ACTIONS(4514), + [sym_op_left_shift] = ACTIONS(4514), + [sym_op_right_shift] = ACTIONS(4512), + [sym_op_unsigned_right_shift] = ACTIONS(4514), + [anon_sym_PLUS] = ACTIONS(4512), + [anon_sym_DASH] = ACTIONS(4512), + [sym_op_divide] = ACTIONS(4512), + [sym_op_modulo] = ACTIONS(4514), + [sym_op_coalescing] = ACTIONS(4514), + [anon_sym_BANG] = ACTIONS(4512), + [anon_sym_PLUS_PLUS] = ACTIONS(4514), + [anon_sym_DASH_DASH] = ACTIONS(4514), + [anon_sym_from] = ACTIONS(4512), + [anon_sym_into] = ACTIONS(4512), + [anon_sym_join] = ACTIONS(4512), + [anon_sym_on] = ACTIONS(4512), + [anon_sym_equals] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_orderby] = ACTIONS(4512), + [anon_sym_ascending] = ACTIONS(4512), + [anon_sym_descending] = ACTIONS(4512), + [anon_sym_group] = ACTIONS(4512), + [anon_sym_by] = ACTIONS(4512), + [anon_sym_select] = ACTIONS(4512), + [anon_sym_as] = ACTIONS(4512), + [anon_sym_is] = ACTIONS(4512), + [anon_sym_DASH_GT] = ACTIONS(4514), + [anon_sym_with] = ACTIONS(4512), + [sym_grit_metavariable] = ACTIONS(4514), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4514), }, [2940] = { [sym_preproc_region] = STATE(2940), @@ -478619,70 +478333,69 @@ 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), - [sym__identifier_token] = ACTIONS(5095), - [anon_sym_extern] = ACTIONS(5095), - [anon_sym_alias] = ACTIONS(5095), - [anon_sym_global] = ACTIONS(5095), - [anon_sym_using] = ACTIONS(5095), - [anon_sym_unsafe] = ACTIONS(5095), - [anon_sym_static] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5097), - [anon_sym_event] = ACTIONS(5095), - [anon_sym_namespace] = ACTIONS(5095), - [anon_sym_class] = ACTIONS(5095), - [anon_sym_ref] = ACTIONS(5095), - [anon_sym_struct] = ACTIONS(5095), - [anon_sym_enum] = ACTIONS(5095), - [anon_sym_RBRACE] = ACTIONS(5097), - [anon_sym_interface] = ACTIONS(5095), - [anon_sym_delegate] = ACTIONS(5095), - [anon_sym_record] = ACTIONS(5095), - [anon_sym_public] = ACTIONS(5095), - [anon_sym_private] = ACTIONS(5095), - [anon_sym_readonly] = ACTIONS(5095), - [anon_sym_abstract] = ACTIONS(5095), - [anon_sym_async] = ACTIONS(5095), - [anon_sym_const] = ACTIONS(5095), - [anon_sym_file] = ACTIONS(5095), - [anon_sym_fixed] = ACTIONS(5095), - [anon_sym_internal] = ACTIONS(5095), - [anon_sym_new] = ACTIONS(5095), - [anon_sym_override] = ACTIONS(5095), - [anon_sym_partial] = ACTIONS(5095), - [anon_sym_protected] = ACTIONS(5095), - [anon_sym_required] = ACTIONS(5095), - [anon_sym_sealed] = ACTIONS(5095), - [anon_sym_virtual] = ACTIONS(5095), - [anon_sym_volatile] = ACTIONS(5095), - [anon_sym_where] = ACTIONS(5095), - [anon_sym_notnull] = ACTIONS(5095), - [anon_sym_unmanaged] = ACTIONS(5095), - [anon_sym_TILDE] = ACTIONS(5097), - [anon_sym_implicit] = ACTIONS(5095), - [anon_sym_explicit] = ACTIONS(5095), - [anon_sym_scoped] = ACTIONS(5095), - [anon_sym_var] = ACTIONS(5095), - [sym_predefined_type] = ACTIONS(5095), - [anon_sym_yield] = ACTIONS(5095), - [anon_sym_when] = ACTIONS(5095), - [anon_sym_from] = ACTIONS(5095), - [anon_sym_into] = ACTIONS(5095), - [anon_sym_join] = ACTIONS(5095), - [anon_sym_on] = ACTIONS(5095), - [anon_sym_equals] = ACTIONS(5095), - [anon_sym_let] = ACTIONS(5095), - [anon_sym_orderby] = ACTIONS(5095), - [anon_sym_ascending] = ACTIONS(5095), - [anon_sym_descending] = ACTIONS(5095), - [anon_sym_group] = ACTIONS(5095), - [anon_sym_by] = ACTIONS(5095), - [anon_sym_select] = ACTIONS(5095), - [sym_grit_metavariable] = ACTIONS(5097), - [aux_sym_preproc_if_token1] = ACTIONS(5097), - [aux_sym_preproc_if_token3] = ACTIONS(5097), - [aux_sym_preproc_else_token1] = ACTIONS(5097), - [aux_sym_preproc_elif_token1] = ACTIONS(5097), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(5070), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(5070), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_EQ_GT] = ACTIONS(5068), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_switch] = ACTIONS(5070), + [anon_sym_when] = ACTIONS(5068), + [anon_sym_DOT_DOT] = ACTIONS(5070), + [anon_sym_LT_EQ] = ACTIONS(5070), + [anon_sym_GT_EQ] = ACTIONS(5070), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5068), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(5070), + [anon_sym_BANG_EQ] = ACTIONS(5070), + [anon_sym_AMP_AMP] = ACTIONS(5070), + [anon_sym_PIPE_PIPE] = ACTIONS(5070), + [anon_sym_AMP] = ACTIONS(5073), + [sym_op_bitwise_or] = ACTIONS(5073), + [anon_sym_CARET] = ACTIONS(5073), + [sym_op_left_shift] = ACTIONS(5073), + [sym_op_right_shift] = ACTIONS(5073), + [sym_op_unsigned_right_shift] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [sym_op_divide] = ACTIONS(5073), + [sym_op_modulo] = ACTIONS(5073), + [sym_op_coalescing] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5070), + [anon_sym_DASH_DASH] = ACTIONS(5070), + [anon_sym_on] = ACTIONS(5068), + [anon_sym_equals] = ACTIONS(5068), + [anon_sym_by] = ACTIONS(5068), + [anon_sym_as] = ACTIONS(5070), + [anon_sym_is] = ACTIONS(5070), + [anon_sym_DASH_GT] = ACTIONS(5070), + [anon_sym_with] = ACTIONS(5070), + [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), @@ -478704,70 +478417,69 @@ 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), - [sym__identifier_token] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5099), - [anon_sym_alias] = ACTIONS(5099), - [anon_sym_global] = ACTIONS(5099), - [anon_sym_using] = ACTIONS(5099), - [anon_sym_unsafe] = ACTIONS(5099), - [anon_sym_static] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5101), - [anon_sym_event] = ACTIONS(5099), - [anon_sym_namespace] = ACTIONS(5099), - [anon_sym_class] = ACTIONS(5099), - [anon_sym_ref] = ACTIONS(5099), - [anon_sym_struct] = ACTIONS(5099), - [anon_sym_enum] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5101), - [anon_sym_interface] = ACTIONS(5099), - [anon_sym_delegate] = ACTIONS(5099), - [anon_sym_record] = ACTIONS(5099), - [anon_sym_public] = ACTIONS(5099), - [anon_sym_private] = ACTIONS(5099), - [anon_sym_readonly] = ACTIONS(5099), - [anon_sym_abstract] = ACTIONS(5099), - [anon_sym_async] = ACTIONS(5099), - [anon_sym_const] = ACTIONS(5099), - [anon_sym_file] = ACTIONS(5099), - [anon_sym_fixed] = ACTIONS(5099), - [anon_sym_internal] = ACTIONS(5099), - [anon_sym_new] = ACTIONS(5099), - [anon_sym_override] = ACTIONS(5099), - [anon_sym_partial] = ACTIONS(5099), - [anon_sym_protected] = ACTIONS(5099), - [anon_sym_required] = ACTIONS(5099), - [anon_sym_sealed] = ACTIONS(5099), - [anon_sym_virtual] = ACTIONS(5099), - [anon_sym_volatile] = ACTIONS(5099), - [anon_sym_where] = ACTIONS(5099), - [anon_sym_notnull] = ACTIONS(5099), - [anon_sym_unmanaged] = ACTIONS(5099), - [anon_sym_TILDE] = ACTIONS(5101), - [anon_sym_implicit] = ACTIONS(5099), - [anon_sym_explicit] = ACTIONS(5099), - [anon_sym_scoped] = ACTIONS(5099), - [anon_sym_var] = ACTIONS(5099), - [sym_predefined_type] = ACTIONS(5099), - [anon_sym_yield] = ACTIONS(5099), - [anon_sym_when] = ACTIONS(5099), - [anon_sym_from] = ACTIONS(5099), - [anon_sym_into] = ACTIONS(5099), - [anon_sym_join] = ACTIONS(5099), - [anon_sym_on] = ACTIONS(5099), - [anon_sym_equals] = ACTIONS(5099), - [anon_sym_let] = ACTIONS(5099), - [anon_sym_orderby] = ACTIONS(5099), - [anon_sym_ascending] = ACTIONS(5099), - [anon_sym_descending] = ACTIONS(5099), - [anon_sym_group] = ACTIONS(5099), - [anon_sym_by] = ACTIONS(5099), - [anon_sym_select] = ACTIONS(5099), - [sym_grit_metavariable] = ACTIONS(5101), - [aux_sym_preproc_if_token1] = ACTIONS(5101), - [aux_sym_preproc_if_token3] = ACTIONS(5101), - [aux_sym_preproc_else_token1] = ACTIONS(5101), - [aux_sym_preproc_elif_token1] = ACTIONS(5101), + [anon_sym_SEMI] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_RBRACK] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_RPAREN] = ACTIONS(4546), + [anon_sym_RBRACE] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [anon_sym_in] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_EQ_GT] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_switch] = ACTIONS(4546), + [anon_sym_when] = ACTIONS(4546), + [anon_sym_DOT_DOT] = ACTIONS(4546), + [anon_sym_LT_EQ] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_or] = ACTIONS(4546), + [anon_sym_PLUS_EQ] = ACTIONS(4546), + [anon_sym_DASH_EQ] = ACTIONS(4546), + [anon_sym_STAR_EQ] = ACTIONS(4546), + [anon_sym_SLASH_EQ] = ACTIONS(4546), + [anon_sym_PERCENT_EQ] = ACTIONS(4546), + [anon_sym_AMP_EQ] = ACTIONS(4546), + [anon_sym_CARET_EQ] = ACTIONS(4546), + [anon_sym_PIPE_EQ] = ACTIONS(4546), + [anon_sym_LT_LT_EQ] = ACTIONS(4546), + [anon_sym_GT_GT_EQ] = ACTIONS(4546), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4546), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4546), + [anon_sym_BANG_EQ] = ACTIONS(4546), + [anon_sym_AMP_AMP] = ACTIONS(4546), + [anon_sym_PIPE_PIPE] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [sym_op_bitwise_or] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [sym_op_left_shift] = ACTIONS(4548), + [sym_op_right_shift] = ACTIONS(4548), + [sym_op_unsigned_right_shift] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [sym_op_divide] = ACTIONS(4548), + [sym_op_modulo] = ACTIONS(4548), + [sym_op_coalescing] = ACTIONS(4548), + [anon_sym_BANG] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4546), + [anon_sym_on] = ACTIONS(4546), + [anon_sym_equals] = ACTIONS(4546), + [anon_sym_by] = ACTIONS(4546), + [anon_sym_as] = ACTIONS(4546), + [anon_sym_is] = ACTIONS(4546), + [anon_sym_DASH_GT] = ACTIONS(4546), + [anon_sym_with] = ACTIONS(4546), + [aux_sym_preproc_if_token3] = ACTIONS(4546), + [aux_sym_preproc_else_token1] = ACTIONS(4546), + [aux_sym_preproc_elif_token1] = ACTIONS(4546), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478789,70 +478501,69 @@ 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), - [sym__identifier_token] = ACTIONS(5103), - [anon_sym_extern] = ACTIONS(5103), - [anon_sym_alias] = ACTIONS(5103), - [anon_sym_global] = ACTIONS(5103), - [anon_sym_using] = ACTIONS(5103), - [anon_sym_unsafe] = ACTIONS(5103), - [anon_sym_static] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_LPAREN] = ACTIONS(5105), - [anon_sym_event] = ACTIONS(5103), - [anon_sym_namespace] = ACTIONS(5103), - [anon_sym_class] = ACTIONS(5103), - [anon_sym_ref] = ACTIONS(5103), - [anon_sym_struct] = ACTIONS(5103), - [anon_sym_enum] = ACTIONS(5103), - [anon_sym_RBRACE] = ACTIONS(5105), - [anon_sym_interface] = ACTIONS(5103), - [anon_sym_delegate] = ACTIONS(5103), - [anon_sym_record] = ACTIONS(5103), - [anon_sym_public] = ACTIONS(5103), - [anon_sym_private] = ACTIONS(5103), - [anon_sym_readonly] = ACTIONS(5103), - [anon_sym_abstract] = ACTIONS(5103), - [anon_sym_async] = ACTIONS(5103), - [anon_sym_const] = ACTIONS(5103), - [anon_sym_file] = ACTIONS(5103), - [anon_sym_fixed] = ACTIONS(5103), - [anon_sym_internal] = ACTIONS(5103), - [anon_sym_new] = ACTIONS(5103), - [anon_sym_override] = ACTIONS(5103), - [anon_sym_partial] = ACTIONS(5103), - [anon_sym_protected] = ACTIONS(5103), - [anon_sym_required] = ACTIONS(5103), - [anon_sym_sealed] = ACTIONS(5103), - [anon_sym_virtual] = ACTIONS(5103), - [anon_sym_volatile] = ACTIONS(5103), - [anon_sym_where] = ACTIONS(5103), - [anon_sym_notnull] = ACTIONS(5103), - [anon_sym_unmanaged] = ACTIONS(5103), - [anon_sym_TILDE] = ACTIONS(5105), - [anon_sym_implicit] = ACTIONS(5103), - [anon_sym_explicit] = ACTIONS(5103), - [anon_sym_scoped] = ACTIONS(5103), - [anon_sym_var] = ACTIONS(5103), - [sym_predefined_type] = ACTIONS(5103), - [anon_sym_yield] = ACTIONS(5103), - [anon_sym_when] = ACTIONS(5103), - [anon_sym_from] = ACTIONS(5103), - [anon_sym_into] = ACTIONS(5103), - [anon_sym_join] = ACTIONS(5103), - [anon_sym_on] = ACTIONS(5103), - [anon_sym_equals] = ACTIONS(5103), - [anon_sym_let] = ACTIONS(5103), - [anon_sym_orderby] = ACTIONS(5103), - [anon_sym_ascending] = ACTIONS(5103), - [anon_sym_descending] = ACTIONS(5103), - [anon_sym_group] = ACTIONS(5103), - [anon_sym_by] = ACTIONS(5103), - [anon_sym_select] = ACTIONS(5103), - [sym_grit_metavariable] = ACTIONS(5105), - [aux_sym_preproc_if_token1] = ACTIONS(5105), - [aux_sym_preproc_if_token3] = ACTIONS(5105), - [aux_sym_preproc_else_token1] = ACTIONS(5105), - [aux_sym_preproc_elif_token1] = ACTIONS(5105), + [anon_sym_SEMI] = ACTIONS(4530), + [anon_sym_EQ] = ACTIONS(4532), + [anon_sym_LBRACK] = ACTIONS(4530), + [anon_sym_COLON] = ACTIONS(4530), + [anon_sym_COMMA] = ACTIONS(4530), + [anon_sym_RBRACK] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(4530), + [anon_sym_RPAREN] = ACTIONS(4530), + [anon_sym_RBRACE] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4532), + [anon_sym_GT] = ACTIONS(4532), + [anon_sym_in] = ACTIONS(4530), + [anon_sym_QMARK] = ACTIONS(4532), + [anon_sym_DOT] = ACTIONS(4532), + [anon_sym_EQ_GT] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4532), + [anon_sym_switch] = ACTIONS(4530), + [anon_sym_when] = ACTIONS(4530), + [anon_sym_DOT_DOT] = ACTIONS(4530), + [anon_sym_LT_EQ] = ACTIONS(4530), + [anon_sym_GT_EQ] = ACTIONS(4530), + [anon_sym_and] = ACTIONS(4530), + [anon_sym_or] = ACTIONS(4530), + [anon_sym_PLUS_EQ] = ACTIONS(4530), + [anon_sym_DASH_EQ] = ACTIONS(4530), + [anon_sym_STAR_EQ] = ACTIONS(4530), + [anon_sym_SLASH_EQ] = ACTIONS(4530), + [anon_sym_PERCENT_EQ] = ACTIONS(4530), + [anon_sym_AMP_EQ] = ACTIONS(4530), + [anon_sym_CARET_EQ] = ACTIONS(4530), + [anon_sym_PIPE_EQ] = ACTIONS(4530), + [anon_sym_LT_LT_EQ] = ACTIONS(4530), + [anon_sym_GT_GT_EQ] = ACTIONS(4530), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4530), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4530), + [anon_sym_EQ_EQ] = ACTIONS(4530), + [anon_sym_BANG_EQ] = ACTIONS(4530), + [anon_sym_AMP_AMP] = ACTIONS(4530), + [anon_sym_PIPE_PIPE] = ACTIONS(4530), + [anon_sym_AMP] = ACTIONS(4532), + [sym_op_bitwise_or] = ACTIONS(4532), + [anon_sym_CARET] = ACTIONS(4532), + [sym_op_left_shift] = ACTIONS(4532), + [sym_op_right_shift] = ACTIONS(4532), + [sym_op_unsigned_right_shift] = ACTIONS(4532), + [anon_sym_PLUS] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [sym_op_divide] = ACTIONS(4532), + [sym_op_modulo] = ACTIONS(4532), + [sym_op_coalescing] = ACTIONS(4532), + [anon_sym_BANG] = ACTIONS(4532), + [anon_sym_PLUS_PLUS] = ACTIONS(4530), + [anon_sym_DASH_DASH] = ACTIONS(4530), + [anon_sym_on] = ACTIONS(4530), + [anon_sym_equals] = ACTIONS(4530), + [anon_sym_by] = ACTIONS(4530), + [anon_sym_as] = ACTIONS(4530), + [anon_sym_is] = ACTIONS(4530), + [anon_sym_DASH_GT] = ACTIONS(4530), + [anon_sym_with] = ACTIONS(4530), + [aux_sym_preproc_if_token3] = ACTIONS(4530), + [aux_sym_preproc_else_token1] = ACTIONS(4530), + [aux_sym_preproc_elif_token1] = ACTIONS(4530), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478874,82 +478585,96 @@ 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), - [sym__identifier_token] = ACTIONS(5107), - [anon_sym_extern] = ACTIONS(5107), - [anon_sym_alias] = ACTIONS(5107), - [anon_sym_global] = ACTIONS(5107), - [anon_sym_using] = ACTIONS(5107), - [anon_sym_unsafe] = ACTIONS(5107), - [anon_sym_static] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_event] = ACTIONS(5107), - [anon_sym_namespace] = ACTIONS(5107), - [anon_sym_class] = ACTIONS(5107), - [anon_sym_ref] = ACTIONS(5107), - [anon_sym_struct] = ACTIONS(5107), - [anon_sym_enum] = ACTIONS(5107), - [anon_sym_RBRACE] = ACTIONS(5109), - [anon_sym_interface] = ACTIONS(5107), - [anon_sym_delegate] = ACTIONS(5107), - [anon_sym_record] = ACTIONS(5107), - [anon_sym_public] = ACTIONS(5107), - [anon_sym_private] = ACTIONS(5107), - [anon_sym_readonly] = ACTIONS(5107), - [anon_sym_abstract] = ACTIONS(5107), - [anon_sym_async] = ACTIONS(5107), - [anon_sym_const] = ACTIONS(5107), - [anon_sym_file] = ACTIONS(5107), - [anon_sym_fixed] = ACTIONS(5107), - [anon_sym_internal] = ACTIONS(5107), - [anon_sym_new] = ACTIONS(5107), - [anon_sym_override] = ACTIONS(5107), - [anon_sym_partial] = ACTIONS(5107), - [anon_sym_protected] = ACTIONS(5107), - [anon_sym_required] = ACTIONS(5107), - [anon_sym_sealed] = ACTIONS(5107), - [anon_sym_virtual] = ACTIONS(5107), - [anon_sym_volatile] = ACTIONS(5107), - [anon_sym_where] = ACTIONS(5107), - [anon_sym_notnull] = ACTIONS(5107), - [anon_sym_unmanaged] = ACTIONS(5107), - [anon_sym_TILDE] = ACTIONS(5109), - [anon_sym_implicit] = ACTIONS(5107), - [anon_sym_explicit] = ACTIONS(5107), - [anon_sym_scoped] = ACTIONS(5107), - [anon_sym_var] = ACTIONS(5107), - [sym_predefined_type] = ACTIONS(5107), - [anon_sym_yield] = ACTIONS(5107), - [anon_sym_when] = ACTIONS(5107), - [anon_sym_from] = ACTIONS(5107), - [anon_sym_into] = ACTIONS(5107), - [anon_sym_join] = ACTIONS(5107), - [anon_sym_on] = ACTIONS(5107), - [anon_sym_equals] = ACTIONS(5107), - [anon_sym_let] = ACTIONS(5107), - [anon_sym_orderby] = ACTIONS(5107), - [anon_sym_ascending] = ACTIONS(5107), - [anon_sym_descending] = ACTIONS(5107), - [anon_sym_group] = ACTIONS(5107), - [anon_sym_by] = ACTIONS(5107), - [anon_sym_select] = ACTIONS(5107), - [sym_grit_metavariable] = ACTIONS(5109), - [aux_sym_preproc_if_token1] = ACTIONS(5109), - [aux_sym_preproc_if_token3] = ACTIONS(5109), - [aux_sym_preproc_else_token1] = ACTIONS(5109), - [aux_sym_preproc_elif_token1] = ACTIONS(5109), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4478), + [anon_sym_alias] = ACTIONS(4478), + [anon_sym_global] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4480), + [anon_sym_COLON] = ACTIONS(4480), + [anon_sym_COMMA] = ACTIONS(4480), + [anon_sym_LPAREN] = ACTIONS(4480), + [anon_sym_file] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4478), + [anon_sym_GT] = ACTIONS(4478), + [anon_sym_where] = ACTIONS(4478), + [anon_sym_QMARK] = ACTIONS(4478), + [anon_sym_notnull] = ACTIONS(4478), + [anon_sym_unmanaged] = ACTIONS(4478), + [anon_sym_DOT] = ACTIONS(4478), + [anon_sym_scoped] = ACTIONS(4478), + [anon_sym_var] = ACTIONS(4478), + [anon_sym_STAR] = ACTIONS(4480), + [anon_sym_yield] = ACTIONS(4478), + [anon_sym_switch] = ACTIONS(4478), + [anon_sym_when] = ACTIONS(4478), + [sym_discard] = ACTIONS(4478), + [anon_sym_DOT_DOT] = ACTIONS(4480), + [anon_sym_LT_EQ] = ACTIONS(4480), + [anon_sym_GT_EQ] = ACTIONS(4480), + [anon_sym_and] = ACTIONS(4478), + [anon_sym_or] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(4480), + [anon_sym_BANG_EQ] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_PIPE_PIPE] = ACTIONS(4480), + [anon_sym_AMP] = ACTIONS(4478), + [sym_op_bitwise_or] = ACTIONS(4478), + [anon_sym_CARET] = ACTIONS(4480), + [sym_op_left_shift] = ACTIONS(4480), + [sym_op_right_shift] = ACTIONS(4478), + [sym_op_unsigned_right_shift] = ACTIONS(4480), + [anon_sym_PLUS] = ACTIONS(4478), + [anon_sym_DASH] = ACTIONS(4478), + [sym_op_divide] = ACTIONS(4478), + [sym_op_modulo] = ACTIONS(4480), + [sym_op_coalescing] = ACTIONS(4480), + [anon_sym_BANG] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4480), + [anon_sym_DASH_DASH] = ACTIONS(4480), + [anon_sym_from] = ACTIONS(4478), + [anon_sym_into] = ACTIONS(4478), + [anon_sym_join] = ACTIONS(4478), + [anon_sym_on] = ACTIONS(4478), + [anon_sym_equals] = ACTIONS(4478), + [anon_sym_let] = ACTIONS(4478), + [anon_sym_orderby] = ACTIONS(4478), + [anon_sym_ascending] = ACTIONS(4478), + [anon_sym_descending] = ACTIONS(4478), + [anon_sym_group] = ACTIONS(4478), + [anon_sym_by] = ACTIONS(4478), + [anon_sym_select] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4478), + [anon_sym_is] = ACTIONS(4478), + [anon_sym_DASH_GT] = ACTIONS(4480), + [anon_sym_with] = ACTIONS(4478), + [sym_grit_metavariable] = ACTIONS(4480), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4480), }, [2944] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2944), [sym_preproc_endregion] = STATE(2944), [sym_preproc_line] = STATE(2944), @@ -478959,70 +478684,53 @@ 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), - [sym__identifier_token] = ACTIONS(5111), - [anon_sym_extern] = ACTIONS(5111), - [anon_sym_alias] = ACTIONS(5111), - [anon_sym_global] = ACTIONS(5111), - [anon_sym_using] = ACTIONS(5111), - [anon_sym_unsafe] = ACTIONS(5111), - [anon_sym_static] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_event] = ACTIONS(5111), - [anon_sym_namespace] = ACTIONS(5111), - [anon_sym_class] = ACTIONS(5111), - [anon_sym_ref] = ACTIONS(5111), - [anon_sym_struct] = ACTIONS(5111), - [anon_sym_enum] = ACTIONS(5111), - [anon_sym_RBRACE] = ACTIONS(5113), - [anon_sym_interface] = ACTIONS(5111), - [anon_sym_delegate] = ACTIONS(5111), - [anon_sym_record] = ACTIONS(5111), - [anon_sym_public] = ACTIONS(5111), - [anon_sym_private] = ACTIONS(5111), - [anon_sym_readonly] = ACTIONS(5111), - [anon_sym_abstract] = ACTIONS(5111), - [anon_sym_async] = ACTIONS(5111), - [anon_sym_const] = ACTIONS(5111), - [anon_sym_file] = ACTIONS(5111), - [anon_sym_fixed] = ACTIONS(5111), - [anon_sym_internal] = ACTIONS(5111), - [anon_sym_new] = ACTIONS(5111), - [anon_sym_override] = ACTIONS(5111), - [anon_sym_partial] = ACTIONS(5111), - [anon_sym_protected] = ACTIONS(5111), - [anon_sym_required] = ACTIONS(5111), - [anon_sym_sealed] = ACTIONS(5111), - [anon_sym_virtual] = ACTIONS(5111), - [anon_sym_volatile] = ACTIONS(5111), - [anon_sym_where] = ACTIONS(5111), - [anon_sym_notnull] = ACTIONS(5111), - [anon_sym_unmanaged] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5113), - [anon_sym_implicit] = ACTIONS(5111), - [anon_sym_explicit] = ACTIONS(5111), - [anon_sym_scoped] = ACTIONS(5111), - [anon_sym_var] = ACTIONS(5111), - [sym_predefined_type] = ACTIONS(5111), - [anon_sym_yield] = ACTIONS(5111), - [anon_sym_when] = ACTIONS(5111), - [anon_sym_from] = ACTIONS(5111), - [anon_sym_into] = ACTIONS(5111), - [anon_sym_join] = ACTIONS(5111), - [anon_sym_on] = ACTIONS(5111), - [anon_sym_equals] = ACTIONS(5111), - [anon_sym_let] = ACTIONS(5111), - [anon_sym_orderby] = ACTIONS(5111), - [anon_sym_ascending] = ACTIONS(5111), - [anon_sym_descending] = ACTIONS(5111), - [anon_sym_group] = ACTIONS(5111), - [anon_sym_by] = ACTIONS(5111), - [anon_sym_select] = ACTIONS(5111), - [sym_grit_metavariable] = ACTIONS(5113), - [aux_sym_preproc_if_token1] = ACTIONS(5113), - [aux_sym_preproc_if_token3] = ACTIONS(5113), - [aux_sym_preproc_else_token1] = ACTIONS(5113), - [aux_sym_preproc_elif_token1] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5232), + [anon_sym_QMARK] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5254), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5282), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5232), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_join] = ACTIONS(5232), + [anon_sym_let] = ACTIONS(5232), + [anon_sym_orderby] = ACTIONS(5232), + [anon_sym_ascending] = ACTIONS(5232), + [anon_sym_descending] = ACTIONS(5232), + [anon_sym_group] = ACTIONS(5232), + [anon_sym_select] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5232), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479035,6 +478743,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2945] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2945), [sym_preproc_endregion] = STATE(2945), [sym_preproc_line] = STATE(2945), @@ -479044,70 +478767,53 @@ 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), - [sym__identifier_token] = ACTIONS(5115), - [anon_sym_extern] = ACTIONS(5115), - [anon_sym_alias] = ACTIONS(5115), - [anon_sym_global] = ACTIONS(5115), - [anon_sym_using] = ACTIONS(5115), - [anon_sym_unsafe] = ACTIONS(5115), - [anon_sym_static] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5117), - [anon_sym_event] = ACTIONS(5115), - [anon_sym_namespace] = ACTIONS(5115), - [anon_sym_class] = ACTIONS(5115), - [anon_sym_ref] = ACTIONS(5115), - [anon_sym_struct] = ACTIONS(5115), - [anon_sym_enum] = ACTIONS(5115), - [anon_sym_RBRACE] = ACTIONS(5117), - [anon_sym_interface] = ACTIONS(5115), - [anon_sym_delegate] = ACTIONS(5115), - [anon_sym_record] = ACTIONS(5115), - [anon_sym_public] = ACTIONS(5115), - [anon_sym_private] = ACTIONS(5115), - [anon_sym_readonly] = ACTIONS(5115), - [anon_sym_abstract] = ACTIONS(5115), - [anon_sym_async] = ACTIONS(5115), - [anon_sym_const] = ACTIONS(5115), - [anon_sym_file] = ACTIONS(5115), - [anon_sym_fixed] = ACTIONS(5115), - [anon_sym_internal] = ACTIONS(5115), - [anon_sym_new] = ACTIONS(5115), - [anon_sym_override] = ACTIONS(5115), - [anon_sym_partial] = ACTIONS(5115), - [anon_sym_protected] = ACTIONS(5115), - [anon_sym_required] = ACTIONS(5115), - [anon_sym_sealed] = ACTIONS(5115), - [anon_sym_virtual] = ACTIONS(5115), - [anon_sym_volatile] = ACTIONS(5115), - [anon_sym_where] = ACTIONS(5115), - [anon_sym_notnull] = ACTIONS(5115), - [anon_sym_unmanaged] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5117), - [anon_sym_implicit] = ACTIONS(5115), - [anon_sym_explicit] = ACTIONS(5115), - [anon_sym_scoped] = ACTIONS(5115), - [anon_sym_var] = ACTIONS(5115), - [sym_predefined_type] = ACTIONS(5115), - [anon_sym_yield] = ACTIONS(5115), - [anon_sym_when] = ACTIONS(5115), - [anon_sym_from] = ACTIONS(5115), - [anon_sym_into] = ACTIONS(5115), - [anon_sym_join] = ACTIONS(5115), - [anon_sym_on] = ACTIONS(5115), - [anon_sym_equals] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5115), - [anon_sym_orderby] = ACTIONS(5115), - [anon_sym_ascending] = ACTIONS(5115), - [anon_sym_descending] = ACTIONS(5115), - [anon_sym_group] = ACTIONS(5115), - [anon_sym_by] = ACTIONS(5115), - [anon_sym_select] = ACTIONS(5115), - [sym_grit_metavariable] = ACTIONS(5117), - [aux_sym_preproc_if_token1] = ACTIONS(5117), - [aux_sym_preproc_if_token3] = ACTIONS(5117), - [aux_sym_preproc_else_token1] = ACTIONS(5117), - [aux_sym_preproc_elif_token1] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5296), + [anon_sym_QMARK] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5298), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5282), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5296), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479120,6 +478826,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2946] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2946), [sym_preproc_endregion] = STATE(2946), [sym_preproc_line] = STATE(2946), @@ -479129,70 +478850,53 @@ 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), - [sym__identifier_token] = ACTIONS(5119), - [anon_sym_extern] = ACTIONS(5119), - [anon_sym_alias] = ACTIONS(5119), - [anon_sym_global] = ACTIONS(5119), - [anon_sym_using] = ACTIONS(5119), - [anon_sym_unsafe] = ACTIONS(5119), - [anon_sym_static] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5121), - [anon_sym_event] = ACTIONS(5119), - [anon_sym_namespace] = ACTIONS(5119), - [anon_sym_class] = ACTIONS(5119), - [anon_sym_ref] = ACTIONS(5119), - [anon_sym_struct] = ACTIONS(5119), - [anon_sym_enum] = ACTIONS(5119), - [anon_sym_RBRACE] = ACTIONS(5121), - [anon_sym_interface] = ACTIONS(5119), - [anon_sym_delegate] = ACTIONS(5119), - [anon_sym_record] = ACTIONS(5119), - [anon_sym_public] = ACTIONS(5119), - [anon_sym_private] = ACTIONS(5119), - [anon_sym_readonly] = ACTIONS(5119), - [anon_sym_abstract] = ACTIONS(5119), - [anon_sym_async] = ACTIONS(5119), - [anon_sym_const] = ACTIONS(5119), - [anon_sym_file] = ACTIONS(5119), - [anon_sym_fixed] = ACTIONS(5119), - [anon_sym_internal] = ACTIONS(5119), - [anon_sym_new] = ACTIONS(5119), - [anon_sym_override] = ACTIONS(5119), - [anon_sym_partial] = ACTIONS(5119), - [anon_sym_protected] = ACTIONS(5119), - [anon_sym_required] = ACTIONS(5119), - [anon_sym_sealed] = ACTIONS(5119), - [anon_sym_virtual] = ACTIONS(5119), - [anon_sym_volatile] = ACTIONS(5119), - [anon_sym_where] = ACTIONS(5119), - [anon_sym_notnull] = ACTIONS(5119), - [anon_sym_unmanaged] = ACTIONS(5119), - [anon_sym_TILDE] = ACTIONS(5121), - [anon_sym_implicit] = ACTIONS(5119), - [anon_sym_explicit] = ACTIONS(5119), - [anon_sym_scoped] = ACTIONS(5119), - [anon_sym_var] = ACTIONS(5119), - [sym_predefined_type] = ACTIONS(5119), - [anon_sym_yield] = ACTIONS(5119), - [anon_sym_when] = ACTIONS(5119), - [anon_sym_from] = ACTIONS(5119), - [anon_sym_into] = ACTIONS(5119), - [anon_sym_join] = ACTIONS(5119), - [anon_sym_on] = ACTIONS(5119), - [anon_sym_equals] = ACTIONS(5119), - [anon_sym_let] = ACTIONS(5119), - [anon_sym_orderby] = ACTIONS(5119), - [anon_sym_ascending] = ACTIONS(5119), - [anon_sym_descending] = ACTIONS(5119), - [anon_sym_group] = ACTIONS(5119), - [anon_sym_by] = ACTIONS(5119), - [anon_sym_select] = ACTIONS(5119), - [sym_grit_metavariable] = ACTIONS(5121), - [aux_sym_preproc_if_token1] = ACTIONS(5121), - [aux_sym_preproc_if_token3] = ACTIONS(5121), - [aux_sym_preproc_else_token1] = ACTIONS(5121), - [aux_sym_preproc_elif_token1] = ACTIONS(5121), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479205,6 +478909,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2947] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2947), [sym_preproc_endregion] = STATE(2947), [sym_preproc_line] = STATE(2947), @@ -479214,70 +478933,53 @@ 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), - [sym__identifier_token] = ACTIONS(5123), - [anon_sym_extern] = ACTIONS(5123), - [anon_sym_alias] = ACTIONS(5123), - [anon_sym_global] = ACTIONS(5123), - [anon_sym_using] = ACTIONS(5123), - [anon_sym_unsafe] = ACTIONS(5123), - [anon_sym_static] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5125), - [anon_sym_event] = ACTIONS(5123), - [anon_sym_namespace] = ACTIONS(5123), - [anon_sym_class] = ACTIONS(5123), - [anon_sym_ref] = ACTIONS(5123), - [anon_sym_struct] = ACTIONS(5123), - [anon_sym_enum] = ACTIONS(5123), - [anon_sym_RBRACE] = ACTIONS(5125), - [anon_sym_interface] = ACTIONS(5123), - [anon_sym_delegate] = ACTIONS(5123), - [anon_sym_record] = ACTIONS(5123), - [anon_sym_public] = ACTIONS(5123), - [anon_sym_private] = ACTIONS(5123), - [anon_sym_readonly] = ACTIONS(5123), - [anon_sym_abstract] = ACTIONS(5123), - [anon_sym_async] = ACTIONS(5123), - [anon_sym_const] = ACTIONS(5123), - [anon_sym_file] = ACTIONS(5123), - [anon_sym_fixed] = ACTIONS(5123), - [anon_sym_internal] = ACTIONS(5123), - [anon_sym_new] = ACTIONS(5123), - [anon_sym_override] = ACTIONS(5123), - [anon_sym_partial] = ACTIONS(5123), - [anon_sym_protected] = ACTIONS(5123), - [anon_sym_required] = ACTIONS(5123), - [anon_sym_sealed] = ACTIONS(5123), - [anon_sym_virtual] = ACTIONS(5123), - [anon_sym_volatile] = ACTIONS(5123), - [anon_sym_where] = ACTIONS(5123), - [anon_sym_notnull] = ACTIONS(5123), - [anon_sym_unmanaged] = ACTIONS(5123), - [anon_sym_TILDE] = ACTIONS(5125), - [anon_sym_implicit] = ACTIONS(5123), - [anon_sym_explicit] = ACTIONS(5123), - [anon_sym_scoped] = ACTIONS(5123), - [anon_sym_var] = ACTIONS(5123), - [sym_predefined_type] = ACTIONS(5123), - [anon_sym_yield] = ACTIONS(5123), - [anon_sym_when] = ACTIONS(5123), - [anon_sym_from] = ACTIONS(5123), - [anon_sym_into] = ACTIONS(5123), - [anon_sym_join] = ACTIONS(5123), - [anon_sym_on] = ACTIONS(5123), - [anon_sym_equals] = ACTIONS(5123), - [anon_sym_let] = ACTIONS(5123), - [anon_sym_orderby] = ACTIONS(5123), - [anon_sym_ascending] = ACTIONS(5123), - [anon_sym_descending] = ACTIONS(5123), - [anon_sym_group] = ACTIONS(5123), - [anon_sym_by] = ACTIONS(5123), - [anon_sym_select] = ACTIONS(5123), - [sym_grit_metavariable] = ACTIONS(5125), - [aux_sym_preproc_if_token1] = ACTIONS(5125), - [aux_sym_preproc_if_token3] = ACTIONS(5125), - [aux_sym_preproc_else_token1] = ACTIONS(5125), - [aux_sym_preproc_elif_token1] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5304), + [anon_sym_QMARK] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5304), + [anon_sym_or] = ACTIONS(5306), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5282), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5304), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479290,6 +478992,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2948] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2948), [sym_preproc_endregion] = STATE(2948), [sym_preproc_line] = STATE(2948), @@ -479299,70 +479016,53 @@ 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), - [sym__identifier_token] = ACTIONS(5127), - [anon_sym_extern] = ACTIONS(5127), - [anon_sym_alias] = ACTIONS(5127), - [anon_sym_global] = ACTIONS(5127), - [anon_sym_using] = ACTIONS(5127), - [anon_sym_unsafe] = ACTIONS(5127), - [anon_sym_static] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5129), - [anon_sym_event] = ACTIONS(5127), - [anon_sym_namespace] = ACTIONS(5127), - [anon_sym_class] = ACTIONS(5127), - [anon_sym_ref] = ACTIONS(5127), - [anon_sym_struct] = ACTIONS(5127), - [anon_sym_enum] = ACTIONS(5127), - [anon_sym_RBRACE] = ACTIONS(5129), - [anon_sym_interface] = ACTIONS(5127), - [anon_sym_delegate] = ACTIONS(5127), - [anon_sym_record] = ACTIONS(5127), - [anon_sym_public] = ACTIONS(5127), - [anon_sym_private] = ACTIONS(5127), - [anon_sym_readonly] = ACTIONS(5127), - [anon_sym_abstract] = ACTIONS(5127), - [anon_sym_async] = ACTIONS(5127), - [anon_sym_const] = ACTIONS(5127), - [anon_sym_file] = ACTIONS(5127), - [anon_sym_fixed] = ACTIONS(5127), - [anon_sym_internal] = ACTIONS(5127), - [anon_sym_new] = ACTIONS(5127), - [anon_sym_override] = ACTIONS(5127), - [anon_sym_partial] = ACTIONS(5127), - [anon_sym_protected] = ACTIONS(5127), - [anon_sym_required] = ACTIONS(5127), - [anon_sym_sealed] = ACTIONS(5127), - [anon_sym_virtual] = ACTIONS(5127), - [anon_sym_volatile] = ACTIONS(5127), - [anon_sym_where] = ACTIONS(5127), - [anon_sym_notnull] = ACTIONS(5127), - [anon_sym_unmanaged] = ACTIONS(5127), - [anon_sym_TILDE] = ACTIONS(5129), - [anon_sym_implicit] = ACTIONS(5127), - [anon_sym_explicit] = ACTIONS(5127), - [anon_sym_scoped] = ACTIONS(5127), - [anon_sym_var] = ACTIONS(5127), - [sym_predefined_type] = ACTIONS(5127), - [anon_sym_yield] = ACTIONS(5127), - [anon_sym_when] = ACTIONS(5127), - [anon_sym_from] = ACTIONS(5127), - [anon_sym_into] = ACTIONS(5127), - [anon_sym_join] = ACTIONS(5127), - [anon_sym_on] = ACTIONS(5127), - [anon_sym_equals] = ACTIONS(5127), - [anon_sym_let] = ACTIONS(5127), - [anon_sym_orderby] = ACTIONS(5127), - [anon_sym_ascending] = ACTIONS(5127), - [anon_sym_descending] = ACTIONS(5127), - [anon_sym_group] = ACTIONS(5127), - [anon_sym_by] = ACTIONS(5127), - [anon_sym_select] = ACTIONS(5127), - [sym_grit_metavariable] = ACTIONS(5129), - [aux_sym_preproc_if_token1] = ACTIONS(5129), - [aux_sym_preproc_if_token3] = ACTIONS(5129), - [aux_sym_preproc_else_token1] = ACTIONS(5129), - [aux_sym_preproc_elif_token1] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_where] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5310), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5292), + [anon_sym_with] = ACTIONS(5308), + [sym_grit_metavariable] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479384,70 +479084,68 @@ 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), - [sym__identifier_token] = ACTIONS(5131), - [anon_sym_extern] = ACTIONS(5131), - [anon_sym_alias] = ACTIONS(5131), - [anon_sym_global] = ACTIONS(5131), - [anon_sym_using] = ACTIONS(5131), - [anon_sym_unsafe] = ACTIONS(5131), - [anon_sym_static] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_event] = ACTIONS(5131), - [anon_sym_namespace] = ACTIONS(5131), - [anon_sym_class] = ACTIONS(5131), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_struct] = ACTIONS(5131), - [anon_sym_enum] = ACTIONS(5131), - [anon_sym_RBRACE] = ACTIONS(5133), - [anon_sym_interface] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5131), - [anon_sym_record] = ACTIONS(5131), - [anon_sym_public] = ACTIONS(5131), - [anon_sym_private] = ACTIONS(5131), - [anon_sym_readonly] = ACTIONS(5131), - [anon_sym_abstract] = ACTIONS(5131), - [anon_sym_async] = ACTIONS(5131), - [anon_sym_const] = ACTIONS(5131), - [anon_sym_file] = ACTIONS(5131), - [anon_sym_fixed] = ACTIONS(5131), - [anon_sym_internal] = ACTIONS(5131), - [anon_sym_new] = ACTIONS(5131), - [anon_sym_override] = ACTIONS(5131), - [anon_sym_partial] = ACTIONS(5131), - [anon_sym_protected] = ACTIONS(5131), - [anon_sym_required] = ACTIONS(5131), - [anon_sym_sealed] = ACTIONS(5131), - [anon_sym_virtual] = ACTIONS(5131), - [anon_sym_volatile] = ACTIONS(5131), - [anon_sym_where] = ACTIONS(5131), - [anon_sym_notnull] = ACTIONS(5131), - [anon_sym_unmanaged] = ACTIONS(5131), - [anon_sym_TILDE] = ACTIONS(5133), - [anon_sym_implicit] = ACTIONS(5131), - [anon_sym_explicit] = ACTIONS(5131), - [anon_sym_scoped] = ACTIONS(5131), - [anon_sym_var] = ACTIONS(5131), - [sym_predefined_type] = ACTIONS(5131), - [anon_sym_yield] = ACTIONS(5131), - [anon_sym_when] = ACTIONS(5131), - [anon_sym_from] = ACTIONS(5131), - [anon_sym_into] = ACTIONS(5131), - [anon_sym_join] = ACTIONS(5131), - [anon_sym_on] = ACTIONS(5131), - [anon_sym_equals] = ACTIONS(5131), - [anon_sym_let] = ACTIONS(5131), - [anon_sym_orderby] = ACTIONS(5131), - [anon_sym_ascending] = ACTIONS(5131), - [anon_sym_descending] = ACTIONS(5131), - [anon_sym_group] = ACTIONS(5131), - [anon_sym_by] = ACTIONS(5131), - [anon_sym_select] = ACTIONS(5131), - [sym_grit_metavariable] = ACTIONS(5133), - [aux_sym_preproc_if_token1] = ACTIONS(5133), - [aux_sym_preproc_if_token3] = ACTIONS(5133), - [aux_sym_preproc_else_token1] = ACTIONS(5133), - [aux_sym_preproc_elif_token1] = ACTIONS(5133), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5312), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479460,6 +479158,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2950] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2950), [sym_preproc_endregion] = STATE(2950), [sym_preproc_line] = STATE(2950), @@ -479469,70 +479182,53 @@ 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), - [sym__identifier_token] = ACTIONS(5135), - [anon_sym_extern] = ACTIONS(5135), - [anon_sym_alias] = ACTIONS(5135), - [anon_sym_global] = ACTIONS(5135), - [anon_sym_using] = ACTIONS(5135), - [anon_sym_unsafe] = ACTIONS(5135), - [anon_sym_static] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_event] = ACTIONS(5135), - [anon_sym_namespace] = ACTIONS(5135), - [anon_sym_class] = ACTIONS(5135), - [anon_sym_ref] = ACTIONS(5135), - [anon_sym_struct] = ACTIONS(5135), - [anon_sym_enum] = ACTIONS(5135), - [anon_sym_RBRACE] = ACTIONS(5137), - [anon_sym_interface] = ACTIONS(5135), - [anon_sym_delegate] = ACTIONS(5135), - [anon_sym_record] = ACTIONS(5135), - [anon_sym_public] = ACTIONS(5135), - [anon_sym_private] = ACTIONS(5135), - [anon_sym_readonly] = ACTIONS(5135), - [anon_sym_abstract] = ACTIONS(5135), - [anon_sym_async] = ACTIONS(5135), - [anon_sym_const] = ACTIONS(5135), - [anon_sym_file] = ACTIONS(5135), - [anon_sym_fixed] = ACTIONS(5135), - [anon_sym_internal] = ACTIONS(5135), - [anon_sym_new] = ACTIONS(5135), - [anon_sym_override] = ACTIONS(5135), - [anon_sym_partial] = ACTIONS(5135), - [anon_sym_protected] = ACTIONS(5135), - [anon_sym_required] = ACTIONS(5135), - [anon_sym_sealed] = ACTIONS(5135), - [anon_sym_virtual] = ACTIONS(5135), - [anon_sym_volatile] = ACTIONS(5135), - [anon_sym_where] = ACTIONS(5135), - [anon_sym_notnull] = ACTIONS(5135), - [anon_sym_unmanaged] = ACTIONS(5135), - [anon_sym_TILDE] = ACTIONS(5137), - [anon_sym_implicit] = ACTIONS(5135), - [anon_sym_explicit] = ACTIONS(5135), - [anon_sym_scoped] = ACTIONS(5135), - [anon_sym_var] = ACTIONS(5135), - [sym_predefined_type] = ACTIONS(5135), - [anon_sym_yield] = ACTIONS(5135), - [anon_sym_when] = ACTIONS(5135), - [anon_sym_from] = ACTIONS(5135), - [anon_sym_into] = ACTIONS(5135), - [anon_sym_join] = ACTIONS(5135), - [anon_sym_on] = ACTIONS(5135), - [anon_sym_equals] = ACTIONS(5135), - [anon_sym_let] = ACTIONS(5135), - [anon_sym_orderby] = ACTIONS(5135), - [anon_sym_ascending] = ACTIONS(5135), - [anon_sym_descending] = ACTIONS(5135), - [anon_sym_group] = ACTIONS(5135), - [anon_sym_by] = ACTIONS(5135), - [anon_sym_select] = ACTIONS(5135), - [sym_grit_metavariable] = ACTIONS(5137), - [aux_sym_preproc_if_token1] = ACTIONS(5137), - [aux_sym_preproc_if_token3] = ACTIONS(5137), - [aux_sym_preproc_else_token1] = ACTIONS(5137), - [aux_sym_preproc_elif_token1] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479545,6 +479241,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2951] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2951), [sym_preproc_endregion] = STATE(2951), [sym_preproc_line] = STATE(2951), @@ -479554,70 +479265,53 @@ 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), - [sym__identifier_token] = ACTIONS(5139), - [anon_sym_extern] = ACTIONS(5139), - [anon_sym_alias] = ACTIONS(5139), - [anon_sym_global] = ACTIONS(5139), - [anon_sym_using] = ACTIONS(5139), - [anon_sym_unsafe] = ACTIONS(5139), - [anon_sym_static] = ACTIONS(5139), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_event] = ACTIONS(5139), - [anon_sym_namespace] = ACTIONS(5139), - [anon_sym_class] = ACTIONS(5139), - [anon_sym_ref] = ACTIONS(5139), - [anon_sym_struct] = ACTIONS(5139), - [anon_sym_enum] = ACTIONS(5139), - [anon_sym_RBRACE] = ACTIONS(5141), - [anon_sym_interface] = ACTIONS(5139), - [anon_sym_delegate] = ACTIONS(5139), - [anon_sym_record] = ACTIONS(5139), - [anon_sym_public] = ACTIONS(5139), - [anon_sym_private] = ACTIONS(5139), - [anon_sym_readonly] = ACTIONS(5139), - [anon_sym_abstract] = ACTIONS(5139), - [anon_sym_async] = ACTIONS(5139), - [anon_sym_const] = ACTIONS(5139), - [anon_sym_file] = ACTIONS(5139), - [anon_sym_fixed] = ACTIONS(5139), - [anon_sym_internal] = ACTIONS(5139), - [anon_sym_new] = ACTIONS(5139), - [anon_sym_override] = ACTIONS(5139), - [anon_sym_partial] = ACTIONS(5139), - [anon_sym_protected] = ACTIONS(5139), - [anon_sym_required] = ACTIONS(5139), - [anon_sym_sealed] = ACTIONS(5139), - [anon_sym_virtual] = ACTIONS(5139), - [anon_sym_volatile] = ACTIONS(5139), - [anon_sym_where] = ACTIONS(5139), - [anon_sym_notnull] = ACTIONS(5139), - [anon_sym_unmanaged] = ACTIONS(5139), - [anon_sym_TILDE] = ACTIONS(5141), - [anon_sym_implicit] = ACTIONS(5139), - [anon_sym_explicit] = ACTIONS(5139), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(5139), - [sym_predefined_type] = ACTIONS(5139), - [anon_sym_yield] = ACTIONS(5139), - [anon_sym_when] = ACTIONS(5139), - [anon_sym_from] = ACTIONS(5139), - [anon_sym_into] = ACTIONS(5139), - [anon_sym_join] = ACTIONS(5139), - [anon_sym_on] = ACTIONS(5139), - [anon_sym_equals] = ACTIONS(5139), - [anon_sym_let] = ACTIONS(5139), - [anon_sym_orderby] = ACTIONS(5139), - [anon_sym_ascending] = ACTIONS(5139), - [anon_sym_descending] = ACTIONS(5139), - [anon_sym_group] = ACTIONS(5139), - [anon_sym_by] = ACTIONS(5139), - [anon_sym_select] = ACTIONS(5139), - [sym_grit_metavariable] = ACTIONS(5141), - [aux_sym_preproc_if_token1] = ACTIONS(5141), - [aux_sym_preproc_if_token3] = ACTIONS(5141), - [aux_sym_preproc_else_token1] = ACTIONS(5141), - [aux_sym_preproc_elif_token1] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_where] = ACTIONS(5314), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5316), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5314), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_join] = ACTIONS(5314), + [anon_sym_let] = ACTIONS(5314), + [anon_sym_orderby] = ACTIONS(5314), + [anon_sym_ascending] = ACTIONS(5314), + [anon_sym_descending] = ACTIONS(5314), + [anon_sym_group] = ACTIONS(5314), + [anon_sym_select] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5316), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5314), + [sym_grit_metavariable] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479639,70 +479333,68 @@ 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(4528), - [anon_sym_EQ] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4528), - [anon_sym_COLON] = ACTIONS(4528), - [anon_sym_COMMA] = ACTIONS(4528), - [anon_sym_RBRACK] = ACTIONS(4528), - [anon_sym_LPAREN] = ACTIONS(4528), - [anon_sym_RPAREN] = ACTIONS(4528), - [anon_sym_RBRACE] = ACTIONS(4528), - [anon_sym_LT] = ACTIONS(4526), - [anon_sym_GT] = ACTIONS(4526), - [anon_sym_in] = ACTIONS(4526), - [anon_sym_QMARK] = ACTIONS(4526), - [anon_sym_BANG] = ACTIONS(4526), - [anon_sym_PLUS_PLUS] = ACTIONS(4528), - [anon_sym_DASH_DASH] = ACTIONS(4528), - [anon_sym_PLUS] = ACTIONS(4526), - [anon_sym_DASH] = ACTIONS(4526), - [anon_sym_STAR] = ACTIONS(4526), - [anon_sym_SLASH] = ACTIONS(4526), - [anon_sym_PERCENT] = ACTIONS(4526), - [anon_sym_CARET] = ACTIONS(4526), - [anon_sym_PIPE] = ACTIONS(4526), - [anon_sym_AMP] = ACTIONS(4526), - [anon_sym_LT_LT] = ACTIONS(4526), - [anon_sym_GT_GT] = ACTIONS(4526), - [anon_sym_GT_GT_GT] = ACTIONS(4526), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_GT_EQ] = ACTIONS(4528), - [anon_sym_LT_EQ] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4526), - [anon_sym_EQ_GT] = ACTIONS(4528), - [anon_sym_switch] = ACTIONS(4528), - [anon_sym_when] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4528), - [anon_sym_and] = ACTIONS(4528), - [anon_sym_or] = ACTIONS(4528), - [anon_sym_PLUS_EQ] = ACTIONS(4528), - [anon_sym_DASH_EQ] = ACTIONS(4528), - [anon_sym_STAR_EQ] = ACTIONS(4528), - [anon_sym_SLASH_EQ] = ACTIONS(4528), - [anon_sym_PERCENT_EQ] = ACTIONS(4528), - [anon_sym_AMP_EQ] = ACTIONS(4528), - [anon_sym_CARET_EQ] = ACTIONS(4528), - [anon_sym_PIPE_EQ] = ACTIONS(4528), - [anon_sym_LT_LT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4528), - [anon_sym_PIPE_PIPE] = ACTIONS(4528), - [sym_op_coalescing] = ACTIONS(4526), - [anon_sym_into] = ACTIONS(4528), - [anon_sym_on] = ACTIONS(4528), - [anon_sym_equals] = ACTIONS(4528), - [anon_sym_by] = ACTIONS(4528), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_DASH_GT] = ACTIONS(4528), - [anon_sym_with] = ACTIONS(4528), - [aux_sym_preproc_if_token3] = ACTIONS(4528), - [aux_sym_preproc_else_token1] = ACTIONS(4528), - [aux_sym_preproc_elif_token1] = ACTIONS(4528), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5318), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479715,6 +479407,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2953] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2953), [sym_preproc_endregion] = STATE(2953), [sym_preproc_line] = STATE(2953), @@ -479724,70 +479431,53 @@ 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), - [sym__identifier_token] = ACTIONS(5143), - [anon_sym_extern] = ACTIONS(5143), - [anon_sym_alias] = ACTIONS(5143), - [anon_sym_global] = ACTIONS(5143), - [anon_sym_using] = ACTIONS(5143), - [anon_sym_unsafe] = ACTIONS(5143), - [anon_sym_static] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_LPAREN] = ACTIONS(5145), - [anon_sym_event] = ACTIONS(5143), - [anon_sym_namespace] = ACTIONS(5143), - [anon_sym_class] = ACTIONS(5143), - [anon_sym_ref] = ACTIONS(5143), - [anon_sym_struct] = ACTIONS(5143), - [anon_sym_enum] = ACTIONS(5143), - [anon_sym_RBRACE] = ACTIONS(5145), - [anon_sym_interface] = ACTIONS(5143), - [anon_sym_delegate] = ACTIONS(5143), - [anon_sym_record] = ACTIONS(5143), - [anon_sym_public] = ACTIONS(5143), - [anon_sym_private] = ACTIONS(5143), - [anon_sym_readonly] = ACTIONS(5143), - [anon_sym_abstract] = ACTIONS(5143), - [anon_sym_async] = ACTIONS(5143), - [anon_sym_const] = ACTIONS(5143), - [anon_sym_file] = ACTIONS(5143), - [anon_sym_fixed] = ACTIONS(5143), - [anon_sym_internal] = ACTIONS(5143), - [anon_sym_new] = ACTIONS(5143), - [anon_sym_override] = ACTIONS(5143), - [anon_sym_partial] = ACTIONS(5143), - [anon_sym_protected] = ACTIONS(5143), - [anon_sym_required] = ACTIONS(5143), - [anon_sym_sealed] = ACTIONS(5143), - [anon_sym_virtual] = ACTIONS(5143), - [anon_sym_volatile] = ACTIONS(5143), - [anon_sym_where] = ACTIONS(5143), - [anon_sym_notnull] = ACTIONS(5143), - [anon_sym_unmanaged] = ACTIONS(5143), - [anon_sym_TILDE] = ACTIONS(5145), - [anon_sym_implicit] = ACTIONS(5143), - [anon_sym_explicit] = ACTIONS(5143), - [anon_sym_scoped] = ACTIONS(5143), - [anon_sym_var] = ACTIONS(5143), - [sym_predefined_type] = ACTIONS(5143), - [anon_sym_yield] = ACTIONS(5143), - [anon_sym_when] = ACTIONS(5143), - [anon_sym_from] = ACTIONS(5143), - [anon_sym_into] = ACTIONS(5143), - [anon_sym_join] = ACTIONS(5143), - [anon_sym_on] = ACTIONS(5143), - [anon_sym_equals] = ACTIONS(5143), - [anon_sym_let] = ACTIONS(5143), - [anon_sym_orderby] = ACTIONS(5143), - [anon_sym_ascending] = ACTIONS(5143), - [anon_sym_descending] = ACTIONS(5143), - [anon_sym_group] = ACTIONS(5143), - [anon_sym_by] = ACTIONS(5143), - [anon_sym_select] = ACTIONS(5143), - [sym_grit_metavariable] = ACTIONS(5145), - [aux_sym_preproc_if_token1] = ACTIONS(5145), - [aux_sym_preproc_if_token3] = ACTIONS(5145), - [aux_sym_preproc_else_token1] = ACTIONS(5145), - [aux_sym_preproc_elif_token1] = ACTIONS(5145), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479800,10 +479490,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2954] = { - [sym__variable_designation] = STATE(5522), - [sym_parenthesized_variable_designation] = STATE(5507), - [sym_identifier] = STATE(5505), - [sym__reserved_identifier] = STATE(3510), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2954), [sym_preproc_endregion] = STATE(2954), [sym_preproc_line] = STATE(2954), @@ -479813,66 +479514,53 @@ 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), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(4304), - [anon_sym_GT] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4304), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_PLUS_PLUS] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_CARET] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_LT] = ACTIONS(4302), - [anon_sym_GT_GT] = ACTIONS(4304), - [anon_sym_GT_GT_GT] = ACTIONS(4302), - [anon_sym_EQ_EQ] = ACTIONS(4302), - [anon_sym_BANG_EQ] = ACTIONS(4302), - [anon_sym_GT_EQ] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4302), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4228), - [sym_discard] = ACTIONS(4578), - [anon_sym_DOT_DOT] = ACTIONS(4302), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_or] = ACTIONS(4304), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_PIPE_PIPE] = ACTIONS(4302), - [sym_op_coalescing] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4304), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4304), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4304), - [anon_sym_orderby] = ACTIONS(4304), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4304), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4304), - [anon_sym_as] = ACTIONS(4304), - [anon_sym_is] = ACTIONS(4304), - [anon_sym_DASH_GT] = ACTIONS(4302), - [anon_sym_with] = ACTIONS(4304), - [sym_grit_metavariable] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479885,6 +479573,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2955] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6369), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_identifier] = STATE(6043), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(2955), [sym_preproc_endregion] = STATE(2955), [sym_preproc_line] = STATE(2955), @@ -479894,70 +479606,44 @@ 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), - [sym__identifier_token] = ACTIONS(5147), - [anon_sym_extern] = ACTIONS(5147), - [anon_sym_alias] = ACTIONS(5147), - [anon_sym_global] = ACTIONS(5147), - [anon_sym_using] = ACTIONS(5147), - [anon_sym_unsafe] = ACTIONS(5147), - [anon_sym_static] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_LPAREN] = ACTIONS(5149), - [anon_sym_event] = ACTIONS(5147), - [anon_sym_namespace] = ACTIONS(5147), - [anon_sym_class] = ACTIONS(5147), - [anon_sym_ref] = ACTIONS(5147), - [anon_sym_struct] = ACTIONS(5147), - [anon_sym_enum] = ACTIONS(5147), - [anon_sym_RBRACE] = ACTIONS(5149), - [anon_sym_interface] = ACTIONS(5147), - [anon_sym_delegate] = ACTIONS(5147), - [anon_sym_record] = ACTIONS(5147), - [anon_sym_public] = ACTIONS(5147), - [anon_sym_private] = ACTIONS(5147), - [anon_sym_readonly] = ACTIONS(5147), - [anon_sym_abstract] = ACTIONS(5147), - [anon_sym_async] = ACTIONS(5147), - [anon_sym_const] = ACTIONS(5147), - [anon_sym_file] = ACTIONS(5147), - [anon_sym_fixed] = ACTIONS(5147), - [anon_sym_internal] = ACTIONS(5147), - [anon_sym_new] = ACTIONS(5147), - [anon_sym_override] = ACTIONS(5147), - [anon_sym_partial] = ACTIONS(5147), - [anon_sym_protected] = ACTIONS(5147), - [anon_sym_required] = ACTIONS(5147), - [anon_sym_sealed] = ACTIONS(5147), - [anon_sym_virtual] = ACTIONS(5147), - [anon_sym_volatile] = ACTIONS(5147), - [anon_sym_where] = ACTIONS(5147), - [anon_sym_notnull] = ACTIONS(5147), - [anon_sym_unmanaged] = ACTIONS(5147), - [anon_sym_TILDE] = ACTIONS(5149), - [anon_sym_implicit] = ACTIONS(5147), - [anon_sym_explicit] = ACTIONS(5147), - [anon_sym_scoped] = ACTIONS(5147), - [anon_sym_var] = ACTIONS(5147), - [sym_predefined_type] = ACTIONS(5147), - [anon_sym_yield] = ACTIONS(5147), - [anon_sym_when] = ACTIONS(5147), - [anon_sym_from] = ACTIONS(5147), - [anon_sym_into] = ACTIONS(5147), - [anon_sym_join] = ACTIONS(5147), - [anon_sym_on] = ACTIONS(5147), - [anon_sym_equals] = ACTIONS(5147), - [anon_sym_let] = ACTIONS(5147), - [anon_sym_orderby] = ACTIONS(5147), - [anon_sym_ascending] = ACTIONS(5147), - [anon_sym_descending] = ACTIONS(5147), - [anon_sym_group] = ACTIONS(5147), - [anon_sym_by] = ACTIONS(5147), - [anon_sym_select] = ACTIONS(5147), - [sym_grit_metavariable] = ACTIONS(5149), - [aux_sym_preproc_if_token1] = ACTIONS(5149), - [aux_sym_preproc_if_token3] = ACTIONS(5149), - [aux_sym_preproc_else_token1] = ACTIONS(5149), - [aux_sym_preproc_elif_token1] = ACTIONS(5149), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3162), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(2853), + [anon_sym_ref] = ACTIONS(5216), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(1311), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_out] = ACTIONS(1311), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_this] = ACTIONS(1311), + [anon_sym_scoped] = ACTIONS(5226), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(5222), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479982,49 +479668,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4329), [anon_sym_alias] = ACTIONS(4329), [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4439), [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), [anon_sym_LPAREN] = ACTIONS(4331), [anon_sym_LBRACE] = ACTIONS(4331), [anon_sym_file] = ACTIONS(4329), [anon_sym_LT] = ACTIONS(4329), [anon_sym_GT] = ACTIONS(4329), [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4442), [anon_sym_notnull] = ACTIONS(4329), [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5151), + [anon_sym_DOT] = ACTIONS(5322), [anon_sym_scoped] = ACTIONS(4329), [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), [anon_sym_yield] = ACTIONS(4329), [anon_sym_switch] = ACTIONS(4329), [anon_sym_when] = ACTIONS(4329), [sym_discard] = ACTIONS(4329), [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), [anon_sym_and] = ACTIONS(4329), [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), [anon_sym_AMP_AMP] = ACTIONS(4331), [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), [anon_sym_from] = ACTIONS(4329), [anon_sym_into] = ACTIONS(4329), [anon_sym_join] = ACTIONS(4329), @@ -480039,7 +479724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(4329), [anon_sym_as] = ACTIONS(4329), [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4985), + [anon_sym_DASH_GT] = ACTIONS(4454), [anon_sym_with] = ACTIONS(4329), [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -480052,9 +479737,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4331), }, [2957] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2957), [sym_preproc_endregion] = STATE(2957), [sym_preproc_line] = STATE(2957), @@ -480064,70 +479763,53 @@ 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), - [sym__identifier_token] = ACTIONS(5153), - [anon_sym_extern] = ACTIONS(5153), - [anon_sym_alias] = ACTIONS(5153), - [anon_sym_global] = ACTIONS(5153), - [anon_sym_using] = ACTIONS(5153), - [anon_sym_unsafe] = ACTIONS(5153), - [anon_sym_static] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_event] = ACTIONS(5153), - [anon_sym_namespace] = ACTIONS(5153), - [anon_sym_class] = ACTIONS(5153), - [anon_sym_ref] = ACTIONS(5153), - [anon_sym_struct] = ACTIONS(5153), - [anon_sym_enum] = ACTIONS(5153), - [anon_sym_RBRACE] = ACTIONS(5155), - [anon_sym_interface] = ACTIONS(5153), - [anon_sym_delegate] = ACTIONS(5153), - [anon_sym_record] = ACTIONS(5153), - [anon_sym_public] = ACTIONS(5153), - [anon_sym_private] = ACTIONS(5153), - [anon_sym_readonly] = ACTIONS(5153), - [anon_sym_abstract] = ACTIONS(5153), - [anon_sym_async] = ACTIONS(5153), - [anon_sym_const] = ACTIONS(5153), - [anon_sym_file] = ACTIONS(5153), - [anon_sym_fixed] = ACTIONS(5153), - [anon_sym_internal] = ACTIONS(5153), - [anon_sym_new] = ACTIONS(5153), - [anon_sym_override] = ACTIONS(5153), - [anon_sym_partial] = ACTIONS(5153), - [anon_sym_protected] = ACTIONS(5153), - [anon_sym_required] = ACTIONS(5153), - [anon_sym_sealed] = ACTIONS(5153), - [anon_sym_virtual] = ACTIONS(5153), - [anon_sym_volatile] = ACTIONS(5153), - [anon_sym_where] = ACTIONS(5153), - [anon_sym_notnull] = ACTIONS(5153), - [anon_sym_unmanaged] = ACTIONS(5153), - [anon_sym_TILDE] = ACTIONS(5155), - [anon_sym_implicit] = ACTIONS(5153), - [anon_sym_explicit] = ACTIONS(5153), - [anon_sym_scoped] = ACTIONS(5153), - [anon_sym_var] = ACTIONS(5153), - [sym_predefined_type] = ACTIONS(5153), - [anon_sym_yield] = ACTIONS(5153), - [anon_sym_when] = ACTIONS(5153), - [anon_sym_from] = ACTIONS(5153), - [anon_sym_into] = ACTIONS(5153), - [anon_sym_join] = ACTIONS(5153), - [anon_sym_on] = ACTIONS(5153), - [anon_sym_equals] = ACTIONS(5153), - [anon_sym_let] = ACTIONS(5153), - [anon_sym_orderby] = ACTIONS(5153), - [anon_sym_ascending] = ACTIONS(5153), - [anon_sym_descending] = ACTIONS(5153), - [anon_sym_group] = ACTIONS(5153), - [anon_sym_by] = ACTIONS(5153), - [anon_sym_select] = ACTIONS(5153), - [sym_grit_metavariable] = ACTIONS(5155), - [aux_sym_preproc_if_token1] = ACTIONS(5155), - [aux_sym_preproc_if_token3] = ACTIONS(5155), - [aux_sym_preproc_else_token1] = ACTIONS(5155), - [aux_sym_preproc_elif_token1] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480149,70 +479831,68 @@ 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), - [sym__identifier_token] = ACTIONS(3735), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3735), - [anon_sym_global] = ACTIONS(3735), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3740), - [anon_sym_event] = ACTIONS(3738), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_record] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3735), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_where] = ACTIONS(3735), - [anon_sym_QMARK] = ACTIONS(3696), - [anon_sym_notnull] = ACTIONS(3735), - [anon_sym_unmanaged] = ACTIONS(3735), - [anon_sym_operator] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_implicit] = ACTIONS(3738), - [anon_sym_explicit] = ACTIONS(3738), - [anon_sym_this] = ACTIONS(3698), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_scoped] = ACTIONS(3735), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3735), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3735), - [anon_sym_when] = ACTIONS(3735), - [anon_sym_from] = ACTIONS(3735), - [anon_sym_into] = ACTIONS(3735), - [anon_sym_join] = ACTIONS(3735), - [anon_sym_on] = ACTIONS(3735), - [anon_sym_equals] = ACTIONS(3735), - [anon_sym_let] = ACTIONS(3735), - [anon_sym_orderby] = ACTIONS(3735), - [anon_sym_ascending] = ACTIONS(3735), - [anon_sym_descending] = ACTIONS(3735), - [anon_sym_group] = ACTIONS(3735), - [anon_sym_by] = ACTIONS(3735), - [anon_sym_select] = ACTIONS(3735), - [sym_grit_metavariable] = ACTIONS(3740), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5324), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480234,70 +479914,68 @@ 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(4006), - [anon_sym_EQ] = ACTIONS(3991), - [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_RBRACE] = ACTIONS(4006), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_in] = ACTIONS(3991), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(3991), - [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_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [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), + [sym__identifier_token] = ACTIONS(4395), + [anon_sym_alias] = ACTIONS(4395), + [anon_sym_global] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_file] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4395), + [anon_sym_GT] = ACTIONS(4395), + [anon_sym_where] = ACTIONS(4395), + [anon_sym_QMARK] = ACTIONS(4395), + [anon_sym_notnull] = ACTIONS(4395), + [anon_sym_unmanaged] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_scoped] = ACTIONS(4395), + [anon_sym_EQ_GT] = ACTIONS(4397), + [anon_sym_var] = ACTIONS(4395), + [anon_sym_STAR] = ACTIONS(4397), + [anon_sym_yield] = ACTIONS(4395), + [anon_sym_switch] = ACTIONS(4395), + [anon_sym_when] = ACTIONS(4395), + [sym_discard] = ACTIONS(4395), + [anon_sym_DOT_DOT] = ACTIONS(4397), + [anon_sym_LT_EQ] = ACTIONS(4397), + [anon_sym_GT_EQ] = ACTIONS(4397), + [anon_sym_and] = ACTIONS(4395), + [anon_sym_or] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_AMP_AMP] = ACTIONS(4397), + [anon_sym_PIPE_PIPE] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4395), + [sym_op_bitwise_or] = ACTIONS(4395), + [anon_sym_CARET] = ACTIONS(4397), + [sym_op_left_shift] = ACTIONS(4397), + [sym_op_right_shift] = ACTIONS(4395), + [sym_op_unsigned_right_shift] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4395), + [anon_sym_DASH] = ACTIONS(4395), + [sym_op_divide] = ACTIONS(4395), + [sym_op_modulo] = ACTIONS(4397), + [sym_op_coalescing] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4397), + [anon_sym_from] = ACTIONS(4395), + [anon_sym_into] = ACTIONS(4395), + [anon_sym_join] = ACTIONS(4395), + [anon_sym_on] = ACTIONS(4395), + [anon_sym_equals] = ACTIONS(4395), + [anon_sym_let] = ACTIONS(4395), + [anon_sym_orderby] = ACTIONS(4395), + [anon_sym_ascending] = ACTIONS(4395), + [anon_sym_descending] = ACTIONS(4395), + [anon_sym_group] = ACTIONS(4395), + [anon_sym_by] = ACTIONS(4395), + [anon_sym_select] = ACTIONS(4395), + [anon_sym_as] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4395), + [anon_sym_DASH_GT] = ACTIONS(4397), + [anon_sym_with] = ACTIONS(4395), + [sym_grit_metavariable] = ACTIONS(4397), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480310,7 +479988,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2960] = { - [sym_type_argument_list] = STATE(3123), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2960), [sym_preproc_endregion] = STATE(2960), [sym_preproc_line] = STATE(2960), @@ -480320,69 +480012,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2960), [sym_preproc_define] = STATE(2960), [sym_preproc_undef] = STATE(2960), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_when] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3953), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3951), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5282), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480395,6 +480071,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2961] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2961), [sym_preproc_endregion] = STATE(2961), [sym_preproc_line] = STATE(2961), @@ -480404,70 +480095,53 @@ 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), - [sym__identifier_token] = ACTIONS(5160), - [anon_sym_extern] = ACTIONS(5160), - [anon_sym_alias] = ACTIONS(5160), - [anon_sym_global] = ACTIONS(5160), - [anon_sym_using] = ACTIONS(5160), - [anon_sym_unsafe] = ACTIONS(5160), - [anon_sym_static] = ACTIONS(5160), - [anon_sym_LBRACK] = ACTIONS(5162), - [anon_sym_LPAREN] = ACTIONS(5162), - [anon_sym_event] = ACTIONS(5160), - [anon_sym_namespace] = ACTIONS(5160), - [anon_sym_class] = ACTIONS(5160), - [anon_sym_ref] = ACTIONS(5160), - [anon_sym_struct] = ACTIONS(5160), - [anon_sym_enum] = ACTIONS(5160), - [anon_sym_RBRACE] = ACTIONS(5162), - [anon_sym_interface] = ACTIONS(5160), - [anon_sym_delegate] = ACTIONS(5160), - [anon_sym_record] = ACTIONS(5160), - [anon_sym_public] = ACTIONS(5160), - [anon_sym_private] = ACTIONS(5160), - [anon_sym_readonly] = ACTIONS(5160), - [anon_sym_abstract] = ACTIONS(5160), - [anon_sym_async] = ACTIONS(5160), - [anon_sym_const] = ACTIONS(5160), - [anon_sym_file] = ACTIONS(5160), - [anon_sym_fixed] = ACTIONS(5160), - [anon_sym_internal] = ACTIONS(5160), - [anon_sym_new] = ACTIONS(5160), - [anon_sym_override] = ACTIONS(5160), - [anon_sym_partial] = ACTIONS(5160), - [anon_sym_protected] = ACTIONS(5160), - [anon_sym_required] = ACTIONS(5160), - [anon_sym_sealed] = ACTIONS(5160), - [anon_sym_virtual] = ACTIONS(5160), - [anon_sym_volatile] = ACTIONS(5160), - [anon_sym_where] = ACTIONS(5160), - [anon_sym_notnull] = ACTIONS(5160), - [anon_sym_unmanaged] = ACTIONS(5160), - [anon_sym_TILDE] = ACTIONS(5162), - [anon_sym_implicit] = ACTIONS(5160), - [anon_sym_explicit] = ACTIONS(5160), - [anon_sym_scoped] = ACTIONS(5160), - [anon_sym_var] = ACTIONS(5160), - [sym_predefined_type] = ACTIONS(5160), - [anon_sym_yield] = ACTIONS(5160), - [anon_sym_when] = 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_ascending] = ACTIONS(5160), - [anon_sym_descending] = ACTIONS(5160), - [anon_sym_group] = ACTIONS(5160), - [anon_sym_by] = ACTIONS(5160), - [anon_sym_select] = ACTIONS(5160), - [sym_grit_metavariable] = ACTIONS(5162), - [aux_sym_preproc_if_token1] = ACTIONS(5162), - [aux_sym_preproc_if_token3] = ACTIONS(5162), - [aux_sym_preproc_else_token1] = ACTIONS(5162), - [aux_sym_preproc_elif_token1] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480489,70 +480163,68 @@ 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), - [sym__identifier_token] = ACTIONS(5164), - [anon_sym_extern] = ACTIONS(5164), - [anon_sym_alias] = ACTIONS(5164), - [anon_sym_global] = ACTIONS(5164), - [anon_sym_using] = ACTIONS(5164), - [anon_sym_unsafe] = ACTIONS(5164), - [anon_sym_static] = ACTIONS(5164), - [anon_sym_LBRACK] = ACTIONS(5166), - [anon_sym_LPAREN] = ACTIONS(5166), - [anon_sym_event] = ACTIONS(5164), - [anon_sym_namespace] = ACTIONS(5164), - [anon_sym_class] = ACTIONS(5164), - [anon_sym_ref] = ACTIONS(5164), - [anon_sym_struct] = ACTIONS(5164), - [anon_sym_enum] = ACTIONS(5164), - [anon_sym_RBRACE] = ACTIONS(5166), - [anon_sym_interface] = ACTIONS(5164), - [anon_sym_delegate] = ACTIONS(5164), - [anon_sym_record] = ACTIONS(5164), - [anon_sym_public] = ACTIONS(5164), - [anon_sym_private] = ACTIONS(5164), - [anon_sym_readonly] = ACTIONS(5164), - [anon_sym_abstract] = ACTIONS(5164), - [anon_sym_async] = ACTIONS(5164), - [anon_sym_const] = ACTIONS(5164), - [anon_sym_file] = ACTIONS(5164), - [anon_sym_fixed] = ACTIONS(5164), - [anon_sym_internal] = ACTIONS(5164), - [anon_sym_new] = ACTIONS(5164), - [anon_sym_override] = ACTIONS(5164), - [anon_sym_partial] = ACTIONS(5164), - [anon_sym_protected] = ACTIONS(5164), - [anon_sym_required] = ACTIONS(5164), - [anon_sym_sealed] = ACTIONS(5164), - [anon_sym_virtual] = ACTIONS(5164), - [anon_sym_volatile] = ACTIONS(5164), - [anon_sym_where] = ACTIONS(5164), - [anon_sym_notnull] = ACTIONS(5164), - [anon_sym_unmanaged] = ACTIONS(5164), - [anon_sym_TILDE] = ACTIONS(5166), - [anon_sym_implicit] = ACTIONS(5164), - [anon_sym_explicit] = ACTIONS(5164), - [anon_sym_scoped] = ACTIONS(5164), - [anon_sym_var] = ACTIONS(5164), - [sym_predefined_type] = ACTIONS(5164), - [anon_sym_yield] = ACTIONS(5164), - [anon_sym_when] = 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_ascending] = ACTIONS(5164), - [anon_sym_descending] = ACTIONS(5164), - [anon_sym_group] = ACTIONS(5164), - [anon_sym_by] = ACTIONS(5164), - [anon_sym_select] = ACTIONS(5164), - [sym_grit_metavariable] = ACTIONS(5166), - [aux_sym_preproc_if_token1] = ACTIONS(5166), - [aux_sym_preproc_if_token3] = ACTIONS(5166), - [aux_sym_preproc_else_token1] = ACTIONS(5166), - [aux_sym_preproc_elif_token1] = ACTIONS(5166), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5326), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480565,6 +480237,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2963] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2963), [sym_preproc_endregion] = STATE(2963), [sym_preproc_line] = STATE(2963), @@ -480574,70 +480261,53 @@ 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), - [sym__identifier_token] = ACTIONS(5168), - [anon_sym_extern] = ACTIONS(5168), - [anon_sym_alias] = ACTIONS(5168), - [anon_sym_global] = ACTIONS(5168), - [anon_sym_using] = ACTIONS(5168), - [anon_sym_unsafe] = ACTIONS(5168), - [anon_sym_static] = ACTIONS(5168), - [anon_sym_LBRACK] = ACTIONS(5170), - [anon_sym_LPAREN] = ACTIONS(5170), - [anon_sym_event] = ACTIONS(5168), - [anon_sym_namespace] = ACTIONS(5168), - [anon_sym_class] = ACTIONS(5168), - [anon_sym_ref] = ACTIONS(5168), - [anon_sym_struct] = ACTIONS(5168), - [anon_sym_enum] = ACTIONS(5168), - [anon_sym_RBRACE] = ACTIONS(5170), - [anon_sym_interface] = ACTIONS(5168), - [anon_sym_delegate] = ACTIONS(5168), - [anon_sym_record] = ACTIONS(5168), - [anon_sym_public] = ACTIONS(5168), - [anon_sym_private] = ACTIONS(5168), - [anon_sym_readonly] = ACTIONS(5168), - [anon_sym_abstract] = ACTIONS(5168), - [anon_sym_async] = ACTIONS(5168), - [anon_sym_const] = ACTIONS(5168), - [anon_sym_file] = ACTIONS(5168), - [anon_sym_fixed] = ACTIONS(5168), - [anon_sym_internal] = ACTIONS(5168), - [anon_sym_new] = ACTIONS(5168), - [anon_sym_override] = ACTIONS(5168), - [anon_sym_partial] = ACTIONS(5168), - [anon_sym_protected] = ACTIONS(5168), - [anon_sym_required] = ACTIONS(5168), - [anon_sym_sealed] = ACTIONS(5168), - [anon_sym_virtual] = ACTIONS(5168), - [anon_sym_volatile] = ACTIONS(5168), - [anon_sym_where] = ACTIONS(5168), - [anon_sym_notnull] = ACTIONS(5168), - [anon_sym_unmanaged] = ACTIONS(5168), - [anon_sym_TILDE] = ACTIONS(5170), - [anon_sym_implicit] = ACTIONS(5168), - [anon_sym_explicit] = ACTIONS(5168), - [anon_sym_scoped] = ACTIONS(5168), - [anon_sym_var] = ACTIONS(5168), - [sym_predefined_type] = ACTIONS(5168), - [anon_sym_yield] = ACTIONS(5168), - [anon_sym_when] = 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_ascending] = ACTIONS(5168), - [anon_sym_descending] = ACTIONS(5168), - [anon_sym_group] = ACTIONS(5168), - [anon_sym_by] = ACTIONS(5168), - [anon_sym_select] = ACTIONS(5168), - [sym_grit_metavariable] = ACTIONS(5170), - [aux_sym_preproc_if_token1] = ACTIONS(5170), - [aux_sym_preproc_if_token3] = ACTIONS(5170), - [aux_sym_preproc_else_token1] = ACTIONS(5170), - [aux_sym_preproc_elif_token1] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5328), + [anon_sym_QMARK] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5330), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5282), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5328), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480650,27 +480320,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2964] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2964), [sym_preproc_endregion] = STATE(2964), [sym_preproc_line] = STATE(2964), @@ -480680,49 +480344,53 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4956), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4960), - [anon_sym_from] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_join] = ACTIONS(4790), - [anon_sym_let] = ACTIONS(4790), - [anon_sym_orderby] = ACTIONS(4790), - [anon_sym_group] = ACTIONS(4790), - [anon_sym_select] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480735,6 +480403,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2965] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2965), [sym_preproc_endregion] = STATE(2965), [sym_preproc_line] = STATE(2965), @@ -480744,70 +480427,53 @@ 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), - [sym__identifier_token] = ACTIONS(5172), - [anon_sym_extern] = ACTIONS(5172), - [anon_sym_alias] = ACTIONS(5172), - [anon_sym_global] = ACTIONS(5172), - [anon_sym_using] = ACTIONS(5172), - [anon_sym_unsafe] = ACTIONS(5172), - [anon_sym_static] = ACTIONS(5172), - [anon_sym_LBRACK] = ACTIONS(5174), - [anon_sym_LPAREN] = ACTIONS(5174), - [anon_sym_event] = ACTIONS(5172), - [anon_sym_namespace] = ACTIONS(5172), - [anon_sym_class] = ACTIONS(5172), - [anon_sym_ref] = ACTIONS(5172), - [anon_sym_struct] = ACTIONS(5172), - [anon_sym_enum] = ACTIONS(5172), - [anon_sym_RBRACE] = ACTIONS(5174), - [anon_sym_interface] = ACTIONS(5172), - [anon_sym_delegate] = ACTIONS(5172), - [anon_sym_record] = ACTIONS(5172), - [anon_sym_public] = ACTIONS(5172), - [anon_sym_private] = ACTIONS(5172), - [anon_sym_readonly] = ACTIONS(5172), - [anon_sym_abstract] = ACTIONS(5172), - [anon_sym_async] = ACTIONS(5172), - [anon_sym_const] = ACTIONS(5172), - [anon_sym_file] = ACTIONS(5172), - [anon_sym_fixed] = ACTIONS(5172), - [anon_sym_internal] = ACTIONS(5172), - [anon_sym_new] = ACTIONS(5172), - [anon_sym_override] = ACTIONS(5172), - [anon_sym_partial] = ACTIONS(5172), - [anon_sym_protected] = ACTIONS(5172), - [anon_sym_required] = ACTIONS(5172), - [anon_sym_sealed] = ACTIONS(5172), - [anon_sym_virtual] = ACTIONS(5172), - [anon_sym_volatile] = ACTIONS(5172), - [anon_sym_where] = ACTIONS(5172), - [anon_sym_notnull] = ACTIONS(5172), - [anon_sym_unmanaged] = ACTIONS(5172), - [anon_sym_TILDE] = ACTIONS(5174), - [anon_sym_implicit] = ACTIONS(5172), - [anon_sym_explicit] = ACTIONS(5172), - [anon_sym_scoped] = ACTIONS(5172), - [anon_sym_var] = ACTIONS(5172), - [sym_predefined_type] = ACTIONS(5172), - [anon_sym_yield] = ACTIONS(5172), - [anon_sym_when] = 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_ascending] = ACTIONS(5172), - [anon_sym_descending] = ACTIONS(5172), - [anon_sym_group] = ACTIONS(5172), - [anon_sym_by] = ACTIONS(5172), - [anon_sym_select] = ACTIONS(5172), - [sym_grit_metavariable] = ACTIONS(5174), - [aux_sym_preproc_if_token1] = ACTIONS(5174), - [aux_sym_preproc_if_token3] = ACTIONS(5174), - [aux_sym_preproc_else_token1] = ACTIONS(5174), - [aux_sym_preproc_elif_token1] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5334), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5282), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5332), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480820,27 +480486,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2966] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2966), [sym_preproc_endregion] = STATE(2966), [sym_preproc_line] = STATE(2966), @@ -480850,49 +480510,53 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4956), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4770), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4960), - [anon_sym_from] = ACTIONS(4770), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_join] = ACTIONS(4770), - [anon_sym_let] = ACTIONS(4770), - [anon_sym_orderby] = ACTIONS(4770), - [anon_sym_group] = ACTIONS(4770), - [anon_sym_select] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480905,6 +480569,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2967] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2967), [sym_preproc_endregion] = STATE(2967), [sym_preproc_line] = STATE(2967), @@ -480914,69 +480593,53 @@ 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), - [sym__identifier_token] = ACTIONS(4351), - [anon_sym_alias] = ACTIONS(4351), - [anon_sym_global] = ACTIONS(4351), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COLON] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(4353), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_file] = ACTIONS(4351), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_where] = ACTIONS(4351), - [anon_sym_QMARK] = ACTIONS(4351), - [anon_sym_notnull] = ACTIONS(4351), - [anon_sym_unmanaged] = ACTIONS(4351), - [anon_sym_BANG] = ACTIONS(4351), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_SLASH] = ACTIONS(4351), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_AMP] = ACTIONS(4351), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4351), - [anon_sym_GT_GT_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_scoped] = ACTIONS(4351), - [anon_sym_var] = ACTIONS(4351), - [anon_sym_yield] = ACTIONS(4351), - [anon_sym_switch] = ACTIONS(4351), - [anon_sym_when] = ACTIONS(4351), - [sym_discard] = ACTIONS(4351), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_and] = ACTIONS(4351), - [anon_sym_or] = ACTIONS(4351), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [sym_op_coalescing] = ACTIONS(4353), - [anon_sym_from] = ACTIONS(4351), - [anon_sym_into] = ACTIONS(4351), - [anon_sym_join] = ACTIONS(4351), - [anon_sym_on] = ACTIONS(4351), - [anon_sym_equals] = ACTIONS(4351), - [anon_sym_let] = ACTIONS(4351), - [anon_sym_orderby] = ACTIONS(4351), - [anon_sym_ascending] = ACTIONS(4351), - [anon_sym_descending] = ACTIONS(4351), - [anon_sym_group] = ACTIONS(4351), - [anon_sym_by] = ACTIONS(4351), - [anon_sym_select] = ACTIONS(4351), - [anon_sym_as] = ACTIONS(4351), - [anon_sym_is] = ACTIONS(4351), - [anon_sym_DASH_GT] = ACTIONS(4353), - [anon_sym_with] = ACTIONS(4351), - [sym_grit_metavariable] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480987,9 +480650,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4353), }, [2968] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2968), [sym_preproc_endregion] = STATE(2968), [sym_preproc_line] = STATE(2968), @@ -480999,70 +480676,53 @@ 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), - [sym__identifier_token] = ACTIONS(5176), - [anon_sym_extern] = ACTIONS(5176), - [anon_sym_alias] = ACTIONS(5176), - [anon_sym_global] = ACTIONS(5176), - [anon_sym_using] = ACTIONS(5176), - [anon_sym_unsafe] = ACTIONS(5176), - [anon_sym_static] = ACTIONS(5176), - [anon_sym_LBRACK] = ACTIONS(5178), - [anon_sym_LPAREN] = ACTIONS(5178), - [anon_sym_event] = ACTIONS(5176), - [anon_sym_namespace] = ACTIONS(5176), - [anon_sym_class] = ACTIONS(5176), - [anon_sym_ref] = ACTIONS(5176), - [anon_sym_struct] = ACTIONS(5176), - [anon_sym_enum] = ACTIONS(5176), - [anon_sym_RBRACE] = ACTIONS(5178), - [anon_sym_interface] = ACTIONS(5176), - [anon_sym_delegate] = ACTIONS(5176), - [anon_sym_record] = ACTIONS(5176), - [anon_sym_public] = ACTIONS(5176), - [anon_sym_private] = ACTIONS(5176), - [anon_sym_readonly] = ACTIONS(5176), - [anon_sym_abstract] = ACTIONS(5176), - [anon_sym_async] = ACTIONS(5176), - [anon_sym_const] = ACTIONS(5176), - [anon_sym_file] = ACTIONS(5176), - [anon_sym_fixed] = ACTIONS(5176), - [anon_sym_internal] = ACTIONS(5176), - [anon_sym_new] = ACTIONS(5176), - [anon_sym_override] = ACTIONS(5176), - [anon_sym_partial] = ACTIONS(5176), - [anon_sym_protected] = ACTIONS(5176), - [anon_sym_required] = ACTIONS(5176), - [anon_sym_sealed] = ACTIONS(5176), - [anon_sym_virtual] = ACTIONS(5176), - [anon_sym_volatile] = ACTIONS(5176), - [anon_sym_where] = ACTIONS(5176), - [anon_sym_notnull] = ACTIONS(5176), - [anon_sym_unmanaged] = ACTIONS(5176), - [anon_sym_TILDE] = ACTIONS(5178), - [anon_sym_implicit] = ACTIONS(5176), - [anon_sym_explicit] = ACTIONS(5176), - [anon_sym_scoped] = ACTIONS(5176), - [anon_sym_var] = ACTIONS(5176), - [sym_predefined_type] = ACTIONS(5176), - [anon_sym_yield] = ACTIONS(5176), - [anon_sym_when] = 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_ascending] = ACTIONS(5176), - [anon_sym_descending] = ACTIONS(5176), - [anon_sym_group] = ACTIONS(5176), - [anon_sym_by] = ACTIONS(5176), - [anon_sym_select] = ACTIONS(5176), - [sym_grit_metavariable] = ACTIONS(5178), - [aux_sym_preproc_if_token1] = ACTIONS(5178), - [aux_sym_preproc_if_token3] = ACTIONS(5178), - [aux_sym_preproc_else_token1] = ACTIONS(5178), - [aux_sym_preproc_elif_token1] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5282), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5336), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481075,27 +480735,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2969] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), + [sym_attribute_list] = STATE(3187), + [sym__attribute_list] = STATE(3186), + [sym_preproc_if_in_attribute_list] = STATE(3187), [sym_preproc_region] = STATE(2969), [sym_preproc_endregion] = STATE(2969), [sym_preproc_line] = STATE(2969), @@ -481105,49 +480747,65 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(4956), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4762), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4960), - [anon_sym_from] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_join] = ACTIONS(4760), - [anon_sym_let] = ACTIONS(4760), - [anon_sym_orderby] = ACTIONS(4760), - [anon_sym_group] = ACTIONS(4760), - [anon_sym_select] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2969), + [sym__identifier_token] = ACTIONS(5340), + [anon_sym_extern] = ACTIONS(5340), + [anon_sym_alias] = ACTIONS(5340), + [anon_sym_global] = ACTIONS(5340), + [anon_sym_unsafe] = ACTIONS(5340), + [anon_sym_static] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym_LPAREN] = ACTIONS(5345), + [anon_sym_event] = ACTIONS(5340), + [anon_sym_class] = ACTIONS(5340), + [anon_sym_ref] = ACTIONS(5340), + [anon_sym_struct] = ACTIONS(5340), + [anon_sym_enum] = ACTIONS(5340), + [anon_sym_interface] = ACTIONS(5340), + [anon_sym_delegate] = ACTIONS(5340), + [anon_sym_record] = ACTIONS(5340), + [anon_sym_public] = ACTIONS(5340), + [anon_sym_private] = ACTIONS(5340), + [anon_sym_readonly] = ACTIONS(5340), + [anon_sym_abstract] = ACTIONS(5340), + [anon_sym_async] = ACTIONS(5340), + [anon_sym_const] = ACTIONS(5340), + [anon_sym_file] = ACTIONS(5340), + [anon_sym_fixed] = ACTIONS(5340), + [anon_sym_internal] = ACTIONS(5340), + [anon_sym_new] = ACTIONS(5340), + [anon_sym_override] = ACTIONS(5340), + [anon_sym_partial] = ACTIONS(5340), + [anon_sym_protected] = ACTIONS(5340), + [anon_sym_required] = ACTIONS(5340), + [anon_sym_sealed] = ACTIONS(5340), + [anon_sym_virtual] = ACTIONS(5340), + [anon_sym_volatile] = ACTIONS(5340), + [anon_sym_where] = ACTIONS(5340), + [anon_sym_notnull] = ACTIONS(5340), + [anon_sym_unmanaged] = ACTIONS(5340), + [anon_sym_implicit] = ACTIONS(5340), + [anon_sym_explicit] = ACTIONS(5340), + [anon_sym_TILDE] = ACTIONS(5345), + [anon_sym_scoped] = ACTIONS(5340), + [anon_sym_var] = ACTIONS(5340), + [sym_predefined_type] = ACTIONS(5340), + [anon_sym_yield] = ACTIONS(5340), + [anon_sym_when] = ACTIONS(5340), + [anon_sym_from] = ACTIONS(5340), + [anon_sym_into] = ACTIONS(5340), + [anon_sym_join] = ACTIONS(5340), + [anon_sym_on] = ACTIONS(5340), + [anon_sym_equals] = ACTIONS(5340), + [anon_sym_let] = ACTIONS(5340), + [anon_sym_orderby] = ACTIONS(5340), + [anon_sym_ascending] = ACTIONS(5340), + [anon_sym_descending] = ACTIONS(5340), + [anon_sym_group] = ACTIONS(5340), + [anon_sym_by] = ACTIONS(5340), + [anon_sym_select] = ACTIONS(5340), + [sym_grit_metavariable] = ACTIONS(5345), + [aux_sym_preproc_if_token1] = ACTIONS(5347), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481169,70 +480827,68 @@ 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), - [sym__identifier_token] = ACTIONS(5180), - [anon_sym_extern] = ACTIONS(5180), - [anon_sym_alias] = ACTIONS(5180), - [anon_sym_global] = ACTIONS(5180), - [anon_sym_using] = ACTIONS(5180), - [anon_sym_unsafe] = ACTIONS(5180), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_LBRACK] = ACTIONS(5182), - [anon_sym_LPAREN] = ACTIONS(5182), - [anon_sym_event] = ACTIONS(5180), - [anon_sym_namespace] = ACTIONS(5180), - [anon_sym_class] = ACTIONS(5180), - [anon_sym_ref] = ACTIONS(5180), - [anon_sym_struct] = ACTIONS(5180), - [anon_sym_enum] = ACTIONS(5180), - [anon_sym_RBRACE] = ACTIONS(5182), - [anon_sym_interface] = ACTIONS(5180), - [anon_sym_delegate] = ACTIONS(5180), - [anon_sym_record] = ACTIONS(5180), - [anon_sym_public] = ACTIONS(5180), - [anon_sym_private] = ACTIONS(5180), - [anon_sym_readonly] = ACTIONS(5180), - [anon_sym_abstract] = ACTIONS(5180), - [anon_sym_async] = ACTIONS(5180), - [anon_sym_const] = ACTIONS(5180), - [anon_sym_file] = ACTIONS(5180), - [anon_sym_fixed] = ACTIONS(5180), - [anon_sym_internal] = ACTIONS(5180), - [anon_sym_new] = ACTIONS(5180), - [anon_sym_override] = ACTIONS(5180), - [anon_sym_partial] = ACTIONS(5180), - [anon_sym_protected] = ACTIONS(5180), - [anon_sym_required] = ACTIONS(5180), - [anon_sym_sealed] = ACTIONS(5180), - [anon_sym_virtual] = ACTIONS(5180), - [anon_sym_volatile] = ACTIONS(5180), - [anon_sym_where] = ACTIONS(5180), - [anon_sym_notnull] = ACTIONS(5180), - [anon_sym_unmanaged] = ACTIONS(5180), - [anon_sym_TILDE] = ACTIONS(5182), - [anon_sym_implicit] = ACTIONS(5180), - [anon_sym_explicit] = ACTIONS(5180), - [anon_sym_scoped] = ACTIONS(5180), - [anon_sym_var] = ACTIONS(5180), - [sym_predefined_type] = ACTIONS(5180), - [anon_sym_yield] = ACTIONS(5180), - [anon_sym_when] = 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_ascending] = ACTIONS(5180), - [anon_sym_descending] = ACTIONS(5180), - [anon_sym_group] = ACTIONS(5180), - [anon_sym_by] = ACTIONS(5180), - [anon_sym_select] = ACTIONS(5180), - [sym_grit_metavariable] = ACTIONS(5182), - [aux_sym_preproc_if_token1] = ACTIONS(5182), - [aux_sym_preproc_if_token3] = ACTIONS(5182), - [aux_sym_preproc_else_token1] = ACTIONS(5182), - [aux_sym_preproc_elif_token1] = ACTIONS(5182), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5350), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481245,6 +480901,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2971] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2971), [sym_preproc_endregion] = STATE(2971), [sym_preproc_line] = STATE(2971), @@ -481254,70 +480925,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2971), [sym_preproc_define] = STATE(2971), [sym_preproc_undef] = STATE(2971), - [sym__identifier_token] = ACTIONS(5184), - [anon_sym_extern] = ACTIONS(5184), - [anon_sym_alias] = ACTIONS(5184), - [anon_sym_global] = ACTIONS(5184), - [anon_sym_using] = ACTIONS(5184), - [anon_sym_unsafe] = ACTIONS(5184), - [anon_sym_static] = ACTIONS(5184), - [anon_sym_LBRACK] = ACTIONS(5186), - [anon_sym_LPAREN] = ACTIONS(5186), - [anon_sym_event] = ACTIONS(5184), - [anon_sym_namespace] = ACTIONS(5184), - [anon_sym_class] = ACTIONS(5184), - [anon_sym_ref] = ACTIONS(5184), - [anon_sym_struct] = ACTIONS(5184), - [anon_sym_enum] = ACTIONS(5184), - [anon_sym_RBRACE] = ACTIONS(5186), - [anon_sym_interface] = ACTIONS(5184), - [anon_sym_delegate] = ACTIONS(5184), - [anon_sym_record] = ACTIONS(5184), - [anon_sym_public] = ACTIONS(5184), - [anon_sym_private] = ACTIONS(5184), - [anon_sym_readonly] = ACTIONS(5184), - [anon_sym_abstract] = ACTIONS(5184), - [anon_sym_async] = ACTIONS(5184), - [anon_sym_const] = ACTIONS(5184), - [anon_sym_file] = ACTIONS(5184), - [anon_sym_fixed] = ACTIONS(5184), - [anon_sym_internal] = ACTIONS(5184), - [anon_sym_new] = ACTIONS(5184), - [anon_sym_override] = ACTIONS(5184), - [anon_sym_partial] = ACTIONS(5184), - [anon_sym_protected] = ACTIONS(5184), - [anon_sym_required] = ACTIONS(5184), - [anon_sym_sealed] = ACTIONS(5184), - [anon_sym_virtual] = ACTIONS(5184), - [anon_sym_volatile] = ACTIONS(5184), - [anon_sym_where] = ACTIONS(5184), - [anon_sym_notnull] = ACTIONS(5184), - [anon_sym_unmanaged] = ACTIONS(5184), - [anon_sym_TILDE] = ACTIONS(5186), - [anon_sym_implicit] = ACTIONS(5184), - [anon_sym_explicit] = ACTIONS(5184), - [anon_sym_scoped] = ACTIONS(5184), - [anon_sym_var] = ACTIONS(5184), - [sym_predefined_type] = ACTIONS(5184), - [anon_sym_yield] = ACTIONS(5184), - [anon_sym_when] = 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_ascending] = ACTIONS(5184), - [anon_sym_descending] = ACTIONS(5184), - [anon_sym_group] = ACTIONS(5184), - [anon_sym_by] = ACTIONS(5184), - [anon_sym_select] = ACTIONS(5184), - [sym_grit_metavariable] = ACTIONS(5186), - [aux_sym_preproc_if_token1] = ACTIONS(5186), - [aux_sym_preproc_if_token3] = ACTIONS(5186), - [aux_sym_preproc_else_token1] = ACTIONS(5186), - [aux_sym_preproc_elif_token1] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_where] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5354), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5292), + [anon_sym_with] = ACTIONS(5352), + [sym_grit_metavariable] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481339,242 +480993,236 @@ 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), - [sym__identifier_token] = ACTIONS(5188), - [anon_sym_extern] = ACTIONS(5188), - [anon_sym_alias] = ACTIONS(5188), - [anon_sym_global] = ACTIONS(5188), - [anon_sym_using] = ACTIONS(5188), - [anon_sym_unsafe] = ACTIONS(5188), - [anon_sym_static] = ACTIONS(5188), - [anon_sym_LBRACK] = ACTIONS(5190), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_event] = ACTIONS(5188), - [anon_sym_namespace] = ACTIONS(5188), - [anon_sym_class] = ACTIONS(5188), - [anon_sym_ref] = ACTIONS(5188), - [anon_sym_struct] = ACTIONS(5188), - [anon_sym_enum] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(5190), - [anon_sym_interface] = ACTIONS(5188), - [anon_sym_delegate] = ACTIONS(5188), - [anon_sym_record] = ACTIONS(5188), - [anon_sym_public] = ACTIONS(5188), - [anon_sym_private] = ACTIONS(5188), - [anon_sym_readonly] = ACTIONS(5188), - [anon_sym_abstract] = ACTIONS(5188), - [anon_sym_async] = ACTIONS(5188), - [anon_sym_const] = ACTIONS(5188), - [anon_sym_file] = ACTIONS(5188), - [anon_sym_fixed] = ACTIONS(5188), - [anon_sym_internal] = ACTIONS(5188), - [anon_sym_new] = ACTIONS(5188), - [anon_sym_override] = ACTIONS(5188), - [anon_sym_partial] = ACTIONS(5188), - [anon_sym_protected] = ACTIONS(5188), - [anon_sym_required] = ACTIONS(5188), - [anon_sym_sealed] = ACTIONS(5188), - [anon_sym_virtual] = ACTIONS(5188), - [anon_sym_volatile] = ACTIONS(5188), - [anon_sym_where] = ACTIONS(5188), - [anon_sym_notnull] = ACTIONS(5188), - [anon_sym_unmanaged] = ACTIONS(5188), - [anon_sym_TILDE] = ACTIONS(5190), - [anon_sym_implicit] = ACTIONS(5188), - [anon_sym_explicit] = ACTIONS(5188), - [anon_sym_scoped] = ACTIONS(5188), - [anon_sym_var] = ACTIONS(5188), - [sym_predefined_type] = ACTIONS(5188), - [anon_sym_yield] = ACTIONS(5188), - [anon_sym_when] = 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_ascending] = ACTIONS(5188), - [anon_sym_descending] = ACTIONS(5188), - [anon_sym_group] = ACTIONS(5188), - [anon_sym_by] = ACTIONS(5188), - [anon_sym_select] = ACTIONS(5188), - [sym_grit_metavariable] = ACTIONS(5190), - [aux_sym_preproc_if_token1] = ACTIONS(5190), - [aux_sym_preproc_if_token3] = ACTIONS(5190), - [aux_sym_preproc_else_token1] = ACTIONS(5190), - [aux_sym_preproc_elif_token1] = ACTIONS(5190), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2973] = { - [sym_preproc_region] = STATE(2973), - [sym_preproc_endregion] = STATE(2973), - [sym_preproc_line] = STATE(2973), - [sym_preproc_pragma] = STATE(2973), - [sym_preproc_nullable] = STATE(2973), - [sym_preproc_error] = STATE(2973), - [sym_preproc_warning] = STATE(2973), - [sym_preproc_define] = STATE(2973), - [sym_preproc_undef] = STATE(2973), - [sym__identifier_token] = ACTIONS(5192), - [anon_sym_extern] = ACTIONS(5192), - [anon_sym_alias] = ACTIONS(5192), - [anon_sym_global] = ACTIONS(5192), - [anon_sym_using] = ACTIONS(5192), - [anon_sym_unsafe] = ACTIONS(5192), - [anon_sym_static] = ACTIONS(5192), - [anon_sym_LBRACK] = ACTIONS(5194), - [anon_sym_LPAREN] = ACTIONS(5194), - [anon_sym_event] = ACTIONS(5192), - [anon_sym_namespace] = ACTIONS(5192), - [anon_sym_class] = ACTIONS(5192), - [anon_sym_ref] = ACTIONS(5192), - [anon_sym_struct] = ACTIONS(5192), - [anon_sym_enum] = ACTIONS(5192), - [anon_sym_RBRACE] = ACTIONS(5194), - [anon_sym_interface] = ACTIONS(5192), - [anon_sym_delegate] = ACTIONS(5192), - [anon_sym_record] = ACTIONS(5192), - [anon_sym_public] = ACTIONS(5192), - [anon_sym_private] = ACTIONS(5192), - [anon_sym_readonly] = ACTIONS(5192), - [anon_sym_abstract] = ACTIONS(5192), - [anon_sym_async] = ACTIONS(5192), - [anon_sym_const] = ACTIONS(5192), - [anon_sym_file] = ACTIONS(5192), - [anon_sym_fixed] = ACTIONS(5192), - [anon_sym_internal] = ACTIONS(5192), - [anon_sym_new] = ACTIONS(5192), - [anon_sym_override] = ACTIONS(5192), - [anon_sym_partial] = ACTIONS(5192), - [anon_sym_protected] = ACTIONS(5192), - [anon_sym_required] = ACTIONS(5192), - [anon_sym_sealed] = ACTIONS(5192), - [anon_sym_virtual] = ACTIONS(5192), - [anon_sym_volatile] = ACTIONS(5192), - [anon_sym_where] = ACTIONS(5192), - [anon_sym_notnull] = ACTIONS(5192), - [anon_sym_unmanaged] = ACTIONS(5192), - [anon_sym_TILDE] = ACTIONS(5194), - [anon_sym_implicit] = ACTIONS(5192), - [anon_sym_explicit] = ACTIONS(5192), - [anon_sym_scoped] = ACTIONS(5192), - [anon_sym_var] = ACTIONS(5192), - [sym_predefined_type] = ACTIONS(5192), - [anon_sym_yield] = ACTIONS(5192), - [anon_sym_when] = ACTIONS(5192), - [anon_sym_from] = ACTIONS(5192), - [anon_sym_into] = ACTIONS(5192), - [anon_sym_join] = ACTIONS(5192), - [anon_sym_on] = ACTIONS(5192), - [anon_sym_equals] = ACTIONS(5192), - [anon_sym_let] = ACTIONS(5192), - [anon_sym_orderby] = ACTIONS(5192), - [anon_sym_ascending] = ACTIONS(5192), - [anon_sym_descending] = ACTIONS(5192), - [anon_sym_group] = ACTIONS(5192), - [anon_sym_by] = ACTIONS(5192), - [anon_sym_select] = ACTIONS(5192), - [sym_grit_metavariable] = ACTIONS(5194), - [aux_sym_preproc_if_token1] = ACTIONS(5194), - [aux_sym_preproc_if_token3] = ACTIONS(5194), - [aux_sym_preproc_else_token1] = ACTIONS(5194), - [aux_sym_preproc_elif_token1] = ACTIONS(5194), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2974] = { - [sym_preproc_region] = STATE(2974), - [sym_preproc_endregion] = STATE(2974), - [sym_preproc_line] = STATE(2974), - [sym_preproc_pragma] = STATE(2974), - [sym_preproc_nullable] = STATE(2974), - [sym_preproc_error] = STATE(2974), - [sym_preproc_warning] = STATE(2974), - [sym_preproc_define] = STATE(2974), - [sym_preproc_undef] = STATE(2974), - [sym__identifier_token] = ACTIONS(5196), - [anon_sym_extern] = ACTIONS(5196), - [anon_sym_alias] = ACTIONS(5196), - [anon_sym_global] = ACTIONS(5196), - [anon_sym_using] = ACTIONS(5196), - [anon_sym_unsafe] = ACTIONS(5196), - [anon_sym_static] = ACTIONS(5196), - [anon_sym_LBRACK] = ACTIONS(5198), - [anon_sym_LPAREN] = ACTIONS(5198), - [anon_sym_event] = ACTIONS(5196), - [anon_sym_namespace] = ACTIONS(5196), - [anon_sym_class] = ACTIONS(5196), - [anon_sym_ref] = ACTIONS(5196), - [anon_sym_struct] = ACTIONS(5196), - [anon_sym_enum] = ACTIONS(5196), - [anon_sym_RBRACE] = ACTIONS(5198), - [anon_sym_interface] = ACTIONS(5196), - [anon_sym_delegate] = ACTIONS(5196), - [anon_sym_record] = ACTIONS(5196), - [anon_sym_public] = ACTIONS(5196), - [anon_sym_private] = ACTIONS(5196), - [anon_sym_readonly] = ACTIONS(5196), - [anon_sym_abstract] = ACTIONS(5196), - [anon_sym_async] = ACTIONS(5196), - [anon_sym_const] = ACTIONS(5196), - [anon_sym_file] = ACTIONS(5196), - [anon_sym_fixed] = ACTIONS(5196), - [anon_sym_internal] = ACTIONS(5196), - [anon_sym_new] = ACTIONS(5196), - [anon_sym_override] = ACTIONS(5196), - [anon_sym_partial] = ACTIONS(5196), - [anon_sym_protected] = ACTIONS(5196), - [anon_sym_required] = ACTIONS(5196), - [anon_sym_sealed] = ACTIONS(5196), - [anon_sym_virtual] = ACTIONS(5196), - [anon_sym_volatile] = ACTIONS(5196), - [anon_sym_where] = ACTIONS(5196), - [anon_sym_notnull] = ACTIONS(5196), - [anon_sym_unmanaged] = ACTIONS(5196), - [anon_sym_TILDE] = ACTIONS(5198), - [anon_sym_implicit] = ACTIONS(5196), - [anon_sym_explicit] = ACTIONS(5196), - [anon_sym_scoped] = ACTIONS(5196), - [anon_sym_var] = ACTIONS(5196), - [sym_predefined_type] = ACTIONS(5196), - [anon_sym_yield] = ACTIONS(5196), - [anon_sym_when] = 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_ascending] = ACTIONS(5196), - [anon_sym_descending] = ACTIONS(5196), - [anon_sym_group] = ACTIONS(5196), - [anon_sym_by] = ACTIONS(5196), - [anon_sym_select] = ACTIONS(5196), - [sym_grit_metavariable] = ACTIONS(5198), - [aux_sym_preproc_if_token1] = ACTIONS(5198), - [aux_sym_preproc_if_token3] = ACTIONS(5198), - [aux_sym_preproc_else_token1] = ACTIONS(5198), - [aux_sym_preproc_elif_token1] = ACTIONS(5198), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2973] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), + [sym_preproc_region] = STATE(2973), + [sym_preproc_endregion] = STATE(2973), + [sym_preproc_line] = STATE(2973), + [sym_preproc_pragma] = STATE(2973), + [sym_preproc_nullable] = STATE(2973), + [sym_preproc_error] = STATE(2973), + [sym_preproc_warning] = STATE(2973), + [sym_preproc_define] = STATE(2973), + [sym_preproc_undef] = STATE(2973), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5356), + [anon_sym_QMARK] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5358), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5282), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5356), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_join] = ACTIONS(5356), + [anon_sym_let] = ACTIONS(5356), + [anon_sym_orderby] = ACTIONS(5356), + [anon_sym_ascending] = ACTIONS(5356), + [anon_sym_descending] = ACTIONS(5356), + [anon_sym_group] = ACTIONS(5356), + [anon_sym_select] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5356), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2974] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), + [sym_preproc_region] = STATE(2974), + [sym_preproc_endregion] = STATE(2974), + [sym_preproc_line] = STATE(2974), + [sym_preproc_pragma] = STATE(2974), + [sym_preproc_nullable] = STATE(2974), + [sym_preproc_error] = STATE(2974), + [sym_preproc_warning] = STATE(2974), + [sym_preproc_define] = STATE(2974), + [sym_preproc_undef] = STATE(2974), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_where] = ACTIONS(5360), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5360), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_join] = ACTIONS(5360), + [anon_sym_let] = ACTIONS(5360), + [anon_sym_orderby] = ACTIONS(5360), + [anon_sym_ascending] = ACTIONS(5360), + [anon_sym_descending] = ACTIONS(5360), + [anon_sym_group] = ACTIONS(5360), + [anon_sym_select] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5362), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5360), + [sym_grit_metavariable] = ACTIONS(5360), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), @@ -481585,6 +481233,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2975] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2975), [sym_preproc_endregion] = STATE(2975), [sym_preproc_line] = STATE(2975), @@ -481594,70 +481257,53 @@ 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), - [sym__identifier_token] = ACTIONS(5200), - [anon_sym_extern] = ACTIONS(5200), - [anon_sym_alias] = ACTIONS(5200), - [anon_sym_global] = ACTIONS(5200), - [anon_sym_using] = ACTIONS(5200), - [anon_sym_unsafe] = ACTIONS(5200), - [anon_sym_static] = ACTIONS(5200), - [anon_sym_LBRACK] = ACTIONS(5202), - [anon_sym_LPAREN] = ACTIONS(5202), - [anon_sym_event] = ACTIONS(5200), - [anon_sym_namespace] = ACTIONS(5200), - [anon_sym_class] = ACTIONS(5200), - [anon_sym_ref] = ACTIONS(5200), - [anon_sym_struct] = ACTIONS(5200), - [anon_sym_enum] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(5202), - [anon_sym_interface] = ACTIONS(5200), - [anon_sym_delegate] = ACTIONS(5200), - [anon_sym_record] = ACTIONS(5200), - [anon_sym_public] = ACTIONS(5200), - [anon_sym_private] = ACTIONS(5200), - [anon_sym_readonly] = ACTIONS(5200), - [anon_sym_abstract] = ACTIONS(5200), - [anon_sym_async] = ACTIONS(5200), - [anon_sym_const] = ACTIONS(5200), - [anon_sym_file] = ACTIONS(5200), - [anon_sym_fixed] = ACTIONS(5200), - [anon_sym_internal] = ACTIONS(5200), - [anon_sym_new] = ACTIONS(5200), - [anon_sym_override] = ACTIONS(5200), - [anon_sym_partial] = ACTIONS(5200), - [anon_sym_protected] = ACTIONS(5200), - [anon_sym_required] = ACTIONS(5200), - [anon_sym_sealed] = ACTIONS(5200), - [anon_sym_virtual] = ACTIONS(5200), - [anon_sym_volatile] = ACTIONS(5200), - [anon_sym_where] = ACTIONS(5200), - [anon_sym_notnull] = ACTIONS(5200), - [anon_sym_unmanaged] = ACTIONS(5200), - [anon_sym_TILDE] = ACTIONS(5202), - [anon_sym_implicit] = ACTIONS(5200), - [anon_sym_explicit] = ACTIONS(5200), - [anon_sym_scoped] = ACTIONS(5200), - [anon_sym_var] = ACTIONS(5200), - [sym_predefined_type] = ACTIONS(5200), - [anon_sym_yield] = ACTIONS(5200), - [anon_sym_when] = 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_ascending] = ACTIONS(5200), - [anon_sym_descending] = ACTIONS(5200), - [anon_sym_group] = ACTIONS(5200), - [anon_sym_by] = ACTIONS(5200), - [anon_sym_select] = ACTIONS(5200), - [sym_grit_metavariable] = ACTIONS(5202), - [aux_sym_preproc_if_token1] = ACTIONS(5202), - [aux_sym_preproc_if_token3] = ACTIONS(5202), - [aux_sym_preproc_else_token1] = ACTIONS(5202), - [aux_sym_preproc_elif_token1] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5366), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5282), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5364), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_join] = ACTIONS(5364), + [anon_sym_let] = ACTIONS(5364), + [anon_sym_orderby] = ACTIONS(5364), + [anon_sym_ascending] = ACTIONS(5364), + [anon_sym_descending] = ACTIONS(5364), + [anon_sym_group] = ACTIONS(5364), + [anon_sym_select] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5288), + [anon_sym_is] = ACTIONS(5290), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5364), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481670,6 +481316,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2976] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2976), [sym_preproc_endregion] = STATE(2976), [sym_preproc_line] = STATE(2976), @@ -481679,70 +481340,53 @@ 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), - [sym__identifier_token] = ACTIONS(5204), - [anon_sym_extern] = ACTIONS(5204), - [anon_sym_alias] = ACTIONS(5204), - [anon_sym_global] = ACTIONS(5204), - [anon_sym_using] = ACTIONS(5204), - [anon_sym_unsafe] = ACTIONS(5204), - [anon_sym_static] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(5206), - [anon_sym_LPAREN] = ACTIONS(5206), - [anon_sym_event] = ACTIONS(5204), - [anon_sym_namespace] = ACTIONS(5204), - [anon_sym_class] = ACTIONS(5204), - [anon_sym_ref] = ACTIONS(5204), - [anon_sym_struct] = ACTIONS(5204), - [anon_sym_enum] = ACTIONS(5204), - [anon_sym_RBRACE] = ACTIONS(5206), - [anon_sym_interface] = ACTIONS(5204), - [anon_sym_delegate] = ACTIONS(5204), - [anon_sym_record] = ACTIONS(5204), - [anon_sym_public] = ACTIONS(5204), - [anon_sym_private] = ACTIONS(5204), - [anon_sym_readonly] = ACTIONS(5204), - [anon_sym_abstract] = ACTIONS(5204), - [anon_sym_async] = ACTIONS(5204), - [anon_sym_const] = ACTIONS(5204), - [anon_sym_file] = ACTIONS(5204), - [anon_sym_fixed] = ACTIONS(5204), - [anon_sym_internal] = ACTIONS(5204), - [anon_sym_new] = ACTIONS(5204), - [anon_sym_override] = ACTIONS(5204), - [anon_sym_partial] = ACTIONS(5204), - [anon_sym_protected] = ACTIONS(5204), - [anon_sym_required] = ACTIONS(5204), - [anon_sym_sealed] = ACTIONS(5204), - [anon_sym_virtual] = ACTIONS(5204), - [anon_sym_volatile] = ACTIONS(5204), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_notnull] = ACTIONS(5204), - [anon_sym_unmanaged] = ACTIONS(5204), - [anon_sym_TILDE] = ACTIONS(5206), - [anon_sym_implicit] = ACTIONS(5204), - [anon_sym_explicit] = ACTIONS(5204), - [anon_sym_scoped] = ACTIONS(5204), - [anon_sym_var] = ACTIONS(5204), - [sym_predefined_type] = ACTIONS(5204), - [anon_sym_yield] = ACTIONS(5204), - [anon_sym_when] = 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_ascending] = ACTIONS(5204), - [anon_sym_descending] = ACTIONS(5204), - [anon_sym_group] = ACTIONS(5204), - [anon_sym_by] = ACTIONS(5204), - [anon_sym_select] = ACTIONS(5204), - [sym_grit_metavariable] = ACTIONS(5206), - [aux_sym_preproc_if_token1] = ACTIONS(5206), - [aux_sym_preproc_if_token3] = ACTIONS(5206), - [aux_sym_preproc_else_token1] = ACTIONS(5206), - [aux_sym_preproc_elif_token1] = ACTIONS(5206), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_where] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(1365), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_join] = ACTIONS(1365), + [anon_sym_let] = ACTIONS(1365), + [anon_sym_orderby] = ACTIONS(1365), + [anon_sym_ascending] = ACTIONS(1365), + [anon_sym_descending] = ACTIONS(1365), + [anon_sym_group] = ACTIONS(1365), + [anon_sym_select] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(1365), + [sym_grit_metavariable] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481764,70 +481408,68 @@ 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(5208), - [anon_sym_extern] = ACTIONS(5208), - [anon_sym_alias] = ACTIONS(5208), - [anon_sym_global] = ACTIONS(5208), - [anon_sym_using] = ACTIONS(5208), - [anon_sym_unsafe] = ACTIONS(5208), - [anon_sym_static] = ACTIONS(5208), - [anon_sym_LBRACK] = ACTIONS(5210), - [anon_sym_LPAREN] = ACTIONS(5210), - [anon_sym_event] = ACTIONS(5208), - [anon_sym_namespace] = ACTIONS(5208), - [anon_sym_class] = ACTIONS(5208), - [anon_sym_ref] = ACTIONS(5208), - [anon_sym_struct] = ACTIONS(5208), - [anon_sym_enum] = ACTIONS(5208), - [anon_sym_RBRACE] = ACTIONS(5210), - [anon_sym_interface] = ACTIONS(5208), - [anon_sym_delegate] = ACTIONS(5208), - [anon_sym_record] = ACTIONS(5208), - [anon_sym_public] = ACTIONS(5208), - [anon_sym_private] = ACTIONS(5208), - [anon_sym_readonly] = ACTIONS(5208), - [anon_sym_abstract] = ACTIONS(5208), - [anon_sym_async] = ACTIONS(5208), - [anon_sym_const] = ACTIONS(5208), - [anon_sym_file] = ACTIONS(5208), - [anon_sym_fixed] = ACTIONS(5208), - [anon_sym_internal] = ACTIONS(5208), - [anon_sym_new] = ACTIONS(5208), - [anon_sym_override] = ACTIONS(5208), - [anon_sym_partial] = ACTIONS(5208), - [anon_sym_protected] = ACTIONS(5208), - [anon_sym_required] = ACTIONS(5208), - [anon_sym_sealed] = ACTIONS(5208), - [anon_sym_virtual] = ACTIONS(5208), - [anon_sym_volatile] = ACTIONS(5208), - [anon_sym_where] = ACTIONS(5208), - [anon_sym_notnull] = ACTIONS(5208), - [anon_sym_unmanaged] = ACTIONS(5208), - [anon_sym_TILDE] = ACTIONS(5210), - [anon_sym_implicit] = ACTIONS(5208), - [anon_sym_explicit] = ACTIONS(5208), - [anon_sym_scoped] = ACTIONS(5208), - [anon_sym_var] = ACTIONS(5208), - [sym_predefined_type] = ACTIONS(5208), - [anon_sym_yield] = ACTIONS(5208), - [anon_sym_when] = 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_ascending] = ACTIONS(5208), - [anon_sym_descending] = ACTIONS(5208), - [anon_sym_group] = ACTIONS(5208), - [anon_sym_by] = ACTIONS(5208), - [anon_sym_select] = ACTIONS(5208), - [sym_grit_metavariable] = ACTIONS(5210), - [aux_sym_preproc_if_token1] = ACTIONS(5210), - [aux_sym_preproc_if_token3] = ACTIONS(5210), - [aux_sym_preproc_else_token1] = ACTIONS(5210), - [aux_sym_preproc_elif_token1] = ACTIONS(5210), + [sym__identifier_token] = ACTIONS(4395), + [anon_sym_alias] = ACTIONS(4395), + [anon_sym_global] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_file] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4395), + [anon_sym_GT] = ACTIONS(4395), + [anon_sym_where] = ACTIONS(4395), + [anon_sym_QMARK] = ACTIONS(4395), + [anon_sym_notnull] = ACTIONS(4395), + [anon_sym_unmanaged] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_scoped] = ACTIONS(4395), + [anon_sym_EQ_GT] = ACTIONS(4397), + [anon_sym_var] = ACTIONS(4395), + [anon_sym_STAR] = ACTIONS(4397), + [anon_sym_yield] = ACTIONS(4395), + [anon_sym_switch] = ACTIONS(4395), + [anon_sym_when] = ACTIONS(4395), + [sym_discard] = ACTIONS(4395), + [anon_sym_DOT_DOT] = ACTIONS(4397), + [anon_sym_LT_EQ] = ACTIONS(4397), + [anon_sym_GT_EQ] = ACTIONS(4397), + [anon_sym_and] = ACTIONS(4395), + [anon_sym_or] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_AMP_AMP] = ACTIONS(4397), + [anon_sym_PIPE_PIPE] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4395), + [sym_op_bitwise_or] = ACTIONS(4395), + [anon_sym_CARET] = ACTIONS(4397), + [sym_op_left_shift] = ACTIONS(4397), + [sym_op_right_shift] = ACTIONS(4395), + [sym_op_unsigned_right_shift] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4395), + [anon_sym_DASH] = ACTIONS(4395), + [sym_op_divide] = ACTIONS(4395), + [sym_op_modulo] = ACTIONS(4397), + [sym_op_coalescing] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4397), + [anon_sym_from] = ACTIONS(4395), + [anon_sym_into] = ACTIONS(4395), + [anon_sym_join] = ACTIONS(4395), + [anon_sym_on] = ACTIONS(4395), + [anon_sym_equals] = ACTIONS(4395), + [anon_sym_let] = ACTIONS(4395), + [anon_sym_orderby] = ACTIONS(4395), + [anon_sym_ascending] = ACTIONS(4395), + [anon_sym_descending] = ACTIONS(4395), + [anon_sym_group] = ACTIONS(4395), + [anon_sym_by] = ACTIONS(4395), + [anon_sym_select] = ACTIONS(4395), + [anon_sym_as] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4395), + [anon_sym_DASH_GT] = ACTIONS(4397), + [anon_sym_with] = ACTIONS(4395), + [sym_grit_metavariable] = ACTIONS(4397), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481840,6 +481482,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2978] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(2978), [sym_preproc_endregion] = STATE(2978), [sym_preproc_line] = STATE(2978), @@ -481849,70 +481506,53 @@ 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), - [sym__identifier_token] = ACTIONS(5212), - [anon_sym_extern] = ACTIONS(5212), - [anon_sym_alias] = ACTIONS(5212), - [anon_sym_global] = ACTIONS(5212), - [anon_sym_using] = ACTIONS(5212), - [anon_sym_unsafe] = ACTIONS(5212), - [anon_sym_static] = ACTIONS(5212), - [anon_sym_LBRACK] = ACTIONS(5214), - [anon_sym_LPAREN] = ACTIONS(5214), - [anon_sym_event] = ACTIONS(5212), - [anon_sym_namespace] = ACTIONS(5212), - [anon_sym_class] = ACTIONS(5212), - [anon_sym_ref] = ACTIONS(5212), - [anon_sym_struct] = ACTIONS(5212), - [anon_sym_enum] = ACTIONS(5212), - [anon_sym_RBRACE] = ACTIONS(5214), - [anon_sym_interface] = ACTIONS(5212), - [anon_sym_delegate] = ACTIONS(5212), - [anon_sym_record] = ACTIONS(5212), - [anon_sym_public] = ACTIONS(5212), - [anon_sym_private] = ACTIONS(5212), - [anon_sym_readonly] = ACTIONS(5212), - [anon_sym_abstract] = ACTIONS(5212), - [anon_sym_async] = ACTIONS(5212), - [anon_sym_const] = ACTIONS(5212), - [anon_sym_file] = ACTIONS(5212), - [anon_sym_fixed] = ACTIONS(5212), - [anon_sym_internal] = ACTIONS(5212), - [anon_sym_new] = ACTIONS(5212), - [anon_sym_override] = ACTIONS(5212), - [anon_sym_partial] = ACTIONS(5212), - [anon_sym_protected] = ACTIONS(5212), - [anon_sym_required] = ACTIONS(5212), - [anon_sym_sealed] = ACTIONS(5212), - [anon_sym_virtual] = ACTIONS(5212), - [anon_sym_volatile] = ACTIONS(5212), - [anon_sym_where] = ACTIONS(5212), - [anon_sym_notnull] = ACTIONS(5212), - [anon_sym_unmanaged] = ACTIONS(5212), - [anon_sym_TILDE] = ACTIONS(5214), - [anon_sym_implicit] = ACTIONS(5212), - [anon_sym_explicit] = ACTIONS(5212), - [anon_sym_scoped] = ACTIONS(5212), - [anon_sym_var] = ACTIONS(5212), - [sym_predefined_type] = ACTIONS(5212), - [anon_sym_yield] = ACTIONS(5212), - [anon_sym_when] = 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_ascending] = ACTIONS(5212), - [anon_sym_descending] = ACTIONS(5212), - [anon_sym_group] = ACTIONS(5212), - [anon_sym_by] = ACTIONS(5212), - [anon_sym_select] = ACTIONS(5212), - [sym_grit_metavariable] = ACTIONS(5214), - [aux_sym_preproc_if_token1] = ACTIONS(5214), - [aux_sym_preproc_if_token3] = ACTIONS(5214), - [aux_sym_preproc_else_token1] = ACTIONS(5214), - [aux_sym_preproc_elif_token1] = ACTIONS(5214), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481934,70 +481574,67 @@ 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), - [sym__identifier_token] = ACTIONS(5216), - [anon_sym_extern] = ACTIONS(5216), - [anon_sym_alias] = ACTIONS(5216), - [anon_sym_global] = ACTIONS(5216), - [anon_sym_using] = ACTIONS(5216), - [anon_sym_unsafe] = ACTIONS(5216), - [anon_sym_static] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(5218), - [anon_sym_LPAREN] = ACTIONS(5218), - [anon_sym_event] = ACTIONS(5216), - [anon_sym_namespace] = ACTIONS(5216), - [anon_sym_class] = ACTIONS(5216), - [anon_sym_ref] = ACTIONS(5216), - [anon_sym_struct] = ACTIONS(5216), - [anon_sym_enum] = ACTIONS(5216), - [anon_sym_RBRACE] = ACTIONS(5218), - [anon_sym_interface] = ACTIONS(5216), - [anon_sym_delegate] = ACTIONS(5216), - [anon_sym_record] = ACTIONS(5216), - [anon_sym_public] = ACTIONS(5216), - [anon_sym_private] = ACTIONS(5216), - [anon_sym_readonly] = ACTIONS(5216), - [anon_sym_abstract] = ACTIONS(5216), - [anon_sym_async] = ACTIONS(5216), - [anon_sym_const] = ACTIONS(5216), - [anon_sym_file] = ACTIONS(5216), - [anon_sym_fixed] = ACTIONS(5216), - [anon_sym_internal] = ACTIONS(5216), - [anon_sym_new] = ACTIONS(5216), - [anon_sym_override] = ACTIONS(5216), - [anon_sym_partial] = ACTIONS(5216), - [anon_sym_protected] = ACTIONS(5216), - [anon_sym_required] = ACTIONS(5216), - [anon_sym_sealed] = ACTIONS(5216), - [anon_sym_virtual] = ACTIONS(5216), - [anon_sym_volatile] = ACTIONS(5216), - [anon_sym_where] = ACTIONS(5216), - [anon_sym_notnull] = ACTIONS(5216), - [anon_sym_unmanaged] = ACTIONS(5216), - [anon_sym_TILDE] = ACTIONS(5218), - [anon_sym_implicit] = ACTIONS(5216), - [anon_sym_explicit] = ACTIONS(5216), - [anon_sym_scoped] = ACTIONS(5216), - [anon_sym_var] = ACTIONS(5216), - [sym_predefined_type] = ACTIONS(5216), - [anon_sym_yield] = ACTIONS(5216), - [anon_sym_when] = ACTIONS(5216), - [anon_sym_from] = ACTIONS(5216), - [anon_sym_into] = ACTIONS(5216), - [anon_sym_join] = ACTIONS(5216), - [anon_sym_on] = ACTIONS(5216), - [anon_sym_equals] = ACTIONS(5216), - [anon_sym_let] = ACTIONS(5216), - [anon_sym_orderby] = ACTIONS(5216), - [anon_sym_ascending] = ACTIONS(5216), - [anon_sym_descending] = ACTIONS(5216), - [anon_sym_group] = ACTIONS(5216), - [anon_sym_by] = ACTIONS(5216), - [anon_sym_select] = ACTIONS(5216), - [sym_grit_metavariable] = ACTIONS(5218), - [aux_sym_preproc_if_token1] = ACTIONS(5218), - [aux_sym_preproc_if_token3] = ACTIONS(5218), - [aux_sym_preproc_else_token1] = ACTIONS(5218), - [aux_sym_preproc_elif_token1] = ACTIONS(5218), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4552), + [anon_sym_where] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_STAR] = ACTIONS(4552), + [anon_sym_switch] = ACTIONS(4550), + [anon_sym_DOT_DOT] = ACTIONS(4550), + [anon_sym_LT_EQ] = ACTIONS(4550), + [anon_sym_GT_EQ] = ACTIONS(4550), + [anon_sym_and] = ACTIONS(4550), + [anon_sym_or] = ACTIONS(4552), + [anon_sym_PLUS_EQ] = ACTIONS(4550), + [anon_sym_DASH_EQ] = ACTIONS(4550), + [anon_sym_STAR_EQ] = ACTIONS(4550), + [anon_sym_SLASH_EQ] = ACTIONS(4550), + [anon_sym_PERCENT_EQ] = ACTIONS(4550), + [anon_sym_AMP_EQ] = ACTIONS(4550), + [anon_sym_CARET_EQ] = ACTIONS(4550), + [anon_sym_PIPE_EQ] = ACTIONS(4550), + [anon_sym_LT_LT_EQ] = ACTIONS(4550), + [anon_sym_GT_GT_EQ] = ACTIONS(4550), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4550), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4550), + [anon_sym_EQ_EQ] = ACTIONS(4550), + [anon_sym_BANG_EQ] = ACTIONS(4550), + [anon_sym_AMP_AMP] = ACTIONS(4550), + [anon_sym_PIPE_PIPE] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [sym_op_bitwise_or] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [sym_op_left_shift] = ACTIONS(4552), + [sym_op_right_shift] = ACTIONS(4552), + [sym_op_unsigned_right_shift] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4552), + [sym_op_divide] = ACTIONS(4552), + [sym_op_modulo] = ACTIONS(4552), + [sym_op_coalescing] = ACTIONS(4552), + [anon_sym_BANG] = ACTIONS(4552), + [anon_sym_PLUS_PLUS] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4550), + [anon_sym_from] = ACTIONS(4550), + [anon_sym_into] = ACTIONS(4550), + [anon_sym_join] = ACTIONS(4550), + [anon_sym_let] = ACTIONS(4550), + [anon_sym_orderby] = ACTIONS(4550), + [anon_sym_ascending] = ACTIONS(4550), + [anon_sym_descending] = ACTIONS(4550), + [anon_sym_group] = ACTIONS(4550), + [anon_sym_select] = ACTIONS(4550), + [anon_sym_as] = ACTIONS(4552), + [anon_sym_is] = ACTIONS(4550), + [anon_sym_DASH_GT] = ACTIONS(4550), + [anon_sym_with] = ACTIONS(4550), + [sym_grit_metavariable] = ACTIONS(4550), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482010,6 +481647,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2980] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(2980), [sym_preproc_endregion] = STATE(2980), [sym_preproc_line] = STATE(2980), @@ -482019,70 +481671,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2980), [sym_preproc_define] = STATE(2980), [sym_preproc_undef] = STATE(2980), - [sym__identifier_token] = ACTIONS(5220), - [anon_sym_extern] = ACTIONS(5220), - [anon_sym_alias] = ACTIONS(5220), - [anon_sym_global] = ACTIONS(5220), - [anon_sym_using] = ACTIONS(5220), - [anon_sym_unsafe] = ACTIONS(5220), - [anon_sym_static] = ACTIONS(5220), - [anon_sym_LBRACK] = ACTIONS(5222), - [anon_sym_LPAREN] = ACTIONS(5222), - [anon_sym_event] = ACTIONS(5220), - [anon_sym_namespace] = ACTIONS(5220), - [anon_sym_class] = ACTIONS(5220), - [anon_sym_ref] = ACTIONS(5220), - [anon_sym_struct] = ACTIONS(5220), - [anon_sym_enum] = ACTIONS(5220), - [anon_sym_RBRACE] = ACTIONS(5222), - [anon_sym_interface] = ACTIONS(5220), - [anon_sym_delegate] = ACTIONS(5220), - [anon_sym_record] = ACTIONS(5220), - [anon_sym_public] = ACTIONS(5220), - [anon_sym_private] = ACTIONS(5220), - [anon_sym_readonly] = ACTIONS(5220), - [anon_sym_abstract] = ACTIONS(5220), - [anon_sym_async] = ACTIONS(5220), - [anon_sym_const] = ACTIONS(5220), - [anon_sym_file] = ACTIONS(5220), - [anon_sym_fixed] = ACTIONS(5220), - [anon_sym_internal] = ACTIONS(5220), - [anon_sym_new] = ACTIONS(5220), - [anon_sym_override] = ACTIONS(5220), - [anon_sym_partial] = ACTIONS(5220), - [anon_sym_protected] = ACTIONS(5220), - [anon_sym_required] = ACTIONS(5220), - [anon_sym_sealed] = ACTIONS(5220), - [anon_sym_virtual] = ACTIONS(5220), - [anon_sym_volatile] = ACTIONS(5220), - [anon_sym_where] = ACTIONS(5220), - [anon_sym_notnull] = ACTIONS(5220), - [anon_sym_unmanaged] = ACTIONS(5220), - [anon_sym_TILDE] = ACTIONS(5222), - [anon_sym_implicit] = ACTIONS(5220), - [anon_sym_explicit] = ACTIONS(5220), - [anon_sym_scoped] = ACTIONS(5220), - [anon_sym_var] = ACTIONS(5220), - [sym_predefined_type] = ACTIONS(5220), - [anon_sym_yield] = ACTIONS(5220), - [anon_sym_when] = ACTIONS(5220), - [anon_sym_from] = ACTIONS(5220), - [anon_sym_into] = ACTIONS(5220), - [anon_sym_join] = ACTIONS(5220), - [anon_sym_on] = ACTIONS(5220), - [anon_sym_equals] = ACTIONS(5220), - [anon_sym_let] = ACTIONS(5220), - [anon_sym_orderby] = ACTIONS(5220), - [anon_sym_ascending] = ACTIONS(5220), - [anon_sym_descending] = ACTIONS(5220), - [anon_sym_group] = ACTIONS(5220), - [anon_sym_by] = ACTIONS(5220), - [anon_sym_select] = ACTIONS(5220), - [sym_grit_metavariable] = ACTIONS(5222), - [aux_sym_preproc_if_token1] = ACTIONS(5222), - [aux_sym_preproc_if_token3] = ACTIONS(5222), - [aux_sym_preproc_else_token1] = ACTIONS(5222), - [aux_sym_preproc_elif_token1] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_where] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5354), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5292), + [anon_sym_with] = ACTIONS(5352), + [sym_grit_metavariable] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482104,70 +481738,67 @@ 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), - [sym__identifier_token] = ACTIONS(5224), - [anon_sym_extern] = ACTIONS(5224), - [anon_sym_alias] = ACTIONS(5224), - [anon_sym_global] = ACTIONS(5224), - [anon_sym_using] = ACTIONS(5224), - [anon_sym_unsafe] = ACTIONS(5224), - [anon_sym_static] = ACTIONS(5224), - [anon_sym_LBRACK] = ACTIONS(5226), - [anon_sym_LPAREN] = ACTIONS(5226), - [anon_sym_event] = ACTIONS(5224), - [anon_sym_namespace] = ACTIONS(5224), - [anon_sym_class] = ACTIONS(5224), - [anon_sym_ref] = ACTIONS(5224), - [anon_sym_struct] = ACTIONS(5224), - [anon_sym_enum] = ACTIONS(5224), - [anon_sym_RBRACE] = ACTIONS(5226), - [anon_sym_interface] = ACTIONS(5224), - [anon_sym_delegate] = ACTIONS(5224), - [anon_sym_record] = ACTIONS(5224), - [anon_sym_public] = ACTIONS(5224), - [anon_sym_private] = ACTIONS(5224), - [anon_sym_readonly] = ACTIONS(5224), - [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_protected] = 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(5224), - [anon_sym_notnull] = ACTIONS(5224), - [anon_sym_unmanaged] = ACTIONS(5224), - [anon_sym_TILDE] = ACTIONS(5226), - [anon_sym_implicit] = ACTIONS(5224), - [anon_sym_explicit] = ACTIONS(5224), - [anon_sym_scoped] = ACTIONS(5224), - [anon_sym_var] = ACTIONS(5224), - [sym_predefined_type] = ACTIONS(5224), - [anon_sym_yield] = ACTIONS(5224), - [anon_sym_when] = ACTIONS(5224), - [anon_sym_from] = ACTIONS(5224), - [anon_sym_into] = ACTIONS(5224), - [anon_sym_join] = ACTIONS(5224), - [anon_sym_on] = ACTIONS(5224), - [anon_sym_equals] = ACTIONS(5224), - [anon_sym_let] = ACTIONS(5224), - [anon_sym_orderby] = ACTIONS(5224), - [anon_sym_ascending] = ACTIONS(5224), - [anon_sym_descending] = ACTIONS(5224), - [anon_sym_group] = ACTIONS(5224), - [anon_sym_by] = ACTIONS(5224), - [anon_sym_select] = ACTIONS(5224), - [sym_grit_metavariable] = ACTIONS(5226), - [aux_sym_preproc_if_token1] = ACTIONS(5226), - [aux_sym_preproc_if_token3] = ACTIONS(5226), - [aux_sym_preproc_else_token1] = ACTIONS(5226), - [aux_sym_preproc_elif_token1] = ACTIONS(5226), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5368), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482180,6 +481811,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2982] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(2982), [sym_preproc_endregion] = STATE(2982), [sym_preproc_line] = STATE(2982), @@ -482189,70 +481835,52 @@ 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), - [sym__identifier_token] = ACTIONS(5228), - [anon_sym_extern] = ACTIONS(5228), - [anon_sym_alias] = ACTIONS(5228), - [anon_sym_global] = ACTIONS(5228), - [anon_sym_using] = ACTIONS(5228), - [anon_sym_unsafe] = ACTIONS(5228), - [anon_sym_static] = ACTIONS(5228), [anon_sym_LBRACK] = ACTIONS(5230), - [anon_sym_LPAREN] = ACTIONS(5230), - [anon_sym_event] = ACTIONS(5228), - [anon_sym_namespace] = ACTIONS(5228), - [anon_sym_class] = ACTIONS(5228), - [anon_sym_ref] = ACTIONS(5228), - [anon_sym_struct] = ACTIONS(5228), - [anon_sym_enum] = ACTIONS(5228), - [anon_sym_RBRACE] = ACTIONS(5230), - [anon_sym_interface] = ACTIONS(5228), - [anon_sym_delegate] = ACTIONS(5228), - [anon_sym_record] = ACTIONS(5228), - [anon_sym_public] = ACTIONS(5228), - [anon_sym_private] = ACTIONS(5228), - [anon_sym_readonly] = ACTIONS(5228), - [anon_sym_abstract] = ACTIONS(5228), - [anon_sym_async] = ACTIONS(5228), - [anon_sym_const] = ACTIONS(5228), - [anon_sym_file] = ACTIONS(5228), - [anon_sym_fixed] = ACTIONS(5228), - [anon_sym_internal] = ACTIONS(5228), - [anon_sym_new] = ACTIONS(5228), - [anon_sym_override] = ACTIONS(5228), - [anon_sym_partial] = ACTIONS(5228), - [anon_sym_protected] = ACTIONS(5228), - [anon_sym_required] = ACTIONS(5228), - [anon_sym_sealed] = ACTIONS(5228), - [anon_sym_virtual] = ACTIONS(5228), - [anon_sym_volatile] = ACTIONS(5228), - [anon_sym_where] = ACTIONS(5228), - [anon_sym_notnull] = ACTIONS(5228), - [anon_sym_unmanaged] = ACTIONS(5228), - [anon_sym_TILDE] = ACTIONS(5230), - [anon_sym_implicit] = ACTIONS(5228), - [anon_sym_explicit] = ACTIONS(5228), - [anon_sym_scoped] = ACTIONS(5228), - [anon_sym_var] = ACTIONS(5228), - [sym_predefined_type] = ACTIONS(5228), - [anon_sym_yield] = ACTIONS(5228), - [anon_sym_when] = ACTIONS(5228), - [anon_sym_from] = ACTIONS(5228), - [anon_sym_into] = ACTIONS(5228), - [anon_sym_join] = ACTIONS(5228), - [anon_sym_on] = ACTIONS(5228), - [anon_sym_equals] = ACTIONS(5228), - [anon_sym_let] = ACTIONS(5228), - [anon_sym_orderby] = ACTIONS(5228), - [anon_sym_ascending] = ACTIONS(5228), - [anon_sym_descending] = ACTIONS(5228), - [anon_sym_group] = ACTIONS(5228), - [anon_sym_by] = ACTIONS(5228), - [anon_sym_select] = ACTIONS(5228), - [sym_grit_metavariable] = ACTIONS(5230), - [aux_sym_preproc_if_token1] = ACTIONS(5230), - [aux_sym_preproc_if_token3] = ACTIONS(5230), - [aux_sym_preproc_else_token1] = ACTIONS(5230), - [aux_sym_preproc_elif_token1] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482265,6 +481893,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2983] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(2983), [sym_preproc_endregion] = STATE(2983), [sym_preproc_line] = STATE(2983), @@ -482274,69 +481917,52 @@ 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), - [sym__identifier_token] = ACTIONS(4361), - [anon_sym_alias] = ACTIONS(4361), - [anon_sym_global] = ACTIONS(4361), - [anon_sym_LBRACK] = ACTIONS(4363), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_COMMA] = ACTIONS(4363), - [anon_sym_LPAREN] = ACTIONS(4363), - [anon_sym_LBRACE] = ACTIONS(4363), - [anon_sym_file] = ACTIONS(4361), - [anon_sym_LT] = ACTIONS(4361), - [anon_sym_GT] = ACTIONS(4361), - [anon_sym_where] = ACTIONS(4361), - [anon_sym_QMARK] = ACTIONS(4361), - [anon_sym_notnull] = ACTIONS(4361), - [anon_sym_unmanaged] = ACTIONS(4361), - [anon_sym_BANG] = ACTIONS(4361), - [anon_sym_PLUS_PLUS] = ACTIONS(4363), - [anon_sym_DASH_DASH] = ACTIONS(4363), - [anon_sym_PLUS] = ACTIONS(4361), - [anon_sym_DASH] = ACTIONS(4361), - [anon_sym_STAR] = ACTIONS(4363), - [anon_sym_SLASH] = ACTIONS(4361), - [anon_sym_PERCENT] = ACTIONS(4363), - [anon_sym_CARET] = ACTIONS(4363), - [anon_sym_PIPE] = ACTIONS(4361), - [anon_sym_AMP] = ACTIONS(4361), - [anon_sym_LT_LT] = ACTIONS(4363), - [anon_sym_GT_GT] = ACTIONS(4361), - [anon_sym_GT_GT_GT] = ACTIONS(4363), - [anon_sym_EQ_EQ] = ACTIONS(4363), - [anon_sym_BANG_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_DOT] = ACTIONS(4361), - [anon_sym_scoped] = ACTIONS(4361), - [anon_sym_var] = ACTIONS(4361), - [anon_sym_yield] = ACTIONS(4361), - [anon_sym_switch] = ACTIONS(4361), - [anon_sym_when] = ACTIONS(4361), - [sym_discard] = ACTIONS(4361), - [anon_sym_DOT_DOT] = ACTIONS(4363), - [anon_sym_and] = ACTIONS(4361), - [anon_sym_or] = ACTIONS(4361), - [anon_sym_AMP_AMP] = ACTIONS(4363), - [anon_sym_PIPE_PIPE] = ACTIONS(4363), - [sym_op_coalescing] = ACTIONS(4363), - [anon_sym_from] = ACTIONS(4361), - [anon_sym_into] = ACTIONS(4361), - [anon_sym_join] = ACTIONS(4361), - [anon_sym_on] = ACTIONS(4361), - [anon_sym_equals] = ACTIONS(4361), - [anon_sym_let] = ACTIONS(4361), - [anon_sym_orderby] = ACTIONS(4361), - [anon_sym_ascending] = ACTIONS(4361), - [anon_sym_descending] = ACTIONS(4361), - [anon_sym_group] = ACTIONS(4361), - [anon_sym_by] = ACTIONS(4361), - [anon_sym_select] = ACTIONS(4361), - [anon_sym_as] = ACTIONS(4361), - [anon_sym_is] = ACTIONS(4361), - [anon_sym_DASH_GT] = ACTIONS(4363), - [anon_sym_with] = ACTIONS(4361), - [sym_grit_metavariable] = ACTIONS(4363), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482347,9 +481973,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4363), }, [2984] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(2984), [sym_preproc_endregion] = STATE(2984), [sym_preproc_line] = STATE(2984), @@ -482359,70 +481999,52 @@ 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), - [sym__identifier_token] = ACTIONS(5232), - [anon_sym_extern] = ACTIONS(5232), - [anon_sym_alias] = ACTIONS(5232), - [anon_sym_global] = ACTIONS(5232), - [anon_sym_using] = ACTIONS(5232), - [anon_sym_unsafe] = ACTIONS(5232), - [anon_sym_static] = ACTIONS(5232), - [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5360), [anon_sym_LPAREN] = ACTIONS(5234), - [anon_sym_event] = ACTIONS(5232), - [anon_sym_namespace] = ACTIONS(5232), - [anon_sym_class] = ACTIONS(5232), - [anon_sym_ref] = ACTIONS(5232), - [anon_sym_struct] = ACTIONS(5232), - [anon_sym_enum] = ACTIONS(5232), - [anon_sym_RBRACE] = ACTIONS(5234), - [anon_sym_interface] = ACTIONS(5232), - [anon_sym_delegate] = ACTIONS(5232), - [anon_sym_record] = ACTIONS(5232), - [anon_sym_public] = ACTIONS(5232), - [anon_sym_private] = ACTIONS(5232), - [anon_sym_readonly] = ACTIONS(5232), - [anon_sym_abstract] = ACTIONS(5232), - [anon_sym_async] = ACTIONS(5232), - [anon_sym_const] = ACTIONS(5232), - [anon_sym_file] = ACTIONS(5232), - [anon_sym_fixed] = ACTIONS(5232), - [anon_sym_internal] = ACTIONS(5232), - [anon_sym_new] = ACTIONS(5232), - [anon_sym_override] = ACTIONS(5232), - [anon_sym_partial] = ACTIONS(5232), - [anon_sym_protected] = ACTIONS(5232), - [anon_sym_required] = ACTIONS(5232), - [anon_sym_sealed] = ACTIONS(5232), - [anon_sym_virtual] = ACTIONS(5232), - [anon_sym_volatile] = ACTIONS(5232), - [anon_sym_where] = ACTIONS(5232), - [anon_sym_notnull] = ACTIONS(5232), - [anon_sym_unmanaged] = ACTIONS(5232), - [anon_sym_TILDE] = ACTIONS(5234), - [anon_sym_implicit] = ACTIONS(5232), - [anon_sym_explicit] = ACTIONS(5232), - [anon_sym_scoped] = ACTIONS(5232), - [anon_sym_var] = ACTIONS(5232), - [sym_predefined_type] = ACTIONS(5232), - [anon_sym_yield] = ACTIONS(5232), - [anon_sym_when] = ACTIONS(5232), - [anon_sym_from] = ACTIONS(5232), - [anon_sym_into] = ACTIONS(5232), - [anon_sym_join] = ACTIONS(5232), - [anon_sym_on] = ACTIONS(5232), - [anon_sym_equals] = ACTIONS(5232), - [anon_sym_let] = ACTIONS(5232), - [anon_sym_orderby] = ACTIONS(5232), - [anon_sym_ascending] = ACTIONS(5232), - [anon_sym_descending] = ACTIONS(5232), - [anon_sym_group] = ACTIONS(5232), - [anon_sym_by] = ACTIONS(5232), - [anon_sym_select] = ACTIONS(5232), - [sym_grit_metavariable] = ACTIONS(5234), - [aux_sym_preproc_if_token1] = ACTIONS(5234), - [aux_sym_preproc_if_token3] = ACTIONS(5234), - [aux_sym_preproc_else_token1] = ACTIONS(5234), - [aux_sym_preproc_elif_token1] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_where] = ACTIONS(5360), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5360), + [anon_sym_join] = ACTIONS(5360), + [anon_sym_let] = ACTIONS(5360), + [anon_sym_orderby] = ACTIONS(5360), + [anon_sym_ascending] = ACTIONS(5360), + [anon_sym_descending] = ACTIONS(5360), + [anon_sym_group] = ACTIONS(5360), + [anon_sym_select] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5362), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5360), + [sym_grit_metavariable] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482444,70 +482066,67 @@ 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), - [sym__identifier_token] = ACTIONS(5236), - [anon_sym_extern] = ACTIONS(5236), - [anon_sym_alias] = ACTIONS(5236), - [anon_sym_global] = ACTIONS(5236), - [anon_sym_using] = ACTIONS(5236), - [anon_sym_unsafe] = ACTIONS(5236), - [anon_sym_static] = ACTIONS(5236), - [anon_sym_LBRACK] = ACTIONS(5238), - [anon_sym_LPAREN] = ACTIONS(5238), - [anon_sym_event] = ACTIONS(5236), - [anon_sym_namespace] = ACTIONS(5236), - [anon_sym_class] = ACTIONS(5236), - [anon_sym_ref] = ACTIONS(5236), - [anon_sym_struct] = ACTIONS(5236), - [anon_sym_enum] = ACTIONS(5236), - [anon_sym_RBRACE] = ACTIONS(5238), - [anon_sym_interface] = ACTIONS(5236), - [anon_sym_delegate] = ACTIONS(5236), - [anon_sym_record] = ACTIONS(5236), - [anon_sym_public] = ACTIONS(5236), - [anon_sym_private] = ACTIONS(5236), - [anon_sym_readonly] = ACTIONS(5236), - [anon_sym_abstract] = ACTIONS(5236), - [anon_sym_async] = ACTIONS(5236), - [anon_sym_const] = ACTIONS(5236), - [anon_sym_file] = ACTIONS(5236), - [anon_sym_fixed] = ACTIONS(5236), - [anon_sym_internal] = ACTIONS(5236), - [anon_sym_new] = ACTIONS(5236), - [anon_sym_override] = ACTIONS(5236), - [anon_sym_partial] = ACTIONS(5236), - [anon_sym_protected] = ACTIONS(5236), - [anon_sym_required] = ACTIONS(5236), - [anon_sym_sealed] = ACTIONS(5236), - [anon_sym_virtual] = ACTIONS(5236), - [anon_sym_volatile] = ACTIONS(5236), - [anon_sym_where] = ACTIONS(5236), - [anon_sym_notnull] = ACTIONS(5236), - [anon_sym_unmanaged] = ACTIONS(5236), - [anon_sym_TILDE] = ACTIONS(5238), - [anon_sym_implicit] = ACTIONS(5236), - [anon_sym_explicit] = ACTIONS(5236), - [anon_sym_scoped] = ACTIONS(5236), - [anon_sym_var] = ACTIONS(5236), - [sym_predefined_type] = ACTIONS(5236), - [anon_sym_yield] = ACTIONS(5236), - [anon_sym_when] = ACTIONS(5236), - [anon_sym_from] = ACTIONS(5236), - [anon_sym_into] = ACTIONS(5236), - [anon_sym_join] = ACTIONS(5236), - [anon_sym_on] = ACTIONS(5236), - [anon_sym_equals] = ACTIONS(5236), - [anon_sym_let] = ACTIONS(5236), - [anon_sym_orderby] = ACTIONS(5236), - [anon_sym_ascending] = ACTIONS(5236), - [anon_sym_descending] = ACTIONS(5236), - [anon_sym_group] = ACTIONS(5236), - [anon_sym_by] = ACTIONS(5236), - [anon_sym_select] = ACTIONS(5236), - [sym_grit_metavariable] = ACTIONS(5238), - [aux_sym_preproc_if_token1] = ACTIONS(5238), - [aux_sym_preproc_if_token3] = ACTIONS(5238), - [aux_sym_preproc_else_token1] = ACTIONS(5238), - [aux_sym_preproc_elif_token1] = ACTIONS(5238), + [sym__identifier_token] = ACTIONS(5384), + [anon_sym_extern] = ACTIONS(5384), + [anon_sym_alias] = ACTIONS(5384), + [anon_sym_global] = ACTIONS(5384), + [anon_sym_unsafe] = ACTIONS(5384), + [anon_sym_static] = ACTIONS(5384), + [anon_sym_LBRACK] = ACTIONS(5386), + [anon_sym_LPAREN] = ACTIONS(5386), + [anon_sym_event] = ACTIONS(5384), + [anon_sym_class] = ACTIONS(5384), + [anon_sym_ref] = ACTIONS(5384), + [anon_sym_struct] = ACTIONS(5384), + [anon_sym_enum] = ACTIONS(5384), + [anon_sym_interface] = ACTIONS(5384), + [anon_sym_delegate] = ACTIONS(5384), + [anon_sym_record] = ACTIONS(5384), + [anon_sym_public] = ACTIONS(5384), + [anon_sym_private] = ACTIONS(5384), + [anon_sym_readonly] = ACTIONS(5384), + [anon_sym_abstract] = ACTIONS(5384), + [anon_sym_async] = ACTIONS(5384), + [anon_sym_const] = ACTIONS(5384), + [anon_sym_file] = ACTIONS(5384), + [anon_sym_fixed] = ACTIONS(5384), + [anon_sym_internal] = ACTIONS(5384), + [anon_sym_new] = ACTIONS(5384), + [anon_sym_override] = ACTIONS(5384), + [anon_sym_partial] = ACTIONS(5384), + [anon_sym_protected] = ACTIONS(5384), + [anon_sym_required] = ACTIONS(5384), + [anon_sym_sealed] = ACTIONS(5384), + [anon_sym_virtual] = ACTIONS(5384), + [anon_sym_volatile] = ACTIONS(5384), + [anon_sym_where] = ACTIONS(5384), + [anon_sym_notnull] = ACTIONS(5384), + [anon_sym_unmanaged] = ACTIONS(5384), + [anon_sym_implicit] = ACTIONS(5384), + [anon_sym_explicit] = ACTIONS(5384), + [anon_sym_TILDE] = ACTIONS(5386), + [anon_sym_scoped] = ACTIONS(5384), + [anon_sym_var] = ACTIONS(5384), + [sym_predefined_type] = ACTIONS(5384), + [anon_sym_yield] = ACTIONS(5384), + [anon_sym_when] = ACTIONS(5384), + [anon_sym_from] = ACTIONS(5384), + [anon_sym_into] = ACTIONS(5384), + [anon_sym_join] = ACTIONS(5384), + [anon_sym_on] = ACTIONS(5384), + [anon_sym_equals] = ACTIONS(5384), + [anon_sym_let] = ACTIONS(5384), + [anon_sym_orderby] = ACTIONS(5384), + [anon_sym_ascending] = ACTIONS(5384), + [anon_sym_descending] = ACTIONS(5384), + [anon_sym_group] = ACTIONS(5384), + [anon_sym_by] = ACTIONS(5384), + [anon_sym_select] = ACTIONS(5384), + [sym_grit_metavariable] = ACTIONS(5386), + [aux_sym_preproc_if_token1] = ACTIONS(5386), + [aux_sym_preproc_if_token3] = ACTIONS(5386), + [aux_sym_preproc_else_token1] = ACTIONS(5386), + [aux_sym_preproc_elif_token1] = ACTIONS(5386), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482520,6 +482139,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2986] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(2986), [sym_preproc_endregion] = STATE(2986), [sym_preproc_line] = STATE(2986), @@ -482529,70 +482163,52 @@ 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), - [sym__identifier_token] = ACTIONS(5240), - [anon_sym_extern] = ACTIONS(5240), - [anon_sym_alias] = ACTIONS(5240), - [anon_sym_global] = ACTIONS(5240), - [anon_sym_using] = ACTIONS(5240), - [anon_sym_unsafe] = ACTIONS(5240), - [anon_sym_static] = ACTIONS(5240), - [anon_sym_LBRACK] = ACTIONS(5242), - [anon_sym_LPAREN] = ACTIONS(5242), - [anon_sym_event] = ACTIONS(5240), - [anon_sym_namespace] = ACTIONS(5240), - [anon_sym_class] = ACTIONS(5240), - [anon_sym_ref] = ACTIONS(5240), - [anon_sym_struct] = ACTIONS(5240), - [anon_sym_enum] = ACTIONS(5240), - [anon_sym_RBRACE] = ACTIONS(5242), - [anon_sym_interface] = ACTIONS(5240), - [anon_sym_delegate] = ACTIONS(5240), - [anon_sym_record] = ACTIONS(5240), - [anon_sym_public] = ACTIONS(5240), - [anon_sym_private] = ACTIONS(5240), - [anon_sym_readonly] = ACTIONS(5240), - [anon_sym_abstract] = ACTIONS(5240), - [anon_sym_async] = ACTIONS(5240), - [anon_sym_const] = ACTIONS(5240), - [anon_sym_file] = ACTIONS(5240), - [anon_sym_fixed] = ACTIONS(5240), - [anon_sym_internal] = ACTIONS(5240), - [anon_sym_new] = ACTIONS(5240), - [anon_sym_override] = ACTIONS(5240), - [anon_sym_partial] = ACTIONS(5240), - [anon_sym_protected] = ACTIONS(5240), - [anon_sym_required] = ACTIONS(5240), - [anon_sym_sealed] = ACTIONS(5240), - [anon_sym_virtual] = ACTIONS(5240), - [anon_sym_volatile] = ACTIONS(5240), - [anon_sym_where] = ACTIONS(5240), - [anon_sym_notnull] = ACTIONS(5240), - [anon_sym_unmanaged] = ACTIONS(5240), - [anon_sym_TILDE] = ACTIONS(5242), - [anon_sym_implicit] = ACTIONS(5240), - [anon_sym_explicit] = ACTIONS(5240), - [anon_sym_scoped] = ACTIONS(5240), - [anon_sym_var] = ACTIONS(5240), - [sym_predefined_type] = ACTIONS(5240), - [anon_sym_yield] = ACTIONS(5240), - [anon_sym_when] = ACTIONS(5240), - [anon_sym_from] = ACTIONS(5240), - [anon_sym_into] = ACTIONS(5240), - [anon_sym_join] = ACTIONS(5240), - [anon_sym_on] = ACTIONS(5240), - [anon_sym_equals] = ACTIONS(5240), - [anon_sym_let] = ACTIONS(5240), - [anon_sym_orderby] = ACTIONS(5240), - [anon_sym_ascending] = ACTIONS(5240), - [anon_sym_descending] = ACTIONS(5240), - [anon_sym_group] = ACTIONS(5240), - [anon_sym_by] = ACTIONS(5240), - [anon_sym_select] = ACTIONS(5240), - [sym_grit_metavariable] = ACTIONS(5242), - [aux_sym_preproc_if_token1] = ACTIONS(5242), - [aux_sym_preproc_if_token3] = ACTIONS(5242), - [aux_sym_preproc_else_token1] = ACTIONS(5242), - [aux_sym_preproc_elif_token1] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5356), + [anon_sym_QMARK] = ACTIONS(5388), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5358), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5356), + [anon_sym_join] = ACTIONS(5356), + [anon_sym_let] = ACTIONS(5356), + [anon_sym_orderby] = ACTIONS(5356), + [anon_sym_ascending] = ACTIONS(5356), + [anon_sym_descending] = ACTIONS(5356), + [anon_sym_group] = ACTIONS(5356), + [anon_sym_select] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5380), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5356), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482605,6 +482221,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2987] = { + [sym_attribute_list] = STATE(4526), + [sym__attribute_list] = STATE(4515), + [sym_modifier] = STATE(5123), + [sym_accessor_declaration] = STATE(4030), + [sym_identifier] = STATE(6719), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_attribute_list] = STATE(4526), [sym_preproc_region] = STATE(2987), [sym_preproc_endregion] = STATE(2987), [sym_preproc_line] = STATE(2987), @@ -482614,70 +482237,60 @@ 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), - [sym__identifier_token] = ACTIONS(5244), - [anon_sym_extern] = ACTIONS(5244), - [anon_sym_alias] = ACTIONS(5244), - [anon_sym_global] = ACTIONS(5244), - [anon_sym_using] = ACTIONS(5244), - [anon_sym_unsafe] = ACTIONS(5244), - [anon_sym_static] = ACTIONS(5244), - [anon_sym_LBRACK] = ACTIONS(5246), - [anon_sym_LPAREN] = ACTIONS(5246), - [anon_sym_event] = ACTIONS(5244), - [anon_sym_namespace] = ACTIONS(5244), - [anon_sym_class] = ACTIONS(5244), - [anon_sym_ref] = ACTIONS(5244), - [anon_sym_struct] = ACTIONS(5244), - [anon_sym_enum] = ACTIONS(5244), - [anon_sym_RBRACE] = ACTIONS(5246), - [anon_sym_interface] = ACTIONS(5244), - [anon_sym_delegate] = ACTIONS(5244), - [anon_sym_record] = ACTIONS(5244), - [anon_sym_public] = ACTIONS(5244), - [anon_sym_private] = ACTIONS(5244), - [anon_sym_readonly] = ACTIONS(5244), - [anon_sym_abstract] = ACTIONS(5244), - [anon_sym_async] = ACTIONS(5244), - [anon_sym_const] = ACTIONS(5244), - [anon_sym_file] = ACTIONS(5244), - [anon_sym_fixed] = ACTIONS(5244), - [anon_sym_internal] = ACTIONS(5244), - [anon_sym_new] = ACTIONS(5244), - [anon_sym_override] = ACTIONS(5244), - [anon_sym_partial] = ACTIONS(5244), - [anon_sym_protected] = ACTIONS(5244), - [anon_sym_required] = ACTIONS(5244), - [anon_sym_sealed] = ACTIONS(5244), - [anon_sym_virtual] = ACTIONS(5244), - [anon_sym_volatile] = ACTIONS(5244), - [anon_sym_where] = ACTIONS(5244), - [anon_sym_notnull] = ACTIONS(5244), - [anon_sym_unmanaged] = ACTIONS(5244), - [anon_sym_TILDE] = ACTIONS(5246), - [anon_sym_implicit] = ACTIONS(5244), - [anon_sym_explicit] = ACTIONS(5244), - [anon_sym_scoped] = ACTIONS(5244), - [anon_sym_var] = ACTIONS(5244), - [sym_predefined_type] = ACTIONS(5244), - [anon_sym_yield] = ACTIONS(5244), - [anon_sym_when] = ACTIONS(5244), - [anon_sym_from] = ACTIONS(5244), - [anon_sym_into] = ACTIONS(5244), - [anon_sym_join] = ACTIONS(5244), - [anon_sym_on] = ACTIONS(5244), - [anon_sym_equals] = ACTIONS(5244), - [anon_sym_let] = ACTIONS(5244), - [anon_sym_orderby] = ACTIONS(5244), - [anon_sym_ascending] = ACTIONS(5244), - [anon_sym_descending] = ACTIONS(5244), - [anon_sym_group] = ACTIONS(5244), - [anon_sym_by] = ACTIONS(5244), - [anon_sym_select] = ACTIONS(5244), - [sym_grit_metavariable] = ACTIONS(5246), - [aux_sym_preproc_if_token1] = ACTIONS(5246), - [aux_sym_preproc_if_token3] = ACTIONS(5246), - [aux_sym_preproc_else_token1] = ACTIONS(5246), - [aux_sym_preproc_elif_token1] = ACTIONS(5246), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3198), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4008), + [aux_sym_accessor_list_repeat1] = STATE(3015), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(5394), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_unsafe] = ACTIONS(5394), + [anon_sym_static] = ACTIONS(5394), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_RBRACE] = ACTIONS(5398), + [anon_sym_public] = ACTIONS(5394), + [anon_sym_private] = ACTIONS(5394), + [anon_sym_readonly] = ACTIONS(5394), + [anon_sym_abstract] = ACTIONS(5394), + [anon_sym_async] = ACTIONS(5394), + [anon_sym_const] = ACTIONS(5394), + [anon_sym_file] = ACTIONS(5400), + [anon_sym_fixed] = ACTIONS(5394), + [anon_sym_internal] = ACTIONS(5394), + [anon_sym_new] = ACTIONS(5394), + [anon_sym_override] = ACTIONS(5394), + [anon_sym_partial] = ACTIONS(5394), + [anon_sym_protected] = ACTIONS(5394), + [anon_sym_required] = ACTIONS(5394), + [anon_sym_sealed] = ACTIONS(5394), + [anon_sym_virtual] = ACTIONS(5394), + [anon_sym_volatile] = ACTIONS(5394), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [sym_accessor_get] = ACTIONS(5402), + [sym_accessor_set] = ACTIONS(5402), + [sym_accessor_add] = ACTIONS(5402), + [sym_accessor_remove] = ACTIONS(5402), + [sym_accessor_init] = ACTIONS(5402), + [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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(5404), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482699,70 +482312,67 @@ 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), - [sym__identifier_token] = ACTIONS(5248), - [anon_sym_extern] = ACTIONS(5248), - [anon_sym_alias] = ACTIONS(5248), - [anon_sym_global] = ACTIONS(5248), - [anon_sym_using] = ACTIONS(5248), - [anon_sym_unsafe] = ACTIONS(5248), - [anon_sym_static] = ACTIONS(5248), - [anon_sym_LBRACK] = ACTIONS(5250), - [anon_sym_LPAREN] = ACTIONS(5250), - [anon_sym_event] = ACTIONS(5248), - [anon_sym_namespace] = ACTIONS(5248), - [anon_sym_class] = ACTIONS(5248), - [anon_sym_ref] = ACTIONS(5248), - [anon_sym_struct] = ACTIONS(5248), - [anon_sym_enum] = ACTIONS(5248), - [anon_sym_RBRACE] = ACTIONS(5250), - [anon_sym_interface] = ACTIONS(5248), - [anon_sym_delegate] = ACTIONS(5248), - [anon_sym_record] = ACTIONS(5248), - [anon_sym_public] = ACTIONS(5248), - [anon_sym_private] = ACTIONS(5248), - [anon_sym_readonly] = ACTIONS(5248), - [anon_sym_abstract] = ACTIONS(5248), - [anon_sym_async] = ACTIONS(5248), - [anon_sym_const] = ACTIONS(5248), - [anon_sym_file] = ACTIONS(5248), - [anon_sym_fixed] = ACTIONS(5248), - [anon_sym_internal] = ACTIONS(5248), - [anon_sym_new] = ACTIONS(5248), - [anon_sym_override] = ACTIONS(5248), - [anon_sym_partial] = ACTIONS(5248), - [anon_sym_protected] = ACTIONS(5248), - [anon_sym_required] = ACTIONS(5248), - [anon_sym_sealed] = ACTIONS(5248), - [anon_sym_virtual] = ACTIONS(5248), - [anon_sym_volatile] = ACTIONS(5248), - [anon_sym_where] = ACTIONS(5248), - [anon_sym_notnull] = ACTIONS(5248), - [anon_sym_unmanaged] = ACTIONS(5248), - [anon_sym_TILDE] = ACTIONS(5250), - [anon_sym_implicit] = ACTIONS(5248), - [anon_sym_explicit] = ACTIONS(5248), - [anon_sym_scoped] = ACTIONS(5248), - [anon_sym_var] = ACTIONS(5248), - [sym_predefined_type] = ACTIONS(5248), - [anon_sym_yield] = ACTIONS(5248), - [anon_sym_when] = ACTIONS(5248), - [anon_sym_from] = ACTIONS(5248), - [anon_sym_into] = ACTIONS(5248), - [anon_sym_join] = ACTIONS(5248), - [anon_sym_on] = ACTIONS(5248), - [anon_sym_equals] = ACTIONS(5248), - [anon_sym_let] = ACTIONS(5248), - [anon_sym_orderby] = ACTIONS(5248), - [anon_sym_ascending] = ACTIONS(5248), - [anon_sym_descending] = ACTIONS(5248), - [anon_sym_group] = ACTIONS(5248), - [anon_sym_by] = ACTIONS(5248), - [anon_sym_select] = ACTIONS(5248), - [sym_grit_metavariable] = ACTIONS(5250), - [aux_sym_preproc_if_token1] = ACTIONS(5250), - [aux_sym_preproc_if_token3] = ACTIONS(5250), - [aux_sym_preproc_else_token1] = ACTIONS(5250), - [aux_sym_preproc_elif_token1] = ACTIONS(5250), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5406), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482775,6 +482385,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2989] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(2989), [sym_preproc_endregion] = STATE(2989), [sym_preproc_line] = STATE(2989), @@ -482784,70 +482409,52 @@ 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), - [sym__identifier_token] = ACTIONS(5252), - [anon_sym_extern] = ACTIONS(5252), - [anon_sym_alias] = ACTIONS(5252), - [anon_sym_global] = ACTIONS(5252), - [anon_sym_using] = ACTIONS(5252), - [anon_sym_unsafe] = ACTIONS(5252), - [anon_sym_static] = ACTIONS(5252), - [anon_sym_LBRACK] = ACTIONS(5254), - [anon_sym_LPAREN] = ACTIONS(5254), - [anon_sym_event] = ACTIONS(5252), - [anon_sym_namespace] = ACTIONS(5252), - [anon_sym_class] = ACTIONS(5252), - [anon_sym_ref] = ACTIONS(5252), - [anon_sym_struct] = ACTIONS(5252), - [anon_sym_enum] = ACTIONS(5252), - [anon_sym_RBRACE] = ACTIONS(5254), - [anon_sym_interface] = ACTIONS(5252), - [anon_sym_delegate] = ACTIONS(5252), - [anon_sym_record] = ACTIONS(5252), - [anon_sym_public] = ACTIONS(5252), - [anon_sym_private] = ACTIONS(5252), - [anon_sym_readonly] = ACTIONS(5252), - [anon_sym_abstract] = ACTIONS(5252), - [anon_sym_async] = ACTIONS(5252), - [anon_sym_const] = ACTIONS(5252), - [anon_sym_file] = ACTIONS(5252), - [anon_sym_fixed] = ACTIONS(5252), - [anon_sym_internal] = ACTIONS(5252), - [anon_sym_new] = ACTIONS(5252), - [anon_sym_override] = ACTIONS(5252), - [anon_sym_partial] = ACTIONS(5252), - [anon_sym_protected] = ACTIONS(5252), - [anon_sym_required] = ACTIONS(5252), - [anon_sym_sealed] = ACTIONS(5252), - [anon_sym_virtual] = ACTIONS(5252), - [anon_sym_volatile] = ACTIONS(5252), - [anon_sym_where] = ACTIONS(5252), - [anon_sym_notnull] = ACTIONS(5252), - [anon_sym_unmanaged] = ACTIONS(5252), - [anon_sym_TILDE] = ACTIONS(5254), - [anon_sym_implicit] = ACTIONS(5252), - [anon_sym_explicit] = ACTIONS(5252), - [anon_sym_scoped] = ACTIONS(5252), - [anon_sym_var] = ACTIONS(5252), - [sym_predefined_type] = ACTIONS(5252), - [anon_sym_yield] = ACTIONS(5252), - [anon_sym_when] = ACTIONS(5252), - [anon_sym_from] = ACTIONS(5252), - [anon_sym_into] = ACTIONS(5252), - [anon_sym_join] = ACTIONS(5252), - [anon_sym_on] = ACTIONS(5252), - [anon_sym_equals] = ACTIONS(5252), - [anon_sym_let] = ACTIONS(5252), - [anon_sym_orderby] = ACTIONS(5252), - [anon_sym_ascending] = ACTIONS(5252), - [anon_sym_descending] = ACTIONS(5252), - [anon_sym_group] = ACTIONS(5252), - [anon_sym_by] = ACTIONS(5252), - [anon_sym_select] = ACTIONS(5252), - [sym_grit_metavariable] = ACTIONS(5254), - [aux_sym_preproc_if_token1] = ACTIONS(5254), - [aux_sym_preproc_if_token3] = ACTIONS(5254), - [aux_sym_preproc_else_token1] = ACTIONS(5254), - [aux_sym_preproc_elif_token1] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(5388), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5366), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5364), + [anon_sym_join] = ACTIONS(5364), + [anon_sym_let] = ACTIONS(5364), + [anon_sym_orderby] = ACTIONS(5364), + [anon_sym_ascending] = ACTIONS(5364), + [anon_sym_descending] = ACTIONS(5364), + [anon_sym_group] = ACTIONS(5364), + [anon_sym_select] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5380), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5364), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482869,70 +482476,67 @@ 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), - [sym__identifier_token] = ACTIONS(5256), - [anon_sym_extern] = ACTIONS(5256), - [anon_sym_alias] = ACTIONS(5256), - [anon_sym_global] = ACTIONS(5256), - [anon_sym_using] = ACTIONS(5256), - [anon_sym_unsafe] = ACTIONS(5256), - [anon_sym_static] = ACTIONS(5256), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_LPAREN] = ACTIONS(5258), - [anon_sym_event] = ACTIONS(5256), - [anon_sym_namespace] = ACTIONS(5256), - [anon_sym_class] = ACTIONS(5256), - [anon_sym_ref] = ACTIONS(5256), - [anon_sym_struct] = ACTIONS(5256), - [anon_sym_enum] = ACTIONS(5256), - [anon_sym_RBRACE] = ACTIONS(5258), - [anon_sym_interface] = ACTIONS(5256), - [anon_sym_delegate] = ACTIONS(5256), - [anon_sym_record] = ACTIONS(5256), - [anon_sym_public] = ACTIONS(5256), - [anon_sym_private] = ACTIONS(5256), - [anon_sym_readonly] = ACTIONS(5256), - [anon_sym_abstract] = ACTIONS(5256), - [anon_sym_async] = ACTIONS(5256), - [anon_sym_const] = ACTIONS(5256), - [anon_sym_file] = ACTIONS(5256), - [anon_sym_fixed] = ACTIONS(5256), - [anon_sym_internal] = ACTIONS(5256), - [anon_sym_new] = ACTIONS(5256), - [anon_sym_override] = ACTIONS(5256), - [anon_sym_partial] = ACTIONS(5256), - [anon_sym_protected] = ACTIONS(5256), - [anon_sym_required] = ACTIONS(5256), - [anon_sym_sealed] = ACTIONS(5256), - [anon_sym_virtual] = ACTIONS(5256), - [anon_sym_volatile] = ACTIONS(5256), - [anon_sym_where] = ACTIONS(5256), - [anon_sym_notnull] = ACTIONS(5256), - [anon_sym_unmanaged] = ACTIONS(5256), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_implicit] = ACTIONS(5256), - [anon_sym_explicit] = ACTIONS(5256), - [anon_sym_scoped] = ACTIONS(5256), - [anon_sym_var] = ACTIONS(5256), - [sym_predefined_type] = ACTIONS(5256), - [anon_sym_yield] = ACTIONS(5256), - [anon_sym_when] = ACTIONS(5256), - [anon_sym_from] = ACTIONS(5256), - [anon_sym_into] = ACTIONS(5256), - [anon_sym_join] = ACTIONS(5256), - [anon_sym_on] = ACTIONS(5256), - [anon_sym_equals] = ACTIONS(5256), - [anon_sym_let] = ACTIONS(5256), - [anon_sym_orderby] = ACTIONS(5256), - [anon_sym_ascending] = ACTIONS(5256), - [anon_sym_descending] = ACTIONS(5256), - [anon_sym_group] = ACTIONS(5256), - [anon_sym_by] = ACTIONS(5256), - [anon_sym_select] = ACTIONS(5256), - [sym_grit_metavariable] = ACTIONS(5258), - [aux_sym_preproc_if_token1] = ACTIONS(5258), - [aux_sym_preproc_if_token3] = ACTIONS(5258), - [aux_sym_preproc_else_token1] = ACTIONS(5258), - [aux_sym_preproc_elif_token1] = ACTIONS(5258), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5410), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482954,70 +482558,67 @@ 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), - [sym__identifier_token] = ACTIONS(5260), - [anon_sym_extern] = ACTIONS(5260), - [anon_sym_alias] = ACTIONS(5260), - [anon_sym_global] = ACTIONS(5260), - [anon_sym_using] = ACTIONS(5260), - [anon_sym_unsafe] = ACTIONS(5260), - [anon_sym_static] = ACTIONS(5260), - [anon_sym_LBRACK] = ACTIONS(5262), - [anon_sym_LPAREN] = ACTIONS(5262), - [anon_sym_event] = ACTIONS(5260), - [anon_sym_namespace] = ACTIONS(5260), - [anon_sym_class] = ACTIONS(5260), - [anon_sym_ref] = ACTIONS(5260), - [anon_sym_struct] = ACTIONS(5260), - [anon_sym_enum] = ACTIONS(5260), - [anon_sym_RBRACE] = ACTIONS(5262), - [anon_sym_interface] = ACTIONS(5260), - [anon_sym_delegate] = ACTIONS(5260), - [anon_sym_record] = ACTIONS(5260), - [anon_sym_public] = ACTIONS(5260), - [anon_sym_private] = ACTIONS(5260), - [anon_sym_readonly] = ACTIONS(5260), - [anon_sym_abstract] = ACTIONS(5260), - [anon_sym_async] = ACTIONS(5260), - [anon_sym_const] = ACTIONS(5260), - [anon_sym_file] = ACTIONS(5260), - [anon_sym_fixed] = ACTIONS(5260), - [anon_sym_internal] = ACTIONS(5260), - [anon_sym_new] = ACTIONS(5260), - [anon_sym_override] = ACTIONS(5260), - [anon_sym_partial] = ACTIONS(5260), - [anon_sym_protected] = ACTIONS(5260), - [anon_sym_required] = ACTIONS(5260), - [anon_sym_sealed] = ACTIONS(5260), - [anon_sym_virtual] = ACTIONS(5260), - [anon_sym_volatile] = ACTIONS(5260), - [anon_sym_where] = ACTIONS(5260), - [anon_sym_notnull] = ACTIONS(5260), - [anon_sym_unmanaged] = ACTIONS(5260), - [anon_sym_TILDE] = ACTIONS(5262), - [anon_sym_implicit] = ACTIONS(5260), - [anon_sym_explicit] = ACTIONS(5260), - [anon_sym_scoped] = ACTIONS(5260), - [anon_sym_var] = ACTIONS(5260), - [sym_predefined_type] = ACTIONS(5260), - [anon_sym_yield] = ACTIONS(5260), - [anon_sym_when] = ACTIONS(5260), - [anon_sym_from] = ACTIONS(5260), - [anon_sym_into] = ACTIONS(5260), - [anon_sym_join] = ACTIONS(5260), - [anon_sym_on] = ACTIONS(5260), - [anon_sym_equals] = ACTIONS(5260), - [anon_sym_let] = ACTIONS(5260), - [anon_sym_orderby] = ACTIONS(5260), - [anon_sym_ascending] = ACTIONS(5260), - [anon_sym_descending] = ACTIONS(5260), - [anon_sym_group] = ACTIONS(5260), - [anon_sym_by] = ACTIONS(5260), - [anon_sym_select] = ACTIONS(5260), - [sym_grit_metavariable] = ACTIONS(5262), - [aux_sym_preproc_if_token1] = ACTIONS(5262), - [aux_sym_preproc_if_token3] = ACTIONS(5262), - [aux_sym_preproc_else_token1] = ACTIONS(5262), - [aux_sym_preproc_elif_token1] = ACTIONS(5262), + [sym__identifier_token] = ACTIONS(4470), + [anon_sym_alias] = ACTIONS(4470), + [anon_sym_global] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4660), + [anon_sym_COLON] = ACTIONS(4472), + [anon_sym_LPAREN] = ACTIONS(4472), + [anon_sym_file] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4662), + [anon_sym_GT] = ACTIONS(4662), + [anon_sym_where] = ACTIONS(4470), + [anon_sym_QMARK] = ACTIONS(4662), + [anon_sym_notnull] = ACTIONS(4470), + [anon_sym_unmanaged] = ACTIONS(4470), + [anon_sym_DOT] = ACTIONS(4662), + [anon_sym_scoped] = ACTIONS(4470), + [anon_sym_var] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4660), + [anon_sym_yield] = ACTIONS(4470), + [anon_sym_switch] = ACTIONS(4662), + [anon_sym_when] = ACTIONS(4470), + [sym_discard] = ACTIONS(4470), + [anon_sym_DOT_DOT] = ACTIONS(4660), + [anon_sym_LT_EQ] = ACTIONS(4660), + [anon_sym_GT_EQ] = ACTIONS(4660), + [anon_sym_and] = ACTIONS(4470), + [anon_sym_or] = ACTIONS(4470), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_AMP_AMP] = ACTIONS(4660), + [anon_sym_PIPE_PIPE] = ACTIONS(4660), + [anon_sym_AMP] = ACTIONS(4662), + [sym_op_bitwise_or] = ACTIONS(4662), + [anon_sym_CARET] = ACTIONS(4660), + [sym_op_left_shift] = ACTIONS(4660), + [sym_op_right_shift] = ACTIONS(4662), + [sym_op_unsigned_right_shift] = ACTIONS(4660), + [anon_sym_PLUS] = ACTIONS(4662), + [anon_sym_DASH] = ACTIONS(4662), + [sym_op_divide] = ACTIONS(4662), + [sym_op_modulo] = ACTIONS(4660), + [sym_op_coalescing] = ACTIONS(4660), + [anon_sym_BANG] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4660), + [anon_sym_DASH_DASH] = ACTIONS(4660), + [anon_sym_from] = ACTIONS(4470), + [anon_sym_into] = ACTIONS(4470), + [anon_sym_join] = ACTIONS(4470), + [anon_sym_on] = ACTIONS(4470), + [anon_sym_equals] = ACTIONS(4470), + [anon_sym_let] = ACTIONS(4470), + [anon_sym_orderby] = ACTIONS(4470), + [anon_sym_ascending] = ACTIONS(4470), + [anon_sym_descending] = ACTIONS(4470), + [anon_sym_group] = ACTIONS(4470), + [anon_sym_by] = ACTIONS(4470), + [anon_sym_select] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4662), + [anon_sym_DASH_GT] = ACTIONS(4660), + [anon_sym_with] = ACTIONS(4662), + [sym_grit_metavariable] = ACTIONS(4472), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483030,6 +482631,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2992] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(2992), [sym_preproc_endregion] = STATE(2992), [sym_preproc_line] = STATE(2992), @@ -483039,70 +482655,52 @@ 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), - [sym__identifier_token] = ACTIONS(5264), - [anon_sym_extern] = ACTIONS(5264), - [anon_sym_alias] = ACTIONS(5264), - [anon_sym_global] = ACTIONS(5264), - [anon_sym_using] = ACTIONS(5264), - [anon_sym_unsafe] = ACTIONS(5264), - [anon_sym_static] = ACTIONS(5264), - [anon_sym_LBRACK] = ACTIONS(5266), - [anon_sym_LPAREN] = ACTIONS(5266), - [anon_sym_event] = ACTIONS(5264), - [anon_sym_namespace] = ACTIONS(5264), - [anon_sym_class] = ACTIONS(5264), - [anon_sym_ref] = ACTIONS(5264), - [anon_sym_struct] = ACTIONS(5264), - [anon_sym_enum] = ACTIONS(5264), - [anon_sym_RBRACE] = ACTIONS(5266), - [anon_sym_interface] = ACTIONS(5264), - [anon_sym_delegate] = ACTIONS(5264), - [anon_sym_record] = ACTIONS(5264), - [anon_sym_public] = ACTIONS(5264), - [anon_sym_private] = ACTIONS(5264), - [anon_sym_readonly] = ACTIONS(5264), - [anon_sym_abstract] = ACTIONS(5264), - [anon_sym_async] = ACTIONS(5264), - [anon_sym_const] = ACTIONS(5264), - [anon_sym_file] = ACTIONS(5264), - [anon_sym_fixed] = ACTIONS(5264), - [anon_sym_internal] = ACTIONS(5264), - [anon_sym_new] = ACTIONS(5264), - [anon_sym_override] = ACTIONS(5264), - [anon_sym_partial] = ACTIONS(5264), - [anon_sym_protected] = ACTIONS(5264), - [anon_sym_required] = ACTIONS(5264), - [anon_sym_sealed] = ACTIONS(5264), - [anon_sym_virtual] = ACTIONS(5264), - [anon_sym_volatile] = ACTIONS(5264), - [anon_sym_where] = ACTIONS(5264), - [anon_sym_notnull] = ACTIONS(5264), - [anon_sym_unmanaged] = ACTIONS(5264), - [anon_sym_TILDE] = ACTIONS(5266), - [anon_sym_implicit] = ACTIONS(5264), - [anon_sym_explicit] = ACTIONS(5264), - [anon_sym_scoped] = ACTIONS(5264), - [anon_sym_var] = ACTIONS(5264), - [sym_predefined_type] = ACTIONS(5264), - [anon_sym_yield] = ACTIONS(5264), - [anon_sym_when] = ACTIONS(5264), - [anon_sym_from] = ACTIONS(5264), - [anon_sym_into] = ACTIONS(5264), - [anon_sym_join] = ACTIONS(5264), - [anon_sym_on] = ACTIONS(5264), - [anon_sym_equals] = ACTIONS(5264), - [anon_sym_let] = ACTIONS(5264), - [anon_sym_orderby] = ACTIONS(5264), - [anon_sym_ascending] = ACTIONS(5264), - [anon_sym_descending] = ACTIONS(5264), - [anon_sym_group] = ACTIONS(5264), - [anon_sym_by] = ACTIONS(5264), - [anon_sym_select] = ACTIONS(5264), - [sym_grit_metavariable] = ACTIONS(5266), - [aux_sym_preproc_if_token1] = ACTIONS(5266), - [aux_sym_preproc_if_token3] = ACTIONS(5266), - [aux_sym_preproc_else_token1] = ACTIONS(5266), - [aux_sym_preproc_elif_token1] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_where] = ACTIONS(5314), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5316), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5314), + [anon_sym_join] = ACTIONS(5314), + [anon_sym_let] = ACTIONS(5314), + [anon_sym_orderby] = ACTIONS(5314), + [anon_sym_ascending] = ACTIONS(5314), + [anon_sym_descending] = ACTIONS(5314), + [anon_sym_group] = ACTIONS(5314), + [anon_sym_select] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5316), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5314), + [sym_grit_metavariable] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483124,70 +482722,67 @@ 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), - [sym__identifier_token] = ACTIONS(5268), - [anon_sym_extern] = ACTIONS(5268), - [anon_sym_alias] = ACTIONS(5268), - [anon_sym_global] = ACTIONS(5268), - [anon_sym_using] = ACTIONS(5268), - [anon_sym_unsafe] = ACTIONS(5268), - [anon_sym_static] = ACTIONS(5268), - [anon_sym_LBRACK] = ACTIONS(5270), - [anon_sym_LPAREN] = ACTIONS(5270), - [anon_sym_event] = ACTIONS(5268), - [anon_sym_namespace] = ACTIONS(5268), - [anon_sym_class] = ACTIONS(5268), - [anon_sym_ref] = ACTIONS(5268), - [anon_sym_struct] = ACTIONS(5268), - [anon_sym_enum] = ACTIONS(5268), - [anon_sym_RBRACE] = ACTIONS(5270), - [anon_sym_interface] = ACTIONS(5268), - [anon_sym_delegate] = ACTIONS(5268), - [anon_sym_record] = ACTIONS(5268), - [anon_sym_public] = ACTIONS(5268), - [anon_sym_private] = ACTIONS(5268), - [anon_sym_readonly] = ACTIONS(5268), - [anon_sym_abstract] = ACTIONS(5268), - [anon_sym_async] = ACTIONS(5268), - [anon_sym_const] = ACTIONS(5268), - [anon_sym_file] = ACTIONS(5268), - [anon_sym_fixed] = ACTIONS(5268), - [anon_sym_internal] = ACTIONS(5268), - [anon_sym_new] = ACTIONS(5268), - [anon_sym_override] = ACTIONS(5268), - [anon_sym_partial] = ACTIONS(5268), - [anon_sym_protected] = ACTIONS(5268), - [anon_sym_required] = ACTIONS(5268), - [anon_sym_sealed] = ACTIONS(5268), - [anon_sym_virtual] = ACTIONS(5268), - [anon_sym_volatile] = ACTIONS(5268), - [anon_sym_where] = ACTIONS(5268), - [anon_sym_notnull] = ACTIONS(5268), - [anon_sym_unmanaged] = ACTIONS(5268), - [anon_sym_TILDE] = ACTIONS(5270), - [anon_sym_implicit] = ACTIONS(5268), - [anon_sym_explicit] = ACTIONS(5268), - [anon_sym_scoped] = ACTIONS(5268), - [anon_sym_var] = ACTIONS(5268), - [sym_predefined_type] = ACTIONS(5268), - [anon_sym_yield] = ACTIONS(5268), - [anon_sym_when] = ACTIONS(5268), - [anon_sym_from] = ACTIONS(5268), - [anon_sym_into] = ACTIONS(5268), - [anon_sym_join] = ACTIONS(5268), - [anon_sym_on] = ACTIONS(5268), - [anon_sym_equals] = ACTIONS(5268), - [anon_sym_let] = ACTIONS(5268), - [anon_sym_orderby] = ACTIONS(5268), - [anon_sym_ascending] = ACTIONS(5268), - [anon_sym_descending] = ACTIONS(5268), - [anon_sym_group] = ACTIONS(5268), - [anon_sym_by] = ACTIONS(5268), - [anon_sym_select] = ACTIONS(5268), - [sym_grit_metavariable] = ACTIONS(5270), - [aux_sym_preproc_if_token1] = ACTIONS(5270), - [aux_sym_preproc_if_token3] = ACTIONS(5270), - [aux_sym_preproc_else_token1] = ACTIONS(5270), - [aux_sym_preproc_elif_token1] = ACTIONS(5270), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5412), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483200,6 +482795,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2994] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(2994), [sym_preproc_endregion] = STATE(2994), [sym_preproc_line] = STATE(2994), @@ -483209,103 +482819,79 @@ 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), - [sym__identifier_token] = ACTIONS(4438), - [anon_sym_alias] = ACTIONS(4438), - [anon_sym_global] = ACTIONS(4438), - [anon_sym_LBRACK] = ACTIONS(4440), - [anon_sym_COLON] = ACTIONS(4440), - [anon_sym_COMMA] = ACTIONS(4440), - [anon_sym_LPAREN] = ACTIONS(4440), - [anon_sym_LBRACE] = ACTIONS(4440), - [anon_sym_file] = ACTIONS(4438), - [anon_sym_LT] = ACTIONS(4438), - [anon_sym_GT] = ACTIONS(4438), - [anon_sym_where] = ACTIONS(4438), - [anon_sym_QMARK] = ACTIONS(4438), - [anon_sym_notnull] = ACTIONS(4438), - [anon_sym_unmanaged] = ACTIONS(4438), - [anon_sym_BANG] = ACTIONS(4438), - [anon_sym_PLUS_PLUS] = ACTIONS(4440), - [anon_sym_DASH_DASH] = ACTIONS(4440), - [anon_sym_PLUS] = ACTIONS(4438), - [anon_sym_DASH] = ACTIONS(4438), - [anon_sym_STAR] = ACTIONS(4440), - [anon_sym_SLASH] = ACTIONS(4438), - [anon_sym_PERCENT] = ACTIONS(4440), - [anon_sym_CARET] = ACTIONS(4440), - [anon_sym_PIPE] = ACTIONS(4438), - [anon_sym_AMP] = ACTIONS(4438), - [anon_sym_LT_LT] = ACTIONS(4440), - [anon_sym_GT_GT] = ACTIONS(4438), - [anon_sym_GT_GT_GT] = ACTIONS(4440), - [anon_sym_EQ_EQ] = ACTIONS(4440), - [anon_sym_BANG_EQ] = ACTIONS(4440), - [anon_sym_GT_EQ] = ACTIONS(4440), - [anon_sym_LT_EQ] = ACTIONS(4440), - [anon_sym_DOT] = ACTIONS(4438), - [anon_sym_scoped] = ACTIONS(4438), - [anon_sym_var] = ACTIONS(4438), - [anon_sym_yield] = ACTIONS(4438), - [anon_sym_switch] = ACTIONS(4438), - [anon_sym_when] = ACTIONS(4438), - [sym_discard] = ACTIONS(4438), - [anon_sym_DOT_DOT] = ACTIONS(4440), - [anon_sym_and] = ACTIONS(4438), - [anon_sym_or] = ACTIONS(4438), - [anon_sym_AMP_AMP] = ACTIONS(4440), - [anon_sym_PIPE_PIPE] = ACTIONS(4440), - [sym_op_coalescing] = ACTIONS(4440), - [anon_sym_from] = ACTIONS(4438), - [anon_sym_into] = ACTIONS(4438), - [anon_sym_join] = ACTIONS(4438), - [anon_sym_on] = ACTIONS(4438), - [anon_sym_equals] = ACTIONS(4438), - [anon_sym_let] = ACTIONS(4438), - [anon_sym_orderby] = ACTIONS(4438), - [anon_sym_ascending] = ACTIONS(4438), - [anon_sym_descending] = ACTIONS(4438), - [anon_sym_group] = ACTIONS(4438), - [anon_sym_by] = ACTIONS(4438), - [anon_sym_select] = ACTIONS(4438), - [anon_sym_as] = ACTIONS(4438), - [anon_sym_is] = ACTIONS(4438), - [anon_sym_DASH_GT] = ACTIONS(4440), - [anon_sym_with] = ACTIONS(4438), - [sym_grit_metavariable] = ACTIONS(4440), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(5388), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5336), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2995] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(2995), [sym_preproc_endregion] = STATE(2995), [sym_preproc_line] = STATE(2995), @@ -483315,49 +482901,52 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4778), - [anon_sym_QMARK] = ACTIONS(4956), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4960), - [anon_sym_from] = ACTIONS(4778), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_join] = ACTIONS(4778), - [anon_sym_let] = ACTIONS(4778), - [anon_sym_orderby] = ACTIONS(4778), - [anon_sym_group] = ACTIONS(4778), - [anon_sym_select] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483370,27 +482959,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2996] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), [sym_preproc_region] = STATE(2996), [sym_preproc_endregion] = STATE(2996), [sym_preproc_line] = STATE(2996), @@ -483400,49 +482968,67 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4782), - [anon_sym_QMARK] = ACTIONS(4956), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4784), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4960), - [anon_sym_from] = ACTIONS(4782), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_join] = ACTIONS(4782), - [anon_sym_let] = ACTIONS(4782), - [anon_sym_orderby] = ACTIONS(4782), - [anon_sym_group] = ACTIONS(4782), - [anon_sym_select] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483455,6 +483041,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2997] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(2997), [sym_preproc_endregion] = STATE(2997), [sym_preproc_line] = STATE(2997), @@ -483464,70 +483065,52 @@ 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), - [sym__identifier_token] = ACTIONS(5272), - [anon_sym_extern] = ACTIONS(5272), - [anon_sym_alias] = ACTIONS(5272), - [anon_sym_global] = ACTIONS(5272), - [anon_sym_using] = ACTIONS(5272), - [anon_sym_unsafe] = ACTIONS(5272), - [anon_sym_static] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5274), - [anon_sym_LPAREN] = ACTIONS(5274), - [anon_sym_event] = ACTIONS(5272), - [anon_sym_namespace] = ACTIONS(5272), - [anon_sym_class] = ACTIONS(5272), - [anon_sym_ref] = ACTIONS(5272), - [anon_sym_struct] = ACTIONS(5272), - [anon_sym_enum] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5274), - [anon_sym_interface] = ACTIONS(5272), - [anon_sym_delegate] = ACTIONS(5272), - [anon_sym_record] = ACTIONS(5272), - [anon_sym_public] = ACTIONS(5272), - [anon_sym_private] = ACTIONS(5272), - [anon_sym_readonly] = ACTIONS(5272), - [anon_sym_abstract] = ACTIONS(5272), - [anon_sym_async] = ACTIONS(5272), - [anon_sym_const] = ACTIONS(5272), - [anon_sym_file] = ACTIONS(5272), - [anon_sym_fixed] = ACTIONS(5272), - [anon_sym_internal] = ACTIONS(5272), - [anon_sym_new] = ACTIONS(5272), - [anon_sym_override] = ACTIONS(5272), - [anon_sym_partial] = ACTIONS(5272), - [anon_sym_protected] = ACTIONS(5272), - [anon_sym_required] = ACTIONS(5272), - [anon_sym_sealed] = ACTIONS(5272), - [anon_sym_virtual] = ACTIONS(5272), - [anon_sym_volatile] = ACTIONS(5272), - [anon_sym_where] = ACTIONS(5272), - [anon_sym_notnull] = ACTIONS(5272), - [anon_sym_unmanaged] = ACTIONS(5272), - [anon_sym_TILDE] = ACTIONS(5274), - [anon_sym_implicit] = ACTIONS(5272), - [anon_sym_explicit] = ACTIONS(5272), - [anon_sym_scoped] = ACTIONS(5272), - [anon_sym_var] = ACTIONS(5272), - [sym_predefined_type] = ACTIONS(5272), - [anon_sym_yield] = ACTIONS(5272), - [anon_sym_when] = ACTIONS(5272), - [anon_sym_from] = ACTIONS(5272), - [anon_sym_into] = ACTIONS(5272), - [anon_sym_join] = ACTIONS(5272), - [anon_sym_on] = ACTIONS(5272), - [anon_sym_equals] = ACTIONS(5272), - [anon_sym_let] = ACTIONS(5272), - [anon_sym_orderby] = ACTIONS(5272), - [anon_sym_ascending] = ACTIONS(5272), - [anon_sym_descending] = ACTIONS(5272), - [anon_sym_group] = ACTIONS(5272), - [anon_sym_by] = ACTIONS(5272), - [anon_sym_select] = ACTIONS(5272), - [sym_grit_metavariable] = ACTIONS(5274), - [aux_sym_preproc_if_token1] = 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_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_where] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5310), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5292), + [anon_sym_with] = ACTIONS(5308), + [sym_grit_metavariable] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483540,27 +483123,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2998] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), [sym_preproc_region] = STATE(2998), [sym_preproc_endregion] = STATE(2998), [sym_preproc_line] = STATE(2998), @@ -483570,49 +483132,67 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(4956), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4750), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4960), - [anon_sym_from] = ACTIONS(4748), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_join] = ACTIONS(4748), - [anon_sym_let] = ACTIONS(4748), - [anon_sym_orderby] = ACTIONS(4748), - [anon_sym_group] = ACTIONS(4748), - [anon_sym_select] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5416), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483634,70 +483214,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2999), [sym_preproc_define] = STATE(2999), [sym_preproc_undef] = STATE(2999), - [sym__identifier_token] = ACTIONS(5276), - [anon_sym_extern] = ACTIONS(5276), - [anon_sym_alias] = ACTIONS(5276), - [anon_sym_global] = ACTIONS(5276), - [anon_sym_using] = ACTIONS(5276), - [anon_sym_unsafe] = ACTIONS(5276), - [anon_sym_static] = ACTIONS(5276), - [anon_sym_LBRACK] = ACTIONS(5278), - [anon_sym_LPAREN] = ACTIONS(5278), - [anon_sym_event] = ACTIONS(5276), - [anon_sym_namespace] = ACTIONS(5276), - [anon_sym_class] = ACTIONS(5276), - [anon_sym_ref] = ACTIONS(5276), - [anon_sym_struct] = ACTIONS(5276), - [anon_sym_enum] = ACTIONS(5276), - [anon_sym_RBRACE] = ACTIONS(5278), - [anon_sym_interface] = ACTIONS(5276), - [anon_sym_delegate] = ACTIONS(5276), - [anon_sym_record] = ACTIONS(5276), - [anon_sym_public] = ACTIONS(5276), - [anon_sym_private] = ACTIONS(5276), - [anon_sym_readonly] = ACTIONS(5276), - [anon_sym_abstract] = ACTIONS(5276), - [anon_sym_async] = ACTIONS(5276), - [anon_sym_const] = ACTIONS(5276), - [anon_sym_file] = ACTIONS(5276), - [anon_sym_fixed] = ACTIONS(5276), - [anon_sym_internal] = ACTIONS(5276), - [anon_sym_new] = ACTIONS(5276), - [anon_sym_override] = ACTIONS(5276), - [anon_sym_partial] = ACTIONS(5276), - [anon_sym_protected] = ACTIONS(5276), - [anon_sym_required] = ACTIONS(5276), - [anon_sym_sealed] = ACTIONS(5276), - [anon_sym_virtual] = ACTIONS(5276), - [anon_sym_volatile] = ACTIONS(5276), - [anon_sym_where] = ACTIONS(5276), - [anon_sym_notnull] = ACTIONS(5276), - [anon_sym_unmanaged] = ACTIONS(5276), - [anon_sym_TILDE] = ACTIONS(5278), - [anon_sym_implicit] = ACTIONS(5276), - [anon_sym_explicit] = ACTIONS(5276), - [anon_sym_scoped] = ACTIONS(5276), - [anon_sym_var] = ACTIONS(5276), - [sym_predefined_type] = ACTIONS(5276), - [anon_sym_yield] = ACTIONS(5276), - [anon_sym_when] = ACTIONS(5276), - [anon_sym_from] = ACTIONS(5276), - [anon_sym_into] = ACTIONS(5276), - [anon_sym_join] = ACTIONS(5276), - [anon_sym_on] = ACTIONS(5276), - [anon_sym_equals] = ACTIONS(5276), - [anon_sym_let] = ACTIONS(5276), - [anon_sym_orderby] = ACTIONS(5276), - [anon_sym_ascending] = ACTIONS(5276), - [anon_sym_descending] = ACTIONS(5276), - [anon_sym_group] = ACTIONS(5276), - [anon_sym_by] = ACTIONS(5276), - [anon_sym_select] = ACTIONS(5276), - [sym_grit_metavariable] = ACTIONS(5278), - [aux_sym_preproc_if_token1] = ACTIONS(5278), - [aux_sym_preproc_if_token3] = ACTIONS(5278), - [aux_sym_preproc_else_token1] = ACTIONS(5278), - [aux_sym_preproc_elif_token1] = ACTIONS(5278), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483710,27 +483287,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3000] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(3000), [sym_preproc_endregion] = STATE(3000), [sym_preproc_line] = STATE(3000), @@ -483740,49 +483311,52 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4708), - [anon_sym_QMARK] = ACTIONS(4956), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4960), - [anon_sym_from] = ACTIONS(4708), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_join] = ACTIONS(4708), - [anon_sym_let] = ACTIONS(4708), - [anon_sym_orderby] = ACTIONS(4708), - [anon_sym_group] = ACTIONS(4708), - [anon_sym_select] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483795,27 +483369,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3001] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), [sym_preproc_region] = STATE(3001), [sym_preproc_endregion] = STATE(3001), [sym_preproc_line] = STATE(3001), @@ -483825,49 +483378,67 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4960), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [sym__identifier_token] = ACTIONS(5420), + [anon_sym_extern] = ACTIONS(5420), + [anon_sym_alias] = ACTIONS(5420), + [anon_sym_global] = ACTIONS(5420), + [anon_sym_unsafe] = ACTIONS(5420), + [anon_sym_static] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5422), + [anon_sym_LPAREN] = ACTIONS(5422), + [anon_sym_event] = ACTIONS(5420), + [anon_sym_class] = ACTIONS(5420), + [anon_sym_ref] = ACTIONS(5420), + [anon_sym_struct] = ACTIONS(5420), + [anon_sym_enum] = ACTIONS(5420), + [anon_sym_interface] = ACTIONS(5420), + [anon_sym_delegate] = ACTIONS(5420), + [anon_sym_record] = ACTIONS(5420), + [anon_sym_public] = ACTIONS(5420), + [anon_sym_private] = ACTIONS(5420), + [anon_sym_readonly] = ACTIONS(5420), + [anon_sym_abstract] = ACTIONS(5420), + [anon_sym_async] = ACTIONS(5420), + [anon_sym_const] = ACTIONS(5420), + [anon_sym_file] = ACTIONS(5420), + [anon_sym_fixed] = ACTIONS(5420), + [anon_sym_internal] = ACTIONS(5420), + [anon_sym_new] = ACTIONS(5420), + [anon_sym_override] = ACTIONS(5420), + [anon_sym_partial] = ACTIONS(5420), + [anon_sym_protected] = ACTIONS(5420), + [anon_sym_required] = ACTIONS(5420), + [anon_sym_sealed] = ACTIONS(5420), + [anon_sym_virtual] = ACTIONS(5420), + [anon_sym_volatile] = ACTIONS(5420), + [anon_sym_where] = ACTIONS(5420), + [anon_sym_notnull] = ACTIONS(5420), + [anon_sym_unmanaged] = ACTIONS(5420), + [anon_sym_implicit] = ACTIONS(5420), + [anon_sym_explicit] = ACTIONS(5420), + [anon_sym_TILDE] = ACTIONS(5422), + [anon_sym_scoped] = ACTIONS(5420), + [anon_sym_var] = ACTIONS(5420), + [sym_predefined_type] = ACTIONS(5420), + [anon_sym_yield] = ACTIONS(5420), + [anon_sym_when] = ACTIONS(5420), + [anon_sym_from] = ACTIONS(5420), + [anon_sym_into] = ACTIONS(5420), + [anon_sym_join] = ACTIONS(5420), + [anon_sym_on] = ACTIONS(5420), + [anon_sym_equals] = ACTIONS(5420), + [anon_sym_let] = ACTIONS(5420), + [anon_sym_orderby] = ACTIONS(5420), + [anon_sym_ascending] = ACTIONS(5420), + [anon_sym_descending] = ACTIONS(5420), + [anon_sym_group] = ACTIONS(5420), + [anon_sym_by] = ACTIONS(5420), + [anon_sym_select] = ACTIONS(5420), + [sym_grit_metavariable] = ACTIONS(5422), + [aux_sym_preproc_if_token1] = ACTIONS(5422), + [aux_sym_preproc_if_token3] = ACTIONS(5422), + [aux_sym_preproc_else_token1] = ACTIONS(5422), + [aux_sym_preproc_elif_token1] = ACTIONS(5422), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483880,27 +483451,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3002] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), [sym_preproc_region] = STATE(3002), [sym_preproc_endregion] = STATE(3002), [sym_preproc_line] = STATE(3002), @@ -483910,49 +483460,67 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [anon_sym_where] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_switch] = ACTIONS(4546), + [anon_sym_DOT_DOT] = ACTIONS(4546), + [anon_sym_LT_EQ] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_or] = ACTIONS(4548), + [anon_sym_PLUS_EQ] = ACTIONS(4546), + [anon_sym_DASH_EQ] = ACTIONS(4546), + [anon_sym_STAR_EQ] = ACTIONS(4546), + [anon_sym_SLASH_EQ] = ACTIONS(4546), + [anon_sym_PERCENT_EQ] = ACTIONS(4546), + [anon_sym_AMP_EQ] = ACTIONS(4546), + [anon_sym_CARET_EQ] = ACTIONS(4546), + [anon_sym_PIPE_EQ] = ACTIONS(4546), + [anon_sym_LT_LT_EQ] = ACTIONS(4546), + [anon_sym_GT_GT_EQ] = ACTIONS(4546), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4546), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4546), + [anon_sym_BANG_EQ] = ACTIONS(4546), + [anon_sym_AMP_AMP] = ACTIONS(4546), + [anon_sym_PIPE_PIPE] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [sym_op_bitwise_or] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [sym_op_left_shift] = ACTIONS(4548), + [sym_op_right_shift] = ACTIONS(4548), + [sym_op_unsigned_right_shift] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [sym_op_divide] = ACTIONS(4548), + [sym_op_modulo] = ACTIONS(4548), + [sym_op_coalescing] = ACTIONS(4548), + [anon_sym_BANG] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4546), + [anon_sym_from] = ACTIONS(4546), + [anon_sym_into] = ACTIONS(4546), + [anon_sym_join] = ACTIONS(4546), + [anon_sym_let] = ACTIONS(4546), + [anon_sym_orderby] = ACTIONS(4546), + [anon_sym_ascending] = ACTIONS(4546), + [anon_sym_descending] = ACTIONS(4546), + [anon_sym_group] = ACTIONS(4546), + [anon_sym_select] = ACTIONS(4546), + [anon_sym_as] = ACTIONS(4548), + [anon_sym_is] = ACTIONS(4546), + [anon_sym_DASH_GT] = ACTIONS(4546), + [anon_sym_with] = ACTIONS(4546), + [sym_grit_metavariable] = ACTIONS(4546), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483965,27 +483533,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3003] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), [sym_preproc_region] = STATE(3003), [sym_preproc_endregion] = STATE(3003), [sym_preproc_line] = STATE(3003), @@ -483995,116 +483542,50 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3004] = { - [sym_preproc_region] = STATE(3004), - [sym_preproc_endregion] = STATE(3004), - [sym_preproc_line] = STATE(3004), - [sym_preproc_pragma] = STATE(3004), - [sym_preproc_nullable] = STATE(3004), - [sym_preproc_error] = STATE(3004), - [sym_preproc_warning] = STATE(3004), - [sym_preproc_define] = STATE(3004), - [sym_preproc_undef] = STATE(3004), [sym__identifier_token] = ACTIONS(4329), [anon_sym_alias] = ACTIONS(4329), [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), [anon_sym_LPAREN] = ACTIONS(4331), [anon_sym_LBRACE] = ACTIONS(4331), [anon_sym_file] = ACTIONS(4329), [anon_sym_LT] = ACTIONS(4329), [anon_sym_GT] = ACTIONS(4329), [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4442), [anon_sym_notnull] = ACTIONS(4329), [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5280), + [anon_sym_DOT] = ACTIONS(5424), [anon_sym_scoped] = ACTIONS(4329), [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), [anon_sym_yield] = ACTIONS(4329), [anon_sym_switch] = ACTIONS(4329), [anon_sym_when] = ACTIONS(4329), [sym_discard] = ACTIONS(4329), [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), [anon_sym_and] = ACTIONS(4329), [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), [anon_sym_AMP_AMP] = ACTIONS(4331), [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), [anon_sym_from] = ACTIONS(4329), [anon_sym_into] = ACTIONS(4329), [anon_sym_join] = ACTIONS(4329), @@ -484119,7 +483600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(4329), [anon_sym_as] = ACTIONS(4329), [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4985), + [anon_sym_DASH_GT] = ACTIONS(4450), [anon_sym_with] = ACTIONS(4329), [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -484132,7 +483613,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4331), + }, + [3004] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), + [sym_preproc_region] = STATE(3004), + [sym_preproc_endregion] = STATE(3004), + [sym_preproc_line] = STATE(3004), + [sym_preproc_pragma] = STATE(3004), + [sym_preproc_nullable] = STATE(3004), + [sym_preproc_error] = STATE(3004), + [sym_preproc_warning] = STATE(3004), + [sym_preproc_define] = STATE(3004), + [sym_preproc_undef] = STATE(3004), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5328), + [anon_sym_QMARK] = ACTIONS(5388), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5330), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5328), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3005] = { [sym_preproc_region] = STATE(3005), @@ -484144,69 +483706,67 @@ 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), - [sym__identifier_token] = ACTIONS(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_COLON] = ACTIONS(3997), - [anon_sym_COMMA] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(3986), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3986), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3986), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3986), - [anon_sym_when] = ACTIONS(3986), - [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3986), - [anon_sym_or] = ACTIONS(3986), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [sym_op_coalescing] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3986), - [anon_sym_into] = ACTIONS(3986), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(3986), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3986), - [anon_sym_is] = ACTIONS(3986), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3986), - [sym_grit_metavariable] = ACTIONS(3997), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_global] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_notnull] = ACTIONS(4329), + [anon_sym_unmanaged] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(5426), + [anon_sym_scoped] = ACTIONS(4329), + [anon_sym_var] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_switch] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [sym_discard] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4329), + [anon_sym_into] = ACTIONS(4329), + [anon_sym_join] = ACTIONS(4329), + [anon_sym_on] = ACTIONS(4329), + [anon_sym_equals] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_orderby] = ACTIONS(4329), + [anon_sym_ascending] = ACTIONS(4329), + [anon_sym_descending] = ACTIONS(4329), + [anon_sym_group] = ACTIONS(4329), + [anon_sym_by] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(4329), + [sym_grit_metavariable] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484217,30 +483777,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(3997), }, [3006] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), [sym_preproc_region] = STATE(3006), [sym_preproc_endregion] = STATE(3006), [sym_preproc_line] = STATE(3006), @@ -484250,49 +483788,67 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [sym__identifier_token] = ACTIONS(5428), + [anon_sym_extern] = ACTIONS(5428), + [anon_sym_alias] = ACTIONS(5428), + [anon_sym_global] = ACTIONS(5428), + [anon_sym_unsafe] = ACTIONS(5428), + [anon_sym_static] = ACTIONS(5428), + [anon_sym_LBRACK] = ACTIONS(5430), + [anon_sym_LPAREN] = ACTIONS(5430), + [anon_sym_event] = ACTIONS(5428), + [anon_sym_class] = ACTIONS(5428), + [anon_sym_ref] = ACTIONS(5428), + [anon_sym_struct] = ACTIONS(5428), + [anon_sym_enum] = ACTIONS(5428), + [anon_sym_interface] = ACTIONS(5428), + [anon_sym_delegate] = ACTIONS(5428), + [anon_sym_record] = ACTIONS(5428), + [anon_sym_public] = ACTIONS(5428), + [anon_sym_private] = ACTIONS(5428), + [anon_sym_readonly] = ACTIONS(5428), + [anon_sym_abstract] = ACTIONS(5428), + [anon_sym_async] = ACTIONS(5428), + [anon_sym_const] = ACTIONS(5428), + [anon_sym_file] = ACTIONS(5428), + [anon_sym_fixed] = ACTIONS(5428), + [anon_sym_internal] = ACTIONS(5428), + [anon_sym_new] = ACTIONS(5428), + [anon_sym_override] = ACTIONS(5428), + [anon_sym_partial] = ACTIONS(5428), + [anon_sym_protected] = ACTIONS(5428), + [anon_sym_required] = ACTIONS(5428), + [anon_sym_sealed] = ACTIONS(5428), + [anon_sym_virtual] = ACTIONS(5428), + [anon_sym_volatile] = ACTIONS(5428), + [anon_sym_where] = ACTIONS(5428), + [anon_sym_notnull] = ACTIONS(5428), + [anon_sym_unmanaged] = ACTIONS(5428), + [anon_sym_implicit] = ACTIONS(5428), + [anon_sym_explicit] = ACTIONS(5428), + [anon_sym_TILDE] = ACTIONS(5430), + [anon_sym_scoped] = ACTIONS(5428), + [anon_sym_var] = ACTIONS(5428), + [sym_predefined_type] = ACTIONS(5428), + [anon_sym_yield] = ACTIONS(5428), + [anon_sym_when] = ACTIONS(5428), + [anon_sym_from] = ACTIONS(5428), + [anon_sym_into] = ACTIONS(5428), + [anon_sym_join] = ACTIONS(5428), + [anon_sym_on] = ACTIONS(5428), + [anon_sym_equals] = ACTIONS(5428), + [anon_sym_let] = ACTIONS(5428), + [anon_sym_orderby] = ACTIONS(5428), + [anon_sym_ascending] = ACTIONS(5428), + [anon_sym_descending] = ACTIONS(5428), + [anon_sym_group] = ACTIONS(5428), + [anon_sym_by] = ACTIONS(5428), + [anon_sym_select] = ACTIONS(5428), + [sym_grit_metavariable] = ACTIONS(5430), + [aux_sym_preproc_if_token1] = ACTIONS(5430), + [aux_sym_preproc_if_token3] = ACTIONS(5430), + [aux_sym_preproc_else_token1] = ACTIONS(5430), + [aux_sym_preproc_elif_token1] = ACTIONS(5430), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484305,27 +483861,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3007] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(3007), [sym_preproc_endregion] = STATE(3007), [sym_preproc_line] = STATE(3007), @@ -484335,49 +483885,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3007), [sym_preproc_define] = STATE(3007), [sym_preproc_undef] = STATE(3007), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(5388), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5334), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5332), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484399,70 +483952,67 @@ 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), - [sym__identifier_token] = ACTIONS(5282), - [anon_sym_extern] = ACTIONS(5282), - [anon_sym_alias] = ACTIONS(5282), - [anon_sym_global] = ACTIONS(5282), - [anon_sym_using] = ACTIONS(5282), - [anon_sym_unsafe] = ACTIONS(5282), - [anon_sym_static] = ACTIONS(5282), - [anon_sym_LBRACK] = ACTIONS(5284), - [anon_sym_LPAREN] = ACTIONS(5284), - [anon_sym_event] = ACTIONS(5282), - [anon_sym_namespace] = ACTIONS(5282), - [anon_sym_class] = ACTIONS(5282), - [anon_sym_ref] = ACTIONS(5282), - [anon_sym_struct] = ACTIONS(5282), - [anon_sym_enum] = ACTIONS(5282), - [anon_sym_RBRACE] = ACTIONS(5284), - [anon_sym_interface] = ACTIONS(5282), - [anon_sym_delegate] = ACTIONS(5282), - [anon_sym_record] = ACTIONS(5282), - [anon_sym_public] = ACTIONS(5282), - [anon_sym_private] = ACTIONS(5282), - [anon_sym_readonly] = ACTIONS(5282), - [anon_sym_abstract] = ACTIONS(5282), - [anon_sym_async] = ACTIONS(5282), - [anon_sym_const] = ACTIONS(5282), - [anon_sym_file] = ACTIONS(5282), - [anon_sym_fixed] = ACTIONS(5282), - [anon_sym_internal] = ACTIONS(5282), - [anon_sym_new] = ACTIONS(5282), - [anon_sym_override] = ACTIONS(5282), - [anon_sym_partial] = ACTIONS(5282), - [anon_sym_protected] = ACTIONS(5282), - [anon_sym_required] = ACTIONS(5282), - [anon_sym_sealed] = ACTIONS(5282), - [anon_sym_virtual] = ACTIONS(5282), - [anon_sym_volatile] = ACTIONS(5282), - [anon_sym_where] = ACTIONS(5282), - [anon_sym_notnull] = ACTIONS(5282), - [anon_sym_unmanaged] = ACTIONS(5282), - [anon_sym_TILDE] = ACTIONS(5284), - [anon_sym_implicit] = ACTIONS(5282), - [anon_sym_explicit] = ACTIONS(5282), - [anon_sym_scoped] = ACTIONS(5282), - [anon_sym_var] = ACTIONS(5282), - [sym_predefined_type] = ACTIONS(5282), - [anon_sym_yield] = ACTIONS(5282), - [anon_sym_when] = ACTIONS(5282), - [anon_sym_from] = ACTIONS(5282), - [anon_sym_into] = ACTIONS(5282), - [anon_sym_join] = ACTIONS(5282), - [anon_sym_on] = ACTIONS(5282), - [anon_sym_equals] = 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_by] = ACTIONS(5282), - [anon_sym_select] = ACTIONS(5282), - [sym_grit_metavariable] = ACTIONS(5284), - [aux_sym_preproc_if_token1] = ACTIONS(5284), - [aux_sym_preproc_if_token3] = ACTIONS(5284), - [aux_sym_preproc_else_token1] = ACTIONS(5284), - [aux_sym_preproc_elif_token1] = ACTIONS(5284), + [sym__identifier_token] = ACTIONS(5432), + [anon_sym_extern] = ACTIONS(5432), + [anon_sym_alias] = ACTIONS(5432), + [anon_sym_global] = ACTIONS(5432), + [anon_sym_unsafe] = ACTIONS(5432), + [anon_sym_static] = ACTIONS(5432), + [anon_sym_LBRACK] = ACTIONS(5434), + [anon_sym_LPAREN] = ACTIONS(5434), + [anon_sym_event] = ACTIONS(5432), + [anon_sym_class] = ACTIONS(5432), + [anon_sym_ref] = ACTIONS(5432), + [anon_sym_struct] = ACTIONS(5432), + [anon_sym_enum] = ACTIONS(5432), + [anon_sym_interface] = ACTIONS(5432), + [anon_sym_delegate] = ACTIONS(5432), + [anon_sym_record] = ACTIONS(5432), + [anon_sym_public] = ACTIONS(5432), + [anon_sym_private] = ACTIONS(5432), + [anon_sym_readonly] = ACTIONS(5432), + [anon_sym_abstract] = ACTIONS(5432), + [anon_sym_async] = ACTIONS(5432), + [anon_sym_const] = ACTIONS(5432), + [anon_sym_file] = ACTIONS(5432), + [anon_sym_fixed] = ACTIONS(5432), + [anon_sym_internal] = ACTIONS(5432), + [anon_sym_new] = ACTIONS(5432), + [anon_sym_override] = ACTIONS(5432), + [anon_sym_partial] = ACTIONS(5432), + [anon_sym_protected] = ACTIONS(5432), + [anon_sym_required] = ACTIONS(5432), + [anon_sym_sealed] = ACTIONS(5432), + [anon_sym_virtual] = ACTIONS(5432), + [anon_sym_volatile] = ACTIONS(5432), + [anon_sym_where] = ACTIONS(5432), + [anon_sym_notnull] = ACTIONS(5432), + [anon_sym_unmanaged] = ACTIONS(5432), + [anon_sym_implicit] = ACTIONS(5432), + [anon_sym_explicit] = ACTIONS(5432), + [anon_sym_TILDE] = ACTIONS(5434), + [anon_sym_scoped] = ACTIONS(5432), + [anon_sym_var] = ACTIONS(5432), + [sym_predefined_type] = ACTIONS(5432), + [anon_sym_yield] = ACTIONS(5432), + [anon_sym_when] = ACTIONS(5432), + [anon_sym_from] = ACTIONS(5432), + [anon_sym_into] = ACTIONS(5432), + [anon_sym_join] = ACTIONS(5432), + [anon_sym_on] = ACTIONS(5432), + [anon_sym_equals] = ACTIONS(5432), + [anon_sym_let] = ACTIONS(5432), + [anon_sym_orderby] = ACTIONS(5432), + [anon_sym_ascending] = ACTIONS(5432), + [anon_sym_descending] = ACTIONS(5432), + [anon_sym_group] = ACTIONS(5432), + [anon_sym_by] = ACTIONS(5432), + [anon_sym_select] = ACTIONS(5432), + [sym_grit_metavariable] = ACTIONS(5434), + [aux_sym_preproc_if_token1] = ACTIONS(5434), + [aux_sym_preproc_if_token3] = ACTIONS(5434), + [aux_sym_preproc_else_token1] = ACTIONS(5434), + [aux_sym_preproc_elif_token1] = ACTIONS(5434), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484475,6 +484025,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3009] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter] = STATE(7080), + [sym__parameter_array] = STATE(7077), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6417), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6014), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(3009), [sym_preproc_endregion] = STATE(3009), [sym_preproc_line] = STATE(3009), @@ -484484,69 +484057,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3009), [sym_preproc_define] = STATE(3009), [sym_preproc_undef] = STATE(3009), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4980), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3162), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_RBRACK] = ACTIONS(5436), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5216), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(1311), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_out] = ACTIONS(1311), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_this] = ACTIONS(1311), + [anon_sym_scoped] = ACTIONS(5226), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(5222), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484557,7 +484105,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(4331), }, [3010] = { [sym_preproc_region] = STATE(3010), @@ -484569,69 +484116,67 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [sym__identifier_token] = ACTIONS(5438), + [anon_sym_extern] = ACTIONS(5438), + [anon_sym_alias] = ACTIONS(5438), + [anon_sym_global] = ACTIONS(5438), + [anon_sym_unsafe] = ACTIONS(5438), + [anon_sym_static] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5440), + [anon_sym_LPAREN] = ACTIONS(5440), + [anon_sym_event] = ACTIONS(5438), + [anon_sym_class] = ACTIONS(5438), + [anon_sym_ref] = ACTIONS(5438), + [anon_sym_struct] = ACTIONS(5438), + [anon_sym_enum] = ACTIONS(5438), + [anon_sym_interface] = ACTIONS(5438), + [anon_sym_delegate] = ACTIONS(5438), + [anon_sym_record] = ACTIONS(5438), + [anon_sym_public] = ACTIONS(5438), + [anon_sym_private] = ACTIONS(5438), + [anon_sym_readonly] = ACTIONS(5438), + [anon_sym_abstract] = ACTIONS(5438), + [anon_sym_async] = ACTIONS(5438), + [anon_sym_const] = ACTIONS(5438), + [anon_sym_file] = ACTIONS(5438), + [anon_sym_fixed] = ACTIONS(5438), + [anon_sym_internal] = ACTIONS(5438), + [anon_sym_new] = ACTIONS(5438), + [anon_sym_override] = ACTIONS(5438), + [anon_sym_partial] = ACTIONS(5438), + [anon_sym_protected] = ACTIONS(5438), + [anon_sym_required] = ACTIONS(5438), + [anon_sym_sealed] = ACTIONS(5438), + [anon_sym_virtual] = ACTIONS(5438), + [anon_sym_volatile] = ACTIONS(5438), + [anon_sym_where] = ACTIONS(5438), + [anon_sym_notnull] = ACTIONS(5438), + [anon_sym_unmanaged] = ACTIONS(5438), + [anon_sym_implicit] = ACTIONS(5438), + [anon_sym_explicit] = ACTIONS(5438), + [anon_sym_TILDE] = ACTIONS(5440), + [anon_sym_scoped] = ACTIONS(5438), + [anon_sym_var] = ACTIONS(5438), + [sym_predefined_type] = ACTIONS(5438), + [anon_sym_yield] = ACTIONS(5438), + [anon_sym_when] = ACTIONS(5438), + [anon_sym_from] = ACTIONS(5438), + [anon_sym_into] = ACTIONS(5438), + [anon_sym_join] = ACTIONS(5438), + [anon_sym_on] = ACTIONS(5438), + [anon_sym_equals] = ACTIONS(5438), + [anon_sym_let] = ACTIONS(5438), + [anon_sym_orderby] = ACTIONS(5438), + [anon_sym_ascending] = ACTIONS(5438), + [anon_sym_descending] = ACTIONS(5438), + [anon_sym_group] = ACTIONS(5438), + [anon_sym_by] = ACTIONS(5438), + [anon_sym_select] = ACTIONS(5438), + [sym_grit_metavariable] = ACTIONS(5440), + [aux_sym_preproc_if_token1] = ACTIONS(5440), + [aux_sym_preproc_if_token3] = ACTIONS(5440), + [aux_sym_preproc_else_token1] = ACTIONS(5440), + [aux_sym_preproc_elif_token1] = ACTIONS(5440), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484642,9 +484187,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4331), }, [3011] = { + [sym_attribute_list] = STATE(4526), + [sym__attribute_list] = STATE(4515), + [sym_modifier] = STATE(5123), + [sym_accessor_declaration] = STATE(4030), + [sym_identifier] = STATE(6719), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_attribute_list] = STATE(4526), [sym_preproc_region] = STATE(3011), [sym_preproc_endregion] = STATE(3011), [sym_preproc_line] = STATE(3011), @@ -484654,69 +484205,60 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4980), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3198), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4008), + [aux_sym_accessor_list_repeat1] = STATE(2987), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(5394), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_unsafe] = ACTIONS(5394), + [anon_sym_static] = ACTIONS(5394), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_RBRACE] = ACTIONS(5442), + [anon_sym_public] = ACTIONS(5394), + [anon_sym_private] = ACTIONS(5394), + [anon_sym_readonly] = ACTIONS(5394), + [anon_sym_abstract] = ACTIONS(5394), + [anon_sym_async] = ACTIONS(5394), + [anon_sym_const] = ACTIONS(5394), + [anon_sym_file] = ACTIONS(5400), + [anon_sym_fixed] = ACTIONS(5394), + [anon_sym_internal] = ACTIONS(5394), + [anon_sym_new] = ACTIONS(5394), + [anon_sym_override] = ACTIONS(5394), + [anon_sym_partial] = ACTIONS(5394), + [anon_sym_protected] = ACTIONS(5394), + [anon_sym_required] = ACTIONS(5394), + [anon_sym_sealed] = ACTIONS(5394), + [anon_sym_virtual] = ACTIONS(5394), + [anon_sym_volatile] = ACTIONS(5394), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [sym_accessor_get] = ACTIONS(5402), + [sym_accessor_set] = ACTIONS(5402), + [sym_accessor_add] = ACTIONS(5402), + [sym_accessor_remove] = ACTIONS(5402), + [sym_accessor_init] = ACTIONS(5402), + [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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(5404), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484727,9 +484269,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4331), }, [3012] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(3012), [sym_preproc_endregion] = STATE(3012), [sym_preproc_line] = STATE(3012), @@ -484739,70 +484295,52 @@ 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), - [sym__identifier_token] = ACTIONS(5286), - [anon_sym_extern] = ACTIONS(5286), - [anon_sym_alias] = ACTIONS(5286), - [anon_sym_global] = ACTIONS(5286), - [anon_sym_using] = ACTIONS(5286), - [anon_sym_unsafe] = ACTIONS(5286), - [anon_sym_static] = ACTIONS(5286), - [anon_sym_LBRACK] = ACTIONS(5288), - [anon_sym_LPAREN] = ACTIONS(5288), - [anon_sym_event] = ACTIONS(5286), - [anon_sym_namespace] = ACTIONS(5286), - [anon_sym_class] = ACTIONS(5286), - [anon_sym_ref] = ACTIONS(5286), - [anon_sym_struct] = ACTIONS(5286), - [anon_sym_enum] = ACTIONS(5286), - [anon_sym_RBRACE] = ACTIONS(5288), - [anon_sym_interface] = ACTIONS(5286), - [anon_sym_delegate] = ACTIONS(5286), - [anon_sym_record] = ACTIONS(5286), - [anon_sym_public] = ACTIONS(5286), - [anon_sym_private] = ACTIONS(5286), - [anon_sym_readonly] = ACTIONS(5286), - [anon_sym_abstract] = ACTIONS(5286), - [anon_sym_async] = ACTIONS(5286), - [anon_sym_const] = ACTIONS(5286), - [anon_sym_file] = ACTIONS(5286), - [anon_sym_fixed] = ACTIONS(5286), - [anon_sym_internal] = ACTIONS(5286), - [anon_sym_new] = ACTIONS(5286), - [anon_sym_override] = ACTIONS(5286), - [anon_sym_partial] = ACTIONS(5286), - [anon_sym_protected] = ACTIONS(5286), - [anon_sym_required] = ACTIONS(5286), - [anon_sym_sealed] = ACTIONS(5286), - [anon_sym_virtual] = ACTIONS(5286), - [anon_sym_volatile] = ACTIONS(5286), - [anon_sym_where] = ACTIONS(5286), - [anon_sym_notnull] = ACTIONS(5286), - [anon_sym_unmanaged] = ACTIONS(5286), - [anon_sym_TILDE] = ACTIONS(5288), - [anon_sym_implicit] = ACTIONS(5286), - [anon_sym_explicit] = ACTIONS(5286), - [anon_sym_scoped] = ACTIONS(5286), - [anon_sym_var] = ACTIONS(5286), - [sym_predefined_type] = ACTIONS(5286), - [anon_sym_yield] = ACTIONS(5286), - [anon_sym_when] = ACTIONS(5286), - [anon_sym_from] = ACTIONS(5286), - [anon_sym_into] = ACTIONS(5286), - [anon_sym_join] = ACTIONS(5286), - [anon_sym_on] = ACTIONS(5286), - [anon_sym_equals] = ACTIONS(5286), - [anon_sym_let] = ACTIONS(5286), - [anon_sym_orderby] = ACTIONS(5286), - [anon_sym_ascending] = ACTIONS(5286), - [anon_sym_descending] = ACTIONS(5286), - [anon_sym_group] = ACTIONS(5286), - [anon_sym_by] = ACTIONS(5286), - [anon_sym_select] = ACTIONS(5286), - [sym_grit_metavariable] = ACTIONS(5288), - [aux_sym_preproc_if_token1] = 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_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_where] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(1365), + [anon_sym_join] = ACTIONS(1365), + [anon_sym_let] = ACTIONS(1365), + [anon_sym_orderby] = ACTIONS(1365), + [anon_sym_ascending] = ACTIONS(1365), + [anon_sym_descending] = ACTIONS(1365), + [anon_sym_group] = ACTIONS(1365), + [anon_sym_select] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(1365), + [sym_grit_metavariable] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484824,70 +484362,67 @@ 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), - [sym__identifier_token] = ACTIONS(5290), - [anon_sym_extern] = ACTIONS(5290), - [anon_sym_alias] = ACTIONS(5290), - [anon_sym_global] = ACTIONS(5290), - [anon_sym_using] = ACTIONS(5290), - [anon_sym_unsafe] = ACTIONS(5290), - [anon_sym_static] = ACTIONS(5290), - [anon_sym_LBRACK] = ACTIONS(5292), - [anon_sym_LPAREN] = ACTIONS(5292), - [anon_sym_event] = ACTIONS(5290), - [anon_sym_namespace] = ACTIONS(5290), - [anon_sym_class] = ACTIONS(5290), - [anon_sym_ref] = ACTIONS(5290), - [anon_sym_struct] = ACTIONS(5290), - [anon_sym_enum] = ACTIONS(5290), - [anon_sym_RBRACE] = ACTIONS(5292), - [anon_sym_interface] = ACTIONS(5290), - [anon_sym_delegate] = ACTIONS(5290), - [anon_sym_record] = ACTIONS(5290), - [anon_sym_public] = ACTIONS(5290), - [anon_sym_private] = ACTIONS(5290), - [anon_sym_readonly] = ACTIONS(5290), - [anon_sym_abstract] = ACTIONS(5290), - [anon_sym_async] = ACTIONS(5290), - [anon_sym_const] = ACTIONS(5290), - [anon_sym_file] = ACTIONS(5290), - [anon_sym_fixed] = ACTIONS(5290), - [anon_sym_internal] = ACTIONS(5290), - [anon_sym_new] = ACTIONS(5290), - [anon_sym_override] = ACTIONS(5290), - [anon_sym_partial] = ACTIONS(5290), - [anon_sym_protected] = ACTIONS(5290), - [anon_sym_required] = ACTIONS(5290), - [anon_sym_sealed] = ACTIONS(5290), - [anon_sym_virtual] = ACTIONS(5290), - [anon_sym_volatile] = ACTIONS(5290), - [anon_sym_where] = ACTIONS(5290), - [anon_sym_notnull] = ACTIONS(5290), - [anon_sym_unmanaged] = ACTIONS(5290), - [anon_sym_TILDE] = ACTIONS(5292), - [anon_sym_implicit] = ACTIONS(5290), - [anon_sym_explicit] = ACTIONS(5290), - [anon_sym_scoped] = ACTIONS(5290), - [anon_sym_var] = ACTIONS(5290), - [sym_predefined_type] = ACTIONS(5290), - [anon_sym_yield] = ACTIONS(5290), - [anon_sym_when] = ACTIONS(5290), - [anon_sym_from] = ACTIONS(5290), - [anon_sym_into] = ACTIONS(5290), - [anon_sym_join] = ACTIONS(5290), - [anon_sym_on] = ACTIONS(5290), - [anon_sym_equals] = ACTIONS(5290), - [anon_sym_let] = ACTIONS(5290), - [anon_sym_orderby] = ACTIONS(5290), - [anon_sym_ascending] = ACTIONS(5290), - [anon_sym_descending] = ACTIONS(5290), - [anon_sym_group] = ACTIONS(5290), - [anon_sym_by] = ACTIONS(5290), - [anon_sym_select] = ACTIONS(5290), - [sym_grit_metavariable] = ACTIONS(5292), - [aux_sym_preproc_if_token1] = ACTIONS(5292), - [aux_sym_preproc_if_token3] = ACTIONS(5292), - [aux_sym_preproc_else_token1] = ACTIONS(5292), - [aux_sym_preproc_elif_token1] = ACTIONS(5292), + [sym__identifier_token] = ACTIONS(5444), + [anon_sym_extern] = ACTIONS(5444), + [anon_sym_alias] = ACTIONS(5444), + [anon_sym_global] = ACTIONS(5444), + [anon_sym_unsafe] = ACTIONS(5444), + [anon_sym_static] = ACTIONS(5444), + [anon_sym_LBRACK] = ACTIONS(5446), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_event] = ACTIONS(5444), + [anon_sym_class] = ACTIONS(5444), + [anon_sym_ref] = ACTIONS(5444), + [anon_sym_struct] = ACTIONS(5444), + [anon_sym_enum] = ACTIONS(5444), + [anon_sym_interface] = ACTIONS(5444), + [anon_sym_delegate] = ACTIONS(5444), + [anon_sym_record] = ACTIONS(5444), + [anon_sym_public] = ACTIONS(5444), + [anon_sym_private] = ACTIONS(5444), + [anon_sym_readonly] = ACTIONS(5444), + [anon_sym_abstract] = ACTIONS(5444), + [anon_sym_async] = ACTIONS(5444), + [anon_sym_const] = ACTIONS(5444), + [anon_sym_file] = ACTIONS(5444), + [anon_sym_fixed] = ACTIONS(5444), + [anon_sym_internal] = ACTIONS(5444), + [anon_sym_new] = ACTIONS(5444), + [anon_sym_override] = ACTIONS(5444), + [anon_sym_partial] = ACTIONS(5444), + [anon_sym_protected] = ACTIONS(5444), + [anon_sym_required] = ACTIONS(5444), + [anon_sym_sealed] = ACTIONS(5444), + [anon_sym_virtual] = ACTIONS(5444), + [anon_sym_volatile] = ACTIONS(5444), + [anon_sym_where] = ACTIONS(5444), + [anon_sym_notnull] = ACTIONS(5444), + [anon_sym_unmanaged] = ACTIONS(5444), + [anon_sym_implicit] = ACTIONS(5444), + [anon_sym_explicit] = ACTIONS(5444), + [anon_sym_TILDE] = ACTIONS(5446), + [anon_sym_scoped] = ACTIONS(5444), + [anon_sym_var] = ACTIONS(5444), + [sym_predefined_type] = ACTIONS(5444), + [anon_sym_yield] = ACTIONS(5444), + [anon_sym_when] = ACTIONS(5444), + [anon_sym_from] = ACTIONS(5444), + [anon_sym_into] = ACTIONS(5444), + [anon_sym_join] = ACTIONS(5444), + [anon_sym_on] = ACTIONS(5444), + [anon_sym_equals] = ACTIONS(5444), + [anon_sym_let] = ACTIONS(5444), + [anon_sym_orderby] = ACTIONS(5444), + [anon_sym_ascending] = ACTIONS(5444), + [anon_sym_descending] = ACTIONS(5444), + [anon_sym_group] = ACTIONS(5444), + [anon_sym_by] = ACTIONS(5444), + [anon_sym_select] = ACTIONS(5444), + [sym_grit_metavariable] = ACTIONS(5446), + [aux_sym_preproc_if_token1] = ACTIONS(5446), + [aux_sym_preproc_if_token3] = ACTIONS(5446), + [aux_sym_preproc_else_token1] = ACTIONS(5446), + [aux_sym_preproc_elif_token1] = ACTIONS(5446), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484900,27 +484435,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3014] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), [sym_preproc_region] = STATE(3014), [sym_preproc_endregion] = STATE(3014), [sym_preproc_line] = STATE(3014), @@ -484930,49 +484444,67 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [sym__identifier_token] = ACTIONS(5448), + [anon_sym_extern] = ACTIONS(5448), + [anon_sym_alias] = ACTIONS(5448), + [anon_sym_global] = ACTIONS(5448), + [anon_sym_unsafe] = ACTIONS(5448), + [anon_sym_static] = ACTIONS(5448), + [anon_sym_LBRACK] = ACTIONS(5450), + [anon_sym_LPAREN] = ACTIONS(5450), + [anon_sym_event] = ACTIONS(5448), + [anon_sym_class] = ACTIONS(5448), + [anon_sym_ref] = ACTIONS(5448), + [anon_sym_struct] = ACTIONS(5448), + [anon_sym_enum] = ACTIONS(5448), + [anon_sym_interface] = ACTIONS(5448), + [anon_sym_delegate] = ACTIONS(5448), + [anon_sym_record] = ACTIONS(5448), + [anon_sym_public] = ACTIONS(5448), + [anon_sym_private] = ACTIONS(5448), + [anon_sym_readonly] = ACTIONS(5448), + [anon_sym_abstract] = ACTIONS(5448), + [anon_sym_async] = ACTIONS(5448), + [anon_sym_const] = ACTIONS(5448), + [anon_sym_file] = ACTIONS(5448), + [anon_sym_fixed] = ACTIONS(5448), + [anon_sym_internal] = ACTIONS(5448), + [anon_sym_new] = ACTIONS(5448), + [anon_sym_override] = ACTIONS(5448), + [anon_sym_partial] = ACTIONS(5448), + [anon_sym_protected] = ACTIONS(5448), + [anon_sym_required] = ACTIONS(5448), + [anon_sym_sealed] = ACTIONS(5448), + [anon_sym_virtual] = ACTIONS(5448), + [anon_sym_volatile] = ACTIONS(5448), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_notnull] = ACTIONS(5448), + [anon_sym_unmanaged] = ACTIONS(5448), + [anon_sym_implicit] = ACTIONS(5448), + [anon_sym_explicit] = ACTIONS(5448), + [anon_sym_TILDE] = ACTIONS(5450), + [anon_sym_scoped] = ACTIONS(5448), + [anon_sym_var] = ACTIONS(5448), + [sym_predefined_type] = ACTIONS(5448), + [anon_sym_yield] = ACTIONS(5448), + [anon_sym_when] = ACTIONS(5448), + [anon_sym_from] = ACTIONS(5448), + [anon_sym_into] = ACTIONS(5448), + [anon_sym_join] = ACTIONS(5448), + [anon_sym_on] = ACTIONS(5448), + [anon_sym_equals] = ACTIONS(5448), + [anon_sym_let] = ACTIONS(5448), + [anon_sym_orderby] = ACTIONS(5448), + [anon_sym_ascending] = ACTIONS(5448), + [anon_sym_descending] = ACTIONS(5448), + [anon_sym_group] = ACTIONS(5448), + [anon_sym_by] = ACTIONS(5448), + [anon_sym_select] = ACTIONS(5448), + [sym_grit_metavariable] = ACTIONS(5450), + [aux_sym_preproc_if_token1] = ACTIONS(5450), + [aux_sym_preproc_if_token3] = ACTIONS(5450), + [aux_sym_preproc_else_token1] = ACTIONS(5450), + [aux_sym_preproc_elif_token1] = ACTIONS(5450), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484985,27 +484517,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3015] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), + [sym_attribute_list] = STATE(4526), + [sym__attribute_list] = STATE(4515), + [sym_modifier] = STATE(5123), + [sym_accessor_declaration] = STATE(4030), + [sym_identifier] = STATE(6719), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_attribute_list] = STATE(4526), [sym_preproc_region] = STATE(3015), [sym_preproc_endregion] = STATE(3015), [sym_preproc_line] = STATE(3015), @@ -485015,49 +484533,60 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3198), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4008), + [aux_sym_accessor_list_repeat1] = STATE(3015), + [sym__identifier_token] = ACTIONS(5452), + [anon_sym_extern] = ACTIONS(5455), + [anon_sym_alias] = ACTIONS(5458), + [anon_sym_global] = ACTIONS(5458), + [anon_sym_unsafe] = ACTIONS(5455), + [anon_sym_static] = ACTIONS(5455), + [anon_sym_LBRACK] = ACTIONS(5461), + [anon_sym_RBRACE] = ACTIONS(5464), + [anon_sym_public] = ACTIONS(5455), + [anon_sym_private] = ACTIONS(5455), + [anon_sym_readonly] = ACTIONS(5455), + [anon_sym_abstract] = ACTIONS(5455), + [anon_sym_async] = ACTIONS(5455), + [anon_sym_const] = ACTIONS(5455), + [anon_sym_file] = ACTIONS(5466), + [anon_sym_fixed] = ACTIONS(5455), + [anon_sym_internal] = ACTIONS(5455), + [anon_sym_new] = ACTIONS(5455), + [anon_sym_override] = ACTIONS(5455), + [anon_sym_partial] = ACTIONS(5455), + [anon_sym_protected] = ACTIONS(5455), + [anon_sym_required] = ACTIONS(5455), + [anon_sym_sealed] = ACTIONS(5455), + [anon_sym_virtual] = ACTIONS(5455), + [anon_sym_volatile] = ACTIONS(5455), + [anon_sym_where] = ACTIONS(5458), + [anon_sym_notnull] = ACTIONS(5458), + [anon_sym_unmanaged] = ACTIONS(5458), + [sym_accessor_get] = ACTIONS(5469), + [sym_accessor_set] = ACTIONS(5469), + [sym_accessor_add] = ACTIONS(5469), + [sym_accessor_remove] = ACTIONS(5469), + [sym_accessor_init] = ACTIONS(5469), + [anon_sym_scoped] = ACTIONS(5458), + [anon_sym_var] = ACTIONS(5458), + [anon_sym_yield] = ACTIONS(5458), + [anon_sym_when] = ACTIONS(5458), + [anon_sym_from] = ACTIONS(5458), + [anon_sym_into] = ACTIONS(5458), + [anon_sym_join] = ACTIONS(5458), + [anon_sym_on] = ACTIONS(5458), + [anon_sym_equals] = ACTIONS(5458), + [anon_sym_let] = ACTIONS(5458), + [anon_sym_orderby] = ACTIONS(5458), + [anon_sym_ascending] = ACTIONS(5458), + [anon_sym_descending] = ACTIONS(5458), + [anon_sym_group] = ACTIONS(5458), + [anon_sym_by] = ACTIONS(5458), + [anon_sym_select] = ACTIONS(5458), + [sym_grit_metavariable] = ACTIONS(5472), + [aux_sym_preproc_if_token1] = ACTIONS(5475), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485079,70 +484608,67 @@ 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), - [sym__identifier_token] = ACTIONS(5294), - [anon_sym_extern] = ACTIONS(5294), - [anon_sym_alias] = ACTIONS(5294), - [anon_sym_global] = ACTIONS(5294), - [anon_sym_using] = ACTIONS(5294), - [anon_sym_unsafe] = ACTIONS(5294), - [anon_sym_static] = ACTIONS(5294), - [anon_sym_LBRACK] = ACTIONS(5296), - [anon_sym_LPAREN] = ACTIONS(5296), - [anon_sym_event] = ACTIONS(5294), - [anon_sym_namespace] = ACTIONS(5294), - [anon_sym_class] = ACTIONS(5294), - [anon_sym_ref] = ACTIONS(5294), - [anon_sym_struct] = ACTIONS(5294), - [anon_sym_enum] = ACTIONS(5294), - [anon_sym_RBRACE] = ACTIONS(5296), - [anon_sym_interface] = ACTIONS(5294), - [anon_sym_delegate] = ACTIONS(5294), - [anon_sym_record] = ACTIONS(5294), - [anon_sym_public] = ACTIONS(5294), - [anon_sym_private] = ACTIONS(5294), - [anon_sym_readonly] = ACTIONS(5294), - [anon_sym_abstract] = ACTIONS(5294), - [anon_sym_async] = ACTIONS(5294), - [anon_sym_const] = ACTIONS(5294), - [anon_sym_file] = ACTIONS(5294), - [anon_sym_fixed] = ACTIONS(5294), - [anon_sym_internal] = ACTIONS(5294), - [anon_sym_new] = ACTIONS(5294), - [anon_sym_override] = ACTIONS(5294), - [anon_sym_partial] = ACTIONS(5294), - [anon_sym_protected] = ACTIONS(5294), - [anon_sym_required] = ACTIONS(5294), - [anon_sym_sealed] = ACTIONS(5294), - [anon_sym_virtual] = ACTIONS(5294), - [anon_sym_volatile] = ACTIONS(5294), - [anon_sym_where] = ACTIONS(5294), - [anon_sym_notnull] = ACTIONS(5294), - [anon_sym_unmanaged] = ACTIONS(5294), - [anon_sym_TILDE] = ACTIONS(5296), - [anon_sym_implicit] = ACTIONS(5294), - [anon_sym_explicit] = ACTIONS(5294), - [anon_sym_scoped] = ACTIONS(5294), - [anon_sym_var] = ACTIONS(5294), - [sym_predefined_type] = ACTIONS(5294), - [anon_sym_yield] = ACTIONS(5294), - [anon_sym_when] = ACTIONS(5294), - [anon_sym_from] = ACTIONS(5294), - [anon_sym_into] = ACTIONS(5294), - [anon_sym_join] = ACTIONS(5294), - [anon_sym_on] = ACTIONS(5294), - [anon_sym_equals] = ACTIONS(5294), - [anon_sym_let] = ACTIONS(5294), - [anon_sym_orderby] = ACTIONS(5294), - [anon_sym_ascending] = ACTIONS(5294), - [anon_sym_descending] = ACTIONS(5294), - [anon_sym_group] = ACTIONS(5294), - [anon_sym_by] = ACTIONS(5294), - [anon_sym_select] = ACTIONS(5294), - [sym_grit_metavariable] = ACTIONS(5296), - [aux_sym_preproc_if_token1] = ACTIONS(5296), - [aux_sym_preproc_if_token3] = ACTIONS(5296), - [aux_sym_preproc_else_token1] = ACTIONS(5296), - [aux_sym_preproc_elif_token1] = ACTIONS(5296), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4556), + [anon_sym_where] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_STAR] = ACTIONS(4556), + [anon_sym_switch] = ACTIONS(4554), + [anon_sym_DOT_DOT] = ACTIONS(4554), + [anon_sym_LT_EQ] = ACTIONS(4554), + [anon_sym_GT_EQ] = ACTIONS(4554), + [anon_sym_and] = ACTIONS(4554), + [anon_sym_or] = ACTIONS(4556), + [anon_sym_PLUS_EQ] = ACTIONS(4554), + [anon_sym_DASH_EQ] = ACTIONS(4554), + [anon_sym_STAR_EQ] = ACTIONS(4554), + [anon_sym_SLASH_EQ] = ACTIONS(4554), + [anon_sym_PERCENT_EQ] = ACTIONS(4554), + [anon_sym_AMP_EQ] = ACTIONS(4554), + [anon_sym_CARET_EQ] = ACTIONS(4554), + [anon_sym_PIPE_EQ] = ACTIONS(4554), + [anon_sym_LT_LT_EQ] = ACTIONS(4554), + [anon_sym_GT_GT_EQ] = ACTIONS(4554), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4554), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4554), + [anon_sym_EQ_EQ] = ACTIONS(4554), + [anon_sym_BANG_EQ] = ACTIONS(4554), + [anon_sym_AMP_AMP] = ACTIONS(4554), + [anon_sym_PIPE_PIPE] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [sym_op_bitwise_or] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [sym_op_left_shift] = ACTIONS(4556), + [sym_op_right_shift] = ACTIONS(4556), + [sym_op_unsigned_right_shift] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4556), + [anon_sym_DASH] = ACTIONS(4556), + [sym_op_divide] = ACTIONS(4556), + [sym_op_modulo] = ACTIONS(4556), + [sym_op_coalescing] = ACTIONS(4556), + [anon_sym_BANG] = ACTIONS(4556), + [anon_sym_PLUS_PLUS] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4554), + [anon_sym_from] = ACTIONS(4554), + [anon_sym_into] = ACTIONS(4554), + [anon_sym_join] = ACTIONS(4554), + [anon_sym_let] = ACTIONS(4554), + [anon_sym_orderby] = ACTIONS(4554), + [anon_sym_ascending] = ACTIONS(4554), + [anon_sym_descending] = ACTIONS(4554), + [anon_sym_group] = ACTIONS(4554), + [anon_sym_select] = ACTIONS(4554), + [anon_sym_as] = ACTIONS(4556), + [anon_sym_is] = ACTIONS(4554), + [anon_sym_DASH_GT] = ACTIONS(4554), + [anon_sym_with] = ACTIONS(4554), + [sym_grit_metavariable] = ACTIONS(4554), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485164,70 +484690,67 @@ 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), - [sym__identifier_token] = ACTIONS(5298), - [anon_sym_extern] = ACTIONS(5298), - [anon_sym_alias] = ACTIONS(5298), - [anon_sym_global] = ACTIONS(5298), - [anon_sym_using] = ACTIONS(5298), - [anon_sym_unsafe] = ACTIONS(5298), - [anon_sym_static] = ACTIONS(5298), - [anon_sym_LBRACK] = ACTIONS(5300), - [anon_sym_LPAREN] = ACTIONS(5300), - [anon_sym_event] = ACTIONS(5298), - [anon_sym_namespace] = ACTIONS(5298), - [anon_sym_class] = ACTIONS(5298), - [anon_sym_ref] = ACTIONS(5298), - [anon_sym_struct] = ACTIONS(5298), - [anon_sym_enum] = ACTIONS(5298), - [anon_sym_RBRACE] = ACTIONS(5300), - [anon_sym_interface] = ACTIONS(5298), - [anon_sym_delegate] = ACTIONS(5298), - [anon_sym_record] = ACTIONS(5298), - [anon_sym_public] = ACTIONS(5298), - [anon_sym_private] = ACTIONS(5298), - [anon_sym_readonly] = ACTIONS(5298), - [anon_sym_abstract] = ACTIONS(5298), - [anon_sym_async] = ACTIONS(5298), - [anon_sym_const] = ACTIONS(5298), - [anon_sym_file] = ACTIONS(5298), - [anon_sym_fixed] = ACTIONS(5298), - [anon_sym_internal] = ACTIONS(5298), - [anon_sym_new] = ACTIONS(5298), - [anon_sym_override] = ACTIONS(5298), - [anon_sym_partial] = ACTIONS(5298), - [anon_sym_protected] = ACTIONS(5298), - [anon_sym_required] = ACTIONS(5298), - [anon_sym_sealed] = ACTIONS(5298), - [anon_sym_virtual] = ACTIONS(5298), - [anon_sym_volatile] = ACTIONS(5298), - [anon_sym_where] = ACTIONS(5298), - [anon_sym_notnull] = ACTIONS(5298), - [anon_sym_unmanaged] = ACTIONS(5298), - [anon_sym_TILDE] = ACTIONS(5300), - [anon_sym_implicit] = ACTIONS(5298), - [anon_sym_explicit] = ACTIONS(5298), - [anon_sym_scoped] = ACTIONS(5298), - [anon_sym_var] = ACTIONS(5298), - [sym_predefined_type] = ACTIONS(5298), - [anon_sym_yield] = ACTIONS(5298), - [anon_sym_when] = ACTIONS(5298), - [anon_sym_from] = ACTIONS(5298), - [anon_sym_into] = ACTIONS(5298), - [anon_sym_join] = ACTIONS(5298), - [anon_sym_on] = ACTIONS(5298), - [anon_sym_equals] = ACTIONS(5298), - [anon_sym_let] = ACTIONS(5298), - [anon_sym_orderby] = ACTIONS(5298), - [anon_sym_ascending] = ACTIONS(5298), - [anon_sym_descending] = ACTIONS(5298), - [anon_sym_group] = ACTIONS(5298), - [anon_sym_by] = ACTIONS(5298), - [anon_sym_select] = ACTIONS(5298), - [sym_grit_metavariable] = ACTIONS(5300), - [aux_sym_preproc_if_token1] = ACTIONS(5300), - [aux_sym_preproc_if_token3] = ACTIONS(5300), - [aux_sym_preproc_else_token1] = ACTIONS(5300), - [aux_sym_preproc_elif_token1] = ACTIONS(5300), + [sym__identifier_token] = ACTIONS(4478), + [anon_sym_alias] = ACTIONS(4478), + [anon_sym_global] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_COLON] = ACTIONS(4480), + [anon_sym_LPAREN] = ACTIONS(4480), + [anon_sym_file] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3195), + [anon_sym_where] = ACTIONS(4478), + [anon_sym_QMARK] = ACTIONS(3195), + [anon_sym_notnull] = ACTIONS(4478), + [anon_sym_unmanaged] = ACTIONS(4478), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_scoped] = ACTIONS(4478), + [anon_sym_var] = ACTIONS(4478), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_yield] = ACTIONS(4478), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_when] = ACTIONS(4478), + [sym_discard] = ACTIONS(4478), + [anon_sym_DOT_DOT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(4478), + [anon_sym_or] = ACTIONS(4478), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [sym_op_bitwise_or] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3197), + [sym_op_left_shift] = ACTIONS(3197), + [sym_op_right_shift] = ACTIONS(3195), + [sym_op_unsigned_right_shift] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [sym_op_divide] = ACTIONS(3195), + [sym_op_modulo] = ACTIONS(3197), + [sym_op_coalescing] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_from] = ACTIONS(4478), + [anon_sym_into] = ACTIONS(4478), + [anon_sym_join] = ACTIONS(4478), + [anon_sym_on] = ACTIONS(4478), + [anon_sym_equals] = ACTIONS(4478), + [anon_sym_let] = ACTIONS(4478), + [anon_sym_orderby] = ACTIONS(4478), + [anon_sym_ascending] = ACTIONS(4478), + [anon_sym_descending] = ACTIONS(4478), + [anon_sym_group] = ACTIONS(4478), + [anon_sym_by] = ACTIONS(4478), + [anon_sym_select] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3195), + [anon_sym_DASH_GT] = ACTIONS(3197), + [anon_sym_with] = ACTIONS(3195), + [sym_grit_metavariable] = ACTIONS(4480), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485249,70 +484772,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3018), [sym_preproc_define] = STATE(3018), [sym_preproc_undef] = STATE(3018), - [sym__identifier_token] = ACTIONS(5302), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym_alias] = ACTIONS(5302), - [anon_sym_global] = ACTIONS(5302), - [anon_sym_using] = ACTIONS(5302), - [anon_sym_unsafe] = ACTIONS(5302), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_LBRACK] = ACTIONS(5304), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym_event] = ACTIONS(5302), - [anon_sym_namespace] = ACTIONS(5302), - [anon_sym_class] = ACTIONS(5302), - [anon_sym_ref] = ACTIONS(5302), - [anon_sym_struct] = ACTIONS(5302), - [anon_sym_enum] = ACTIONS(5302), - [anon_sym_RBRACE] = ACTIONS(5304), - [anon_sym_interface] = ACTIONS(5302), - [anon_sym_delegate] = ACTIONS(5302), - [anon_sym_record] = ACTIONS(5302), - [anon_sym_public] = ACTIONS(5302), - [anon_sym_private] = ACTIONS(5302), - [anon_sym_readonly] = ACTIONS(5302), - [anon_sym_abstract] = ACTIONS(5302), - [anon_sym_async] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5302), - [anon_sym_file] = ACTIONS(5302), - [anon_sym_fixed] = ACTIONS(5302), - [anon_sym_internal] = ACTIONS(5302), - [anon_sym_new] = ACTIONS(5302), - [anon_sym_override] = ACTIONS(5302), - [anon_sym_partial] = ACTIONS(5302), - [anon_sym_protected] = ACTIONS(5302), - [anon_sym_required] = ACTIONS(5302), - [anon_sym_sealed] = ACTIONS(5302), - [anon_sym_virtual] = ACTIONS(5302), - [anon_sym_volatile] = ACTIONS(5302), - [anon_sym_where] = ACTIONS(5302), - [anon_sym_notnull] = ACTIONS(5302), - [anon_sym_unmanaged] = ACTIONS(5302), - [anon_sym_TILDE] = ACTIONS(5304), - [anon_sym_implicit] = ACTIONS(5302), - [anon_sym_explicit] = ACTIONS(5302), - [anon_sym_scoped] = ACTIONS(5302), - [anon_sym_var] = ACTIONS(5302), - [sym_predefined_type] = ACTIONS(5302), - [anon_sym_yield] = ACTIONS(5302), - [anon_sym_when] = ACTIONS(5302), - [anon_sym_from] = ACTIONS(5302), - [anon_sym_into] = ACTIONS(5302), - [anon_sym_join] = ACTIONS(5302), - [anon_sym_on] = ACTIONS(5302), - [anon_sym_equals] = ACTIONS(5302), - [anon_sym_let] = ACTIONS(5302), - [anon_sym_orderby] = ACTIONS(5302), - [anon_sym_ascending] = ACTIONS(5302), - [anon_sym_descending] = ACTIONS(5302), - [anon_sym_group] = ACTIONS(5302), - [anon_sym_by] = ACTIONS(5302), - [anon_sym_select] = ACTIONS(5302), - [sym_grit_metavariable] = ACTIONS(5304), - [aux_sym_preproc_if_token1] = 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(4564), + [anon_sym_LBRACK] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4564), + [anon_sym_where] = ACTIONS(4562), + [anon_sym_QMARK] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_STAR] = ACTIONS(4564), + [anon_sym_switch] = ACTIONS(4562), + [anon_sym_DOT_DOT] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_and] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4564), + [anon_sym_PLUS_EQ] = ACTIONS(4562), + [anon_sym_DASH_EQ] = ACTIONS(4562), + [anon_sym_STAR_EQ] = ACTIONS(4562), + [anon_sym_SLASH_EQ] = ACTIONS(4562), + [anon_sym_PERCENT_EQ] = ACTIONS(4562), + [anon_sym_AMP_EQ] = ACTIONS(4562), + [anon_sym_CARET_EQ] = ACTIONS(4562), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_LT_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4562), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4562), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [sym_op_bitwise_or] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [sym_op_left_shift] = ACTIONS(4564), + [sym_op_right_shift] = ACTIONS(4564), + [sym_op_unsigned_right_shift] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4564), + [sym_op_divide] = ACTIONS(4564), + [sym_op_modulo] = ACTIONS(4564), + [sym_op_coalescing] = ACTIONS(4564), + [anon_sym_BANG] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_from] = ACTIONS(4562), + [anon_sym_into] = ACTIONS(4562), + [anon_sym_join] = ACTIONS(4562), + [anon_sym_let] = ACTIONS(4562), + [anon_sym_orderby] = ACTIONS(4562), + [anon_sym_ascending] = ACTIONS(4562), + [anon_sym_descending] = ACTIONS(4562), + [anon_sym_group] = ACTIONS(4562), + [anon_sym_select] = ACTIONS(4562), + [anon_sym_as] = ACTIONS(4564), + [anon_sym_is] = ACTIONS(4562), + [anon_sym_DASH_GT] = ACTIONS(4562), + [anon_sym_with] = ACTIONS(4562), + [sym_grit_metavariable] = ACTIONS(4562), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485334,70 +484854,67 @@ 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), - [sym__identifier_token] = ACTIONS(5306), - [anon_sym_extern] = ACTIONS(5306), - [anon_sym_alias] = ACTIONS(5306), - [anon_sym_global] = ACTIONS(5306), - [anon_sym_using] = ACTIONS(5306), - [anon_sym_unsafe] = ACTIONS(5306), - [anon_sym_static] = ACTIONS(5306), - [anon_sym_LBRACK] = ACTIONS(5308), - [anon_sym_LPAREN] = ACTIONS(5308), - [anon_sym_event] = ACTIONS(5306), - [anon_sym_namespace] = ACTIONS(5306), - [anon_sym_class] = ACTIONS(5306), - [anon_sym_ref] = ACTIONS(5306), - [anon_sym_struct] = ACTIONS(5306), - [anon_sym_enum] = ACTIONS(5306), - [anon_sym_RBRACE] = ACTIONS(5308), - [anon_sym_interface] = ACTIONS(5306), - [anon_sym_delegate] = ACTIONS(5306), - [anon_sym_record] = ACTIONS(5306), - [anon_sym_public] = ACTIONS(5306), - [anon_sym_private] = ACTIONS(5306), - [anon_sym_readonly] = ACTIONS(5306), - [anon_sym_abstract] = ACTIONS(5306), - [anon_sym_async] = ACTIONS(5306), - [anon_sym_const] = ACTIONS(5306), - [anon_sym_file] = ACTIONS(5306), - [anon_sym_fixed] = ACTIONS(5306), - [anon_sym_internal] = ACTIONS(5306), - [anon_sym_new] = ACTIONS(5306), - [anon_sym_override] = ACTIONS(5306), - [anon_sym_partial] = ACTIONS(5306), - [anon_sym_protected] = ACTIONS(5306), - [anon_sym_required] = ACTIONS(5306), - [anon_sym_sealed] = ACTIONS(5306), - [anon_sym_virtual] = ACTIONS(5306), - [anon_sym_volatile] = ACTIONS(5306), - [anon_sym_where] = ACTIONS(5306), - [anon_sym_notnull] = ACTIONS(5306), - [anon_sym_unmanaged] = ACTIONS(5306), - [anon_sym_TILDE] = ACTIONS(5308), - [anon_sym_implicit] = ACTIONS(5306), - [anon_sym_explicit] = ACTIONS(5306), - [anon_sym_scoped] = ACTIONS(5306), - [anon_sym_var] = ACTIONS(5306), - [sym_predefined_type] = ACTIONS(5306), - [anon_sym_yield] = ACTIONS(5306), - [anon_sym_when] = ACTIONS(5306), - [anon_sym_from] = ACTIONS(5306), - [anon_sym_into] = ACTIONS(5306), - [anon_sym_join] = ACTIONS(5306), - [anon_sym_on] = ACTIONS(5306), - [anon_sym_equals] = ACTIONS(5306), - [anon_sym_let] = ACTIONS(5306), - [anon_sym_orderby] = ACTIONS(5306), - [anon_sym_ascending] = ACTIONS(5306), - [anon_sym_descending] = ACTIONS(5306), - [anon_sym_group] = ACTIONS(5306), - [anon_sym_by] = ACTIONS(5306), - [anon_sym_select] = ACTIONS(5306), - [sym_grit_metavariable] = ACTIONS(5308), - [aux_sym_preproc_if_token1] = 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_EQ] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_where] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_DOT] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_switch] = ACTIONS(4534), + [anon_sym_DOT_DOT] = ACTIONS(4534), + [anon_sym_LT_EQ] = ACTIONS(4534), + [anon_sym_GT_EQ] = ACTIONS(4534), + [anon_sym_and] = ACTIONS(4534), + [anon_sym_or] = ACTIONS(4540), + [anon_sym_PLUS_EQ] = ACTIONS(4538), + [anon_sym_DASH_EQ] = ACTIONS(4538), + [anon_sym_STAR_EQ] = ACTIONS(4538), + [anon_sym_SLASH_EQ] = ACTIONS(4538), + [anon_sym_PERCENT_EQ] = ACTIONS(4538), + [anon_sym_AMP_EQ] = ACTIONS(4538), + [anon_sym_CARET_EQ] = ACTIONS(4538), + [anon_sym_PIPE_EQ] = ACTIONS(4538), + [anon_sym_LT_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4534), + [anon_sym_BANG_EQ] = ACTIONS(4534), + [anon_sym_AMP_AMP] = ACTIONS(4534), + [anon_sym_PIPE_PIPE] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4540), + [sym_op_bitwise_or] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [sym_op_left_shift] = ACTIONS(4540), + [sym_op_right_shift] = ACTIONS(4540), + [sym_op_unsigned_right_shift] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [sym_op_divide] = ACTIONS(4540), + [sym_op_modulo] = ACTIONS(4540), + [sym_op_coalescing] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PLUS_PLUS] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4534), + [anon_sym_from] = ACTIONS(4534), + [anon_sym_into] = ACTIONS(4534), + [anon_sym_join] = ACTIONS(4534), + [anon_sym_let] = ACTIONS(4534), + [anon_sym_orderby] = ACTIONS(4534), + [anon_sym_ascending] = ACTIONS(4534), + [anon_sym_descending] = ACTIONS(4534), + [anon_sym_group] = ACTIONS(4534), + [anon_sym_select] = ACTIONS(4534), + [anon_sym_as] = ACTIONS(4540), + [anon_sym_is] = ACTIONS(4534), + [anon_sym_DASH_GT] = ACTIONS(4534), + [anon_sym_with] = ACTIONS(4534), + [sym_grit_metavariable] = ACTIONS(4534), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485410,6 +484927,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3020] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(3020), [sym_preproc_endregion] = STATE(3020), [sym_preproc_line] = STATE(3020), @@ -485419,70 +484951,52 @@ 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), - [sym__identifier_token] = ACTIONS(5310), - [anon_sym_extern] = ACTIONS(5310), - [anon_sym_alias] = ACTIONS(5310), - [anon_sym_global] = ACTIONS(5310), - [anon_sym_using] = ACTIONS(5310), - [anon_sym_unsafe] = ACTIONS(5310), - [anon_sym_static] = ACTIONS(5310), - [anon_sym_LBRACK] = ACTIONS(5312), - [anon_sym_LPAREN] = ACTIONS(5312), - [anon_sym_event] = ACTIONS(5310), - [anon_sym_namespace] = ACTIONS(5310), - [anon_sym_class] = ACTIONS(5310), - [anon_sym_ref] = ACTIONS(5310), - [anon_sym_struct] = ACTIONS(5310), - [anon_sym_enum] = ACTIONS(5310), - [anon_sym_RBRACE] = ACTIONS(5312), - [anon_sym_interface] = ACTIONS(5310), - [anon_sym_delegate] = ACTIONS(5310), - [anon_sym_record] = ACTIONS(5310), - [anon_sym_public] = ACTIONS(5310), - [anon_sym_private] = ACTIONS(5310), - [anon_sym_readonly] = ACTIONS(5310), - [anon_sym_abstract] = ACTIONS(5310), - [anon_sym_async] = ACTIONS(5310), - [anon_sym_const] = ACTIONS(5310), - [anon_sym_file] = ACTIONS(5310), - [anon_sym_fixed] = ACTIONS(5310), - [anon_sym_internal] = ACTIONS(5310), - [anon_sym_new] = ACTIONS(5310), - [anon_sym_override] = ACTIONS(5310), - [anon_sym_partial] = ACTIONS(5310), - [anon_sym_protected] = ACTIONS(5310), - [anon_sym_required] = ACTIONS(5310), - [anon_sym_sealed] = ACTIONS(5310), - [anon_sym_virtual] = ACTIONS(5310), - [anon_sym_volatile] = ACTIONS(5310), - [anon_sym_where] = ACTIONS(5310), - [anon_sym_notnull] = ACTIONS(5310), - [anon_sym_unmanaged] = ACTIONS(5310), - [anon_sym_TILDE] = ACTIONS(5312), - [anon_sym_implicit] = ACTIONS(5310), - [anon_sym_explicit] = ACTIONS(5310), - [anon_sym_scoped] = ACTIONS(5310), - [anon_sym_var] = ACTIONS(5310), - [sym_predefined_type] = ACTIONS(5310), - [anon_sym_yield] = ACTIONS(5310), - [anon_sym_when] = ACTIONS(5310), - [anon_sym_from] = ACTIONS(5310), - [anon_sym_into] = ACTIONS(5310), - [anon_sym_join] = ACTIONS(5310), - [anon_sym_on] = ACTIONS(5310), - [anon_sym_equals] = ACTIONS(5310), - [anon_sym_let] = ACTIONS(5310), - [anon_sym_orderby] = ACTIONS(5310), - [anon_sym_ascending] = ACTIONS(5310), - [anon_sym_descending] = ACTIONS(5310), - [anon_sym_group] = ACTIONS(5310), - [anon_sym_by] = ACTIONS(5310), - [anon_sym_select] = ACTIONS(5310), - [sym_grit_metavariable] = ACTIONS(5312), - [aux_sym_preproc_if_token1] = 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_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485495,6 +485009,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3021] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter] = STATE(7187), + [sym__parameter_array] = STATE(7188), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6417), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6014), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(3021), [sym_preproc_endregion] = STATE(3021), [sym_preproc_line] = STATE(3021), @@ -485504,70 +485041,44 @@ 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), - [sym__identifier_token] = ACTIONS(5314), - [anon_sym_extern] = ACTIONS(5314), - [anon_sym_alias] = ACTIONS(5314), - [anon_sym_global] = ACTIONS(5314), - [anon_sym_using] = ACTIONS(5314), - [anon_sym_unsafe] = ACTIONS(5314), - [anon_sym_static] = ACTIONS(5314), - [anon_sym_LBRACK] = ACTIONS(5316), - [anon_sym_LPAREN] = ACTIONS(5316), - [anon_sym_event] = ACTIONS(5314), - [anon_sym_namespace] = ACTIONS(5314), - [anon_sym_class] = ACTIONS(5314), - [anon_sym_ref] = ACTIONS(5314), - [anon_sym_struct] = ACTIONS(5314), - [anon_sym_enum] = ACTIONS(5314), - [anon_sym_RBRACE] = ACTIONS(5316), - [anon_sym_interface] = ACTIONS(5314), - [anon_sym_delegate] = ACTIONS(5314), - [anon_sym_record] = ACTIONS(5314), - [anon_sym_public] = ACTIONS(5314), - [anon_sym_private] = ACTIONS(5314), - [anon_sym_readonly] = ACTIONS(5314), - [anon_sym_abstract] = ACTIONS(5314), - [anon_sym_async] = ACTIONS(5314), - [anon_sym_const] = ACTIONS(5314), - [anon_sym_file] = ACTIONS(5314), - [anon_sym_fixed] = ACTIONS(5314), - [anon_sym_internal] = ACTIONS(5314), - [anon_sym_new] = ACTIONS(5314), - [anon_sym_override] = ACTIONS(5314), - [anon_sym_partial] = ACTIONS(5314), - [anon_sym_protected] = ACTIONS(5314), - [anon_sym_required] = ACTIONS(5314), - [anon_sym_sealed] = ACTIONS(5314), - [anon_sym_virtual] = ACTIONS(5314), - [anon_sym_volatile] = ACTIONS(5314), - [anon_sym_where] = ACTIONS(5314), - [anon_sym_notnull] = ACTIONS(5314), - [anon_sym_unmanaged] = ACTIONS(5314), - [anon_sym_TILDE] = ACTIONS(5316), - [anon_sym_implicit] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(5314), - [anon_sym_scoped] = ACTIONS(5314), - [anon_sym_var] = ACTIONS(5314), - [sym_predefined_type] = ACTIONS(5314), - [anon_sym_yield] = ACTIONS(5314), - [anon_sym_when] = ACTIONS(5314), - [anon_sym_from] = ACTIONS(5314), - [anon_sym_into] = ACTIONS(5314), - [anon_sym_join] = ACTIONS(5314), - [anon_sym_on] = ACTIONS(5314), - [anon_sym_equals] = ACTIONS(5314), - [anon_sym_let] = ACTIONS(5314), - [anon_sym_orderby] = ACTIONS(5314), - [anon_sym_ascending] = ACTIONS(5314), - [anon_sym_descending] = ACTIONS(5314), - [anon_sym_group] = ACTIONS(5314), - [anon_sym_by] = ACTIONS(5314), - [anon_sym_select] = ACTIONS(5314), - [sym_grit_metavariable] = ACTIONS(5316), - [aux_sym_preproc_if_token1] = ACTIONS(5316), - [aux_sym_preproc_if_token3] = ACTIONS(5316), - [aux_sym_preproc_else_token1] = ACTIONS(5316), - [aux_sym_preproc_elif_token1] = ACTIONS(5316), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3162), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(2853), + [anon_sym_ref] = ACTIONS(5216), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(1311), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_out] = ACTIONS(1311), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_this] = ACTIONS(1311), + [anon_sym_scoped] = ACTIONS(5226), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(5222), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485580,6 +485091,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3022] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(3022), [sym_preproc_endregion] = STATE(3022), [sym_preproc_line] = STATE(3022), @@ -485589,70 +485115,52 @@ 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), - [sym__identifier_token] = ACTIONS(5318), - [anon_sym_extern] = ACTIONS(5318), - [anon_sym_alias] = ACTIONS(5318), - [anon_sym_global] = ACTIONS(5318), - [anon_sym_using] = ACTIONS(5318), - [anon_sym_unsafe] = ACTIONS(5318), - [anon_sym_static] = ACTIONS(5318), - [anon_sym_LBRACK] = ACTIONS(5320), - [anon_sym_LPAREN] = ACTIONS(5320), - [anon_sym_event] = ACTIONS(5318), - [anon_sym_namespace] = ACTIONS(5318), - [anon_sym_class] = ACTIONS(5318), - [anon_sym_ref] = ACTIONS(5318), - [anon_sym_struct] = ACTIONS(5318), - [anon_sym_enum] = ACTIONS(5318), - [anon_sym_RBRACE] = ACTIONS(5320), - [anon_sym_interface] = ACTIONS(5318), - [anon_sym_delegate] = ACTIONS(5318), - [anon_sym_record] = ACTIONS(5318), - [anon_sym_public] = ACTIONS(5318), - [anon_sym_private] = ACTIONS(5318), - [anon_sym_readonly] = ACTIONS(5318), - [anon_sym_abstract] = ACTIONS(5318), - [anon_sym_async] = ACTIONS(5318), - [anon_sym_const] = ACTIONS(5318), - [anon_sym_file] = ACTIONS(5318), - [anon_sym_fixed] = ACTIONS(5318), - [anon_sym_internal] = ACTIONS(5318), - [anon_sym_new] = ACTIONS(5318), - [anon_sym_override] = ACTIONS(5318), - [anon_sym_partial] = ACTIONS(5318), - [anon_sym_protected] = ACTIONS(5318), - [anon_sym_required] = ACTIONS(5318), - [anon_sym_sealed] = ACTIONS(5318), - [anon_sym_virtual] = ACTIONS(5318), - [anon_sym_volatile] = ACTIONS(5318), - [anon_sym_where] = ACTIONS(5318), - [anon_sym_notnull] = ACTIONS(5318), - [anon_sym_unmanaged] = ACTIONS(5318), - [anon_sym_TILDE] = ACTIONS(5320), - [anon_sym_implicit] = ACTIONS(5318), - [anon_sym_explicit] = ACTIONS(5318), - [anon_sym_scoped] = ACTIONS(5318), - [anon_sym_var] = ACTIONS(5318), - [sym_predefined_type] = ACTIONS(5318), - [anon_sym_yield] = ACTIONS(5318), - [anon_sym_when] = ACTIONS(5318), - [anon_sym_from] = ACTIONS(5318), - [anon_sym_into] = ACTIONS(5318), - [anon_sym_join] = ACTIONS(5318), - [anon_sym_on] = ACTIONS(5318), - [anon_sym_equals] = ACTIONS(5318), - [anon_sym_let] = ACTIONS(5318), - [anon_sym_orderby] = ACTIONS(5318), - [anon_sym_ascending] = ACTIONS(5318), - [anon_sym_descending] = ACTIONS(5318), - [anon_sym_group] = ACTIONS(5318), - [anon_sym_by] = ACTIONS(5318), - [anon_sym_select] = ACTIONS(5318), - [sym_grit_metavariable] = ACTIONS(5320), - [aux_sym_preproc_if_token1] = 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_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485674,70 +485182,67 @@ 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(5322), - [anon_sym_extern] = ACTIONS(5322), - [anon_sym_alias] = ACTIONS(5322), - [anon_sym_global] = ACTIONS(5322), - [anon_sym_using] = ACTIONS(5322), - [anon_sym_unsafe] = ACTIONS(5322), - [anon_sym_static] = ACTIONS(5322), - [anon_sym_LBRACK] = ACTIONS(5324), - [anon_sym_LPAREN] = ACTIONS(5324), - [anon_sym_event] = ACTIONS(5322), - [anon_sym_namespace] = ACTIONS(5322), - [anon_sym_class] = ACTIONS(5322), - [anon_sym_ref] = ACTIONS(5322), - [anon_sym_struct] = ACTIONS(5322), - [anon_sym_enum] = ACTIONS(5322), - [anon_sym_RBRACE] = ACTIONS(5324), - [anon_sym_interface] = ACTIONS(5322), - [anon_sym_delegate] = ACTIONS(5322), - [anon_sym_record] = ACTIONS(5322), - [anon_sym_public] = ACTIONS(5322), - [anon_sym_private] = ACTIONS(5322), - [anon_sym_readonly] = ACTIONS(5322), - [anon_sym_abstract] = ACTIONS(5322), - [anon_sym_async] = ACTIONS(5322), - [anon_sym_const] = ACTIONS(5322), - [anon_sym_file] = ACTIONS(5322), - [anon_sym_fixed] = ACTIONS(5322), - [anon_sym_internal] = ACTIONS(5322), - [anon_sym_new] = ACTIONS(5322), - [anon_sym_override] = ACTIONS(5322), - [anon_sym_partial] = ACTIONS(5322), - [anon_sym_protected] = ACTIONS(5322), - [anon_sym_required] = ACTIONS(5322), - [anon_sym_sealed] = ACTIONS(5322), - [anon_sym_virtual] = ACTIONS(5322), - [anon_sym_volatile] = ACTIONS(5322), - [anon_sym_where] = ACTIONS(5322), - [anon_sym_notnull] = ACTIONS(5322), - [anon_sym_unmanaged] = ACTIONS(5322), - [anon_sym_TILDE] = ACTIONS(5324), - [anon_sym_implicit] = ACTIONS(5322), - [anon_sym_explicit] = ACTIONS(5322), - [anon_sym_scoped] = ACTIONS(5322), - [anon_sym_var] = ACTIONS(5322), - [sym_predefined_type] = ACTIONS(5322), - [anon_sym_yield] = ACTIONS(5322), - [anon_sym_when] = ACTIONS(5322), - [anon_sym_from] = ACTIONS(5322), - [anon_sym_into] = ACTIONS(5322), - [anon_sym_join] = ACTIONS(5322), - [anon_sym_on] = ACTIONS(5322), - [anon_sym_equals] = ACTIONS(5322), - [anon_sym_let] = ACTIONS(5322), - [anon_sym_orderby] = ACTIONS(5322), - [anon_sym_ascending] = ACTIONS(5322), - [anon_sym_descending] = ACTIONS(5322), - [anon_sym_group] = ACTIONS(5322), - [anon_sym_by] = ACTIONS(5322), - [anon_sym_select] = ACTIONS(5322), - [sym_grit_metavariable] = ACTIONS(5324), - [aux_sym_preproc_if_token1] = ACTIONS(5324), - [aux_sym_preproc_if_token3] = ACTIONS(5324), - [aux_sym_preproc_else_token1] = ACTIONS(5324), - [aux_sym_preproc_elif_token1] = ACTIONS(5324), + [sym__identifier_token] = ACTIONS(5478), + [anon_sym_extern] = ACTIONS(5478), + [anon_sym_alias] = ACTIONS(5478), + [anon_sym_global] = ACTIONS(5478), + [anon_sym_unsafe] = ACTIONS(5478), + [anon_sym_static] = ACTIONS(5478), + [anon_sym_LBRACK] = ACTIONS(5480), + [anon_sym_LPAREN] = ACTIONS(5480), + [anon_sym_event] = ACTIONS(5478), + [anon_sym_class] = ACTIONS(5478), + [anon_sym_ref] = ACTIONS(5478), + [anon_sym_struct] = ACTIONS(5478), + [anon_sym_enum] = ACTIONS(5478), + [anon_sym_interface] = ACTIONS(5478), + [anon_sym_delegate] = ACTIONS(5478), + [anon_sym_record] = ACTIONS(5478), + [anon_sym_public] = ACTIONS(5478), + [anon_sym_private] = ACTIONS(5478), + [anon_sym_readonly] = ACTIONS(5478), + [anon_sym_abstract] = ACTIONS(5478), + [anon_sym_async] = ACTIONS(5478), + [anon_sym_const] = ACTIONS(5478), + [anon_sym_file] = ACTIONS(5478), + [anon_sym_fixed] = ACTIONS(5478), + [anon_sym_internal] = ACTIONS(5478), + [anon_sym_new] = ACTIONS(5478), + [anon_sym_override] = ACTIONS(5478), + [anon_sym_partial] = ACTIONS(5478), + [anon_sym_protected] = ACTIONS(5478), + [anon_sym_required] = ACTIONS(5478), + [anon_sym_sealed] = ACTIONS(5478), + [anon_sym_virtual] = ACTIONS(5478), + [anon_sym_volatile] = ACTIONS(5478), + [anon_sym_where] = ACTIONS(5478), + [anon_sym_notnull] = ACTIONS(5478), + [anon_sym_unmanaged] = ACTIONS(5478), + [anon_sym_implicit] = ACTIONS(5478), + [anon_sym_explicit] = ACTIONS(5478), + [anon_sym_TILDE] = ACTIONS(5480), + [anon_sym_scoped] = ACTIONS(5478), + [anon_sym_var] = ACTIONS(5478), + [sym_predefined_type] = ACTIONS(5478), + [anon_sym_yield] = ACTIONS(5478), + [anon_sym_when] = ACTIONS(5478), + [anon_sym_from] = ACTIONS(5478), + [anon_sym_into] = ACTIONS(5478), + [anon_sym_join] = ACTIONS(5478), + [anon_sym_on] = ACTIONS(5478), + [anon_sym_equals] = ACTIONS(5478), + [anon_sym_let] = ACTIONS(5478), + [anon_sym_orderby] = ACTIONS(5478), + [anon_sym_ascending] = ACTIONS(5478), + [anon_sym_descending] = ACTIONS(5478), + [anon_sym_group] = ACTIONS(5478), + [anon_sym_by] = ACTIONS(5478), + [anon_sym_select] = ACTIONS(5478), + [sym_grit_metavariable] = ACTIONS(5480), + [aux_sym_preproc_if_token1] = ACTIONS(5480), + [aux_sym_preproc_if_token3] = ACTIONS(5480), + [aux_sym_preproc_else_token1] = ACTIONS(5480), + [aux_sym_preproc_elif_token1] = ACTIONS(5480), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485750,6 +485255,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3024] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(3024), [sym_preproc_endregion] = STATE(3024), [sym_preproc_line] = STATE(3024), @@ -485759,69 +485279,52 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4980), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5296), + [anon_sym_QMARK] = ACTIONS(5388), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5298), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5296), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485832,9 +485335,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4331), }, [3025] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(3025), [sym_preproc_endregion] = STATE(3025), [sym_preproc_line] = STATE(3025), @@ -485844,70 +485361,52 @@ 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), - [sym__identifier_token] = ACTIONS(5326), - [anon_sym_extern] = ACTIONS(5326), - [anon_sym_alias] = ACTIONS(5326), - [anon_sym_global] = ACTIONS(5326), - [anon_sym_using] = ACTIONS(5326), - [anon_sym_unsafe] = ACTIONS(5326), - [anon_sym_static] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(5328), - [anon_sym_LPAREN] = ACTIONS(5328), - [anon_sym_event] = ACTIONS(5326), - [anon_sym_namespace] = ACTIONS(5326), - [anon_sym_class] = ACTIONS(5326), - [anon_sym_ref] = ACTIONS(5326), - [anon_sym_struct] = ACTIONS(5326), - [anon_sym_enum] = ACTIONS(5326), - [anon_sym_RBRACE] = ACTIONS(5328), - [anon_sym_interface] = ACTIONS(5326), - [anon_sym_delegate] = ACTIONS(5326), - [anon_sym_record] = ACTIONS(5326), - [anon_sym_public] = ACTIONS(5326), - [anon_sym_private] = ACTIONS(5326), - [anon_sym_readonly] = ACTIONS(5326), - [anon_sym_abstract] = ACTIONS(5326), - [anon_sym_async] = ACTIONS(5326), - [anon_sym_const] = ACTIONS(5326), - [anon_sym_file] = ACTIONS(5326), - [anon_sym_fixed] = ACTIONS(5326), - [anon_sym_internal] = ACTIONS(5326), - [anon_sym_new] = ACTIONS(5326), - [anon_sym_override] = ACTIONS(5326), - [anon_sym_partial] = ACTIONS(5326), - [anon_sym_protected] = ACTIONS(5326), - [anon_sym_required] = ACTIONS(5326), - [anon_sym_sealed] = ACTIONS(5326), - [anon_sym_virtual] = ACTIONS(5326), - [anon_sym_volatile] = ACTIONS(5326), - [anon_sym_where] = ACTIONS(5326), - [anon_sym_notnull] = ACTIONS(5326), - [anon_sym_unmanaged] = ACTIONS(5326), - [anon_sym_TILDE] = ACTIONS(5328), - [anon_sym_implicit] = ACTIONS(5326), - [anon_sym_explicit] = ACTIONS(5326), - [anon_sym_scoped] = ACTIONS(5326), - [anon_sym_var] = ACTIONS(5326), - [sym_predefined_type] = ACTIONS(5326), - [anon_sym_yield] = ACTIONS(5326), - [anon_sym_when] = ACTIONS(5326), - [anon_sym_from] = ACTIONS(5326), - [anon_sym_into] = ACTIONS(5326), - [anon_sym_join] = ACTIONS(5326), - [anon_sym_on] = ACTIONS(5326), - [anon_sym_equals] = ACTIONS(5326), - [anon_sym_let] = ACTIONS(5326), - [anon_sym_orderby] = ACTIONS(5326), - [anon_sym_ascending] = ACTIONS(5326), - [anon_sym_descending] = ACTIONS(5326), - [anon_sym_group] = ACTIONS(5326), - [anon_sym_by] = ACTIONS(5326), - [anon_sym_select] = ACTIONS(5326), - [sym_grit_metavariable] = ACTIONS(5328), - [aux_sym_preproc_if_token1] = 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_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485920,6 +485419,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3026] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(3026), [sym_preproc_endregion] = STATE(3026), [sym_preproc_line] = STATE(3026), @@ -485929,70 +485443,52 @@ 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(5330), - [anon_sym_extern] = ACTIONS(5330), - [anon_sym_alias] = ACTIONS(5330), - [anon_sym_global] = ACTIONS(5330), - [anon_sym_using] = ACTIONS(5330), - [anon_sym_unsafe] = ACTIONS(5330), - [anon_sym_static] = ACTIONS(5330), - [anon_sym_LBRACK] = ACTIONS(5332), - [anon_sym_LPAREN] = ACTIONS(5332), - [anon_sym_event] = ACTIONS(5330), - [anon_sym_namespace] = ACTIONS(5330), - [anon_sym_class] = ACTIONS(5330), - [anon_sym_ref] = ACTIONS(5330), - [anon_sym_struct] = ACTIONS(5330), - [anon_sym_enum] = ACTIONS(5330), - [anon_sym_RBRACE] = ACTIONS(5332), - [anon_sym_interface] = ACTIONS(5330), - [anon_sym_delegate] = ACTIONS(5330), - [anon_sym_record] = ACTIONS(5330), - [anon_sym_public] = ACTIONS(5330), - [anon_sym_private] = ACTIONS(5330), - [anon_sym_readonly] = ACTIONS(5330), - [anon_sym_abstract] = ACTIONS(5330), - [anon_sym_async] = ACTIONS(5330), - [anon_sym_const] = ACTIONS(5330), - [anon_sym_file] = ACTIONS(5330), - [anon_sym_fixed] = ACTIONS(5330), - [anon_sym_internal] = ACTIONS(5330), - [anon_sym_new] = ACTIONS(5330), - [anon_sym_override] = ACTIONS(5330), - [anon_sym_partial] = ACTIONS(5330), - [anon_sym_protected] = ACTIONS(5330), - [anon_sym_required] = ACTIONS(5330), - [anon_sym_sealed] = ACTIONS(5330), - [anon_sym_virtual] = ACTIONS(5330), - [anon_sym_volatile] = ACTIONS(5330), - [anon_sym_where] = ACTIONS(5330), - [anon_sym_notnull] = ACTIONS(5330), - [anon_sym_unmanaged] = ACTIONS(5330), - [anon_sym_TILDE] = ACTIONS(5332), - [anon_sym_implicit] = ACTIONS(5330), - [anon_sym_explicit] = ACTIONS(5330), - [anon_sym_scoped] = ACTIONS(5330), - [anon_sym_var] = ACTIONS(5330), - [sym_predefined_type] = ACTIONS(5330), - [anon_sym_yield] = ACTIONS(5330), - [anon_sym_when] = ACTIONS(5330), - [anon_sym_from] = ACTIONS(5330), - [anon_sym_into] = ACTIONS(5330), - [anon_sym_join] = ACTIONS(5330), - [anon_sym_on] = ACTIONS(5330), - [anon_sym_equals] = ACTIONS(5330), - [anon_sym_let] = ACTIONS(5330), - [anon_sym_orderby] = ACTIONS(5330), - [anon_sym_ascending] = ACTIONS(5330), - [anon_sym_descending] = ACTIONS(5330), - [anon_sym_group] = ACTIONS(5330), - [anon_sym_by] = ACTIONS(5330), - [anon_sym_select] = ACTIONS(5330), - [sym_grit_metavariable] = ACTIONS(5332), - [aux_sym_preproc_if_token1] = 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_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486005,6 +485501,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3027] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(3027), [sym_preproc_endregion] = STATE(3027), [sym_preproc_line] = STATE(3027), @@ -486014,82 +485525,79 @@ 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), - [sym__identifier_token] = ACTIONS(4434), - [anon_sym_alias] = ACTIONS(4434), - [anon_sym_global] = ACTIONS(4434), - [anon_sym_LBRACK] = ACTIONS(4436), - [anon_sym_COLON] = ACTIONS(4436), - [anon_sym_COMMA] = ACTIONS(4436), - [anon_sym_LPAREN] = ACTIONS(4436), - [anon_sym_LBRACE] = ACTIONS(4436), - [anon_sym_file] = ACTIONS(4434), - [anon_sym_LT] = ACTIONS(4434), - [anon_sym_GT] = ACTIONS(4434), - [anon_sym_where] = ACTIONS(4434), - [anon_sym_QMARK] = ACTIONS(4434), - [anon_sym_notnull] = ACTIONS(4434), - [anon_sym_unmanaged] = ACTIONS(4434), - [anon_sym_BANG] = ACTIONS(4434), - [anon_sym_PLUS_PLUS] = ACTIONS(4436), - [anon_sym_DASH_DASH] = ACTIONS(4436), - [anon_sym_PLUS] = ACTIONS(4434), - [anon_sym_DASH] = ACTIONS(4434), - [anon_sym_STAR] = ACTIONS(4436), - [anon_sym_SLASH] = ACTIONS(4434), - [anon_sym_PERCENT] = ACTIONS(4436), - [anon_sym_CARET] = ACTIONS(4436), - [anon_sym_PIPE] = ACTIONS(4434), - [anon_sym_AMP] = ACTIONS(4434), - [anon_sym_LT_LT] = ACTIONS(4436), - [anon_sym_GT_GT] = ACTIONS(4434), - [anon_sym_GT_GT_GT] = ACTIONS(4436), - [anon_sym_EQ_EQ] = ACTIONS(4436), - [anon_sym_BANG_EQ] = ACTIONS(4436), - [anon_sym_GT_EQ] = ACTIONS(4436), - [anon_sym_LT_EQ] = ACTIONS(4436), - [anon_sym_DOT] = ACTIONS(4434), - [anon_sym_scoped] = ACTIONS(4434), - [anon_sym_var] = ACTIONS(4434), - [anon_sym_yield] = ACTIONS(4434), - [anon_sym_switch] = ACTIONS(4434), - [anon_sym_when] = ACTIONS(4434), - [sym_discard] = ACTIONS(4434), - [anon_sym_DOT_DOT] = ACTIONS(4436), - [anon_sym_and] = ACTIONS(4434), - [anon_sym_or] = ACTIONS(4434), - [anon_sym_AMP_AMP] = ACTIONS(4436), - [anon_sym_PIPE_PIPE] = ACTIONS(4436), - [sym_op_coalescing] = ACTIONS(4436), - [anon_sym_from] = ACTIONS(4434), - [anon_sym_into] = ACTIONS(4434), - [anon_sym_join] = ACTIONS(4434), - [anon_sym_on] = ACTIONS(4434), - [anon_sym_equals] = ACTIONS(4434), - [anon_sym_let] = ACTIONS(4434), - [anon_sym_orderby] = ACTIONS(4434), - [anon_sym_ascending] = ACTIONS(4434), - [anon_sym_descending] = ACTIONS(4434), - [anon_sym_group] = ACTIONS(4434), - [anon_sym_by] = ACTIONS(4434), - [anon_sym_select] = ACTIONS(4434), - [anon_sym_as] = ACTIONS(4434), - [anon_sym_is] = ACTIONS(4434), - [anon_sym_DASH_GT] = ACTIONS(4436), - [anon_sym_with] = ACTIONS(4434), - [sym_grit_metavariable] = ACTIONS(4436), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4436), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = 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), }, [3028] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(3028), [sym_preproc_endregion] = STATE(3028), [sym_preproc_line] = STATE(3028), @@ -486099,70 +485607,52 @@ 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), - [sym__identifier_token] = ACTIONS(5334), - [anon_sym_extern] = ACTIONS(5334), - [anon_sym_alias] = ACTIONS(5334), - [anon_sym_global] = ACTIONS(5334), - [anon_sym_using] = ACTIONS(5334), - [anon_sym_unsafe] = ACTIONS(5334), - [anon_sym_static] = ACTIONS(5334), - [anon_sym_LBRACK] = ACTIONS(5336), - [anon_sym_LPAREN] = ACTIONS(5336), - [anon_sym_event] = ACTIONS(5334), - [anon_sym_namespace] = ACTIONS(5334), - [anon_sym_class] = ACTIONS(5334), - [anon_sym_ref] = ACTIONS(5334), - [anon_sym_struct] = ACTIONS(5334), - [anon_sym_enum] = ACTIONS(5334), - [anon_sym_RBRACE] = ACTIONS(5336), - [anon_sym_interface] = ACTIONS(5334), - [anon_sym_delegate] = ACTIONS(5334), - [anon_sym_record] = ACTIONS(5334), - [anon_sym_public] = ACTIONS(5334), - [anon_sym_private] = ACTIONS(5334), - [anon_sym_readonly] = ACTIONS(5334), - [anon_sym_abstract] = ACTIONS(5334), - [anon_sym_async] = ACTIONS(5334), - [anon_sym_const] = ACTIONS(5334), - [anon_sym_file] = ACTIONS(5334), - [anon_sym_fixed] = ACTIONS(5334), - [anon_sym_internal] = ACTIONS(5334), - [anon_sym_new] = ACTIONS(5334), - [anon_sym_override] = ACTIONS(5334), - [anon_sym_partial] = ACTIONS(5334), - [anon_sym_protected] = ACTIONS(5334), - [anon_sym_required] = ACTIONS(5334), - [anon_sym_sealed] = ACTIONS(5334), - [anon_sym_virtual] = ACTIONS(5334), - [anon_sym_volatile] = ACTIONS(5334), - [anon_sym_where] = ACTIONS(5334), - [anon_sym_notnull] = ACTIONS(5334), - [anon_sym_unmanaged] = ACTIONS(5334), - [anon_sym_TILDE] = ACTIONS(5336), - [anon_sym_implicit] = ACTIONS(5334), - [anon_sym_explicit] = ACTIONS(5334), - [anon_sym_scoped] = ACTIONS(5334), - [anon_sym_var] = ACTIONS(5334), - [sym_predefined_type] = ACTIONS(5334), - [anon_sym_yield] = ACTIONS(5334), - [anon_sym_when] = ACTIONS(5334), - [anon_sym_from] = ACTIONS(5334), - [anon_sym_into] = ACTIONS(5334), - [anon_sym_join] = ACTIONS(5334), - [anon_sym_on] = ACTIONS(5334), - [anon_sym_equals] = ACTIONS(5334), - [anon_sym_let] = ACTIONS(5334), - [anon_sym_orderby] = ACTIONS(5334), - [anon_sym_ascending] = ACTIONS(5334), - [anon_sym_descending] = ACTIONS(5334), - [anon_sym_group] = ACTIONS(5334), - [anon_sym_by] = ACTIONS(5334), - [anon_sym_select] = ACTIONS(5334), - [sym_grit_metavariable] = ACTIONS(5336), - [aux_sym_preproc_if_token1] = 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_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486175,6 +485665,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3029] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(3029), [sym_preproc_endregion] = STATE(3029), [sym_preproc_line] = STATE(3029), @@ -486184,70 +485689,52 @@ 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), - [sym__identifier_token] = ACTIONS(5338), - [anon_sym_extern] = ACTIONS(5338), - [anon_sym_alias] = ACTIONS(5338), - [anon_sym_global] = ACTIONS(5338), - [anon_sym_using] = ACTIONS(5338), - [anon_sym_unsafe] = ACTIONS(5338), - [anon_sym_static] = ACTIONS(5338), - [anon_sym_LBRACK] = ACTIONS(5340), - [anon_sym_LPAREN] = ACTIONS(5340), - [anon_sym_event] = ACTIONS(5338), - [anon_sym_namespace] = ACTIONS(5338), - [anon_sym_class] = ACTIONS(5338), - [anon_sym_ref] = ACTIONS(5338), - [anon_sym_struct] = ACTIONS(5338), - [anon_sym_enum] = ACTIONS(5338), - [anon_sym_RBRACE] = ACTIONS(5340), - [anon_sym_interface] = ACTIONS(5338), - [anon_sym_delegate] = ACTIONS(5338), - [anon_sym_record] = ACTIONS(5338), - [anon_sym_public] = ACTIONS(5338), - [anon_sym_private] = ACTIONS(5338), - [anon_sym_readonly] = ACTIONS(5338), - [anon_sym_abstract] = ACTIONS(5338), - [anon_sym_async] = ACTIONS(5338), - [anon_sym_const] = ACTIONS(5338), - [anon_sym_file] = ACTIONS(5338), - [anon_sym_fixed] = ACTIONS(5338), - [anon_sym_internal] = ACTIONS(5338), - [anon_sym_new] = ACTIONS(5338), - [anon_sym_override] = ACTIONS(5338), - [anon_sym_partial] = ACTIONS(5338), - [anon_sym_protected] = ACTIONS(5338), - [anon_sym_required] = ACTIONS(5338), - [anon_sym_sealed] = ACTIONS(5338), - [anon_sym_virtual] = ACTIONS(5338), - [anon_sym_volatile] = ACTIONS(5338), - [anon_sym_where] = ACTIONS(5338), - [anon_sym_notnull] = ACTIONS(5338), - [anon_sym_unmanaged] = ACTIONS(5338), - [anon_sym_TILDE] = ACTIONS(5340), - [anon_sym_implicit] = ACTIONS(5338), - [anon_sym_explicit] = ACTIONS(5338), - [anon_sym_scoped] = ACTIONS(5338), - [anon_sym_var] = ACTIONS(5338), - [sym_predefined_type] = ACTIONS(5338), - [anon_sym_yield] = ACTIONS(5338), - [anon_sym_when] = ACTIONS(5338), - [anon_sym_from] = ACTIONS(5338), - [anon_sym_into] = ACTIONS(5338), - [anon_sym_join] = ACTIONS(5338), - [anon_sym_on] = ACTIONS(5338), - [anon_sym_equals] = ACTIONS(5338), - [anon_sym_let] = ACTIONS(5338), - [anon_sym_orderby] = ACTIONS(5338), - [anon_sym_ascending] = ACTIONS(5338), - [anon_sym_descending] = ACTIONS(5338), - [anon_sym_group] = ACTIONS(5338), - [anon_sym_by] = ACTIONS(5338), - [anon_sym_select] = ACTIONS(5338), - [sym_grit_metavariable] = ACTIONS(5340), - [aux_sym_preproc_if_token1] = ACTIONS(5340), - [aux_sym_preproc_if_token3] = ACTIONS(5340), - [aux_sym_preproc_else_token1] = ACTIONS(5340), - [aux_sym_preproc_elif_token1] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486269,70 +485756,66 @@ 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), - [sym__identifier_token] = ACTIONS(5342), - [anon_sym_extern] = ACTIONS(5342), - [anon_sym_alias] = ACTIONS(5342), - [anon_sym_global] = ACTIONS(5342), - [anon_sym_using] = ACTIONS(5342), - [anon_sym_unsafe] = ACTIONS(5342), - [anon_sym_static] = ACTIONS(5342), - [anon_sym_LBRACK] = ACTIONS(5344), - [anon_sym_LPAREN] = ACTIONS(5344), - [anon_sym_event] = ACTIONS(5342), - [anon_sym_namespace] = ACTIONS(5342), - [anon_sym_class] = ACTIONS(5342), - [anon_sym_ref] = ACTIONS(5342), - [anon_sym_struct] = ACTIONS(5342), - [anon_sym_enum] = ACTIONS(5342), - [anon_sym_RBRACE] = ACTIONS(5344), - [anon_sym_interface] = ACTIONS(5342), - [anon_sym_delegate] = ACTIONS(5342), - [anon_sym_record] = ACTIONS(5342), - [anon_sym_public] = ACTIONS(5342), - [anon_sym_private] = ACTIONS(5342), - [anon_sym_readonly] = ACTIONS(5342), - [anon_sym_abstract] = ACTIONS(5342), - [anon_sym_async] = ACTIONS(5342), - [anon_sym_const] = ACTIONS(5342), - [anon_sym_file] = ACTIONS(5342), - [anon_sym_fixed] = ACTIONS(5342), - [anon_sym_internal] = ACTIONS(5342), - [anon_sym_new] = ACTIONS(5342), - [anon_sym_override] = ACTIONS(5342), - [anon_sym_partial] = ACTIONS(5342), - [anon_sym_protected] = ACTIONS(5342), - [anon_sym_required] = ACTIONS(5342), - [anon_sym_sealed] = ACTIONS(5342), - [anon_sym_virtual] = ACTIONS(5342), - [anon_sym_volatile] = ACTIONS(5342), - [anon_sym_where] = ACTIONS(5342), - [anon_sym_notnull] = ACTIONS(5342), - [anon_sym_unmanaged] = ACTIONS(5342), - [anon_sym_TILDE] = ACTIONS(5344), - [anon_sym_implicit] = ACTIONS(5342), - [anon_sym_explicit] = ACTIONS(5342), - [anon_sym_scoped] = ACTIONS(5342), - [anon_sym_var] = ACTIONS(5342), - [sym_predefined_type] = ACTIONS(5342), - [anon_sym_yield] = ACTIONS(5342), - [anon_sym_when] = ACTIONS(5342), - [anon_sym_from] = ACTIONS(5342), - [anon_sym_into] = ACTIONS(5342), - [anon_sym_join] = ACTIONS(5342), - [anon_sym_on] = ACTIONS(5342), - [anon_sym_equals] = 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_by] = ACTIONS(5342), - [anon_sym_select] = ACTIONS(5342), - [sym_grit_metavariable] = ACTIONS(5344), - [aux_sym_preproc_if_token1] = ACTIONS(5344), - [aux_sym_preproc_if_token3] = ACTIONS(5344), - [aux_sym_preproc_else_token1] = ACTIONS(5344), - [aux_sym_preproc_elif_token1] = ACTIONS(5344), + [anon_sym_EQ] = ACTIONS(4532), + [anon_sym_LBRACK] = ACTIONS(4530), + [anon_sym_COMMA] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4532), + [anon_sym_GT] = ACTIONS(4532), + [anon_sym_where] = ACTIONS(4530), + [anon_sym_QMARK] = ACTIONS(4532), + [anon_sym_DOT] = ACTIONS(4532), + [anon_sym_STAR] = ACTIONS(4532), + [anon_sym_switch] = ACTIONS(4530), + [anon_sym_DOT_DOT] = ACTIONS(4530), + [anon_sym_LT_EQ] = ACTIONS(4530), + [anon_sym_GT_EQ] = ACTIONS(4530), + [anon_sym_and] = ACTIONS(4530), + [anon_sym_or] = ACTIONS(4532), + [anon_sym_PLUS_EQ] = ACTIONS(4530), + [anon_sym_DASH_EQ] = ACTIONS(4530), + [anon_sym_STAR_EQ] = ACTIONS(4530), + [anon_sym_SLASH_EQ] = ACTIONS(4530), + [anon_sym_PERCENT_EQ] = ACTIONS(4530), + [anon_sym_AMP_EQ] = ACTIONS(4530), + [anon_sym_CARET_EQ] = ACTIONS(4530), + [anon_sym_PIPE_EQ] = ACTIONS(4530), + [anon_sym_LT_LT_EQ] = ACTIONS(4530), + [anon_sym_GT_GT_EQ] = ACTIONS(4530), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4530), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4530), + [anon_sym_EQ_EQ] = ACTIONS(4530), + [anon_sym_BANG_EQ] = ACTIONS(4530), + [anon_sym_AMP_AMP] = ACTIONS(4530), + [anon_sym_PIPE_PIPE] = ACTIONS(4530), + [anon_sym_AMP] = ACTIONS(4532), + [sym_op_bitwise_or] = ACTIONS(4532), + [anon_sym_CARET] = ACTIONS(4532), + [sym_op_left_shift] = ACTIONS(4532), + [sym_op_right_shift] = ACTIONS(4532), + [sym_op_unsigned_right_shift] = ACTIONS(4532), + [anon_sym_PLUS] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [sym_op_divide] = ACTIONS(4532), + [sym_op_modulo] = ACTIONS(4532), + [sym_op_coalescing] = ACTIONS(4532), + [anon_sym_BANG] = ACTIONS(4532), + [anon_sym_PLUS_PLUS] = ACTIONS(4530), + [anon_sym_DASH_DASH] = ACTIONS(4530), + [anon_sym_from] = ACTIONS(4530), + [anon_sym_into] = ACTIONS(4530), + [anon_sym_join] = ACTIONS(4530), + [anon_sym_let] = ACTIONS(4530), + [anon_sym_orderby] = ACTIONS(4530), + [anon_sym_ascending] = ACTIONS(4530), + [anon_sym_descending] = ACTIONS(4530), + [anon_sym_group] = ACTIONS(4530), + [anon_sym_select] = ACTIONS(4530), + [anon_sym_as] = ACTIONS(4532), + [anon_sym_is] = ACTIONS(4530), + [anon_sym_DASH_GT] = ACTIONS(4530), + [anon_sym_with] = ACTIONS(4530), + [sym_grit_metavariable] = ACTIONS(4530), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486345,6 +485828,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3031] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3031), [sym_preproc_endregion] = STATE(3031), [sym_preproc_line] = STATE(3031), @@ -486354,70 +485852,51 @@ 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(5346), - [anon_sym_extern] = ACTIONS(5346), - [anon_sym_alias] = ACTIONS(5346), - [anon_sym_global] = ACTIONS(5346), - [anon_sym_using] = ACTIONS(5346), - [anon_sym_unsafe] = ACTIONS(5346), - [anon_sym_static] = ACTIONS(5346), - [anon_sym_LBRACK] = ACTIONS(5348), - [anon_sym_LPAREN] = ACTIONS(5348), - [anon_sym_event] = ACTIONS(5346), - [anon_sym_namespace] = ACTIONS(5346), - [anon_sym_class] = ACTIONS(5346), - [anon_sym_ref] = ACTIONS(5346), - [anon_sym_struct] = ACTIONS(5346), - [anon_sym_enum] = ACTIONS(5346), - [anon_sym_RBRACE] = ACTIONS(5348), - [anon_sym_interface] = ACTIONS(5346), - [anon_sym_delegate] = ACTIONS(5346), - [anon_sym_record] = ACTIONS(5346), - [anon_sym_public] = ACTIONS(5346), - [anon_sym_private] = ACTIONS(5346), - [anon_sym_readonly] = ACTIONS(5346), - [anon_sym_abstract] = ACTIONS(5346), - [anon_sym_async] = ACTIONS(5346), - [anon_sym_const] = ACTIONS(5346), - [anon_sym_file] = ACTIONS(5346), - [anon_sym_fixed] = ACTIONS(5346), - [anon_sym_internal] = ACTIONS(5346), - [anon_sym_new] = ACTIONS(5346), - [anon_sym_override] = ACTIONS(5346), - [anon_sym_partial] = ACTIONS(5346), - [anon_sym_protected] = ACTIONS(5346), - [anon_sym_required] = ACTIONS(5346), - [anon_sym_sealed] = ACTIONS(5346), - [anon_sym_virtual] = ACTIONS(5346), - [anon_sym_volatile] = ACTIONS(5346), - [anon_sym_where] = ACTIONS(5346), - [anon_sym_notnull] = ACTIONS(5346), - [anon_sym_unmanaged] = ACTIONS(5346), - [anon_sym_TILDE] = ACTIONS(5348), - [anon_sym_implicit] = ACTIONS(5346), - [anon_sym_explicit] = ACTIONS(5346), - [anon_sym_scoped] = ACTIONS(5346), - [anon_sym_var] = ACTIONS(5346), - [sym_predefined_type] = ACTIONS(5346), - [anon_sym_yield] = ACTIONS(5346), - [anon_sym_when] = ACTIONS(5346), - [anon_sym_from] = ACTIONS(5346), - [anon_sym_into] = ACTIONS(5346), - [anon_sym_join] = ACTIONS(5346), - [anon_sym_on] = ACTIONS(5346), - [anon_sym_equals] = 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_by] = ACTIONS(5346), - [anon_sym_select] = ACTIONS(5346), - [sym_grit_metavariable] = ACTIONS(5348), - [aux_sym_preproc_if_token1] = ACTIONS(5348), - [aux_sym_preproc_if_token3] = ACTIONS(5348), - [aux_sym_preproc_else_token1] = ACTIONS(5348), - [aux_sym_preproc_elif_token1] = ACTIONS(5348), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_where] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5292), + [anon_sym_with] = ACTIONS(5352), + [sym_grit_metavariable] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486430,6 +485909,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3032] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3032), [sym_preproc_endregion] = STATE(3032), [sym_preproc_line] = STATE(3032), @@ -486439,70 +485933,51 @@ 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), - [sym__identifier_token] = ACTIONS(5350), - [anon_sym_extern] = ACTIONS(5350), - [anon_sym_alias] = ACTIONS(5350), - [anon_sym_global] = ACTIONS(5350), - [anon_sym_using] = ACTIONS(5350), - [anon_sym_unsafe] = ACTIONS(5350), - [anon_sym_static] = ACTIONS(5350), - [anon_sym_LBRACK] = ACTIONS(5352), - [anon_sym_LPAREN] = ACTIONS(5352), - [anon_sym_event] = ACTIONS(5350), - [anon_sym_namespace] = ACTIONS(5350), - [anon_sym_class] = ACTIONS(5350), - [anon_sym_ref] = ACTIONS(5350), - [anon_sym_struct] = ACTIONS(5350), - [anon_sym_enum] = ACTIONS(5350), - [anon_sym_RBRACE] = ACTIONS(5352), - [anon_sym_interface] = ACTIONS(5350), - [anon_sym_delegate] = ACTIONS(5350), - [anon_sym_record] = ACTIONS(5350), - [anon_sym_public] = ACTIONS(5350), - [anon_sym_private] = ACTIONS(5350), - [anon_sym_readonly] = ACTIONS(5350), - [anon_sym_abstract] = ACTIONS(5350), - [anon_sym_async] = ACTIONS(5350), - [anon_sym_const] = ACTIONS(5350), - [anon_sym_file] = ACTIONS(5350), - [anon_sym_fixed] = ACTIONS(5350), - [anon_sym_internal] = ACTIONS(5350), - [anon_sym_new] = ACTIONS(5350), - [anon_sym_override] = ACTIONS(5350), - [anon_sym_partial] = ACTIONS(5350), - [anon_sym_protected] = ACTIONS(5350), - [anon_sym_required] = ACTIONS(5350), - [anon_sym_sealed] = ACTIONS(5350), - [anon_sym_virtual] = ACTIONS(5350), - [anon_sym_volatile] = ACTIONS(5350), - [anon_sym_where] = ACTIONS(5350), - [anon_sym_notnull] = ACTIONS(5350), - [anon_sym_unmanaged] = ACTIONS(5350), - [anon_sym_TILDE] = ACTIONS(5352), - [anon_sym_implicit] = ACTIONS(5350), - [anon_sym_explicit] = ACTIONS(5350), - [anon_sym_scoped] = ACTIONS(5350), - [anon_sym_var] = ACTIONS(5350), - [sym_predefined_type] = ACTIONS(5350), - [anon_sym_yield] = ACTIONS(5350), - [anon_sym_when] = ACTIONS(5350), - [anon_sym_from] = ACTIONS(5350), - [anon_sym_into] = ACTIONS(5350), - [anon_sym_join] = ACTIONS(5350), - [anon_sym_on] = ACTIONS(5350), - [anon_sym_equals] = 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_by] = ACTIONS(5350), - [anon_sym_select] = ACTIONS(5350), - [sym_grit_metavariable] = ACTIONS(5352), - [aux_sym_preproc_if_token1] = 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_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_where] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(1365), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_join] = ACTIONS(1365), + [anon_sym_let] = ACTIONS(1365), + [anon_sym_orderby] = ACTIONS(1365), + [anon_sym_ascending] = ACTIONS(1365), + [anon_sym_descending] = ACTIONS(1365), + [anon_sym_group] = ACTIONS(1365), + [anon_sym_select] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(1365), + [sym_grit_metavariable] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486515,6 +485990,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3033] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3033), [sym_preproc_endregion] = STATE(3033), [sym_preproc_line] = STATE(3033), @@ -486524,70 +486014,51 @@ 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), - [sym__identifier_token] = ACTIONS(5354), - [anon_sym_extern] = ACTIONS(5354), - [anon_sym_alias] = ACTIONS(5354), - [anon_sym_global] = ACTIONS(5354), - [anon_sym_using] = ACTIONS(5354), - [anon_sym_unsafe] = ACTIONS(5354), - [anon_sym_static] = ACTIONS(5354), - [anon_sym_LBRACK] = ACTIONS(5356), - [anon_sym_LPAREN] = ACTIONS(5356), - [anon_sym_event] = ACTIONS(5354), - [anon_sym_namespace] = ACTIONS(5354), - [anon_sym_class] = ACTIONS(5354), - [anon_sym_ref] = ACTIONS(5354), - [anon_sym_struct] = ACTIONS(5354), - [anon_sym_enum] = ACTIONS(5354), - [anon_sym_RBRACE] = ACTIONS(5356), - [anon_sym_interface] = ACTIONS(5354), - [anon_sym_delegate] = ACTIONS(5354), - [anon_sym_record] = ACTIONS(5354), - [anon_sym_public] = ACTIONS(5354), - [anon_sym_private] = ACTIONS(5354), - [anon_sym_readonly] = ACTIONS(5354), - [anon_sym_abstract] = ACTIONS(5354), - [anon_sym_async] = ACTIONS(5354), - [anon_sym_const] = ACTIONS(5354), - [anon_sym_file] = ACTIONS(5354), - [anon_sym_fixed] = ACTIONS(5354), - [anon_sym_internal] = ACTIONS(5354), - [anon_sym_new] = ACTIONS(5354), - [anon_sym_override] = ACTIONS(5354), - [anon_sym_partial] = ACTIONS(5354), - [anon_sym_protected] = ACTIONS(5354), - [anon_sym_required] = ACTIONS(5354), - [anon_sym_sealed] = ACTIONS(5354), - [anon_sym_virtual] = ACTIONS(5354), - [anon_sym_volatile] = ACTIONS(5354), - [anon_sym_where] = ACTIONS(5354), - [anon_sym_notnull] = ACTIONS(5354), - [anon_sym_unmanaged] = ACTIONS(5354), - [anon_sym_TILDE] = ACTIONS(5356), - [anon_sym_implicit] = ACTIONS(5354), - [anon_sym_explicit] = ACTIONS(5354), - [anon_sym_scoped] = ACTIONS(5354), - [anon_sym_var] = ACTIONS(5354), - [sym_predefined_type] = ACTIONS(5354), - [anon_sym_yield] = ACTIONS(5354), - [anon_sym_when] = ACTIONS(5354), - [anon_sym_from] = ACTIONS(5354), - [anon_sym_into] = ACTIONS(5354), - [anon_sym_join] = ACTIONS(5354), - [anon_sym_on] = ACTIONS(5354), - [anon_sym_equals] = 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_by] = ACTIONS(5354), - [anon_sym_select] = ACTIONS(5354), - [sym_grit_metavariable] = ACTIONS(5356), - [aux_sym_preproc_if_token1] = ACTIONS(5356), - [aux_sym_preproc_if_token3] = ACTIONS(5356), - [aux_sym_preproc_else_token1] = ACTIONS(5356), - [aux_sym_preproc_elif_token1] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5486), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5498), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5332), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486600,6 +486071,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3034] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3034), [sym_preproc_endregion] = STATE(3034), [sym_preproc_line] = STATE(3034), @@ -486609,70 +486095,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3034), [sym_preproc_define] = STATE(3034), [sym_preproc_undef] = STATE(3034), - [sym__identifier_token] = ACTIONS(5358), - [anon_sym_extern] = ACTIONS(5358), - [anon_sym_alias] = ACTIONS(5358), - [anon_sym_global] = ACTIONS(5358), - [anon_sym_using] = ACTIONS(5358), - [anon_sym_unsafe] = ACTIONS(5358), - [anon_sym_static] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(5360), - [anon_sym_LPAREN] = ACTIONS(5360), - [anon_sym_event] = ACTIONS(5358), - [anon_sym_namespace] = ACTIONS(5358), - [anon_sym_class] = ACTIONS(5358), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_struct] = ACTIONS(5358), - [anon_sym_enum] = ACTIONS(5358), - [anon_sym_RBRACE] = ACTIONS(5360), - [anon_sym_interface] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5358), - [anon_sym_record] = ACTIONS(5358), - [anon_sym_public] = ACTIONS(5358), - [anon_sym_private] = ACTIONS(5358), - [anon_sym_readonly] = ACTIONS(5358), - [anon_sym_abstract] = ACTIONS(5358), - [anon_sym_async] = ACTIONS(5358), - [anon_sym_const] = ACTIONS(5358), - [anon_sym_file] = ACTIONS(5358), - [anon_sym_fixed] = ACTIONS(5358), - [anon_sym_internal] = ACTIONS(5358), - [anon_sym_new] = ACTIONS(5358), - [anon_sym_override] = ACTIONS(5358), - [anon_sym_partial] = ACTIONS(5358), - [anon_sym_protected] = ACTIONS(5358), - [anon_sym_required] = ACTIONS(5358), - [anon_sym_sealed] = ACTIONS(5358), - [anon_sym_virtual] = ACTIONS(5358), - [anon_sym_volatile] = ACTIONS(5358), - [anon_sym_where] = ACTIONS(5358), - [anon_sym_notnull] = ACTIONS(5358), - [anon_sym_unmanaged] = ACTIONS(5358), - [anon_sym_TILDE] = ACTIONS(5360), - [anon_sym_implicit] = ACTIONS(5358), - [anon_sym_explicit] = ACTIONS(5358), - [anon_sym_scoped] = ACTIONS(5358), - [anon_sym_var] = ACTIONS(5358), - [sym_predefined_type] = ACTIONS(5358), - [anon_sym_yield] = ACTIONS(5358), - [anon_sym_when] = ACTIONS(5358), - [anon_sym_from] = ACTIONS(5358), - [anon_sym_into] = ACTIONS(5358), - [anon_sym_join] = ACTIONS(5358), - [anon_sym_on] = ACTIONS(5358), - [anon_sym_equals] = ACTIONS(5358), - [anon_sym_let] = ACTIONS(5358), - [anon_sym_orderby] = ACTIONS(5358), - [anon_sym_ascending] = ACTIONS(5358), - [anon_sym_descending] = ACTIONS(5358), - [anon_sym_group] = ACTIONS(5358), - [anon_sym_by] = ACTIONS(5358), - [anon_sym_select] = ACTIONS(5358), - [sym_grit_metavariable] = ACTIONS(5360), - [aux_sym_preproc_if_token1] = ACTIONS(5360), - [aux_sym_preproc_if_token3] = ACTIONS(5360), - [aux_sym_preproc_else_token1] = ACTIONS(5360), - [aux_sym_preproc_elif_token1] = ACTIONS(5360), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_where] = ACTIONS(5314), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5314), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_join] = ACTIONS(5314), + [anon_sym_let] = ACTIONS(5314), + [anon_sym_orderby] = ACTIONS(5314), + [anon_sym_ascending] = ACTIONS(5314), + [anon_sym_descending] = ACTIONS(5314), + [anon_sym_group] = ACTIONS(5314), + [anon_sym_select] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5316), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5314), + [sym_grit_metavariable] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486685,6 +486152,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3035] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3035), [sym_preproc_endregion] = STATE(3035), [sym_preproc_line] = STATE(3035), @@ -486694,70 +486176,51 @@ 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), - [sym__identifier_token] = ACTIONS(5362), - [anon_sym_extern] = ACTIONS(5362), - [anon_sym_alias] = ACTIONS(5362), - [anon_sym_global] = ACTIONS(5362), - [anon_sym_using] = ACTIONS(5362), - [anon_sym_unsafe] = ACTIONS(5362), - [anon_sym_static] = ACTIONS(5362), - [anon_sym_LBRACK] = ACTIONS(5364), - [anon_sym_LPAREN] = ACTIONS(5364), - [anon_sym_event] = ACTIONS(5362), - [anon_sym_namespace] = ACTIONS(5362), - [anon_sym_class] = ACTIONS(5362), - [anon_sym_ref] = ACTIONS(5362), - [anon_sym_struct] = ACTIONS(5362), - [anon_sym_enum] = ACTIONS(5362), - [anon_sym_RBRACE] = ACTIONS(5364), - [anon_sym_interface] = ACTIONS(5362), - [anon_sym_delegate] = ACTIONS(5362), - [anon_sym_record] = ACTIONS(5362), - [anon_sym_public] = ACTIONS(5362), - [anon_sym_private] = ACTIONS(5362), - [anon_sym_readonly] = ACTIONS(5362), - [anon_sym_abstract] = ACTIONS(5362), - [anon_sym_async] = ACTIONS(5362), - [anon_sym_const] = ACTIONS(5362), - [anon_sym_file] = ACTIONS(5362), - [anon_sym_fixed] = ACTIONS(5362), - [anon_sym_internal] = ACTIONS(5362), - [anon_sym_new] = ACTIONS(5362), - [anon_sym_override] = ACTIONS(5362), - [anon_sym_partial] = ACTIONS(5362), - [anon_sym_protected] = ACTIONS(5362), - [anon_sym_required] = ACTIONS(5362), - [anon_sym_sealed] = ACTIONS(5362), - [anon_sym_virtual] = ACTIONS(5362), - [anon_sym_volatile] = ACTIONS(5362), - [anon_sym_where] = ACTIONS(5362), - [anon_sym_notnull] = ACTIONS(5362), - [anon_sym_unmanaged] = ACTIONS(5362), - [anon_sym_TILDE] = ACTIONS(5364), - [anon_sym_implicit] = ACTIONS(5362), - [anon_sym_explicit] = ACTIONS(5362), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(5362), - [sym_predefined_type] = ACTIONS(5362), - [anon_sym_yield] = ACTIONS(5362), - [anon_sym_when] = ACTIONS(5362), - [anon_sym_from] = ACTIONS(5362), - [anon_sym_into] = ACTIONS(5362), - [anon_sym_join] = ACTIONS(5362), - [anon_sym_on] = ACTIONS(5362), - [anon_sym_equals] = ACTIONS(5362), - [anon_sym_let] = ACTIONS(5362), - [anon_sym_orderby] = ACTIONS(5362), - [anon_sym_ascending] = ACTIONS(5362), - [anon_sym_descending] = ACTIONS(5362), - [anon_sym_group] = ACTIONS(5362), - [anon_sym_by] = ACTIONS(5362), - [anon_sym_select] = ACTIONS(5362), - [sym_grit_metavariable] = ACTIONS(5364), - [aux_sym_preproc_if_token1] = ACTIONS(5364), - [aux_sym_preproc_if_token3] = ACTIONS(5364), - [aux_sym_preproc_else_token1] = ACTIONS(5364), - [aux_sym_preproc_elif_token1] = ACTIONS(5364), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_where] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5292), + [anon_sym_with] = ACTIONS(5308), + [sym_grit_metavariable] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486770,6 +486233,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3036] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter] = STATE(7616), + [sym__parameter_array] = STATE(7564), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6417), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6014), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(3036), [sym_preproc_endregion] = STATE(3036), [sym_preproc_line] = STATE(3036), @@ -486779,70 +486265,43 @@ 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(5366), - [anon_sym_extern] = ACTIONS(5366), - [anon_sym_alias] = ACTIONS(5366), - [anon_sym_global] = ACTIONS(5366), - [anon_sym_using] = ACTIONS(5366), - [anon_sym_unsafe] = ACTIONS(5366), - [anon_sym_static] = ACTIONS(5366), - [anon_sym_LBRACK] = ACTIONS(5368), - [anon_sym_LPAREN] = ACTIONS(5368), - [anon_sym_event] = ACTIONS(5366), - [anon_sym_namespace] = ACTIONS(5366), - [anon_sym_class] = ACTIONS(5366), - [anon_sym_ref] = ACTIONS(5366), - [anon_sym_struct] = ACTIONS(5366), - [anon_sym_enum] = ACTIONS(5366), - [anon_sym_RBRACE] = ACTIONS(5368), - [anon_sym_interface] = ACTIONS(5366), - [anon_sym_delegate] = ACTIONS(5366), - [anon_sym_record] = ACTIONS(5366), - [anon_sym_public] = ACTIONS(5366), - [anon_sym_private] = ACTIONS(5366), - [anon_sym_readonly] = ACTIONS(5366), - [anon_sym_abstract] = ACTIONS(5366), - [anon_sym_async] = ACTIONS(5366), - [anon_sym_const] = ACTIONS(5366), - [anon_sym_file] = ACTIONS(5366), - [anon_sym_fixed] = ACTIONS(5366), - [anon_sym_internal] = ACTIONS(5366), - [anon_sym_new] = ACTIONS(5366), - [anon_sym_override] = ACTIONS(5366), - [anon_sym_partial] = ACTIONS(5366), - [anon_sym_protected] = ACTIONS(5366), - [anon_sym_required] = ACTIONS(5366), - [anon_sym_sealed] = ACTIONS(5366), - [anon_sym_virtual] = ACTIONS(5366), - [anon_sym_volatile] = ACTIONS(5366), - [anon_sym_where] = ACTIONS(5366), - [anon_sym_notnull] = ACTIONS(5366), - [anon_sym_unmanaged] = ACTIONS(5366), - [anon_sym_TILDE] = ACTIONS(5368), - [anon_sym_implicit] = ACTIONS(5366), - [anon_sym_explicit] = ACTIONS(5366), - [anon_sym_scoped] = ACTIONS(5366), - [anon_sym_var] = ACTIONS(5366), - [sym_predefined_type] = ACTIONS(5366), - [anon_sym_yield] = ACTIONS(5366), - [anon_sym_when] = ACTIONS(5366), - [anon_sym_from] = ACTIONS(5366), - [anon_sym_into] = ACTIONS(5366), - [anon_sym_join] = ACTIONS(5366), - [anon_sym_on] = ACTIONS(5366), - [anon_sym_equals] = ACTIONS(5366), - [anon_sym_let] = ACTIONS(5366), - [anon_sym_orderby] = ACTIONS(5366), - [anon_sym_ascending] = ACTIONS(5366), - [anon_sym_descending] = ACTIONS(5366), - [anon_sym_group] = ACTIONS(5366), - [anon_sym_by] = ACTIONS(5366), - [anon_sym_select] = ACTIONS(5366), - [sym_grit_metavariable] = ACTIONS(5368), - [aux_sym_preproc_if_token1] = ACTIONS(5368), - [aux_sym_preproc_if_token3] = ACTIONS(5368), - [aux_sym_preproc_else_token1] = ACTIONS(5368), - [aux_sym_preproc_elif_token1] = ACTIONS(5368), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3162), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5216), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(1311), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_out] = ACTIONS(1311), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_this] = ACTIONS(1311), + [anon_sym_scoped] = ACTIONS(5226), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(5222), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486855,6 +486314,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3037] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3037), [sym_preproc_endregion] = STATE(3037), [sym_preproc_line] = STATE(3037), @@ -486864,70 +486338,51 @@ 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), - [sym__identifier_token] = ACTIONS(5370), - [anon_sym_extern] = ACTIONS(5370), - [anon_sym_alias] = ACTIONS(5370), - [anon_sym_global] = ACTIONS(5370), - [anon_sym_using] = ACTIONS(5370), - [anon_sym_unsafe] = ACTIONS(5370), - [anon_sym_static] = ACTIONS(5370), - [anon_sym_LBRACK] = ACTIONS(5372), - [anon_sym_LPAREN] = ACTIONS(5372), - [anon_sym_event] = ACTIONS(5370), - [anon_sym_namespace] = ACTIONS(5370), - [anon_sym_class] = ACTIONS(5370), - [anon_sym_ref] = ACTIONS(5370), - [anon_sym_struct] = ACTIONS(5370), - [anon_sym_enum] = ACTIONS(5370), - [anon_sym_RBRACE] = ACTIONS(5372), - [anon_sym_interface] = ACTIONS(5370), - [anon_sym_delegate] = ACTIONS(5370), - [anon_sym_record] = ACTIONS(5370), - [anon_sym_public] = ACTIONS(5370), - [anon_sym_private] = ACTIONS(5370), - [anon_sym_readonly] = ACTIONS(5370), - [anon_sym_abstract] = ACTIONS(5370), - [anon_sym_async] = ACTIONS(5370), - [anon_sym_const] = ACTIONS(5370), - [anon_sym_file] = ACTIONS(5370), - [anon_sym_fixed] = ACTIONS(5370), - [anon_sym_internal] = ACTIONS(5370), - [anon_sym_new] = ACTIONS(5370), - [anon_sym_override] = ACTIONS(5370), - [anon_sym_partial] = ACTIONS(5370), - [anon_sym_protected] = ACTIONS(5370), - [anon_sym_required] = ACTIONS(5370), - [anon_sym_sealed] = ACTIONS(5370), - [anon_sym_virtual] = ACTIONS(5370), - [anon_sym_volatile] = ACTIONS(5370), - [anon_sym_where] = ACTIONS(5370), - [anon_sym_notnull] = ACTIONS(5370), - [anon_sym_unmanaged] = ACTIONS(5370), - [anon_sym_TILDE] = ACTIONS(5372), - [anon_sym_implicit] = ACTIONS(5370), - [anon_sym_explicit] = ACTIONS(5370), - [anon_sym_scoped] = ACTIONS(5370), - [anon_sym_var] = ACTIONS(5370), - [sym_predefined_type] = ACTIONS(5370), - [anon_sym_yield] = ACTIONS(5370), - [anon_sym_when] = ACTIONS(5370), - [anon_sym_from] = ACTIONS(5370), - [anon_sym_into] = ACTIONS(5370), - [anon_sym_join] = ACTIONS(5370), - [anon_sym_on] = ACTIONS(5370), - [anon_sym_equals] = ACTIONS(5370), - [anon_sym_let] = ACTIONS(5370), - [anon_sym_orderby] = ACTIONS(5370), - [anon_sym_ascending] = ACTIONS(5370), - [anon_sym_descending] = ACTIONS(5370), - [anon_sym_group] = ACTIONS(5370), - [anon_sym_by] = ACTIONS(5370), - [anon_sym_select] = ACTIONS(5370), - [sym_grit_metavariable] = ACTIONS(5372), - [aux_sym_preproc_if_token1] = ACTIONS(5372), - [aux_sym_preproc_if_token3] = ACTIONS(5372), - [aux_sym_preproc_else_token1] = ACTIONS(5372), - [aux_sym_preproc_elif_token1] = ACTIONS(5372), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5498), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486940,6 +486395,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3038] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3038), [sym_preproc_endregion] = STATE(3038), [sym_preproc_line] = STATE(3038), @@ -486949,82 +486419,78 @@ 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(4422), - [anon_sym_alias] = ACTIONS(4422), - [anon_sym_global] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4424), - [anon_sym_COLON] = ACTIONS(4424), - [anon_sym_COMMA] = ACTIONS(4424), - [anon_sym_LPAREN] = ACTIONS(4424), - [anon_sym_LBRACE] = ACTIONS(4424), - [anon_sym_file] = ACTIONS(4422), - [anon_sym_LT] = ACTIONS(4422), - [anon_sym_GT] = ACTIONS(4422), - [anon_sym_where] = ACTIONS(4422), - [anon_sym_QMARK] = ACTIONS(4422), - [anon_sym_notnull] = ACTIONS(4422), - [anon_sym_unmanaged] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4424), - [anon_sym_DASH_DASH] = ACTIONS(4424), - [anon_sym_PLUS] = ACTIONS(4422), - [anon_sym_DASH] = ACTIONS(4422), - [anon_sym_STAR] = ACTIONS(4424), - [anon_sym_SLASH] = ACTIONS(4422), - [anon_sym_PERCENT] = ACTIONS(4424), - [anon_sym_CARET] = ACTIONS(4424), - [anon_sym_PIPE] = ACTIONS(4422), - [anon_sym_AMP] = ACTIONS(4422), - [anon_sym_LT_LT] = ACTIONS(4424), - [anon_sym_GT_GT] = ACTIONS(4422), - [anon_sym_GT_GT_GT] = ACTIONS(4424), - [anon_sym_EQ_EQ] = ACTIONS(4424), - [anon_sym_BANG_EQ] = ACTIONS(4424), - [anon_sym_GT_EQ] = ACTIONS(4424), - [anon_sym_LT_EQ] = ACTIONS(4424), - [anon_sym_DOT] = ACTIONS(4422), - [anon_sym_scoped] = ACTIONS(4422), - [anon_sym_var] = ACTIONS(4422), - [anon_sym_yield] = ACTIONS(4422), - [anon_sym_switch] = ACTIONS(4422), - [anon_sym_when] = ACTIONS(4422), - [sym_discard] = ACTIONS(4422), - [anon_sym_DOT_DOT] = ACTIONS(4424), - [anon_sym_and] = ACTIONS(4422), - [anon_sym_or] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4424), - [anon_sym_PIPE_PIPE] = ACTIONS(4424), - [sym_op_coalescing] = ACTIONS(4424), - [anon_sym_from] = ACTIONS(4422), - [anon_sym_into] = ACTIONS(4422), - [anon_sym_join] = ACTIONS(4422), - [anon_sym_on] = ACTIONS(4422), - [anon_sym_equals] = ACTIONS(4422), - [anon_sym_let] = ACTIONS(4422), - [anon_sym_orderby] = ACTIONS(4422), - [anon_sym_ascending] = ACTIONS(4422), - [anon_sym_descending] = ACTIONS(4422), - [anon_sym_group] = ACTIONS(4422), - [anon_sym_by] = ACTIONS(4422), - [anon_sym_select] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4422), - [anon_sym_is] = ACTIONS(4422), - [anon_sym_DASH_GT] = ACTIONS(4424), - [anon_sym_with] = ACTIONS(4422), - [sym_grit_metavariable] = ACTIONS(4424), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5498), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = 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), }, [3039] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3039), [sym_preproc_endregion] = STATE(3039), [sym_preproc_line] = STATE(3039), @@ -487034,70 +486500,51 @@ 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), - [sym__identifier_token] = ACTIONS(5374), - [anon_sym_extern] = ACTIONS(5374), - [anon_sym_alias] = ACTIONS(5374), - [anon_sym_global] = ACTIONS(5374), - [anon_sym_using] = ACTIONS(5374), - [anon_sym_unsafe] = ACTIONS(5374), - [anon_sym_static] = ACTIONS(5374), - [anon_sym_LBRACK] = ACTIONS(5376), - [anon_sym_LPAREN] = ACTIONS(5376), - [anon_sym_event] = ACTIONS(5374), - [anon_sym_namespace] = ACTIONS(5374), - [anon_sym_class] = ACTIONS(5374), - [anon_sym_ref] = ACTIONS(5374), - [anon_sym_struct] = ACTIONS(5374), - [anon_sym_enum] = ACTIONS(5374), - [anon_sym_RBRACE] = ACTIONS(5376), - [anon_sym_interface] = ACTIONS(5374), - [anon_sym_delegate] = ACTIONS(5374), - [anon_sym_record] = ACTIONS(5374), - [anon_sym_public] = ACTIONS(5374), - [anon_sym_private] = ACTIONS(5374), - [anon_sym_readonly] = ACTIONS(5374), - [anon_sym_abstract] = ACTIONS(5374), - [anon_sym_async] = ACTIONS(5374), - [anon_sym_const] = ACTIONS(5374), - [anon_sym_file] = ACTIONS(5374), - [anon_sym_fixed] = ACTIONS(5374), - [anon_sym_internal] = ACTIONS(5374), - [anon_sym_new] = ACTIONS(5374), - [anon_sym_override] = ACTIONS(5374), - [anon_sym_partial] = ACTIONS(5374), - [anon_sym_protected] = ACTIONS(5374), - [anon_sym_required] = ACTIONS(5374), - [anon_sym_sealed] = ACTIONS(5374), - [anon_sym_virtual] = ACTIONS(5374), - [anon_sym_volatile] = ACTIONS(5374), - [anon_sym_where] = ACTIONS(5374), - [anon_sym_notnull] = ACTIONS(5374), - [anon_sym_unmanaged] = ACTIONS(5374), - [anon_sym_TILDE] = ACTIONS(5376), - [anon_sym_implicit] = ACTIONS(5374), - [anon_sym_explicit] = ACTIONS(5374), - [anon_sym_scoped] = ACTIONS(5374), - [anon_sym_var] = ACTIONS(5374), - [sym_predefined_type] = ACTIONS(5374), - [anon_sym_yield] = ACTIONS(5374), - [anon_sym_when] = ACTIONS(5374), - [anon_sym_from] = ACTIONS(5374), - [anon_sym_into] = ACTIONS(5374), - [anon_sym_join] = ACTIONS(5374), - [anon_sym_on] = ACTIONS(5374), - [anon_sym_equals] = ACTIONS(5374), - [anon_sym_let] = ACTIONS(5374), - [anon_sym_orderby] = ACTIONS(5374), - [anon_sym_ascending] = ACTIONS(5374), - [anon_sym_descending] = ACTIONS(5374), - [anon_sym_group] = ACTIONS(5374), - [anon_sym_by] = ACTIONS(5374), - [anon_sym_select] = ACTIONS(5374), - [sym_grit_metavariable] = ACTIONS(5376), - [aux_sym_preproc_if_token1] = ACTIONS(5376), - [aux_sym_preproc_if_token3] = ACTIONS(5376), - [aux_sym_preproc_else_token1] = ACTIONS(5376), - [aux_sym_preproc_elif_token1] = ACTIONS(5376), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5486), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5498), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487110,6 +486557,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3040] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3040), [sym_preproc_endregion] = STATE(3040), [sym_preproc_line] = STATE(3040), @@ -487119,70 +486581,51 @@ 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(5378), - [anon_sym_extern] = ACTIONS(5378), - [anon_sym_alias] = ACTIONS(5378), - [anon_sym_global] = ACTIONS(5378), - [anon_sym_using] = ACTIONS(5378), - [anon_sym_unsafe] = ACTIONS(5378), - [anon_sym_static] = ACTIONS(5378), - [anon_sym_LBRACK] = ACTIONS(5380), - [anon_sym_LPAREN] = ACTIONS(5380), - [anon_sym_event] = ACTIONS(5378), - [anon_sym_namespace] = ACTIONS(5378), - [anon_sym_class] = ACTIONS(5378), - [anon_sym_ref] = ACTIONS(5378), - [anon_sym_struct] = ACTIONS(5378), - [anon_sym_enum] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5380), - [anon_sym_interface] = ACTIONS(5378), - [anon_sym_delegate] = ACTIONS(5378), - [anon_sym_record] = ACTIONS(5378), - [anon_sym_public] = ACTIONS(5378), - [anon_sym_private] = ACTIONS(5378), - [anon_sym_readonly] = ACTIONS(5378), - [anon_sym_abstract] = ACTIONS(5378), - [anon_sym_async] = ACTIONS(5378), - [anon_sym_const] = ACTIONS(5378), - [anon_sym_file] = ACTIONS(5378), - [anon_sym_fixed] = ACTIONS(5378), - [anon_sym_internal] = ACTIONS(5378), - [anon_sym_new] = ACTIONS(5378), - [anon_sym_override] = ACTIONS(5378), - [anon_sym_partial] = ACTIONS(5378), - [anon_sym_protected] = ACTIONS(5378), - [anon_sym_required] = ACTIONS(5378), - [anon_sym_sealed] = ACTIONS(5378), - [anon_sym_virtual] = ACTIONS(5378), - [anon_sym_volatile] = ACTIONS(5378), - [anon_sym_where] = ACTIONS(5378), - [anon_sym_notnull] = ACTIONS(5378), - [anon_sym_unmanaged] = ACTIONS(5378), - [anon_sym_TILDE] = ACTIONS(5380), - [anon_sym_implicit] = ACTIONS(5378), - [anon_sym_explicit] = ACTIONS(5378), - [anon_sym_scoped] = ACTIONS(5378), - [anon_sym_var] = ACTIONS(5378), - [sym_predefined_type] = ACTIONS(5378), - [anon_sym_yield] = ACTIONS(5378), - [anon_sym_when] = ACTIONS(5378), - [anon_sym_from] = ACTIONS(5378), - [anon_sym_into] = ACTIONS(5378), - [anon_sym_join] = ACTIONS(5378), - [anon_sym_on] = ACTIONS(5378), - [anon_sym_equals] = ACTIONS(5378), - [anon_sym_let] = ACTIONS(5378), - [anon_sym_orderby] = ACTIONS(5378), - [anon_sym_ascending] = ACTIONS(5378), - [anon_sym_descending] = ACTIONS(5378), - [anon_sym_group] = ACTIONS(5378), - [anon_sym_by] = ACTIONS(5378), - [anon_sym_select] = ACTIONS(5378), - [sym_grit_metavariable] = ACTIONS(5380), - [aux_sym_preproc_if_token1] = ACTIONS(5380), - [aux_sym_preproc_if_token3] = ACTIONS(5380), - [aux_sym_preproc_else_token1] = ACTIONS(5380), - [aux_sym_preproc_elif_token1] = ACTIONS(5380), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5486), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5498), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487195,6 +486638,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3041] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3041), [sym_preproc_endregion] = STATE(3041), [sym_preproc_line] = STATE(3041), @@ -487204,69 +486662,51 @@ 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), - [sym__identifier_token] = ACTIONS(4391), - [anon_sym_alias] = ACTIONS(4391), - [anon_sym_global] = ACTIONS(4391), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_file] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_where] = ACTIONS(4391), - [anon_sym_QMARK] = ACTIONS(4391), - [anon_sym_notnull] = ACTIONS(4391), - [anon_sym_unmanaged] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PLUS_PLUS] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_CARET] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_AMP] = ACTIONS(4391), - [anon_sym_LT_LT] = ACTIONS(4393), - [anon_sym_GT_GT] = ACTIONS(4391), - [anon_sym_GT_GT_GT] = ACTIONS(4393), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_GT_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(4393), - [anon_sym_DOT] = ACTIONS(4391), - [anon_sym_scoped] = ACTIONS(4391), - [anon_sym_var] = ACTIONS(4391), - [anon_sym_yield] = ACTIONS(4391), - [anon_sym_switch] = ACTIONS(4391), - [anon_sym_when] = ACTIONS(4391), - [sym_discard] = ACTIONS(4391), - [anon_sym_DOT_DOT] = ACTIONS(4393), - [anon_sym_and] = ACTIONS(4391), - [anon_sym_or] = ACTIONS(4391), - [anon_sym_AMP_AMP] = ACTIONS(4393), - [anon_sym_PIPE_PIPE] = ACTIONS(4393), - [sym_op_coalescing] = ACTIONS(4393), - [anon_sym_from] = ACTIONS(4391), - [anon_sym_into] = ACTIONS(4391), - [anon_sym_join] = ACTIONS(4391), - [anon_sym_on] = ACTIONS(4391), - [anon_sym_equals] = ACTIONS(4391), - [anon_sym_let] = ACTIONS(4391), - [anon_sym_orderby] = ACTIONS(4391), - [anon_sym_ascending] = ACTIONS(4391), - [anon_sym_descending] = ACTIONS(4391), - [anon_sym_group] = ACTIONS(4391), - [anon_sym_by] = ACTIONS(4391), - [anon_sym_select] = ACTIONS(4391), - [anon_sym_as] = ACTIONS(4391), - [anon_sym_is] = ACTIONS(4391), - [anon_sym_DASH_GT] = ACTIONS(4393), - [anon_sym_with] = ACTIONS(4391), - [sym_grit_metavariable] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5498), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487277,9 +486717,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4393), }, [3042] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3042), [sym_preproc_endregion] = STATE(3042), [sym_preproc_line] = STATE(3042), @@ -487289,70 +486743,51 @@ 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), - [sym__identifier_token] = ACTIONS(5382), - [anon_sym_extern] = ACTIONS(5382), - [anon_sym_alias] = ACTIONS(5382), - [anon_sym_global] = ACTIONS(5382), - [anon_sym_using] = ACTIONS(5382), - [anon_sym_unsafe] = ACTIONS(5382), - [anon_sym_static] = ACTIONS(5382), - [anon_sym_LBRACK] = ACTIONS(5384), - [anon_sym_LPAREN] = ACTIONS(5384), - [anon_sym_event] = ACTIONS(5382), - [anon_sym_namespace] = ACTIONS(5382), - [anon_sym_class] = ACTIONS(5382), - [anon_sym_ref] = ACTIONS(5382), - [anon_sym_struct] = ACTIONS(5382), - [anon_sym_enum] = ACTIONS(5382), - [anon_sym_RBRACE] = ACTIONS(5384), - [anon_sym_interface] = ACTIONS(5382), - [anon_sym_delegate] = ACTIONS(5382), - [anon_sym_record] = ACTIONS(5382), - [anon_sym_public] = ACTIONS(5382), - [anon_sym_private] = ACTIONS(5382), - [anon_sym_readonly] = ACTIONS(5382), - [anon_sym_abstract] = ACTIONS(5382), - [anon_sym_async] = ACTIONS(5382), - [anon_sym_const] = ACTIONS(5382), - [anon_sym_file] = ACTIONS(5382), - [anon_sym_fixed] = ACTIONS(5382), - [anon_sym_internal] = ACTIONS(5382), - [anon_sym_new] = ACTIONS(5382), - [anon_sym_override] = ACTIONS(5382), - [anon_sym_partial] = ACTIONS(5382), - [anon_sym_protected] = ACTIONS(5382), - [anon_sym_required] = ACTIONS(5382), - [anon_sym_sealed] = ACTIONS(5382), - [anon_sym_virtual] = ACTIONS(5382), - [anon_sym_volatile] = ACTIONS(5382), - [anon_sym_where] = ACTIONS(5382), - [anon_sym_notnull] = ACTIONS(5382), - [anon_sym_unmanaged] = ACTIONS(5382), - [anon_sym_TILDE] = ACTIONS(5384), - [anon_sym_implicit] = ACTIONS(5382), - [anon_sym_explicit] = ACTIONS(5382), - [anon_sym_scoped] = ACTIONS(5382), - [anon_sym_var] = ACTIONS(5382), - [sym_predefined_type] = ACTIONS(5382), - [anon_sym_yield] = ACTIONS(5382), - [anon_sym_when] = ACTIONS(5382), - [anon_sym_from] = ACTIONS(5382), - [anon_sym_into] = ACTIONS(5382), - [anon_sym_join] = ACTIONS(5382), - [anon_sym_on] = ACTIONS(5382), - [anon_sym_equals] = ACTIONS(5382), - [anon_sym_let] = ACTIONS(5382), - [anon_sym_orderby] = ACTIONS(5382), - [anon_sym_ascending] = ACTIONS(5382), - [anon_sym_descending] = ACTIONS(5382), - [anon_sym_group] = ACTIONS(5382), - [anon_sym_by] = ACTIONS(5382), - [anon_sym_select] = ACTIONS(5382), - [sym_grit_metavariable] = ACTIONS(5384), - [aux_sym_preproc_if_token1] = ACTIONS(5384), - [aux_sym_preproc_if_token3] = ACTIONS(5384), - [aux_sym_preproc_else_token1] = ACTIONS(5384), - [aux_sym_preproc_elif_token1] = ACTIONS(5384), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5486), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5498), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487365,6 +486800,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3043] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3043), [sym_preproc_endregion] = STATE(3043), [sym_preproc_line] = STATE(3043), @@ -487374,70 +486824,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3043), [sym_preproc_define] = STATE(3043), [sym_preproc_undef] = STATE(3043), - [anon_sym_SEMI] = ACTIONS(4542), - [anon_sym_EQ] = ACTIONS(4544), - [anon_sym_LBRACK] = ACTIONS(4542), - [anon_sym_COLON] = ACTIONS(4542), - [anon_sym_COMMA] = ACTIONS(4542), - [anon_sym_RBRACK] = ACTIONS(4542), - [anon_sym_LPAREN] = ACTIONS(4542), - [anon_sym_RPAREN] = ACTIONS(4542), - [anon_sym_RBRACE] = ACTIONS(4542), - [anon_sym_LT] = ACTIONS(4544), - [anon_sym_GT] = ACTIONS(4544), - [anon_sym_in] = ACTIONS(4544), - [anon_sym_QMARK] = ACTIONS(4544), - [anon_sym_BANG] = ACTIONS(4544), - [anon_sym_PLUS_PLUS] = ACTIONS(4542), - [anon_sym_DASH_DASH] = ACTIONS(4542), - [anon_sym_PLUS] = ACTIONS(4544), - [anon_sym_DASH] = ACTIONS(4544), - [anon_sym_STAR] = ACTIONS(4544), - [anon_sym_SLASH] = ACTIONS(4544), - [anon_sym_PERCENT] = ACTIONS(4544), - [anon_sym_CARET] = ACTIONS(4544), - [anon_sym_PIPE] = ACTIONS(4544), - [anon_sym_AMP] = ACTIONS(4544), - [anon_sym_LT_LT] = ACTIONS(4544), - [anon_sym_GT_GT] = ACTIONS(4544), - [anon_sym_GT_GT_GT] = ACTIONS(4544), - [anon_sym_EQ_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_GT_EQ] = ACTIONS(4542), - [anon_sym_LT_EQ] = ACTIONS(4542), - [anon_sym_DOT] = ACTIONS(4544), - [anon_sym_EQ_GT] = ACTIONS(4542), - [anon_sym_switch] = ACTIONS(4542), - [anon_sym_when] = ACTIONS(4542), - [anon_sym_DOT_DOT] = ACTIONS(4542), - [anon_sym_and] = ACTIONS(4542), - [anon_sym_or] = ACTIONS(4542), - [anon_sym_PLUS_EQ] = ACTIONS(4542), - [anon_sym_DASH_EQ] = ACTIONS(4542), - [anon_sym_STAR_EQ] = ACTIONS(4542), - [anon_sym_SLASH_EQ] = ACTIONS(4542), - [anon_sym_PERCENT_EQ] = ACTIONS(4542), - [anon_sym_AMP_EQ] = ACTIONS(4542), - [anon_sym_CARET_EQ] = ACTIONS(4542), - [anon_sym_PIPE_EQ] = ACTIONS(4542), - [anon_sym_LT_LT_EQ] = ACTIONS(4542), - [anon_sym_GT_GT_EQ] = ACTIONS(4542), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4542), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4542), - [anon_sym_AMP_AMP] = ACTIONS(4542), - [anon_sym_PIPE_PIPE] = ACTIONS(4542), - [sym_op_coalescing] = ACTIONS(4544), - [anon_sym_into] = ACTIONS(4542), - [anon_sym_on] = ACTIONS(4542), - [anon_sym_equals] = ACTIONS(4542), - [anon_sym_by] = ACTIONS(4542), - [anon_sym_as] = ACTIONS(4542), - [anon_sym_is] = ACTIONS(4542), - [anon_sym_DASH_GT] = ACTIONS(4542), - [anon_sym_with] = ACTIONS(4542), - [aux_sym_preproc_if_token3] = ACTIONS(4542), - [aux_sym_preproc_else_token1] = ACTIONS(4542), - [aux_sym_preproc_elif_token1] = ACTIONS(4542), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5498), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487459,70 +486890,66 @@ 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), - [sym__identifier_token] = ACTIONS(5386), - [anon_sym_extern] = ACTIONS(5386), - [anon_sym_alias] = ACTIONS(5386), - [anon_sym_global] = ACTIONS(5386), - [anon_sym_using] = ACTIONS(5386), - [anon_sym_unsafe] = ACTIONS(5386), - [anon_sym_static] = ACTIONS(5386), - [anon_sym_LBRACK] = ACTIONS(5388), - [anon_sym_LPAREN] = ACTIONS(5388), - [anon_sym_event] = ACTIONS(5386), - [anon_sym_namespace] = ACTIONS(5386), - [anon_sym_class] = ACTIONS(5386), - [anon_sym_ref] = ACTIONS(5386), - [anon_sym_struct] = ACTIONS(5386), - [anon_sym_enum] = ACTIONS(5386), - [anon_sym_RBRACE] = ACTIONS(5388), - [anon_sym_interface] = ACTIONS(5386), - [anon_sym_delegate] = ACTIONS(5386), - [anon_sym_record] = ACTIONS(5386), - [anon_sym_public] = ACTIONS(5386), - [anon_sym_private] = ACTIONS(5386), - [anon_sym_readonly] = ACTIONS(5386), - [anon_sym_abstract] = ACTIONS(5386), - [anon_sym_async] = ACTIONS(5386), - [anon_sym_const] = ACTIONS(5386), - [anon_sym_file] = ACTIONS(5386), - [anon_sym_fixed] = ACTIONS(5386), - [anon_sym_internal] = ACTIONS(5386), - [anon_sym_new] = ACTIONS(5386), - [anon_sym_override] = ACTIONS(5386), - [anon_sym_partial] = ACTIONS(5386), - [anon_sym_protected] = ACTIONS(5386), - [anon_sym_required] = ACTIONS(5386), - [anon_sym_sealed] = ACTIONS(5386), - [anon_sym_virtual] = ACTIONS(5386), - [anon_sym_volatile] = ACTIONS(5386), - [anon_sym_where] = ACTIONS(5386), - [anon_sym_notnull] = ACTIONS(5386), - [anon_sym_unmanaged] = ACTIONS(5386), - [anon_sym_TILDE] = ACTIONS(5388), - [anon_sym_implicit] = ACTIONS(5386), - [anon_sym_explicit] = ACTIONS(5386), - [anon_sym_scoped] = ACTIONS(5386), - [anon_sym_var] = ACTIONS(5386), - [sym_predefined_type] = ACTIONS(5386), - [anon_sym_yield] = ACTIONS(5386), - [anon_sym_when] = ACTIONS(5386), - [anon_sym_from] = ACTIONS(5386), - [anon_sym_into] = ACTIONS(5386), - [anon_sym_join] = ACTIONS(5386), - [anon_sym_on] = ACTIONS(5386), - [anon_sym_equals] = ACTIONS(5386), - [anon_sym_let] = ACTIONS(5386), - [anon_sym_orderby] = ACTIONS(5386), - [anon_sym_ascending] = ACTIONS(5386), - [anon_sym_descending] = ACTIONS(5386), - [anon_sym_group] = ACTIONS(5386), - [anon_sym_by] = ACTIONS(5386), - [anon_sym_select] = ACTIONS(5386), - [sym_grit_metavariable] = ACTIONS(5388), - [aux_sym_preproc_if_token1] = ACTIONS(5388), - [aux_sym_preproc_if_token3] = ACTIONS(5388), - [aux_sym_preproc_else_token1] = ACTIONS(5388), - [aux_sym_preproc_elif_token1] = ACTIONS(5388), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_switch] = ACTIONS(4006), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(4006), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_from] = ACTIONS(4006), + [anon_sym_into] = ACTIONS(4006), + [anon_sym_join] = ACTIONS(4006), + [anon_sym_let] = ACTIONS(4006), + [anon_sym_orderby] = ACTIONS(4006), + [anon_sym_ascending] = ACTIONS(4006), + [anon_sym_descending] = ACTIONS(4006), + [anon_sym_group] = ACTIONS(4006), + [anon_sym_select] = ACTIONS(4006), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(4006), + [anon_sym_DASH_GT] = ACTIONS(4006), + [anon_sym_with] = ACTIONS(4006), + [sym_grit_metavariable] = ACTIONS(4006), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487544,70 +486971,66 @@ 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), - [sym__identifier_token] = ACTIONS(5390), - [anon_sym_extern] = ACTIONS(5390), - [anon_sym_alias] = ACTIONS(5390), - [anon_sym_global] = ACTIONS(5390), - [anon_sym_using] = ACTIONS(5390), - [anon_sym_unsafe] = ACTIONS(5390), - [anon_sym_static] = ACTIONS(5390), - [anon_sym_LBRACK] = ACTIONS(5392), - [anon_sym_LPAREN] = ACTIONS(5392), - [anon_sym_event] = ACTIONS(5390), - [anon_sym_namespace] = ACTIONS(5390), - [anon_sym_class] = ACTIONS(5390), - [anon_sym_ref] = ACTIONS(5390), - [anon_sym_struct] = ACTIONS(5390), - [anon_sym_enum] = ACTIONS(5390), - [anon_sym_RBRACE] = ACTIONS(5392), - [anon_sym_interface] = ACTIONS(5390), - [anon_sym_delegate] = ACTIONS(5390), - [anon_sym_record] = ACTIONS(5390), - [anon_sym_public] = ACTIONS(5390), - [anon_sym_private] = ACTIONS(5390), - [anon_sym_readonly] = ACTIONS(5390), - [anon_sym_abstract] = ACTIONS(5390), - [anon_sym_async] = ACTIONS(5390), - [anon_sym_const] = ACTIONS(5390), - [anon_sym_file] = ACTIONS(5390), - [anon_sym_fixed] = ACTIONS(5390), - [anon_sym_internal] = ACTIONS(5390), - [anon_sym_new] = ACTIONS(5390), - [anon_sym_override] = ACTIONS(5390), - [anon_sym_partial] = ACTIONS(5390), - [anon_sym_protected] = ACTIONS(5390), - [anon_sym_required] = ACTIONS(5390), - [anon_sym_sealed] = ACTIONS(5390), - [anon_sym_virtual] = ACTIONS(5390), - [anon_sym_volatile] = ACTIONS(5390), - [anon_sym_where] = ACTIONS(5390), - [anon_sym_notnull] = ACTIONS(5390), - [anon_sym_unmanaged] = ACTIONS(5390), - [anon_sym_TILDE] = ACTIONS(5392), - [anon_sym_implicit] = ACTIONS(5390), - [anon_sym_explicit] = ACTIONS(5390), - [anon_sym_scoped] = ACTIONS(5390), - [anon_sym_var] = ACTIONS(5390), - [sym_predefined_type] = ACTIONS(5390), - [anon_sym_yield] = ACTIONS(5390), - [anon_sym_when] = ACTIONS(5390), - [anon_sym_from] = ACTIONS(5390), - [anon_sym_into] = ACTIONS(5390), - [anon_sym_join] = ACTIONS(5390), - [anon_sym_on] = ACTIONS(5390), - [anon_sym_equals] = ACTIONS(5390), - [anon_sym_let] = ACTIONS(5390), - [anon_sym_orderby] = ACTIONS(5390), - [anon_sym_ascending] = ACTIONS(5390), - [anon_sym_descending] = ACTIONS(5390), - [anon_sym_group] = ACTIONS(5390), - [anon_sym_by] = ACTIONS(5390), - [anon_sym_select] = ACTIONS(5390), - [sym_grit_metavariable] = ACTIONS(5392), - [aux_sym_preproc_if_token1] = ACTIONS(5392), - [aux_sym_preproc_if_token3] = ACTIONS(5392), - [aux_sym_preproc_else_token1] = ACTIONS(5392), - [aux_sym_preproc_elif_token1] = ACTIONS(5392), + [anon_sym_EQ] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4538), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_where] = ACTIONS(4538), + [anon_sym_QMARK] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_switch] = ACTIONS(4538), + [anon_sym_DOT_DOT] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4538), + [anon_sym_and] = ACTIONS(4538), + [anon_sym_or] = ACTIONS(4536), + [anon_sym_PLUS_EQ] = ACTIONS(4538), + [anon_sym_DASH_EQ] = ACTIONS(4538), + [anon_sym_STAR_EQ] = ACTIONS(4538), + [anon_sym_SLASH_EQ] = ACTIONS(4538), + [anon_sym_PERCENT_EQ] = ACTIONS(4538), + [anon_sym_AMP_EQ] = ACTIONS(4538), + [anon_sym_CARET_EQ] = ACTIONS(4538), + [anon_sym_PIPE_EQ] = ACTIONS(4538), + [anon_sym_LT_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4538), + [anon_sym_BANG_EQ] = ACTIONS(4538), + [anon_sym_AMP_AMP] = ACTIONS(4538), + [anon_sym_PIPE_PIPE] = ACTIONS(4538), + [anon_sym_AMP] = ACTIONS(4536), + [sym_op_bitwise_or] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [sym_op_left_shift] = ACTIONS(4536), + [sym_op_right_shift] = ACTIONS(4536), + [sym_op_unsigned_right_shift] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [sym_op_divide] = ACTIONS(4536), + [sym_op_modulo] = ACTIONS(4536), + [sym_op_coalescing] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PLUS_PLUS] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4538), + [anon_sym_from] = ACTIONS(4538), + [anon_sym_into] = ACTIONS(4538), + [anon_sym_join] = ACTIONS(4538), + [anon_sym_let] = ACTIONS(4538), + [anon_sym_orderby] = ACTIONS(4538), + [anon_sym_ascending] = ACTIONS(4538), + [anon_sym_descending] = ACTIONS(4538), + [anon_sym_group] = ACTIONS(4538), + [anon_sym_select] = ACTIONS(4538), + [anon_sym_as] = ACTIONS(4536), + [anon_sym_is] = ACTIONS(4538), + [anon_sym_DASH_GT] = ACTIONS(4538), + [anon_sym_with] = ACTIONS(4538), + [sym_grit_metavariable] = ACTIONS(4538), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487629,215 +487052,22 @@ 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), - [sym__identifier_token] = ACTIONS(5394), - [anon_sym_extern] = ACTIONS(5394), - [anon_sym_alias] = ACTIONS(5394), - [anon_sym_global] = ACTIONS(5394), - [anon_sym_using] = ACTIONS(5394), - [anon_sym_unsafe] = ACTIONS(5394), - [anon_sym_static] = ACTIONS(5394), - [anon_sym_LBRACK] = ACTIONS(5396), - [anon_sym_LPAREN] = ACTIONS(5396), - [anon_sym_event] = ACTIONS(5394), - [anon_sym_namespace] = ACTIONS(5394), - [anon_sym_class] = ACTIONS(5394), - [anon_sym_ref] = ACTIONS(5394), - [anon_sym_struct] = ACTIONS(5394), - [anon_sym_enum] = ACTIONS(5394), - [anon_sym_RBRACE] = ACTIONS(5396), - [anon_sym_interface] = ACTIONS(5394), - [anon_sym_delegate] = ACTIONS(5394), - [anon_sym_record] = ACTIONS(5394), - [anon_sym_public] = ACTIONS(5394), - [anon_sym_private] = ACTIONS(5394), - [anon_sym_readonly] = ACTIONS(5394), - [anon_sym_abstract] = ACTIONS(5394), - [anon_sym_async] = ACTIONS(5394), - [anon_sym_const] = ACTIONS(5394), - [anon_sym_file] = ACTIONS(5394), - [anon_sym_fixed] = ACTIONS(5394), - [anon_sym_internal] = ACTIONS(5394), - [anon_sym_new] = ACTIONS(5394), - [anon_sym_override] = ACTIONS(5394), - [anon_sym_partial] = ACTIONS(5394), - [anon_sym_protected] = ACTIONS(5394), - [anon_sym_required] = ACTIONS(5394), - [anon_sym_sealed] = ACTIONS(5394), - [anon_sym_virtual] = ACTIONS(5394), - [anon_sym_volatile] = ACTIONS(5394), - [anon_sym_where] = ACTIONS(5394), - [anon_sym_notnull] = ACTIONS(5394), - [anon_sym_unmanaged] = ACTIONS(5394), - [anon_sym_TILDE] = ACTIONS(5396), - [anon_sym_implicit] = ACTIONS(5394), - [anon_sym_explicit] = ACTIONS(5394), - [anon_sym_scoped] = ACTIONS(5394), - [anon_sym_var] = ACTIONS(5394), - [sym_predefined_type] = ACTIONS(5394), - [anon_sym_yield] = ACTIONS(5394), - [anon_sym_when] = ACTIONS(5394), - [anon_sym_from] = ACTIONS(5394), - [anon_sym_into] = ACTIONS(5394), - [anon_sym_join] = ACTIONS(5394), - [anon_sym_on] = ACTIONS(5394), - [anon_sym_equals] = ACTIONS(5394), - [anon_sym_let] = ACTIONS(5394), - [anon_sym_orderby] = ACTIONS(5394), - [anon_sym_ascending] = ACTIONS(5394), - [anon_sym_descending] = ACTIONS(5394), - [anon_sym_group] = ACTIONS(5394), - [anon_sym_by] = ACTIONS(5394), - [anon_sym_select] = ACTIONS(5394), - [sym_grit_metavariable] = ACTIONS(5396), - [aux_sym_preproc_if_token1] = ACTIONS(5396), - [aux_sym_preproc_if_token3] = ACTIONS(5396), - [aux_sym_preproc_else_token1] = ACTIONS(5396), - [aux_sym_preproc_elif_token1] = ACTIONS(5396), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3047] = { - [sym_preproc_region] = STATE(3047), - [sym_preproc_endregion] = STATE(3047), - [sym_preproc_line] = STATE(3047), - [sym_preproc_pragma] = STATE(3047), - [sym_preproc_nullable] = STATE(3047), - [sym_preproc_error] = STATE(3047), - [sym_preproc_warning] = STATE(3047), - [sym_preproc_define] = STATE(3047), - [sym_preproc_undef] = STATE(3047), - [sym__identifier_token] = ACTIONS(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_COLON] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4017), - [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(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4017), - [anon_sym_SLASH] = ACTIONS(4008), - [anon_sym_PERCENT] = ACTIONS(4017), - [anon_sym_CARET] = ACTIONS(4017), - [anon_sym_PIPE] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(4017), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_GT_GT_GT] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [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(4017), - [anon_sym_and] = ACTIONS(4008), - [anon_sym_or] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [sym_op_coalescing] = ACTIONS(4017), - [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(4017), - [anon_sym_with] = ACTIONS(4008), - [sym_grit_metavariable] = ACTIONS(4017), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4017), - }, - [3048] = { - [sym_preproc_region] = STATE(3048), - [sym_preproc_endregion] = STATE(3048), - [sym_preproc_line] = STATE(3048), - [sym_preproc_pragma] = STATE(3048), - [sym_preproc_nullable] = STATE(3048), - [sym_preproc_error] = STATE(3048), - [sym_preproc_warning] = STATE(3048), - [sym_preproc_define] = STATE(3048), - [sym_preproc_undef] = STATE(3048), - [anon_sym_SEMI] = ACTIONS(4542), [anon_sym_EQ] = ACTIONS(4544), [anon_sym_LBRACK] = ACTIONS(4542), - [anon_sym_COLON] = ACTIONS(4542), [anon_sym_COMMA] = ACTIONS(4542), - [anon_sym_RBRACK] = ACTIONS(4542), [anon_sym_LPAREN] = ACTIONS(4542), - [anon_sym_RPAREN] = ACTIONS(4542), - [anon_sym_LBRACE] = ACTIONS(4542), - [anon_sym_RBRACE] = ACTIONS(4542), [anon_sym_LT] = ACTIONS(4544), [anon_sym_GT] = ACTIONS(4544), - [anon_sym_in] = ACTIONS(4542), + [anon_sym_where] = ACTIONS(4542), [anon_sym_QMARK] = ACTIONS(4544), - [anon_sym_BANG] = ACTIONS(4544), - [anon_sym_PLUS_PLUS] = ACTIONS(4542), - [anon_sym_DASH_DASH] = ACTIONS(4542), - [anon_sym_PLUS] = ACTIONS(4544), - [anon_sym_DASH] = ACTIONS(4544), - [anon_sym_STAR] = ACTIONS(4544), - [anon_sym_SLASH] = ACTIONS(4544), - [anon_sym_PERCENT] = ACTIONS(4544), - [anon_sym_CARET] = ACTIONS(4544), - [anon_sym_PIPE] = ACTIONS(4544), - [anon_sym_AMP] = ACTIONS(4544), - [anon_sym_LT_LT] = ACTIONS(4544), - [anon_sym_GT_GT] = ACTIONS(4544), - [anon_sym_GT_GT_GT] = ACTIONS(4544), - [anon_sym_EQ_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_GT_EQ] = ACTIONS(4542), - [anon_sym_LT_EQ] = ACTIONS(4542), [anon_sym_DOT] = ACTIONS(4544), - [anon_sym_EQ_GT] = ACTIONS(4542), + [anon_sym_STAR] = ACTIONS(4544), [anon_sym_switch] = ACTIONS(4542), - [anon_sym_when] = ACTIONS(4542), [anon_sym_DOT_DOT] = ACTIONS(4542), + [anon_sym_LT_EQ] = ACTIONS(4542), + [anon_sym_GT_EQ] = ACTIONS(4542), [anon_sym_and] = ACTIONS(4542), - [anon_sym_or] = ACTIONS(4542), + [anon_sym_or] = ACTIONS(4544), [anon_sym_PLUS_EQ] = ACTIONS(4542), [anon_sym_DASH_EQ] = ACTIONS(4542), [anon_sym_STAR_EQ] = ACTIONS(4542), @@ -487850,19 +487080,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4542), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4542), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4542), - [anon_sym_AMP_AMP] = ACTIONS(4542), + [anon_sym_EQ_EQ] = ACTIONS(4542), + [anon_sym_BANG_EQ] = ACTIONS(4542), + [anon_sym_AMP_AMP] = ACTIONS(4542), [anon_sym_PIPE_PIPE] = ACTIONS(4542), + [anon_sym_AMP] = ACTIONS(4544), + [sym_op_bitwise_or] = ACTIONS(4544), + [anon_sym_CARET] = ACTIONS(4544), + [sym_op_left_shift] = ACTIONS(4544), + [sym_op_right_shift] = ACTIONS(4544), + [sym_op_unsigned_right_shift] = ACTIONS(4544), + [anon_sym_PLUS] = ACTIONS(4544), + [anon_sym_DASH] = ACTIONS(4544), + [sym_op_divide] = ACTIONS(4544), + [sym_op_modulo] = ACTIONS(4544), [sym_op_coalescing] = ACTIONS(4544), - [anon_sym_on] = ACTIONS(4542), - [anon_sym_equals] = ACTIONS(4542), - [anon_sym_by] = ACTIONS(4542), - [anon_sym_as] = ACTIONS(4542), + [anon_sym_BANG] = ACTIONS(4544), + [anon_sym_PLUS_PLUS] = ACTIONS(4542), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_from] = ACTIONS(4542), + [anon_sym_into] = ACTIONS(4542), + [anon_sym_join] = ACTIONS(4542), + [anon_sym_let] = ACTIONS(4542), + [anon_sym_orderby] = ACTIONS(4542), + [anon_sym_ascending] = ACTIONS(4542), + [anon_sym_descending] = ACTIONS(4542), + [anon_sym_group] = ACTIONS(4542), + [anon_sym_select] = ACTIONS(4542), + [anon_sym_as] = ACTIONS(4544), [anon_sym_is] = ACTIONS(4542), [anon_sym_DASH_GT] = ACTIONS(4542), [anon_sym_with] = ACTIONS(4542), - [aux_sym_preproc_if_token3] = ACTIONS(4542), - [aux_sym_preproc_else_token1] = ACTIONS(4542), - [aux_sym_preproc_elif_token1] = ACTIONS(4542), + [sym_grit_metavariable] = ACTIONS(4542), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3047] = { + [sym_preproc_region] = STATE(3047), + [sym_preproc_endregion] = STATE(3047), + [sym_preproc_line] = STATE(3047), + [sym_preproc_pragma] = STATE(3047), + [sym_preproc_nullable] = STATE(3047), + [sym_preproc_error] = STATE(3047), + [sym_preproc_warning] = STATE(3047), + [sym_preproc_define] = STATE(3047), + [sym_preproc_undef] = STATE(3047), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_COLON] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_RBRACK] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_EQ_GT] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_catch] = ACTIONS(3193), + [anon_sym_finally] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_EQ] = ACTIONS(3193), + [anon_sym_and] = ACTIONS(3193), + [anon_sym_or] = ACTIONS(3191), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_PIPE_PIPE] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [sym_op_bitwise_or] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3193), + [sym_op_left_shift] = ACTIONS(3193), + [sym_op_right_shift] = ACTIONS(3191), + [sym_op_unsigned_right_shift] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [sym_op_divide] = ACTIONS(3191), + [sym_op_modulo] = ACTIONS(3193), + [sym_op_coalescing] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_from] = 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_group] = ACTIONS(3193), + [anon_sym_by] = ACTIONS(3193), + [anon_sym_select] = ACTIONS(3193), + [anon_sym_as] = ACTIONS(3193), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_DASH_GT] = ACTIONS(3193), + [anon_sym_with] = 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), + }, + [3048] = { + [sym_preproc_region] = STATE(3048), + [sym_preproc_endregion] = STATE(3048), + [sym_preproc_line] = STATE(3048), + [sym_preproc_pragma] = STATE(3048), + [sym_preproc_nullable] = STATE(3048), + [sym_preproc_error] = STATE(3048), + [sym_preproc_warning] = STATE(3048), + [sym_preproc_define] = STATE(3048), + [sym_preproc_undef] = STATE(3048), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4560), + [anon_sym_where] = ACTIONS(4558), + [anon_sym_QMARK] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_switch] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(4558), + [anon_sym_LT_EQ] = ACTIONS(4558), + [anon_sym_GT_EQ] = ACTIONS(4558), + [anon_sym_and] = ACTIONS(4558), + [anon_sym_or] = ACTIONS(4560), + [anon_sym_PLUS_EQ] = ACTIONS(4558), + [anon_sym_DASH_EQ] = ACTIONS(4558), + [anon_sym_STAR_EQ] = ACTIONS(4558), + [anon_sym_SLASH_EQ] = ACTIONS(4558), + [anon_sym_PERCENT_EQ] = ACTIONS(4558), + [anon_sym_AMP_EQ] = ACTIONS(4558), + [anon_sym_CARET_EQ] = ACTIONS(4558), + [anon_sym_PIPE_EQ] = ACTIONS(4558), + [anon_sym_LT_LT_EQ] = ACTIONS(4558), + [anon_sym_GT_GT_EQ] = ACTIONS(4558), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4558), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4558), + [anon_sym_EQ_EQ] = ACTIONS(4558), + [anon_sym_BANG_EQ] = ACTIONS(4558), + [anon_sym_AMP_AMP] = ACTIONS(4558), + [anon_sym_PIPE_PIPE] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [sym_op_bitwise_or] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [sym_op_left_shift] = ACTIONS(4560), + [sym_op_right_shift] = ACTIONS(4560), + [sym_op_unsigned_right_shift] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4560), + [anon_sym_DASH] = ACTIONS(4560), + [sym_op_divide] = ACTIONS(4560), + [sym_op_modulo] = ACTIONS(4560), + [sym_op_coalescing] = ACTIONS(4560), + [anon_sym_BANG] = ACTIONS(4560), + [anon_sym_PLUS_PLUS] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4558), + [anon_sym_from] = ACTIONS(4558), + [anon_sym_into] = ACTIONS(4558), + [anon_sym_join] = ACTIONS(4558), + [anon_sym_let] = ACTIONS(4558), + [anon_sym_orderby] = ACTIONS(4558), + [anon_sym_ascending] = ACTIONS(4558), + [anon_sym_descending] = ACTIONS(4558), + [anon_sym_group] = ACTIONS(4558), + [anon_sym_select] = ACTIONS(4558), + [anon_sym_as] = ACTIONS(4560), + [anon_sym_is] = ACTIONS(4558), + [anon_sym_DASH_GT] = ACTIONS(4558), + [anon_sym_with] = ACTIONS(4558), + [sym_grit_metavariable] = ACTIONS(4558), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487884,70 +487295,66 @@ 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(5398), - [anon_sym_extern] = ACTIONS(5398), - [anon_sym_alias] = ACTIONS(5398), - [anon_sym_global] = ACTIONS(5398), - [anon_sym_using] = ACTIONS(5398), - [anon_sym_unsafe] = ACTIONS(5398), - [anon_sym_static] = ACTIONS(5398), - [anon_sym_LBRACK] = ACTIONS(5400), - [anon_sym_LPAREN] = ACTIONS(5400), - [anon_sym_event] = ACTIONS(5398), - [anon_sym_namespace] = ACTIONS(5398), - [anon_sym_class] = ACTIONS(5398), - [anon_sym_ref] = ACTIONS(5398), - [anon_sym_struct] = ACTIONS(5398), - [anon_sym_enum] = ACTIONS(5398), - [anon_sym_RBRACE] = ACTIONS(5400), - [anon_sym_interface] = ACTIONS(5398), - [anon_sym_delegate] = ACTIONS(5398), - [anon_sym_record] = ACTIONS(5398), - [anon_sym_public] = ACTIONS(5398), - [anon_sym_private] = ACTIONS(5398), - [anon_sym_readonly] = ACTIONS(5398), - [anon_sym_abstract] = ACTIONS(5398), - [anon_sym_async] = ACTIONS(5398), - [anon_sym_const] = ACTIONS(5398), - [anon_sym_file] = ACTIONS(5398), - [anon_sym_fixed] = ACTIONS(5398), - [anon_sym_internal] = ACTIONS(5398), - [anon_sym_new] = ACTIONS(5398), - [anon_sym_override] = ACTIONS(5398), - [anon_sym_partial] = ACTIONS(5398), - [anon_sym_protected] = ACTIONS(5398), - [anon_sym_required] = ACTIONS(5398), - [anon_sym_sealed] = ACTIONS(5398), - [anon_sym_virtual] = ACTIONS(5398), - [anon_sym_volatile] = ACTIONS(5398), - [anon_sym_where] = ACTIONS(5398), - [anon_sym_notnull] = ACTIONS(5398), - [anon_sym_unmanaged] = ACTIONS(5398), - [anon_sym_TILDE] = ACTIONS(5400), - [anon_sym_implicit] = ACTIONS(5398), - [anon_sym_explicit] = ACTIONS(5398), - [anon_sym_scoped] = ACTIONS(5398), - [anon_sym_var] = ACTIONS(5398), - [sym_predefined_type] = ACTIONS(5398), - [anon_sym_yield] = ACTIONS(5398), - [anon_sym_when] = ACTIONS(5398), - [anon_sym_from] = ACTIONS(5398), - [anon_sym_into] = ACTIONS(5398), - [anon_sym_join] = ACTIONS(5398), - [anon_sym_on] = ACTIONS(5398), - [anon_sym_equals] = ACTIONS(5398), - [anon_sym_let] = ACTIONS(5398), - [anon_sym_orderby] = ACTIONS(5398), - [anon_sym_ascending] = ACTIONS(5398), - [anon_sym_descending] = ACTIONS(5398), - [anon_sym_group] = ACTIONS(5398), - [anon_sym_by] = ACTIONS(5398), - [anon_sym_select] = ACTIONS(5398), - [sym_grit_metavariable] = ACTIONS(5400), - [aux_sym_preproc_if_token1] = ACTIONS(5400), - [aux_sym_preproc_if_token3] = ACTIONS(5400), - [aux_sym_preproc_else_token1] = ACTIONS(5400), - [aux_sym_preproc_elif_token1] = ACTIONS(5400), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4020), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(4020), + [anon_sym_QMARK] = ACTIONS(4013), + [anon_sym_DOT] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4013), + [anon_sym_switch] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4020), + [anon_sym_or] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4020), + [anon_sym_into] = ACTIONS(4020), + [anon_sym_join] = ACTIONS(4020), + [anon_sym_let] = ACTIONS(4020), + [anon_sym_orderby] = ACTIONS(4020), + [anon_sym_ascending] = ACTIONS(4020), + [anon_sym_descending] = ACTIONS(4020), + [anon_sym_group] = ACTIONS(4020), + [anon_sym_select] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4013), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_DASH_GT] = ACTIONS(4020), + [anon_sym_with] = ACTIONS(4020), + [sym_grit_metavariable] = ACTIONS(4020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487960,6 +487367,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3050] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3050), [sym_preproc_endregion] = STATE(3050), [sym_preproc_line] = STATE(3050), @@ -487969,82 +487391,65 @@ 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(4444), - [anon_sym_alias] = ACTIONS(4444), - [anon_sym_global] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4446), - [anon_sym_COLON] = ACTIONS(4446), - [anon_sym_COMMA] = ACTIONS(4446), - [anon_sym_LPAREN] = ACTIONS(4446), - [anon_sym_LBRACE] = ACTIONS(4446), - [anon_sym_file] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4444), - [anon_sym_GT] = ACTIONS(4444), - [anon_sym_where] = ACTIONS(4444), - [anon_sym_QMARK] = ACTIONS(4444), - [anon_sym_notnull] = ACTIONS(4444), - [anon_sym_unmanaged] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4446), - [anon_sym_DASH_DASH] = ACTIONS(4446), - [anon_sym_PLUS] = ACTIONS(4444), - [anon_sym_DASH] = ACTIONS(4444), - [anon_sym_STAR] = ACTIONS(4446), - [anon_sym_SLASH] = ACTIONS(4444), - [anon_sym_PERCENT] = ACTIONS(4446), - [anon_sym_CARET] = ACTIONS(4446), - [anon_sym_PIPE] = ACTIONS(4444), - [anon_sym_AMP] = ACTIONS(4444), - [anon_sym_LT_LT] = ACTIONS(4446), - [anon_sym_GT_GT] = ACTIONS(4444), - [anon_sym_GT_GT_GT] = ACTIONS(4446), - [anon_sym_EQ_EQ] = ACTIONS(4446), - [anon_sym_BANG_EQ] = ACTIONS(4446), - [anon_sym_GT_EQ] = ACTIONS(4446), - [anon_sym_LT_EQ] = ACTIONS(4446), - [anon_sym_DOT] = ACTIONS(4444), - [anon_sym_scoped] = ACTIONS(4444), - [anon_sym_var] = ACTIONS(4444), - [anon_sym_yield] = ACTIONS(4444), - [anon_sym_switch] = ACTIONS(4444), - [anon_sym_when] = ACTIONS(4444), - [sym_discard] = ACTIONS(4444), - [anon_sym_DOT_DOT] = ACTIONS(4446), - [anon_sym_and] = ACTIONS(4444), - [anon_sym_or] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4446), - [anon_sym_PIPE_PIPE] = ACTIONS(4446), - [sym_op_coalescing] = ACTIONS(4446), - [anon_sym_from] = ACTIONS(4444), - [anon_sym_into] = ACTIONS(4444), - [anon_sym_join] = ACTIONS(4444), - [anon_sym_on] = ACTIONS(4444), - [anon_sym_equals] = ACTIONS(4444), - [anon_sym_let] = ACTIONS(4444), - [anon_sym_orderby] = ACTIONS(4444), - [anon_sym_ascending] = ACTIONS(4444), - [anon_sym_descending] = ACTIONS(4444), - [anon_sym_group] = ACTIONS(4444), - [anon_sym_by] = ACTIONS(4444), - [anon_sym_select] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4444), - [anon_sym_DASH_GT] = ACTIONS(4446), - [anon_sym_with] = ACTIONS(4444), - [sym_grit_metavariable] = ACTIONS(4446), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5304), + [anon_sym_QMARK] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5486), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5498), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5304), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3051] = { + [sym_argument_list] = STATE(3068), + [sym_initializer_expression] = STATE(3316), [sym_preproc_region] = STATE(3051), [sym_preproc_endregion] = STATE(3051), [sym_preproc_line] = STATE(3051), @@ -488054,69 +487459,64 @@ 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), - [sym__identifier_token] = ACTIONS(4464), - [anon_sym_alias] = ACTIONS(4464), - [anon_sym_global] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4466), - [anon_sym_COLON] = ACTIONS(4466), - [anon_sym_COMMA] = ACTIONS(4466), - [anon_sym_LPAREN] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4466), - [anon_sym_file] = ACTIONS(4464), - [anon_sym_LT] = ACTIONS(4464), - [anon_sym_GT] = ACTIONS(4464), - [anon_sym_where] = ACTIONS(4464), - [anon_sym_QMARK] = ACTIONS(4464), - [anon_sym_notnull] = ACTIONS(4464), - [anon_sym_unmanaged] = ACTIONS(4464), - [anon_sym_BANG] = ACTIONS(4464), - [anon_sym_PLUS_PLUS] = ACTIONS(4466), - [anon_sym_DASH_DASH] = ACTIONS(4466), - [anon_sym_PLUS] = ACTIONS(4464), - [anon_sym_DASH] = ACTIONS(4464), - [anon_sym_STAR] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4464), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_PIPE] = ACTIONS(4464), - [anon_sym_AMP] = ACTIONS(4464), - [anon_sym_LT_LT] = ACTIONS(4466), - [anon_sym_GT_GT] = ACTIONS(4464), - [anon_sym_GT_GT_GT] = ACTIONS(4466), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_GT_EQ] = ACTIONS(4466), - [anon_sym_LT_EQ] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4464), - [anon_sym_scoped] = ACTIONS(4464), - [anon_sym_var] = ACTIONS(4464), - [anon_sym_yield] = ACTIONS(4464), - [anon_sym_switch] = ACTIONS(4464), - [anon_sym_when] = ACTIONS(4464), - [sym_discard] = ACTIONS(4464), - [anon_sym_DOT_DOT] = ACTIONS(4466), - [anon_sym_and] = ACTIONS(4464), - [anon_sym_or] = ACTIONS(4464), - [anon_sym_AMP_AMP] = ACTIONS(4466), - [anon_sym_PIPE_PIPE] = ACTIONS(4466), - [sym_op_coalescing] = ACTIONS(4466), - [anon_sym_from] = ACTIONS(4464), - [anon_sym_into] = ACTIONS(4464), - [anon_sym_join] = ACTIONS(4464), - [anon_sym_on] = ACTIONS(4464), - [anon_sym_equals] = ACTIONS(4464), - [anon_sym_let] = ACTIONS(4464), - [anon_sym_orderby] = ACTIONS(4464), - [anon_sym_ascending] = ACTIONS(4464), - [anon_sym_descending] = ACTIONS(4464), - [anon_sym_group] = ACTIONS(4464), - [anon_sym_by] = ACTIONS(4464), - [anon_sym_select] = ACTIONS(4464), - [anon_sym_as] = ACTIONS(4464), - [anon_sym_is] = ACTIONS(4464), - [anon_sym_DASH_GT] = ACTIONS(4466), - [anon_sym_with] = ACTIONS(4464), - [sym_grit_metavariable] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(5500), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_COLON] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(5500), + [anon_sym_RBRACK] = ACTIONS(5500), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5500), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(5500), + [anon_sym_LT] = ACTIONS(5504), + [anon_sym_GT] = ACTIONS(5504), + [anon_sym_in] = ACTIONS(5504), + [anon_sym_where] = ACTIONS(5500), + [anon_sym_QMARK] = ACTIONS(5504), + [anon_sym_DOT] = ACTIONS(5504), + [anon_sym_EQ_GT] = ACTIONS(5500), + [anon_sym_STAR] = ACTIONS(5500), + [anon_sym_switch] = ACTIONS(5500), + [anon_sym_DOT_DOT] = ACTIONS(5500), + [anon_sym_LT_EQ] = ACTIONS(5500), + [anon_sym_GT_EQ] = ACTIONS(5500), + [anon_sym_and] = ACTIONS(5500), + [anon_sym_or] = ACTIONS(5504), + [anon_sym_EQ_EQ] = ACTIONS(5500), + [anon_sym_BANG_EQ] = ACTIONS(5500), + [anon_sym_AMP_AMP] = ACTIONS(5500), + [anon_sym_PIPE_PIPE] = ACTIONS(5500), + [anon_sym_AMP] = ACTIONS(5504), + [sym_op_bitwise_or] = ACTIONS(5504), + [anon_sym_CARET] = ACTIONS(5500), + [sym_op_left_shift] = ACTIONS(5500), + [sym_op_right_shift] = ACTIONS(5504), + [sym_op_unsigned_right_shift] = ACTIONS(5500), + [anon_sym_PLUS] = ACTIONS(5504), + [anon_sym_DASH] = ACTIONS(5504), + [sym_op_divide] = ACTIONS(5504), + [sym_op_modulo] = ACTIONS(5500), + [sym_op_coalescing] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5504), + [anon_sym_PLUS_PLUS] = ACTIONS(5500), + [anon_sym_DASH_DASH] = ACTIONS(5500), + [anon_sym_from] = ACTIONS(5500), + [anon_sym_into] = ACTIONS(5500), + [anon_sym_join] = ACTIONS(5500), + [anon_sym_on] = ACTIONS(5500), + [anon_sym_equals] = ACTIONS(5500), + [anon_sym_let] = ACTIONS(5500), + [anon_sym_orderby] = ACTIONS(5500), + [anon_sym_group] = ACTIONS(5500), + [anon_sym_by] = ACTIONS(5500), + [anon_sym_select] = ACTIONS(5500), + [anon_sym_as] = ACTIONS(5500), + [anon_sym_is] = ACTIONS(5500), + [anon_sym_DASH_GT] = ACTIONS(5500), + [anon_sym_with] = ACTIONS(5500), + [aux_sym_preproc_if_token3] = ACTIONS(5500), + [aux_sym_preproc_else_token1] = ACTIONS(5500), + [aux_sym_preproc_elif_token1] = ACTIONS(5500), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488127,9 +487527,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4466), }, [3052] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3052), [sym_preproc_endregion] = STATE(3052), [sym_preproc_line] = STATE(3052), @@ -488139,69 +487553,51 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4980), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5402), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488212,9 +487608,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4331), }, [3053] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3053), [sym_preproc_endregion] = STATE(3053), [sym_preproc_line] = STATE(3053), @@ -488224,70 +487634,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3053), [sym_preproc_define] = STATE(3053), [sym_preproc_undef] = STATE(3053), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_EQ] = ACTIONS(4012), - [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_RBRACE] = ACTIONS(4010), - [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(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4012), - [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_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [anon_sym_into] = ACTIONS(4010), - [anon_sym_on] = ACTIONS(4010), - [anon_sym_equals] = ACTIONS(4010), - [anon_sym_by] = ACTIONS(4010), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4010), - [anon_sym_with] = ACTIONS(4010), - [aux_sym_preproc_if_token3] = ACTIONS(4010), - [aux_sym_preproc_else_token1] = ACTIONS(4010), - [aux_sym_preproc_elif_token1] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488300,6 +487691,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3054] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3054), [sym_preproc_endregion] = STATE(3054), [sym_preproc_line] = STATE(3054), @@ -488309,70 +487715,51 @@ 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), - [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_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_readonly] = 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_protected] = 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), - [sym_grit_metavariable] = 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), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488385,6 +487772,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3055] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3055), [sym_preproc_endregion] = STATE(3055), [sym_preproc_line] = STATE(3055), @@ -488394,69 +487796,51 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4980), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488467,7 +487851,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(4331), }, [3056] = { [sym_preproc_region] = STATE(3056), @@ -488479,70 +487862,66 @@ 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), - [sym__identifier_token] = ACTIONS(5404), - [anon_sym_extern] = ACTIONS(5404), - [anon_sym_alias] = ACTIONS(5404), - [anon_sym_global] = ACTIONS(5404), - [anon_sym_using] = ACTIONS(5404), - [anon_sym_unsafe] = ACTIONS(5404), - [anon_sym_static] = ACTIONS(5404), - [anon_sym_LBRACK] = ACTIONS(5406), - [anon_sym_LPAREN] = ACTIONS(5406), - [anon_sym_event] = ACTIONS(5404), - [anon_sym_namespace] = ACTIONS(5404), - [anon_sym_class] = ACTIONS(5404), - [anon_sym_ref] = ACTIONS(5404), - [anon_sym_struct] = ACTIONS(5404), - [anon_sym_enum] = ACTIONS(5404), - [anon_sym_RBRACE] = ACTIONS(5406), - [anon_sym_interface] = ACTIONS(5404), - [anon_sym_delegate] = ACTIONS(5404), - [anon_sym_record] = ACTIONS(5404), - [anon_sym_public] = ACTIONS(5404), - [anon_sym_private] = ACTIONS(5404), - [anon_sym_readonly] = ACTIONS(5404), - [anon_sym_abstract] = ACTIONS(5404), - [anon_sym_async] = ACTIONS(5404), - [anon_sym_const] = ACTIONS(5404), - [anon_sym_file] = ACTIONS(5404), - [anon_sym_fixed] = ACTIONS(5404), - [anon_sym_internal] = ACTIONS(5404), - [anon_sym_new] = ACTIONS(5404), - [anon_sym_override] = ACTIONS(5404), - [anon_sym_partial] = ACTIONS(5404), - [anon_sym_protected] = ACTIONS(5404), - [anon_sym_required] = ACTIONS(5404), - [anon_sym_sealed] = ACTIONS(5404), - [anon_sym_virtual] = ACTIONS(5404), - [anon_sym_volatile] = ACTIONS(5404), - [anon_sym_where] = ACTIONS(5404), - [anon_sym_notnull] = ACTIONS(5404), - [anon_sym_unmanaged] = ACTIONS(5404), - [anon_sym_TILDE] = ACTIONS(5406), - [anon_sym_implicit] = ACTIONS(5404), - [anon_sym_explicit] = ACTIONS(5404), - [anon_sym_scoped] = ACTIONS(5404), - [anon_sym_var] = ACTIONS(5404), - [sym_predefined_type] = ACTIONS(5404), - [anon_sym_yield] = ACTIONS(5404), - [anon_sym_when] = ACTIONS(5404), - [anon_sym_from] = ACTIONS(5404), - [anon_sym_into] = ACTIONS(5404), - [anon_sym_join] = ACTIONS(5404), - [anon_sym_on] = ACTIONS(5404), - [anon_sym_equals] = ACTIONS(5404), - [anon_sym_let] = ACTIONS(5404), - [anon_sym_orderby] = ACTIONS(5404), - [anon_sym_ascending] = ACTIONS(5404), - [anon_sym_descending] = ACTIONS(5404), - [anon_sym_group] = ACTIONS(5404), - [anon_sym_by] = ACTIONS(5404), - [anon_sym_select] = ACTIONS(5404), - [sym_grit_metavariable] = ACTIONS(5406), - [aux_sym_preproc_if_token1] = ACTIONS(5406), - [aux_sym_preproc_if_token3] = ACTIONS(5406), - [aux_sym_preproc_else_token1] = ACTIONS(5406), - [aux_sym_preproc_elif_token1] = ACTIONS(5406), + [anon_sym_EQ] = ACTIONS(4526), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_where] = ACTIONS(4524), + [anon_sym_QMARK] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_switch] = ACTIONS(4524), + [anon_sym_DOT_DOT] = ACTIONS(4524), + [anon_sym_LT_EQ] = ACTIONS(4524), + [anon_sym_GT_EQ] = ACTIONS(4524), + [anon_sym_and] = ACTIONS(4524), + [anon_sym_or] = ACTIONS(4526), + [anon_sym_PLUS_EQ] = ACTIONS(4524), + [anon_sym_DASH_EQ] = ACTIONS(4524), + [anon_sym_STAR_EQ] = ACTIONS(4524), + [anon_sym_SLASH_EQ] = ACTIONS(4524), + [anon_sym_PERCENT_EQ] = ACTIONS(4524), + [anon_sym_AMP_EQ] = ACTIONS(4524), + [anon_sym_CARET_EQ] = ACTIONS(4524), + [anon_sym_PIPE_EQ] = ACTIONS(4524), + [anon_sym_LT_LT_EQ] = ACTIONS(4524), + [anon_sym_GT_GT_EQ] = ACTIONS(4524), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4524), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4524), + [anon_sym_EQ_EQ] = ACTIONS(4524), + [anon_sym_BANG_EQ] = ACTIONS(4524), + [anon_sym_AMP_AMP] = ACTIONS(4524), + [anon_sym_PIPE_PIPE] = ACTIONS(4524), + [anon_sym_AMP] = ACTIONS(4526), + [sym_op_bitwise_or] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [sym_op_left_shift] = ACTIONS(4526), + [sym_op_right_shift] = ACTIONS(4526), + [sym_op_unsigned_right_shift] = ACTIONS(4526), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [sym_op_divide] = ACTIONS(4526), + [sym_op_modulo] = ACTIONS(4526), + [sym_op_coalescing] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PLUS_PLUS] = ACTIONS(4524), + [anon_sym_DASH_DASH] = ACTIONS(4524), + [anon_sym_from] = ACTIONS(4524), + [anon_sym_into] = ACTIONS(4524), + [anon_sym_join] = ACTIONS(4524), + [anon_sym_let] = ACTIONS(4524), + [anon_sym_orderby] = ACTIONS(4524), + [anon_sym_ascending] = ACTIONS(4524), + [anon_sym_descending] = ACTIONS(4524), + [anon_sym_group] = ACTIONS(4524), + [anon_sym_select] = ACTIONS(4524), + [anon_sym_as] = ACTIONS(4526), + [anon_sym_is] = ACTIONS(4524), + [anon_sym_DASH_GT] = ACTIONS(4524), + [anon_sym_with] = ACTIONS(4524), + [sym_grit_metavariable] = ACTIONS(4524), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488555,6 +487934,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3057] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3057), [sym_preproc_endregion] = STATE(3057), [sym_preproc_line] = STATE(3057), @@ -488564,70 +487958,51 @@ 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), - [sym__identifier_token] = ACTIONS(5408), - [anon_sym_extern] = ACTIONS(5408), - [anon_sym_alias] = ACTIONS(5408), - [anon_sym_global] = ACTIONS(5408), - [anon_sym_using] = ACTIONS(5408), - [anon_sym_unsafe] = ACTIONS(5408), - [anon_sym_static] = ACTIONS(5408), - [anon_sym_LBRACK] = ACTIONS(5410), - [anon_sym_LPAREN] = ACTIONS(5410), - [anon_sym_event] = ACTIONS(5408), - [anon_sym_namespace] = ACTIONS(5408), - [anon_sym_class] = ACTIONS(5408), - [anon_sym_ref] = ACTIONS(5408), - [anon_sym_struct] = ACTIONS(5408), - [anon_sym_enum] = ACTIONS(5408), - [anon_sym_RBRACE] = ACTIONS(5410), - [anon_sym_interface] = ACTIONS(5408), - [anon_sym_delegate] = ACTIONS(5408), - [anon_sym_record] = ACTIONS(5408), - [anon_sym_public] = ACTIONS(5408), - [anon_sym_private] = ACTIONS(5408), - [anon_sym_readonly] = ACTIONS(5408), - [anon_sym_abstract] = ACTIONS(5408), - [anon_sym_async] = ACTIONS(5408), - [anon_sym_const] = ACTIONS(5408), - [anon_sym_file] = ACTIONS(5408), - [anon_sym_fixed] = ACTIONS(5408), - [anon_sym_internal] = ACTIONS(5408), - [anon_sym_new] = ACTIONS(5408), - [anon_sym_override] = ACTIONS(5408), - [anon_sym_partial] = ACTIONS(5408), - [anon_sym_protected] = ACTIONS(5408), - [anon_sym_required] = ACTIONS(5408), - [anon_sym_sealed] = ACTIONS(5408), - [anon_sym_virtual] = ACTIONS(5408), - [anon_sym_volatile] = ACTIONS(5408), - [anon_sym_where] = ACTIONS(5408), - [anon_sym_notnull] = ACTIONS(5408), - [anon_sym_unmanaged] = ACTIONS(5408), - [anon_sym_TILDE] = ACTIONS(5410), - [anon_sym_implicit] = ACTIONS(5408), - [anon_sym_explicit] = ACTIONS(5408), - [anon_sym_scoped] = ACTIONS(5408), - [anon_sym_var] = ACTIONS(5408), - [sym_predefined_type] = ACTIONS(5408), - [anon_sym_yield] = ACTIONS(5408), - [anon_sym_when] = ACTIONS(5408), - [anon_sym_from] = ACTIONS(5408), - [anon_sym_into] = ACTIONS(5408), - [anon_sym_join] = ACTIONS(5408), - [anon_sym_on] = ACTIONS(5408), - [anon_sym_equals] = ACTIONS(5408), - [anon_sym_let] = ACTIONS(5408), - [anon_sym_orderby] = ACTIONS(5408), - [anon_sym_ascending] = ACTIONS(5408), - [anon_sym_descending] = ACTIONS(5408), - [anon_sym_group] = ACTIONS(5408), - [anon_sym_by] = ACTIONS(5408), - [anon_sym_select] = ACTIONS(5408), - [sym_grit_metavariable] = ACTIONS(5410), - [aux_sym_preproc_if_token1] = ACTIONS(5410), - [aux_sym_preproc_if_token3] = ACTIONS(5410), - [aux_sym_preproc_else_token1] = ACTIONS(5410), - [aux_sym_preproc_elif_token1] = ACTIONS(5410), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5296), + [anon_sym_QMARK] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5486), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5498), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5296), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488640,6 +488015,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3058] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3058), [sym_preproc_endregion] = STATE(3058), [sym_preproc_line] = STATE(3058), @@ -488649,70 +488039,51 @@ 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), - [sym__identifier_token] = ACTIONS(5412), - [anon_sym_extern] = ACTIONS(5412), - [anon_sym_alias] = ACTIONS(5412), - [anon_sym_global] = ACTIONS(5412), - [anon_sym_using] = ACTIONS(5412), - [anon_sym_unsafe] = ACTIONS(5412), - [anon_sym_static] = ACTIONS(5412), - [anon_sym_LBRACK] = ACTIONS(5414), - [anon_sym_LPAREN] = ACTIONS(5414), - [anon_sym_event] = ACTIONS(5412), - [anon_sym_namespace] = ACTIONS(5412), - [anon_sym_class] = ACTIONS(5412), - [anon_sym_ref] = ACTIONS(5412), - [anon_sym_struct] = ACTIONS(5412), - [anon_sym_enum] = ACTIONS(5412), - [anon_sym_RBRACE] = ACTIONS(5414), - [anon_sym_interface] = ACTIONS(5412), - [anon_sym_delegate] = ACTIONS(5412), - [anon_sym_record] = ACTIONS(5412), - [anon_sym_public] = ACTIONS(5412), - [anon_sym_private] = ACTIONS(5412), - [anon_sym_readonly] = ACTIONS(5412), - [anon_sym_abstract] = ACTIONS(5412), - [anon_sym_async] = ACTIONS(5412), - [anon_sym_const] = ACTIONS(5412), - [anon_sym_file] = ACTIONS(5412), - [anon_sym_fixed] = ACTIONS(5412), - [anon_sym_internal] = ACTIONS(5412), - [anon_sym_new] = ACTIONS(5412), - [anon_sym_override] = ACTIONS(5412), - [anon_sym_partial] = ACTIONS(5412), - [anon_sym_protected] = ACTIONS(5412), - [anon_sym_required] = ACTIONS(5412), - [anon_sym_sealed] = ACTIONS(5412), - [anon_sym_virtual] = ACTIONS(5412), - [anon_sym_volatile] = ACTIONS(5412), - [anon_sym_where] = ACTIONS(5412), - [anon_sym_notnull] = ACTIONS(5412), - [anon_sym_unmanaged] = ACTIONS(5412), - [anon_sym_TILDE] = ACTIONS(5414), - [anon_sym_implicit] = ACTIONS(5412), - [anon_sym_explicit] = ACTIONS(5412), - [anon_sym_scoped] = ACTIONS(5412), - [anon_sym_var] = ACTIONS(5412), - [sym_predefined_type] = ACTIONS(5412), - [anon_sym_yield] = ACTIONS(5412), - [anon_sym_when] = ACTIONS(5412), - [anon_sym_from] = ACTIONS(5412), - [anon_sym_into] = ACTIONS(5412), - [anon_sym_join] = ACTIONS(5412), - [anon_sym_on] = ACTIONS(5412), - [anon_sym_equals] = ACTIONS(5412), - [anon_sym_let] = ACTIONS(5412), - [anon_sym_orderby] = ACTIONS(5412), - [anon_sym_ascending] = ACTIONS(5412), - [anon_sym_descending] = ACTIONS(5412), - [anon_sym_group] = ACTIONS(5412), - [anon_sym_by] = ACTIONS(5412), - [anon_sym_select] = ACTIONS(5412), - [sym_grit_metavariable] = ACTIONS(5414), - [aux_sym_preproc_if_token1] = ACTIONS(5414), - [aux_sym_preproc_if_token3] = ACTIONS(5414), - [aux_sym_preproc_else_token1] = ACTIONS(5414), - [aux_sym_preproc_elif_token1] = ACTIONS(5414), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5486), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [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(5288), + [anon_sym_is] = ACTIONS(5498), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5336), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488725,6 +488096,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3059] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3059), [sym_preproc_endregion] = STATE(3059), [sym_preproc_line] = STATE(3059), @@ -488734,70 +488120,51 @@ 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), - [sym__identifier_token] = ACTIONS(4500), - [anon_sym_extern] = ACTIONS(4500), - [anon_sym_alias] = ACTIONS(4500), - [anon_sym_global] = ACTIONS(4500), - [anon_sym_using] = ACTIONS(4500), - [anon_sym_unsafe] = ACTIONS(4500), - [anon_sym_static] = ACTIONS(4500), - [anon_sym_LBRACK] = ACTIONS(4505), - [anon_sym_LPAREN] = ACTIONS(4505), - [anon_sym_event] = ACTIONS(4500), - [anon_sym_namespace] = ACTIONS(4500), - [anon_sym_class] = ACTIONS(4500), - [anon_sym_ref] = ACTIONS(4500), - [anon_sym_struct] = ACTIONS(4500), - [anon_sym_enum] = ACTIONS(4500), - [anon_sym_RBRACE] = ACTIONS(4505), - [anon_sym_interface] = ACTIONS(4500), - [anon_sym_delegate] = ACTIONS(4500), - [anon_sym_record] = ACTIONS(4500), - [anon_sym_public] = ACTIONS(4500), - [anon_sym_private] = ACTIONS(4500), - [anon_sym_readonly] = ACTIONS(4500), - [anon_sym_abstract] = ACTIONS(4500), - [anon_sym_async] = ACTIONS(4500), - [anon_sym_const] = ACTIONS(4500), - [anon_sym_file] = ACTIONS(4500), - [anon_sym_fixed] = ACTIONS(4500), - [anon_sym_internal] = ACTIONS(4500), - [anon_sym_new] = ACTIONS(4500), - [anon_sym_override] = ACTIONS(4500), - [anon_sym_partial] = ACTIONS(4500), - [anon_sym_protected] = ACTIONS(4500), - [anon_sym_required] = ACTIONS(4500), - [anon_sym_sealed] = ACTIONS(4500), - [anon_sym_virtual] = ACTIONS(4500), - [anon_sym_volatile] = ACTIONS(4500), - [anon_sym_where] = ACTIONS(4500), - [anon_sym_notnull] = ACTIONS(4500), - [anon_sym_unmanaged] = ACTIONS(4500), - [anon_sym_TILDE] = ACTIONS(4505), - [anon_sym_implicit] = ACTIONS(4500), - [anon_sym_explicit] = ACTIONS(4500), - [anon_sym_scoped] = ACTIONS(4500), - [anon_sym_var] = ACTIONS(4500), - [sym_predefined_type] = ACTIONS(4500), - [anon_sym_yield] = ACTIONS(4500), - [anon_sym_when] = ACTIONS(4500), - [anon_sym_from] = ACTIONS(4500), - [anon_sym_into] = ACTIONS(4500), - [anon_sym_join] = ACTIONS(4500), - [anon_sym_on] = ACTIONS(4500), - [anon_sym_equals] = ACTIONS(4500), - [anon_sym_let] = ACTIONS(4500), - [anon_sym_orderby] = ACTIONS(4500), - [anon_sym_ascending] = ACTIONS(4500), - [anon_sym_descending] = ACTIONS(4500), - [anon_sym_group] = ACTIONS(4500), - [anon_sym_by] = ACTIONS(4500), - [anon_sym_select] = ACTIONS(4500), - [sym_grit_metavariable] = ACTIONS(4505), - [aux_sym_preproc_if_token1] = ACTIONS(4505), - [aux_sym_preproc_if_token3] = ACTIONS(4505), - [aux_sym_preproc_else_token1] = ACTIONS(4505), - [aux_sym_preproc_elif_token1] = ACTIONS(4505), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5356), + [anon_sym_QMARK] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5486), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5356), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_join] = ACTIONS(5356), + [anon_sym_let] = ACTIONS(5356), + [anon_sym_orderby] = ACTIONS(5356), + [anon_sym_ascending] = ACTIONS(5356), + [anon_sym_descending] = ACTIONS(5356), + [anon_sym_group] = ACTIONS(5356), + [anon_sym_select] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5288), + [anon_sym_is] = ACTIONS(5498), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5356), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488810,6 +488177,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3060] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3060), [sym_preproc_endregion] = STATE(3060), [sym_preproc_line] = STATE(3060), @@ -488819,70 +488201,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3060), [sym_preproc_define] = STATE(3060), [sym_preproc_undef] = STATE(3060), - [sym__identifier_token] = ACTIONS(5416), - [anon_sym_extern] = ACTIONS(5416), - [anon_sym_alias] = ACTIONS(5416), - [anon_sym_global] = ACTIONS(5416), - [anon_sym_using] = ACTIONS(5416), - [anon_sym_unsafe] = ACTIONS(5416), - [anon_sym_static] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(5418), - [anon_sym_LPAREN] = ACTIONS(5418), - [anon_sym_event] = ACTIONS(5416), - [anon_sym_namespace] = ACTIONS(5416), - [anon_sym_class] = ACTIONS(5416), - [anon_sym_ref] = ACTIONS(5416), - [anon_sym_struct] = ACTIONS(5416), - [anon_sym_enum] = ACTIONS(5416), - [anon_sym_RBRACE] = ACTIONS(5418), - [anon_sym_interface] = ACTIONS(5416), - [anon_sym_delegate] = ACTIONS(5416), - [anon_sym_record] = ACTIONS(5416), - [anon_sym_public] = ACTIONS(5416), - [anon_sym_private] = ACTIONS(5416), - [anon_sym_readonly] = ACTIONS(5416), - [anon_sym_abstract] = ACTIONS(5416), - [anon_sym_async] = ACTIONS(5416), - [anon_sym_const] = ACTIONS(5416), - [anon_sym_file] = ACTIONS(5416), - [anon_sym_fixed] = ACTIONS(5416), - [anon_sym_internal] = ACTIONS(5416), - [anon_sym_new] = ACTIONS(5416), - [anon_sym_override] = ACTIONS(5416), - [anon_sym_partial] = ACTIONS(5416), - [anon_sym_protected] = ACTIONS(5416), - [anon_sym_required] = ACTIONS(5416), - [anon_sym_sealed] = ACTIONS(5416), - [anon_sym_virtual] = ACTIONS(5416), - [anon_sym_volatile] = ACTIONS(5416), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_notnull] = ACTIONS(5416), - [anon_sym_unmanaged] = ACTIONS(5416), - [anon_sym_TILDE] = ACTIONS(5418), - [anon_sym_implicit] = ACTIONS(5416), - [anon_sym_explicit] = ACTIONS(5416), - [anon_sym_scoped] = ACTIONS(5416), - [anon_sym_var] = ACTIONS(5416), - [sym_predefined_type] = ACTIONS(5416), - [anon_sym_yield] = ACTIONS(5416), - [anon_sym_when] = ACTIONS(5416), - [anon_sym_from] = ACTIONS(5416), - [anon_sym_into] = ACTIONS(5416), - [anon_sym_join] = ACTIONS(5416), - [anon_sym_on] = ACTIONS(5416), - [anon_sym_equals] = ACTIONS(5416), - [anon_sym_let] = ACTIONS(5416), - [anon_sym_orderby] = ACTIONS(5416), - [anon_sym_ascending] = ACTIONS(5416), - [anon_sym_descending] = ACTIONS(5416), - [anon_sym_group] = ACTIONS(5416), - [anon_sym_by] = ACTIONS(5416), - [anon_sym_select] = ACTIONS(5416), - [sym_grit_metavariable] = ACTIONS(5418), - [aux_sym_preproc_if_token1] = ACTIONS(5418), - [aux_sym_preproc_if_token3] = ACTIONS(5418), - [aux_sym_preproc_else_token1] = ACTIONS(5418), - [aux_sym_preproc_elif_token1] = ACTIONS(5418), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_where] = ACTIONS(5360), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5360), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_join] = ACTIONS(5360), + [anon_sym_let] = ACTIONS(5360), + [anon_sym_orderby] = ACTIONS(5360), + [anon_sym_ascending] = ACTIONS(5360), + [anon_sym_descending] = ACTIONS(5360), + [anon_sym_group] = ACTIONS(5360), + [anon_sym_select] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5362), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5360), + [sym_grit_metavariable] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488895,27 +488258,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3061] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3061), [sym_preproc_endregion] = STATE(3061), [sym_preproc_line] = STATE(3061), @@ -488925,48 +488282,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3061), [sym_preproc_define] = STATE(3061), [sym_preproc_undef] = STATE(3061), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5486), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5364), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_join] = ACTIONS(5364), + [anon_sym_let] = ACTIONS(5364), + [anon_sym_orderby] = ACTIONS(5364), + [anon_sym_ascending] = ACTIONS(5364), + [anon_sym_descending] = ACTIONS(5364), + [anon_sym_group] = ACTIONS(5364), + [anon_sym_select] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5288), + [anon_sym_is] = ACTIONS(5498), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5364), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488979,6 +488339,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3062] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1668), + [sym_op_lte] = STATE(1668), + [sym_op_eq] = STATE(1672), + [sym_op_neq] = STATE(1672), + [sym_op_gt] = STATE(1668), + [sym_op_gte] = STATE(1668), + [sym_op_and] = STATE(1673), + [sym_op_or] = STATE(1674), + [sym_op_bitwise_and] = STATE(1675), + [sym_op_bitwise_xor] = STATE(1678), + [sym_op_plus] = STATE(1682), + [sym_op_minus] = STATE(1682), + [sym_op_multiply] = STATE(1660), [sym_preproc_region] = STATE(3062), [sym_preproc_endregion] = STATE(3062), [sym_preproc_line] = STATE(3062), @@ -488988,79 +488363,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3062), [sym_preproc_define] = STATE(3062), [sym_preproc_undef] = STATE(3062), - [sym__identifier_token] = ACTIONS(4468), - [anon_sym_alias] = ACTIONS(4468), - [anon_sym_global] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_COLON] = ACTIONS(4470), - [anon_sym_COMMA] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_file] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4468), - [anon_sym_GT] = ACTIONS(4468), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_QMARK] = ACTIONS(4468), - [anon_sym_notnull] = ACTIONS(4468), - [anon_sym_unmanaged] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4468), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_CARET] = ACTIONS(4470), - [anon_sym_PIPE] = ACTIONS(4468), - [anon_sym_AMP] = ACTIONS(4468), - [anon_sym_LT_LT] = ACTIONS(4470), - [anon_sym_GT_GT] = ACTIONS(4468), - [anon_sym_GT_GT_GT] = ACTIONS(4470), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_scoped] = ACTIONS(4468), - [anon_sym_var] = ACTIONS(4468), - [anon_sym_yield] = ACTIONS(4468), - [anon_sym_switch] = ACTIONS(4468), - [anon_sym_when] = ACTIONS(4468), - [sym_discard] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_and] = ACTIONS(4468), - [anon_sym_or] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_PIPE_PIPE] = ACTIONS(4470), - [sym_op_coalescing] = ACTIONS(4470), - [anon_sym_from] = ACTIONS(4468), - [anon_sym_into] = ACTIONS(4468), - [anon_sym_join] = ACTIONS(4468), - [anon_sym_on] = ACTIONS(4468), - [anon_sym_equals] = ACTIONS(4468), - [anon_sym_let] = ACTIONS(4468), - [anon_sym_orderby] = ACTIONS(4468), - [anon_sym_ascending] = ACTIONS(4468), - [anon_sym_descending] = ACTIONS(4468), - [anon_sym_group] = ACTIONS(4468), - [anon_sym_by] = ACTIONS(4468), - [anon_sym_select] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4468), - [anon_sym_DASH_GT] = ACTIONS(4470), - [anon_sym_with] = ACTIONS(4468), - [sym_grit_metavariable] = ACTIONS(4470), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5232), + [anon_sym_QMARK] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5486), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5488), + [sym_op_right_shift] = ACTIONS(5490), + [sym_op_unsigned_right_shift] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5492), + [sym_op_modulo] = ACTIONS(5494), + [sym_op_coalescing] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5232), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_join] = ACTIONS(5232), + [anon_sym_let] = ACTIONS(5232), + [anon_sym_orderby] = ACTIONS(5232), + [anon_sym_ascending] = ACTIONS(5232), + [anon_sym_descending] = ACTIONS(5232), + [anon_sym_group] = ACTIONS(5232), + [anon_sym_select] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(5288), + [anon_sym_is] = ACTIONS(5498), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5232), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3063] = { [sym_preproc_region] = STATE(3063), @@ -489072,69 +488429,66 @@ 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(3968), - [anon_sym_EQ] = ACTIONS(3966), - [anon_sym_LBRACK] = ACTIONS(3968), - [anon_sym_COLON] = ACTIONS(3968), - [anon_sym_COMMA] = ACTIONS(3968), - [anon_sym_RBRACK] = ACTIONS(3968), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_RPAREN] = ACTIONS(3968), - [anon_sym_RBRACE] = ACTIONS(3968), - [anon_sym_LT] = ACTIONS(3966), - [anon_sym_GT] = ACTIONS(3966), - [anon_sym_in] = ACTIONS(3968), - [anon_sym_QMARK] = ACTIONS(3966), - [anon_sym_BANG] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3966), - [anon_sym_SLASH] = ACTIONS(3966), - [anon_sym_PERCENT] = ACTIONS(3966), - [anon_sym_CARET] = ACTIONS(3966), - [anon_sym_PIPE] = ACTIONS(3966), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_LT_LT] = ACTIONS(3966), - [anon_sym_GT_GT] = ACTIONS(3966), - [anon_sym_GT_GT_GT] = ACTIONS(3966), - [anon_sym_EQ_EQ] = ACTIONS(3968), - [anon_sym_BANG_EQ] = ACTIONS(3968), - [anon_sym_GT_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3968), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_EQ_GT] = ACTIONS(3968), - [anon_sym_switch] = ACTIONS(3968), - [anon_sym_when] = ACTIONS(3968), - [anon_sym_DOT_DOT] = ACTIONS(3968), - [anon_sym_and] = ACTIONS(3968), - [anon_sym_or] = ACTIONS(3968), - [anon_sym_PLUS_EQ] = ACTIONS(3968), - [anon_sym_DASH_EQ] = ACTIONS(3968), - [anon_sym_STAR_EQ] = ACTIONS(3968), - [anon_sym_SLASH_EQ] = ACTIONS(3968), - [anon_sym_PERCENT_EQ] = ACTIONS(3968), - [anon_sym_AMP_EQ] = ACTIONS(3968), - [anon_sym_CARET_EQ] = ACTIONS(3968), - [anon_sym_PIPE_EQ] = ACTIONS(3968), - [anon_sym_LT_LT_EQ] = ACTIONS(3968), - [anon_sym_GT_GT_EQ] = ACTIONS(3968), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3968), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_PIPE_PIPE] = ACTIONS(3968), - [sym_op_coalescing] = ACTIONS(3966), - [anon_sym_on] = ACTIONS(3968), - [anon_sym_equals] = ACTIONS(3968), - [anon_sym_by] = ACTIONS(3968), - [anon_sym_as] = ACTIONS(3968), - [anon_sym_is] = ACTIONS(3968), - [anon_sym_DASH_GT] = ACTIONS(3968), - [anon_sym_with] = ACTIONS(3968), - [aux_sym_preproc_if_token3] = ACTIONS(3968), - [aux_sym_preproc_else_token1] = ACTIONS(3968), - [aux_sym_preproc_elif_token1] = ACTIONS(3968), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(5070), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_where] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_switch] = ACTIONS(5070), + [anon_sym_DOT_DOT] = ACTIONS(5070), + [anon_sym_LT_EQ] = ACTIONS(5070), + [anon_sym_GT_EQ] = ACTIONS(5070), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5076), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(5070), + [anon_sym_BANG_EQ] = ACTIONS(5070), + [anon_sym_AMP_AMP] = ACTIONS(5070), + [anon_sym_PIPE_PIPE] = ACTIONS(5070), + [anon_sym_AMP] = ACTIONS(5073), + [sym_op_bitwise_or] = ACTIONS(5073), + [anon_sym_CARET] = ACTIONS(5073), + [sym_op_left_shift] = ACTIONS(5073), + [sym_op_right_shift] = ACTIONS(5073), + [sym_op_unsigned_right_shift] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [sym_op_divide] = ACTIONS(5073), + [sym_op_modulo] = ACTIONS(5073), + [sym_op_coalescing] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5070), + [anon_sym_DASH_DASH] = ACTIONS(5070), + [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(5073), + [anon_sym_is] = ACTIONS(5070), + [anon_sym_DASH_GT] = ACTIONS(5070), + [anon_sym_with] = ACTIONS(5070), + [sym_grit_metavariable] = ACTIONS(5068), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489147,27 +488501,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3064] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter] = STATE(7565), + [sym__parameter_array] = STATE(7384), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6417), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6014), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(3064), [sym_preproc_endregion] = STATE(3064), [sym_preproc_line] = STATE(3064), @@ -489177,48 +488533,43 @@ 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(4752), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_RBRACK] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4752), - [anon_sym_RBRACE] = ACTIONS(4752), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4752), - [aux_sym_preproc_if_token3] = ACTIONS(4752), - [aux_sym_preproc_else_token1] = ACTIONS(4752), - [aux_sym_preproc_elif_token1] = ACTIONS(4752), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3162), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4167), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5216), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(1311), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_out] = ACTIONS(1311), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_this] = ACTIONS(1311), + [anon_sym_scoped] = ACTIONS(5226), + [anon_sym_params] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(5222), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489231,27 +488582,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3065] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), [sym_preproc_region] = STATE(3065), [sym_preproc_endregion] = STATE(3065), [sym_preproc_line] = STATE(3065), @@ -489261,48 +488591,66 @@ 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(4760), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_RBRACK] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4760), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5426), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4760), - [aux_sym_preproc_else_token1] = ACTIONS(4760), - [aux_sym_preproc_elif_token1] = ACTIONS(4760), + [anon_sym_EQ] = ACTIONS(5506), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_where] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5510), + [anon_sym_PLUS_EQ] = ACTIONS(5512), + [anon_sym_DASH_EQ] = ACTIONS(5512), + [anon_sym_STAR_EQ] = ACTIONS(5512), + [anon_sym_SLASH_EQ] = ACTIONS(5512), + [anon_sym_PERCENT_EQ] = ACTIONS(5512), + [anon_sym_AMP_EQ] = ACTIONS(5512), + [anon_sym_CARET_EQ] = ACTIONS(5512), + [anon_sym_PIPE_EQ] = ACTIONS(5512), + [anon_sym_LT_LT_EQ] = ACTIONS(5512), + [anon_sym_GT_GT_EQ] = ACTIONS(5512), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5512), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5512), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_from] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_join] = ACTIONS(5508), + [anon_sym_let] = ACTIONS(5508), + [anon_sym_orderby] = ACTIONS(5508), + [anon_sym_ascending] = ACTIONS(5508), + [anon_sym_descending] = ACTIONS(5508), + [anon_sym_group] = ACTIONS(5508), + [anon_sym_select] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5510), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [sym_grit_metavariable] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489324,69 +488672,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3066), [sym_preproc_define] = STATE(3066), [sym_preproc_undef] = STATE(3066), - [anon_sym_SEMI] = ACTIONS(4528), - [anon_sym_EQ] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4528), - [anon_sym_COLON] = ACTIONS(4528), - [anon_sym_COMMA] = ACTIONS(4528), - [anon_sym_RBRACK] = ACTIONS(4528), - [anon_sym_LPAREN] = ACTIONS(4528), - [anon_sym_RPAREN] = ACTIONS(4528), - [anon_sym_RBRACE] = ACTIONS(4528), - [anon_sym_LT] = ACTIONS(4526), - [anon_sym_GT] = ACTIONS(4526), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_QMARK] = ACTIONS(4526), - [anon_sym_BANG] = ACTIONS(4526), - [anon_sym_PLUS_PLUS] = ACTIONS(4528), - [anon_sym_DASH_DASH] = ACTIONS(4528), - [anon_sym_PLUS] = ACTIONS(4526), - [anon_sym_DASH] = ACTIONS(4526), - [anon_sym_STAR] = ACTIONS(4526), - [anon_sym_SLASH] = ACTIONS(4526), - [anon_sym_PERCENT] = ACTIONS(4526), - [anon_sym_CARET] = ACTIONS(4526), - [anon_sym_PIPE] = ACTIONS(4526), - [anon_sym_AMP] = ACTIONS(4526), - [anon_sym_LT_LT] = ACTIONS(4526), - [anon_sym_GT_GT] = ACTIONS(4526), - [anon_sym_GT_GT_GT] = ACTIONS(4526), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_GT_EQ] = ACTIONS(4528), - [anon_sym_LT_EQ] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4526), - [anon_sym_EQ_GT] = ACTIONS(4528), - [anon_sym_switch] = ACTIONS(4528), - [anon_sym_when] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4528), - [anon_sym_and] = ACTIONS(4528), - [anon_sym_or] = ACTIONS(4528), - [anon_sym_PLUS_EQ] = ACTIONS(4528), - [anon_sym_DASH_EQ] = ACTIONS(4528), - [anon_sym_STAR_EQ] = ACTIONS(4528), - [anon_sym_SLASH_EQ] = ACTIONS(4528), - [anon_sym_PERCENT_EQ] = ACTIONS(4528), - [anon_sym_AMP_EQ] = ACTIONS(4528), - [anon_sym_CARET_EQ] = ACTIONS(4528), - [anon_sym_PIPE_EQ] = ACTIONS(4528), - [anon_sym_LT_LT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4528), - [anon_sym_PIPE_PIPE] = ACTIONS(4528), - [sym_op_coalescing] = ACTIONS(4526), - [anon_sym_on] = ACTIONS(4528), - [anon_sym_equals] = ACTIONS(4528), - [anon_sym_by] = ACTIONS(4528), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_DASH_GT] = ACTIONS(4528), - [anon_sym_with] = ACTIONS(4528), - [aux_sym_preproc_if_token3] = ACTIONS(4528), - [aux_sym_preproc_else_token1] = ACTIONS(4528), - [aux_sym_preproc_elif_token1] = ACTIONS(4528), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_COLON] = ACTIONS(3388), + [anon_sym_COMMA] = ACTIONS(3388), + [anon_sym_RBRACK] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_RPAREN] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_GT] = ACTIONS(3386), + [anon_sym_in] = ACTIONS(3388), + [anon_sym_where] = ACTIONS(3388), + [anon_sym_QMARK] = ACTIONS(3386), + [anon_sym_DOT] = ACTIONS(3386), + [anon_sym_EQ_GT] = ACTIONS(3388), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_while] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3388), + [anon_sym_catch] = ACTIONS(3388), + [anon_sym_finally] = ACTIONS(3388), + [anon_sym_else] = ACTIONS(3388), + [anon_sym_DOT_DOT] = ACTIONS(3388), + [anon_sym_LT_EQ] = ACTIONS(3388), + [anon_sym_GT_EQ] = ACTIONS(3388), + [anon_sym_and] = ACTIONS(3388), + [anon_sym_or] = ACTIONS(3386), + [anon_sym_EQ_EQ] = ACTIONS(3388), + [anon_sym_BANG_EQ] = ACTIONS(3388), + [anon_sym_AMP_AMP] = ACTIONS(3388), + [anon_sym_PIPE_PIPE] = ACTIONS(3388), + [anon_sym_AMP] = ACTIONS(3386), + [sym_op_bitwise_or] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3388), + [sym_op_left_shift] = ACTIONS(3388), + [sym_op_right_shift] = ACTIONS(3386), + [sym_op_unsigned_right_shift] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [sym_op_divide] = ACTIONS(3386), + [sym_op_modulo] = ACTIONS(3388), + [sym_op_coalescing] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_from] = ACTIONS(3388), + [anon_sym_join] = ACTIONS(3388), + [anon_sym_on] = ACTIONS(3388), + [anon_sym_equals] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3388), + [anon_sym_orderby] = ACTIONS(3388), + [anon_sym_group] = ACTIONS(3388), + [anon_sym_by] = ACTIONS(3388), + [anon_sym_select] = ACTIONS(3388), + [anon_sym_as] = ACTIONS(3388), + [anon_sym_is] = ACTIONS(3388), + [anon_sym_DASH_GT] = ACTIONS(3388), + [anon_sym_with] = ACTIONS(3388), + [aux_sym_preproc_if_token3] = ACTIONS(3388), + [aux_sym_preproc_else_token1] = ACTIONS(3388), + [aux_sym_preproc_elif_token1] = ACTIONS(3388), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489399,27 +488744,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3067] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_preproc_else_in_attribute_list] = STATE(7875), + [sym_preproc_elif_in_attribute_list] = STATE(7875), [sym_preproc_region] = STATE(3067), [sym_preproc_endregion] = STATE(3067), [sym_preproc_line] = STATE(3067), @@ -489429,48 +488755,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3067), [sym_preproc_define] = STATE(3067), [sym_preproc_undef] = STATE(3067), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [sym__identifier_token] = ACTIONS(5202), + [anon_sym_extern] = ACTIONS(5202), + [anon_sym_alias] = ACTIONS(5202), + [anon_sym_global] = ACTIONS(5202), + [anon_sym_unsafe] = ACTIONS(5202), + [anon_sym_static] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_LPAREN] = ACTIONS(5204), + [anon_sym_class] = ACTIONS(5202), + [anon_sym_ref] = ACTIONS(5202), + [anon_sym_struct] = ACTIONS(5202), + [anon_sym_enum] = ACTIONS(5202), + [anon_sym_interface] = ACTIONS(5202), + [anon_sym_delegate] = ACTIONS(5202), + [anon_sym_record] = ACTIONS(5202), + [anon_sym_public] = ACTIONS(5202), + [anon_sym_private] = ACTIONS(5202), + [anon_sym_readonly] = ACTIONS(5202), + [anon_sym_abstract] = ACTIONS(5202), + [anon_sym_async] = ACTIONS(5202), + [anon_sym_const] = ACTIONS(5202), + [anon_sym_file] = ACTIONS(5202), + [anon_sym_fixed] = ACTIONS(5202), + [anon_sym_internal] = ACTIONS(5202), + [anon_sym_new] = ACTIONS(5202), + [anon_sym_override] = ACTIONS(5202), + [anon_sym_partial] = ACTIONS(5202), + [anon_sym_protected] = ACTIONS(5202), + [anon_sym_required] = ACTIONS(5202), + [anon_sym_sealed] = ACTIONS(5202), + [anon_sym_virtual] = ACTIONS(5202), + [anon_sym_volatile] = ACTIONS(5202), + [anon_sym_where] = ACTIONS(5202), + [anon_sym_notnull] = ACTIONS(5202), + [anon_sym_unmanaged] = ACTIONS(5202), + [anon_sym_scoped] = ACTIONS(5202), + [anon_sym_var] = ACTIONS(5202), + [sym_predefined_type] = ACTIONS(5202), + [anon_sym_yield] = ACTIONS(5202), + [anon_sym_when] = ACTIONS(5202), + [anon_sym_from] = ACTIONS(5202), + [anon_sym_into] = ACTIONS(5202), + [anon_sym_join] = ACTIONS(5202), + [anon_sym_on] = ACTIONS(5202), + [anon_sym_equals] = ACTIONS(5202), + [anon_sym_let] = ACTIONS(5202), + [anon_sym_orderby] = ACTIONS(5202), + [anon_sym_ascending] = ACTIONS(5202), + [anon_sym_descending] = ACTIONS(5202), + [anon_sym_group] = ACTIONS(5202), + [anon_sym_by] = ACTIONS(5202), + [anon_sym_select] = ACTIONS(5202), + [sym_grit_metavariable] = ACTIONS(5204), + [aux_sym_preproc_if_token1] = ACTIONS(5204), + [aux_sym_preproc_if_token3] = ACTIONS(5514), + [aux_sym_preproc_else_token1] = ACTIONS(5208), + [aux_sym_preproc_elif_token1] = ACTIONS(5210), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489483,27 +488824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3068] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_initializer_expression] = STATE(3300), [sym_preproc_region] = STATE(3068), [sym_preproc_endregion] = STATE(3068), [sym_preproc_line] = STATE(3068), @@ -489513,48 +488834,64 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym_COLON] = ACTIONS(5516), + [anon_sym_COMMA] = ACTIONS(5516), + [anon_sym_RBRACK] = ACTIONS(5516), + [anon_sym_LPAREN] = ACTIONS(5516), + [anon_sym_RPAREN] = ACTIONS(5516), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(5516), + [anon_sym_LT] = ACTIONS(5518), + [anon_sym_GT] = ACTIONS(5518), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(5516), + [anon_sym_QMARK] = ACTIONS(5518), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_EQ_GT] = ACTIONS(5516), + [anon_sym_STAR] = ACTIONS(5516), + [anon_sym_switch] = ACTIONS(5516), + [anon_sym_DOT_DOT] = ACTIONS(5516), + [anon_sym_LT_EQ] = ACTIONS(5516), + [anon_sym_GT_EQ] = ACTIONS(5516), + [anon_sym_and] = ACTIONS(5516), + [anon_sym_or] = ACTIONS(5518), + [anon_sym_EQ_EQ] = ACTIONS(5516), + [anon_sym_BANG_EQ] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5516), + [anon_sym_PIPE_PIPE] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [sym_op_bitwise_or] = ACTIONS(5518), + [anon_sym_CARET] = ACTIONS(5516), + [sym_op_left_shift] = ACTIONS(5516), + [sym_op_right_shift] = ACTIONS(5518), + [sym_op_unsigned_right_shift] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5518), + [sym_op_divide] = ACTIONS(5518), + [sym_op_modulo] = ACTIONS(5516), + [sym_op_coalescing] = ACTIONS(5516), + [anon_sym_BANG] = ACTIONS(5518), + [anon_sym_PLUS_PLUS] = ACTIONS(5516), + [anon_sym_DASH_DASH] = ACTIONS(5516), + [anon_sym_from] = ACTIONS(5516), + [anon_sym_into] = ACTIONS(5516), + [anon_sym_join] = ACTIONS(5516), + [anon_sym_on] = ACTIONS(5516), + [anon_sym_equals] = ACTIONS(5516), + [anon_sym_let] = ACTIONS(5516), + [anon_sym_orderby] = ACTIONS(5516), + [anon_sym_group] = ACTIONS(5516), + [anon_sym_by] = ACTIONS(5516), + [anon_sym_select] = ACTIONS(5516), + [anon_sym_as] = ACTIONS(5516), + [anon_sym_is] = ACTIONS(5516), + [anon_sym_DASH_GT] = ACTIONS(5516), + [anon_sym_with] = ACTIONS(5516), + [aux_sym_preproc_if_token3] = ACTIONS(5516), + [aux_sym_preproc_else_token1] = ACTIONS(5516), + [aux_sym_preproc_elif_token1] = ACTIONS(5516), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489567,27 +488904,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3069] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), [sym_preproc_region] = STATE(3069), [sym_preproc_endregion] = STATE(3069), [sym_preproc_line] = STATE(3069), @@ -489597,48 +488913,65 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3694), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3694), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3694), + [anon_sym_into] = ACTIONS(3694), + [anon_sym_join] = ACTIONS(3694), + [anon_sym_on] = ACTIONS(3694), + [anon_sym_equals] = ACTIONS(3694), + [anon_sym_let] = ACTIONS(3694), + [anon_sym_orderby] = ACTIONS(3694), + [anon_sym_group] = ACTIONS(3694), + [anon_sym_by] = ACTIONS(3694), + [anon_sym_select] = ACTIONS(3694), + [anon_sym_as] = ACTIONS(3694), + [anon_sym_is] = ACTIONS(3694), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3694), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489651,27 +488984,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3070] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3070), [sym_preproc_endregion] = STATE(3070), [sym_preproc_line] = STATE(3070), @@ -489681,48 +489008,50 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5522), + [sym_op_right_shift] = ACTIONS(5524), + [sym_op_unsigned_right_shift] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5530), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489744,69 +489073,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3071), [sym_preproc_define] = STATE(3071), [sym_preproc_undef] = STATE(3071), - [anon_sym_SEMI] = ACTIONS(4558), - [anon_sym_EQ] = ACTIONS(4560), - [anon_sym_LBRACK] = ACTIONS(4558), - [anon_sym_COLON] = ACTIONS(4558), - [anon_sym_COMMA] = ACTIONS(4558), - [anon_sym_RBRACK] = ACTIONS(4558), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_RPAREN] = ACTIONS(4558), - [anon_sym_RBRACE] = ACTIONS(4558), - [anon_sym_LT] = ACTIONS(4560), - [anon_sym_GT] = ACTIONS(4560), - [anon_sym_in] = ACTIONS(4558), - [anon_sym_QMARK] = ACTIONS(4560), - [anon_sym_BANG] = ACTIONS(4560), - [anon_sym_PLUS_PLUS] = ACTIONS(4558), - [anon_sym_DASH_DASH] = ACTIONS(4558), - [anon_sym_PLUS] = ACTIONS(4560), - [anon_sym_DASH] = ACTIONS(4560), - [anon_sym_STAR] = ACTIONS(4560), - [anon_sym_SLASH] = ACTIONS(4560), - [anon_sym_PERCENT] = ACTIONS(4560), - [anon_sym_CARET] = ACTIONS(4560), - [anon_sym_PIPE] = ACTIONS(4560), - [anon_sym_AMP] = ACTIONS(4560), - [anon_sym_LT_LT] = ACTIONS(4560), - [anon_sym_GT_GT] = ACTIONS(4560), - [anon_sym_GT_GT_GT] = ACTIONS(4560), - [anon_sym_EQ_EQ] = ACTIONS(4558), - [anon_sym_BANG_EQ] = ACTIONS(4558), - [anon_sym_GT_EQ] = ACTIONS(4558), - [anon_sym_LT_EQ] = ACTIONS(4558), - [anon_sym_DOT] = ACTIONS(4560), - [anon_sym_EQ_GT] = ACTIONS(4558), - [anon_sym_switch] = ACTIONS(4558), - [anon_sym_when] = ACTIONS(4558), - [anon_sym_DOT_DOT] = ACTIONS(4558), - [anon_sym_and] = ACTIONS(4558), - [anon_sym_or] = ACTIONS(4558), - [anon_sym_PLUS_EQ] = ACTIONS(4558), - [anon_sym_DASH_EQ] = ACTIONS(4558), - [anon_sym_STAR_EQ] = ACTIONS(4558), - [anon_sym_SLASH_EQ] = ACTIONS(4558), - [anon_sym_PERCENT_EQ] = ACTIONS(4558), - [anon_sym_AMP_EQ] = ACTIONS(4558), - [anon_sym_CARET_EQ] = ACTIONS(4558), - [anon_sym_PIPE_EQ] = ACTIONS(4558), - [anon_sym_LT_LT_EQ] = ACTIONS(4558), - [anon_sym_GT_GT_EQ] = ACTIONS(4558), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4558), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4558), - [anon_sym_AMP_AMP] = ACTIONS(4558), - [anon_sym_PIPE_PIPE] = ACTIONS(4558), - [sym_op_coalescing] = ACTIONS(4560), - [anon_sym_on] = ACTIONS(4558), - [anon_sym_equals] = ACTIONS(4558), - [anon_sym_by] = ACTIONS(4558), - [anon_sym_as] = ACTIONS(4558), - [anon_sym_is] = ACTIONS(4558), - [anon_sym_DASH_GT] = ACTIONS(4558), - [anon_sym_with] = ACTIONS(4558), - [aux_sym_preproc_if_token3] = ACTIONS(4558), - [aux_sym_preproc_else_token1] = ACTIONS(4558), - [aux_sym_preproc_elif_token1] = ACTIONS(4558), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACK] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_in] = ACTIONS(3187), + [anon_sym_where] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_EQ_GT] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3187), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3189), + [sym_op_left_shift] = ACTIONS(3189), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3189), + [sym_op_coalescing] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [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_group] = ACTIONS(3189), + [anon_sym_by] = ACTIONS(3189), + [anon_sym_select] = ACTIONS(3189), + [anon_sym_as] = ACTIONS(3189), + [anon_sym_is] = ACTIONS(3189), + [anon_sym_DASH_GT] = ACTIONS(3189), + [anon_sym_with] = 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), @@ -489819,27 +489144,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3072] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3072), [sym_preproc_endregion] = STATE(3072), [sym_preproc_line] = STATE(3072), @@ -489849,48 +489168,50 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5532), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5522), + [sym_op_right_shift] = ACTIONS(5524), + [sym_op_unsigned_right_shift] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5530), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489903,27 +489224,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3073] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3073), [sym_preproc_endregion] = STATE(3073), [sym_preproc_line] = STATE(3073), @@ -489933,48 +489248,50 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(5534), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5532), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5522), + [sym_op_right_shift] = ACTIONS(5524), + [sym_op_unsigned_right_shift] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5536), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5364), + [anon_sym_join] = ACTIONS(5364), + [anon_sym_let] = ACTIONS(5364), + [anon_sym_orderby] = ACTIONS(5364), + [anon_sym_ascending] = ACTIONS(5364), + [anon_sym_descending] = ACTIONS(5364), + [anon_sym_group] = ACTIONS(5364), + [anon_sym_select] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5380), + [anon_sym_is] = ACTIONS(5530), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5364), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489987,6 +489304,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3074] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3074), [sym_preproc_endregion] = STATE(3074), [sym_preproc_line] = STATE(3074), @@ -489996,69 +489328,50 @@ 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(4554), - [anon_sym_EQ] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(4554), - [anon_sym_COMMA] = ACTIONS(4554), - [anon_sym_RBRACK] = ACTIONS(4554), - [anon_sym_LPAREN] = ACTIONS(4554), - [anon_sym_RPAREN] = ACTIONS(4554), - [anon_sym_RBRACE] = ACTIONS(4554), - [anon_sym_LT] = ACTIONS(4556), - [anon_sym_GT] = ACTIONS(4556), - [anon_sym_in] = ACTIONS(4554), - [anon_sym_QMARK] = ACTIONS(4556), - [anon_sym_BANG] = ACTIONS(4556), - [anon_sym_PLUS_PLUS] = ACTIONS(4554), - [anon_sym_DASH_DASH] = ACTIONS(4554), - [anon_sym_PLUS] = ACTIONS(4556), - [anon_sym_DASH] = ACTIONS(4556), - [anon_sym_STAR] = ACTIONS(4556), - [anon_sym_SLASH] = ACTIONS(4556), - [anon_sym_PERCENT] = ACTIONS(4556), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_PIPE] = ACTIONS(4556), - [anon_sym_AMP] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4556), - [anon_sym_GT_GT] = ACTIONS(4556), - [anon_sym_GT_GT_GT] = ACTIONS(4556), - [anon_sym_EQ_EQ] = ACTIONS(4554), - [anon_sym_BANG_EQ] = ACTIONS(4554), - [anon_sym_GT_EQ] = ACTIONS(4554), - [anon_sym_LT_EQ] = ACTIONS(4554), - [anon_sym_DOT] = ACTIONS(4556), - [anon_sym_EQ_GT] = ACTIONS(4554), - [anon_sym_switch] = ACTIONS(4554), - [anon_sym_when] = ACTIONS(4554), - [anon_sym_DOT_DOT] = ACTIONS(4554), - [anon_sym_and] = ACTIONS(4554), - [anon_sym_or] = ACTIONS(4554), - [anon_sym_PLUS_EQ] = ACTIONS(4554), - [anon_sym_DASH_EQ] = ACTIONS(4554), - [anon_sym_STAR_EQ] = ACTIONS(4554), - [anon_sym_SLASH_EQ] = ACTIONS(4554), - [anon_sym_PERCENT_EQ] = ACTIONS(4554), - [anon_sym_AMP_EQ] = ACTIONS(4554), - [anon_sym_CARET_EQ] = ACTIONS(4554), - [anon_sym_PIPE_EQ] = ACTIONS(4554), - [anon_sym_LT_LT_EQ] = ACTIONS(4554), - [anon_sym_GT_GT_EQ] = ACTIONS(4554), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4554), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4554), - [anon_sym_AMP_AMP] = ACTIONS(4554), - [anon_sym_PIPE_PIPE] = ACTIONS(4554), - [sym_op_coalescing] = ACTIONS(4556), - [anon_sym_on] = ACTIONS(4554), - [anon_sym_equals] = ACTIONS(4554), - [anon_sym_by] = ACTIONS(4554), - [anon_sym_as] = ACTIONS(4554), - [anon_sym_is] = ACTIONS(4554), - [anon_sym_DASH_GT] = ACTIONS(4554), - [anon_sym_with] = ACTIONS(4554), - [aux_sym_preproc_if_token3] = ACTIONS(4554), - [aux_sym_preproc_else_token1] = ACTIONS(4554), - [aux_sym_preproc_elif_token1] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5532), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5522), + [sym_op_right_shift] = ACTIONS(5524), + [sym_op_unsigned_right_shift] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5530), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490071,27 +489384,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3075] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3075), [sym_preproc_endregion] = STATE(3075), [sym_preproc_line] = STATE(3075), @@ -490101,48 +489408,50 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5442), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5522), + [sym_op_right_shift] = ACTIONS(5524), + [sym_op_unsigned_right_shift] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5530), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490155,6 +489464,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3076] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3076), [sym_preproc_endregion] = STATE(3076), [sym_preproc_line] = STATE(3076), @@ -490164,69 +489488,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3076), [sym_preproc_define] = STATE(3076), [sym_preproc_undef] = STATE(3076), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym_EQ] = ACTIONS(3978), - [anon_sym_LBRACK] = ACTIONS(3980), - [anon_sym_COLON] = ACTIONS(3980), - [anon_sym_COMMA] = ACTIONS(3980), - [anon_sym_RBRACK] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym_RPAREN] = ACTIONS(3980), - [anon_sym_RBRACE] = ACTIONS(3980), - [anon_sym_LT] = ACTIONS(3978), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_in] = ACTIONS(3980), - [anon_sym_QMARK] = ACTIONS(3978), - [anon_sym_BANG] = ACTIONS(3978), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3978), - [anon_sym_SLASH] = ACTIONS(3978), - [anon_sym_PERCENT] = ACTIONS(3978), - [anon_sym_CARET] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(3978), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_LT_LT] = ACTIONS(3978), - [anon_sym_GT_GT] = ACTIONS(3978), - [anon_sym_GT_GT_GT] = ACTIONS(3978), - [anon_sym_EQ_EQ] = ACTIONS(3980), - [anon_sym_BANG_EQ] = ACTIONS(3980), - [anon_sym_GT_EQ] = ACTIONS(3980), - [anon_sym_LT_EQ] = ACTIONS(3980), - [anon_sym_DOT] = ACTIONS(3978), - [anon_sym_EQ_GT] = ACTIONS(3980), - [anon_sym_switch] = ACTIONS(3980), - [anon_sym_when] = ACTIONS(3980), - [anon_sym_DOT_DOT] = ACTIONS(3980), - [anon_sym_and] = ACTIONS(3980), - [anon_sym_or] = ACTIONS(3980), - [anon_sym_PLUS_EQ] = ACTIONS(3980), - [anon_sym_DASH_EQ] = ACTIONS(3980), - [anon_sym_STAR_EQ] = ACTIONS(3980), - [anon_sym_SLASH_EQ] = ACTIONS(3980), - [anon_sym_PERCENT_EQ] = ACTIONS(3980), - [anon_sym_AMP_EQ] = ACTIONS(3980), - [anon_sym_CARET_EQ] = ACTIONS(3980), - [anon_sym_PIPE_EQ] = ACTIONS(3980), - [anon_sym_LT_LT_EQ] = ACTIONS(3980), - [anon_sym_GT_GT_EQ] = ACTIONS(3980), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3980), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_PIPE_PIPE] = ACTIONS(3980), - [sym_op_coalescing] = ACTIONS(3978), - [anon_sym_on] = ACTIONS(3980), - [anon_sym_equals] = ACTIONS(3980), - [anon_sym_by] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(3980), - [anon_sym_is] = ACTIONS(3980), - [anon_sym_DASH_GT] = ACTIONS(3980), - [anon_sym_with] = ACTIONS(3980), - [aux_sym_preproc_if_token3] = ACTIONS(3980), - [aux_sym_preproc_else_token1] = ACTIONS(3980), - [aux_sym_preproc_elif_token1] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5522), + [sym_op_right_shift] = ACTIONS(5524), + [sym_op_unsigned_right_shift] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5530), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490239,6 +489544,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3077] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3077), [sym_preproc_endregion] = STATE(3077), [sym_preproc_line] = STATE(3077), @@ -490248,68 +489568,50 @@ 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), - [sym__identifier_token] = ACTIONS(4507), - [anon_sym_alias] = ACTIONS(4507), - [anon_sym_global] = ACTIONS(4507), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_COLON] = ACTIONS(4509), - [anon_sym_COMMA] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_file] = ACTIONS(4507), - [anon_sym_LT] = ACTIONS(4507), - [anon_sym_GT] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(4507), - [anon_sym_QMARK] = ACTIONS(4507), - [anon_sym_notnull] = ACTIONS(4507), - [anon_sym_unmanaged] = ACTIONS(4507), - [anon_sym_BANG] = ACTIONS(4507), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4509), - [anon_sym_SLASH] = ACTIONS(4507), - [anon_sym_PERCENT] = ACTIONS(4509), - [anon_sym_CARET] = ACTIONS(4509), - [anon_sym_PIPE] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym_LT_LT] = ACTIONS(4509), - [anon_sym_GT_GT] = ACTIONS(4507), - [anon_sym_GT_GT_GT] = ACTIONS(4509), - [anon_sym_EQ_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ] = ACTIONS(4509), - [anon_sym_GT_EQ] = ACTIONS(4509), - [anon_sym_LT_EQ] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_scoped] = ACTIONS(4507), - [anon_sym_var] = ACTIONS(4507), - [anon_sym_yield] = ACTIONS(4507), - [anon_sym_switch] = ACTIONS(4507), - [anon_sym_when] = ACTIONS(4507), - [sym_discard] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_and] = ACTIONS(4507), - [anon_sym_or] = ACTIONS(4507), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [sym_op_coalescing] = ACTIONS(4509), - [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), - [anon_sym_as] = ACTIONS(4507), - [anon_sym_is] = ACTIONS(4507), - [anon_sym_DASH_GT] = ACTIONS(4509), - [anon_sym_with] = ACTIONS(4507), - [sym_grit_metavariable] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490320,9 +489622,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(4509), }, [3078] = { + [sym_initializer_expression] = STATE(3201), [sym_preproc_region] = STATE(3078), [sym_preproc_endregion] = STATE(3078), [sym_preproc_line] = STATE(3078), @@ -490332,69 +489634,64 @@ 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(4524), - [anon_sym_EQ] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4524), - [anon_sym_COLON] = ACTIONS(4528), - [anon_sym_COMMA] = ACTIONS(4524), - [anon_sym_RBRACK] = ACTIONS(4524), - [anon_sym_LPAREN] = ACTIONS(4524), - [anon_sym_RPAREN] = ACTIONS(4524), - [anon_sym_RBRACE] = ACTIONS(4524), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_in] = ACTIONS(4524), - [anon_sym_QMARK] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4524), - [anon_sym_DASH_DASH] = ACTIONS(4524), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_CARET] = ACTIONS(4530), - [anon_sym_PIPE] = ACTIONS(4530), - [anon_sym_AMP] = ACTIONS(4530), - [anon_sym_LT_LT] = ACTIONS(4530), - [anon_sym_GT_GT] = ACTIONS(4530), - [anon_sym_GT_GT_GT] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4524), - [anon_sym_BANG_EQ] = ACTIONS(4524), - [anon_sym_GT_EQ] = ACTIONS(4524), - [anon_sym_LT_EQ] = ACTIONS(4524), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_EQ_GT] = ACTIONS(4524), - [anon_sym_switch] = ACTIONS(4524), - [anon_sym_when] = ACTIONS(4524), - [anon_sym_DOT_DOT] = ACTIONS(4524), - [anon_sym_and] = ACTIONS(4524), - [anon_sym_or] = ACTIONS(4524), - [anon_sym_PLUS_EQ] = ACTIONS(4528), - [anon_sym_DASH_EQ] = ACTIONS(4528), - [anon_sym_STAR_EQ] = ACTIONS(4528), - [anon_sym_SLASH_EQ] = ACTIONS(4528), - [anon_sym_PERCENT_EQ] = ACTIONS(4528), - [anon_sym_AMP_EQ] = ACTIONS(4528), - [anon_sym_CARET_EQ] = ACTIONS(4528), - [anon_sym_PIPE_EQ] = ACTIONS(4528), - [anon_sym_LT_LT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4524), - [anon_sym_PIPE_PIPE] = ACTIONS(4524), - [sym_op_coalescing] = ACTIONS(4530), - [anon_sym_on] = ACTIONS(4524), - [anon_sym_equals] = ACTIONS(4524), - [anon_sym_by] = ACTIONS(4524), - [anon_sym_as] = ACTIONS(4524), - [anon_sym_is] = ACTIONS(4524), - [anon_sym_DASH_GT] = ACTIONS(4524), - [anon_sym_with] = ACTIONS(4524), - [aux_sym_preproc_if_token3] = ACTIONS(4524), - [aux_sym_preproc_else_token1] = ACTIONS(4524), - [aux_sym_preproc_elif_token1] = ACTIONS(4524), + [anon_sym_SEMI] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(5540), + [anon_sym_COLON] = ACTIONS(5538), + [anon_sym_COMMA] = ACTIONS(5538), + [anon_sym_RBRACK] = ACTIONS(5538), + [anon_sym_LPAREN] = ACTIONS(5538), + [anon_sym_RPAREN] = ACTIONS(5538), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(5538), + [anon_sym_LT] = ACTIONS(5543), + [anon_sym_GT] = ACTIONS(5543), + [anon_sym_in] = ACTIONS(5543), + [anon_sym_where] = ACTIONS(5538), + [anon_sym_QMARK] = ACTIONS(5543), + [anon_sym_DOT] = ACTIONS(5543), + [anon_sym_EQ_GT] = ACTIONS(5538), + [anon_sym_STAR] = ACTIONS(5538), + [anon_sym_switch] = ACTIONS(5538), + [anon_sym_DOT_DOT] = ACTIONS(5538), + [anon_sym_LT_EQ] = ACTIONS(5538), + [anon_sym_GT_EQ] = ACTIONS(5538), + [anon_sym_and] = ACTIONS(5538), + [anon_sym_or] = ACTIONS(5543), + [anon_sym_EQ_EQ] = ACTIONS(5538), + [anon_sym_BANG_EQ] = ACTIONS(5538), + [anon_sym_AMP_AMP] = ACTIONS(5538), + [anon_sym_PIPE_PIPE] = ACTIONS(5538), + [anon_sym_AMP] = ACTIONS(5543), + [sym_op_bitwise_or] = ACTIONS(5543), + [anon_sym_CARET] = ACTIONS(5538), + [sym_op_left_shift] = ACTIONS(5538), + [sym_op_right_shift] = ACTIONS(5543), + [sym_op_unsigned_right_shift] = ACTIONS(5538), + [anon_sym_PLUS] = ACTIONS(5543), + [anon_sym_DASH] = ACTIONS(5543), + [sym_op_divide] = ACTIONS(5543), + [sym_op_modulo] = ACTIONS(5538), + [sym_op_coalescing] = ACTIONS(5538), + [anon_sym_BANG] = ACTIONS(5543), + [anon_sym_PLUS_PLUS] = ACTIONS(5538), + [anon_sym_DASH_DASH] = ACTIONS(5538), + [anon_sym_from] = ACTIONS(5538), + [anon_sym_into] = ACTIONS(5538), + [anon_sym_join] = ACTIONS(5538), + [anon_sym_on] = ACTIONS(5538), + [anon_sym_equals] = ACTIONS(5538), + [anon_sym_let] = ACTIONS(5538), + [anon_sym_orderby] = ACTIONS(5538), + [anon_sym_group] = ACTIONS(5538), + [anon_sym_by] = ACTIONS(5538), + [anon_sym_select] = ACTIONS(5538), + [anon_sym_as] = ACTIONS(5538), + [anon_sym_is] = ACTIONS(5538), + [anon_sym_DASH_GT] = ACTIONS(5538), + [anon_sym_with] = ACTIONS(5538), + [aux_sym_preproc_if_token3] = ACTIONS(5538), + [aux_sym_preproc_else_token1] = ACTIONS(5538), + [aux_sym_preproc_elif_token1] = ACTIONS(5538), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490407,27 +489704,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3079] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3079), [sym_preproc_endregion] = STATE(3079), [sym_preproc_line] = STATE(3079), @@ -490437,48 +489728,50 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5304), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5304), + [anon_sym_RBRACK] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5304), + [anon_sym_RBRACE] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5549), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5304), + [anon_sym_or] = ACTIONS(5304), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5565), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [aux_sym_preproc_if_token3] = ACTIONS(5304), + [aux_sym_preproc_else_token1] = ACTIONS(5304), + [aux_sym_preproc_elif_token1] = ACTIONS(5304), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490491,27 +489784,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3080] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), [sym_op_eq] = STATE(1181), [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3080), [sym_preproc_endregion] = STATE(3080), [sym_preproc_line] = STATE(3080), @@ -490521,48 +489808,50 @@ 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(4790), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_RBRACK] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5426), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4790), - [aux_sym_preproc_else_token1] = ACTIONS(4790), - [aux_sym_preproc_elif_token1] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5522), + [sym_op_right_shift] = ACTIONS(5524), + [sym_op_unsigned_right_shift] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490575,6 +489864,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3081] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3081), [sym_preproc_endregion] = STATE(3081), [sym_preproc_line] = STATE(3081), @@ -490584,69 +489888,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3081), [sym_preproc_define] = STATE(3081), [sym_preproc_undef] = STATE(3081), - [anon_sym_SEMI] = ACTIONS(4534), - [anon_sym_EQ] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4534), - [anon_sym_COLON] = ACTIONS(4534), - [anon_sym_COMMA] = ACTIONS(4534), - [anon_sym_RBRACK] = ACTIONS(4534), - [anon_sym_LPAREN] = ACTIONS(4534), - [anon_sym_RPAREN] = ACTIONS(4534), - [anon_sym_RBRACE] = ACTIONS(4534), - [anon_sym_LT] = ACTIONS(4536), - [anon_sym_GT] = ACTIONS(4536), - [anon_sym_in] = ACTIONS(4534), - [anon_sym_QMARK] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4534), - [anon_sym_DASH_DASH] = ACTIONS(4534), - [anon_sym_PLUS] = ACTIONS(4536), - [anon_sym_DASH] = ACTIONS(4536), - [anon_sym_STAR] = ACTIONS(4536), - [anon_sym_SLASH] = ACTIONS(4536), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_CARET] = ACTIONS(4536), - [anon_sym_PIPE] = ACTIONS(4536), - [anon_sym_AMP] = ACTIONS(4536), - [anon_sym_LT_LT] = ACTIONS(4536), - [anon_sym_GT_GT] = ACTIONS(4536), - [anon_sym_GT_GT_GT] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_GT_EQ] = ACTIONS(4534), - [anon_sym_LT_EQ] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4536), - [anon_sym_EQ_GT] = ACTIONS(4534), - [anon_sym_switch] = ACTIONS(4534), - [anon_sym_when] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4534), - [anon_sym_and] = ACTIONS(4534), - [anon_sym_or] = ACTIONS(4534), - [anon_sym_PLUS_EQ] = ACTIONS(4534), - [anon_sym_DASH_EQ] = ACTIONS(4534), - [anon_sym_STAR_EQ] = ACTIONS(4534), - [anon_sym_SLASH_EQ] = ACTIONS(4534), - [anon_sym_PERCENT_EQ] = ACTIONS(4534), - [anon_sym_AMP_EQ] = ACTIONS(4534), - [anon_sym_CARET_EQ] = ACTIONS(4534), - [anon_sym_PIPE_EQ] = ACTIONS(4534), - [anon_sym_LT_LT_EQ] = ACTIONS(4534), - [anon_sym_GT_GT_EQ] = ACTIONS(4534), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4534), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4534), - [anon_sym_AMP_AMP] = ACTIONS(4534), - [anon_sym_PIPE_PIPE] = ACTIONS(4534), - [sym_op_coalescing] = ACTIONS(4536), - [anon_sym_on] = ACTIONS(4534), - [anon_sym_equals] = ACTIONS(4534), - [anon_sym_by] = ACTIONS(4534), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_DASH_GT] = ACTIONS(4534), - [anon_sym_with] = ACTIONS(4534), - [aux_sym_preproc_if_token3] = ACTIONS(4534), - [aux_sym_preproc_else_token1] = ACTIONS(4534), - [aux_sym_preproc_elif_token1] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5356), + [anon_sym_QMARK] = ACTIONS(5534), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5532), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5522), + [sym_op_right_shift] = ACTIONS(5524), + [sym_op_unsigned_right_shift] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5536), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5356), + [anon_sym_join] = ACTIONS(5356), + [anon_sym_let] = ACTIONS(5356), + [anon_sym_orderby] = ACTIONS(5356), + [anon_sym_ascending] = ACTIONS(5356), + [anon_sym_descending] = ACTIONS(5356), + [anon_sym_group] = ACTIONS(5356), + [anon_sym_select] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5380), + [anon_sym_is] = ACTIONS(5530), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5356), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490659,27 +489944,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3082] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), [sym_preproc_region] = STATE(3082), [sym_preproc_endregion] = STATE(3082), [sym_preproc_line] = STATE(3082), @@ -490689,48 +489953,65 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_RBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_RPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_RBRACE] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_in] = ACTIONS(3913), + [anon_sym_where] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3910), + [anon_sym_switch] = ACTIONS(3910), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3910), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3910), + [sym_op_left_shift] = ACTIONS(3910), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3910), + [sym_op_coalescing] = ACTIONS(3910), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(3910), + [anon_sym_into] = ACTIONS(3910), + [anon_sym_join] = ACTIONS(3910), + [anon_sym_on] = ACTIONS(3910), + [anon_sym_equals] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_orderby] = ACTIONS(3910), + [anon_sym_group] = ACTIONS(3910), + [anon_sym_by] = ACTIONS(3910), + [anon_sym_select] = ACTIONS(3910), + [anon_sym_as] = ACTIONS(3910), + [anon_sym_is] = ACTIONS(3910), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3910), + [aux_sym_preproc_if_token3] = ACTIONS(3910), + [aux_sym_preproc_else_token1] = ACTIONS(3910), + [aux_sym_preproc_elif_token1] = ACTIONS(3910), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490743,6 +490024,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3083] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3083), [sym_preproc_endregion] = STATE(3083), [sym_preproc_line] = STATE(3083), @@ -490752,68 +490048,50 @@ 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), - [sym__identifier_token] = ACTIONS(4487), - [anon_sym_alias] = ACTIONS(4487), - [anon_sym_global] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_COMMA] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_file] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_where] = ACTIONS(4487), - [anon_sym_QMARK] = ACTIONS(4487), - [anon_sym_notnull] = ACTIONS(4487), - [anon_sym_unmanaged] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_PERCENT] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4487), - [anon_sym_AMP] = ACTIONS(4487), - [anon_sym_LT_LT] = ACTIONS(4489), - [anon_sym_GT_GT] = ACTIONS(4487), - [anon_sym_GT_GT_GT] = ACTIONS(4489), - [anon_sym_EQ_EQ] = ACTIONS(4489), - [anon_sym_BANG_EQ] = ACTIONS(4489), - [anon_sym_GT_EQ] = ACTIONS(4489), - [anon_sym_LT_EQ] = ACTIONS(4489), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_scoped] = ACTIONS(4487), - [anon_sym_var] = ACTIONS(4487), - [anon_sym_yield] = ACTIONS(4487), - [anon_sym_switch] = ACTIONS(4487), - [anon_sym_when] = ACTIONS(4487), - [sym_discard] = ACTIONS(4487), - [anon_sym_DOT_DOT] = ACTIONS(4489), - [anon_sym_and] = ACTIONS(4487), - [anon_sym_or] = ACTIONS(4487), - [anon_sym_AMP_AMP] = ACTIONS(4489), - [anon_sym_PIPE_PIPE] = ACTIONS(4489), - [sym_op_coalescing] = ACTIONS(4489), - [anon_sym_from] = ACTIONS(4487), - [anon_sym_into] = ACTIONS(4487), - [anon_sym_join] = ACTIONS(4487), - [anon_sym_on] = ACTIONS(4487), - [anon_sym_equals] = ACTIONS(4487), - [anon_sym_let] = ACTIONS(4487), - [anon_sym_orderby] = ACTIONS(4487), - [anon_sym_ascending] = ACTIONS(4487), - [anon_sym_descending] = ACTIONS(4487), - [anon_sym_group] = ACTIONS(4487), - [anon_sym_by] = ACTIONS(4487), - [anon_sym_select] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4487), - [anon_sym_is] = ACTIONS(4487), - [anon_sym_DASH_GT] = ACTIONS(4489), - [anon_sym_with] = ACTIONS(4487), - [sym_grit_metavariable] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(5534), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5532), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5522), + [sym_op_right_shift] = ACTIONS(5524), + [sym_op_unsigned_right_shift] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5536), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5530), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5336), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490824,30 +490102,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4489), }, [3084] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3084), [sym_preproc_endregion] = STATE(3084), [sym_preproc_line] = STATE(3084), @@ -490857,48 +490128,50 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5308), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_RBRACK] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5308), + [anon_sym_RBRACE] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4454), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490911,27 +490184,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3085] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3085), [sym_preproc_endregion] = STATE(3085), [sym_preproc_line] = STATE(3085), @@ -490941,48 +490208,50 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4676), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5532), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5522), + [sym_op_right_shift] = ACTIONS(5524), + [sym_op_unsigned_right_shift] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5536), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5530), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490995,27 +490264,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3086] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), [sym_preproc_region] = STATE(3086), [sym_preproc_endregion] = STATE(3086), [sym_preproc_line] = STATE(3086), @@ -491025,48 +490273,65 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4708), - [anon_sym_QMARK] = ACTIONS(5444), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5442), - [anon_sym_from] = ACTIONS(4708), - [anon_sym_join] = ACTIONS(4708), - [anon_sym_let] = ACTIONS(4708), - [anon_sym_orderby] = ACTIONS(4708), - [anon_sym_group] = ACTIONS(4708), - [anon_sym_select] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_EQ] = ACTIONS(5577), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_where] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5510), + [anon_sym_PLUS_EQ] = ACTIONS(5579), + [anon_sym_DASH_EQ] = ACTIONS(5579), + [anon_sym_STAR_EQ] = ACTIONS(5579), + [anon_sym_SLASH_EQ] = ACTIONS(5579), + [anon_sym_PERCENT_EQ] = ACTIONS(5579), + [anon_sym_AMP_EQ] = ACTIONS(5579), + [anon_sym_CARET_EQ] = ACTIONS(5579), + [anon_sym_PIPE_EQ] = ACTIONS(5579), + [anon_sym_LT_LT_EQ] = ACTIONS(5579), + [anon_sym_GT_GT_EQ] = ACTIONS(5579), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5579), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5579), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_from] = ACTIONS(5508), + [anon_sym_join] = ACTIONS(5508), + [anon_sym_let] = ACTIONS(5508), + [anon_sym_orderby] = ACTIONS(5508), + [anon_sym_ascending] = ACTIONS(5508), + [anon_sym_descending] = ACTIONS(5508), + [anon_sym_group] = ACTIONS(5508), + [anon_sym_select] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5510), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [sym_grit_metavariable] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491079,27 +490344,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3087] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), [sym_op_eq] = STATE(1181), [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3087), [sym_preproc_endregion] = STATE(3087), [sym_preproc_line] = STATE(3087), @@ -491109,48 +490368,50 @@ 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(4774), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_RBRACK] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4774), - [aux_sym_preproc_if_token3] = ACTIONS(4774), - [aux_sym_preproc_else_token1] = ACTIONS(4774), - [aux_sym_preproc_elif_token1] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_where] = ACTIONS(5314), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5314), + [anon_sym_join] = ACTIONS(5314), + [anon_sym_let] = ACTIONS(5314), + [anon_sym_orderby] = ACTIONS(5314), + [anon_sym_ascending] = ACTIONS(5314), + [anon_sym_descending] = ACTIONS(5314), + [anon_sym_group] = ACTIONS(5314), + [anon_sym_select] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5316), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5314), + [sym_grit_metavariable] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491163,27 +490424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3088] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_type_argument_list] = STATE(3144), [sym_preproc_region] = STATE(3088), [sym_preproc_endregion] = STATE(3088), [sym_preproc_line] = STATE(3088), @@ -491193,48 +490434,64 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(5444), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4750), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5442), - [anon_sym_from] = ACTIONS(4748), - [anon_sym_join] = ACTIONS(4748), - [anon_sym_let] = ACTIONS(4748), - [anon_sym_orderby] = ACTIONS(4748), - [anon_sym_group] = ACTIONS(4748), - [anon_sym_select] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(5581), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_join] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_orderby] = ACTIONS(3957), + [anon_sym_group] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_select] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491247,27 +490504,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3089] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3089), [sym_preproc_endregion] = STATE(3089), [sym_preproc_line] = STATE(3089), @@ -491277,51 +490528,53 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4782), - [anon_sym_QMARK] = ACTIONS(5444), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4784), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5442), - [anon_sym_from] = ACTIONS(4782), - [anon_sym_join] = ACTIONS(4782), - [anon_sym_let] = ACTIONS(4782), - [anon_sym_orderby] = ACTIONS(4782), - [anon_sym_group] = ACTIONS(4782), - [anon_sym_select] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5296), + [anon_sym_QMARK] = ACTIONS(5534), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5532), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5522), + [sym_op_right_shift] = ACTIONS(5524), + [sym_op_unsigned_right_shift] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5536), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5530), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = 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), @@ -491331,27 +490584,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3090] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), [sym_op_eq] = STATE(1181), [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3090), [sym_preproc_endregion] = STATE(3090), [sym_preproc_line] = STATE(3090), @@ -491361,48 +490608,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3090), [sym_preproc_define] = STATE(3090), [sym_preproc_undef] = STATE(3090), - [anon_sym_SEMI] = ACTIONS(4794), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_RBRACK] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4794), - [anon_sym_RBRACE] = ACTIONS(4794), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4794), - [aux_sym_preproc_if_token3] = ACTIONS(4794), - [aux_sym_preproc_else_token1] = ACTIONS(4794), - [aux_sym_preproc_elif_token1] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491415,27 +490664,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3091] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), [sym_op_eq] = STATE(1181), [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3091), [sym_preproc_endregion] = STATE(3091), [sym_preproc_line] = STATE(3091), @@ -491445,48 +490688,50 @@ 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(4766), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_RBRACK] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_RBRACE] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4766), - [aux_sym_preproc_if_token3] = ACTIONS(4766), - [aux_sym_preproc_else_token1] = ACTIONS(4766), - [aux_sym_preproc_elif_token1] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491499,27 +490744,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3092] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), [sym_op_eq] = STATE(1181), [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3092), [sym_preproc_endregion] = STATE(3092), [sym_preproc_line] = STATE(3092), @@ -491529,48 +490768,50 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5522), + [sym_op_right_shift] = ACTIONS(5524), + [sym_op_unsigned_right_shift] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5530), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5300), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491583,27 +490824,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3093] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3093), [sym_preproc_endregion] = STATE(3093), [sym_preproc_line] = STATE(3093), @@ -491613,48 +490848,50 @@ 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(1435), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_RBRACK] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(1435), - [aux_sym_preproc_if_token3] = ACTIONS(1435), - [aux_sym_preproc_else_token1] = ACTIONS(1435), - [aux_sym_preproc_elif_token1] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(5364), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_RBRACK] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5364), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5549), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5565), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [aux_sym_preproc_if_token3] = ACTIONS(5364), + [aux_sym_preproc_else_token1] = ACTIONS(5364), + [aux_sym_preproc_elif_token1] = ACTIONS(5364), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491667,6 +490904,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3094] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3094), [sym_preproc_endregion] = STATE(3094), [sym_preproc_line] = STATE(3094), @@ -491676,68 +490928,50 @@ 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), - [sym__identifier_token] = ACTIONS(4487), - [anon_sym_alias] = ACTIONS(4487), - [anon_sym_global] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_COMMA] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_file] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_where] = ACTIONS(4487), - [anon_sym_QMARK] = ACTIONS(4487), - [anon_sym_notnull] = ACTIONS(4487), - [anon_sym_unmanaged] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4487), - [anon_sym_PERCENT] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4487), - [anon_sym_AMP] = ACTIONS(4487), - [anon_sym_LT_LT] = ACTIONS(4489), - [anon_sym_GT_GT] = ACTIONS(4487), - [anon_sym_GT_GT_GT] = ACTIONS(4489), - [anon_sym_EQ_EQ] = ACTIONS(4489), - [anon_sym_BANG_EQ] = ACTIONS(4489), - [anon_sym_GT_EQ] = ACTIONS(4489), - [anon_sym_LT_EQ] = ACTIONS(4489), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_scoped] = ACTIONS(4487), - [anon_sym_var] = ACTIONS(4487), - [anon_sym_yield] = ACTIONS(4487), - [anon_sym_switch] = ACTIONS(4487), - [anon_sym_when] = ACTIONS(4487), - [sym_discard] = ACTIONS(4487), - [anon_sym_DOT_DOT] = ACTIONS(4489), - [anon_sym_and] = ACTIONS(4487), - [anon_sym_or] = ACTIONS(4487), - [anon_sym_AMP_AMP] = ACTIONS(4489), - [anon_sym_PIPE_PIPE] = ACTIONS(4489), - [sym_op_coalescing] = ACTIONS(4489), - [anon_sym_from] = ACTIONS(4487), - [anon_sym_into] = ACTIONS(4487), - [anon_sym_join] = ACTIONS(4487), - [anon_sym_on] = ACTIONS(4487), - [anon_sym_equals] = ACTIONS(4487), - [anon_sym_let] = ACTIONS(4487), - [anon_sym_orderby] = ACTIONS(4487), - [anon_sym_ascending] = ACTIONS(4487), - [anon_sym_descending] = ACTIONS(4487), - [anon_sym_group] = ACTIONS(4487), - [anon_sym_by] = ACTIONS(4487), - [anon_sym_select] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4487), - [anon_sym_is] = ACTIONS(4487), - [anon_sym_DASH_GT] = ACTIONS(4489), - [anon_sym_with] = ACTIONS(4487), - [sym_grit_metavariable] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_where] = ACTIONS(5360), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5360), + [anon_sym_join] = ACTIONS(5360), + [anon_sym_let] = ACTIONS(5360), + [anon_sym_orderby] = ACTIONS(5360), + [anon_sym_ascending] = ACTIONS(5360), + [anon_sym_descending] = ACTIONS(5360), + [anon_sym_group] = ACTIONS(5360), + [anon_sym_select] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5362), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5360), + [sym_grit_metavariable] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491748,9 +490982,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4489), }, [3095] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3095), [sym_preproc_endregion] = STATE(3095), [sym_preproc_line] = STATE(3095), @@ -491760,69 +491008,50 @@ 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(4538), - [anon_sym_EQ] = ACTIONS(4540), - [anon_sym_LBRACK] = ACTIONS(4538), - [anon_sym_COLON] = ACTIONS(4538), - [anon_sym_COMMA] = ACTIONS(4538), - [anon_sym_RBRACK] = ACTIONS(4538), - [anon_sym_LPAREN] = ACTIONS(4538), - [anon_sym_RPAREN] = ACTIONS(4538), - [anon_sym_RBRACE] = ACTIONS(4538), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_in] = ACTIONS(4538), - [anon_sym_QMARK] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4540), - [anon_sym_PLUS_PLUS] = ACTIONS(4538), - [anon_sym_DASH_DASH] = ACTIONS(4538), - [anon_sym_PLUS] = ACTIONS(4540), - [anon_sym_DASH] = ACTIONS(4540), - [anon_sym_STAR] = ACTIONS(4540), - [anon_sym_SLASH] = ACTIONS(4540), - [anon_sym_PERCENT] = ACTIONS(4540), - [anon_sym_CARET] = ACTIONS(4540), - [anon_sym_PIPE] = ACTIONS(4540), - [anon_sym_AMP] = ACTIONS(4540), - [anon_sym_LT_LT] = ACTIONS(4540), - [anon_sym_GT_GT] = ACTIONS(4540), - [anon_sym_GT_GT_GT] = ACTIONS(4540), - [anon_sym_EQ_EQ] = ACTIONS(4538), - [anon_sym_BANG_EQ] = ACTIONS(4538), - [anon_sym_GT_EQ] = ACTIONS(4538), - [anon_sym_LT_EQ] = ACTIONS(4538), - [anon_sym_DOT] = ACTIONS(4540), - [anon_sym_EQ_GT] = ACTIONS(4538), - [anon_sym_switch] = ACTIONS(4538), - [anon_sym_when] = ACTIONS(4538), - [anon_sym_DOT_DOT] = ACTIONS(4538), - [anon_sym_and] = ACTIONS(4538), - [anon_sym_or] = ACTIONS(4538), - [anon_sym_PLUS_EQ] = ACTIONS(4538), - [anon_sym_DASH_EQ] = ACTIONS(4538), - [anon_sym_STAR_EQ] = ACTIONS(4538), - [anon_sym_SLASH_EQ] = ACTIONS(4538), - [anon_sym_PERCENT_EQ] = ACTIONS(4538), - [anon_sym_AMP_EQ] = ACTIONS(4538), - [anon_sym_CARET_EQ] = ACTIONS(4538), - [anon_sym_PIPE_EQ] = ACTIONS(4538), - [anon_sym_LT_LT_EQ] = ACTIONS(4538), - [anon_sym_GT_GT_EQ] = ACTIONS(4538), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), - [anon_sym_AMP_AMP] = ACTIONS(4538), - [anon_sym_PIPE_PIPE] = ACTIONS(4538), - [sym_op_coalescing] = ACTIONS(4540), - [anon_sym_on] = ACTIONS(4538), - [anon_sym_equals] = ACTIONS(4538), - [anon_sym_by] = ACTIONS(4538), - [anon_sym_as] = ACTIONS(4538), - [anon_sym_is] = ACTIONS(4538), - [anon_sym_DASH_GT] = ACTIONS(4538), - [anon_sym_with] = ACTIONS(4538), - [aux_sym_preproc_if_token3] = ACTIONS(4538), - [aux_sym_preproc_else_token1] = ACTIONS(4538), - [aux_sym_preproc_elif_token1] = ACTIONS(4538), + [anon_sym_SEMI] = ACTIONS(5360), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_RBRACK] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5360), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5360), + [aux_sym_preproc_if_token3] = ACTIONS(5360), + [aux_sym_preproc_else_token1] = ACTIONS(5360), + [aux_sym_preproc_elif_token1] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491835,27 +491064,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3096] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3096), [sym_preproc_endregion] = STATE(3096), [sym_preproc_line] = STATE(3096), @@ -491865,48 +491088,50 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_where] = ACTIONS(4774), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_from] = ACTIONS(4774), - [anon_sym_join] = ACTIONS(4774), - [anon_sym_let] = ACTIONS(4774), - [anon_sym_orderby] = ACTIONS(4774), - [anon_sym_group] = ACTIONS(4774), - [anon_sym_select] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(5328), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5328), + [anon_sym_RBRACK] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5328), + [anon_sym_RBRACE] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5549), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5565), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [aux_sym_preproc_if_token3] = ACTIONS(5328), + [aux_sym_preproc_else_token1] = ACTIONS(5328), + [aux_sym_preproc_elif_token1] = ACTIONS(5328), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491919,29 +491144,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3097] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6214), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym__lambda_parameters] = STATE(7967), - [sym_identifier] = STATE(5957), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3097), [sym_preproc_endregion] = STATE(3097), [sym_preproc_line] = STATE(3097), @@ -491951,46 +491168,50 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(5564), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4843), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_ref] = ACTIONS(5448), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(1271), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(1271), - [anon_sym_out] = ACTIONS(1271), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_this] = ACTIONS(1271), - [anon_sym_scoped] = ACTIONS(5450), - [anon_sym_params] = ACTIONS(5452), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), - [aux_sym_preproc_if_token1] = ACTIONS(5454), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(1365), + [aux_sym_preproc_if_token3] = ACTIONS(1365), + [aux_sym_preproc_else_token1] = ACTIONS(1365), + [aux_sym_preproc_elif_token1] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492003,27 +491224,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3098] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3098), [sym_preproc_endregion] = STATE(3098), [sym_preproc_line] = STATE(3098), @@ -492033,48 +491248,50 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_RBRACK] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4454), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492087,6 +491304,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3099] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3099), [sym_preproc_endregion] = STATE(3099), [sym_preproc_line] = STATE(3099), @@ -492096,69 +491328,50 @@ 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(3972), - [anon_sym_EQ] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_COLON] = ACTIONS(3972), - [anon_sym_COMMA] = ACTIONS(3972), - [anon_sym_RBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3972), - [anon_sym_RPAREN] = ACTIONS(3972), - [anon_sym_RBRACE] = ACTIONS(3972), - [anon_sym_LT] = ACTIONS(3970), - [anon_sym_GT] = ACTIONS(3970), - [anon_sym_in] = ACTIONS(3972), - [anon_sym_QMARK] = ACTIONS(3970), - [anon_sym_BANG] = ACTIONS(3970), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3970), - [anon_sym_SLASH] = ACTIONS(3970), - [anon_sym_PERCENT] = ACTIONS(3970), - [anon_sym_CARET] = ACTIONS(3970), - [anon_sym_PIPE] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_LT_LT] = ACTIONS(3970), - [anon_sym_GT_GT] = ACTIONS(3970), - [anon_sym_GT_GT_GT] = ACTIONS(3970), - [anon_sym_EQ_EQ] = ACTIONS(3972), - [anon_sym_BANG_EQ] = ACTIONS(3972), - [anon_sym_GT_EQ] = ACTIONS(3972), - [anon_sym_LT_EQ] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(3970), - [anon_sym_EQ_GT] = ACTIONS(3972), - [anon_sym_switch] = ACTIONS(3972), - [anon_sym_when] = ACTIONS(3972), - [anon_sym_DOT_DOT] = ACTIONS(3972), - [anon_sym_and] = ACTIONS(3972), - [anon_sym_or] = ACTIONS(3972), - [anon_sym_PLUS_EQ] = ACTIONS(3972), - [anon_sym_DASH_EQ] = ACTIONS(3972), - [anon_sym_STAR_EQ] = ACTIONS(3972), - [anon_sym_SLASH_EQ] = ACTIONS(3972), - [anon_sym_PERCENT_EQ] = ACTIONS(3972), - [anon_sym_AMP_EQ] = ACTIONS(3972), - [anon_sym_CARET_EQ] = ACTIONS(3972), - [anon_sym_PIPE_EQ] = ACTIONS(3972), - [anon_sym_LT_LT_EQ] = ACTIONS(3972), - [anon_sym_GT_GT_EQ] = ACTIONS(3972), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3972), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_PIPE_PIPE] = ACTIONS(3972), - [sym_op_coalescing] = ACTIONS(3970), - [anon_sym_on] = ACTIONS(3972), - [anon_sym_equals] = ACTIONS(3972), - [anon_sym_by] = ACTIONS(3972), - [anon_sym_as] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3972), - [anon_sym_DASH_GT] = ACTIONS(3972), - [anon_sym_with] = ACTIONS(3972), - [aux_sym_preproc_if_token3] = ACTIONS(3972), - [aux_sym_preproc_else_token1] = ACTIONS(3972), - [aux_sym_preproc_elif_token1] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_where] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(1365), + [anon_sym_join] = ACTIONS(1365), + [anon_sym_let] = ACTIONS(1365), + [anon_sym_orderby] = ACTIONS(1365), + [anon_sym_ascending] = ACTIONS(1365), + [anon_sym_descending] = ACTIONS(1365), + [anon_sym_group] = ACTIONS(1365), + [anon_sym_select] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(1365), + [sym_grit_metavariable] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492171,6 +491384,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3100] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3100), [sym_preproc_endregion] = STATE(3100), [sym_preproc_line] = STATE(3100), @@ -492180,69 +491408,50 @@ 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(3953), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_when] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3953), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3951), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_where] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5292), + [anon_sym_with] = ACTIONS(5352), + [sym_grit_metavariable] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492255,6 +491464,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3101] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3101), [sym_preproc_endregion] = STATE(3101), [sym_preproc_line] = STATE(3101), @@ -492264,69 +491488,50 @@ 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(4006), - [anon_sym_EQ] = ACTIONS(3991), - [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_RBRACE] = ACTIONS(4006), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_in] = ACTIONS(4006), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(3991), - [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_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_on] = ACTIONS(4006), - [anon_sym_equals] = ACTIONS(4006), - [anon_sym_by] = ACTIONS(4006), - [anon_sym_as] = ACTIONS(4006), - [anon_sym_is] = ACTIONS(4006), - [anon_sym_DASH_GT] = ACTIONS(4006), - [anon_sym_with] = ACTIONS(4006), - [aux_sym_preproc_if_token3] = ACTIONS(4006), - [aux_sym_preproc_else_token1] = ACTIONS(4006), - [aux_sym_preproc_elif_token1] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [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), @@ -492339,27 +491544,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3102] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), + [sym_op_eq] = STATE(1181), + [sym_op_neq] = STATE(1181), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3102), [sym_preproc_endregion] = STATE(3102), [sym_preproc_line] = STATE(3102), @@ -492369,48 +491568,50 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(5444), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5442), - [anon_sym_from] = ACTIONS(4790), - [anon_sym_join] = ACTIONS(4790), - [anon_sym_let] = ACTIONS(4790), - [anon_sym_orderby] = ACTIONS(4790), - [anon_sym_group] = ACTIONS(4790), - [anon_sym_select] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_where] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5292), + [anon_sym_with] = ACTIONS(5308), + [sym_grit_metavariable] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492423,27 +491624,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3103] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), [sym_op_eq] = STATE(1181), [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3103), [sym_preproc_endregion] = STATE(3103), [sym_preproc_line] = STATE(3103), @@ -492453,48 +491648,50 @@ 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(4748), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_RBRACK] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4748), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5426), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4748), - [aux_sym_preproc_else_token1] = ACTIONS(4748), - [aux_sym_preproc_elif_token1] = ACTIONS(4748), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(5534), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5532), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5522), + [sym_op_right_shift] = ACTIONS(5524), + [sym_op_unsigned_right_shift] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5536), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = 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(5380), + [anon_sym_is] = ACTIONS(5530), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5332), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492507,27 +491704,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3104] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3104), [sym_preproc_endregion] = STATE(3104), [sym_preproc_line] = STATE(3104), @@ -492537,48 +491728,50 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_where] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_from] = ACTIONS(4794), - [anon_sym_join] = ACTIONS(4794), - [anon_sym_let] = ACTIONS(4794), - [anon_sym_orderby] = ACTIONS(4794), - [anon_sym_group] = ACTIONS(4794), - [anon_sym_select] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [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), @@ -492591,27 +491784,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3105] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3105), [sym_preproc_endregion] = STATE(3105), [sym_preproc_line] = STATE(3105), @@ -492621,48 +491808,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3105), [sym_preproc_define] = STATE(3105), [sym_preproc_undef] = STATE(3105), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [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), @@ -492675,8 +491864,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3106] = { - [sym_preproc_else_in_attribute_list] = STATE(7688), - [sym_preproc_elif_in_attribute_list] = STATE(7688), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3106), [sym_preproc_endregion] = STATE(3106), [sym_preproc_line] = STATE(3106), @@ -492686,67 +491888,50 @@ 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), - [sym__identifier_token] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym_alias] = ACTIONS(5456), - [anon_sym_global] = ACTIONS(5456), - [anon_sym_unsafe] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5458), - [anon_sym_LPAREN] = ACTIONS(5458), - [anon_sym_event] = ACTIONS(5456), - [anon_sym_class] = ACTIONS(5456), - [anon_sym_ref] = ACTIONS(5456), - [anon_sym_struct] = ACTIONS(5456), - [anon_sym_enum] = ACTIONS(5456), - [anon_sym_interface] = ACTIONS(5456), - [anon_sym_delegate] = ACTIONS(5456), - [anon_sym_record] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_readonly] = ACTIONS(5456), - [anon_sym_abstract] = ACTIONS(5456), - [anon_sym_async] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_file] = ACTIONS(5456), - [anon_sym_fixed] = ACTIONS(5456), - [anon_sym_internal] = ACTIONS(5456), - [anon_sym_new] = ACTIONS(5456), - [anon_sym_override] = ACTIONS(5456), - [anon_sym_partial] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_required] = ACTIONS(5456), - [anon_sym_sealed] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_where] = ACTIONS(5456), - [anon_sym_notnull] = ACTIONS(5456), - [anon_sym_unmanaged] = ACTIONS(5456), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_implicit] = ACTIONS(5456), - [anon_sym_explicit] = ACTIONS(5456), - [anon_sym_scoped] = ACTIONS(5456), - [anon_sym_var] = ACTIONS(5456), - [sym_predefined_type] = ACTIONS(5456), - [anon_sym_yield] = ACTIONS(5456), - [anon_sym_when] = ACTIONS(5456), - [anon_sym_from] = ACTIONS(5456), - [anon_sym_into] = ACTIONS(5456), - [anon_sym_join] = ACTIONS(5456), - [anon_sym_on] = ACTIONS(5456), - [anon_sym_equals] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(5456), - [anon_sym_orderby] = ACTIONS(5456), - [anon_sym_ascending] = ACTIONS(5456), - [anon_sym_descending] = ACTIONS(5456), - [anon_sym_group] = ACTIONS(5456), - [anon_sym_by] = ACTIONS(5456), - [anon_sym_select] = ACTIONS(5456), - [sym_grit_metavariable] = ACTIONS(5458), - [aux_sym_preproc_if_token1] = ACTIONS(5458), - [aux_sym_preproc_if_token3] = ACTIONS(5460), - [aux_sym_preproc_else_token1] = ACTIONS(5462), - [aux_sym_preproc_elif_token1] = ACTIONS(5464), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5565), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [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), @@ -492759,27 +491944,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3107] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3107), [sym_preproc_endregion] = STATE(3107), [sym_preproc_line] = STATE(3107), @@ -492789,48 +491968,50 @@ 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(4770), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4770), - [anon_sym_RBRACK] = ACTIONS(4770), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4770), - [anon_sym_RBRACE] = ACTIONS(4770), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5426), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4770), - [aux_sym_preproc_else_token1] = ACTIONS(4770), - [aux_sym_preproc_elif_token1] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [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), @@ -492843,27 +492024,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3108] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3108), [sym_preproc_endregion] = STATE(3108), [sym_preproc_line] = STATE(3108), @@ -492873,48 +492048,50 @@ 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(4778), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_RBRACK] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5426), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4778), - [aux_sym_preproc_else_token1] = ACTIONS(4778), - [aux_sym_preproc_elif_token1] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [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), @@ -492927,6 +492104,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3109] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3109), [sym_preproc_endregion] = STATE(3109), [sym_preproc_line] = STATE(3109), @@ -492936,69 +492128,50 @@ 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(4970), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4972), - [anon_sym_COLON] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4972), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_in] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_PLUS_PLUS] = ACTIONS(4972), - [anon_sym_DASH_DASH] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4975), - [anon_sym_LT_LT] = ACTIONS(4975), - [anon_sym_GT_GT] = ACTIONS(4975), - [anon_sym_GT_GT_GT] = ACTIONS(4975), - [anon_sym_EQ_EQ] = ACTIONS(4972), - [anon_sym_BANG_EQ] = ACTIONS(4972), - [anon_sym_GT_EQ] = ACTIONS(4972), - [anon_sym_LT_EQ] = ACTIONS(4972), - [anon_sym_DOT] = ACTIONS(4975), - [anon_sym_EQ_GT] = ACTIONS(4970), - [anon_sym_switch] = ACTIONS(4972), - [anon_sym_when] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(4972), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4972), - [anon_sym_PIPE_PIPE] = ACTIONS(4972), - [sym_op_coalescing] = ACTIONS(4975), - [anon_sym_on] = ACTIONS(4970), - [anon_sym_equals] = ACTIONS(4970), - [anon_sym_by] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(4972), - [anon_sym_is] = ACTIONS(4972), - [anon_sym_DASH_GT] = ACTIONS(4972), - [anon_sym_with] = ACTIONS(4972), - [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(5300), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [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), @@ -493011,6 +492184,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3110] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3110), [sym_preproc_endregion] = STATE(3110), [sym_preproc_line] = STATE(3110), @@ -493020,102 +492208,77 @@ 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), - [sym__identifier_token] = ACTIONS(4468), - [anon_sym_alias] = ACTIONS(4468), - [anon_sym_global] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_COLON] = ACTIONS(4470), - [anon_sym_COMMA] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_file] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(4468), - [anon_sym_GT] = ACTIONS(4468), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_QMARK] = ACTIONS(4468), - [anon_sym_notnull] = ACTIONS(4468), - [anon_sym_unmanaged] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4470), - [anon_sym_SLASH] = ACTIONS(4468), - [anon_sym_PERCENT] = ACTIONS(4470), - [anon_sym_CARET] = ACTIONS(4470), - [anon_sym_PIPE] = ACTIONS(4468), - [anon_sym_AMP] = ACTIONS(4468), - [anon_sym_LT_LT] = ACTIONS(4470), - [anon_sym_GT_GT] = ACTIONS(4468), - [anon_sym_GT_GT_GT] = ACTIONS(4470), - [anon_sym_EQ_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_scoped] = ACTIONS(4468), - [anon_sym_var] = ACTIONS(4468), - [anon_sym_yield] = ACTIONS(4468), - [anon_sym_switch] = ACTIONS(4468), - [anon_sym_when] = ACTIONS(4468), - [sym_discard] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_and] = ACTIONS(4468), - [anon_sym_or] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_PIPE_PIPE] = ACTIONS(4470), - [sym_op_coalescing] = ACTIONS(4470), - [anon_sym_from] = ACTIONS(4468), - [anon_sym_into] = ACTIONS(4468), - [anon_sym_join] = ACTIONS(4468), - [anon_sym_on] = ACTIONS(4468), - [anon_sym_equals] = ACTIONS(4468), - [anon_sym_let] = ACTIONS(4468), - [anon_sym_orderby] = ACTIONS(4468), - [anon_sym_ascending] = ACTIONS(4468), - [anon_sym_descending] = ACTIONS(4468), - [anon_sym_group] = ACTIONS(4468), - [anon_sym_by] = ACTIONS(4468), - [anon_sym_select] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_is] = ACTIONS(4468), - [anon_sym_DASH_GT] = ACTIONS(4470), - [anon_sym_with] = ACTIONS(4468), - [sym_grit_metavariable] = ACTIONS(4470), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [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), }, [3111] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3111), [sym_preproc_endregion] = STATE(3111), [sym_preproc_line] = STATE(3111), @@ -493125,48 +492288,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3111), [sym_preproc_define] = STATE(3111), [sym_preproc_undef] = STATE(3111), - [anon_sym_SEMI] = ACTIONS(4782), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_RBRACK] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5426), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4782), - [aux_sym_preproc_else_token1] = ACTIONS(4782), - [aux_sym_preproc_elif_token1] = ACTIONS(4782), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [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), @@ -493179,6 +492344,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3112] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3112), [sym_preproc_endregion] = STATE(3112), [sym_preproc_line] = STATE(3112), @@ -493188,69 +492368,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3112), [sym_preproc_define] = STATE(3112), [sym_preproc_undef] = STATE(3112), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_EQ] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3976), - [anon_sym_COLON] = ACTIONS(3976), - [anon_sym_COMMA] = ACTIONS(3976), - [anon_sym_RBRACK] = ACTIONS(3976), - [anon_sym_LPAREN] = ACTIONS(3976), - [anon_sym_RPAREN] = ACTIONS(3976), - [anon_sym_RBRACE] = ACTIONS(3976), - [anon_sym_LT] = ACTIONS(3974), - [anon_sym_GT] = ACTIONS(3974), - [anon_sym_in] = ACTIONS(3976), - [anon_sym_QMARK] = ACTIONS(3974), - [anon_sym_BANG] = ACTIONS(3974), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3974), - [anon_sym_PERCENT] = ACTIONS(3974), - [anon_sym_CARET] = ACTIONS(3974), - [anon_sym_PIPE] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_LT_LT] = ACTIONS(3974), - [anon_sym_GT_GT] = ACTIONS(3974), - [anon_sym_GT_GT_GT] = ACTIONS(3974), - [anon_sym_EQ_EQ] = ACTIONS(3976), - [anon_sym_BANG_EQ] = ACTIONS(3976), - [anon_sym_GT_EQ] = ACTIONS(3976), - [anon_sym_LT_EQ] = ACTIONS(3976), - [anon_sym_DOT] = ACTIONS(3974), - [anon_sym_EQ_GT] = ACTIONS(3976), - [anon_sym_switch] = ACTIONS(3976), - [anon_sym_when] = ACTIONS(3976), - [anon_sym_DOT_DOT] = ACTIONS(3976), - [anon_sym_and] = ACTIONS(3976), - [anon_sym_or] = ACTIONS(3976), - [anon_sym_PLUS_EQ] = ACTIONS(3976), - [anon_sym_DASH_EQ] = ACTIONS(3976), - [anon_sym_STAR_EQ] = ACTIONS(3976), - [anon_sym_SLASH_EQ] = ACTIONS(3976), - [anon_sym_PERCENT_EQ] = ACTIONS(3976), - [anon_sym_AMP_EQ] = ACTIONS(3976), - [anon_sym_CARET_EQ] = ACTIONS(3976), - [anon_sym_PIPE_EQ] = ACTIONS(3976), - [anon_sym_LT_LT_EQ] = ACTIONS(3976), - [anon_sym_GT_GT_EQ] = ACTIONS(3976), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3976), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_PIPE_PIPE] = ACTIONS(3976), - [sym_op_coalescing] = ACTIONS(3974), - [anon_sym_on] = ACTIONS(3976), - [anon_sym_equals] = ACTIONS(3976), - [anon_sym_by] = ACTIONS(3976), - [anon_sym_as] = ACTIONS(3976), - [anon_sym_is] = ACTIONS(3976), - [anon_sym_DASH_GT] = ACTIONS(3976), - [anon_sym_with] = ACTIONS(3976), - [aux_sym_preproc_if_token3] = ACTIONS(3976), - [aux_sym_preproc_else_token1] = ACTIONS(3976), - [aux_sym_preproc_elif_token1] = ACTIONS(3976), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [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), @@ -493263,27 +492424,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3113] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3113), [sym_preproc_endregion] = STATE(3113), [sym_preproc_line] = STATE(3113), @@ -493293,48 +492448,50 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4778), - [anon_sym_QMARK] = ACTIONS(5444), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5442), - [anon_sym_from] = ACTIONS(4778), - [anon_sym_join] = ACTIONS(4778), - [anon_sym_let] = ACTIONS(4778), - [anon_sym_orderby] = ACTIONS(4778), - [anon_sym_group] = ACTIONS(4778), - [anon_sym_select] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [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), @@ -493347,27 +492504,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3114] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), [sym_preproc_region] = STATE(3114), [sym_preproc_endregion] = STATE(3114), [sym_preproc_line] = STATE(3114), @@ -493377,48 +492513,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3114), [sym_preproc_define] = STATE(3114), [sym_preproc_undef] = STATE(3114), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4752), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_from] = ACTIONS(4752), - [anon_sym_join] = ACTIONS(4752), - [anon_sym_let] = ACTIONS(4752), - [anon_sym_orderby] = ACTIONS(4752), - [anon_sym_group] = ACTIONS(4752), - [anon_sym_select] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4752), + [sym__identifier_token] = ACTIONS(5202), + [anon_sym_extern] = ACTIONS(5202), + [anon_sym_alias] = ACTIONS(5202), + [anon_sym_global] = ACTIONS(5202), + [anon_sym_unsafe] = ACTIONS(5202), + [anon_sym_static] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_LPAREN] = ACTIONS(5204), + [anon_sym_event] = ACTIONS(5202), + [anon_sym_class] = ACTIONS(5202), + [anon_sym_ref] = ACTIONS(5202), + [anon_sym_struct] = ACTIONS(5202), + [anon_sym_enum] = ACTIONS(5202), + [anon_sym_interface] = ACTIONS(5202), + [anon_sym_delegate] = ACTIONS(5202), + [anon_sym_record] = ACTIONS(5202), + [anon_sym_public] = ACTIONS(5202), + [anon_sym_private] = ACTIONS(5202), + [anon_sym_readonly] = ACTIONS(5202), + [anon_sym_abstract] = ACTIONS(5202), + [anon_sym_async] = ACTIONS(5202), + [anon_sym_const] = ACTIONS(5202), + [anon_sym_file] = ACTIONS(5202), + [anon_sym_fixed] = ACTIONS(5202), + [anon_sym_internal] = ACTIONS(5202), + [anon_sym_new] = ACTIONS(5202), + [anon_sym_override] = ACTIONS(5202), + [anon_sym_partial] = ACTIONS(5202), + [anon_sym_protected] = ACTIONS(5202), + [anon_sym_required] = ACTIONS(5202), + [anon_sym_sealed] = ACTIONS(5202), + [anon_sym_virtual] = ACTIONS(5202), + [anon_sym_volatile] = ACTIONS(5202), + [anon_sym_where] = ACTIONS(5202), + [anon_sym_notnull] = ACTIONS(5202), + [anon_sym_unmanaged] = ACTIONS(5202), + [anon_sym_implicit] = ACTIONS(5202), + [anon_sym_explicit] = ACTIONS(5202), + [anon_sym_TILDE] = ACTIONS(5204), + [anon_sym_scoped] = ACTIONS(5202), + [anon_sym_var] = ACTIONS(5202), + [sym_predefined_type] = ACTIONS(5202), + [anon_sym_yield] = ACTIONS(5202), + [anon_sym_when] = ACTIONS(5202), + [anon_sym_from] = ACTIONS(5202), + [anon_sym_into] = ACTIONS(5202), + [anon_sym_join] = ACTIONS(5202), + [anon_sym_on] = ACTIONS(5202), + [anon_sym_equals] = ACTIONS(5202), + [anon_sym_let] = ACTIONS(5202), + [anon_sym_orderby] = ACTIONS(5202), + [anon_sym_ascending] = ACTIONS(5202), + [anon_sym_descending] = ACTIONS(5202), + [anon_sym_group] = ACTIONS(5202), + [anon_sym_by] = ACTIONS(5202), + [anon_sym_select] = ACTIONS(5202), + [sym_grit_metavariable] = ACTIONS(5204), + [aux_sym_preproc_if_token1] = ACTIONS(5204), + [aux_sym_preproc_if_token3] = ACTIONS(5584), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493431,6 +492584,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3115] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3115), [sym_preproc_endregion] = STATE(3115), [sym_preproc_line] = STATE(3115), @@ -493440,102 +492608,77 @@ 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), - [sym__identifier_token] = ACTIONS(4481), - [anon_sym_alias] = ACTIONS(4481), - [anon_sym_global] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4483), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_COMMA] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4483), - [anon_sym_file] = ACTIONS(4481), - [anon_sym_LT] = ACTIONS(4481), - [anon_sym_GT] = ACTIONS(4481), - [anon_sym_where] = ACTIONS(4481), - [anon_sym_QMARK] = ACTIONS(4481), - [anon_sym_notnull] = ACTIONS(4481), - [anon_sym_unmanaged] = ACTIONS(4481), - [anon_sym_BANG] = ACTIONS(4481), - [anon_sym_PLUS_PLUS] = ACTIONS(4483), - [anon_sym_DASH_DASH] = ACTIONS(4483), - [anon_sym_PLUS] = ACTIONS(4481), - [anon_sym_DASH] = ACTIONS(4481), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_SLASH] = ACTIONS(4481), - [anon_sym_PERCENT] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym_PIPE] = ACTIONS(4481), - [anon_sym_AMP] = ACTIONS(4481), - [anon_sym_LT_LT] = ACTIONS(4483), - [anon_sym_GT_GT] = ACTIONS(4481), - [anon_sym_GT_GT_GT] = ACTIONS(4483), - [anon_sym_EQ_EQ] = ACTIONS(4483), - [anon_sym_BANG_EQ] = ACTIONS(4483), - [anon_sym_GT_EQ] = ACTIONS(4483), - [anon_sym_LT_EQ] = ACTIONS(4483), - [anon_sym_DOT] = ACTIONS(4481), - [anon_sym_scoped] = ACTIONS(4481), - [anon_sym_var] = ACTIONS(4481), - [anon_sym_yield] = ACTIONS(4481), - [anon_sym_switch] = ACTIONS(4481), - [anon_sym_when] = ACTIONS(4481), - [sym_discard] = ACTIONS(4481), - [anon_sym_DOT_DOT] = ACTIONS(4483), - [anon_sym_and] = ACTIONS(4481), - [anon_sym_or] = ACTIONS(4481), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_PIPE_PIPE] = ACTIONS(4483), - [sym_op_coalescing] = ACTIONS(4483), - [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), - [anon_sym_as] = ACTIONS(4481), - [anon_sym_is] = ACTIONS(4481), - [anon_sym_DASH_GT] = ACTIONS(4483), - [anon_sym_with] = ACTIONS(4481), - [sym_grit_metavariable] = ACTIONS(4483), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4483), + [anon_sym_SEMI] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_RBRACK] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5356), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5549), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5565), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [aux_sym_preproc_if_token3] = ACTIONS(5356), + [aux_sym_preproc_else_token1] = ACTIONS(5356), + [aux_sym_preproc_elif_token1] = ACTIONS(5356), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3116] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3116), [sym_preproc_endregion] = STATE(3116), [sym_preproc_line] = STATE(3116), @@ -493545,48 +492688,50 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(5336), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_RBRACK] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5336), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5549), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5565), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [aux_sym_preproc_if_token3] = ACTIONS(5336), + [aux_sym_preproc_else_token1] = ACTIONS(5336), + [aux_sym_preproc_elif_token1] = ACTIONS(5336), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493599,27 +492744,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3117] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1182), + [sym_op_lte] = STATE(1182), [sym_op_eq] = STATE(1181), [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_op_gt] = STATE(1182), + [sym_op_gte] = STATE(1182), + [sym_op_and] = STATE(1175), + [sym_op_or] = STATE(1174), + [sym_op_bitwise_and] = STATE(1172), + [sym_op_bitwise_xor] = STATE(1170), + [sym_op_plus] = STATE(1168), + [sym_op_minus] = STATE(1168), + [sym_op_multiply] = STATE(1198), [sym_preproc_region] = STATE(3117), [sym_preproc_endregion] = STATE(3117), [sym_preproc_line] = STATE(3117), @@ -493629,48 +492768,50 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5586), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5586), + [anon_sym_QMARK] = ACTIONS(5534), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5520), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5532), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5522), + [sym_op_right_shift] = ACTIONS(5524), + [sym_op_unsigned_right_shift] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5526), + [sym_op_modulo] = ACTIONS(5528), + [sym_op_coalescing] = ACTIONS(5536), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_from] = ACTIONS(5586), + [anon_sym_join] = ACTIONS(5586), + [anon_sym_let] = ACTIONS(5586), + [anon_sym_orderby] = ACTIONS(5586), + [anon_sym_ascending] = ACTIONS(5588), + [anon_sym_descending] = ACTIONS(5588), + [anon_sym_group] = ACTIONS(5586), + [anon_sym_select] = ACTIONS(5586), + [anon_sym_as] = ACTIONS(5380), + [anon_sym_is] = ACTIONS(5530), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5294), + [sym_grit_metavariable] = ACTIONS(5588), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493683,27 +492824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3118] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_initializer_expression] = STATE(3319), [sym_preproc_region] = STATE(3118), [sym_preproc_endregion] = STATE(3118), [sym_preproc_line] = STATE(3118), @@ -493713,48 +492834,64 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(5590), + [anon_sym_LBRACK] = ACTIONS(5590), + [anon_sym_COLON] = ACTIONS(5590), + [anon_sym_COMMA] = ACTIONS(5590), + [anon_sym_RBRACK] = ACTIONS(5590), + [anon_sym_LPAREN] = ACTIONS(5590), + [anon_sym_RPAREN] = ACTIONS(5590), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(5590), + [anon_sym_LT] = ACTIONS(5592), + [anon_sym_GT] = ACTIONS(5592), + [anon_sym_in] = ACTIONS(5592), + [anon_sym_where] = ACTIONS(5590), + [anon_sym_QMARK] = ACTIONS(5592), + [anon_sym_DOT] = ACTIONS(5592), + [anon_sym_EQ_GT] = ACTIONS(5590), + [anon_sym_STAR] = ACTIONS(5590), + [anon_sym_switch] = ACTIONS(5590), + [anon_sym_DOT_DOT] = ACTIONS(5590), + [anon_sym_LT_EQ] = ACTIONS(5590), + [anon_sym_GT_EQ] = ACTIONS(5590), + [anon_sym_and] = ACTIONS(5590), + [anon_sym_or] = ACTIONS(5592), + [anon_sym_EQ_EQ] = ACTIONS(5590), + [anon_sym_BANG_EQ] = ACTIONS(5590), + [anon_sym_AMP_AMP] = ACTIONS(5590), + [anon_sym_PIPE_PIPE] = ACTIONS(5590), + [anon_sym_AMP] = ACTIONS(5592), + [sym_op_bitwise_or] = ACTIONS(5592), + [anon_sym_CARET] = ACTIONS(5590), + [sym_op_left_shift] = ACTIONS(5590), + [sym_op_right_shift] = ACTIONS(5592), + [sym_op_unsigned_right_shift] = ACTIONS(5590), + [anon_sym_PLUS] = ACTIONS(5592), + [anon_sym_DASH] = ACTIONS(5592), + [sym_op_divide] = ACTIONS(5592), + [sym_op_modulo] = ACTIONS(5590), + [sym_op_coalescing] = ACTIONS(5590), + [anon_sym_BANG] = ACTIONS(5592), + [anon_sym_PLUS_PLUS] = ACTIONS(5590), + [anon_sym_DASH_DASH] = ACTIONS(5590), + [anon_sym_from] = ACTIONS(5590), + [anon_sym_into] = ACTIONS(5590), + [anon_sym_join] = ACTIONS(5590), + [anon_sym_on] = ACTIONS(5590), + [anon_sym_equals] = ACTIONS(5590), + [anon_sym_let] = ACTIONS(5590), + [anon_sym_orderby] = ACTIONS(5590), + [anon_sym_group] = ACTIONS(5590), + [anon_sym_by] = ACTIONS(5590), + [anon_sym_select] = ACTIONS(5590), + [anon_sym_as] = ACTIONS(5590), + [anon_sym_is] = ACTIONS(5590), + [anon_sym_DASH_GT] = ACTIONS(5590), + [anon_sym_with] = ACTIONS(5590), + [aux_sym_preproc_if_token3] = ACTIONS(5590), + [aux_sym_preproc_else_token1] = ACTIONS(5590), + [aux_sym_preproc_elif_token1] = ACTIONS(5590), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493767,27 +492904,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3119] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3119), [sym_preproc_endregion] = STATE(3119), [sym_preproc_line] = STATE(3119), @@ -493797,48 +492928,50 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_RBRACK] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5549), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5565), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [aux_sym_preproc_if_token3] = ACTIONS(5332), + [aux_sym_preproc_else_token1] = ACTIONS(5332), + [aux_sym_preproc_elif_token1] = ACTIONS(5332), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493851,27 +492984,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3120] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3120), [sym_preproc_endregion] = STATE(3120), [sym_preproc_line] = STATE(3120), @@ -493881,48 +493008,50 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(5314), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_RBRACK] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5314), + [aux_sym_preproc_if_token3] = ACTIONS(5314), + [aux_sym_preproc_else_token1] = ACTIONS(5314), + [aux_sym_preproc_elif_token1] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493935,27 +493064,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3121] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3121), [sym_preproc_endregion] = STATE(3121), [sym_preproc_line] = STATE(3121), @@ -493965,48 +493088,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3121), [sym_preproc_define] = STATE(3121), [sym_preproc_undef] = STATE(3121), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(5232), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5232), + [anon_sym_RBRACK] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5232), + [anon_sym_RBRACE] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5549), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5565), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [aux_sym_preproc_if_token3] = ACTIONS(5232), + [aux_sym_preproc_else_token1] = ACTIONS(5232), + [aux_sym_preproc_elif_token1] = ACTIONS(5232), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494019,27 +493144,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3122] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(3122), [sym_preproc_endregion] = STATE(3122), [sym_preproc_line] = STATE(3122), @@ -494049,48 +493168,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3122), [sym_preproc_define] = STATE(3122), [sym_preproc_undef] = STATE(3122), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(5296), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_RBRACK] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5296), + [anon_sym_RBRACE] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5549), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(5553), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5565), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(5573), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), + [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), @@ -494112,69 +493233,64 @@ 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(3957), - [anon_sym_EQ] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_RBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_RBRACE] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3955), - [anon_sym_GT] = ACTIONS(3955), - [anon_sym_in] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3955), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_CARET] = ACTIONS(3955), - [anon_sym_PIPE] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_LT_LT] = ACTIONS(3955), - [anon_sym_GT_GT] = ACTIONS(3955), - [anon_sym_GT_GT_GT] = ACTIONS(3955), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_EQ_GT] = ACTIONS(3957), - [anon_sym_switch] = ACTIONS(3957), - [anon_sym_when] = ACTIONS(3957), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3957), - [anon_sym_or] = ACTIONS(3957), - [anon_sym_PLUS_EQ] = ACTIONS(3957), - [anon_sym_DASH_EQ] = ACTIONS(3957), - [anon_sym_STAR_EQ] = ACTIONS(3957), - [anon_sym_SLASH_EQ] = ACTIONS(3957), - [anon_sym_PERCENT_EQ] = ACTIONS(3957), - [anon_sym_AMP_EQ] = ACTIONS(3957), - [anon_sym_CARET_EQ] = ACTIONS(3957), - [anon_sym_PIPE_EQ] = ACTIONS(3957), - [anon_sym_LT_LT_EQ] = ACTIONS(3957), - [anon_sym_GT_GT_EQ] = ACTIONS(3957), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [sym_op_coalescing] = ACTIONS(3955), - [anon_sym_on] = ACTIONS(3957), - [anon_sym_equals] = ACTIONS(3957), - [anon_sym_by] = ACTIONS(3957), - [anon_sym_as] = ACTIONS(3957), - [anon_sym_is] = ACTIONS(3957), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3957), - [aux_sym_preproc_if_token3] = ACTIONS(3957), - [aux_sym_preproc_else_token1] = ACTIONS(3957), - [aux_sym_preproc_elif_token1] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(5594), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_where] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(5596), + [anon_sym_DASH_EQ] = ACTIONS(5596), + [anon_sym_STAR_EQ] = ACTIONS(5596), + [anon_sym_SLASH_EQ] = ACTIONS(5596), + [anon_sym_PERCENT_EQ] = ACTIONS(5596), + [anon_sym_AMP_EQ] = ACTIONS(5596), + [anon_sym_CARET_EQ] = ACTIONS(5596), + [anon_sym_PIPE_EQ] = ACTIONS(5596), + [anon_sym_LT_LT_EQ] = ACTIONS(5596), + [anon_sym_GT_GT_EQ] = ACTIONS(5596), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5596), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5596), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_from] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_join] = ACTIONS(5508), + [anon_sym_let] = ACTIONS(5508), + [anon_sym_orderby] = ACTIONS(5508), + [anon_sym_ascending] = ACTIONS(5508), + [anon_sym_descending] = ACTIONS(5508), + [anon_sym_group] = ACTIONS(5508), + [anon_sym_select] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5510), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [sym_grit_metavariable] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494187,30 +493303,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3124] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_tuple_pattern] = STATE(7110), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6403), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6007), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3124), [sym_preproc_endregion] = STATE(3124), [sym_preproc_line] = STATE(3124), @@ -494220,45 +493327,49 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3658), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_LPAREN] = ACTIONS(5466), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_ref] = ACTIONS(5448), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(1271), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(1271), - [anon_sym_out] = ACTIONS(1271), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_this] = ACTIONS(1271), - [anon_sym_scoped] = ACTIONS(5468), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [sym_discard] = ACTIONS(5470), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), - [aux_sym_preproc_if_token1] = ACTIONS(5454), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5604), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494271,27 +493382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3125] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1178), - [sym_op_lte] = STATE(1178), - [sym_op_eq] = STATE(1181), - [sym_op_neq] = STATE(1181), - [sym_op_gt] = STATE(1178), - [sym_op_gte] = STATE(1178), - [sym_op_and] = STATE(1199), - [sym_op_or] = STATE(1203), - [sym_op_bitwise_and] = STATE(1204), - [sym_op_bitwise_or] = STATE(1205), - [sym_op_bitwise_xor] = STATE(1206), - [sym_op_left_shift] = STATE(1212), - [sym_op_right_shift] = STATE(1212), - [sym_op_unsigned_right_shift] = STATE(1212), - [sym_op_plus] = STATE(1216), - [sym_op_minus] = STATE(1216), - [sym_op_multiply] = STATE(1218), - [sym_op_divide] = STATE(1218), - [sym_op_modulo] = STATE(1218), + [sym_initializer_expression] = STATE(3362), [sym_preproc_region] = STATE(3125), [sym_preproc_endregion] = STATE(3125), [sym_preproc_line] = STATE(3125), @@ -494301,48 +493392,63 @@ 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(4708), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_RBRACK] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4708), - [anon_sym_RBRACE] = ACTIONS(4708), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5426), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5420), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4708), - [aux_sym_preproc_else_token1] = ACTIONS(4708), - [aux_sym_preproc_elif_token1] = ACTIONS(4708), + [anon_sym_SEMI] = ACTIONS(5590), + [anon_sym_LBRACK] = ACTIONS(5590), + [anon_sym_COLON] = ACTIONS(5590), + [anon_sym_COMMA] = ACTIONS(5590), + [anon_sym_RBRACK] = ACTIONS(5590), + [anon_sym_LPAREN] = ACTIONS(5590), + [anon_sym_RPAREN] = ACTIONS(5590), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(5590), + [anon_sym_LT] = ACTIONS(5592), + [anon_sym_GT] = ACTIONS(5592), + [anon_sym_in] = ACTIONS(5590), + [anon_sym_where] = ACTIONS(5590), + [anon_sym_QMARK] = ACTIONS(5592), + [anon_sym_DOT] = ACTIONS(5592), + [anon_sym_EQ_GT] = ACTIONS(5590), + [anon_sym_STAR] = ACTIONS(5590), + [anon_sym_switch] = ACTIONS(5590), + [anon_sym_DOT_DOT] = ACTIONS(5590), + [anon_sym_LT_EQ] = ACTIONS(5590), + [anon_sym_GT_EQ] = ACTIONS(5590), + [anon_sym_and] = ACTIONS(5590), + [anon_sym_or] = ACTIONS(5592), + [anon_sym_EQ_EQ] = ACTIONS(5590), + [anon_sym_BANG_EQ] = ACTIONS(5590), + [anon_sym_AMP_AMP] = ACTIONS(5590), + [anon_sym_PIPE_PIPE] = ACTIONS(5590), + [anon_sym_AMP] = ACTIONS(5592), + [sym_op_bitwise_or] = ACTIONS(5592), + [anon_sym_CARET] = ACTIONS(5590), + [sym_op_left_shift] = ACTIONS(5590), + [sym_op_right_shift] = ACTIONS(5592), + [sym_op_unsigned_right_shift] = ACTIONS(5590), + [anon_sym_PLUS] = ACTIONS(5592), + [anon_sym_DASH] = ACTIONS(5592), + [sym_op_divide] = ACTIONS(5592), + [sym_op_modulo] = ACTIONS(5590), + [sym_op_coalescing] = ACTIONS(5590), + [anon_sym_BANG] = ACTIONS(5592), + [anon_sym_PLUS_PLUS] = ACTIONS(5590), + [anon_sym_DASH_DASH] = ACTIONS(5590), + [anon_sym_from] = ACTIONS(5590), + [anon_sym_join] = ACTIONS(5590), + [anon_sym_on] = ACTIONS(5590), + [anon_sym_equals] = ACTIONS(5590), + [anon_sym_let] = ACTIONS(5590), + [anon_sym_orderby] = ACTIONS(5590), + [anon_sym_group] = ACTIONS(5590), + [anon_sym_by] = ACTIONS(5590), + [anon_sym_select] = ACTIONS(5590), + [anon_sym_as] = ACTIONS(5590), + [anon_sym_is] = ACTIONS(5590), + [anon_sym_DASH_GT] = ACTIONS(5590), + [anon_sym_with] = ACTIONS(5590), + [aux_sym_preproc_if_token3] = ACTIONS(5590), + [aux_sym_preproc_else_token1] = ACTIONS(5590), + [aux_sym_preproc_elif_token1] = ACTIONS(5590), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494364,69 +493470,64 @@ 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_SEMI] = ACTIONS(4546), - [anon_sym_EQ] = ACTIONS(4548), - [anon_sym_LBRACK] = ACTIONS(4546), - [anon_sym_COLON] = ACTIONS(4546), - [anon_sym_COMMA] = ACTIONS(4546), - [anon_sym_RBRACK] = ACTIONS(4546), - [anon_sym_LPAREN] = ACTIONS(4546), - [anon_sym_RPAREN] = ACTIONS(4546), - [anon_sym_RBRACE] = ACTIONS(4546), - [anon_sym_LT] = ACTIONS(4548), - [anon_sym_GT] = ACTIONS(4548), - [anon_sym_in] = ACTIONS(4546), - [anon_sym_QMARK] = ACTIONS(4548), - [anon_sym_BANG] = ACTIONS(4548), - [anon_sym_PLUS_PLUS] = ACTIONS(4546), - [anon_sym_DASH_DASH] = ACTIONS(4546), - [anon_sym_PLUS] = ACTIONS(4548), - [anon_sym_DASH] = ACTIONS(4548), - [anon_sym_STAR] = ACTIONS(4548), - [anon_sym_SLASH] = ACTIONS(4548), - [anon_sym_PERCENT] = ACTIONS(4548), - [anon_sym_CARET] = ACTIONS(4548), - [anon_sym_PIPE] = ACTIONS(4548), - [anon_sym_AMP] = ACTIONS(4548), - [anon_sym_LT_LT] = ACTIONS(4548), - [anon_sym_GT_GT] = ACTIONS(4548), - [anon_sym_GT_GT_GT] = ACTIONS(4548), - [anon_sym_EQ_EQ] = ACTIONS(4546), - [anon_sym_BANG_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_DOT] = ACTIONS(4548), - [anon_sym_EQ_GT] = ACTIONS(4546), - [anon_sym_switch] = ACTIONS(4546), - [anon_sym_when] = ACTIONS(4546), - [anon_sym_DOT_DOT] = ACTIONS(4546), - [anon_sym_and] = ACTIONS(4546), - [anon_sym_or] = ACTIONS(4546), - [anon_sym_PLUS_EQ] = ACTIONS(4546), - [anon_sym_DASH_EQ] = ACTIONS(4546), - [anon_sym_STAR_EQ] = ACTIONS(4546), - [anon_sym_SLASH_EQ] = ACTIONS(4546), - [anon_sym_PERCENT_EQ] = ACTIONS(4546), - [anon_sym_AMP_EQ] = ACTIONS(4546), - [anon_sym_CARET_EQ] = ACTIONS(4546), - [anon_sym_PIPE_EQ] = ACTIONS(4546), - [anon_sym_LT_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_GT_EQ] = ACTIONS(4546), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4546), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4546), - [anon_sym_AMP_AMP] = ACTIONS(4546), - [anon_sym_PIPE_PIPE] = ACTIONS(4546), - [sym_op_coalescing] = ACTIONS(4548), - [anon_sym_on] = ACTIONS(4546), - [anon_sym_equals] = ACTIONS(4546), - [anon_sym_by] = ACTIONS(4546), - [anon_sym_as] = ACTIONS(4546), - [anon_sym_is] = ACTIONS(4546), - [anon_sym_DASH_GT] = ACTIONS(4546), - [anon_sym_with] = ACTIONS(4546), - [aux_sym_preproc_if_token3] = ACTIONS(4546), - [aux_sym_preproc_else_token1] = ACTIONS(4546), - [aux_sym_preproc_elif_token1] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(3961), + [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_LBRACE] = ACTIONS(3961), + [anon_sym_RBRACE] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_GT] = ACTIONS(3959), + [anon_sym_in] = ACTIONS(3959), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_DOT] = ACTIONS(3959), + [anon_sym_EQ_GT] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3961), + [anon_sym_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_EQ] = ACTIONS(3961), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3959), + [anon_sym_EQ_EQ] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [sym_op_bitwise_or] = ACTIONS(3959), + [anon_sym_CARET] = ACTIONS(3961), + [sym_op_left_shift] = ACTIONS(3961), + [sym_op_right_shift] = ACTIONS(3959), + [sym_op_unsigned_right_shift] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3959), + [sym_op_divide] = ACTIONS(3959), + [sym_op_modulo] = ACTIONS(3961), + [sym_op_coalescing] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3959), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), + [anon_sym_with] = ACTIONS(3961), + [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), @@ -494439,27 +493540,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3127] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), [sym_preproc_region] = STATE(3127), [sym_preproc_endregion] = STATE(3127), [sym_preproc_line] = STATE(3127), @@ -494469,48 +493549,64 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_from] = ACTIONS(4766), - [anon_sym_join] = ACTIONS(4766), - [anon_sym_let] = ACTIONS(4766), - [anon_sym_orderby] = ACTIONS(4766), - [anon_sym_group] = ACTIONS(4766), - [anon_sym_select] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_COLON] = ACTIONS(3982), + [anon_sym_COMMA] = ACTIONS(3982), + [anon_sym_RBRACK] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym_RPAREN] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3982), + [anon_sym_RBRACE] = ACTIONS(3982), + [anon_sym_LT] = ACTIONS(3980), + [anon_sym_GT] = ACTIONS(3980), + [anon_sym_in] = ACTIONS(3980), + [anon_sym_where] = ACTIONS(3982), + [anon_sym_QMARK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_EQ_GT] = ACTIONS(3982), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_switch] = ACTIONS(3982), + [anon_sym_DOT_DOT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_EQ] = ACTIONS(3982), + [anon_sym_and] = ACTIONS(3982), + [anon_sym_or] = ACTIONS(3980), + [anon_sym_EQ_EQ] = ACTIONS(3982), + [anon_sym_BANG_EQ] = ACTIONS(3982), + [anon_sym_AMP_AMP] = ACTIONS(3982), + [anon_sym_PIPE_PIPE] = ACTIONS(3982), + [anon_sym_AMP] = ACTIONS(3980), + [sym_op_bitwise_or] = ACTIONS(3980), + [anon_sym_CARET] = ACTIONS(3982), + [sym_op_left_shift] = ACTIONS(3982), + [sym_op_right_shift] = ACTIONS(3980), + [sym_op_unsigned_right_shift] = ACTIONS(3982), + [anon_sym_PLUS] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3980), + [sym_op_divide] = ACTIONS(3980), + [sym_op_modulo] = ACTIONS(3982), + [sym_op_coalescing] = ACTIONS(3982), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3982), + [anon_sym_from] = ACTIONS(3982), + [anon_sym_into] = ACTIONS(3982), + [anon_sym_join] = ACTIONS(3982), + [anon_sym_on] = ACTIONS(3982), + [anon_sym_equals] = ACTIONS(3982), + [anon_sym_let] = ACTIONS(3982), + [anon_sym_orderby] = ACTIONS(3982), + [anon_sym_group] = ACTIONS(3982), + [anon_sym_by] = ACTIONS(3982), + [anon_sym_select] = ACTIONS(3982), + [anon_sym_as] = ACTIONS(3982), + [anon_sym_is] = ACTIONS(3982), + [anon_sym_DASH_GT] = ACTIONS(3982), + [anon_sym_with] = ACTIONS(3982), + [aux_sym_preproc_if_token3] = ACTIONS(3982), + [aux_sym_preproc_else_token1] = ACTIONS(3982), + [aux_sym_preproc_elif_token1] = ACTIONS(3982), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494523,27 +493619,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3128] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), [sym_preproc_region] = STATE(3128), [sym_preproc_endregion] = STATE(3128), [sym_preproc_line] = STATE(3128), @@ -494553,48 +493628,64 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_join] = ACTIONS(1435), - [anon_sym_let] = ACTIONS(1435), - [anon_sym_orderby] = ACTIONS(1435), - [anon_sym_group] = ACTIONS(1435), - [anon_sym_select] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_in] = ACTIONS(3951), + [anon_sym_where] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_EQ_GT] = ACTIONS(3953), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_switch] = ACTIONS(3953), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3953), + [anon_sym_or] = ACTIONS(3951), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP] = ACTIONS(3951), + [sym_op_bitwise_or] = ACTIONS(3951), + [anon_sym_CARET] = ACTIONS(3953), + [sym_op_left_shift] = ACTIONS(3953), + [sym_op_right_shift] = ACTIONS(3951), + [sym_op_unsigned_right_shift] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [sym_op_divide] = ACTIONS(3951), + [sym_op_modulo] = ACTIONS(3953), + [sym_op_coalescing] = ACTIONS(3953), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_from] = ACTIONS(3953), + [anon_sym_into] = ACTIONS(3953), + [anon_sym_join] = ACTIONS(3953), + [anon_sym_on] = ACTIONS(3953), + [anon_sym_equals] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_orderby] = ACTIONS(3953), + [anon_sym_group] = ACTIONS(3953), + [anon_sym_by] = ACTIONS(3953), + [anon_sym_select] = ACTIONS(3953), + [anon_sym_as] = ACTIONS(3953), + [anon_sym_is] = ACTIONS(3953), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3953), + [aux_sym_preproc_if_token3] = ACTIONS(3953), + [aux_sym_preproc_else_token1] = ACTIONS(3953), + [aux_sym_preproc_elif_token1] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494616,69 +493707,64 @@ 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(4550), - [anon_sym_EQ] = ACTIONS(4552), - [anon_sym_LBRACK] = ACTIONS(4550), - [anon_sym_COLON] = ACTIONS(4550), - [anon_sym_COMMA] = ACTIONS(4550), - [anon_sym_RBRACK] = ACTIONS(4550), - [anon_sym_LPAREN] = ACTIONS(4550), - [anon_sym_RPAREN] = ACTIONS(4550), - [anon_sym_RBRACE] = ACTIONS(4550), - [anon_sym_LT] = ACTIONS(4552), - [anon_sym_GT] = ACTIONS(4552), - [anon_sym_in] = ACTIONS(4550), - [anon_sym_QMARK] = ACTIONS(4552), - [anon_sym_BANG] = ACTIONS(4552), - [anon_sym_PLUS_PLUS] = ACTIONS(4550), - [anon_sym_DASH_DASH] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4552), - [anon_sym_SLASH] = ACTIONS(4552), - [anon_sym_PERCENT] = ACTIONS(4552), - [anon_sym_CARET] = ACTIONS(4552), - [anon_sym_PIPE] = ACTIONS(4552), - [anon_sym_AMP] = ACTIONS(4552), - [anon_sym_LT_LT] = ACTIONS(4552), - [anon_sym_GT_GT] = ACTIONS(4552), - [anon_sym_GT_GT_GT] = ACTIONS(4552), - [anon_sym_EQ_EQ] = ACTIONS(4550), - [anon_sym_BANG_EQ] = ACTIONS(4550), - [anon_sym_GT_EQ] = ACTIONS(4550), - [anon_sym_LT_EQ] = ACTIONS(4550), - [anon_sym_DOT] = ACTIONS(4552), - [anon_sym_EQ_GT] = ACTIONS(4550), - [anon_sym_switch] = ACTIONS(4550), - [anon_sym_when] = ACTIONS(4550), - [anon_sym_DOT_DOT] = ACTIONS(4550), - [anon_sym_and] = ACTIONS(4550), - [anon_sym_or] = ACTIONS(4550), - [anon_sym_PLUS_EQ] = ACTIONS(4550), - [anon_sym_DASH_EQ] = ACTIONS(4550), - [anon_sym_STAR_EQ] = ACTIONS(4550), - [anon_sym_SLASH_EQ] = ACTIONS(4550), - [anon_sym_PERCENT_EQ] = ACTIONS(4550), - [anon_sym_AMP_EQ] = ACTIONS(4550), - [anon_sym_CARET_EQ] = ACTIONS(4550), - [anon_sym_PIPE_EQ] = ACTIONS(4550), - [anon_sym_LT_LT_EQ] = ACTIONS(4550), - [anon_sym_GT_GT_EQ] = ACTIONS(4550), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4550), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4550), - [anon_sym_AMP_AMP] = ACTIONS(4550), - [anon_sym_PIPE_PIPE] = ACTIONS(4550), - [sym_op_coalescing] = ACTIONS(4552), - [anon_sym_on] = ACTIONS(4550), - [anon_sym_equals] = ACTIONS(4550), - [anon_sym_by] = ACTIONS(4550), - [anon_sym_as] = ACTIONS(4550), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_DASH_GT] = ACTIONS(4550), - [anon_sym_with] = ACTIONS(4550), - [aux_sym_preproc_if_token3] = ACTIONS(4550), - [aux_sym_preproc_else_token1] = ACTIONS(4550), - [aux_sym_preproc_elif_token1] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_COLON] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_RPAREN] = ACTIONS(3972), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3972), + [anon_sym_QMARK] = ACTIONS(3970), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_EQ_GT] = ACTIONS(3972), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_switch] = ACTIONS(3972), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_and] = ACTIONS(3972), + [anon_sym_or] = ACTIONS(3970), + [anon_sym_EQ_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [sym_op_bitwise_or] = ACTIONS(3970), + [anon_sym_CARET] = ACTIONS(3972), + [sym_op_left_shift] = ACTIONS(3972), + [sym_op_right_shift] = ACTIONS(3970), + [sym_op_unsigned_right_shift] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [sym_op_divide] = ACTIONS(3970), + [sym_op_modulo] = ACTIONS(3972), + [sym_op_coalescing] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_from] = ACTIONS(3972), + [anon_sym_into] = ACTIONS(3972), + [anon_sym_join] = ACTIONS(3972), + [anon_sym_on] = ACTIONS(3972), + [anon_sym_equals] = ACTIONS(3972), + [anon_sym_let] = ACTIONS(3972), + [anon_sym_orderby] = ACTIONS(3972), + [anon_sym_group] = ACTIONS(3972), + [anon_sym_by] = ACTIONS(3972), + [anon_sym_select] = ACTIONS(3972), + [anon_sym_as] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3972), + [anon_sym_DASH_GT] = ACTIONS(3972), + [anon_sym_with] = ACTIONS(3972), + [aux_sym_preproc_if_token3] = ACTIONS(3972), + [aux_sym_preproc_else_token1] = ACTIONS(3972), + [aux_sym_preproc_elif_token1] = ACTIONS(3972), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494691,6 +493777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3130] = { + [sym_initializer_expression] = STATE(3374), [sym_preproc_region] = STATE(3130), [sym_preproc_endregion] = STATE(3130), [sym_preproc_line] = STATE(3130), @@ -494700,69 +493787,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3130), [sym_preproc_define] = STATE(3130), [sym_preproc_undef] = STATE(3130), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_EQ] = ACTIONS(4012), - [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_RBRACE] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_QMARK] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4012), - [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_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [anon_sym_on] = ACTIONS(4010), - [anon_sym_equals] = ACTIONS(4010), - [anon_sym_by] = ACTIONS(4010), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4010), - [anon_sym_with] = ACTIONS(4010), - [aux_sym_preproc_if_token3] = ACTIONS(4010), - [aux_sym_preproc_else_token1] = ACTIONS(4010), - [aux_sym_preproc_elif_token1] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_COLON] = ACTIONS(5628), + [anon_sym_COMMA] = ACTIONS(5628), + [anon_sym_RBRACK] = ACTIONS(5628), + [anon_sym_LPAREN] = ACTIONS(5628), + [anon_sym_RPAREN] = ACTIONS(5628), + [anon_sym_LBRACE] = ACTIONS(5631), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_LT] = ACTIONS(5634), + [anon_sym_GT] = ACTIONS(5634), + [anon_sym_in] = ACTIONS(5628), + [anon_sym_where] = ACTIONS(5628), + [anon_sym_QMARK] = ACTIONS(5637), + [anon_sym_DOT] = ACTIONS(5634), + [anon_sym_EQ_GT] = ACTIONS(5628), + [anon_sym_STAR] = ACTIONS(5628), + [anon_sym_switch] = ACTIONS(5628), + [anon_sym_DOT_DOT] = ACTIONS(5628), + [anon_sym_LT_EQ] = ACTIONS(5628), + [anon_sym_GT_EQ] = ACTIONS(5628), + [anon_sym_and] = ACTIONS(5628), + [anon_sym_or] = ACTIONS(5634), + [anon_sym_EQ_EQ] = ACTIONS(5628), + [anon_sym_BANG_EQ] = ACTIONS(5628), + [anon_sym_AMP_AMP] = ACTIONS(5628), + [anon_sym_PIPE_PIPE] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(5634), + [sym_op_bitwise_or] = ACTIONS(5634), + [anon_sym_CARET] = ACTIONS(5628), + [sym_op_left_shift] = ACTIONS(5628), + [sym_op_right_shift] = ACTIONS(5634), + [sym_op_unsigned_right_shift] = ACTIONS(5628), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [sym_op_divide] = ACTIONS(5634), + [sym_op_modulo] = ACTIONS(5628), + [sym_op_coalescing] = ACTIONS(5628), + [anon_sym_BANG] = ACTIONS(5634), + [anon_sym_PLUS_PLUS] = ACTIONS(5628), + [anon_sym_DASH_DASH] = ACTIONS(5628), + [anon_sym_from] = ACTIONS(5628), + [anon_sym_join] = ACTIONS(5628), + [anon_sym_on] = ACTIONS(5628), + [anon_sym_equals] = ACTIONS(5628), + [anon_sym_let] = ACTIONS(5628), + [anon_sym_orderby] = ACTIONS(5628), + [anon_sym_group] = ACTIONS(5628), + [anon_sym_by] = ACTIONS(5628), + [anon_sym_select] = ACTIONS(5628), + [anon_sym_as] = ACTIONS(5628), + [anon_sym_is] = ACTIONS(5628), + [anon_sym_DASH_GT] = ACTIONS(5628), + [anon_sym_with] = ACTIONS(5628), + [aux_sym_preproc_if_token3] = ACTIONS(5628), + [aux_sym_preproc_else_token1] = ACTIONS(5628), + [aux_sym_preproc_elif_token1] = ACTIONS(5628), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494775,27 +493856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3131] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), + [sym_initializer_expression] = STATE(3400), [sym_preproc_region] = STATE(3131), [sym_preproc_endregion] = STATE(3131), [sym_preproc_line] = STATE(3131), @@ -494805,48 +493866,63 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(5444), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5434), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5442), - [anon_sym_from] = ACTIONS(4786), - [anon_sym_join] = ACTIONS(4786), - [anon_sym_let] = ACTIONS(4786), - [anon_sym_orderby] = ACTIONS(4786), - [anon_sym_group] = ACTIONS(4786), - [anon_sym_select] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(5540), + [anon_sym_COLON] = ACTIONS(5538), + [anon_sym_COMMA] = ACTIONS(5538), + [anon_sym_RBRACK] = ACTIONS(5538), + [anon_sym_LPAREN] = ACTIONS(5538), + [anon_sym_RPAREN] = ACTIONS(5538), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(5538), + [anon_sym_LT] = ACTIONS(5543), + [anon_sym_GT] = ACTIONS(5543), + [anon_sym_in] = ACTIONS(5538), + [anon_sym_where] = ACTIONS(5538), + [anon_sym_QMARK] = ACTIONS(5543), + [anon_sym_DOT] = ACTIONS(5543), + [anon_sym_EQ_GT] = ACTIONS(5538), + [anon_sym_STAR] = ACTIONS(5538), + [anon_sym_switch] = ACTIONS(5538), + [anon_sym_DOT_DOT] = ACTIONS(5538), + [anon_sym_LT_EQ] = ACTIONS(5538), + [anon_sym_GT_EQ] = ACTIONS(5538), + [anon_sym_and] = ACTIONS(5538), + [anon_sym_or] = ACTIONS(5543), + [anon_sym_EQ_EQ] = ACTIONS(5538), + [anon_sym_BANG_EQ] = ACTIONS(5538), + [anon_sym_AMP_AMP] = ACTIONS(5538), + [anon_sym_PIPE_PIPE] = ACTIONS(5538), + [anon_sym_AMP] = ACTIONS(5543), + [sym_op_bitwise_or] = ACTIONS(5543), + [anon_sym_CARET] = ACTIONS(5538), + [sym_op_left_shift] = ACTIONS(5538), + [sym_op_right_shift] = ACTIONS(5543), + [sym_op_unsigned_right_shift] = ACTIONS(5538), + [anon_sym_PLUS] = ACTIONS(5543), + [anon_sym_DASH] = ACTIONS(5543), + [sym_op_divide] = ACTIONS(5543), + [sym_op_modulo] = ACTIONS(5538), + [sym_op_coalescing] = ACTIONS(5538), + [anon_sym_BANG] = ACTIONS(5543), + [anon_sym_PLUS_PLUS] = ACTIONS(5538), + [anon_sym_DASH_DASH] = ACTIONS(5538), + [anon_sym_from] = ACTIONS(5538), + [anon_sym_join] = ACTIONS(5538), + [anon_sym_on] = ACTIONS(5538), + [anon_sym_equals] = ACTIONS(5538), + [anon_sym_let] = ACTIONS(5538), + [anon_sym_orderby] = ACTIONS(5538), + [anon_sym_group] = ACTIONS(5538), + [anon_sym_by] = ACTIONS(5538), + [anon_sym_select] = ACTIONS(5538), + [anon_sym_as] = ACTIONS(5538), + [anon_sym_is] = ACTIONS(5538), + [anon_sym_DASH_GT] = ACTIONS(5538), + [anon_sym_with] = ACTIONS(5538), + [aux_sym_preproc_if_token3] = ACTIONS(5538), + [aux_sym_preproc_else_token1] = ACTIONS(5538), + [aux_sym_preproc_elif_token1] = ACTIONS(5538), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494859,8 +493935,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3132] = { - [sym_preproc_else_in_attribute_list] = STATE(7800), - [sym_preproc_elif_in_attribute_list] = STATE(7800), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3132), [sym_preproc_endregion] = STATE(3132), [sym_preproc_line] = STATE(3132), @@ -494870,67 +493959,49 @@ 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), - [sym__identifier_token] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym_alias] = ACTIONS(5456), - [anon_sym_global] = ACTIONS(5456), - [anon_sym_unsafe] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5458), - [anon_sym_LPAREN] = ACTIONS(5458), - [anon_sym_event] = ACTIONS(5456), - [anon_sym_class] = ACTIONS(5456), - [anon_sym_ref] = ACTIONS(5456), - [anon_sym_struct] = ACTIONS(5456), - [anon_sym_enum] = ACTIONS(5456), - [anon_sym_interface] = ACTIONS(5456), - [anon_sym_delegate] = ACTIONS(5456), - [anon_sym_record] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_readonly] = ACTIONS(5456), - [anon_sym_abstract] = ACTIONS(5456), - [anon_sym_async] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_file] = ACTIONS(5456), - [anon_sym_fixed] = ACTIONS(5456), - [anon_sym_internal] = ACTIONS(5456), - [anon_sym_new] = ACTIONS(5456), - [anon_sym_override] = ACTIONS(5456), - [anon_sym_partial] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_required] = ACTIONS(5456), - [anon_sym_sealed] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_where] = ACTIONS(5456), - [anon_sym_notnull] = ACTIONS(5456), - [anon_sym_unmanaged] = ACTIONS(5456), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_implicit] = ACTIONS(5456), - [anon_sym_explicit] = ACTIONS(5456), - [anon_sym_scoped] = ACTIONS(5456), - [anon_sym_var] = ACTIONS(5456), - [sym_predefined_type] = ACTIONS(5456), - [anon_sym_yield] = ACTIONS(5456), - [anon_sym_when] = ACTIONS(5456), - [anon_sym_from] = ACTIONS(5456), - [anon_sym_into] = ACTIONS(5456), - [anon_sym_join] = ACTIONS(5456), - [anon_sym_on] = ACTIONS(5456), - [anon_sym_equals] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(5456), - [anon_sym_orderby] = ACTIONS(5456), - [anon_sym_ascending] = ACTIONS(5456), - [anon_sym_descending] = ACTIONS(5456), - [anon_sym_group] = ACTIONS(5456), - [anon_sym_by] = ACTIONS(5456), - [anon_sym_select] = ACTIONS(5456), - [sym_grit_metavariable] = ACTIONS(5458), - [aux_sym_preproc_if_token1] = ACTIONS(5458), - [aux_sym_preproc_if_token3] = ACTIONS(5472), - [aux_sym_preproc_else_token1] = ACTIONS(5462), - [aux_sym_preproc_elif_token1] = ACTIONS(5464), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(5641), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5334), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5604), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5643), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5332), + [anon_sym_select] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494943,6 +494014,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3133] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3133), [sym_preproc_endregion] = STATE(3133), [sym_preproc_line] = STATE(3133), @@ -494952,69 +494038,49 @@ 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(4562), - [anon_sym_EQ] = ACTIONS(4564), - [anon_sym_LBRACK] = ACTIONS(4562), - [anon_sym_COLON] = ACTIONS(4562), - [anon_sym_COMMA] = ACTIONS(4562), - [anon_sym_RBRACK] = ACTIONS(4562), - [anon_sym_LPAREN] = ACTIONS(4562), - [anon_sym_RPAREN] = ACTIONS(4562), - [anon_sym_RBRACE] = ACTIONS(4562), - [anon_sym_LT] = ACTIONS(4564), - [anon_sym_GT] = ACTIONS(4564), - [anon_sym_in] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_BANG] = ACTIONS(4564), - [anon_sym_PLUS_PLUS] = ACTIONS(4562), - [anon_sym_DASH_DASH] = ACTIONS(4562), - [anon_sym_PLUS] = ACTIONS(4564), - [anon_sym_DASH] = ACTIONS(4564), - [anon_sym_STAR] = ACTIONS(4564), - [anon_sym_SLASH] = ACTIONS(4564), - [anon_sym_PERCENT] = ACTIONS(4564), - [anon_sym_CARET] = ACTIONS(4564), - [anon_sym_PIPE] = ACTIONS(4564), - [anon_sym_AMP] = ACTIONS(4564), - [anon_sym_LT_LT] = ACTIONS(4564), - [anon_sym_GT_GT] = ACTIONS(4564), - [anon_sym_GT_GT_GT] = ACTIONS(4564), - [anon_sym_EQ_EQ] = ACTIONS(4562), - [anon_sym_BANG_EQ] = ACTIONS(4562), - [anon_sym_GT_EQ] = ACTIONS(4562), - [anon_sym_LT_EQ] = ACTIONS(4562), - [anon_sym_DOT] = ACTIONS(4564), - [anon_sym_EQ_GT] = ACTIONS(4562), - [anon_sym_switch] = ACTIONS(4562), - [anon_sym_when] = ACTIONS(4562), - [anon_sym_DOT_DOT] = ACTIONS(4562), - [anon_sym_and] = ACTIONS(4562), - [anon_sym_or] = ACTIONS(4562), - [anon_sym_PLUS_EQ] = ACTIONS(4562), - [anon_sym_DASH_EQ] = ACTIONS(4562), - [anon_sym_STAR_EQ] = ACTIONS(4562), - [anon_sym_SLASH_EQ] = ACTIONS(4562), - [anon_sym_PERCENT_EQ] = ACTIONS(4562), - [anon_sym_AMP_EQ] = ACTIONS(4562), - [anon_sym_CARET_EQ] = ACTIONS(4562), - [anon_sym_PIPE_EQ] = ACTIONS(4562), - [anon_sym_LT_LT_EQ] = ACTIONS(4562), - [anon_sym_GT_GT_EQ] = ACTIONS(4562), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4562), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4562), - [anon_sym_AMP_AMP] = ACTIONS(4562), - [anon_sym_PIPE_PIPE] = ACTIONS(4562), - [sym_op_coalescing] = ACTIONS(4564), - [anon_sym_on] = ACTIONS(4562), - [anon_sym_equals] = ACTIONS(4562), - [anon_sym_by] = ACTIONS(4562), - [anon_sym_as] = ACTIONS(4562), - [anon_sym_is] = ACTIONS(4562), - [anon_sym_DASH_GT] = ACTIONS(4562), - [anon_sym_with] = ACTIONS(4562), - [aux_sym_preproc_if_token3] = ACTIONS(4562), - [aux_sym_preproc_else_token1] = ACTIONS(4562), - [aux_sym_preproc_elif_token1] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5232), + [anon_sym_QMARK] = ACTIONS(5641), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5254), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5604), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5643), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5232), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_join] = ACTIONS(5232), + [anon_sym_let] = ACTIONS(5232), + [anon_sym_orderby] = ACTIONS(5232), + [anon_sym_group] = ACTIONS(5232), + [anon_sym_select] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495027,6 +494093,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3134] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3134), [sym_preproc_endregion] = STATE(3134), [sym_preproc_line] = STATE(3134), @@ -495036,68 +494117,49 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5474), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5304), + [anon_sym_QMARK] = ACTIONS(5641), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5304), + [anon_sym_or] = ACTIONS(5306), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5604), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5643), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5304), + [anon_sym_select] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495110,27 +494172,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3135] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), [sym_preproc_region] = STATE(3135), [sym_preproc_endregion] = STATE(3135), [sym_preproc_line] = STATE(3135), @@ -495140,47 +494181,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3135), [sym_preproc_define] = STATE(3135), [sym_preproc_undef] = STATE(3135), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_join] = ACTIONS(1435), - [anon_sym_let] = ACTIONS(1435), - [anon_sym_orderby] = ACTIONS(1435), - [anon_sym_group] = ACTIONS(1435), - [anon_sym_select] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_COLON] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_RBRACK] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_RPAREN] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4345), + [anon_sym_QMARK] = ACTIONS(4343), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_EQ_GT] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_switch] = ACTIONS(4345), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_and] = ACTIONS(4345), + [anon_sym_or] = ACTIONS(4343), + [anon_sym_EQ_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4343), + [sym_op_bitwise_or] = ACTIONS(4343), + [anon_sym_CARET] = ACTIONS(4345), + [sym_op_left_shift] = ACTIONS(4345), + [sym_op_right_shift] = ACTIONS(4343), + [sym_op_unsigned_right_shift] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [sym_op_divide] = ACTIONS(4343), + [sym_op_modulo] = ACTIONS(4345), + [sym_op_coalescing] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_from] = ACTIONS(4345), + [anon_sym_into] = ACTIONS(4345), + [anon_sym_join] = ACTIONS(4345), + [anon_sym_on] = ACTIONS(4345), + [anon_sym_equals] = ACTIONS(4345), + [anon_sym_let] = ACTIONS(4345), + [anon_sym_orderby] = ACTIONS(4345), + [anon_sym_group] = ACTIONS(4345), + [anon_sym_by] = ACTIONS(4345), + [anon_sym_select] = ACTIONS(4345), + [anon_sym_as] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4345), + [anon_sym_DASH_GT] = ACTIONS(4345), + [anon_sym_with] = ACTIONS(4345), + [aux_sym_preproc_if_token3] = ACTIONS(4345), + [aux_sym_preproc_else_token1] = ACTIONS(4345), + [aux_sym_preproc_elif_token1] = ACTIONS(4345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495193,27 +494251,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3136] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), [sym_preproc_region] = STATE(3136), [sym_preproc_endregion] = STATE(3136), [sym_preproc_line] = STATE(3136), @@ -495223,47 +494260,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3136), [sym_preproc_define] = STATE(3136), [sym_preproc_undef] = STATE(3136), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(5478), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5480), - [anon_sym_from] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_join] = ACTIONS(4760), - [anon_sym_let] = ACTIONS(4760), - [anon_sym_orderby] = ACTIONS(4760), - [anon_sym_group] = ACTIONS(4760), - [anon_sym_select] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5645), + [anon_sym_LBRACK] = ACTIONS(5645), + [anon_sym_COLON] = ACTIONS(5645), + [anon_sym_COMMA] = ACTIONS(5645), + [anon_sym_RBRACK] = ACTIONS(5645), + [anon_sym_LPAREN] = ACTIONS(5645), + [anon_sym_RPAREN] = ACTIONS(5645), + [anon_sym_RBRACE] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5647), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_in] = ACTIONS(5647), + [anon_sym_where] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5647), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_EQ_GT] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_switch] = ACTIONS(5645), + [anon_sym_DOT_DOT] = ACTIONS(5645), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5645), + [anon_sym_BANG_EQ] = ACTIONS(5645), + [anon_sym_AMP_AMP] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [sym_op_bitwise_or] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5645), + [sym_op_left_shift] = ACTIONS(5645), + [sym_op_right_shift] = ACTIONS(5647), + [sym_op_unsigned_right_shift] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_DASH] = ACTIONS(5647), + [sym_op_divide] = ACTIONS(5647), + [sym_op_modulo] = ACTIONS(5645), + [sym_op_coalescing] = ACTIONS(5645), + [anon_sym_BANG] = ACTIONS(5647), + [anon_sym_PLUS_PLUS] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5645), + [anon_sym_from] = ACTIONS(5645), + [anon_sym_into] = ACTIONS(5645), + [anon_sym_join] = ACTIONS(5645), + [anon_sym_on] = ACTIONS(5645), + [anon_sym_equals] = ACTIONS(5645), + [anon_sym_let] = ACTIONS(5645), + [anon_sym_orderby] = ACTIONS(5645), + [anon_sym_group] = ACTIONS(5645), + [anon_sym_by] = ACTIONS(5645), + [anon_sym_select] = ACTIONS(5645), + [anon_sym_as] = ACTIONS(5645), + [anon_sym_is] = ACTIONS(5645), + [anon_sym_DASH_GT] = ACTIONS(5645), + [anon_sym_with] = ACTIONS(5645), + [sym_string_literal_encoding] = ACTIONS(5649), + [aux_sym_preproc_if_token3] = ACTIONS(5645), + [aux_sym_preproc_else_token1] = ACTIONS(5645), + [aux_sym_preproc_elif_token1] = ACTIONS(5645), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495276,9 +494330,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3137] = { - [sym_attribute_list] = STATE(3690), - [sym__attribute_list] = STATE(3657), - [sym_preproc_if_in_attribute_list] = STATE(3690), [sym_preproc_region] = STATE(3137), [sym_preproc_endregion] = STATE(3137), [sym_preproc_line] = STATE(3137), @@ -495288,65 +494339,64 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3137), - [sym__identifier_token] = ACTIONS(5484), - [anon_sym_extern] = ACTIONS(5484), - [anon_sym_alias] = ACTIONS(5484), - [anon_sym_global] = ACTIONS(5484), - [anon_sym_unsafe] = ACTIONS(5484), - [anon_sym_static] = ACTIONS(5484), - [anon_sym_LBRACK] = ACTIONS(5486), - [anon_sym_LPAREN] = ACTIONS(5489), - [anon_sym_event] = ACTIONS(5484), - [anon_sym_class] = ACTIONS(5484), - [anon_sym_ref] = ACTIONS(5484), - [anon_sym_struct] = ACTIONS(5484), - [anon_sym_enum] = ACTIONS(5484), - [anon_sym_interface] = ACTIONS(5484), - [anon_sym_delegate] = ACTIONS(5484), - [anon_sym_record] = ACTIONS(5484), - [anon_sym_public] = ACTIONS(5484), - [anon_sym_private] = ACTIONS(5484), - [anon_sym_readonly] = ACTIONS(5484), - [anon_sym_abstract] = ACTIONS(5484), - [anon_sym_async] = ACTIONS(5484), - [anon_sym_const] = ACTIONS(5484), - [anon_sym_file] = ACTIONS(5484), - [anon_sym_fixed] = ACTIONS(5484), - [anon_sym_internal] = ACTIONS(5484), - [anon_sym_new] = ACTIONS(5484), - [anon_sym_override] = ACTIONS(5484), - [anon_sym_partial] = ACTIONS(5484), - [anon_sym_protected] = ACTIONS(5484), - [anon_sym_required] = ACTIONS(5484), - [anon_sym_sealed] = ACTIONS(5484), - [anon_sym_virtual] = ACTIONS(5484), - [anon_sym_volatile] = ACTIONS(5484), - [anon_sym_where] = ACTIONS(5484), - [anon_sym_notnull] = ACTIONS(5484), - [anon_sym_unmanaged] = ACTIONS(5484), - [anon_sym_TILDE] = ACTIONS(5489), - [anon_sym_implicit] = ACTIONS(5484), - [anon_sym_explicit] = ACTIONS(5484), - [anon_sym_scoped] = ACTIONS(5484), - [anon_sym_var] = ACTIONS(5484), - [sym_predefined_type] = ACTIONS(5484), - [anon_sym_yield] = ACTIONS(5484), - [anon_sym_when] = ACTIONS(5484), - [anon_sym_from] = ACTIONS(5484), - [anon_sym_into] = ACTIONS(5484), - [anon_sym_join] = ACTIONS(5484), - [anon_sym_on] = ACTIONS(5484), - [anon_sym_equals] = ACTIONS(5484), - [anon_sym_let] = ACTIONS(5484), - [anon_sym_orderby] = ACTIONS(5484), - [anon_sym_ascending] = ACTIONS(5484), - [anon_sym_descending] = ACTIONS(5484), - [anon_sym_group] = ACTIONS(5484), - [anon_sym_by] = ACTIONS(5484), - [anon_sym_select] = ACTIONS(5484), - [sym_grit_metavariable] = ACTIONS(5489), - [aux_sym_preproc_if_token1] = ACTIONS(5491), + [anon_sym_SEMI] = ACTIONS(4316), + [anon_sym_LBRACK] = ACTIONS(4316), + [anon_sym_COLON] = ACTIONS(4316), + [anon_sym_COMMA] = ACTIONS(4316), + [anon_sym_RBRACK] = ACTIONS(4316), + [anon_sym_LPAREN] = ACTIONS(4316), + [anon_sym_RPAREN] = ACTIONS(4316), + [anon_sym_LBRACE] = ACTIONS(4316), + [anon_sym_RBRACE] = ACTIONS(4316), + [anon_sym_LT] = ACTIONS(4314), + [anon_sym_GT] = ACTIONS(4314), + [anon_sym_in] = ACTIONS(4314), + [anon_sym_where] = ACTIONS(4316), + [anon_sym_QMARK] = ACTIONS(4314), + [anon_sym_DOT] = ACTIONS(4314), + [anon_sym_EQ_GT] = ACTIONS(4316), + [anon_sym_STAR] = ACTIONS(4316), + [anon_sym_switch] = ACTIONS(4316), + [anon_sym_DOT_DOT] = ACTIONS(4316), + [anon_sym_LT_EQ] = ACTIONS(4316), + [anon_sym_GT_EQ] = ACTIONS(4316), + [anon_sym_and] = ACTIONS(4316), + [anon_sym_or] = ACTIONS(4314), + [anon_sym_EQ_EQ] = ACTIONS(4316), + [anon_sym_BANG_EQ] = ACTIONS(4316), + [anon_sym_AMP_AMP] = ACTIONS(4316), + [anon_sym_PIPE_PIPE] = ACTIONS(4316), + [anon_sym_AMP] = ACTIONS(4314), + [sym_op_bitwise_or] = ACTIONS(4314), + [anon_sym_CARET] = ACTIONS(4316), + [sym_op_left_shift] = ACTIONS(4316), + [sym_op_right_shift] = ACTIONS(4314), + [sym_op_unsigned_right_shift] = ACTIONS(4316), + [anon_sym_PLUS] = ACTIONS(4314), + [anon_sym_DASH] = ACTIONS(4314), + [sym_op_divide] = ACTIONS(4314), + [sym_op_modulo] = ACTIONS(4316), + [sym_op_coalescing] = ACTIONS(4316), + [anon_sym_BANG] = ACTIONS(4314), + [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = 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_group] = ACTIONS(4316), + [anon_sym_by] = ACTIONS(4316), + [anon_sym_select] = ACTIONS(4316), + [anon_sym_as] = ACTIONS(4316), + [anon_sym_is] = ACTIONS(4316), + [anon_sym_DASH_GT] = ACTIONS(4316), + [anon_sym_with] = ACTIONS(4316), + [aux_sym_preproc_if_token3] = ACTIONS(4316), + [aux_sym_preproc_else_token1] = ACTIONS(4316), + [aux_sym_preproc_elif_token1] = ACTIONS(4316), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495359,27 +494409,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3138] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), [sym_preproc_region] = STATE(3138), [sym_preproc_endregion] = STATE(3138), [sym_preproc_line] = STATE(3138), @@ -495389,47 +494418,64 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(5478), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5480), - [anon_sym_from] = ACTIONS(4770), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_join] = ACTIONS(4770), - [anon_sym_let] = ACTIONS(4770), - [anon_sym_orderby] = ACTIONS(4770), - [anon_sym_group] = ACTIONS(4770), - [anon_sym_select] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4458), + [anon_sym_COLON] = ACTIONS(4458), + [anon_sym_COMMA] = ACTIONS(4458), + [anon_sym_RBRACK] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym_RPAREN] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4458), + [anon_sym_RBRACE] = ACTIONS(4458), + [anon_sym_LT] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4456), + [anon_sym_in] = ACTIONS(4456), + [anon_sym_where] = ACTIONS(4458), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_DOT] = ACTIONS(4456), + [anon_sym_EQ_GT] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_switch] = ACTIONS(4458), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4456), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_AMP_AMP] = ACTIONS(4458), + [anon_sym_PIPE_PIPE] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [sym_op_bitwise_or] = ACTIONS(4456), + [anon_sym_CARET] = ACTIONS(4458), + [sym_op_left_shift] = ACTIONS(4458), + [sym_op_right_shift] = ACTIONS(4456), + [sym_op_unsigned_right_shift] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [sym_op_divide] = ACTIONS(4456), + [sym_op_modulo] = ACTIONS(4458), + [sym_op_coalescing] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4456), + [anon_sym_PLUS_PLUS] = ACTIONS(4458), + [anon_sym_DASH_DASH] = ACTIONS(4458), + [anon_sym_from] = ACTIONS(4458), + [anon_sym_into] = ACTIONS(4458), + [anon_sym_join] = ACTIONS(4458), + [anon_sym_on] = ACTIONS(4458), + [anon_sym_equals] = ACTIONS(4458), + [anon_sym_let] = ACTIONS(4458), + [anon_sym_orderby] = ACTIONS(4458), + [anon_sym_group] = ACTIONS(4458), + [anon_sym_by] = ACTIONS(4458), + [anon_sym_select] = ACTIONS(4458), + [anon_sym_as] = ACTIONS(4458), + [anon_sym_is] = ACTIONS(4458), + [anon_sym_DASH_GT] = ACTIONS(4458), + [anon_sym_with] = ACTIONS(4458), + [aux_sym_preproc_if_token3] = ACTIONS(4458), + [aux_sym_preproc_else_token1] = ACTIONS(4458), + [aux_sym_preproc_elif_token1] = ACTIONS(4458), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495442,27 +494488,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3139] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), [sym_preproc_region] = STATE(3139), [sym_preproc_endregion] = STATE(3139), [sym_preproc_line] = STATE(3139), @@ -495472,47 +494497,64 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_RBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_RPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_RBRACE] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_in] = ACTIONS(3910), + [anon_sym_where] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3910), + [anon_sym_switch] = ACTIONS(3910), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3910), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3910), + [sym_op_left_shift] = ACTIONS(3910), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3910), + [sym_op_coalescing] = ACTIONS(3910), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_from] = ACTIONS(3910), + [anon_sym_join] = ACTIONS(3910), + [anon_sym_on] = ACTIONS(3910), + [anon_sym_equals] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_orderby] = ACTIONS(3910), + [anon_sym_group] = ACTIONS(3910), + [anon_sym_by] = ACTIONS(3910), + [anon_sym_select] = ACTIONS(3910), + [anon_sym_as] = ACTIONS(3910), + [anon_sym_is] = ACTIONS(3910), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3910), + [aux_sym_preproc_if_token3] = ACTIONS(3910), + [aux_sym_preproc_else_token1] = ACTIONS(3910), + [aux_sym_preproc_elif_token1] = ACTIONS(3910), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495534,68 +494576,64 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5494), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_COLON] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_RBRACK] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_RPAREN] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_QMARK] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_EQ_GT] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_switch] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_and] = ACTIONS(4349), + [anon_sym_or] = ACTIONS(4347), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(4347), + [sym_op_bitwise_or] = ACTIONS(4347), + [anon_sym_CARET] = ACTIONS(4349), + [sym_op_left_shift] = ACTIONS(4349), + [sym_op_right_shift] = ACTIONS(4347), + [sym_op_unsigned_right_shift] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [sym_op_divide] = ACTIONS(4347), + [sym_op_modulo] = ACTIONS(4349), + [sym_op_coalescing] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_from] = ACTIONS(4349), + [anon_sym_into] = ACTIONS(4349), + [anon_sym_join] = ACTIONS(4349), + [anon_sym_on] = ACTIONS(4349), + [anon_sym_equals] = ACTIONS(4349), + [anon_sym_let] = ACTIONS(4349), + [anon_sym_orderby] = ACTIONS(4349), + [anon_sym_group] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(4349), + [anon_sym_select] = ACTIONS(4349), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_DASH_GT] = ACTIONS(4349), + [anon_sym_with] = ACTIONS(4349), + [aux_sym_preproc_if_token3] = ACTIONS(4349), + [aux_sym_preproc_else_token1] = ACTIONS(4349), + [aux_sym_preproc_elif_token1] = ACTIONS(4349), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495608,30 +494646,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3141] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6362), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_identifier] = STATE(6036), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3141), [sym_preproc_endregion] = STATE(3141), [sym_preproc_line] = STATE(3141), @@ -495641,44 +494670,49 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3658), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_ref] = ACTIONS(5448), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(1271), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(1271), - [anon_sym_out] = ACTIONS(1271), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_this] = ACTIONS(1271), - [anon_sym_scoped] = ACTIONS(5468), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), - [aux_sym_preproc_if_token1] = ACTIONS(5454), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495691,6 +494725,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3142] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3142), [sym_preproc_endregion] = STATE(3142), [sym_preproc_line] = STATE(3142), @@ -495700,68 +494749,49 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5498), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5328), + [anon_sym_QMARK] = ACTIONS(5641), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5330), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5604), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5643), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5328), + [anon_sym_select] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495774,27 +494804,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3143] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), [sym_preproc_region] = STATE(3143), [sym_preproc_endregion] = STATE(3143), [sym_preproc_line] = STATE(3143), @@ -495804,47 +494813,64 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(5478), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5480), - [anon_sym_from] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_join] = ACTIONS(4790), - [anon_sym_let] = ACTIONS(4790), - [anon_sym_orderby] = ACTIONS(4790), - [anon_sym_group] = ACTIONS(4790), - [anon_sym_select] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_COLON] = ACTIONS(4393), + [anon_sym_COMMA] = ACTIONS(4393), + [anon_sym_RBRACK] = ACTIONS(4393), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym_RPAREN] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4393), + [anon_sym_RBRACE] = ACTIONS(4393), + [anon_sym_LT] = ACTIONS(4391), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_in] = ACTIONS(4391), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_EQ_GT] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_switch] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4393), + [anon_sym_LT_EQ] = ACTIONS(4393), + [anon_sym_GT_EQ] = ACTIONS(4393), + [anon_sym_and] = ACTIONS(4393), + [anon_sym_or] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_AMP_AMP] = ACTIONS(4393), + [anon_sym_PIPE_PIPE] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(4391), + [sym_op_bitwise_or] = ACTIONS(4391), + [anon_sym_CARET] = ACTIONS(4393), + [sym_op_left_shift] = ACTIONS(4393), + [sym_op_right_shift] = ACTIONS(4391), + [sym_op_unsigned_right_shift] = ACTIONS(4393), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [sym_op_divide] = ACTIONS(4391), + [sym_op_modulo] = ACTIONS(4393), + [sym_op_coalescing] = ACTIONS(4393), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4393), + [anon_sym_DASH_DASH] = 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_group] = ACTIONS(4393), + [anon_sym_by] = ACTIONS(4393), + [anon_sym_select] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_DASH_GT] = ACTIONS(4393), + [anon_sym_with] = ACTIONS(4393), + [aux_sym_preproc_if_token3] = ACTIONS(4393), + [aux_sym_preproc_else_token1] = ACTIONS(4393), + [aux_sym_preproc_elif_token1] = ACTIONS(4393), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495866,68 +494892,64 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5500), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_LBRACK] = ACTIONS(3976), + [anon_sym_COLON] = ACTIONS(3976), + [anon_sym_COMMA] = ACTIONS(3976), + [anon_sym_RBRACK] = ACTIONS(3976), + [anon_sym_LPAREN] = ACTIONS(3976), + [anon_sym_RPAREN] = ACTIONS(3976), + [anon_sym_LBRACE] = ACTIONS(3976), + [anon_sym_RBRACE] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3974), + [anon_sym_GT] = ACTIONS(3974), + [anon_sym_in] = ACTIONS(3974), + [anon_sym_where] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3974), + [anon_sym_EQ_GT] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3976), + [anon_sym_switch] = ACTIONS(3976), + [anon_sym_DOT_DOT] = ACTIONS(3976), + [anon_sym_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_EQ] = ACTIONS(3976), + [anon_sym_and] = ACTIONS(3976), + [anon_sym_or] = ACTIONS(3974), + [anon_sym_EQ_EQ] = ACTIONS(3976), + [anon_sym_BANG_EQ] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [sym_op_bitwise_or] = ACTIONS(3974), + [anon_sym_CARET] = ACTIONS(3976), + [sym_op_left_shift] = ACTIONS(3976), + [sym_op_right_shift] = ACTIONS(3974), + [sym_op_unsigned_right_shift] = ACTIONS(3976), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [sym_op_divide] = ACTIONS(3974), + [sym_op_modulo] = ACTIONS(3976), + [sym_op_coalescing] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3974), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_from] = ACTIONS(3976), + [anon_sym_into] = ACTIONS(3976), + [anon_sym_join] = ACTIONS(3976), + [anon_sym_on] = ACTIONS(3976), + [anon_sym_equals] = ACTIONS(3976), + [anon_sym_let] = ACTIONS(3976), + [anon_sym_orderby] = ACTIONS(3976), + [anon_sym_group] = ACTIONS(3976), + [anon_sym_by] = ACTIONS(3976), + [anon_sym_select] = ACTIONS(3976), + [anon_sym_as] = ACTIONS(3976), + [anon_sym_is] = ACTIONS(3976), + [anon_sym_DASH_GT] = ACTIONS(3976), + [anon_sym_with] = ACTIONS(3976), + [aux_sym_preproc_if_token3] = ACTIONS(3976), + [aux_sym_preproc_else_token1] = ACTIONS(3976), + [aux_sym_preproc_elif_token1] = ACTIONS(3976), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495940,27 +494962,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3145] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), [sym_preproc_region] = STATE(3145), [sym_preproc_endregion] = STATE(3145), [sym_preproc_line] = STATE(3145), @@ -495970,47 +494971,64 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_where] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_from] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_join] = ACTIONS(4794), - [anon_sym_let] = ACTIONS(4794), - [anon_sym_orderby] = ACTIONS(4794), - [anon_sym_group] = ACTIONS(4794), - [anon_sym_select] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_join] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_orderby] = ACTIONS(3957), + [anon_sym_group] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_select] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496023,27 +495041,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3146] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), [sym_preproc_region] = STATE(3146), [sym_preproc_endregion] = STATE(3146), [sym_preproc_line] = STATE(3146), @@ -496053,47 +495050,64 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4778), - [anon_sym_QMARK] = ACTIONS(5478), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5480), - [anon_sym_from] = ACTIONS(4778), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_join] = ACTIONS(4778), - [anon_sym_let] = ACTIONS(4778), - [anon_sym_orderby] = ACTIONS(4778), - [anon_sym_group] = ACTIONS(4778), - [anon_sym_select] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_where] = ACTIONS(3694), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3694), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3694), + [anon_sym_join] = ACTIONS(3694), + [anon_sym_on] = ACTIONS(3694), + [anon_sym_equals] = ACTIONS(3694), + [anon_sym_let] = ACTIONS(3694), + [anon_sym_orderby] = ACTIONS(3694), + [anon_sym_group] = ACTIONS(3694), + [anon_sym_by] = ACTIONS(3694), + [anon_sym_select] = ACTIONS(3694), + [anon_sym_as] = ACTIONS(3694), + [anon_sym_is] = ACTIONS(3694), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3694), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496106,27 +495120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3147] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), + [sym_type_argument_list] = STATE(3245), [sym_preproc_region] = STATE(3147), [sym_preproc_endregion] = STATE(3147), [sym_preproc_line] = STATE(3147), @@ -496136,47 +495130,63 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_from] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_join] = ACTIONS(4766), - [anon_sym_let] = ACTIONS(4766), - [anon_sym_orderby] = ACTIONS(4766), - [anon_sym_group] = ACTIONS(4766), - [anon_sym_select] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(5651), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3957), + [anon_sym_where] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3957), + [anon_sym_join] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_orderby] = ACTIONS(3957), + [anon_sym_group] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_select] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496189,27 +495199,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3148] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), [sym_preproc_region] = STATE(3148), [sym_preproc_endregion] = STATE(3148), [sym_preproc_line] = STATE(3148), @@ -496219,47 +495208,64 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4752), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_from] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_join] = ACTIONS(4752), - [anon_sym_let] = ACTIONS(4752), - [anon_sym_orderby] = ACTIONS(4752), - [anon_sym_group] = ACTIONS(4752), - [anon_sym_select] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACK] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_in] = ACTIONS(3189), + [anon_sym_where] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_EQ_GT] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3187), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3189), + [sym_op_left_shift] = ACTIONS(3189), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3189), + [sym_op_coalescing] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_from] = 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_group] = ACTIONS(3189), + [anon_sym_by] = ACTIONS(3189), + [anon_sym_select] = ACTIONS(3189), + [anon_sym_as] = ACTIONS(3189), + [anon_sym_is] = ACTIONS(3189), + [anon_sym_DASH_GT] = ACTIONS(3189), + [anon_sym_with] = 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), @@ -496272,27 +495278,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3149] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), [sym_preproc_region] = STATE(3149), [sym_preproc_endregion] = STATE(3149), [sym_preproc_line] = STATE(3149), @@ -496302,47 +495287,64 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(5478), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5480), - [anon_sym_from] = ACTIONS(4748), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_join] = ACTIONS(4748), - [anon_sym_let] = ACTIONS(4748), - [anon_sym_orderby] = ACTIONS(4748), - [anon_sym_group] = ACTIONS(4748), - [anon_sym_select] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_COLON] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_RBRACK] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_RPAREN] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4411), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_QMARK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_EQ_GT] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_switch] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_and] = ACTIONS(4411), + [anon_sym_or] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4409), + [sym_op_bitwise_or] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4411), + [sym_op_left_shift] = ACTIONS(4411), + [sym_op_right_shift] = ACTIONS(4409), + [sym_op_unsigned_right_shift] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [sym_op_divide] = ACTIONS(4409), + [sym_op_modulo] = ACTIONS(4411), + [sym_op_coalescing] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_from] = ACTIONS(4411), + [anon_sym_into] = ACTIONS(4411), + [anon_sym_join] = ACTIONS(4411), + [anon_sym_on] = ACTIONS(4411), + [anon_sym_equals] = ACTIONS(4411), + [anon_sym_let] = ACTIONS(4411), + [anon_sym_orderby] = ACTIONS(4411), + [anon_sym_group] = ACTIONS(4411), + [anon_sym_by] = ACTIONS(4411), + [anon_sym_select] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_DASH_GT] = ACTIONS(4411), + [anon_sym_with] = ACTIONS(4411), + [aux_sym_preproc_if_token3] = ACTIONS(4411), + [aux_sym_preproc_else_token1] = ACTIONS(4411), + [aux_sym_preproc_elif_token1] = ACTIONS(4411), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496364,68 +495366,64 @@ 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), - [sym__identifier_token] = ACTIONS(4454), - [anon_sym_alias] = ACTIONS(4454), - [anon_sym_global] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4456), - [anon_sym_LPAREN] = ACTIONS(4456), - [anon_sym_LBRACE] = ACTIONS(4456), - [anon_sym_file] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4454), - [anon_sym_GT] = ACTIONS(4454), - [anon_sym_where] = ACTIONS(4454), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_notnull] = ACTIONS(4454), - [anon_sym_unmanaged] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4456), - [anon_sym_DASH_DASH] = ACTIONS(4456), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4456), - [anon_sym_SLASH] = ACTIONS(4454), - [anon_sym_PERCENT] = ACTIONS(4456), - [anon_sym_CARET] = ACTIONS(4456), - [anon_sym_PIPE] = ACTIONS(4454), - [anon_sym_AMP] = ACTIONS(4454), - [anon_sym_LT_LT] = ACTIONS(4456), - [anon_sym_GT_GT] = ACTIONS(4454), - [anon_sym_GT_GT_GT] = ACTIONS(4456), - [anon_sym_EQ_EQ] = ACTIONS(4456), - [anon_sym_BANG_EQ] = ACTIONS(4456), - [anon_sym_GT_EQ] = ACTIONS(4456), - [anon_sym_LT_EQ] = ACTIONS(4456), - [anon_sym_DOT] = ACTIONS(4454), - [anon_sym_scoped] = ACTIONS(4454), - [anon_sym_EQ_GT] = ACTIONS(4456), - [anon_sym_var] = ACTIONS(4454), - [anon_sym_yield] = ACTIONS(4454), - [anon_sym_switch] = ACTIONS(4454), - [anon_sym_when] = ACTIONS(4454), - [sym_discard] = ACTIONS(4454), - [anon_sym_DOT_DOT] = ACTIONS(4456), - [anon_sym_and] = ACTIONS(4454), - [anon_sym_or] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4456), - [anon_sym_PIPE_PIPE] = ACTIONS(4456), - [sym_op_coalescing] = ACTIONS(4456), - [anon_sym_from] = ACTIONS(4454), - [anon_sym_into] = ACTIONS(4454), - [anon_sym_join] = ACTIONS(4454), - [anon_sym_on] = ACTIONS(4454), - [anon_sym_equals] = ACTIONS(4454), - [anon_sym_let] = ACTIONS(4454), - [anon_sym_orderby] = ACTIONS(4454), - [anon_sym_ascending] = ACTIONS(4454), - [anon_sym_descending] = ACTIONS(4454), - [anon_sym_group] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(4454), - [anon_sym_select] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4454), - [anon_sym_DASH_GT] = ACTIONS(4456), - [anon_sym_with] = ACTIONS(4454), - [sym_grit_metavariable] = ACTIONS(4456), + [anon_sym_SEMI] = ACTIONS(4015), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_COLON] = ACTIONS(4015), + [anon_sym_COMMA] = ACTIONS(4015), + [anon_sym_RBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4015), + [anon_sym_RPAREN] = ACTIONS(4015), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4008), + [anon_sym_GT] = ACTIONS(4008), + [anon_sym_in] = ACTIONS(4008), + [anon_sym_where] = ACTIONS(4015), + [anon_sym_QMARK] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4008), + [anon_sym_EQ_GT] = ACTIONS(4015), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_switch] = ACTIONS(4015), + [anon_sym_DOT_DOT] = ACTIONS(4015), + [anon_sym_LT_EQ] = ACTIONS(4015), + [anon_sym_GT_EQ] = ACTIONS(4015), + [anon_sym_and] = ACTIONS(4015), + [anon_sym_or] = ACTIONS(4008), + [anon_sym_EQ_EQ] = ACTIONS(4015), + [anon_sym_BANG_EQ] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4008), + [sym_op_bitwise_or] = ACTIONS(4008), + [anon_sym_CARET] = ACTIONS(4015), + [sym_op_left_shift] = ACTIONS(4015), + [sym_op_right_shift] = ACTIONS(4008), + [sym_op_unsigned_right_shift] = ACTIONS(4015), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4008), + [sym_op_divide] = ACTIONS(4008), + [sym_op_modulo] = ACTIONS(4015), + [sym_op_coalescing] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(4008), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_from] = ACTIONS(4015), + [anon_sym_into] = ACTIONS(4015), + [anon_sym_join] = ACTIONS(4015), + [anon_sym_on] = ACTIONS(4015), + [anon_sym_equals] = ACTIONS(4015), + [anon_sym_let] = ACTIONS(4015), + [anon_sym_orderby] = ACTIONS(4015), + [anon_sym_group] = ACTIONS(4015), + [anon_sym_by] = ACTIONS(4015), + [anon_sym_select] = ACTIONS(4015), + [anon_sym_as] = ACTIONS(4015), + [anon_sym_is] = ACTIONS(4015), + [anon_sym_DASH_GT] = ACTIONS(4015), + [anon_sym_with] = ACTIONS(4015), + [aux_sym_preproc_if_token3] = ACTIONS(4015), + [aux_sym_preproc_else_token1] = ACTIONS(4015), + [aux_sym_preproc_elif_token1] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496438,27 +495436,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3151] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), [sym_preproc_region] = STATE(3151), [sym_preproc_endregion] = STATE(3151), [sym_preproc_line] = STATE(3151), @@ -496468,47 +495445,64 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4782), - [anon_sym_QMARK] = ACTIONS(5478), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5480), - [anon_sym_from] = ACTIONS(4782), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_join] = ACTIONS(4782), - [anon_sym_let] = ACTIONS(4782), - [anon_sym_orderby] = ACTIONS(4782), - [anon_sym_group] = ACTIONS(4782), - [anon_sym_select] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(4435), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_RBRACK] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_RPAREN] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4435), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_QMARK] = ACTIONS(4433), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_EQ_GT] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [anon_sym_switch] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_and] = ACTIONS(4435), + [anon_sym_or] = ACTIONS(4433), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_AMP] = ACTIONS(4433), + [sym_op_bitwise_or] = ACTIONS(4433), + [anon_sym_CARET] = ACTIONS(4435), + [sym_op_left_shift] = ACTIONS(4435), + [sym_op_right_shift] = ACTIONS(4433), + [sym_op_unsigned_right_shift] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [sym_op_divide] = ACTIONS(4433), + [sym_op_modulo] = ACTIONS(4435), + [sym_op_coalescing] = ACTIONS(4435), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = 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_group] = ACTIONS(4435), + [anon_sym_by] = ACTIONS(4435), + [anon_sym_select] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_DASH_GT] = ACTIONS(4435), + [anon_sym_with] = 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), @@ -496521,27 +495515,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3152] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3152), [sym_preproc_endregion] = STATE(3152), [sym_preproc_line] = STATE(3152), @@ -496551,47 +495539,49 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4708), - [anon_sym_QMARK] = ACTIONS(5478), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5480), - [anon_sym_from] = ACTIONS(4708), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_join] = ACTIONS(4708), - [anon_sym_let] = ACTIONS(4708), - [anon_sym_orderby] = ACTIONS(4708), - [anon_sym_group] = ACTIONS(4708), - [anon_sym_select] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5604), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496604,6 +495594,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3153] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3153), [sym_preproc_endregion] = STATE(3153), [sym_preproc_line] = STATE(3153), @@ -496613,68 +495618,49 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496687,27 +495673,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3154] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3154), [sym_preproc_endregion] = STATE(3154), [sym_preproc_line] = STATE(3154), @@ -496717,47 +495697,49 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5480), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5604), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5643), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496770,27 +495752,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3155] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3155), [sym_preproc_endregion] = STATE(3155), [sym_preproc_line] = STATE(3155), @@ -496800,47 +495776,49 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496853,27 +495831,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3156] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3156), [sym_preproc_endregion] = STATE(3156), [sym_preproc_line] = STATE(3156), @@ -496883,47 +495855,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3156), [sym_preproc_define] = STATE(3156), [sym_preproc_undef] = STATE(3156), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(5502), - [anon_sym_QMARK] = ACTIONS(5478), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5480), - [anon_sym_from] = ACTIONS(5502), - [anon_sym_into] = ACTIONS(5502), - [anon_sym_join] = ACTIONS(5502), - [anon_sym_let] = ACTIONS(5502), - [anon_sym_orderby] = ACTIONS(5502), - [anon_sym_group] = ACTIONS(5502), - [anon_sym_select] = ACTIONS(5502), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_where] = ACTIONS(5360), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5360), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_join] = ACTIONS(5360), + [anon_sym_let] = ACTIONS(5360), + [anon_sym_orderby] = ACTIONS(5360), + [anon_sym_group] = ACTIONS(5360), + [anon_sym_select] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496936,27 +495910,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3157] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3157), [sym_preproc_endregion] = STATE(3157), [sym_preproc_line] = STATE(3157), @@ -496966,47 +495934,49 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497019,27 +495989,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3158] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3158), [sym_preproc_endregion] = STATE(3158), [sym_preproc_line] = STATE(3158), @@ -497049,47 +496013,49 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5296), + [anon_sym_QMARK] = ACTIONS(5641), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5298), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5604), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5643), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5296), + [anon_sym_select] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497102,27 +496068,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3159] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3159), [sym_preproc_endregion] = STATE(3159), [sym_preproc_line] = STATE(3159), @@ -497132,47 +496092,49 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(5641), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5604), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5643), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5336), + [anon_sym_select] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497185,27 +496147,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3160] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3160), [sym_preproc_endregion] = STATE(3160), [sym_preproc_line] = STATE(3160), @@ -497215,47 +496171,49 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5356), + [anon_sym_QMARK] = ACTIONS(5641), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5358), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5604), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5643), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5356), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_join] = ACTIONS(5356), + [anon_sym_let] = ACTIONS(5356), + [anon_sym_orderby] = ACTIONS(5356), + [anon_sym_group] = ACTIONS(5356), + [anon_sym_select] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497268,27 +496226,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3161] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3161), [sym_preproc_endregion] = STATE(3161), [sym_preproc_line] = STATE(3161), @@ -497298,47 +496250,49 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(5641), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5366), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5604), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5643), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5364), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_join] = ACTIONS(5364), + [anon_sym_let] = ACTIONS(5364), + [anon_sym_orderby] = ACTIONS(5364), + [anon_sym_group] = ACTIONS(5364), + [anon_sym_select] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497351,6 +496305,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3162] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6418), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6018), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(3162), [sym_preproc_endregion] = STATE(3162), [sym_preproc_line] = STATE(3162), @@ -497360,68 +496335,43 @@ 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), - [sym__identifier_token] = ACTIONS(4454), - [anon_sym_alias] = ACTIONS(4454), - [anon_sym_global] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4456), - [anon_sym_LPAREN] = ACTIONS(4456), - [anon_sym_LBRACE] = ACTIONS(4456), - [anon_sym_file] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4454), - [anon_sym_GT] = ACTIONS(4454), - [anon_sym_where] = ACTIONS(4454), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_notnull] = ACTIONS(4454), - [anon_sym_unmanaged] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4456), - [anon_sym_DASH_DASH] = ACTIONS(4456), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4456), - [anon_sym_SLASH] = ACTIONS(4454), - [anon_sym_PERCENT] = ACTIONS(4456), - [anon_sym_CARET] = ACTIONS(4456), - [anon_sym_PIPE] = ACTIONS(4454), - [anon_sym_AMP] = ACTIONS(4454), - [anon_sym_LT_LT] = ACTIONS(4456), - [anon_sym_GT_GT] = ACTIONS(4454), - [anon_sym_GT_GT_GT] = ACTIONS(4456), - [anon_sym_EQ_EQ] = ACTIONS(4456), - [anon_sym_BANG_EQ] = ACTIONS(4456), - [anon_sym_GT_EQ] = ACTIONS(4456), - [anon_sym_LT_EQ] = ACTIONS(4456), - [anon_sym_DOT] = ACTIONS(4454), - [anon_sym_scoped] = ACTIONS(4454), - [anon_sym_EQ_GT] = ACTIONS(4456), - [anon_sym_var] = ACTIONS(4454), - [anon_sym_yield] = ACTIONS(4454), - [anon_sym_switch] = ACTIONS(4454), - [anon_sym_when] = ACTIONS(4454), - [sym_discard] = ACTIONS(4454), - [anon_sym_DOT_DOT] = ACTIONS(4456), - [anon_sym_and] = ACTIONS(4454), - [anon_sym_or] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4456), - [anon_sym_PIPE_PIPE] = ACTIONS(4456), - [sym_op_coalescing] = ACTIONS(4456), - [anon_sym_from] = ACTIONS(4454), - [anon_sym_into] = ACTIONS(4454), - [anon_sym_join] = ACTIONS(4454), - [anon_sym_on] = ACTIONS(4454), - [anon_sym_equals] = ACTIONS(4454), - [anon_sym_let] = ACTIONS(4454), - [anon_sym_orderby] = ACTIONS(4454), - [anon_sym_ascending] = ACTIONS(4454), - [anon_sym_descending] = ACTIONS(4454), - [anon_sym_group] = ACTIONS(4454), - [anon_sym_by] = ACTIONS(4454), - [anon_sym_select] = ACTIONS(4454), - [anon_sym_as] = ACTIONS(4454), - [anon_sym_is] = ACTIONS(4454), - [anon_sym_DASH_GT] = ACTIONS(4456), - [anon_sym_with] = ACTIONS(4454), - [sym_grit_metavariable] = ACTIONS(4456), + [aux_sym__class_declaration_initializer_repeat1] = STATE(5548), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4146), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5216), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(1311), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_out] = ACTIONS(1311), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_this] = ACTIONS(1311), + [anon_sym_scoped] = ACTIONS(5226), + [anon_sym_params] = ACTIONS(5220), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(5222), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497434,27 +496384,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3163] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), [sym_preproc_region] = STATE(3163), [sym_preproc_endregion] = STATE(3163), [sym_preproc_line] = STATE(3163), @@ -497464,47 +496393,64 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_where] = ACTIONS(4774), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_from] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_join] = ACTIONS(4774), - [anon_sym_let] = ACTIONS(4774), - [anon_sym_orderby] = ACTIONS(4774), - [anon_sym_group] = ACTIONS(4774), - [anon_sym_select] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4431), + [anon_sym_LBRACK] = ACTIONS(4431), + [anon_sym_COLON] = ACTIONS(4431), + [anon_sym_COMMA] = ACTIONS(4431), + [anon_sym_RBRACK] = ACTIONS(4431), + [anon_sym_LPAREN] = ACTIONS(4431), + [anon_sym_RPAREN] = ACTIONS(4431), + [anon_sym_LBRACE] = ACTIONS(4431), + [anon_sym_RBRACE] = ACTIONS(4431), + [anon_sym_LT] = ACTIONS(4429), + [anon_sym_GT] = ACTIONS(4429), + [anon_sym_in] = ACTIONS(4429), + [anon_sym_where] = ACTIONS(4431), + [anon_sym_QMARK] = ACTIONS(4429), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_EQ_GT] = ACTIONS(4431), + [anon_sym_STAR] = ACTIONS(4431), + [anon_sym_switch] = ACTIONS(4431), + [anon_sym_DOT_DOT] = ACTIONS(4431), + [anon_sym_LT_EQ] = ACTIONS(4431), + [anon_sym_GT_EQ] = ACTIONS(4431), + [anon_sym_and] = ACTIONS(4431), + [anon_sym_or] = ACTIONS(4429), + [anon_sym_EQ_EQ] = ACTIONS(4431), + [anon_sym_BANG_EQ] = ACTIONS(4431), + [anon_sym_AMP_AMP] = ACTIONS(4431), + [anon_sym_PIPE_PIPE] = ACTIONS(4431), + [anon_sym_AMP] = ACTIONS(4429), + [sym_op_bitwise_or] = ACTIONS(4429), + [anon_sym_CARET] = ACTIONS(4431), + [sym_op_left_shift] = ACTIONS(4431), + [sym_op_right_shift] = ACTIONS(4429), + [sym_op_unsigned_right_shift] = ACTIONS(4431), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4429), + [sym_op_divide] = ACTIONS(4429), + [sym_op_modulo] = ACTIONS(4431), + [sym_op_coalescing] = ACTIONS(4431), + [anon_sym_BANG] = ACTIONS(4429), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = 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_group] = ACTIONS(4431), + [anon_sym_by] = ACTIONS(4431), + [anon_sym_select] = ACTIONS(4431), + [anon_sym_as] = ACTIONS(4431), + [anon_sym_is] = ACTIONS(4431), + [anon_sym_DASH_GT] = ACTIONS(4431), + [anon_sym_with] = 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), @@ -497517,27 +496463,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3164] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), [sym_preproc_region] = STATE(3164), [sym_preproc_endregion] = STATE(3164), [sym_preproc_line] = STATE(3164), @@ -497547,47 +496472,64 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5654), + [anon_sym_LBRACK] = ACTIONS(5654), + [anon_sym_COLON] = ACTIONS(5654), + [anon_sym_COMMA] = ACTIONS(5654), + [anon_sym_RBRACK] = ACTIONS(5654), + [anon_sym_LPAREN] = ACTIONS(5654), + [anon_sym_RPAREN] = ACTIONS(5654), + [anon_sym_LBRACE] = ACTIONS(5654), + [anon_sym_RBRACE] = ACTIONS(5654), + [anon_sym_LT] = ACTIONS(5656), + [anon_sym_GT] = ACTIONS(5656), + [anon_sym_in] = ACTIONS(5656), + [anon_sym_where] = ACTIONS(5654), + [anon_sym_QMARK] = ACTIONS(5656), + [anon_sym_DOT] = ACTIONS(5656), + [anon_sym_EQ_GT] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_switch] = ACTIONS(5654), + [anon_sym_DOT_DOT] = ACTIONS(5654), + [anon_sym_LT_EQ] = ACTIONS(5654), + [anon_sym_GT_EQ] = ACTIONS(5654), + [anon_sym_and] = ACTIONS(5654), + [anon_sym_or] = ACTIONS(5656), + [anon_sym_EQ_EQ] = ACTIONS(5654), + [anon_sym_BANG_EQ] = ACTIONS(5654), + [anon_sym_AMP_AMP] = ACTIONS(5654), + [anon_sym_PIPE_PIPE] = ACTIONS(5654), + [anon_sym_AMP] = ACTIONS(5656), + [sym_op_bitwise_or] = ACTIONS(5656), + [anon_sym_CARET] = ACTIONS(5654), + [sym_op_left_shift] = ACTIONS(5654), + [sym_op_right_shift] = ACTIONS(5656), + [sym_op_unsigned_right_shift] = ACTIONS(5654), + [anon_sym_PLUS] = ACTIONS(5656), + [anon_sym_DASH] = ACTIONS(5656), + [sym_op_divide] = ACTIONS(5656), + [sym_op_modulo] = ACTIONS(5654), + [sym_op_coalescing] = ACTIONS(5654), + [anon_sym_BANG] = ACTIONS(5656), + [anon_sym_PLUS_PLUS] = ACTIONS(5654), + [anon_sym_DASH_DASH] = ACTIONS(5654), + [anon_sym_from] = ACTIONS(5654), + [anon_sym_into] = ACTIONS(5654), + [anon_sym_join] = ACTIONS(5654), + [anon_sym_on] = ACTIONS(5654), + [anon_sym_equals] = ACTIONS(5654), + [anon_sym_let] = ACTIONS(5654), + [anon_sym_orderby] = ACTIONS(5654), + [anon_sym_group] = ACTIONS(5654), + [anon_sym_by] = ACTIONS(5654), + [anon_sym_select] = ACTIONS(5654), + [anon_sym_as] = ACTIONS(5654), + [anon_sym_is] = ACTIONS(5654), + [anon_sym_DASH_GT] = ACTIONS(5654), + [anon_sym_with] = ACTIONS(5654), + [aux_sym_preproc_if_token3] = ACTIONS(5654), + [aux_sym_preproc_else_token1] = ACTIONS(5654), + [aux_sym_preproc_elif_token1] = ACTIONS(5654), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497600,27 +496542,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3165] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3165), [sym_preproc_endregion] = STATE(3165), [sym_preproc_line] = STATE(3165), @@ -497630,47 +496566,49 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(5482), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497683,6 +496621,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3166] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3166), [sym_preproc_endregion] = STATE(3166), [sym_preproc_line] = STATE(3166), @@ -497692,68 +496645,49 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5504), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497766,27 +496700,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3167] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1190), - [sym_op_lte] = STATE(1190), - [sym_op_eq] = STATE(1189), - [sym_op_neq] = STATE(1189), - [sym_op_gt] = STATE(1190), - [sym_op_gte] = STATE(1190), - [sym_op_and] = STATE(1187), - [sym_op_or] = STATE(1186), - [sym_op_bitwise_and] = STATE(1183), - [sym_op_bitwise_or] = STATE(1182), - [sym_op_bitwise_xor] = STATE(1180), - [sym_op_left_shift] = STATE(1179), - [sym_op_right_shift] = STATE(1179), - [sym_op_unsigned_right_shift] = STATE(1179), - [sym_op_plus] = STATE(1176), - [sym_op_minus] = STATE(1176), - [sym_op_multiply] = STATE(1172), - [sym_op_divide] = STATE(1172), - [sym_op_modulo] = STATE(1172), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3167), [sym_preproc_endregion] = STATE(3167), [sym_preproc_line] = STATE(3167), @@ -497796,47 +496724,49 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497849,6 +496779,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3168] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3168), [sym_preproc_endregion] = STATE(3168), [sym_preproc_line] = STATE(3168), @@ -497858,68 +496803,49 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5506), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_where] = ACTIONS(5314), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5316), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5314), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_join] = ACTIONS(5314), + [anon_sym_let] = ACTIONS(5314), + [anon_sym_orderby] = ACTIONS(5314), + [anon_sym_group] = ACTIONS(5314), + [anon_sym_select] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497932,27 +496858,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3169] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3169), [sym_preproc_endregion] = STATE(3169), [sym_preproc_line] = STATE(3169), @@ -497962,46 +496867,64 @@ 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(4778), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_RBRACK] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5512), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5522), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5526), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_COLON] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(4341), + [anon_sym_RBRACK] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_RPAREN] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_in] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(4341), + [anon_sym_QMARK] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_EQ_GT] = ACTIONS(4341), + [anon_sym_STAR] = ACTIONS(4341), + [anon_sym_switch] = ACTIONS(4341), + [anon_sym_DOT_DOT] = ACTIONS(4341), + [anon_sym_LT_EQ] = ACTIONS(4341), + [anon_sym_GT_EQ] = ACTIONS(4341), + [anon_sym_and] = ACTIONS(4341), + [anon_sym_or] = ACTIONS(4339), + [anon_sym_EQ_EQ] = ACTIONS(4341), + [anon_sym_BANG_EQ] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_PIPE_PIPE] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4339), + [sym_op_bitwise_or] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4341), + [sym_op_left_shift] = ACTIONS(4341), + [sym_op_right_shift] = ACTIONS(4339), + [sym_op_unsigned_right_shift] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [sym_op_divide] = ACTIONS(4339), + [sym_op_modulo] = ACTIONS(4341), + [sym_op_coalescing] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4339), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_from] = ACTIONS(4341), + [anon_sym_into] = ACTIONS(4341), + [anon_sym_join] = ACTIONS(4341), + [anon_sym_on] = ACTIONS(4341), + [anon_sym_equals] = ACTIONS(4341), + [anon_sym_let] = ACTIONS(4341), + [anon_sym_orderby] = ACTIONS(4341), + [anon_sym_group] = ACTIONS(4341), + [anon_sym_by] = ACTIONS(4341), + [anon_sym_select] = ACTIONS(4341), + [anon_sym_as] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(4341), + [anon_sym_DASH_GT] = ACTIONS(4341), + [anon_sym_with] = ACTIONS(4341), + [aux_sym_preproc_if_token3] = ACTIONS(4341), + [aux_sym_preproc_else_token1] = ACTIONS(4341), + [aux_sym_preproc_elif_token1] = ACTIONS(4341), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498014,27 +496937,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3170] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3170), [sym_preproc_endregion] = STATE(3170), [sym_preproc_line] = STATE(3170), @@ -498044,46 +496946,64 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4778), - [anon_sym_QMARK] = ACTIONS(5530), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_from] = ACTIONS(4778), - [anon_sym_join] = ACTIONS(4778), - [anon_sym_let] = ACTIONS(4778), - [anon_sym_orderby] = ACTIONS(4778), - [anon_sym_group] = ACTIONS(4778), - [anon_sym_select] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5658), + [anon_sym_LBRACK] = ACTIONS(5658), + [anon_sym_COLON] = ACTIONS(5658), + [anon_sym_COMMA] = ACTIONS(5658), + [anon_sym_RBRACK] = ACTIONS(5658), + [anon_sym_LPAREN] = ACTIONS(5658), + [anon_sym_RPAREN] = ACTIONS(5658), + [anon_sym_LBRACE] = ACTIONS(5658), + [anon_sym_RBRACE] = ACTIONS(5658), + [anon_sym_LT] = ACTIONS(5660), + [anon_sym_GT] = ACTIONS(5660), + [anon_sym_in] = ACTIONS(5660), + [anon_sym_where] = ACTIONS(5658), + [anon_sym_QMARK] = ACTIONS(5660), + [anon_sym_DOT] = ACTIONS(5660), + [anon_sym_EQ_GT] = ACTIONS(5658), + [anon_sym_STAR] = ACTIONS(5658), + [anon_sym_switch] = ACTIONS(5658), + [anon_sym_DOT_DOT] = ACTIONS(5658), + [anon_sym_LT_EQ] = ACTIONS(5658), + [anon_sym_GT_EQ] = ACTIONS(5658), + [anon_sym_and] = ACTIONS(5658), + [anon_sym_or] = ACTIONS(5660), + [anon_sym_EQ_EQ] = ACTIONS(5658), + [anon_sym_BANG_EQ] = ACTIONS(5658), + [anon_sym_AMP_AMP] = ACTIONS(5658), + [anon_sym_PIPE_PIPE] = ACTIONS(5658), + [anon_sym_AMP] = ACTIONS(5660), + [sym_op_bitwise_or] = ACTIONS(5660), + [anon_sym_CARET] = ACTIONS(5658), + [sym_op_left_shift] = ACTIONS(5658), + [sym_op_right_shift] = ACTIONS(5660), + [sym_op_unsigned_right_shift] = ACTIONS(5658), + [anon_sym_PLUS] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5660), + [sym_op_divide] = ACTIONS(5660), + [sym_op_modulo] = ACTIONS(5658), + [sym_op_coalescing] = ACTIONS(5658), + [anon_sym_BANG] = ACTIONS(5660), + [anon_sym_PLUS_PLUS] = ACTIONS(5658), + [anon_sym_DASH_DASH] = ACTIONS(5658), + [anon_sym_from] = ACTIONS(5658), + [anon_sym_into] = ACTIONS(5658), + [anon_sym_join] = ACTIONS(5658), + [anon_sym_on] = ACTIONS(5658), + [anon_sym_equals] = ACTIONS(5658), + [anon_sym_let] = ACTIONS(5658), + [anon_sym_orderby] = ACTIONS(5658), + [anon_sym_group] = ACTIONS(5658), + [anon_sym_by] = ACTIONS(5658), + [anon_sym_select] = ACTIONS(5658), + [anon_sym_as] = ACTIONS(5658), + [anon_sym_is] = ACTIONS(5658), + [anon_sym_DASH_GT] = ACTIONS(5658), + [anon_sym_with] = ACTIONS(5658), + [aux_sym_preproc_if_token3] = ACTIONS(5658), + [aux_sym_preproc_else_token1] = ACTIONS(5658), + [aux_sym_preproc_elif_token1] = ACTIONS(5658), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498096,6 +497016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3171] = { + [sym_initializer_expression] = STATE(3350), [sym_preproc_region] = STATE(3171), [sym_preproc_endregion] = STATE(3171), [sym_preproc_line] = STATE(3171), @@ -498105,67 +497026,63 @@ 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), - [sym__identifier_token] = ACTIONS(5538), - [anon_sym_extern] = ACTIONS(5538), - [anon_sym_alias] = ACTIONS(5538), - [anon_sym_global] = ACTIONS(5538), - [anon_sym_unsafe] = ACTIONS(5538), - [anon_sym_static] = ACTIONS(5538), - [anon_sym_LBRACK] = ACTIONS(5540), - [anon_sym_LPAREN] = ACTIONS(5540), - [anon_sym_event] = ACTIONS(5538), - [anon_sym_class] = ACTIONS(5538), - [anon_sym_ref] = ACTIONS(5538), - [anon_sym_struct] = ACTIONS(5538), - [anon_sym_enum] = ACTIONS(5538), - [anon_sym_interface] = ACTIONS(5538), - [anon_sym_delegate] = ACTIONS(5538), - [anon_sym_record] = ACTIONS(5538), - [anon_sym_public] = ACTIONS(5538), - [anon_sym_private] = ACTIONS(5538), - [anon_sym_readonly] = ACTIONS(5538), - [anon_sym_abstract] = ACTIONS(5538), - [anon_sym_async] = ACTIONS(5538), - [anon_sym_const] = ACTIONS(5538), - [anon_sym_file] = ACTIONS(5538), - [anon_sym_fixed] = ACTIONS(5538), - [anon_sym_internal] = ACTIONS(5538), - [anon_sym_new] = ACTIONS(5538), - [anon_sym_override] = ACTIONS(5538), - [anon_sym_partial] = ACTIONS(5538), - [anon_sym_protected] = ACTIONS(5538), - [anon_sym_required] = ACTIONS(5538), - [anon_sym_sealed] = ACTIONS(5538), - [anon_sym_virtual] = ACTIONS(5538), - [anon_sym_volatile] = ACTIONS(5538), - [anon_sym_where] = ACTIONS(5538), - [anon_sym_notnull] = ACTIONS(5538), - [anon_sym_unmanaged] = ACTIONS(5538), - [anon_sym_TILDE] = ACTIONS(5540), - [anon_sym_implicit] = ACTIONS(5538), - [anon_sym_explicit] = ACTIONS(5538), - [anon_sym_scoped] = ACTIONS(5538), - [anon_sym_var] = ACTIONS(5538), - [sym_predefined_type] = ACTIONS(5538), - [anon_sym_yield] = ACTIONS(5538), - [anon_sym_when] = ACTIONS(5538), - [anon_sym_from] = ACTIONS(5538), - [anon_sym_into] = ACTIONS(5538), - [anon_sym_join] = ACTIONS(5538), - [anon_sym_on] = ACTIONS(5538), - [anon_sym_equals] = ACTIONS(5538), - [anon_sym_let] = ACTIONS(5538), - [anon_sym_orderby] = ACTIONS(5538), - [anon_sym_ascending] = ACTIONS(5538), - [anon_sym_descending] = ACTIONS(5538), - [anon_sym_group] = ACTIONS(5538), - [anon_sym_by] = ACTIONS(5538), - [anon_sym_select] = ACTIONS(5538), - [sym_grit_metavariable] = ACTIONS(5540), - [aux_sym_preproc_if_token1] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(5540), - [aux_sym_preproc_else_token1] = ACTIONS(5540), - [aux_sym_preproc_elif_token1] = ACTIONS(5540), + [anon_sym_SEMI] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym_COLON] = ACTIONS(5516), + [anon_sym_COMMA] = ACTIONS(5516), + [anon_sym_RBRACK] = ACTIONS(5516), + [anon_sym_LPAREN] = ACTIONS(5516), + [anon_sym_RPAREN] = ACTIONS(5516), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(5516), + [anon_sym_LT] = ACTIONS(5518), + [anon_sym_GT] = ACTIONS(5518), + [anon_sym_in] = ACTIONS(5516), + [anon_sym_where] = ACTIONS(5516), + [anon_sym_QMARK] = ACTIONS(5518), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_EQ_GT] = ACTIONS(5516), + [anon_sym_STAR] = ACTIONS(5516), + [anon_sym_switch] = ACTIONS(5516), + [anon_sym_DOT_DOT] = ACTIONS(5516), + [anon_sym_LT_EQ] = ACTIONS(5516), + [anon_sym_GT_EQ] = ACTIONS(5516), + [anon_sym_and] = ACTIONS(5516), + [anon_sym_or] = ACTIONS(5518), + [anon_sym_EQ_EQ] = ACTIONS(5516), + [anon_sym_BANG_EQ] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5516), + [anon_sym_PIPE_PIPE] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [sym_op_bitwise_or] = ACTIONS(5518), + [anon_sym_CARET] = ACTIONS(5516), + [sym_op_left_shift] = ACTIONS(5516), + [sym_op_right_shift] = ACTIONS(5518), + [sym_op_unsigned_right_shift] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5518), + [sym_op_divide] = ACTIONS(5518), + [sym_op_modulo] = ACTIONS(5516), + [sym_op_coalescing] = ACTIONS(5516), + [anon_sym_BANG] = ACTIONS(5518), + [anon_sym_PLUS_PLUS] = ACTIONS(5516), + [anon_sym_DASH_DASH] = ACTIONS(5516), + [anon_sym_from] = ACTIONS(5516), + [anon_sym_join] = ACTIONS(5516), + [anon_sym_on] = ACTIONS(5516), + [anon_sym_equals] = ACTIONS(5516), + [anon_sym_let] = ACTIONS(5516), + [anon_sym_orderby] = ACTIONS(5516), + [anon_sym_group] = ACTIONS(5516), + [anon_sym_by] = ACTIONS(5516), + [anon_sym_select] = ACTIONS(5516), + [anon_sym_as] = ACTIONS(5516), + [anon_sym_is] = ACTIONS(5516), + [anon_sym_DASH_GT] = ACTIONS(5516), + [anon_sym_with] = ACTIONS(5516), + [aux_sym_preproc_if_token3] = ACTIONS(5516), + [aux_sym_preproc_else_token1] = ACTIONS(5516), + [aux_sym_preproc_elif_token1] = ACTIONS(5516), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498178,27 +497095,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3172] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3172), [sym_preproc_endregion] = STATE(3172), [sym_preproc_line] = STATE(3172), @@ -498208,46 +497104,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3172), [sym_preproc_define] = STATE(3172), [sym_preproc_undef] = STATE(3172), - [anon_sym_SEMI] = ACTIONS(4752), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_RBRACK] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4752), - [anon_sym_RBRACE] = ACTIONS(4752), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_COLON] = ACTIONS(4282), + [anon_sym_COMMA] = ACTIONS(4282), + [anon_sym_RBRACK] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_RPAREN] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4282), + [anon_sym_LT] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4280), + [anon_sym_in] = ACTIONS(4280), + [anon_sym_where] = ACTIONS(4282), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_DOT] = ACTIONS(4280), + [anon_sym_EQ_GT] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_switch] = ACTIONS(4282), + [anon_sym_DOT_DOT] = ACTIONS(4282), + [anon_sym_LT_EQ] = ACTIONS(4282), + [anon_sym_GT_EQ] = ACTIONS(4282), + [anon_sym_and] = ACTIONS(4282), + [anon_sym_or] = ACTIONS(4280), + [anon_sym_EQ_EQ] = ACTIONS(4282), + [anon_sym_BANG_EQ] = ACTIONS(4282), + [anon_sym_AMP_AMP] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4282), + [anon_sym_AMP] = ACTIONS(4280), + [sym_op_bitwise_or] = ACTIONS(4280), + [anon_sym_CARET] = ACTIONS(4282), + [sym_op_left_shift] = ACTIONS(4282), + [sym_op_right_shift] = ACTIONS(4280), + [sym_op_unsigned_right_shift] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + [sym_op_divide] = ACTIONS(4280), + [sym_op_modulo] = ACTIONS(4282), + [sym_op_coalescing] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [anon_sym_from] = ACTIONS(4282), + [anon_sym_into] = ACTIONS(4282), + [anon_sym_join] = ACTIONS(4282), + [anon_sym_on] = ACTIONS(4282), + [anon_sym_equals] = ACTIONS(4282), + [anon_sym_let] = ACTIONS(4282), + [anon_sym_orderby] = ACTIONS(4282), + [anon_sym_group] = ACTIONS(4282), + [anon_sym_by] = ACTIONS(4282), + [anon_sym_select] = ACTIONS(4282), + [anon_sym_as] = ACTIONS(4282), + [anon_sym_is] = ACTIONS(4282), + [anon_sym_DASH_GT] = ACTIONS(4282), + [anon_sym_with] = ACTIONS(4282), + [aux_sym_preproc_if_token3] = ACTIONS(4282), + [aux_sym_preproc_else_token1] = ACTIONS(4282), + [aux_sym_preproc_elif_token1] = ACTIONS(4282), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498269,71 +497183,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), - [sym__identifier_token] = ACTIONS(5542), - [anon_sym_extern] = ACTIONS(5542), - [anon_sym_alias] = ACTIONS(5542), - [anon_sym_global] = ACTIONS(5542), - [anon_sym_unsafe] = ACTIONS(5542), - [anon_sym_static] = ACTIONS(5542), - [anon_sym_LBRACK] = ACTIONS(5544), - [anon_sym_LPAREN] = ACTIONS(5544), - [anon_sym_event] = ACTIONS(5542), - [anon_sym_class] = ACTIONS(5542), - [anon_sym_ref] = ACTIONS(5542), - [anon_sym_struct] = ACTIONS(5542), - [anon_sym_enum] = ACTIONS(5542), - [anon_sym_interface] = ACTIONS(5542), - [anon_sym_delegate] = ACTIONS(5542), - [anon_sym_record] = ACTIONS(5542), - [anon_sym_public] = ACTIONS(5542), - [anon_sym_private] = ACTIONS(5542), - [anon_sym_readonly] = ACTIONS(5542), - [anon_sym_abstract] = ACTIONS(5542), - [anon_sym_async] = ACTIONS(5542), - [anon_sym_const] = ACTIONS(5542), - [anon_sym_file] = ACTIONS(5542), - [anon_sym_fixed] = ACTIONS(5542), - [anon_sym_internal] = ACTIONS(5542), - [anon_sym_new] = ACTIONS(5542), - [anon_sym_override] = ACTIONS(5542), - [anon_sym_partial] = ACTIONS(5542), - [anon_sym_protected] = ACTIONS(5542), - [anon_sym_required] = ACTIONS(5542), - [anon_sym_sealed] = ACTIONS(5542), - [anon_sym_virtual] = ACTIONS(5542), - [anon_sym_volatile] = ACTIONS(5542), - [anon_sym_where] = ACTIONS(5542), - [anon_sym_notnull] = ACTIONS(5542), - [anon_sym_unmanaged] = ACTIONS(5542), - [anon_sym_TILDE] = ACTIONS(5544), - [anon_sym_implicit] = ACTIONS(5542), - [anon_sym_explicit] = ACTIONS(5542), - [anon_sym_scoped] = ACTIONS(5542), - [anon_sym_var] = ACTIONS(5542), - [sym_predefined_type] = ACTIONS(5542), - [anon_sym_yield] = ACTIONS(5542), - [anon_sym_when] = ACTIONS(5542), - [anon_sym_from] = ACTIONS(5542), - [anon_sym_into] = ACTIONS(5542), - [anon_sym_join] = ACTIONS(5542), - [anon_sym_on] = ACTIONS(5542), - [anon_sym_equals] = ACTIONS(5542), - [anon_sym_let] = ACTIONS(5542), - [anon_sym_orderby] = ACTIONS(5542), - [anon_sym_ascending] = ACTIONS(5542), - [anon_sym_descending] = ACTIONS(5542), - [anon_sym_group] = ACTIONS(5542), - [anon_sym_by] = ACTIONS(5542), - [anon_sym_select] = ACTIONS(5542), - [sym_grit_metavariable] = ACTIONS(5544), - [aux_sym_preproc_if_token1] = ACTIONS(5544), - [aux_sym_preproc_if_token3] = ACTIONS(5544), - [aux_sym_preproc_else_token1] = ACTIONS(5544), - [aux_sym_preproc_elif_token1] = ACTIONS(5544), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(4312), + [anon_sym_LBRACK] = ACTIONS(4312), + [anon_sym_COLON] = ACTIONS(4312), + [anon_sym_COMMA] = ACTIONS(4312), + [anon_sym_RBRACK] = ACTIONS(4312), + [anon_sym_LPAREN] = ACTIONS(4312), + [anon_sym_RPAREN] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4312), + [anon_sym_RBRACE] = ACTIONS(4312), + [anon_sym_LT] = ACTIONS(4310), + [anon_sym_GT] = ACTIONS(4310), + [anon_sym_in] = ACTIONS(4310), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_QMARK] = ACTIONS(4310), + [anon_sym_DOT] = ACTIONS(4310), + [anon_sym_EQ_GT] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4312), + [anon_sym_switch] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4312), + [anon_sym_LT_EQ] = ACTIONS(4312), + [anon_sym_GT_EQ] = ACTIONS(4312), + [anon_sym_and] = ACTIONS(4312), + [anon_sym_or] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_AMP_AMP] = ACTIONS(4312), + [anon_sym_PIPE_PIPE] = ACTIONS(4312), + [anon_sym_AMP] = ACTIONS(4310), + [sym_op_bitwise_or] = ACTIONS(4310), + [anon_sym_CARET] = ACTIONS(4312), + [sym_op_left_shift] = ACTIONS(4312), + [sym_op_right_shift] = ACTIONS(4310), + [sym_op_unsigned_right_shift] = ACTIONS(4312), + [anon_sym_PLUS] = ACTIONS(4310), + [anon_sym_DASH] = ACTIONS(4310), + [sym_op_divide] = ACTIONS(4310), + [sym_op_modulo] = ACTIONS(4312), + [sym_op_coalescing] = ACTIONS(4312), + [anon_sym_BANG] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4312), + [anon_sym_DASH_DASH] = 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_group] = ACTIONS(4312), + [anon_sym_by] = ACTIONS(4312), + [anon_sym_select] = ACTIONS(4312), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_DASH_GT] = ACTIONS(4312), + [anon_sym_with] = ACTIONS(4312), + [aux_sym_preproc_if_token3] = ACTIONS(4312), + [aux_sym_preproc_else_token1] = ACTIONS(4312), + [aux_sym_preproc_elif_token1] = ACTIONS(4312), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), [aux_sym_preproc_error_token1] = ACTIONS(13), [aux_sym_preproc_warning_token1] = ACTIONS(15), @@ -498342,27 +497253,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3174] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3174), [sym_preproc_endregion] = STATE(3174), [sym_preproc_line] = STATE(3174), @@ -498372,46 +497262,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3174), [sym_preproc_define] = STATE(3174), [sym_preproc_undef] = STATE(3174), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4760), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5546), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5550), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_COLON] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_RBRACK] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_RPAREN] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_QMARK] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_EQ_GT] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_switch] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_and] = ACTIONS(4403), + [anon_sym_or] = ACTIONS(4401), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_AMP] = ACTIONS(4401), + [sym_op_bitwise_or] = ACTIONS(4401), + [anon_sym_CARET] = ACTIONS(4403), + [sym_op_left_shift] = ACTIONS(4403), + [sym_op_right_shift] = ACTIONS(4401), + [sym_op_unsigned_right_shift] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [sym_op_divide] = ACTIONS(4401), + [sym_op_modulo] = ACTIONS(4403), + [sym_op_coalescing] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_from] = ACTIONS(4403), + [anon_sym_into] = ACTIONS(4403), + [anon_sym_join] = ACTIONS(4403), + [anon_sym_on] = ACTIONS(4403), + [anon_sym_equals] = ACTIONS(4403), + [anon_sym_let] = ACTIONS(4403), + [anon_sym_orderby] = ACTIONS(4403), + [anon_sym_group] = ACTIONS(4403), + [anon_sym_by] = ACTIONS(4403), + [anon_sym_select] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_DASH_GT] = ACTIONS(4403), + [anon_sym_with] = ACTIONS(4403), + [aux_sym_preproc_if_token3] = ACTIONS(4403), + [aux_sym_preproc_else_token1] = ACTIONS(4403), + [aux_sym_preproc_elif_token1] = ACTIONS(4403), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498424,27 +497332,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3175] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3175), [sym_preproc_endregion] = STATE(3175), [sym_preproc_line] = STATE(3175), @@ -498454,46 +497341,64 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_RBRACE] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5546), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5550), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5662), + [anon_sym_LBRACK] = ACTIONS(5662), + [anon_sym_COLON] = ACTIONS(5662), + [anon_sym_COMMA] = ACTIONS(5662), + [anon_sym_RBRACK] = ACTIONS(5662), + [anon_sym_LPAREN] = ACTIONS(5662), + [anon_sym_RPAREN] = ACTIONS(5662), + [anon_sym_RBRACE] = ACTIONS(5662), + [anon_sym_LT] = ACTIONS(5664), + [anon_sym_GT] = ACTIONS(5664), + [anon_sym_in] = ACTIONS(5664), + [anon_sym_where] = ACTIONS(5662), + [anon_sym_QMARK] = ACTIONS(5664), + [anon_sym_DOT] = ACTIONS(5664), + [anon_sym_EQ_GT] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5662), + [anon_sym_switch] = ACTIONS(5662), + [anon_sym_DOT_DOT] = ACTIONS(5662), + [anon_sym_LT_EQ] = ACTIONS(5662), + [anon_sym_GT_EQ] = ACTIONS(5662), + [anon_sym_and] = ACTIONS(5662), + [anon_sym_or] = ACTIONS(5664), + [anon_sym_EQ_EQ] = ACTIONS(5662), + [anon_sym_BANG_EQ] = ACTIONS(5662), + [anon_sym_AMP_AMP] = ACTIONS(5662), + [anon_sym_PIPE_PIPE] = ACTIONS(5662), + [anon_sym_AMP] = ACTIONS(5664), + [sym_op_bitwise_or] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5662), + [sym_op_left_shift] = ACTIONS(5662), + [sym_op_right_shift] = ACTIONS(5664), + [sym_op_unsigned_right_shift] = ACTIONS(5662), + [anon_sym_PLUS] = ACTIONS(5664), + [anon_sym_DASH] = ACTIONS(5664), + [sym_op_divide] = ACTIONS(5664), + [sym_op_modulo] = ACTIONS(5662), + [sym_op_coalescing] = ACTIONS(5662), + [anon_sym_BANG] = ACTIONS(5664), + [anon_sym_PLUS_PLUS] = ACTIONS(5662), + [anon_sym_DASH_DASH] = ACTIONS(5662), + [anon_sym_from] = ACTIONS(5662), + [anon_sym_into] = ACTIONS(5662), + [anon_sym_join] = ACTIONS(5662), + [anon_sym_on] = ACTIONS(5662), + [anon_sym_equals] = ACTIONS(5662), + [anon_sym_let] = ACTIONS(5662), + [anon_sym_orderby] = ACTIONS(5662), + [anon_sym_group] = ACTIONS(5662), + [anon_sym_by] = ACTIONS(5662), + [anon_sym_select] = ACTIONS(5662), + [anon_sym_as] = ACTIONS(5662), + [anon_sym_is] = ACTIONS(5662), + [anon_sym_DASH_GT] = ACTIONS(5662), + [anon_sym_with] = ACTIONS(5662), + [aux_sym_raw_string_literal_token1] = ACTIONS(5666), + [aux_sym_preproc_if_token3] = ACTIONS(5662), + [aux_sym_preproc_else_token1] = ACTIONS(5662), + [aux_sym_preproc_elif_token1] = ACTIONS(5662), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498506,27 +497411,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3176] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3176), [sym_preproc_endregion] = STATE(3176), [sym_preproc_line] = STATE(3176), @@ -498536,46 +497420,64 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4770), - [anon_sym_COMMA] = ACTIONS(4770), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4770), - [anon_sym_RBRACE] = ACTIONS(4770), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5546), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4770), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5550), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_RBRACK] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_EQ_GT] = ACTIONS(4337), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_switch] = ACTIONS(4337), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_and] = ACTIONS(4337), + [anon_sym_or] = ACTIONS(4335), + [anon_sym_EQ_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4335), + [sym_op_bitwise_or] = ACTIONS(4335), + [anon_sym_CARET] = ACTIONS(4337), + [sym_op_left_shift] = ACTIONS(4337), + [sym_op_right_shift] = ACTIONS(4335), + [sym_op_unsigned_right_shift] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [sym_op_divide] = ACTIONS(4335), + [sym_op_modulo] = ACTIONS(4337), + [sym_op_coalescing] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_from] = ACTIONS(4337), + [anon_sym_into] = ACTIONS(4337), + [anon_sym_join] = ACTIONS(4337), + [anon_sym_on] = ACTIONS(4337), + [anon_sym_equals] = ACTIONS(4337), + [anon_sym_let] = ACTIONS(4337), + [anon_sym_orderby] = ACTIONS(4337), + [anon_sym_group] = ACTIONS(4337), + [anon_sym_by] = ACTIONS(4337), + [anon_sym_select] = ACTIONS(4337), + [anon_sym_as] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4337), + [anon_sym_DASH_GT] = ACTIONS(4337), + [anon_sym_with] = ACTIONS(4337), + [aux_sym_preproc_if_token3] = ACTIONS(4337), + [aux_sym_preproc_else_token1] = ACTIONS(4337), + [aux_sym_preproc_elif_token1] = ACTIONS(4337), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498597,67 +497499,64 @@ 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), - [sym__identifier_token] = ACTIONS(4468), - [anon_sym_alias] = ACTIONS(4468), - [anon_sym_global] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_COLON] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_file] = ACTIONS(4468), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_notnull] = ACTIONS(4468), - [anon_sym_unmanaged] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3205), - [anon_sym_EQ_EQ] = ACTIONS(3205), - [anon_sym_BANG_EQ] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3205), - [anon_sym_LT_EQ] = ACTIONS(3205), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_scoped] = ACTIONS(4468), - [anon_sym_var] = ACTIONS(4468), - [anon_sym_yield] = ACTIONS(4468), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_when] = ACTIONS(4468), - [sym_discard] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(3205), - [anon_sym_and] = ACTIONS(4468), - [anon_sym_or] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [sym_op_coalescing] = ACTIONS(3205), - [anon_sym_from] = ACTIONS(4468), - [anon_sym_into] = ACTIONS(4468), - [anon_sym_join] = ACTIONS(4468), - [anon_sym_on] = ACTIONS(4468), - [anon_sym_equals] = ACTIONS(4468), - [anon_sym_let] = ACTIONS(4468), - [anon_sym_orderby] = ACTIONS(4468), - [anon_sym_ascending] = ACTIONS(4468), - [anon_sym_descending] = ACTIONS(4468), - [anon_sym_group] = ACTIONS(4468), - [anon_sym_by] = ACTIONS(4468), - [anon_sym_select] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_DASH_GT] = ACTIONS(3205), - [anon_sym_with] = ACTIONS(3203), - [sym_grit_metavariable] = ACTIONS(4470), + [sym__identifier_token] = ACTIONS(5668), + [anon_sym_extern] = ACTIONS(5668), + [anon_sym_alias] = ACTIONS(5668), + [anon_sym_global] = ACTIONS(5668), + [anon_sym_unsafe] = ACTIONS(5668), + [anon_sym_static] = ACTIONS(5668), + [anon_sym_LBRACK] = ACTIONS(5670), + [anon_sym_LPAREN] = ACTIONS(5670), + [anon_sym_event] = ACTIONS(5668), + [anon_sym_class] = ACTIONS(5668), + [anon_sym_ref] = ACTIONS(5668), + [anon_sym_struct] = ACTIONS(5668), + [anon_sym_enum] = ACTIONS(5668), + [anon_sym_interface] = ACTIONS(5668), + [anon_sym_delegate] = ACTIONS(5668), + [anon_sym_record] = ACTIONS(5668), + [anon_sym_public] = ACTIONS(5668), + [anon_sym_private] = ACTIONS(5668), + [anon_sym_readonly] = ACTIONS(5668), + [anon_sym_abstract] = ACTIONS(5668), + [anon_sym_async] = ACTIONS(5668), + [anon_sym_const] = ACTIONS(5668), + [anon_sym_file] = ACTIONS(5668), + [anon_sym_fixed] = ACTIONS(5668), + [anon_sym_internal] = ACTIONS(5668), + [anon_sym_new] = ACTIONS(5668), + [anon_sym_override] = ACTIONS(5668), + [anon_sym_partial] = ACTIONS(5668), + [anon_sym_protected] = ACTIONS(5668), + [anon_sym_required] = ACTIONS(5668), + [anon_sym_sealed] = ACTIONS(5668), + [anon_sym_virtual] = ACTIONS(5668), + [anon_sym_volatile] = ACTIONS(5668), + [anon_sym_where] = ACTIONS(5668), + [anon_sym_notnull] = ACTIONS(5668), + [anon_sym_unmanaged] = ACTIONS(5668), + [anon_sym_implicit] = ACTIONS(5668), + [anon_sym_explicit] = ACTIONS(5668), + [anon_sym_TILDE] = ACTIONS(5670), + [anon_sym_scoped] = ACTIONS(5668), + [anon_sym_var] = ACTIONS(5668), + [sym_predefined_type] = ACTIONS(5668), + [anon_sym_yield] = ACTIONS(5668), + [anon_sym_when] = ACTIONS(5668), + [anon_sym_from] = ACTIONS(5668), + [anon_sym_into] = ACTIONS(5668), + [anon_sym_join] = ACTIONS(5668), + [anon_sym_on] = ACTIONS(5668), + [anon_sym_equals] = ACTIONS(5668), + [anon_sym_let] = ACTIONS(5668), + [anon_sym_orderby] = ACTIONS(5668), + [anon_sym_ascending] = ACTIONS(5668), + [anon_sym_descending] = ACTIONS(5668), + [anon_sym_group] = ACTIONS(5668), + [anon_sym_by] = ACTIONS(5668), + [anon_sym_select] = ACTIONS(5668), + [sym_grit_metavariable] = ACTIONS(5670), + [aux_sym_preproc_if_token1] = ACTIONS(5670), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498679,67 +497578,64 @@ 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), - [sym__identifier_token] = ACTIONS(5554), - [anon_sym_extern] = ACTIONS(5554), - [anon_sym_alias] = ACTIONS(5554), - [anon_sym_global] = ACTIONS(5554), - [anon_sym_unsafe] = ACTIONS(5554), - [anon_sym_static] = ACTIONS(5554), - [anon_sym_LBRACK] = ACTIONS(5556), - [anon_sym_LPAREN] = ACTIONS(5556), - [anon_sym_event] = ACTIONS(5554), - [anon_sym_class] = ACTIONS(5554), - [anon_sym_ref] = ACTIONS(5554), - [anon_sym_struct] = ACTIONS(5554), - [anon_sym_enum] = ACTIONS(5554), - [anon_sym_interface] = ACTIONS(5554), - [anon_sym_delegate] = ACTIONS(5554), - [anon_sym_record] = ACTIONS(5554), - [anon_sym_public] = ACTIONS(5554), - [anon_sym_private] = ACTIONS(5554), - [anon_sym_readonly] = ACTIONS(5554), - [anon_sym_abstract] = ACTIONS(5554), - [anon_sym_async] = ACTIONS(5554), - [anon_sym_const] = ACTIONS(5554), - [anon_sym_file] = ACTIONS(5554), - [anon_sym_fixed] = ACTIONS(5554), - [anon_sym_internal] = ACTIONS(5554), - [anon_sym_new] = ACTIONS(5554), - [anon_sym_override] = ACTIONS(5554), - [anon_sym_partial] = ACTIONS(5554), - [anon_sym_protected] = ACTIONS(5554), - [anon_sym_required] = ACTIONS(5554), - [anon_sym_sealed] = ACTIONS(5554), - [anon_sym_virtual] = ACTIONS(5554), - [anon_sym_volatile] = ACTIONS(5554), - [anon_sym_where] = ACTIONS(5554), - [anon_sym_notnull] = ACTIONS(5554), - [anon_sym_unmanaged] = ACTIONS(5554), - [anon_sym_TILDE] = ACTIONS(5556), - [anon_sym_implicit] = ACTIONS(5554), - [anon_sym_explicit] = ACTIONS(5554), - [anon_sym_scoped] = ACTIONS(5554), - [anon_sym_var] = ACTIONS(5554), - [sym_predefined_type] = ACTIONS(5554), - [anon_sym_yield] = ACTIONS(5554), - [anon_sym_when] = ACTIONS(5554), - [anon_sym_from] = ACTIONS(5554), - [anon_sym_into] = ACTIONS(5554), - [anon_sym_join] = ACTIONS(5554), - [anon_sym_on] = ACTIONS(5554), - [anon_sym_equals] = ACTIONS(5554), - [anon_sym_let] = ACTIONS(5554), - [anon_sym_orderby] = ACTIONS(5554), - [anon_sym_ascending] = ACTIONS(5554), - [anon_sym_descending] = ACTIONS(5554), - [anon_sym_group] = ACTIONS(5554), - [anon_sym_by] = ACTIONS(5554), - [anon_sym_select] = ACTIONS(5554), - [sym_grit_metavariable] = ACTIONS(5556), - [aux_sym_preproc_if_token1] = ACTIONS(5556), - [aux_sym_preproc_if_token3] = ACTIONS(5556), - [aux_sym_preproc_else_token1] = ACTIONS(5556), - [aux_sym_preproc_elif_token1] = ACTIONS(5556), + [anon_sym_SEMI] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_COLON] = ACTIONS(4353), + [anon_sym_COMMA] = ACTIONS(4353), + [anon_sym_RBRACK] = ACTIONS(4353), + [anon_sym_LPAREN] = ACTIONS(4353), + [anon_sym_RPAREN] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4353), + [anon_sym_RBRACE] = ACTIONS(4353), + [anon_sym_LT] = ACTIONS(4351), + [anon_sym_GT] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4351), + [anon_sym_where] = ACTIONS(4353), + [anon_sym_QMARK] = ACTIONS(4351), + [anon_sym_DOT] = ACTIONS(4351), + [anon_sym_EQ_GT] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_switch] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4353), + [anon_sym_LT_EQ] = ACTIONS(4353), + [anon_sym_GT_EQ] = ACTIONS(4353), + [anon_sym_and] = ACTIONS(4353), + [anon_sym_or] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4353), + [anon_sym_PIPE_PIPE] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4351), + [sym_op_bitwise_or] = ACTIONS(4351), + [anon_sym_CARET] = ACTIONS(4353), + [sym_op_left_shift] = ACTIONS(4353), + [sym_op_right_shift] = ACTIONS(4351), + [sym_op_unsigned_right_shift] = ACTIONS(4353), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_DASH] = ACTIONS(4351), + [sym_op_divide] = ACTIONS(4351), + [sym_op_modulo] = ACTIONS(4353), + [sym_op_coalescing] = ACTIONS(4353), + [anon_sym_BANG] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4353), + [anon_sym_DASH_DASH] = ACTIONS(4353), + [anon_sym_from] = ACTIONS(4353), + [anon_sym_into] = ACTIONS(4353), + [anon_sym_join] = ACTIONS(4353), + [anon_sym_on] = ACTIONS(4353), + [anon_sym_equals] = ACTIONS(4353), + [anon_sym_let] = ACTIONS(4353), + [anon_sym_orderby] = ACTIONS(4353), + [anon_sym_group] = ACTIONS(4353), + [anon_sym_by] = ACTIONS(4353), + [anon_sym_select] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_DASH_GT] = ACTIONS(4353), + [anon_sym_with] = ACTIONS(4353), + [aux_sym_preproc_if_token3] = ACTIONS(4353), + [aux_sym_preproc_else_token1] = ACTIONS(4353), + [aux_sym_preproc_elif_token1] = ACTIONS(4353), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498761,67 +497657,64 @@ 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), - [sym__identifier_token] = ACTIONS(5558), - [anon_sym_extern] = ACTIONS(5558), - [anon_sym_alias] = ACTIONS(5558), - [anon_sym_global] = ACTIONS(5558), - [anon_sym_unsafe] = ACTIONS(5558), - [anon_sym_static] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5560), - [anon_sym_LPAREN] = ACTIONS(5560), - [anon_sym_event] = ACTIONS(5558), - [anon_sym_class] = ACTIONS(5558), - [anon_sym_ref] = ACTIONS(5558), - [anon_sym_struct] = ACTIONS(5558), - [anon_sym_enum] = ACTIONS(5558), - [anon_sym_interface] = ACTIONS(5558), - [anon_sym_delegate] = ACTIONS(5558), - [anon_sym_record] = ACTIONS(5558), - [anon_sym_public] = ACTIONS(5558), - [anon_sym_private] = ACTIONS(5558), - [anon_sym_readonly] = ACTIONS(5558), - [anon_sym_abstract] = ACTIONS(5558), - [anon_sym_async] = ACTIONS(5558), - [anon_sym_const] = ACTIONS(5558), - [anon_sym_file] = ACTIONS(5558), - [anon_sym_fixed] = ACTIONS(5558), - [anon_sym_internal] = ACTIONS(5558), - [anon_sym_new] = ACTIONS(5558), - [anon_sym_override] = ACTIONS(5558), - [anon_sym_partial] = ACTIONS(5558), - [anon_sym_protected] = ACTIONS(5558), - [anon_sym_required] = ACTIONS(5558), - [anon_sym_sealed] = ACTIONS(5558), - [anon_sym_virtual] = ACTIONS(5558), - [anon_sym_volatile] = ACTIONS(5558), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_notnull] = ACTIONS(5558), - [anon_sym_unmanaged] = ACTIONS(5558), - [anon_sym_TILDE] = ACTIONS(5560), - [anon_sym_implicit] = ACTIONS(5558), - [anon_sym_explicit] = ACTIONS(5558), - [anon_sym_scoped] = ACTIONS(5558), - [anon_sym_var] = ACTIONS(5558), - [sym_predefined_type] = ACTIONS(5558), - [anon_sym_yield] = ACTIONS(5558), - [anon_sym_when] = ACTIONS(5558), - [anon_sym_from] = ACTIONS(5558), - [anon_sym_into] = ACTIONS(5558), - [anon_sym_join] = ACTIONS(5558), - [anon_sym_on] = ACTIONS(5558), - [anon_sym_equals] = ACTIONS(5558), - [anon_sym_let] = ACTIONS(5558), - [anon_sym_orderby] = ACTIONS(5558), - [anon_sym_ascending] = ACTIONS(5558), - [anon_sym_descending] = ACTIONS(5558), - [anon_sym_group] = ACTIONS(5558), - [anon_sym_by] = ACTIONS(5558), - [anon_sym_select] = ACTIONS(5558), - [sym_grit_metavariable] = ACTIONS(5560), - [aux_sym_preproc_if_token1] = ACTIONS(5560), - [aux_sym_preproc_if_token3] = ACTIONS(5560), - [aux_sym_preproc_else_token1] = ACTIONS(5560), - [aux_sym_preproc_elif_token1] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_EQ_GT] = ACTIONS(4361), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_switch] = ACTIONS(4361), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_and] = ACTIONS(4361), + [anon_sym_or] = ACTIONS(4359), + [anon_sym_EQ_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4359), + [sym_op_bitwise_or] = ACTIONS(4359), + [anon_sym_CARET] = ACTIONS(4361), + [sym_op_left_shift] = ACTIONS(4361), + [sym_op_right_shift] = ACTIONS(4359), + [sym_op_unsigned_right_shift] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [sym_op_divide] = ACTIONS(4359), + [sym_op_modulo] = ACTIONS(4361), + [sym_op_coalescing] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_from] = ACTIONS(4361), + [anon_sym_into] = ACTIONS(4361), + [anon_sym_join] = ACTIONS(4361), + [anon_sym_on] = ACTIONS(4361), + [anon_sym_equals] = ACTIONS(4361), + [anon_sym_let] = ACTIONS(4361), + [anon_sym_orderby] = ACTIONS(4361), + [anon_sym_group] = ACTIONS(4361), + [anon_sym_by] = ACTIONS(4361), + [anon_sym_select] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4361), + [anon_sym_DASH_GT] = ACTIONS(4361), + [anon_sym_with] = ACTIONS(4361), + [aux_sym_preproc_if_token3] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498834,27 +497727,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3180] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3180), [sym_preproc_endregion] = STATE(3180), [sym_preproc_line] = STATE(3180), @@ -498864,46 +497736,64 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4794), - [anon_sym_RBRACE] = ACTIONS(4794), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4794), + [sym__identifier_token] = ACTIONS(5672), + [anon_sym_extern] = ACTIONS(5672), + [anon_sym_alias] = ACTIONS(5672), + [anon_sym_global] = ACTIONS(5672), + [anon_sym_unsafe] = ACTIONS(5672), + [anon_sym_static] = ACTIONS(5672), + [anon_sym_LBRACK] = ACTIONS(5674), + [anon_sym_LPAREN] = ACTIONS(5674), + [anon_sym_event] = ACTIONS(5672), + [anon_sym_class] = ACTIONS(5672), + [anon_sym_ref] = ACTIONS(5672), + [anon_sym_struct] = ACTIONS(5672), + [anon_sym_enum] = ACTIONS(5672), + [anon_sym_interface] = ACTIONS(5672), + [anon_sym_delegate] = ACTIONS(5672), + [anon_sym_record] = ACTIONS(5672), + [anon_sym_public] = ACTIONS(5672), + [anon_sym_private] = ACTIONS(5672), + [anon_sym_readonly] = ACTIONS(5672), + [anon_sym_abstract] = ACTIONS(5672), + [anon_sym_async] = ACTIONS(5672), + [anon_sym_const] = ACTIONS(5672), + [anon_sym_file] = ACTIONS(5672), + [anon_sym_fixed] = ACTIONS(5672), + [anon_sym_internal] = ACTIONS(5672), + [anon_sym_new] = ACTIONS(5672), + [anon_sym_override] = ACTIONS(5672), + [anon_sym_partial] = ACTIONS(5672), + [anon_sym_protected] = ACTIONS(5672), + [anon_sym_required] = ACTIONS(5672), + [anon_sym_sealed] = ACTIONS(5672), + [anon_sym_virtual] = ACTIONS(5672), + [anon_sym_volatile] = ACTIONS(5672), + [anon_sym_where] = ACTIONS(5672), + [anon_sym_notnull] = ACTIONS(5672), + [anon_sym_unmanaged] = ACTIONS(5672), + [anon_sym_implicit] = ACTIONS(5672), + [anon_sym_explicit] = ACTIONS(5672), + [anon_sym_TILDE] = ACTIONS(5674), + [anon_sym_scoped] = ACTIONS(5672), + [anon_sym_var] = ACTIONS(5672), + [sym_predefined_type] = ACTIONS(5672), + [anon_sym_yield] = ACTIONS(5672), + [anon_sym_when] = ACTIONS(5672), + [anon_sym_from] = ACTIONS(5672), + [anon_sym_into] = ACTIONS(5672), + [anon_sym_join] = ACTIONS(5672), + [anon_sym_on] = ACTIONS(5672), + [anon_sym_equals] = ACTIONS(5672), + [anon_sym_let] = ACTIONS(5672), + [anon_sym_orderby] = ACTIONS(5672), + [anon_sym_ascending] = ACTIONS(5672), + [anon_sym_descending] = ACTIONS(5672), + [anon_sym_group] = ACTIONS(5672), + [anon_sym_by] = ACTIONS(5672), + [anon_sym_select] = ACTIONS(5672), + [sym_grit_metavariable] = ACTIONS(5674), + [aux_sym_preproc_if_token1] = ACTIONS(5674), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498916,27 +497806,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3181] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [sym_attribute_list] = STATE(6254), + [sym__attribute_list] = STATE(6246), + [sym_type_parameter] = STATE(7047), + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7161), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(6602), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if_in_attribute_list] = STATE(6254), [sym_preproc_region] = STATE(3181), [sym_preproc_endregion] = STATE(3181), [sym_preproc_line] = STATE(3181), @@ -498946,46 +497837,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3181), [sym_preproc_define] = STATE(3181), [sym_preproc_undef] = STATE(3181), - [anon_sym_SEMI] = ACTIONS(4782), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_RBRACK] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5512), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5522), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5526), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [aux_sym__class_declaration_initializer_repeat1] = STATE(6049), + [aux_sym_type_argument_list_repeat1] = STATE(7162), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_in] = ACTIONS(5686), + [anon_sym_out] = ACTIONS(5686), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(5692), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498998,27 +497885,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3182] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3182), [sym_preproc_endregion] = STATE(3182), [sym_preproc_line] = STATE(3182), @@ -499028,46 +497909,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3182), [sym_preproc_define] = STATE(3182), [sym_preproc_undef] = STATE(3182), - [anon_sym_SEMI] = ACTIONS(4748), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_RBRACK] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4748), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5512), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5522), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5526), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_where] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5310), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5308), + [anon_sym_select] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499080,6 +497964,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3183] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3183), [sym_preproc_endregion] = STATE(3183), [sym_preproc_line] = STATE(3183), @@ -499089,67 +497988,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3183), [sym_preproc_define] = STATE(3183), [sym_preproc_undef] = STATE(3183), - [anon_sym_EQ] = ACTIONS(4560), - [anon_sym_LBRACK] = ACTIONS(4558), - [anon_sym_COLON] = ACTIONS(4558), - [anon_sym_COMMA] = ACTIONS(4558), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_LT] = ACTIONS(4560), - [anon_sym_GT] = ACTIONS(4560), - [anon_sym_where] = ACTIONS(4558), - [anon_sym_QMARK] = ACTIONS(4560), - [anon_sym_BANG] = ACTIONS(4560), - [anon_sym_PLUS_PLUS] = ACTIONS(4558), - [anon_sym_DASH_DASH] = ACTIONS(4558), - [anon_sym_PLUS] = ACTIONS(4560), - [anon_sym_DASH] = ACTIONS(4560), - [anon_sym_STAR] = ACTIONS(4560), - [anon_sym_SLASH] = ACTIONS(4560), - [anon_sym_PERCENT] = ACTIONS(4560), - [anon_sym_CARET] = ACTIONS(4560), - [anon_sym_PIPE] = ACTIONS(4560), - [anon_sym_AMP] = ACTIONS(4560), - [anon_sym_LT_LT] = ACTIONS(4560), - [anon_sym_GT_GT] = ACTIONS(4560), - [anon_sym_GT_GT_GT] = ACTIONS(4560), - [anon_sym_EQ_EQ] = ACTIONS(4558), - [anon_sym_BANG_EQ] = ACTIONS(4558), - [anon_sym_GT_EQ] = ACTIONS(4558), - [anon_sym_LT_EQ] = ACTIONS(4558), - [anon_sym_DOT] = ACTIONS(4560), - [anon_sym_switch] = ACTIONS(4558), - [anon_sym_DOT_DOT] = ACTIONS(4558), - [anon_sym_and] = ACTIONS(4558), - [anon_sym_or] = ACTIONS(4560), - [anon_sym_PLUS_EQ] = ACTIONS(4558), - [anon_sym_DASH_EQ] = ACTIONS(4558), - [anon_sym_STAR_EQ] = ACTIONS(4558), - [anon_sym_SLASH_EQ] = ACTIONS(4558), - [anon_sym_PERCENT_EQ] = ACTIONS(4558), - [anon_sym_AMP_EQ] = ACTIONS(4558), - [anon_sym_CARET_EQ] = ACTIONS(4558), - [anon_sym_PIPE_EQ] = ACTIONS(4558), - [anon_sym_LT_LT_EQ] = ACTIONS(4558), - [anon_sym_GT_GT_EQ] = ACTIONS(4558), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4558), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4558), - [anon_sym_AMP_AMP] = ACTIONS(4558), - [anon_sym_PIPE_PIPE] = ACTIONS(4558), - [sym_op_coalescing] = ACTIONS(4560), - [anon_sym_from] = ACTIONS(4558), - [anon_sym_into] = ACTIONS(4558), - [anon_sym_join] = ACTIONS(4558), - [anon_sym_let] = ACTIONS(4558), - [anon_sym_orderby] = ACTIONS(4558), - [anon_sym_ascending] = ACTIONS(4558), - [anon_sym_descending] = ACTIONS(4558), - [anon_sym_group] = ACTIONS(4558), - [anon_sym_select] = ACTIONS(4558), - [anon_sym_as] = ACTIONS(4560), - [anon_sym_is] = ACTIONS(4558), - [anon_sym_DASH_GT] = ACTIONS(4558), - [anon_sym_with] = ACTIONS(4558), - [sym_grit_metavariable] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_where] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5354), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5352), + [anon_sym_select] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499162,27 +498043,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3184] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3184), [sym_preproc_endregion] = STATE(3184), [sym_preproc_line] = STATE(3184), @@ -499192,46 +498067,49 @@ 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(4708), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_RBRACK] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4708), - [anon_sym_RBRACE] = ACTIONS(4708), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5512), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5522), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5526), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_where] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(1365), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_join] = ACTIONS(1365), + [anon_sym_let] = ACTIONS(1365), + [anon_sym_orderby] = ACTIONS(1365), + [anon_sym_group] = ACTIONS(1365), + [anon_sym_select] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499244,27 +498122,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3185] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3185), [sym_preproc_endregion] = STATE(3185), [sym_preproc_line] = STATE(3185), @@ -499274,46 +498131,64 @@ 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(4790), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_RBRACK] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5512), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5522), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5526), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [sym__identifier_token] = ACTIONS(3735), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3735), + [anon_sym_global] = ACTIONS(3735), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_interface] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_record] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3735), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_where] = ACTIONS(3735), + [anon_sym_QMARK] = ACTIONS(3694), + [anon_sym_notnull] = ACTIONS(3735), + [anon_sym_unmanaged] = ACTIONS(3735), + [anon_sym_DOT] = ACTIONS(3694), + [anon_sym_scoped] = ACTIONS(3735), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3735), + [anon_sym_STAR] = ACTIONS(3694), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3735), + [anon_sym_when] = ACTIONS(3735), + [anon_sym_from] = ACTIONS(3735), + [anon_sym_into] = ACTIONS(3735), + [anon_sym_join] = ACTIONS(3735), + [anon_sym_on] = ACTIONS(3735), + [anon_sym_equals] = ACTIONS(3735), + [anon_sym_let] = ACTIONS(3735), + [anon_sym_orderby] = ACTIONS(3735), + [anon_sym_ascending] = ACTIONS(3735), + [anon_sym_descending] = ACTIONS(3735), + [anon_sym_group] = ACTIONS(3735), + [anon_sym_by] = ACTIONS(3735), + [anon_sym_select] = ACTIONS(3735), + [sym_grit_metavariable] = ACTIONS(3740), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499326,27 +498201,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3186] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3186), [sym_preproc_endregion] = STATE(3186), [sym_preproc_line] = STATE(3186), @@ -499356,46 +498210,64 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4778), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5546), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5550), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [sym__identifier_token] = ACTIONS(5696), + [anon_sym_extern] = ACTIONS(5696), + [anon_sym_alias] = ACTIONS(5696), + [anon_sym_global] = ACTIONS(5696), + [anon_sym_unsafe] = ACTIONS(5696), + [anon_sym_static] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5698), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_event] = ACTIONS(5696), + [anon_sym_class] = ACTIONS(5696), + [anon_sym_ref] = ACTIONS(5696), + [anon_sym_struct] = ACTIONS(5696), + [anon_sym_enum] = ACTIONS(5696), + [anon_sym_interface] = ACTIONS(5696), + [anon_sym_delegate] = ACTIONS(5696), + [anon_sym_record] = ACTIONS(5696), + [anon_sym_public] = ACTIONS(5696), + [anon_sym_private] = ACTIONS(5696), + [anon_sym_readonly] = ACTIONS(5696), + [anon_sym_abstract] = ACTIONS(5696), + [anon_sym_async] = ACTIONS(5696), + [anon_sym_const] = ACTIONS(5696), + [anon_sym_file] = ACTIONS(5696), + [anon_sym_fixed] = ACTIONS(5696), + [anon_sym_internal] = ACTIONS(5696), + [anon_sym_new] = ACTIONS(5696), + [anon_sym_override] = ACTIONS(5696), + [anon_sym_partial] = ACTIONS(5696), + [anon_sym_protected] = ACTIONS(5696), + [anon_sym_required] = ACTIONS(5696), + [anon_sym_sealed] = ACTIONS(5696), + [anon_sym_virtual] = ACTIONS(5696), + [anon_sym_volatile] = ACTIONS(5696), + [anon_sym_where] = ACTIONS(5696), + [anon_sym_notnull] = ACTIONS(5696), + [anon_sym_unmanaged] = ACTIONS(5696), + [anon_sym_implicit] = ACTIONS(5696), + [anon_sym_explicit] = ACTIONS(5696), + [anon_sym_TILDE] = ACTIONS(5698), + [anon_sym_scoped] = ACTIONS(5696), + [anon_sym_var] = ACTIONS(5696), + [sym_predefined_type] = ACTIONS(5696), + [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), + [sym_grit_metavariable] = ACTIONS(5698), + [aux_sym_preproc_if_token1] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499408,27 +498280,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3187] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3187), [sym_preproc_endregion] = STATE(3187), [sym_preproc_line] = STATE(3187), @@ -499438,46 +498289,64 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_where] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_from] = ACTIONS(4794), - [anon_sym_join] = ACTIONS(4794), - [anon_sym_let] = ACTIONS(4794), - [anon_sym_orderby] = ACTIONS(4794), - [anon_sym_group] = ACTIONS(4794), - [anon_sym_select] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4794), + [sym__identifier_token] = ACTIONS(5202), + [anon_sym_extern] = ACTIONS(5202), + [anon_sym_alias] = ACTIONS(5202), + [anon_sym_global] = ACTIONS(5202), + [anon_sym_unsafe] = ACTIONS(5202), + [anon_sym_static] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_LPAREN] = ACTIONS(5204), + [anon_sym_event] = ACTIONS(5202), + [anon_sym_class] = ACTIONS(5202), + [anon_sym_ref] = ACTIONS(5202), + [anon_sym_struct] = ACTIONS(5202), + [anon_sym_enum] = ACTIONS(5202), + [anon_sym_interface] = ACTIONS(5202), + [anon_sym_delegate] = ACTIONS(5202), + [anon_sym_record] = ACTIONS(5202), + [anon_sym_public] = ACTIONS(5202), + [anon_sym_private] = ACTIONS(5202), + [anon_sym_readonly] = ACTIONS(5202), + [anon_sym_abstract] = ACTIONS(5202), + [anon_sym_async] = ACTIONS(5202), + [anon_sym_const] = ACTIONS(5202), + [anon_sym_file] = ACTIONS(5202), + [anon_sym_fixed] = ACTIONS(5202), + [anon_sym_internal] = ACTIONS(5202), + [anon_sym_new] = ACTIONS(5202), + [anon_sym_override] = ACTIONS(5202), + [anon_sym_partial] = ACTIONS(5202), + [anon_sym_protected] = ACTIONS(5202), + [anon_sym_required] = ACTIONS(5202), + [anon_sym_sealed] = ACTIONS(5202), + [anon_sym_virtual] = ACTIONS(5202), + [anon_sym_volatile] = ACTIONS(5202), + [anon_sym_where] = ACTIONS(5202), + [anon_sym_notnull] = ACTIONS(5202), + [anon_sym_unmanaged] = ACTIONS(5202), + [anon_sym_implicit] = ACTIONS(5202), + [anon_sym_explicit] = ACTIONS(5202), + [anon_sym_TILDE] = ACTIONS(5204), + [anon_sym_scoped] = ACTIONS(5202), + [anon_sym_var] = ACTIONS(5202), + [sym_predefined_type] = ACTIONS(5202), + [anon_sym_yield] = ACTIONS(5202), + [anon_sym_when] = ACTIONS(5202), + [anon_sym_from] = ACTIONS(5202), + [anon_sym_into] = ACTIONS(5202), + [anon_sym_join] = ACTIONS(5202), + [anon_sym_on] = ACTIONS(5202), + [anon_sym_equals] = ACTIONS(5202), + [anon_sym_let] = ACTIONS(5202), + [anon_sym_orderby] = ACTIONS(5202), + [anon_sym_ascending] = ACTIONS(5202), + [anon_sym_descending] = ACTIONS(5202), + [anon_sym_group] = ACTIONS(5202), + [anon_sym_by] = ACTIONS(5202), + [anon_sym_select] = ACTIONS(5202), + [sym_grit_metavariable] = ACTIONS(5204), + [aux_sym_preproc_if_token1] = ACTIONS(5204), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499490,27 +498359,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3188] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3188), [sym_preproc_endregion] = STATE(3188), [sym_preproc_line] = STATE(3188), @@ -499520,46 +498368,64 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5550), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_QMARK] = ACTIONS(5700), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4331), + [anon_sym_into] = ACTIONS(4331), + [anon_sym_join] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_let] = ACTIONS(4331), + [anon_sym_orderby] = ACTIONS(4331), + [anon_sym_group] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_select] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499581,67 +498447,64 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), + [anon_sym_RBRACE] = ACTIONS(4331), [anon_sym_LT] = ACTIONS(4329), [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5562), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_switch] = ACTIONS(4331), [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), [anon_sym_AMP_AMP] = ACTIONS(4331), [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4331), + [anon_sym_into] = ACTIONS(4331), + [anon_sym_join] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_let] = ACTIONS(4331), + [anon_sym_orderby] = ACTIONS(4331), + [anon_sym_group] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_select] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499663,67 +498526,64 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), + [anon_sym_RBRACE] = ACTIONS(4331), [anon_sym_LT] = ACTIONS(4329), [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5564), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_QMARK] = ACTIONS(5700), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_switch] = ACTIONS(4331), [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), [anon_sym_AMP_AMP] = ACTIONS(4331), [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4331), + [anon_sym_into] = ACTIONS(4331), + [anon_sym_join] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_let] = ACTIONS(4331), + [anon_sym_orderby] = ACTIONS(4331), + [anon_sym_group] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_select] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499736,27 +498596,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3191] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3191), [sym_preproc_endregion] = STATE(3191), [sym_preproc_line] = STATE(3191), @@ -499766,46 +498605,64 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4752), - [anon_sym_RBRACE] = ACTIONS(4752), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4331), + [anon_sym_into] = ACTIONS(4331), + [anon_sym_join] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_let] = ACTIONS(4331), + [anon_sym_orderby] = ACTIONS(4331), + [anon_sym_group] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_select] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499818,27 +498675,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3192] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3192), [sym_preproc_endregion] = STATE(3192), [sym_preproc_line] = STATE(3192), @@ -499848,46 +498684,64 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4774), + [sym__identifier_token] = ACTIONS(4084), + [anon_sym_extern] = ACTIONS(4084), + [anon_sym_alias] = ACTIONS(4084), + [anon_sym_global] = ACTIONS(4084), + [anon_sym_unsafe] = ACTIONS(4084), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_LPAREN] = ACTIONS(4086), + [anon_sym_event] = ACTIONS(4084), + [anon_sym_class] = ACTIONS(4084), + [anon_sym_ref] = ACTIONS(4084), + [anon_sym_struct] = ACTIONS(4084), + [anon_sym_enum] = ACTIONS(4084), + [anon_sym_interface] = ACTIONS(4084), + [anon_sym_delegate] = ACTIONS(4084), + [anon_sym_record] = ACTIONS(4084), + [anon_sym_public] = ACTIONS(4084), + [anon_sym_private] = ACTIONS(4084), + [anon_sym_readonly] = ACTIONS(4084), + [anon_sym_abstract] = ACTIONS(4084), + [anon_sym_async] = ACTIONS(4084), + [anon_sym_const] = ACTIONS(4084), + [anon_sym_file] = ACTIONS(4084), + [anon_sym_fixed] = ACTIONS(4084), + [anon_sym_internal] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(4084), + [anon_sym_override] = ACTIONS(4084), + [anon_sym_partial] = ACTIONS(4084), + [anon_sym_protected] = ACTIONS(4084), + [anon_sym_required] = ACTIONS(4084), + [anon_sym_sealed] = ACTIONS(4084), + [anon_sym_virtual] = ACTIONS(4084), + [anon_sym_volatile] = ACTIONS(4084), + [anon_sym_where] = ACTIONS(4084), + [anon_sym_notnull] = ACTIONS(4084), + [anon_sym_unmanaged] = ACTIONS(4084), + [anon_sym_implicit] = ACTIONS(4084), + [anon_sym_explicit] = ACTIONS(4084), + [anon_sym_TILDE] = ACTIONS(4086), + [anon_sym_scoped] = ACTIONS(4084), + [anon_sym_var] = ACTIONS(4084), + [sym_predefined_type] = ACTIONS(4084), + [anon_sym_yield] = ACTIONS(4084), + [anon_sym_when] = 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_ascending] = ACTIONS(4084), + [anon_sym_descending] = ACTIONS(4084), + [anon_sym_group] = ACTIONS(4084), + [anon_sym_by] = ACTIONS(4084), + [anon_sym_select] = ACTIONS(4084), + [sym_grit_metavariable] = ACTIONS(4086), + [aux_sym_preproc_if_token1] = ACTIONS(4086), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499900,29 +498754,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3193] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6403), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6018), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if_in_attribute_list] = STATE(5927), [sym_preproc_region] = STATE(3193), [sym_preproc_endregion] = STATE(3193), [sym_preproc_line] = STATE(3193), @@ -499932,44 +498763,64 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3658), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_ref] = ACTIONS(5448), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(1271), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(1271), - [anon_sym_out] = ACTIONS(1271), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_this] = ACTIONS(1271), - [anon_sym_scoped] = ACTIONS(5468), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), - [aux_sym_preproc_if_token1] = ACTIONS(5454), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_RBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_RPAREN] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3986), + [anon_sym_GT] = ACTIONS(3986), + [anon_sym_in] = ACTIONS(3986), + [anon_sym_where] = ACTIONS(3997), + [anon_sym_QMARK] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3986), + [anon_sym_EQ_GT] = ACTIONS(3997), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_switch] = ACTIONS(3997), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3997), + [anon_sym_or] = ACTIONS(3986), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP] = ACTIONS(3986), + [sym_op_bitwise_or] = ACTIONS(3986), + [anon_sym_CARET] = ACTIONS(3997), + [sym_op_left_shift] = ACTIONS(3997), + [sym_op_right_shift] = ACTIONS(3986), + [sym_op_unsigned_right_shift] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3986), + [anon_sym_DASH] = ACTIONS(3986), + [sym_op_divide] = ACTIONS(3986), + [sym_op_modulo] = ACTIONS(3997), + [sym_op_coalescing] = ACTIONS(3997), + [anon_sym_BANG] = ACTIONS(3986), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3997), + [anon_sym_into] = ACTIONS(3997), + [anon_sym_join] = ACTIONS(3997), + [anon_sym_on] = ACTIONS(3997), + [anon_sym_equals] = ACTIONS(3997), + [anon_sym_let] = ACTIONS(3997), + [anon_sym_orderby] = ACTIONS(3997), + [anon_sym_group] = ACTIONS(3997), + [anon_sym_by] = ACTIONS(3997), + [anon_sym_select] = ACTIONS(3997), + [anon_sym_as] = ACTIONS(3997), + [anon_sym_is] = ACTIONS(3997), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3997), + [aux_sym_preproc_if_token3] = ACTIONS(3997), + [aux_sym_preproc_else_token1] = ACTIONS(3997), + [aux_sym_preproc_elif_token1] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499982,27 +498833,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3194] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3194), [sym_preproc_endregion] = STATE(3194), [sym_preproc_line] = STATE(3194), @@ -500012,46 +498842,64 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5703), + [anon_sym_LBRACK] = ACTIONS(5703), + [anon_sym_COLON] = ACTIONS(5703), + [anon_sym_COMMA] = ACTIONS(5703), + [anon_sym_RBRACK] = ACTIONS(5703), + [anon_sym_LPAREN] = ACTIONS(5703), + [anon_sym_RPAREN] = ACTIONS(5703), + [anon_sym_RBRACE] = ACTIONS(5703), + [anon_sym_LT] = ACTIONS(5705), + [anon_sym_GT] = ACTIONS(5705), + [anon_sym_in] = ACTIONS(5705), + [anon_sym_where] = ACTIONS(5703), + [anon_sym_QMARK] = ACTIONS(5705), + [anon_sym_DOT] = ACTIONS(5705), + [anon_sym_EQ_GT] = ACTIONS(5703), + [anon_sym_STAR] = ACTIONS(5703), + [anon_sym_switch] = ACTIONS(5703), + [anon_sym_DOT_DOT] = ACTIONS(5703), + [anon_sym_LT_EQ] = ACTIONS(5703), + [anon_sym_GT_EQ] = ACTIONS(5703), + [anon_sym_and] = ACTIONS(5703), + [anon_sym_or] = ACTIONS(5705), + [anon_sym_EQ_EQ] = ACTIONS(5703), + [anon_sym_BANG_EQ] = ACTIONS(5703), + [anon_sym_AMP_AMP] = ACTIONS(5703), + [anon_sym_PIPE_PIPE] = ACTIONS(5703), + [anon_sym_AMP] = ACTIONS(5705), + [sym_op_bitwise_or] = ACTIONS(5705), + [anon_sym_CARET] = ACTIONS(5703), + [sym_op_left_shift] = ACTIONS(5703), + [sym_op_right_shift] = ACTIONS(5705), + [sym_op_unsigned_right_shift] = ACTIONS(5703), + [anon_sym_PLUS] = ACTIONS(5705), + [anon_sym_DASH] = ACTIONS(5705), + [sym_op_divide] = ACTIONS(5705), + [sym_op_modulo] = ACTIONS(5703), + [sym_op_coalescing] = ACTIONS(5703), + [anon_sym_BANG] = ACTIONS(5705), + [anon_sym_PLUS_PLUS] = ACTIONS(5703), + [anon_sym_DASH_DASH] = ACTIONS(5703), + [anon_sym_from] = ACTIONS(5703), + [anon_sym_into] = ACTIONS(5703), + [anon_sym_join] = ACTIONS(5703), + [anon_sym_on] = ACTIONS(5703), + [anon_sym_equals] = ACTIONS(5703), + [anon_sym_let] = ACTIONS(5703), + [anon_sym_orderby] = ACTIONS(5703), + [anon_sym_group] = ACTIONS(5703), + [anon_sym_by] = ACTIONS(5703), + [anon_sym_select] = ACTIONS(5703), + [anon_sym_as] = ACTIONS(5703), + [anon_sym_is] = ACTIONS(5703), + [anon_sym_DASH_GT] = ACTIONS(5703), + [anon_sym_with] = ACTIONS(5703), + [sym_string_literal_encoding] = ACTIONS(5707), + [aux_sym_preproc_if_token3] = ACTIONS(5703), + [aux_sym_preproc_else_token1] = ACTIONS(5703), + [aux_sym_preproc_elif_token1] = ACTIONS(5703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500064,27 +498912,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3195] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3195), [sym_preproc_endregion] = STATE(3195), [sym_preproc_line] = STATE(3195), @@ -500094,46 +498921,64 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4752), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_from] = ACTIONS(4752), - [anon_sym_join] = ACTIONS(4752), - [anon_sym_let] = ACTIONS(4752), - [anon_sym_orderby] = ACTIONS(4752), - [anon_sym_group] = ACTIONS(4752), - [anon_sym_select] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4752), + [sym__identifier_token] = ACTIONS(5709), + [anon_sym_extern] = ACTIONS(5709), + [anon_sym_alias] = ACTIONS(5709), + [anon_sym_global] = ACTIONS(5709), + [anon_sym_unsafe] = ACTIONS(5709), + [anon_sym_static] = ACTIONS(5709), + [anon_sym_LBRACK] = ACTIONS(5711), + [anon_sym_LPAREN] = ACTIONS(5711), + [anon_sym_event] = ACTIONS(5709), + [anon_sym_class] = ACTIONS(5709), + [anon_sym_ref] = ACTIONS(5709), + [anon_sym_struct] = ACTIONS(5709), + [anon_sym_enum] = ACTIONS(5709), + [anon_sym_interface] = ACTIONS(5709), + [anon_sym_delegate] = ACTIONS(5709), + [anon_sym_record] = ACTIONS(5709), + [anon_sym_public] = ACTIONS(5709), + [anon_sym_private] = ACTIONS(5709), + [anon_sym_readonly] = ACTIONS(5709), + [anon_sym_abstract] = ACTIONS(5709), + [anon_sym_async] = ACTIONS(5709), + [anon_sym_const] = ACTIONS(5709), + [anon_sym_file] = ACTIONS(5709), + [anon_sym_fixed] = ACTIONS(5709), + [anon_sym_internal] = ACTIONS(5709), + [anon_sym_new] = ACTIONS(5709), + [anon_sym_override] = ACTIONS(5709), + [anon_sym_partial] = ACTIONS(5709), + [anon_sym_protected] = ACTIONS(5709), + [anon_sym_required] = ACTIONS(5709), + [anon_sym_sealed] = ACTIONS(5709), + [anon_sym_virtual] = ACTIONS(5709), + [anon_sym_volatile] = ACTIONS(5709), + [anon_sym_where] = ACTIONS(5709), + [anon_sym_notnull] = ACTIONS(5709), + [anon_sym_unmanaged] = ACTIONS(5709), + [anon_sym_implicit] = ACTIONS(5709), + [anon_sym_explicit] = ACTIONS(5709), + [anon_sym_TILDE] = ACTIONS(5711), + [anon_sym_scoped] = ACTIONS(5709), + [anon_sym_var] = ACTIONS(5709), + [sym_predefined_type] = ACTIONS(5709), + [anon_sym_yield] = ACTIONS(5709), + [anon_sym_when] = ACTIONS(5709), + [anon_sym_from] = ACTIONS(5709), + [anon_sym_into] = ACTIONS(5709), + [anon_sym_join] = ACTIONS(5709), + [anon_sym_on] = ACTIONS(5709), + [anon_sym_equals] = ACTIONS(5709), + [anon_sym_let] = ACTIONS(5709), + [anon_sym_orderby] = ACTIONS(5709), + [anon_sym_ascending] = ACTIONS(5709), + [anon_sym_descending] = ACTIONS(5709), + [anon_sym_group] = ACTIONS(5709), + [anon_sym_by] = ACTIONS(5709), + [anon_sym_select] = ACTIONS(5709), + [sym_grit_metavariable] = ACTIONS(5711), + [aux_sym_preproc_if_token1] = ACTIONS(5711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500146,27 +498991,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3196] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3196), [sym_preproc_endregion] = STATE(3196), [sym_preproc_line] = STATE(3196), @@ -500176,46 +499000,64 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4782), - [anon_sym_QMARK] = ACTIONS(5530), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_from] = ACTIONS(4782), - [anon_sym_join] = ACTIONS(4782), - [anon_sym_let] = ACTIONS(4782), - [anon_sym_orderby] = ACTIONS(4782), - [anon_sym_group] = ACTIONS(4782), - [anon_sym_select] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5713), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_COLON] = ACTIONS(5713), + [anon_sym_COMMA] = ACTIONS(5713), + [anon_sym_RBRACK] = ACTIONS(5713), + [anon_sym_LPAREN] = ACTIONS(5713), + [anon_sym_RPAREN] = ACTIONS(5713), + [anon_sym_LBRACE] = ACTIONS(5713), + [anon_sym_RBRACE] = ACTIONS(5713), + [anon_sym_LT] = ACTIONS(5715), + [anon_sym_GT] = ACTIONS(5715), + [anon_sym_in] = ACTIONS(5715), + [anon_sym_where] = ACTIONS(5713), + [anon_sym_QMARK] = ACTIONS(5715), + [anon_sym_DOT] = ACTIONS(5715), + [anon_sym_EQ_GT] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(5713), + [anon_sym_switch] = ACTIONS(5713), + [anon_sym_DOT_DOT] = ACTIONS(5713), + [anon_sym_LT_EQ] = ACTIONS(5713), + [anon_sym_GT_EQ] = ACTIONS(5713), + [anon_sym_and] = ACTIONS(5713), + [anon_sym_or] = ACTIONS(5715), + [anon_sym_EQ_EQ] = ACTIONS(5713), + [anon_sym_BANG_EQ] = ACTIONS(5713), + [anon_sym_AMP_AMP] = ACTIONS(5713), + [anon_sym_PIPE_PIPE] = ACTIONS(5713), + [anon_sym_AMP] = ACTIONS(5715), + [sym_op_bitwise_or] = ACTIONS(5715), + [anon_sym_CARET] = ACTIONS(5713), + [sym_op_left_shift] = ACTIONS(5713), + [sym_op_right_shift] = ACTIONS(5715), + [sym_op_unsigned_right_shift] = ACTIONS(5713), + [anon_sym_PLUS] = ACTIONS(5715), + [anon_sym_DASH] = ACTIONS(5715), + [sym_op_divide] = ACTIONS(5715), + [sym_op_modulo] = ACTIONS(5713), + [sym_op_coalescing] = ACTIONS(5713), + [anon_sym_BANG] = ACTIONS(5715), + [anon_sym_PLUS_PLUS] = ACTIONS(5713), + [anon_sym_DASH_DASH] = ACTIONS(5713), + [anon_sym_from] = ACTIONS(5713), + [anon_sym_into] = ACTIONS(5713), + [anon_sym_join] = ACTIONS(5713), + [anon_sym_on] = ACTIONS(5713), + [anon_sym_equals] = ACTIONS(5713), + [anon_sym_let] = ACTIONS(5713), + [anon_sym_orderby] = ACTIONS(5713), + [anon_sym_group] = ACTIONS(5713), + [anon_sym_by] = ACTIONS(5713), + [anon_sym_select] = ACTIONS(5713), + [anon_sym_as] = ACTIONS(5713), + [anon_sym_is] = ACTIONS(5713), + [anon_sym_DASH_GT] = ACTIONS(5713), + [anon_sym_with] = ACTIONS(5713), + [aux_sym_preproc_if_token3] = ACTIONS(5713), + [aux_sym_preproc_else_token1] = ACTIONS(5713), + [aux_sym_preproc_elif_token1] = ACTIONS(5713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500228,13 +499070,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3197] = { - [sym_attribute_list] = STATE(4961), - [sym__attribute_list] = STATE(4962), - [sym_modifier] = STATE(5152), - [sym_accessor_declaration] = STATE(4759), - [sym_identifier] = STATE(6738), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_attribute_list] = STATE(4961), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(3197), [sym_preproc_endregion] = STATE(3197), [sym_preproc_line] = STATE(3197), @@ -500244,60 +499094,49 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3583), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4656), - [aux_sym_accessor_list_repeat1] = STATE(3197), - [sym__identifier_token] = ACTIONS(5566), - [anon_sym_extern] = ACTIONS(5569), - [anon_sym_alias] = ACTIONS(5572), - [anon_sym_global] = ACTIONS(5572), - [anon_sym_unsafe] = ACTIONS(5569), - [anon_sym_static] = ACTIONS(5569), - [anon_sym_LBRACK] = ACTIONS(5575), - [anon_sym_RBRACE] = ACTIONS(5578), - [anon_sym_public] = ACTIONS(5569), - [anon_sym_private] = ACTIONS(5569), - [anon_sym_readonly] = ACTIONS(5569), - [anon_sym_abstract] = ACTIONS(5569), - [anon_sym_async] = ACTIONS(5569), - [anon_sym_const] = ACTIONS(5569), - [anon_sym_file] = ACTIONS(5580), - [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_protected] = 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(5572), - [anon_sym_notnull] = ACTIONS(5572), - [anon_sym_unmanaged] = ACTIONS(5572), - [sym_accessor_get] = ACTIONS(5583), - [sym_accessor_set] = ACTIONS(5583), - [sym_accessor_add] = ACTIONS(5583), - [sym_accessor_remove] = ACTIONS(5583), - [sym_accessor_init] = ACTIONS(5583), - [anon_sym_scoped] = ACTIONS(5572), - [anon_sym_var] = ACTIONS(5572), - [anon_sym_yield] = ACTIONS(5572), - [anon_sym_when] = ACTIONS(5572), - [anon_sym_from] = ACTIONS(5572), - [anon_sym_into] = ACTIONS(5572), - [anon_sym_join] = ACTIONS(5572), - [anon_sym_on] = ACTIONS(5572), - [anon_sym_equals] = ACTIONS(5572), - [anon_sym_let] = ACTIONS(5572), - [anon_sym_orderby] = ACTIONS(5572), - [anon_sym_ascending] = ACTIONS(5572), - [anon_sym_descending] = ACTIONS(5572), - [anon_sym_group] = ACTIONS(5572), - [anon_sym_by] = ACTIONS(5572), - [anon_sym_select] = ACTIONS(5572), - [sym_grit_metavariable] = ACTIONS(5586), - [aux_sym_preproc_if_token1] = ACTIONS(5589), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500310,27 +499149,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3198] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), + [sym_attribute_list] = STATE(4526), + [sym__attribute_list] = STATE(4515), + [sym_modifier] = STATE(5123), + [sym_identifier] = STATE(6735), + [sym__reserved_identifier] = STATE(2207), + [sym_preproc_if_in_attribute_list] = STATE(4526), [sym_preproc_region] = STATE(3198), [sym_preproc_endregion] = STATE(3198), [sym_preproc_line] = STATE(3198), @@ -500340,46 +499164,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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(5530), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_from] = ACTIONS(4748), - [anon_sym_join] = ACTIONS(4748), - [anon_sym_let] = ACTIONS(4748), - [anon_sym_orderby] = ACTIONS(4748), - [anon_sym_group] = ACTIONS(4748), - [anon_sym_select] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3521), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3846), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(5394), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_unsafe] = ACTIONS(5394), + [anon_sym_static] = ACTIONS(5394), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_public] = ACTIONS(5394), + [anon_sym_private] = ACTIONS(5394), + [anon_sym_readonly] = ACTIONS(5394), + [anon_sym_abstract] = ACTIONS(5394), + [anon_sym_async] = ACTIONS(5394), + [anon_sym_const] = ACTIONS(5394), + [anon_sym_file] = ACTIONS(5400), + [anon_sym_fixed] = ACTIONS(5394), + [anon_sym_internal] = ACTIONS(5394), + [anon_sym_new] = ACTIONS(5394), + [anon_sym_override] = ACTIONS(5394), + [anon_sym_partial] = ACTIONS(5394), + [anon_sym_protected] = ACTIONS(5394), + [anon_sym_required] = ACTIONS(5394), + [anon_sym_sealed] = ACTIONS(5394), + [anon_sym_virtual] = ACTIONS(5394), + [anon_sym_volatile] = ACTIONS(5394), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [sym_accessor_get] = ACTIONS(5717), + [sym_accessor_set] = ACTIONS(5717), + [sym_accessor_add] = ACTIONS(5717), + [sym_accessor_remove] = ACTIONS(5717), + [sym_accessor_init] = ACTIONS(5717), + [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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(5404), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500392,27 +499228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3199] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), + [sym_type_argument_list] = STATE(3245), [sym_preproc_region] = STATE(3199), [sym_preproc_endregion] = STATE(3199), [sym_preproc_line] = STATE(3199), @@ -500422,46 +499238,63 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(5651), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3957), + [anon_sym_where] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3957), + [anon_sym_join] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_orderby] = ACTIONS(3957), + [anon_sym_group] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_select] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500474,27 +499307,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3200] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3200), [sym_preproc_endregion] = STATE(3200), [sym_preproc_line] = STATE(3200), @@ -500504,46 +499316,63 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_COLON] = ACTIONS(2283), + [anon_sym_COMMA] = ACTIONS(2283), + [anon_sym_RBRACK] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(5721), + [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_GT] = ACTIONS(2281), + [anon_sym_in] = ACTIONS(2281), + [anon_sym_where] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(2281), + [anon_sym_DOT] = ACTIONS(2281), + [anon_sym_EQ_GT] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2283), + [anon_sym_switch] = ACTIONS(2283), + [anon_sym_DOT_DOT] = ACTIONS(2283), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_and] = ACTIONS(2283), + [anon_sym_or] = ACTIONS(2281), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_AMP_AMP] = ACTIONS(2283), + [anon_sym_PIPE_PIPE] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2281), + [sym_op_bitwise_or] = ACTIONS(2281), + [anon_sym_CARET] = ACTIONS(2283), + [sym_op_left_shift] = ACTIONS(2283), + [sym_op_right_shift] = ACTIONS(2281), + [sym_op_unsigned_right_shift] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [sym_op_divide] = ACTIONS(2281), + [sym_op_modulo] = ACTIONS(2283), + [sym_op_coalescing] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2283), + [anon_sym_from] = ACTIONS(2283), + [anon_sym_into] = ACTIONS(2283), + [anon_sym_join] = ACTIONS(2283), + [anon_sym_on] = ACTIONS(2283), + [anon_sym_equals] = ACTIONS(2283), + [anon_sym_let] = ACTIONS(2283), + [anon_sym_orderby] = ACTIONS(2283), + [anon_sym_group] = ACTIONS(2283), + [anon_sym_by] = ACTIONS(2283), + [anon_sym_select] = ACTIONS(2283), + [anon_sym_as] = ACTIONS(2283), + [anon_sym_is] = ACTIONS(2283), + [anon_sym_DASH_GT] = ACTIONS(2283), + [anon_sym_with] = ACTIONS(2283), + [aux_sym_preproc_if_token3] = ACTIONS(2283), + [aux_sym_preproc_else_token1] = ACTIONS(2283), + [aux_sym_preproc_elif_token1] = ACTIONS(2283), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500556,27 +499385,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3201] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3201), [sym_preproc_endregion] = STATE(3201), [sym_preproc_line] = STATE(3201), @@ -500586,46 +499394,63 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5723), + [anon_sym_LBRACK] = ACTIONS(5723), + [anon_sym_COLON] = ACTIONS(5723), + [anon_sym_COMMA] = ACTIONS(5723), + [anon_sym_RBRACK] = ACTIONS(5723), + [anon_sym_LPAREN] = ACTIONS(5723), + [anon_sym_RPAREN] = ACTIONS(5723), + [anon_sym_RBRACE] = ACTIONS(5723), + [anon_sym_LT] = ACTIONS(5725), + [anon_sym_GT] = ACTIONS(5725), + [anon_sym_in] = ACTIONS(5725), + [anon_sym_where] = ACTIONS(5723), + [anon_sym_QMARK] = ACTIONS(5725), + [anon_sym_DOT] = ACTIONS(5725), + [anon_sym_EQ_GT] = ACTIONS(5723), + [anon_sym_STAR] = ACTIONS(5723), + [anon_sym_switch] = ACTIONS(5723), + [anon_sym_DOT_DOT] = ACTIONS(5723), + [anon_sym_LT_EQ] = ACTIONS(5723), + [anon_sym_GT_EQ] = ACTIONS(5723), + [anon_sym_and] = ACTIONS(5723), + [anon_sym_or] = ACTIONS(5725), + [anon_sym_EQ_EQ] = ACTIONS(5723), + [anon_sym_BANG_EQ] = ACTIONS(5723), + [anon_sym_AMP_AMP] = ACTIONS(5723), + [anon_sym_PIPE_PIPE] = ACTIONS(5723), + [anon_sym_AMP] = ACTIONS(5725), + [sym_op_bitwise_or] = ACTIONS(5725), + [anon_sym_CARET] = ACTIONS(5723), + [sym_op_left_shift] = ACTIONS(5723), + [sym_op_right_shift] = ACTIONS(5725), + [sym_op_unsigned_right_shift] = ACTIONS(5723), + [anon_sym_PLUS] = ACTIONS(5725), + [anon_sym_DASH] = ACTIONS(5725), + [sym_op_divide] = ACTIONS(5725), + [sym_op_modulo] = ACTIONS(5723), + [sym_op_coalescing] = ACTIONS(5723), + [anon_sym_BANG] = ACTIONS(5725), + [anon_sym_PLUS_PLUS] = ACTIONS(5723), + [anon_sym_DASH_DASH] = ACTIONS(5723), + [anon_sym_from] = ACTIONS(5723), + [anon_sym_into] = ACTIONS(5723), + [anon_sym_join] = ACTIONS(5723), + [anon_sym_on] = ACTIONS(5723), + [anon_sym_equals] = ACTIONS(5723), + [anon_sym_let] = ACTIONS(5723), + [anon_sym_orderby] = ACTIONS(5723), + [anon_sym_group] = ACTIONS(5723), + [anon_sym_by] = ACTIONS(5723), + [anon_sym_select] = ACTIONS(5723), + [anon_sym_as] = ACTIONS(5723), + [anon_sym_is] = ACTIONS(5723), + [anon_sym_DASH_GT] = ACTIONS(5723), + [anon_sym_with] = ACTIONS(5723), + [aux_sym_preproc_if_token3] = ACTIONS(5723), + [aux_sym_preproc_else_token1] = ACTIONS(5723), + [aux_sym_preproc_elif_token1] = ACTIONS(5723), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500638,27 +499463,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3202] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3202), [sym_preproc_endregion] = STATE(3202), [sym_preproc_line] = STATE(3202), @@ -500668,46 +499487,48 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5729), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5743), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [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), @@ -500720,27 +499541,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3203] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3203), [sym_preproc_endregion] = STATE(3203), [sym_preproc_line] = STATE(3203), @@ -500750,46 +499550,63 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5745), + [anon_sym_LBRACK] = ACTIONS(5745), + [anon_sym_COLON] = ACTIONS(5745), + [anon_sym_COMMA] = ACTIONS(5745), + [anon_sym_RBRACK] = ACTIONS(5745), + [anon_sym_LPAREN] = ACTIONS(5745), + [anon_sym_RPAREN] = ACTIONS(5745), + [anon_sym_RBRACE] = ACTIONS(5745), + [anon_sym_LT] = ACTIONS(5747), + [anon_sym_GT] = ACTIONS(5747), + [anon_sym_in] = ACTIONS(5747), + [anon_sym_where] = ACTIONS(5745), + [anon_sym_QMARK] = ACTIONS(5747), + [anon_sym_DOT] = ACTIONS(5747), + [anon_sym_EQ_GT] = ACTIONS(5745), + [anon_sym_STAR] = ACTIONS(5745), + [anon_sym_switch] = ACTIONS(5745), + [anon_sym_DOT_DOT] = ACTIONS(5745), + [anon_sym_LT_EQ] = ACTIONS(5745), + [anon_sym_GT_EQ] = ACTIONS(5745), + [anon_sym_and] = ACTIONS(5745), + [anon_sym_or] = ACTIONS(5747), + [anon_sym_EQ_EQ] = ACTIONS(5745), + [anon_sym_BANG_EQ] = ACTIONS(5745), + [anon_sym_AMP_AMP] = ACTIONS(5745), + [anon_sym_PIPE_PIPE] = ACTIONS(5745), + [anon_sym_AMP] = ACTIONS(5747), + [sym_op_bitwise_or] = ACTIONS(5747), + [anon_sym_CARET] = ACTIONS(5745), + [sym_op_left_shift] = ACTIONS(5745), + [sym_op_right_shift] = ACTIONS(5747), + [sym_op_unsigned_right_shift] = ACTIONS(5745), + [anon_sym_PLUS] = ACTIONS(5747), + [anon_sym_DASH] = ACTIONS(5747), + [sym_op_divide] = ACTIONS(5747), + [sym_op_modulo] = ACTIONS(5745), + [sym_op_coalescing] = ACTIONS(5745), + [anon_sym_BANG] = ACTIONS(5747), + [anon_sym_PLUS_PLUS] = ACTIONS(5745), + [anon_sym_DASH_DASH] = ACTIONS(5745), + [anon_sym_from] = ACTIONS(5745), + [anon_sym_into] = ACTIONS(5745), + [anon_sym_join] = ACTIONS(5745), + [anon_sym_on] = ACTIONS(5745), + [anon_sym_equals] = ACTIONS(5745), + [anon_sym_let] = ACTIONS(5745), + [anon_sym_orderby] = ACTIONS(5745), + [anon_sym_group] = ACTIONS(5745), + [anon_sym_by] = ACTIONS(5745), + [anon_sym_select] = ACTIONS(5745), + [anon_sym_as] = ACTIONS(5745), + [anon_sym_is] = ACTIONS(5745), + [anon_sym_DASH_GT] = ACTIONS(5745), + [anon_sym_with] = ACTIONS(5745), + [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), @@ -500802,27 +499619,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3204] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3204), [sym_preproc_endregion] = STATE(3204), [sym_preproc_line] = STATE(3204), @@ -500832,46 +499643,48 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5360), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_RBRACK] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5360), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5360), + [aux_sym_preproc_if_token3] = ACTIONS(5360), + [aux_sym_preproc_else_token1] = ACTIONS(5360), + [aux_sym_preproc_elif_token1] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500884,27 +499697,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3205] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3205), [sym_preproc_endregion] = STATE(3205), [sym_preproc_line] = STATE(3205), @@ -500914,46 +499706,63 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5749), + [anon_sym_LBRACK] = ACTIONS(5749), + [anon_sym_COLON] = ACTIONS(5749), + [anon_sym_COMMA] = ACTIONS(5749), + [anon_sym_RBRACK] = ACTIONS(5749), + [anon_sym_LPAREN] = ACTIONS(5749), + [anon_sym_RPAREN] = ACTIONS(5749), + [anon_sym_RBRACE] = ACTIONS(5749), + [anon_sym_LT] = ACTIONS(5751), + [anon_sym_GT] = ACTIONS(5751), + [anon_sym_in] = ACTIONS(5751), + [anon_sym_where] = ACTIONS(5749), + [anon_sym_QMARK] = ACTIONS(5751), + [anon_sym_DOT] = ACTIONS(5751), + [anon_sym_EQ_GT] = ACTIONS(5749), + [anon_sym_STAR] = ACTIONS(5749), + [anon_sym_switch] = ACTIONS(5749), + [anon_sym_DOT_DOT] = ACTIONS(5749), + [anon_sym_LT_EQ] = ACTIONS(5749), + [anon_sym_GT_EQ] = ACTIONS(5749), + [anon_sym_and] = ACTIONS(5749), + [anon_sym_or] = ACTIONS(5751), + [anon_sym_EQ_EQ] = ACTIONS(5749), + [anon_sym_BANG_EQ] = ACTIONS(5749), + [anon_sym_AMP_AMP] = ACTIONS(5749), + [anon_sym_PIPE_PIPE] = ACTIONS(5749), + [anon_sym_AMP] = ACTIONS(5751), + [sym_op_bitwise_or] = ACTIONS(5751), + [anon_sym_CARET] = ACTIONS(5749), + [sym_op_left_shift] = ACTIONS(5749), + [sym_op_right_shift] = ACTIONS(5751), + [sym_op_unsigned_right_shift] = ACTIONS(5749), + [anon_sym_PLUS] = ACTIONS(5751), + [anon_sym_DASH] = ACTIONS(5751), + [sym_op_divide] = ACTIONS(5751), + [sym_op_modulo] = ACTIONS(5749), + [sym_op_coalescing] = ACTIONS(5749), + [anon_sym_BANG] = ACTIONS(5751), + [anon_sym_PLUS_PLUS] = ACTIONS(5749), + [anon_sym_DASH_DASH] = ACTIONS(5749), + [anon_sym_from] = ACTIONS(5749), + [anon_sym_into] = ACTIONS(5749), + [anon_sym_join] = ACTIONS(5749), + [anon_sym_on] = ACTIONS(5749), + [anon_sym_equals] = ACTIONS(5749), + [anon_sym_let] = ACTIONS(5749), + [anon_sym_orderby] = ACTIONS(5749), + [anon_sym_group] = ACTIONS(5749), + [anon_sym_by] = ACTIONS(5749), + [anon_sym_select] = ACTIONS(5749), + [anon_sym_as] = ACTIONS(5749), + [anon_sym_is] = ACTIONS(5749), + [anon_sym_DASH_GT] = ACTIONS(5749), + [anon_sym_with] = ACTIONS(5749), + [aux_sym_preproc_if_token3] = ACTIONS(5749), + [aux_sym_preproc_else_token1] = ACTIONS(5749), + [aux_sym_preproc_elif_token1] = ACTIONS(5749), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500966,27 +499775,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3206] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3206), [sym_preproc_endregion] = STATE(3206), [sym_preproc_line] = STATE(3206), @@ -500996,46 +499799,48 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_RBRACK] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(5408), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501048,27 +499853,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3207] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3207), [sym_preproc_endregion] = STATE(3207), [sym_preproc_line] = STATE(3207), @@ -501078,46 +499862,63 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5753), + [anon_sym_LBRACK] = ACTIONS(5753), + [anon_sym_COLON] = ACTIONS(5753), + [anon_sym_COMMA] = ACTIONS(5753), + [anon_sym_RBRACK] = ACTIONS(5753), + [anon_sym_LPAREN] = ACTIONS(5753), + [anon_sym_RPAREN] = ACTIONS(5753), + [anon_sym_RBRACE] = ACTIONS(5753), + [anon_sym_LT] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5755), + [anon_sym_in] = ACTIONS(5755), + [anon_sym_where] = ACTIONS(5753), + [anon_sym_QMARK] = ACTIONS(5755), + [anon_sym_DOT] = ACTIONS(5755), + [anon_sym_EQ_GT] = ACTIONS(5753), + [anon_sym_STAR] = ACTIONS(5753), + [anon_sym_switch] = ACTIONS(5753), + [anon_sym_DOT_DOT] = ACTIONS(5753), + [anon_sym_LT_EQ] = ACTIONS(5753), + [anon_sym_GT_EQ] = ACTIONS(5753), + [anon_sym_and] = ACTIONS(5753), + [anon_sym_or] = ACTIONS(5755), + [anon_sym_EQ_EQ] = ACTIONS(5753), + [anon_sym_BANG_EQ] = ACTIONS(5753), + [anon_sym_AMP_AMP] = ACTIONS(5753), + [anon_sym_PIPE_PIPE] = ACTIONS(5753), + [anon_sym_AMP] = ACTIONS(5755), + [sym_op_bitwise_or] = ACTIONS(5755), + [anon_sym_CARET] = ACTIONS(5753), + [sym_op_left_shift] = ACTIONS(5753), + [sym_op_right_shift] = ACTIONS(5755), + [sym_op_unsigned_right_shift] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [sym_op_divide] = ACTIONS(5755), + [sym_op_modulo] = ACTIONS(5753), + [sym_op_coalescing] = ACTIONS(5753), + [anon_sym_BANG] = ACTIONS(5755), + [anon_sym_PLUS_PLUS] = ACTIONS(5753), + [anon_sym_DASH_DASH] = ACTIONS(5753), + [anon_sym_from] = ACTIONS(5753), + [anon_sym_into] = ACTIONS(5753), + [anon_sym_join] = ACTIONS(5753), + [anon_sym_on] = ACTIONS(5753), + [anon_sym_equals] = ACTIONS(5753), + [anon_sym_let] = ACTIONS(5753), + [anon_sym_orderby] = ACTIONS(5753), + [anon_sym_group] = ACTIONS(5753), + [anon_sym_by] = ACTIONS(5753), + [anon_sym_select] = ACTIONS(5753), + [anon_sym_as] = ACTIONS(5753), + [anon_sym_is] = ACTIONS(5753), + [anon_sym_DASH_GT] = ACTIONS(5753), + [anon_sym_with] = ACTIONS(5753), + [aux_sym_preproc_if_token3] = ACTIONS(5753), + [aux_sym_preproc_else_token1] = ACTIONS(5753), + [aux_sym_preproc_elif_token1] = ACTIONS(5753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501130,27 +499931,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3208] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3208), [sym_preproc_endregion] = STATE(3208), [sym_preproc_line] = STATE(3208), @@ -501160,46 +499940,63 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4782), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5546), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5550), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5757), + [anon_sym_LBRACK] = ACTIONS(5757), + [anon_sym_COLON] = ACTIONS(5757), + [anon_sym_COMMA] = ACTIONS(5757), + [anon_sym_RBRACK] = ACTIONS(5757), + [anon_sym_LPAREN] = ACTIONS(5757), + [anon_sym_RPAREN] = ACTIONS(5757), + [anon_sym_RBRACE] = ACTIONS(5757), + [anon_sym_LT] = ACTIONS(5759), + [anon_sym_GT] = ACTIONS(5759), + [anon_sym_in] = ACTIONS(5759), + [anon_sym_where] = ACTIONS(5757), + [anon_sym_QMARK] = ACTIONS(5759), + [anon_sym_DOT] = ACTIONS(5759), + [anon_sym_EQ_GT] = ACTIONS(5757), + [anon_sym_STAR] = ACTIONS(5757), + [anon_sym_switch] = ACTIONS(5757), + [anon_sym_DOT_DOT] = ACTIONS(5757), + [anon_sym_LT_EQ] = ACTIONS(5757), + [anon_sym_GT_EQ] = ACTIONS(5757), + [anon_sym_and] = ACTIONS(5757), + [anon_sym_or] = ACTIONS(5759), + [anon_sym_EQ_EQ] = ACTIONS(5757), + [anon_sym_BANG_EQ] = ACTIONS(5757), + [anon_sym_AMP_AMP] = ACTIONS(5757), + [anon_sym_PIPE_PIPE] = ACTIONS(5757), + [anon_sym_AMP] = ACTIONS(5759), + [sym_op_bitwise_or] = ACTIONS(5759), + [anon_sym_CARET] = ACTIONS(5757), + [sym_op_left_shift] = ACTIONS(5757), + [sym_op_right_shift] = ACTIONS(5759), + [sym_op_unsigned_right_shift] = ACTIONS(5757), + [anon_sym_PLUS] = ACTIONS(5759), + [anon_sym_DASH] = ACTIONS(5759), + [sym_op_divide] = ACTIONS(5759), + [sym_op_modulo] = ACTIONS(5757), + [sym_op_coalescing] = ACTIONS(5757), + [anon_sym_BANG] = ACTIONS(5759), + [anon_sym_PLUS_PLUS] = ACTIONS(5757), + [anon_sym_DASH_DASH] = ACTIONS(5757), + [anon_sym_from] = ACTIONS(5757), + [anon_sym_into] = ACTIONS(5757), + [anon_sym_join] = ACTIONS(5757), + [anon_sym_on] = ACTIONS(5757), + [anon_sym_equals] = ACTIONS(5757), + [anon_sym_let] = ACTIONS(5757), + [anon_sym_orderby] = ACTIONS(5757), + [anon_sym_group] = ACTIONS(5757), + [anon_sym_by] = ACTIONS(5757), + [anon_sym_select] = ACTIONS(5757), + [anon_sym_as] = ACTIONS(5757), + [anon_sym_is] = ACTIONS(5757), + [anon_sym_DASH_GT] = ACTIONS(5757), + [anon_sym_with] = ACTIONS(5757), + [aux_sym_preproc_if_token3] = ACTIONS(5757), + [aux_sym_preproc_else_token1] = ACTIONS(5757), + [aux_sym_preproc_elif_token1] = ACTIONS(5757), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501212,27 +500009,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3209] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3209), [sym_preproc_endregion] = STATE(3209), [sym_preproc_line] = STATE(3209), @@ -501242,46 +500018,63 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4748), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5546), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5550), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5761), + [anon_sym_LBRACK] = ACTIONS(5761), + [anon_sym_COLON] = ACTIONS(5761), + [anon_sym_COMMA] = ACTIONS(5761), + [anon_sym_RBRACK] = ACTIONS(5761), + [anon_sym_LPAREN] = ACTIONS(5761), + [anon_sym_RPAREN] = ACTIONS(5761), + [anon_sym_RBRACE] = ACTIONS(5761), + [anon_sym_LT] = ACTIONS(5763), + [anon_sym_GT] = ACTIONS(5763), + [anon_sym_in] = ACTIONS(5763), + [anon_sym_where] = ACTIONS(5761), + [anon_sym_QMARK] = ACTIONS(5763), + [anon_sym_DOT] = ACTIONS(5763), + [anon_sym_EQ_GT] = ACTIONS(5761), + [anon_sym_STAR] = ACTIONS(5761), + [anon_sym_switch] = ACTIONS(5761), + [anon_sym_DOT_DOT] = ACTIONS(5761), + [anon_sym_LT_EQ] = ACTIONS(5761), + [anon_sym_GT_EQ] = ACTIONS(5761), + [anon_sym_and] = ACTIONS(5761), + [anon_sym_or] = ACTIONS(5763), + [anon_sym_EQ_EQ] = ACTIONS(5761), + [anon_sym_BANG_EQ] = ACTIONS(5761), + [anon_sym_AMP_AMP] = ACTIONS(5761), + [anon_sym_PIPE_PIPE] = ACTIONS(5761), + [anon_sym_AMP] = ACTIONS(5763), + [sym_op_bitwise_or] = ACTIONS(5763), + [anon_sym_CARET] = ACTIONS(5761), + [sym_op_left_shift] = ACTIONS(5761), + [sym_op_right_shift] = ACTIONS(5763), + [sym_op_unsigned_right_shift] = ACTIONS(5761), + [anon_sym_PLUS] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5763), + [sym_op_divide] = ACTIONS(5763), + [sym_op_modulo] = ACTIONS(5761), + [sym_op_coalescing] = ACTIONS(5761), + [anon_sym_BANG] = ACTIONS(5763), + [anon_sym_PLUS_PLUS] = ACTIONS(5761), + [anon_sym_DASH_DASH] = ACTIONS(5761), + [anon_sym_from] = ACTIONS(5761), + [anon_sym_into] = ACTIONS(5761), + [anon_sym_join] = ACTIONS(5761), + [anon_sym_on] = ACTIONS(5761), + [anon_sym_equals] = ACTIONS(5761), + [anon_sym_let] = ACTIONS(5761), + [anon_sym_orderby] = ACTIONS(5761), + [anon_sym_group] = ACTIONS(5761), + [anon_sym_by] = ACTIONS(5761), + [anon_sym_select] = ACTIONS(5761), + [anon_sym_as] = ACTIONS(5761), + [anon_sym_is] = ACTIONS(5761), + [anon_sym_DASH_GT] = ACTIONS(5761), + [anon_sym_with] = ACTIONS(5761), + [aux_sym_preproc_if_token3] = ACTIONS(5761), + [aux_sym_preproc_else_token1] = ACTIONS(5761), + [aux_sym_preproc_elif_token1] = ACTIONS(5761), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501294,27 +500087,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3210] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3210), [sym_preproc_endregion] = STATE(3210), [sym_preproc_line] = STATE(3210), @@ -501324,46 +500096,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3210), [sym_preproc_define] = STATE(3210), [sym_preproc_undef] = STATE(3210), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4708), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4708), - [anon_sym_RBRACE] = ACTIONS(4708), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5546), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5550), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_COLON] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_RPAREN] = ACTIONS(3972), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_in] = ACTIONS(3972), + [anon_sym_where] = ACTIONS(3972), + [anon_sym_QMARK] = ACTIONS(3970), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_EQ_GT] = ACTIONS(3972), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_switch] = ACTIONS(3972), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_and] = ACTIONS(3972), + [anon_sym_or] = ACTIONS(3970), + [anon_sym_EQ_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [sym_op_bitwise_or] = ACTIONS(3970), + [anon_sym_CARET] = ACTIONS(3972), + [sym_op_left_shift] = ACTIONS(3972), + [sym_op_right_shift] = ACTIONS(3970), + [sym_op_unsigned_right_shift] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [sym_op_divide] = ACTIONS(3970), + [sym_op_modulo] = ACTIONS(3972), + [sym_op_coalescing] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_from] = ACTIONS(3972), + [anon_sym_join] = ACTIONS(3972), + [anon_sym_on] = ACTIONS(3972), + [anon_sym_equals] = ACTIONS(3972), + [anon_sym_let] = ACTIONS(3972), + [anon_sym_orderby] = ACTIONS(3972), + [anon_sym_group] = ACTIONS(3972), + [anon_sym_by] = ACTIONS(3972), + [anon_sym_select] = ACTIONS(3972), + [anon_sym_as] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3972), + [anon_sym_DASH_GT] = ACTIONS(3972), + [anon_sym_with] = ACTIONS(3972), + [aux_sym_preproc_if_token3] = ACTIONS(3972), + [aux_sym_preproc_else_token1] = ACTIONS(3972), + [aux_sym_preproc_elif_token1] = ACTIONS(3972), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501376,27 +500165,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3211] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3211), [sym_preproc_endregion] = STATE(3211), [sym_preproc_line] = STATE(3211), @@ -501406,46 +500189,48 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5546), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5550), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5552), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_where] = ACTIONS(5314), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5316), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5314), + [anon_sym_join] = ACTIONS(5314), + [anon_sym_let] = ACTIONS(5314), + [anon_sym_orderby] = ACTIONS(5314), + [anon_sym_group] = ACTIONS(5314), + [anon_sym_select] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501467,67 +500252,63 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5592), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_in] = ACTIONS(3953), + [anon_sym_where] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_EQ_GT] = ACTIONS(3953), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_switch] = ACTIONS(3953), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3953), + [anon_sym_or] = ACTIONS(3951), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP] = ACTIONS(3951), + [sym_op_bitwise_or] = ACTIONS(3951), + [anon_sym_CARET] = ACTIONS(3953), + [sym_op_left_shift] = ACTIONS(3953), + [sym_op_right_shift] = ACTIONS(3951), + [sym_op_unsigned_right_shift] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [sym_op_divide] = ACTIONS(3951), + [sym_op_modulo] = ACTIONS(3953), + [sym_op_coalescing] = ACTIONS(3953), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_from] = ACTIONS(3953), + [anon_sym_join] = ACTIONS(3953), + [anon_sym_on] = ACTIONS(3953), + [anon_sym_equals] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_orderby] = ACTIONS(3953), + [anon_sym_group] = ACTIONS(3953), + [anon_sym_by] = ACTIONS(3953), + [anon_sym_select] = ACTIONS(3953), + [anon_sym_as] = ACTIONS(3953), + [anon_sym_is] = ACTIONS(3953), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3953), + [aux_sym_preproc_if_token3] = ACTIONS(3953), + [aux_sym_preproc_else_token1] = ACTIONS(3953), + [aux_sym_preproc_elif_token1] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501549,67 +500330,63 @@ 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), - [sym__identifier_token] = ACTIONS(5594), - [anon_sym_extern] = ACTIONS(5594), - [anon_sym_alias] = ACTIONS(5594), - [anon_sym_global] = ACTIONS(5594), - [anon_sym_unsafe] = ACTIONS(5594), - [anon_sym_static] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(5596), - [anon_sym_LPAREN] = ACTIONS(5596), - [anon_sym_event] = ACTIONS(5594), - [anon_sym_class] = ACTIONS(5594), - [anon_sym_ref] = ACTIONS(5594), - [anon_sym_struct] = ACTIONS(5594), - [anon_sym_enum] = ACTIONS(5594), - [anon_sym_interface] = ACTIONS(5594), - [anon_sym_delegate] = ACTIONS(5594), - [anon_sym_record] = ACTIONS(5594), - [anon_sym_public] = ACTIONS(5594), - [anon_sym_private] = ACTIONS(5594), - [anon_sym_readonly] = ACTIONS(5594), - [anon_sym_abstract] = ACTIONS(5594), - [anon_sym_async] = ACTIONS(5594), - [anon_sym_const] = ACTIONS(5594), - [anon_sym_file] = ACTIONS(5594), - [anon_sym_fixed] = ACTIONS(5594), - [anon_sym_internal] = ACTIONS(5594), - [anon_sym_new] = ACTIONS(5594), - [anon_sym_override] = ACTIONS(5594), - [anon_sym_partial] = ACTIONS(5594), - [anon_sym_protected] = ACTIONS(5594), - [anon_sym_required] = ACTIONS(5594), - [anon_sym_sealed] = ACTIONS(5594), - [anon_sym_virtual] = ACTIONS(5594), - [anon_sym_volatile] = ACTIONS(5594), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_notnull] = ACTIONS(5594), - [anon_sym_unmanaged] = ACTIONS(5594), - [anon_sym_TILDE] = ACTIONS(5596), - [anon_sym_implicit] = ACTIONS(5594), - [anon_sym_explicit] = ACTIONS(5594), - [anon_sym_scoped] = ACTIONS(5594), - [anon_sym_var] = ACTIONS(5594), - [sym_predefined_type] = ACTIONS(5594), - [anon_sym_yield] = ACTIONS(5594), - [anon_sym_when] = ACTIONS(5594), - [anon_sym_from] = ACTIONS(5594), - [anon_sym_into] = ACTIONS(5594), - [anon_sym_join] = ACTIONS(5594), - [anon_sym_on] = ACTIONS(5594), - [anon_sym_equals] = ACTIONS(5594), - [anon_sym_let] = ACTIONS(5594), - [anon_sym_orderby] = ACTIONS(5594), - [anon_sym_ascending] = ACTIONS(5594), - [anon_sym_descending] = ACTIONS(5594), - [anon_sym_group] = ACTIONS(5594), - [anon_sym_by] = ACTIONS(5594), - [anon_sym_select] = ACTIONS(5594), - [sym_grit_metavariable] = ACTIONS(5596), - [aux_sym_preproc_if_token1] = ACTIONS(5596), - [aux_sym_preproc_if_token3] = ACTIONS(5596), - [aux_sym_preproc_else_token1] = ACTIONS(5596), - [aux_sym_preproc_elif_token1] = ACTIONS(5596), + [anon_sym_SEMI] = ACTIONS(5767), + [anon_sym_LBRACK] = ACTIONS(5767), + [anon_sym_COLON] = ACTIONS(5767), + [anon_sym_COMMA] = ACTIONS(5767), + [anon_sym_RBRACK] = ACTIONS(5767), + [anon_sym_LPAREN] = ACTIONS(5767), + [anon_sym_RPAREN] = ACTIONS(5767), + [anon_sym_RBRACE] = ACTIONS(5767), + [anon_sym_LT] = ACTIONS(5769), + [anon_sym_GT] = ACTIONS(5769), + [anon_sym_in] = ACTIONS(5769), + [anon_sym_where] = ACTIONS(5767), + [anon_sym_QMARK] = ACTIONS(5769), + [anon_sym_DOT] = ACTIONS(5769), + [anon_sym_EQ_GT] = ACTIONS(5767), + [anon_sym_STAR] = ACTIONS(5767), + [anon_sym_switch] = ACTIONS(5767), + [anon_sym_DOT_DOT] = ACTIONS(5767), + [anon_sym_LT_EQ] = ACTIONS(5767), + [anon_sym_GT_EQ] = ACTIONS(5767), + [anon_sym_and] = ACTIONS(5767), + [anon_sym_or] = ACTIONS(5769), + [anon_sym_EQ_EQ] = ACTIONS(5767), + [anon_sym_BANG_EQ] = ACTIONS(5767), + [anon_sym_AMP_AMP] = ACTIONS(5767), + [anon_sym_PIPE_PIPE] = ACTIONS(5767), + [anon_sym_AMP] = ACTIONS(5769), + [sym_op_bitwise_or] = ACTIONS(5769), + [anon_sym_CARET] = ACTIONS(5767), + [sym_op_left_shift] = ACTIONS(5767), + [sym_op_right_shift] = ACTIONS(5769), + [sym_op_unsigned_right_shift] = ACTIONS(5767), + [anon_sym_PLUS] = ACTIONS(5769), + [anon_sym_DASH] = ACTIONS(5769), + [sym_op_divide] = ACTIONS(5769), + [sym_op_modulo] = ACTIONS(5767), + [sym_op_coalescing] = ACTIONS(5767), + [anon_sym_BANG] = ACTIONS(5769), + [anon_sym_PLUS_PLUS] = ACTIONS(5767), + [anon_sym_DASH_DASH] = ACTIONS(5767), + [anon_sym_from] = ACTIONS(5767), + [anon_sym_into] = ACTIONS(5767), + [anon_sym_join] = ACTIONS(5767), + [anon_sym_on] = ACTIONS(5767), + [anon_sym_equals] = ACTIONS(5767), + [anon_sym_let] = ACTIONS(5767), + [anon_sym_orderby] = ACTIONS(5767), + [anon_sym_group] = ACTIONS(5767), + [anon_sym_by] = ACTIONS(5767), + [anon_sym_select] = ACTIONS(5767), + [anon_sym_as] = ACTIONS(5767), + [anon_sym_is] = ACTIONS(5767), + [anon_sym_DASH_GT] = ACTIONS(5767), + [anon_sym_with] = ACTIONS(5767), + [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), @@ -501631,67 +500408,63 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5598), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_COLON] = ACTIONS(3982), + [anon_sym_COMMA] = ACTIONS(3982), + [anon_sym_RBRACK] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym_RPAREN] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3982), + [anon_sym_RBRACE] = ACTIONS(3982), + [anon_sym_LT] = ACTIONS(3980), + [anon_sym_GT] = ACTIONS(3980), + [anon_sym_in] = ACTIONS(3982), + [anon_sym_where] = ACTIONS(3982), + [anon_sym_QMARK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_EQ_GT] = ACTIONS(3982), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_switch] = ACTIONS(3982), + [anon_sym_DOT_DOT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_EQ] = ACTIONS(3982), + [anon_sym_and] = ACTIONS(3982), + [anon_sym_or] = ACTIONS(3980), + [anon_sym_EQ_EQ] = ACTIONS(3982), + [anon_sym_BANG_EQ] = ACTIONS(3982), + [anon_sym_AMP_AMP] = ACTIONS(3982), + [anon_sym_PIPE_PIPE] = ACTIONS(3982), + [anon_sym_AMP] = ACTIONS(3980), + [sym_op_bitwise_or] = ACTIONS(3980), + [anon_sym_CARET] = ACTIONS(3982), + [sym_op_left_shift] = ACTIONS(3982), + [sym_op_right_shift] = ACTIONS(3980), + [sym_op_unsigned_right_shift] = ACTIONS(3982), + [anon_sym_PLUS] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3980), + [sym_op_divide] = ACTIONS(3980), + [sym_op_modulo] = ACTIONS(3982), + [sym_op_coalescing] = ACTIONS(3982), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3982), + [anon_sym_from] = ACTIONS(3982), + [anon_sym_join] = ACTIONS(3982), + [anon_sym_on] = ACTIONS(3982), + [anon_sym_equals] = ACTIONS(3982), + [anon_sym_let] = ACTIONS(3982), + [anon_sym_orderby] = ACTIONS(3982), + [anon_sym_group] = ACTIONS(3982), + [anon_sym_by] = ACTIONS(3982), + [anon_sym_select] = ACTIONS(3982), + [anon_sym_as] = ACTIONS(3982), + [anon_sym_is] = ACTIONS(3982), + [anon_sym_DASH_GT] = ACTIONS(3982), + [anon_sym_with] = ACTIONS(3982), + [aux_sym_preproc_if_token3] = ACTIONS(3982), + [aux_sym_preproc_else_token1] = ACTIONS(3982), + [aux_sym_preproc_elif_token1] = ACTIONS(3982), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501713,67 +500486,63 @@ 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_EQ] = ACTIONS(4552), - [anon_sym_LBRACK] = ACTIONS(4550), - [anon_sym_COLON] = ACTIONS(4550), - [anon_sym_COMMA] = ACTIONS(4550), - [anon_sym_LPAREN] = ACTIONS(4550), - [anon_sym_LT] = ACTIONS(4552), - [anon_sym_GT] = ACTIONS(4552), - [anon_sym_where] = ACTIONS(4550), - [anon_sym_QMARK] = ACTIONS(4552), - [anon_sym_BANG] = ACTIONS(4552), - [anon_sym_PLUS_PLUS] = ACTIONS(4550), - [anon_sym_DASH_DASH] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4552), - [anon_sym_SLASH] = ACTIONS(4552), - [anon_sym_PERCENT] = ACTIONS(4552), - [anon_sym_CARET] = ACTIONS(4552), - [anon_sym_PIPE] = ACTIONS(4552), - [anon_sym_AMP] = ACTIONS(4552), - [anon_sym_LT_LT] = ACTIONS(4552), - [anon_sym_GT_GT] = ACTIONS(4552), - [anon_sym_GT_GT_GT] = ACTIONS(4552), - [anon_sym_EQ_EQ] = ACTIONS(4550), - [anon_sym_BANG_EQ] = ACTIONS(4550), - [anon_sym_GT_EQ] = ACTIONS(4550), - [anon_sym_LT_EQ] = ACTIONS(4550), - [anon_sym_DOT] = ACTIONS(4552), - [anon_sym_switch] = ACTIONS(4550), - [anon_sym_DOT_DOT] = ACTIONS(4550), - [anon_sym_and] = ACTIONS(4550), - [anon_sym_or] = ACTIONS(4552), - [anon_sym_PLUS_EQ] = ACTIONS(4550), - [anon_sym_DASH_EQ] = ACTIONS(4550), - [anon_sym_STAR_EQ] = ACTIONS(4550), - [anon_sym_SLASH_EQ] = ACTIONS(4550), - [anon_sym_PERCENT_EQ] = ACTIONS(4550), - [anon_sym_AMP_EQ] = ACTIONS(4550), - [anon_sym_CARET_EQ] = ACTIONS(4550), - [anon_sym_PIPE_EQ] = ACTIONS(4550), - [anon_sym_LT_LT_EQ] = ACTIONS(4550), - [anon_sym_GT_GT_EQ] = ACTIONS(4550), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4550), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4550), - [anon_sym_AMP_AMP] = ACTIONS(4550), - [anon_sym_PIPE_PIPE] = ACTIONS(4550), - [sym_op_coalescing] = ACTIONS(4552), - [anon_sym_from] = ACTIONS(4550), - [anon_sym_into] = ACTIONS(4550), - [anon_sym_join] = ACTIONS(4550), - [anon_sym_let] = ACTIONS(4550), - [anon_sym_orderby] = ACTIONS(4550), - [anon_sym_ascending] = ACTIONS(4550), - [anon_sym_descending] = ACTIONS(4550), - [anon_sym_group] = ACTIONS(4550), - [anon_sym_select] = ACTIONS(4550), - [anon_sym_as] = ACTIONS(4552), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_DASH_GT] = ACTIONS(4550), - [anon_sym_with] = ACTIONS(4550), - [sym_grit_metavariable] = ACTIONS(4550), + [anon_sym_SEMI] = ACTIONS(5771), + [anon_sym_LBRACK] = ACTIONS(5771), + [anon_sym_COLON] = ACTIONS(5771), + [anon_sym_COMMA] = ACTIONS(5771), + [anon_sym_RBRACK] = ACTIONS(5771), + [anon_sym_LPAREN] = ACTIONS(5771), + [anon_sym_RPAREN] = ACTIONS(5771), + [anon_sym_RBRACE] = ACTIONS(5771), + [anon_sym_LT] = ACTIONS(5773), + [anon_sym_GT] = ACTIONS(5773), + [anon_sym_in] = ACTIONS(5773), + [anon_sym_where] = ACTIONS(5771), + [anon_sym_QMARK] = ACTIONS(5773), + [anon_sym_DOT] = ACTIONS(5773), + [anon_sym_EQ_GT] = ACTIONS(5771), + [anon_sym_STAR] = ACTIONS(5771), + [anon_sym_switch] = ACTIONS(5771), + [anon_sym_DOT_DOT] = ACTIONS(5771), + [anon_sym_LT_EQ] = ACTIONS(5771), + [anon_sym_GT_EQ] = ACTIONS(5771), + [anon_sym_and] = ACTIONS(5771), + [anon_sym_or] = ACTIONS(5773), + [anon_sym_EQ_EQ] = ACTIONS(5771), + [anon_sym_BANG_EQ] = ACTIONS(5771), + [anon_sym_AMP_AMP] = ACTIONS(5771), + [anon_sym_PIPE_PIPE] = ACTIONS(5771), + [anon_sym_AMP] = ACTIONS(5773), + [sym_op_bitwise_or] = ACTIONS(5773), + [anon_sym_CARET] = ACTIONS(5771), + [sym_op_left_shift] = ACTIONS(5771), + [sym_op_right_shift] = ACTIONS(5773), + [sym_op_unsigned_right_shift] = ACTIONS(5771), + [anon_sym_PLUS] = ACTIONS(5773), + [anon_sym_DASH] = ACTIONS(5773), + [sym_op_divide] = ACTIONS(5773), + [sym_op_modulo] = ACTIONS(5771), + [sym_op_coalescing] = ACTIONS(5771), + [anon_sym_BANG] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5771), + [anon_sym_DASH_DASH] = ACTIONS(5771), + [anon_sym_from] = ACTIONS(5771), + [anon_sym_into] = ACTIONS(5771), + [anon_sym_join] = ACTIONS(5771), + [anon_sym_on] = ACTIONS(5771), + [anon_sym_equals] = ACTIONS(5771), + [anon_sym_let] = ACTIONS(5771), + [anon_sym_orderby] = ACTIONS(5771), + [anon_sym_group] = ACTIONS(5771), + [anon_sym_by] = ACTIONS(5771), + [anon_sym_select] = ACTIONS(5771), + [anon_sym_as] = ACTIONS(5771), + [anon_sym_is] = ACTIONS(5771), + [anon_sym_DASH_GT] = ACTIONS(5771), + [anon_sym_with] = ACTIONS(5771), + [aux_sym_preproc_if_token3] = ACTIONS(5771), + [aux_sym_preproc_else_token1] = ACTIONS(5771), + [aux_sym_preproc_elif_token1] = ACTIONS(5771), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501786,27 +500555,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3216] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3216), [sym_preproc_endregion] = STATE(3216), [sym_preproc_line] = STATE(3216), @@ -501816,46 +500564,63 @@ 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(4794), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_RBRACK] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4794), - [anon_sym_RBRACE] = ACTIONS(4794), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(5775), + [anon_sym_LBRACK] = ACTIONS(5775), + [anon_sym_COLON] = ACTIONS(5775), + [anon_sym_COMMA] = ACTIONS(5775), + [anon_sym_RBRACK] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5775), + [anon_sym_RPAREN] = ACTIONS(5775), + [anon_sym_RBRACE] = ACTIONS(5775), + [anon_sym_LT] = ACTIONS(5777), + [anon_sym_GT] = ACTIONS(5777), + [anon_sym_in] = ACTIONS(5777), + [anon_sym_where] = ACTIONS(5775), + [anon_sym_QMARK] = ACTIONS(5777), + [anon_sym_DOT] = ACTIONS(5777), + [anon_sym_EQ_GT] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5775), + [anon_sym_switch] = ACTIONS(5775), + [anon_sym_DOT_DOT] = ACTIONS(5775), + [anon_sym_LT_EQ] = ACTIONS(5775), + [anon_sym_GT_EQ] = ACTIONS(5775), + [anon_sym_and] = ACTIONS(5775), + [anon_sym_or] = ACTIONS(5777), + [anon_sym_EQ_EQ] = ACTIONS(5775), + [anon_sym_BANG_EQ] = ACTIONS(5775), + [anon_sym_AMP_AMP] = ACTIONS(5775), + [anon_sym_PIPE_PIPE] = ACTIONS(5775), + [anon_sym_AMP] = ACTIONS(5777), + [sym_op_bitwise_or] = ACTIONS(5777), + [anon_sym_CARET] = ACTIONS(5775), + [sym_op_left_shift] = ACTIONS(5775), + [sym_op_right_shift] = ACTIONS(5777), + [sym_op_unsigned_right_shift] = ACTIONS(5775), + [anon_sym_PLUS] = ACTIONS(5777), + [anon_sym_DASH] = ACTIONS(5777), + [sym_op_divide] = ACTIONS(5777), + [sym_op_modulo] = ACTIONS(5775), + [sym_op_coalescing] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_from] = ACTIONS(5775), + [anon_sym_into] = ACTIONS(5775), + [anon_sym_join] = ACTIONS(5775), + [anon_sym_on] = ACTIONS(5775), + [anon_sym_equals] = ACTIONS(5775), + [anon_sym_let] = ACTIONS(5775), + [anon_sym_orderby] = ACTIONS(5775), + [anon_sym_group] = ACTIONS(5775), + [anon_sym_by] = ACTIONS(5775), + [anon_sym_select] = ACTIONS(5775), + [anon_sym_as] = ACTIONS(5775), + [anon_sym_is] = ACTIONS(5775), + [anon_sym_DASH_GT] = ACTIONS(5775), + [anon_sym_with] = ACTIONS(5775), + [aux_sym_preproc_if_token3] = ACTIONS(5775), + [aux_sym_preproc_else_token1] = ACTIONS(5775), + [aux_sym_preproc_elif_token1] = ACTIONS(5775), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501877,67 +500642,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3217), [sym_preproc_define] = STATE(3217), [sym_preproc_undef] = STATE(3217), - [anon_sym_EQ] = ACTIONS(4548), - [anon_sym_LBRACK] = ACTIONS(4546), - [anon_sym_COLON] = ACTIONS(4546), - [anon_sym_COMMA] = ACTIONS(4546), - [anon_sym_LPAREN] = ACTIONS(4546), - [anon_sym_LT] = ACTIONS(4548), - [anon_sym_GT] = ACTIONS(4548), - [anon_sym_where] = ACTIONS(4546), - [anon_sym_QMARK] = ACTIONS(4548), - [anon_sym_BANG] = ACTIONS(4548), - [anon_sym_PLUS_PLUS] = ACTIONS(4546), - [anon_sym_DASH_DASH] = ACTIONS(4546), - [anon_sym_PLUS] = ACTIONS(4548), - [anon_sym_DASH] = ACTIONS(4548), - [anon_sym_STAR] = ACTIONS(4548), - [anon_sym_SLASH] = ACTIONS(4548), - [anon_sym_PERCENT] = ACTIONS(4548), - [anon_sym_CARET] = ACTIONS(4548), - [anon_sym_PIPE] = ACTIONS(4548), - [anon_sym_AMP] = ACTIONS(4548), - [anon_sym_LT_LT] = ACTIONS(4548), - [anon_sym_GT_GT] = ACTIONS(4548), - [anon_sym_GT_GT_GT] = ACTIONS(4548), - [anon_sym_EQ_EQ] = ACTIONS(4546), - [anon_sym_BANG_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_DOT] = ACTIONS(4548), - [anon_sym_switch] = ACTIONS(4546), - [anon_sym_DOT_DOT] = ACTIONS(4546), - [anon_sym_and] = ACTIONS(4546), - [anon_sym_or] = ACTIONS(4548), - [anon_sym_PLUS_EQ] = ACTIONS(4546), - [anon_sym_DASH_EQ] = ACTIONS(4546), - [anon_sym_STAR_EQ] = ACTIONS(4546), - [anon_sym_SLASH_EQ] = ACTIONS(4546), - [anon_sym_PERCENT_EQ] = ACTIONS(4546), - [anon_sym_AMP_EQ] = ACTIONS(4546), - [anon_sym_CARET_EQ] = ACTIONS(4546), - [anon_sym_PIPE_EQ] = ACTIONS(4546), - [anon_sym_LT_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_GT_EQ] = ACTIONS(4546), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4546), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4546), - [anon_sym_AMP_AMP] = ACTIONS(4546), - [anon_sym_PIPE_PIPE] = ACTIONS(4546), - [sym_op_coalescing] = ACTIONS(4548), - [anon_sym_from] = ACTIONS(4546), - [anon_sym_into] = ACTIONS(4546), - [anon_sym_join] = ACTIONS(4546), - [anon_sym_let] = ACTIONS(4546), - [anon_sym_orderby] = ACTIONS(4546), - [anon_sym_ascending] = ACTIONS(4546), - [anon_sym_descending] = ACTIONS(4546), - [anon_sym_group] = ACTIONS(4546), - [anon_sym_select] = ACTIONS(4546), - [anon_sym_as] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4546), - [anon_sym_DASH_GT] = ACTIONS(4546), - [anon_sym_with] = ACTIONS(4546), - [sym_grit_metavariable] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(3961), + [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_LBRACE] = ACTIONS(3961), + [anon_sym_RBRACE] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_GT] = ACTIONS(3959), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_DOT] = ACTIONS(3959), + [anon_sym_EQ_GT] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3961), + [anon_sym_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_EQ] = ACTIONS(3961), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3959), + [anon_sym_EQ_EQ] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [sym_op_bitwise_or] = ACTIONS(3959), + [anon_sym_CARET] = ACTIONS(3961), + [sym_op_left_shift] = ACTIONS(3961), + [sym_op_right_shift] = ACTIONS(3959), + [sym_op_unsigned_right_shift] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3959), + [sym_op_divide] = ACTIONS(3959), + [sym_op_modulo] = ACTIONS(3961), + [sym_op_coalescing] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3959), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), + [anon_sym_with] = ACTIONS(3961), + [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), @@ -501959,67 +500720,63 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5600), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(5779), + [anon_sym_LBRACK] = ACTIONS(5779), + [anon_sym_COLON] = ACTIONS(5779), + [anon_sym_COMMA] = ACTIONS(5779), + [anon_sym_RBRACK] = ACTIONS(5779), + [anon_sym_LPAREN] = ACTIONS(5779), + [anon_sym_RPAREN] = ACTIONS(5779), + [anon_sym_RBRACE] = ACTIONS(5779), + [anon_sym_LT] = ACTIONS(5781), + [anon_sym_GT] = ACTIONS(5781), + [anon_sym_in] = ACTIONS(5781), + [anon_sym_where] = ACTIONS(5779), + [anon_sym_QMARK] = ACTIONS(5781), + [anon_sym_DOT] = ACTIONS(5781), + [anon_sym_EQ_GT] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_switch] = ACTIONS(5779), + [anon_sym_DOT_DOT] = ACTIONS(5779), + [anon_sym_LT_EQ] = ACTIONS(5779), + [anon_sym_GT_EQ] = ACTIONS(5779), + [anon_sym_and] = ACTIONS(5779), + [anon_sym_or] = ACTIONS(5781), + [anon_sym_EQ_EQ] = ACTIONS(5779), + [anon_sym_BANG_EQ] = ACTIONS(5779), + [anon_sym_AMP_AMP] = ACTIONS(5779), + [anon_sym_PIPE_PIPE] = ACTIONS(5779), + [anon_sym_AMP] = ACTIONS(5781), + [sym_op_bitwise_or] = ACTIONS(5781), + [anon_sym_CARET] = ACTIONS(5779), + [sym_op_left_shift] = ACTIONS(5779), + [sym_op_right_shift] = ACTIONS(5781), + [sym_op_unsigned_right_shift] = ACTIONS(5779), + [anon_sym_PLUS] = ACTIONS(5781), + [anon_sym_DASH] = ACTIONS(5781), + [sym_op_divide] = ACTIONS(5781), + [sym_op_modulo] = ACTIONS(5779), + [sym_op_coalescing] = ACTIONS(5779), + [anon_sym_BANG] = ACTIONS(5781), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_from] = ACTIONS(5779), + [anon_sym_into] = ACTIONS(5779), + [anon_sym_join] = ACTIONS(5779), + [anon_sym_on] = ACTIONS(5779), + [anon_sym_equals] = ACTIONS(5779), + [anon_sym_let] = ACTIONS(5779), + [anon_sym_orderby] = ACTIONS(5779), + [anon_sym_group] = ACTIONS(5779), + [anon_sym_by] = ACTIONS(5779), + [anon_sym_select] = ACTIONS(5779), + [anon_sym_as] = ACTIONS(5779), + [anon_sym_is] = ACTIONS(5779), + [anon_sym_DASH_GT] = ACTIONS(5779), + [anon_sym_with] = ACTIONS(5779), + [aux_sym_preproc_if_token3] = ACTIONS(5779), + [aux_sym_preproc_else_token1] = ACTIONS(5779), + [aux_sym_preproc_elif_token1] = ACTIONS(5779), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502041,67 +500798,63 @@ 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), - [sym__identifier_token] = ACTIONS(5602), - [anon_sym_extern] = ACTIONS(5602), - [anon_sym_alias] = ACTIONS(5602), - [anon_sym_global] = ACTIONS(5602), - [anon_sym_unsafe] = ACTIONS(5602), - [anon_sym_static] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(5604), - [anon_sym_LPAREN] = ACTIONS(5604), - [anon_sym_event] = ACTIONS(5602), - [anon_sym_class] = ACTIONS(5602), - [anon_sym_ref] = ACTIONS(5602), - [anon_sym_struct] = ACTIONS(5602), - [anon_sym_enum] = ACTIONS(5602), - [anon_sym_interface] = ACTIONS(5602), - [anon_sym_delegate] = ACTIONS(5602), - [anon_sym_record] = ACTIONS(5602), - [anon_sym_public] = ACTIONS(5602), - [anon_sym_private] = ACTIONS(5602), - [anon_sym_readonly] = ACTIONS(5602), - [anon_sym_abstract] = ACTIONS(5602), - [anon_sym_async] = ACTIONS(5602), - [anon_sym_const] = ACTIONS(5602), - [anon_sym_file] = ACTIONS(5602), - [anon_sym_fixed] = ACTIONS(5602), - [anon_sym_internal] = ACTIONS(5602), - [anon_sym_new] = ACTIONS(5602), - [anon_sym_override] = ACTIONS(5602), - [anon_sym_partial] = ACTIONS(5602), - [anon_sym_protected] = ACTIONS(5602), - [anon_sym_required] = ACTIONS(5602), - [anon_sym_sealed] = ACTIONS(5602), - [anon_sym_virtual] = ACTIONS(5602), - [anon_sym_volatile] = ACTIONS(5602), - [anon_sym_where] = ACTIONS(5602), - [anon_sym_notnull] = ACTIONS(5602), - [anon_sym_unmanaged] = ACTIONS(5602), - [anon_sym_TILDE] = ACTIONS(5604), - [anon_sym_implicit] = ACTIONS(5602), - [anon_sym_explicit] = ACTIONS(5602), - [anon_sym_scoped] = ACTIONS(5602), - [anon_sym_var] = ACTIONS(5602), - [sym_predefined_type] = ACTIONS(5602), - [anon_sym_yield] = ACTIONS(5602), - [anon_sym_when] = ACTIONS(5602), - [anon_sym_from] = ACTIONS(5602), - [anon_sym_into] = ACTIONS(5602), - [anon_sym_join] = ACTIONS(5602), - [anon_sym_on] = ACTIONS(5602), - [anon_sym_equals] = ACTIONS(5602), - [anon_sym_let] = ACTIONS(5602), - [anon_sym_orderby] = ACTIONS(5602), - [anon_sym_ascending] = ACTIONS(5602), - [anon_sym_descending] = ACTIONS(5602), - [anon_sym_group] = ACTIONS(5602), - [anon_sym_by] = ACTIONS(5602), - [anon_sym_select] = ACTIONS(5602), - [sym_grit_metavariable] = ACTIONS(5604), - [aux_sym_preproc_if_token1] = ACTIONS(5604), - [aux_sym_preproc_if_token3] = ACTIONS(5604), - [aux_sym_preproc_else_token1] = ACTIONS(5604), - [aux_sym_preproc_elif_token1] = ACTIONS(5604), + [anon_sym_SEMI] = ACTIONS(5783), + [anon_sym_LBRACK] = ACTIONS(5783), + [anon_sym_COLON] = ACTIONS(5783), + [anon_sym_COMMA] = ACTIONS(5783), + [anon_sym_RBRACK] = ACTIONS(5783), + [anon_sym_LPAREN] = ACTIONS(5783), + [anon_sym_RPAREN] = ACTIONS(5783), + [anon_sym_RBRACE] = ACTIONS(5783), + [anon_sym_LT] = ACTIONS(5785), + [anon_sym_GT] = ACTIONS(5785), + [anon_sym_in] = ACTIONS(5785), + [anon_sym_where] = ACTIONS(5783), + [anon_sym_QMARK] = ACTIONS(5785), + [anon_sym_DOT] = ACTIONS(5785), + [anon_sym_EQ_GT] = ACTIONS(5783), + [anon_sym_STAR] = ACTIONS(5783), + [anon_sym_switch] = ACTIONS(5783), + [anon_sym_DOT_DOT] = ACTIONS(5783), + [anon_sym_LT_EQ] = ACTIONS(5783), + [anon_sym_GT_EQ] = ACTIONS(5783), + [anon_sym_and] = ACTIONS(5783), + [anon_sym_or] = ACTIONS(5785), + [anon_sym_EQ_EQ] = ACTIONS(5783), + [anon_sym_BANG_EQ] = ACTIONS(5783), + [anon_sym_AMP_AMP] = ACTIONS(5783), + [anon_sym_PIPE_PIPE] = ACTIONS(5783), + [anon_sym_AMP] = ACTIONS(5785), + [sym_op_bitwise_or] = ACTIONS(5785), + [anon_sym_CARET] = ACTIONS(5783), + [sym_op_left_shift] = ACTIONS(5783), + [sym_op_right_shift] = ACTIONS(5785), + [sym_op_unsigned_right_shift] = ACTIONS(5783), + [anon_sym_PLUS] = ACTIONS(5785), + [anon_sym_DASH] = ACTIONS(5785), + [sym_op_divide] = ACTIONS(5785), + [sym_op_modulo] = ACTIONS(5783), + [sym_op_coalescing] = ACTIONS(5783), + [anon_sym_BANG] = ACTIONS(5785), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_from] = ACTIONS(5783), + [anon_sym_into] = ACTIONS(5783), + [anon_sym_join] = ACTIONS(5783), + [anon_sym_on] = ACTIONS(5783), + [anon_sym_equals] = ACTIONS(5783), + [anon_sym_let] = ACTIONS(5783), + [anon_sym_orderby] = ACTIONS(5783), + [anon_sym_group] = ACTIONS(5783), + [anon_sym_by] = ACTIONS(5783), + [anon_sym_select] = ACTIONS(5783), + [anon_sym_as] = ACTIONS(5783), + [anon_sym_is] = ACTIONS(5783), + [anon_sym_DASH_GT] = ACTIONS(5783), + [anon_sym_with] = ACTIONS(5783), + [aux_sym_preproc_if_token3] = ACTIONS(5783), + [aux_sym_preproc_else_token1] = ACTIONS(5783), + [aux_sym_preproc_elif_token1] = ACTIONS(5783), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502114,27 +500867,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3220] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3220), [sym_preproc_endregion] = STATE(3220), [sym_preproc_line] = STATE(3220), @@ -502144,46 +500876,63 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_where] = ACTIONS(4774), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_from] = ACTIONS(4774), - [anon_sym_join] = ACTIONS(4774), - [anon_sym_let] = ACTIONS(4774), - [anon_sym_orderby] = ACTIONS(4774), - [anon_sym_group] = ACTIONS(4774), - [anon_sym_select] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(5787), + [anon_sym_LBRACK] = ACTIONS(5787), + [anon_sym_COLON] = ACTIONS(5787), + [anon_sym_COMMA] = ACTIONS(5787), + [anon_sym_RBRACK] = ACTIONS(5787), + [anon_sym_LPAREN] = ACTIONS(5787), + [anon_sym_RPAREN] = ACTIONS(5787), + [anon_sym_RBRACE] = ACTIONS(5787), + [anon_sym_LT] = ACTIONS(5789), + [anon_sym_GT] = ACTIONS(5789), + [anon_sym_in] = ACTIONS(5789), + [anon_sym_where] = ACTIONS(5787), + [anon_sym_QMARK] = ACTIONS(5789), + [anon_sym_DOT] = ACTIONS(5789), + [anon_sym_EQ_GT] = ACTIONS(5787), + [anon_sym_STAR] = ACTIONS(5787), + [anon_sym_switch] = ACTIONS(5787), + [anon_sym_DOT_DOT] = ACTIONS(5787), + [anon_sym_LT_EQ] = ACTIONS(5787), + [anon_sym_GT_EQ] = ACTIONS(5787), + [anon_sym_and] = ACTIONS(5787), + [anon_sym_or] = ACTIONS(5789), + [anon_sym_EQ_EQ] = ACTIONS(5787), + [anon_sym_BANG_EQ] = ACTIONS(5787), + [anon_sym_AMP_AMP] = ACTIONS(5787), + [anon_sym_PIPE_PIPE] = ACTIONS(5787), + [anon_sym_AMP] = ACTIONS(5789), + [sym_op_bitwise_or] = ACTIONS(5789), + [anon_sym_CARET] = ACTIONS(5787), + [sym_op_left_shift] = ACTIONS(5787), + [sym_op_right_shift] = ACTIONS(5789), + [sym_op_unsigned_right_shift] = ACTIONS(5787), + [anon_sym_PLUS] = ACTIONS(5789), + [anon_sym_DASH] = ACTIONS(5789), + [sym_op_divide] = ACTIONS(5789), + [sym_op_modulo] = ACTIONS(5787), + [sym_op_coalescing] = ACTIONS(5787), + [anon_sym_BANG] = ACTIONS(5789), + [anon_sym_PLUS_PLUS] = ACTIONS(5787), + [anon_sym_DASH_DASH] = ACTIONS(5787), + [anon_sym_from] = ACTIONS(5787), + [anon_sym_into] = ACTIONS(5787), + [anon_sym_join] = ACTIONS(5787), + [anon_sym_on] = ACTIONS(5787), + [anon_sym_equals] = ACTIONS(5787), + [anon_sym_let] = ACTIONS(5787), + [anon_sym_orderby] = ACTIONS(5787), + [anon_sym_group] = ACTIONS(5787), + [anon_sym_by] = ACTIONS(5787), + [anon_sym_select] = ACTIONS(5787), + [anon_sym_as] = ACTIONS(5787), + [anon_sym_is] = ACTIONS(5787), + [anon_sym_DASH_GT] = ACTIONS(5787), + [anon_sym_with] = ACTIONS(5787), + [aux_sym_preproc_if_token3] = ACTIONS(5787), + [aux_sym_preproc_else_token1] = ACTIONS(5787), + [aux_sym_preproc_elif_token1] = ACTIONS(5787), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502196,27 +500945,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3221] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3221), [sym_preproc_endregion] = STATE(3221), [sym_preproc_line] = STATE(3221), @@ -502226,46 +500954,63 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(5606), - [anon_sym_QMARK] = ACTIONS(5530), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_from] = ACTIONS(5606), - [anon_sym_join] = ACTIONS(5606), - [anon_sym_let] = ACTIONS(5606), - [anon_sym_orderby] = ACTIONS(5606), - [anon_sym_group] = ACTIONS(5606), - [anon_sym_select] = ACTIONS(5606), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5791), + [anon_sym_LBRACK] = ACTIONS(5791), + [anon_sym_COLON] = ACTIONS(5791), + [anon_sym_COMMA] = ACTIONS(5791), + [anon_sym_RBRACK] = ACTIONS(5791), + [anon_sym_LPAREN] = ACTIONS(5791), + [anon_sym_RPAREN] = ACTIONS(5791), + [anon_sym_RBRACE] = ACTIONS(5791), + [anon_sym_LT] = ACTIONS(5793), + [anon_sym_GT] = ACTIONS(5793), + [anon_sym_in] = ACTIONS(5793), + [anon_sym_where] = ACTIONS(5791), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5793), + [anon_sym_EQ_GT] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_switch] = ACTIONS(5791), + [anon_sym_DOT_DOT] = ACTIONS(5791), + [anon_sym_LT_EQ] = ACTIONS(5791), + [anon_sym_GT_EQ] = ACTIONS(5791), + [anon_sym_and] = ACTIONS(5791), + [anon_sym_or] = ACTIONS(5793), + [anon_sym_EQ_EQ] = ACTIONS(5791), + [anon_sym_BANG_EQ] = ACTIONS(5791), + [anon_sym_AMP_AMP] = ACTIONS(5791), + [anon_sym_PIPE_PIPE] = ACTIONS(5791), + [anon_sym_AMP] = ACTIONS(5793), + [sym_op_bitwise_or] = ACTIONS(5793), + [anon_sym_CARET] = ACTIONS(5791), + [sym_op_left_shift] = ACTIONS(5791), + [sym_op_right_shift] = ACTIONS(5793), + [sym_op_unsigned_right_shift] = ACTIONS(5791), + [anon_sym_PLUS] = ACTIONS(5793), + [anon_sym_DASH] = ACTIONS(5793), + [sym_op_divide] = ACTIONS(5793), + [sym_op_modulo] = ACTIONS(5791), + [sym_op_coalescing] = ACTIONS(5791), + [anon_sym_BANG] = ACTIONS(5793), + [anon_sym_PLUS_PLUS] = ACTIONS(5791), + [anon_sym_DASH_DASH] = ACTIONS(5791), + [anon_sym_from] = ACTIONS(5791), + [anon_sym_into] = ACTIONS(5791), + [anon_sym_join] = ACTIONS(5791), + [anon_sym_on] = ACTIONS(5791), + [anon_sym_equals] = ACTIONS(5791), + [anon_sym_let] = ACTIONS(5791), + [anon_sym_orderby] = ACTIONS(5791), + [anon_sym_group] = ACTIONS(5791), + [anon_sym_by] = ACTIONS(5791), + [anon_sym_select] = ACTIONS(5791), + [anon_sym_as] = ACTIONS(5791), + [anon_sym_is] = ACTIONS(5791), + [anon_sym_DASH_GT] = ACTIONS(5791), + [anon_sym_with] = ACTIONS(5791), + [aux_sym_preproc_if_token3] = ACTIONS(5791), + [aux_sym_preproc_else_token1] = ACTIONS(5791), + [aux_sym_preproc_elif_token1] = ACTIONS(5791), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502278,6 +501023,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3222] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3222), [sym_preproc_endregion] = STATE(3222), [sym_preproc_line] = STATE(3222), @@ -502287,67 +501047,48 @@ 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), - [sym__identifier_token] = ACTIONS(5608), - [anon_sym_extern] = ACTIONS(5608), - [anon_sym_alias] = ACTIONS(5608), - [anon_sym_global] = ACTIONS(5608), - [anon_sym_unsafe] = ACTIONS(5608), - [anon_sym_static] = ACTIONS(5608), - [anon_sym_LBRACK] = ACTIONS(5610), - [anon_sym_LPAREN] = ACTIONS(5610), - [anon_sym_event] = ACTIONS(5608), - [anon_sym_class] = ACTIONS(5608), - [anon_sym_ref] = ACTIONS(5608), - [anon_sym_struct] = ACTIONS(5608), - [anon_sym_enum] = ACTIONS(5608), - [anon_sym_interface] = ACTIONS(5608), - [anon_sym_delegate] = ACTIONS(5608), - [anon_sym_record] = ACTIONS(5608), - [anon_sym_public] = ACTIONS(5608), - [anon_sym_private] = ACTIONS(5608), - [anon_sym_readonly] = ACTIONS(5608), - [anon_sym_abstract] = ACTIONS(5608), - [anon_sym_async] = ACTIONS(5608), - [anon_sym_const] = ACTIONS(5608), - [anon_sym_file] = ACTIONS(5608), - [anon_sym_fixed] = ACTIONS(5608), - [anon_sym_internal] = ACTIONS(5608), - [anon_sym_new] = ACTIONS(5608), - [anon_sym_override] = ACTIONS(5608), - [anon_sym_partial] = ACTIONS(5608), - [anon_sym_protected] = ACTIONS(5608), - [anon_sym_required] = ACTIONS(5608), - [anon_sym_sealed] = ACTIONS(5608), - [anon_sym_virtual] = ACTIONS(5608), - [anon_sym_volatile] = ACTIONS(5608), - [anon_sym_where] = ACTIONS(5608), - [anon_sym_notnull] = ACTIONS(5608), - [anon_sym_unmanaged] = ACTIONS(5608), - [anon_sym_TILDE] = ACTIONS(5610), - [anon_sym_implicit] = ACTIONS(5608), - [anon_sym_explicit] = ACTIONS(5608), - [anon_sym_scoped] = ACTIONS(5608), - [anon_sym_var] = ACTIONS(5608), - [sym_predefined_type] = ACTIONS(5608), - [anon_sym_yield] = ACTIONS(5608), - [anon_sym_when] = ACTIONS(5608), - [anon_sym_from] = ACTIONS(5608), - [anon_sym_into] = ACTIONS(5608), - [anon_sym_join] = ACTIONS(5608), - [anon_sym_on] = ACTIONS(5608), - [anon_sym_equals] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(5608), - [anon_sym_orderby] = ACTIONS(5608), - [anon_sym_ascending] = ACTIONS(5608), - [anon_sym_descending] = ACTIONS(5608), - [anon_sym_group] = ACTIONS(5608), - [anon_sym_by] = ACTIONS(5608), - [anon_sym_select] = ACTIONS(5608), - [sym_grit_metavariable] = ACTIONS(5610), - [aux_sym_preproc_if_token1] = ACTIONS(5610), - [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(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502360,27 +501101,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3223] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3223), [sym_preproc_endregion] = STATE(3223), [sym_preproc_line] = STATE(3223), @@ -502390,46 +501125,48 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_join] = ACTIONS(1435), - [anon_sym_let] = ACTIONS(1435), - [anon_sym_orderby] = ACTIONS(1435), - [anon_sym_group] = ACTIONS(1435), - [anon_sym_select] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [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), @@ -502442,6 +501179,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3224] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3224), [sym_preproc_endregion] = STATE(3224), [sym_preproc_line] = STATE(3224), @@ -502451,67 +501203,48 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5612), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [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), @@ -502524,27 +501257,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3225] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3225), [sym_preproc_endregion] = STATE(3225), [sym_preproc_line] = STATE(3225), @@ -502554,46 +501281,48 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_where] = ACTIONS(4766), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_from] = ACTIONS(4766), - [anon_sym_join] = ACTIONS(4766), - [anon_sym_let] = ACTIONS(4766), - [anon_sym_orderby] = ACTIONS(4766), - [anon_sym_group] = ACTIONS(4766), - [anon_sym_select] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5743), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [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), @@ -502606,27 +501335,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3226] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3226), [sym_preproc_endregion] = STATE(3226), [sym_preproc_line] = STATE(3226), @@ -502636,46 +501344,63 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(5614), - [anon_sym_QMARK] = ACTIONS(5530), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_from] = ACTIONS(5614), - [anon_sym_join] = ACTIONS(5614), - [anon_sym_let] = ACTIONS(5614), - [anon_sym_orderby] = ACTIONS(5614), - [anon_sym_group] = ACTIONS(5614), - [anon_sym_select] = ACTIONS(5614), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_COLON] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_LPAREN] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [anon_sym_RBRACE] = ACTIONS(5805), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_in] = ACTIONS(5807), + [anon_sym_where] = ACTIONS(5805), + [anon_sym_QMARK] = ACTIONS(5807), + [anon_sym_DOT] = ACTIONS(5807), + [anon_sym_EQ_GT] = ACTIONS(5805), + [anon_sym_STAR] = ACTIONS(5805), + [anon_sym_switch] = ACTIONS(5805), + [anon_sym_DOT_DOT] = ACTIONS(5805), + [anon_sym_LT_EQ] = ACTIONS(5805), + [anon_sym_GT_EQ] = ACTIONS(5805), + [anon_sym_and] = ACTIONS(5805), + [anon_sym_or] = ACTIONS(5807), + [anon_sym_EQ_EQ] = ACTIONS(5805), + [anon_sym_BANG_EQ] = ACTIONS(5805), + [anon_sym_AMP_AMP] = ACTIONS(5805), + [anon_sym_PIPE_PIPE] = ACTIONS(5805), + [anon_sym_AMP] = ACTIONS(5807), + [sym_op_bitwise_or] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5805), + [sym_op_left_shift] = ACTIONS(5805), + [sym_op_right_shift] = ACTIONS(5807), + [sym_op_unsigned_right_shift] = ACTIONS(5805), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_DASH] = ACTIONS(5807), + [sym_op_divide] = ACTIONS(5807), + [sym_op_modulo] = ACTIONS(5805), + [sym_op_coalescing] = ACTIONS(5805), + [anon_sym_BANG] = ACTIONS(5807), + [anon_sym_PLUS_PLUS] = ACTIONS(5805), + [anon_sym_DASH_DASH] = 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_group] = ACTIONS(5805), + [anon_sym_by] = ACTIONS(5805), + [anon_sym_select] = ACTIONS(5805), + [anon_sym_as] = ACTIONS(5805), + [anon_sym_is] = ACTIONS(5805), + [anon_sym_DASH_GT] = ACTIONS(5805), + [anon_sym_with] = ACTIONS(5805), + [aux_sym_preproc_if_token3] = ACTIONS(5805), + [aux_sym_preproc_else_token1] = ACTIONS(5805), + [aux_sym_preproc_elif_token1] = ACTIONS(5805), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502688,13 +501413,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3227] = { - [sym_attribute_list] = STATE(4961), - [sym__attribute_list] = STATE(4962), - [sym_modifier] = STATE(5152), - [sym_accessor_declaration] = STATE(4759), - [sym_identifier] = STATE(6738), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_attribute_list] = STATE(4961), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3227), [sym_preproc_endregion] = STATE(3227), [sym_preproc_line] = STATE(3227), @@ -502704,60 +501437,48 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3583), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4656), - [aux_sym_accessor_list_repeat1] = STATE(3197), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(5616), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(5616), - [anon_sym_static] = ACTIONS(5616), - [anon_sym_LBRACK] = ACTIONS(5618), - [anon_sym_RBRACE] = ACTIONS(5620), - [anon_sym_public] = ACTIONS(5616), - [anon_sym_private] = ACTIONS(5616), - [anon_sym_readonly] = ACTIONS(5616), - [anon_sym_abstract] = ACTIONS(5616), - [anon_sym_async] = ACTIONS(5616), - [anon_sym_const] = ACTIONS(5616), - [anon_sym_file] = ACTIONS(5622), - [anon_sym_fixed] = ACTIONS(5616), - [anon_sym_internal] = ACTIONS(5616), - [anon_sym_new] = ACTIONS(5616), - [anon_sym_override] = ACTIONS(5616), - [anon_sym_partial] = ACTIONS(5616), - [anon_sym_protected] = ACTIONS(5616), - [anon_sym_required] = ACTIONS(5616), - [anon_sym_sealed] = ACTIONS(5616), - [anon_sym_virtual] = ACTIONS(5616), - [anon_sym_volatile] = ACTIONS(5616), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [sym_accessor_get] = ACTIONS(5624), - [sym_accessor_set] = ACTIONS(5624), - [sym_accessor_add] = ACTIONS(5624), - [sym_accessor_remove] = ACTIONS(5624), - [sym_accessor_init] = ACTIONS(5624), - [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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502770,6 +501491,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3228] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3228), [sym_preproc_endregion] = STATE(3228), [sym_preproc_line] = STATE(3228), @@ -502779,67 +501515,48 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(5308), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_RBRACK] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5308), + [anon_sym_RBRACE] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(5408), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502852,27 +501569,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3229] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3229), [sym_preproc_endregion] = STATE(3229), [sym_preproc_line] = STATE(3229), @@ -502882,46 +501578,63 @@ 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(1435), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_RBRACK] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(5813), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_COLON] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_LPAREN] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [anon_sym_RBRACE] = ACTIONS(5813), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_in] = ACTIONS(5815), + [anon_sym_where] = ACTIONS(5813), + [anon_sym_QMARK] = ACTIONS(5815), + [anon_sym_DOT] = ACTIONS(5815), + [anon_sym_EQ_GT] = ACTIONS(5813), + [anon_sym_STAR] = ACTIONS(5813), + [anon_sym_switch] = ACTIONS(5813), + [anon_sym_DOT_DOT] = ACTIONS(5813), + [anon_sym_LT_EQ] = ACTIONS(5813), + [anon_sym_GT_EQ] = ACTIONS(5813), + [anon_sym_and] = ACTIONS(5813), + [anon_sym_or] = ACTIONS(5815), + [anon_sym_EQ_EQ] = ACTIONS(5813), + [anon_sym_BANG_EQ] = ACTIONS(5813), + [anon_sym_AMP_AMP] = ACTIONS(5813), + [anon_sym_PIPE_PIPE] = ACTIONS(5813), + [anon_sym_AMP] = ACTIONS(5815), + [sym_op_bitwise_or] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5813), + [sym_op_left_shift] = ACTIONS(5813), + [sym_op_right_shift] = ACTIONS(5815), + [sym_op_unsigned_right_shift] = ACTIONS(5813), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_DASH] = ACTIONS(5815), + [sym_op_divide] = ACTIONS(5815), + [sym_op_modulo] = ACTIONS(5813), + [sym_op_coalescing] = ACTIONS(5813), + [anon_sym_BANG] = ACTIONS(5815), + [anon_sym_PLUS_PLUS] = ACTIONS(5813), + [anon_sym_DASH_DASH] = ACTIONS(5813), + [anon_sym_from] = ACTIONS(5813), + [anon_sym_into] = ACTIONS(5813), + [anon_sym_join] = ACTIONS(5813), + [anon_sym_on] = ACTIONS(5813), + [anon_sym_equals] = ACTIONS(5813), + [anon_sym_let] = ACTIONS(5813), + [anon_sym_orderby] = ACTIONS(5813), + [anon_sym_group] = ACTIONS(5813), + [anon_sym_by] = ACTIONS(5813), + [anon_sym_select] = ACTIONS(5813), + [anon_sym_as] = ACTIONS(5813), + [anon_sym_is] = ACTIONS(5813), + [anon_sym_DASH_GT] = ACTIONS(5813), + [anon_sym_with] = ACTIONS(5813), + [aux_sym_preproc_if_token3] = ACTIONS(5813), + [aux_sym_preproc_else_token1] = ACTIONS(5813), + [aux_sym_preproc_elif_token1] = ACTIONS(5813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502934,27 +501647,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3230] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3230), [sym_preproc_endregion] = STATE(3230), [sym_preproc_line] = STATE(3230), @@ -502964,46 +501671,48 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(5530), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_from] = ACTIONS(4790), - [anon_sym_join] = ACTIONS(4790), - [anon_sym_let] = ACTIONS(4790), - [anon_sym_orderby] = ACTIONS(4790), - [anon_sym_group] = ACTIONS(4790), - [anon_sym_select] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503025,67 +501734,63 @@ 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), - [sym__identifier_token] = ACTIONS(4487), - [anon_sym_alias] = ACTIONS(4487), - [anon_sym_global] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4810), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_file] = ACTIONS(4487), - [anon_sym_LT] = ACTIONS(4812), - [anon_sym_GT] = ACTIONS(4812), - [anon_sym_where] = ACTIONS(4487), - [anon_sym_QMARK] = ACTIONS(4812), - [anon_sym_notnull] = ACTIONS(4487), - [anon_sym_unmanaged] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4812), - [anon_sym_PLUS_PLUS] = ACTIONS(4810), - [anon_sym_DASH_DASH] = ACTIONS(4810), - [anon_sym_PLUS] = ACTIONS(4812), - [anon_sym_DASH] = ACTIONS(4812), - [anon_sym_STAR] = ACTIONS(4810), - [anon_sym_SLASH] = ACTIONS(4812), - [anon_sym_PERCENT] = ACTIONS(4810), - [anon_sym_CARET] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4812), - [anon_sym_AMP] = ACTIONS(4812), - [anon_sym_LT_LT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4812), - [anon_sym_GT_GT_GT] = ACTIONS(4810), - [anon_sym_EQ_EQ] = ACTIONS(4810), - [anon_sym_BANG_EQ] = ACTIONS(4810), - [anon_sym_GT_EQ] = ACTIONS(4810), - [anon_sym_LT_EQ] = ACTIONS(4810), - [anon_sym_DOT] = ACTIONS(4812), - [anon_sym_scoped] = ACTIONS(4487), - [anon_sym_var] = ACTIONS(4487), - [anon_sym_yield] = ACTIONS(4487), - [anon_sym_switch] = ACTIONS(4812), - [anon_sym_when] = ACTIONS(4487), - [sym_discard] = ACTIONS(4487), - [anon_sym_DOT_DOT] = ACTIONS(4810), - [anon_sym_and] = ACTIONS(4487), - [anon_sym_or] = ACTIONS(4487), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym_op_coalescing] = ACTIONS(4810), - [anon_sym_from] = ACTIONS(4487), - [anon_sym_into] = ACTIONS(4487), - [anon_sym_join] = ACTIONS(4487), - [anon_sym_on] = ACTIONS(4487), - [anon_sym_equals] = ACTIONS(4487), - [anon_sym_let] = ACTIONS(4487), - [anon_sym_orderby] = ACTIONS(4487), - [anon_sym_ascending] = ACTIONS(4487), - [anon_sym_descending] = ACTIONS(4487), - [anon_sym_group] = ACTIONS(4487), - [anon_sym_by] = ACTIONS(4487), - [anon_sym_select] = ACTIONS(4487), - [anon_sym_as] = ACTIONS(4812), - [anon_sym_is] = ACTIONS(4812), - [anon_sym_DASH_GT] = ACTIONS(4810), - [anon_sym_with] = ACTIONS(4812), - [sym_grit_metavariable] = ACTIONS(4489), + [anon_sym_SEMI] = ACTIONS(5817), + [anon_sym_LBRACK] = ACTIONS(5817), + [anon_sym_COLON] = ACTIONS(5817), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_RBRACK] = ACTIONS(5817), + [anon_sym_LPAREN] = ACTIONS(5817), + [anon_sym_RPAREN] = ACTIONS(5817), + [anon_sym_RBRACE] = ACTIONS(5817), + [anon_sym_LT] = ACTIONS(5819), + [anon_sym_GT] = ACTIONS(5819), + [anon_sym_in] = ACTIONS(5819), + [anon_sym_where] = ACTIONS(5817), + [anon_sym_QMARK] = ACTIONS(5819), + [anon_sym_DOT] = ACTIONS(5819), + [anon_sym_EQ_GT] = ACTIONS(5817), + [anon_sym_STAR] = ACTIONS(5817), + [anon_sym_switch] = ACTIONS(5817), + [anon_sym_DOT_DOT] = ACTIONS(5817), + [anon_sym_LT_EQ] = ACTIONS(5817), + [anon_sym_GT_EQ] = ACTIONS(5817), + [anon_sym_and] = ACTIONS(5817), + [anon_sym_or] = ACTIONS(5819), + [anon_sym_EQ_EQ] = ACTIONS(5817), + [anon_sym_BANG_EQ] = ACTIONS(5817), + [anon_sym_AMP_AMP] = ACTIONS(5817), + [anon_sym_PIPE_PIPE] = ACTIONS(5817), + [anon_sym_AMP] = ACTIONS(5819), + [sym_op_bitwise_or] = ACTIONS(5819), + [anon_sym_CARET] = ACTIONS(5817), + [sym_op_left_shift] = ACTIONS(5817), + [sym_op_right_shift] = ACTIONS(5819), + [sym_op_unsigned_right_shift] = ACTIONS(5817), + [anon_sym_PLUS] = ACTIONS(5819), + [anon_sym_DASH] = ACTIONS(5819), + [sym_op_divide] = ACTIONS(5819), + [sym_op_modulo] = ACTIONS(5817), + [sym_op_coalescing] = ACTIONS(5817), + [anon_sym_BANG] = ACTIONS(5819), + [anon_sym_PLUS_PLUS] = ACTIONS(5817), + [anon_sym_DASH_DASH] = ACTIONS(5817), + [anon_sym_from] = ACTIONS(5817), + [anon_sym_into] = ACTIONS(5817), + [anon_sym_join] = ACTIONS(5817), + [anon_sym_on] = ACTIONS(5817), + [anon_sym_equals] = ACTIONS(5817), + [anon_sym_let] = ACTIONS(5817), + [anon_sym_orderby] = ACTIONS(5817), + [anon_sym_group] = ACTIONS(5817), + [anon_sym_by] = ACTIONS(5817), + [anon_sym_select] = ACTIONS(5817), + [anon_sym_as] = ACTIONS(5817), + [anon_sym_is] = ACTIONS(5817), + [anon_sym_DASH_GT] = ACTIONS(5817), + [anon_sym_with] = ACTIONS(5817), + [aux_sym_preproc_if_token3] = ACTIONS(5817), + [aux_sym_preproc_else_token1] = ACTIONS(5817), + [aux_sym_preproc_elif_token1] = ACTIONS(5817), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503098,6 +501803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3232] = { + [sym_modifier] = STATE(3484), [sym_preproc_region] = STATE(3232), [sym_preproc_endregion] = STATE(3232), [sym_preproc_line] = STATE(3232), @@ -503107,67 +501813,62 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5628), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3232), + [sym__identifier_token] = ACTIONS(5821), + [anon_sym_extern] = ACTIONS(5823), + [anon_sym_alias] = ACTIONS(5821), + [anon_sym_global] = ACTIONS(5821), + [anon_sym_unsafe] = ACTIONS(5823), + [anon_sym_static] = ACTIONS(5823), + [anon_sym_LPAREN] = ACTIONS(5826), + [anon_sym_event] = ACTIONS(5821), + [anon_sym_class] = ACTIONS(5821), + [anon_sym_ref] = ACTIONS(5821), + [anon_sym_struct] = ACTIONS(5821), + [anon_sym_enum] = ACTIONS(5821), + [anon_sym_interface] = ACTIONS(5821), + [anon_sym_delegate] = ACTIONS(5821), + [anon_sym_record] = ACTIONS(5821), + [anon_sym_public] = ACTIONS(5823), + [anon_sym_private] = ACTIONS(5823), + [anon_sym_readonly] = ACTIONS(5823), + [anon_sym_abstract] = ACTIONS(5823), + [anon_sym_async] = ACTIONS(5823), + [anon_sym_const] = ACTIONS(5823), + [anon_sym_file] = ACTIONS(5823), + [anon_sym_fixed] = ACTIONS(5823), + [anon_sym_internal] = ACTIONS(5823), + [anon_sym_new] = ACTIONS(5823), + [anon_sym_override] = ACTIONS(5823), + [anon_sym_partial] = ACTIONS(5823), + [anon_sym_protected] = ACTIONS(5823), + [anon_sym_required] = ACTIONS(5823), + [anon_sym_sealed] = ACTIONS(5823), + [anon_sym_virtual] = ACTIONS(5823), + [anon_sym_volatile] = ACTIONS(5823), + [anon_sym_where] = ACTIONS(5821), + [anon_sym_notnull] = ACTIONS(5821), + [anon_sym_unmanaged] = ACTIONS(5821), + [anon_sym_implicit] = ACTIONS(5821), + [anon_sym_explicit] = ACTIONS(5821), + [anon_sym_scoped] = ACTIONS(5821), + [anon_sym_var] = ACTIONS(5821), + [sym_predefined_type] = ACTIONS(5821), + [anon_sym_yield] = ACTIONS(5821), + [anon_sym_when] = ACTIONS(5821), + [anon_sym_from] = ACTIONS(5821), + [anon_sym_into] = ACTIONS(5821), + [anon_sym_join] = ACTIONS(5821), + [anon_sym_on] = ACTIONS(5821), + [anon_sym_equals] = ACTIONS(5821), + [anon_sym_let] = ACTIONS(5821), + [anon_sym_orderby] = ACTIONS(5821), + [anon_sym_ascending] = ACTIONS(5821), + [anon_sym_descending] = ACTIONS(5821), + [anon_sym_group] = ACTIONS(5821), + [anon_sym_by] = ACTIONS(5821), + [anon_sym_select] = ACTIONS(5821), + [sym_grit_metavariable] = ACTIONS(5826), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503180,6 +501881,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3233] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3233), [sym_preproc_endregion] = STATE(3233), [sym_preproc_line] = STATE(3233), @@ -503189,67 +501905,48 @@ 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), - [sym__identifier_token] = ACTIONS(4329), - [anon_sym_alias] = ACTIONS(4329), - [anon_sym_global] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_file] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_notnull] = ACTIONS(4329), - [anon_sym_unmanaged] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(5630), - [anon_sym_scoped] = ACTIONS(4329), - [anon_sym_var] = ACTIONS(4329), - [anon_sym_yield] = ACTIONS(4329), - [anon_sym_switch] = ACTIONS(4329), - [anon_sym_when] = ACTIONS(4329), - [sym_discard] = ACTIONS(4329), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4329), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4329), - [anon_sym_into] = ACTIONS(4329), - [anon_sym_join] = ACTIONS(4329), - [anon_sym_on] = ACTIONS(4329), - [anon_sym_equals] = ACTIONS(4329), - [anon_sym_let] = ACTIONS(4329), - [anon_sym_orderby] = ACTIONS(4329), - [anon_sym_ascending] = ACTIONS(4329), - [anon_sym_descending] = ACTIONS(4329), - [anon_sym_group] = ACTIONS(4329), - [anon_sym_by] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_as] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4329), - [sym_grit_metavariable] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_where] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5354), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5352), + [anon_sym_join] = ACTIONS(5352), + [anon_sym_let] = ACTIONS(5352), + [anon_sym_orderby] = ACTIONS(5352), + [anon_sym_group] = ACTIONS(5352), + [anon_sym_select] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503262,27 +501959,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3234] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3234), [sym_preproc_endregion] = STATE(3234), [sym_preproc_line] = STATE(3234), @@ -503292,46 +501968,63 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5828), + [anon_sym_LBRACK] = ACTIONS(5828), + [anon_sym_COLON] = ACTIONS(5828), + [anon_sym_COMMA] = ACTIONS(5828), + [anon_sym_RBRACK] = ACTIONS(5828), + [anon_sym_LPAREN] = ACTIONS(5828), + [anon_sym_RPAREN] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(5828), + [anon_sym_LT] = ACTIONS(5830), + [anon_sym_GT] = ACTIONS(5830), + [anon_sym_in] = ACTIONS(5830), + [anon_sym_where] = ACTIONS(5828), + [anon_sym_QMARK] = ACTIONS(5830), + [anon_sym_DOT] = ACTIONS(5830), + [anon_sym_EQ_GT] = ACTIONS(5828), + [anon_sym_STAR] = ACTIONS(5828), + [anon_sym_switch] = ACTIONS(5828), + [anon_sym_DOT_DOT] = ACTIONS(5828), + [anon_sym_LT_EQ] = ACTIONS(5828), + [anon_sym_GT_EQ] = ACTIONS(5828), + [anon_sym_and] = ACTIONS(5828), + [anon_sym_or] = ACTIONS(5830), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_AMP_AMP] = ACTIONS(5828), + [anon_sym_PIPE_PIPE] = ACTIONS(5828), + [anon_sym_AMP] = ACTIONS(5830), + [sym_op_bitwise_or] = ACTIONS(5830), + [anon_sym_CARET] = ACTIONS(5828), + [sym_op_left_shift] = ACTIONS(5828), + [sym_op_right_shift] = ACTIONS(5830), + [sym_op_unsigned_right_shift] = ACTIONS(5828), + [anon_sym_PLUS] = ACTIONS(5830), + [anon_sym_DASH] = ACTIONS(5830), + [sym_op_divide] = ACTIONS(5830), + [sym_op_modulo] = ACTIONS(5828), + [sym_op_coalescing] = ACTIONS(5828), + [anon_sym_BANG] = ACTIONS(5830), + [anon_sym_PLUS_PLUS] = ACTIONS(5828), + [anon_sym_DASH_DASH] = ACTIONS(5828), + [anon_sym_from] = ACTIONS(5828), + [anon_sym_into] = ACTIONS(5828), + [anon_sym_join] = ACTIONS(5828), + [anon_sym_on] = ACTIONS(5828), + [anon_sym_equals] = ACTIONS(5828), + [anon_sym_let] = ACTIONS(5828), + [anon_sym_orderby] = ACTIONS(5828), + [anon_sym_group] = ACTIONS(5828), + [anon_sym_by] = ACTIONS(5828), + [anon_sym_select] = ACTIONS(5828), + [anon_sym_as] = ACTIONS(5828), + [anon_sym_is] = ACTIONS(5828), + [anon_sym_DASH_GT] = ACTIONS(5828), + [anon_sym_with] = ACTIONS(5828), + [aux_sym_preproc_if_token3] = ACTIONS(5828), + [aux_sym_preproc_else_token1] = ACTIONS(5828), + [aux_sym_preproc_elif_token1] = ACTIONS(5828), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503344,27 +502037,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3235] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3235), [sym_preproc_endregion] = STATE(3235), [sym_preproc_line] = STATE(3235), @@ -503374,46 +502046,63 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_RBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_RPAREN] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3986), + [anon_sym_GT] = ACTIONS(3986), + [anon_sym_in] = ACTIONS(3997), + [anon_sym_where] = ACTIONS(3997), + [anon_sym_QMARK] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3986), + [anon_sym_EQ_GT] = ACTIONS(3997), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_switch] = ACTIONS(3997), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3997), + [anon_sym_or] = ACTIONS(3986), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP] = ACTIONS(3986), + [sym_op_bitwise_or] = ACTIONS(3986), + [anon_sym_CARET] = ACTIONS(3997), + [sym_op_left_shift] = ACTIONS(3997), + [sym_op_right_shift] = ACTIONS(3986), + [sym_op_unsigned_right_shift] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3986), + [anon_sym_DASH] = ACTIONS(3986), + [sym_op_divide] = ACTIONS(3986), + [sym_op_modulo] = ACTIONS(3997), + [sym_op_coalescing] = ACTIONS(3997), + [anon_sym_BANG] = ACTIONS(3986), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3997), + [anon_sym_join] = ACTIONS(3997), + [anon_sym_on] = ACTIONS(3997), + [anon_sym_equals] = ACTIONS(3997), + [anon_sym_let] = ACTIONS(3997), + [anon_sym_orderby] = ACTIONS(3997), + [anon_sym_group] = ACTIONS(3997), + [anon_sym_by] = ACTIONS(3997), + [anon_sym_select] = ACTIONS(3997), + [anon_sym_as] = ACTIONS(3997), + [anon_sym_is] = ACTIONS(3997), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3997), + [aux_sym_preproc_if_token3] = ACTIONS(3997), + [aux_sym_preproc_else_token1] = ACTIONS(3997), + [aux_sym_preproc_elif_token1] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503426,27 +502115,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3236] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3236), [sym_preproc_endregion] = STATE(3236), [sym_preproc_line] = STATE(3236), @@ -503456,46 +502124,63 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4331), + [anon_sym_join] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_let] = ACTIONS(4331), + [anon_sym_orderby] = ACTIONS(4331), + [anon_sym_group] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_select] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503508,27 +502193,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3237] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3237), [sym_preproc_endregion] = STATE(3237), [sym_preproc_line] = STATE(3237), @@ -503538,46 +502202,63 @@ 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(4774), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_RBRACK] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_QMARK] = ACTIONS(5832), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4331), + [anon_sym_join] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_let] = ACTIONS(4331), + [anon_sym_orderby] = ACTIONS(4331), + [anon_sym_group] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_select] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503590,27 +502271,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3238] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3238), [sym_preproc_endregion] = STATE(3238), [sym_preproc_line] = STATE(3238), @@ -503620,46 +502280,63 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4331), + [anon_sym_join] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_let] = ACTIONS(4331), + [anon_sym_orderby] = ACTIONS(4331), + [anon_sym_group] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_select] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503672,13 +502349,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3239] = { - [sym_attribute_list] = STATE(4961), - [sym__attribute_list] = STATE(4962), - [sym_modifier] = STATE(5152), - [sym_accessor_declaration] = STATE(4759), - [sym_identifier] = STATE(6738), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_attribute_list] = STATE(4961), [sym_preproc_region] = STATE(3239), [sym_preproc_endregion] = STATE(3239), [sym_preproc_line] = STATE(3239), @@ -503688,60 +502358,63 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3583), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4656), - [aux_sym_accessor_list_repeat1] = STATE(3227), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(5616), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(5616), - [anon_sym_static] = ACTIONS(5616), - [anon_sym_LBRACK] = ACTIONS(5618), - [anon_sym_RBRACE] = ACTIONS(5632), - [anon_sym_public] = ACTIONS(5616), - [anon_sym_private] = ACTIONS(5616), - [anon_sym_readonly] = ACTIONS(5616), - [anon_sym_abstract] = ACTIONS(5616), - [anon_sym_async] = ACTIONS(5616), - [anon_sym_const] = ACTIONS(5616), - [anon_sym_file] = ACTIONS(5622), - [anon_sym_fixed] = ACTIONS(5616), - [anon_sym_internal] = ACTIONS(5616), - [anon_sym_new] = ACTIONS(5616), - [anon_sym_override] = ACTIONS(5616), - [anon_sym_partial] = ACTIONS(5616), - [anon_sym_protected] = ACTIONS(5616), - [anon_sym_required] = ACTIONS(5616), - [anon_sym_sealed] = ACTIONS(5616), - [anon_sym_virtual] = ACTIONS(5616), - [anon_sym_volatile] = ACTIONS(5616), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [sym_accessor_get] = ACTIONS(5624), - [sym_accessor_set] = ACTIONS(5624), - [sym_accessor_add] = ACTIONS(5624), - [sym_accessor_remove] = ACTIONS(5624), - [sym_accessor_init] = ACTIONS(5624), - [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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(5626), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_QMARK] = ACTIONS(5832), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4331), + [anon_sym_join] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_let] = ACTIONS(4331), + [anon_sym_orderby] = ACTIONS(4331), + [anon_sym_group] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_select] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503754,29 +502427,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3240] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter] = STATE(7339), - [sym__parameter_array] = STATE(7338), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6403), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6018), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if_in_attribute_list] = STATE(5927), [sym_preproc_region] = STATE(3240), [sym_preproc_endregion] = STATE(3240), [sym_preproc_line] = STATE(3240), @@ -503786,44 +502436,63 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3658), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_RBRACK] = ACTIONS(5634), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5448), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(1271), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(1271), - [anon_sym_out] = ACTIONS(1271), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_this] = ACTIONS(1271), - [anon_sym_scoped] = ACTIONS(5468), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), - [aux_sym_preproc_if_token1] = ACTIONS(5454), + [anon_sym_EQ] = ACTIONS(5835), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_where] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(5837), + [anon_sym_DASH_EQ] = ACTIONS(5837), + [anon_sym_STAR_EQ] = ACTIONS(5837), + [anon_sym_SLASH_EQ] = ACTIONS(5837), + [anon_sym_PERCENT_EQ] = ACTIONS(5837), + [anon_sym_AMP_EQ] = ACTIONS(5837), + [anon_sym_CARET_EQ] = ACTIONS(5837), + [anon_sym_PIPE_EQ] = ACTIONS(5837), + [anon_sym_LT_LT_EQ] = ACTIONS(5837), + [anon_sym_GT_GT_EQ] = ACTIONS(5837), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5837), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5837), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_from] = ACTIONS(5508), + [anon_sym_join] = ACTIONS(5508), + [anon_sym_let] = ACTIONS(5508), + [anon_sym_orderby] = ACTIONS(5508), + [anon_sym_ascending] = ACTIONS(5508), + [anon_sym_descending] = ACTIONS(5508), + [anon_sym_group] = ACTIONS(5508), + [anon_sym_select] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5510), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [sym_grit_metavariable] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503845,67 +502514,63 @@ 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), - [sym__identifier_token] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym_alias] = ACTIONS(5636), - [anon_sym_global] = ACTIONS(5636), - [anon_sym_unsafe] = ACTIONS(5636), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_LPAREN] = ACTIONS(5638), - [anon_sym_event] = ACTIONS(5636), - [anon_sym_class] = ACTIONS(5636), - [anon_sym_ref] = ACTIONS(5636), - [anon_sym_struct] = ACTIONS(5636), - [anon_sym_enum] = ACTIONS(5636), - [anon_sym_interface] = ACTIONS(5636), - [anon_sym_delegate] = ACTIONS(5636), - [anon_sym_record] = ACTIONS(5636), - [anon_sym_public] = ACTIONS(5636), - [anon_sym_private] = ACTIONS(5636), - [anon_sym_readonly] = ACTIONS(5636), - [anon_sym_abstract] = ACTIONS(5636), - [anon_sym_async] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_file] = ACTIONS(5636), - [anon_sym_fixed] = ACTIONS(5636), - [anon_sym_internal] = ACTIONS(5636), - [anon_sym_new] = ACTIONS(5636), - [anon_sym_override] = ACTIONS(5636), - [anon_sym_partial] = ACTIONS(5636), - [anon_sym_protected] = ACTIONS(5636), - [anon_sym_required] = ACTIONS(5636), - [anon_sym_sealed] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_where] = ACTIONS(5636), - [anon_sym_notnull] = ACTIONS(5636), - [anon_sym_unmanaged] = ACTIONS(5636), - [anon_sym_TILDE] = ACTIONS(5638), - [anon_sym_implicit] = ACTIONS(5636), - [anon_sym_explicit] = ACTIONS(5636), - [anon_sym_scoped] = ACTIONS(5636), - [anon_sym_var] = ACTIONS(5636), - [sym_predefined_type] = ACTIONS(5636), - [anon_sym_yield] = ACTIONS(5636), - [anon_sym_when] = ACTIONS(5636), - [anon_sym_from] = ACTIONS(5636), - [anon_sym_into] = ACTIONS(5636), - [anon_sym_join] = ACTIONS(5636), - [anon_sym_on] = ACTIONS(5636), - [anon_sym_equals] = ACTIONS(5636), - [anon_sym_let] = ACTIONS(5636), - [anon_sym_orderby] = ACTIONS(5636), - [anon_sym_ascending] = ACTIONS(5636), - [anon_sym_descending] = ACTIONS(5636), - [anon_sym_group] = ACTIONS(5636), - [anon_sym_by] = ACTIONS(5636), - [anon_sym_select] = ACTIONS(5636), - [sym_grit_metavariable] = ACTIONS(5638), - [aux_sym_preproc_if_token1] = ACTIONS(5638), - [aux_sym_preproc_if_token3] = ACTIONS(5638), - [aux_sym_preproc_else_token1] = ACTIONS(5638), - [aux_sym_preproc_elif_token1] = ACTIONS(5638), + [anon_sym_SEMI] = ACTIONS(5839), + [anon_sym_LBRACK] = ACTIONS(5839), + [anon_sym_COLON] = 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_where] = ACTIONS(5839), + [anon_sym_QMARK] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_EQ_GT] = ACTIONS(5839), + [anon_sym_STAR] = ACTIONS(5839), + [anon_sym_switch] = ACTIONS(5839), + [anon_sym_DOT_DOT] = ACTIONS(5839), + [anon_sym_LT_EQ] = ACTIONS(5839), + [anon_sym_GT_EQ] = ACTIONS(5839), + [anon_sym_and] = ACTIONS(5839), + [anon_sym_or] = ACTIONS(5841), + [anon_sym_EQ_EQ] = ACTIONS(5839), + [anon_sym_BANG_EQ] = ACTIONS(5839), + [anon_sym_AMP_AMP] = ACTIONS(5839), + [anon_sym_PIPE_PIPE] = ACTIONS(5839), + [anon_sym_AMP] = ACTIONS(5841), + [sym_op_bitwise_or] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5839), + [sym_op_left_shift] = ACTIONS(5839), + [sym_op_right_shift] = ACTIONS(5841), + [sym_op_unsigned_right_shift] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [sym_op_divide] = ACTIONS(5841), + [sym_op_modulo] = ACTIONS(5839), + [sym_op_coalescing] = ACTIONS(5839), + [anon_sym_BANG] = ACTIONS(5841), + [anon_sym_PLUS_PLUS] = ACTIONS(5839), + [anon_sym_DASH_DASH] = ACTIONS(5839), + [anon_sym_from] = ACTIONS(5839), + [anon_sym_into] = ACTIONS(5839), + [anon_sym_join] = ACTIONS(5839), + [anon_sym_on] = ACTIONS(5839), + [anon_sym_equals] = ACTIONS(5839), + [anon_sym_let] = ACTIONS(5839), + [anon_sym_orderby] = ACTIONS(5839), + [anon_sym_group] = ACTIONS(5839), + [anon_sym_by] = ACTIONS(5839), + [anon_sym_select] = ACTIONS(5839), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503918,6 +502583,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3242] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3242), [sym_preproc_endregion] = STATE(3242), [sym_preproc_line] = STATE(3242), @@ -503927,67 +502607,48 @@ 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_EQ] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4534), - [anon_sym_COLON] = ACTIONS(4534), - [anon_sym_COMMA] = ACTIONS(4534), - [anon_sym_LPAREN] = ACTIONS(4534), - [anon_sym_LT] = ACTIONS(4536), - [anon_sym_GT] = ACTIONS(4536), - [anon_sym_where] = ACTIONS(4534), - [anon_sym_QMARK] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4534), - [anon_sym_DASH_DASH] = ACTIONS(4534), - [anon_sym_PLUS] = ACTIONS(4536), - [anon_sym_DASH] = ACTIONS(4536), - [anon_sym_STAR] = ACTIONS(4536), - [anon_sym_SLASH] = ACTIONS(4536), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_CARET] = ACTIONS(4536), - [anon_sym_PIPE] = ACTIONS(4536), - [anon_sym_AMP] = ACTIONS(4536), - [anon_sym_LT_LT] = ACTIONS(4536), - [anon_sym_GT_GT] = ACTIONS(4536), - [anon_sym_GT_GT_GT] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_GT_EQ] = ACTIONS(4534), - [anon_sym_LT_EQ] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4536), - [anon_sym_switch] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4534), - [anon_sym_and] = ACTIONS(4534), - [anon_sym_or] = ACTIONS(4536), - [anon_sym_PLUS_EQ] = ACTIONS(4534), - [anon_sym_DASH_EQ] = ACTIONS(4534), - [anon_sym_STAR_EQ] = ACTIONS(4534), - [anon_sym_SLASH_EQ] = ACTIONS(4534), - [anon_sym_PERCENT_EQ] = ACTIONS(4534), - [anon_sym_AMP_EQ] = ACTIONS(4534), - [anon_sym_CARET_EQ] = ACTIONS(4534), - [anon_sym_PIPE_EQ] = ACTIONS(4534), - [anon_sym_LT_LT_EQ] = ACTIONS(4534), - [anon_sym_GT_GT_EQ] = ACTIONS(4534), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4534), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4534), - [anon_sym_AMP_AMP] = ACTIONS(4534), - [anon_sym_PIPE_PIPE] = ACTIONS(4534), - [sym_op_coalescing] = ACTIONS(4536), - [anon_sym_from] = ACTIONS(4534), - [anon_sym_into] = ACTIONS(4534), - [anon_sym_join] = ACTIONS(4534), - [anon_sym_let] = ACTIONS(4534), - [anon_sym_orderby] = ACTIONS(4534), - [anon_sym_ascending] = ACTIONS(4534), - [anon_sym_descending] = ACTIONS(4534), - [anon_sym_group] = ACTIONS(4534), - [anon_sym_select] = ACTIONS(4534), - [anon_sym_as] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_DASH_GT] = ACTIONS(4534), - [anon_sym_with] = ACTIONS(4534), - [sym_grit_metavariable] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [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), @@ -504000,27 +502661,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3243] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3243), [sym_preproc_endregion] = STATE(3243), [sym_preproc_line] = STATE(3243), @@ -504030,46 +502685,48 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5743), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [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), @@ -504082,27 +502739,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3244] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3244), [sym_preproc_endregion] = STATE(3244), [sym_preproc_line] = STATE(3244), @@ -504112,46 +502763,48 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(5640), - [anon_sym_QMARK] = ACTIONS(5530), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_from] = ACTIONS(5640), - [anon_sym_join] = ACTIONS(5640), - [anon_sym_let] = ACTIONS(5640), - [anon_sym_orderby] = ACTIONS(5640), - [anon_sym_group] = ACTIONS(5640), - [anon_sym_select] = ACTIONS(5640), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(5843), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5334), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5847), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5332), + [anon_sym_join] = ACTIONS(5332), + [anon_sym_let] = ACTIONS(5332), + [anon_sym_orderby] = ACTIONS(5332), + [anon_sym_group] = ACTIONS(5332), + [anon_sym_select] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(5851), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504164,27 +502817,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3245] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3245), [sym_preproc_endregion] = STATE(3245), [sym_preproc_line] = STATE(3245), @@ -504194,161 +502826,153 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5522), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5526), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3246] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), - [sym_preproc_region] = STATE(3246), - [sym_preproc_endregion] = STATE(3246), - [sym_preproc_line] = STATE(3246), - [sym_preproc_pragma] = STATE(3246), - [sym_preproc_nullable] = STATE(3246), - [sym_preproc_error] = STATE(3246), - [sym_preproc_warning] = STATE(3246), - [sym_preproc_define] = STATE(3246), - [sym_preproc_undef] = STATE(3246), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_LBRACK] = ACTIONS(3976), + [anon_sym_COLON] = ACTIONS(3976), + [anon_sym_COMMA] = ACTIONS(3976), + [anon_sym_RBRACK] = ACTIONS(3976), + [anon_sym_LPAREN] = ACTIONS(3976), + [anon_sym_RPAREN] = ACTIONS(3976), + [anon_sym_LBRACE] = ACTIONS(3976), + [anon_sym_RBRACE] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3974), + [anon_sym_GT] = ACTIONS(3974), + [anon_sym_in] = ACTIONS(3976), + [anon_sym_where] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3974), + [anon_sym_EQ_GT] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3976), + [anon_sym_switch] = ACTIONS(3976), + [anon_sym_DOT_DOT] = ACTIONS(3976), + [anon_sym_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_EQ] = ACTIONS(3976), + [anon_sym_and] = ACTIONS(3976), + [anon_sym_or] = ACTIONS(3974), + [anon_sym_EQ_EQ] = ACTIONS(3976), + [anon_sym_BANG_EQ] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [sym_op_bitwise_or] = ACTIONS(3974), + [anon_sym_CARET] = ACTIONS(3976), + [sym_op_left_shift] = ACTIONS(3976), + [sym_op_right_shift] = ACTIONS(3974), + [sym_op_unsigned_right_shift] = ACTIONS(3976), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [sym_op_divide] = ACTIONS(3974), + [sym_op_modulo] = ACTIONS(3976), + [sym_op_coalescing] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3974), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_from] = ACTIONS(3976), + [anon_sym_join] = ACTIONS(3976), + [anon_sym_on] = ACTIONS(3976), + [anon_sym_equals] = ACTIONS(3976), + [anon_sym_let] = ACTIONS(3976), + [anon_sym_orderby] = ACTIONS(3976), + [anon_sym_group] = ACTIONS(3976), + [anon_sym_by] = ACTIONS(3976), + [anon_sym_select] = ACTIONS(3976), + [anon_sym_as] = ACTIONS(3976), + [anon_sym_is] = ACTIONS(3976), + [anon_sym_DASH_GT] = ACTIONS(3976), + [anon_sym_with] = ACTIONS(3976), + [aux_sym_preproc_if_token3] = ACTIONS(3976), + [aux_sym_preproc_else_token1] = ACTIONS(3976), + [aux_sym_preproc_elif_token1] = ACTIONS(3976), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3246] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), + [sym_preproc_region] = STATE(3246), + [sym_preproc_endregion] = STATE(3246), + [sym_preproc_line] = STATE(3246), + [sym_preproc_pragma] = STATE(3246), + [sym_preproc_nullable] = STATE(3246), + [sym_preproc_error] = STATE(3246), + [sym_preproc_warning] = STATE(3246), + [sym_preproc_define] = STATE(3246), + [sym_preproc_undef] = STATE(3246), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5729), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5743), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [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), }, [3247] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3247), [sym_preproc_endregion] = STATE(3247), [sym_preproc_line] = STATE(3247), @@ -504358,46 +502982,63 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5526), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3957), + [anon_sym_where] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3957), + [anon_sym_join] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_orderby] = ACTIONS(3957), + [anon_sym_group] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_select] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504410,27 +503051,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3248] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3248), [sym_preproc_endregion] = STATE(3248), [sym_preproc_line] = STATE(3248), @@ -504440,46 +503060,63 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5526), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5853), + [anon_sym_LBRACK] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [anon_sym_COMMA] = ACTIONS(5853), + [anon_sym_RBRACK] = ACTIONS(5853), + [anon_sym_LPAREN] = ACTIONS(5853), + [anon_sym_RPAREN] = ACTIONS(5853), + [anon_sym_RBRACE] = ACTIONS(5853), + [anon_sym_LT] = ACTIONS(5855), + [anon_sym_GT] = ACTIONS(5855), + [anon_sym_in] = ACTIONS(5855), + [anon_sym_where] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5855), + [anon_sym_DOT] = ACTIONS(5855), + [anon_sym_EQ_GT] = ACTIONS(5853), + [anon_sym_STAR] = ACTIONS(5853), + [anon_sym_switch] = ACTIONS(5853), + [anon_sym_DOT_DOT] = ACTIONS(5853), + [anon_sym_LT_EQ] = ACTIONS(5853), + [anon_sym_GT_EQ] = ACTIONS(5853), + [anon_sym_and] = ACTIONS(5853), + [anon_sym_or] = ACTIONS(5855), + [anon_sym_EQ_EQ] = ACTIONS(5853), + [anon_sym_BANG_EQ] = ACTIONS(5853), + [anon_sym_AMP_AMP] = ACTIONS(5853), + [anon_sym_PIPE_PIPE] = ACTIONS(5853), + [anon_sym_AMP] = ACTIONS(5855), + [sym_op_bitwise_or] = ACTIONS(5855), + [anon_sym_CARET] = ACTIONS(5853), + [sym_op_left_shift] = ACTIONS(5853), + [sym_op_right_shift] = ACTIONS(5855), + [sym_op_unsigned_right_shift] = ACTIONS(5853), + [anon_sym_PLUS] = ACTIONS(5855), + [anon_sym_DASH] = ACTIONS(5855), + [sym_op_divide] = ACTIONS(5855), + [sym_op_modulo] = ACTIONS(5853), + [sym_op_coalescing] = ACTIONS(5853), + [anon_sym_BANG] = ACTIONS(5855), + [anon_sym_PLUS_PLUS] = ACTIONS(5853), + [anon_sym_DASH_DASH] = ACTIONS(5853), + [anon_sym_from] = ACTIONS(5853), + [anon_sym_into] = ACTIONS(5853), + [anon_sym_join] = ACTIONS(5853), + [anon_sym_on] = ACTIONS(5853), + [anon_sym_equals] = ACTIONS(5853), + [anon_sym_let] = ACTIONS(5853), + [anon_sym_orderby] = ACTIONS(5853), + [anon_sym_group] = ACTIONS(5853), + [anon_sym_by] = ACTIONS(5853), + [anon_sym_select] = ACTIONS(5853), + [anon_sym_as] = ACTIONS(5853), + [anon_sym_is] = ACTIONS(5853), + [anon_sym_DASH_GT] = ACTIONS(5853), + [anon_sym_with] = ACTIONS(5853), + [aux_sym_preproc_if_token3] = ACTIONS(5853), + [aux_sym_preproc_else_token1] = ACTIONS(5853), + [aux_sym_preproc_elif_token1] = ACTIONS(5853), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504492,27 +503129,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3249] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3249), [sym_preproc_endregion] = STATE(3249), [sym_preproc_line] = STATE(3249), @@ -504522,46 +503153,48 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5729), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5743), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [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), @@ -504574,27 +503207,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3250] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3250), [sym_preproc_endregion] = STATE(3250), [sym_preproc_line] = STATE(3250), @@ -504604,46 +503216,63 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_COLON] = ACTIONS(4353), + [anon_sym_COMMA] = ACTIONS(4353), + [anon_sym_RBRACK] = ACTIONS(4353), + [anon_sym_LPAREN] = ACTIONS(4353), + [anon_sym_RPAREN] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4353), + [anon_sym_RBRACE] = ACTIONS(4353), + [anon_sym_LT] = ACTIONS(4351), + [anon_sym_GT] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_where] = ACTIONS(4353), + [anon_sym_QMARK] = ACTIONS(4351), + [anon_sym_DOT] = ACTIONS(4351), + [anon_sym_EQ_GT] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_switch] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4353), + [anon_sym_LT_EQ] = ACTIONS(4353), + [anon_sym_GT_EQ] = ACTIONS(4353), + [anon_sym_and] = ACTIONS(4353), + [anon_sym_or] = ACTIONS(4351), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4353), + [anon_sym_PIPE_PIPE] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4351), + [sym_op_bitwise_or] = ACTIONS(4351), + [anon_sym_CARET] = ACTIONS(4353), + [sym_op_left_shift] = ACTIONS(4353), + [sym_op_right_shift] = ACTIONS(4351), + [sym_op_unsigned_right_shift] = ACTIONS(4353), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_DASH] = ACTIONS(4351), + [sym_op_divide] = ACTIONS(4351), + [sym_op_modulo] = ACTIONS(4353), + [sym_op_coalescing] = ACTIONS(4353), + [anon_sym_BANG] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4353), + [anon_sym_DASH_DASH] = ACTIONS(4353), + [anon_sym_from] = ACTIONS(4353), + [anon_sym_join] = ACTIONS(4353), + [anon_sym_on] = ACTIONS(4353), + [anon_sym_equals] = ACTIONS(4353), + [anon_sym_let] = ACTIONS(4353), + [anon_sym_orderby] = ACTIONS(4353), + [anon_sym_group] = ACTIONS(4353), + [anon_sym_by] = ACTIONS(4353), + [anon_sym_select] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_DASH_GT] = ACTIONS(4353), + [anon_sym_with] = ACTIONS(4353), + [aux_sym_preproc_if_token3] = ACTIONS(4353), + [aux_sym_preproc_else_token1] = ACTIONS(4353), + [aux_sym_preproc_elif_token1] = ACTIONS(4353), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504656,27 +503285,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3251] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3251), [sym_preproc_endregion] = STATE(3251), [sym_preproc_line] = STATE(3251), @@ -504686,46 +503294,63 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5526), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5857), + [anon_sym_LBRACK] = ACTIONS(5857), + [anon_sym_COLON] = ACTIONS(5857), + [anon_sym_COMMA] = ACTIONS(5857), + [anon_sym_RBRACK] = ACTIONS(5857), + [anon_sym_LPAREN] = ACTIONS(5857), + [anon_sym_RPAREN] = ACTIONS(5857), + [anon_sym_RBRACE] = ACTIONS(5857), + [anon_sym_LT] = ACTIONS(5859), + [anon_sym_GT] = ACTIONS(5859), + [anon_sym_in] = ACTIONS(5859), + [anon_sym_where] = ACTIONS(5857), + [anon_sym_QMARK] = ACTIONS(5859), + [anon_sym_DOT] = ACTIONS(5859), + [anon_sym_EQ_GT] = ACTIONS(5857), + [anon_sym_STAR] = ACTIONS(5857), + [anon_sym_switch] = ACTIONS(5857), + [anon_sym_DOT_DOT] = ACTIONS(5857), + [anon_sym_LT_EQ] = ACTIONS(5857), + [anon_sym_GT_EQ] = ACTIONS(5857), + [anon_sym_and] = ACTIONS(5857), + [anon_sym_or] = ACTIONS(5859), + [anon_sym_EQ_EQ] = ACTIONS(5857), + [anon_sym_BANG_EQ] = ACTIONS(5857), + [anon_sym_AMP_AMP] = ACTIONS(5857), + [anon_sym_PIPE_PIPE] = ACTIONS(5857), + [anon_sym_AMP] = ACTIONS(5859), + [sym_op_bitwise_or] = ACTIONS(5859), + [anon_sym_CARET] = ACTIONS(5857), + [sym_op_left_shift] = ACTIONS(5857), + [sym_op_right_shift] = ACTIONS(5859), + [sym_op_unsigned_right_shift] = ACTIONS(5857), + [anon_sym_PLUS] = ACTIONS(5859), + [anon_sym_DASH] = ACTIONS(5859), + [sym_op_divide] = ACTIONS(5859), + [sym_op_modulo] = ACTIONS(5857), + [sym_op_coalescing] = ACTIONS(5857), + [anon_sym_BANG] = ACTIONS(5859), + [anon_sym_PLUS_PLUS] = ACTIONS(5857), + [anon_sym_DASH_DASH] = ACTIONS(5857), + [anon_sym_from] = ACTIONS(5857), + [anon_sym_into] = ACTIONS(5857), + [anon_sym_join] = ACTIONS(5857), + [anon_sym_on] = ACTIONS(5857), + [anon_sym_equals] = ACTIONS(5857), + [anon_sym_let] = ACTIONS(5857), + [anon_sym_orderby] = ACTIONS(5857), + [anon_sym_group] = ACTIONS(5857), + [anon_sym_by] = ACTIONS(5857), + [anon_sym_select] = ACTIONS(5857), + [anon_sym_as] = ACTIONS(5857), + [anon_sym_is] = ACTIONS(5857), + [anon_sym_DASH_GT] = ACTIONS(5857), + [anon_sym_with] = ACTIONS(5857), + [aux_sym_preproc_if_token3] = ACTIONS(5857), + [aux_sym_preproc_else_token1] = ACTIONS(5857), + [aux_sym_preproc_elif_token1] = ACTIONS(5857), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504738,27 +503363,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3252] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3252), [sym_preproc_endregion] = STATE(3252), [sym_preproc_line] = STATE(3252), @@ -504768,46 +503387,48 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(5642), - [anon_sym_QMARK] = ACTIONS(5530), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_from] = ACTIONS(5642), - [anon_sym_join] = ACTIONS(5642), - [anon_sym_let] = ACTIONS(5642), - [anon_sym_orderby] = ACTIONS(5642), - [anon_sym_group] = ACTIONS(5642), - [anon_sym_select] = ACTIONS(5642), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5743), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [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), @@ -504820,27 +503441,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3253] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3253), [sym_preproc_endregion] = STATE(3253), [sym_preproc_line] = STATE(3253), @@ -504850,46 +503450,63 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5526), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5861), + [anon_sym_LBRACK] = ACTIONS(5861), + [anon_sym_COLON] = ACTIONS(5861), + [anon_sym_COMMA] = ACTIONS(5861), + [anon_sym_RBRACK] = ACTIONS(5861), + [anon_sym_LPAREN] = ACTIONS(5861), + [anon_sym_RPAREN] = ACTIONS(5861), + [anon_sym_RBRACE] = ACTIONS(5861), + [anon_sym_LT] = ACTIONS(5863), + [anon_sym_GT] = ACTIONS(5863), + [anon_sym_in] = ACTIONS(5863), + [anon_sym_where] = ACTIONS(5861), + [anon_sym_QMARK] = ACTIONS(5863), + [anon_sym_DOT] = ACTIONS(5863), + [anon_sym_EQ_GT] = ACTIONS(5861), + [anon_sym_STAR] = ACTIONS(5861), + [anon_sym_switch] = ACTIONS(5861), + [anon_sym_DOT_DOT] = ACTIONS(5861), + [anon_sym_LT_EQ] = ACTIONS(5861), + [anon_sym_GT_EQ] = ACTIONS(5861), + [anon_sym_and] = ACTIONS(5861), + [anon_sym_or] = ACTIONS(5863), + [anon_sym_EQ_EQ] = ACTIONS(5861), + [anon_sym_BANG_EQ] = ACTIONS(5861), + [anon_sym_AMP_AMP] = ACTIONS(5861), + [anon_sym_PIPE_PIPE] = ACTIONS(5861), + [anon_sym_AMP] = ACTIONS(5863), + [sym_op_bitwise_or] = ACTIONS(5863), + [anon_sym_CARET] = ACTIONS(5861), + [sym_op_left_shift] = ACTIONS(5861), + [sym_op_right_shift] = ACTIONS(5863), + [sym_op_unsigned_right_shift] = ACTIONS(5861), + [anon_sym_PLUS] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5863), + [sym_op_divide] = ACTIONS(5863), + [sym_op_modulo] = ACTIONS(5861), + [sym_op_coalescing] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(5863), + [anon_sym_PLUS_PLUS] = ACTIONS(5861), + [anon_sym_DASH_DASH] = ACTIONS(5861), + [anon_sym_from] = ACTIONS(5861), + [anon_sym_into] = ACTIONS(5861), + [anon_sym_join] = ACTIONS(5861), + [anon_sym_on] = ACTIONS(5861), + [anon_sym_equals] = ACTIONS(5861), + [anon_sym_let] = ACTIONS(5861), + [anon_sym_orderby] = ACTIONS(5861), + [anon_sym_group] = ACTIONS(5861), + [anon_sym_by] = ACTIONS(5861), + [anon_sym_select] = ACTIONS(5861), + [anon_sym_as] = ACTIONS(5861), + [anon_sym_is] = ACTIONS(5861), + [anon_sym_DASH_GT] = ACTIONS(5861), + [anon_sym_with] = ACTIONS(5861), + [aux_sym_preproc_if_token3] = ACTIONS(5861), + [aux_sym_preproc_else_token1] = ACTIONS(5861), + [aux_sym_preproc_elif_token1] = ACTIONS(5861), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504902,27 +503519,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3254] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3254), [sym_preproc_endregion] = STATE(3254), [sym_preproc_line] = STATE(3254), @@ -504932,46 +503528,63 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_RBRACK] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4337), + [anon_sym_where] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_EQ_GT] = ACTIONS(4337), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_switch] = ACTIONS(4337), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_and] = ACTIONS(4337), + [anon_sym_or] = ACTIONS(4335), + [anon_sym_EQ_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4335), + [sym_op_bitwise_or] = ACTIONS(4335), + [anon_sym_CARET] = ACTIONS(4337), + [sym_op_left_shift] = ACTIONS(4337), + [sym_op_right_shift] = ACTIONS(4335), + [sym_op_unsigned_right_shift] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [sym_op_divide] = ACTIONS(4335), + [sym_op_modulo] = ACTIONS(4337), + [sym_op_coalescing] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_from] = ACTIONS(4337), + [anon_sym_join] = ACTIONS(4337), + [anon_sym_on] = ACTIONS(4337), + [anon_sym_equals] = ACTIONS(4337), + [anon_sym_let] = ACTIONS(4337), + [anon_sym_orderby] = ACTIONS(4337), + [anon_sym_group] = ACTIONS(4337), + [anon_sym_by] = ACTIONS(4337), + [anon_sym_select] = ACTIONS(4337), + [anon_sym_as] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4337), + [anon_sym_DASH_GT] = ACTIONS(4337), + [anon_sym_with] = ACTIONS(4337), + [aux_sym_preproc_if_token3] = ACTIONS(4337), + [aux_sym_preproc_else_token1] = ACTIONS(4337), + [aux_sym_preproc_elif_token1] = ACTIONS(4337), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504984,27 +503597,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3255] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3255), [sym_preproc_endregion] = STATE(3255), [sym_preproc_line] = STATE(3255), @@ -505014,46 +503606,63 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5865), + [anon_sym_LBRACK] = ACTIONS(5865), + [anon_sym_COLON] = ACTIONS(5865), + [anon_sym_COMMA] = ACTIONS(5865), + [anon_sym_RBRACK] = ACTIONS(5865), + [anon_sym_LPAREN] = ACTIONS(5865), + [anon_sym_RPAREN] = ACTIONS(5865), + [anon_sym_RBRACE] = ACTIONS(5865), + [anon_sym_LT] = ACTIONS(5867), + [anon_sym_GT] = ACTIONS(5867), + [anon_sym_in] = ACTIONS(5867), + [anon_sym_where] = ACTIONS(5865), + [anon_sym_QMARK] = ACTIONS(5867), + [anon_sym_DOT] = ACTIONS(5867), + [anon_sym_EQ_GT] = ACTIONS(5865), + [anon_sym_STAR] = ACTIONS(5865), + [anon_sym_switch] = ACTIONS(5865), + [anon_sym_DOT_DOT] = ACTIONS(5865), + [anon_sym_LT_EQ] = ACTIONS(5865), + [anon_sym_GT_EQ] = ACTIONS(5865), + [anon_sym_and] = ACTIONS(5865), + [anon_sym_or] = ACTIONS(5867), + [anon_sym_EQ_EQ] = ACTIONS(5865), + [anon_sym_BANG_EQ] = ACTIONS(5865), + [anon_sym_AMP_AMP] = ACTIONS(5865), + [anon_sym_PIPE_PIPE] = ACTIONS(5865), + [anon_sym_AMP] = ACTIONS(5867), + [sym_op_bitwise_or] = ACTIONS(5867), + [anon_sym_CARET] = ACTIONS(5865), + [sym_op_left_shift] = ACTIONS(5865), + [sym_op_right_shift] = ACTIONS(5867), + [sym_op_unsigned_right_shift] = ACTIONS(5865), + [anon_sym_PLUS] = ACTIONS(5867), + [anon_sym_DASH] = ACTIONS(5867), + [sym_op_divide] = ACTIONS(5867), + [sym_op_modulo] = ACTIONS(5865), + [sym_op_coalescing] = ACTIONS(5865), + [anon_sym_BANG] = ACTIONS(5867), + [anon_sym_PLUS_PLUS] = ACTIONS(5865), + [anon_sym_DASH_DASH] = ACTIONS(5865), + [anon_sym_from] = ACTIONS(5865), + [anon_sym_into] = ACTIONS(5865), + [anon_sym_join] = ACTIONS(5865), + [anon_sym_on] = ACTIONS(5865), + [anon_sym_equals] = ACTIONS(5865), + [anon_sym_let] = ACTIONS(5865), + [anon_sym_orderby] = ACTIONS(5865), + [anon_sym_group] = ACTIONS(5865), + [anon_sym_by] = ACTIONS(5865), + [anon_sym_select] = ACTIONS(5865), + [anon_sym_as] = ACTIONS(5865), + [anon_sym_is] = ACTIONS(5865), + [anon_sym_DASH_GT] = ACTIONS(5865), + [anon_sym_with] = ACTIONS(5865), + [aux_sym_preproc_if_token3] = ACTIONS(5865), + [aux_sym_preproc_else_token1] = ACTIONS(5865), + [aux_sym_preproc_elif_token1] = ACTIONS(5865), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505066,27 +503675,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3256] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3256), [sym_preproc_endregion] = STATE(3256), [sym_preproc_line] = STATE(3256), @@ -505096,46 +503684,63 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5526), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5869), + [anon_sym_LBRACK] = ACTIONS(5869), + [anon_sym_COLON] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5869), + [anon_sym_RBRACK] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5869), + [anon_sym_RPAREN] = ACTIONS(5869), + [anon_sym_RBRACE] = ACTIONS(5869), + [anon_sym_LT] = ACTIONS(5871), + [anon_sym_GT] = ACTIONS(5871), + [anon_sym_in] = ACTIONS(5871), + [anon_sym_where] = ACTIONS(5869), + [anon_sym_QMARK] = ACTIONS(5871), + [anon_sym_DOT] = ACTIONS(5871), + [anon_sym_EQ_GT] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(5869), + [anon_sym_switch] = ACTIONS(5869), + [anon_sym_DOT_DOT] = ACTIONS(5869), + [anon_sym_LT_EQ] = ACTIONS(5869), + [anon_sym_GT_EQ] = ACTIONS(5869), + [anon_sym_and] = ACTIONS(5869), + [anon_sym_or] = ACTIONS(5871), + [anon_sym_EQ_EQ] = ACTIONS(5869), + [anon_sym_BANG_EQ] = ACTIONS(5869), + [anon_sym_AMP_AMP] = ACTIONS(5869), + [anon_sym_PIPE_PIPE] = ACTIONS(5869), + [anon_sym_AMP] = ACTIONS(5871), + [sym_op_bitwise_or] = ACTIONS(5871), + [anon_sym_CARET] = ACTIONS(5869), + [sym_op_left_shift] = ACTIONS(5869), + [sym_op_right_shift] = ACTIONS(5871), + [sym_op_unsigned_right_shift] = ACTIONS(5869), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5871), + [sym_op_divide] = ACTIONS(5871), + [sym_op_modulo] = ACTIONS(5869), + [sym_op_coalescing] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [anon_sym_PLUS_PLUS] = ACTIONS(5869), + [anon_sym_DASH_DASH] = ACTIONS(5869), + [anon_sym_from] = ACTIONS(5869), + [anon_sym_into] = ACTIONS(5869), + [anon_sym_join] = ACTIONS(5869), + [anon_sym_on] = ACTIONS(5869), + [anon_sym_equals] = ACTIONS(5869), + [anon_sym_let] = ACTIONS(5869), + [anon_sym_orderby] = ACTIONS(5869), + [anon_sym_group] = ACTIONS(5869), + [anon_sym_by] = ACTIONS(5869), + [anon_sym_select] = ACTIONS(5869), + [anon_sym_as] = ACTIONS(5869), + [anon_sym_is] = ACTIONS(5869), + [anon_sym_DASH_GT] = ACTIONS(5869), + [anon_sym_with] = ACTIONS(5869), + [aux_sym_preproc_if_token3] = ACTIONS(5869), + [aux_sym_preproc_else_token1] = ACTIONS(5869), + [aux_sym_preproc_elif_token1] = ACTIONS(5869), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505148,27 +503753,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3257] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3257), [sym_preproc_endregion] = STATE(3257), [sym_preproc_line] = STATE(3257), @@ -505178,46 +503762,63 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5873), + [anon_sym_LBRACK] = ACTIONS(5873), + [anon_sym_COLON] = ACTIONS(5873), + [anon_sym_COMMA] = ACTIONS(5873), + [anon_sym_RBRACK] = ACTIONS(5873), + [anon_sym_LPAREN] = ACTIONS(5873), + [anon_sym_RPAREN] = ACTIONS(5873), + [anon_sym_RBRACE] = ACTIONS(5873), + [anon_sym_LT] = ACTIONS(5875), + [anon_sym_GT] = ACTIONS(5875), + [anon_sym_in] = ACTIONS(5875), + [anon_sym_where] = ACTIONS(5873), + [anon_sym_QMARK] = ACTIONS(5875), + [anon_sym_DOT] = ACTIONS(5875), + [anon_sym_EQ_GT] = ACTIONS(5873), + [anon_sym_STAR] = ACTIONS(5873), + [anon_sym_switch] = ACTIONS(5873), + [anon_sym_DOT_DOT] = ACTIONS(5873), + [anon_sym_LT_EQ] = ACTIONS(5873), + [anon_sym_GT_EQ] = ACTIONS(5873), + [anon_sym_and] = ACTIONS(5873), + [anon_sym_or] = ACTIONS(5875), + [anon_sym_EQ_EQ] = ACTIONS(5873), + [anon_sym_BANG_EQ] = ACTIONS(5873), + [anon_sym_AMP_AMP] = ACTIONS(5873), + [anon_sym_PIPE_PIPE] = ACTIONS(5873), + [anon_sym_AMP] = ACTIONS(5875), + [sym_op_bitwise_or] = ACTIONS(5875), + [anon_sym_CARET] = ACTIONS(5873), + [sym_op_left_shift] = ACTIONS(5873), + [sym_op_right_shift] = ACTIONS(5875), + [sym_op_unsigned_right_shift] = ACTIONS(5873), + [anon_sym_PLUS] = ACTIONS(5875), + [anon_sym_DASH] = ACTIONS(5875), + [sym_op_divide] = ACTIONS(5875), + [sym_op_modulo] = ACTIONS(5873), + [sym_op_coalescing] = ACTIONS(5873), + [anon_sym_BANG] = ACTIONS(5875), + [anon_sym_PLUS_PLUS] = ACTIONS(5873), + [anon_sym_DASH_DASH] = ACTIONS(5873), + [anon_sym_from] = ACTIONS(5873), + [anon_sym_into] = ACTIONS(5873), + [anon_sym_join] = ACTIONS(5873), + [anon_sym_on] = ACTIONS(5873), + [anon_sym_equals] = ACTIONS(5873), + [anon_sym_let] = ACTIONS(5873), + [anon_sym_orderby] = ACTIONS(5873), + [anon_sym_group] = ACTIONS(5873), + [anon_sym_by] = ACTIONS(5873), + [anon_sym_select] = ACTIONS(5873), + [anon_sym_as] = ACTIONS(5873), + [anon_sym_is] = ACTIONS(5873), + [anon_sym_DASH_GT] = ACTIONS(5873), + [anon_sym_with] = ACTIONS(5873), + [aux_sym_preproc_if_token3] = ACTIONS(5873), + [aux_sym_preproc_else_token1] = ACTIONS(5873), + [aux_sym_preproc_elif_token1] = ACTIONS(5873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505230,27 +503831,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3258] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3258), [sym_preproc_endregion] = STATE(3258), [sym_preproc_line] = STATE(3258), @@ -505260,46 +503855,48 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5526), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5232), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5232), + [anon_sym_RBRACK] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5232), + [anon_sym_RBRACE] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5877), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5729), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5743), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [aux_sym_preproc_if_token3] = ACTIONS(5232), + [aux_sym_preproc_else_token1] = ACTIONS(5232), + [aux_sym_preproc_elif_token1] = ACTIONS(5232), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505312,27 +503909,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3259] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3259), [sym_preproc_endregion] = STATE(3259), [sym_preproc_line] = STATE(3259), @@ -505342,46 +503918,63 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5879), + [anon_sym_LBRACK] = ACTIONS(5879), + [anon_sym_COLON] = ACTIONS(5879), + [anon_sym_COMMA] = ACTIONS(5879), + [anon_sym_RBRACK] = ACTIONS(5879), + [anon_sym_LPAREN] = ACTIONS(5879), + [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_RBRACE] = ACTIONS(5879), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_in] = ACTIONS(5881), + [anon_sym_where] = ACTIONS(5879), + [anon_sym_QMARK] = ACTIONS(5881), + [anon_sym_DOT] = ACTIONS(5881), + [anon_sym_EQ_GT] = ACTIONS(5879), + [anon_sym_STAR] = ACTIONS(5879), + [anon_sym_switch] = ACTIONS(5879), + [anon_sym_DOT_DOT] = ACTIONS(5879), + [anon_sym_LT_EQ] = ACTIONS(5879), + [anon_sym_GT_EQ] = ACTIONS(5879), + [anon_sym_and] = ACTIONS(5879), + [anon_sym_or] = ACTIONS(5881), + [anon_sym_EQ_EQ] = ACTIONS(5879), + [anon_sym_BANG_EQ] = ACTIONS(5879), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5879), + [anon_sym_AMP] = ACTIONS(5881), + [sym_op_bitwise_or] = ACTIONS(5881), + [anon_sym_CARET] = ACTIONS(5879), + [sym_op_left_shift] = ACTIONS(5879), + [sym_op_right_shift] = ACTIONS(5881), + [sym_op_unsigned_right_shift] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5881), + [sym_op_divide] = ACTIONS(5881), + [sym_op_modulo] = ACTIONS(5879), + [sym_op_coalescing] = ACTIONS(5879), + [anon_sym_BANG] = ACTIONS(5881), + [anon_sym_PLUS_PLUS] = ACTIONS(5879), + [anon_sym_DASH_DASH] = ACTIONS(5879), + [anon_sym_from] = ACTIONS(5879), + [anon_sym_into] = ACTIONS(5879), + [anon_sym_join] = ACTIONS(5879), + [anon_sym_on] = ACTIONS(5879), + [anon_sym_equals] = ACTIONS(5879), + [anon_sym_let] = ACTIONS(5879), + [anon_sym_orderby] = ACTIONS(5879), + [anon_sym_group] = ACTIONS(5879), + [anon_sym_by] = ACTIONS(5879), + [anon_sym_select] = ACTIONS(5879), + [anon_sym_as] = ACTIONS(5879), + [anon_sym_is] = ACTIONS(5879), + [anon_sym_DASH_GT] = ACTIONS(5879), + [anon_sym_with] = ACTIONS(5879), + [aux_sym_preproc_if_token3] = ACTIONS(5879), + [aux_sym_preproc_else_token1] = ACTIONS(5879), + [aux_sym_preproc_elif_token1] = ACTIONS(5879), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505394,27 +503987,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3260] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3260), [sym_preproc_endregion] = STATE(3260), [sym_preproc_line] = STATE(3260), @@ -505424,46 +503996,63 @@ 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(4766), + [anon_sym_SEMI] = ACTIONS(5508), + [anon_sym_EQ] = ACTIONS(5883), [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_RBRACK] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_RBRACE] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_RBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(5885), + [anon_sym_DASH_EQ] = ACTIONS(5885), + [anon_sym_STAR_EQ] = ACTIONS(5885), + [anon_sym_SLASH_EQ] = ACTIONS(5885), + [anon_sym_PERCENT_EQ] = ACTIONS(5885), + [anon_sym_AMP_EQ] = ACTIONS(5885), + [anon_sym_CARET_EQ] = ACTIONS(5885), + [anon_sym_PIPE_EQ] = ACTIONS(5885), + [anon_sym_LT_LT_EQ] = ACTIONS(5885), + [anon_sym_GT_GT_EQ] = ACTIONS(5885), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5885), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5885), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [aux_sym_preproc_if_token3] = ACTIONS(5508), + [aux_sym_preproc_else_token1] = ACTIONS(5508), + [aux_sym_preproc_elif_token1] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505476,27 +504065,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3261] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3261), [sym_preproc_endregion] = STATE(3261), [sym_preproc_line] = STATE(3261), @@ -505506,46 +504089,48 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_where] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5310), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5308), + [anon_sym_join] = ACTIONS(5308), + [anon_sym_let] = ACTIONS(5308), + [anon_sym_orderby] = ACTIONS(5308), + [anon_sym_group] = ACTIONS(5308), + [anon_sym_select] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505558,27 +504143,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3262] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3262), [sym_preproc_endregion] = STATE(3262), [sym_preproc_line] = STATE(3262), @@ -505588,46 +504152,63 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_COLON] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_RBRACK] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_RPAREN] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_QMARK] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_EQ_GT] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_switch] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_and] = ACTIONS(4403), + [anon_sym_or] = ACTIONS(4401), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_AMP] = ACTIONS(4401), + [sym_op_bitwise_or] = ACTIONS(4401), + [anon_sym_CARET] = ACTIONS(4403), + [sym_op_left_shift] = ACTIONS(4403), + [sym_op_right_shift] = ACTIONS(4401), + [sym_op_unsigned_right_shift] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [sym_op_divide] = ACTIONS(4401), + [sym_op_modulo] = ACTIONS(4403), + [sym_op_coalescing] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_from] = ACTIONS(4403), + [anon_sym_join] = ACTIONS(4403), + [anon_sym_on] = ACTIONS(4403), + [anon_sym_equals] = ACTIONS(4403), + [anon_sym_let] = ACTIONS(4403), + [anon_sym_orderby] = ACTIONS(4403), + [anon_sym_group] = ACTIONS(4403), + [anon_sym_by] = ACTIONS(4403), + [anon_sym_select] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_DASH_GT] = ACTIONS(4403), + [anon_sym_with] = ACTIONS(4403), + [aux_sym_preproc_if_token3] = ACTIONS(4403), + [aux_sym_preproc_else_token1] = ACTIONS(4403), + [aux_sym_preproc_elif_token1] = ACTIONS(4403), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505640,27 +504221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3263] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), [sym_preproc_region] = STATE(3263), [sym_preproc_endregion] = STATE(3263), [sym_preproc_line] = STATE(3263), @@ -505670,46 +504230,63 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_from] = ACTIONS(4672), - [anon_sym_join] = ACTIONS(4672), - [anon_sym_let] = ACTIONS(4672), - [anon_sym_orderby] = ACTIONS(4672), - [anon_sym_group] = ACTIONS(4672), - [anon_sym_select] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4312), + [anon_sym_LBRACK] = ACTIONS(4312), + [anon_sym_COLON] = ACTIONS(4312), + [anon_sym_COMMA] = ACTIONS(4312), + [anon_sym_RBRACK] = ACTIONS(4312), + [anon_sym_LPAREN] = ACTIONS(4312), + [anon_sym_RPAREN] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4312), + [anon_sym_RBRACE] = ACTIONS(4312), + [anon_sym_LT] = ACTIONS(4310), + [anon_sym_GT] = ACTIONS(4310), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_QMARK] = ACTIONS(4310), + [anon_sym_DOT] = ACTIONS(4310), + [anon_sym_EQ_GT] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4312), + [anon_sym_switch] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4312), + [anon_sym_LT_EQ] = ACTIONS(4312), + [anon_sym_GT_EQ] = ACTIONS(4312), + [anon_sym_and] = ACTIONS(4312), + [anon_sym_or] = ACTIONS(4310), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_AMP_AMP] = ACTIONS(4312), + [anon_sym_PIPE_PIPE] = ACTIONS(4312), + [anon_sym_AMP] = ACTIONS(4310), + [sym_op_bitwise_or] = ACTIONS(4310), + [anon_sym_CARET] = ACTIONS(4312), + [sym_op_left_shift] = ACTIONS(4312), + [sym_op_right_shift] = ACTIONS(4310), + [sym_op_unsigned_right_shift] = ACTIONS(4312), + [anon_sym_PLUS] = ACTIONS(4310), + [anon_sym_DASH] = ACTIONS(4310), + [sym_op_divide] = ACTIONS(4310), + [sym_op_modulo] = ACTIONS(4312), + [sym_op_coalescing] = ACTIONS(4312), + [anon_sym_BANG] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4312), + [anon_sym_DASH_DASH] = ACTIONS(4312), + [anon_sym_from] = 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_group] = ACTIONS(4312), + [anon_sym_by] = ACTIONS(4312), + [anon_sym_select] = ACTIONS(4312), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_DASH_GT] = ACTIONS(4312), + [anon_sym_with] = ACTIONS(4312), + [aux_sym_preproc_if_token3] = ACTIONS(4312), + [aux_sym_preproc_else_token1] = ACTIONS(4312), + [aux_sym_preproc_elif_token1] = ACTIONS(4312), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505722,27 +504299,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3264] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1559), - [sym_op_lte] = STATE(1559), - [sym_op_eq] = STATE(1556), - [sym_op_neq] = STATE(1556), - [sym_op_gt] = STATE(1559), - [sym_op_gte] = STATE(1559), - [sym_op_and] = STATE(1555), - [sym_op_or] = STATE(1553), - [sym_op_bitwise_and] = STATE(1552), - [sym_op_bitwise_or] = STATE(1551), - [sym_op_bitwise_xor] = STATE(1550), - [sym_op_left_shift] = STATE(1547), - [sym_op_right_shift] = STATE(1547), - [sym_op_unsigned_right_shift] = STATE(1547), - [sym_op_plus] = STATE(1545), - [sym_op_minus] = STATE(1545), - [sym_op_multiply] = STATE(1544), - [sym_op_divide] = STATE(1544), - [sym_op_modulo] = STATE(1544), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3264), [sym_preproc_endregion] = STATE(3264), [sym_preproc_line] = STATE(3264), @@ -505752,46 +504323,48 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_where] = ACTIONS(4708), - [anon_sym_QMARK] = ACTIONS(5530), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_from] = ACTIONS(4708), - [anon_sym_join] = ACTIONS(4708), - [anon_sym_let] = ACTIONS(4708), - [anon_sym_orderby] = ACTIONS(4708), - [anon_sym_group] = ACTIONS(4708), - [anon_sym_select] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5536), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(1365), + [aux_sym_preproc_if_token3] = ACTIONS(1365), + [aux_sym_preproc_else_token1] = ACTIONS(1365), + [aux_sym_preproc_elif_token1] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505804,27 +504377,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3265] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3265), [sym_preproc_endregion] = STATE(3265), [sym_preproc_line] = STATE(3265), @@ -505834,46 +504386,63 @@ 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(4786), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_RBRACK] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_RBRACE] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5512), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5520), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5522), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5526), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5887), + [anon_sym_LBRACK] = ACTIONS(5887), + [anon_sym_COLON] = ACTIONS(5887), + [anon_sym_COMMA] = ACTIONS(5887), + [anon_sym_RBRACK] = ACTIONS(5887), + [anon_sym_LPAREN] = ACTIONS(5887), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_RBRACE] = ACTIONS(5887), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_in] = ACTIONS(5889), + [anon_sym_where] = ACTIONS(5887), + [anon_sym_QMARK] = ACTIONS(5889), + [anon_sym_DOT] = ACTIONS(5889), + [anon_sym_EQ_GT] = ACTIONS(5887), + [anon_sym_STAR] = ACTIONS(5887), + [anon_sym_switch] = ACTIONS(5887), + [anon_sym_DOT_DOT] = ACTIONS(5887), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_and] = ACTIONS(5887), + [anon_sym_or] = ACTIONS(5889), + [anon_sym_EQ_EQ] = ACTIONS(5887), + [anon_sym_BANG_EQ] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5889), + [sym_op_bitwise_or] = ACTIONS(5889), + [anon_sym_CARET] = ACTIONS(5887), + [sym_op_left_shift] = ACTIONS(5887), + [sym_op_right_shift] = ACTIONS(5889), + [sym_op_unsigned_right_shift] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5889), + [anon_sym_DASH] = ACTIONS(5889), + [sym_op_divide] = ACTIONS(5889), + [sym_op_modulo] = ACTIONS(5887), + [sym_op_coalescing] = ACTIONS(5887), + [anon_sym_BANG] = ACTIONS(5889), + [anon_sym_PLUS_PLUS] = ACTIONS(5887), + [anon_sym_DASH_DASH] = ACTIONS(5887), + [anon_sym_from] = ACTIONS(5887), + [anon_sym_into] = ACTIONS(5887), + [anon_sym_join] = ACTIONS(5887), + [anon_sym_on] = ACTIONS(5887), + [anon_sym_equals] = ACTIONS(5887), + [anon_sym_let] = ACTIONS(5887), + [anon_sym_orderby] = ACTIONS(5887), + [anon_sym_group] = ACTIONS(5887), + [anon_sym_by] = ACTIONS(5887), + [anon_sym_select] = ACTIONS(5887), + [anon_sym_as] = ACTIONS(5887), + [anon_sym_is] = ACTIONS(5887), + [anon_sym_DASH_GT] = ACTIONS(5887), + [anon_sym_with] = ACTIONS(5887), + [aux_sym_preproc_if_token3] = ACTIONS(5887), + [aux_sym_preproc_else_token1] = ACTIONS(5887), + [aux_sym_preproc_elif_token1] = ACTIONS(5887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505886,27 +504455,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3266] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3266), [sym_preproc_endregion] = STATE(3266), [sym_preproc_line] = STATE(3266), @@ -505916,46 +504464,63 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4766), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_RBRACE] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(5891), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_COLON] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_RBRACK] = ACTIONS(5891), + [anon_sym_LPAREN] = ACTIONS(5891), + [anon_sym_RPAREN] = ACTIONS(5891), + [anon_sym_RBRACE] = ACTIONS(5891), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_in] = ACTIONS(5893), + [anon_sym_where] = ACTIONS(5891), + [anon_sym_QMARK] = ACTIONS(5893), + [anon_sym_DOT] = ACTIONS(5893), + [anon_sym_EQ_GT] = ACTIONS(5891), + [anon_sym_STAR] = ACTIONS(5891), + [anon_sym_switch] = ACTIONS(5891), + [anon_sym_DOT_DOT] = ACTIONS(5891), + [anon_sym_LT_EQ] = ACTIONS(5891), + [anon_sym_GT_EQ] = ACTIONS(5891), + [anon_sym_and] = ACTIONS(5891), + [anon_sym_or] = ACTIONS(5893), + [anon_sym_EQ_EQ] = ACTIONS(5891), + [anon_sym_BANG_EQ] = ACTIONS(5891), + [anon_sym_AMP_AMP] = ACTIONS(5891), + [anon_sym_PIPE_PIPE] = ACTIONS(5891), + [anon_sym_AMP] = ACTIONS(5893), + [sym_op_bitwise_or] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5891), + [sym_op_left_shift] = ACTIONS(5891), + [sym_op_right_shift] = ACTIONS(5893), + [sym_op_unsigned_right_shift] = ACTIONS(5891), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_DASH] = ACTIONS(5893), + [sym_op_divide] = ACTIONS(5893), + [sym_op_modulo] = ACTIONS(5891), + [sym_op_coalescing] = ACTIONS(5891), + [anon_sym_BANG] = ACTIONS(5893), + [anon_sym_PLUS_PLUS] = ACTIONS(5891), + [anon_sym_DASH_DASH] = ACTIONS(5891), + [anon_sym_from] = ACTIONS(5891), + [anon_sym_into] = ACTIONS(5891), + [anon_sym_join] = ACTIONS(5891), + [anon_sym_on] = ACTIONS(5891), + [anon_sym_equals] = ACTIONS(5891), + [anon_sym_let] = ACTIONS(5891), + [anon_sym_orderby] = ACTIONS(5891), + [anon_sym_group] = ACTIONS(5891), + [anon_sym_by] = ACTIONS(5891), + [anon_sym_select] = ACTIONS(5891), + [anon_sym_as] = ACTIONS(5891), + [anon_sym_is] = ACTIONS(5891), + [anon_sym_DASH_GT] = ACTIONS(5891), + [anon_sym_with] = ACTIONS(5891), + [aux_sym_preproc_if_token3] = ACTIONS(5891), + [aux_sym_preproc_else_token1] = ACTIONS(5891), + [aux_sym_preproc_elif_token1] = ACTIONS(5891), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505977,67 +504542,63 @@ 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_EQ] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4524), - [anon_sym_COLON] = ACTIONS(4528), - [anon_sym_COMMA] = ACTIONS(4524), - [anon_sym_LPAREN] = ACTIONS(4524), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_where] = ACTIONS(4524), - [anon_sym_QMARK] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4524), - [anon_sym_DASH_DASH] = ACTIONS(4524), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_CARET] = ACTIONS(4530), - [anon_sym_PIPE] = ACTIONS(4530), - [anon_sym_AMP] = ACTIONS(4530), - [anon_sym_LT_LT] = ACTIONS(4530), - [anon_sym_GT_GT] = ACTIONS(4530), - [anon_sym_GT_GT_GT] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4524), - [anon_sym_BANG_EQ] = ACTIONS(4524), - [anon_sym_GT_EQ] = ACTIONS(4524), - [anon_sym_LT_EQ] = ACTIONS(4524), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_switch] = ACTIONS(4524), - [anon_sym_DOT_DOT] = ACTIONS(4524), - [anon_sym_and] = ACTIONS(4524), - [anon_sym_or] = ACTIONS(4530), - [anon_sym_PLUS_EQ] = ACTIONS(4528), - [anon_sym_DASH_EQ] = ACTIONS(4528), - [anon_sym_STAR_EQ] = ACTIONS(4528), - [anon_sym_SLASH_EQ] = ACTIONS(4528), - [anon_sym_PERCENT_EQ] = ACTIONS(4528), - [anon_sym_AMP_EQ] = ACTIONS(4528), - [anon_sym_CARET_EQ] = ACTIONS(4528), - [anon_sym_PIPE_EQ] = ACTIONS(4528), - [anon_sym_LT_LT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4524), - [anon_sym_PIPE_PIPE] = ACTIONS(4524), - [sym_op_coalescing] = ACTIONS(4530), - [anon_sym_from] = ACTIONS(4524), - [anon_sym_into] = ACTIONS(4524), - [anon_sym_join] = ACTIONS(4524), - [anon_sym_let] = ACTIONS(4524), - [anon_sym_orderby] = ACTIONS(4524), - [anon_sym_ascending] = ACTIONS(4524), - [anon_sym_descending] = ACTIONS(4524), - [anon_sym_group] = ACTIONS(4524), - [anon_sym_select] = ACTIONS(4524), - [anon_sym_as] = ACTIONS(4530), - [anon_sym_is] = ACTIONS(4524), - [anon_sym_DASH_GT] = ACTIONS(4524), - [anon_sym_with] = ACTIONS(4524), - [sym_grit_metavariable] = ACTIONS(4524), + [anon_sym_SEMI] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5895), + [anon_sym_COLON] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_RBRACK] = ACTIONS(5895), + [anon_sym_LPAREN] = ACTIONS(5895), + [anon_sym_RPAREN] = ACTIONS(5895), + [anon_sym_RBRACE] = ACTIONS(5895), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_in] = ACTIONS(5897), + [anon_sym_where] = ACTIONS(5895), + [anon_sym_QMARK] = ACTIONS(5897), + [anon_sym_DOT] = ACTIONS(5897), + [anon_sym_EQ_GT] = ACTIONS(5895), + [anon_sym_STAR] = ACTIONS(5895), + [anon_sym_switch] = ACTIONS(5895), + [anon_sym_DOT_DOT] = ACTIONS(5895), + [anon_sym_LT_EQ] = ACTIONS(5895), + [anon_sym_GT_EQ] = ACTIONS(5895), + [anon_sym_and] = ACTIONS(5895), + [anon_sym_or] = ACTIONS(5897), + [anon_sym_EQ_EQ] = ACTIONS(5895), + [anon_sym_BANG_EQ] = ACTIONS(5895), + [anon_sym_AMP_AMP] = ACTIONS(5895), + [anon_sym_PIPE_PIPE] = ACTIONS(5895), + [anon_sym_AMP] = ACTIONS(5897), + [sym_op_bitwise_or] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5895), + [sym_op_left_shift] = ACTIONS(5895), + [sym_op_right_shift] = ACTIONS(5897), + [sym_op_unsigned_right_shift] = ACTIONS(5895), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [sym_op_divide] = ACTIONS(5897), + [sym_op_modulo] = ACTIONS(5895), + [sym_op_coalescing] = ACTIONS(5895), + [anon_sym_BANG] = ACTIONS(5897), + [anon_sym_PLUS_PLUS] = ACTIONS(5895), + [anon_sym_DASH_DASH] = ACTIONS(5895), + [anon_sym_from] = ACTIONS(5895), + [anon_sym_into] = ACTIONS(5895), + [anon_sym_join] = ACTIONS(5895), + [anon_sym_on] = ACTIONS(5895), + [anon_sym_equals] = ACTIONS(5895), + [anon_sym_let] = ACTIONS(5895), + [anon_sym_orderby] = ACTIONS(5895), + [anon_sym_group] = ACTIONS(5895), + [anon_sym_by] = ACTIONS(5895), + [anon_sym_select] = ACTIONS(5895), + [anon_sym_as] = ACTIONS(5895), + [anon_sym_is] = ACTIONS(5895), + [anon_sym_DASH_GT] = ACTIONS(5895), + [anon_sym_with] = ACTIONS(5895), + [aux_sym_preproc_if_token3] = ACTIONS(5895), + [aux_sym_preproc_else_token1] = ACTIONS(5895), + [aux_sym_preproc_elif_token1] = ACTIONS(5895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506050,27 +504611,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3268] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(3268), [sym_preproc_endregion] = STATE(3268), [sym_preproc_line] = STATE(3268), @@ -506080,46 +504620,63 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5548), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_COLON] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_RBRACK] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_RPAREN] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_in] = ACTIONS(4345), + [anon_sym_where] = ACTIONS(4345), + [anon_sym_QMARK] = ACTIONS(4343), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_EQ_GT] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_switch] = ACTIONS(4345), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_and] = ACTIONS(4345), + [anon_sym_or] = ACTIONS(4343), + [anon_sym_EQ_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4343), + [sym_op_bitwise_or] = ACTIONS(4343), + [anon_sym_CARET] = ACTIONS(4345), + [sym_op_left_shift] = ACTIONS(4345), + [sym_op_right_shift] = ACTIONS(4343), + [sym_op_unsigned_right_shift] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [sym_op_divide] = ACTIONS(4343), + [sym_op_modulo] = ACTIONS(4345), + [sym_op_coalescing] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_from] = ACTIONS(4345), + [anon_sym_join] = ACTIONS(4345), + [anon_sym_on] = ACTIONS(4345), + [anon_sym_equals] = ACTIONS(4345), + [anon_sym_let] = ACTIONS(4345), + [anon_sym_orderby] = ACTIONS(4345), + [anon_sym_group] = ACTIONS(4345), + [anon_sym_by] = ACTIONS(4345), + [anon_sym_select] = ACTIONS(4345), + [anon_sym_as] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4345), + [anon_sym_DASH_GT] = ACTIONS(4345), + [anon_sym_with] = ACTIONS(4345), + [aux_sym_preproc_if_token3] = ACTIONS(4345), + [aux_sym_preproc_else_token1] = ACTIONS(4345), + [aux_sym_preproc_elif_token1] = ACTIONS(4345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506132,27 +504689,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3269] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3269), [sym_preproc_endregion] = STATE(3269), [sym_preproc_line] = STATE(3269), @@ -506162,45 +504698,63 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4794), - [anon_sym_RBRACE] = ACTIONS(4794), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4316), + [anon_sym_LBRACK] = ACTIONS(4316), + [anon_sym_COLON] = ACTIONS(4316), + [anon_sym_COMMA] = ACTIONS(4316), + [anon_sym_RBRACK] = ACTIONS(4316), + [anon_sym_LPAREN] = ACTIONS(4316), + [anon_sym_RPAREN] = ACTIONS(4316), + [anon_sym_LBRACE] = ACTIONS(4316), + [anon_sym_RBRACE] = ACTIONS(4316), + [anon_sym_LT] = ACTIONS(4314), + [anon_sym_GT] = ACTIONS(4314), + [anon_sym_in] = ACTIONS(4316), + [anon_sym_where] = ACTIONS(4316), + [anon_sym_QMARK] = ACTIONS(4314), + [anon_sym_DOT] = ACTIONS(4314), + [anon_sym_EQ_GT] = ACTIONS(4316), + [anon_sym_STAR] = ACTIONS(4316), + [anon_sym_switch] = ACTIONS(4316), + [anon_sym_DOT_DOT] = ACTIONS(4316), + [anon_sym_LT_EQ] = ACTIONS(4316), + [anon_sym_GT_EQ] = ACTIONS(4316), + [anon_sym_and] = ACTIONS(4316), + [anon_sym_or] = ACTIONS(4314), + [anon_sym_EQ_EQ] = ACTIONS(4316), + [anon_sym_BANG_EQ] = ACTIONS(4316), + [anon_sym_AMP_AMP] = ACTIONS(4316), + [anon_sym_PIPE_PIPE] = ACTIONS(4316), + [anon_sym_AMP] = ACTIONS(4314), + [sym_op_bitwise_or] = ACTIONS(4314), + [anon_sym_CARET] = ACTIONS(4316), + [sym_op_left_shift] = ACTIONS(4316), + [sym_op_right_shift] = ACTIONS(4314), + [sym_op_unsigned_right_shift] = ACTIONS(4316), + [anon_sym_PLUS] = ACTIONS(4314), + [anon_sym_DASH] = ACTIONS(4314), + [sym_op_divide] = ACTIONS(4314), + [sym_op_modulo] = ACTIONS(4316), + [sym_op_coalescing] = ACTIONS(4316), + [anon_sym_BANG] = ACTIONS(4314), + [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4316), + [anon_sym_from] = 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_group] = ACTIONS(4316), + [anon_sym_by] = ACTIONS(4316), + [anon_sym_select] = ACTIONS(4316), + [anon_sym_as] = ACTIONS(4316), + [anon_sym_is] = ACTIONS(4316), + [anon_sym_DASH_GT] = ACTIONS(4316), + [anon_sym_with] = ACTIONS(4316), + [aux_sym_preproc_if_token3] = ACTIONS(4316), + [aux_sym_preproc_else_token1] = ACTIONS(4316), + [aux_sym_preproc_elif_token1] = ACTIONS(4316), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506213,27 +504767,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3270] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(3270), [sym_preproc_endregion] = STATE(3270), [sym_preproc_line] = STATE(3270), @@ -506243,45 +504776,63 @@ 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(4790), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5644), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5648), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5650), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4790), - [aux_sym_preproc_else_token1] = ACTIONS(4790), - [aux_sym_preproc_elif_token1] = ACTIONS(4790), + [anon_sym_SEMI] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5899), + [anon_sym_COLON] = ACTIONS(5899), + [anon_sym_COMMA] = ACTIONS(5899), + [anon_sym_RBRACK] = ACTIONS(5899), + [anon_sym_LPAREN] = ACTIONS(5899), + [anon_sym_RPAREN] = ACTIONS(5899), + [anon_sym_RBRACE] = ACTIONS(5899), + [anon_sym_LT] = ACTIONS(5901), + [anon_sym_GT] = ACTIONS(5901), + [anon_sym_in] = ACTIONS(5901), + [anon_sym_where] = ACTIONS(5899), + [anon_sym_QMARK] = ACTIONS(5901), + [anon_sym_DOT] = ACTIONS(5901), + [anon_sym_EQ_GT] = ACTIONS(5899), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_switch] = ACTIONS(5899), + [anon_sym_DOT_DOT] = ACTIONS(5899), + [anon_sym_LT_EQ] = ACTIONS(5899), + [anon_sym_GT_EQ] = ACTIONS(5899), + [anon_sym_and] = ACTIONS(5899), + [anon_sym_or] = ACTIONS(5901), + [anon_sym_EQ_EQ] = ACTIONS(5899), + [anon_sym_BANG_EQ] = ACTIONS(5899), + [anon_sym_AMP_AMP] = ACTIONS(5899), + [anon_sym_PIPE_PIPE] = ACTIONS(5899), + [anon_sym_AMP] = ACTIONS(5901), + [sym_op_bitwise_or] = ACTIONS(5901), + [anon_sym_CARET] = ACTIONS(5899), + [sym_op_left_shift] = ACTIONS(5899), + [sym_op_right_shift] = ACTIONS(5901), + [sym_op_unsigned_right_shift] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_DASH] = ACTIONS(5901), + [sym_op_divide] = ACTIONS(5901), + [sym_op_modulo] = ACTIONS(5899), + [sym_op_coalescing] = ACTIONS(5899), + [anon_sym_BANG] = ACTIONS(5901), + [anon_sym_PLUS_PLUS] = ACTIONS(5899), + [anon_sym_DASH_DASH] = ACTIONS(5899), + [anon_sym_from] = ACTIONS(5899), + [anon_sym_into] = ACTIONS(5899), + [anon_sym_join] = ACTIONS(5899), + [anon_sym_on] = ACTIONS(5899), + [anon_sym_equals] = ACTIONS(5899), + [anon_sym_let] = ACTIONS(5899), + [anon_sym_orderby] = ACTIONS(5899), + [anon_sym_group] = ACTIONS(5899), + [anon_sym_by] = ACTIONS(5899), + [anon_sym_select] = ACTIONS(5899), + [anon_sym_as] = ACTIONS(5899), + [anon_sym_is] = ACTIONS(5899), + [anon_sym_DASH_GT] = ACTIONS(5899), + [anon_sym_with] = ACTIONS(5899), + [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), @@ -506294,27 +504845,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3271] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3271), [sym_preproc_endregion] = STATE(3271), [sym_preproc_line] = STATE(3271), @@ -506324,45 +504869,48 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_RBRACK] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5356), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5877), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5729), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5743), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [aux_sym_preproc_if_token3] = ACTIONS(5356), + [aux_sym_preproc_else_token1] = ACTIONS(5356), + [aux_sym_preproc_elif_token1] = ACTIONS(5356), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506375,27 +504923,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3272] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3272), [sym_preproc_endregion] = STATE(3272), [sym_preproc_line] = STATE(3272), @@ -506405,45 +504947,48 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4766), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_RBRACE] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5743), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [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), @@ -506456,27 +505001,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3273] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3273), [sym_preproc_endregion] = STATE(3273), [sym_preproc_line] = STATE(3273), @@ -506486,44 +505010,63 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4708), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5668), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5903), + [anon_sym_LBRACK] = ACTIONS(5903), + [anon_sym_COLON] = ACTIONS(5903), + [anon_sym_COMMA] = ACTIONS(5903), + [anon_sym_RBRACK] = ACTIONS(5903), + [anon_sym_LPAREN] = ACTIONS(5903), + [anon_sym_RPAREN] = ACTIONS(5903), + [anon_sym_RBRACE] = ACTIONS(5903), + [anon_sym_LT] = ACTIONS(5905), + [anon_sym_GT] = ACTIONS(5905), + [anon_sym_in] = ACTIONS(5905), + [anon_sym_where] = ACTIONS(5903), + [anon_sym_QMARK] = ACTIONS(5905), + [anon_sym_DOT] = ACTIONS(5905), + [anon_sym_EQ_GT] = ACTIONS(5903), + [anon_sym_STAR] = ACTIONS(5903), + [anon_sym_switch] = ACTIONS(5903), + [anon_sym_DOT_DOT] = ACTIONS(5903), + [anon_sym_LT_EQ] = ACTIONS(5903), + [anon_sym_GT_EQ] = ACTIONS(5903), + [anon_sym_and] = ACTIONS(5903), + [anon_sym_or] = ACTIONS(5905), + [anon_sym_EQ_EQ] = ACTIONS(5903), + [anon_sym_BANG_EQ] = ACTIONS(5903), + [anon_sym_AMP_AMP] = ACTIONS(5903), + [anon_sym_PIPE_PIPE] = ACTIONS(5903), + [anon_sym_AMP] = ACTIONS(5905), + [sym_op_bitwise_or] = ACTIONS(5905), + [anon_sym_CARET] = ACTIONS(5903), + [sym_op_left_shift] = ACTIONS(5903), + [sym_op_right_shift] = ACTIONS(5905), + [sym_op_unsigned_right_shift] = ACTIONS(5903), + [anon_sym_PLUS] = ACTIONS(5905), + [anon_sym_DASH] = ACTIONS(5905), + [sym_op_divide] = ACTIONS(5905), + [sym_op_modulo] = ACTIONS(5903), + [sym_op_coalescing] = ACTIONS(5903), + [anon_sym_BANG] = ACTIONS(5905), + [anon_sym_PLUS_PLUS] = ACTIONS(5903), + [anon_sym_DASH_DASH] = ACTIONS(5903), + [anon_sym_from] = ACTIONS(5903), + [anon_sym_into] = ACTIONS(5903), + [anon_sym_join] = ACTIONS(5903), + [anon_sym_on] = ACTIONS(5903), + [anon_sym_equals] = ACTIONS(5903), + [anon_sym_let] = ACTIONS(5903), + [anon_sym_orderby] = ACTIONS(5903), + [anon_sym_group] = ACTIONS(5903), + [anon_sym_by] = ACTIONS(5903), + [anon_sym_select] = ACTIONS(5903), + [anon_sym_as] = ACTIONS(5903), + [anon_sym_is] = ACTIONS(5903), + [anon_sym_DASH_GT] = ACTIONS(5903), + [anon_sym_with] = ACTIONS(5903), + [aux_sym_preproc_if_token3] = ACTIONS(5903), + [aux_sym_preproc_else_token1] = ACTIONS(5903), + [aux_sym_preproc_elif_token1] = ACTIONS(5903), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506534,30 +505077,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(4708), }, [3274] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(3274), [sym_preproc_endregion] = STATE(3274), [sym_preproc_line] = STATE(3274), @@ -506567,45 +505088,63 @@ 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(4774), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), - [aux_sym_preproc_if_token3] = ACTIONS(4774), - [aux_sym_preproc_else_token1] = ACTIONS(4774), - [aux_sym_preproc_elif_token1] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4458), + [anon_sym_COLON] = ACTIONS(4458), + [anon_sym_COMMA] = ACTIONS(4458), + [anon_sym_RBRACK] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym_RPAREN] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4458), + [anon_sym_RBRACE] = ACTIONS(4458), + [anon_sym_LT] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4456), + [anon_sym_in] = ACTIONS(4458), + [anon_sym_where] = ACTIONS(4458), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_DOT] = ACTIONS(4456), + [anon_sym_EQ_GT] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_switch] = ACTIONS(4458), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4456), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_AMP_AMP] = ACTIONS(4458), + [anon_sym_PIPE_PIPE] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [sym_op_bitwise_or] = ACTIONS(4456), + [anon_sym_CARET] = ACTIONS(4458), + [sym_op_left_shift] = ACTIONS(4458), + [sym_op_right_shift] = ACTIONS(4456), + [sym_op_unsigned_right_shift] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [sym_op_divide] = ACTIONS(4456), + [sym_op_modulo] = ACTIONS(4458), + [sym_op_coalescing] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4456), + [anon_sym_PLUS_PLUS] = ACTIONS(4458), + [anon_sym_DASH_DASH] = ACTIONS(4458), + [anon_sym_from] = ACTIONS(4458), + [anon_sym_join] = ACTIONS(4458), + [anon_sym_on] = ACTIONS(4458), + [anon_sym_equals] = ACTIONS(4458), + [anon_sym_let] = ACTIONS(4458), + [anon_sym_orderby] = ACTIONS(4458), + [anon_sym_group] = ACTIONS(4458), + [anon_sym_by] = ACTIONS(4458), + [anon_sym_select] = ACTIONS(4458), + [anon_sym_as] = ACTIONS(4458), + [anon_sym_is] = ACTIONS(4458), + [anon_sym_DASH_GT] = ACTIONS(4458), + [anon_sym_with] = ACTIONS(4458), + [aux_sym_preproc_if_token3] = ACTIONS(4458), + [aux_sym_preproc_else_token1] = ACTIONS(4458), + [aux_sym_preproc_elif_token1] = ACTIONS(4458), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506618,27 +505157,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3275] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3275), [sym_preproc_endregion] = STATE(3275), [sym_preproc_line] = STATE(3275), @@ -506648,44 +505181,48 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5668), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [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), @@ -506696,30 +505233,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(4748), }, [3276] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3276), [sym_preproc_endregion] = STATE(3276), [sym_preproc_line] = STATE(3276), @@ -506729,44 +505244,63 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4782), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5668), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [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_where] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(5338), + [anon_sym_DOT] = ACTIONS(5338), + [anon_sym_EQ_GT] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_switch] = ACTIONS(5336), + [anon_sym_DOT_DOT] = ACTIONS(5336), + [anon_sym_LT_EQ] = ACTIONS(5336), + [anon_sym_GT_EQ] = ACTIONS(5336), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5336), + [anon_sym_BANG_EQ] = ACTIONS(5336), + [anon_sym_AMP_AMP] = ACTIONS(5336), + [anon_sym_PIPE_PIPE] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(5338), + [sym_op_bitwise_or] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5336), + [sym_op_left_shift] = ACTIONS(5336), + [sym_op_right_shift] = ACTIONS(5338), + [sym_op_unsigned_right_shift] = ACTIONS(5336), + [anon_sym_PLUS] = ACTIONS(5338), + [anon_sym_DASH] = ACTIONS(5338), + [sym_op_divide] = ACTIONS(5338), + [sym_op_modulo] = ACTIONS(5336), + [sym_op_coalescing] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(5338), + [anon_sym_PLUS_PLUS] = ACTIONS(5336), + [anon_sym_DASH_DASH] = ACTIONS(5336), + [anon_sym_from] = ACTIONS(5336), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_join] = ACTIONS(5336), + [anon_sym_on] = ACTIONS(5336), + [anon_sym_equals] = ACTIONS(5336), + [anon_sym_let] = ACTIONS(5336), + [anon_sym_orderby] = ACTIONS(5336), + [anon_sym_group] = ACTIONS(5336), + [anon_sym_by] = ACTIONS(5336), + [anon_sym_select] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506777,30 +505311,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4782), }, [3277] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3277), [sym_preproc_endregion] = STATE(3277), [sym_preproc_line] = STATE(3277), @@ -506810,44 +505337,48 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_where] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(1365), + [anon_sym_join] = ACTIONS(1365), + [anon_sym_let] = ACTIONS(1365), + [anon_sym_orderby] = ACTIONS(1365), + [anon_sym_group] = ACTIONS(1365), + [anon_sym_select] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506858,30 +505389,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(4774), }, [3278] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3278), [sym_preproc_endregion] = STATE(3278), [sym_preproc_line] = STATE(3278), @@ -506891,44 +505400,63 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(5907), + [anon_sym_LBRACK] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5907), + [anon_sym_COMMA] = ACTIONS(5907), + [anon_sym_RBRACK] = ACTIONS(5907), + [anon_sym_LPAREN] = ACTIONS(5907), + [anon_sym_RPAREN] = ACTIONS(5907), + [anon_sym_RBRACE] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5909), + [anon_sym_GT] = ACTIONS(5909), + [anon_sym_in] = ACTIONS(5909), + [anon_sym_where] = ACTIONS(5907), + [anon_sym_QMARK] = ACTIONS(5909), + [anon_sym_DOT] = ACTIONS(5909), + [anon_sym_EQ_GT] = ACTIONS(5907), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_switch] = ACTIONS(5907), + [anon_sym_DOT_DOT] = ACTIONS(5907), + [anon_sym_LT_EQ] = ACTIONS(5907), + [anon_sym_GT_EQ] = ACTIONS(5907), + [anon_sym_and] = ACTIONS(5907), + [anon_sym_or] = ACTIONS(5909), + [anon_sym_EQ_EQ] = ACTIONS(5907), + [anon_sym_BANG_EQ] = ACTIONS(5907), + [anon_sym_AMP_AMP] = ACTIONS(5907), + [anon_sym_PIPE_PIPE] = ACTIONS(5907), + [anon_sym_AMP] = ACTIONS(5909), + [sym_op_bitwise_or] = ACTIONS(5909), + [anon_sym_CARET] = ACTIONS(5907), + [sym_op_left_shift] = ACTIONS(5907), + [sym_op_right_shift] = ACTIONS(5909), + [sym_op_unsigned_right_shift] = ACTIONS(5907), + [anon_sym_PLUS] = ACTIONS(5909), + [anon_sym_DASH] = ACTIONS(5909), + [sym_op_divide] = ACTIONS(5909), + [sym_op_modulo] = ACTIONS(5907), + [sym_op_coalescing] = ACTIONS(5907), + [anon_sym_BANG] = ACTIONS(5909), + [anon_sym_PLUS_PLUS] = ACTIONS(5907), + [anon_sym_DASH_DASH] = ACTIONS(5907), + [anon_sym_from] = ACTIONS(5907), + [anon_sym_into] = ACTIONS(5907), + [anon_sym_join] = ACTIONS(5907), + [anon_sym_on] = ACTIONS(5907), + [anon_sym_equals] = ACTIONS(5907), + [anon_sym_let] = ACTIONS(5907), + [anon_sym_orderby] = ACTIONS(5907), + [anon_sym_group] = ACTIONS(5907), + [anon_sym_by] = ACTIONS(5907), + [anon_sym_select] = ACTIONS(5907), + [anon_sym_as] = ACTIONS(5907), + [anon_sym_is] = ACTIONS(5907), + [anon_sym_DASH_GT] = ACTIONS(5907), + [anon_sym_with] = ACTIONS(5907), + [aux_sym_preproc_if_token3] = ACTIONS(5907), + [aux_sym_preproc_else_token1] = ACTIONS(5907), + [aux_sym_preproc_elif_token1] = ACTIONS(5907), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506939,30 +505467,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(1435), }, [3279] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3279), [sym_preproc_endregion] = STATE(3279), [sym_preproc_line] = STATE(3279), @@ -506972,45 +505478,63 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5911), + [anon_sym_LBRACK] = ACTIONS(5911), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_COMMA] = ACTIONS(5911), + [anon_sym_RBRACK] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5911), + [anon_sym_RPAREN] = ACTIONS(5911), + [anon_sym_RBRACE] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5913), + [anon_sym_GT] = ACTIONS(5913), + [anon_sym_in] = ACTIONS(5913), + [anon_sym_where] = ACTIONS(5911), + [anon_sym_QMARK] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_EQ_GT] = ACTIONS(5911), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_switch] = ACTIONS(5911), + [anon_sym_DOT_DOT] = ACTIONS(5911), + [anon_sym_LT_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5911), + [anon_sym_and] = ACTIONS(5911), + [anon_sym_or] = ACTIONS(5913), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_AMP_AMP] = ACTIONS(5911), + [anon_sym_PIPE_PIPE] = ACTIONS(5911), + [anon_sym_AMP] = ACTIONS(5913), + [sym_op_bitwise_or] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(5911), + [sym_op_left_shift] = ACTIONS(5911), + [sym_op_right_shift] = ACTIONS(5913), + [sym_op_unsigned_right_shift] = ACTIONS(5911), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_DASH] = ACTIONS(5913), + [sym_op_divide] = ACTIONS(5913), + [sym_op_modulo] = ACTIONS(5911), + [sym_op_coalescing] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(5913), + [anon_sym_PLUS_PLUS] = ACTIONS(5911), + [anon_sym_DASH_DASH] = 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_group] = ACTIONS(5911), + [anon_sym_by] = ACTIONS(5911), + [anon_sym_select] = ACTIONS(5911), + [anon_sym_as] = ACTIONS(5911), + [anon_sym_is] = ACTIONS(5911), + [anon_sym_DASH_GT] = ACTIONS(5911), + [anon_sym_with] = ACTIONS(5911), + [aux_sym_preproc_if_token3] = ACTIONS(5911), + [aux_sym_preproc_else_token1] = ACTIONS(5911), + [aux_sym_preproc_elif_token1] = ACTIONS(5911), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507023,27 +505547,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3280] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3280), [sym_preproc_endregion] = STATE(3280), [sym_preproc_line] = STATE(3280), @@ -507053,45 +505571,48 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_RBRACK] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5877), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5729), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5743), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [aux_sym_preproc_if_token3] = ACTIONS(5332), + [aux_sym_preproc_else_token1] = ACTIONS(5332), + [aux_sym_preproc_elif_token1] = ACTIONS(5332), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507104,27 +505625,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3281] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3281), [sym_preproc_endregion] = STATE(3281), [sym_preproc_line] = STATE(3281), @@ -507134,45 +505634,63 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_COLON] = ACTIONS(3197), + [anon_sym_COMMA] = ACTIONS(3197), + [anon_sym_RBRACK] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_RPAREN] = ACTIONS(3197), + [anon_sym_RBRACE] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_where] = ACTIONS(3197), + [anon_sym_QMARK] = ACTIONS(3195), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_EQ_GT] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_switch] = ACTIONS(3197), + [anon_sym_DOT_DOT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [sym_op_bitwise_or] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3197), + [sym_op_left_shift] = ACTIONS(3197), + [sym_op_right_shift] = ACTIONS(3195), + [sym_op_unsigned_right_shift] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [sym_op_divide] = ACTIONS(3195), + [sym_op_modulo] = ACTIONS(3197), + [sym_op_coalescing] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [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_group] = ACTIONS(3197), + [anon_sym_by] = ACTIONS(3197), + [anon_sym_select] = ACTIONS(3197), + [anon_sym_as] = ACTIONS(3197), + [anon_sym_is] = ACTIONS(3197), + [anon_sym_DASH_GT] = ACTIONS(3197), + [anon_sym_with] = 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), @@ -507185,27 +505703,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3282] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3282), [sym_preproc_endregion] = STATE(3282), [sym_preproc_line] = STATE(3282), @@ -507215,45 +505712,63 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_COLON] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_RBRACK] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_RPAREN] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_where] = ACTIONS(4349), + [anon_sym_QMARK] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_EQ_GT] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_switch] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_and] = ACTIONS(4349), + [anon_sym_or] = ACTIONS(4347), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(4347), + [sym_op_bitwise_or] = ACTIONS(4347), + [anon_sym_CARET] = ACTIONS(4349), + [sym_op_left_shift] = ACTIONS(4349), + [sym_op_right_shift] = ACTIONS(4347), + [sym_op_unsigned_right_shift] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [sym_op_divide] = ACTIONS(4347), + [sym_op_modulo] = ACTIONS(4349), + [sym_op_coalescing] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_from] = ACTIONS(4349), + [anon_sym_join] = ACTIONS(4349), + [anon_sym_on] = ACTIONS(4349), + [anon_sym_equals] = ACTIONS(4349), + [anon_sym_let] = ACTIONS(4349), + [anon_sym_orderby] = ACTIONS(4349), + [anon_sym_group] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(4349), + [anon_sym_select] = ACTIONS(4349), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_DASH_GT] = ACTIONS(4349), + [anon_sym_with] = ACTIONS(4349), + [aux_sym_preproc_if_token3] = ACTIONS(4349), + [aux_sym_preproc_else_token1] = ACTIONS(4349), + [aux_sym_preproc_elif_token1] = ACTIONS(4349), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507266,27 +505781,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3283] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3283), [sym_preproc_endregion] = STATE(3283), [sym_preproc_line] = STATE(3283), @@ -507296,45 +505805,48 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5676), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5296), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_RBRACK] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5296), + [anon_sym_RBRACE] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5877), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5729), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5743), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [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), @@ -507347,27 +505859,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3284] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3284), [sym_preproc_endregion] = STATE(3284), [sym_preproc_line] = STATE(3284), @@ -507377,44 +505883,48 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4766), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(5364), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_RBRACK] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5364), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5877), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5729), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5743), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [aux_sym_preproc_if_token3] = ACTIONS(5364), + [aux_sym_preproc_else_token1] = ACTIONS(5364), + [aux_sym_preproc_elif_token1] = ACTIONS(5364), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507425,30 +505935,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(4766), }, [3285] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3285), [sym_preproc_endregion] = STATE(3285), [sym_preproc_line] = STATE(3285), @@ -507458,45 +505946,63 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5676), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5915), + [anon_sym_LBRACK] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_COMMA] = ACTIONS(5915), + [anon_sym_RBRACK] = ACTIONS(5915), + [anon_sym_LPAREN] = ACTIONS(5915), + [anon_sym_RPAREN] = ACTIONS(5915), + [anon_sym_RBRACE] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5917), + [anon_sym_GT] = ACTIONS(5917), + [anon_sym_in] = ACTIONS(5917), + [anon_sym_where] = ACTIONS(5915), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5917), + [anon_sym_EQ_GT] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_switch] = ACTIONS(5915), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_LT_EQ] = ACTIONS(5915), + [anon_sym_GT_EQ] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5915), + [anon_sym_or] = ACTIONS(5917), + [anon_sym_EQ_EQ] = ACTIONS(5915), + [anon_sym_BANG_EQ] = ACTIONS(5915), + [anon_sym_AMP_AMP] = ACTIONS(5915), + [anon_sym_PIPE_PIPE] = ACTIONS(5915), + [anon_sym_AMP] = ACTIONS(5917), + [sym_op_bitwise_or] = ACTIONS(5917), + [anon_sym_CARET] = ACTIONS(5915), + [sym_op_left_shift] = ACTIONS(5915), + [sym_op_right_shift] = ACTIONS(5917), + [sym_op_unsigned_right_shift] = ACTIONS(5915), + [anon_sym_PLUS] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5917), + [sym_op_divide] = ACTIONS(5917), + [sym_op_modulo] = ACTIONS(5915), + [sym_op_coalescing] = ACTIONS(5915), + [anon_sym_BANG] = ACTIONS(5917), + [anon_sym_PLUS_PLUS] = ACTIONS(5915), + [anon_sym_DASH_DASH] = ACTIONS(5915), + [anon_sym_from] = ACTIONS(5915), + [anon_sym_into] = ACTIONS(5915), + [anon_sym_join] = ACTIONS(5915), + [anon_sym_on] = ACTIONS(5915), + [anon_sym_equals] = ACTIONS(5915), + [anon_sym_let] = ACTIONS(5915), + [anon_sym_orderby] = ACTIONS(5915), + [anon_sym_group] = ACTIONS(5915), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_select] = ACTIONS(5915), + [anon_sym_as] = ACTIONS(5915), + [anon_sym_is] = ACTIONS(5915), + [anon_sym_DASH_GT] = ACTIONS(5915), + [anon_sym_with] = ACTIONS(5915), + [aux_sym_preproc_if_token3] = ACTIONS(5915), + [aux_sym_preproc_else_token1] = ACTIONS(5915), + [aux_sym_preproc_elif_token1] = ACTIONS(5915), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507509,27 +506015,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3286] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3286), [sym_preproc_endregion] = STATE(3286), [sym_preproc_line] = STATE(3286), @@ -507539,45 +506039,48 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_RBRACE] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5678), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5680), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5676), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5336), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_RBRACK] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5336), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5877), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5729), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5743), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [aux_sym_preproc_if_token3] = ACTIONS(5336), + [aux_sym_preproc_else_token1] = ACTIONS(5336), + [aux_sym_preproc_elif_token1] = ACTIONS(5336), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507590,27 +506093,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3287] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(3287), [sym_preproc_endregion] = STATE(3287), [sym_preproc_line] = STATE(3287), @@ -507620,45 +506102,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3287), [sym_preproc_define] = STATE(3287), [sym_preproc_undef] = STATE(3287), - [anon_sym_SEMI] = ACTIONS(4794), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), - [aux_sym_preproc_if_token3] = ACTIONS(4794), - [aux_sym_preproc_else_token1] = ACTIONS(4794), - [aux_sym_preproc_elif_token1] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(5919), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_COLON] = ACTIONS(5919), + [anon_sym_COMMA] = ACTIONS(5919), + [anon_sym_RBRACK] = ACTIONS(5919), + [anon_sym_LPAREN] = ACTIONS(5919), + [anon_sym_RPAREN] = ACTIONS(5919), + [anon_sym_RBRACE] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5921), + [anon_sym_GT] = ACTIONS(5921), + [anon_sym_in] = ACTIONS(5921), + [anon_sym_where] = ACTIONS(5919), + [anon_sym_QMARK] = ACTIONS(5921), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_EQ_GT] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_switch] = ACTIONS(5919), + [anon_sym_DOT_DOT] = ACTIONS(5919), + [anon_sym_LT_EQ] = ACTIONS(5919), + [anon_sym_GT_EQ] = ACTIONS(5919), + [anon_sym_and] = ACTIONS(5919), + [anon_sym_or] = ACTIONS(5921), + [anon_sym_EQ_EQ] = ACTIONS(5919), + [anon_sym_BANG_EQ] = ACTIONS(5919), + [anon_sym_AMP_AMP] = ACTIONS(5919), + [anon_sym_PIPE_PIPE] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5921), + [sym_op_bitwise_or] = ACTIONS(5921), + [anon_sym_CARET] = ACTIONS(5919), + [sym_op_left_shift] = ACTIONS(5919), + [sym_op_right_shift] = ACTIONS(5921), + [sym_op_unsigned_right_shift] = ACTIONS(5919), + [anon_sym_PLUS] = ACTIONS(5921), + [anon_sym_DASH] = ACTIONS(5921), + [sym_op_divide] = ACTIONS(5921), + [sym_op_modulo] = ACTIONS(5919), + [sym_op_coalescing] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5921), + [anon_sym_PLUS_PLUS] = ACTIONS(5919), + [anon_sym_DASH_DASH] = ACTIONS(5919), + [anon_sym_from] = ACTIONS(5919), + [anon_sym_into] = ACTIONS(5919), + [anon_sym_join] = ACTIONS(5919), + [anon_sym_on] = ACTIONS(5919), + [anon_sym_equals] = ACTIONS(5919), + [anon_sym_let] = ACTIONS(5919), + [anon_sym_orderby] = ACTIONS(5919), + [anon_sym_group] = ACTIONS(5919), + [anon_sym_by] = ACTIONS(5919), + [anon_sym_select] = ACTIONS(5919), + [anon_sym_as] = ACTIONS(5919), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(5919), + [anon_sym_with] = ACTIONS(5919), + [aux_sym_preproc_if_token3] = ACTIONS(5919), + [aux_sym_preproc_else_token1] = ACTIONS(5919), + [aux_sym_preproc_elif_token1] = ACTIONS(5919), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507680,66 +506180,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3288), [sym_preproc_define] = STATE(3288), [sym_preproc_undef] = STATE(3288), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4972), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4972), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_where] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_PLUS_PLUS] = ACTIONS(4972), - [anon_sym_DASH_DASH] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4975), - [anon_sym_LT_LT] = ACTIONS(4975), - [anon_sym_GT_GT] = ACTIONS(4975), - [anon_sym_GT_GT_GT] = ACTIONS(4975), - [anon_sym_EQ_EQ] = ACTIONS(4972), - [anon_sym_BANG_EQ] = ACTIONS(4972), - [anon_sym_GT_EQ] = ACTIONS(4972), - [anon_sym_LT_EQ] = ACTIONS(4972), - [anon_sym_DOT] = ACTIONS(4975), - [anon_sym_switch] = ACTIONS(4972), - [anon_sym_DOT_DOT] = ACTIONS(4972), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4978), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4972), - [anon_sym_PIPE_PIPE] = ACTIONS(4972), - [sym_op_coalescing] = ACTIONS(4975), - [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(4975), - [anon_sym_is] = ACTIONS(4972), - [anon_sym_DASH_GT] = ACTIONS(4972), - [anon_sym_with] = ACTIONS(4972), - [sym_grit_metavariable] = ACTIONS(4970), + [anon_sym_SEMI] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_COMMA] = ACTIONS(5923), + [anon_sym_RBRACK] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(5923), + [anon_sym_RPAREN] = ACTIONS(5923), + [anon_sym_RBRACE] = ACTIONS(5923), + [anon_sym_LT] = ACTIONS(5925), + [anon_sym_GT] = ACTIONS(5925), + [anon_sym_in] = ACTIONS(5925), + [anon_sym_where] = ACTIONS(5923), + [anon_sym_QMARK] = ACTIONS(5925), + [anon_sym_DOT] = ACTIONS(5925), + [anon_sym_EQ_GT] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_switch] = ACTIONS(5923), + [anon_sym_DOT_DOT] = ACTIONS(5923), + [anon_sym_LT_EQ] = ACTIONS(5923), + [anon_sym_GT_EQ] = ACTIONS(5923), + [anon_sym_and] = ACTIONS(5923), + [anon_sym_or] = ACTIONS(5925), + [anon_sym_EQ_EQ] = ACTIONS(5923), + [anon_sym_BANG_EQ] = ACTIONS(5923), + [anon_sym_AMP_AMP] = ACTIONS(5923), + [anon_sym_PIPE_PIPE] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5925), + [sym_op_bitwise_or] = ACTIONS(5925), + [anon_sym_CARET] = ACTIONS(5923), + [sym_op_left_shift] = ACTIONS(5923), + [sym_op_right_shift] = ACTIONS(5925), + [sym_op_unsigned_right_shift] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5925), + [sym_op_divide] = ACTIONS(5925), + [sym_op_modulo] = ACTIONS(5923), + [sym_op_coalescing] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5925), + [anon_sym_PLUS_PLUS] = ACTIONS(5923), + [anon_sym_DASH_DASH] = ACTIONS(5923), + [anon_sym_from] = ACTIONS(5923), + [anon_sym_into] = ACTIONS(5923), + [anon_sym_join] = ACTIONS(5923), + [anon_sym_on] = ACTIONS(5923), + [anon_sym_equals] = ACTIONS(5923), + [anon_sym_let] = ACTIONS(5923), + [anon_sym_orderby] = ACTIONS(5923), + [anon_sym_group] = ACTIONS(5923), + [anon_sym_by] = ACTIONS(5923), + [anon_sym_select] = ACTIONS(5923), + [anon_sym_as] = ACTIONS(5923), + [anon_sym_is] = ACTIONS(5923), + [anon_sym_DASH_GT] = ACTIONS(5923), + [anon_sym_with] = ACTIONS(5923), + [aux_sym_preproc_if_token3] = ACTIONS(5923), + [aux_sym_preproc_else_token1] = ACTIONS(5923), + [aux_sym_preproc_elif_token1] = ACTIONS(5923), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507752,27 +506249,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3289] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3289), [sym_preproc_endregion] = STATE(3289), [sym_preproc_line] = STATE(3289), @@ -507782,45 +506258,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3289), [sym_preproc_define] = STATE(3289), [sym_preproc_undef] = STATE(3289), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5676), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5927), + [anon_sym_LBRACK] = ACTIONS(5927), + [anon_sym_COLON] = ACTIONS(5927), + [anon_sym_COMMA] = ACTIONS(5927), + [anon_sym_RBRACK] = ACTIONS(5927), + [anon_sym_LPAREN] = ACTIONS(5927), + [anon_sym_RPAREN] = ACTIONS(5927), + [anon_sym_RBRACE] = ACTIONS(5927), + [anon_sym_LT] = ACTIONS(5929), + [anon_sym_GT] = ACTIONS(5929), + [anon_sym_in] = ACTIONS(5929), + [anon_sym_where] = ACTIONS(5927), + [anon_sym_QMARK] = ACTIONS(5929), + [anon_sym_DOT] = ACTIONS(5929), + [anon_sym_EQ_GT] = ACTIONS(5927), + [anon_sym_STAR] = ACTIONS(5927), + [anon_sym_switch] = ACTIONS(5927), + [anon_sym_DOT_DOT] = ACTIONS(5927), + [anon_sym_LT_EQ] = ACTIONS(5927), + [anon_sym_GT_EQ] = ACTIONS(5927), + [anon_sym_and] = ACTIONS(5927), + [anon_sym_or] = ACTIONS(5929), + [anon_sym_EQ_EQ] = ACTIONS(5927), + [anon_sym_BANG_EQ] = ACTIONS(5927), + [anon_sym_AMP_AMP] = ACTIONS(5927), + [anon_sym_PIPE_PIPE] = ACTIONS(5927), + [anon_sym_AMP] = ACTIONS(5929), + [sym_op_bitwise_or] = ACTIONS(5929), + [anon_sym_CARET] = ACTIONS(5927), + [sym_op_left_shift] = ACTIONS(5927), + [sym_op_right_shift] = ACTIONS(5929), + [sym_op_unsigned_right_shift] = ACTIONS(5927), + [anon_sym_PLUS] = ACTIONS(5929), + [anon_sym_DASH] = ACTIONS(5929), + [sym_op_divide] = ACTIONS(5929), + [sym_op_modulo] = ACTIONS(5927), + [sym_op_coalescing] = ACTIONS(5927), + [anon_sym_BANG] = ACTIONS(5929), + [anon_sym_PLUS_PLUS] = ACTIONS(5927), + [anon_sym_DASH_DASH] = ACTIONS(5927), + [anon_sym_from] = ACTIONS(5927), + [anon_sym_into] = ACTIONS(5927), + [anon_sym_join] = ACTIONS(5927), + [anon_sym_on] = ACTIONS(5927), + [anon_sym_equals] = ACTIONS(5927), + [anon_sym_let] = ACTIONS(5927), + [anon_sym_orderby] = ACTIONS(5927), + [anon_sym_group] = ACTIONS(5927), + [anon_sym_by] = ACTIONS(5927), + [anon_sym_select] = ACTIONS(5927), + [anon_sym_as] = ACTIONS(5927), + [anon_sym_is] = ACTIONS(5927), + [anon_sym_DASH_GT] = ACTIONS(5927), + [anon_sym_with] = ACTIONS(5927), + [aux_sym_preproc_if_token3] = ACTIONS(5927), + [aux_sym_preproc_else_token1] = ACTIONS(5927), + [aux_sym_preproc_elif_token1] = ACTIONS(5927), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507833,27 +506327,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3290] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3290), [sym_preproc_endregion] = STATE(3290), [sym_preproc_line] = STATE(3290), @@ -507863,44 +506336,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3290), [sym_preproc_define] = STATE(3290), [sym_preproc_undef] = STATE(3290), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_COLON] = ACTIONS(4282), + [anon_sym_COMMA] = ACTIONS(4282), + [anon_sym_RBRACK] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_RPAREN] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4282), + [anon_sym_LT] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4280), + [anon_sym_in] = ACTIONS(4282), + [anon_sym_where] = ACTIONS(4282), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_DOT] = ACTIONS(4280), + [anon_sym_EQ_GT] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_switch] = ACTIONS(4282), + [anon_sym_DOT_DOT] = ACTIONS(4282), + [anon_sym_LT_EQ] = ACTIONS(4282), + [anon_sym_GT_EQ] = ACTIONS(4282), + [anon_sym_and] = ACTIONS(4282), + [anon_sym_or] = ACTIONS(4280), + [anon_sym_EQ_EQ] = ACTIONS(4282), + [anon_sym_BANG_EQ] = ACTIONS(4282), + [anon_sym_AMP_AMP] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4282), + [anon_sym_AMP] = ACTIONS(4280), + [sym_op_bitwise_or] = ACTIONS(4280), + [anon_sym_CARET] = ACTIONS(4282), + [sym_op_left_shift] = ACTIONS(4282), + [sym_op_right_shift] = ACTIONS(4280), + [sym_op_unsigned_right_shift] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + [sym_op_divide] = ACTIONS(4280), + [sym_op_modulo] = ACTIONS(4282), + [sym_op_coalescing] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [anon_sym_from] = ACTIONS(4282), + [anon_sym_join] = ACTIONS(4282), + [anon_sym_on] = ACTIONS(4282), + [anon_sym_equals] = ACTIONS(4282), + [anon_sym_let] = ACTIONS(4282), + [anon_sym_orderby] = ACTIONS(4282), + [anon_sym_group] = ACTIONS(4282), + [anon_sym_by] = ACTIONS(4282), + [anon_sym_select] = ACTIONS(4282), + [anon_sym_as] = ACTIONS(4282), + [anon_sym_is] = ACTIONS(4282), + [anon_sym_DASH_GT] = ACTIONS(4282), + [anon_sym_with] = ACTIONS(4282), + [aux_sym_preproc_if_token3] = ACTIONS(4282), + [aux_sym_preproc_else_token1] = ACTIONS(4282), + [aux_sym_preproc_elif_token1] = ACTIONS(4282), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507911,30 +506403,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4794), }, [3291] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3291), [sym_preproc_endregion] = STATE(3291), [sym_preproc_line] = STATE(3291), @@ -507944,45 +506429,48 @@ 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(4778), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5644), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5648), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5650), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4778), - [aux_sym_preproc_else_token1] = ACTIONS(4778), - [aux_sym_preproc_elif_token1] = ACTIONS(4778), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(5843), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5366), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5847), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5364), + [anon_sym_join] = ACTIONS(5364), + [anon_sym_let] = ACTIONS(5364), + [anon_sym_orderby] = ACTIONS(5364), + [anon_sym_group] = ACTIONS(5364), + [anon_sym_select] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(5851), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507995,27 +506483,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3292] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3292), [sym_preproc_endregion] = STATE(3292), [sym_preproc_line] = STATE(3292), @@ -508025,44 +506492,63 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LBRACK] = ACTIONS(5931), + [anon_sym_COLON] = ACTIONS(5931), + [anon_sym_COMMA] = ACTIONS(5931), + [anon_sym_RBRACK] = ACTIONS(5931), + [anon_sym_LPAREN] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_RBRACE] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5933), + [anon_sym_in] = ACTIONS(5933), + [anon_sym_where] = ACTIONS(5931), + [anon_sym_QMARK] = ACTIONS(5933), + [anon_sym_DOT] = ACTIONS(5933), + [anon_sym_EQ_GT] = ACTIONS(5931), + [anon_sym_STAR] = ACTIONS(5931), + [anon_sym_switch] = ACTIONS(5931), + [anon_sym_DOT_DOT] = ACTIONS(5931), + [anon_sym_LT_EQ] = ACTIONS(5931), + [anon_sym_GT_EQ] = ACTIONS(5931), + [anon_sym_and] = ACTIONS(5931), + [anon_sym_or] = ACTIONS(5933), + [anon_sym_EQ_EQ] = ACTIONS(5931), + [anon_sym_BANG_EQ] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5933), + [sym_op_bitwise_or] = ACTIONS(5933), + [anon_sym_CARET] = ACTIONS(5931), + [sym_op_left_shift] = ACTIONS(5931), + [sym_op_right_shift] = ACTIONS(5933), + [sym_op_unsigned_right_shift] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5933), + [sym_op_divide] = ACTIONS(5933), + [sym_op_modulo] = ACTIONS(5931), + [sym_op_coalescing] = ACTIONS(5931), + [anon_sym_BANG] = ACTIONS(5933), + [anon_sym_PLUS_PLUS] = ACTIONS(5931), + [anon_sym_DASH_DASH] = ACTIONS(5931), + [anon_sym_from] = ACTIONS(5931), + [anon_sym_into] = ACTIONS(5931), + [anon_sym_join] = ACTIONS(5931), + [anon_sym_on] = ACTIONS(5931), + [anon_sym_equals] = ACTIONS(5931), + [anon_sym_let] = ACTIONS(5931), + [anon_sym_orderby] = ACTIONS(5931), + [anon_sym_group] = ACTIONS(5931), + [anon_sym_by] = ACTIONS(5931), + [anon_sym_select] = ACTIONS(5931), + [anon_sym_as] = ACTIONS(5931), + [anon_sym_is] = ACTIONS(5931), + [anon_sym_DASH_GT] = ACTIONS(5931), + [anon_sym_with] = ACTIONS(5931), + [aux_sym_preproc_if_token3] = ACTIONS(5931), + [aux_sym_preproc_else_token1] = ACTIONS(5931), + [aux_sym_preproc_elif_token1] = ACTIONS(5931), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508073,7 +506559,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(4672), }, [3293] = { [sym_preproc_region] = STATE(3293), @@ -508085,66 +506570,63 @@ 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_EQ] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5686), - [anon_sym_PLUS_EQ] = ACTIONS(5688), - [anon_sym_DASH_EQ] = ACTIONS(5688), - [anon_sym_STAR_EQ] = ACTIONS(5688), - [anon_sym_SLASH_EQ] = ACTIONS(5688), - [anon_sym_PERCENT_EQ] = ACTIONS(5688), - [anon_sym_AMP_EQ] = ACTIONS(5688), - [anon_sym_CARET_EQ] = ACTIONS(5688), - [anon_sym_PIPE_EQ] = ACTIONS(5688), - [anon_sym_LT_LT_EQ] = ACTIONS(5688), - [anon_sym_GT_GT_EQ] = ACTIONS(5688), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5688), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5688), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [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(5684), - [anon_sym_with] = ACTIONS(5684), - [sym_grit_metavariable] = ACTIONS(5684), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LBRACK] = ACTIONS(5935), + [anon_sym_COLON] = ACTIONS(5935), + [anon_sym_COMMA] = ACTIONS(5935), + [anon_sym_RBRACK] = ACTIONS(5935), + [anon_sym_LPAREN] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_RBRACE] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5937), + [anon_sym_GT] = ACTIONS(5937), + [anon_sym_in] = ACTIONS(5937), + [anon_sym_where] = ACTIONS(5935), + [anon_sym_QMARK] = ACTIONS(5937), + [anon_sym_DOT] = ACTIONS(5937), + [anon_sym_EQ_GT] = ACTIONS(5935), + [anon_sym_STAR] = ACTIONS(5935), + [anon_sym_switch] = ACTIONS(5935), + [anon_sym_DOT_DOT] = ACTIONS(5935), + [anon_sym_LT_EQ] = ACTIONS(5935), + [anon_sym_GT_EQ] = ACTIONS(5935), + [anon_sym_and] = ACTIONS(5935), + [anon_sym_or] = ACTIONS(5937), + [anon_sym_EQ_EQ] = ACTIONS(5935), + [anon_sym_BANG_EQ] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5937), + [sym_op_bitwise_or] = ACTIONS(5937), + [anon_sym_CARET] = ACTIONS(5935), + [sym_op_left_shift] = ACTIONS(5935), + [sym_op_right_shift] = ACTIONS(5937), + [sym_op_unsigned_right_shift] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [sym_op_divide] = ACTIONS(5937), + [sym_op_modulo] = ACTIONS(5935), + [sym_op_coalescing] = ACTIONS(5935), + [anon_sym_BANG] = ACTIONS(5937), + [anon_sym_PLUS_PLUS] = ACTIONS(5935), + [anon_sym_DASH_DASH] = ACTIONS(5935), + [anon_sym_from] = ACTIONS(5935), + [anon_sym_into] = ACTIONS(5935), + [anon_sym_join] = ACTIONS(5935), + [anon_sym_on] = ACTIONS(5935), + [anon_sym_equals] = ACTIONS(5935), + [anon_sym_let] = ACTIONS(5935), + [anon_sym_orderby] = ACTIONS(5935), + [anon_sym_group] = ACTIONS(5935), + [anon_sym_by] = ACTIONS(5935), + [anon_sym_select] = ACTIONS(5935), + [anon_sym_as] = ACTIONS(5935), + [anon_sym_is] = ACTIONS(5935), + [anon_sym_DASH_GT] = ACTIONS(5935), + [anon_sym_with] = ACTIONS(5935), + [aux_sym_preproc_if_token3] = ACTIONS(5935), + [aux_sym_preproc_else_token1] = ACTIONS(5935), + [aux_sym_preproc_elif_token1] = ACTIONS(5935), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508157,27 +506639,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3294] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3294), [sym_preproc_endregion] = STATE(3294), [sym_preproc_line] = STATE(3294), @@ -508187,45 +506648,63 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5676), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LBRACK] = ACTIONS(5939), + [anon_sym_COLON] = ACTIONS(5939), + [anon_sym_COMMA] = ACTIONS(5939), + [anon_sym_RBRACK] = ACTIONS(5939), + [anon_sym_LPAREN] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_RBRACE] = ACTIONS(5939), + [anon_sym_LT] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_in] = ACTIONS(5941), + [anon_sym_where] = ACTIONS(5939), + [anon_sym_QMARK] = ACTIONS(5941), + [anon_sym_DOT] = ACTIONS(5941), + [anon_sym_EQ_GT] = ACTIONS(5939), + [anon_sym_STAR] = ACTIONS(5939), + [anon_sym_switch] = ACTIONS(5939), + [anon_sym_DOT_DOT] = ACTIONS(5939), + [anon_sym_LT_EQ] = ACTIONS(5939), + [anon_sym_GT_EQ] = ACTIONS(5939), + [anon_sym_and] = ACTIONS(5939), + [anon_sym_or] = ACTIONS(5941), + [anon_sym_EQ_EQ] = ACTIONS(5939), + [anon_sym_BANG_EQ] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5941), + [sym_op_bitwise_or] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5939), + [sym_op_left_shift] = ACTIONS(5939), + [sym_op_right_shift] = ACTIONS(5941), + [sym_op_unsigned_right_shift] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [sym_op_divide] = ACTIONS(5941), + [sym_op_modulo] = ACTIONS(5939), + [sym_op_coalescing] = ACTIONS(5939), + [anon_sym_BANG] = ACTIONS(5941), + [anon_sym_PLUS_PLUS] = ACTIONS(5939), + [anon_sym_DASH_DASH] = ACTIONS(5939), + [anon_sym_from] = ACTIONS(5939), + [anon_sym_into] = ACTIONS(5939), + [anon_sym_join] = ACTIONS(5939), + [anon_sym_on] = ACTIONS(5939), + [anon_sym_equals] = ACTIONS(5939), + [anon_sym_let] = ACTIONS(5939), + [anon_sym_orderby] = ACTIONS(5939), + [anon_sym_group] = ACTIONS(5939), + [anon_sym_by] = ACTIONS(5939), + [anon_sym_select] = ACTIONS(5939), + [anon_sym_as] = ACTIONS(5939), + [anon_sym_is] = ACTIONS(5939), + [anon_sym_DASH_GT] = ACTIONS(5939), + [anon_sym_with] = ACTIONS(5939), + [aux_sym_preproc_if_token3] = ACTIONS(5939), + [aux_sym_preproc_else_token1] = ACTIONS(5939), + [aux_sym_preproc_elif_token1] = ACTIONS(5939), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508238,27 +506717,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3295] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3295), [sym_preproc_endregion] = STATE(3295), [sym_preproc_line] = STATE(3295), @@ -508268,45 +506726,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3295), [sym_preproc_define] = STATE(3295), [sym_preproc_undef] = STATE(3295), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5676), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LBRACK] = ACTIONS(5943), + [anon_sym_COLON] = ACTIONS(5943), + [anon_sym_COMMA] = ACTIONS(5943), + [anon_sym_RBRACK] = ACTIONS(5943), + [anon_sym_LPAREN] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_RBRACE] = ACTIONS(5943), + [anon_sym_LT] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5945), + [anon_sym_in] = ACTIONS(5945), + [anon_sym_where] = ACTIONS(5943), + [anon_sym_QMARK] = ACTIONS(5945), + [anon_sym_DOT] = ACTIONS(5945), + [anon_sym_EQ_GT] = ACTIONS(5943), + [anon_sym_STAR] = ACTIONS(5943), + [anon_sym_switch] = ACTIONS(5943), + [anon_sym_DOT_DOT] = ACTIONS(5943), + [anon_sym_LT_EQ] = ACTIONS(5943), + [anon_sym_GT_EQ] = ACTIONS(5943), + [anon_sym_and] = ACTIONS(5943), + [anon_sym_or] = ACTIONS(5945), + [anon_sym_EQ_EQ] = ACTIONS(5943), + [anon_sym_BANG_EQ] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5945), + [sym_op_bitwise_or] = ACTIONS(5945), + [anon_sym_CARET] = ACTIONS(5943), + [sym_op_left_shift] = ACTIONS(5943), + [sym_op_right_shift] = ACTIONS(5945), + [sym_op_unsigned_right_shift] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5945), + [anon_sym_DASH] = ACTIONS(5945), + [sym_op_divide] = ACTIONS(5945), + [sym_op_modulo] = ACTIONS(5943), + [sym_op_coalescing] = ACTIONS(5943), + [anon_sym_BANG] = ACTIONS(5945), + [anon_sym_PLUS_PLUS] = ACTIONS(5943), + [anon_sym_DASH_DASH] = ACTIONS(5943), + [anon_sym_from] = ACTIONS(5943), + [anon_sym_into] = ACTIONS(5943), + [anon_sym_join] = ACTIONS(5943), + [anon_sym_on] = ACTIONS(5943), + [anon_sym_equals] = ACTIONS(5943), + [anon_sym_let] = ACTIONS(5943), + [anon_sym_orderby] = ACTIONS(5943), + [anon_sym_group] = ACTIONS(5943), + [anon_sym_by] = ACTIONS(5943), + [anon_sym_select] = ACTIONS(5943), + [anon_sym_as] = ACTIONS(5943), + [anon_sym_is] = ACTIONS(5943), + [anon_sym_DASH_GT] = ACTIONS(5943), + [anon_sym_with] = ACTIONS(5943), + [aux_sym_preproc_if_token3] = ACTIONS(5943), + [aux_sym_preproc_else_token1] = ACTIONS(5943), + [aux_sym_preproc_elif_token1] = ACTIONS(5943), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508319,27 +506795,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3296] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3296), [sym_preproc_endregion] = STATE(3296), [sym_preproc_line] = STATE(3296), @@ -508349,45 +506804,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3296), [sym_preproc_define] = STATE(3296), [sym_preproc_undef] = STATE(3296), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5676), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5947), + [anon_sym_LBRACK] = ACTIONS(5947), + [anon_sym_COLON] = ACTIONS(5947), + [anon_sym_COMMA] = ACTIONS(5947), + [anon_sym_RBRACK] = ACTIONS(5947), + [anon_sym_LPAREN] = ACTIONS(5947), + [anon_sym_RPAREN] = ACTIONS(5947), + [anon_sym_RBRACE] = ACTIONS(5947), + [anon_sym_LT] = ACTIONS(5949), + [anon_sym_GT] = ACTIONS(5949), + [anon_sym_in] = ACTIONS(5949), + [anon_sym_where] = ACTIONS(5947), + [anon_sym_QMARK] = ACTIONS(5949), + [anon_sym_DOT] = ACTIONS(5949), + [anon_sym_EQ_GT] = ACTIONS(5947), + [anon_sym_STAR] = ACTIONS(5947), + [anon_sym_switch] = ACTIONS(5947), + [anon_sym_DOT_DOT] = ACTIONS(5947), + [anon_sym_LT_EQ] = ACTIONS(5947), + [anon_sym_GT_EQ] = ACTIONS(5947), + [anon_sym_and] = ACTIONS(5947), + [anon_sym_or] = ACTIONS(5949), + [anon_sym_EQ_EQ] = ACTIONS(5947), + [anon_sym_BANG_EQ] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [anon_sym_AMP] = ACTIONS(5949), + [sym_op_bitwise_or] = ACTIONS(5949), + [anon_sym_CARET] = ACTIONS(5947), + [sym_op_left_shift] = ACTIONS(5947), + [sym_op_right_shift] = ACTIONS(5949), + [sym_op_unsigned_right_shift] = ACTIONS(5947), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [sym_op_divide] = ACTIONS(5949), + [sym_op_modulo] = ACTIONS(5947), + [sym_op_coalescing] = ACTIONS(5947), + [anon_sym_BANG] = ACTIONS(5949), + [anon_sym_PLUS_PLUS] = ACTIONS(5947), + [anon_sym_DASH_DASH] = ACTIONS(5947), + [anon_sym_from] = ACTIONS(5947), + [anon_sym_into] = ACTIONS(5947), + [anon_sym_join] = ACTIONS(5947), + [anon_sym_on] = ACTIONS(5947), + [anon_sym_equals] = ACTIONS(5947), + [anon_sym_let] = ACTIONS(5947), + [anon_sym_orderby] = ACTIONS(5947), + [anon_sym_group] = ACTIONS(5947), + [anon_sym_by] = ACTIONS(5947), + [anon_sym_select] = ACTIONS(5947), + [anon_sym_as] = ACTIONS(5947), + [anon_sym_is] = ACTIONS(5947), + [anon_sym_DASH_GT] = ACTIONS(5947), + [anon_sym_with] = ACTIONS(5947), + [aux_sym_preproc_if_token3] = ACTIONS(5947), + [aux_sym_preproc_else_token1] = ACTIONS(5947), + [aux_sym_preproc_elif_token1] = ACTIONS(5947), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508400,27 +506873,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3297] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3297), [sym_preproc_endregion] = STATE(3297), [sym_preproc_line] = STATE(3297), @@ -508430,44 +506882,63 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_COLON] = ACTIONS(2267), + [anon_sym_COMMA] = ACTIONS(2267), + [anon_sym_RBRACK] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_RPAREN] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_GT] = ACTIONS(2269), + [anon_sym_in] = ACTIONS(2269), + [anon_sym_where] = ACTIONS(2267), + [anon_sym_QMARK] = ACTIONS(2269), + [anon_sym_DOT] = ACTIONS(2269), + [anon_sym_EQ_GT] = ACTIONS(2267), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_switch] = ACTIONS(2267), + [anon_sym_DOT_DOT] = ACTIONS(2267), + [anon_sym_LT_EQ] = ACTIONS(2267), + [anon_sym_GT_EQ] = ACTIONS(2267), + [anon_sym_and] = ACTIONS(2267), + [anon_sym_or] = ACTIONS(2269), + [anon_sym_EQ_EQ] = ACTIONS(2267), + [anon_sym_BANG_EQ] = ACTIONS(2267), + [anon_sym_AMP_AMP] = ACTIONS(2267), + [anon_sym_PIPE_PIPE] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2269), + [sym_op_bitwise_or] = ACTIONS(2269), + [anon_sym_CARET] = ACTIONS(2267), + [sym_op_left_shift] = ACTIONS(2267), + [sym_op_right_shift] = ACTIONS(2269), + [sym_op_unsigned_right_shift] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [sym_op_divide] = ACTIONS(2269), + [sym_op_modulo] = ACTIONS(2267), + [sym_op_coalescing] = ACTIONS(2267), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_from] = ACTIONS(2267), + [anon_sym_into] = ACTIONS(2267), + [anon_sym_join] = ACTIONS(2267), + [anon_sym_on] = ACTIONS(2267), + [anon_sym_equals] = ACTIONS(2267), + [anon_sym_let] = ACTIONS(2267), + [anon_sym_orderby] = ACTIONS(2267), + [anon_sym_group] = ACTIONS(2267), + [anon_sym_by] = ACTIONS(2267), + [anon_sym_select] = ACTIONS(2267), + [anon_sym_as] = ACTIONS(2267), + [anon_sym_is] = ACTIONS(2267), + [anon_sym_DASH_GT] = ACTIONS(2267), + [anon_sym_with] = ACTIONS(2267), + [aux_sym_preproc_if_token3] = ACTIONS(2267), + [aux_sym_preproc_else_token1] = ACTIONS(2267), + [aux_sym_preproc_elif_token1] = ACTIONS(2267), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508478,30 +506949,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(4752), }, [3298] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3298), [sym_preproc_endregion] = STATE(3298), [sym_preproc_line] = STATE(3298), @@ -508511,44 +506960,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3298), [sym_preproc_define] = STATE(3298), [sym_preproc_undef] = STATE(3298), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4660), + [anon_sym_COLON] = ACTIONS(4660), + [anon_sym_COMMA] = ACTIONS(4660), + [anon_sym_RBRACK] = ACTIONS(4660), + [anon_sym_LPAREN] = ACTIONS(4660), + [anon_sym_RPAREN] = ACTIONS(4660), + [anon_sym_RBRACE] = ACTIONS(4660), + [anon_sym_LT] = ACTIONS(4662), + [anon_sym_GT] = ACTIONS(4662), + [anon_sym_in] = ACTIONS(4662), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_QMARK] = ACTIONS(4662), + [anon_sym_DOT] = ACTIONS(4662), + [anon_sym_EQ_GT] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [anon_sym_switch] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4660), + [anon_sym_LT_EQ] = ACTIONS(4660), + [anon_sym_GT_EQ] = ACTIONS(4660), + [anon_sym_and] = ACTIONS(4660), + [anon_sym_or] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_AMP_AMP] = ACTIONS(4660), + [anon_sym_PIPE_PIPE] = ACTIONS(4660), + [anon_sym_AMP] = ACTIONS(4662), + [sym_op_bitwise_or] = ACTIONS(4662), + [anon_sym_CARET] = ACTIONS(4660), + [sym_op_left_shift] = ACTIONS(4660), + [sym_op_right_shift] = ACTIONS(4662), + [sym_op_unsigned_right_shift] = ACTIONS(4660), + [anon_sym_PLUS] = ACTIONS(4662), + [anon_sym_DASH] = ACTIONS(4662), + [sym_op_divide] = ACTIONS(4662), + [sym_op_modulo] = ACTIONS(4660), + [sym_op_coalescing] = ACTIONS(4660), + [anon_sym_BANG] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4660), + [anon_sym_DASH_DASH] = ACTIONS(4660), + [anon_sym_from] = ACTIONS(4660), + [anon_sym_into] = ACTIONS(4660), + [anon_sym_join] = ACTIONS(4660), + [anon_sym_on] = ACTIONS(4660), + [anon_sym_equals] = ACTIONS(4660), + [anon_sym_let] = ACTIONS(4660), + [anon_sym_orderby] = ACTIONS(4660), + [anon_sym_group] = ACTIONS(4660), + [anon_sym_by] = ACTIONS(4660), + [anon_sym_select] = ACTIONS(4660), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_DASH_GT] = ACTIONS(4660), + [anon_sym_with] = ACTIONS(4660), + [aux_sym_preproc_if_token3] = ACTIONS(4660), + [aux_sym_preproc_else_token1] = ACTIONS(4660), + [aux_sym_preproc_elif_token1] = ACTIONS(4660), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508559,30 +507027,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(4672), }, [3299] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3299), [sym_preproc_endregion] = STATE(3299), [sym_preproc_line] = STATE(3299), @@ -508592,45 +507038,63 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5951), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_COLON] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_RBRACK] = ACTIONS(5951), + [anon_sym_LPAREN] = ACTIONS(5951), + [anon_sym_RPAREN] = ACTIONS(5951), + [anon_sym_RBRACE] = ACTIONS(5951), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_in] = ACTIONS(5953), + [anon_sym_where] = ACTIONS(5951), + [anon_sym_QMARK] = ACTIONS(5953), + [anon_sym_DOT] = ACTIONS(5953), + [anon_sym_EQ_GT] = ACTIONS(5951), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_switch] = ACTIONS(5951), + [anon_sym_DOT_DOT] = ACTIONS(5951), + [anon_sym_LT_EQ] = ACTIONS(5951), + [anon_sym_GT_EQ] = ACTIONS(5951), + [anon_sym_and] = ACTIONS(5951), + [anon_sym_or] = ACTIONS(5953), + [anon_sym_EQ_EQ] = ACTIONS(5951), + [anon_sym_BANG_EQ] = ACTIONS(5951), + [anon_sym_AMP_AMP] = ACTIONS(5951), + [anon_sym_PIPE_PIPE] = ACTIONS(5951), + [anon_sym_AMP] = ACTIONS(5953), + [sym_op_bitwise_or] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5951), + [sym_op_left_shift] = ACTIONS(5951), + [sym_op_right_shift] = ACTIONS(5953), + [sym_op_unsigned_right_shift] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [sym_op_divide] = ACTIONS(5953), + [sym_op_modulo] = ACTIONS(5951), + [sym_op_coalescing] = ACTIONS(5951), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PLUS_PLUS] = ACTIONS(5951), + [anon_sym_DASH_DASH] = ACTIONS(5951), + [anon_sym_from] = ACTIONS(5951), + [anon_sym_into] = ACTIONS(5951), + [anon_sym_join] = ACTIONS(5951), + [anon_sym_on] = ACTIONS(5951), + [anon_sym_equals] = ACTIONS(5951), + [anon_sym_let] = ACTIONS(5951), + [anon_sym_orderby] = ACTIONS(5951), + [anon_sym_group] = ACTIONS(5951), + [anon_sym_by] = ACTIONS(5951), + [anon_sym_select] = ACTIONS(5951), + [anon_sym_as] = ACTIONS(5951), + [anon_sym_is] = ACTIONS(5951), + [anon_sym_DASH_GT] = ACTIONS(5951), + [anon_sym_with] = ACTIONS(5951), + [aux_sym_preproc_if_token3] = ACTIONS(5951), + [aux_sym_preproc_else_token1] = ACTIONS(5951), + [aux_sym_preproc_elif_token1] = ACTIONS(5951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508643,27 +507107,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3300] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3300), [sym_preproc_endregion] = STATE(3300), [sym_preproc_line] = STATE(3300), @@ -508673,44 +507116,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3300), [sym_preproc_define] = STATE(3300), [sym_preproc_undef] = STATE(3300), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5668), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LBRACK] = ACTIONS(5955), + [anon_sym_COLON] = ACTIONS(5955), + [anon_sym_COMMA] = ACTIONS(5955), + [anon_sym_RBRACK] = ACTIONS(5955), + [anon_sym_LPAREN] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_RBRACE] = ACTIONS(5955), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_in] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5955), + [anon_sym_QMARK] = ACTIONS(5957), + [anon_sym_DOT] = ACTIONS(5957), + [anon_sym_EQ_GT] = ACTIONS(5955), + [anon_sym_STAR] = ACTIONS(5955), + [anon_sym_switch] = ACTIONS(5955), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_LT_EQ] = ACTIONS(5955), + [anon_sym_GT_EQ] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5955), + [anon_sym_or] = ACTIONS(5957), + [anon_sym_EQ_EQ] = ACTIONS(5955), + [anon_sym_BANG_EQ] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5957), + [sym_op_bitwise_or] = ACTIONS(5957), + [anon_sym_CARET] = ACTIONS(5955), + [sym_op_left_shift] = ACTIONS(5955), + [sym_op_right_shift] = ACTIONS(5957), + [sym_op_unsigned_right_shift] = ACTIONS(5955), + [anon_sym_PLUS] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(5957), + [sym_op_divide] = ACTIONS(5957), + [sym_op_modulo] = ACTIONS(5955), + [sym_op_coalescing] = ACTIONS(5955), + [anon_sym_BANG] = ACTIONS(5957), + [anon_sym_PLUS_PLUS] = ACTIONS(5955), + [anon_sym_DASH_DASH] = ACTIONS(5955), + [anon_sym_from] = ACTIONS(5955), + [anon_sym_into] = ACTIONS(5955), + [anon_sym_join] = ACTIONS(5955), + [anon_sym_on] = ACTIONS(5955), + [anon_sym_equals] = ACTIONS(5955), + [anon_sym_let] = ACTIONS(5955), + [anon_sym_orderby] = ACTIONS(5955), + [anon_sym_group] = ACTIONS(5955), + [anon_sym_by] = ACTIONS(5955), + [anon_sym_select] = ACTIONS(5955), + [anon_sym_as] = ACTIONS(5955), + [anon_sym_is] = ACTIONS(5955), + [anon_sym_DASH_GT] = ACTIONS(5955), + [anon_sym_with] = ACTIONS(5955), + [aux_sym_preproc_if_token3] = ACTIONS(5955), + [aux_sym_preproc_else_token1] = ACTIONS(5955), + [aux_sym_preproc_elif_token1] = ACTIONS(5955), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508721,9 +507183,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4790), }, [3301] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3301), [sym_preproc_endregion] = STATE(3301), [sym_preproc_line] = STATE(3301), @@ -508733,66 +507209,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3301), [sym_preproc_define] = STATE(3301), [sym_preproc_undef] = STATE(3301), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(4006), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(3991), - [anon_sym_switch] = ACTIONS(4006), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(4006), - [anon_sym_or] = ACTIONS(3991), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(4006), - [anon_sym_into] = ACTIONS(4006), - [anon_sym_join] = ACTIONS(4006), - [anon_sym_let] = ACTIONS(4006), - [anon_sym_orderby] = ACTIONS(4006), - [anon_sym_ascending] = ACTIONS(4006), - [anon_sym_descending] = ACTIONS(4006), - [anon_sym_group] = ACTIONS(4006), - [anon_sym_select] = ACTIONS(4006), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(4006), - [anon_sym_DASH_GT] = ACTIONS(4006), - [anon_sym_with] = ACTIONS(4006), - [sym_grit_metavariable] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508805,27 +507263,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3302] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3302), [sym_preproc_endregion] = STATE(3302), [sym_preproc_line] = STATE(3302), @@ -508835,45 +507272,63 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5680), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5676), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5959), + [anon_sym_LBRACK] = ACTIONS(5959), + [anon_sym_COLON] = ACTIONS(5959), + [anon_sym_COMMA] = ACTIONS(5959), + [anon_sym_RBRACK] = ACTIONS(5959), + [anon_sym_LPAREN] = ACTIONS(5959), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_RBRACE] = ACTIONS(5959), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_in] = ACTIONS(5961), + [anon_sym_where] = ACTIONS(5959), + [anon_sym_QMARK] = ACTIONS(5961), + [anon_sym_DOT] = ACTIONS(5961), + [anon_sym_EQ_GT] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(5959), + [anon_sym_switch] = ACTIONS(5959), + [anon_sym_DOT_DOT] = ACTIONS(5959), + [anon_sym_LT_EQ] = ACTIONS(5959), + [anon_sym_GT_EQ] = ACTIONS(5959), + [anon_sym_and] = ACTIONS(5959), + [anon_sym_or] = ACTIONS(5961), + [anon_sym_EQ_EQ] = ACTIONS(5959), + [anon_sym_BANG_EQ] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [anon_sym_AMP] = ACTIONS(5961), + [sym_op_bitwise_or] = ACTIONS(5961), + [anon_sym_CARET] = ACTIONS(5959), + [sym_op_left_shift] = ACTIONS(5959), + [sym_op_right_shift] = ACTIONS(5961), + [sym_op_unsigned_right_shift] = ACTIONS(5959), + [anon_sym_PLUS] = ACTIONS(5961), + [anon_sym_DASH] = ACTIONS(5961), + [sym_op_divide] = ACTIONS(5961), + [sym_op_modulo] = ACTIONS(5959), + [sym_op_coalescing] = ACTIONS(5959), + [anon_sym_BANG] = ACTIONS(5961), + [anon_sym_PLUS_PLUS] = ACTIONS(5959), + [anon_sym_DASH_DASH] = ACTIONS(5959), + [anon_sym_from] = ACTIONS(5959), + [anon_sym_into] = ACTIONS(5959), + [anon_sym_join] = ACTIONS(5959), + [anon_sym_on] = ACTIONS(5959), + [anon_sym_equals] = ACTIONS(5959), + [anon_sym_let] = ACTIONS(5959), + [anon_sym_orderby] = ACTIONS(5959), + [anon_sym_group] = ACTIONS(5959), + [anon_sym_by] = ACTIONS(5959), + [anon_sym_select] = ACTIONS(5959), + [anon_sym_as] = ACTIONS(5959), + [anon_sym_is] = ACTIONS(5959), + [anon_sym_DASH_GT] = ACTIONS(5959), + [anon_sym_with] = ACTIONS(5959), + [aux_sym_preproc_if_token3] = ACTIONS(5959), + [aux_sym_preproc_else_token1] = ACTIONS(5959), + [aux_sym_preproc_elif_token1] = ACTIONS(5959), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508886,29 +507341,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3303] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter] = STATE(7543), - [sym__parameter_array] = STATE(7468), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6403), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6018), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if_in_attribute_list] = STATE(5927), [sym_preproc_region] = STATE(3303), [sym_preproc_endregion] = STATE(3303), [sym_preproc_line] = STATE(3303), @@ -508918,43 +507350,63 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3658), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5448), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(1271), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(1271), - [anon_sym_out] = ACTIONS(1271), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_this] = ACTIONS(1271), - [anon_sym_scoped] = ACTIONS(5468), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), - [aux_sym_preproc_if_token1] = ACTIONS(5454), + [anon_sym_SEMI] = ACTIONS(5963), + [anon_sym_LBRACK] = ACTIONS(5963), + [anon_sym_COLON] = ACTIONS(5963), + [anon_sym_COMMA] = ACTIONS(5963), + [anon_sym_RBRACK] = ACTIONS(5963), + [anon_sym_LPAREN] = ACTIONS(5963), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_RBRACE] = ACTIONS(5963), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_in] = ACTIONS(5965), + [anon_sym_where] = ACTIONS(5963), + [anon_sym_QMARK] = ACTIONS(5965), + [anon_sym_DOT] = ACTIONS(5965), + [anon_sym_EQ_GT] = ACTIONS(5963), + [anon_sym_STAR] = ACTIONS(5963), + [anon_sym_switch] = ACTIONS(5963), + [anon_sym_DOT_DOT] = ACTIONS(5963), + [anon_sym_LT_EQ] = ACTIONS(5963), + [anon_sym_GT_EQ] = ACTIONS(5963), + [anon_sym_and] = ACTIONS(5963), + [anon_sym_or] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5963), + [anon_sym_BANG_EQ] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [anon_sym_AMP] = ACTIONS(5965), + [sym_op_bitwise_or] = ACTIONS(5965), + [anon_sym_CARET] = ACTIONS(5963), + [sym_op_left_shift] = ACTIONS(5963), + [sym_op_right_shift] = ACTIONS(5965), + [sym_op_unsigned_right_shift] = ACTIONS(5963), + [anon_sym_PLUS] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5965), + [sym_op_divide] = ACTIONS(5965), + [sym_op_modulo] = ACTIONS(5963), + [sym_op_coalescing] = ACTIONS(5963), + [anon_sym_BANG] = ACTIONS(5965), + [anon_sym_PLUS_PLUS] = ACTIONS(5963), + [anon_sym_DASH_DASH] = ACTIONS(5963), + [anon_sym_from] = ACTIONS(5963), + [anon_sym_into] = ACTIONS(5963), + [anon_sym_join] = ACTIONS(5963), + [anon_sym_on] = ACTIONS(5963), + [anon_sym_equals] = ACTIONS(5963), + [anon_sym_let] = ACTIONS(5963), + [anon_sym_orderby] = ACTIONS(5963), + [anon_sym_group] = ACTIONS(5963), + [anon_sym_by] = ACTIONS(5963), + [anon_sym_select] = ACTIONS(5963), + [anon_sym_as] = ACTIONS(5963), + [anon_sym_is] = ACTIONS(5963), + [anon_sym_DASH_GT] = ACTIONS(5963), + [anon_sym_with] = ACTIONS(5963), + [aux_sym_preproc_if_token3] = ACTIONS(5963), + [aux_sym_preproc_else_token1] = ACTIONS(5963), + [aux_sym_preproc_elif_token1] = ACTIONS(5963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508967,27 +507419,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3304] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3304), [sym_preproc_endregion] = STATE(3304), [sym_preproc_line] = STATE(3304), @@ -508997,44 +507428,63 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5967), + [anon_sym_LBRACK] = ACTIONS(5967), + [anon_sym_COLON] = ACTIONS(5967), + [anon_sym_COMMA] = ACTIONS(5967), + [anon_sym_RBRACK] = ACTIONS(5967), + [anon_sym_LPAREN] = ACTIONS(5967), + [anon_sym_RPAREN] = ACTIONS(5967), + [anon_sym_RBRACE] = ACTIONS(5967), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_in] = ACTIONS(5969), + [anon_sym_where] = ACTIONS(5967), + [anon_sym_QMARK] = ACTIONS(5969), + [anon_sym_DOT] = ACTIONS(5969), + [anon_sym_EQ_GT] = ACTIONS(5967), + [anon_sym_STAR] = ACTIONS(5967), + [anon_sym_switch] = ACTIONS(5967), + [anon_sym_DOT_DOT] = ACTIONS(5967), + [anon_sym_LT_EQ] = ACTIONS(5967), + [anon_sym_GT_EQ] = ACTIONS(5967), + [anon_sym_and] = ACTIONS(5967), + [anon_sym_or] = ACTIONS(5969), + [anon_sym_EQ_EQ] = ACTIONS(5967), + [anon_sym_BANG_EQ] = ACTIONS(5967), + [anon_sym_AMP_AMP] = ACTIONS(5967), + [anon_sym_PIPE_PIPE] = ACTIONS(5967), + [anon_sym_AMP] = ACTIONS(5969), + [sym_op_bitwise_or] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5967), + [sym_op_left_shift] = ACTIONS(5967), + [sym_op_right_shift] = ACTIONS(5969), + [sym_op_unsigned_right_shift] = ACTIONS(5967), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [sym_op_divide] = ACTIONS(5969), + [sym_op_modulo] = ACTIONS(5967), + [sym_op_coalescing] = ACTIONS(5967), + [anon_sym_BANG] = ACTIONS(5969), + [anon_sym_PLUS_PLUS] = ACTIONS(5967), + [anon_sym_DASH_DASH] = ACTIONS(5967), + [anon_sym_from] = ACTIONS(5967), + [anon_sym_into] = ACTIONS(5967), + [anon_sym_join] = ACTIONS(5967), + [anon_sym_on] = ACTIONS(5967), + [anon_sym_equals] = ACTIONS(5967), + [anon_sym_let] = ACTIONS(5967), + [anon_sym_orderby] = ACTIONS(5967), + [anon_sym_group] = ACTIONS(5967), + [anon_sym_by] = ACTIONS(5967), + [anon_sym_select] = ACTIONS(5967), + [anon_sym_as] = ACTIONS(5967), + [anon_sym_is] = ACTIONS(5967), + [anon_sym_DASH_GT] = ACTIONS(5967), + [anon_sym_with] = ACTIONS(5967), + [aux_sym_preproc_if_token3] = ACTIONS(5967), + [aux_sym_preproc_else_token1] = ACTIONS(5967), + [aux_sym_preproc_elif_token1] = ACTIONS(5967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509045,30 +507495,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(4672), }, [3305] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3305), [sym_preproc_endregion] = STATE(3305), [sym_preproc_line] = STATE(3305), @@ -509078,44 +507506,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3305), [sym_preproc_define] = STATE(3305), [sym_preproc_undef] = STATE(3305), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4778), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5668), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5971), + [anon_sym_LBRACK] = ACTIONS(5971), + [anon_sym_COLON] = ACTIONS(5971), + [anon_sym_COMMA] = ACTIONS(5971), + [anon_sym_RBRACK] = ACTIONS(5971), + [anon_sym_LPAREN] = ACTIONS(5971), + [anon_sym_RPAREN] = ACTIONS(5971), + [anon_sym_RBRACE] = ACTIONS(5971), + [anon_sym_LT] = ACTIONS(5973), + [anon_sym_GT] = ACTIONS(5973), + [anon_sym_in] = ACTIONS(5973), + [anon_sym_where] = ACTIONS(5971), + [anon_sym_QMARK] = ACTIONS(5973), + [anon_sym_DOT] = ACTIONS(5973), + [anon_sym_EQ_GT] = ACTIONS(5971), + [anon_sym_STAR] = ACTIONS(5971), + [anon_sym_switch] = ACTIONS(5971), + [anon_sym_DOT_DOT] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_and] = ACTIONS(5971), + [anon_sym_or] = ACTIONS(5973), + [anon_sym_EQ_EQ] = ACTIONS(5971), + [anon_sym_BANG_EQ] = ACTIONS(5971), + [anon_sym_AMP_AMP] = ACTIONS(5971), + [anon_sym_PIPE_PIPE] = ACTIONS(5971), + [anon_sym_AMP] = ACTIONS(5973), + [sym_op_bitwise_or] = ACTIONS(5973), + [anon_sym_CARET] = ACTIONS(5971), + [sym_op_left_shift] = ACTIONS(5971), + [sym_op_right_shift] = ACTIONS(5973), + [sym_op_unsigned_right_shift] = ACTIONS(5971), + [anon_sym_PLUS] = ACTIONS(5973), + [anon_sym_DASH] = ACTIONS(5973), + [sym_op_divide] = ACTIONS(5973), + [sym_op_modulo] = ACTIONS(5971), + [sym_op_coalescing] = ACTIONS(5971), + [anon_sym_BANG] = ACTIONS(5973), + [anon_sym_PLUS_PLUS] = ACTIONS(5971), + [anon_sym_DASH_DASH] = ACTIONS(5971), + [anon_sym_from] = ACTIONS(5971), + [anon_sym_into] = ACTIONS(5971), + [anon_sym_join] = ACTIONS(5971), + [anon_sym_on] = ACTIONS(5971), + [anon_sym_equals] = ACTIONS(5971), + [anon_sym_let] = ACTIONS(5971), + [anon_sym_orderby] = ACTIONS(5971), + [anon_sym_group] = ACTIONS(5971), + [anon_sym_by] = ACTIONS(5971), + [anon_sym_select] = ACTIONS(5971), + [anon_sym_as] = ACTIONS(5971), + [anon_sym_is] = ACTIONS(5971), + [anon_sym_DASH_GT] = ACTIONS(5971), + [anon_sym_with] = ACTIONS(5971), + [aux_sym_preproc_if_token3] = ACTIONS(5971), + [aux_sym_preproc_else_token1] = ACTIONS(5971), + [aux_sym_preproc_elif_token1] = ACTIONS(5971), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509126,7 +507573,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(4778), }, [3306] = { [sym_preproc_region] = STATE(3306), @@ -509138,66 +507584,63 @@ 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_EQ] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4528), - [anon_sym_COMMA] = ACTIONS(4528), - [anon_sym_LPAREN] = ACTIONS(4528), - [anon_sym_LT] = ACTIONS(4526), - [anon_sym_GT] = ACTIONS(4526), - [anon_sym_where] = ACTIONS(4528), - [anon_sym_QMARK] = ACTIONS(4526), - [anon_sym_BANG] = ACTIONS(4526), - [anon_sym_PLUS_PLUS] = ACTIONS(4528), - [anon_sym_DASH_DASH] = ACTIONS(4528), - [anon_sym_PLUS] = ACTIONS(4526), - [anon_sym_DASH] = ACTIONS(4526), - [anon_sym_STAR] = ACTIONS(4526), - [anon_sym_SLASH] = ACTIONS(4526), - [anon_sym_PERCENT] = ACTIONS(4526), - [anon_sym_CARET] = ACTIONS(4526), - [anon_sym_PIPE] = ACTIONS(4526), - [anon_sym_AMP] = ACTIONS(4526), - [anon_sym_LT_LT] = ACTIONS(4526), - [anon_sym_GT_GT] = ACTIONS(4526), - [anon_sym_GT_GT_GT] = ACTIONS(4526), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_GT_EQ] = ACTIONS(4528), - [anon_sym_LT_EQ] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4526), - [anon_sym_switch] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4528), - [anon_sym_and] = ACTIONS(4528), - [anon_sym_or] = ACTIONS(4526), - [anon_sym_PLUS_EQ] = ACTIONS(4528), - [anon_sym_DASH_EQ] = ACTIONS(4528), - [anon_sym_STAR_EQ] = ACTIONS(4528), - [anon_sym_SLASH_EQ] = ACTIONS(4528), - [anon_sym_PERCENT_EQ] = ACTIONS(4528), - [anon_sym_AMP_EQ] = ACTIONS(4528), - [anon_sym_CARET_EQ] = ACTIONS(4528), - [anon_sym_PIPE_EQ] = ACTIONS(4528), - [anon_sym_LT_LT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4528), - [anon_sym_PIPE_PIPE] = ACTIONS(4528), - [sym_op_coalescing] = ACTIONS(4526), - [anon_sym_from] = ACTIONS(4528), - [anon_sym_into] = ACTIONS(4528), - [anon_sym_join] = ACTIONS(4528), - [anon_sym_let] = ACTIONS(4528), - [anon_sym_orderby] = ACTIONS(4528), - [anon_sym_ascending] = ACTIONS(4528), - [anon_sym_descending] = ACTIONS(4528), - [anon_sym_group] = ACTIONS(4528), - [anon_sym_select] = ACTIONS(4528), - [anon_sym_as] = ACTIONS(4526), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_DASH_GT] = ACTIONS(4528), - [anon_sym_with] = ACTIONS(4528), - [sym_grit_metavariable] = ACTIONS(4528), + [anon_sym_SEMI] = ACTIONS(5975), + [anon_sym_LBRACK] = ACTIONS(5975), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_COMMA] = ACTIONS(5975), + [anon_sym_RBRACK] = ACTIONS(5975), + [anon_sym_LPAREN] = ACTIONS(5975), + [anon_sym_RPAREN] = ACTIONS(5975), + [anon_sym_RBRACE] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5977), + [anon_sym_GT] = ACTIONS(5977), + [anon_sym_in] = ACTIONS(5977), + [anon_sym_where] = ACTIONS(5975), + [anon_sym_QMARK] = ACTIONS(5977), + [anon_sym_DOT] = ACTIONS(5977), + [anon_sym_EQ_GT] = ACTIONS(5975), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_switch] = ACTIONS(5975), + [anon_sym_DOT_DOT] = ACTIONS(5975), + [anon_sym_LT_EQ] = ACTIONS(5975), + [anon_sym_GT_EQ] = ACTIONS(5975), + [anon_sym_and] = ACTIONS(5975), + [anon_sym_or] = ACTIONS(5977), + [anon_sym_EQ_EQ] = ACTIONS(5975), + [anon_sym_BANG_EQ] = ACTIONS(5975), + [anon_sym_AMP_AMP] = ACTIONS(5975), + [anon_sym_PIPE_PIPE] = ACTIONS(5975), + [anon_sym_AMP] = ACTIONS(5977), + [sym_op_bitwise_or] = ACTIONS(5977), + [anon_sym_CARET] = ACTIONS(5975), + [sym_op_left_shift] = ACTIONS(5975), + [sym_op_right_shift] = ACTIONS(5977), + [sym_op_unsigned_right_shift] = ACTIONS(5975), + [anon_sym_PLUS] = ACTIONS(5977), + [anon_sym_DASH] = ACTIONS(5977), + [sym_op_divide] = ACTIONS(5977), + [sym_op_modulo] = ACTIONS(5975), + [sym_op_coalescing] = ACTIONS(5975), + [anon_sym_BANG] = ACTIONS(5977), + [anon_sym_PLUS_PLUS] = ACTIONS(5975), + [anon_sym_DASH_DASH] = ACTIONS(5975), + [anon_sym_from] = ACTIONS(5975), + [anon_sym_into] = ACTIONS(5975), + [anon_sym_join] = ACTIONS(5975), + [anon_sym_on] = ACTIONS(5975), + [anon_sym_equals] = ACTIONS(5975), + [anon_sym_let] = ACTIONS(5975), + [anon_sym_orderby] = ACTIONS(5975), + [anon_sym_group] = ACTIONS(5975), + [anon_sym_by] = ACTIONS(5975), + [anon_sym_select] = ACTIONS(5975), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5975), + [anon_sym_DASH_GT] = ACTIONS(5975), + [anon_sym_with] = ACTIONS(5975), + [aux_sym_preproc_if_token3] = ACTIONS(5975), + [aux_sym_preproc_else_token1] = ACTIONS(5975), + [aux_sym_preproc_elif_token1] = ACTIONS(5975), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509210,27 +507653,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3307] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3307), [sym_preproc_endregion] = STATE(3307), [sym_preproc_line] = STATE(3307), @@ -509240,44 +507662,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3307), [sym_preproc_define] = STATE(3307), [sym_preproc_undef] = STATE(3307), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5979), + [anon_sym_LBRACK] = ACTIONS(5979), + [anon_sym_COLON] = ACTIONS(5979), + [anon_sym_COMMA] = ACTIONS(5979), + [anon_sym_RBRACK] = ACTIONS(5979), + [anon_sym_LPAREN] = ACTIONS(5979), + [anon_sym_RPAREN] = ACTIONS(5979), + [anon_sym_RBRACE] = ACTIONS(5979), + [anon_sym_LT] = ACTIONS(5981), + [anon_sym_GT] = ACTIONS(5981), + [anon_sym_in] = ACTIONS(5981), + [anon_sym_where] = ACTIONS(5979), + [anon_sym_QMARK] = ACTIONS(5981), + [anon_sym_DOT] = ACTIONS(5981), + [anon_sym_EQ_GT] = ACTIONS(5979), + [anon_sym_STAR] = ACTIONS(5979), + [anon_sym_switch] = ACTIONS(5979), + [anon_sym_DOT_DOT] = ACTIONS(5979), + [anon_sym_LT_EQ] = ACTIONS(5979), + [anon_sym_GT_EQ] = ACTIONS(5979), + [anon_sym_and] = ACTIONS(5979), + [anon_sym_or] = ACTIONS(5981), + [anon_sym_EQ_EQ] = ACTIONS(5979), + [anon_sym_BANG_EQ] = ACTIONS(5979), + [anon_sym_AMP_AMP] = ACTIONS(5979), + [anon_sym_PIPE_PIPE] = ACTIONS(5979), + [anon_sym_AMP] = ACTIONS(5981), + [sym_op_bitwise_or] = ACTIONS(5981), + [anon_sym_CARET] = ACTIONS(5979), + [sym_op_left_shift] = ACTIONS(5979), + [sym_op_right_shift] = ACTIONS(5981), + [sym_op_unsigned_right_shift] = ACTIONS(5979), + [anon_sym_PLUS] = ACTIONS(5981), + [anon_sym_DASH] = ACTIONS(5981), + [sym_op_divide] = ACTIONS(5981), + [sym_op_modulo] = ACTIONS(5979), + [sym_op_coalescing] = ACTIONS(5979), + [anon_sym_BANG] = ACTIONS(5981), + [anon_sym_PLUS_PLUS] = ACTIONS(5979), + [anon_sym_DASH_DASH] = ACTIONS(5979), + [anon_sym_from] = ACTIONS(5979), + [anon_sym_into] = ACTIONS(5979), + [anon_sym_join] = ACTIONS(5979), + [anon_sym_on] = ACTIONS(5979), + [anon_sym_equals] = ACTIONS(5979), + [anon_sym_let] = ACTIONS(5979), + [anon_sym_orderby] = ACTIONS(5979), + [anon_sym_group] = ACTIONS(5979), + [anon_sym_by] = ACTIONS(5979), + [anon_sym_select] = ACTIONS(5979), + [anon_sym_as] = ACTIONS(5979), + [anon_sym_is] = ACTIONS(5979), + [anon_sym_DASH_GT] = ACTIONS(5979), + [anon_sym_with] = ACTIONS(5979), + [aux_sym_preproc_if_token3] = ACTIONS(5979), + [aux_sym_preproc_else_token1] = ACTIONS(5979), + [aux_sym_preproc_elif_token1] = ACTIONS(5979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509288,9 +507729,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3308] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [sym_parameter_list] = STATE(7966), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6226), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym__lambda_parameters] = STATE(8081), + [sym_identifier] = STATE(6061), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_if_in_attribute_list] = STATE(5920), [sym_preproc_region] = STATE(3308), [sym_preproc_endregion] = STATE(3308), [sym_preproc_line] = STATE(3308), @@ -509300,129 +507763,22 @@ 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(4544), - [anon_sym_LBRACK] = ACTIONS(4542), - [anon_sym_COMMA] = ACTIONS(4542), - [anon_sym_LPAREN] = ACTIONS(4542), - [anon_sym_LT] = ACTIONS(4544), - [anon_sym_GT] = ACTIONS(4544), - [anon_sym_where] = ACTIONS(4542), - [anon_sym_QMARK] = ACTIONS(4544), - [anon_sym_BANG] = ACTIONS(4544), - [anon_sym_PLUS_PLUS] = ACTIONS(4542), - [anon_sym_DASH_DASH] = ACTIONS(4542), - [anon_sym_PLUS] = ACTIONS(4544), - [anon_sym_DASH] = ACTIONS(4544), - [anon_sym_STAR] = ACTIONS(4544), - [anon_sym_SLASH] = ACTIONS(4544), - [anon_sym_PERCENT] = ACTIONS(4544), - [anon_sym_CARET] = ACTIONS(4544), - [anon_sym_PIPE] = ACTIONS(4544), - [anon_sym_AMP] = ACTIONS(4544), - [anon_sym_LT_LT] = ACTIONS(4544), - [anon_sym_GT_GT] = ACTIONS(4544), - [anon_sym_GT_GT_GT] = ACTIONS(4544), - [anon_sym_EQ_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_GT_EQ] = ACTIONS(4542), - [anon_sym_LT_EQ] = ACTIONS(4542), - [anon_sym_DOT] = ACTIONS(4544), - [anon_sym_switch] = ACTIONS(4542), - [anon_sym_DOT_DOT] = ACTIONS(4542), - [anon_sym_and] = ACTIONS(4542), - [anon_sym_or] = ACTIONS(4544), - [anon_sym_PLUS_EQ] = ACTIONS(4542), - [anon_sym_DASH_EQ] = ACTIONS(4542), - [anon_sym_STAR_EQ] = ACTIONS(4542), - [anon_sym_SLASH_EQ] = ACTIONS(4542), - [anon_sym_PERCENT_EQ] = ACTIONS(4542), - [anon_sym_AMP_EQ] = ACTIONS(4542), - [anon_sym_CARET_EQ] = ACTIONS(4542), - [anon_sym_PIPE_EQ] = ACTIONS(4542), - [anon_sym_LT_LT_EQ] = ACTIONS(4542), - [anon_sym_GT_GT_EQ] = ACTIONS(4542), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4542), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4542), - [anon_sym_AMP_AMP] = ACTIONS(4542), - [anon_sym_PIPE_PIPE] = ACTIONS(4542), - [sym_op_coalescing] = ACTIONS(4544), - [anon_sym_from] = ACTIONS(4542), - [anon_sym_into] = ACTIONS(4542), - [anon_sym_join] = ACTIONS(4542), - [anon_sym_let] = ACTIONS(4542), - [anon_sym_orderby] = ACTIONS(4542), - [anon_sym_ascending] = ACTIONS(4542), - [anon_sym_descending] = ACTIONS(4542), - [anon_sym_group] = ACTIONS(4542), - [anon_sym_select] = ACTIONS(4542), - [anon_sym_as] = ACTIONS(4544), - [anon_sym_is] = ACTIONS(4542), - [anon_sym_DASH_GT] = ACTIONS(4542), - [anon_sym_with] = ACTIONS(4542), - [sym_grit_metavariable] = ACTIONS(4542), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3309] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter] = STATE(7537), - [sym__parameter_array] = STATE(7538), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6403), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6018), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if_in_attribute_list] = STATE(5927), - [sym_preproc_region] = STATE(3309), - [sym_preproc_endregion] = STATE(3309), - [sym_preproc_line] = STATE(3309), - [sym_preproc_pragma] = STATE(3309), - [sym_preproc_nullable] = STATE(3309), - [sym_preproc_error] = STATE(3309), - [sym_preproc_warning] = STATE(3309), - [sym_preproc_define] = STATE(3309), - [sym_preproc_undef] = STATE(3309), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3658), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4880), + [aux_sym__class_declaration_initializer_repeat1] = STATE(5548), + [aux_sym__lambda_expression_init_repeat1] = STATE(4103), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5448), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(1271), - [anon_sym_out] = ACTIONS(1271), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_this] = ACTIONS(1271), - [anon_sym_scoped] = ACTIONS(5468), - [anon_sym_params] = ACTIONS(1293), + [anon_sym_scoped] = ACTIONS(3237), [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), @@ -509439,8 +507795,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), - [aux_sym_preproc_if_token1] = ACTIONS(5454), + [sym_grit_metavariable] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(5222), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3309] = { + [sym_preproc_region] = STATE(3309), + [sym_preproc_endregion] = STATE(3309), + [sym_preproc_line] = STATE(3309), + [sym_preproc_pragma] = STATE(3309), + [sym_preproc_nullable] = STATE(3309), + [sym_preproc_error] = STATE(3309), + [sym_preproc_warning] = STATE(3309), + [sym_preproc_define] = STATE(3309), + [sym_preproc_undef] = STATE(3309), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_COLON] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(4341), + [anon_sym_RBRACK] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_RPAREN] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_in] = ACTIONS(4341), + [anon_sym_where] = ACTIONS(4341), + [anon_sym_QMARK] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_EQ_GT] = ACTIONS(4341), + [anon_sym_STAR] = ACTIONS(4341), + [anon_sym_switch] = ACTIONS(4341), + [anon_sym_DOT_DOT] = ACTIONS(4341), + [anon_sym_LT_EQ] = ACTIONS(4341), + [anon_sym_GT_EQ] = ACTIONS(4341), + [anon_sym_and] = ACTIONS(4341), + [anon_sym_or] = ACTIONS(4339), + [anon_sym_EQ_EQ] = ACTIONS(4341), + [anon_sym_BANG_EQ] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_PIPE_PIPE] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4339), + [sym_op_bitwise_or] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4341), + [sym_op_left_shift] = ACTIONS(4341), + [sym_op_right_shift] = ACTIONS(4339), + [sym_op_unsigned_right_shift] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [sym_op_divide] = ACTIONS(4339), + [sym_op_modulo] = ACTIONS(4341), + [sym_op_coalescing] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4339), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_from] = ACTIONS(4341), + [anon_sym_join] = ACTIONS(4341), + [anon_sym_on] = ACTIONS(4341), + [anon_sym_equals] = ACTIONS(4341), + [anon_sym_let] = ACTIONS(4341), + [anon_sym_orderby] = ACTIONS(4341), + [anon_sym_group] = ACTIONS(4341), + [anon_sym_by] = ACTIONS(4341), + [anon_sym_select] = ACTIONS(4341), + [anon_sym_as] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(4341), + [anon_sym_DASH_GT] = ACTIONS(4341), + [anon_sym_with] = ACTIONS(4341), + [aux_sym_preproc_if_token3] = ACTIONS(4341), + [aux_sym_preproc_else_token1] = ACTIONS(4341), + [aux_sym_preproc_elif_token1] = ACTIONS(4341), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509453,27 +507887,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3310] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3310), [sym_preproc_endregion] = STATE(3310), [sym_preproc_line] = STATE(3310), @@ -509483,45 +507911,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3310), [sym_preproc_define] = STATE(3310), [sym_preproc_undef] = STATE(3310), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), - [aux_sym_preproc_if_token3] = ACTIONS(1435), - [aux_sym_preproc_else_token1] = ACTIONS(1435), - [aux_sym_preproc_elif_token1] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_where] = ACTIONS(5360), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5360), + [anon_sym_join] = ACTIONS(5360), + [anon_sym_let] = ACTIONS(5360), + [anon_sym_orderby] = ACTIONS(5360), + [anon_sym_group] = ACTIONS(5360), + [anon_sym_select] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509534,27 +507965,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3311] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(3311), [sym_preproc_endregion] = STATE(3311), [sym_preproc_line] = STATE(3311), @@ -509564,45 +507974,63 @@ 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(4766), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), - [aux_sym_preproc_if_token3] = ACTIONS(4766), - [aux_sym_preproc_else_token1] = ACTIONS(4766), - [aux_sym_preproc_elif_token1] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4361), + [anon_sym_where] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_EQ_GT] = ACTIONS(4361), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_switch] = ACTIONS(4361), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_and] = ACTIONS(4361), + [anon_sym_or] = ACTIONS(4359), + [anon_sym_EQ_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4359), + [sym_op_bitwise_or] = ACTIONS(4359), + [anon_sym_CARET] = ACTIONS(4361), + [sym_op_left_shift] = ACTIONS(4361), + [sym_op_right_shift] = ACTIONS(4359), + [sym_op_unsigned_right_shift] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [sym_op_divide] = ACTIONS(4359), + [sym_op_modulo] = ACTIONS(4361), + [sym_op_coalescing] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_from] = ACTIONS(4361), + [anon_sym_join] = ACTIONS(4361), + [anon_sym_on] = ACTIONS(4361), + [anon_sym_equals] = ACTIONS(4361), + [anon_sym_let] = ACTIONS(4361), + [anon_sym_orderby] = ACTIONS(4361), + [anon_sym_group] = ACTIONS(4361), + [anon_sym_by] = ACTIONS(4361), + [anon_sym_select] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4361), + [anon_sym_DASH_GT] = ACTIONS(4361), + [anon_sym_with] = ACTIONS(4361), + [aux_sym_preproc_if_token3] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509615,27 +508043,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3312] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3312), [sym_preproc_endregion] = STATE(3312), [sym_preproc_line] = STATE(3312), @@ -509645,45 +508052,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3312), [sym_preproc_define] = STATE(3312), [sym_preproc_undef] = STATE(3312), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4778), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5678), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5680), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5676), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5983), + [anon_sym_LBRACK] = ACTIONS(5983), + [anon_sym_COLON] = ACTIONS(5983), + [anon_sym_COMMA] = ACTIONS(5983), + [anon_sym_RBRACK] = ACTIONS(5983), + [anon_sym_LPAREN] = ACTIONS(5983), + [anon_sym_RPAREN] = ACTIONS(5983), + [anon_sym_RBRACE] = ACTIONS(5983), + [anon_sym_LT] = ACTIONS(5985), + [anon_sym_GT] = ACTIONS(5985), + [anon_sym_in] = ACTIONS(5985), + [anon_sym_where] = ACTIONS(5983), + [anon_sym_QMARK] = ACTIONS(5985), + [anon_sym_DOT] = ACTIONS(5985), + [anon_sym_EQ_GT] = ACTIONS(5983), + [anon_sym_STAR] = ACTIONS(5983), + [anon_sym_switch] = ACTIONS(5983), + [anon_sym_DOT_DOT] = ACTIONS(5983), + [anon_sym_LT_EQ] = ACTIONS(5983), + [anon_sym_GT_EQ] = ACTIONS(5983), + [anon_sym_and] = ACTIONS(5983), + [anon_sym_or] = ACTIONS(5985), + [anon_sym_EQ_EQ] = ACTIONS(5983), + [anon_sym_BANG_EQ] = ACTIONS(5983), + [anon_sym_AMP_AMP] = ACTIONS(5983), + [anon_sym_PIPE_PIPE] = ACTIONS(5983), + [anon_sym_AMP] = ACTIONS(5985), + [sym_op_bitwise_or] = ACTIONS(5985), + [anon_sym_CARET] = ACTIONS(5983), + [sym_op_left_shift] = ACTIONS(5983), + [sym_op_right_shift] = ACTIONS(5985), + [sym_op_unsigned_right_shift] = ACTIONS(5983), + [anon_sym_PLUS] = ACTIONS(5985), + [anon_sym_DASH] = ACTIONS(5985), + [sym_op_divide] = ACTIONS(5985), + [sym_op_modulo] = ACTIONS(5983), + [sym_op_coalescing] = ACTIONS(5983), + [anon_sym_BANG] = ACTIONS(5985), + [anon_sym_PLUS_PLUS] = ACTIONS(5983), + [anon_sym_DASH_DASH] = ACTIONS(5983), + [anon_sym_from] = ACTIONS(5983), + [anon_sym_into] = ACTIONS(5983), + [anon_sym_join] = ACTIONS(5983), + [anon_sym_on] = ACTIONS(5983), + [anon_sym_equals] = ACTIONS(5983), + [anon_sym_let] = ACTIONS(5983), + [anon_sym_orderby] = ACTIONS(5983), + [anon_sym_group] = ACTIONS(5983), + [anon_sym_by] = ACTIONS(5983), + [anon_sym_select] = ACTIONS(5983), + [anon_sym_as] = ACTIONS(5983), + [anon_sym_is] = ACTIONS(5983), + [anon_sym_DASH_GT] = ACTIONS(5983), + [anon_sym_with] = ACTIONS(5983), + [aux_sym_preproc_if_token3] = ACTIONS(5983), + [aux_sym_preproc_else_token1] = ACTIONS(5983), + [aux_sym_preproc_elif_token1] = ACTIONS(5983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509696,27 +508121,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3313] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3313), [sym_preproc_endregion] = STATE(3313), [sym_preproc_line] = STATE(3313), @@ -509726,45 +508130,63 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4752), - [anon_sym_RBRACE] = ACTIONS(4752), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(5987), + [anon_sym_LBRACK] = ACTIONS(5987), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_COMMA] = ACTIONS(5987), + [anon_sym_RBRACK] = ACTIONS(5987), + [anon_sym_LPAREN] = ACTIONS(5987), + [anon_sym_RPAREN] = ACTIONS(5987), + [anon_sym_RBRACE] = ACTIONS(5987), + [anon_sym_LT] = ACTIONS(5989), + [anon_sym_GT] = ACTIONS(5989), + [anon_sym_in] = ACTIONS(5989), + [anon_sym_where] = ACTIONS(5987), + [anon_sym_QMARK] = ACTIONS(5989), + [anon_sym_DOT] = ACTIONS(5989), + [anon_sym_EQ_GT] = ACTIONS(5987), + [anon_sym_STAR] = ACTIONS(5987), + [anon_sym_switch] = ACTIONS(5987), + [anon_sym_DOT_DOT] = ACTIONS(5987), + [anon_sym_LT_EQ] = ACTIONS(5987), + [anon_sym_GT_EQ] = ACTIONS(5987), + [anon_sym_and] = ACTIONS(5987), + [anon_sym_or] = ACTIONS(5989), + [anon_sym_EQ_EQ] = ACTIONS(5987), + [anon_sym_BANG_EQ] = ACTIONS(5987), + [anon_sym_AMP_AMP] = ACTIONS(5987), + [anon_sym_PIPE_PIPE] = ACTIONS(5987), + [anon_sym_AMP] = ACTIONS(5989), + [sym_op_bitwise_or] = ACTIONS(5989), + [anon_sym_CARET] = ACTIONS(5987), + [sym_op_left_shift] = ACTIONS(5987), + [sym_op_right_shift] = ACTIONS(5989), + [sym_op_unsigned_right_shift] = ACTIONS(5987), + [anon_sym_PLUS] = ACTIONS(5989), + [anon_sym_DASH] = ACTIONS(5989), + [sym_op_divide] = ACTIONS(5989), + [sym_op_modulo] = ACTIONS(5987), + [sym_op_coalescing] = ACTIONS(5987), + [anon_sym_BANG] = ACTIONS(5989), + [anon_sym_PLUS_PLUS] = ACTIONS(5987), + [anon_sym_DASH_DASH] = ACTIONS(5987), + [anon_sym_from] = ACTIONS(5987), + [anon_sym_into] = ACTIONS(5987), + [anon_sym_join] = ACTIONS(5987), + [anon_sym_on] = ACTIONS(5987), + [anon_sym_equals] = ACTIONS(5987), + [anon_sym_let] = ACTIONS(5987), + [anon_sym_orderby] = ACTIONS(5987), + [anon_sym_group] = ACTIONS(5987), + [anon_sym_by] = ACTIONS(5987), + [anon_sym_select] = ACTIONS(5987), + [anon_sym_as] = ACTIONS(5987), + [anon_sym_is] = ACTIONS(5987), + [anon_sym_DASH_GT] = ACTIONS(5987), + [anon_sym_with] = ACTIONS(5987), + [aux_sym_preproc_if_token3] = ACTIONS(5987), + [aux_sym_preproc_else_token1] = ACTIONS(5987), + [aux_sym_preproc_elif_token1] = ACTIONS(5987), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509777,27 +508199,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3314] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3314), [sym_preproc_endregion] = STATE(3314), [sym_preproc_line] = STATE(3314), @@ -509807,45 +508223,48 @@ 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(4752), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), - [aux_sym_preproc_if_token3] = ACTIONS(4752), - [aux_sym_preproc_else_token1] = ACTIONS(4752), - [aux_sym_preproc_elif_token1] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(5304), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5304), + [anon_sym_RBRACK] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5304), + [anon_sym_RBRACE] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5877), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(5727), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5729), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5731), + [sym_op_right_shift] = ACTIONS(5733), + [sym_op_unsigned_right_shift] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5735), + [sym_op_modulo] = ACTIONS(5737), + [sym_op_coalescing] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5743), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [aux_sym_preproc_if_token3] = ACTIONS(5304), + [aux_sym_preproc_else_token1] = ACTIONS(5304), + [aux_sym_preproc_elif_token1] = ACTIONS(5304), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509858,27 +508277,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3315] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3315), [sym_preproc_endregion] = STATE(3315), [sym_preproc_line] = STATE(3315), @@ -509888,44 +508286,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3315), [sym_preproc_define] = STATE(3315), [sym_preproc_undef] = STATE(3315), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5668), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(4431), + [anon_sym_LBRACK] = ACTIONS(4431), + [anon_sym_COLON] = ACTIONS(4431), + [anon_sym_COMMA] = ACTIONS(4431), + [anon_sym_RBRACK] = ACTIONS(4431), + [anon_sym_LPAREN] = ACTIONS(4431), + [anon_sym_RPAREN] = ACTIONS(4431), + [anon_sym_LBRACE] = ACTIONS(4431), + [anon_sym_RBRACE] = ACTIONS(4431), + [anon_sym_LT] = ACTIONS(4429), + [anon_sym_GT] = ACTIONS(4429), + [anon_sym_in] = ACTIONS(4431), + [anon_sym_where] = ACTIONS(4431), + [anon_sym_QMARK] = ACTIONS(4429), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_EQ_GT] = ACTIONS(4431), + [anon_sym_STAR] = ACTIONS(4431), + [anon_sym_switch] = ACTIONS(4431), + [anon_sym_DOT_DOT] = ACTIONS(4431), + [anon_sym_LT_EQ] = ACTIONS(4431), + [anon_sym_GT_EQ] = ACTIONS(4431), + [anon_sym_and] = ACTIONS(4431), + [anon_sym_or] = ACTIONS(4429), + [anon_sym_EQ_EQ] = ACTIONS(4431), + [anon_sym_BANG_EQ] = ACTIONS(4431), + [anon_sym_AMP_AMP] = ACTIONS(4431), + [anon_sym_PIPE_PIPE] = ACTIONS(4431), + [anon_sym_AMP] = ACTIONS(4429), + [sym_op_bitwise_or] = ACTIONS(4429), + [anon_sym_CARET] = ACTIONS(4431), + [sym_op_left_shift] = ACTIONS(4431), + [sym_op_right_shift] = ACTIONS(4429), + [sym_op_unsigned_right_shift] = ACTIONS(4431), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4429), + [sym_op_divide] = ACTIONS(4429), + [sym_op_modulo] = ACTIONS(4431), + [sym_op_coalescing] = ACTIONS(4431), + [anon_sym_BANG] = ACTIONS(4429), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_from] = 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_group] = ACTIONS(4431), + [anon_sym_by] = ACTIONS(4431), + [anon_sym_select] = ACTIONS(4431), + [anon_sym_as] = ACTIONS(4431), + [anon_sym_is] = ACTIONS(4431), + [anon_sym_DASH_GT] = ACTIONS(4431), + [anon_sym_with] = 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), @@ -509936,7 +508353,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(4672), }, [3316] = { [sym_preproc_region] = STATE(3316), @@ -509948,66 +508364,63 @@ 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(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_RBRACK] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_RPAREN] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_in] = ACTIONS(3373), - [anon_sym_where] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3373), - [anon_sym_CARET] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3373), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3373), - [anon_sym_EQ_EQ] = ACTIONS(3373), - [anon_sym_BANG_EQ] = ACTIONS(3373), - [anon_sym_GT_EQ] = ACTIONS(3373), - [anon_sym_LT_EQ] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_EQ_GT] = ACTIONS(3373), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_catch] = ACTIONS(3373), - [anon_sym_finally] = ACTIONS(3373), - [anon_sym_else] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3373), - [anon_sym_and] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_PIPE_PIPE] = ACTIONS(3373), - [sym_op_coalescing] = ACTIONS(3373), - [anon_sym_from] = 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_group] = ACTIONS(3373), - [anon_sym_by] = ACTIONS(3373), - [anon_sym_select] = ACTIONS(3373), - [anon_sym_as] = ACTIONS(3373), - [anon_sym_is] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [aux_sym_preproc_if_token3] = ACTIONS(3373), - [aux_sym_preproc_else_token1] = ACTIONS(3373), - [aux_sym_preproc_elif_token1] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(5991), + [anon_sym_LBRACK] = ACTIONS(5991), + [anon_sym_COLON] = ACTIONS(5991), + [anon_sym_COMMA] = ACTIONS(5991), + [anon_sym_RBRACK] = ACTIONS(5991), + [anon_sym_LPAREN] = ACTIONS(5991), + [anon_sym_RPAREN] = ACTIONS(5991), + [anon_sym_RBRACE] = ACTIONS(5991), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_in] = ACTIONS(5993), + [anon_sym_where] = ACTIONS(5991), + [anon_sym_QMARK] = ACTIONS(5993), + [anon_sym_DOT] = ACTIONS(5993), + [anon_sym_EQ_GT] = ACTIONS(5991), + [anon_sym_STAR] = ACTIONS(5991), + [anon_sym_switch] = ACTIONS(5991), + [anon_sym_DOT_DOT] = ACTIONS(5991), + [anon_sym_LT_EQ] = ACTIONS(5991), + [anon_sym_GT_EQ] = ACTIONS(5991), + [anon_sym_and] = ACTIONS(5991), + [anon_sym_or] = ACTIONS(5993), + [anon_sym_EQ_EQ] = ACTIONS(5991), + [anon_sym_BANG_EQ] = ACTIONS(5991), + [anon_sym_AMP_AMP] = ACTIONS(5991), + [anon_sym_PIPE_PIPE] = ACTIONS(5991), + [anon_sym_AMP] = ACTIONS(5993), + [sym_op_bitwise_or] = ACTIONS(5993), + [anon_sym_CARET] = ACTIONS(5991), + [sym_op_left_shift] = ACTIONS(5991), + [sym_op_right_shift] = ACTIONS(5993), + [sym_op_unsigned_right_shift] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5993), + [sym_op_divide] = ACTIONS(5993), + [sym_op_modulo] = ACTIONS(5991), + [sym_op_coalescing] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(5993), + [anon_sym_PLUS_PLUS] = ACTIONS(5991), + [anon_sym_DASH_DASH] = ACTIONS(5991), + [anon_sym_from] = ACTIONS(5991), + [anon_sym_into] = ACTIONS(5991), + [anon_sym_join] = ACTIONS(5991), + [anon_sym_on] = ACTIONS(5991), + [anon_sym_equals] = ACTIONS(5991), + [anon_sym_let] = ACTIONS(5991), + [anon_sym_orderby] = ACTIONS(5991), + [anon_sym_group] = ACTIONS(5991), + [anon_sym_by] = ACTIONS(5991), + [anon_sym_select] = ACTIONS(5991), + [anon_sym_as] = ACTIONS(5991), + [anon_sym_is] = ACTIONS(5991), + [anon_sym_DASH_GT] = ACTIONS(5991), + [anon_sym_with] = ACTIONS(5991), + [aux_sym_preproc_if_token3] = ACTIONS(5991), + [aux_sym_preproc_else_token1] = ACTIONS(5991), + [aux_sym_preproc_elif_token1] = ACTIONS(5991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510029,66 +508442,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3317), [sym_preproc_define] = STATE(3317), [sym_preproc_undef] = STATE(3317), - [anon_sym_EQ] = ACTIONS(4540), - [anon_sym_LBRACK] = ACTIONS(4538), - [anon_sym_COMMA] = ACTIONS(4538), - [anon_sym_LPAREN] = ACTIONS(4538), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_where] = ACTIONS(4538), - [anon_sym_QMARK] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4540), - [anon_sym_PLUS_PLUS] = ACTIONS(4538), - [anon_sym_DASH_DASH] = ACTIONS(4538), - [anon_sym_PLUS] = ACTIONS(4540), - [anon_sym_DASH] = ACTIONS(4540), - [anon_sym_STAR] = ACTIONS(4540), - [anon_sym_SLASH] = ACTIONS(4540), - [anon_sym_PERCENT] = ACTIONS(4540), - [anon_sym_CARET] = ACTIONS(4540), - [anon_sym_PIPE] = ACTIONS(4540), - [anon_sym_AMP] = ACTIONS(4540), - [anon_sym_LT_LT] = ACTIONS(4540), - [anon_sym_GT_GT] = ACTIONS(4540), - [anon_sym_GT_GT_GT] = ACTIONS(4540), - [anon_sym_EQ_EQ] = ACTIONS(4538), - [anon_sym_BANG_EQ] = ACTIONS(4538), - [anon_sym_GT_EQ] = ACTIONS(4538), - [anon_sym_LT_EQ] = ACTIONS(4538), - [anon_sym_DOT] = ACTIONS(4540), - [anon_sym_switch] = ACTIONS(4538), - [anon_sym_DOT_DOT] = ACTIONS(4538), - [anon_sym_and] = ACTIONS(4538), - [anon_sym_or] = ACTIONS(4540), - [anon_sym_PLUS_EQ] = ACTIONS(4538), - [anon_sym_DASH_EQ] = ACTIONS(4538), - [anon_sym_STAR_EQ] = ACTIONS(4538), - [anon_sym_SLASH_EQ] = ACTIONS(4538), - [anon_sym_PERCENT_EQ] = ACTIONS(4538), - [anon_sym_AMP_EQ] = ACTIONS(4538), - [anon_sym_CARET_EQ] = ACTIONS(4538), - [anon_sym_PIPE_EQ] = ACTIONS(4538), - [anon_sym_LT_LT_EQ] = ACTIONS(4538), - [anon_sym_GT_GT_EQ] = ACTIONS(4538), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), - [anon_sym_AMP_AMP] = ACTIONS(4538), - [anon_sym_PIPE_PIPE] = ACTIONS(4538), - [sym_op_coalescing] = ACTIONS(4540), - [anon_sym_from] = ACTIONS(4538), - [anon_sym_into] = ACTIONS(4538), - [anon_sym_join] = ACTIONS(4538), - [anon_sym_let] = ACTIONS(4538), - [anon_sym_orderby] = ACTIONS(4538), - [anon_sym_ascending] = ACTIONS(4538), - [anon_sym_descending] = ACTIONS(4538), - [anon_sym_group] = ACTIONS(4538), - [anon_sym_select] = ACTIONS(4538), - [anon_sym_as] = ACTIONS(4540), - [anon_sym_is] = ACTIONS(4538), - [anon_sym_DASH_GT] = ACTIONS(4538), - [anon_sym_with] = ACTIONS(4538), - [sym_grit_metavariable] = ACTIONS(4538), + [anon_sym_SEMI] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_RBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_in] = ACTIONS(5510), + [anon_sym_where] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_EQ_GT] = ACTIONS(5508), + [anon_sym_STAR] = ACTIONS(5508), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5510), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5508), + [sym_op_left_shift] = ACTIONS(5508), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5508), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5508), + [sym_op_coalescing] = ACTIONS(5508), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_from] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_join] = ACTIONS(5508), + [anon_sym_on] = ACTIONS(5508), + [anon_sym_equals] = ACTIONS(5508), + [anon_sym_let] = ACTIONS(5508), + [anon_sym_orderby] = ACTIONS(5508), + [anon_sym_group] = ACTIONS(5508), + [anon_sym_by] = ACTIONS(5508), + [anon_sym_select] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [aux_sym_preproc_if_token3] = ACTIONS(5508), + [aux_sym_preproc_else_token1] = ACTIONS(5508), + [aux_sym_preproc_elif_token1] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510101,27 +508511,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3318] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(3318), [sym_preproc_endregion] = STATE(3318), [sym_preproc_line] = STATE(3318), @@ -510131,45 +508520,63 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(5995), + [anon_sym_LBRACK] = ACTIONS(5995), + [anon_sym_COLON] = ACTIONS(5995), + [anon_sym_COMMA] = ACTIONS(5995), + [anon_sym_RBRACK] = ACTIONS(5995), + [anon_sym_LPAREN] = ACTIONS(5995), + [anon_sym_RPAREN] = ACTIONS(5995), + [anon_sym_RBRACE] = ACTIONS(5995), + [anon_sym_LT] = ACTIONS(5997), + [anon_sym_GT] = ACTIONS(5997), + [anon_sym_in] = ACTIONS(5997), + [anon_sym_where] = ACTIONS(5995), + [anon_sym_QMARK] = ACTIONS(5997), + [anon_sym_DOT] = ACTIONS(5997), + [anon_sym_EQ_GT] = ACTIONS(5995), + [anon_sym_STAR] = ACTIONS(5995), + [anon_sym_switch] = ACTIONS(5995), + [anon_sym_DOT_DOT] = ACTIONS(5995), + [anon_sym_LT_EQ] = ACTIONS(5995), + [anon_sym_GT_EQ] = ACTIONS(5995), + [anon_sym_and] = ACTIONS(5995), + [anon_sym_or] = ACTIONS(5997), + [anon_sym_EQ_EQ] = ACTIONS(5995), + [anon_sym_BANG_EQ] = ACTIONS(5995), + [anon_sym_AMP_AMP] = ACTIONS(5995), + [anon_sym_PIPE_PIPE] = ACTIONS(5995), + [anon_sym_AMP] = ACTIONS(5997), + [sym_op_bitwise_or] = ACTIONS(5997), + [anon_sym_CARET] = ACTIONS(5995), + [sym_op_left_shift] = ACTIONS(5995), + [sym_op_right_shift] = ACTIONS(5997), + [sym_op_unsigned_right_shift] = ACTIONS(5995), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [sym_op_divide] = ACTIONS(5997), + [sym_op_modulo] = ACTIONS(5995), + [sym_op_coalescing] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5997), + [anon_sym_PLUS_PLUS] = ACTIONS(5995), + [anon_sym_DASH_DASH] = ACTIONS(5995), + [anon_sym_from] = ACTIONS(5995), + [anon_sym_into] = ACTIONS(5995), + [anon_sym_join] = ACTIONS(5995), + [anon_sym_on] = ACTIONS(5995), + [anon_sym_equals] = ACTIONS(5995), + [anon_sym_let] = ACTIONS(5995), + [anon_sym_orderby] = ACTIONS(5995), + [anon_sym_group] = ACTIONS(5995), + [anon_sym_by] = ACTIONS(5995), + [anon_sym_select] = ACTIONS(5995), + [anon_sym_as] = ACTIONS(5995), + [anon_sym_is] = ACTIONS(5995), + [anon_sym_DASH_GT] = ACTIONS(5995), + [anon_sym_with] = ACTIONS(5995), + [aux_sym_preproc_if_token3] = ACTIONS(5995), + [aux_sym_preproc_else_token1] = ACTIONS(5995), + [aux_sym_preproc_elif_token1] = ACTIONS(5995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510182,27 +508589,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3319] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(3319), [sym_preproc_endregion] = STATE(3319), [sym_preproc_line] = STATE(3319), @@ -510212,45 +508598,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3319), [sym_preproc_define] = STATE(3319), [sym_preproc_undef] = STATE(3319), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(5999), + [anon_sym_LBRACK] = ACTIONS(5999), + [anon_sym_COLON] = ACTIONS(5999), + [anon_sym_COMMA] = ACTIONS(5999), + [anon_sym_RBRACK] = ACTIONS(5999), + [anon_sym_LPAREN] = ACTIONS(5999), + [anon_sym_RPAREN] = ACTIONS(5999), + [anon_sym_RBRACE] = ACTIONS(5999), + [anon_sym_LT] = ACTIONS(6001), + [anon_sym_GT] = ACTIONS(6001), + [anon_sym_in] = ACTIONS(6001), + [anon_sym_where] = ACTIONS(5999), + [anon_sym_QMARK] = ACTIONS(6001), + [anon_sym_DOT] = ACTIONS(6001), + [anon_sym_EQ_GT] = ACTIONS(5999), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_switch] = ACTIONS(5999), + [anon_sym_DOT_DOT] = ACTIONS(5999), + [anon_sym_LT_EQ] = ACTIONS(5999), + [anon_sym_GT_EQ] = ACTIONS(5999), + [anon_sym_and] = ACTIONS(5999), + [anon_sym_or] = ACTIONS(6001), + [anon_sym_EQ_EQ] = ACTIONS(5999), + [anon_sym_BANG_EQ] = ACTIONS(5999), + [anon_sym_AMP_AMP] = ACTIONS(5999), + [anon_sym_PIPE_PIPE] = ACTIONS(5999), + [anon_sym_AMP] = ACTIONS(6001), + [sym_op_bitwise_or] = ACTIONS(6001), + [anon_sym_CARET] = ACTIONS(5999), + [sym_op_left_shift] = ACTIONS(5999), + [sym_op_right_shift] = ACTIONS(6001), + [sym_op_unsigned_right_shift] = ACTIONS(5999), + [anon_sym_PLUS] = ACTIONS(6001), + [anon_sym_DASH] = ACTIONS(6001), + [sym_op_divide] = ACTIONS(6001), + [sym_op_modulo] = ACTIONS(5999), + [sym_op_coalescing] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(6001), + [anon_sym_PLUS_PLUS] = ACTIONS(5999), + [anon_sym_DASH_DASH] = ACTIONS(5999), + [anon_sym_from] = ACTIONS(5999), + [anon_sym_into] = ACTIONS(5999), + [anon_sym_join] = ACTIONS(5999), + [anon_sym_on] = ACTIONS(5999), + [anon_sym_equals] = ACTIONS(5999), + [anon_sym_let] = ACTIONS(5999), + [anon_sym_orderby] = ACTIONS(5999), + [anon_sym_group] = ACTIONS(5999), + [anon_sym_by] = ACTIONS(5999), + [anon_sym_select] = ACTIONS(5999), + [anon_sym_as] = ACTIONS(5999), + [anon_sym_is] = ACTIONS(5999), + [anon_sym_DASH_GT] = ACTIONS(5999), + [anon_sym_with] = ACTIONS(5999), + [aux_sym_preproc_if_token3] = ACTIONS(5999), + [aux_sym_preproc_else_token1] = ACTIONS(5999), + [aux_sym_preproc_elif_token1] = ACTIONS(5999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510263,27 +508667,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3320] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3320), [sym_preproc_endregion] = STATE(3320), [sym_preproc_line] = STATE(3320), @@ -510293,44 +508676,63 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_COLON] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_RBRACK] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3191), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_EQ_GT] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_EQ] = ACTIONS(3193), + [anon_sym_and] = ACTIONS(3193), + [anon_sym_or] = ACTIONS(3191), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_PIPE_PIPE] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [sym_op_bitwise_or] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3193), + [sym_op_left_shift] = ACTIONS(3193), + [sym_op_right_shift] = ACTIONS(3191), + [sym_op_unsigned_right_shift] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [sym_op_divide] = ACTIONS(3191), + [sym_op_modulo] = ACTIONS(3193), + [sym_op_coalescing] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = 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_group] = ACTIONS(3193), + [anon_sym_by] = ACTIONS(3193), + [anon_sym_select] = ACTIONS(3193), + [anon_sym_as] = ACTIONS(3193), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_DASH_GT] = ACTIONS(3193), + [anon_sym_with] = 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), @@ -510341,30 +508743,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(4672), }, [3321] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(3321), [sym_preproc_endregion] = STATE(3321), [sym_preproc_line] = STATE(3321), @@ -510374,45 +508754,63 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(6003), + [anon_sym_LBRACK] = ACTIONS(6003), + [anon_sym_COLON] = ACTIONS(6003), + [anon_sym_COMMA] = ACTIONS(6003), + [anon_sym_RBRACK] = ACTIONS(6003), + [anon_sym_LPAREN] = ACTIONS(6003), + [anon_sym_RPAREN] = ACTIONS(6003), + [anon_sym_RBRACE] = ACTIONS(6003), + [anon_sym_LT] = ACTIONS(6005), + [anon_sym_GT] = ACTIONS(6005), + [anon_sym_in] = ACTIONS(6005), + [anon_sym_where] = ACTIONS(6003), + [anon_sym_QMARK] = ACTIONS(6005), + [anon_sym_DOT] = ACTIONS(6005), + [anon_sym_EQ_GT] = ACTIONS(6003), + [anon_sym_STAR] = ACTIONS(6003), + [anon_sym_switch] = ACTIONS(6003), + [anon_sym_DOT_DOT] = ACTIONS(6003), + [anon_sym_LT_EQ] = ACTIONS(6003), + [anon_sym_GT_EQ] = ACTIONS(6003), + [anon_sym_and] = ACTIONS(6003), + [anon_sym_or] = ACTIONS(6005), + [anon_sym_EQ_EQ] = ACTIONS(6003), + [anon_sym_BANG_EQ] = ACTIONS(6003), + [anon_sym_AMP_AMP] = ACTIONS(6003), + [anon_sym_PIPE_PIPE] = ACTIONS(6003), + [anon_sym_AMP] = ACTIONS(6005), + [sym_op_bitwise_or] = ACTIONS(6005), + [anon_sym_CARET] = ACTIONS(6003), + [sym_op_left_shift] = ACTIONS(6003), + [sym_op_right_shift] = ACTIONS(6005), + [sym_op_unsigned_right_shift] = ACTIONS(6003), + [anon_sym_PLUS] = ACTIONS(6005), + [anon_sym_DASH] = ACTIONS(6005), + [sym_op_divide] = ACTIONS(6005), + [sym_op_modulo] = ACTIONS(6003), + [sym_op_coalescing] = ACTIONS(6003), + [anon_sym_BANG] = ACTIONS(6005), + [anon_sym_PLUS_PLUS] = ACTIONS(6003), + [anon_sym_DASH_DASH] = ACTIONS(6003), + [anon_sym_from] = ACTIONS(6003), + [anon_sym_into] = ACTIONS(6003), + [anon_sym_join] = ACTIONS(6003), + [anon_sym_on] = ACTIONS(6003), + [anon_sym_equals] = ACTIONS(6003), + [anon_sym_let] = ACTIONS(6003), + [anon_sym_orderby] = ACTIONS(6003), + [anon_sym_group] = ACTIONS(6003), + [anon_sym_by] = ACTIONS(6003), + [anon_sym_select] = ACTIONS(6003), + [anon_sym_as] = ACTIONS(6003), + [anon_sym_is] = ACTIONS(6003), + [anon_sym_DASH_GT] = ACTIONS(6003), + [anon_sym_with] = ACTIONS(6003), + [aux_sym_preproc_if_token3] = ACTIONS(6003), + [aux_sym_preproc_else_token1] = ACTIONS(6003), + [aux_sym_preproc_elif_token1] = ACTIONS(6003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510425,27 +508823,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3322] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(3322), [sym_preproc_endregion] = STATE(3322), [sym_preproc_line] = STATE(3322), @@ -510455,45 +508832,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3322), [sym_preproc_define] = STATE(3322), [sym_preproc_undef] = STATE(3322), - [anon_sym_SEMI] = ACTIONS(4708), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5644), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5648), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5650), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4708), - [aux_sym_preproc_else_token1] = ACTIONS(4708), - [aux_sym_preproc_elif_token1] = ACTIONS(4708), + [anon_sym_SEMI] = ACTIONS(6007), + [anon_sym_LBRACK] = ACTIONS(6007), + [anon_sym_COLON] = ACTIONS(6007), + [anon_sym_COMMA] = ACTIONS(6007), + [anon_sym_RBRACK] = ACTIONS(6007), + [anon_sym_LPAREN] = ACTIONS(6007), + [anon_sym_RPAREN] = ACTIONS(6007), + [anon_sym_RBRACE] = ACTIONS(6007), + [anon_sym_LT] = ACTIONS(6009), + [anon_sym_GT] = ACTIONS(6009), + [anon_sym_in] = ACTIONS(6009), + [anon_sym_where] = ACTIONS(6007), + [anon_sym_QMARK] = ACTIONS(6009), + [anon_sym_DOT] = ACTIONS(6009), + [anon_sym_EQ_GT] = ACTIONS(6007), + [anon_sym_STAR] = ACTIONS(6007), + [anon_sym_switch] = ACTIONS(6007), + [anon_sym_DOT_DOT] = ACTIONS(6007), + [anon_sym_LT_EQ] = ACTIONS(6007), + [anon_sym_GT_EQ] = ACTIONS(6007), + [anon_sym_and] = ACTIONS(6007), + [anon_sym_or] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6007), + [anon_sym_BANG_EQ] = ACTIONS(6007), + [anon_sym_AMP_AMP] = ACTIONS(6007), + [anon_sym_PIPE_PIPE] = ACTIONS(6007), + [anon_sym_AMP] = ACTIONS(6009), + [sym_op_bitwise_or] = ACTIONS(6009), + [anon_sym_CARET] = ACTIONS(6007), + [sym_op_left_shift] = ACTIONS(6007), + [sym_op_right_shift] = ACTIONS(6009), + [sym_op_unsigned_right_shift] = ACTIONS(6007), + [anon_sym_PLUS] = ACTIONS(6009), + [anon_sym_DASH] = ACTIONS(6009), + [sym_op_divide] = ACTIONS(6009), + [sym_op_modulo] = ACTIONS(6007), + [sym_op_coalescing] = ACTIONS(6007), + [anon_sym_BANG] = ACTIONS(6009), + [anon_sym_PLUS_PLUS] = ACTIONS(6007), + [anon_sym_DASH_DASH] = ACTIONS(6007), + [anon_sym_from] = ACTIONS(6007), + [anon_sym_into] = ACTIONS(6007), + [anon_sym_join] = ACTIONS(6007), + [anon_sym_on] = ACTIONS(6007), + [anon_sym_equals] = ACTIONS(6007), + [anon_sym_let] = ACTIONS(6007), + [anon_sym_orderby] = ACTIONS(6007), + [anon_sym_group] = ACTIONS(6007), + [anon_sym_by] = ACTIONS(6007), + [anon_sym_select] = ACTIONS(6007), + [anon_sym_as] = ACTIONS(6007), + [anon_sym_is] = ACTIONS(6007), + [anon_sym_DASH_GT] = ACTIONS(6007), + [anon_sym_with] = ACTIONS(6007), + [aux_sym_preproc_if_token3] = ACTIONS(6007), + [aux_sym_preproc_else_token1] = ACTIONS(6007), + [aux_sym_preproc_elif_token1] = ACTIONS(6007), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510506,27 +508901,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3323] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3323), [sym_preproc_endregion] = STATE(3323), [sym_preproc_line] = STATE(3323), @@ -510536,45 +508925,48 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5650), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5356), + [anon_sym_QMARK] = ACTIONS(5843), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5358), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5847), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5356), + [anon_sym_join] = ACTIONS(5356), + [anon_sym_let] = ACTIONS(5356), + [anon_sym_orderby] = ACTIONS(5356), + [anon_sym_group] = ACTIONS(5356), + [anon_sym_select] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(5851), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510587,27 +508979,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3324] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(3324), [sym_preproc_endregion] = STATE(3324), [sym_preproc_line] = STATE(3324), @@ -510617,45 +508988,63 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5650), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(6011), + [anon_sym_LBRACK] = ACTIONS(6011), + [anon_sym_COLON] = ACTIONS(6011), + [anon_sym_COMMA] = ACTIONS(6011), + [anon_sym_RBRACK] = ACTIONS(6011), + [anon_sym_LPAREN] = ACTIONS(6011), + [anon_sym_RPAREN] = ACTIONS(6011), + [anon_sym_RBRACE] = ACTIONS(6011), + [anon_sym_LT] = ACTIONS(6013), + [anon_sym_GT] = ACTIONS(6013), + [anon_sym_in] = ACTIONS(6013), + [anon_sym_where] = ACTIONS(6011), + [anon_sym_QMARK] = ACTIONS(6013), + [anon_sym_DOT] = ACTIONS(6013), + [anon_sym_EQ_GT] = ACTIONS(6011), + [anon_sym_STAR] = ACTIONS(6011), + [anon_sym_switch] = ACTIONS(6011), + [anon_sym_DOT_DOT] = ACTIONS(6011), + [anon_sym_LT_EQ] = ACTIONS(6011), + [anon_sym_GT_EQ] = ACTIONS(6011), + [anon_sym_and] = ACTIONS(6011), + [anon_sym_or] = ACTIONS(6013), + [anon_sym_EQ_EQ] = ACTIONS(6011), + [anon_sym_BANG_EQ] = ACTIONS(6011), + [anon_sym_AMP_AMP] = ACTIONS(6011), + [anon_sym_PIPE_PIPE] = ACTIONS(6011), + [anon_sym_AMP] = ACTIONS(6013), + [sym_op_bitwise_or] = ACTIONS(6013), + [anon_sym_CARET] = ACTIONS(6011), + [sym_op_left_shift] = ACTIONS(6011), + [sym_op_right_shift] = ACTIONS(6013), + [sym_op_unsigned_right_shift] = ACTIONS(6011), + [anon_sym_PLUS] = ACTIONS(6013), + [anon_sym_DASH] = ACTIONS(6013), + [sym_op_divide] = ACTIONS(6013), + [sym_op_modulo] = ACTIONS(6011), + [sym_op_coalescing] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6013), + [anon_sym_PLUS_PLUS] = ACTIONS(6011), + [anon_sym_DASH_DASH] = ACTIONS(6011), + [anon_sym_from] = ACTIONS(6011), + [anon_sym_into] = ACTIONS(6011), + [anon_sym_join] = ACTIONS(6011), + [anon_sym_on] = ACTIONS(6011), + [anon_sym_equals] = ACTIONS(6011), + [anon_sym_let] = ACTIONS(6011), + [anon_sym_orderby] = ACTIONS(6011), + [anon_sym_group] = ACTIONS(6011), + [anon_sym_by] = ACTIONS(6011), + [anon_sym_select] = ACTIONS(6011), + [anon_sym_as] = ACTIONS(6011), + [anon_sym_is] = ACTIONS(6011), + [anon_sym_DASH_GT] = ACTIONS(6011), + [anon_sym_with] = ACTIONS(6011), + [aux_sym_preproc_if_token3] = ACTIONS(6011), + [aux_sym_preproc_else_token1] = ACTIONS(6011), + [aux_sym_preproc_elif_token1] = ACTIONS(6011), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510668,27 +509057,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3325] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(3325), [sym_preproc_endregion] = STATE(3325), [sym_preproc_line] = STATE(3325), @@ -510698,45 +509066,63 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5650), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(6015), + [anon_sym_LBRACK] = ACTIONS(6015), + [anon_sym_COLON] = ACTIONS(6015), + [anon_sym_COMMA] = ACTIONS(6015), + [anon_sym_RBRACK] = ACTIONS(6015), + [anon_sym_LPAREN] = ACTIONS(6015), + [anon_sym_RPAREN] = ACTIONS(6015), + [anon_sym_RBRACE] = ACTIONS(6015), + [anon_sym_LT] = ACTIONS(6017), + [anon_sym_GT] = ACTIONS(6017), + [anon_sym_in] = ACTIONS(6017), + [anon_sym_where] = ACTIONS(6015), + [anon_sym_QMARK] = ACTIONS(6017), + [anon_sym_DOT] = ACTIONS(6017), + [anon_sym_EQ_GT] = ACTIONS(6015), + [anon_sym_STAR] = ACTIONS(6015), + [anon_sym_switch] = ACTIONS(6015), + [anon_sym_DOT_DOT] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_and] = ACTIONS(6015), + [anon_sym_or] = ACTIONS(6017), + [anon_sym_EQ_EQ] = ACTIONS(6015), + [anon_sym_BANG_EQ] = ACTIONS(6015), + [anon_sym_AMP_AMP] = ACTIONS(6015), + [anon_sym_PIPE_PIPE] = ACTIONS(6015), + [anon_sym_AMP] = ACTIONS(6017), + [sym_op_bitwise_or] = ACTIONS(6017), + [anon_sym_CARET] = ACTIONS(6015), + [sym_op_left_shift] = ACTIONS(6015), + [sym_op_right_shift] = ACTIONS(6017), + [sym_op_unsigned_right_shift] = ACTIONS(6015), + [anon_sym_PLUS] = ACTIONS(6017), + [anon_sym_DASH] = ACTIONS(6017), + [sym_op_divide] = ACTIONS(6017), + [sym_op_modulo] = ACTIONS(6015), + [sym_op_coalescing] = ACTIONS(6015), + [anon_sym_BANG] = ACTIONS(6017), + [anon_sym_PLUS_PLUS] = ACTIONS(6015), + [anon_sym_DASH_DASH] = ACTIONS(6015), + [anon_sym_from] = ACTIONS(6015), + [anon_sym_into] = ACTIONS(6015), + [anon_sym_join] = ACTIONS(6015), + [anon_sym_on] = ACTIONS(6015), + [anon_sym_equals] = ACTIONS(6015), + [anon_sym_let] = ACTIONS(6015), + [anon_sym_orderby] = ACTIONS(6015), + [anon_sym_group] = ACTIONS(6015), + [anon_sym_by] = ACTIONS(6015), + [anon_sym_select] = ACTIONS(6015), + [anon_sym_as] = ACTIONS(6015), + [anon_sym_is] = ACTIONS(6015), + [anon_sym_DASH_GT] = ACTIONS(6015), + [anon_sym_with] = ACTIONS(6015), + [aux_sym_preproc_if_token3] = ACTIONS(6015), + [aux_sym_preproc_else_token1] = ACTIONS(6015), + [aux_sym_preproc_elif_token1] = ACTIONS(6015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510749,27 +509135,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3326] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(3326), [sym_preproc_endregion] = STATE(3326), [sym_preproc_line] = STATE(3326), @@ -510779,45 +509144,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3326), [sym_preproc_define] = STATE(3326), [sym_preproc_undef] = STATE(3326), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5650), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_COLON] = ACTIONS(3388), + [anon_sym_COMMA] = ACTIONS(3388), + [anon_sym_RBRACK] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_RPAREN] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_GT] = ACTIONS(3386), + [anon_sym_in] = ACTIONS(3386), + [anon_sym_where] = ACTIONS(3388), + [anon_sym_QMARK] = ACTIONS(3386), + [anon_sym_DOT] = ACTIONS(3386), + [anon_sym_EQ_GT] = ACTIONS(3388), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3388), + [anon_sym_DOT_DOT] = ACTIONS(3388), + [anon_sym_LT_EQ] = ACTIONS(3388), + [anon_sym_GT_EQ] = ACTIONS(3388), + [anon_sym_and] = ACTIONS(3388), + [anon_sym_or] = ACTIONS(3386), + [anon_sym_EQ_EQ] = ACTIONS(3388), + [anon_sym_BANG_EQ] = ACTIONS(3388), + [anon_sym_AMP_AMP] = ACTIONS(3388), + [anon_sym_PIPE_PIPE] = ACTIONS(3388), + [anon_sym_AMP] = ACTIONS(3386), + [sym_op_bitwise_or] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3388), + [sym_op_left_shift] = ACTIONS(3388), + [sym_op_right_shift] = ACTIONS(3386), + [sym_op_unsigned_right_shift] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [sym_op_divide] = ACTIONS(3386), + [sym_op_modulo] = ACTIONS(3388), + [sym_op_coalescing] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_from] = ACTIONS(3388), + [anon_sym_into] = ACTIONS(3388), + [anon_sym_join] = ACTIONS(3388), + [anon_sym_on] = ACTIONS(3388), + [anon_sym_equals] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3388), + [anon_sym_orderby] = ACTIONS(3388), + [anon_sym_group] = ACTIONS(3388), + [anon_sym_by] = ACTIONS(3388), + [anon_sym_select] = ACTIONS(3388), + [anon_sym_as] = ACTIONS(3388), + [anon_sym_is] = ACTIONS(3388), + [anon_sym_DASH_GT] = ACTIONS(3388), + [anon_sym_with] = ACTIONS(3388), + [aux_sym_preproc_if_token3] = ACTIONS(3388), + [aux_sym_preproc_else_token1] = ACTIONS(3388), + [aux_sym_preproc_elif_token1] = ACTIONS(3388), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510830,27 +509213,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3327] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(3327), [sym_preproc_endregion] = STATE(3327), [sym_preproc_line] = STATE(3327), @@ -510860,45 +509222,63 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5650), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(4435), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_RBRACK] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_RPAREN] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4435), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_QMARK] = ACTIONS(4433), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_EQ_GT] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [anon_sym_switch] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_and] = ACTIONS(4435), + [anon_sym_or] = ACTIONS(4433), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_AMP] = ACTIONS(4433), + [sym_op_bitwise_or] = ACTIONS(4433), + [anon_sym_CARET] = ACTIONS(4435), + [sym_op_left_shift] = ACTIONS(4435), + [sym_op_right_shift] = ACTIONS(4433), + [sym_op_unsigned_right_shift] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [sym_op_divide] = ACTIONS(4433), + [sym_op_modulo] = ACTIONS(4435), + [sym_op_coalescing] = ACTIONS(4435), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_from] = 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_group] = ACTIONS(4435), + [anon_sym_by] = ACTIONS(4435), + [anon_sym_select] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_DASH_GT] = ACTIONS(4435), + [anon_sym_with] = 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), @@ -510911,8 +509291,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3328] = { - [sym_argument_list] = STATE(3450), - [sym_initializer_expression] = STATE(3887), [sym_preproc_region] = STATE(3328), [sym_preproc_endregion] = STATE(3328), [sym_preproc_line] = STATE(3328), @@ -510922,64 +509300,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3328), [sym_preproc_define] = STATE(3328), [sym_preproc_undef] = STATE(3328), - [anon_sym_SEMI] = ACTIONS(5690), - [anon_sym_LBRACK] = ACTIONS(5690), - [anon_sym_COLON] = ACTIONS(5690), - [anon_sym_COMMA] = ACTIONS(5690), - [anon_sym_RBRACK] = ACTIONS(5690), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(5690), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(5690), - [anon_sym_LT] = ACTIONS(5692), - [anon_sym_GT] = ACTIONS(5692), - [anon_sym_in] = ACTIONS(5692), - [anon_sym_where] = ACTIONS(5690), - [anon_sym_QMARK] = ACTIONS(5692), - [anon_sym_BANG] = ACTIONS(5692), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5692), - [anon_sym_DASH] = ACTIONS(5692), - [anon_sym_STAR] = ACTIONS(5690), - [anon_sym_SLASH] = ACTIONS(5692), - [anon_sym_PERCENT] = ACTIONS(5690), - [anon_sym_CARET] = ACTIONS(5690), - [anon_sym_PIPE] = ACTIONS(5692), - [anon_sym_AMP] = ACTIONS(5692), - [anon_sym_LT_LT] = ACTIONS(5690), - [anon_sym_GT_GT] = ACTIONS(5692), - [anon_sym_GT_GT_GT] = ACTIONS(5690), - [anon_sym_EQ_EQ] = ACTIONS(5690), - [anon_sym_BANG_EQ] = ACTIONS(5690), - [anon_sym_GT_EQ] = ACTIONS(5690), - [anon_sym_LT_EQ] = ACTIONS(5690), - [anon_sym_DOT] = ACTIONS(5692), - [anon_sym_EQ_GT] = ACTIONS(5690), - [anon_sym_switch] = ACTIONS(5690), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5690), - [anon_sym_or] = ACTIONS(5692), - [anon_sym_AMP_AMP] = ACTIONS(5690), - [anon_sym_PIPE_PIPE] = ACTIONS(5690), - [sym_op_coalescing] = ACTIONS(5690), - [anon_sym_from] = ACTIONS(5690), - [anon_sym_into] = ACTIONS(5690), - [anon_sym_join] = ACTIONS(5690), - [anon_sym_on] = ACTIONS(5690), - [anon_sym_equals] = ACTIONS(5690), - [anon_sym_let] = ACTIONS(5690), - [anon_sym_orderby] = ACTIONS(5690), - [anon_sym_group] = ACTIONS(5690), - [anon_sym_by] = ACTIONS(5690), - [anon_sym_select] = ACTIONS(5690), - [anon_sym_as] = ACTIONS(5690), - [anon_sym_is] = ACTIONS(5690), - [anon_sym_DASH_GT] = ACTIONS(5690), - [anon_sym_with] = ACTIONS(5690), - [aux_sym_preproc_if_token3] = ACTIONS(5690), - [aux_sym_preproc_else_token1] = ACTIONS(5690), - [aux_sym_preproc_elif_token1] = ACTIONS(5690), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_COLON] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_RBRACK] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3191), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_EQ_GT] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_EQ] = ACTIONS(3193), + [anon_sym_and] = ACTIONS(3193), + [anon_sym_or] = ACTIONS(3191), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_PIPE_PIPE] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [sym_op_bitwise_or] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3193), + [sym_op_left_shift] = ACTIONS(3193), + [sym_op_right_shift] = ACTIONS(3191), + [sym_op_unsigned_right_shift] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [sym_op_divide] = ACTIONS(3191), + [sym_op_modulo] = ACTIONS(3193), + [sym_op_coalescing] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = 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_group] = ACTIONS(3193), + [anon_sym_by] = ACTIONS(3193), + [anon_sym_select] = ACTIONS(3193), + [anon_sym_as] = ACTIONS(3193), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_DASH_GT] = ACTIONS(3193), + [anon_sym_with] = 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), @@ -510992,27 +509369,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3329] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3329), [sym_preproc_endregion] = STATE(3329), [sym_preproc_line] = STATE(3329), @@ -511022,45 +509393,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3329), [sym_preproc_define] = STATE(3329), [sym_preproc_undef] = STATE(3329), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5650), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(5843), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5847), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5336), + [anon_sym_join] = ACTIONS(5336), + [anon_sym_let] = ACTIONS(5336), + [anon_sym_orderby] = ACTIONS(5336), + [anon_sym_group] = ACTIONS(5336), + [anon_sym_select] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(5851), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511073,27 +509447,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3330] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(875), + [sym_op_lte] = STATE(875), + [sym_op_eq] = STATE(873), + [sym_op_neq] = STATE(873), + [sym_op_gt] = STATE(875), + [sym_op_gte] = STATE(875), + [sym_op_and] = STATE(872), + [sym_op_or] = STATE(868), + [sym_op_bitwise_and] = STATE(906), + [sym_op_bitwise_xor] = STATE(905), + [sym_op_plus] = STATE(899), + [sym_op_minus] = STATE(899), + [sym_op_multiply] = STATE(886), [sym_preproc_region] = STATE(3330), [sym_preproc_endregion] = STATE(3330), [sym_preproc_line] = STATE(3330), @@ -511103,44 +509471,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3330), [sym_preproc_define] = STATE(3330), [sym_preproc_undef] = STATE(3330), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5314), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_RBRACK] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5314), + [aux_sym_preproc_if_token3] = ACTIONS(5314), + [aux_sym_preproc_else_token1] = ACTIONS(5314), + [aux_sym_preproc_elif_token1] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511151,30 +509523,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(4672), }, [3331] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3331), [sym_preproc_endregion] = STATE(3331), [sym_preproc_line] = STATE(3331), @@ -511184,44 +509534,63 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(4015), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_COLON] = ACTIONS(4015), + [anon_sym_COMMA] = ACTIONS(4015), + [anon_sym_RBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4015), + [anon_sym_RPAREN] = ACTIONS(4015), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4008), + [anon_sym_GT] = ACTIONS(4008), + [anon_sym_in] = ACTIONS(4015), + [anon_sym_where] = ACTIONS(4015), + [anon_sym_QMARK] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4008), + [anon_sym_EQ_GT] = ACTIONS(4015), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_switch] = ACTIONS(4015), + [anon_sym_DOT_DOT] = ACTIONS(4015), + [anon_sym_LT_EQ] = ACTIONS(4015), + [anon_sym_GT_EQ] = ACTIONS(4015), + [anon_sym_and] = ACTIONS(4015), + [anon_sym_or] = ACTIONS(4008), + [anon_sym_EQ_EQ] = ACTIONS(4015), + [anon_sym_BANG_EQ] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4008), + [sym_op_bitwise_or] = ACTIONS(4008), + [anon_sym_CARET] = ACTIONS(4015), + [sym_op_left_shift] = ACTIONS(4015), + [sym_op_right_shift] = ACTIONS(4008), + [sym_op_unsigned_right_shift] = ACTIONS(4015), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4008), + [sym_op_divide] = ACTIONS(4008), + [sym_op_modulo] = ACTIONS(4015), + [sym_op_coalescing] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(4008), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_from] = ACTIONS(4015), + [anon_sym_join] = ACTIONS(4015), + [anon_sym_on] = ACTIONS(4015), + [anon_sym_equals] = ACTIONS(4015), + [anon_sym_let] = ACTIONS(4015), + [anon_sym_orderby] = ACTIONS(4015), + [anon_sym_group] = ACTIONS(4015), + [anon_sym_by] = ACTIONS(4015), + [anon_sym_select] = ACTIONS(4015), + [anon_sym_as] = ACTIONS(4015), + [anon_sym_is] = ACTIONS(4015), + [anon_sym_DASH_GT] = ACTIONS(4015), + [anon_sym_with] = ACTIONS(4015), + [aux_sym_preproc_if_token3] = ACTIONS(4015), + [aux_sym_preproc_else_token1] = ACTIONS(4015), + [aux_sym_preproc_elif_token1] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511232,30 +509601,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3332] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3332), [sym_preproc_endregion] = STATE(3332), [sym_preproc_line] = STATE(3332), @@ -511265,44 +509627,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3332), [sym_preproc_define] = STATE(3332), [sym_preproc_undef] = STATE(3332), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5296), + [anon_sym_QMARK] = ACTIONS(5843), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5298), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5847), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5296), + [anon_sym_join] = ACTIONS(5296), + [anon_sym_let] = ACTIONS(5296), + [anon_sym_orderby] = ACTIONS(5296), + [anon_sym_group] = ACTIONS(5296), + [anon_sym_select] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(5851), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511313,30 +509679,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3333] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3333), [sym_preproc_endregion] = STATE(3333), [sym_preproc_line] = STATE(3333), @@ -511346,45 +509705,48 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5328), + [anon_sym_QMARK] = ACTIONS(5843), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5330), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5847), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5328), + [anon_sym_join] = ACTIONS(5328), + [anon_sym_let] = ACTIONS(5328), + [anon_sym_orderby] = ACTIONS(5328), + [anon_sym_group] = ACTIONS(5328), + [anon_sym_select] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(5851), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511406,66 +509768,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3334), [sym_preproc_define] = STATE(3334), [sym_preproc_undef] = STATE(3334), - [anon_sym_EQ] = ACTIONS(4564), - [anon_sym_LBRACK] = ACTIONS(4562), - [anon_sym_COMMA] = ACTIONS(4562), - [anon_sym_LPAREN] = ACTIONS(4562), - [anon_sym_LT] = ACTIONS(4564), - [anon_sym_GT] = ACTIONS(4564), - [anon_sym_where] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_BANG] = ACTIONS(4564), - [anon_sym_PLUS_PLUS] = ACTIONS(4562), - [anon_sym_DASH_DASH] = ACTIONS(4562), - [anon_sym_PLUS] = ACTIONS(4564), - [anon_sym_DASH] = ACTIONS(4564), - [anon_sym_STAR] = ACTIONS(4564), - [anon_sym_SLASH] = ACTIONS(4564), - [anon_sym_PERCENT] = ACTIONS(4564), - [anon_sym_CARET] = ACTIONS(4564), - [anon_sym_PIPE] = ACTIONS(4564), - [anon_sym_AMP] = ACTIONS(4564), - [anon_sym_LT_LT] = ACTIONS(4564), - [anon_sym_GT_GT] = ACTIONS(4564), - [anon_sym_GT_GT_GT] = ACTIONS(4564), - [anon_sym_EQ_EQ] = ACTIONS(4562), - [anon_sym_BANG_EQ] = ACTIONS(4562), - [anon_sym_GT_EQ] = ACTIONS(4562), - [anon_sym_LT_EQ] = ACTIONS(4562), - [anon_sym_DOT] = ACTIONS(4564), - [anon_sym_switch] = ACTIONS(4562), - [anon_sym_DOT_DOT] = ACTIONS(4562), - [anon_sym_and] = ACTIONS(4562), - [anon_sym_or] = ACTIONS(4564), - [anon_sym_PLUS_EQ] = ACTIONS(4562), - [anon_sym_DASH_EQ] = ACTIONS(4562), - [anon_sym_STAR_EQ] = ACTIONS(4562), - [anon_sym_SLASH_EQ] = ACTIONS(4562), - [anon_sym_PERCENT_EQ] = ACTIONS(4562), - [anon_sym_AMP_EQ] = ACTIONS(4562), - [anon_sym_CARET_EQ] = ACTIONS(4562), - [anon_sym_PIPE_EQ] = ACTIONS(4562), - [anon_sym_LT_LT_EQ] = ACTIONS(4562), - [anon_sym_GT_GT_EQ] = ACTIONS(4562), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4562), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4562), - [anon_sym_AMP_AMP] = ACTIONS(4562), - [anon_sym_PIPE_PIPE] = ACTIONS(4562), - [sym_op_coalescing] = ACTIONS(4564), - [anon_sym_from] = ACTIONS(4562), - [anon_sym_into] = ACTIONS(4562), - [anon_sym_join] = ACTIONS(4562), - [anon_sym_let] = ACTIONS(4562), - [anon_sym_orderby] = ACTIONS(4562), - [anon_sym_ascending] = ACTIONS(4562), - [anon_sym_descending] = ACTIONS(4562), - [anon_sym_group] = ACTIONS(4562), - [anon_sym_select] = ACTIONS(4562), - [anon_sym_as] = ACTIONS(4564), - [anon_sym_is] = ACTIONS(4562), - [anon_sym_DASH_GT] = ACTIONS(4562), - [anon_sym_with] = ACTIONS(4562), - [sym_grit_metavariable] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_COLON] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_RBRACK] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_RPAREN] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4411), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_QMARK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_EQ_GT] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_switch] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_and] = ACTIONS(4411), + [anon_sym_or] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4409), + [sym_op_bitwise_or] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4411), + [sym_op_left_shift] = ACTIONS(4411), + [sym_op_right_shift] = ACTIONS(4409), + [sym_op_unsigned_right_shift] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [sym_op_divide] = ACTIONS(4409), + [sym_op_modulo] = ACTIONS(4411), + [sym_op_coalescing] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_from] = ACTIONS(4411), + [anon_sym_join] = ACTIONS(4411), + [anon_sym_on] = ACTIONS(4411), + [anon_sym_equals] = ACTIONS(4411), + [anon_sym_let] = ACTIONS(4411), + [anon_sym_orderby] = ACTIONS(4411), + [anon_sym_group] = ACTIONS(4411), + [anon_sym_by] = ACTIONS(4411), + [anon_sym_select] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_DASH_GT] = ACTIONS(4411), + [anon_sym_with] = ACTIONS(4411), + [aux_sym_preproc_if_token3] = ACTIONS(4411), + [aux_sym_preproc_else_token1] = ACTIONS(4411), + [aux_sym_preproc_elif_token1] = ACTIONS(4411), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511478,27 +509837,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3335] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(3335), [sym_preproc_endregion] = STATE(3335), [sym_preproc_line] = STATE(3335), @@ -511508,45 +509846,63 @@ 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(4672), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5648), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5650), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_COLON] = ACTIONS(4393), + [anon_sym_COMMA] = ACTIONS(4393), + [anon_sym_RBRACK] = ACTIONS(4393), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym_RPAREN] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4393), + [anon_sym_RBRACE] = ACTIONS(4393), + [anon_sym_LT] = ACTIONS(4391), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_EQ_GT] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_switch] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4393), + [anon_sym_LT_EQ] = ACTIONS(4393), + [anon_sym_GT_EQ] = ACTIONS(4393), + [anon_sym_and] = ACTIONS(4393), + [anon_sym_or] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_AMP_AMP] = ACTIONS(4393), + [anon_sym_PIPE_PIPE] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(4391), + [sym_op_bitwise_or] = ACTIONS(4391), + [anon_sym_CARET] = ACTIONS(4393), + [sym_op_left_shift] = ACTIONS(4393), + [sym_op_right_shift] = ACTIONS(4391), + [sym_op_unsigned_right_shift] = ACTIONS(4393), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [sym_op_divide] = ACTIONS(4391), + [sym_op_modulo] = ACTIONS(4393), + [sym_op_coalescing] = ACTIONS(4393), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4393), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_from] = 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_group] = ACTIONS(4393), + [anon_sym_by] = ACTIONS(4393), + [anon_sym_select] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_DASH_GT] = ACTIONS(4393), + [anon_sym_with] = ACTIONS(4393), + [aux_sym_preproc_if_token3] = ACTIONS(4393), + [aux_sym_preproc_else_token1] = ACTIONS(4393), + [aux_sym_preproc_elif_token1] = ACTIONS(4393), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511568,66 +509924,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3336), [sym_preproc_define] = STATE(3336), [sym_preproc_undef] = STATE(3336), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_COLON] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_RPAREN] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_where] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3201), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_GT_EQ] = ACTIONS(3201), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_catch] = ACTIONS(3201), - [anon_sym_finally] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_op_coalescing] = ACTIONS(3201), - [anon_sym_from] = 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_group] = ACTIONS(3201), - [anon_sym_by] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3201), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_with] = ACTIONS(3201), - [aux_sym_preproc_if_token3] = ACTIONS(3201), - [aux_sym_preproc_else_token1] = ACTIONS(3201), - [aux_sym_preproc_elif_token1] = ACTIONS(3201), + [anon_sym_SEMI] = ACTIONS(6019), + [anon_sym_LBRACK] = ACTIONS(6019), + [anon_sym_COLON] = ACTIONS(6019), + [anon_sym_COMMA] = ACTIONS(6019), + [anon_sym_RBRACK] = ACTIONS(6019), + [anon_sym_LPAREN] = ACTIONS(6019), + [anon_sym_RPAREN] = ACTIONS(6019), + [anon_sym_RBRACE] = ACTIONS(6019), + [anon_sym_LT] = ACTIONS(6021), + [anon_sym_GT] = ACTIONS(6021), + [anon_sym_in] = ACTIONS(6021), + [anon_sym_where] = ACTIONS(6019), + [anon_sym_QMARK] = ACTIONS(6021), + [anon_sym_DOT] = ACTIONS(6021), + [anon_sym_EQ_GT] = ACTIONS(6019), + [anon_sym_STAR] = ACTIONS(6019), + [anon_sym_switch] = ACTIONS(6019), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_LT_EQ] = ACTIONS(6019), + [anon_sym_GT_EQ] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(6019), + [anon_sym_or] = ACTIONS(6021), + [anon_sym_EQ_EQ] = ACTIONS(6019), + [anon_sym_BANG_EQ] = ACTIONS(6019), + [anon_sym_AMP_AMP] = ACTIONS(6019), + [anon_sym_PIPE_PIPE] = ACTIONS(6019), + [anon_sym_AMP] = ACTIONS(6021), + [sym_op_bitwise_or] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6019), + [sym_op_left_shift] = ACTIONS(6019), + [sym_op_right_shift] = ACTIONS(6021), + [sym_op_unsigned_right_shift] = ACTIONS(6019), + [anon_sym_PLUS] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [sym_op_divide] = ACTIONS(6021), + [sym_op_modulo] = ACTIONS(6019), + [sym_op_coalescing] = ACTIONS(6019), + [anon_sym_BANG] = ACTIONS(6021), + [anon_sym_PLUS_PLUS] = ACTIONS(6019), + [anon_sym_DASH_DASH] = ACTIONS(6019), + [anon_sym_from] = ACTIONS(6019), + [anon_sym_into] = ACTIONS(6019), + [anon_sym_join] = ACTIONS(6019), + [anon_sym_on] = ACTIONS(6019), + [anon_sym_equals] = ACTIONS(6019), + [anon_sym_let] = ACTIONS(6019), + [anon_sym_orderby] = ACTIONS(6019), + [anon_sym_group] = ACTIONS(6019), + [anon_sym_by] = ACTIONS(6019), + [anon_sym_select] = ACTIONS(6019), + [anon_sym_as] = ACTIONS(6019), + [anon_sym_is] = ACTIONS(6019), + [anon_sym_DASH_GT] = ACTIONS(6019), + [anon_sym_with] = ACTIONS(6019), + [aux_sym_preproc_if_token3] = ACTIONS(6019), + [aux_sym_preproc_else_token1] = ACTIONS(6019), + [aux_sym_preproc_elif_token1] = ACTIONS(6019), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511640,27 +509993,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3337] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3337), [sym_preproc_endregion] = STATE(3337), [sym_preproc_line] = STATE(3337), @@ -511670,44 +510017,48 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5668), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(5851), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511718,30 +510069,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4786), }, [3338] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3338), [sym_preproc_endregion] = STATE(3338), [sym_preproc_line] = STATE(3338), @@ -511751,44 +510095,48 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5847), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(5851), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511799,30 +510147,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3339] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3339), [sym_preproc_endregion] = STATE(3339), [sym_preproc_line] = STATE(3339), @@ -511832,45 +510173,48 @@ 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(4782), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5644), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5648), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5650), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4782), - [aux_sym_preproc_else_token1] = ACTIONS(4782), - [aux_sym_preproc_elif_token1] = ACTIONS(4782), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(5851), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511883,27 +510227,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3340] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3340), [sym_preproc_endregion] = STATE(3340), [sym_preproc_line] = STATE(3340), @@ -511913,44 +510236,63 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(6023), + [anon_sym_LBRACK] = ACTIONS(6023), + [anon_sym_COLON] = ACTIONS(6023), + [anon_sym_COMMA] = ACTIONS(6023), + [anon_sym_RBRACK] = ACTIONS(6023), + [anon_sym_LPAREN] = ACTIONS(6023), + [anon_sym_RPAREN] = ACTIONS(6023), + [anon_sym_RBRACE] = ACTIONS(6023), + [anon_sym_LT] = ACTIONS(6025), + [anon_sym_GT] = ACTIONS(6025), + [anon_sym_in] = ACTIONS(6025), + [anon_sym_where] = ACTIONS(6023), + [anon_sym_QMARK] = ACTIONS(6025), + [anon_sym_DOT] = ACTIONS(6025), + [anon_sym_EQ_GT] = ACTIONS(6023), + [anon_sym_STAR] = ACTIONS(6023), + [anon_sym_switch] = ACTIONS(6023), + [anon_sym_DOT_DOT] = ACTIONS(6023), + [anon_sym_LT_EQ] = ACTIONS(6023), + [anon_sym_GT_EQ] = ACTIONS(6023), + [anon_sym_and] = ACTIONS(6023), + [anon_sym_or] = ACTIONS(6025), + [anon_sym_EQ_EQ] = ACTIONS(6023), + [anon_sym_BANG_EQ] = ACTIONS(6023), + [anon_sym_AMP_AMP] = ACTIONS(6023), + [anon_sym_PIPE_PIPE] = ACTIONS(6023), + [anon_sym_AMP] = ACTIONS(6025), + [sym_op_bitwise_or] = ACTIONS(6025), + [anon_sym_CARET] = ACTIONS(6023), + [sym_op_left_shift] = ACTIONS(6023), + [sym_op_right_shift] = ACTIONS(6025), + [sym_op_unsigned_right_shift] = ACTIONS(6023), + [anon_sym_PLUS] = ACTIONS(6025), + [anon_sym_DASH] = ACTIONS(6025), + [sym_op_divide] = ACTIONS(6025), + [sym_op_modulo] = ACTIONS(6023), + [sym_op_coalescing] = ACTIONS(6023), + [anon_sym_BANG] = ACTIONS(6025), + [anon_sym_PLUS_PLUS] = ACTIONS(6023), + [anon_sym_DASH_DASH] = ACTIONS(6023), + [anon_sym_from] = ACTIONS(6023), + [anon_sym_into] = ACTIONS(6023), + [anon_sym_join] = ACTIONS(6023), + [anon_sym_on] = ACTIONS(6023), + [anon_sym_equals] = ACTIONS(6023), + [anon_sym_let] = ACTIONS(6023), + [anon_sym_orderby] = ACTIONS(6023), + [anon_sym_group] = ACTIONS(6023), + [anon_sym_by] = ACTIONS(6023), + [anon_sym_select] = ACTIONS(6023), + [anon_sym_as] = ACTIONS(6023), + [anon_sym_is] = ACTIONS(6023), + [anon_sym_DASH_GT] = ACTIONS(6023), + [anon_sym_with] = ACTIONS(6023), + [aux_sym_preproc_if_token3] = ACTIONS(6023), + [aux_sym_preproc_else_token1] = ACTIONS(6023), + [aux_sym_preproc_elif_token1] = ACTIONS(6023), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511961,30 +510303,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3341] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3341), [sym_preproc_endregion] = STATE(3341), [sym_preproc_line] = STATE(3341), @@ -511994,45 +510329,48 @@ 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(4748), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5644), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5648), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5650), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4748), - [aux_sym_preproc_else_token1] = ACTIONS(4748), - [aux_sym_preproc_elif_token1] = ACTIONS(4748), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(5851), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512045,6 +510383,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3342] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3342), [sym_preproc_endregion] = STATE(3342), [sym_preproc_line] = STATE(3342), @@ -512054,66 +510407,48 @@ 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_EQ] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(4554), - [anon_sym_COMMA] = ACTIONS(4554), - [anon_sym_LPAREN] = ACTIONS(4554), - [anon_sym_LT] = ACTIONS(4556), - [anon_sym_GT] = ACTIONS(4556), - [anon_sym_where] = ACTIONS(4554), - [anon_sym_QMARK] = ACTIONS(4556), - [anon_sym_BANG] = ACTIONS(4556), - [anon_sym_PLUS_PLUS] = ACTIONS(4554), - [anon_sym_DASH_DASH] = ACTIONS(4554), - [anon_sym_PLUS] = ACTIONS(4556), - [anon_sym_DASH] = ACTIONS(4556), - [anon_sym_STAR] = ACTIONS(4556), - [anon_sym_SLASH] = ACTIONS(4556), - [anon_sym_PERCENT] = ACTIONS(4556), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_PIPE] = ACTIONS(4556), - [anon_sym_AMP] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4556), - [anon_sym_GT_GT] = ACTIONS(4556), - [anon_sym_GT_GT_GT] = ACTIONS(4556), - [anon_sym_EQ_EQ] = ACTIONS(4554), - [anon_sym_BANG_EQ] = ACTIONS(4554), - [anon_sym_GT_EQ] = ACTIONS(4554), - [anon_sym_LT_EQ] = ACTIONS(4554), - [anon_sym_DOT] = ACTIONS(4556), - [anon_sym_switch] = ACTIONS(4554), - [anon_sym_DOT_DOT] = ACTIONS(4554), - [anon_sym_and] = ACTIONS(4554), - [anon_sym_or] = ACTIONS(4556), - [anon_sym_PLUS_EQ] = ACTIONS(4554), - [anon_sym_DASH_EQ] = ACTIONS(4554), - [anon_sym_STAR_EQ] = ACTIONS(4554), - [anon_sym_SLASH_EQ] = ACTIONS(4554), - [anon_sym_PERCENT_EQ] = ACTIONS(4554), - [anon_sym_AMP_EQ] = ACTIONS(4554), - [anon_sym_CARET_EQ] = ACTIONS(4554), - [anon_sym_PIPE_EQ] = ACTIONS(4554), - [anon_sym_LT_LT_EQ] = ACTIONS(4554), - [anon_sym_GT_GT_EQ] = ACTIONS(4554), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4554), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4554), - [anon_sym_AMP_AMP] = ACTIONS(4554), - [anon_sym_PIPE_PIPE] = ACTIONS(4554), - [sym_op_coalescing] = ACTIONS(4556), - [anon_sym_from] = ACTIONS(4554), - [anon_sym_into] = ACTIONS(4554), - [anon_sym_join] = ACTIONS(4554), - [anon_sym_let] = ACTIONS(4554), - [anon_sym_orderby] = ACTIONS(4554), - [anon_sym_ascending] = ACTIONS(4554), - [anon_sym_descending] = ACTIONS(4554), - [anon_sym_group] = ACTIONS(4554), - [anon_sym_select] = ACTIONS(4554), - [anon_sym_as] = ACTIONS(4556), - [anon_sym_is] = ACTIONS(4554), - [anon_sym_DASH_GT] = ACTIONS(4554), - [anon_sym_with] = ACTIONS(4554), - [sym_grit_metavariable] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(5851), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512126,27 +510461,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3343] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3343), [sym_preproc_endregion] = STATE(3343), [sym_preproc_line] = STATE(3343), @@ -512156,45 +510470,63 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4782), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5678), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5680), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5676), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_COLON] = ACTIONS(6027), + [anon_sym_COMMA] = ACTIONS(6027), + [anon_sym_RBRACK] = ACTIONS(6027), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_RBRACE] = ACTIONS(6027), + [anon_sym_LT] = ACTIONS(6029), + [anon_sym_GT] = ACTIONS(6029), + [anon_sym_in] = ACTIONS(6029), + [anon_sym_where] = ACTIONS(6027), + [anon_sym_QMARK] = ACTIONS(6029), + [anon_sym_DOT] = ACTIONS(6029), + [anon_sym_EQ_GT] = ACTIONS(6027), + [anon_sym_STAR] = ACTIONS(6027), + [anon_sym_switch] = ACTIONS(6027), + [anon_sym_DOT_DOT] = ACTIONS(6027), + [anon_sym_LT_EQ] = ACTIONS(6027), + [anon_sym_GT_EQ] = ACTIONS(6027), + [anon_sym_and] = ACTIONS(6027), + [anon_sym_or] = ACTIONS(6029), + [anon_sym_EQ_EQ] = ACTIONS(6027), + [anon_sym_BANG_EQ] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6029), + [sym_op_bitwise_or] = ACTIONS(6029), + [anon_sym_CARET] = ACTIONS(6027), + [sym_op_left_shift] = ACTIONS(6027), + [sym_op_right_shift] = ACTIONS(6029), + [sym_op_unsigned_right_shift] = ACTIONS(6027), + [anon_sym_PLUS] = ACTIONS(6029), + [anon_sym_DASH] = ACTIONS(6029), + [sym_op_divide] = ACTIONS(6029), + [sym_op_modulo] = ACTIONS(6027), + [sym_op_coalescing] = ACTIONS(6027), + [anon_sym_BANG] = ACTIONS(6029), + [anon_sym_PLUS_PLUS] = ACTIONS(6027), + [anon_sym_DASH_DASH] = ACTIONS(6027), + [anon_sym_from] = ACTIONS(6027), + [anon_sym_into] = ACTIONS(6027), + [anon_sym_join] = ACTIONS(6027), + [anon_sym_on] = ACTIONS(6027), + [anon_sym_equals] = ACTIONS(6027), + [anon_sym_let] = ACTIONS(6027), + [anon_sym_orderby] = ACTIONS(6027), + [anon_sym_group] = ACTIONS(6027), + [anon_sym_by] = ACTIONS(6027), + [anon_sym_select] = ACTIONS(6027), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6027), + [anon_sym_DASH_GT] = ACTIONS(6027), + [anon_sym_with] = ACTIONS(6027), + [aux_sym_preproc_if_token3] = ACTIONS(6027), + [aux_sym_preproc_else_token1] = ACTIONS(6027), + [aux_sym_preproc_elif_token1] = ACTIONS(6027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512207,27 +510539,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3344] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3344), [sym_preproc_endregion] = STATE(3344), [sym_preproc_line] = STATE(3344), @@ -512237,45 +510563,48 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4748), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5678), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5680), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5676), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(5851), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512288,27 +510617,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3345] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(3345), [sym_preproc_endregion] = STATE(3345), [sym_preproc_line] = STATE(3345), @@ -512318,45 +510641,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3345), [sym_preproc_define] = STATE(3345), [sym_preproc_undef] = STATE(3345), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4708), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4708), - [anon_sym_RBRACE] = ACTIONS(4708), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5678), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5680), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5676), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(5851), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512369,27 +510695,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3346] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(3346), [sym_preproc_endregion] = STATE(3346), [sym_preproc_line] = STATE(3346), @@ -512399,45 +510704,62 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5678), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5652), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5680), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5676), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5991), + [anon_sym_LBRACK] = ACTIONS(5991), + [anon_sym_COLON] = ACTIONS(5991), + [anon_sym_COMMA] = ACTIONS(5991), + [anon_sym_RBRACK] = ACTIONS(5991), + [anon_sym_LPAREN] = ACTIONS(5991), + [anon_sym_RPAREN] = ACTIONS(5991), + [anon_sym_RBRACE] = ACTIONS(5991), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_in] = ACTIONS(5991), + [anon_sym_where] = ACTIONS(5991), + [anon_sym_QMARK] = ACTIONS(5993), + [anon_sym_DOT] = ACTIONS(5993), + [anon_sym_EQ_GT] = ACTIONS(5991), + [anon_sym_STAR] = ACTIONS(5991), + [anon_sym_switch] = ACTIONS(5991), + [anon_sym_DOT_DOT] = ACTIONS(5991), + [anon_sym_LT_EQ] = ACTIONS(5991), + [anon_sym_GT_EQ] = ACTIONS(5991), + [anon_sym_and] = ACTIONS(5991), + [anon_sym_or] = ACTIONS(5993), + [anon_sym_EQ_EQ] = ACTIONS(5991), + [anon_sym_BANG_EQ] = ACTIONS(5991), + [anon_sym_AMP_AMP] = ACTIONS(5991), + [anon_sym_PIPE_PIPE] = ACTIONS(5991), + [anon_sym_AMP] = ACTIONS(5993), + [sym_op_bitwise_or] = ACTIONS(5993), + [anon_sym_CARET] = ACTIONS(5991), + [sym_op_left_shift] = ACTIONS(5991), + [sym_op_right_shift] = ACTIONS(5993), + [sym_op_unsigned_right_shift] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5993), + [sym_op_divide] = ACTIONS(5993), + [sym_op_modulo] = ACTIONS(5991), + [sym_op_coalescing] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(5993), + [anon_sym_PLUS_PLUS] = ACTIONS(5991), + [anon_sym_DASH_DASH] = ACTIONS(5991), + [anon_sym_from] = ACTIONS(5991), + [anon_sym_join] = ACTIONS(5991), + [anon_sym_on] = ACTIONS(5991), + [anon_sym_equals] = ACTIONS(5991), + [anon_sym_let] = ACTIONS(5991), + [anon_sym_orderby] = ACTIONS(5991), + [anon_sym_group] = ACTIONS(5991), + [anon_sym_by] = ACTIONS(5991), + [anon_sym_select] = ACTIONS(5991), + [anon_sym_as] = ACTIONS(5991), + [anon_sym_is] = ACTIONS(5991), + [anon_sym_DASH_GT] = ACTIONS(5991), + [anon_sym_with] = ACTIONS(5991), + [aux_sym_preproc_if_token3] = ACTIONS(5991), + [aux_sym_preproc_else_token1] = ACTIONS(5991), + [aux_sym_preproc_elif_token1] = ACTIONS(5991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512450,27 +510772,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3347] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(3347), [sym_preproc_endregion] = STATE(3347), [sym_preproc_line] = STATE(3347), @@ -512480,47 +510781,64 @@ 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(4786), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5644), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(5646), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5648), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(5650), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_if_token3] = ACTIONS(4786), - [aux_sym_preproc_else_token1] = ACTIONS(4786), - [aux_sym_preproc_elif_token1] = ACTIONS(4786), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4361), + [anon_sym_where] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(6031), + [anon_sym_EQ_GT] = ACTIONS(4361), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_switch] = ACTIONS(4361), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_and] = ACTIONS(4361), + [anon_sym_or] = ACTIONS(4359), + [anon_sym_EQ_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4359), + [sym_op_bitwise_or] = ACTIONS(4359), + [anon_sym_CARET] = ACTIONS(4361), + [sym_op_left_shift] = ACTIONS(4361), + [sym_op_right_shift] = ACTIONS(4359), + [sym_op_unsigned_right_shift] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [sym_op_divide] = ACTIONS(4359), + [sym_op_modulo] = ACTIONS(4361), + [sym_op_coalescing] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_from] = ACTIONS(4361), + [anon_sym_join] = ACTIONS(4361), + [anon_sym_on] = ACTIONS(4361), + [anon_sym_equals] = ACTIONS(4361), + [anon_sym_let] = ACTIONS(4361), + [anon_sym_orderby] = ACTIONS(4361), + [anon_sym_group] = ACTIONS(4361), + [anon_sym_by] = ACTIONS(4361), + [anon_sym_select] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4361), + [anon_sym_DASH_GT] = ACTIONS(4361), + [anon_sym_with] = ACTIONS(4361), + [aux_sym_preproc_if_token3] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), @@ -512531,27 +510849,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3348] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3348), [sym_preproc_endregion] = STATE(3348), [sym_preproc_line] = STATE(3348), @@ -512561,44 +510858,62 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4770), - [anon_sym_COMMA] = ACTIONS(4770), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4770), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5668), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(6011), + [anon_sym_LBRACK] = ACTIONS(6011), + [anon_sym_COLON] = ACTIONS(6011), + [anon_sym_COMMA] = ACTIONS(6011), + [anon_sym_RBRACK] = ACTIONS(6011), + [anon_sym_LPAREN] = ACTIONS(6011), + [anon_sym_RPAREN] = ACTIONS(6011), + [anon_sym_RBRACE] = ACTIONS(6011), + [anon_sym_LT] = ACTIONS(6013), + [anon_sym_GT] = ACTIONS(6013), + [anon_sym_in] = ACTIONS(6011), + [anon_sym_where] = ACTIONS(6011), + [anon_sym_QMARK] = ACTIONS(6013), + [anon_sym_DOT] = ACTIONS(6013), + [anon_sym_EQ_GT] = ACTIONS(6011), + [anon_sym_STAR] = ACTIONS(6011), + [anon_sym_switch] = ACTIONS(6011), + [anon_sym_DOT_DOT] = ACTIONS(6011), + [anon_sym_LT_EQ] = ACTIONS(6011), + [anon_sym_GT_EQ] = ACTIONS(6011), + [anon_sym_and] = ACTIONS(6011), + [anon_sym_or] = ACTIONS(6013), + [anon_sym_EQ_EQ] = ACTIONS(6011), + [anon_sym_BANG_EQ] = ACTIONS(6011), + [anon_sym_AMP_AMP] = ACTIONS(6011), + [anon_sym_PIPE_PIPE] = ACTIONS(6011), + [anon_sym_AMP] = ACTIONS(6013), + [sym_op_bitwise_or] = ACTIONS(6013), + [anon_sym_CARET] = ACTIONS(6011), + [sym_op_left_shift] = ACTIONS(6011), + [sym_op_right_shift] = ACTIONS(6013), + [sym_op_unsigned_right_shift] = ACTIONS(6011), + [anon_sym_PLUS] = ACTIONS(6013), + [anon_sym_DASH] = ACTIONS(6013), + [sym_op_divide] = ACTIONS(6013), + [sym_op_modulo] = ACTIONS(6011), + [sym_op_coalescing] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6013), + [anon_sym_PLUS_PLUS] = ACTIONS(6011), + [anon_sym_DASH_DASH] = ACTIONS(6011), + [anon_sym_from] = ACTIONS(6011), + [anon_sym_join] = ACTIONS(6011), + [anon_sym_on] = ACTIONS(6011), + [anon_sym_equals] = ACTIONS(6011), + [anon_sym_let] = ACTIONS(6011), + [anon_sym_orderby] = ACTIONS(6011), + [anon_sym_group] = ACTIONS(6011), + [anon_sym_by] = ACTIONS(6011), + [anon_sym_select] = ACTIONS(6011), + [anon_sym_as] = ACTIONS(6011), + [anon_sym_is] = ACTIONS(6011), + [anon_sym_DASH_GT] = ACTIONS(6011), + [anon_sym_with] = ACTIONS(6011), + [aux_sym_preproc_if_token3] = ACTIONS(6011), + [aux_sym_preproc_else_token1] = ACTIONS(6011), + [aux_sym_preproc_elif_token1] = ACTIONS(6011), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512609,7 +510924,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(4770), }, [3349] = { [sym_preproc_region] = STATE(3349), @@ -512621,66 +510935,62 @@ 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_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_QMARK] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4012), - [anon_sym_switch] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4010), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [anon_sym_from] = ACTIONS(4010), - [anon_sym_into] = ACTIONS(4010), - [anon_sym_join] = ACTIONS(4010), - [anon_sym_let] = ACTIONS(4010), - [anon_sym_orderby] = ACTIONS(4010), - [anon_sym_ascending] = ACTIONS(4010), - [anon_sym_descending] = ACTIONS(4010), - [anon_sym_group] = ACTIONS(4010), - [anon_sym_select] = ACTIONS(4010), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4010), - [anon_sym_with] = ACTIONS(4010), - [sym_grit_metavariable] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(5971), + [anon_sym_LBRACK] = ACTIONS(5971), + [anon_sym_COLON] = ACTIONS(5971), + [anon_sym_COMMA] = ACTIONS(5971), + [anon_sym_RBRACK] = ACTIONS(5971), + [anon_sym_LPAREN] = ACTIONS(5971), + [anon_sym_RPAREN] = ACTIONS(5971), + [anon_sym_RBRACE] = ACTIONS(5971), + [anon_sym_LT] = ACTIONS(5973), + [anon_sym_GT] = ACTIONS(5973), + [anon_sym_in] = ACTIONS(5971), + [anon_sym_where] = ACTIONS(5971), + [anon_sym_QMARK] = ACTIONS(5973), + [anon_sym_DOT] = ACTIONS(5973), + [anon_sym_EQ_GT] = ACTIONS(5971), + [anon_sym_STAR] = ACTIONS(5971), + [anon_sym_switch] = ACTIONS(5971), + [anon_sym_DOT_DOT] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_and] = ACTIONS(5971), + [anon_sym_or] = ACTIONS(5973), + [anon_sym_EQ_EQ] = ACTIONS(5971), + [anon_sym_BANG_EQ] = ACTIONS(5971), + [anon_sym_AMP_AMP] = ACTIONS(5971), + [anon_sym_PIPE_PIPE] = ACTIONS(5971), + [anon_sym_AMP] = ACTIONS(5973), + [sym_op_bitwise_or] = ACTIONS(5973), + [anon_sym_CARET] = ACTIONS(5971), + [sym_op_left_shift] = ACTIONS(5971), + [sym_op_right_shift] = ACTIONS(5973), + [sym_op_unsigned_right_shift] = ACTIONS(5971), + [anon_sym_PLUS] = ACTIONS(5973), + [anon_sym_DASH] = ACTIONS(5973), + [sym_op_divide] = ACTIONS(5973), + [sym_op_modulo] = ACTIONS(5971), + [sym_op_coalescing] = ACTIONS(5971), + [anon_sym_BANG] = ACTIONS(5973), + [anon_sym_PLUS_PLUS] = ACTIONS(5971), + [anon_sym_DASH_DASH] = ACTIONS(5971), + [anon_sym_from] = ACTIONS(5971), + [anon_sym_join] = ACTIONS(5971), + [anon_sym_on] = ACTIONS(5971), + [anon_sym_equals] = ACTIONS(5971), + [anon_sym_let] = ACTIONS(5971), + [anon_sym_orderby] = ACTIONS(5971), + [anon_sym_group] = ACTIONS(5971), + [anon_sym_by] = ACTIONS(5971), + [anon_sym_select] = ACTIONS(5971), + [anon_sym_as] = ACTIONS(5971), + [anon_sym_is] = ACTIONS(5971), + [anon_sym_DASH_GT] = ACTIONS(5971), + [anon_sym_with] = ACTIONS(5971), + [aux_sym_preproc_if_token3] = ACTIONS(5971), + [aux_sym_preproc_else_token1] = ACTIONS(5971), + [aux_sym_preproc_elif_token1] = ACTIONS(5971), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512693,27 +511003,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3350] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(3350), [sym_preproc_endregion] = STATE(3350), [sym_preproc_line] = STATE(3350), @@ -512723,44 +511012,62 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5666), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5668), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LBRACK] = ACTIONS(5955), + [anon_sym_COLON] = ACTIONS(5955), + [anon_sym_COMMA] = ACTIONS(5955), + [anon_sym_RBRACK] = ACTIONS(5955), + [anon_sym_LPAREN] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_RBRACE] = ACTIONS(5955), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_in] = ACTIONS(5955), + [anon_sym_where] = ACTIONS(5955), + [anon_sym_QMARK] = ACTIONS(5957), + [anon_sym_DOT] = ACTIONS(5957), + [anon_sym_EQ_GT] = ACTIONS(5955), + [anon_sym_STAR] = ACTIONS(5955), + [anon_sym_switch] = ACTIONS(5955), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_LT_EQ] = ACTIONS(5955), + [anon_sym_GT_EQ] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5955), + [anon_sym_or] = ACTIONS(5957), + [anon_sym_EQ_EQ] = ACTIONS(5955), + [anon_sym_BANG_EQ] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5957), + [sym_op_bitwise_or] = ACTIONS(5957), + [anon_sym_CARET] = ACTIONS(5955), + [sym_op_left_shift] = ACTIONS(5955), + [sym_op_right_shift] = ACTIONS(5957), + [sym_op_unsigned_right_shift] = ACTIONS(5955), + [anon_sym_PLUS] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(5957), + [sym_op_divide] = ACTIONS(5957), + [sym_op_modulo] = ACTIONS(5955), + [sym_op_coalescing] = ACTIONS(5955), + [anon_sym_BANG] = ACTIONS(5957), + [anon_sym_PLUS_PLUS] = ACTIONS(5955), + [anon_sym_DASH_DASH] = ACTIONS(5955), + [anon_sym_from] = ACTIONS(5955), + [anon_sym_join] = ACTIONS(5955), + [anon_sym_on] = ACTIONS(5955), + [anon_sym_equals] = ACTIONS(5955), + [anon_sym_let] = ACTIONS(5955), + [anon_sym_orderby] = ACTIONS(5955), + [anon_sym_group] = ACTIONS(5955), + [anon_sym_by] = ACTIONS(5955), + [anon_sym_select] = ACTIONS(5955), + [anon_sym_as] = ACTIONS(5955), + [anon_sym_is] = ACTIONS(5955), + [anon_sym_DASH_GT] = ACTIONS(5955), + [anon_sym_with] = ACTIONS(5955), + [aux_sym_preproc_if_token3] = ACTIONS(5955), + [aux_sym_preproc_else_token1] = ACTIONS(5955), + [aux_sym_preproc_elif_token1] = ACTIONS(5955), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512771,30 +511078,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(4760), }, [3351] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), [sym_preproc_region] = STATE(3351), [sym_preproc_endregion] = STATE(3351), [sym_preproc_line] = STATE(3351), @@ -512804,44 +511089,62 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5951), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_COLON] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_RBRACK] = ACTIONS(5951), + [anon_sym_LPAREN] = ACTIONS(5951), + [anon_sym_RPAREN] = ACTIONS(5951), + [anon_sym_RBRACE] = ACTIONS(5951), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_in] = ACTIONS(5951), + [anon_sym_where] = ACTIONS(5951), + [anon_sym_QMARK] = ACTIONS(5953), + [anon_sym_DOT] = ACTIONS(5953), + [anon_sym_EQ_GT] = ACTIONS(5951), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_switch] = ACTIONS(5951), + [anon_sym_DOT_DOT] = ACTIONS(5951), + [anon_sym_LT_EQ] = ACTIONS(5951), + [anon_sym_GT_EQ] = ACTIONS(5951), + [anon_sym_and] = ACTIONS(5951), + [anon_sym_or] = ACTIONS(5953), + [anon_sym_EQ_EQ] = ACTIONS(5951), + [anon_sym_BANG_EQ] = ACTIONS(5951), + [anon_sym_AMP_AMP] = ACTIONS(5951), + [anon_sym_PIPE_PIPE] = ACTIONS(5951), + [anon_sym_AMP] = ACTIONS(5953), + [sym_op_bitwise_or] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5951), + [sym_op_left_shift] = ACTIONS(5951), + [sym_op_right_shift] = ACTIONS(5953), + [sym_op_unsigned_right_shift] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [sym_op_divide] = ACTIONS(5953), + [sym_op_modulo] = ACTIONS(5951), + [sym_op_coalescing] = ACTIONS(5951), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PLUS_PLUS] = ACTIONS(5951), + [anon_sym_DASH_DASH] = ACTIONS(5951), + [anon_sym_from] = ACTIONS(5951), + [anon_sym_join] = ACTIONS(5951), + [anon_sym_on] = ACTIONS(5951), + [anon_sym_equals] = ACTIONS(5951), + [anon_sym_let] = ACTIONS(5951), + [anon_sym_orderby] = ACTIONS(5951), + [anon_sym_group] = ACTIONS(5951), + [anon_sym_by] = ACTIONS(5951), + [anon_sym_select] = ACTIONS(5951), + [anon_sym_as] = ACTIONS(5951), + [anon_sym_is] = ACTIONS(5951), + [anon_sym_DASH_GT] = ACTIONS(5951), + [anon_sym_with] = ACTIONS(5951), + [aux_sym_preproc_if_token3] = ACTIONS(5951), + [aux_sym_preproc_else_token1] = ACTIONS(5951), + [aux_sym_preproc_elif_token1] = ACTIONS(5951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512854,27 +511157,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3352] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3352), [sym_preproc_endregion] = STATE(3352), [sym_preproc_line] = STATE(3352), @@ -512884,44 +511181,47 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(6033), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6037), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5332), + [anon_sym_select] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512934,27 +511234,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3353] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), [sym_preproc_region] = STATE(3353), [sym_preproc_endregion] = STATE(3353), [sym_preproc_line] = STATE(3353), @@ -512964,43 +511243,62 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LBRACK] = ACTIONS(5935), + [anon_sym_COLON] = ACTIONS(5935), + [anon_sym_COMMA] = ACTIONS(5935), + [anon_sym_RBRACK] = ACTIONS(5935), + [anon_sym_LPAREN] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_RBRACE] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5937), + [anon_sym_GT] = ACTIONS(5937), + [anon_sym_in] = ACTIONS(5935), + [anon_sym_where] = ACTIONS(5935), + [anon_sym_QMARK] = ACTIONS(5937), + [anon_sym_DOT] = ACTIONS(5937), + [anon_sym_EQ_GT] = ACTIONS(5935), + [anon_sym_STAR] = ACTIONS(5935), + [anon_sym_switch] = ACTIONS(5935), + [anon_sym_DOT_DOT] = ACTIONS(5935), + [anon_sym_LT_EQ] = ACTIONS(5935), + [anon_sym_GT_EQ] = ACTIONS(5935), + [anon_sym_and] = ACTIONS(5935), + [anon_sym_or] = ACTIONS(5937), + [anon_sym_EQ_EQ] = ACTIONS(5935), + [anon_sym_BANG_EQ] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5937), + [sym_op_bitwise_or] = ACTIONS(5937), + [anon_sym_CARET] = ACTIONS(5935), + [sym_op_left_shift] = ACTIONS(5935), + [sym_op_right_shift] = ACTIONS(5937), + [sym_op_unsigned_right_shift] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [sym_op_divide] = ACTIONS(5937), + [sym_op_modulo] = ACTIONS(5935), + [sym_op_coalescing] = ACTIONS(5935), + [anon_sym_BANG] = ACTIONS(5937), + [anon_sym_PLUS_PLUS] = ACTIONS(5935), + [anon_sym_DASH_DASH] = ACTIONS(5935), + [anon_sym_from] = ACTIONS(5935), + [anon_sym_join] = ACTIONS(5935), + [anon_sym_on] = ACTIONS(5935), + [anon_sym_equals] = ACTIONS(5935), + [anon_sym_let] = ACTIONS(5935), + [anon_sym_orderby] = ACTIONS(5935), + [anon_sym_group] = ACTIONS(5935), + [anon_sym_by] = ACTIONS(5935), + [anon_sym_select] = ACTIONS(5935), + [anon_sym_as] = ACTIONS(5935), + [anon_sym_is] = ACTIONS(5935), + [anon_sym_DASH_GT] = ACTIONS(5935), + [anon_sym_with] = ACTIONS(5935), + [aux_sym_preproc_if_token3] = ACTIONS(5935), + [aux_sym_preproc_else_token1] = ACTIONS(5935), + [aux_sym_preproc_elif_token1] = ACTIONS(5935), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513011,30 +511309,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(4786), }, [3354] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), [sym_preproc_region] = STATE(3354), [sym_preproc_endregion] = STATE(3354), [sym_preproc_line] = STATE(3354), @@ -513044,44 +511320,62 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5710), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4790), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5714), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LBRACK] = ACTIONS(5931), + [anon_sym_COLON] = ACTIONS(5931), + [anon_sym_COMMA] = ACTIONS(5931), + [anon_sym_RBRACK] = ACTIONS(5931), + [anon_sym_LPAREN] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_RBRACE] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5933), + [anon_sym_in] = ACTIONS(5931), + [anon_sym_where] = ACTIONS(5931), + [anon_sym_QMARK] = ACTIONS(5933), + [anon_sym_DOT] = ACTIONS(5933), + [anon_sym_EQ_GT] = ACTIONS(5931), + [anon_sym_STAR] = ACTIONS(5931), + [anon_sym_switch] = ACTIONS(5931), + [anon_sym_DOT_DOT] = ACTIONS(5931), + [anon_sym_LT_EQ] = ACTIONS(5931), + [anon_sym_GT_EQ] = ACTIONS(5931), + [anon_sym_and] = ACTIONS(5931), + [anon_sym_or] = ACTIONS(5933), + [anon_sym_EQ_EQ] = ACTIONS(5931), + [anon_sym_BANG_EQ] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5933), + [sym_op_bitwise_or] = ACTIONS(5933), + [anon_sym_CARET] = ACTIONS(5931), + [sym_op_left_shift] = ACTIONS(5931), + [sym_op_right_shift] = ACTIONS(5933), + [sym_op_unsigned_right_shift] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5933), + [sym_op_divide] = ACTIONS(5933), + [sym_op_modulo] = ACTIONS(5931), + [sym_op_coalescing] = ACTIONS(5931), + [anon_sym_BANG] = ACTIONS(5933), + [anon_sym_PLUS_PLUS] = ACTIONS(5931), + [anon_sym_DASH_DASH] = ACTIONS(5931), + [anon_sym_from] = ACTIONS(5931), + [anon_sym_join] = ACTIONS(5931), + [anon_sym_on] = ACTIONS(5931), + [anon_sym_equals] = ACTIONS(5931), + [anon_sym_let] = ACTIONS(5931), + [anon_sym_orderby] = ACTIONS(5931), + [anon_sym_group] = ACTIONS(5931), + [anon_sym_by] = ACTIONS(5931), + [anon_sym_select] = ACTIONS(5931), + [anon_sym_as] = ACTIONS(5931), + [anon_sym_is] = ACTIONS(5931), + [anon_sym_DASH_GT] = ACTIONS(5931), + [anon_sym_with] = ACTIONS(5931), + [aux_sym_preproc_if_token3] = ACTIONS(5931), + [aux_sym_preproc_else_token1] = ACTIONS(5931), + [aux_sym_preproc_elif_token1] = ACTIONS(5931), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513094,29 +511388,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3355] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), - [sym_preproc_else_in_expression] = STATE(8048), - [sym_preproc_elif_in_expression] = STATE(8048), [sym_preproc_region] = STATE(3355), [sym_preproc_endregion] = STATE(3355), [sym_preproc_line] = STATE(3355), @@ -513126,42 +511397,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3355), [sym_preproc_define] = STATE(3355), [sym_preproc_undef] = STATE(3355), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(5728), - [aux_sym_preproc_else_token1] = ACTIONS(2899), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_event] = ACTIONS(3738), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_interface] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_record] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_implicit] = ACTIONS(3738), + [anon_sym_explicit] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(6051), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513174,27 +511465,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3356] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), [sym_preproc_region] = STATE(3356), [sym_preproc_endregion] = STATE(3356), [sym_preproc_line] = STATE(3356), @@ -513204,44 +511474,62 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(6003), + [anon_sym_LBRACK] = ACTIONS(6003), + [anon_sym_COLON] = ACTIONS(6003), + [anon_sym_COMMA] = ACTIONS(6003), + [anon_sym_RBRACK] = ACTIONS(6003), + [anon_sym_LPAREN] = ACTIONS(6003), + [anon_sym_RPAREN] = ACTIONS(6003), + [anon_sym_RBRACE] = ACTIONS(6003), + [anon_sym_LT] = ACTIONS(6005), + [anon_sym_GT] = ACTIONS(6005), + [anon_sym_in] = ACTIONS(6003), + [anon_sym_where] = ACTIONS(6003), + [anon_sym_QMARK] = ACTIONS(6005), + [anon_sym_DOT] = ACTIONS(6005), + [anon_sym_EQ_GT] = ACTIONS(6003), + [anon_sym_STAR] = ACTIONS(6003), + [anon_sym_switch] = ACTIONS(6003), + [anon_sym_DOT_DOT] = ACTIONS(6003), + [anon_sym_LT_EQ] = ACTIONS(6003), + [anon_sym_GT_EQ] = ACTIONS(6003), + [anon_sym_and] = ACTIONS(6003), + [anon_sym_or] = ACTIONS(6005), + [anon_sym_EQ_EQ] = ACTIONS(6003), + [anon_sym_BANG_EQ] = ACTIONS(6003), + [anon_sym_AMP_AMP] = ACTIONS(6003), + [anon_sym_PIPE_PIPE] = ACTIONS(6003), + [anon_sym_AMP] = ACTIONS(6005), + [sym_op_bitwise_or] = ACTIONS(6005), + [anon_sym_CARET] = ACTIONS(6003), + [sym_op_left_shift] = ACTIONS(6003), + [sym_op_right_shift] = ACTIONS(6005), + [sym_op_unsigned_right_shift] = ACTIONS(6003), + [anon_sym_PLUS] = ACTIONS(6005), + [anon_sym_DASH] = ACTIONS(6005), + [sym_op_divide] = ACTIONS(6005), + [sym_op_modulo] = ACTIONS(6003), + [sym_op_coalescing] = ACTIONS(6003), + [anon_sym_BANG] = ACTIONS(6005), + [anon_sym_PLUS_PLUS] = ACTIONS(6003), + [anon_sym_DASH_DASH] = ACTIONS(6003), + [anon_sym_from] = ACTIONS(6003), + [anon_sym_join] = ACTIONS(6003), + [anon_sym_on] = ACTIONS(6003), + [anon_sym_equals] = ACTIONS(6003), + [anon_sym_let] = ACTIONS(6003), + [anon_sym_orderby] = ACTIONS(6003), + [anon_sym_group] = ACTIONS(6003), + [anon_sym_by] = ACTIONS(6003), + [anon_sym_select] = ACTIONS(6003), + [anon_sym_as] = ACTIONS(6003), + [anon_sym_is] = ACTIONS(6003), + [anon_sym_DASH_GT] = ACTIONS(6003), + [anon_sym_with] = ACTIONS(6003), + [aux_sym_preproc_if_token3] = ACTIONS(6003), + [aux_sym_preproc_else_token1] = ACTIONS(6003), + [aux_sym_preproc_elif_token1] = ACTIONS(6003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513254,8 +511542,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3357] = { - [sym_preproc_else_in_attribute_list] = STATE(7986), - [sym_preproc_elif_in_attribute_list] = STATE(7986), [sym_preproc_region] = STATE(3357), [sym_preproc_endregion] = STATE(3357), [sym_preproc_line] = STATE(3357), @@ -513265,63 +511551,62 @@ 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), - [sym__identifier_token] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym_alias] = ACTIONS(5456), - [anon_sym_global] = ACTIONS(5456), - [anon_sym_unsafe] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5458), - [anon_sym_LPAREN] = ACTIONS(5458), - [anon_sym_class] = ACTIONS(5456), - [anon_sym_ref] = ACTIONS(5456), - [anon_sym_struct] = ACTIONS(5456), - [anon_sym_enum] = ACTIONS(5456), - [anon_sym_interface] = ACTIONS(5456), - [anon_sym_delegate] = ACTIONS(5456), - [anon_sym_record] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_readonly] = ACTIONS(5456), - [anon_sym_abstract] = ACTIONS(5456), - [anon_sym_async] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_file] = ACTIONS(5456), - [anon_sym_fixed] = ACTIONS(5456), - [anon_sym_internal] = ACTIONS(5456), - [anon_sym_new] = ACTIONS(5456), - [anon_sym_override] = ACTIONS(5456), - [anon_sym_partial] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_required] = ACTIONS(5456), - [anon_sym_sealed] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_where] = ACTIONS(5456), - [anon_sym_notnull] = ACTIONS(5456), - [anon_sym_unmanaged] = ACTIONS(5456), - [anon_sym_scoped] = ACTIONS(5456), - [anon_sym_var] = ACTIONS(5456), - [sym_predefined_type] = ACTIONS(5456), - [anon_sym_yield] = ACTIONS(5456), - [anon_sym_when] = ACTIONS(5456), - [anon_sym_from] = ACTIONS(5456), - [anon_sym_into] = ACTIONS(5456), - [anon_sym_join] = ACTIONS(5456), - [anon_sym_on] = ACTIONS(5456), - [anon_sym_equals] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(5456), - [anon_sym_orderby] = ACTIONS(5456), - [anon_sym_ascending] = ACTIONS(5456), - [anon_sym_descending] = ACTIONS(5456), - [anon_sym_group] = ACTIONS(5456), - [anon_sym_by] = ACTIONS(5456), - [anon_sym_select] = ACTIONS(5456), - [sym_grit_metavariable] = ACTIONS(5458), - [aux_sym_preproc_if_token1] = ACTIONS(5458), - [aux_sym_preproc_if_token3] = ACTIONS(5730), - [aux_sym_preproc_else_token1] = ACTIONS(5462), - [aux_sym_preproc_elif_token1] = ACTIONS(5464), + [anon_sym_SEMI] = ACTIONS(5927), + [anon_sym_LBRACK] = ACTIONS(5927), + [anon_sym_COLON] = ACTIONS(5927), + [anon_sym_COMMA] = ACTIONS(5927), + [anon_sym_RBRACK] = ACTIONS(5927), + [anon_sym_LPAREN] = ACTIONS(5927), + [anon_sym_RPAREN] = ACTIONS(5927), + [anon_sym_RBRACE] = ACTIONS(5927), + [anon_sym_LT] = ACTIONS(5929), + [anon_sym_GT] = ACTIONS(5929), + [anon_sym_in] = ACTIONS(5927), + [anon_sym_where] = ACTIONS(5927), + [anon_sym_QMARK] = ACTIONS(5929), + [anon_sym_DOT] = ACTIONS(5929), + [anon_sym_EQ_GT] = ACTIONS(5927), + [anon_sym_STAR] = ACTIONS(5927), + [anon_sym_switch] = ACTIONS(5927), + [anon_sym_DOT_DOT] = ACTIONS(5927), + [anon_sym_LT_EQ] = ACTIONS(5927), + [anon_sym_GT_EQ] = ACTIONS(5927), + [anon_sym_and] = ACTIONS(5927), + [anon_sym_or] = ACTIONS(5929), + [anon_sym_EQ_EQ] = ACTIONS(5927), + [anon_sym_BANG_EQ] = ACTIONS(5927), + [anon_sym_AMP_AMP] = ACTIONS(5927), + [anon_sym_PIPE_PIPE] = ACTIONS(5927), + [anon_sym_AMP] = ACTIONS(5929), + [sym_op_bitwise_or] = ACTIONS(5929), + [anon_sym_CARET] = ACTIONS(5927), + [sym_op_left_shift] = ACTIONS(5927), + [sym_op_right_shift] = ACTIONS(5929), + [sym_op_unsigned_right_shift] = ACTIONS(5927), + [anon_sym_PLUS] = ACTIONS(5929), + [anon_sym_DASH] = ACTIONS(5929), + [sym_op_divide] = ACTIONS(5929), + [sym_op_modulo] = ACTIONS(5927), + [sym_op_coalescing] = ACTIONS(5927), + [anon_sym_BANG] = ACTIONS(5929), + [anon_sym_PLUS_PLUS] = ACTIONS(5927), + [anon_sym_DASH_DASH] = ACTIONS(5927), + [anon_sym_from] = ACTIONS(5927), + [anon_sym_join] = ACTIONS(5927), + [anon_sym_on] = ACTIONS(5927), + [anon_sym_equals] = ACTIONS(5927), + [anon_sym_let] = ACTIONS(5927), + [anon_sym_orderby] = ACTIONS(5927), + [anon_sym_group] = ACTIONS(5927), + [anon_sym_by] = ACTIONS(5927), + [anon_sym_select] = ACTIONS(5927), + [anon_sym_as] = ACTIONS(5927), + [anon_sym_is] = ACTIONS(5927), + [anon_sym_DASH_GT] = ACTIONS(5927), + [anon_sym_with] = ACTIONS(5927), + [aux_sym_preproc_if_token3] = ACTIONS(5927), + [aux_sym_preproc_else_token1] = ACTIONS(5927), + [aux_sym_preproc_elif_token1] = ACTIONS(5927), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513334,29 +511619,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3358] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), - [sym_preproc_else_in_expression] = STATE(7843), - [sym_preproc_elif_in_expression] = STATE(7843), [sym_preproc_region] = STATE(3358), [sym_preproc_endregion] = STATE(3358), [sym_preproc_line] = STATE(3358), @@ -513366,42 +511628,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3358), [sym_preproc_define] = STATE(3358), [sym_preproc_undef] = STATE(3358), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(5732), - [aux_sym_preproc_else_token1] = ACTIONS(2899), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(5959), + [anon_sym_LBRACK] = ACTIONS(5959), + [anon_sym_COLON] = ACTIONS(5959), + [anon_sym_COMMA] = ACTIONS(5959), + [anon_sym_RBRACK] = ACTIONS(5959), + [anon_sym_LPAREN] = ACTIONS(5959), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_RBRACE] = ACTIONS(5959), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_in] = ACTIONS(5959), + [anon_sym_where] = ACTIONS(5959), + [anon_sym_QMARK] = ACTIONS(5961), + [anon_sym_DOT] = ACTIONS(5961), + [anon_sym_EQ_GT] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(5959), + [anon_sym_switch] = ACTIONS(5959), + [anon_sym_DOT_DOT] = ACTIONS(5959), + [anon_sym_LT_EQ] = ACTIONS(5959), + [anon_sym_GT_EQ] = ACTIONS(5959), + [anon_sym_and] = ACTIONS(5959), + [anon_sym_or] = ACTIONS(5961), + [anon_sym_EQ_EQ] = ACTIONS(5959), + [anon_sym_BANG_EQ] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [anon_sym_AMP] = ACTIONS(5961), + [sym_op_bitwise_or] = ACTIONS(5961), + [anon_sym_CARET] = ACTIONS(5959), + [sym_op_left_shift] = ACTIONS(5959), + [sym_op_right_shift] = ACTIONS(5961), + [sym_op_unsigned_right_shift] = ACTIONS(5959), + [anon_sym_PLUS] = ACTIONS(5961), + [anon_sym_DASH] = ACTIONS(5961), + [sym_op_divide] = ACTIONS(5961), + [sym_op_modulo] = ACTIONS(5959), + [sym_op_coalescing] = ACTIONS(5959), + [anon_sym_BANG] = ACTIONS(5961), + [anon_sym_PLUS_PLUS] = ACTIONS(5959), + [anon_sym_DASH_DASH] = ACTIONS(5959), + [anon_sym_from] = ACTIONS(5959), + [anon_sym_join] = ACTIONS(5959), + [anon_sym_on] = ACTIONS(5959), + [anon_sym_equals] = ACTIONS(5959), + [anon_sym_let] = ACTIONS(5959), + [anon_sym_orderby] = ACTIONS(5959), + [anon_sym_group] = ACTIONS(5959), + [anon_sym_by] = ACTIONS(5959), + [anon_sym_select] = ACTIONS(5959), + [anon_sym_as] = ACTIONS(5959), + [anon_sym_is] = ACTIONS(5959), + [anon_sym_DASH_GT] = ACTIONS(5959), + [anon_sym_with] = ACTIONS(5959), + [aux_sym_preproc_if_token3] = ACTIONS(5959), + [aux_sym_preproc_else_token1] = ACTIONS(5959), + [aux_sym_preproc_elif_token1] = ACTIONS(5959), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513414,27 +511696,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3359] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), [sym_preproc_region] = STATE(3359), [sym_preproc_endregion] = STATE(3359), [sym_preproc_line] = STATE(3359), @@ -513444,44 +511705,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3359), [sym_preproc_define] = STATE(3359), [sym_preproc_undef] = STATE(3359), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_when] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(5995), + [anon_sym_LBRACK] = ACTIONS(5995), + [anon_sym_COLON] = ACTIONS(5995), + [anon_sym_COMMA] = ACTIONS(5995), + [anon_sym_RBRACK] = ACTIONS(5995), + [anon_sym_LPAREN] = ACTIONS(5995), + [anon_sym_RPAREN] = ACTIONS(5995), + [anon_sym_RBRACE] = ACTIONS(5995), + [anon_sym_LT] = ACTIONS(5997), + [anon_sym_GT] = ACTIONS(5997), + [anon_sym_in] = ACTIONS(5995), + [anon_sym_where] = ACTIONS(5995), + [anon_sym_QMARK] = ACTIONS(5997), + [anon_sym_DOT] = ACTIONS(5997), + [anon_sym_EQ_GT] = ACTIONS(5995), + [anon_sym_STAR] = ACTIONS(5995), + [anon_sym_switch] = ACTIONS(5995), + [anon_sym_DOT_DOT] = ACTIONS(5995), + [anon_sym_LT_EQ] = ACTIONS(5995), + [anon_sym_GT_EQ] = ACTIONS(5995), + [anon_sym_and] = ACTIONS(5995), + [anon_sym_or] = ACTIONS(5997), + [anon_sym_EQ_EQ] = ACTIONS(5995), + [anon_sym_BANG_EQ] = ACTIONS(5995), + [anon_sym_AMP_AMP] = ACTIONS(5995), + [anon_sym_PIPE_PIPE] = ACTIONS(5995), + [anon_sym_AMP] = ACTIONS(5997), + [sym_op_bitwise_or] = ACTIONS(5997), + [anon_sym_CARET] = ACTIONS(5995), + [sym_op_left_shift] = ACTIONS(5995), + [sym_op_right_shift] = ACTIONS(5997), + [sym_op_unsigned_right_shift] = ACTIONS(5995), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [sym_op_divide] = ACTIONS(5997), + [sym_op_modulo] = ACTIONS(5995), + [sym_op_coalescing] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5997), + [anon_sym_PLUS_PLUS] = ACTIONS(5995), + [anon_sym_DASH_DASH] = ACTIONS(5995), + [anon_sym_from] = ACTIONS(5995), + [anon_sym_join] = ACTIONS(5995), + [anon_sym_on] = ACTIONS(5995), + [anon_sym_equals] = ACTIONS(5995), + [anon_sym_let] = ACTIONS(5995), + [anon_sym_orderby] = ACTIONS(5995), + [anon_sym_group] = ACTIONS(5995), + [anon_sym_by] = ACTIONS(5995), + [anon_sym_select] = ACTIONS(5995), + [anon_sym_as] = ACTIONS(5995), + [anon_sym_is] = ACTIONS(5995), + [anon_sym_DASH_GT] = ACTIONS(5995), + [anon_sym_with] = ACTIONS(5995), + [aux_sym_preproc_if_token3] = ACTIONS(5995), + [aux_sym_preproc_else_token1] = ACTIONS(5995), + [aux_sym_preproc_elif_token1] = ACTIONS(5995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513494,7 +511773,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3360] = { - [sym_initializer_expression] = STATE(4088), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3360), [sym_preproc_endregion] = STATE(3360), [sym_preproc_line] = STATE(3360), @@ -513504,64 +511797,47 @@ 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(5734), - [anon_sym_LBRACK] = ACTIONS(5736), - [anon_sym_COLON] = ACTIONS(5734), - [anon_sym_COMMA] = ACTIONS(5734), - [anon_sym_RBRACK] = ACTIONS(5734), - [anon_sym_LPAREN] = ACTIONS(5734), - [anon_sym_RPAREN] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(5734), - [anon_sym_LT] = ACTIONS(5739), - [anon_sym_GT] = ACTIONS(5739), - [anon_sym_in] = ACTIONS(5739), - [anon_sym_where] = ACTIONS(5734), - [anon_sym_QMARK] = ACTIONS(5739), - [anon_sym_BANG] = ACTIONS(5739), - [anon_sym_PLUS_PLUS] = ACTIONS(5734), - [anon_sym_DASH_DASH] = ACTIONS(5734), - [anon_sym_PLUS] = ACTIONS(5739), - [anon_sym_DASH] = ACTIONS(5739), - [anon_sym_STAR] = ACTIONS(5734), - [anon_sym_SLASH] = ACTIONS(5739), - [anon_sym_PERCENT] = ACTIONS(5734), - [anon_sym_CARET] = ACTIONS(5734), - [anon_sym_PIPE] = ACTIONS(5739), - [anon_sym_AMP] = ACTIONS(5739), - [anon_sym_LT_LT] = ACTIONS(5734), - [anon_sym_GT_GT] = ACTIONS(5739), - [anon_sym_GT_GT_GT] = ACTIONS(5734), - [anon_sym_EQ_EQ] = ACTIONS(5734), - [anon_sym_BANG_EQ] = ACTIONS(5734), - [anon_sym_GT_EQ] = ACTIONS(5734), - [anon_sym_LT_EQ] = ACTIONS(5734), - [anon_sym_DOT] = ACTIONS(5739), - [anon_sym_EQ_GT] = ACTIONS(5734), - [anon_sym_switch] = ACTIONS(5734), - [anon_sym_DOT_DOT] = ACTIONS(5734), - [anon_sym_and] = ACTIONS(5734), - [anon_sym_or] = ACTIONS(5739), - [anon_sym_AMP_AMP] = ACTIONS(5734), - [anon_sym_PIPE_PIPE] = ACTIONS(5734), - [sym_op_coalescing] = ACTIONS(5734), - [anon_sym_from] = ACTIONS(5734), - [anon_sym_into] = ACTIONS(5734), - [anon_sym_join] = ACTIONS(5734), - [anon_sym_on] = ACTIONS(5734), - [anon_sym_equals] = ACTIONS(5734), - [anon_sym_let] = ACTIONS(5734), - [anon_sym_orderby] = ACTIONS(5734), - [anon_sym_group] = ACTIONS(5734), - [anon_sym_by] = ACTIONS(5734), - [anon_sym_select] = ACTIONS(5734), - [anon_sym_as] = ACTIONS(5734), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(5734), - [anon_sym_with] = ACTIONS(5734), - [aux_sym_preproc_if_token3] = ACTIONS(5734), - [aux_sym_preproc_else_token1] = ACTIONS(5734), - [aux_sym_preproc_elif_token1] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5232), + [anon_sym_QMARK] = ACTIONS(6033), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6037), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5232), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_join] = ACTIONS(5232), + [anon_sym_let] = ACTIONS(5232), + [anon_sym_orderby] = ACTIONS(5232), + [anon_sym_group] = ACTIONS(5232), + [anon_sym_select] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513574,27 +511850,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3361] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), [sym_preproc_region] = STATE(3361), [sym_preproc_endregion] = STATE(3361), [sym_preproc_line] = STATE(3361), @@ -513604,44 +511859,62 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4778), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5741), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5745), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [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_where] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(5338), + [anon_sym_DOT] = ACTIONS(5338), + [anon_sym_EQ_GT] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_switch] = ACTIONS(5336), + [anon_sym_DOT_DOT] = ACTIONS(5336), + [anon_sym_LT_EQ] = ACTIONS(5336), + [anon_sym_GT_EQ] = ACTIONS(5336), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5336), + [anon_sym_BANG_EQ] = ACTIONS(5336), + [anon_sym_AMP_AMP] = ACTIONS(5336), + [anon_sym_PIPE_PIPE] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(5338), + [sym_op_bitwise_or] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5336), + [sym_op_left_shift] = ACTIONS(5336), + [sym_op_right_shift] = ACTIONS(5338), + [sym_op_unsigned_right_shift] = ACTIONS(5336), + [anon_sym_PLUS] = ACTIONS(5338), + [anon_sym_DASH] = ACTIONS(5338), + [sym_op_divide] = ACTIONS(5338), + [sym_op_modulo] = ACTIONS(5336), + [sym_op_coalescing] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(5338), + [anon_sym_PLUS_PLUS] = ACTIONS(5336), + [anon_sym_DASH_DASH] = ACTIONS(5336), + [anon_sym_from] = ACTIONS(5336), + [anon_sym_join] = ACTIONS(5336), + [anon_sym_on] = ACTIONS(5336), + [anon_sym_equals] = ACTIONS(5336), + [anon_sym_let] = ACTIONS(5336), + [anon_sym_orderby] = ACTIONS(5336), + [anon_sym_group] = ACTIONS(5336), + [anon_sym_by] = ACTIONS(5336), + [anon_sym_select] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513654,27 +511927,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3362] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), [sym_preproc_region] = STATE(3362), [sym_preproc_endregion] = STATE(3362), [sym_preproc_line] = STATE(3362), @@ -513684,44 +511936,62 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_when] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(5999), + [anon_sym_LBRACK] = ACTIONS(5999), + [anon_sym_COLON] = ACTIONS(5999), + [anon_sym_COMMA] = ACTIONS(5999), + [anon_sym_RBRACK] = ACTIONS(5999), + [anon_sym_LPAREN] = ACTIONS(5999), + [anon_sym_RPAREN] = ACTIONS(5999), + [anon_sym_RBRACE] = ACTIONS(5999), + [anon_sym_LT] = ACTIONS(6001), + [anon_sym_GT] = ACTIONS(6001), + [anon_sym_in] = ACTIONS(5999), + [anon_sym_where] = ACTIONS(5999), + [anon_sym_QMARK] = ACTIONS(6001), + [anon_sym_DOT] = ACTIONS(6001), + [anon_sym_EQ_GT] = ACTIONS(5999), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_switch] = ACTIONS(5999), + [anon_sym_DOT_DOT] = ACTIONS(5999), + [anon_sym_LT_EQ] = ACTIONS(5999), + [anon_sym_GT_EQ] = ACTIONS(5999), + [anon_sym_and] = ACTIONS(5999), + [anon_sym_or] = ACTIONS(6001), + [anon_sym_EQ_EQ] = ACTIONS(5999), + [anon_sym_BANG_EQ] = ACTIONS(5999), + [anon_sym_AMP_AMP] = ACTIONS(5999), + [anon_sym_PIPE_PIPE] = ACTIONS(5999), + [anon_sym_AMP] = ACTIONS(6001), + [sym_op_bitwise_or] = ACTIONS(6001), + [anon_sym_CARET] = ACTIONS(5999), + [sym_op_left_shift] = ACTIONS(5999), + [sym_op_right_shift] = ACTIONS(6001), + [sym_op_unsigned_right_shift] = ACTIONS(5999), + [anon_sym_PLUS] = ACTIONS(6001), + [anon_sym_DASH] = ACTIONS(6001), + [sym_op_divide] = ACTIONS(6001), + [sym_op_modulo] = ACTIONS(5999), + [sym_op_coalescing] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(6001), + [anon_sym_PLUS_PLUS] = ACTIONS(5999), + [anon_sym_DASH_DASH] = ACTIONS(5999), + [anon_sym_from] = ACTIONS(5999), + [anon_sym_join] = ACTIONS(5999), + [anon_sym_on] = ACTIONS(5999), + [anon_sym_equals] = ACTIONS(5999), + [anon_sym_let] = ACTIONS(5999), + [anon_sym_orderby] = ACTIONS(5999), + [anon_sym_group] = ACTIONS(5999), + [anon_sym_by] = ACTIONS(5999), + [anon_sym_select] = ACTIONS(5999), + [anon_sym_as] = ACTIONS(5999), + [anon_sym_is] = ACTIONS(5999), + [anon_sym_DASH_GT] = ACTIONS(5999), + [anon_sym_with] = ACTIONS(5999), + [aux_sym_preproc_if_token3] = ACTIONS(5999), + [aux_sym_preproc_else_token1] = ACTIONS(5999), + [aux_sym_preproc_elif_token1] = ACTIONS(5999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513734,27 +512004,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3363] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), [sym_preproc_region] = STATE(3363), [sym_preproc_endregion] = STATE(3363), [sym_preproc_line] = STATE(3363), @@ -513764,44 +512013,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3363), [sym_preproc_define] = STATE(3363), [sym_preproc_undef] = STATE(3363), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_when] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(5861), + [anon_sym_LBRACK] = ACTIONS(5861), + [anon_sym_COLON] = ACTIONS(5861), + [anon_sym_COMMA] = ACTIONS(5861), + [anon_sym_RBRACK] = ACTIONS(5861), + [anon_sym_LPAREN] = ACTIONS(5861), + [anon_sym_RPAREN] = ACTIONS(5861), + [anon_sym_RBRACE] = ACTIONS(5861), + [anon_sym_LT] = ACTIONS(5863), + [anon_sym_GT] = ACTIONS(5863), + [anon_sym_in] = ACTIONS(5861), + [anon_sym_where] = ACTIONS(5861), + [anon_sym_QMARK] = ACTIONS(5863), + [anon_sym_DOT] = ACTIONS(5863), + [anon_sym_EQ_GT] = ACTIONS(5861), + [anon_sym_STAR] = ACTIONS(5861), + [anon_sym_switch] = ACTIONS(5861), + [anon_sym_DOT_DOT] = ACTIONS(5861), + [anon_sym_LT_EQ] = ACTIONS(5861), + [anon_sym_GT_EQ] = ACTIONS(5861), + [anon_sym_and] = ACTIONS(5861), + [anon_sym_or] = ACTIONS(5863), + [anon_sym_EQ_EQ] = ACTIONS(5861), + [anon_sym_BANG_EQ] = ACTIONS(5861), + [anon_sym_AMP_AMP] = ACTIONS(5861), + [anon_sym_PIPE_PIPE] = ACTIONS(5861), + [anon_sym_AMP] = ACTIONS(5863), + [sym_op_bitwise_or] = ACTIONS(5863), + [anon_sym_CARET] = ACTIONS(5861), + [sym_op_left_shift] = ACTIONS(5861), + [sym_op_right_shift] = ACTIONS(5863), + [sym_op_unsigned_right_shift] = ACTIONS(5861), + [anon_sym_PLUS] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5863), + [sym_op_divide] = ACTIONS(5863), + [sym_op_modulo] = ACTIONS(5861), + [sym_op_coalescing] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(5863), + [anon_sym_PLUS_PLUS] = ACTIONS(5861), + [anon_sym_DASH_DASH] = ACTIONS(5861), + [anon_sym_from] = ACTIONS(5861), + [anon_sym_join] = ACTIONS(5861), + [anon_sym_on] = ACTIONS(5861), + [anon_sym_equals] = ACTIONS(5861), + [anon_sym_let] = ACTIONS(5861), + [anon_sym_orderby] = ACTIONS(5861), + [anon_sym_group] = ACTIONS(5861), + [anon_sym_by] = ACTIONS(5861), + [anon_sym_select] = ACTIONS(5861), + [anon_sym_as] = ACTIONS(5861), + [anon_sym_is] = ACTIONS(5861), + [anon_sym_DASH_GT] = ACTIONS(5861), + [anon_sym_with] = ACTIONS(5861), + [aux_sym_preproc_if_token3] = ACTIONS(5861), + [aux_sym_preproc_else_token1] = ACTIONS(5861), + [aux_sym_preproc_elif_token1] = ACTIONS(5861), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513814,29 +512081,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3364] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), - [sym_preproc_else_in_expression] = STATE(8005), - [sym_preproc_elif_in_expression] = STATE(8005), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3364), [sym_preproc_endregion] = STATE(3364), [sym_preproc_line] = STATE(3364), @@ -513846,42 +512105,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3364), [sym_preproc_define] = STATE(3364), [sym_preproc_undef] = STATE(3364), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(5749), - [aux_sym_preproc_else_token1] = ACTIONS(2899), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513894,27 +512158,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3365] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3365), [sym_preproc_endregion] = STATE(3365), [sym_preproc_line] = STATE(3365), @@ -513924,44 +512182,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3365), [sym_preproc_define] = STATE(3365), [sym_preproc_undef] = STATE(3365), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(6033), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6037), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5364), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_join] = ACTIONS(5364), + [anon_sym_let] = ACTIONS(5364), + [anon_sym_orderby] = ACTIONS(5364), + [anon_sym_group] = ACTIONS(5364), + [anon_sym_select] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513974,27 +512235,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3366] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3366), [sym_preproc_endregion] = STATE(3366), [sym_preproc_line] = STATE(3366), @@ -514004,44 +512259,47 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_where] = ACTIONS(5314), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5314), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_join] = ACTIONS(5314), + [anon_sym_let] = ACTIONS(5314), + [anon_sym_orderby] = ACTIONS(5314), + [anon_sym_group] = ACTIONS(5314), + [anon_sym_select] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514054,27 +512312,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3367] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), [sym_preproc_region] = STATE(3367), [sym_preproc_endregion] = STATE(3367), [sym_preproc_line] = STATE(3367), @@ -514084,44 +512321,62 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5741), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5745), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5767), + [anon_sym_LBRACK] = ACTIONS(5767), + [anon_sym_COLON] = ACTIONS(5767), + [anon_sym_COMMA] = ACTIONS(5767), + [anon_sym_RBRACK] = ACTIONS(5767), + [anon_sym_LPAREN] = ACTIONS(5767), + [anon_sym_RPAREN] = ACTIONS(5767), + [anon_sym_RBRACE] = ACTIONS(5767), + [anon_sym_LT] = ACTIONS(5769), + [anon_sym_GT] = ACTIONS(5769), + [anon_sym_in] = ACTIONS(5767), + [anon_sym_where] = ACTIONS(5767), + [anon_sym_QMARK] = ACTIONS(5769), + [anon_sym_DOT] = ACTIONS(5769), + [anon_sym_EQ_GT] = ACTIONS(5767), + [anon_sym_STAR] = ACTIONS(5767), + [anon_sym_switch] = ACTIONS(5767), + [anon_sym_DOT_DOT] = ACTIONS(5767), + [anon_sym_LT_EQ] = ACTIONS(5767), + [anon_sym_GT_EQ] = ACTIONS(5767), + [anon_sym_and] = ACTIONS(5767), + [anon_sym_or] = ACTIONS(5769), + [anon_sym_EQ_EQ] = ACTIONS(5767), + [anon_sym_BANG_EQ] = ACTIONS(5767), + [anon_sym_AMP_AMP] = ACTIONS(5767), + [anon_sym_PIPE_PIPE] = ACTIONS(5767), + [anon_sym_AMP] = ACTIONS(5769), + [sym_op_bitwise_or] = ACTIONS(5769), + [anon_sym_CARET] = ACTIONS(5767), + [sym_op_left_shift] = ACTIONS(5767), + [sym_op_right_shift] = ACTIONS(5769), + [sym_op_unsigned_right_shift] = ACTIONS(5767), + [anon_sym_PLUS] = ACTIONS(5769), + [anon_sym_DASH] = ACTIONS(5769), + [sym_op_divide] = ACTIONS(5769), + [sym_op_modulo] = ACTIONS(5767), + [sym_op_coalescing] = ACTIONS(5767), + [anon_sym_BANG] = ACTIONS(5769), + [anon_sym_PLUS_PLUS] = ACTIONS(5767), + [anon_sym_DASH_DASH] = ACTIONS(5767), + [anon_sym_from] = ACTIONS(5767), + [anon_sym_join] = ACTIONS(5767), + [anon_sym_on] = ACTIONS(5767), + [anon_sym_equals] = ACTIONS(5767), + [anon_sym_let] = ACTIONS(5767), + [anon_sym_orderby] = ACTIONS(5767), + [anon_sym_group] = ACTIONS(5767), + [anon_sym_by] = ACTIONS(5767), + [anon_sym_select] = ACTIONS(5767), + [anon_sym_as] = ACTIONS(5767), + [anon_sym_is] = ACTIONS(5767), + [anon_sym_DASH_GT] = ACTIONS(5767), + [anon_sym_with] = ACTIONS(5767), + [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), @@ -514134,27 +512389,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3368] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), [sym_preproc_region] = STATE(3368), [sym_preproc_endregion] = STATE(3368), [sym_preproc_line] = STATE(3368), @@ -514164,44 +512398,62 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4794), - [anon_sym_RBRACE] = ACTIONS(4794), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(5753), + [anon_sym_LBRACK] = ACTIONS(5753), + [anon_sym_COLON] = ACTIONS(5753), + [anon_sym_COMMA] = ACTIONS(5753), + [anon_sym_RBRACK] = ACTIONS(5753), + [anon_sym_LPAREN] = ACTIONS(5753), + [anon_sym_RPAREN] = ACTIONS(5753), + [anon_sym_RBRACE] = ACTIONS(5753), + [anon_sym_LT] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5755), + [anon_sym_in] = ACTIONS(5753), + [anon_sym_where] = ACTIONS(5753), + [anon_sym_QMARK] = ACTIONS(5755), + [anon_sym_DOT] = ACTIONS(5755), + [anon_sym_EQ_GT] = ACTIONS(5753), + [anon_sym_STAR] = ACTIONS(5753), + [anon_sym_switch] = ACTIONS(5753), + [anon_sym_DOT_DOT] = ACTIONS(5753), + [anon_sym_LT_EQ] = ACTIONS(5753), + [anon_sym_GT_EQ] = ACTIONS(5753), + [anon_sym_and] = ACTIONS(5753), + [anon_sym_or] = ACTIONS(5755), + [anon_sym_EQ_EQ] = ACTIONS(5753), + [anon_sym_BANG_EQ] = ACTIONS(5753), + [anon_sym_AMP_AMP] = ACTIONS(5753), + [anon_sym_PIPE_PIPE] = ACTIONS(5753), + [anon_sym_AMP] = ACTIONS(5755), + [sym_op_bitwise_or] = ACTIONS(5755), + [anon_sym_CARET] = ACTIONS(5753), + [sym_op_left_shift] = ACTIONS(5753), + [sym_op_right_shift] = ACTIONS(5755), + [sym_op_unsigned_right_shift] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [sym_op_divide] = ACTIONS(5755), + [sym_op_modulo] = ACTIONS(5753), + [sym_op_coalescing] = ACTIONS(5753), + [anon_sym_BANG] = ACTIONS(5755), + [anon_sym_PLUS_PLUS] = ACTIONS(5753), + [anon_sym_DASH_DASH] = ACTIONS(5753), + [anon_sym_from] = ACTIONS(5753), + [anon_sym_join] = ACTIONS(5753), + [anon_sym_on] = ACTIONS(5753), + [anon_sym_equals] = ACTIONS(5753), + [anon_sym_let] = ACTIONS(5753), + [anon_sym_orderby] = ACTIONS(5753), + [anon_sym_group] = ACTIONS(5753), + [anon_sym_by] = ACTIONS(5753), + [anon_sym_select] = ACTIONS(5753), + [anon_sym_as] = ACTIONS(5753), + [anon_sym_is] = ACTIONS(5753), + [anon_sym_DASH_GT] = ACTIONS(5753), + [anon_sym_with] = ACTIONS(5753), + [aux_sym_preproc_if_token3] = ACTIONS(5753), + [aux_sym_preproc_else_token1] = ACTIONS(5753), + [aux_sym_preproc_elif_token1] = ACTIONS(5753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514214,27 +512466,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3369] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), [sym_preproc_region] = STATE(3369), [sym_preproc_endregion] = STATE(3369), [sym_preproc_line] = STATE(3369), @@ -514244,44 +512475,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3369), [sym_preproc_define] = STATE(3369), [sym_preproc_undef] = STATE(3369), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(5915), + [anon_sym_LBRACK] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_COMMA] = ACTIONS(5915), + [anon_sym_RBRACK] = ACTIONS(5915), + [anon_sym_LPAREN] = ACTIONS(5915), + [anon_sym_RPAREN] = ACTIONS(5915), + [anon_sym_RBRACE] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5917), + [anon_sym_GT] = ACTIONS(5917), + [anon_sym_in] = ACTIONS(5915), + [anon_sym_where] = ACTIONS(5915), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5917), + [anon_sym_EQ_GT] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_switch] = ACTIONS(5915), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_LT_EQ] = ACTIONS(5915), + [anon_sym_GT_EQ] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5915), + [anon_sym_or] = ACTIONS(5917), + [anon_sym_EQ_EQ] = ACTIONS(5915), + [anon_sym_BANG_EQ] = ACTIONS(5915), + [anon_sym_AMP_AMP] = ACTIONS(5915), + [anon_sym_PIPE_PIPE] = ACTIONS(5915), + [anon_sym_AMP] = ACTIONS(5917), + [sym_op_bitwise_or] = ACTIONS(5917), + [anon_sym_CARET] = ACTIONS(5915), + [sym_op_left_shift] = ACTIONS(5915), + [sym_op_right_shift] = ACTIONS(5917), + [sym_op_unsigned_right_shift] = ACTIONS(5915), + [anon_sym_PLUS] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5917), + [sym_op_divide] = ACTIONS(5917), + [sym_op_modulo] = ACTIONS(5915), + [sym_op_coalescing] = ACTIONS(5915), + [anon_sym_BANG] = ACTIONS(5917), + [anon_sym_PLUS_PLUS] = ACTIONS(5915), + [anon_sym_DASH_DASH] = ACTIONS(5915), + [anon_sym_from] = ACTIONS(5915), + [anon_sym_join] = ACTIONS(5915), + [anon_sym_on] = ACTIONS(5915), + [anon_sym_equals] = ACTIONS(5915), + [anon_sym_let] = ACTIONS(5915), + [anon_sym_orderby] = ACTIONS(5915), + [anon_sym_group] = ACTIONS(5915), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_select] = ACTIONS(5915), + [anon_sym_as] = ACTIONS(5915), + [anon_sym_is] = ACTIONS(5915), + [anon_sym_DASH_GT] = ACTIONS(5915), + [anon_sym_with] = ACTIONS(5915), + [aux_sym_preproc_if_token3] = ACTIONS(5915), + [aux_sym_preproc_else_token1] = ACTIONS(5915), + [aux_sym_preproc_elif_token1] = ACTIONS(5915), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514294,27 +512543,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3370] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), [sym_preproc_region] = STATE(3370), [sym_preproc_endregion] = STATE(3370), [sym_preproc_line] = STATE(3370), @@ -514324,44 +512552,62 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_COLON] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_LPAREN] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [anon_sym_RBRACE] = ACTIONS(5805), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_in] = ACTIONS(5805), + [anon_sym_where] = ACTIONS(5805), + [anon_sym_QMARK] = ACTIONS(5807), + [anon_sym_DOT] = ACTIONS(5807), + [anon_sym_EQ_GT] = ACTIONS(5805), + [anon_sym_STAR] = ACTIONS(5805), + [anon_sym_switch] = ACTIONS(5805), + [anon_sym_DOT_DOT] = ACTIONS(5805), + [anon_sym_LT_EQ] = ACTIONS(5805), + [anon_sym_GT_EQ] = ACTIONS(5805), + [anon_sym_and] = ACTIONS(5805), + [anon_sym_or] = ACTIONS(5807), + [anon_sym_EQ_EQ] = ACTIONS(5805), + [anon_sym_BANG_EQ] = ACTIONS(5805), + [anon_sym_AMP_AMP] = ACTIONS(5805), + [anon_sym_PIPE_PIPE] = ACTIONS(5805), + [anon_sym_AMP] = ACTIONS(5807), + [sym_op_bitwise_or] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5805), + [sym_op_left_shift] = ACTIONS(5805), + [sym_op_right_shift] = ACTIONS(5807), + [sym_op_unsigned_right_shift] = ACTIONS(5805), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_DASH] = ACTIONS(5807), + [sym_op_divide] = ACTIONS(5807), + [sym_op_modulo] = ACTIONS(5805), + [sym_op_coalescing] = ACTIONS(5805), + [anon_sym_BANG] = ACTIONS(5807), + [anon_sym_PLUS_PLUS] = ACTIONS(5805), + [anon_sym_DASH_DASH] = ACTIONS(5805), + [anon_sym_from] = 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_group] = ACTIONS(5805), + [anon_sym_by] = ACTIONS(5805), + [anon_sym_select] = ACTIONS(5805), + [anon_sym_as] = ACTIONS(5805), + [anon_sym_is] = ACTIONS(5805), + [anon_sym_DASH_GT] = ACTIONS(5805), + [anon_sym_with] = ACTIONS(5805), + [aux_sym_preproc_if_token3] = ACTIONS(5805), + [aux_sym_preproc_else_token1] = ACTIONS(5805), + [aux_sym_preproc_elif_token1] = ACTIONS(5805), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514374,27 +512620,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3371] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), [sym_preproc_region] = STATE(3371), [sym_preproc_endregion] = STATE(3371), [sym_preproc_line] = STATE(3371), @@ -514404,44 +512629,62 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5751), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5779), + [anon_sym_LBRACK] = ACTIONS(5779), + [anon_sym_COLON] = ACTIONS(5779), + [anon_sym_COMMA] = ACTIONS(5779), + [anon_sym_RBRACK] = ACTIONS(5779), + [anon_sym_LPAREN] = ACTIONS(5779), + [anon_sym_RPAREN] = ACTIONS(5779), + [anon_sym_RBRACE] = ACTIONS(5779), + [anon_sym_LT] = ACTIONS(5781), + [anon_sym_GT] = ACTIONS(5781), + [anon_sym_in] = ACTIONS(5779), + [anon_sym_where] = ACTIONS(5779), + [anon_sym_QMARK] = ACTIONS(5781), + [anon_sym_DOT] = ACTIONS(5781), + [anon_sym_EQ_GT] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_switch] = ACTIONS(5779), + [anon_sym_DOT_DOT] = ACTIONS(5779), + [anon_sym_LT_EQ] = ACTIONS(5779), + [anon_sym_GT_EQ] = ACTIONS(5779), + [anon_sym_and] = ACTIONS(5779), + [anon_sym_or] = ACTIONS(5781), + [anon_sym_EQ_EQ] = ACTIONS(5779), + [anon_sym_BANG_EQ] = ACTIONS(5779), + [anon_sym_AMP_AMP] = ACTIONS(5779), + [anon_sym_PIPE_PIPE] = ACTIONS(5779), + [anon_sym_AMP] = ACTIONS(5781), + [sym_op_bitwise_or] = ACTIONS(5781), + [anon_sym_CARET] = ACTIONS(5779), + [sym_op_left_shift] = ACTIONS(5779), + [sym_op_right_shift] = ACTIONS(5781), + [sym_op_unsigned_right_shift] = ACTIONS(5779), + [anon_sym_PLUS] = ACTIONS(5781), + [anon_sym_DASH] = ACTIONS(5781), + [sym_op_divide] = ACTIONS(5781), + [sym_op_modulo] = ACTIONS(5779), + [sym_op_coalescing] = ACTIONS(5779), + [anon_sym_BANG] = ACTIONS(5781), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_from] = ACTIONS(5779), + [anon_sym_join] = ACTIONS(5779), + [anon_sym_on] = ACTIONS(5779), + [anon_sym_equals] = ACTIONS(5779), + [anon_sym_let] = ACTIONS(5779), + [anon_sym_orderby] = ACTIONS(5779), + [anon_sym_group] = ACTIONS(5779), + [anon_sym_by] = ACTIONS(5779), + [anon_sym_select] = ACTIONS(5779), + [anon_sym_as] = ACTIONS(5779), + [anon_sym_is] = ACTIONS(5779), + [anon_sym_DASH_GT] = ACTIONS(5779), + [anon_sym_with] = ACTIONS(5779), + [aux_sym_preproc_if_token3] = ACTIONS(5779), + [aux_sym_preproc_else_token1] = ACTIONS(5779), + [aux_sym_preproc_elif_token1] = ACTIONS(5779), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514454,27 +512697,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3372] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), [sym_preproc_region] = STATE(3372), [sym_preproc_endregion] = STATE(3372), [sym_preproc_line] = STATE(3372), @@ -514484,44 +512706,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3372), [sym_preproc_define] = STATE(3372), [sym_preproc_undef] = STATE(3372), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4752), - [anon_sym_RBRACE] = ACTIONS(4752), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(5865), + [anon_sym_LBRACK] = ACTIONS(5865), + [anon_sym_COLON] = ACTIONS(5865), + [anon_sym_COMMA] = ACTIONS(5865), + [anon_sym_RBRACK] = ACTIONS(5865), + [anon_sym_LPAREN] = ACTIONS(5865), + [anon_sym_RPAREN] = ACTIONS(5865), + [anon_sym_RBRACE] = ACTIONS(5865), + [anon_sym_LT] = ACTIONS(5867), + [anon_sym_GT] = ACTIONS(5867), + [anon_sym_in] = ACTIONS(5865), + [anon_sym_where] = ACTIONS(5865), + [anon_sym_QMARK] = ACTIONS(5867), + [anon_sym_DOT] = ACTIONS(5867), + [anon_sym_EQ_GT] = ACTIONS(5865), + [anon_sym_STAR] = ACTIONS(5865), + [anon_sym_switch] = ACTIONS(5865), + [anon_sym_DOT_DOT] = ACTIONS(5865), + [anon_sym_LT_EQ] = ACTIONS(5865), + [anon_sym_GT_EQ] = ACTIONS(5865), + [anon_sym_and] = ACTIONS(5865), + [anon_sym_or] = ACTIONS(5867), + [anon_sym_EQ_EQ] = ACTIONS(5865), + [anon_sym_BANG_EQ] = ACTIONS(5865), + [anon_sym_AMP_AMP] = ACTIONS(5865), + [anon_sym_PIPE_PIPE] = ACTIONS(5865), + [anon_sym_AMP] = ACTIONS(5867), + [sym_op_bitwise_or] = ACTIONS(5867), + [anon_sym_CARET] = ACTIONS(5865), + [sym_op_left_shift] = ACTIONS(5865), + [sym_op_right_shift] = ACTIONS(5867), + [sym_op_unsigned_right_shift] = ACTIONS(5865), + [anon_sym_PLUS] = ACTIONS(5867), + [anon_sym_DASH] = ACTIONS(5867), + [sym_op_divide] = ACTIONS(5867), + [sym_op_modulo] = ACTIONS(5865), + [sym_op_coalescing] = ACTIONS(5865), + [anon_sym_BANG] = ACTIONS(5867), + [anon_sym_PLUS_PLUS] = ACTIONS(5865), + [anon_sym_DASH_DASH] = ACTIONS(5865), + [anon_sym_from] = ACTIONS(5865), + [anon_sym_join] = ACTIONS(5865), + [anon_sym_on] = ACTIONS(5865), + [anon_sym_equals] = ACTIONS(5865), + [anon_sym_let] = ACTIONS(5865), + [anon_sym_orderby] = ACTIONS(5865), + [anon_sym_group] = ACTIONS(5865), + [anon_sym_by] = ACTIONS(5865), + [anon_sym_select] = ACTIONS(5865), + [anon_sym_as] = ACTIONS(5865), + [anon_sym_is] = ACTIONS(5865), + [anon_sym_DASH_GT] = ACTIONS(5865), + [anon_sym_with] = ACTIONS(5865), + [aux_sym_preproc_if_token3] = ACTIONS(5865), + [aux_sym_preproc_else_token1] = ACTIONS(5865), + [aux_sym_preproc_elif_token1] = ACTIONS(5865), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514534,27 +512774,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3373] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), [sym_preproc_region] = STATE(3373), [sym_preproc_endregion] = STATE(3373), [sym_preproc_line] = STATE(3373), @@ -514564,44 +512783,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3373), [sym_preproc_define] = STATE(3373), [sym_preproc_undef] = STATE(3373), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4766), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_RBRACE] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_COLON] = ACTIONS(3197), + [anon_sym_COMMA] = ACTIONS(3197), + [anon_sym_RBRACK] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_RPAREN] = ACTIONS(3197), + [anon_sym_RBRACE] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_where] = ACTIONS(3197), + [anon_sym_QMARK] = ACTIONS(3195), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_EQ_GT] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_switch] = ACTIONS(3197), + [anon_sym_DOT_DOT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [sym_op_bitwise_or] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3197), + [sym_op_left_shift] = ACTIONS(3197), + [sym_op_right_shift] = ACTIONS(3195), + [sym_op_unsigned_right_shift] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [sym_op_divide] = ACTIONS(3195), + [sym_op_modulo] = ACTIONS(3197), + [sym_op_coalescing] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_from] = 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_group] = ACTIONS(3197), + [anon_sym_by] = ACTIONS(3197), + [anon_sym_select] = ACTIONS(3197), + [anon_sym_as] = ACTIONS(3197), + [anon_sym_is] = ACTIONS(3197), + [anon_sym_DASH_GT] = ACTIONS(3197), + [anon_sym_with] = 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), @@ -514623,65 +512860,62 @@ 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(3912), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_RBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_RPAREN] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3912), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3912), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3912), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3912), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3912), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3912), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3912), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3912), - [anon_sym_from] = ACTIONS(3912), - [anon_sym_into] = ACTIONS(3912), - [anon_sym_join] = ACTIONS(3912), - [anon_sym_on] = ACTIONS(3912), - [anon_sym_equals] = ACTIONS(3912), - [anon_sym_let] = ACTIONS(3912), - [anon_sym_orderby] = ACTIONS(3912), - [anon_sym_group] = ACTIONS(3912), - [anon_sym_by] = ACTIONS(3912), - [anon_sym_select] = ACTIONS(3912), - [anon_sym_as] = ACTIONS(3912), - [anon_sym_is] = ACTIONS(3912), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3912), - [aux_sym_preproc_if_token3] = ACTIONS(3912), - [aux_sym_preproc_else_token1] = ACTIONS(3912), - [aux_sym_preproc_elif_token1] = ACTIONS(3912), + [anon_sym_SEMI] = ACTIONS(5983), + [anon_sym_LBRACK] = ACTIONS(5983), + [anon_sym_COLON] = ACTIONS(5983), + [anon_sym_COMMA] = ACTIONS(5983), + [anon_sym_RBRACK] = ACTIONS(5983), + [anon_sym_LPAREN] = ACTIONS(5983), + [anon_sym_RPAREN] = ACTIONS(5983), + [anon_sym_RBRACE] = ACTIONS(5983), + [anon_sym_LT] = ACTIONS(5985), + [anon_sym_GT] = ACTIONS(5985), + [anon_sym_in] = ACTIONS(5983), + [anon_sym_where] = ACTIONS(5983), + [anon_sym_QMARK] = ACTIONS(5985), + [anon_sym_DOT] = ACTIONS(5985), + [anon_sym_EQ_GT] = ACTIONS(5983), + [anon_sym_STAR] = ACTIONS(5983), + [anon_sym_switch] = ACTIONS(5983), + [anon_sym_DOT_DOT] = ACTIONS(5983), + [anon_sym_LT_EQ] = ACTIONS(5983), + [anon_sym_GT_EQ] = ACTIONS(5983), + [anon_sym_and] = ACTIONS(5983), + [anon_sym_or] = ACTIONS(5985), + [anon_sym_EQ_EQ] = ACTIONS(5983), + [anon_sym_BANG_EQ] = ACTIONS(5983), + [anon_sym_AMP_AMP] = ACTIONS(5983), + [anon_sym_PIPE_PIPE] = ACTIONS(5983), + [anon_sym_AMP] = ACTIONS(5985), + [sym_op_bitwise_or] = ACTIONS(5985), + [anon_sym_CARET] = ACTIONS(5983), + [sym_op_left_shift] = ACTIONS(5983), + [sym_op_right_shift] = ACTIONS(5985), + [sym_op_unsigned_right_shift] = ACTIONS(5983), + [anon_sym_PLUS] = ACTIONS(5985), + [anon_sym_DASH] = ACTIONS(5985), + [sym_op_divide] = ACTIONS(5985), + [sym_op_modulo] = ACTIONS(5983), + [sym_op_coalescing] = ACTIONS(5983), + [anon_sym_BANG] = ACTIONS(5985), + [anon_sym_PLUS_PLUS] = ACTIONS(5983), + [anon_sym_DASH_DASH] = ACTIONS(5983), + [anon_sym_from] = ACTIONS(5983), + [anon_sym_join] = ACTIONS(5983), + [anon_sym_on] = ACTIONS(5983), + [anon_sym_equals] = ACTIONS(5983), + [anon_sym_let] = ACTIONS(5983), + [anon_sym_orderby] = ACTIONS(5983), + [anon_sym_group] = ACTIONS(5983), + [anon_sym_by] = ACTIONS(5983), + [anon_sym_select] = ACTIONS(5983), + [anon_sym_as] = ACTIONS(5983), + [anon_sym_is] = ACTIONS(5983), + [anon_sym_DASH_GT] = ACTIONS(5983), + [anon_sym_with] = ACTIONS(5983), + [aux_sym_preproc_if_token3] = ACTIONS(5983), + [aux_sym_preproc_else_token1] = ACTIONS(5983), + [aux_sym_preproc_elif_token1] = ACTIONS(5983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514694,27 +512928,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3375] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), [sym_preproc_region] = STATE(3375), [sym_preproc_endregion] = STATE(3375), [sym_preproc_line] = STATE(3375), @@ -514724,43 +512937,62 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5869), + [anon_sym_LBRACK] = ACTIONS(5869), + [anon_sym_COLON] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5869), + [anon_sym_RBRACK] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5869), + [anon_sym_RPAREN] = ACTIONS(5869), + [anon_sym_RBRACE] = ACTIONS(5869), + [anon_sym_LT] = ACTIONS(5871), + [anon_sym_GT] = ACTIONS(5871), + [anon_sym_in] = ACTIONS(5869), + [anon_sym_where] = ACTIONS(5869), + [anon_sym_QMARK] = ACTIONS(5871), + [anon_sym_DOT] = ACTIONS(5871), + [anon_sym_EQ_GT] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(5869), + [anon_sym_switch] = ACTIONS(5869), + [anon_sym_DOT_DOT] = ACTIONS(5869), + [anon_sym_LT_EQ] = ACTIONS(5869), + [anon_sym_GT_EQ] = ACTIONS(5869), + [anon_sym_and] = ACTIONS(5869), + [anon_sym_or] = ACTIONS(5871), + [anon_sym_EQ_EQ] = ACTIONS(5869), + [anon_sym_BANG_EQ] = ACTIONS(5869), + [anon_sym_AMP_AMP] = ACTIONS(5869), + [anon_sym_PIPE_PIPE] = ACTIONS(5869), + [anon_sym_AMP] = ACTIONS(5871), + [sym_op_bitwise_or] = ACTIONS(5871), + [anon_sym_CARET] = ACTIONS(5869), + [sym_op_left_shift] = ACTIONS(5869), + [sym_op_right_shift] = ACTIONS(5871), + [sym_op_unsigned_right_shift] = ACTIONS(5869), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5871), + [sym_op_divide] = ACTIONS(5871), + [sym_op_modulo] = ACTIONS(5869), + [sym_op_coalescing] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [anon_sym_PLUS_PLUS] = ACTIONS(5869), + [anon_sym_DASH_DASH] = ACTIONS(5869), + [anon_sym_from] = ACTIONS(5869), + [anon_sym_join] = ACTIONS(5869), + [anon_sym_on] = ACTIONS(5869), + [anon_sym_equals] = ACTIONS(5869), + [anon_sym_let] = ACTIONS(5869), + [anon_sym_orderby] = ACTIONS(5869), + [anon_sym_group] = ACTIONS(5869), + [anon_sym_by] = ACTIONS(5869), + [anon_sym_select] = ACTIONS(5869), + [anon_sym_as] = ACTIONS(5869), + [anon_sym_is] = ACTIONS(5869), + [anon_sym_DASH_GT] = ACTIONS(5869), + [anon_sym_with] = ACTIONS(5869), + [aux_sym_preproc_if_token3] = ACTIONS(5869), + [aux_sym_preproc_else_token1] = ACTIONS(5869), + [aux_sym_preproc_elif_token1] = ACTIONS(5869), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514771,30 +513003,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(4672), }, [3376] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), [sym_preproc_region] = STATE(3376), [sym_preproc_endregion] = STATE(3376), [sym_preproc_line] = STATE(3376), @@ -514804,43 +513014,62 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_COLON] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_RBRACK] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_EQ_GT] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_EQ] = ACTIONS(3193), + [anon_sym_and] = ACTIONS(3193), + [anon_sym_or] = ACTIONS(3191), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_PIPE_PIPE] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [sym_op_bitwise_or] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3193), + [sym_op_left_shift] = ACTIONS(3193), + [sym_op_right_shift] = ACTIONS(3191), + [sym_op_unsigned_right_shift] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [sym_op_divide] = ACTIONS(3191), + [sym_op_modulo] = ACTIONS(3193), + [sym_op_coalescing] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_from] = 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_group] = ACTIONS(3193), + [anon_sym_by] = ACTIONS(3193), + [anon_sym_select] = ACTIONS(3193), + [anon_sym_as] = ACTIONS(3193), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_DASH_GT] = ACTIONS(3193), + [anon_sym_with] = 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), @@ -514851,30 +513080,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(4672), }, [3377] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), [sym_preproc_region] = STATE(3377), [sym_preproc_endregion] = STATE(3377), [sym_preproc_line] = STATE(3377), @@ -514884,43 +513091,62 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(5891), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_COLON] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_RBRACK] = ACTIONS(5891), + [anon_sym_LPAREN] = ACTIONS(5891), + [anon_sym_RPAREN] = ACTIONS(5891), + [anon_sym_RBRACE] = ACTIONS(5891), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_in] = ACTIONS(5891), + [anon_sym_where] = ACTIONS(5891), + [anon_sym_QMARK] = ACTIONS(5893), + [anon_sym_DOT] = ACTIONS(5893), + [anon_sym_EQ_GT] = ACTIONS(5891), + [anon_sym_STAR] = ACTIONS(5891), + [anon_sym_switch] = ACTIONS(5891), + [anon_sym_DOT_DOT] = ACTIONS(5891), + [anon_sym_LT_EQ] = ACTIONS(5891), + [anon_sym_GT_EQ] = ACTIONS(5891), + [anon_sym_and] = ACTIONS(5891), + [anon_sym_or] = ACTIONS(5893), + [anon_sym_EQ_EQ] = ACTIONS(5891), + [anon_sym_BANG_EQ] = ACTIONS(5891), + [anon_sym_AMP_AMP] = ACTIONS(5891), + [anon_sym_PIPE_PIPE] = ACTIONS(5891), + [anon_sym_AMP] = ACTIONS(5893), + [sym_op_bitwise_or] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5891), + [sym_op_left_shift] = ACTIONS(5891), + [sym_op_right_shift] = ACTIONS(5893), + [sym_op_unsigned_right_shift] = ACTIONS(5891), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_DASH] = ACTIONS(5893), + [sym_op_divide] = ACTIONS(5893), + [sym_op_modulo] = ACTIONS(5891), + [sym_op_coalescing] = ACTIONS(5891), + [anon_sym_BANG] = ACTIONS(5893), + [anon_sym_PLUS_PLUS] = ACTIONS(5891), + [anon_sym_DASH_DASH] = ACTIONS(5891), + [anon_sym_from] = ACTIONS(5891), + [anon_sym_join] = ACTIONS(5891), + [anon_sym_on] = ACTIONS(5891), + [anon_sym_equals] = ACTIONS(5891), + [anon_sym_let] = ACTIONS(5891), + [anon_sym_orderby] = ACTIONS(5891), + [anon_sym_group] = ACTIONS(5891), + [anon_sym_by] = ACTIONS(5891), + [anon_sym_select] = ACTIONS(5891), + [anon_sym_as] = ACTIONS(5891), + [anon_sym_is] = ACTIONS(5891), + [anon_sym_DASH_GT] = ACTIONS(5891), + [anon_sym_with] = ACTIONS(5891), + [aux_sym_preproc_if_token3] = ACTIONS(5891), + [aux_sym_preproc_else_token1] = ACTIONS(5891), + [aux_sym_preproc_elif_token1] = ACTIONS(5891), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514931,30 +513157,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(4774), }, [3378] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), [sym_preproc_region] = STATE(3378), [sym_preproc_endregion] = STATE(3378), [sym_preproc_line] = STATE(3378), @@ -514964,44 +513168,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3378), [sym_preproc_define] = STATE(3378), [sym_preproc_undef] = STATE(3378), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5753), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5751), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5895), + [anon_sym_COLON] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_RBRACK] = ACTIONS(5895), + [anon_sym_LPAREN] = ACTIONS(5895), + [anon_sym_RPAREN] = ACTIONS(5895), + [anon_sym_RBRACE] = ACTIONS(5895), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_in] = ACTIONS(5895), + [anon_sym_where] = ACTIONS(5895), + [anon_sym_QMARK] = ACTIONS(5897), + [anon_sym_DOT] = ACTIONS(5897), + [anon_sym_EQ_GT] = ACTIONS(5895), + [anon_sym_STAR] = ACTIONS(5895), + [anon_sym_switch] = ACTIONS(5895), + [anon_sym_DOT_DOT] = ACTIONS(5895), + [anon_sym_LT_EQ] = ACTIONS(5895), + [anon_sym_GT_EQ] = ACTIONS(5895), + [anon_sym_and] = ACTIONS(5895), + [anon_sym_or] = ACTIONS(5897), + [anon_sym_EQ_EQ] = ACTIONS(5895), + [anon_sym_BANG_EQ] = ACTIONS(5895), + [anon_sym_AMP_AMP] = ACTIONS(5895), + [anon_sym_PIPE_PIPE] = ACTIONS(5895), + [anon_sym_AMP] = ACTIONS(5897), + [sym_op_bitwise_or] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5895), + [sym_op_left_shift] = ACTIONS(5895), + [sym_op_right_shift] = ACTIONS(5897), + [sym_op_unsigned_right_shift] = ACTIONS(5895), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [sym_op_divide] = ACTIONS(5897), + [sym_op_modulo] = ACTIONS(5895), + [sym_op_coalescing] = ACTIONS(5895), + [anon_sym_BANG] = ACTIONS(5897), + [anon_sym_PLUS_PLUS] = ACTIONS(5895), + [anon_sym_DASH_DASH] = ACTIONS(5895), + [anon_sym_from] = ACTIONS(5895), + [anon_sym_join] = ACTIONS(5895), + [anon_sym_on] = ACTIONS(5895), + [anon_sym_equals] = ACTIONS(5895), + [anon_sym_let] = ACTIONS(5895), + [anon_sym_orderby] = ACTIONS(5895), + [anon_sym_group] = ACTIONS(5895), + [anon_sym_by] = ACTIONS(5895), + [anon_sym_select] = ACTIONS(5895), + [anon_sym_as] = ACTIONS(5895), + [anon_sym_is] = ACTIONS(5895), + [anon_sym_DASH_GT] = ACTIONS(5895), + [anon_sym_with] = ACTIONS(5895), + [aux_sym_preproc_if_token3] = ACTIONS(5895), + [aux_sym_preproc_else_token1] = ACTIONS(5895), + [aux_sym_preproc_elif_token1] = ACTIONS(5895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515014,7 +513236,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3379] = { - [sym_initializer_expression] = STATE(3886), [sym_preproc_region] = STATE(3379), [sym_preproc_endregion] = STATE(3379), [sym_preproc_line] = STATE(3379), @@ -515024,64 +513245,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3379), [sym_preproc_define] = STATE(3379), [sym_preproc_undef] = STATE(3379), - [anon_sym_SEMI] = ACTIONS(5755), - [anon_sym_LBRACK] = ACTIONS(5755), - [anon_sym_COLON] = ACTIONS(5755), - [anon_sym_COMMA] = ACTIONS(5755), - [anon_sym_RBRACK] = ACTIONS(5755), - [anon_sym_LPAREN] = ACTIONS(5755), - [anon_sym_RPAREN] = ACTIONS(5755), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(5755), - [anon_sym_LT] = ACTIONS(5757), - [anon_sym_GT] = ACTIONS(5757), - [anon_sym_in] = ACTIONS(5757), - [anon_sym_where] = ACTIONS(5755), - [anon_sym_QMARK] = ACTIONS(5757), - [anon_sym_BANG] = ACTIONS(5757), - [anon_sym_PLUS_PLUS] = ACTIONS(5755), - [anon_sym_DASH_DASH] = ACTIONS(5755), - [anon_sym_PLUS] = ACTIONS(5757), - [anon_sym_DASH] = ACTIONS(5757), - [anon_sym_STAR] = ACTIONS(5755), - [anon_sym_SLASH] = ACTIONS(5757), - [anon_sym_PERCENT] = ACTIONS(5755), - [anon_sym_CARET] = ACTIONS(5755), - [anon_sym_PIPE] = ACTIONS(5757), - [anon_sym_AMP] = ACTIONS(5757), - [anon_sym_LT_LT] = ACTIONS(5755), - [anon_sym_GT_GT] = ACTIONS(5757), - [anon_sym_GT_GT_GT] = ACTIONS(5755), - [anon_sym_EQ_EQ] = ACTIONS(5755), - [anon_sym_BANG_EQ] = ACTIONS(5755), - [anon_sym_GT_EQ] = ACTIONS(5755), - [anon_sym_LT_EQ] = ACTIONS(5755), - [anon_sym_DOT] = ACTIONS(5757), - [anon_sym_EQ_GT] = ACTIONS(5755), - [anon_sym_switch] = ACTIONS(5755), - [anon_sym_DOT_DOT] = ACTIONS(5755), - [anon_sym_and] = ACTIONS(5755), - [anon_sym_or] = ACTIONS(5757), - [anon_sym_AMP_AMP] = ACTIONS(5755), - [anon_sym_PIPE_PIPE] = ACTIONS(5755), - [sym_op_coalescing] = ACTIONS(5755), - [anon_sym_from] = ACTIONS(5755), - [anon_sym_into] = ACTIONS(5755), - [anon_sym_join] = ACTIONS(5755), - [anon_sym_on] = ACTIONS(5755), - [anon_sym_equals] = ACTIONS(5755), - [anon_sym_let] = ACTIONS(5755), - [anon_sym_orderby] = ACTIONS(5755), - [anon_sym_group] = ACTIONS(5755), - [anon_sym_by] = ACTIONS(5755), - [anon_sym_select] = ACTIONS(5755), - [anon_sym_as] = ACTIONS(5755), - [anon_sym_is] = ACTIONS(5755), - [anon_sym_DASH_GT] = ACTIONS(5755), - [anon_sym_with] = ACTIONS(5755), - [aux_sym_preproc_if_token3] = ACTIONS(5755), - [aux_sym_preproc_else_token1] = ACTIONS(5755), - [aux_sym_preproc_elif_token1] = ACTIONS(5755), + [anon_sym_SEMI] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_RBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_in] = ACTIONS(5508), + [anon_sym_where] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_EQ_GT] = ACTIONS(5508), + [anon_sym_STAR] = ACTIONS(5508), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5510), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5508), + [sym_op_left_shift] = ACTIONS(5508), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5508), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5508), + [sym_op_coalescing] = ACTIONS(5508), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_from] = ACTIONS(5508), + [anon_sym_join] = ACTIONS(5508), + [anon_sym_on] = ACTIONS(5508), + [anon_sym_equals] = ACTIONS(5508), + [anon_sym_let] = ACTIONS(5508), + [anon_sym_orderby] = ACTIONS(5508), + [anon_sym_group] = ACTIONS(5508), + [anon_sym_by] = ACTIONS(5508), + [anon_sym_select] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [aux_sym_preproc_if_token3] = ACTIONS(5508), + [aux_sym_preproc_else_token1] = ACTIONS(5508), + [aux_sym_preproc_elif_token1] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515094,27 +513313,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3380] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), [sym_preproc_region] = STATE(3380), [sym_preproc_endregion] = STATE(3380), [sym_preproc_line] = STATE(3380), @@ -515124,43 +513322,62 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_EQ] = ACTIONS(6053), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_where] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5510), + [anon_sym_PLUS_EQ] = ACTIONS(6055), + [anon_sym_DASH_EQ] = ACTIONS(6055), + [anon_sym_STAR_EQ] = ACTIONS(6055), + [anon_sym_SLASH_EQ] = ACTIONS(6055), + [anon_sym_PERCENT_EQ] = ACTIONS(6055), + [anon_sym_AMP_EQ] = ACTIONS(6055), + [anon_sym_CARET_EQ] = ACTIONS(6055), + [anon_sym_PIPE_EQ] = ACTIONS(6055), + [anon_sym_LT_LT_EQ] = ACTIONS(6055), + [anon_sym_GT_GT_EQ] = ACTIONS(6055), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6055), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6055), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_from] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_join] = ACTIONS(5508), + [anon_sym_let] = ACTIONS(5508), + [anon_sym_orderby] = ACTIONS(5508), + [anon_sym_group] = ACTIONS(5508), + [anon_sym_select] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515171,30 +513388,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(4672), }, [3381] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), [sym_preproc_region] = STATE(3381), [sym_preproc_endregion] = STATE(3381), [sym_preproc_line] = STATE(3381), @@ -515204,44 +513399,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3381), [sym_preproc_define] = STATE(3381), [sym_preproc_undef] = STATE(3381), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5753), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4708), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5751), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4660), + [anon_sym_COLON] = ACTIONS(4660), + [anon_sym_COMMA] = ACTIONS(4660), + [anon_sym_RBRACK] = ACTIONS(4660), + [anon_sym_LPAREN] = ACTIONS(4660), + [anon_sym_RPAREN] = ACTIONS(4660), + [anon_sym_RBRACE] = ACTIONS(4660), + [anon_sym_LT] = ACTIONS(4662), + [anon_sym_GT] = ACTIONS(4662), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_QMARK] = ACTIONS(4662), + [anon_sym_DOT] = ACTIONS(4662), + [anon_sym_EQ_GT] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [anon_sym_switch] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4660), + [anon_sym_LT_EQ] = ACTIONS(4660), + [anon_sym_GT_EQ] = ACTIONS(4660), + [anon_sym_and] = ACTIONS(4660), + [anon_sym_or] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_AMP_AMP] = ACTIONS(4660), + [anon_sym_PIPE_PIPE] = ACTIONS(4660), + [anon_sym_AMP] = ACTIONS(4662), + [sym_op_bitwise_or] = ACTIONS(4662), + [anon_sym_CARET] = ACTIONS(4660), + [sym_op_left_shift] = ACTIONS(4660), + [sym_op_right_shift] = ACTIONS(4662), + [sym_op_unsigned_right_shift] = ACTIONS(4660), + [anon_sym_PLUS] = ACTIONS(4662), + [anon_sym_DASH] = ACTIONS(4662), + [sym_op_divide] = ACTIONS(4662), + [sym_op_modulo] = ACTIONS(4660), + [sym_op_coalescing] = ACTIONS(4660), + [anon_sym_BANG] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4660), + [anon_sym_DASH_DASH] = ACTIONS(4660), + [anon_sym_from] = ACTIONS(4660), + [anon_sym_join] = ACTIONS(4660), + [anon_sym_on] = ACTIONS(4660), + [anon_sym_equals] = ACTIONS(4660), + [anon_sym_let] = ACTIONS(4660), + [anon_sym_orderby] = ACTIONS(4660), + [anon_sym_group] = ACTIONS(4660), + [anon_sym_by] = ACTIONS(4660), + [anon_sym_select] = ACTIONS(4660), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_DASH_GT] = ACTIONS(4660), + [anon_sym_with] = ACTIONS(4660), + [aux_sym_preproc_if_token3] = ACTIONS(4660), + [aux_sym_preproc_else_token1] = ACTIONS(4660), + [aux_sym_preproc_elif_token1] = ACTIONS(4660), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515254,27 +513467,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3382] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3382), [sym_preproc_endregion] = STATE(3382), [sym_preproc_line] = STATE(3382), @@ -515284,43 +513491,47 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5304), + [anon_sym_QMARK] = ACTIONS(6033), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6037), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5304), + [anon_sym_select] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515331,30 +513542,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(1435), }, [3383] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), [sym_preproc_region] = STATE(3383), [sym_preproc_endregion] = STATE(3383), [sym_preproc_line] = STATE(3383), @@ -515364,44 +513553,62 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5753), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4748), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5751), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5887), + [anon_sym_LBRACK] = ACTIONS(5887), + [anon_sym_COLON] = ACTIONS(5887), + [anon_sym_COMMA] = ACTIONS(5887), + [anon_sym_RBRACK] = ACTIONS(5887), + [anon_sym_LPAREN] = ACTIONS(5887), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_RBRACE] = ACTIONS(5887), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_in] = ACTIONS(5887), + [anon_sym_where] = ACTIONS(5887), + [anon_sym_QMARK] = ACTIONS(5889), + [anon_sym_DOT] = ACTIONS(5889), + [anon_sym_EQ_GT] = ACTIONS(5887), + [anon_sym_STAR] = ACTIONS(5887), + [anon_sym_switch] = ACTIONS(5887), + [anon_sym_DOT_DOT] = ACTIONS(5887), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_and] = ACTIONS(5887), + [anon_sym_or] = ACTIONS(5889), + [anon_sym_EQ_EQ] = ACTIONS(5887), + [anon_sym_BANG_EQ] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5889), + [sym_op_bitwise_or] = ACTIONS(5889), + [anon_sym_CARET] = ACTIONS(5887), + [sym_op_left_shift] = ACTIONS(5887), + [sym_op_right_shift] = ACTIONS(5889), + [sym_op_unsigned_right_shift] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5889), + [anon_sym_DASH] = ACTIONS(5889), + [sym_op_divide] = ACTIONS(5889), + [sym_op_modulo] = ACTIONS(5887), + [sym_op_coalescing] = ACTIONS(5887), + [anon_sym_BANG] = ACTIONS(5889), + [anon_sym_PLUS_PLUS] = ACTIONS(5887), + [anon_sym_DASH_DASH] = ACTIONS(5887), + [anon_sym_from] = ACTIONS(5887), + [anon_sym_join] = ACTIONS(5887), + [anon_sym_on] = ACTIONS(5887), + [anon_sym_equals] = ACTIONS(5887), + [anon_sym_let] = ACTIONS(5887), + [anon_sym_orderby] = ACTIONS(5887), + [anon_sym_group] = ACTIONS(5887), + [anon_sym_by] = ACTIONS(5887), + [anon_sym_select] = ACTIONS(5887), + [anon_sym_as] = ACTIONS(5887), + [anon_sym_is] = ACTIONS(5887), + [anon_sym_DASH_GT] = ACTIONS(5887), + [anon_sym_with] = ACTIONS(5887), + [aux_sym_preproc_if_token3] = ACTIONS(5887), + [aux_sym_preproc_else_token1] = ACTIONS(5887), + [aux_sym_preproc_elif_token1] = ACTIONS(5887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515414,27 +513621,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3384] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), [sym_preproc_region] = STATE(3384), [sym_preproc_endregion] = STATE(3384), [sym_preproc_line] = STATE(3384), @@ -515444,44 +513630,62 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5753), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4782), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5751), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_COMMA] = ACTIONS(5923), + [anon_sym_RBRACK] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(5923), + [anon_sym_RPAREN] = ACTIONS(5923), + [anon_sym_RBRACE] = ACTIONS(5923), + [anon_sym_LT] = ACTIONS(5925), + [anon_sym_GT] = ACTIONS(5925), + [anon_sym_in] = ACTIONS(5923), + [anon_sym_where] = ACTIONS(5923), + [anon_sym_QMARK] = ACTIONS(5925), + [anon_sym_DOT] = ACTIONS(5925), + [anon_sym_EQ_GT] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_switch] = ACTIONS(5923), + [anon_sym_DOT_DOT] = ACTIONS(5923), + [anon_sym_LT_EQ] = ACTIONS(5923), + [anon_sym_GT_EQ] = ACTIONS(5923), + [anon_sym_and] = ACTIONS(5923), + [anon_sym_or] = ACTIONS(5925), + [anon_sym_EQ_EQ] = ACTIONS(5923), + [anon_sym_BANG_EQ] = ACTIONS(5923), + [anon_sym_AMP_AMP] = ACTIONS(5923), + [anon_sym_PIPE_PIPE] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5925), + [sym_op_bitwise_or] = ACTIONS(5925), + [anon_sym_CARET] = ACTIONS(5923), + [sym_op_left_shift] = ACTIONS(5923), + [sym_op_right_shift] = ACTIONS(5925), + [sym_op_unsigned_right_shift] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5925), + [sym_op_divide] = ACTIONS(5925), + [sym_op_modulo] = ACTIONS(5923), + [sym_op_coalescing] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5925), + [anon_sym_PLUS_PLUS] = ACTIONS(5923), + [anon_sym_DASH_DASH] = ACTIONS(5923), + [anon_sym_from] = ACTIONS(5923), + [anon_sym_join] = ACTIONS(5923), + [anon_sym_on] = ACTIONS(5923), + [anon_sym_equals] = ACTIONS(5923), + [anon_sym_let] = ACTIONS(5923), + [anon_sym_orderby] = ACTIONS(5923), + [anon_sym_group] = ACTIONS(5923), + [anon_sym_by] = ACTIONS(5923), + [anon_sym_select] = ACTIONS(5923), + [anon_sym_as] = ACTIONS(5923), + [anon_sym_is] = ACTIONS(5923), + [anon_sym_DASH_GT] = ACTIONS(5923), + [anon_sym_with] = ACTIONS(5923), + [aux_sym_preproc_if_token3] = ACTIONS(5923), + [aux_sym_preproc_else_token1] = ACTIONS(5923), + [aux_sym_preproc_elif_token1] = ACTIONS(5923), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515494,27 +513698,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3385] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), [sym_preproc_region] = STATE(3385), [sym_preproc_endregion] = STATE(3385), [sym_preproc_line] = STATE(3385), @@ -515524,43 +513707,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3385), [sym_preproc_define] = STATE(3385), [sym_preproc_undef] = STATE(3385), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5975), + [anon_sym_LBRACK] = ACTIONS(5975), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_COMMA] = ACTIONS(5975), + [anon_sym_RBRACK] = ACTIONS(5975), + [anon_sym_LPAREN] = ACTIONS(5975), + [anon_sym_RPAREN] = ACTIONS(5975), + [anon_sym_RBRACE] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5977), + [anon_sym_GT] = ACTIONS(5977), + [anon_sym_in] = ACTIONS(5975), + [anon_sym_where] = ACTIONS(5975), + [anon_sym_QMARK] = ACTIONS(5977), + [anon_sym_DOT] = ACTIONS(5977), + [anon_sym_EQ_GT] = ACTIONS(5975), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_switch] = ACTIONS(5975), + [anon_sym_DOT_DOT] = ACTIONS(5975), + [anon_sym_LT_EQ] = ACTIONS(5975), + [anon_sym_GT_EQ] = ACTIONS(5975), + [anon_sym_and] = ACTIONS(5975), + [anon_sym_or] = ACTIONS(5977), + [anon_sym_EQ_EQ] = ACTIONS(5975), + [anon_sym_BANG_EQ] = ACTIONS(5975), + [anon_sym_AMP_AMP] = ACTIONS(5975), + [anon_sym_PIPE_PIPE] = ACTIONS(5975), + [anon_sym_AMP] = ACTIONS(5977), + [sym_op_bitwise_or] = ACTIONS(5977), + [anon_sym_CARET] = ACTIONS(5975), + [sym_op_left_shift] = ACTIONS(5975), + [sym_op_right_shift] = ACTIONS(5977), + [sym_op_unsigned_right_shift] = ACTIONS(5975), + [anon_sym_PLUS] = ACTIONS(5977), + [anon_sym_DASH] = ACTIONS(5977), + [sym_op_divide] = ACTIONS(5977), + [sym_op_modulo] = ACTIONS(5975), + [sym_op_coalescing] = ACTIONS(5975), + [anon_sym_BANG] = ACTIONS(5977), + [anon_sym_PLUS_PLUS] = ACTIONS(5975), + [anon_sym_DASH_DASH] = ACTIONS(5975), + [anon_sym_from] = ACTIONS(5975), + [anon_sym_join] = ACTIONS(5975), + [anon_sym_on] = ACTIONS(5975), + [anon_sym_equals] = ACTIONS(5975), + [anon_sym_let] = ACTIONS(5975), + [anon_sym_orderby] = ACTIONS(5975), + [anon_sym_group] = ACTIONS(5975), + [anon_sym_by] = ACTIONS(5975), + [anon_sym_select] = ACTIONS(5975), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5975), + [anon_sym_DASH_GT] = ACTIONS(5975), + [anon_sym_with] = ACTIONS(5975), + [aux_sym_preproc_if_token3] = ACTIONS(5975), + [aux_sym_preproc_else_token1] = ACTIONS(5975), + [aux_sym_preproc_elif_token1] = ACTIONS(5975), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515571,30 +513773,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(4672), }, [3386] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), [sym_preproc_region] = STATE(3386), [sym_preproc_endregion] = STATE(3386), [sym_preproc_line] = STATE(3386), @@ -515604,44 +513784,62 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5947), + [anon_sym_LBRACK] = ACTIONS(5947), + [anon_sym_COLON] = ACTIONS(5947), + [anon_sym_COMMA] = ACTIONS(5947), + [anon_sym_RBRACK] = ACTIONS(5947), + [anon_sym_LPAREN] = ACTIONS(5947), + [anon_sym_RPAREN] = ACTIONS(5947), + [anon_sym_RBRACE] = ACTIONS(5947), + [anon_sym_LT] = ACTIONS(5949), + [anon_sym_GT] = ACTIONS(5949), + [anon_sym_in] = ACTIONS(5947), + [anon_sym_where] = ACTIONS(5947), + [anon_sym_QMARK] = ACTIONS(5949), + [anon_sym_DOT] = ACTIONS(5949), + [anon_sym_EQ_GT] = ACTIONS(5947), + [anon_sym_STAR] = ACTIONS(5947), + [anon_sym_switch] = ACTIONS(5947), + [anon_sym_DOT_DOT] = ACTIONS(5947), + [anon_sym_LT_EQ] = ACTIONS(5947), + [anon_sym_GT_EQ] = ACTIONS(5947), + [anon_sym_and] = ACTIONS(5947), + [anon_sym_or] = ACTIONS(5949), + [anon_sym_EQ_EQ] = ACTIONS(5947), + [anon_sym_BANG_EQ] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [anon_sym_AMP] = ACTIONS(5949), + [sym_op_bitwise_or] = ACTIONS(5949), + [anon_sym_CARET] = ACTIONS(5947), + [sym_op_left_shift] = ACTIONS(5947), + [sym_op_right_shift] = ACTIONS(5949), + [sym_op_unsigned_right_shift] = ACTIONS(5947), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [sym_op_divide] = ACTIONS(5949), + [sym_op_modulo] = ACTIONS(5947), + [sym_op_coalescing] = ACTIONS(5947), + [anon_sym_BANG] = ACTIONS(5949), + [anon_sym_PLUS_PLUS] = ACTIONS(5947), + [anon_sym_DASH_DASH] = ACTIONS(5947), + [anon_sym_from] = ACTIONS(5947), + [anon_sym_join] = ACTIONS(5947), + [anon_sym_on] = ACTIONS(5947), + [anon_sym_equals] = ACTIONS(5947), + [anon_sym_let] = ACTIONS(5947), + [anon_sym_orderby] = ACTIONS(5947), + [anon_sym_group] = ACTIONS(5947), + [anon_sym_by] = ACTIONS(5947), + [anon_sym_select] = ACTIONS(5947), + [anon_sym_as] = ACTIONS(5947), + [anon_sym_is] = ACTIONS(5947), + [anon_sym_DASH_GT] = ACTIONS(5947), + [anon_sym_with] = ACTIONS(5947), + [aux_sym_preproc_if_token3] = ACTIONS(5947), + [aux_sym_preproc_else_token1] = ACTIONS(5947), + [aux_sym_preproc_elif_token1] = ACTIONS(5947), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515654,27 +513852,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3387] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), [sym_preproc_region] = STATE(3387), [sym_preproc_endregion] = STATE(3387), [sym_preproc_line] = STATE(3387), @@ -515684,43 +513861,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3387), [sym_preproc_define] = STATE(3387), [sym_preproc_undef] = STATE(3387), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5775), + [anon_sym_LBRACK] = ACTIONS(5775), + [anon_sym_COLON] = ACTIONS(5775), + [anon_sym_COMMA] = ACTIONS(5775), + [anon_sym_RBRACK] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5775), + [anon_sym_RPAREN] = ACTIONS(5775), + [anon_sym_RBRACE] = ACTIONS(5775), + [anon_sym_LT] = ACTIONS(5777), + [anon_sym_GT] = ACTIONS(5777), + [anon_sym_in] = ACTIONS(5775), + [anon_sym_where] = ACTIONS(5775), + [anon_sym_QMARK] = ACTIONS(5777), + [anon_sym_DOT] = ACTIONS(5777), + [anon_sym_EQ_GT] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5775), + [anon_sym_switch] = ACTIONS(5775), + [anon_sym_DOT_DOT] = ACTIONS(5775), + [anon_sym_LT_EQ] = ACTIONS(5775), + [anon_sym_GT_EQ] = ACTIONS(5775), + [anon_sym_and] = ACTIONS(5775), + [anon_sym_or] = ACTIONS(5777), + [anon_sym_EQ_EQ] = ACTIONS(5775), + [anon_sym_BANG_EQ] = ACTIONS(5775), + [anon_sym_AMP_AMP] = ACTIONS(5775), + [anon_sym_PIPE_PIPE] = ACTIONS(5775), + [anon_sym_AMP] = ACTIONS(5777), + [sym_op_bitwise_or] = ACTIONS(5777), + [anon_sym_CARET] = ACTIONS(5775), + [sym_op_left_shift] = ACTIONS(5775), + [sym_op_right_shift] = ACTIONS(5777), + [sym_op_unsigned_right_shift] = ACTIONS(5775), + [anon_sym_PLUS] = ACTIONS(5777), + [anon_sym_DASH] = ACTIONS(5777), + [sym_op_divide] = ACTIONS(5777), + [sym_op_modulo] = ACTIONS(5775), + [sym_op_coalescing] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_from] = ACTIONS(5775), + [anon_sym_join] = ACTIONS(5775), + [anon_sym_on] = ACTIONS(5775), + [anon_sym_equals] = ACTIONS(5775), + [anon_sym_let] = ACTIONS(5775), + [anon_sym_orderby] = ACTIONS(5775), + [anon_sym_group] = ACTIONS(5775), + [anon_sym_by] = ACTIONS(5775), + [anon_sym_select] = ACTIONS(5775), + [anon_sym_as] = ACTIONS(5775), + [anon_sym_is] = ACTIONS(5775), + [anon_sym_DASH_GT] = ACTIONS(5775), + [anon_sym_with] = ACTIONS(5775), + [aux_sym_preproc_if_token3] = ACTIONS(5775), + [aux_sym_preproc_else_token1] = ACTIONS(5775), + [aux_sym_preproc_elif_token1] = ACTIONS(5775), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515731,30 +513927,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(4672), }, [3388] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), [sym_preproc_region] = STATE(3388), [sym_preproc_endregion] = STATE(3388), [sym_preproc_line] = STATE(3388), @@ -515764,44 +513938,62 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5813), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_COLON] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_LPAREN] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [anon_sym_RBRACE] = ACTIONS(5813), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_in] = ACTIONS(5813), + [anon_sym_where] = ACTIONS(5813), + [anon_sym_QMARK] = ACTIONS(5815), + [anon_sym_DOT] = ACTIONS(5815), + [anon_sym_EQ_GT] = ACTIONS(5813), + [anon_sym_STAR] = ACTIONS(5813), + [anon_sym_switch] = ACTIONS(5813), + [anon_sym_DOT_DOT] = ACTIONS(5813), + [anon_sym_LT_EQ] = ACTIONS(5813), + [anon_sym_GT_EQ] = ACTIONS(5813), + [anon_sym_and] = ACTIONS(5813), + [anon_sym_or] = ACTIONS(5815), + [anon_sym_EQ_EQ] = ACTIONS(5813), + [anon_sym_BANG_EQ] = ACTIONS(5813), + [anon_sym_AMP_AMP] = ACTIONS(5813), + [anon_sym_PIPE_PIPE] = ACTIONS(5813), + [anon_sym_AMP] = ACTIONS(5815), + [sym_op_bitwise_or] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5813), + [sym_op_left_shift] = ACTIONS(5813), + [sym_op_right_shift] = ACTIONS(5815), + [sym_op_unsigned_right_shift] = ACTIONS(5813), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_DASH] = ACTIONS(5815), + [sym_op_divide] = ACTIONS(5815), + [sym_op_modulo] = ACTIONS(5813), + [sym_op_coalescing] = ACTIONS(5813), + [anon_sym_BANG] = ACTIONS(5815), + [anon_sym_PLUS_PLUS] = ACTIONS(5813), + [anon_sym_DASH_DASH] = ACTIONS(5813), + [anon_sym_from] = ACTIONS(5813), + [anon_sym_join] = ACTIONS(5813), + [anon_sym_on] = ACTIONS(5813), + [anon_sym_equals] = ACTIONS(5813), + [anon_sym_let] = ACTIONS(5813), + [anon_sym_orderby] = ACTIONS(5813), + [anon_sym_group] = ACTIONS(5813), + [anon_sym_by] = ACTIONS(5813), + [anon_sym_select] = ACTIONS(5813), + [anon_sym_as] = ACTIONS(5813), + [anon_sym_is] = ACTIONS(5813), + [anon_sym_DASH_GT] = ACTIONS(5813), + [anon_sym_with] = ACTIONS(5813), + [aux_sym_preproc_if_token3] = ACTIONS(5813), + [aux_sym_preproc_else_token1] = ACTIONS(5813), + [aux_sym_preproc_elif_token1] = ACTIONS(5813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515814,27 +514006,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3389] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), [sym_preproc_region] = STATE(3389), [sym_preproc_endregion] = STATE(3389), [sym_preproc_line] = STATE(3389), @@ -515844,44 +514015,62 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5853), + [anon_sym_LBRACK] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [anon_sym_COMMA] = ACTIONS(5853), + [anon_sym_RBRACK] = ACTIONS(5853), + [anon_sym_LPAREN] = ACTIONS(5853), + [anon_sym_RPAREN] = ACTIONS(5853), + [anon_sym_RBRACE] = ACTIONS(5853), + [anon_sym_LT] = ACTIONS(5855), + [anon_sym_GT] = ACTIONS(5855), + [anon_sym_in] = ACTIONS(5853), + [anon_sym_where] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5855), + [anon_sym_DOT] = ACTIONS(5855), + [anon_sym_EQ_GT] = ACTIONS(5853), + [anon_sym_STAR] = ACTIONS(5853), + [anon_sym_switch] = ACTIONS(5853), + [anon_sym_DOT_DOT] = ACTIONS(5853), + [anon_sym_LT_EQ] = ACTIONS(5853), + [anon_sym_GT_EQ] = ACTIONS(5853), + [anon_sym_and] = ACTIONS(5853), + [anon_sym_or] = ACTIONS(5855), + [anon_sym_EQ_EQ] = ACTIONS(5853), + [anon_sym_BANG_EQ] = ACTIONS(5853), + [anon_sym_AMP_AMP] = ACTIONS(5853), + [anon_sym_PIPE_PIPE] = ACTIONS(5853), + [anon_sym_AMP] = ACTIONS(5855), + [sym_op_bitwise_or] = ACTIONS(5855), + [anon_sym_CARET] = ACTIONS(5853), + [sym_op_left_shift] = ACTIONS(5853), + [sym_op_right_shift] = ACTIONS(5855), + [sym_op_unsigned_right_shift] = ACTIONS(5853), + [anon_sym_PLUS] = ACTIONS(5855), + [anon_sym_DASH] = ACTIONS(5855), + [sym_op_divide] = ACTIONS(5855), + [sym_op_modulo] = ACTIONS(5853), + [sym_op_coalescing] = ACTIONS(5853), + [anon_sym_BANG] = ACTIONS(5855), + [anon_sym_PLUS_PLUS] = ACTIONS(5853), + [anon_sym_DASH_DASH] = ACTIONS(5853), + [anon_sym_from] = ACTIONS(5853), + [anon_sym_join] = ACTIONS(5853), + [anon_sym_on] = ACTIONS(5853), + [anon_sym_equals] = ACTIONS(5853), + [anon_sym_let] = ACTIONS(5853), + [anon_sym_orderby] = ACTIONS(5853), + [anon_sym_group] = ACTIONS(5853), + [anon_sym_by] = ACTIONS(5853), + [anon_sym_select] = ACTIONS(5853), + [anon_sym_as] = ACTIONS(5853), + [anon_sym_is] = ACTIONS(5853), + [anon_sym_DASH_GT] = ACTIONS(5853), + [anon_sym_with] = ACTIONS(5853), + [aux_sym_preproc_if_token3] = ACTIONS(5853), + [aux_sym_preproc_else_token1] = ACTIONS(5853), + [aux_sym_preproc_elif_token1] = ACTIONS(5853), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515894,27 +514083,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3390] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), [sym_preproc_region] = STATE(3390), [sym_preproc_endregion] = STATE(3390), [sym_preproc_line] = STATE(3390), @@ -515924,44 +514092,62 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5761), + [anon_sym_LBRACK] = ACTIONS(5761), + [anon_sym_COLON] = ACTIONS(5761), + [anon_sym_COMMA] = ACTIONS(5761), + [anon_sym_RBRACK] = ACTIONS(5761), + [anon_sym_LPAREN] = ACTIONS(5761), + [anon_sym_RPAREN] = ACTIONS(5761), + [anon_sym_RBRACE] = ACTIONS(5761), + [anon_sym_LT] = ACTIONS(5763), + [anon_sym_GT] = ACTIONS(5763), + [anon_sym_in] = ACTIONS(5761), + [anon_sym_where] = ACTIONS(5761), + [anon_sym_QMARK] = ACTIONS(5763), + [anon_sym_DOT] = ACTIONS(5763), + [anon_sym_EQ_GT] = ACTIONS(5761), + [anon_sym_STAR] = ACTIONS(5761), + [anon_sym_switch] = ACTIONS(5761), + [anon_sym_DOT_DOT] = ACTIONS(5761), + [anon_sym_LT_EQ] = ACTIONS(5761), + [anon_sym_GT_EQ] = ACTIONS(5761), + [anon_sym_and] = ACTIONS(5761), + [anon_sym_or] = ACTIONS(5763), + [anon_sym_EQ_EQ] = ACTIONS(5761), + [anon_sym_BANG_EQ] = ACTIONS(5761), + [anon_sym_AMP_AMP] = ACTIONS(5761), + [anon_sym_PIPE_PIPE] = ACTIONS(5761), + [anon_sym_AMP] = ACTIONS(5763), + [sym_op_bitwise_or] = ACTIONS(5763), + [anon_sym_CARET] = ACTIONS(5761), + [sym_op_left_shift] = ACTIONS(5761), + [sym_op_right_shift] = ACTIONS(5763), + [sym_op_unsigned_right_shift] = ACTIONS(5761), + [anon_sym_PLUS] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5763), + [sym_op_divide] = ACTIONS(5763), + [sym_op_modulo] = ACTIONS(5761), + [sym_op_coalescing] = ACTIONS(5761), + [anon_sym_BANG] = ACTIONS(5763), + [anon_sym_PLUS_PLUS] = ACTIONS(5761), + [anon_sym_DASH_DASH] = ACTIONS(5761), + [anon_sym_from] = ACTIONS(5761), + [anon_sym_join] = ACTIONS(5761), + [anon_sym_on] = ACTIONS(5761), + [anon_sym_equals] = ACTIONS(5761), + [anon_sym_let] = ACTIONS(5761), + [anon_sym_orderby] = ACTIONS(5761), + [anon_sym_group] = ACTIONS(5761), + [anon_sym_by] = ACTIONS(5761), + [anon_sym_select] = ACTIONS(5761), + [anon_sym_as] = ACTIONS(5761), + [anon_sym_is] = ACTIONS(5761), + [anon_sym_DASH_GT] = ACTIONS(5761), + [anon_sym_with] = ACTIONS(5761), + [aux_sym_preproc_if_token3] = ACTIONS(5761), + [aux_sym_preproc_else_token1] = ACTIONS(5761), + [aux_sym_preproc_elif_token1] = ACTIONS(5761), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515974,27 +514160,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3391] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), [sym_preproc_region] = STATE(3391), [sym_preproc_endregion] = STATE(3391), [sym_preproc_line] = STATE(3391), @@ -516004,44 +514169,62 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5828), + [anon_sym_LBRACK] = ACTIONS(5828), + [anon_sym_COLON] = ACTIONS(5828), + [anon_sym_COMMA] = ACTIONS(5828), + [anon_sym_RBRACK] = ACTIONS(5828), + [anon_sym_LPAREN] = ACTIONS(5828), + [anon_sym_RPAREN] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(5828), + [anon_sym_LT] = ACTIONS(5830), + [anon_sym_GT] = ACTIONS(5830), + [anon_sym_in] = ACTIONS(5828), + [anon_sym_where] = ACTIONS(5828), + [anon_sym_QMARK] = ACTIONS(5830), + [anon_sym_DOT] = ACTIONS(5830), + [anon_sym_EQ_GT] = ACTIONS(5828), + [anon_sym_STAR] = ACTIONS(5828), + [anon_sym_switch] = ACTIONS(5828), + [anon_sym_DOT_DOT] = ACTIONS(5828), + [anon_sym_LT_EQ] = ACTIONS(5828), + [anon_sym_GT_EQ] = ACTIONS(5828), + [anon_sym_and] = ACTIONS(5828), + [anon_sym_or] = ACTIONS(5830), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_AMP_AMP] = ACTIONS(5828), + [anon_sym_PIPE_PIPE] = ACTIONS(5828), + [anon_sym_AMP] = ACTIONS(5830), + [sym_op_bitwise_or] = ACTIONS(5830), + [anon_sym_CARET] = ACTIONS(5828), + [sym_op_left_shift] = ACTIONS(5828), + [sym_op_right_shift] = ACTIONS(5830), + [sym_op_unsigned_right_shift] = ACTIONS(5828), + [anon_sym_PLUS] = ACTIONS(5830), + [anon_sym_DASH] = ACTIONS(5830), + [sym_op_divide] = ACTIONS(5830), + [sym_op_modulo] = ACTIONS(5828), + [sym_op_coalescing] = ACTIONS(5828), + [anon_sym_BANG] = ACTIONS(5830), + [anon_sym_PLUS_PLUS] = ACTIONS(5828), + [anon_sym_DASH_DASH] = ACTIONS(5828), + [anon_sym_from] = ACTIONS(5828), + [anon_sym_join] = ACTIONS(5828), + [anon_sym_on] = ACTIONS(5828), + [anon_sym_equals] = ACTIONS(5828), + [anon_sym_let] = ACTIONS(5828), + [anon_sym_orderby] = ACTIONS(5828), + [anon_sym_group] = ACTIONS(5828), + [anon_sym_by] = ACTIONS(5828), + [anon_sym_select] = ACTIONS(5828), + [anon_sym_as] = ACTIONS(5828), + [anon_sym_is] = ACTIONS(5828), + [anon_sym_DASH_GT] = ACTIONS(5828), + [anon_sym_with] = ACTIONS(5828), + [aux_sym_preproc_if_token3] = ACTIONS(5828), + [aux_sym_preproc_else_token1] = ACTIONS(5828), + [aux_sym_preproc_elif_token1] = ACTIONS(5828), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516054,27 +514237,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3392] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), [sym_preproc_region] = STATE(3392), [sym_preproc_endregion] = STATE(3392), [sym_preproc_line] = STATE(3392), @@ -516084,44 +514246,62 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_QMARK] = ACTIONS(5832), + [anon_sym_DOT] = ACTIONS(6031), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4329), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4331), + [anon_sym_join] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_let] = ACTIONS(4331), + [anon_sym_orderby] = ACTIONS(4331), + [anon_sym_group] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_select] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516134,27 +514314,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3393] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3393), [sym_preproc_endregion] = STATE(3393), [sym_preproc_line] = STATE(3393), @@ -516164,43 +514338,47 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4766), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_where] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5308), + [anon_sym_select] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516211,9 +514389,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4766), }, [3394] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3394), [sym_preproc_endregion] = STATE(3394), [sym_preproc_line] = STATE(3394), @@ -516223,65 +514415,47 @@ 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(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3696), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3696), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3696), - [anon_sym_into] = ACTIONS(3696), - [anon_sym_join] = ACTIONS(3696), - [anon_sym_on] = ACTIONS(3696), - [anon_sym_equals] = ACTIONS(3696), - [anon_sym_let] = ACTIONS(3696), - [anon_sym_orderby] = ACTIONS(3696), - [anon_sym_group] = ACTIONS(3696), - [anon_sym_by] = ACTIONS(3696), - [anon_sym_select] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3696), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_where] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5352), + [anon_sym_select] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516294,27 +514468,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3395] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3395), [sym_preproc_endregion] = STATE(3395), [sym_preproc_line] = STATE(3395), @@ -516324,44 +514492,47 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_where] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(1365), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_join] = ACTIONS(1365), + [anon_sym_let] = ACTIONS(1365), + [anon_sym_orderby] = ACTIONS(1365), + [anon_sym_group] = ACTIONS(1365), + [anon_sym_select] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516374,27 +514545,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3396] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), [sym_preproc_region] = STATE(3396), [sym_preproc_endregion] = STATE(3396), [sym_preproc_line] = STATE(3396), @@ -516404,44 +514554,62 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5907), + [anon_sym_LBRACK] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5907), + [anon_sym_COMMA] = ACTIONS(5907), + [anon_sym_RBRACK] = ACTIONS(5907), + [anon_sym_LPAREN] = ACTIONS(5907), + [anon_sym_RPAREN] = ACTIONS(5907), + [anon_sym_RBRACE] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5909), + [anon_sym_GT] = ACTIONS(5909), + [anon_sym_in] = ACTIONS(5907), + [anon_sym_where] = ACTIONS(5907), + [anon_sym_QMARK] = ACTIONS(5909), + [anon_sym_DOT] = ACTIONS(5909), + [anon_sym_EQ_GT] = ACTIONS(5907), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_switch] = ACTIONS(5907), + [anon_sym_DOT_DOT] = ACTIONS(5907), + [anon_sym_LT_EQ] = ACTIONS(5907), + [anon_sym_GT_EQ] = ACTIONS(5907), + [anon_sym_and] = ACTIONS(5907), + [anon_sym_or] = ACTIONS(5909), + [anon_sym_EQ_EQ] = ACTIONS(5907), + [anon_sym_BANG_EQ] = ACTIONS(5907), + [anon_sym_AMP_AMP] = ACTIONS(5907), + [anon_sym_PIPE_PIPE] = ACTIONS(5907), + [anon_sym_AMP] = ACTIONS(5909), + [sym_op_bitwise_or] = ACTIONS(5909), + [anon_sym_CARET] = ACTIONS(5907), + [sym_op_left_shift] = ACTIONS(5907), + [sym_op_right_shift] = ACTIONS(5909), + [sym_op_unsigned_right_shift] = ACTIONS(5907), + [anon_sym_PLUS] = ACTIONS(5909), + [anon_sym_DASH] = ACTIONS(5909), + [sym_op_divide] = ACTIONS(5909), + [sym_op_modulo] = ACTIONS(5907), + [sym_op_coalescing] = ACTIONS(5907), + [anon_sym_BANG] = ACTIONS(5909), + [anon_sym_PLUS_PLUS] = ACTIONS(5907), + [anon_sym_DASH_DASH] = ACTIONS(5907), + [anon_sym_from] = ACTIONS(5907), + [anon_sym_join] = ACTIONS(5907), + [anon_sym_on] = ACTIONS(5907), + [anon_sym_equals] = ACTIONS(5907), + [anon_sym_let] = ACTIONS(5907), + [anon_sym_orderby] = ACTIONS(5907), + [anon_sym_group] = ACTIONS(5907), + [anon_sym_by] = ACTIONS(5907), + [anon_sym_select] = ACTIONS(5907), + [anon_sym_as] = ACTIONS(5907), + [anon_sym_is] = ACTIONS(5907), + [anon_sym_DASH_GT] = ACTIONS(5907), + [anon_sym_with] = ACTIONS(5907), + [aux_sym_preproc_if_token3] = ACTIONS(5907), + [aux_sym_preproc_else_token1] = ACTIONS(5907), + [aux_sym_preproc_elif_token1] = ACTIONS(5907), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516454,27 +514622,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3397] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), [sym_preproc_region] = STATE(3397), [sym_preproc_endregion] = STATE(3397), [sym_preproc_line] = STATE(3397), @@ -516484,43 +514631,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3397), [sym_preproc_define] = STATE(3397), [sym_preproc_undef] = STATE(3397), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5911), + [anon_sym_LBRACK] = ACTIONS(5911), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_COMMA] = ACTIONS(5911), + [anon_sym_RBRACK] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5911), + [anon_sym_RPAREN] = ACTIONS(5911), + [anon_sym_RBRACE] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5913), + [anon_sym_GT] = ACTIONS(5913), + [anon_sym_in] = ACTIONS(5911), + [anon_sym_where] = ACTIONS(5911), + [anon_sym_QMARK] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_EQ_GT] = ACTIONS(5911), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_switch] = ACTIONS(5911), + [anon_sym_DOT_DOT] = ACTIONS(5911), + [anon_sym_LT_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5911), + [anon_sym_and] = ACTIONS(5911), + [anon_sym_or] = ACTIONS(5913), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_AMP_AMP] = ACTIONS(5911), + [anon_sym_PIPE_PIPE] = ACTIONS(5911), + [anon_sym_AMP] = ACTIONS(5913), + [sym_op_bitwise_or] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(5911), + [sym_op_left_shift] = ACTIONS(5911), + [sym_op_right_shift] = ACTIONS(5913), + [sym_op_unsigned_right_shift] = ACTIONS(5911), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_DASH] = ACTIONS(5913), + [sym_op_divide] = ACTIONS(5913), + [sym_op_modulo] = ACTIONS(5911), + [sym_op_coalescing] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(5913), + [anon_sym_PLUS_PLUS] = ACTIONS(5911), + [anon_sym_DASH_DASH] = ACTIONS(5911), + [anon_sym_from] = 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_group] = ACTIONS(5911), + [anon_sym_by] = ACTIONS(5911), + [anon_sym_select] = ACTIONS(5911), + [anon_sym_as] = ACTIONS(5911), + [anon_sym_is] = ACTIONS(5911), + [anon_sym_DASH_GT] = ACTIONS(5911), + [anon_sym_with] = ACTIONS(5911), + [aux_sym_preproc_if_token3] = ACTIONS(5911), + [aux_sym_preproc_else_token1] = ACTIONS(5911), + [aux_sym_preproc_elif_token1] = ACTIONS(5911), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516531,7 +514697,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(4672), }, [3398] = { [sym_preproc_region] = STATE(3398), @@ -516543,65 +514708,62 @@ 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(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_EQ_GT] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3189), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = ACTIONS(3189), - [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_group] = ACTIONS(3189), - [anon_sym_by] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3189), - [aux_sym_preproc_if_token3] = ACTIONS(3189), - [aux_sym_preproc_else_token1] = ACTIONS(3189), - [aux_sym_preproc_elif_token1] = ACTIONS(3189), + [sym__identifier_token] = ACTIONS(3735), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3735), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(3735), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3740), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3735), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_where] = ACTIONS(3735), + [anon_sym_QMARK] = ACTIONS(3694), + [anon_sym_notnull] = ACTIONS(3735), + [anon_sym_unmanaged] = ACTIONS(3735), + [anon_sym_DOT] = ACTIONS(3694), + [anon_sym_scoped] = ACTIONS(3735), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3735), + [anon_sym_STAR] = ACTIONS(3694), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3735), + [anon_sym_when] = ACTIONS(3735), + [anon_sym_from] = ACTIONS(3735), + [anon_sym_into] = ACTIONS(3735), + [anon_sym_join] = ACTIONS(3735), + [anon_sym_on] = ACTIONS(3735), + [anon_sym_equals] = ACTIONS(3735), + [anon_sym_let] = ACTIONS(3735), + [anon_sym_orderby] = ACTIONS(3735), + [anon_sym_ascending] = ACTIONS(3735), + [anon_sym_descending] = ACTIONS(3735), + [anon_sym_group] = ACTIONS(3735), + [anon_sym_by] = ACTIONS(3735), + [anon_sym_select] = ACTIONS(3735), + [sym_grit_metavariable] = ACTIONS(3740), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516614,27 +514776,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3399] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3399), [sym_preproc_endregion] = STATE(3399), [sym_preproc_line] = STATE(3399), @@ -516644,44 +514800,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3399), [sym_preproc_define] = STATE(3399), [sym_preproc_undef] = STATE(3399), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4752), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_when] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_where] = ACTIONS(5360), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5360), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_join] = ACTIONS(5360), + [anon_sym_let] = ACTIONS(5360), + [anon_sym_orderby] = ACTIONS(5360), + [anon_sym_group] = ACTIONS(5360), + [anon_sym_select] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516694,27 +514853,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3400] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), [sym_preproc_region] = STATE(3400), [sym_preproc_endregion] = STATE(3400), [sym_preproc_line] = STATE(3400), @@ -516724,43 +514862,62 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5723), + [anon_sym_LBRACK] = ACTIONS(5723), + [anon_sym_COLON] = ACTIONS(5723), + [anon_sym_COMMA] = ACTIONS(5723), + [anon_sym_RBRACK] = ACTIONS(5723), + [anon_sym_LPAREN] = ACTIONS(5723), + [anon_sym_RPAREN] = ACTIONS(5723), + [anon_sym_RBRACE] = ACTIONS(5723), + [anon_sym_LT] = ACTIONS(5725), + [anon_sym_GT] = ACTIONS(5725), + [anon_sym_in] = ACTIONS(5723), + [anon_sym_where] = ACTIONS(5723), + [anon_sym_QMARK] = ACTIONS(5725), + [anon_sym_DOT] = ACTIONS(5725), + [anon_sym_EQ_GT] = ACTIONS(5723), + [anon_sym_STAR] = ACTIONS(5723), + [anon_sym_switch] = ACTIONS(5723), + [anon_sym_DOT_DOT] = ACTIONS(5723), + [anon_sym_LT_EQ] = ACTIONS(5723), + [anon_sym_GT_EQ] = ACTIONS(5723), + [anon_sym_and] = ACTIONS(5723), + [anon_sym_or] = ACTIONS(5725), + [anon_sym_EQ_EQ] = ACTIONS(5723), + [anon_sym_BANG_EQ] = ACTIONS(5723), + [anon_sym_AMP_AMP] = ACTIONS(5723), + [anon_sym_PIPE_PIPE] = ACTIONS(5723), + [anon_sym_AMP] = ACTIONS(5725), + [sym_op_bitwise_or] = ACTIONS(5725), + [anon_sym_CARET] = ACTIONS(5723), + [sym_op_left_shift] = ACTIONS(5723), + [sym_op_right_shift] = ACTIONS(5725), + [sym_op_unsigned_right_shift] = ACTIONS(5723), + [anon_sym_PLUS] = ACTIONS(5725), + [anon_sym_DASH] = ACTIONS(5725), + [sym_op_divide] = ACTIONS(5725), + [sym_op_modulo] = ACTIONS(5723), + [sym_op_coalescing] = ACTIONS(5723), + [anon_sym_BANG] = ACTIONS(5725), + [anon_sym_PLUS_PLUS] = ACTIONS(5723), + [anon_sym_DASH_DASH] = ACTIONS(5723), + [anon_sym_from] = ACTIONS(5723), + [anon_sym_join] = ACTIONS(5723), + [anon_sym_on] = ACTIONS(5723), + [anon_sym_equals] = ACTIONS(5723), + [anon_sym_let] = ACTIONS(5723), + [anon_sym_orderby] = ACTIONS(5723), + [anon_sym_group] = ACTIONS(5723), + [anon_sym_by] = ACTIONS(5723), + [anon_sym_select] = ACTIONS(5723), + [anon_sym_as] = ACTIONS(5723), + [anon_sym_is] = ACTIONS(5723), + [anon_sym_DASH_GT] = ACTIONS(5723), + [anon_sym_with] = ACTIONS(5723), + [aux_sym_preproc_if_token3] = ACTIONS(5723), + [aux_sym_preproc_else_token1] = ACTIONS(5723), + [aux_sym_preproc_elif_token1] = ACTIONS(5723), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516771,30 +514928,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(4672), }, [3401] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), [sym_preproc_region] = STATE(3401), [sym_preproc_endregion] = STATE(3401), [sym_preproc_line] = STATE(3401), @@ -516804,44 +514939,62 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_where] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_switch] = ACTIONS(5070), + [anon_sym_DOT_DOT] = ACTIONS(5070), + [anon_sym_LT_EQ] = ACTIONS(5070), + [anon_sym_GT_EQ] = ACTIONS(5070), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5076), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(5070), + [anon_sym_BANG_EQ] = ACTIONS(5070), + [anon_sym_AMP_AMP] = ACTIONS(5070), + [anon_sym_PIPE_PIPE] = ACTIONS(5070), + [anon_sym_AMP] = ACTIONS(5073), + [sym_op_bitwise_or] = ACTIONS(5073), + [anon_sym_CARET] = ACTIONS(5073), + [sym_op_left_shift] = ACTIONS(5073), + [sym_op_right_shift] = ACTIONS(5073), + [sym_op_unsigned_right_shift] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [sym_op_divide] = ACTIONS(5073), + [sym_op_modulo] = ACTIONS(5073), + [sym_op_coalescing] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5070), + [anon_sym_DASH_DASH] = ACTIONS(5070), + [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_group] = ACTIONS(5068), + [anon_sym_select] = ACTIONS(5068), + [anon_sym_as] = ACTIONS(5070), + [anon_sym_is] = ACTIONS(5070), + [anon_sym_DASH_GT] = ACTIONS(5070), + [anon_sym_with] = ACTIONS(5070), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516854,29 +515007,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3402] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), - [sym_preproc_else_in_expression] = STATE(7685), - [sym_preproc_elif_in_expression] = STATE(7685), [sym_preproc_region] = STATE(3402), [sym_preproc_endregion] = STATE(3402), [sym_preproc_line] = STATE(3402), @@ -516886,42 +515016,62 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(5759), - [aux_sym_preproc_else_token1] = ACTIONS(2899), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_event] = ACTIONS(3738), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_interface] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_record] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_implicit] = ACTIONS(3738), + [anon_sym_explicit] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(6057), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516934,27 +515084,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3403] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3403), [sym_preproc_endregion] = STATE(3403), [sym_preproc_line] = STATE(3403), @@ -516964,44 +515108,47 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5356), + [anon_sym_QMARK] = ACTIONS(6033), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6037), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5356), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_join] = ACTIONS(5356), + [anon_sym_let] = ACTIONS(5356), + [anon_sym_orderby] = ACTIONS(5356), + [anon_sym_group] = ACTIONS(5356), + [anon_sym_select] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517014,27 +515161,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3404] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3404), [sym_preproc_endregion] = STATE(3404), [sym_preproc_line] = STATE(3404), @@ -517044,43 +515185,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3404), [sym_preproc_define] = STATE(3404), [sym_preproc_undef] = STATE(3404), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(6033), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6037), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5336), + [anon_sym_select] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517091,10 +515236,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4752), }, [3405] = { - [sym_type_argument_list] = STATE(3621), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3405), [sym_preproc_endregion] = STATE(3405), [sym_preproc_line] = STATE(3405), @@ -517104,64 +515262,47 @@ 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(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(5761), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_from] = ACTIONS(3953), - [anon_sym_into] = ACTIONS(3953), - [anon_sym_join] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_let] = ACTIONS(3953), - [anon_sym_orderby] = ACTIONS(3953), - [anon_sym_group] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_select] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5296), + [anon_sym_QMARK] = ACTIONS(6033), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6037), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5296), + [anon_sym_select] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517174,27 +515315,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3406] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3406), [sym_preproc_endregion] = STATE(3406), [sym_preproc_line] = STATE(3406), @@ -517204,44 +515339,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3406), [sym_preproc_define] = STATE(3406), [sym_preproc_undef] = STATE(3406), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517254,27 +515392,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3407] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3407), [sym_preproc_endregion] = STATE(3407), [sym_preproc_line] = STATE(3407), @@ -517284,44 +515416,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3407), [sym_preproc_define] = STATE(3407), [sym_preproc_undef] = STATE(3407), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517334,27 +515469,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3408] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), [sym_preproc_region] = STATE(3408), [sym_preproc_endregion] = STATE(3408), [sym_preproc_line] = STATE(3408), @@ -517364,44 +515478,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3408), [sym_preproc_define] = STATE(3408), [sym_preproc_undef] = STATE(3408), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4766), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_when] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(5967), + [anon_sym_LBRACK] = ACTIONS(5967), + [anon_sym_COLON] = ACTIONS(5967), + [anon_sym_COMMA] = ACTIONS(5967), + [anon_sym_RBRACK] = ACTIONS(5967), + [anon_sym_LPAREN] = ACTIONS(5967), + [anon_sym_RPAREN] = ACTIONS(5967), + [anon_sym_RBRACE] = ACTIONS(5967), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_in] = ACTIONS(5967), + [anon_sym_where] = ACTIONS(5967), + [anon_sym_QMARK] = ACTIONS(5969), + [anon_sym_DOT] = ACTIONS(5969), + [anon_sym_EQ_GT] = ACTIONS(5967), + [anon_sym_STAR] = ACTIONS(5967), + [anon_sym_switch] = ACTIONS(5967), + [anon_sym_DOT_DOT] = ACTIONS(5967), + [anon_sym_LT_EQ] = ACTIONS(5967), + [anon_sym_GT_EQ] = ACTIONS(5967), + [anon_sym_and] = ACTIONS(5967), + [anon_sym_or] = ACTIONS(5969), + [anon_sym_EQ_EQ] = ACTIONS(5967), + [anon_sym_BANG_EQ] = ACTIONS(5967), + [anon_sym_AMP_AMP] = ACTIONS(5967), + [anon_sym_PIPE_PIPE] = ACTIONS(5967), + [anon_sym_AMP] = ACTIONS(5969), + [sym_op_bitwise_or] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5967), + [sym_op_left_shift] = ACTIONS(5967), + [sym_op_right_shift] = ACTIONS(5969), + [sym_op_unsigned_right_shift] = ACTIONS(5967), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [sym_op_divide] = ACTIONS(5969), + [sym_op_modulo] = ACTIONS(5967), + [sym_op_coalescing] = ACTIONS(5967), + [anon_sym_BANG] = ACTIONS(5969), + [anon_sym_PLUS_PLUS] = ACTIONS(5967), + [anon_sym_DASH_DASH] = ACTIONS(5967), + [anon_sym_from] = ACTIONS(5967), + [anon_sym_join] = ACTIONS(5967), + [anon_sym_on] = ACTIONS(5967), + [anon_sym_equals] = ACTIONS(5967), + [anon_sym_let] = ACTIONS(5967), + [anon_sym_orderby] = ACTIONS(5967), + [anon_sym_group] = ACTIONS(5967), + [anon_sym_by] = ACTIONS(5967), + [anon_sym_select] = ACTIONS(5967), + [anon_sym_as] = ACTIONS(5967), + [anon_sym_is] = ACTIONS(5967), + [anon_sym_DASH_GT] = ACTIONS(5967), + [anon_sym_with] = ACTIONS(5967), + [aux_sym_preproc_if_token3] = ACTIONS(5967), + [aux_sym_preproc_else_token1] = ACTIONS(5967), + [aux_sym_preproc_elif_token1] = ACTIONS(5967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517414,27 +515546,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3409] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3409), [sym_preproc_endregion] = STATE(3409), [sym_preproc_line] = STATE(3409), @@ -517444,44 +515570,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3409), [sym_preproc_define] = STATE(3409), [sym_preproc_undef] = STATE(3409), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517494,27 +515623,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3410] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3410), [sym_preproc_endregion] = STATE(3410), [sym_preproc_line] = STATE(3410), @@ -517524,44 +515647,47 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_when] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6037), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517574,27 +515700,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3411] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3411), [sym_preproc_endregion] = STATE(3411), [sym_preproc_line] = STATE(3411), @@ -517604,44 +515724,47 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517654,27 +515777,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3412] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3412), [sym_preproc_endregion] = STATE(3412), [sym_preproc_line] = STATE(3412), @@ -517684,44 +515801,47 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5745), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6037), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517734,27 +515854,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3413] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), [sym_preproc_region] = STATE(3413), [sym_preproc_endregion] = STATE(3413), [sym_preproc_line] = STATE(3413), @@ -517764,44 +515863,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3413), [sym_preproc_define] = STATE(3413), [sym_preproc_undef] = STATE(3413), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5753), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4778), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5751), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5745), + [anon_sym_LBRACK] = ACTIONS(5745), + [anon_sym_COLON] = ACTIONS(5745), + [anon_sym_COMMA] = ACTIONS(5745), + [anon_sym_RBRACK] = ACTIONS(5745), + [anon_sym_LPAREN] = ACTIONS(5745), + [anon_sym_RPAREN] = ACTIONS(5745), + [anon_sym_RBRACE] = ACTIONS(5745), + [anon_sym_LT] = ACTIONS(5747), + [anon_sym_GT] = ACTIONS(5747), + [anon_sym_in] = ACTIONS(5745), + [anon_sym_where] = ACTIONS(5745), + [anon_sym_QMARK] = ACTIONS(5747), + [anon_sym_DOT] = ACTIONS(5747), + [anon_sym_EQ_GT] = ACTIONS(5745), + [anon_sym_STAR] = ACTIONS(5745), + [anon_sym_switch] = ACTIONS(5745), + [anon_sym_DOT_DOT] = ACTIONS(5745), + [anon_sym_LT_EQ] = ACTIONS(5745), + [anon_sym_GT_EQ] = ACTIONS(5745), + [anon_sym_and] = ACTIONS(5745), + [anon_sym_or] = ACTIONS(5747), + [anon_sym_EQ_EQ] = ACTIONS(5745), + [anon_sym_BANG_EQ] = ACTIONS(5745), + [anon_sym_AMP_AMP] = ACTIONS(5745), + [anon_sym_PIPE_PIPE] = ACTIONS(5745), + [anon_sym_AMP] = ACTIONS(5747), + [sym_op_bitwise_or] = ACTIONS(5747), + [anon_sym_CARET] = ACTIONS(5745), + [sym_op_left_shift] = ACTIONS(5745), + [sym_op_right_shift] = ACTIONS(5747), + [sym_op_unsigned_right_shift] = ACTIONS(5745), + [anon_sym_PLUS] = ACTIONS(5747), + [anon_sym_DASH] = ACTIONS(5747), + [sym_op_divide] = ACTIONS(5747), + [sym_op_modulo] = ACTIONS(5745), + [sym_op_coalescing] = ACTIONS(5745), + [anon_sym_BANG] = ACTIONS(5747), + [anon_sym_PLUS_PLUS] = ACTIONS(5745), + [anon_sym_DASH_DASH] = ACTIONS(5745), + [anon_sym_from] = ACTIONS(5745), + [anon_sym_join] = ACTIONS(5745), + [anon_sym_on] = ACTIONS(5745), + [anon_sym_equals] = ACTIONS(5745), + [anon_sym_let] = ACTIONS(5745), + [anon_sym_orderby] = ACTIONS(5745), + [anon_sym_group] = ACTIONS(5745), + [anon_sym_by] = ACTIONS(5745), + [anon_sym_select] = ACTIONS(5745), + [anon_sym_as] = ACTIONS(5745), + [anon_sym_is] = ACTIONS(5745), + [anon_sym_DASH_GT] = ACTIONS(5745), + [anon_sym_with] = ACTIONS(5745), + [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), @@ -517814,29 +515931,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3414] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), - [sym_preproc_else_in_expression] = STATE(7786), - [sym_preproc_elif_in_expression] = STATE(7786), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3414), [sym_preproc_endregion] = STATE(3414), [sym_preproc_line] = STATE(3414), @@ -517846,42 +515955,47 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(5764), - [aux_sym_preproc_else_token1] = ACTIONS(2899), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6037), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517894,27 +516008,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3415] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3415), [sym_preproc_endregion] = STATE(3415), [sym_preproc_line] = STATE(3415), @@ -517924,44 +516032,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3415), [sym_preproc_define] = STATE(3415), [sym_preproc_undef] = STATE(3415), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5753), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5751), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517974,27 +516085,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3416] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), [sym_preproc_region] = STATE(3416), [sym_preproc_endregion] = STATE(3416), [sym_preproc_line] = STATE(3416), @@ -518004,44 +516094,62 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4770), - [anon_sym_COMMA] = ACTIONS(4770), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4770), - [anon_sym_RBRACE] = ACTIONS(4770), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5741), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5745), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(6019), + [anon_sym_LBRACK] = ACTIONS(6019), + [anon_sym_COLON] = ACTIONS(6019), + [anon_sym_COMMA] = ACTIONS(6019), + [anon_sym_RBRACK] = ACTIONS(6019), + [anon_sym_LPAREN] = ACTIONS(6019), + [anon_sym_RPAREN] = ACTIONS(6019), + [anon_sym_RBRACE] = ACTIONS(6019), + [anon_sym_LT] = ACTIONS(6021), + [anon_sym_GT] = ACTIONS(6021), + [anon_sym_in] = ACTIONS(6019), + [anon_sym_where] = ACTIONS(6019), + [anon_sym_QMARK] = ACTIONS(6021), + [anon_sym_DOT] = ACTIONS(6021), + [anon_sym_EQ_GT] = ACTIONS(6019), + [anon_sym_STAR] = ACTIONS(6019), + [anon_sym_switch] = ACTIONS(6019), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_LT_EQ] = ACTIONS(6019), + [anon_sym_GT_EQ] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(6019), + [anon_sym_or] = ACTIONS(6021), + [anon_sym_EQ_EQ] = ACTIONS(6019), + [anon_sym_BANG_EQ] = ACTIONS(6019), + [anon_sym_AMP_AMP] = ACTIONS(6019), + [anon_sym_PIPE_PIPE] = ACTIONS(6019), + [anon_sym_AMP] = ACTIONS(6021), + [sym_op_bitwise_or] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6019), + [sym_op_left_shift] = ACTIONS(6019), + [sym_op_right_shift] = ACTIONS(6021), + [sym_op_unsigned_right_shift] = ACTIONS(6019), + [anon_sym_PLUS] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [sym_op_divide] = ACTIONS(6021), + [sym_op_modulo] = ACTIONS(6019), + [sym_op_coalescing] = ACTIONS(6019), + [anon_sym_BANG] = ACTIONS(6021), + [anon_sym_PLUS_PLUS] = ACTIONS(6019), + [anon_sym_DASH_DASH] = ACTIONS(6019), + [anon_sym_from] = ACTIONS(6019), + [anon_sym_join] = ACTIONS(6019), + [anon_sym_on] = ACTIONS(6019), + [anon_sym_equals] = ACTIONS(6019), + [anon_sym_let] = ACTIONS(6019), + [anon_sym_orderby] = ACTIONS(6019), + [anon_sym_group] = ACTIONS(6019), + [anon_sym_by] = ACTIONS(6019), + [anon_sym_select] = ACTIONS(6019), + [anon_sym_as] = ACTIONS(6019), + [anon_sym_is] = ACTIONS(6019), + [anon_sym_DASH_GT] = ACTIONS(6019), + [anon_sym_with] = ACTIONS(6019), + [aux_sym_preproc_if_token3] = ACTIONS(6019), + [aux_sym_preproc_else_token1] = ACTIONS(6019), + [aux_sym_preproc_elif_token1] = ACTIONS(6019), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518054,27 +516162,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3417] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), [sym_preproc_region] = STATE(3417), [sym_preproc_endregion] = STATE(3417), [sym_preproc_line] = STATE(3417), @@ -518084,43 +516171,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3417), [sym_preproc_define] = STATE(3417), [sym_preproc_undef] = STATE(3417), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(5839), + [anon_sym_LBRACK] = ACTIONS(5839), + [anon_sym_COLON] = 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(5839), + [anon_sym_where] = ACTIONS(5839), + [anon_sym_QMARK] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_EQ_GT] = ACTIONS(5839), + [anon_sym_STAR] = ACTIONS(5839), + [anon_sym_switch] = ACTIONS(5839), + [anon_sym_DOT_DOT] = ACTIONS(5839), + [anon_sym_LT_EQ] = ACTIONS(5839), + [anon_sym_GT_EQ] = ACTIONS(5839), + [anon_sym_and] = ACTIONS(5839), + [anon_sym_or] = ACTIONS(5841), + [anon_sym_EQ_EQ] = ACTIONS(5839), + [anon_sym_BANG_EQ] = ACTIONS(5839), + [anon_sym_AMP_AMP] = ACTIONS(5839), + [anon_sym_PIPE_PIPE] = ACTIONS(5839), + [anon_sym_AMP] = ACTIONS(5841), + [sym_op_bitwise_or] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5839), + [sym_op_left_shift] = ACTIONS(5839), + [sym_op_right_shift] = ACTIONS(5841), + [sym_op_unsigned_right_shift] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [sym_op_divide] = ACTIONS(5841), + [sym_op_modulo] = ACTIONS(5839), + [sym_op_coalescing] = ACTIONS(5839), + [anon_sym_BANG] = ACTIONS(5841), + [anon_sym_PLUS_PLUS] = ACTIONS(5839), + [anon_sym_DASH_DASH] = ACTIONS(5839), + [anon_sym_from] = ACTIONS(5839), + [anon_sym_join] = ACTIONS(5839), + [anon_sym_on] = ACTIONS(5839), + [anon_sym_equals] = ACTIONS(5839), + [anon_sym_let] = ACTIONS(5839), + [anon_sym_orderby] = ACTIONS(5839), + [anon_sym_group] = ACTIONS(5839), + [anon_sym_by] = ACTIONS(5839), + [anon_sym_select] = ACTIONS(5839), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518131,9 +516237,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4794), }, [3418] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3418), [sym_preproc_endregion] = STATE(3418), [sym_preproc_line] = STATE(3418), @@ -518143,65 +516263,47 @@ 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_EQ] = ACTIONS(5766), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5686), - [anon_sym_PLUS_EQ] = ACTIONS(5768), - [anon_sym_DASH_EQ] = ACTIONS(5768), - [anon_sym_STAR_EQ] = ACTIONS(5768), - [anon_sym_SLASH_EQ] = ACTIONS(5768), - [anon_sym_PERCENT_EQ] = ACTIONS(5768), - [anon_sym_AMP_EQ] = ACTIONS(5768), - [anon_sym_CARET_EQ] = ACTIONS(5768), - [anon_sym_PIPE_EQ] = ACTIONS(5768), - [anon_sym_LT_LT_EQ] = ACTIONS(5768), - [anon_sym_GT_GT_EQ] = ACTIONS(5768), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5768), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5768), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [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(5684), - [anon_sym_with] = ACTIONS(5684), - [sym_grit_metavariable] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518214,27 +516316,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3419] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3419), [sym_preproc_endregion] = STATE(3419), [sym_preproc_line] = STATE(3419), @@ -518244,43 +516340,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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4708), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [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_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518291,30 +516391,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4708), }, [3420] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1809), + [sym_op_lte] = STATE(1809), + [sym_op_eq] = STATE(1808), + [sym_op_neq] = STATE(1808), + [sym_op_gt] = STATE(1809), + [sym_op_gte] = STATE(1809), + [sym_op_and] = STATE(1806), + [sym_op_or] = STATE(1803), + [sym_op_bitwise_and] = STATE(1796), + [sym_op_bitwise_xor] = STATE(1795), + [sym_op_plus] = STATE(1794), + [sym_op_minus] = STATE(1794), + [sym_op_multiply] = STATE(1816), [sym_preproc_region] = STATE(3420), [sym_preproc_endregion] = STATE(3420), [sym_preproc_line] = STATE(3420), @@ -518324,44 +516417,47 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5710), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4760), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5714), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(6059), + [anon_sym_QMARK] = ACTIONS(6033), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6037), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6039), + [sym_op_right_shift] = ACTIONS(6041), + [sym_op_unsigned_right_shift] = ACTIONS(6039), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6043), + [sym_op_modulo] = ACTIONS(6045), + [sym_op_coalescing] = ACTIONS(6047), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(6059), + [anon_sym_into] = ACTIONS(6059), + [anon_sym_join] = ACTIONS(6059), + [anon_sym_let] = ACTIONS(6059), + [anon_sym_orderby] = ACTIONS(6059), + [anon_sym_group] = ACTIONS(6059), + [anon_sym_select] = ACTIONS(6059), + [anon_sym_as] = ACTIONS(5618), + [anon_sym_is] = ACTIONS(6049), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518374,27 +516470,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3421] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), [sym_preproc_region] = STATE(3421), [sym_preproc_endregion] = STATE(3421), [sym_preproc_line] = STATE(3421), @@ -518404,43 +516479,62 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5903), + [anon_sym_LBRACK] = ACTIONS(5903), + [anon_sym_COLON] = ACTIONS(5903), + [anon_sym_COMMA] = ACTIONS(5903), + [anon_sym_RBRACK] = ACTIONS(5903), + [anon_sym_LPAREN] = ACTIONS(5903), + [anon_sym_RPAREN] = ACTIONS(5903), + [anon_sym_RBRACE] = ACTIONS(5903), + [anon_sym_LT] = ACTIONS(5905), + [anon_sym_GT] = ACTIONS(5905), + [anon_sym_in] = ACTIONS(5903), + [anon_sym_where] = ACTIONS(5903), + [anon_sym_QMARK] = ACTIONS(5905), + [anon_sym_DOT] = ACTIONS(5905), + [anon_sym_EQ_GT] = ACTIONS(5903), + [anon_sym_STAR] = ACTIONS(5903), + [anon_sym_switch] = ACTIONS(5903), + [anon_sym_DOT_DOT] = ACTIONS(5903), + [anon_sym_LT_EQ] = ACTIONS(5903), + [anon_sym_GT_EQ] = ACTIONS(5903), + [anon_sym_and] = ACTIONS(5903), + [anon_sym_or] = ACTIONS(5905), + [anon_sym_EQ_EQ] = ACTIONS(5903), + [anon_sym_BANG_EQ] = ACTIONS(5903), + [anon_sym_AMP_AMP] = ACTIONS(5903), + [anon_sym_PIPE_PIPE] = ACTIONS(5903), + [anon_sym_AMP] = ACTIONS(5905), + [sym_op_bitwise_or] = ACTIONS(5905), + [anon_sym_CARET] = ACTIONS(5903), + [sym_op_left_shift] = ACTIONS(5903), + [sym_op_right_shift] = ACTIONS(5905), + [sym_op_unsigned_right_shift] = ACTIONS(5903), + [anon_sym_PLUS] = ACTIONS(5905), + [anon_sym_DASH] = ACTIONS(5905), + [sym_op_divide] = ACTIONS(5905), + [sym_op_modulo] = ACTIONS(5903), + [sym_op_coalescing] = ACTIONS(5903), + [anon_sym_BANG] = ACTIONS(5905), + [anon_sym_PLUS_PLUS] = ACTIONS(5903), + [anon_sym_DASH_DASH] = ACTIONS(5903), + [anon_sym_from] = ACTIONS(5903), + [anon_sym_join] = ACTIONS(5903), + [anon_sym_on] = ACTIONS(5903), + [anon_sym_equals] = ACTIONS(5903), + [anon_sym_let] = ACTIONS(5903), + [anon_sym_orderby] = ACTIONS(5903), + [anon_sym_group] = ACTIONS(5903), + [anon_sym_by] = ACTIONS(5903), + [anon_sym_select] = ACTIONS(5903), + [anon_sym_as] = ACTIONS(5903), + [anon_sym_is] = ACTIONS(5903), + [anon_sym_DASH_GT] = ACTIONS(5903), + [anon_sym_with] = ACTIONS(5903), + [aux_sym_preproc_if_token3] = ACTIONS(5903), + [aux_sym_preproc_else_token1] = ACTIONS(5903), + [aux_sym_preproc_elif_token1] = ACTIONS(5903), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518451,30 +516545,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(4748), }, [3422] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), [sym_preproc_region] = STATE(3422), [sym_preproc_endregion] = STATE(3422), [sym_preproc_line] = STATE(3422), @@ -518484,43 +516556,62 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4782), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5757), + [anon_sym_LBRACK] = ACTIONS(5757), + [anon_sym_COLON] = ACTIONS(5757), + [anon_sym_COMMA] = ACTIONS(5757), + [anon_sym_RBRACK] = ACTIONS(5757), + [anon_sym_LPAREN] = ACTIONS(5757), + [anon_sym_RPAREN] = ACTIONS(5757), + [anon_sym_RBRACE] = ACTIONS(5757), + [anon_sym_LT] = ACTIONS(5759), + [anon_sym_GT] = ACTIONS(5759), + [anon_sym_in] = ACTIONS(5757), + [anon_sym_where] = ACTIONS(5757), + [anon_sym_QMARK] = ACTIONS(5759), + [anon_sym_DOT] = ACTIONS(5759), + [anon_sym_EQ_GT] = ACTIONS(5757), + [anon_sym_STAR] = ACTIONS(5757), + [anon_sym_switch] = ACTIONS(5757), + [anon_sym_DOT_DOT] = ACTIONS(5757), + [anon_sym_LT_EQ] = ACTIONS(5757), + [anon_sym_GT_EQ] = ACTIONS(5757), + [anon_sym_and] = ACTIONS(5757), + [anon_sym_or] = ACTIONS(5759), + [anon_sym_EQ_EQ] = ACTIONS(5757), + [anon_sym_BANG_EQ] = ACTIONS(5757), + [anon_sym_AMP_AMP] = ACTIONS(5757), + [anon_sym_PIPE_PIPE] = ACTIONS(5757), + [anon_sym_AMP] = ACTIONS(5759), + [sym_op_bitwise_or] = ACTIONS(5759), + [anon_sym_CARET] = ACTIONS(5757), + [sym_op_left_shift] = ACTIONS(5757), + [sym_op_right_shift] = ACTIONS(5759), + [sym_op_unsigned_right_shift] = ACTIONS(5757), + [anon_sym_PLUS] = ACTIONS(5759), + [anon_sym_DASH] = ACTIONS(5759), + [sym_op_divide] = ACTIONS(5759), + [sym_op_modulo] = ACTIONS(5757), + [sym_op_coalescing] = ACTIONS(5757), + [anon_sym_BANG] = ACTIONS(5759), + [anon_sym_PLUS_PLUS] = ACTIONS(5757), + [anon_sym_DASH_DASH] = ACTIONS(5757), + [anon_sym_from] = ACTIONS(5757), + [anon_sym_join] = ACTIONS(5757), + [anon_sym_on] = ACTIONS(5757), + [anon_sym_equals] = ACTIONS(5757), + [anon_sym_let] = ACTIONS(5757), + [anon_sym_orderby] = ACTIONS(5757), + [anon_sym_group] = ACTIONS(5757), + [anon_sym_by] = ACTIONS(5757), + [anon_sym_select] = ACTIONS(5757), + [anon_sym_as] = ACTIONS(5757), + [anon_sym_is] = ACTIONS(5757), + [anon_sym_DASH_GT] = ACTIONS(5757), + [anon_sym_with] = ACTIONS(5757), + [aux_sym_preproc_if_token3] = ACTIONS(5757), + [aux_sym_preproc_else_token1] = ACTIONS(5757), + [aux_sym_preproc_elif_token1] = ACTIONS(5757), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518531,30 +516622,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(4782), }, [3423] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), [sym_preproc_region] = STATE(3423), [sym_preproc_endregion] = STATE(3423), [sym_preproc_line] = STATE(3423), @@ -518564,43 +516633,62 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5791), + [anon_sym_LBRACK] = ACTIONS(5791), + [anon_sym_COLON] = ACTIONS(5791), + [anon_sym_COMMA] = ACTIONS(5791), + [anon_sym_RBRACK] = ACTIONS(5791), + [anon_sym_LPAREN] = ACTIONS(5791), + [anon_sym_RPAREN] = ACTIONS(5791), + [anon_sym_RBRACE] = ACTIONS(5791), + [anon_sym_LT] = ACTIONS(5793), + [anon_sym_GT] = ACTIONS(5793), + [anon_sym_in] = ACTIONS(5791), + [anon_sym_where] = ACTIONS(5791), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5793), + [anon_sym_EQ_GT] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_switch] = ACTIONS(5791), + [anon_sym_DOT_DOT] = ACTIONS(5791), + [anon_sym_LT_EQ] = ACTIONS(5791), + [anon_sym_GT_EQ] = ACTIONS(5791), + [anon_sym_and] = ACTIONS(5791), + [anon_sym_or] = ACTIONS(5793), + [anon_sym_EQ_EQ] = ACTIONS(5791), + [anon_sym_BANG_EQ] = ACTIONS(5791), + [anon_sym_AMP_AMP] = ACTIONS(5791), + [anon_sym_PIPE_PIPE] = ACTIONS(5791), + [anon_sym_AMP] = ACTIONS(5793), + [sym_op_bitwise_or] = ACTIONS(5793), + [anon_sym_CARET] = ACTIONS(5791), + [sym_op_left_shift] = ACTIONS(5791), + [sym_op_right_shift] = ACTIONS(5793), + [sym_op_unsigned_right_shift] = ACTIONS(5791), + [anon_sym_PLUS] = ACTIONS(5793), + [anon_sym_DASH] = ACTIONS(5793), + [sym_op_divide] = ACTIONS(5793), + [sym_op_modulo] = ACTIONS(5791), + [sym_op_coalescing] = ACTIONS(5791), + [anon_sym_BANG] = ACTIONS(5793), + [anon_sym_PLUS_PLUS] = ACTIONS(5791), + [anon_sym_DASH_DASH] = ACTIONS(5791), + [anon_sym_from] = ACTIONS(5791), + [anon_sym_join] = ACTIONS(5791), + [anon_sym_on] = ACTIONS(5791), + [anon_sym_equals] = ACTIONS(5791), + [anon_sym_let] = ACTIONS(5791), + [anon_sym_orderby] = ACTIONS(5791), + [anon_sym_group] = ACTIONS(5791), + [anon_sym_by] = ACTIONS(5791), + [anon_sym_select] = ACTIONS(5791), + [anon_sym_as] = ACTIONS(5791), + [anon_sym_is] = ACTIONS(5791), + [anon_sym_DASH_GT] = ACTIONS(5791), + [anon_sym_with] = ACTIONS(5791), + [aux_sym_preproc_if_token3] = ACTIONS(5791), + [aux_sym_preproc_else_token1] = ACTIONS(5791), + [aux_sym_preproc_elif_token1] = ACTIONS(5791), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518611,30 +516699,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4790), }, [3424] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3424), [sym_preproc_endregion] = STATE(3424), [sym_preproc_line] = STATE(3424), @@ -518644,43 +516725,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3424), [sym_preproc_define] = STATE(3424), [sym_preproc_undef] = STATE(3424), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4778), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5360), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_RBRACK] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5360), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518691,32 +516775,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4778), }, [3425] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), - [sym_preproc_else_in_expression] = STATE(7913), - [sym_preproc_elif_in_expression] = STATE(7913), [sym_preproc_region] = STATE(3425), [sym_preproc_endregion] = STATE(3425), [sym_preproc_line] = STATE(3425), @@ -518726,42 +516801,46 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(5770), - [aux_sym_preproc_else_token1] = ACTIONS(2899), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518774,27 +516853,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3426] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3426), [sym_preproc_endregion] = STATE(3426), [sym_preproc_line] = STATE(3426), @@ -518804,43 +516877,46 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518851,9 +516927,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3427] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3427), [sym_preproc_endregion] = STATE(3427), [sym_preproc_line] = STATE(3427), @@ -518863,65 +516953,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3427), [sym_preproc_define] = STATE(3427), [sym_preproc_undef] = STATE(3427), - [sym__identifier_token] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym_alias] = ACTIONS(5456), - [anon_sym_global] = ACTIONS(5456), - [anon_sym_unsafe] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5458), - [anon_sym_LPAREN] = ACTIONS(5458), - [anon_sym_event] = ACTIONS(5456), - [anon_sym_class] = ACTIONS(5456), - [anon_sym_ref] = ACTIONS(5456), - [anon_sym_struct] = ACTIONS(5456), - [anon_sym_enum] = ACTIONS(5456), - [anon_sym_interface] = ACTIONS(5456), - [anon_sym_delegate] = ACTIONS(5456), - [anon_sym_record] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_readonly] = ACTIONS(5456), - [anon_sym_abstract] = ACTIONS(5456), - [anon_sym_async] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_file] = ACTIONS(5456), - [anon_sym_fixed] = ACTIONS(5456), - [anon_sym_internal] = ACTIONS(5456), - [anon_sym_new] = ACTIONS(5456), - [anon_sym_override] = ACTIONS(5456), - [anon_sym_partial] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_required] = ACTIONS(5456), - [anon_sym_sealed] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_where] = ACTIONS(5456), - [anon_sym_notnull] = ACTIONS(5456), - [anon_sym_unmanaged] = ACTIONS(5456), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_implicit] = ACTIONS(5456), - [anon_sym_explicit] = ACTIONS(5456), - [anon_sym_scoped] = ACTIONS(5456), - [anon_sym_var] = ACTIONS(5456), - [sym_predefined_type] = ACTIONS(5456), - [anon_sym_yield] = ACTIONS(5456), - [anon_sym_when] = ACTIONS(5456), - [anon_sym_from] = ACTIONS(5456), - [anon_sym_into] = ACTIONS(5456), - [anon_sym_join] = ACTIONS(5456), - [anon_sym_on] = ACTIONS(5456), - [anon_sym_equals] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(5456), - [anon_sym_orderby] = ACTIONS(5456), - [anon_sym_ascending] = ACTIONS(5456), - [anon_sym_descending] = ACTIONS(5456), - [anon_sym_group] = ACTIONS(5456), - [anon_sym_by] = ACTIONS(5456), - [anon_sym_select] = ACTIONS(5456), - [sym_grit_metavariable] = ACTIONS(5458), - [aux_sym_preproc_if_token1] = ACTIONS(5458), - [aux_sym_preproc_if_token3] = ACTIONS(5772), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_where] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5352), + [anon_sym_join] = ACTIONS(5352), + [anon_sym_let] = ACTIONS(5352), + [anon_sym_orderby] = ACTIONS(5352), + [anon_sym_group] = ACTIONS(5352), + [anon_sym_select] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518934,29 +517005,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3428] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), - [sym_preproc_else_in_expression] = STATE(7988), - [sym_preproc_elif_in_expression] = STATE(7988), [sym_preproc_region] = STATE(3428), [sym_preproc_endregion] = STATE(3428), [sym_preproc_line] = STATE(3428), @@ -518966,42 +517029,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3428), [sym_preproc_define] = STATE(3428), [sym_preproc_undef] = STATE(3428), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(5774), - [aux_sym_preproc_else_token1] = ACTIONS(2899), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(6083), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519014,27 +517081,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3429] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3429), [sym_preproc_endregion] = STATE(3429), [sym_preproc_line] = STATE(3429), @@ -519044,44 +517105,46 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(6087), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(6083), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5332), + [anon_sym_join] = ACTIONS(5332), + [anon_sym_let] = ACTIONS(5332), + [anon_sym_orderby] = ACTIONS(5332), + [anon_sym_group] = ACTIONS(5332), + [anon_sym_select] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519094,27 +517157,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3430] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3430), [sym_preproc_endregion] = STATE(3430), [sym_preproc_line] = STATE(3430), @@ -519124,43 +517181,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3430), [sym_preproc_define] = STATE(3430), [sym_preproc_undef] = STATE(3430), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519171,30 +517231,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3431] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3431), [sym_preproc_endregion] = STATE(3431), [sym_preproc_line] = STATE(3431), @@ -519204,44 +517257,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3431), [sym_preproc_define] = STATE(3431), [sym_preproc_undef] = STATE(3431), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4760), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5741), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5745), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519254,27 +517309,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3432] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3432), [sym_preproc_endregion] = STATE(3432), [sym_preproc_line] = STATE(3432), @@ -519284,43 +517333,46 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5296), + [anon_sym_QMARK] = ACTIONS(6087), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(6083), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5296), + [anon_sym_join] = ACTIONS(5296), + [anon_sym_let] = ACTIONS(5296), + [anon_sym_orderby] = ACTIONS(5296), + [anon_sym_group] = ACTIONS(5296), + [anon_sym_select] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519331,30 +517383,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3433] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3433), [sym_preproc_endregion] = STATE(3433), [sym_preproc_line] = STATE(3433), @@ -519364,43 +517409,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3433), [sym_preproc_define] = STATE(3433), [sym_preproc_undef] = STATE(3433), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519411,30 +517459,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3434] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3434), [sym_preproc_endregion] = STATE(3434), [sym_preproc_line] = STATE(3434), @@ -519444,44 +517485,46 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5710), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4770), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4770), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4770), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5714), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519494,27 +517537,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3435] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3435), [sym_preproc_endregion] = STATE(3435), [sym_preproc_line] = STATE(3435), @@ -519524,44 +517561,46 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5710), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4708), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4708), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5714), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519574,27 +517613,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3436] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3436), [sym_preproc_endregion] = STATE(3436), [sym_preproc_line] = STATE(3436), @@ -519604,44 +517637,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3436), [sym_preproc_define] = STATE(3436), [sym_preproc_undef] = STATE(3436), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4708), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4708), - [anon_sym_RBRACE] = ACTIONS(4708), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5741), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5745), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519654,27 +517689,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3437] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3437), [sym_preproc_endregion] = STATE(3437), [sym_preproc_line] = STATE(3437), @@ -519684,44 +517713,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3437), [sym_preproc_define] = STATE(3437), [sym_preproc_undef] = STATE(3437), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5753), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5751), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519734,27 +517765,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3438] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3438), [sym_preproc_endregion] = STATE(3438), [sym_preproc_line] = STATE(3438), @@ -519764,44 +517789,46 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5710), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4748), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4748), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5714), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519814,27 +517841,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3439] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3439), [sym_preproc_endregion] = STATE(3439), [sym_preproc_line] = STATE(3439), @@ -519844,44 +517865,46 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5710), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4782), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4782), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5714), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519894,27 +517917,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3440] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), [sym_preproc_region] = STATE(3440), [sym_preproc_endregion] = STATE(3440), [sym_preproc_line] = STATE(3440), @@ -519924,44 +517926,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3440), [sym_preproc_define] = STATE(3440), [sym_preproc_undef] = STATE(3440), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_event] = ACTIONS(3738), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_interface] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_record] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_implicit] = ACTIONS(3738), + [anon_sym_explicit] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519974,27 +517993,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3441] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3441), [sym_preproc_endregion] = STATE(3441), [sym_preproc_line] = STATE(3441), @@ -520004,44 +518017,46 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_where] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(1365), + [anon_sym_join] = ACTIONS(1365), + [anon_sym_let] = ACTIONS(1365), + [anon_sym_orderby] = ACTIONS(1365), + [anon_sym_group] = ACTIONS(1365), + [anon_sym_select] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520054,27 +518069,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3442] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3442), [sym_preproc_endregion] = STATE(3442), [sym_preproc_line] = STATE(3442), @@ -520084,44 +518093,46 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5300), + [anon_sym_join] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_orderby] = ACTIONS(5300), + [anon_sym_group] = ACTIONS(5300), + [anon_sym_select] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520134,27 +518145,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3443] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3443), [sym_preproc_endregion] = STATE(3443), [sym_preproc_line] = STATE(3443), @@ -520164,44 +518169,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3443), [sym_preproc_define] = STATE(3443), [sym_preproc_undef] = STATE(3443), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6091), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(6103), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520214,27 +518221,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3444] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3444), [sym_preproc_endregion] = STATE(3444), [sym_preproc_line] = STATE(3444), @@ -520244,44 +518245,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3444), [sym_preproc_define] = STATE(3444), [sym_preproc_undef] = STATE(3444), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520294,27 +518297,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3445] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3445), [sym_preproc_endregion] = STATE(3445), [sym_preproc_line] = STATE(3445), @@ -520324,44 +518321,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3445), [sym_preproc_define] = STATE(3445), [sym_preproc_undef] = STATE(3445), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520374,27 +518373,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3446] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3446), [sym_preproc_endregion] = STATE(3446), [sym_preproc_line] = STATE(3446), @@ -520404,44 +518397,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3446), [sym_preproc_define] = STATE(3446), [sym_preproc_undef] = STATE(3446), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520454,27 +518449,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3447] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3447), [sym_preproc_endregion] = STATE(3447), [sym_preproc_line] = STATE(3447), @@ -520484,44 +518473,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3447), [sym_preproc_define] = STATE(3447), [sym_preproc_undef] = STATE(3447), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5714), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(6125), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520534,27 +518525,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3448] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3448), [sym_preproc_endregion] = STATE(3448), [sym_preproc_line] = STATE(3448), @@ -520564,44 +518549,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3448), [sym_preproc_define] = STATE(3448), [sym_preproc_undef] = STATE(3448), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4770), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5753), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4770), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4770), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5751), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5698), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520614,27 +518601,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3449] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3449), [sym_preproc_endregion] = STATE(3449), [sym_preproc_line] = STATE(3449), @@ -520644,44 +518625,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3449), [sym_preproc_define] = STATE(3449), [sym_preproc_undef] = STATE(3449), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5710), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4778), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4778), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5714), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520694,7 +518677,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3450] = { - [sym_initializer_expression] = STATE(3876), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3450), [sym_preproc_endregion] = STATE(3450), [sym_preproc_line] = STATE(3450), @@ -520704,64 +518701,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3450), [sym_preproc_define] = STATE(3450), [sym_preproc_undef] = STATE(3450), - [anon_sym_SEMI] = ACTIONS(5776), - [anon_sym_LBRACK] = ACTIONS(5776), - [anon_sym_COLON] = ACTIONS(5776), - [anon_sym_COMMA] = ACTIONS(5776), - [anon_sym_RBRACK] = ACTIONS(5776), - [anon_sym_LPAREN] = ACTIONS(5776), - [anon_sym_RPAREN] = ACTIONS(5776), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(5776), - [anon_sym_LT] = ACTIONS(5778), - [anon_sym_GT] = ACTIONS(5778), - [anon_sym_in] = ACTIONS(5778), - [anon_sym_where] = ACTIONS(5776), - [anon_sym_QMARK] = ACTIONS(5778), - [anon_sym_BANG] = ACTIONS(5778), - [anon_sym_PLUS_PLUS] = ACTIONS(5776), - [anon_sym_DASH_DASH] = ACTIONS(5776), - [anon_sym_PLUS] = ACTIONS(5778), - [anon_sym_DASH] = ACTIONS(5778), - [anon_sym_STAR] = ACTIONS(5776), - [anon_sym_SLASH] = ACTIONS(5778), - [anon_sym_PERCENT] = ACTIONS(5776), - [anon_sym_CARET] = ACTIONS(5776), - [anon_sym_PIPE] = ACTIONS(5778), - [anon_sym_AMP] = ACTIONS(5778), - [anon_sym_LT_LT] = ACTIONS(5776), - [anon_sym_GT_GT] = ACTIONS(5778), - [anon_sym_GT_GT_GT] = ACTIONS(5776), - [anon_sym_EQ_EQ] = ACTIONS(5776), - [anon_sym_BANG_EQ] = ACTIONS(5776), - [anon_sym_GT_EQ] = ACTIONS(5776), - [anon_sym_LT_EQ] = ACTIONS(5776), - [anon_sym_DOT] = ACTIONS(5778), - [anon_sym_EQ_GT] = ACTIONS(5776), - [anon_sym_switch] = ACTIONS(5776), - [anon_sym_DOT_DOT] = ACTIONS(5776), - [anon_sym_and] = ACTIONS(5776), - [anon_sym_or] = ACTIONS(5778), - [anon_sym_AMP_AMP] = ACTIONS(5776), - [anon_sym_PIPE_PIPE] = ACTIONS(5776), - [sym_op_coalescing] = ACTIONS(5776), - [anon_sym_from] = ACTIONS(5776), - [anon_sym_into] = ACTIONS(5776), - [anon_sym_join] = ACTIONS(5776), - [anon_sym_on] = ACTIONS(5776), - [anon_sym_equals] = ACTIONS(5776), - [anon_sym_let] = ACTIONS(5776), - [anon_sym_orderby] = ACTIONS(5776), - [anon_sym_group] = ACTIONS(5776), - [anon_sym_by] = ACTIONS(5776), - [anon_sym_select] = ACTIONS(5776), - [anon_sym_as] = ACTIONS(5776), - [anon_sym_is] = ACTIONS(5776), - [anon_sym_DASH_GT] = ACTIONS(5776), - [anon_sym_with] = ACTIONS(5776), - [aux_sym_preproc_if_token3] = ACTIONS(5776), - [aux_sym_preproc_else_token1] = ACTIONS(5776), - [aux_sym_preproc_elif_token1] = ACTIONS(5776), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520774,27 +518753,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3451] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3451), [sym_preproc_endregion] = STATE(3451), [sym_preproc_line] = STATE(3451), @@ -520804,44 +518777,46 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4794), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_when] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520854,27 +518829,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3452] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3452), [sym_preproc_endregion] = STATE(3452), [sym_preproc_line] = STATE(3452), @@ -520884,44 +518853,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3452), [sym_preproc_define] = STATE(3452), [sym_preproc_undef] = STATE(3452), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520934,27 +518905,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3453] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3453), [sym_preproc_endregion] = STATE(3453), [sym_preproc_line] = STATE(3453), @@ -520964,44 +518929,46 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521014,27 +518981,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3454] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3454), [sym_preproc_endregion] = STATE(3454), [sym_preproc_line] = STATE(3454), @@ -521044,44 +519005,46 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4774), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_when] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521094,29 +519057,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3455] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), - [sym_interpolation_alignment_clause] = STATE(7270), - [sym_interpolation_format_clause] = STATE(7795), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3455), [sym_preproc_endregion] = STATE(3455), [sym_preproc_line] = STATE(3455), @@ -521126,41 +519081,46 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(5780), - [anon_sym_COMMA] = ACTIONS(5782), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5784), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5788), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_where] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5308), + [anon_sym_join] = ACTIONS(5308), + [anon_sym_let] = ACTIONS(5308), + [anon_sym_orderby] = ACTIONS(5308), + [anon_sym_group] = ACTIONS(5308), + [anon_sym_select] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521171,30 +519131,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(5792), }, [3456] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3456), [sym_preproc_endregion] = STATE(3456), [sym_preproc_line] = STATE(3456), @@ -521204,44 +519157,46 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_when] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_where] = ACTIONS(5314), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5314), + [anon_sym_join] = ACTIONS(5314), + [anon_sym_let] = ACTIONS(5314), + [anon_sym_orderby] = ACTIONS(5314), + [anon_sym_group] = ACTIONS(5314), + [anon_sym_select] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521254,27 +519209,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3457] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3457), [sym_preproc_endregion] = STATE(3457), [sym_preproc_line] = STATE(3457), @@ -521284,44 +519233,46 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4748), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5741), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5745), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(6087), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(6083), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5336), + [anon_sym_join] = ACTIONS(5336), + [anon_sym_let] = ACTIONS(5336), + [anon_sym_orderby] = ACTIONS(5336), + [anon_sym_group] = ACTIONS(5336), + [anon_sym_select] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521334,27 +519285,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3458] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3458), [sym_preproc_endregion] = STATE(3458), [sym_preproc_line] = STATE(3458), @@ -521364,44 +519309,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3458), [sym_preproc_define] = STATE(3458), [sym_preproc_undef] = STATE(3458), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5710), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4786), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(5712), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5714), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(5696), - [anon_sym_is] = ACTIONS(5716), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5356), + [anon_sym_QMARK] = ACTIONS(6087), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(6083), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5356), + [anon_sym_join] = ACTIONS(5356), + [anon_sym_let] = ACTIONS(5356), + [anon_sym_orderby] = ACTIONS(5356), + [anon_sym_group] = ACTIONS(5356), + [anon_sym_select] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521414,27 +519361,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3459] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3459), [sym_preproc_endregion] = STATE(3459), [sym_preproc_line] = STATE(3459), @@ -521444,44 +519385,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3459), [sym_preproc_define] = STATE(3459), [sym_preproc_undef] = STATE(3459), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_when] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_RBRACK] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521494,27 +519437,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3460] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3460), [sym_preproc_endregion] = STATE(3460), [sym_preproc_line] = STATE(3460), @@ -521524,44 +519461,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3460), [sym_preproc_define] = STATE(3460), [sym_preproc_undef] = STATE(3460), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5694), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521574,27 +519513,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3461] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1486), - [sym_op_neq] = STATE(1486), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1485), - [sym_op_or] = STATE(1483), - [sym_op_bitwise_and] = STATE(1481), - [sym_op_bitwise_or] = STATE(1480), - [sym_op_bitwise_xor] = STATE(1479), - [sym_op_left_shift] = STATE(1478), - [sym_op_right_shift] = STATE(1478), - [sym_op_unsigned_right_shift] = STATE(1478), - [sym_op_plus] = STATE(1477), - [sym_op_minus] = STATE(1477), - [sym_op_multiply] = STATE(1476), - [sym_op_divide] = STATE(1476), - [sym_op_modulo] = STATE(1476), [sym_preproc_region] = STATE(3461), [sym_preproc_endregion] = STATE(3461), [sym_preproc_line] = STATE(3461), @@ -521604,44 +519522,61 @@ 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_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4782), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5741), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5745), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_COLON] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(5070), + [anon_sym_RBRACK] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(4006), + [anon_sym_RPAREN] = ACTIONS(5070), + [anon_sym_RBRACE] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_EQ_GT] = ACTIONS(5068), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_switch] = ACTIONS(4006), + [anon_sym_when] = ACTIONS(5068), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5068), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521654,27 +519589,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3462] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3462), [sym_preproc_endregion] = STATE(3462), [sym_preproc_line] = STATE(3462), @@ -521684,43 +519613,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3462), [sym_preproc_define] = STATE(3462), [sym_preproc_undef] = STATE(3462), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_on] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_where] = ACTIONS(5360), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5360), + [anon_sym_join] = ACTIONS(5360), + [anon_sym_let] = ACTIONS(5360), + [anon_sym_orderby] = ACTIONS(5360), + [anon_sym_group] = ACTIONS(5360), + [anon_sym_select] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521733,7 +519665,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3463] = { - [sym_type_argument_list] = STATE(4007), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3463), [sym_preproc_endregion] = STATE(3463), [sym_preproc_line] = STATE(3463), @@ -521743,63 +519689,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3463), [sym_preproc_define] = STATE(3463), [sym_preproc_undef] = STATE(3463), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(5796), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3953), - [anon_sym_where] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_COLON_COLON] = ACTIONS(5799), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_from] = ACTIONS(3953), - [anon_sym_join] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_let] = ACTIONS(3953), - [anon_sym_orderby] = ACTIONS(3953), - [anon_sym_group] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_select] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_SEMI] = ACTIONS(5364), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_RBRACK] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5364), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6127), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(6125), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521812,27 +519741,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3464] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3464), [sym_preproc_endregion] = STATE(3464), [sym_preproc_line] = STATE(3464), @@ -521842,43 +519765,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3464), [sym_preproc_define] = STATE(3464), [sym_preproc_undef] = STATE(3464), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_in] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521891,6 +519817,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3465] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3465), [sym_preproc_endregion] = STATE(3465), [sym_preproc_line] = STATE(3465), @@ -521900,64 +519841,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3465), [sym_preproc_define] = STATE(3465), [sym_preproc_undef] = STATE(3465), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_RBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_RPAREN] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3912), - [anon_sym_where] = ACTIONS(3912), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3912), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3912), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3912), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3912), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3912), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3912), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3912), - [anon_sym_from] = ACTIONS(3912), - [anon_sym_join] = ACTIONS(3912), - [anon_sym_on] = ACTIONS(3912), - [anon_sym_equals] = ACTIONS(3912), - [anon_sym_let] = ACTIONS(3912), - [anon_sym_orderby] = ACTIONS(3912), - [anon_sym_group] = ACTIONS(3912), - [anon_sym_by] = ACTIONS(3912), - [anon_sym_select] = ACTIONS(3912), - [anon_sym_as] = ACTIONS(3912), - [anon_sym_is] = ACTIONS(3912), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3912), - [aux_sym_preproc_if_token3] = ACTIONS(3912), - [aux_sym_preproc_else_token1] = ACTIONS(3912), - [aux_sym_preproc_elif_token1] = ACTIONS(3912), + [anon_sym_SEMI] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_RBRACK] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5356), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6127), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(6125), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521970,27 +519893,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3466] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3466), [sym_preproc_endregion] = STATE(3466), [sym_preproc_line] = STATE(3466), @@ -522000,43 +519917,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3466), [sym_preproc_define] = STATE(3466), [sym_preproc_undef] = STATE(3466), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_in] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(5336), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_RBRACK] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5336), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6127), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(6125), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522049,27 +519969,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3467] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3467), [sym_preproc_endregion] = STATE(3467), [sym_preproc_line] = STATE(3467), @@ -522079,43 +519993,46 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_in] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(5296), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_RBRACK] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5296), + [anon_sym_RBRACE] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6127), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(6125), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522128,7 +520045,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3468] = { - [sym_initializer_expression] = STATE(4300), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3468), [sym_preproc_endregion] = STATE(3468), [sym_preproc_line] = STATE(3468), @@ -522138,63 +520069,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3468), [sym_preproc_define] = STATE(3468), [sym_preproc_undef] = STATE(3468), - [anon_sym_SEMI] = ACTIONS(5755), - [anon_sym_LBRACK] = ACTIONS(5755), - [anon_sym_COLON] = ACTIONS(5755), - [anon_sym_COMMA] = ACTIONS(5755), - [anon_sym_RBRACK] = ACTIONS(5755), - [anon_sym_LPAREN] = ACTIONS(5755), - [anon_sym_RPAREN] = ACTIONS(5755), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(5755), - [anon_sym_LT] = ACTIONS(5757), - [anon_sym_GT] = ACTIONS(5757), - [anon_sym_in] = ACTIONS(5755), - [anon_sym_where] = ACTIONS(5755), - [anon_sym_QMARK] = ACTIONS(5757), - [anon_sym_BANG] = ACTIONS(5757), - [anon_sym_PLUS_PLUS] = ACTIONS(5755), - [anon_sym_DASH_DASH] = ACTIONS(5755), - [anon_sym_PLUS] = ACTIONS(5757), - [anon_sym_DASH] = ACTIONS(5757), - [anon_sym_STAR] = ACTIONS(5755), - [anon_sym_SLASH] = ACTIONS(5757), - [anon_sym_PERCENT] = ACTIONS(5755), - [anon_sym_CARET] = ACTIONS(5755), - [anon_sym_PIPE] = ACTIONS(5757), - [anon_sym_AMP] = ACTIONS(5757), - [anon_sym_LT_LT] = ACTIONS(5755), - [anon_sym_GT_GT] = ACTIONS(5757), - [anon_sym_GT_GT_GT] = ACTIONS(5755), - [anon_sym_EQ_EQ] = ACTIONS(5755), - [anon_sym_BANG_EQ] = ACTIONS(5755), - [anon_sym_GT_EQ] = ACTIONS(5755), - [anon_sym_LT_EQ] = ACTIONS(5755), - [anon_sym_DOT] = ACTIONS(5757), - [anon_sym_EQ_GT] = ACTIONS(5755), - [anon_sym_switch] = ACTIONS(5755), - [anon_sym_DOT_DOT] = ACTIONS(5755), - [anon_sym_and] = ACTIONS(5755), - [anon_sym_or] = ACTIONS(5757), - [anon_sym_AMP_AMP] = ACTIONS(5755), - [anon_sym_PIPE_PIPE] = ACTIONS(5755), - [sym_op_coalescing] = ACTIONS(5755), - [anon_sym_from] = ACTIONS(5755), - [anon_sym_join] = ACTIONS(5755), - [anon_sym_on] = ACTIONS(5755), - [anon_sym_equals] = ACTIONS(5755), - [anon_sym_let] = ACTIONS(5755), - [anon_sym_orderby] = ACTIONS(5755), - [anon_sym_group] = ACTIONS(5755), - [anon_sym_by] = ACTIONS(5755), - [anon_sym_select] = ACTIONS(5755), - [anon_sym_as] = ACTIONS(5755), - [anon_sym_is] = ACTIONS(5755), - [anon_sym_DASH_GT] = ACTIONS(5755), - [anon_sym_with] = ACTIONS(5755), - [aux_sym_preproc_if_token3] = ACTIONS(5755), - [aux_sym_preproc_else_token1] = ACTIONS(5755), - [aux_sym_preproc_elif_token1] = ACTIONS(5755), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(6087), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(6083), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(5364), + [anon_sym_join] = ACTIONS(5364), + [anon_sym_let] = ACTIONS(5364), + [anon_sym_orderby] = ACTIONS(5364), + [anon_sym_group] = ACTIONS(5364), + [anon_sym_select] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522207,27 +520121,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3469] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3469), [sym_preproc_endregion] = STATE(3469), [sym_preproc_line] = STATE(3469), @@ -522237,43 +520145,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3469), [sym_preproc_define] = STATE(3469), [sym_preproc_undef] = STATE(3469), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_in] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_RBRACK] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6127), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(6125), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522286,27 +520197,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3470] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), [sym_preproc_region] = STATE(3470), [sym_preproc_endregion] = STATE(3470), [sym_preproc_line] = STATE(3470), @@ -522316,43 +520206,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3470), [sym_preproc_define] = STATE(3470), [sym_preproc_undef] = STATE(3470), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_on] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(5508), + [anon_sym_EQ] = ACTIONS(6129), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_RBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(6131), + [anon_sym_DASH_EQ] = ACTIONS(6131), + [anon_sym_STAR_EQ] = ACTIONS(6131), + [anon_sym_SLASH_EQ] = ACTIONS(6131), + [anon_sym_PERCENT_EQ] = ACTIONS(6131), + [anon_sym_AMP_EQ] = ACTIONS(6131), + [anon_sym_CARET_EQ] = ACTIONS(6131), + [anon_sym_PIPE_EQ] = ACTIONS(6131), + [anon_sym_LT_LT_EQ] = ACTIONS(6131), + [anon_sym_GT_GT_EQ] = ACTIONS(6131), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6131), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6131), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [aux_sym_preproc_if_token3] = ACTIONS(5508), + [aux_sym_preproc_else_token1] = ACTIONS(5508), + [aux_sym_preproc_elif_token1] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522365,27 +520273,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3471] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3471), [sym_preproc_endregion] = STATE(3471), [sym_preproc_line] = STATE(3471), @@ -522395,43 +520297,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3471), [sym_preproc_define] = STATE(3471), [sym_preproc_undef] = STATE(3471), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_on] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5364), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6091), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(6103), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522444,7 +520349,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3472] = { - [sym_initializer_expression] = STATE(4203), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3472), [sym_preproc_endregion] = STATE(3472), [sym_preproc_line] = STATE(3472), @@ -522454,63 +520373,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3472), [sym_preproc_define] = STATE(3472), [sym_preproc_undef] = STATE(3472), - [anon_sym_SEMI] = ACTIONS(5776), - [anon_sym_LBRACK] = ACTIONS(5776), - [anon_sym_COLON] = ACTIONS(5776), - [anon_sym_COMMA] = ACTIONS(5776), - [anon_sym_RBRACK] = ACTIONS(5776), - [anon_sym_LPAREN] = ACTIONS(5776), - [anon_sym_RPAREN] = ACTIONS(5776), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(5776), - [anon_sym_LT] = ACTIONS(5778), - [anon_sym_GT] = ACTIONS(5778), - [anon_sym_in] = ACTIONS(5776), - [anon_sym_where] = ACTIONS(5776), - [anon_sym_QMARK] = ACTIONS(5778), - [anon_sym_BANG] = ACTIONS(5778), - [anon_sym_PLUS_PLUS] = ACTIONS(5776), - [anon_sym_DASH_DASH] = ACTIONS(5776), - [anon_sym_PLUS] = ACTIONS(5778), - [anon_sym_DASH] = ACTIONS(5778), - [anon_sym_STAR] = ACTIONS(5776), - [anon_sym_SLASH] = ACTIONS(5778), - [anon_sym_PERCENT] = ACTIONS(5776), - [anon_sym_CARET] = ACTIONS(5776), - [anon_sym_PIPE] = ACTIONS(5778), - [anon_sym_AMP] = ACTIONS(5778), - [anon_sym_LT_LT] = ACTIONS(5776), - [anon_sym_GT_GT] = ACTIONS(5778), - [anon_sym_GT_GT_GT] = ACTIONS(5776), - [anon_sym_EQ_EQ] = ACTIONS(5776), - [anon_sym_BANG_EQ] = ACTIONS(5776), - [anon_sym_GT_EQ] = ACTIONS(5776), - [anon_sym_LT_EQ] = ACTIONS(5776), - [anon_sym_DOT] = ACTIONS(5778), - [anon_sym_EQ_GT] = ACTIONS(5776), - [anon_sym_switch] = ACTIONS(5776), - [anon_sym_DOT_DOT] = ACTIONS(5776), - [anon_sym_and] = ACTIONS(5776), - [anon_sym_or] = ACTIONS(5778), - [anon_sym_AMP_AMP] = ACTIONS(5776), - [anon_sym_PIPE_PIPE] = ACTIONS(5776), - [sym_op_coalescing] = ACTIONS(5776), - [anon_sym_from] = ACTIONS(5776), - [anon_sym_join] = ACTIONS(5776), - [anon_sym_on] = ACTIONS(5776), - [anon_sym_equals] = ACTIONS(5776), - [anon_sym_let] = ACTIONS(5776), - [anon_sym_orderby] = ACTIONS(5776), - [anon_sym_group] = ACTIONS(5776), - [anon_sym_by] = ACTIONS(5776), - [anon_sym_select] = ACTIONS(5776), - [anon_sym_as] = ACTIONS(5776), - [anon_sym_is] = ACTIONS(5776), - [anon_sym_DASH_GT] = ACTIONS(5776), - [anon_sym_with] = ACTIONS(5776), - [aux_sym_preproc_if_token3] = ACTIONS(5776), - [aux_sym_preproc_else_token1] = ACTIONS(5776), - [aux_sym_preproc_elif_token1] = ACTIONS(5776), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522523,27 +520425,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3473] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3473), [sym_preproc_endregion] = STATE(3473), [sym_preproc_line] = STATE(3473), @@ -522553,43 +520449,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3473), [sym_preproc_define] = STATE(3473), [sym_preproc_undef] = STATE(3473), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), - [aux_sym_preproc_if_token3] = ACTIONS(4774), - [aux_sym_preproc_else_token1] = ACTIONS(4774), - [aux_sym_preproc_elif_token1] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522602,27 +520501,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3474] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3474), [sym_preproc_endregion] = STATE(3474), [sym_preproc_line] = STATE(3474), @@ -522632,43 +520525,46 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_QMARK] = ACTIONS(5803), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4770), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5805), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522681,27 +520577,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3475] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3475), [sym_preproc_endregion] = STATE(3475), [sym_preproc_line] = STATE(3475), @@ -522711,43 +520601,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3475), [sym_preproc_define] = STATE(3475), [sym_preproc_undef] = STATE(3475), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_on] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(6103), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522760,27 +520653,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3476] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3476), [sym_preproc_endregion] = STATE(3476), [sym_preproc_line] = STATE(3476), @@ -522790,43 +520677,46 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_on] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522839,27 +520729,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3477] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3477), [sym_preproc_endregion] = STATE(3477), [sym_preproc_line] = STATE(3477), @@ -522869,43 +520753,46 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(5803), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5805), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522918,27 +520805,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3478] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3478), [sym_preproc_endregion] = STATE(3478), [sym_preproc_line] = STATE(3478), @@ -522948,43 +520829,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3478), [sym_preproc_define] = STATE(3478), [sym_preproc_undef] = STATE(3478), - [anon_sym_SEMI] = ACTIONS(4748), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4748), - [aux_sym_preproc_else_token1] = ACTIONS(4748), - [aux_sym_preproc_elif_token1] = ACTIONS(4748), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522997,27 +520881,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3479] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3479), [sym_preproc_endregion] = STATE(3479), [sym_preproc_line] = STATE(3479), @@ -523027,43 +520905,46 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(5803), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5805), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523076,27 +520957,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3480] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3480), [sym_preproc_endregion] = STATE(3480), [sym_preproc_line] = STATE(3480), @@ -523106,43 +520981,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3480), [sym_preproc_define] = STATE(3480), [sym_preproc_undef] = STATE(3480), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523155,27 +521033,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3481] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3481), [sym_preproc_endregion] = STATE(3481), [sym_preproc_line] = STATE(3481), @@ -523185,43 +521057,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3481), [sym_preproc_define] = STATE(3481), [sym_preproc_undef] = STATE(3481), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523234,27 +521109,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3482] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3482), [sym_preproc_endregion] = STATE(3482), [sym_preproc_line] = STATE(3482), @@ -523264,43 +521133,46 @@ 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), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523313,27 +521185,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3483] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3483), [sym_preproc_endregion] = STATE(3483), [sym_preproc_line] = STATE(3483), @@ -523343,43 +521209,46 @@ 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), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5356), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6091), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(6103), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523392,27 +521261,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3484] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(3484), [sym_preproc_endregion] = STATE(3484), [sym_preproc_line] = STATE(3484), @@ -523422,43 +521270,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3484), [sym_preproc_define] = STATE(3484), [sym_preproc_undef] = STATE(3484), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [sym__identifier_token] = ACTIONS(6133), + [anon_sym_extern] = ACTIONS(6133), + [anon_sym_alias] = ACTIONS(6133), + [anon_sym_global] = ACTIONS(6133), + [anon_sym_unsafe] = ACTIONS(6133), + [anon_sym_static] = ACTIONS(6133), + [anon_sym_LPAREN] = ACTIONS(6135), + [anon_sym_event] = ACTIONS(6133), + [anon_sym_class] = ACTIONS(6133), + [anon_sym_ref] = ACTIONS(6133), + [anon_sym_struct] = ACTIONS(6133), + [anon_sym_enum] = ACTIONS(6133), + [anon_sym_interface] = ACTIONS(6133), + [anon_sym_delegate] = ACTIONS(6133), + [anon_sym_record] = ACTIONS(6133), + [anon_sym_public] = ACTIONS(6133), + [anon_sym_private] = ACTIONS(6133), + [anon_sym_readonly] = ACTIONS(6133), + [anon_sym_abstract] = ACTIONS(6133), + [anon_sym_async] = ACTIONS(6133), + [anon_sym_const] = ACTIONS(6133), + [anon_sym_file] = ACTIONS(6133), + [anon_sym_fixed] = ACTIONS(6133), + [anon_sym_internal] = ACTIONS(6133), + [anon_sym_new] = ACTIONS(6133), + [anon_sym_override] = ACTIONS(6133), + [anon_sym_partial] = ACTIONS(6133), + [anon_sym_protected] = ACTIONS(6133), + [anon_sym_required] = ACTIONS(6133), + [anon_sym_sealed] = ACTIONS(6133), + [anon_sym_virtual] = ACTIONS(6133), + [anon_sym_volatile] = ACTIONS(6133), + [anon_sym_where] = ACTIONS(6133), + [anon_sym_notnull] = ACTIONS(6133), + [anon_sym_unmanaged] = ACTIONS(6133), + [anon_sym_implicit] = ACTIONS(6133), + [anon_sym_explicit] = ACTIONS(6133), + [anon_sym_scoped] = ACTIONS(6133), + [anon_sym_var] = ACTIONS(6133), + [sym_predefined_type] = ACTIONS(6133), + [anon_sym_yield] = ACTIONS(6133), + [anon_sym_when] = ACTIONS(6133), + [anon_sym_from] = ACTIONS(6133), + [anon_sym_into] = ACTIONS(6133), + [anon_sym_join] = ACTIONS(6133), + [anon_sym_on] = ACTIONS(6133), + [anon_sym_equals] = ACTIONS(6133), + [anon_sym_let] = ACTIONS(6133), + [anon_sym_orderby] = ACTIONS(6133), + [anon_sym_ascending] = ACTIONS(6133), + [anon_sym_descending] = ACTIONS(6133), + [anon_sym_group] = ACTIONS(6133), + [anon_sym_by] = ACTIONS(6133), + [anon_sym_select] = ACTIONS(6133), + [sym_grit_metavariable] = ACTIONS(6135), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523471,27 +521337,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3485] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3485), [sym_preproc_endregion] = STATE(3485), [sym_preproc_line] = STATE(3485), @@ -523501,43 +521361,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3485), [sym_preproc_define] = STATE(3485), [sym_preproc_undef] = STATE(3485), - [anon_sym_SEMI] = ACTIONS(4790), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4790), - [aux_sym_preproc_else_token1] = ACTIONS(4790), - [aux_sym_preproc_elif_token1] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5336), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6091), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(6103), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523550,27 +521413,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3486] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3486), [sym_preproc_endregion] = STATE(3486), [sym_preproc_line] = STATE(3486), @@ -523580,43 +521437,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3486), [sym_preproc_define] = STATE(3486), [sym_preproc_undef] = STATE(3486), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5296), + [anon_sym_RBRACE] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6091), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(6103), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523629,27 +521489,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3487] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3487), [sym_preproc_endregion] = STATE(3487), [sym_preproc_line] = STATE(3487), @@ -523659,43 +521513,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3487), [sym_preproc_define] = STATE(3487), [sym_preproc_undef] = STATE(3487), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5308), + [anon_sym_RBRACE] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523708,27 +521565,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3488] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3488), [sym_preproc_endregion] = STATE(3488), [sym_preproc_line] = STATE(3488), @@ -523738,43 +521589,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3488), [sym_preproc_define] = STATE(3488), [sym_preproc_undef] = STATE(3488), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(5308), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_RBRACK] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5308), + [anon_sym_RBRACE] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523787,27 +521641,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3489] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(3489), [sym_preproc_endregion] = STATE(3489), [sym_preproc_line] = STATE(3489), @@ -523817,43 +521650,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3489), [sym_preproc_define] = STATE(3489), [sym_preproc_undef] = STATE(3489), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(6137), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_where] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5510), + [anon_sym_PLUS_EQ] = ACTIONS(6139), + [anon_sym_DASH_EQ] = ACTIONS(6139), + [anon_sym_STAR_EQ] = ACTIONS(6139), + [anon_sym_SLASH_EQ] = ACTIONS(6139), + [anon_sym_PERCENT_EQ] = ACTIONS(6139), + [anon_sym_AMP_EQ] = ACTIONS(6139), + [anon_sym_CARET_EQ] = ACTIONS(6139), + [anon_sym_PIPE_EQ] = ACTIONS(6139), + [anon_sym_LT_LT_EQ] = ACTIONS(6139), + [anon_sym_GT_GT_EQ] = ACTIONS(6139), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6139), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6139), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_from] = ACTIONS(5508), + [anon_sym_join] = ACTIONS(5508), + [anon_sym_let] = ACTIONS(5508), + [anon_sym_orderby] = ACTIONS(5508), + [anon_sym_group] = ACTIONS(5508), + [anon_sym_select] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523866,27 +521717,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3490] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3490), [sym_preproc_endregion] = STATE(3490), [sym_preproc_line] = STATE(3490), @@ -523896,43 +521741,46 @@ 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(5430), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_RBRACK] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4794), - [anon_sym_RBRACE] = ACTIONS(4794), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5360), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523945,27 +521793,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3491] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3491), [sym_preproc_endregion] = STATE(3491), [sym_preproc_line] = STATE(3491), @@ -523975,43 +521817,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3491), [sym_preproc_define] = STATE(3491), [sym_preproc_undef] = STATE(3491), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_RBRACK] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_RBRACE] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(6141), + [anon_sym_QMARK] = ACTIONS(6087), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(6083), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(6141), + [anon_sym_join] = ACTIONS(6141), + [anon_sym_let] = ACTIONS(6141), + [anon_sym_orderby] = ACTIONS(6141), + [anon_sym_group] = ACTIONS(6141), + [anon_sym_select] = ACTIONS(6141), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524024,27 +521869,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3492] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3492), [sym_preproc_endregion] = STATE(3492), [sym_preproc_line] = STATE(3492), @@ -524054,43 +521893,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3492), [sym_preproc_define] = STATE(3492), [sym_preproc_undef] = STATE(3492), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(6143), + [anon_sym_QMARK] = ACTIONS(6087), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(6083), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(6143), + [anon_sym_join] = ACTIONS(6143), + [anon_sym_let] = ACTIONS(6143), + [anon_sym_orderby] = ACTIONS(6143), + [anon_sym_group] = ACTIONS(6143), + [anon_sym_select] = ACTIONS(6143), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524103,27 +521945,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3493] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3493), [sym_preproc_endregion] = STATE(3493), [sym_preproc_line] = STATE(3493), @@ -524133,43 +521969,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3493), [sym_preproc_define] = STATE(3493), [sym_preproc_undef] = STATE(3493), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_RBRACK] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(5314), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_RBRACK] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524182,27 +522021,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3494] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3494), [sym_preproc_endregion] = STATE(3494), [sym_preproc_line] = STATE(3494), @@ -524212,43 +522045,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3494), [sym_preproc_define] = STATE(3494), [sym_preproc_undef] = STATE(3494), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(6145), + [anon_sym_QMARK] = ACTIONS(6087), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(6083), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(6145), + [anon_sym_join] = ACTIONS(6145), + [anon_sym_let] = ACTIONS(6145), + [anon_sym_orderby] = ACTIONS(6145), + [anon_sym_group] = ACTIONS(6145), + [anon_sym_select] = ACTIONS(6145), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524261,27 +522097,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3495] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(3495), [sym_preproc_endregion] = STATE(3495), [sym_preproc_line] = STATE(3495), @@ -524291,43 +522121,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3495), [sym_preproc_define] = STATE(3495), [sym_preproc_undef] = STATE(3495), - [anon_sym_SEMI] = ACTIONS(4752), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), - [aux_sym_preproc_if_token3] = ACTIONS(4752), - [aux_sym_preproc_else_token1] = ACTIONS(4752), - [aux_sym_preproc_elif_token1] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(5328), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COMMA] = ACTIONS(5328), + [anon_sym_RBRACK] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5328), + [anon_sym_RBRACE] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6127), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(6125), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524340,27 +522173,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3496] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1363), + [sym_op_lte] = STATE(1363), + [sym_op_eq] = STATE(1360), + [sym_op_neq] = STATE(1360), + [sym_op_gt] = STATE(1363), + [sym_op_gte] = STATE(1363), + [sym_op_and] = STATE(1355), + [sym_op_or] = STATE(1354), + [sym_op_bitwise_and] = STATE(1350), + [sym_op_bitwise_xor] = STATE(1349), + [sym_op_plus] = STATE(1335), + [sym_op_minus] = STATE(1335), + [sym_op_multiply] = STATE(1381), [sym_preproc_region] = STATE(3496), [sym_preproc_endregion] = STATE(3496), [sym_preproc_line] = STATE(3496), @@ -524370,43 +522197,46 @@ 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(5508), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_when] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(6147), + [anon_sym_QMARK] = ACTIONS(6087), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6071), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6077), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6079), + [sym_op_right_shift] = ACTIONS(6081), + [sym_op_unsigned_right_shift] = ACTIONS(6079), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6073), + [sym_op_modulo] = ACTIONS(6075), + [sym_op_coalescing] = ACTIONS(6083), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_from] = ACTIONS(6147), + [anon_sym_join] = ACTIONS(6147), + [anon_sym_let] = ACTIONS(6147), + [anon_sym_orderby] = ACTIONS(6147), + [anon_sym_group] = ACTIONS(6147), + [anon_sym_select] = ACTIONS(6147), + [anon_sym_as] = ACTIONS(5849), + [anon_sym_is] = ACTIONS(6085), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524419,27 +522249,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3497] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3497), [sym_preproc_endregion] = STATE(3497), [sym_preproc_line] = STATE(3497), @@ -524449,43 +522273,46 @@ 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(5430), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5304), + [anon_sym_COMMA] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5304), + [anon_sym_RBRACE] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6091), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5304), + [anon_sym_or] = ACTIONS(5304), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(6103), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524498,27 +522325,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3498] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3498), [sym_preproc_endregion] = STATE(3498), [sym_preproc_line] = STATE(3498), @@ -524528,43 +522349,46 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4766), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_RBRACE] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_COMMA] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5328), + [anon_sym_RBRACE] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6091), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(6103), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524577,27 +522401,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3499] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(3499), [sym_preproc_endregion] = STATE(3499), [sym_preproc_line] = STATE(3499), @@ -524607,43 +522425,46 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4794), - [anon_sym_RBRACE] = ACTIONS(4794), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_COMMA] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5232), + [anon_sym_RBRACE] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6091), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6089), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(6103), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6105), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524656,27 +522477,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3500] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3500), [sym_preproc_endregion] = STATE(3500), [sym_preproc_line] = STATE(3500), @@ -524686,43 +522501,44 @@ 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(5430), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5819), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5821), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_COMMA] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6153), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(6169), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524733,29 +522549,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5232), }, [3501] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3501), [sym_preproc_endregion] = STATE(3501), [sym_preproc_line] = STATE(3501), @@ -524765,43 +522576,45 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_equals] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), + [aux_sym_preproc_if_token3] = ACTIONS(1365), + [aux_sym_preproc_else_token1] = ACTIONS(1365), + [aux_sym_preproc_elif_token1] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524814,27 +522627,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3502] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3502), [sym_preproc_endregion] = STATE(3502), [sym_preproc_line] = STATE(3502), @@ -524844,43 +522651,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3502), [sym_preproc_define] = STATE(3502), [sym_preproc_undef] = STATE(3502), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_equals] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524893,27 +522702,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3503] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3503), [sym_preproc_endregion] = STATE(3503), [sym_preproc_line] = STATE(3503), @@ -524923,43 +522726,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3503), [sym_preproc_define] = STATE(3503), [sym_preproc_undef] = STATE(3503), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_equals] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5308), + [anon_sym_RBRACE] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524972,27 +522777,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3504] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3504), [sym_preproc_endregion] = STATE(3504), [sym_preproc_line] = STATE(3504), @@ -525002,43 +522801,45 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_equals] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6183), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(6195), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6197), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [aux_sym_preproc_if_token3] = ACTIONS(5332), + [aux_sym_preproc_else_token1] = ACTIONS(5332), + [aux_sym_preproc_elif_token1] = ACTIONS(5332), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525051,6 +522852,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3505] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3505), [sym_preproc_endregion] = STATE(3505), [sym_preproc_line] = STATE(3505), @@ -525060,64 +522876,45 @@ 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), - [sym__identifier_token] = ACTIONS(4084), - [anon_sym_extern] = ACTIONS(4084), - [anon_sym_alias] = ACTIONS(4084), - [anon_sym_global] = ACTIONS(4084), - [anon_sym_unsafe] = ACTIONS(4084), - [anon_sym_static] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4086), - [anon_sym_LPAREN] = ACTIONS(4086), - [anon_sym_event] = ACTIONS(4084), - [anon_sym_class] = ACTIONS(4084), - [anon_sym_ref] = ACTIONS(4084), - [anon_sym_struct] = ACTIONS(4084), - [anon_sym_enum] = ACTIONS(4084), - [anon_sym_interface] = ACTIONS(4084), - [anon_sym_delegate] = ACTIONS(4084), - [anon_sym_record] = ACTIONS(4084), - [anon_sym_public] = ACTIONS(4084), - [anon_sym_private] = ACTIONS(4084), - [anon_sym_readonly] = ACTIONS(4084), - [anon_sym_abstract] = ACTIONS(4084), - [anon_sym_async] = ACTIONS(4084), - [anon_sym_const] = ACTIONS(4084), - [anon_sym_file] = ACTIONS(4084), - [anon_sym_fixed] = ACTIONS(4084), - [anon_sym_internal] = ACTIONS(4084), - [anon_sym_new] = ACTIONS(4084), - [anon_sym_override] = ACTIONS(4084), - [anon_sym_partial] = ACTIONS(4084), - [anon_sym_protected] = ACTIONS(4084), - [anon_sym_required] = ACTIONS(4084), - [anon_sym_sealed] = ACTIONS(4084), - [anon_sym_virtual] = ACTIONS(4084), - [anon_sym_volatile] = ACTIONS(4084), - [anon_sym_where] = ACTIONS(4084), - [anon_sym_notnull] = ACTIONS(4084), - [anon_sym_unmanaged] = ACTIONS(4084), - [anon_sym_TILDE] = ACTIONS(4086), - [anon_sym_implicit] = ACTIONS(4084), - [anon_sym_explicit] = ACTIONS(4084), - [anon_sym_scoped] = ACTIONS(4084), - [anon_sym_var] = ACTIONS(4084), - [sym_predefined_type] = ACTIONS(4084), - [anon_sym_yield] = ACTIONS(4084), - [anon_sym_when] = 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_ascending] = ACTIONS(4084), - [anon_sym_descending] = ACTIONS(4084), - [anon_sym_group] = ACTIONS(4084), - [anon_sym_by] = ACTIONS(4084), - [anon_sym_select] = ACTIONS(4084), - [sym_grit_metavariable] = ACTIONS(4086), - [aux_sym_preproc_if_token1] = ACTIONS(4086), + [anon_sym_SEMI] = ACTIONS(5328), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6183), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(6195), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6197), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [aux_sym_preproc_if_token3] = ACTIONS(5328), + [aux_sym_preproc_else_token1] = ACTIONS(5328), + [aux_sym_preproc_elif_token1] = ACTIONS(5328), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525130,27 +522927,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3506] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3506), [sym_preproc_endregion] = STATE(3506), [sym_preproc_line] = STATE(3506), @@ -525160,76 +522951,59 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4794), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4794), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6153), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(6169), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5332), }, [3507] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(3609), + [sym_initializer_expression] = STATE(4370), [sym_preproc_region] = STATE(3507), [sym_preproc_endregion] = STATE(3507), [sym_preproc_line] = STATE(3507), @@ -525239,43 +523013,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3507), [sym_preproc_define] = STATE(3507), [sym_preproc_undef] = STATE(3507), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5829), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4770), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5831), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_on] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5500), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_COLON] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(5500), + [anon_sym_RBRACK] = ACTIONS(5500), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5500), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(5500), + [anon_sym_LT] = ACTIONS(5504), + [anon_sym_GT] = ACTIONS(5504), + [anon_sym_in] = ACTIONS(5504), + [anon_sym_QMARK] = ACTIONS(5504), + [anon_sym_DOT] = ACTIONS(5504), + [anon_sym_EQ_GT] = ACTIONS(5500), + [anon_sym_STAR] = ACTIONS(5500), + [anon_sym_switch] = ACTIONS(5500), + [anon_sym_when] = ACTIONS(5500), + [anon_sym_DOT_DOT] = ACTIONS(5500), + [anon_sym_LT_EQ] = ACTIONS(5500), + [anon_sym_GT_EQ] = ACTIONS(5500), + [anon_sym_and] = ACTIONS(5500), + [anon_sym_or] = ACTIONS(5500), + [anon_sym_EQ_EQ] = ACTIONS(5500), + [anon_sym_BANG_EQ] = ACTIONS(5500), + [anon_sym_AMP_AMP] = ACTIONS(5500), + [anon_sym_PIPE_PIPE] = ACTIONS(5500), + [anon_sym_AMP] = ACTIONS(5504), + [sym_op_bitwise_or] = ACTIONS(5504), + [anon_sym_CARET] = ACTIONS(5500), + [sym_op_left_shift] = ACTIONS(5500), + [sym_op_right_shift] = ACTIONS(5504), + [sym_op_unsigned_right_shift] = ACTIONS(5500), + [anon_sym_PLUS] = ACTIONS(5504), + [anon_sym_DASH] = ACTIONS(5504), + [sym_op_divide] = ACTIONS(5504), + [sym_op_modulo] = ACTIONS(5500), + [sym_op_coalescing] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5504), + [anon_sym_PLUS_PLUS] = ACTIONS(5500), + [anon_sym_DASH_DASH] = ACTIONS(5500), + [anon_sym_into] = ACTIONS(5500), + [anon_sym_on] = ACTIONS(5500), + [anon_sym_equals] = ACTIONS(5500), + [anon_sym_by] = ACTIONS(5500), + [anon_sym_as] = ACTIONS(5500), + [anon_sym_is] = ACTIONS(5500), + [anon_sym_DASH_GT] = ACTIONS(5500), + [anon_sym_with] = ACTIONS(5500), + [aux_sym_preproc_if_token3] = ACTIONS(5500), + [aux_sym_preproc_else_token1] = ACTIONS(5500), + [aux_sym_preproc_elif_token1] = ACTIONS(5500), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525288,27 +523077,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3508] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3508), [sym_preproc_endregion] = STATE(3508), [sym_preproc_line] = STATE(3508), @@ -525318,55 +523101,72 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5829), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5831), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_on] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5304), + [anon_sym_COMMA] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6153), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5304), + [anon_sym_or] = ACTIONS(5304), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(6169), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5304), }, [3509] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3509), [sym_preproc_endregion] = STATE(3509), [sym_preproc_line] = STATE(3509), @@ -525376,64 +523176,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3509), [sym_preproc_define] = STATE(3509), [sym_preproc_undef] = STATE(3509), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3696), - [anon_sym_where] = ACTIONS(3696), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3696), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3696), - [anon_sym_join] = ACTIONS(3696), - [anon_sym_on] = ACTIONS(3696), - [anon_sym_equals] = ACTIONS(3696), - [anon_sym_let] = ACTIONS(3696), - [anon_sym_orderby] = ACTIONS(3696), - [anon_sym_group] = ACTIONS(3696), - [anon_sym_by] = ACTIONS(3696), - [anon_sym_select] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3696), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(5364), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6183), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(6195), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6197), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [aux_sym_preproc_if_token3] = ACTIONS(5364), + [aux_sym_preproc_else_token1] = ACTIONS(5364), + [aux_sym_preproc_elif_token1] = ACTIONS(5364), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525455,64 +523236,60 @@ 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_SEMI] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_EQ_GT] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3189), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = ACTIONS(3189), - [anon_sym_from] = 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_group] = ACTIONS(3189), - [anon_sym_by] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3189), - [aux_sym_preproc_if_token3] = ACTIONS(3189), - [aux_sym_preproc_else_token1] = ACTIONS(3189), - [aux_sym_preproc_elif_token1] = ACTIONS(3189), + [anon_sym_EQ] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_RBRACE] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_DOT] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_switch] = ACTIONS(4534), + [anon_sym_when] = ACTIONS(4534), + [anon_sym_DOT_DOT] = ACTIONS(4534), + [anon_sym_LT_EQ] = ACTIONS(4534), + [anon_sym_GT_EQ] = ACTIONS(4534), + [anon_sym_and] = ACTIONS(4534), + [anon_sym_or] = ACTIONS(4534), + [anon_sym_PLUS_EQ] = ACTIONS(4538), + [anon_sym_DASH_EQ] = ACTIONS(4538), + [anon_sym_STAR_EQ] = ACTIONS(4538), + [anon_sym_SLASH_EQ] = ACTIONS(4538), + [anon_sym_PERCENT_EQ] = ACTIONS(4538), + [anon_sym_AMP_EQ] = ACTIONS(4538), + [anon_sym_CARET_EQ] = ACTIONS(4538), + [anon_sym_PIPE_EQ] = ACTIONS(4538), + [anon_sym_LT_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4534), + [anon_sym_BANG_EQ] = ACTIONS(4534), + [anon_sym_AMP_AMP] = ACTIONS(4534), + [anon_sym_PIPE_PIPE] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4540), + [sym_op_bitwise_or] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [sym_op_left_shift] = ACTIONS(4540), + [sym_op_right_shift] = ACTIONS(4540), + [sym_op_unsigned_right_shift] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [sym_op_divide] = ACTIONS(4540), + [sym_op_modulo] = ACTIONS(4540), + [sym_op_coalescing] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PLUS_PLUS] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4534), + [anon_sym_into] = ACTIONS(4534), + [anon_sym_as] = ACTIONS(4534), + [anon_sym_is] = ACTIONS(4534), + [anon_sym_DASH_GT] = ACTIONS(4534), + [anon_sym_with] = ACTIONS(4534), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525525,27 +523302,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3511] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3511), [sym_preproc_endregion] = STATE(3511), [sym_preproc_line] = STATE(3511), @@ -525555,43 +523326,45 @@ 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_SEMI] = ACTIONS(4708), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4708), - [aux_sym_preproc_else_token1] = ACTIONS(4708), - [aux_sym_preproc_elif_token1] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_COMMA] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5328), + [anon_sym_RBRACE] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6199), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6203), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(6213), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6215), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525604,27 +523377,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3512] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3512), [sym_preproc_endregion] = STATE(3512), [sym_preproc_line] = STATE(3512), @@ -525634,76 +523401,72 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_by] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4752), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_COMMA] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6153), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(6169), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5328), }, [3513] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3513), [sym_preproc_endregion] = STATE(3513), [sym_preproc_line] = STATE(3513), @@ -525713,43 +523476,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3513), [sym_preproc_define] = STATE(3513), [sym_preproc_undef] = STATE(3513), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_by] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525760,29 +523524,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5314), }, [3514] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3514), [sym_preproc_endregion] = STATE(3514), [sym_preproc_line] = STATE(3514), @@ -525792,43 +523551,45 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_by] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6215), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525841,27 +523602,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3515] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), [sym_preproc_region] = STATE(3515), [sym_preproc_endregion] = STATE(3515), [sym_preproc_line] = STATE(3515), @@ -525871,43 +523611,60 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4774), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(6217), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_where] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(6219), + [anon_sym_DASH_EQ] = ACTIONS(6219), + [anon_sym_STAR_EQ] = ACTIONS(6219), + [anon_sym_SLASH_EQ] = ACTIONS(6219), + [anon_sym_PERCENT_EQ] = ACTIONS(6219), + [anon_sym_AMP_EQ] = ACTIONS(6219), + [anon_sym_CARET_EQ] = ACTIONS(6219), + [anon_sym_PIPE_EQ] = ACTIONS(6219), + [anon_sym_LT_LT_EQ] = ACTIONS(6219), + [anon_sym_GT_GT_EQ] = ACTIONS(6219), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6219), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6219), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_from] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_join] = ACTIONS(5508), + [anon_sym_let] = ACTIONS(5508), + [anon_sym_orderby] = ACTIONS(5508), + [anon_sym_group] = ACTIONS(5508), + [anon_sym_select] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525920,27 +523677,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3516] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3516), [sym_preproc_endregion] = STATE(3516), [sym_preproc_line] = STATE(3516), @@ -525950,43 +523701,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3516), [sym_preproc_define] = STATE(3516), [sym_preproc_undef] = STATE(3516), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5839), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4770), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5841), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_equals] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525999,7 +523752,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3517] = { - [sym_type_argument_list] = STATE(4007), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3517), [sym_preproc_endregion] = STATE(3517), [sym_preproc_line] = STATE(3517), @@ -526009,63 +523776,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3517), [sym_preproc_define] = STATE(3517), [sym_preproc_undef] = STATE(3517), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(5796), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3953), - [anon_sym_where] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_from] = ACTIONS(3953), - [anon_sym_join] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_let] = ACTIONS(3953), - [anon_sym_orderby] = ACTIONS(3953), - [anon_sym_group] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_select] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526076,29 +523824,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(1365), }, [3518] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3518), [sym_preproc_endregion] = STATE(3518), [sym_preproc_line] = STATE(3518), @@ -526108,76 +523851,72 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5829), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5831), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_on] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5352), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5352), }, [3519] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3519), [sym_preproc_endregion] = STATE(3519), [sym_preproc_line] = STATE(3519), @@ -526187,76 +523926,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3519), [sym_preproc_define] = STATE(3519), [sym_preproc_undef] = STATE(3519), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5839), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5841), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_equals] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5308), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5308), }, [3520] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3520), [sym_preproc_endregion] = STATE(3520), [sym_preproc_line] = STATE(3520), @@ -526266,43 +524001,45 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4766), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526315,27 +524052,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3521] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_attribute_list] = STATE(4526), + [sym__attribute_list] = STATE(4515), + [sym_preproc_if_in_attribute_list] = STATE(4526), [sym_preproc_region] = STATE(3521), [sym_preproc_endregion] = STATE(3521), [sym_preproc_line] = STATE(3521), @@ -526345,43 +524064,57 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(1435), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3521), + [sym__identifier_token] = ACTIONS(5340), + [anon_sym_extern] = ACTIONS(5340), + [anon_sym_alias] = ACTIONS(5340), + [anon_sym_global] = ACTIONS(5340), + [anon_sym_unsafe] = ACTIONS(5340), + [anon_sym_static] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(6221), + [anon_sym_public] = ACTIONS(5340), + [anon_sym_private] = ACTIONS(5340), + [anon_sym_readonly] = ACTIONS(5340), + [anon_sym_abstract] = ACTIONS(5340), + [anon_sym_async] = ACTIONS(5340), + [anon_sym_const] = ACTIONS(5340), + [anon_sym_file] = ACTIONS(5340), + [anon_sym_fixed] = ACTIONS(5340), + [anon_sym_internal] = ACTIONS(5340), + [anon_sym_new] = ACTIONS(5340), + [anon_sym_override] = ACTIONS(5340), + [anon_sym_partial] = ACTIONS(5340), + [anon_sym_protected] = ACTIONS(5340), + [anon_sym_required] = ACTIONS(5340), + [anon_sym_sealed] = ACTIONS(5340), + [anon_sym_virtual] = ACTIONS(5340), + [anon_sym_volatile] = ACTIONS(5340), + [anon_sym_where] = ACTIONS(5340), + [anon_sym_notnull] = ACTIONS(5340), + [anon_sym_unmanaged] = ACTIONS(5340), + [sym_accessor_get] = ACTIONS(5340), + [sym_accessor_set] = ACTIONS(5340), + [sym_accessor_add] = ACTIONS(5340), + [sym_accessor_remove] = ACTIONS(5340), + [sym_accessor_init] = ACTIONS(5340), + [anon_sym_scoped] = ACTIONS(5340), + [anon_sym_var] = ACTIONS(5340), + [anon_sym_yield] = ACTIONS(5340), + [anon_sym_when] = ACTIONS(5340), + [anon_sym_from] = ACTIONS(5340), + [anon_sym_into] = ACTIONS(5340), + [anon_sym_join] = ACTIONS(5340), + [anon_sym_on] = ACTIONS(5340), + [anon_sym_equals] = ACTIONS(5340), + [anon_sym_let] = ACTIONS(5340), + [anon_sym_orderby] = ACTIONS(5340), + [anon_sym_ascending] = ACTIONS(5340), + [anon_sym_descending] = ACTIONS(5340), + [anon_sym_group] = ACTIONS(5340), + [anon_sym_by] = ACTIONS(5340), + [anon_sym_select] = ACTIONS(5340), + [sym_grit_metavariable] = ACTIONS(5345), + [aux_sym_preproc_if_token1] = ACTIONS(6224), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526394,27 +524127,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3522] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3522), [sym_preproc_endregion] = STATE(3522), [sym_preproc_line] = STATE(3522), @@ -526424,43 +524151,45 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5849), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4708), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5308), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526473,27 +524202,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3523] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3523), [sym_preproc_endregion] = STATE(3523), [sym_preproc_line] = STATE(3523), @@ -526503,43 +524226,45 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5849), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4748), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6203), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(6213), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6215), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526552,27 +524277,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3524] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3524), [sym_preproc_endregion] = STATE(3524), [sym_preproc_line] = STATE(3524), @@ -526582,43 +524301,45 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5849), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4782), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526631,27 +524352,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3525] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3525), [sym_preproc_endregion] = STATE(3525), [sym_preproc_line] = STATE(3525), @@ -526661,43 +524376,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3525), [sym_preproc_define] = STATE(3525), [sym_preproc_undef] = STATE(3525), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6215), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526710,27 +524427,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3526] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3526), [sym_preproc_endregion] = STATE(3526), [sym_preproc_line] = STATE(3526), @@ -526740,43 +524451,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3526), [sym_preproc_define] = STATE(3526), [sym_preproc_undef] = STATE(3526), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6203), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6215), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526789,27 +524502,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3527] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3527), [sym_preproc_endregion] = STATE(3527), [sym_preproc_line] = STATE(3527), @@ -526819,43 +524526,45 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6203), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6215), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526868,27 +524577,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3528] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3528), [sym_preproc_endregion] = STATE(3528), [sym_preproc_line] = STATE(3528), @@ -526898,43 +524601,45 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5296), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6183), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(6195), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6197), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [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), @@ -526947,27 +524652,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3529] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3529), [sym_preproc_endregion] = STATE(3529), [sym_preproc_line] = STATE(3529), @@ -526977,43 +524676,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3529), [sym_preproc_define] = STATE(3529), [sym_preproc_undef] = STATE(3529), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6215), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527026,27 +524727,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3530] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3530), [sym_preproc_endregion] = STATE(3530), [sym_preproc_line] = STATE(3530), @@ -527056,43 +524751,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3530), [sym_preproc_define] = STATE(3530), [sym_preproc_undef] = STATE(3530), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6215), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527105,27 +524802,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3531] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3531), [sym_preproc_endregion] = STATE(3531), [sym_preproc_line] = STATE(3531), @@ -527135,43 +524826,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3531), [sym_preproc_define] = STATE(3531), [sym_preproc_undef] = STATE(3531), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527184,27 +524877,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3532] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3532), [sym_preproc_endregion] = STATE(3532), [sym_preproc_line] = STATE(3532), @@ -527214,43 +524901,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3532), [sym_preproc_define] = STATE(3532), [sym_preproc_undef] = STATE(3532), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5849), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4778), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5314), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), + [aux_sym_preproc_if_token3] = ACTIONS(5314), + [aux_sym_preproc_else_token1] = ACTIONS(5314), + [aux_sym_preproc_elif_token1] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527263,27 +524952,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3533] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3533), [sym_preproc_endregion] = STATE(3533), [sym_preproc_line] = STATE(3533), @@ -527293,76 +524976,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3533), [sym_preproc_define] = STATE(3533), [sym_preproc_undef] = STATE(3533), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5849), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4786), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3534] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3534), [sym_preproc_endregion] = STATE(3534), [sym_preproc_line] = STATE(3534), @@ -527372,55 +525051,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3534), [sym_preproc_define] = STATE(3534), [sym_preproc_undef] = STATE(3534), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4774), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_when] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3535] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3535), [sym_preproc_endregion] = STATE(3535), [sym_preproc_line] = STATE(3535), @@ -527430,97 +525126,72 @@ 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), - [sym__identifier_token] = ACTIONS(3735), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3735), - [anon_sym_global] = ACTIONS(3735), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_record] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3735), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_where] = ACTIONS(3735), - [anon_sym_QMARK] = ACTIONS(3696), - [anon_sym_notnull] = ACTIONS(3735), - [anon_sym_unmanaged] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_scoped] = ACTIONS(3735), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3735), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3735), - [anon_sym_when] = ACTIONS(3735), - [anon_sym_from] = ACTIONS(3735), - [anon_sym_into] = ACTIONS(3735), - [anon_sym_join] = ACTIONS(3735), - [anon_sym_on] = ACTIONS(3735), - [anon_sym_equals] = ACTIONS(3735), - [anon_sym_let] = ACTIONS(3735), - [anon_sym_orderby] = ACTIONS(3735), - [anon_sym_ascending] = ACTIONS(3735), - [anon_sym_descending] = ACTIONS(3735), - [anon_sym_group] = ACTIONS(3735), - [anon_sym_by] = ACTIONS(3735), - [anon_sym_select] = ACTIONS(3735), - [sym_grit_metavariable] = ACTIONS(3740), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3536] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3536), [sym_preproc_endregion] = STATE(3536), [sym_preproc_line] = STATE(3536), @@ -527530,76 +525201,72 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4770), - [anon_sym_COMMA] = ACTIONS(4770), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5857), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5861), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4770), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3537] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3537), [sym_preproc_endregion] = STATE(3537), [sym_preproc_line] = STATE(3537), @@ -527609,76 +525276,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3537), [sym_preproc_define] = STATE(3537), [sym_preproc_undef] = STATE(3537), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5865), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5869), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5873), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5360), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5360), }, [3538] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3538), [sym_preproc_endregion] = STATE(3538), [sym_preproc_line] = STATE(3538), @@ -527688,43 +525351,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3538), [sym_preproc_define] = STATE(3538), [sym_preproc_undef] = STATE(3538), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5865), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4708), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5869), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5873), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527737,27 +525402,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3539] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3539), [sym_preproc_endregion] = STATE(3539), [sym_preproc_line] = STATE(3539), @@ -527767,43 +525426,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3539), [sym_preproc_define] = STATE(3539), [sym_preproc_undef] = STATE(3539), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5829), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5831), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_on] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5336), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6183), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(6195), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6197), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [aux_sym_preproc_if_token3] = ACTIONS(5336), + [aux_sym_preproc_else_token1] = ACTIONS(5336), + [aux_sym_preproc_elif_token1] = ACTIONS(5336), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527816,27 +525477,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3540] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3540), [sym_preproc_endregion] = STATE(3540), [sym_preproc_line] = STATE(3540), @@ -527846,43 +525501,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3540), [sym_preproc_define] = STATE(3540), [sym_preproc_undef] = STATE(3540), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5829), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5831), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_on] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6183), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(6195), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6197), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [aux_sym_preproc_if_token3] = ACTIONS(5356), + [aux_sym_preproc_else_token1] = ACTIONS(5356), + [aux_sym_preproc_elif_token1] = ACTIONS(5356), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527895,27 +525552,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3541] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3541), [sym_preproc_endregion] = STATE(3541), [sym_preproc_line] = STATE(3541), @@ -527925,43 +525576,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3541), [sym_preproc_define] = STATE(3541), [sym_preproc_undef] = STATE(3541), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5829), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5831), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_on] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527974,27 +525627,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3542] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3542), [sym_preproc_endregion] = STATE(3542), [sym_preproc_line] = STATE(3542), @@ -528004,76 +525651,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3542), [sym_preproc_define] = STATE(3542), [sym_preproc_undef] = STATE(3542), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5829), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5831), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_on] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6153), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(6169), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5364), }, [3543] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3543), [sym_preproc_endregion] = STATE(3543), [sym_preproc_line] = STATE(3543), @@ -528083,76 +525726,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3543), [sym_preproc_define] = STATE(3543), [sym_preproc_undef] = STATE(3543), - [anon_sym_SEMI] = ACTIONS(4778), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4778), - [aux_sym_preproc_else_token1] = ACTIONS(4778), - [aux_sym_preproc_elif_token1] = ACTIONS(4778), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6153), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(6169), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5356), }, [3544] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3544), [sym_preproc_endregion] = STATE(3544), [sym_preproc_line] = STATE(3544), @@ -528162,76 +525801,72 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6153), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(6169), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5336), }, [3545] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3545), [sym_preproc_endregion] = STATE(3545), [sym_preproc_line] = STATE(3545), @@ -528241,76 +525876,72 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6153), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(6169), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5296), }, [3546] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3546), [sym_preproc_endregion] = STATE(3546), [sym_preproc_line] = STATE(3546), @@ -528320,43 +525951,45 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5364), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6199), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6203), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(6213), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6215), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528369,27 +526002,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3547] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3547), [sym_preproc_endregion] = STATE(3547), [sym_preproc_line] = STATE(3547), @@ -528399,43 +526026,45 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5360), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528448,6 +526077,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3548] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3548), [sym_preproc_endregion] = STATE(3548), [sym_preproc_line] = STATE(3548), @@ -528457,64 +526101,45 @@ 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(5875), - [anon_sym_extern] = ACTIONS(5875), - [anon_sym_alias] = ACTIONS(5875), - [anon_sym_global] = ACTIONS(5875), - [anon_sym_unsafe] = ACTIONS(5875), - [anon_sym_static] = ACTIONS(5875), - [anon_sym_LBRACK] = ACTIONS(5877), - [anon_sym_LPAREN] = ACTIONS(5877), - [anon_sym_event] = ACTIONS(5875), - [anon_sym_class] = ACTIONS(5875), - [anon_sym_ref] = ACTIONS(5875), - [anon_sym_struct] = ACTIONS(5875), - [anon_sym_enum] = ACTIONS(5875), - [anon_sym_interface] = ACTIONS(5875), - [anon_sym_delegate] = ACTIONS(5875), - [anon_sym_record] = ACTIONS(5875), - [anon_sym_public] = ACTIONS(5875), - [anon_sym_private] = ACTIONS(5875), - [anon_sym_readonly] = ACTIONS(5875), - [anon_sym_abstract] = ACTIONS(5875), - [anon_sym_async] = ACTIONS(5875), - [anon_sym_const] = ACTIONS(5875), - [anon_sym_file] = ACTIONS(5875), - [anon_sym_fixed] = ACTIONS(5875), - [anon_sym_internal] = ACTIONS(5875), - [anon_sym_new] = ACTIONS(5875), - [anon_sym_override] = ACTIONS(5875), - [anon_sym_partial] = ACTIONS(5875), - [anon_sym_protected] = ACTIONS(5875), - [anon_sym_required] = ACTIONS(5875), - [anon_sym_sealed] = ACTIONS(5875), - [anon_sym_virtual] = ACTIONS(5875), - [anon_sym_volatile] = ACTIONS(5875), - [anon_sym_where] = ACTIONS(5875), - [anon_sym_notnull] = ACTIONS(5875), - [anon_sym_unmanaged] = ACTIONS(5875), - [anon_sym_TILDE] = ACTIONS(5877), - [anon_sym_implicit] = ACTIONS(5875), - [anon_sym_explicit] = ACTIONS(5875), - [anon_sym_scoped] = ACTIONS(5875), - [anon_sym_var] = ACTIONS(5875), - [sym_predefined_type] = ACTIONS(5875), - [anon_sym_yield] = ACTIONS(5875), - [anon_sym_when] = ACTIONS(5875), - [anon_sym_from] = ACTIONS(5875), - [anon_sym_into] = ACTIONS(5875), - [anon_sym_join] = ACTIONS(5875), - [anon_sym_on] = ACTIONS(5875), - [anon_sym_equals] = ACTIONS(5875), - [anon_sym_let] = ACTIONS(5875), - [anon_sym_orderby] = ACTIONS(5875), - [anon_sym_ascending] = ACTIONS(5875), - [anon_sym_descending] = ACTIONS(5875), - [anon_sym_group] = ACTIONS(5875), - [anon_sym_by] = ACTIONS(5875), - [anon_sym_select] = ACTIONS(5875), - [sym_grit_metavariable] = ACTIONS(5877), - [aux_sym_preproc_if_token1] = ACTIONS(5877), + [anon_sym_SEMI] = ACTIONS(5360), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), + [aux_sym_preproc_if_token3] = ACTIONS(5360), + [aux_sym_preproc_else_token1] = ACTIONS(5360), + [aux_sym_preproc_elif_token1] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528527,27 +526152,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3549] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3549), [sym_preproc_endregion] = STATE(3549), [sym_preproc_line] = STATE(3549), @@ -528557,76 +526176,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3549), [sym_preproc_define] = STATE(3549), [sym_preproc_undef] = STATE(3549), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3550] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_block] = STATE(2068), [sym_preproc_region] = STATE(3550), [sym_preproc_endregion] = STATE(3550), [sym_preproc_line] = STATE(3550), @@ -528636,43 +526237,59 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(6227), + [anon_sym_interface] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_record] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528685,27 +526302,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3551] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3551), [sym_preproc_endregion] = STATE(3551), [sym_preproc_line] = STATE(3551), @@ -528715,76 +526326,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3551), [sym_preproc_define] = STATE(3551), [sym_preproc_undef] = STATE(3551), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5865), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4748), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5869), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5873), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(6169), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3552] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3552), [sym_preproc_endregion] = STATE(3552), [sym_preproc_line] = STATE(3552), @@ -528794,76 +526401,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3552), [sym_preproc_define] = STATE(3552), [sym_preproc_undef] = STATE(3552), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5865), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4782), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5869), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5873), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3553] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3553), [sym_preproc_endregion] = STATE(3553), [sym_preproc_line] = STATE(3553), @@ -528873,76 +526476,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3553), [sym_preproc_define] = STATE(3553), [sym_preproc_undef] = STATE(3553), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3554] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3554), [sym_preproc_endregion] = STATE(3554), [sym_preproc_line] = STATE(3554), @@ -528952,76 +526551,72 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3555] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3555), [sym_preproc_endregion] = STATE(3555), [sym_preproc_line] = STATE(3555), @@ -529031,76 +526626,72 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3556] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3556), [sym_preproc_endregion] = STATE(3556), [sym_preproc_line] = STATE(3556), @@ -529110,43 +526701,45 @@ 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(5430), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5336), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6199), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6203), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(6213), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6215), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529159,27 +526752,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3557] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3557), [sym_preproc_endregion] = STATE(3557), [sym_preproc_line] = STATE(3557), @@ -529189,43 +526776,45 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_when] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [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), @@ -529238,27 +526827,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3558] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3558), [sym_preproc_endregion] = STATE(3558), [sym_preproc_line] = STATE(3558), @@ -529268,43 +526851,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3558), [sym_preproc_define] = STATE(3558), [sym_preproc_undef] = STATE(3558), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5865), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4778), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5869), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5873), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529317,27 +526902,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3559] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3559), [sym_preproc_endregion] = STATE(3559), [sym_preproc_line] = STATE(3559), @@ -529347,42 +526926,45 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [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), @@ -529393,9 +526975,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(4672), }, [3560] = { + [sym_type_argument_list] = STATE(3730), [sym_preproc_region] = STATE(3560), [sym_preproc_endregion] = STATE(3560), [sym_preproc_line] = STATE(3560), @@ -529405,64 +526987,59 @@ 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_SEMI] = ACTIONS(5879), - [anon_sym_LBRACK] = ACTIONS(5879), - [anon_sym_COLON] = ACTIONS(5879), - [anon_sym_COMMA] = ACTIONS(5879), - [anon_sym_RBRACK] = ACTIONS(5879), - [anon_sym_LPAREN] = ACTIONS(5879), - [anon_sym_RPAREN] = ACTIONS(5879), - [anon_sym_RBRACE] = ACTIONS(5879), - [anon_sym_LT] = ACTIONS(5881), - [anon_sym_GT] = ACTIONS(5881), - [anon_sym_in] = ACTIONS(5881), - [anon_sym_where] = ACTIONS(5879), - [anon_sym_QMARK] = ACTIONS(5881), - [anon_sym_BANG] = ACTIONS(5881), - [anon_sym_PLUS_PLUS] = ACTIONS(5879), - [anon_sym_DASH_DASH] = ACTIONS(5879), - [anon_sym_PLUS] = ACTIONS(5881), - [anon_sym_DASH] = ACTIONS(5881), - [anon_sym_STAR] = ACTIONS(5879), - [anon_sym_SLASH] = ACTIONS(5881), - [anon_sym_PERCENT] = ACTIONS(5879), - [anon_sym_CARET] = ACTIONS(5879), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_AMP] = ACTIONS(5881), - [anon_sym_LT_LT] = ACTIONS(5879), - [anon_sym_GT_GT] = ACTIONS(5881), - [anon_sym_GT_GT_GT] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5879), - [anon_sym_BANG_EQ] = ACTIONS(5879), - [anon_sym_GT_EQ] = ACTIONS(5879), - [anon_sym_LT_EQ] = ACTIONS(5879), - [anon_sym_DOT] = ACTIONS(5881), - [anon_sym_EQ_GT] = ACTIONS(5879), - [anon_sym_switch] = ACTIONS(5879), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_and] = ACTIONS(5879), - [anon_sym_or] = ACTIONS(5881), - [anon_sym_AMP_AMP] = ACTIONS(5879), - [anon_sym_PIPE_PIPE] = ACTIONS(5879), - [sym_op_coalescing] = ACTIONS(5879), - [anon_sym_from] = ACTIONS(5879), - [anon_sym_into] = ACTIONS(5879), - [anon_sym_join] = ACTIONS(5879), - [anon_sym_on] = ACTIONS(5879), - [anon_sym_equals] = ACTIONS(5879), - [anon_sym_let] = ACTIONS(5879), - [anon_sym_orderby] = ACTIONS(5879), - [anon_sym_group] = ACTIONS(5879), - [anon_sym_by] = ACTIONS(5879), - [anon_sym_select] = ACTIONS(5879), - [anon_sym_as] = ACTIONS(5879), - [anon_sym_is] = ACTIONS(5879), - [anon_sym_DASH_GT] = ACTIONS(5879), - [anon_sym_with] = ACTIONS(5879), - [aux_sym_raw_string_literal_token1] = ACTIONS(5883), - [aux_sym_preproc_if_token3] = ACTIONS(5879), - [aux_sym_preproc_else_token1] = ACTIONS(5879), - [aux_sym_preproc_elif_token1] = ACTIONS(5879), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3955), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(6229), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(6232), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_when] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529475,27 +527052,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3561] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3561), [sym_preproc_endregion] = STATE(3561), [sym_preproc_line] = STATE(3561), @@ -529505,43 +527076,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3561), [sym_preproc_define] = STATE(3561), [sym_preproc_undef] = STATE(3561), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5831), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5356), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6199), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6203), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(6213), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6215), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529554,27 +527127,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3562] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3562), [sym_preproc_endregion] = STATE(3562), [sym_preproc_line] = STATE(3562), @@ -529584,43 +527151,45 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_RBRACK] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [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), @@ -529633,27 +527202,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3563] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3563), [sym_preproc_endregion] = STATE(3563), [sym_preproc_line] = STATE(3563), @@ -529663,43 +527226,45 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5829), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5831), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_on] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5835), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6197), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [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), @@ -529712,27 +527277,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3564] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3564), [sym_preproc_endregion] = STATE(3564), [sym_preproc_line] = STATE(3564), @@ -529742,43 +527301,45 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_by] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6197), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [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), @@ -529791,27 +527352,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3565] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3565), [sym_preproc_endregion] = STATE(3565), [sym_preproc_line] = STATE(3565), @@ -529821,43 +527376,45 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_by] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6197), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [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), @@ -529870,27 +527427,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3566] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3566), [sym_preproc_endregion] = STATE(3566), [sym_preproc_line] = STATE(3566), @@ -529900,43 +527451,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3566), [sym_preproc_define] = STATE(3566), [sym_preproc_undef] = STATE(3566), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_equals] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6197), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [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), @@ -529949,27 +527502,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3567] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3567), [sym_preproc_endregion] = STATE(3567), [sym_preproc_line] = STATE(3567), @@ -529979,43 +527526,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3567), [sym_preproc_define] = STATE(3567), [sym_preproc_undef] = STATE(3567), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5891), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4770), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5893), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_by] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6197), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [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), @@ -530028,27 +527577,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3568] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(3568), [sym_preproc_endregion] = STATE(3568), [sym_preproc_line] = STATE(3568), @@ -530058,76 +527601,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3568), [sym_preproc_define] = STATE(3568), [sym_preproc_undef] = STATE(3568), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5839), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5841), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_equals] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6157), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3569] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3569), [sym_preproc_endregion] = STATE(3569), [sym_preproc_line] = STATE(3569), @@ -530137,43 +527676,45 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5891), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5893), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_by] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [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), @@ -530186,27 +527727,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3570] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3570), [sym_preproc_endregion] = STATE(3570), [sym_preproc_line] = STATE(3570), @@ -530216,43 +527751,45 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6199), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6203), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(6213), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6215), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530265,27 +527802,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3571] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3571), [sym_preproc_endregion] = STATE(3571), [sym_preproc_line] = STATE(3571), @@ -530295,43 +527826,45 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5849), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4770), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4770), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6197), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [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), @@ -530344,27 +527877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3572] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_block] = STATE(1980), [sym_preproc_region] = STATE(3572), [sym_preproc_endregion] = STATE(3572), [sym_preproc_line] = STATE(3572), @@ -530374,42 +527887,59 @@ 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_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4708), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5857), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5861), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(6234), + [anon_sym_interface] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_record] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530420,30 +527950,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4708), }, [3573] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(3573), [sym_preproc_endregion] = STATE(3573), [sym_preproc_line] = STATE(3573), @@ -530453,43 +527976,45 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6181), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(6195), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6197), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), + [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), @@ -530502,27 +528027,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3574] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3574), [sym_preproc_endregion] = STATE(3574), [sym_preproc_line] = STATE(3574), @@ -530532,42 +528051,45 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5857), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5861), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5296), + [anon_sym_RBRACE] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6199), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6203), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(6213), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6215), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530578,30 +528100,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4748), }, [3575] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3575), [sym_preproc_endregion] = STATE(3575), [sym_preproc_line] = STATE(3575), @@ -530611,43 +528126,44 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5849), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4760), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5360), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530660,27 +528176,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3576] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3576), [sym_preproc_endregion] = STATE(3576), [sym_preproc_line] = STATE(3576), @@ -530690,42 +528200,44 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4782), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5857), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5861), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6238), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5304), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5304), + [anon_sym_or] = ACTIONS(5304), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(6252), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530736,9 +528248,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4782), }, [3577] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3577), [sym_preproc_endregion] = STATE(3577), [sym_preproc_line] = STATE(3577), @@ -530748,64 +528274,44 @@ 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_SEMI] = ACTIONS(5899), - [anon_sym_LBRACK] = ACTIONS(5899), - [anon_sym_COLON] = ACTIONS(5899), - [anon_sym_COMMA] = ACTIONS(5899), - [anon_sym_RBRACK] = ACTIONS(5899), - [anon_sym_LPAREN] = ACTIONS(5899), - [anon_sym_RPAREN] = ACTIONS(5899), - [anon_sym_RBRACE] = ACTIONS(5899), - [anon_sym_LT] = ACTIONS(5901), - [anon_sym_GT] = ACTIONS(5901), - [anon_sym_in] = ACTIONS(5901), - [anon_sym_where] = ACTIONS(5899), - [anon_sym_QMARK] = ACTIONS(5901), - [anon_sym_BANG] = ACTIONS(5901), - [anon_sym_PLUS_PLUS] = ACTIONS(5899), - [anon_sym_DASH_DASH] = ACTIONS(5899), - [anon_sym_PLUS] = ACTIONS(5901), - [anon_sym_DASH] = ACTIONS(5901), - [anon_sym_STAR] = ACTIONS(5899), - [anon_sym_SLASH] = ACTIONS(5901), - [anon_sym_PERCENT] = ACTIONS(5899), - [anon_sym_CARET] = ACTIONS(5899), - [anon_sym_PIPE] = ACTIONS(5901), - [anon_sym_AMP] = ACTIONS(5901), - [anon_sym_LT_LT] = ACTIONS(5899), - [anon_sym_GT_GT] = ACTIONS(5901), - [anon_sym_GT_GT_GT] = ACTIONS(5899), - [anon_sym_EQ_EQ] = ACTIONS(5899), - [anon_sym_BANG_EQ] = ACTIONS(5899), - [anon_sym_GT_EQ] = ACTIONS(5899), - [anon_sym_LT_EQ] = ACTIONS(5899), - [anon_sym_DOT] = ACTIONS(5901), - [anon_sym_EQ_GT] = ACTIONS(5899), - [anon_sym_switch] = ACTIONS(5899), - [anon_sym_DOT_DOT] = ACTIONS(5899), - [anon_sym_and] = ACTIONS(5899), - [anon_sym_or] = ACTIONS(5901), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(5899), - [sym_op_coalescing] = ACTIONS(5899), - [anon_sym_from] = ACTIONS(5899), - [anon_sym_into] = ACTIONS(5899), - [anon_sym_join] = ACTIONS(5899), - [anon_sym_on] = ACTIONS(5899), - [anon_sym_equals] = ACTIONS(5899), - [anon_sym_let] = ACTIONS(5899), - [anon_sym_orderby] = ACTIONS(5899), - [anon_sym_group] = ACTIONS(5899), - [anon_sym_by] = ACTIONS(5899), - [anon_sym_select] = ACTIONS(5899), - [anon_sym_as] = ACTIONS(5899), - [anon_sym_is] = ACTIONS(5899), - [anon_sym_DASH_GT] = ACTIONS(5899), - [anon_sym_with] = ACTIONS(5899), - [sym_string_literal_encoding] = ACTIONS(5903), - [aux_sym_preproc_if_token3] = ACTIONS(5899), - [aux_sym_preproc_else_token1] = ACTIONS(5899), - [aux_sym_preproc_elif_token1] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6258), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5356), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(6272), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530818,27 +528324,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3578] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3578), [sym_preproc_endregion] = STATE(3578), [sym_preproc_line] = STATE(3578), @@ -530848,43 +528348,44 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5907), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6258), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5336), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(6272), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530897,27 +528398,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3579] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3579), [sym_preproc_endregion] = STATE(3579), [sym_preproc_line] = STATE(3579), @@ -530927,42 +528422,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3579), [sym_preproc_define] = STATE(3579), [sym_preproc_undef] = STATE(3579), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6238), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5328), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(6252), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530973,30 +528470,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4752), }, [3580] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3580), [sym_preproc_endregion] = STATE(3580), [sym_preproc_line] = STATE(3580), @@ -531006,42 +528496,44 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4778), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5857), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5861), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5336), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6276), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6278), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(6288), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531052,30 +528544,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4778), }, [3581] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3581), [sym_preproc_endregion] = STATE(3581), [sym_preproc_line] = STATE(3581), @@ -531085,43 +528570,44 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5296), + [anon_sym_RBRACE] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6276), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6278), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(6288), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531134,27 +528620,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3582] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), [sym_preproc_region] = STATE(3582), [sym_preproc_endregion] = STATE(3582), [sym_preproc_line] = STATE(3582), @@ -531164,43 +528629,59 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_COLON] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(4006), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_switch] = ACTIONS(4006), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5068), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531213,12 +528694,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3583] = { - [sym_attribute_list] = STATE(4961), - [sym__attribute_list] = STATE(4962), - [sym_modifier] = STATE(5152), - [sym_identifier] = STATE(6719), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_attribute_list] = STATE(4961), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3583), [sym_preproc_endregion] = STATE(3583), [sym_preproc_line] = STATE(3583), @@ -531228,58 +528718,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3583), [sym_preproc_define] = STATE(3583), [sym_preproc_undef] = STATE(3583), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4609), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4676), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(5616), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(5616), - [anon_sym_static] = ACTIONS(5616), - [anon_sym_LBRACK] = ACTIONS(5618), - [anon_sym_public] = ACTIONS(5616), - [anon_sym_private] = ACTIONS(5616), - [anon_sym_readonly] = ACTIONS(5616), - [anon_sym_abstract] = ACTIONS(5616), - [anon_sym_async] = ACTIONS(5616), - [anon_sym_const] = ACTIONS(5616), - [anon_sym_file] = ACTIONS(5622), - [anon_sym_fixed] = ACTIONS(5616), - [anon_sym_internal] = ACTIONS(5616), - [anon_sym_new] = ACTIONS(5616), - [anon_sym_override] = ACTIONS(5616), - [anon_sym_partial] = ACTIONS(5616), - [anon_sym_protected] = ACTIONS(5616), - [anon_sym_required] = ACTIONS(5616), - [anon_sym_sealed] = ACTIONS(5616), - [anon_sym_virtual] = ACTIONS(5616), - [anon_sym_volatile] = ACTIONS(5616), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [sym_accessor_get] = ACTIONS(5911), - [sym_accessor_set] = ACTIONS(5911), - [sym_accessor_add] = ACTIONS(5911), - [sym_accessor_remove] = ACTIONS(5911), - [sym_accessor_init] = ACTIONS(5911), - [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), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_when] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531292,27 +528768,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3584] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3584), [sym_preproc_endregion] = STATE(3584), [sym_preproc_line] = STATE(3584), @@ -531322,43 +528792,44 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_when] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531371,27 +528842,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3585] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3585), [sym_preproc_endregion] = STATE(3585), [sym_preproc_line] = STATE(3585), @@ -531401,43 +528866,44 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6258), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5296), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5296), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(6272), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531450,27 +528916,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3586] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3586), [sym_preproc_endregion] = STATE(3586), [sym_preproc_line] = STATE(3586), @@ -531480,43 +528940,44 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_when] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531529,6 +528990,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3587] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3587), [sym_preproc_endregion] = STATE(3587), [sym_preproc_line] = STATE(3587), @@ -531538,64 +529014,44 @@ 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_SEMI] = ACTIONS(5913), - [anon_sym_LBRACK] = ACTIONS(5913), - [anon_sym_COLON] = ACTIONS(5913), - [anon_sym_COMMA] = ACTIONS(5913), - [anon_sym_RBRACK] = ACTIONS(5913), - [anon_sym_LPAREN] = ACTIONS(5913), - [anon_sym_RPAREN] = ACTIONS(5913), - [anon_sym_LBRACE] = ACTIONS(5913), - [anon_sym_RBRACE] = ACTIONS(5913), - [anon_sym_LT] = ACTIONS(5915), - [anon_sym_GT] = ACTIONS(5915), - [anon_sym_in] = ACTIONS(5915), - [anon_sym_where] = ACTIONS(5913), - [anon_sym_QMARK] = ACTIONS(5915), - [anon_sym_BANG] = ACTIONS(5915), - [anon_sym_PLUS_PLUS] = ACTIONS(5913), - [anon_sym_DASH_DASH] = ACTIONS(5913), - [anon_sym_PLUS] = ACTIONS(5915), - [anon_sym_DASH] = ACTIONS(5915), - [anon_sym_STAR] = ACTIONS(5913), - [anon_sym_SLASH] = ACTIONS(5915), - [anon_sym_PERCENT] = ACTIONS(5913), - [anon_sym_CARET] = ACTIONS(5913), - [anon_sym_PIPE] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5915), - [anon_sym_LT_LT] = ACTIONS(5913), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5913), - [anon_sym_EQ_EQ] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5913), - [anon_sym_LT_EQ] = ACTIONS(5913), - [anon_sym_DOT] = ACTIONS(5915), - [anon_sym_EQ_GT] = ACTIONS(5913), - [anon_sym_switch] = ACTIONS(5913), - [anon_sym_DOT_DOT] = ACTIONS(5913), - [anon_sym_and] = ACTIONS(5913), - [anon_sym_or] = ACTIONS(5915), - [anon_sym_AMP_AMP] = ACTIONS(5913), - [anon_sym_PIPE_PIPE] = ACTIONS(5913), - [sym_op_coalescing] = ACTIONS(5913), - [anon_sym_from] = ACTIONS(5913), - [anon_sym_into] = ACTIONS(5913), - [anon_sym_join] = ACTIONS(5913), - [anon_sym_on] = ACTIONS(5913), - [anon_sym_equals] = ACTIONS(5913), - [anon_sym_let] = ACTIONS(5913), - [anon_sym_orderby] = ACTIONS(5913), - [anon_sym_group] = ACTIONS(5913), - [anon_sym_by] = ACTIONS(5913), - [anon_sym_select] = ACTIONS(5913), - [anon_sym_as] = ACTIONS(5913), - [anon_sym_is] = ACTIONS(5913), - [anon_sym_DASH_GT] = ACTIONS(5913), - [anon_sym_with] = ACTIONS(5913), - [aux_sym_preproc_if_token3] = ACTIONS(5913), - [aux_sym_preproc_else_token1] = ACTIONS(5913), - [aux_sym_preproc_elif_token1] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531608,27 +529064,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3588] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3588), [sym_preproc_endregion] = STATE(3588), [sym_preproc_line] = STATE(3588), @@ -531638,43 +529088,44 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531687,27 +529138,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3589] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3589), [sym_preproc_endregion] = STATE(3589), [sym_preproc_line] = STATE(3589), @@ -531717,43 +529162,44 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531766,27 +529212,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3590] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3590), [sym_preproc_endregion] = STATE(3590), [sym_preproc_line] = STATE(3590), @@ -531796,43 +529236,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3590), [sym_preproc_define] = STATE(3590), [sym_preproc_undef] = STATE(3590), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6278), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(6288), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531845,27 +529286,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3591] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3591), [sym_preproc_endregion] = STATE(3591), [sym_preproc_line] = STATE(3591), @@ -531875,43 +529310,44 @@ 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(4766), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), - [aux_sym_preproc_if_token3] = ACTIONS(4766), - [aux_sym_preproc_else_token1] = ACTIONS(4766), - [aux_sym_preproc_elif_token1] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531924,27 +529360,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3592] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3592), [sym_preproc_endregion] = STATE(3592), [sym_preproc_line] = STATE(3592), @@ -531954,43 +529384,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3592), [sym_preproc_define] = STATE(3592), [sym_preproc_undef] = STATE(3592), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532003,27 +529434,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3593] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3593), [sym_preproc_endregion] = STATE(3593), [sym_preproc_line] = STATE(3593), @@ -532033,43 +529458,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3593), [sym_preproc_define] = STATE(3593), [sym_preproc_undef] = STATE(3593), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5865), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5869), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5873), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532082,27 +529508,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3594] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3594), [sym_preproc_endregion] = STATE(3594), [sym_preproc_line] = STATE(3594), @@ -532112,43 +529532,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3594), [sym_preproc_define] = STATE(3594), [sym_preproc_undef] = STATE(3594), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532161,27 +529582,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3595] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), + [sym_preproc_else_in_expression] = STATE(8100), + [sym_preproc_elif_in_expression] = STATE(8100), [sym_preproc_region] = STATE(3595), [sym_preproc_endregion] = STATE(3595), [sym_preproc_line] = STATE(3595), @@ -532191,43 +529608,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3595), [sym_preproc_define] = STATE(3595), [sym_preproc_undef] = STATE(3595), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(6312), + [aux_sym_preproc_else_token1] = ACTIONS(2897), + [aux_sym_preproc_elif_token1] = ACTIONS(2899), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532240,27 +529656,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3596] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3596), [sym_preproc_endregion] = STATE(3596), [sym_preproc_line] = STATE(3596), @@ -532270,43 +529680,44 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532319,27 +529730,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3597] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3597), [sym_preproc_endregion] = STATE(3597), [sym_preproc_line] = STATE(3597), @@ -532349,43 +529754,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3597), [sym_preproc_define] = STATE(3597), [sym_preproc_undef] = STATE(3597), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_when] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532398,27 +529804,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3598] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3598), [sym_preproc_endregion] = STATE(3598), [sym_preproc_line] = STATE(3598), @@ -532428,43 +529828,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3598), [sym_preproc_define] = STATE(3598), [sym_preproc_undef] = STATE(3598), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5839), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5841), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_equals] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532477,27 +529878,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3599] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3599), [sym_preproc_endregion] = STATE(3599), [sym_preproc_line] = STATE(3599), @@ -532507,43 +529902,44 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5839), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5841), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_equals] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532556,27 +529952,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3600] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3600), [sym_preproc_endregion] = STATE(3600), [sym_preproc_line] = STATE(3600), @@ -532586,43 +529976,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3600), [sym_preproc_define] = STATE(3600), [sym_preproc_undef] = STATE(3600), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5839), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5841), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_equals] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5356), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6276), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6278), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(6288), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532635,27 +530026,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3601] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), [sym_preproc_region] = STATE(3601), [sym_preproc_endregion] = STATE(3601), [sym_preproc_line] = STATE(3601), @@ -532665,43 +530035,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3601), [sym_preproc_define] = STATE(3601), [sym_preproc_undef] = STATE(3601), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5839), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5841), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_equals] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_EQ] = ACTIONS(6314), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_where] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(6316), + [anon_sym_DASH_EQ] = ACTIONS(6316), + [anon_sym_STAR_EQ] = ACTIONS(6316), + [anon_sym_SLASH_EQ] = ACTIONS(6316), + [anon_sym_PERCENT_EQ] = ACTIONS(6316), + [anon_sym_AMP_EQ] = ACTIONS(6316), + [anon_sym_CARET_EQ] = ACTIONS(6316), + [anon_sym_PIPE_EQ] = ACTIONS(6316), + [anon_sym_LT_LT_EQ] = ACTIONS(6316), + [anon_sym_GT_GT_EQ] = ACTIONS(6316), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6316), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6316), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_from] = ACTIONS(5508), + [anon_sym_join] = ACTIONS(5508), + [anon_sym_let] = ACTIONS(5508), + [anon_sym_orderby] = ACTIONS(5508), + [anon_sym_group] = ACTIONS(5508), + [anon_sym_select] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532714,27 +530100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3602] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_type_argument_list] = STATE(3730), [sym_preproc_region] = STATE(3602), [sym_preproc_endregion] = STATE(3602), [sym_preproc_line] = STATE(3602), @@ -532744,43 +530110,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3602), [sym_preproc_define] = STATE(3602), [sym_preproc_undef] = STATE(3602), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(6229), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_when] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532793,27 +530174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3603] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_type_argument_list] = STATE(3927), [sym_preproc_region] = STATE(3603), [sym_preproc_endregion] = STATE(3603), [sym_preproc_line] = STATE(3603), @@ -532823,43 +530184,57 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(6318), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3957), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532870,29 +530245,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3957), }, [3604] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3604), [sym_preproc_endregion] = STATE(3604), [sym_preproc_line] = STATE(3604), @@ -532902,43 +530272,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3604), [sym_preproc_define] = STATE(3604), [sym_preproc_undef] = STATE(3604), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5364), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6276), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6278), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(6288), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532951,27 +530322,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3605] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3605), [sym_preproc_endregion] = STATE(3605), [sym_preproc_line] = STATE(3605), @@ -532981,43 +530346,43 @@ 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(4782), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4782), - [aux_sym_preproc_else_token1] = ACTIONS(4782), - [aux_sym_preproc_elif_token1] = ACTIONS(4782), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533028,29 +530393,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3606] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3606), [sym_preproc_endregion] = STATE(3606), [sym_preproc_line] = STATE(3606), @@ -533060,43 +530420,43 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533107,29 +530467,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3607] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3607), [sym_preproc_endregion] = STATE(3607), [sym_preproc_line] = STATE(3607), @@ -533139,43 +530494,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3607), [sym_preproc_define] = STATE(3607), [sym_preproc_undef] = STATE(3607), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533186,29 +530541,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3608] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3608), [sym_preproc_endregion] = STATE(3608), [sym_preproc_line] = STATE(3608), @@ -533218,43 +530568,43 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533265,29 +530615,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(5300), }, [3609] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_initializer_expression] = STATE(4228), [sym_preproc_region] = STATE(3609), [sym_preproc_endregion] = STATE(3609), [sym_preproc_line] = STATE(3609), @@ -533297,43 +530628,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3609), [sym_preproc_define] = STATE(3609), [sym_preproc_undef] = STATE(3609), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5841), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym_COLON] = ACTIONS(5516), + [anon_sym_COMMA] = ACTIONS(5516), + [anon_sym_RBRACK] = ACTIONS(5516), + [anon_sym_LPAREN] = ACTIONS(5516), + [anon_sym_RPAREN] = ACTIONS(5516), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(5516), + [anon_sym_LT] = ACTIONS(5518), + [anon_sym_GT] = ACTIONS(5518), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_QMARK] = ACTIONS(5518), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_EQ_GT] = ACTIONS(5516), + [anon_sym_STAR] = ACTIONS(5516), + [anon_sym_switch] = ACTIONS(5516), + [anon_sym_when] = ACTIONS(5516), + [anon_sym_DOT_DOT] = ACTIONS(5516), + [anon_sym_LT_EQ] = ACTIONS(5516), + [anon_sym_GT_EQ] = ACTIONS(5516), + [anon_sym_and] = ACTIONS(5516), + [anon_sym_or] = ACTIONS(5516), + [anon_sym_EQ_EQ] = ACTIONS(5516), + [anon_sym_BANG_EQ] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5516), + [anon_sym_PIPE_PIPE] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [sym_op_bitwise_or] = ACTIONS(5518), + [anon_sym_CARET] = ACTIONS(5516), + [sym_op_left_shift] = ACTIONS(5516), + [sym_op_right_shift] = ACTIONS(5518), + [sym_op_unsigned_right_shift] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5518), + [sym_op_divide] = ACTIONS(5518), + [sym_op_modulo] = ACTIONS(5516), + [sym_op_coalescing] = ACTIONS(5516), + [anon_sym_BANG] = ACTIONS(5518), + [anon_sym_PLUS_PLUS] = ACTIONS(5516), + [anon_sym_DASH_DASH] = ACTIONS(5516), + [anon_sym_into] = ACTIONS(5516), + [anon_sym_on] = ACTIONS(5516), + [anon_sym_equals] = ACTIONS(5516), + [anon_sym_by] = ACTIONS(5516), + [anon_sym_as] = ACTIONS(5516), + [anon_sym_is] = ACTIONS(5516), + [anon_sym_DASH_GT] = ACTIONS(5516), + [anon_sym_with] = ACTIONS(5516), + [aux_sym_preproc_if_token3] = ACTIONS(5516), + [aux_sym_preproc_else_token1] = ACTIONS(5516), + [aux_sym_preproc_elif_token1] = ACTIONS(5516), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533346,27 +530692,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3610] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3610), [sym_preproc_endregion] = STATE(3610), [sym_preproc_line] = STATE(3610), @@ -533376,43 +530716,44 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5839), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5841), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_equals] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5845), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6258), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5328), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(6272), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533425,6 +530766,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3611] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), + [sym_preproc_else_in_expression] = STATE(7918), + [sym_preproc_elif_in_expression] = STATE(7918), [sym_preproc_region] = STATE(3611), [sym_preproc_endregion] = STATE(3611), [sym_preproc_line] = STATE(3611), @@ -533434,64 +530792,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3611), [sym_preproc_define] = STATE(3611), [sym_preproc_undef] = STATE(3611), - [sym__identifier_token] = ACTIONS(5917), - [anon_sym_extern] = ACTIONS(5917), - [anon_sym_alias] = ACTIONS(5917), - [anon_sym_global] = ACTIONS(5917), - [anon_sym_unsafe] = ACTIONS(5917), - [anon_sym_static] = ACTIONS(5917), - [anon_sym_LBRACK] = ACTIONS(5919), - [anon_sym_LPAREN] = ACTIONS(5919), - [anon_sym_event] = ACTIONS(5917), - [anon_sym_class] = ACTIONS(5917), - [anon_sym_ref] = ACTIONS(5917), - [anon_sym_struct] = ACTIONS(5917), - [anon_sym_enum] = ACTIONS(5917), - [anon_sym_interface] = ACTIONS(5917), - [anon_sym_delegate] = ACTIONS(5917), - [anon_sym_record] = ACTIONS(5917), - [anon_sym_public] = ACTIONS(5917), - [anon_sym_private] = ACTIONS(5917), - [anon_sym_readonly] = ACTIONS(5917), - [anon_sym_abstract] = ACTIONS(5917), - [anon_sym_async] = ACTIONS(5917), - [anon_sym_const] = ACTIONS(5917), - [anon_sym_file] = ACTIONS(5917), - [anon_sym_fixed] = ACTIONS(5917), - [anon_sym_internal] = ACTIONS(5917), - [anon_sym_new] = ACTIONS(5917), - [anon_sym_override] = ACTIONS(5917), - [anon_sym_partial] = ACTIONS(5917), - [anon_sym_protected] = ACTIONS(5917), - [anon_sym_required] = ACTIONS(5917), - [anon_sym_sealed] = ACTIONS(5917), - [anon_sym_virtual] = ACTIONS(5917), - [anon_sym_volatile] = ACTIONS(5917), - [anon_sym_where] = ACTIONS(5917), - [anon_sym_notnull] = ACTIONS(5917), - [anon_sym_unmanaged] = ACTIONS(5917), - [anon_sym_TILDE] = ACTIONS(5919), - [anon_sym_implicit] = ACTIONS(5917), - [anon_sym_explicit] = ACTIONS(5917), - [anon_sym_scoped] = ACTIONS(5917), - [anon_sym_var] = ACTIONS(5917), - [sym_predefined_type] = ACTIONS(5917), - [anon_sym_yield] = ACTIONS(5917), - [anon_sym_when] = ACTIONS(5917), - [anon_sym_from] = ACTIONS(5917), - [anon_sym_into] = ACTIONS(5917), - [anon_sym_join] = ACTIONS(5917), - [anon_sym_on] = ACTIONS(5917), - [anon_sym_equals] = ACTIONS(5917), - [anon_sym_let] = ACTIONS(5917), - [anon_sym_orderby] = ACTIONS(5917), - [anon_sym_ascending] = ACTIONS(5917), - [anon_sym_descending] = ACTIONS(5917), - [anon_sym_group] = ACTIONS(5917), - [anon_sym_by] = ACTIONS(5917), - [anon_sym_select] = ACTIONS(5917), - [sym_grit_metavariable] = ACTIONS(5919), - [aux_sym_preproc_if_token1] = ACTIONS(5919), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(6331), + [aux_sym_preproc_else_token1] = ACTIONS(2897), + [aux_sym_preproc_elif_token1] = ACTIONS(2899), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533504,6 +530840,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3612] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3612), [sym_preproc_endregion] = STATE(3612), [sym_preproc_line] = STATE(3612), @@ -533513,64 +530864,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3612), [sym_preproc_define] = STATE(3612), [sym_preproc_undef] = STATE(3612), - [sym__identifier_token] = ACTIONS(5921), - [anon_sym_extern] = ACTIONS(5921), - [anon_sym_alias] = ACTIONS(5921), - [anon_sym_global] = ACTIONS(5921), - [anon_sym_unsafe] = ACTIONS(5921), - [anon_sym_static] = ACTIONS(5921), - [anon_sym_LBRACK] = ACTIONS(5923), - [anon_sym_LPAREN] = ACTIONS(5923), - [anon_sym_event] = ACTIONS(5921), - [anon_sym_class] = ACTIONS(5921), - [anon_sym_ref] = ACTIONS(5921), - [anon_sym_struct] = ACTIONS(5921), - [anon_sym_enum] = ACTIONS(5921), - [anon_sym_interface] = ACTIONS(5921), - [anon_sym_delegate] = ACTIONS(5921), - [anon_sym_record] = ACTIONS(5921), - [anon_sym_public] = ACTIONS(5921), - [anon_sym_private] = ACTIONS(5921), - [anon_sym_readonly] = ACTIONS(5921), - [anon_sym_abstract] = ACTIONS(5921), - [anon_sym_async] = ACTIONS(5921), - [anon_sym_const] = ACTIONS(5921), - [anon_sym_file] = ACTIONS(5921), - [anon_sym_fixed] = ACTIONS(5921), - [anon_sym_internal] = ACTIONS(5921), - [anon_sym_new] = ACTIONS(5921), - [anon_sym_override] = ACTIONS(5921), - [anon_sym_partial] = ACTIONS(5921), - [anon_sym_protected] = ACTIONS(5921), - [anon_sym_required] = ACTIONS(5921), - [anon_sym_sealed] = ACTIONS(5921), - [anon_sym_virtual] = ACTIONS(5921), - [anon_sym_volatile] = ACTIONS(5921), - [anon_sym_where] = ACTIONS(5921), - [anon_sym_notnull] = ACTIONS(5921), - [anon_sym_unmanaged] = ACTIONS(5921), - [anon_sym_TILDE] = ACTIONS(5923), - [anon_sym_implicit] = ACTIONS(5921), - [anon_sym_explicit] = ACTIONS(5921), - [anon_sym_scoped] = ACTIONS(5921), - [anon_sym_var] = ACTIONS(5921), - [sym_predefined_type] = ACTIONS(5921), - [anon_sym_yield] = ACTIONS(5921), - [anon_sym_when] = ACTIONS(5921), - [anon_sym_from] = ACTIONS(5921), - [anon_sym_into] = ACTIONS(5921), - [anon_sym_join] = ACTIONS(5921), - [anon_sym_on] = ACTIONS(5921), - [anon_sym_equals] = ACTIONS(5921), - [anon_sym_let] = ACTIONS(5921), - [anon_sym_orderby] = ACTIONS(5921), - [anon_sym_ascending] = ACTIONS(5921), - [anon_sym_descending] = ACTIONS(5921), - [anon_sym_group] = ACTIONS(5921), - [anon_sym_by] = ACTIONS(5921), - [anon_sym_select] = ACTIONS(5921), - [sym_grit_metavariable] = ACTIONS(5923), - [aux_sym_preproc_if_token1] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533583,27 +530914,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3613] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3613), [sym_preproc_endregion] = STATE(3613), [sym_preproc_line] = STATE(3613), @@ -533613,43 +530938,44 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4766), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_when] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(6252), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533662,27 +530988,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3614] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3614), [sym_preproc_endregion] = STATE(3614), [sym_preproc_line] = STATE(3614), @@ -533692,43 +531012,44 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_when] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533741,27 +531062,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3615] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3615), [sym_preproc_endregion] = STATE(3615), [sym_preproc_line] = STATE(3615), @@ -533771,43 +531086,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3615), [sym_preproc_define] = STATE(3615), [sym_preproc_undef] = STATE(3615), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5891), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5893), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_by] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533820,6 +531136,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3616] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3616), [sym_preproc_endregion] = STATE(3616), [sym_preproc_line] = STATE(3616), @@ -533829,64 +531160,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3616), [sym_preproc_define] = STATE(3616), [sym_preproc_undef] = STATE(3616), - [anon_sym_SEMI] = ACTIONS(5925), - [anon_sym_LBRACK] = ACTIONS(5925), - [anon_sym_COLON] = ACTIONS(5925), - [anon_sym_COMMA] = ACTIONS(5925), - [anon_sym_RBRACK] = ACTIONS(5925), - [anon_sym_LPAREN] = ACTIONS(5925), - [anon_sym_RPAREN] = ACTIONS(5925), - [anon_sym_RBRACE] = ACTIONS(5925), - [anon_sym_LT] = ACTIONS(5927), - [anon_sym_GT] = ACTIONS(5927), - [anon_sym_in] = ACTIONS(5927), - [anon_sym_where] = ACTIONS(5925), - [anon_sym_QMARK] = ACTIONS(5927), - [anon_sym_BANG] = ACTIONS(5927), - [anon_sym_PLUS_PLUS] = ACTIONS(5925), - [anon_sym_DASH_DASH] = ACTIONS(5925), - [anon_sym_PLUS] = ACTIONS(5927), - [anon_sym_DASH] = ACTIONS(5927), - [anon_sym_STAR] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5927), - [anon_sym_PERCENT] = ACTIONS(5925), - [anon_sym_CARET] = ACTIONS(5925), - [anon_sym_PIPE] = ACTIONS(5927), - [anon_sym_AMP] = ACTIONS(5927), - [anon_sym_LT_LT] = ACTIONS(5925), - [anon_sym_GT_GT] = ACTIONS(5927), - [anon_sym_GT_GT_GT] = ACTIONS(5925), - [anon_sym_EQ_EQ] = ACTIONS(5925), - [anon_sym_BANG_EQ] = ACTIONS(5925), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(5927), - [anon_sym_EQ_GT] = ACTIONS(5925), - [anon_sym_switch] = ACTIONS(5925), - [anon_sym_DOT_DOT] = ACTIONS(5925), - [anon_sym_and] = ACTIONS(5925), - [anon_sym_or] = ACTIONS(5927), - [anon_sym_AMP_AMP] = ACTIONS(5925), - [anon_sym_PIPE_PIPE] = ACTIONS(5925), - [sym_op_coalescing] = ACTIONS(5925), - [anon_sym_from] = ACTIONS(5925), - [anon_sym_into] = ACTIONS(5925), - [anon_sym_join] = ACTIONS(5925), - [anon_sym_on] = ACTIONS(5925), - [anon_sym_equals] = ACTIONS(5925), - [anon_sym_let] = ACTIONS(5925), - [anon_sym_orderby] = ACTIONS(5925), - [anon_sym_group] = ACTIONS(5925), - [anon_sym_by] = ACTIONS(5925), - [anon_sym_select] = ACTIONS(5925), - [anon_sym_as] = ACTIONS(5925), - [anon_sym_is] = ACTIONS(5925), - [anon_sym_DASH_GT] = ACTIONS(5925), - [anon_sym_with] = ACTIONS(5925), - [sym_string_literal_encoding] = ACTIONS(5929), - [aux_sym_preproc_if_token3] = ACTIONS(5925), - [aux_sym_preproc_else_token1] = ACTIONS(5925), - [aux_sym_preproc_elif_token1] = ACTIONS(5925), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533899,6 +531210,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3617] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3617), [sym_preproc_endregion] = STATE(3617), [sym_preproc_line] = STATE(3617), @@ -533908,64 +531234,44 @@ 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(5931), - [anon_sym_LBRACK] = ACTIONS(5931), - [anon_sym_COLON] = ACTIONS(5931), - [anon_sym_COMMA] = ACTIONS(5931), - [anon_sym_RBRACK] = ACTIONS(5931), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_RPAREN] = ACTIONS(5931), - [anon_sym_LBRACE] = ACTIONS(5931), - [anon_sym_RBRACE] = ACTIONS(5931), - [anon_sym_LT] = ACTIONS(5933), - [anon_sym_GT] = ACTIONS(5933), - [anon_sym_in] = ACTIONS(5933), - [anon_sym_where] = ACTIONS(5931), - [anon_sym_QMARK] = ACTIONS(5933), - [anon_sym_BANG] = ACTIONS(5933), - [anon_sym_PLUS_PLUS] = ACTIONS(5931), - [anon_sym_DASH_DASH] = ACTIONS(5931), - [anon_sym_PLUS] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5933), - [anon_sym_STAR] = ACTIONS(5931), - [anon_sym_SLASH] = ACTIONS(5933), - [anon_sym_PERCENT] = ACTIONS(5931), - [anon_sym_CARET] = ACTIONS(5931), - [anon_sym_PIPE] = ACTIONS(5933), - [anon_sym_AMP] = ACTIONS(5933), - [anon_sym_LT_LT] = ACTIONS(5931), - [anon_sym_GT_GT] = ACTIONS(5933), - [anon_sym_GT_GT_GT] = ACTIONS(5931), - [anon_sym_EQ_EQ] = ACTIONS(5931), - [anon_sym_BANG_EQ] = ACTIONS(5931), - [anon_sym_GT_EQ] = ACTIONS(5931), - [anon_sym_LT_EQ] = ACTIONS(5931), - [anon_sym_DOT] = ACTIONS(5933), - [anon_sym_EQ_GT] = ACTIONS(5931), - [anon_sym_switch] = ACTIONS(5931), - [anon_sym_DOT_DOT] = ACTIONS(5931), - [anon_sym_and] = ACTIONS(5931), - [anon_sym_or] = ACTIONS(5933), - [anon_sym_AMP_AMP] = ACTIONS(5931), - [anon_sym_PIPE_PIPE] = ACTIONS(5931), - [sym_op_coalescing] = ACTIONS(5931), - [anon_sym_from] = ACTIONS(5931), - [anon_sym_into] = ACTIONS(5931), - [anon_sym_join] = ACTIONS(5931), - [anon_sym_on] = ACTIONS(5931), - [anon_sym_equals] = ACTIONS(5931), - [anon_sym_let] = ACTIONS(5931), - [anon_sym_orderby] = ACTIONS(5931), - [anon_sym_group] = ACTIONS(5931), - [anon_sym_by] = ACTIONS(5931), - [anon_sym_select] = ACTIONS(5931), - [anon_sym_as] = ACTIONS(5931), - [anon_sym_is] = ACTIONS(5931), - [anon_sym_DASH_GT] = ACTIONS(5931), - [anon_sym_with] = ACTIONS(5931), - [aux_sym_preproc_if_token3] = ACTIONS(5931), - [aux_sym_preproc_else_token1] = ACTIONS(5931), - [aux_sym_preproc_elif_token1] = ACTIONS(5931), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_when] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533978,6 +531284,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3618] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3618), [sym_preproc_endregion] = STATE(3618), [sym_preproc_line] = STATE(3618), @@ -533987,64 +531308,44 @@ 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(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_from] = ACTIONS(3953), - [anon_sym_into] = ACTIONS(3953), - [anon_sym_join] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_let] = ACTIONS(3953), - [anon_sym_orderby] = ACTIONS(3953), - [anon_sym_group] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_select] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534057,27 +531358,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3619] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3619), [sym_preproc_endregion] = STATE(3619), [sym_preproc_line] = STATE(3619), @@ -534087,43 +531382,44 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5935), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4786), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5907), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534136,27 +531432,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3620] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3620), [sym_preproc_endregion] = STATE(3620), [sym_preproc_line] = STATE(3620), @@ -534166,43 +531456,44 @@ 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_SEMI] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), - [aux_sym_preproc_if_token3] = ACTIONS(1435), - [aux_sym_preproc_else_token1] = ACTIONS(1435), - [aux_sym_preproc_elif_token1] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_when] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534215,6 +531506,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3621] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3621), [sym_preproc_endregion] = STATE(3621), [sym_preproc_line] = STATE(3621), @@ -534224,64 +531530,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3621), [sym_preproc_define] = STATE(3621), [sym_preproc_undef] = STATE(3621), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_RBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_LBRACE] = ACTIONS(3957), - [anon_sym_RBRACE] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3955), - [anon_sym_GT] = ACTIONS(3955), - [anon_sym_in] = ACTIONS(3955), - [anon_sym_where] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3955), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3955), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_EQ_GT] = ACTIONS(3957), - [anon_sym_switch] = ACTIONS(3957), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3957), - [anon_sym_or] = ACTIONS(3955), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [sym_op_coalescing] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3957), - [anon_sym_into] = ACTIONS(3957), - [anon_sym_join] = ACTIONS(3957), - [anon_sym_on] = ACTIONS(3957), - [anon_sym_equals] = ACTIONS(3957), - [anon_sym_let] = ACTIONS(3957), - [anon_sym_orderby] = ACTIONS(3957), - [anon_sym_group] = ACTIONS(3957), - [anon_sym_by] = ACTIONS(3957), - [anon_sym_select] = ACTIONS(3957), - [anon_sym_as] = ACTIONS(3957), - [anon_sym_is] = ACTIONS(3957), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3957), - [aux_sym_preproc_if_token3] = ACTIONS(3957), - [aux_sym_preproc_else_token1] = ACTIONS(3957), - [aux_sym_preproc_elif_token1] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6333), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6335), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(6337), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6341), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534292,29 +531577,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5332), }, [3622] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), + [sym_preproc_else_in_expression] = STATE(8058), + [sym_preproc_elif_in_expression] = STATE(8058), [sym_preproc_region] = STATE(3622), [sym_preproc_endregion] = STATE(3622), [sym_preproc_line] = STATE(3622), @@ -534324,43 +531606,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3622), [sym_preproc_define] = STATE(3622), [sym_preproc_undef] = STATE(3622), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4752), - [anon_sym_RBRACE] = ACTIONS(4752), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(6343), + [aux_sym_preproc_else_token1] = ACTIONS(2897), + [aux_sym_preproc_elif_token1] = ACTIONS(2899), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534373,27 +531654,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3623] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), + [sym_preproc_else_in_expression] = STATE(7748), + [sym_preproc_elif_in_expression] = STATE(7748), [sym_preproc_region] = STATE(3623), [sym_preproc_endregion] = STATE(3623), [sym_preproc_line] = STATE(3623), @@ -534403,43 +531680,42 @@ 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_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5821), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(6345), + [aux_sym_preproc_else_token1] = ACTIONS(2897), + [aux_sym_preproc_elif_token1] = ACTIONS(2899), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534452,27 +531728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3624] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_initializer_expression] = STATE(4361), [sym_preproc_region] = STATE(3624), [sym_preproc_endregion] = STATE(3624), [sym_preproc_line] = STATE(3624), @@ -534482,43 +531738,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3624), [sym_preproc_define] = STATE(3624), [sym_preproc_undef] = STATE(3624), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5935), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4778), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4778), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5907), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_COLON] = ACTIONS(5628), + [anon_sym_COMMA] = ACTIONS(5628), + [anon_sym_RBRACK] = ACTIONS(5628), + [anon_sym_LPAREN] = ACTIONS(5628), + [anon_sym_RPAREN] = ACTIONS(5628), + [anon_sym_LBRACE] = ACTIONS(6347), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_LT] = ACTIONS(5634), + [anon_sym_GT] = ACTIONS(5634), + [anon_sym_in] = ACTIONS(5634), + [anon_sym_QMARK] = ACTIONS(6350), + [anon_sym_DOT] = ACTIONS(5634), + [anon_sym_EQ_GT] = ACTIONS(5628), + [anon_sym_STAR] = ACTIONS(5628), + [anon_sym_switch] = ACTIONS(5628), + [anon_sym_when] = ACTIONS(5628), + [anon_sym_DOT_DOT] = ACTIONS(5628), + [anon_sym_LT_EQ] = ACTIONS(5628), + [anon_sym_GT_EQ] = ACTIONS(5628), + [anon_sym_and] = ACTIONS(5628), + [anon_sym_or] = ACTIONS(5628), + [anon_sym_EQ_EQ] = ACTIONS(5628), + [anon_sym_BANG_EQ] = ACTIONS(5628), + [anon_sym_AMP_AMP] = ACTIONS(5628), + [anon_sym_PIPE_PIPE] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(5634), + [sym_op_bitwise_or] = ACTIONS(5634), + [anon_sym_CARET] = ACTIONS(5628), + [sym_op_left_shift] = ACTIONS(5628), + [sym_op_right_shift] = ACTIONS(5634), + [sym_op_unsigned_right_shift] = ACTIONS(5628), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [sym_op_divide] = ACTIONS(5634), + [sym_op_modulo] = ACTIONS(5628), + [sym_op_coalescing] = ACTIONS(5628), + [anon_sym_BANG] = ACTIONS(5634), + [anon_sym_PLUS_PLUS] = ACTIONS(5628), + [anon_sym_DASH_DASH] = ACTIONS(5628), + [anon_sym_into] = ACTIONS(5628), + [anon_sym_on] = ACTIONS(5628), + [anon_sym_equals] = ACTIONS(5628), + [anon_sym_by] = ACTIONS(5628), + [anon_sym_as] = ACTIONS(5628), + [anon_sym_is] = ACTIONS(5628), + [anon_sym_DASH_GT] = ACTIONS(5628), + [anon_sym_with] = ACTIONS(5628), + [aux_sym_preproc_if_token3] = ACTIONS(5628), + [aux_sym_preproc_else_token1] = ACTIONS(5628), + [aux_sym_preproc_elif_token1] = ACTIONS(5628), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534531,27 +531802,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3625] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3625), [sym_preproc_endregion] = STATE(3625), [sym_preproc_line] = STATE(3625), @@ -534561,43 +531826,44 @@ 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_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4752), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_when] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534610,27 +531876,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3626] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3626), [sym_preproc_endregion] = STATE(3626), [sym_preproc_line] = STATE(3626), @@ -534640,42 +531900,44 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5861), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534686,30 +531948,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3627] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3627), [sym_preproc_endregion] = STATE(3627), [sym_preproc_line] = STATE(3627), @@ -534719,42 +531974,44 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6278), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534765,9 +532022,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3628] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3628), [sym_preproc_endregion] = STATE(3628), [sym_preproc_line] = STATE(3628), @@ -534777,64 +532048,44 @@ 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_SEMI] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_COLON] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_RBRACK] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_RPAREN] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4008), - [anon_sym_GT] = ACTIONS(4008), - [anon_sym_in] = ACTIONS(4008), - [anon_sym_where] = ACTIONS(4017), - [anon_sym_QMARK] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4017), - [anon_sym_SLASH] = ACTIONS(4008), - [anon_sym_PERCENT] = ACTIONS(4017), - [anon_sym_CARET] = ACTIONS(4017), - [anon_sym_PIPE] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(4017), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_GT_GT_GT] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4017), - [anon_sym_switch] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(4017), - [anon_sym_and] = ACTIONS(4017), - [anon_sym_or] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [sym_op_coalescing] = ACTIONS(4017), - [anon_sym_from] = ACTIONS(4017), - [anon_sym_into] = ACTIONS(4017), - [anon_sym_join] = ACTIONS(4017), - [anon_sym_on] = ACTIONS(4017), - [anon_sym_equals] = ACTIONS(4017), - [anon_sym_let] = ACTIONS(4017), - [anon_sym_orderby] = ACTIONS(4017), - [anon_sym_group] = ACTIONS(4017), - [anon_sym_by] = ACTIONS(4017), - [anon_sym_select] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4017), - [anon_sym_DASH_GT] = ACTIONS(4017), - [anon_sym_with] = ACTIONS(4017), - [aux_sym_preproc_if_token3] = ACTIONS(4017), - [aux_sym_preproc_else_token1] = ACTIONS(4017), - [aux_sym_preproc_elif_token1] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6278), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534847,27 +532098,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3629] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_attribute_list] = STATE(4846), + [sym__attribute_list] = STATE(4849), + [sym_preproc_if_in_attribute_list] = STATE(4846), [sym_preproc_region] = STATE(3629), [sym_preproc_endregion] = STATE(3629), [sym_preproc_line] = STATE(3629), @@ -534877,42 +532110,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3629), [sym_preproc_define] = STATE(3629), [sym_preproc_undef] = STATE(3629), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3629), + [sym__identifier_token] = ACTIONS(5340), + [anon_sym_extern] = ACTIONS(5340), + [anon_sym_alias] = ACTIONS(5340), + [anon_sym_global] = ACTIONS(5340), + [anon_sym_unsafe] = ACTIONS(5340), + [anon_sym_static] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(6354), + [anon_sym_LPAREN] = ACTIONS(5345), + [anon_sym_ref] = ACTIONS(5340), + [anon_sym_delegate] = ACTIONS(5340), + [anon_sym_public] = ACTIONS(5340), + [anon_sym_private] = ACTIONS(5340), + [anon_sym_readonly] = ACTIONS(5340), + [anon_sym_abstract] = ACTIONS(5340), + [anon_sym_async] = ACTIONS(5340), + [anon_sym_const] = ACTIONS(5340), + [anon_sym_file] = ACTIONS(5340), + [anon_sym_fixed] = ACTIONS(5340), + [anon_sym_internal] = ACTIONS(5340), + [anon_sym_new] = ACTIONS(5340), + [anon_sym_override] = ACTIONS(5340), + [anon_sym_partial] = ACTIONS(5340), + [anon_sym_protected] = ACTIONS(5340), + [anon_sym_required] = ACTIONS(5340), + [anon_sym_sealed] = ACTIONS(5340), + [anon_sym_virtual] = ACTIONS(5340), + [anon_sym_volatile] = ACTIONS(5340), + [anon_sym_where] = ACTIONS(5340), + [anon_sym_notnull] = ACTIONS(5340), + [anon_sym_unmanaged] = ACTIONS(5340), + [anon_sym_scoped] = ACTIONS(5340), + [anon_sym_var] = ACTIONS(5340), + [sym_predefined_type] = ACTIONS(5340), + [anon_sym_yield] = ACTIONS(5340), + [anon_sym_when] = ACTIONS(5340), + [anon_sym_from] = ACTIONS(5340), + [anon_sym_into] = ACTIONS(5340), + [anon_sym_join] = ACTIONS(5340), + [anon_sym_on] = ACTIONS(5340), + [anon_sym_equals] = ACTIONS(5340), + [anon_sym_let] = ACTIONS(5340), + [anon_sym_orderby] = ACTIONS(5340), + [anon_sym_ascending] = ACTIONS(5340), + [anon_sym_descending] = ACTIONS(5340), + [anon_sym_group] = ACTIONS(5340), + [anon_sym_by] = ACTIONS(5340), + [anon_sym_select] = ACTIONS(5340), + [sym_grit_metavariable] = ACTIONS(5345), + [aux_sym_preproc_if_token1] = ACTIONS(6357), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534923,30 +532170,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3630] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), + [sym_preproc_else_in_expression] = STATE(7856), + [sym_preproc_elif_in_expression] = STATE(7856), [sym_preproc_region] = STATE(3630), [sym_preproc_endregion] = STATE(3630), [sym_preproc_line] = STATE(3630), @@ -534956,43 +532198,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3630), [sym_preproc_define] = STATE(3630), [sym_preproc_undef] = STATE(3630), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(6360), + [aux_sym_preproc_else_token1] = ACTIONS(2897), + [aux_sym_preproc_elif_token1] = ACTIONS(2899), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535005,27 +532246,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3631] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3631), [sym_preproc_endregion] = STATE(3631), [sym_preproc_line] = STATE(3631), @@ -535035,42 +532270,44 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535081,9 +532318,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3632] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3632), [sym_preproc_endregion] = STATE(3632), [sym_preproc_line] = STATE(3632), @@ -535093,64 +532344,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3632), [sym_preproc_define] = STATE(3632), [sym_preproc_undef] = STATE(3632), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_COLON] = ACTIONS(3972), - [anon_sym_COMMA] = ACTIONS(3972), - [anon_sym_RBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3972), - [anon_sym_RPAREN] = ACTIONS(3972), - [anon_sym_LBRACE] = ACTIONS(3972), - [anon_sym_RBRACE] = ACTIONS(3972), - [anon_sym_LT] = ACTIONS(3970), - [anon_sym_GT] = ACTIONS(3970), - [anon_sym_in] = ACTIONS(3970), - [anon_sym_where] = ACTIONS(3972), - [anon_sym_QMARK] = ACTIONS(3970), - [anon_sym_BANG] = ACTIONS(3970), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(3970), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_CARET] = ACTIONS(3972), - [anon_sym_PIPE] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_LT_LT] = ACTIONS(3972), - [anon_sym_GT_GT] = ACTIONS(3970), - [anon_sym_GT_GT_GT] = ACTIONS(3972), - [anon_sym_EQ_EQ] = ACTIONS(3972), - [anon_sym_BANG_EQ] = ACTIONS(3972), - [anon_sym_GT_EQ] = ACTIONS(3972), - [anon_sym_LT_EQ] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(3970), - [anon_sym_EQ_GT] = ACTIONS(3972), - [anon_sym_switch] = ACTIONS(3972), - [anon_sym_DOT_DOT] = ACTIONS(3972), - [anon_sym_and] = ACTIONS(3972), - [anon_sym_or] = ACTIONS(3970), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_PIPE_PIPE] = ACTIONS(3972), - [sym_op_coalescing] = ACTIONS(3972), - [anon_sym_from] = ACTIONS(3972), - [anon_sym_into] = ACTIONS(3972), - [anon_sym_join] = ACTIONS(3972), - [anon_sym_on] = ACTIONS(3972), - [anon_sym_equals] = ACTIONS(3972), - [anon_sym_let] = ACTIONS(3972), - [anon_sym_orderby] = ACTIONS(3972), - [anon_sym_group] = ACTIONS(3972), - [anon_sym_by] = ACTIONS(3972), - [anon_sym_select] = ACTIONS(3972), - [anon_sym_as] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3972), - [anon_sym_DASH_GT] = ACTIONS(3972), - [anon_sym_with] = ACTIONS(3972), - [aux_sym_preproc_if_token3] = ACTIONS(3972), - [aux_sym_preproc_else_token1] = ACTIONS(3972), - [aux_sym_preproc_elif_token1] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535163,27 +532394,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3633] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3633), [sym_preproc_endregion] = STATE(3633), [sym_preproc_line] = STATE(3633), @@ -535193,43 +532418,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3633), [sym_preproc_define] = STATE(3633), [sym_preproc_undef] = STATE(3633), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_RBRACK] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4708), - [anon_sym_RBRACE] = ACTIONS(4708), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535242,27 +532468,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3634] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3634), [sym_preproc_endregion] = STATE(3634), [sym_preproc_line] = STATE(3634), @@ -535272,43 +532492,44 @@ 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(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535321,27 +532542,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3635] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3635), [sym_preproc_endregion] = STATE(3635), [sym_preproc_line] = STATE(3635), @@ -535351,43 +532566,44 @@ 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(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6238), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5232), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(6252), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535400,27 +532616,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3636] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3636), [sym_preproc_endregion] = STATE(3636), [sym_preproc_line] = STATE(3636), @@ -535430,43 +532640,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3636), [sym_preproc_define] = STATE(3636), [sym_preproc_undef] = STATE(3636), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5308), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_when] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535479,27 +532690,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3637] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3637), [sym_preproc_endregion] = STATE(3637), [sym_preproc_line] = STATE(3637), @@ -535509,43 +532714,43 @@ 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(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535556,29 +532761,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(5360), }, [3638] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), [sym_preproc_region] = STATE(3638), [sym_preproc_endregion] = STATE(3638), [sym_preproc_line] = STATE(3638), @@ -535588,43 +532773,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3638), [sym_preproc_define] = STATE(3638), [sym_preproc_undef] = STATE(3638), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5508), + [anon_sym_EQ] = ACTIONS(6362), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_RBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(6364), + [anon_sym_DASH_EQ] = ACTIONS(6364), + [anon_sym_STAR_EQ] = ACTIONS(6364), + [anon_sym_SLASH_EQ] = ACTIONS(6364), + [anon_sym_PERCENT_EQ] = ACTIONS(6364), + [anon_sym_AMP_EQ] = ACTIONS(6364), + [anon_sym_CARET_EQ] = ACTIONS(6364), + [anon_sym_PIPE_EQ] = ACTIONS(6364), + [anon_sym_LT_LT_EQ] = ACTIONS(6364), + [anon_sym_GT_GT_EQ] = ACTIONS(6364), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6364), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6364), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535637,6 +532838,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3639] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3639), [sym_preproc_endregion] = STATE(3639), [sym_preproc_line] = STATE(3639), @@ -535646,64 +532862,43 @@ 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), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym_LBRACK] = ACTIONS(3968), - [anon_sym_COLON] = ACTIONS(3968), - [anon_sym_COMMA] = ACTIONS(3968), - [anon_sym_RBRACK] = ACTIONS(3968), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_RPAREN] = ACTIONS(3968), - [anon_sym_LBRACE] = ACTIONS(3968), - [anon_sym_RBRACE] = ACTIONS(3968), - [anon_sym_LT] = ACTIONS(3966), - [anon_sym_GT] = ACTIONS(3966), - [anon_sym_in] = ACTIONS(3966), - [anon_sym_where] = ACTIONS(3968), - [anon_sym_QMARK] = ACTIONS(3966), - [anon_sym_BANG] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_SLASH] = ACTIONS(3966), - [anon_sym_PERCENT] = ACTIONS(3968), - [anon_sym_CARET] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(3966), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_LT_LT] = ACTIONS(3968), - [anon_sym_GT_GT] = ACTIONS(3966), - [anon_sym_GT_GT_GT] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3968), - [anon_sym_BANG_EQ] = ACTIONS(3968), - [anon_sym_GT_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3968), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_EQ_GT] = ACTIONS(3968), - [anon_sym_switch] = ACTIONS(3968), - [anon_sym_DOT_DOT] = ACTIONS(3968), - [anon_sym_and] = ACTIONS(3968), - [anon_sym_or] = ACTIONS(3966), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_PIPE_PIPE] = ACTIONS(3968), - [sym_op_coalescing] = ACTIONS(3968), - [anon_sym_from] = ACTIONS(3968), - [anon_sym_into] = ACTIONS(3968), - [anon_sym_join] = ACTIONS(3968), - [anon_sym_on] = ACTIONS(3968), - [anon_sym_equals] = ACTIONS(3968), - [anon_sym_let] = ACTIONS(3968), - [anon_sym_orderby] = ACTIONS(3968), - [anon_sym_group] = ACTIONS(3968), - [anon_sym_by] = ACTIONS(3968), - [anon_sym_select] = ACTIONS(3968), - [anon_sym_as] = ACTIONS(3968), - [anon_sym_is] = ACTIONS(3968), - [anon_sym_DASH_GT] = ACTIONS(3968), - [anon_sym_with] = ACTIONS(3968), - [aux_sym_preproc_if_token3] = ACTIONS(3968), - [aux_sym_preproc_else_token1] = ACTIONS(3968), - [aux_sym_preproc_elif_token1] = ACTIONS(3968), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6341), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535714,6 +532909,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(5300), }, [3640] = { [sym_preproc_region] = STATE(3640), @@ -535725,64 +532921,59 @@ 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_SEMI] = ACTIONS(3980), - [anon_sym_LBRACK] = ACTIONS(3980), - [anon_sym_COLON] = ACTIONS(3980), - [anon_sym_COMMA] = ACTIONS(3980), - [anon_sym_RBRACK] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym_RPAREN] = ACTIONS(3980), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_RBRACE] = ACTIONS(3980), - [anon_sym_LT] = ACTIONS(3978), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_in] = ACTIONS(3978), - [anon_sym_where] = ACTIONS(3980), - [anon_sym_QMARK] = ACTIONS(3978), - [anon_sym_BANG] = ACTIONS(3978), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_SLASH] = ACTIONS(3978), - [anon_sym_PERCENT] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3978), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_LT_LT] = ACTIONS(3980), - [anon_sym_GT_GT] = ACTIONS(3978), - [anon_sym_GT_GT_GT] = ACTIONS(3980), - [anon_sym_EQ_EQ] = ACTIONS(3980), - [anon_sym_BANG_EQ] = ACTIONS(3980), - [anon_sym_GT_EQ] = ACTIONS(3980), - [anon_sym_LT_EQ] = ACTIONS(3980), - [anon_sym_DOT] = ACTIONS(3978), - [anon_sym_EQ_GT] = ACTIONS(3980), - [anon_sym_switch] = ACTIONS(3980), - [anon_sym_DOT_DOT] = ACTIONS(3980), - [anon_sym_and] = ACTIONS(3980), - [anon_sym_or] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_PIPE_PIPE] = ACTIONS(3980), - [sym_op_coalescing] = ACTIONS(3980), - [anon_sym_from] = ACTIONS(3980), - [anon_sym_into] = ACTIONS(3980), - [anon_sym_join] = ACTIONS(3980), - [anon_sym_on] = ACTIONS(3980), - [anon_sym_equals] = ACTIONS(3980), - [anon_sym_let] = ACTIONS(3980), - [anon_sym_orderby] = ACTIONS(3980), - [anon_sym_group] = ACTIONS(3980), - [anon_sym_by] = ACTIONS(3980), - [anon_sym_select] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(3980), - [anon_sym_is] = ACTIONS(3980), - [anon_sym_DASH_GT] = ACTIONS(3980), - [anon_sym_with] = ACTIONS(3980), - [aux_sym_preproc_if_token3] = ACTIONS(3980), - [aux_sym_preproc_else_token1] = ACTIONS(3980), - [aux_sym_preproc_elif_token1] = ACTIONS(3980), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACK] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_in] = ACTIONS(3187), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_EQ_GT] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_when] = ACTIONS(3189), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3189), + [sym_op_left_shift] = ACTIONS(3189), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3189), + [sym_op_coalescing] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_into] = ACTIONS(3189), + [anon_sym_on] = ACTIONS(3189), + [anon_sym_equals] = ACTIONS(3189), + [anon_sym_by] = ACTIONS(3189), + [anon_sym_as] = ACTIONS(3189), + [anon_sym_is] = ACTIONS(3189), + [anon_sym_DASH_GT] = ACTIONS(3189), + [anon_sym_with] = 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), @@ -535795,27 +532986,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3641] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), [sym_preproc_region] = STATE(3641), [sym_preproc_endregion] = STATE(3641), [sym_preproc_line] = STATE(3641), @@ -535825,43 +532995,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3641), [sym_preproc_define] = STATE(3641), [sym_preproc_undef] = STATE(3641), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_when] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3694), + [anon_sym_or] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_into] = ACTIONS(3694), + [anon_sym_on] = ACTIONS(3694), + [anon_sym_equals] = ACTIONS(3694), + [anon_sym_by] = ACTIONS(3694), + [anon_sym_as] = ACTIONS(3694), + [anon_sym_is] = ACTIONS(3694), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3694), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535874,27 +533060,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3642] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3642), [sym_preproc_endregion] = STATE(3642), [sym_preproc_line] = STATE(3642), @@ -535904,43 +533084,43 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6335), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(6337), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6341), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535951,8 +533131,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3643] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3643), [sym_preproc_endregion] = STATE(3643), [sym_preproc_line] = STATE(3643), @@ -535962,64 +533158,43 @@ 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_SEMI] = ACTIONS(3976), - [anon_sym_LBRACK] = ACTIONS(3976), - [anon_sym_COLON] = ACTIONS(3976), - [anon_sym_COMMA] = ACTIONS(3976), - [anon_sym_RBRACK] = ACTIONS(3976), - [anon_sym_LPAREN] = ACTIONS(3976), - [anon_sym_RPAREN] = ACTIONS(3976), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_RBRACE] = ACTIONS(3976), - [anon_sym_LT] = ACTIONS(3974), - [anon_sym_GT] = ACTIONS(3974), - [anon_sym_in] = ACTIONS(3974), - [anon_sym_where] = ACTIONS(3976), - [anon_sym_QMARK] = ACTIONS(3974), - [anon_sym_BANG] = ACTIONS(3974), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_SLASH] = ACTIONS(3974), - [anon_sym_PERCENT] = ACTIONS(3976), - [anon_sym_CARET] = ACTIONS(3976), - [anon_sym_PIPE] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_LT_LT] = ACTIONS(3976), - [anon_sym_GT_GT] = ACTIONS(3974), - [anon_sym_GT_GT_GT] = ACTIONS(3976), - [anon_sym_EQ_EQ] = ACTIONS(3976), - [anon_sym_BANG_EQ] = ACTIONS(3976), - [anon_sym_GT_EQ] = ACTIONS(3976), - [anon_sym_LT_EQ] = ACTIONS(3976), - [anon_sym_DOT] = ACTIONS(3974), - [anon_sym_EQ_GT] = ACTIONS(3976), - [anon_sym_switch] = ACTIONS(3976), - [anon_sym_DOT_DOT] = ACTIONS(3976), - [anon_sym_and] = ACTIONS(3976), - [anon_sym_or] = ACTIONS(3974), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_PIPE_PIPE] = ACTIONS(3976), - [sym_op_coalescing] = ACTIONS(3976), - [anon_sym_from] = ACTIONS(3976), - [anon_sym_into] = ACTIONS(3976), - [anon_sym_join] = ACTIONS(3976), - [anon_sym_on] = ACTIONS(3976), - [anon_sym_equals] = ACTIONS(3976), - [anon_sym_let] = ACTIONS(3976), - [anon_sym_orderby] = ACTIONS(3976), - [anon_sym_group] = ACTIONS(3976), - [anon_sym_by] = ACTIONS(3976), - [anon_sym_select] = ACTIONS(3976), - [anon_sym_as] = ACTIONS(3976), - [anon_sym_is] = ACTIONS(3976), - [anon_sym_DASH_GT] = ACTIONS(3976), - [anon_sym_with] = ACTIONS(3976), - [aux_sym_preproc_if_token3] = ACTIONS(3976), - [aux_sym_preproc_else_token1] = ACTIONS(3976), - [aux_sym_preproc_elif_token1] = ACTIONS(3976), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6341), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536030,29 +533205,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3644] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3644), [sym_preproc_endregion] = STATE(3644), [sym_preproc_line] = STATE(3644), @@ -536062,43 +533232,43 @@ 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(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6335), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6341), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536109,29 +533279,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3645] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3645), [sym_preproc_endregion] = STATE(3645), [sym_preproc_line] = STATE(3645), @@ -536141,43 +533306,43 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6335), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6341), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536188,8 +533353,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3646] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3646), [sym_preproc_endregion] = STATE(3646), [sym_preproc_line] = STATE(3646), @@ -536199,64 +533380,43 @@ 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_EQ] = ACTIONS(5937), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [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(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [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(5684), - [anon_sym_with] = ACTIONS(5684), - [sym_grit_metavariable] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6341), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536267,29 +533427,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3647] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3647), [sym_preproc_endregion] = STATE(3647), [sym_preproc_line] = STATE(3647), @@ -536299,43 +533454,43 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4748), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5819), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5821), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_COMMA] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6333), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6335), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(6337), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6341), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536346,29 +533501,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5328), }, [3648] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3648), [sym_preproc_endregion] = STATE(3648), [sym_preproc_line] = STATE(3648), @@ -536378,42 +533528,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3648), [sym_preproc_define] = STATE(3648), [sym_preproc_undef] = STATE(3648), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6341), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536424,30 +533575,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(4672), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3649] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), [sym_preproc_region] = STATE(3649), [sym_preproc_endregion] = STATE(3649), [sym_preproc_line] = STATE(3649), @@ -536457,42 +533587,59 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_RBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_RPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_RBRACE] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_in] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3910), + [anon_sym_switch] = ACTIONS(3910), + [anon_sym_when] = ACTIONS(3910), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3910), + [anon_sym_or] = ACTIONS(3910), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3910), + [sym_op_left_shift] = ACTIONS(3910), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3910), + [sym_op_coalescing] = ACTIONS(3910), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_into] = ACTIONS(3910), + [anon_sym_on] = ACTIONS(3910), + [anon_sym_equals] = ACTIONS(3910), + [anon_sym_by] = ACTIONS(3910), + [anon_sym_as] = ACTIONS(3910), + [anon_sym_is] = ACTIONS(3910), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3910), + [aux_sym_preproc_if_token3] = ACTIONS(3910), + [aux_sym_preproc_else_token1] = ACTIONS(3910), + [aux_sym_preproc_elif_token1] = ACTIONS(3910), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536503,30 +533650,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3650] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3650), [sym_preproc_endregion] = STATE(3650), [sym_preproc_line] = STATE(3650), @@ -536536,43 +533676,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3650), [sym_preproc_define] = STATE(3650), [sym_preproc_undef] = STATE(3650), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_RBRACK] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5314), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_when] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536585,27 +533726,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3651] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3651), [sym_preproc_endregion] = STATE(3651), [sym_preproc_line] = STATE(3651), @@ -536615,42 +533750,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3651), [sym_preproc_define] = STATE(3651), [sym_preproc_undef] = STATE(3651), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536661,30 +533798,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3652] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3652), [sym_preproc_endregion] = STATE(3652), [sym_preproc_line] = STATE(3652), @@ -536694,43 +533824,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3652), [sym_preproc_define] = STATE(3652), [sym_preproc_undef] = STATE(3652), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4708), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4708), - [anon_sym_RBRACE] = ACTIONS(4708), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5819), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5821), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536743,27 +533874,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3653] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3653), [sym_preproc_endregion] = STATE(3653), [sym_preproc_line] = STATE(3653), @@ -536773,43 +533898,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3653), [sym_preproc_define] = STATE(3653), [sym_preproc_undef] = STATE(3653), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5935), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4782), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4782), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5907), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5308), + [anon_sym_RBRACE] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536822,27 +533948,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3654] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3654), [sym_preproc_endregion] = STATE(3654), [sym_preproc_line] = STATE(3654), @@ -536852,43 +533972,44 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5935), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4748), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4748), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5907), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6276), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6278), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(6288), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536901,27 +534022,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3655] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3655), [sym_preproc_endregion] = STATE(3655), [sym_preproc_line] = STATE(3655), @@ -536931,43 +534046,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3655), [sym_preproc_define] = STATE(3655), [sym_preproc_undef] = STATE(3655), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5935), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4708), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4708), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5907), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_when] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536980,27 +534096,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3656] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), [sym_preproc_region] = STATE(3656), [sym_preproc_endregion] = STATE(3656), [sym_preproc_line] = STATE(3656), @@ -537010,43 +534105,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3656), [sym_preproc_define] = STATE(3656), [sym_preproc_undef] = STATE(3656), + [anon_sym_EQ] = ACTIONS(6366), [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5935), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4790), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5907), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(6368), + [anon_sym_DASH_EQ] = ACTIONS(6368), + [anon_sym_STAR_EQ] = ACTIONS(6368), + [anon_sym_SLASH_EQ] = ACTIONS(6368), + [anon_sym_PERCENT_EQ] = ACTIONS(6368), + [anon_sym_AMP_EQ] = ACTIONS(6368), + [anon_sym_CARET_EQ] = ACTIONS(6368), + [anon_sym_PIPE_EQ] = ACTIONS(6368), + [anon_sym_LT_LT_EQ] = ACTIONS(6368), + [anon_sym_GT_GT_EQ] = ACTIONS(6368), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6368), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6368), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537059,6 +534170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3657] = { + [sym_initializer_expression] = STATE(4325), [sym_preproc_region] = STATE(3657), [sym_preproc_endregion] = STATE(3657), [sym_preproc_line] = STATE(3657), @@ -537068,64 +534180,58 @@ 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(5941), - [anon_sym_extern] = ACTIONS(5941), - [anon_sym_alias] = ACTIONS(5941), - [anon_sym_global] = ACTIONS(5941), - [anon_sym_unsafe] = ACTIONS(5941), - [anon_sym_static] = ACTIONS(5941), - [anon_sym_LBRACK] = ACTIONS(5943), - [anon_sym_LPAREN] = ACTIONS(5943), - [anon_sym_event] = ACTIONS(5941), - [anon_sym_class] = ACTIONS(5941), - [anon_sym_ref] = ACTIONS(5941), - [anon_sym_struct] = ACTIONS(5941), - [anon_sym_enum] = ACTIONS(5941), - [anon_sym_interface] = ACTIONS(5941), - [anon_sym_delegate] = ACTIONS(5941), - [anon_sym_record] = ACTIONS(5941), - [anon_sym_public] = ACTIONS(5941), - [anon_sym_private] = ACTIONS(5941), - [anon_sym_readonly] = ACTIONS(5941), - [anon_sym_abstract] = ACTIONS(5941), - [anon_sym_async] = ACTIONS(5941), - [anon_sym_const] = ACTIONS(5941), - [anon_sym_file] = ACTIONS(5941), - [anon_sym_fixed] = ACTIONS(5941), - [anon_sym_internal] = ACTIONS(5941), - [anon_sym_new] = ACTIONS(5941), - [anon_sym_override] = ACTIONS(5941), - [anon_sym_partial] = ACTIONS(5941), - [anon_sym_protected] = ACTIONS(5941), - [anon_sym_required] = ACTIONS(5941), - [anon_sym_sealed] = ACTIONS(5941), - [anon_sym_virtual] = ACTIONS(5941), - [anon_sym_volatile] = ACTIONS(5941), - [anon_sym_where] = ACTIONS(5941), - [anon_sym_notnull] = ACTIONS(5941), - [anon_sym_unmanaged] = ACTIONS(5941), - [anon_sym_TILDE] = ACTIONS(5943), - [anon_sym_implicit] = ACTIONS(5941), - [anon_sym_explicit] = ACTIONS(5941), - [anon_sym_scoped] = ACTIONS(5941), - [anon_sym_var] = ACTIONS(5941), - [sym_predefined_type] = ACTIONS(5941), - [anon_sym_yield] = ACTIONS(5941), - [anon_sym_when] = ACTIONS(5941), - [anon_sym_from] = ACTIONS(5941), - [anon_sym_into] = ACTIONS(5941), - [anon_sym_join] = ACTIONS(5941), - [anon_sym_on] = ACTIONS(5941), - [anon_sym_equals] = 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_by] = ACTIONS(5941), - [anon_sym_select] = ACTIONS(5941), - [sym_grit_metavariable] = ACTIONS(5943), - [aux_sym_preproc_if_token1] = ACTIONS(5943), + [anon_sym_SEMI] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(5540), + [anon_sym_COLON] = ACTIONS(5538), + [anon_sym_COMMA] = ACTIONS(5538), + [anon_sym_RBRACK] = ACTIONS(5538), + [anon_sym_LPAREN] = ACTIONS(5538), + [anon_sym_RPAREN] = ACTIONS(5538), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(5538), + [anon_sym_LT] = ACTIONS(5543), + [anon_sym_GT] = ACTIONS(5543), + [anon_sym_in] = ACTIONS(5543), + [anon_sym_QMARK] = ACTIONS(5543), + [anon_sym_DOT] = ACTIONS(5543), + [anon_sym_EQ_GT] = ACTIONS(5538), + [anon_sym_STAR] = ACTIONS(5538), + [anon_sym_switch] = ACTIONS(5538), + [anon_sym_when] = ACTIONS(5538), + [anon_sym_DOT_DOT] = ACTIONS(5538), + [anon_sym_LT_EQ] = ACTIONS(5538), + [anon_sym_GT_EQ] = ACTIONS(5538), + [anon_sym_and] = ACTIONS(5538), + [anon_sym_or] = ACTIONS(5538), + [anon_sym_EQ_EQ] = ACTIONS(5538), + [anon_sym_BANG_EQ] = ACTIONS(5538), + [anon_sym_AMP_AMP] = ACTIONS(5538), + [anon_sym_PIPE_PIPE] = ACTIONS(5538), + [anon_sym_AMP] = ACTIONS(5543), + [sym_op_bitwise_or] = ACTIONS(5543), + [anon_sym_CARET] = ACTIONS(5538), + [sym_op_left_shift] = ACTIONS(5538), + [sym_op_right_shift] = ACTIONS(5543), + [sym_op_unsigned_right_shift] = ACTIONS(5538), + [anon_sym_PLUS] = ACTIONS(5543), + [anon_sym_DASH] = ACTIONS(5543), + [sym_op_divide] = ACTIONS(5543), + [sym_op_modulo] = ACTIONS(5538), + [sym_op_coalescing] = ACTIONS(5538), + [anon_sym_BANG] = ACTIONS(5543), + [anon_sym_PLUS_PLUS] = ACTIONS(5538), + [anon_sym_DASH_DASH] = ACTIONS(5538), + [anon_sym_into] = ACTIONS(5538), + [anon_sym_on] = ACTIONS(5538), + [anon_sym_equals] = ACTIONS(5538), + [anon_sym_by] = ACTIONS(5538), + [anon_sym_as] = ACTIONS(5538), + [anon_sym_is] = ACTIONS(5538), + [anon_sym_DASH_GT] = ACTIONS(5538), + [anon_sym_with] = ACTIONS(5538), + [aux_sym_preproc_if_token3] = ACTIONS(5538), + [aux_sym_preproc_else_token1] = ACTIONS(5538), + [aux_sym_preproc_elif_token1] = ACTIONS(5538), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537138,27 +534244,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3658] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6411), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6004), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if_in_attribute_list] = STATE(5927), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3658), [sym_preproc_endregion] = STATE(3658), [sym_preproc_line] = STATE(3658), @@ -537168,43 +534268,44 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(5564), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4843), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5448), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(1271), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(1271), - [anon_sym_out] = ACTIONS(1271), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_this] = ACTIONS(1271), - [anon_sym_scoped] = ACTIONS(5468), - [anon_sym_params] = ACTIONS(5452), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), - [aux_sym_preproc_if_token1] = ACTIONS(5454), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_when] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537217,27 +534318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3659] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_initializer_expression] = STATE(4379), [sym_preproc_region] = STATE(3659), [sym_preproc_endregion] = STATE(3659), [sym_preproc_line] = STATE(3659), @@ -537247,43 +534328,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3659), [sym_preproc_define] = STATE(3659), [sym_preproc_undef] = STATE(3659), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5891), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5893), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_by] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5590), + [anon_sym_LBRACK] = ACTIONS(5590), + [anon_sym_COLON] = ACTIONS(5590), + [anon_sym_COMMA] = ACTIONS(5590), + [anon_sym_RBRACK] = ACTIONS(5590), + [anon_sym_LPAREN] = ACTIONS(5590), + [anon_sym_RPAREN] = ACTIONS(5590), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(5590), + [anon_sym_LT] = ACTIONS(5592), + [anon_sym_GT] = ACTIONS(5592), + [anon_sym_in] = ACTIONS(5592), + [anon_sym_QMARK] = ACTIONS(5592), + [anon_sym_DOT] = ACTIONS(5592), + [anon_sym_EQ_GT] = ACTIONS(5590), + [anon_sym_STAR] = ACTIONS(5590), + [anon_sym_switch] = ACTIONS(5590), + [anon_sym_when] = ACTIONS(5590), + [anon_sym_DOT_DOT] = ACTIONS(5590), + [anon_sym_LT_EQ] = ACTIONS(5590), + [anon_sym_GT_EQ] = ACTIONS(5590), + [anon_sym_and] = ACTIONS(5590), + [anon_sym_or] = ACTIONS(5590), + [anon_sym_EQ_EQ] = ACTIONS(5590), + [anon_sym_BANG_EQ] = ACTIONS(5590), + [anon_sym_AMP_AMP] = ACTIONS(5590), + [anon_sym_PIPE_PIPE] = ACTIONS(5590), + [anon_sym_AMP] = ACTIONS(5592), + [sym_op_bitwise_or] = ACTIONS(5592), + [anon_sym_CARET] = ACTIONS(5590), + [sym_op_left_shift] = ACTIONS(5590), + [sym_op_right_shift] = ACTIONS(5592), + [sym_op_unsigned_right_shift] = ACTIONS(5590), + [anon_sym_PLUS] = ACTIONS(5592), + [anon_sym_DASH] = ACTIONS(5592), + [sym_op_divide] = ACTIONS(5592), + [sym_op_modulo] = ACTIONS(5590), + [sym_op_coalescing] = ACTIONS(5590), + [anon_sym_BANG] = ACTIONS(5592), + [anon_sym_PLUS_PLUS] = ACTIONS(5590), + [anon_sym_DASH_DASH] = ACTIONS(5590), + [anon_sym_into] = ACTIONS(5590), + [anon_sym_on] = ACTIONS(5590), + [anon_sym_equals] = ACTIONS(5590), + [anon_sym_by] = ACTIONS(5590), + [anon_sym_as] = ACTIONS(5590), + [anon_sym_is] = ACTIONS(5590), + [anon_sym_DASH_GT] = ACTIONS(5590), + [anon_sym_with] = ACTIONS(5590), + [aux_sym_preproc_if_token3] = ACTIONS(5590), + [aux_sym_preproc_else_token1] = ACTIONS(5590), + [aux_sym_preproc_elif_token1] = ACTIONS(5590), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537296,27 +534392,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3660] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3660), [sym_preproc_endregion] = STATE(3660), [sym_preproc_line] = STATE(3660), @@ -537326,43 +534416,44 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5891), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5893), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_by] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6258), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5304), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5304), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5304), + [anon_sym_or] = ACTIONS(5304), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(6272), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537375,27 +534466,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3661] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3661), [sym_preproc_endregion] = STATE(3661), [sym_preproc_line] = STATE(3661), @@ -537405,43 +534490,44 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5891), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5893), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_by] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_COMMA] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5232), + [anon_sym_RBRACE] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6276), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6278), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(6288), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537454,27 +534540,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3662] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3662), [sym_preproc_endregion] = STATE(3662), [sym_preproc_line] = STATE(3662), @@ -537484,43 +534564,44 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5891), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5893), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_by] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5304), + [anon_sym_COMMA] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5304), + [anon_sym_RBRACE] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6276), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(6236), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6278), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6280), + [sym_op_right_shift] = ACTIONS(6282), + [sym_op_unsigned_right_shift] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6284), + [sym_op_modulo] = ACTIONS(6286), + [sym_op_coalescing] = ACTIONS(6288), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537533,27 +534614,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3663] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(3663), [sym_preproc_endregion] = STATE(3663), [sym_preproc_line] = STATE(3663), @@ -537563,43 +534623,59 @@ 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(5430), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_RBRACK] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [sym__identifier_token] = ACTIONS(3735), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3735), + [anon_sym_global] = ACTIONS(3735), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3735), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_where] = ACTIONS(3735), + [anon_sym_QMARK] = ACTIONS(3694), + [anon_sym_notnull] = ACTIONS(3735), + [anon_sym_unmanaged] = ACTIONS(3735), + [anon_sym_DOT] = ACTIONS(3694), + [anon_sym_scoped] = ACTIONS(3735), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3735), + [anon_sym_STAR] = ACTIONS(3694), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3735), + [anon_sym_when] = ACTIONS(3735), + [anon_sym_from] = ACTIONS(3735), + [anon_sym_into] = ACTIONS(3735), + [anon_sym_join] = ACTIONS(3735), + [anon_sym_on] = ACTIONS(3735), + [anon_sym_equals] = ACTIONS(3735), + [anon_sym_let] = ACTIONS(3735), + [anon_sym_orderby] = ACTIONS(3735), + [anon_sym_ascending] = ACTIONS(3735), + [anon_sym_descending] = ACTIONS(3735), + [anon_sym_group] = ACTIONS(3735), + [anon_sym_by] = ACTIONS(3735), + [anon_sym_select] = ACTIONS(3735), + [sym_grit_metavariable] = ACTIONS(3740), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537612,27 +534688,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3664] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3664), [sym_preproc_endregion] = STATE(3664), [sym_preproc_line] = STATE(3664), @@ -537642,43 +534712,44 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5893), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_when] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537691,27 +534762,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3665] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3665), [sym_preproc_endregion] = STATE(3665), [sym_preproc_line] = STATE(3665), @@ -537721,43 +534786,44 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5891), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5893), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_by] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(6272), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537770,27 +534836,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3666] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), + [sym_interpolation_alignment_clause] = STATE(7251), + [sym_interpolation_format_clause] = STATE(7683), [sym_preproc_region] = STATE(3666), [sym_preproc_endregion] = STATE(3666), [sym_preproc_line] = STATE(3666), @@ -537800,43 +534862,41 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(6370), + [anon_sym_COMMA] = ACTIONS(6372), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6374), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6378), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(6388), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537847,29 +534907,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(6392), }, [3667] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3667), [sym_preproc_endregion] = STATE(3667), [sym_preproc_line] = STATE(3667), @@ -537879,43 +534934,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3667), [sym_preproc_define] = STATE(3667), [sym_preproc_undef] = STATE(3667), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537928,27 +534984,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3668] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3668), [sym_preproc_endregion] = STATE(3668), [sym_preproc_line] = STATE(3668), @@ -537958,43 +535008,44 @@ 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(5430), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_RBRACK] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4748), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538007,27 +535058,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3669] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3669), [sym_preproc_endregion] = STATE(3669), [sym_preproc_line] = STATE(3669), @@ -538037,43 +535082,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3669), [sym_preproc_define] = STATE(3669), [sym_preproc_undef] = STATE(3669), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538086,27 +535132,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3670] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), + [sym_preproc_else_in_expression] = STATE(7792), + [sym_preproc_elif_in_expression] = STATE(7792), [sym_preproc_region] = STATE(3670), [sym_preproc_endregion] = STATE(3670), [sym_preproc_line] = STATE(3670), @@ -538116,43 +535158,42 @@ 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(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(6394), + [aux_sym_preproc_else_token1] = ACTIONS(2897), + [aux_sym_preproc_elif_token1] = ACTIONS(2899), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538165,27 +535206,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3671] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3671), [sym_preproc_endregion] = STATE(3671), [sym_preproc_line] = STATE(3671), @@ -538195,43 +535230,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3671), [sym_preproc_define] = STATE(3671), [sym_preproc_undef] = STATE(3671), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6238), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5364), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(6252), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538244,27 +535280,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3672] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), + [sym_preproc_else_in_expression] = STATE(7780), + [sym_preproc_elif_in_expression] = STATE(7780), [sym_preproc_region] = STATE(3672), [sym_preproc_endregion] = STATE(3672), [sym_preproc_line] = STATE(3672), @@ -538274,43 +535306,42 @@ 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(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(6396), + [aux_sym_preproc_else_token1] = ACTIONS(2897), + [aux_sym_preproc_elif_token1] = ACTIONS(2899), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538323,27 +535354,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3673] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1718), + [sym_op_lte] = STATE(1718), + [sym_op_eq] = STATE(1719), + [sym_op_neq] = STATE(1719), + [sym_op_gt] = STATE(1718), + [sym_op_gte] = STATE(1718), + [sym_op_and] = STATE(1720), + [sym_op_or] = STATE(1721), + [sym_op_bitwise_and] = STATE(1723), + [sym_op_bitwise_xor] = STATE(1728), + [sym_op_plus] = STATE(1730), + [sym_op_minus] = STATE(1730), + [sym_op_multiply] = STATE(1714), [sym_preproc_region] = STATE(3673), [sym_preproc_endregion] = STATE(3673), [sym_preproc_line] = STATE(3673), @@ -538353,43 +535378,44 @@ 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(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_COLON] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538402,27 +535428,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3674] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3674), [sym_preproc_endregion] = STATE(3674), [sym_preproc_line] = STATE(3674), @@ -538432,43 +535452,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3674), [sym_preproc_define] = STATE(3674), [sym_preproc_undef] = STATE(3674), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6238), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5332), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(6252), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538481,27 +535502,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3675] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3675), [sym_preproc_endregion] = STATE(3675), [sym_preproc_line] = STATE(3675), @@ -538511,43 +535526,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3675), [sym_preproc_define] = STATE(3675), [sym_preproc_undef] = STATE(3675), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538558,29 +535573,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(1365), }, [3676] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3676), [sym_preproc_endregion] = STATE(3676), [sym_preproc_line] = STATE(3676), @@ -538590,43 +535600,44 @@ 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(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6238), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5296), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(6252), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538639,27 +535650,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3677] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3677), [sym_preproc_endregion] = STATE(3677), [sym_preproc_line] = STATE(3677), @@ -538669,43 +535674,44 @@ 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(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6238), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5336), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(6252), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538718,27 +535724,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3678] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(3678), [sym_preproc_endregion] = STATE(3678), [sym_preproc_line] = STATE(3678), @@ -538748,43 +535748,44 @@ 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(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6238), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5356), + [anon_sym_DOT_DOT] = ACTIONS(6240), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(6252), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538797,27 +535798,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3679] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3679), [sym_preproc_endregion] = STATE(3679), [sym_preproc_line] = STATE(3679), @@ -538827,43 +535822,43 @@ 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(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6333), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6335), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(6337), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6341), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538874,29 +535869,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5296), }, [3680] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3680), [sym_preproc_endregion] = STATE(3680), [sym_preproc_line] = STATE(3680), @@ -538906,43 +535896,44 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538955,6 +535946,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3681] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3681), [sym_preproc_endregion] = STATE(3681), [sym_preproc_line] = STATE(3681), @@ -538964,97 +535970,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3681), [sym_preproc_define] = STATE(3681), [sym_preproc_undef] = STATE(3681), - [anon_sym_SEMI] = ACTIONS(5945), - [anon_sym_LBRACK] = ACTIONS(5945), - [anon_sym_COLON] = ACTIONS(5945), - [anon_sym_COMMA] = ACTIONS(5945), - [anon_sym_RBRACK] = ACTIONS(5945), - [anon_sym_LPAREN] = ACTIONS(5945), - [anon_sym_RPAREN] = ACTIONS(5945), - [anon_sym_LBRACE] = ACTIONS(5945), - [anon_sym_RBRACE] = ACTIONS(5945), - [anon_sym_LT] = ACTIONS(5947), - [anon_sym_GT] = ACTIONS(5947), - [anon_sym_in] = ACTIONS(5947), - [anon_sym_where] = ACTIONS(5945), - [anon_sym_QMARK] = ACTIONS(5947), - [anon_sym_BANG] = ACTIONS(5947), - [anon_sym_PLUS_PLUS] = ACTIONS(5945), - [anon_sym_DASH_DASH] = ACTIONS(5945), - [anon_sym_PLUS] = ACTIONS(5947), - [anon_sym_DASH] = ACTIONS(5947), - [anon_sym_STAR] = ACTIONS(5945), - [anon_sym_SLASH] = ACTIONS(5947), - [anon_sym_PERCENT] = ACTIONS(5945), - [anon_sym_CARET] = ACTIONS(5945), - [anon_sym_PIPE] = ACTIONS(5947), - [anon_sym_AMP] = ACTIONS(5947), - [anon_sym_LT_LT] = ACTIONS(5945), - [anon_sym_GT_GT] = ACTIONS(5947), - [anon_sym_GT_GT_GT] = ACTIONS(5945), - [anon_sym_EQ_EQ] = ACTIONS(5945), - [anon_sym_BANG_EQ] = ACTIONS(5945), - [anon_sym_GT_EQ] = ACTIONS(5945), - [anon_sym_LT_EQ] = ACTIONS(5945), - [anon_sym_DOT] = ACTIONS(5947), - [anon_sym_EQ_GT] = ACTIONS(5945), - [anon_sym_switch] = ACTIONS(5945), - [anon_sym_DOT_DOT] = ACTIONS(5945), - [anon_sym_and] = ACTIONS(5945), - [anon_sym_or] = ACTIONS(5947), - [anon_sym_AMP_AMP] = ACTIONS(5945), - [anon_sym_PIPE_PIPE] = ACTIONS(5945), - [sym_op_coalescing] = ACTIONS(5945), - [anon_sym_from] = ACTIONS(5945), - [anon_sym_into] = ACTIONS(5945), - [anon_sym_join] = ACTIONS(5945), - [anon_sym_on] = ACTIONS(5945), - [anon_sym_equals] = ACTIONS(5945), - [anon_sym_let] = ACTIONS(5945), - [anon_sym_orderby] = ACTIONS(5945), - [anon_sym_group] = ACTIONS(5945), - [anon_sym_by] = ACTIONS(5945), - [anon_sym_select] = ACTIONS(5945), - [anon_sym_as] = ACTIONS(5945), - [anon_sym_is] = ACTIONS(5945), - [anon_sym_DASH_GT] = ACTIONS(5945), - [anon_sym_with] = ACTIONS(5945), - [aux_sym_preproc_if_token3] = ACTIONS(5945), - [aux_sym_preproc_else_token1] = ACTIONS(5945), - [aux_sym_preproc_elif_token1] = ACTIONS(5945), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5314), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5314), }, [3682] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3682), [sym_preproc_endregion] = STATE(3682), [sym_preproc_line] = STATE(3682), @@ -539064,43 +536044,43 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6333), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6335), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(6337), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6341), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -539111,29 +536091,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5336), }, [3683] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3683), [sym_preproc_endregion] = STATE(3683), [sym_preproc_line] = STATE(3683), @@ -539143,43 +536118,43 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6333), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6335), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(6337), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6341), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -539190,29 +536165,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5356), }, [3684] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3684), [sym_preproc_endregion] = STATE(3684), [sym_preproc_line] = STATE(3684), @@ -539222,43 +536192,44 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6258), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5232), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5232), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(6272), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -539271,27 +536242,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3685] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3685), [sym_preproc_endregion] = STATE(3685), [sym_preproc_line] = STATE(3685), @@ -539301,76 +536266,71 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5352), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5352), }, [3686] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3686), [sym_preproc_endregion] = STATE(3686), [sym_preproc_line] = STATE(3686), @@ -539380,43 +536340,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3686), [sym_preproc_define] = STATE(3686), [sym_preproc_undef] = STATE(3686), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5895), - [anon_sym_is] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6333), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6321), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6335), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(6337), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6341), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -539427,29 +536387,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5364), }, [3687] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(3687), [sym_preproc_endregion] = STATE(3687), [sym_preproc_line] = STATE(3687), @@ -539459,76 +536414,71 @@ 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(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_RBRACK] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5308), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5308), }, [3688] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3688), [sym_preproc_endregion] = STATE(3688), [sym_preproc_line] = STATE(3688), @@ -539538,43 +536488,44 @@ 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(5430), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_RBRACK] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4752), - [anon_sym_RBRACE] = ACTIONS(4752), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6258), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5364), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(6272), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -539587,27 +536538,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3689] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3689), [sym_preproc_endregion] = STATE(3689), [sym_preproc_line] = STATE(3689), @@ -539617,43 +536562,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3689), [sym_preproc_define] = STATE(3689), [sym_preproc_undef] = STATE(3689), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6258), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5332), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(6272), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(6254), + [anon_sym_is] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -539666,6 +536612,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3690] = { + [sym_argument_list] = STATE(3923), + [sym_initializer_expression] = STATE(4575), [sym_preproc_region] = STATE(3690), [sym_preproc_endregion] = STATE(3690), [sym_preproc_line] = STATE(3690), @@ -539675,64 +536623,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3690), [sym_preproc_define] = STATE(3690), [sym_preproc_undef] = STATE(3690), - [sym__identifier_token] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym_alias] = ACTIONS(5456), - [anon_sym_global] = ACTIONS(5456), - [anon_sym_unsafe] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5458), - [anon_sym_LPAREN] = ACTIONS(5458), - [anon_sym_event] = ACTIONS(5456), - [anon_sym_class] = ACTIONS(5456), - [anon_sym_ref] = ACTIONS(5456), - [anon_sym_struct] = ACTIONS(5456), - [anon_sym_enum] = ACTIONS(5456), - [anon_sym_interface] = ACTIONS(5456), - [anon_sym_delegate] = ACTIONS(5456), - [anon_sym_record] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_readonly] = ACTIONS(5456), - [anon_sym_abstract] = ACTIONS(5456), - [anon_sym_async] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_file] = ACTIONS(5456), - [anon_sym_fixed] = ACTIONS(5456), - [anon_sym_internal] = ACTIONS(5456), - [anon_sym_new] = ACTIONS(5456), - [anon_sym_override] = ACTIONS(5456), - [anon_sym_partial] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_required] = ACTIONS(5456), - [anon_sym_sealed] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_where] = ACTIONS(5456), - [anon_sym_notnull] = ACTIONS(5456), - [anon_sym_unmanaged] = ACTIONS(5456), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_implicit] = ACTIONS(5456), - [anon_sym_explicit] = ACTIONS(5456), - [anon_sym_scoped] = ACTIONS(5456), - [anon_sym_var] = ACTIONS(5456), - [sym_predefined_type] = ACTIONS(5456), - [anon_sym_yield] = ACTIONS(5456), - [anon_sym_when] = ACTIONS(5456), - [anon_sym_from] = ACTIONS(5456), - [anon_sym_into] = ACTIONS(5456), - [anon_sym_join] = ACTIONS(5456), - [anon_sym_on] = ACTIONS(5456), - [anon_sym_equals] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(5456), - [anon_sym_orderby] = ACTIONS(5456), - [anon_sym_ascending] = ACTIONS(5456), - [anon_sym_descending] = ACTIONS(5456), - [anon_sym_group] = ACTIONS(5456), - [anon_sym_by] = ACTIONS(5456), - [anon_sym_select] = ACTIONS(5456), - [sym_grit_metavariable] = ACTIONS(5458), - [aux_sym_preproc_if_token1] = ACTIONS(5458), + [anon_sym_SEMI] = ACTIONS(5500), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_COLON] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(5500), + [anon_sym_RBRACK] = ACTIONS(5500), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5500), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(5500), + [anon_sym_LT] = ACTIONS(5504), + [anon_sym_GT] = ACTIONS(5504), + [anon_sym_in] = ACTIONS(5500), + [anon_sym_QMARK] = ACTIONS(5504), + [anon_sym_DOT] = ACTIONS(5504), + [anon_sym_EQ_GT] = ACTIONS(5500), + [anon_sym_STAR] = ACTIONS(5500), + [anon_sym_switch] = ACTIONS(5500), + [anon_sym_when] = ACTIONS(5500), + [anon_sym_DOT_DOT] = ACTIONS(5500), + [anon_sym_LT_EQ] = ACTIONS(5500), + [anon_sym_GT_EQ] = ACTIONS(5500), + [anon_sym_and] = ACTIONS(5500), + [anon_sym_or] = ACTIONS(5500), + [anon_sym_EQ_EQ] = ACTIONS(5500), + [anon_sym_BANG_EQ] = ACTIONS(5500), + [anon_sym_AMP_AMP] = ACTIONS(5500), + [anon_sym_PIPE_PIPE] = ACTIONS(5500), + [anon_sym_AMP] = ACTIONS(5504), + [sym_op_bitwise_or] = ACTIONS(5504), + [anon_sym_CARET] = ACTIONS(5500), + [sym_op_left_shift] = ACTIONS(5500), + [sym_op_right_shift] = ACTIONS(5504), + [sym_op_unsigned_right_shift] = ACTIONS(5500), + [anon_sym_PLUS] = ACTIONS(5504), + [anon_sym_DASH] = ACTIONS(5504), + [sym_op_divide] = ACTIONS(5504), + [sym_op_modulo] = ACTIONS(5500), + [sym_op_coalescing] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5504), + [anon_sym_PLUS_PLUS] = ACTIONS(5500), + [anon_sym_DASH_DASH] = ACTIONS(5500), + [anon_sym_on] = ACTIONS(5500), + [anon_sym_equals] = ACTIONS(5500), + [anon_sym_by] = ACTIONS(5500), + [anon_sym_as] = ACTIONS(5500), + [anon_sym_is] = ACTIONS(5500), + [anon_sym_DASH_GT] = ACTIONS(5500), + [anon_sym_with] = ACTIONS(5500), + [aux_sym_preproc_if_token3] = ACTIONS(5500), + [aux_sym_preproc_else_token1] = ACTIONS(5500), + [aux_sym_preproc_elif_token1] = ACTIONS(5500), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -539745,27 +536686,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3691] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(3691), [sym_preproc_endregion] = STATE(3691), [sym_preproc_line] = STATE(3691), @@ -539775,43 +536710,44 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4782), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5819), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5821), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -539824,27 +536760,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3692] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3692), [sym_preproc_endregion] = STATE(3692), [sym_preproc_line] = STATE(3692), @@ -539854,43 +536784,43 @@ 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(5430), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_RBRACK] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -539903,6 +536833,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3693] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3693), [sym_preproc_endregion] = STATE(3693), [sym_preproc_line] = STATE(3693), @@ -539912,64 +536857,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3693), [sym_preproc_define] = STATE(3693), [sym_preproc_undef] = STATE(3693), - [anon_sym_SEMI] = ACTIONS(4363), - [anon_sym_LBRACK] = ACTIONS(4363), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_COMMA] = ACTIONS(4363), - [anon_sym_RBRACK] = ACTIONS(4363), - [anon_sym_LPAREN] = ACTIONS(4363), - [anon_sym_RPAREN] = ACTIONS(4363), - [anon_sym_LBRACE] = ACTIONS(4363), - [anon_sym_RBRACE] = ACTIONS(4363), - [anon_sym_LT] = ACTIONS(4361), - [anon_sym_GT] = ACTIONS(4361), - [anon_sym_in] = ACTIONS(4361), - [anon_sym_where] = ACTIONS(4363), - [anon_sym_QMARK] = ACTIONS(4361), - [anon_sym_BANG] = ACTIONS(4361), - [anon_sym_PLUS_PLUS] = ACTIONS(4363), - [anon_sym_DASH_DASH] = ACTIONS(4363), - [anon_sym_PLUS] = ACTIONS(4361), - [anon_sym_DASH] = ACTIONS(4361), - [anon_sym_STAR] = ACTIONS(4363), - [anon_sym_SLASH] = ACTIONS(4361), - [anon_sym_PERCENT] = ACTIONS(4363), - [anon_sym_CARET] = ACTIONS(4363), - [anon_sym_PIPE] = ACTIONS(4361), - [anon_sym_AMP] = ACTIONS(4361), - [anon_sym_LT_LT] = ACTIONS(4363), - [anon_sym_GT_GT] = ACTIONS(4361), - [anon_sym_GT_GT_GT] = ACTIONS(4363), - [anon_sym_EQ_EQ] = ACTIONS(4363), - [anon_sym_BANG_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_DOT] = ACTIONS(4361), - [anon_sym_EQ_GT] = ACTIONS(4363), - [anon_sym_switch] = ACTIONS(4363), - [anon_sym_DOT_DOT] = ACTIONS(4363), - [anon_sym_and] = ACTIONS(4363), - [anon_sym_or] = ACTIONS(4361), - [anon_sym_AMP_AMP] = ACTIONS(4363), - [anon_sym_PIPE_PIPE] = ACTIONS(4363), - [sym_op_coalescing] = ACTIONS(4363), - [anon_sym_from] = ACTIONS(4363), - [anon_sym_into] = ACTIONS(4363), - [anon_sym_join] = ACTIONS(4363), - [anon_sym_on] = ACTIONS(4363), - [anon_sym_equals] = ACTIONS(4363), - [anon_sym_let] = ACTIONS(4363), - [anon_sym_orderby] = ACTIONS(4363), - [anon_sym_group] = ACTIONS(4363), - [anon_sym_by] = ACTIONS(4363), - [anon_sym_select] = ACTIONS(4363), - [anon_sym_as] = ACTIONS(4363), - [anon_sym_is] = ACTIONS(4363), - [anon_sym_DASH_GT] = ACTIONS(4363), - [anon_sym_with] = ACTIONS(4363), - [aux_sym_preproc_if_token3] = ACTIONS(4363), - [aux_sym_preproc_else_token1] = ACTIONS(4363), - [aux_sym_preproc_elif_token1] = ACTIONS(4363), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6410), + [sym_op_right_shift] = ACTIONS(6412), + [sym_op_unsigned_right_shift] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -539982,27 +536906,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3694] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3694), [sym_preproc_endregion] = STATE(3694), [sym_preproc_line] = STATE(3694), @@ -540012,42 +536930,43 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5857), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5861), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -540058,30 +536977,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4790), }, [3695] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3695), [sym_preproc_endregion] = STATE(3695), [sym_preproc_line] = STATE(3695), @@ -540091,43 +537003,43 @@ 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(5508), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_when] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -540140,27 +537052,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3696] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3696), [sym_preproc_endregion] = STATE(3696), [sym_preproc_line] = STATE(3696), @@ -540170,42 +537076,43 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -540216,30 +537123,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4794), }, [3697] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3697), [sym_preproc_endregion] = STATE(3697), [sym_preproc_line] = STATE(3697), @@ -540249,43 +537149,43 @@ 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(5508), - [anon_sym_COLON] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_when] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -540298,27 +537198,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3698] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3698), [sym_preproc_endregion] = STATE(3698), [sym_preproc_line] = STATE(3698), @@ -540328,43 +537222,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3698), [sym_preproc_define] = STATE(3698), [sym_preproc_undef] = STATE(3698), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -540377,27 +537271,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3699] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3699), [sym_preproc_endregion] = STATE(3699), [sym_preproc_line] = STATE(3699), @@ -540407,43 +537295,43 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -540456,27 +537344,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3700] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3700), [sym_preproc_endregion] = STATE(3700), [sym_preproc_line] = STATE(3700), @@ -540486,43 +537368,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3700), [sym_preproc_define] = STATE(3700), [sym_preproc_undef] = STATE(3700), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6444), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(6446), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -540535,27 +537417,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3701] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3701), [sym_preproc_endregion] = STATE(3701), [sym_preproc_line] = STATE(3701), @@ -540565,43 +537441,43 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5794), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -540614,27 +537490,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3702] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3702), [sym_preproc_endregion] = STATE(3702), [sym_preproc_line] = STATE(3702), @@ -540644,43 +537514,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3702), [sym_preproc_define] = STATE(3702), [sym_preproc_undef] = STATE(3702), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -540693,27 +537563,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3703] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3703), [sym_preproc_endregion] = STATE(3703), [sym_preproc_line] = STATE(3703), @@ -540723,42 +537587,43 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4766), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -540769,30 +537634,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4766), }, [3704] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3704), [sym_preproc_endregion] = STATE(3704), [sym_preproc_line] = STATE(3704), @@ -540802,42 +537660,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3704), [sym_preproc_define] = STATE(3704), [sym_preproc_undef] = STATE(3704), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -540848,30 +537707,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(1435), }, [3705] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3705), [sym_preproc_endregion] = STATE(3705), [sym_preproc_line] = STATE(3705), @@ -540881,43 +537733,43 @@ 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(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6462), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -540930,27 +537782,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3706] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3706), [sym_preproc_endregion] = STATE(3706), [sym_preproc_line] = STATE(3706), @@ -540960,43 +537806,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3706), [sym_preproc_define] = STATE(3706), [sym_preproc_undef] = STATE(3706), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -541009,27 +537855,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3707] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3707), [sym_preproc_endregion] = STATE(3707), [sym_preproc_line] = STATE(3707), @@ -541039,43 +537879,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3707), [sym_preproc_define] = STATE(3707), [sym_preproc_undef] = STATE(3707), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5873), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6462), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -541088,27 +537928,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3708] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3708), [sym_preproc_endregion] = STATE(3708), [sym_preproc_line] = STATE(3708), @@ -541118,43 +537952,43 @@ 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(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5873), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_in] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -541167,27 +538001,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3709] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3709), [sym_preproc_endregion] = STATE(3709), [sym_preproc_line] = STATE(3709), @@ -541197,43 +538025,43 @@ 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(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5873), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5366), + [anon_sym_QMARK] = ACTIONS(6464), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6444), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(6446), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -541246,6 +538074,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3710] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3710), [sym_preproc_endregion] = STATE(3710), [sym_preproc_line] = STATE(3710), @@ -541255,64 +538098,43 @@ 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_SEMI] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COLON] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(4353), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_in] = ACTIONS(4351), - [anon_sym_where] = ACTIONS(4353), - [anon_sym_QMARK] = ACTIONS(4351), - [anon_sym_BANG] = ACTIONS(4351), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_SLASH] = ACTIONS(4351), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_AMP] = ACTIONS(4351), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4351), - [anon_sym_GT_GT_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ_GT] = ACTIONS(4353), - [anon_sym_switch] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_and] = ACTIONS(4353), - [anon_sym_or] = ACTIONS(4351), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [sym_op_coalescing] = ACTIONS(4353), - [anon_sym_from] = ACTIONS(4353), - [anon_sym_into] = ACTIONS(4353), - [anon_sym_join] = ACTIONS(4353), - [anon_sym_on] = ACTIONS(4353), - [anon_sym_equals] = ACTIONS(4353), - [anon_sym_let] = ACTIONS(4353), - [anon_sym_orderby] = ACTIONS(4353), - [anon_sym_group] = ACTIONS(4353), - [anon_sym_by] = ACTIONS(4353), - [anon_sym_select] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(4353), - [anon_sym_with] = ACTIONS(4353), - [aux_sym_preproc_if_token3] = ACTIONS(4353), - [aux_sym_preproc_else_token1] = ACTIONS(4353), - [aux_sym_preproc_elif_token1] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -541325,27 +538147,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3711] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3711), [sym_preproc_endregion] = STATE(3711), [sym_preproc_line] = STATE(3711), @@ -541355,43 +538171,43 @@ 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(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5873), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6462), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(6466), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -541404,27 +538220,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3712] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3712), [sym_preproc_endregion] = STATE(3712), [sym_preproc_line] = STATE(3712), @@ -541434,43 +538244,43 @@ 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(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5873), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -541483,27 +538293,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3713] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3713), [sym_preproc_endregion] = STATE(3713), [sym_preproc_line] = STATE(3713), @@ -541513,43 +538317,43 @@ 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(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5873), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6468), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5332), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6472), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(6482), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6486), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -541562,27 +538366,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3714] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3714), [sym_preproc_endregion] = STATE(3714), [sym_preproc_line] = STATE(3714), @@ -541592,43 +538390,43 @@ 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(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5314), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_when] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -541641,27 +538439,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3715] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3715), [sym_preproc_endregion] = STATE(3715), [sym_preproc_line] = STATE(3715), @@ -541671,43 +538463,43 @@ 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(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(5867), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5869), - [anon_sym_as] = ACTIONS(5871), - [anon_sym_is] = ACTIONS(5873), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6468), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5296), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5296), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6472), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(6482), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6486), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -541720,27 +538512,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3716] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3716), [sym_preproc_endregion] = STATE(3716), [sym_preproc_line] = STATE(3716), @@ -541750,43 +538536,43 @@ 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_SEMI] = ACTIONS(4794), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), - [aux_sym_preproc_if_token3] = ACTIONS(4794), - [aux_sym_preproc_else_token1] = ACTIONS(4794), - [aux_sym_preproc_elif_token1] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6468), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5336), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6472), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(6482), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6486), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -541799,6 +538585,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3717] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3717), [sym_preproc_endregion] = STATE(3717), [sym_preproc_line] = STATE(3717), @@ -541808,64 +538609,43 @@ 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_SEMI] = ACTIONS(4440), - [anon_sym_LBRACK] = ACTIONS(4440), - [anon_sym_COLON] = ACTIONS(4440), - [anon_sym_COMMA] = ACTIONS(4440), - [anon_sym_RBRACK] = ACTIONS(4440), - [anon_sym_LPAREN] = ACTIONS(4440), - [anon_sym_RPAREN] = ACTIONS(4440), - [anon_sym_LBRACE] = ACTIONS(4440), - [anon_sym_RBRACE] = ACTIONS(4440), - [anon_sym_LT] = ACTIONS(4438), - [anon_sym_GT] = ACTIONS(4438), - [anon_sym_in] = ACTIONS(4438), - [anon_sym_where] = ACTIONS(4440), - [anon_sym_QMARK] = ACTIONS(4438), - [anon_sym_BANG] = ACTIONS(4438), - [anon_sym_PLUS_PLUS] = ACTIONS(4440), - [anon_sym_DASH_DASH] = ACTIONS(4440), - [anon_sym_PLUS] = ACTIONS(4438), - [anon_sym_DASH] = ACTIONS(4438), - [anon_sym_STAR] = ACTIONS(4440), - [anon_sym_SLASH] = ACTIONS(4438), - [anon_sym_PERCENT] = ACTIONS(4440), - [anon_sym_CARET] = ACTIONS(4440), - [anon_sym_PIPE] = ACTIONS(4438), - [anon_sym_AMP] = ACTIONS(4438), - [anon_sym_LT_LT] = ACTIONS(4440), - [anon_sym_GT_GT] = ACTIONS(4438), - [anon_sym_GT_GT_GT] = ACTIONS(4440), - [anon_sym_EQ_EQ] = ACTIONS(4440), - [anon_sym_BANG_EQ] = ACTIONS(4440), - [anon_sym_GT_EQ] = ACTIONS(4440), - [anon_sym_LT_EQ] = ACTIONS(4440), - [anon_sym_DOT] = ACTIONS(4438), - [anon_sym_EQ_GT] = ACTIONS(4440), - [anon_sym_switch] = ACTIONS(4440), - [anon_sym_DOT_DOT] = ACTIONS(4440), - [anon_sym_and] = ACTIONS(4440), - [anon_sym_or] = ACTIONS(4438), - [anon_sym_AMP_AMP] = ACTIONS(4440), - [anon_sym_PIPE_PIPE] = ACTIONS(4440), - [sym_op_coalescing] = ACTIONS(4440), - [anon_sym_from] = ACTIONS(4440), - [anon_sym_into] = ACTIONS(4440), - [anon_sym_join] = ACTIONS(4440), - [anon_sym_on] = ACTIONS(4440), - [anon_sym_equals] = ACTIONS(4440), - [anon_sym_let] = ACTIONS(4440), - [anon_sym_orderby] = ACTIONS(4440), - [anon_sym_group] = ACTIONS(4440), - [anon_sym_by] = ACTIONS(4440), - [anon_sym_select] = ACTIONS(4440), - [anon_sym_as] = ACTIONS(4440), - [anon_sym_is] = ACTIONS(4440), - [anon_sym_DASH_GT] = ACTIONS(4440), - [anon_sym_with] = ACTIONS(4440), - [aux_sym_preproc_if_token3] = ACTIONS(4440), - [aux_sym_preproc_else_token1] = ACTIONS(4440), - [aux_sym_preproc_elif_token1] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6468), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5356), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6472), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(6482), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6486), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -541878,6 +538658,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3718] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3718), [sym_preproc_endregion] = STATE(3718), [sym_preproc_line] = STATE(3718), @@ -541887,97 +538682,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3718), [sym_preproc_define] = STATE(3718), [sym_preproc_undef] = STATE(3718), - [anon_sym_SEMI] = ACTIONS(3997), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_COLON] = ACTIONS(3997), - [anon_sym_COMMA] = ACTIONS(3997), - [anon_sym_RBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_RPAREN] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_RBRACE] = ACTIONS(3997), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_in] = ACTIONS(3986), - [anon_sym_where] = ACTIONS(3997), - [anon_sym_QMARK] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3986), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3986), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_EQ_GT] = ACTIONS(3997), - [anon_sym_switch] = ACTIONS(3997), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3997), - [anon_sym_or] = ACTIONS(3986), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [sym_op_coalescing] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3997), - [anon_sym_into] = ACTIONS(3997), - [anon_sym_join] = ACTIONS(3997), - [anon_sym_on] = ACTIONS(3997), - [anon_sym_equals] = ACTIONS(3997), - [anon_sym_let] = ACTIONS(3997), - [anon_sym_orderby] = ACTIONS(3997), - [anon_sym_group] = ACTIONS(3997), - [anon_sym_by] = ACTIONS(3997), - [anon_sym_select] = ACTIONS(3997), - [anon_sym_as] = ACTIONS(3997), - [anon_sym_is] = ACTIONS(3997), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3997), - [aux_sym_preproc_if_token3] = ACTIONS(3997), - [aux_sym_preproc_else_token1] = ACTIONS(3997), - [aux_sym_preproc_elif_token1] = ACTIONS(3997), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6498), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3719] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3719), [sym_preproc_endregion] = STATE(3719), [sym_preproc_line] = STATE(3719), @@ -541987,55 +538755,70 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5857), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5861), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(5670), - [anon_sym_is] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4760), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6498), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3720] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3720), [sym_preproc_endregion] = STATE(3720), [sym_preproc_line] = STATE(3720), @@ -542045,76 +538828,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3720), [sym_preproc_define] = STATE(3720), [sym_preproc_undef] = STATE(3720), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4331), - [anon_sym_into] = ACTIONS(4331), - [anon_sym_join] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_let] = ACTIONS(4331), - [anon_sym_orderby] = ACTIONS(4331), - [anon_sym_group] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_select] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6500), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6498), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3721] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3721), [sym_preproc_endregion] = STATE(3721), [sym_preproc_line] = STATE(3721), @@ -542124,76 +538901,70 @@ 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_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(5949), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4331), - [anon_sym_into] = ACTIONS(4331), - [anon_sym_join] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_let] = ACTIONS(4331), - [anon_sym_orderby] = ACTIONS(4331), - [anon_sym_group] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_select] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6500), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6498), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3722] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3722), [sym_preproc_endregion] = STATE(3722), [sym_preproc_line] = STATE(3722), @@ -542203,74 +538974,53 @@ 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_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4331), - [anon_sym_into] = ACTIONS(4331), - [anon_sym_join] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_let] = ACTIONS(4331), - [anon_sym_orderby] = ACTIONS(4331), - [anon_sym_group] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_select] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6498), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3723] = { [sym_preproc_region] = STATE(3723), @@ -542282,64 +539032,58 @@ 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_SEMI] = ACTIONS(4312), - [anon_sym_LBRACK] = ACTIONS(4312), - [anon_sym_COLON] = ACTIONS(4312), - [anon_sym_COMMA] = ACTIONS(4312), - [anon_sym_RBRACK] = ACTIONS(4312), - [anon_sym_LPAREN] = ACTIONS(4312), - [anon_sym_RPAREN] = ACTIONS(4312), - [anon_sym_LBRACE] = ACTIONS(4312), - [anon_sym_RBRACE] = ACTIONS(4312), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym_GT] = ACTIONS(4310), - [anon_sym_in] = ACTIONS(4310), - [anon_sym_where] = ACTIONS(4312), - [anon_sym_QMARK] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(4310), - [anon_sym_PLUS_PLUS] = ACTIONS(4312), - [anon_sym_DASH_DASH] = ACTIONS(4312), - [anon_sym_PLUS] = ACTIONS(4310), - [anon_sym_DASH] = ACTIONS(4310), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_SLASH] = ACTIONS(4310), - [anon_sym_PERCENT] = ACTIONS(4312), - [anon_sym_CARET] = ACTIONS(4312), - [anon_sym_PIPE] = ACTIONS(4310), - [anon_sym_AMP] = ACTIONS(4310), - [anon_sym_LT_LT] = ACTIONS(4312), - [anon_sym_GT_GT] = ACTIONS(4310), - [anon_sym_GT_GT_GT] = ACTIONS(4312), - [anon_sym_EQ_EQ] = ACTIONS(4312), - [anon_sym_BANG_EQ] = ACTIONS(4312), - [anon_sym_GT_EQ] = ACTIONS(4312), - [anon_sym_LT_EQ] = ACTIONS(4312), - [anon_sym_DOT] = ACTIONS(4310), - [anon_sym_EQ_GT] = ACTIONS(4312), - [anon_sym_switch] = ACTIONS(4312), - [anon_sym_DOT_DOT] = ACTIONS(4312), - [anon_sym_and] = ACTIONS(4312), - [anon_sym_or] = ACTIONS(4310), - [anon_sym_AMP_AMP] = ACTIONS(4312), - [anon_sym_PIPE_PIPE] = ACTIONS(4312), - [sym_op_coalescing] = 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_group] = ACTIONS(4312), - [anon_sym_by] = ACTIONS(4312), - [anon_sym_select] = ACTIONS(4312), - [anon_sym_as] = ACTIONS(4312), - [anon_sym_is] = ACTIONS(4312), - [anon_sym_DASH_GT] = ACTIONS(4312), - [anon_sym_with] = ACTIONS(4312), - [aux_sym_preproc_if_token3] = ACTIONS(4312), - [aux_sym_preproc_else_token1] = ACTIONS(4312), - [aux_sym_preproc_elif_token1] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(5508), + [anon_sym_EQ] = ACTIONS(6502), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(6504), + [anon_sym_DASH_EQ] = ACTIONS(6504), + [anon_sym_STAR_EQ] = ACTIONS(6504), + [anon_sym_SLASH_EQ] = ACTIONS(6504), + [anon_sym_PERCENT_EQ] = ACTIONS(6504), + [anon_sym_AMP_EQ] = ACTIONS(6504), + [anon_sym_CARET_EQ] = ACTIONS(6504), + [anon_sym_PIPE_EQ] = ACTIONS(6504), + [anon_sym_LT_LT_EQ] = ACTIONS(6504), + [anon_sym_GT_GT_EQ] = ACTIONS(6504), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6504), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6504), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [aux_sym_preproc_if_token3] = ACTIONS(5508), + [aux_sym_preproc_else_token1] = ACTIONS(5508), + [aux_sym_preproc_elif_token1] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -542361,64 +539105,57 @@ 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_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_where] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(5949), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4331), - [anon_sym_into] = ACTIONS(4331), - [anon_sym_join] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_let] = ACTIONS(4331), - [anon_sym_orderby] = ACTIONS(4331), - [anon_sym_group] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_select] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_COMMA] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_switch] = ACTIONS(4546), + [anon_sym_DOT_DOT] = ACTIONS(4546), + [anon_sym_LT_EQ] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_or] = ACTIONS(4546), + [anon_sym_PLUS_EQ] = ACTIONS(4546), + [anon_sym_DASH_EQ] = ACTIONS(4546), + [anon_sym_STAR_EQ] = ACTIONS(4546), + [anon_sym_SLASH_EQ] = ACTIONS(4546), + [anon_sym_PERCENT_EQ] = ACTIONS(4546), + [anon_sym_AMP_EQ] = ACTIONS(4546), + [anon_sym_CARET_EQ] = ACTIONS(4546), + [anon_sym_PIPE_EQ] = ACTIONS(4546), + [anon_sym_LT_LT_EQ] = ACTIONS(4546), + [anon_sym_GT_GT_EQ] = ACTIONS(4546), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4546), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4546), + [anon_sym_BANG_EQ] = ACTIONS(4546), + [anon_sym_AMP_AMP] = ACTIONS(4546), + [anon_sym_PIPE_PIPE] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [sym_op_bitwise_or] = ACTIONS(4548), + [anon_sym_CARET] = ACTIONS(4548), + [sym_op_left_shift] = ACTIONS(4548), + [sym_op_right_shift] = ACTIONS(4548), + [sym_op_unsigned_right_shift] = ACTIONS(4548), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [sym_op_divide] = ACTIONS(4548), + [sym_op_modulo] = ACTIONS(4548), + [sym_op_coalescing] = ACTIONS(4548), + [anon_sym_BANG] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4546), + [anon_sym_into] = ACTIONS(4546), + [anon_sym_as] = ACTIONS(4546), + [anon_sym_is] = ACTIONS(4546), + [anon_sym_DASH_GT] = ACTIONS(4546), + [anon_sym_with] = ACTIONS(4546), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -542429,29 +539166,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4546), }, [3725] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3725), [sym_preproc_endregion] = STATE(3725), [sym_preproc_line] = STATE(3725), @@ -542461,76 +539193,70 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4780), - [anon_sym_QMARK] = ACTIONS(5803), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5805), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6500), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(6506), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6498), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3726] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3726), [sym_preproc_endregion] = STATE(3726), [sym_preproc_line] = STATE(3726), @@ -542540,76 +539266,70 @@ 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(5430), - [anon_sym_COLON] = ACTIONS(4778), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5819), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5821), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6498), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3727] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3727), [sym_preproc_endregion] = STATE(3727), [sym_preproc_line] = STATE(3727), @@ -542619,43 +539339,43 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_when] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -542668,27 +539388,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3728] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3728), [sym_preproc_endregion] = STATE(3728), [sym_preproc_line] = STATE(3728), @@ -542698,43 +539412,43 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5805), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6468), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5364), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6472), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(6482), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6486), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -542747,27 +539461,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3729] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), [sym_preproc_region] = STATE(3729), [sym_preproc_endregion] = STATE(3729), [sym_preproc_line] = STATE(3729), @@ -542777,43 +539470,58 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_when] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -542826,27 +539534,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3730] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), [sym_preproc_region] = STATE(3730), [sym_preproc_endregion] = STATE(3730), [sym_preproc_line] = STATE(3730), @@ -542856,43 +539543,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3730), [sym_preproc_define] = STATE(3730), [sym_preproc_undef] = STATE(3730), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4794), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_when] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_LBRACK] = ACTIONS(3976), + [anon_sym_COLON] = ACTIONS(3976), + [anon_sym_COMMA] = ACTIONS(3976), + [anon_sym_RBRACK] = ACTIONS(3976), + [anon_sym_LPAREN] = ACTIONS(3976), + [anon_sym_RPAREN] = ACTIONS(3976), + [anon_sym_LBRACE] = ACTIONS(3976), + [anon_sym_RBRACE] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3974), + [anon_sym_GT] = ACTIONS(3974), + [anon_sym_in] = ACTIONS(3974), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3974), + [anon_sym_EQ_GT] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3976), + [anon_sym_switch] = ACTIONS(3976), + [anon_sym_when] = ACTIONS(3976), + [anon_sym_DOT_DOT] = ACTIONS(3976), + [anon_sym_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_EQ] = ACTIONS(3976), + [anon_sym_and] = ACTIONS(3976), + [anon_sym_or] = ACTIONS(3976), + [anon_sym_EQ_EQ] = ACTIONS(3976), + [anon_sym_BANG_EQ] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [sym_op_bitwise_or] = ACTIONS(3974), + [anon_sym_CARET] = ACTIONS(3976), + [sym_op_left_shift] = ACTIONS(3976), + [sym_op_right_shift] = ACTIONS(3974), + [sym_op_unsigned_right_shift] = ACTIONS(3976), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [sym_op_divide] = ACTIONS(3974), + [sym_op_modulo] = ACTIONS(3976), + [sym_op_coalescing] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3974), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_into] = ACTIONS(3976), + [anon_sym_on] = ACTIONS(3976), + [anon_sym_equals] = ACTIONS(3976), + [anon_sym_by] = ACTIONS(3976), + [anon_sym_as] = ACTIONS(3976), + [anon_sym_is] = ACTIONS(3976), + [anon_sym_DASH_GT] = ACTIONS(3976), + [anon_sym_with] = ACTIONS(3976), + [aux_sym_preproc_if_token3] = ACTIONS(3976), + [aux_sym_preproc_else_token1] = ACTIONS(3976), + [aux_sym_preproc_elif_token1] = ACTIONS(3976), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -542905,27 +539607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3731] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_type_argument_list] = STATE(4268), [sym_preproc_region] = STATE(3731), [sym_preproc_endregion] = STATE(3731), [sym_preproc_line] = STATE(3731), @@ -542935,43 +539617,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3731), [sym_preproc_define] = STATE(3731), [sym_preproc_undef] = STATE(3731), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(6508), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_when] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -542984,27 +539680,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3732] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), [sym_preproc_region] = STATE(3732), [sym_preproc_endregion] = STATE(3732), [sym_preproc_line] = STATE(3732), @@ -543014,43 +539689,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3732), [sym_preproc_define] = STATE(3732), [sym_preproc_undef] = STATE(3732), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(3961), + [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_LBRACE] = ACTIONS(3961), + [anon_sym_RBRACE] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_GT] = ACTIONS(3959), + [anon_sym_in] = ACTIONS(3959), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_DOT] = ACTIONS(3959), + [anon_sym_EQ_GT] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3961), + [anon_sym_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_EQ] = ACTIONS(3961), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_EQ_EQ] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [sym_op_bitwise_or] = ACTIONS(3959), + [anon_sym_CARET] = ACTIONS(3961), + [sym_op_left_shift] = ACTIONS(3961), + [sym_op_right_shift] = ACTIONS(3959), + [sym_op_unsigned_right_shift] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3959), + [sym_op_divide] = ACTIONS(3959), + [sym_op_modulo] = ACTIONS(3961), + [sym_op_coalescing] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3959), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), + [anon_sym_with] = ACTIONS(3961), + [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), @@ -543063,27 +539753,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3733] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3733), [sym_preproc_endregion] = STATE(3733), [sym_preproc_line] = STATE(3733), @@ -543093,43 +539777,43 @@ 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_SEMI] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4778), - [aux_sym_preproc_else_token1] = ACTIONS(4778), - [aux_sym_preproc_elif_token1] = ACTIONS(4778), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_when] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -543142,27 +539826,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3734] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3734), [sym_preproc_endregion] = STATE(3734), [sym_preproc_line] = STATE(3734), @@ -543172,43 +539850,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3734), [sym_preproc_define] = STATE(3734), [sym_preproc_undef] = STATE(3734), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_when] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -543230,64 +539908,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3735), [sym_preproc_define] = STATE(3735), [sym_preproc_undef] = STATE(3735), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_RBRACK] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_RPAREN] = ACTIONS(4341), - [anon_sym_LBRACE] = ACTIONS(4341), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(4341), - [anon_sym_QMARK] = ACTIONS(4339), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_CARET] = ACTIONS(4341), - [anon_sym_PIPE] = ACTIONS(4339), - [anon_sym_AMP] = ACTIONS(4339), - [anon_sym_LT_LT] = ACTIONS(4341), - [anon_sym_GT_GT] = ACTIONS(4339), - [anon_sym_GT_GT_GT] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_EQ_GT] = ACTIONS(4341), - [anon_sym_switch] = ACTIONS(4341), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_and] = ACTIONS(4341), - [anon_sym_or] = ACTIONS(4339), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [sym_op_coalescing] = ACTIONS(4341), - [anon_sym_from] = ACTIONS(4341), - [anon_sym_into] = ACTIONS(4341), - [anon_sym_join] = ACTIONS(4341), - [anon_sym_on] = ACTIONS(4341), - [anon_sym_equals] = ACTIONS(4341), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_orderby] = ACTIONS(4341), - [anon_sym_group] = ACTIONS(4341), - [anon_sym_by] = ACTIONS(4341), - [anon_sym_select] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4341), - [anon_sym_DASH_GT] = ACTIONS(4341), - [anon_sym_with] = ACTIONS(4341), - [aux_sym_preproc_if_token3] = ACTIONS(4341), - [aux_sym_preproc_else_token1] = ACTIONS(4341), - [aux_sym_preproc_elif_token1] = ACTIONS(4341), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_COLON] = ACTIONS(3982), + [anon_sym_COMMA] = ACTIONS(3982), + [anon_sym_RBRACK] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym_RPAREN] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3982), + [anon_sym_RBRACE] = ACTIONS(3982), + [anon_sym_LT] = ACTIONS(3980), + [anon_sym_GT] = ACTIONS(3980), + [anon_sym_in] = ACTIONS(3980), + [anon_sym_QMARK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_EQ_GT] = ACTIONS(3982), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_switch] = ACTIONS(3982), + [anon_sym_when] = ACTIONS(3982), + [anon_sym_DOT_DOT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_EQ] = ACTIONS(3982), + [anon_sym_and] = ACTIONS(3982), + [anon_sym_or] = ACTIONS(3982), + [anon_sym_EQ_EQ] = ACTIONS(3982), + [anon_sym_BANG_EQ] = ACTIONS(3982), + [anon_sym_AMP_AMP] = ACTIONS(3982), + [anon_sym_PIPE_PIPE] = ACTIONS(3982), + [anon_sym_AMP] = ACTIONS(3980), + [sym_op_bitwise_or] = ACTIONS(3980), + [anon_sym_CARET] = ACTIONS(3982), + [sym_op_left_shift] = ACTIONS(3982), + [sym_op_right_shift] = ACTIONS(3980), + [sym_op_unsigned_right_shift] = ACTIONS(3982), + [anon_sym_PLUS] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3980), + [sym_op_divide] = ACTIONS(3980), + [sym_op_modulo] = ACTIONS(3982), + [sym_op_coalescing] = ACTIONS(3982), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3982), + [anon_sym_into] = ACTIONS(3982), + [anon_sym_on] = ACTIONS(3982), + [anon_sym_equals] = ACTIONS(3982), + [anon_sym_by] = ACTIONS(3982), + [anon_sym_as] = ACTIONS(3982), + [anon_sym_is] = ACTIONS(3982), + [anon_sym_DASH_GT] = ACTIONS(3982), + [anon_sym_with] = ACTIONS(3982), + [aux_sym_preproc_if_token3] = ACTIONS(3982), + [aux_sym_preproc_else_token1] = ACTIONS(3982), + [aux_sym_preproc_elif_token1] = ACTIONS(3982), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -543300,27 +539972,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3736] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), [sym_preproc_region] = STATE(3736), [sym_preproc_endregion] = STATE(3736), [sym_preproc_line] = STATE(3736), @@ -543330,43 +539981,58 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_in] = ACTIONS(3951), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_EQ_GT] = ACTIONS(3953), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_switch] = ACTIONS(3953), + [anon_sym_when] = ACTIONS(3953), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3953), + [anon_sym_or] = ACTIONS(3953), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP] = ACTIONS(3951), + [sym_op_bitwise_or] = ACTIONS(3951), + [anon_sym_CARET] = ACTIONS(3953), + [sym_op_left_shift] = ACTIONS(3953), + [sym_op_right_shift] = ACTIONS(3951), + [sym_op_unsigned_right_shift] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [sym_op_divide] = ACTIONS(3951), + [sym_op_modulo] = ACTIONS(3953), + [sym_op_coalescing] = ACTIONS(3953), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_into] = ACTIONS(3953), + [anon_sym_on] = ACTIONS(3953), + [anon_sym_equals] = ACTIONS(3953), + [anon_sym_by] = ACTIONS(3953), + [anon_sym_as] = ACTIONS(3953), + [anon_sym_is] = ACTIONS(3953), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3953), + [aux_sym_preproc_if_token3] = ACTIONS(3953), + [aux_sym_preproc_else_token1] = ACTIONS(3953), + [aux_sym_preproc_elif_token1] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -543388,64 +540054,58 @@ 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_SEMI] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_COLON] = ACTIONS(4316), - [anon_sym_COMMA] = ACTIONS(4316), - [anon_sym_RBRACK] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4316), - [anon_sym_RPAREN] = ACTIONS(4316), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_RBRACE] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4314), - [anon_sym_GT] = ACTIONS(4314), - [anon_sym_in] = ACTIONS(4314), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4314), - [anon_sym_BANG] = ACTIONS(4314), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_STAR] = ACTIONS(4316), - [anon_sym_SLASH] = ACTIONS(4314), - [anon_sym_PERCENT] = ACTIONS(4316), - [anon_sym_CARET] = ACTIONS(4316), - [anon_sym_PIPE] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4314), - [anon_sym_LT_LT] = ACTIONS(4316), - [anon_sym_GT_GT] = ACTIONS(4314), - [anon_sym_GT_GT_GT] = ACTIONS(4316), - [anon_sym_EQ_EQ] = ACTIONS(4316), - [anon_sym_BANG_EQ] = ACTIONS(4316), - [anon_sym_GT_EQ] = ACTIONS(4316), - [anon_sym_LT_EQ] = ACTIONS(4316), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_EQ_GT] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4316), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4314), - [anon_sym_AMP_AMP] = ACTIONS(4316), - [anon_sym_PIPE_PIPE] = ACTIONS(4316), - [sym_op_coalescing] = 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_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4316), - [anon_sym_with] = ACTIONS(4316), - [aux_sym_preproc_if_token3] = ACTIONS(4316), - [aux_sym_preproc_else_token1] = ACTIONS(4316), - [aux_sym_preproc_elif_token1] = ACTIONS(4316), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_COLON] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_RPAREN] = ACTIONS(3972), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_QMARK] = ACTIONS(3970), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_EQ_GT] = ACTIONS(3972), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_switch] = ACTIONS(3972), + [anon_sym_when] = ACTIONS(3972), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_and] = ACTIONS(3972), + [anon_sym_or] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [sym_op_bitwise_or] = ACTIONS(3970), + [anon_sym_CARET] = ACTIONS(3972), + [sym_op_left_shift] = ACTIONS(3972), + [sym_op_right_shift] = ACTIONS(3970), + [sym_op_unsigned_right_shift] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [sym_op_divide] = ACTIONS(3970), + [sym_op_modulo] = ACTIONS(3972), + [sym_op_coalescing] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_into] = ACTIONS(3972), + [anon_sym_on] = ACTIONS(3972), + [anon_sym_equals] = ACTIONS(3972), + [anon_sym_by] = ACTIONS(3972), + [anon_sym_as] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3972), + [anon_sym_DASH_GT] = ACTIONS(3972), + [anon_sym_with] = ACTIONS(3972), + [aux_sym_preproc_if_token3] = ACTIONS(3972), + [aux_sym_preproc_else_token1] = ACTIONS(3972), + [aux_sym_preproc_elif_token1] = ACTIONS(3972), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -543458,27 +540118,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3738] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3738), [sym_preproc_endregion] = STATE(3738), [sym_preproc_line] = STATE(3738), @@ -543488,43 +540142,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3738), [sym_preproc_define] = STATE(3738), [sym_preproc_undef] = STATE(3738), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -543537,6 +540191,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3739] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3739), [sym_preproc_endregion] = STATE(3739), [sym_preproc_line] = STATE(3739), @@ -543546,64 +540215,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3739), [sym_preproc_define] = STATE(3739), [sym_preproc_undef] = STATE(3739), - [anon_sym_SEMI] = ACTIONS(4436), - [anon_sym_LBRACK] = ACTIONS(4436), - [anon_sym_COLON] = ACTIONS(4436), - [anon_sym_COMMA] = ACTIONS(4436), - [anon_sym_RBRACK] = ACTIONS(4436), - [anon_sym_LPAREN] = ACTIONS(4436), - [anon_sym_RPAREN] = ACTIONS(4436), - [anon_sym_LBRACE] = ACTIONS(4436), - [anon_sym_RBRACE] = ACTIONS(4436), - [anon_sym_LT] = ACTIONS(4434), - [anon_sym_GT] = ACTIONS(4434), - [anon_sym_in] = ACTIONS(4434), - [anon_sym_where] = ACTIONS(4436), - [anon_sym_QMARK] = ACTIONS(4434), - [anon_sym_BANG] = ACTIONS(4434), - [anon_sym_PLUS_PLUS] = ACTIONS(4436), - [anon_sym_DASH_DASH] = ACTIONS(4436), - [anon_sym_PLUS] = ACTIONS(4434), - [anon_sym_DASH] = ACTIONS(4434), - [anon_sym_STAR] = ACTIONS(4436), - [anon_sym_SLASH] = ACTIONS(4434), - [anon_sym_PERCENT] = ACTIONS(4436), - [anon_sym_CARET] = ACTIONS(4436), - [anon_sym_PIPE] = ACTIONS(4434), - [anon_sym_AMP] = ACTIONS(4434), - [anon_sym_LT_LT] = ACTIONS(4436), - [anon_sym_GT_GT] = ACTIONS(4434), - [anon_sym_GT_GT_GT] = ACTIONS(4436), - [anon_sym_EQ_EQ] = ACTIONS(4436), - [anon_sym_BANG_EQ] = ACTIONS(4436), - [anon_sym_GT_EQ] = ACTIONS(4436), - [anon_sym_LT_EQ] = ACTIONS(4436), - [anon_sym_DOT] = ACTIONS(4434), - [anon_sym_EQ_GT] = ACTIONS(4436), - [anon_sym_switch] = ACTIONS(4436), - [anon_sym_DOT_DOT] = ACTIONS(4436), - [anon_sym_and] = ACTIONS(4436), - [anon_sym_or] = ACTIONS(4434), - [anon_sym_AMP_AMP] = ACTIONS(4436), - [anon_sym_PIPE_PIPE] = ACTIONS(4436), - [sym_op_coalescing] = ACTIONS(4436), - [anon_sym_from] = ACTIONS(4436), - [anon_sym_into] = ACTIONS(4436), - [anon_sym_join] = ACTIONS(4436), - [anon_sym_on] = ACTIONS(4436), - [anon_sym_equals] = ACTIONS(4436), - [anon_sym_let] = ACTIONS(4436), - [anon_sym_orderby] = ACTIONS(4436), - [anon_sym_group] = ACTIONS(4436), - [anon_sym_by] = ACTIONS(4436), - [anon_sym_select] = ACTIONS(4436), - [anon_sym_as] = ACTIONS(4436), - [anon_sym_is] = ACTIONS(4436), - [anon_sym_DASH_GT] = ACTIONS(4436), - [anon_sym_with] = ACTIONS(4436), - [aux_sym_preproc_if_token3] = ACTIONS(4436), - [aux_sym_preproc_else_token1] = ACTIONS(4436), - [aux_sym_preproc_elif_token1] = ACTIONS(4436), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6486), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -543616,6 +540264,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3740] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3740), [sym_preproc_endregion] = STATE(3740), [sym_preproc_line] = STATE(3740), @@ -543625,64 +540288,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3740), [sym_preproc_define] = STATE(3740), [sym_preproc_undef] = STATE(3740), - [anon_sym_SEMI] = ACTIONS(4424), - [anon_sym_LBRACK] = ACTIONS(4424), - [anon_sym_COLON] = ACTIONS(4424), - [anon_sym_COMMA] = ACTIONS(4424), - [anon_sym_RBRACK] = ACTIONS(4424), - [anon_sym_LPAREN] = ACTIONS(4424), - [anon_sym_RPAREN] = ACTIONS(4424), - [anon_sym_LBRACE] = ACTIONS(4424), - [anon_sym_RBRACE] = ACTIONS(4424), - [anon_sym_LT] = ACTIONS(4422), - [anon_sym_GT] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4422), - [anon_sym_where] = ACTIONS(4424), - [anon_sym_QMARK] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4424), - [anon_sym_DASH_DASH] = ACTIONS(4424), - [anon_sym_PLUS] = ACTIONS(4422), - [anon_sym_DASH] = ACTIONS(4422), - [anon_sym_STAR] = ACTIONS(4424), - [anon_sym_SLASH] = ACTIONS(4422), - [anon_sym_PERCENT] = ACTIONS(4424), - [anon_sym_CARET] = ACTIONS(4424), - [anon_sym_PIPE] = ACTIONS(4422), - [anon_sym_AMP] = ACTIONS(4422), - [anon_sym_LT_LT] = ACTIONS(4424), - [anon_sym_GT_GT] = ACTIONS(4422), - [anon_sym_GT_GT_GT] = ACTIONS(4424), - [anon_sym_EQ_EQ] = ACTIONS(4424), - [anon_sym_BANG_EQ] = ACTIONS(4424), - [anon_sym_GT_EQ] = ACTIONS(4424), - [anon_sym_LT_EQ] = ACTIONS(4424), - [anon_sym_DOT] = ACTIONS(4422), - [anon_sym_EQ_GT] = ACTIONS(4424), - [anon_sym_switch] = ACTIONS(4424), - [anon_sym_DOT_DOT] = ACTIONS(4424), - [anon_sym_and] = ACTIONS(4424), - [anon_sym_or] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4424), - [anon_sym_PIPE_PIPE] = ACTIONS(4424), - [sym_op_coalescing] = ACTIONS(4424), - [anon_sym_from] = ACTIONS(4424), - [anon_sym_into] = ACTIONS(4424), - [anon_sym_join] = ACTIONS(4424), - [anon_sym_on] = ACTIONS(4424), - [anon_sym_equals] = ACTIONS(4424), - [anon_sym_let] = ACTIONS(4424), - [anon_sym_orderby] = ACTIONS(4424), - [anon_sym_group] = ACTIONS(4424), - [anon_sym_by] = ACTIONS(4424), - [anon_sym_select] = ACTIONS(4424), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_is] = ACTIONS(4424), - [anon_sym_DASH_GT] = ACTIONS(4424), - [anon_sym_with] = ACTIONS(4424), - [aux_sym_preproc_if_token3] = ACTIONS(4424), - [aux_sym_preproc_else_token1] = ACTIONS(4424), - [aux_sym_preproc_elif_token1] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6486), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -543695,6 +540337,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3741] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3741), [sym_preproc_endregion] = STATE(3741), [sym_preproc_line] = STATE(3741), @@ -543704,64 +540361,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3741), [sym_preproc_define] = STATE(3741), [sym_preproc_undef] = STATE(3741), - [anon_sym_SEMI] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_COLON] = ACTIONS(4337), - [anon_sym_COMMA] = ACTIONS(4337), - [anon_sym_RBRACK] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_RPAREN] = ACTIONS(4337), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_RBRACE] = ACTIONS(4337), - [anon_sym_LT] = ACTIONS(4335), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_in] = ACTIONS(4335), - [anon_sym_where] = ACTIONS(4337), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_PLUS_PLUS] = ACTIONS(4337), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4335), - [anon_sym_LT_LT] = ACTIONS(4337), - [anon_sym_GT_GT] = ACTIONS(4335), - [anon_sym_GT_GT_GT] = ACTIONS(4337), - [anon_sym_EQ_EQ] = ACTIONS(4337), - [anon_sym_BANG_EQ] = ACTIONS(4337), - [anon_sym_GT_EQ] = ACTIONS(4337), - [anon_sym_LT_EQ] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_EQ_GT] = ACTIONS(4337), - [anon_sym_switch] = ACTIONS(4337), - [anon_sym_DOT_DOT] = ACTIONS(4337), - [anon_sym_and] = ACTIONS(4337), - [anon_sym_or] = ACTIONS(4335), - [anon_sym_AMP_AMP] = ACTIONS(4337), - [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [sym_op_coalescing] = ACTIONS(4337), - [anon_sym_from] = ACTIONS(4337), - [anon_sym_into] = ACTIONS(4337), - [anon_sym_join] = ACTIONS(4337), - [anon_sym_on] = ACTIONS(4337), - [anon_sym_equals] = ACTIONS(4337), - [anon_sym_let] = ACTIONS(4337), - [anon_sym_orderby] = ACTIONS(4337), - [anon_sym_group] = ACTIONS(4337), - [anon_sym_by] = ACTIONS(4337), - [anon_sym_select] = ACTIONS(4337), - [anon_sym_as] = ACTIONS(4337), - [anon_sym_is] = ACTIONS(4337), - [anon_sym_DASH_GT] = ACTIONS(4337), - [anon_sym_with] = ACTIONS(4337), - [aux_sym_preproc_if_token3] = ACTIONS(4337), - [aux_sym_preproc_else_token1] = ACTIONS(4337), - [aux_sym_preproc_elif_token1] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6472), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6486), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -543774,7 +540410,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3742] = { - [sym_initializer_expression] = STATE(4286), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3742), [sym_preproc_endregion] = STATE(3742), [sym_preproc_line] = STATE(3742), @@ -543784,63 +540434,43 @@ 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_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(5954), - [anon_sym_COLON] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_RBRACK] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_RPAREN] = ACTIONS(5958), - [anon_sym_LBRACE] = ACTIONS(5961), - [anon_sym_RBRACE] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_in] = ACTIONS(5958), - [anon_sym_where] = ACTIONS(5958), - [anon_sym_QMARK] = ACTIONS(5967), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PLUS_PLUS] = ACTIONS(5958), - [anon_sym_DASH_DASH] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5964), - [anon_sym_DASH] = ACTIONS(5964), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5964), - [anon_sym_PERCENT] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_AMP] = ACTIONS(5964), - [anon_sym_LT_LT] = ACTIONS(5958), - [anon_sym_GT_GT] = ACTIONS(5964), - [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(5964), - [anon_sym_EQ_GT] = ACTIONS(5958), - [anon_sym_switch] = ACTIONS(5958), - [anon_sym_DOT_DOT] = ACTIONS(5958), - [anon_sym_and] = ACTIONS(5958), - [anon_sym_or] = ACTIONS(5964), - [anon_sym_AMP_AMP] = ACTIONS(5958), - [anon_sym_PIPE_PIPE] = ACTIONS(5958), - [sym_op_coalescing] = ACTIONS(5958), - [anon_sym_from] = ACTIONS(5958), - [anon_sym_join] = ACTIONS(5958), - [anon_sym_on] = ACTIONS(5958), - [anon_sym_equals] = ACTIONS(5958), - [anon_sym_let] = ACTIONS(5958), - [anon_sym_orderby] = ACTIONS(5958), - [anon_sym_group] = ACTIONS(5958), - [anon_sym_by] = ACTIONS(5958), - [anon_sym_select] = ACTIONS(5958), - [anon_sym_as] = ACTIONS(5958), - [anon_sym_is] = ACTIONS(5958), - [anon_sym_DASH_GT] = ACTIONS(5958), - [anon_sym_with] = ACTIONS(5958), - [aux_sym_preproc_if_token3] = ACTIONS(5958), - [aux_sym_preproc_else_token1] = ACTIONS(5958), - [aux_sym_preproc_elif_token1] = ACTIONS(5958), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6472), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6486), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -543853,27 +540483,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3743] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3743), [sym_preproc_endregion] = STATE(3743), [sym_preproc_line] = STATE(3743), @@ -543883,43 +540507,43 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5849), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4790), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6486), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -543932,27 +540556,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3744] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3744), [sym_preproc_endregion] = STATE(3744), [sym_preproc_line] = STATE(3744), @@ -543962,43 +540580,43 @@ 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), - [aux_sym_initializer_expression_repeat1] = STATE(7324), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(5971), - [anon_sym_COMMA] = ACTIONS(5973), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5819), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5680), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -544011,6 +540629,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3745] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3745), [sym_preproc_endregion] = STATE(3745), [sym_preproc_line] = STATE(3745), @@ -544020,64 +540653,43 @@ 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_SEMI] = ACTIONS(4466), - [anon_sym_LBRACK] = ACTIONS(4466), - [anon_sym_COLON] = ACTIONS(4466), - [anon_sym_COMMA] = ACTIONS(4466), - [anon_sym_RBRACK] = ACTIONS(4466), - [anon_sym_LPAREN] = ACTIONS(4466), - [anon_sym_RPAREN] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4466), - [anon_sym_RBRACE] = ACTIONS(4466), - [anon_sym_LT] = ACTIONS(4464), - [anon_sym_GT] = ACTIONS(4464), - [anon_sym_in] = ACTIONS(4464), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_QMARK] = ACTIONS(4464), - [anon_sym_BANG] = ACTIONS(4464), - [anon_sym_PLUS_PLUS] = ACTIONS(4466), - [anon_sym_DASH_DASH] = ACTIONS(4466), - [anon_sym_PLUS] = ACTIONS(4464), - [anon_sym_DASH] = ACTIONS(4464), - [anon_sym_STAR] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4464), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_PIPE] = ACTIONS(4464), - [anon_sym_AMP] = ACTIONS(4464), - [anon_sym_LT_LT] = ACTIONS(4466), - [anon_sym_GT_GT] = ACTIONS(4464), - [anon_sym_GT_GT_GT] = ACTIONS(4466), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_GT_EQ] = ACTIONS(4466), - [anon_sym_LT_EQ] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4464), - [anon_sym_EQ_GT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4466), - [anon_sym_and] = ACTIONS(4466), - [anon_sym_or] = ACTIONS(4464), - [anon_sym_AMP_AMP] = ACTIONS(4466), - [anon_sym_PIPE_PIPE] = ACTIONS(4466), - [sym_op_coalescing] = ACTIONS(4466), - [anon_sym_from] = ACTIONS(4466), - [anon_sym_into] = ACTIONS(4466), - [anon_sym_join] = ACTIONS(4466), - [anon_sym_on] = ACTIONS(4466), - [anon_sym_equals] = ACTIONS(4466), - [anon_sym_let] = ACTIONS(4466), - [anon_sym_orderby] = ACTIONS(4466), - [anon_sym_group] = ACTIONS(4466), - [anon_sym_by] = ACTIONS(4466), - [anon_sym_select] = ACTIONS(4466), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_DASH_GT] = ACTIONS(4466), - [anon_sym_with] = ACTIONS(4466), - [aux_sym_preproc_if_token3] = ACTIONS(4466), - [aux_sym_preproc_else_token1] = ACTIONS(4466), - [aux_sym_preproc_elif_token1] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6472), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(6482), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6486), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -544090,6 +540702,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3746] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3746), [sym_preproc_endregion] = STATE(3746), [sym_preproc_line] = STATE(3746), @@ -544099,64 +540726,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3746), [sym_preproc_define] = STATE(3746), [sym_preproc_undef] = STATE(3746), - [anon_sym_SEMI] = ACTIONS(4349), - [anon_sym_LBRACK] = ACTIONS(4349), - [anon_sym_COLON] = ACTIONS(4349), - [anon_sym_COMMA] = ACTIONS(4349), - [anon_sym_RBRACK] = ACTIONS(4349), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym_RPAREN] = ACTIONS(4349), - [anon_sym_LBRACE] = ACTIONS(4349), - [anon_sym_RBRACE] = ACTIONS(4349), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_where] = ACTIONS(4349), - [anon_sym_QMARK] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_PLUS_PLUS] = ACTIONS(4349), - [anon_sym_DASH_DASH] = ACTIONS(4349), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4349), - [anon_sym_CARET] = ACTIONS(4349), - [anon_sym_PIPE] = ACTIONS(4347), - [anon_sym_AMP] = ACTIONS(4347), - [anon_sym_LT_LT] = ACTIONS(4349), - [anon_sym_GT_GT] = ACTIONS(4347), - [anon_sym_GT_GT_GT] = ACTIONS(4349), - [anon_sym_EQ_EQ] = ACTIONS(4349), - [anon_sym_BANG_EQ] = ACTIONS(4349), - [anon_sym_GT_EQ] = ACTIONS(4349), - [anon_sym_LT_EQ] = ACTIONS(4349), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_EQ_GT] = ACTIONS(4349), - [anon_sym_switch] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4349), - [anon_sym_and] = ACTIONS(4349), - [anon_sym_or] = ACTIONS(4347), - [anon_sym_AMP_AMP] = ACTIONS(4349), - [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [sym_op_coalescing] = ACTIONS(4349), - [anon_sym_from] = ACTIONS(4349), - [anon_sym_into] = ACTIONS(4349), - [anon_sym_join] = ACTIONS(4349), - [anon_sym_on] = ACTIONS(4349), - [anon_sym_equals] = ACTIONS(4349), - [anon_sym_let] = ACTIONS(4349), - [anon_sym_orderby] = ACTIONS(4349), - [anon_sym_group] = ACTIONS(4349), - [anon_sym_by] = ACTIONS(4349), - [anon_sym_select] = ACTIONS(4349), - [anon_sym_as] = ACTIONS(4349), - [anon_sym_is] = ACTIONS(4349), - [anon_sym_DASH_GT] = ACTIONS(4349), - [anon_sym_with] = ACTIONS(4349), - [aux_sym_preproc_if_token3] = ACTIONS(4349), - [aux_sym_preproc_else_token1] = ACTIONS(4349), - [aux_sym_preproc_elif_token1] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -544169,27 +540775,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3747] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3747), [sym_preproc_endregion] = STATE(3747), [sym_preproc_line] = STATE(3747), @@ -544199,43 +540799,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3747), [sym_preproc_define] = STATE(3747), [sym_preproc_undef] = STATE(3747), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_QMARK] = ACTIONS(5803), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5805), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -544248,27 +540848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3748] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_initializer_expression] = STATE(4587), [sym_preproc_region] = STATE(3748), [sym_preproc_endregion] = STATE(3748), [sym_preproc_line] = STATE(3748), @@ -544278,43 +540858,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3748), [sym_preproc_define] = STATE(3748), [sym_preproc_undef] = STATE(3748), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5590), + [anon_sym_LBRACK] = ACTIONS(5590), + [anon_sym_COLON] = ACTIONS(5590), + [anon_sym_COMMA] = ACTIONS(5590), + [anon_sym_RBRACK] = ACTIONS(5590), + [anon_sym_LPAREN] = ACTIONS(5590), + [anon_sym_RPAREN] = ACTIONS(5590), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(5590), + [anon_sym_LT] = ACTIONS(5592), + [anon_sym_GT] = ACTIONS(5592), + [anon_sym_in] = ACTIONS(5590), + [anon_sym_QMARK] = ACTIONS(5592), + [anon_sym_DOT] = ACTIONS(5592), + [anon_sym_EQ_GT] = ACTIONS(5590), + [anon_sym_STAR] = ACTIONS(5590), + [anon_sym_switch] = ACTIONS(5590), + [anon_sym_when] = ACTIONS(5590), + [anon_sym_DOT_DOT] = ACTIONS(5590), + [anon_sym_LT_EQ] = ACTIONS(5590), + [anon_sym_GT_EQ] = ACTIONS(5590), + [anon_sym_and] = ACTIONS(5590), + [anon_sym_or] = ACTIONS(5590), + [anon_sym_EQ_EQ] = ACTIONS(5590), + [anon_sym_BANG_EQ] = ACTIONS(5590), + [anon_sym_AMP_AMP] = ACTIONS(5590), + [anon_sym_PIPE_PIPE] = ACTIONS(5590), + [anon_sym_AMP] = ACTIONS(5592), + [sym_op_bitwise_or] = ACTIONS(5592), + [anon_sym_CARET] = ACTIONS(5590), + [sym_op_left_shift] = ACTIONS(5590), + [sym_op_right_shift] = ACTIONS(5592), + [sym_op_unsigned_right_shift] = ACTIONS(5590), + [anon_sym_PLUS] = ACTIONS(5592), + [anon_sym_DASH] = ACTIONS(5592), + [sym_op_divide] = ACTIONS(5592), + [sym_op_modulo] = ACTIONS(5590), + [sym_op_coalescing] = ACTIONS(5590), + [anon_sym_BANG] = ACTIONS(5592), + [anon_sym_PLUS_PLUS] = ACTIONS(5590), + [anon_sym_DASH_DASH] = ACTIONS(5590), + [anon_sym_on] = ACTIONS(5590), + [anon_sym_equals] = ACTIONS(5590), + [anon_sym_by] = ACTIONS(5590), + [anon_sym_as] = ACTIONS(5590), + [anon_sym_is] = ACTIONS(5590), + [anon_sym_DASH_GT] = ACTIONS(5590), + [anon_sym_with] = ACTIONS(5590), + [aux_sym_preproc_if_token3] = ACTIONS(5590), + [aux_sym_preproc_else_token1] = ACTIONS(5590), + [aux_sym_preproc_elif_token1] = ACTIONS(5590), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -544327,27 +540921,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3749] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3749), [sym_preproc_endregion] = STATE(3749), [sym_preproc_line] = STATE(3749), @@ -544357,43 +540945,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3749), [sym_preproc_define] = STATE(3749), [sym_preproc_undef] = STATE(3749), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6486), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -544406,27 +540994,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3750] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), [sym_preproc_region] = STATE(3750), [sym_preproc_endregion] = STATE(3750), [sym_preproc_line] = STATE(3750), @@ -544436,43 +541003,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3750), [sym_preproc_define] = STATE(3750), [sym_preproc_undef] = STATE(3750), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5658), + [anon_sym_LBRACK] = ACTIONS(5658), + [anon_sym_COLON] = ACTIONS(5658), + [anon_sym_COMMA] = ACTIONS(5658), + [anon_sym_RBRACK] = ACTIONS(5658), + [anon_sym_LPAREN] = ACTIONS(5658), + [anon_sym_RPAREN] = ACTIONS(5658), + [anon_sym_LBRACE] = ACTIONS(5658), + [anon_sym_RBRACE] = ACTIONS(5658), + [anon_sym_LT] = ACTIONS(5660), + [anon_sym_GT] = ACTIONS(5660), + [anon_sym_in] = ACTIONS(5660), + [anon_sym_QMARK] = ACTIONS(5660), + [anon_sym_DOT] = ACTIONS(5660), + [anon_sym_EQ_GT] = ACTIONS(5658), + [anon_sym_STAR] = ACTIONS(5658), + [anon_sym_switch] = ACTIONS(5658), + [anon_sym_when] = ACTIONS(5658), + [anon_sym_DOT_DOT] = ACTIONS(5658), + [anon_sym_LT_EQ] = ACTIONS(5658), + [anon_sym_GT_EQ] = ACTIONS(5658), + [anon_sym_and] = ACTIONS(5658), + [anon_sym_or] = ACTIONS(5658), + [anon_sym_EQ_EQ] = ACTIONS(5658), + [anon_sym_BANG_EQ] = ACTIONS(5658), + [anon_sym_AMP_AMP] = ACTIONS(5658), + [anon_sym_PIPE_PIPE] = ACTIONS(5658), + [anon_sym_AMP] = ACTIONS(5660), + [sym_op_bitwise_or] = ACTIONS(5660), + [anon_sym_CARET] = ACTIONS(5658), + [sym_op_left_shift] = ACTIONS(5658), + [sym_op_right_shift] = ACTIONS(5660), + [sym_op_unsigned_right_shift] = ACTIONS(5658), + [anon_sym_PLUS] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5660), + [sym_op_divide] = ACTIONS(5660), + [sym_op_modulo] = ACTIONS(5658), + [sym_op_coalescing] = ACTIONS(5658), + [anon_sym_BANG] = ACTIONS(5660), + [anon_sym_PLUS_PLUS] = ACTIONS(5658), + [anon_sym_DASH_DASH] = ACTIONS(5658), + [anon_sym_into] = ACTIONS(5658), + [anon_sym_on] = ACTIONS(5658), + [anon_sym_equals] = ACTIONS(5658), + [anon_sym_by] = ACTIONS(5658), + [anon_sym_as] = ACTIONS(5658), + [anon_sym_is] = ACTIONS(5658), + [anon_sym_DASH_GT] = ACTIONS(5658), + [anon_sym_with] = ACTIONS(5658), + [aux_sym_preproc_if_token3] = ACTIONS(5658), + [aux_sym_preproc_else_token1] = ACTIONS(5658), + [aux_sym_preproc_elif_token1] = ACTIONS(5658), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -544494,64 +541076,58 @@ 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_SEMI] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_RBRACE] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_in] = ACTIONS(4391), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PLUS_PLUS] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_CARET] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_AMP] = ACTIONS(4391), - [anon_sym_LT_LT] = ACTIONS(4393), - [anon_sym_GT_GT] = ACTIONS(4391), - [anon_sym_GT_GT_GT] = ACTIONS(4393), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_GT_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(4393), - [anon_sym_DOT] = ACTIONS(4391), - [anon_sym_EQ_GT] = ACTIONS(4393), - [anon_sym_switch] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4393), - [anon_sym_and] = ACTIONS(4393), - [anon_sym_or] = ACTIONS(4391), - [anon_sym_AMP_AMP] = ACTIONS(4393), - [anon_sym_PIPE_PIPE] = ACTIONS(4393), - [sym_op_coalescing] = 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_group] = ACTIONS(4393), - [anon_sym_by] = ACTIONS(4393), - [anon_sym_select] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_DASH_GT] = ACTIONS(4393), - [anon_sym_with] = ACTIONS(4393), - [aux_sym_preproc_if_token3] = ACTIONS(4393), - [aux_sym_preproc_else_token1] = ACTIONS(4393), - [aux_sym_preproc_elif_token1] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(5658), + [anon_sym_LBRACK] = ACTIONS(5658), + [anon_sym_COLON] = ACTIONS(5658), + [anon_sym_COMMA] = ACTIONS(5658), + [anon_sym_RBRACK] = ACTIONS(5658), + [anon_sym_LPAREN] = ACTIONS(5658), + [anon_sym_RPAREN] = ACTIONS(5658), + [anon_sym_LBRACE] = ACTIONS(5658), + [anon_sym_RBRACE] = ACTIONS(5658), + [anon_sym_LT] = ACTIONS(5660), + [anon_sym_GT] = ACTIONS(5660), + [anon_sym_in] = ACTIONS(5658), + [anon_sym_where] = ACTIONS(5658), + [anon_sym_QMARK] = ACTIONS(5660), + [anon_sym_DOT] = ACTIONS(5660), + [anon_sym_EQ_GT] = ACTIONS(5658), + [anon_sym_STAR] = ACTIONS(5658), + [anon_sym_switch] = ACTIONS(5658), + [anon_sym_when] = ACTIONS(5658), + [anon_sym_DOT_DOT] = ACTIONS(5658), + [anon_sym_LT_EQ] = ACTIONS(5658), + [anon_sym_GT_EQ] = ACTIONS(5658), + [anon_sym_and] = ACTIONS(5658), + [anon_sym_or] = ACTIONS(5658), + [anon_sym_EQ_EQ] = ACTIONS(5658), + [anon_sym_BANG_EQ] = ACTIONS(5658), + [anon_sym_AMP_AMP] = ACTIONS(5658), + [anon_sym_PIPE_PIPE] = ACTIONS(5658), + [anon_sym_AMP] = ACTIONS(5660), + [sym_op_bitwise_or] = ACTIONS(5660), + [anon_sym_CARET] = ACTIONS(5658), + [sym_op_left_shift] = ACTIONS(5658), + [sym_op_right_shift] = ACTIONS(5660), + [sym_op_unsigned_right_shift] = ACTIONS(5658), + [anon_sym_PLUS] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5660), + [sym_op_divide] = ACTIONS(5660), + [sym_op_modulo] = ACTIONS(5658), + [sym_op_coalescing] = ACTIONS(5658), + [anon_sym_BANG] = ACTIONS(5660), + [anon_sym_PLUS_PLUS] = ACTIONS(5658), + [anon_sym_DASH_DASH] = ACTIONS(5658), + [anon_sym_on] = ACTIONS(5658), + [anon_sym_equals] = ACTIONS(5658), + [anon_sym_by] = ACTIONS(5658), + [anon_sym_as] = ACTIONS(5658), + [anon_sym_is] = ACTIONS(5658), + [anon_sym_DASH_GT] = ACTIONS(5658), + [anon_sym_with] = ACTIONS(5658), + [aux_sym_preproc_if_token3] = ACTIONS(5658), + [aux_sym_preproc_else_token1] = ACTIONS(5658), + [aux_sym_preproc_elif_token1] = ACTIONS(5658), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -544564,7 +541140,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3752] = { - [sym_initializer_expression] = STATE(4111), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3752), [sym_preproc_endregion] = STATE(3752), [sym_preproc_line] = STATE(3752), @@ -544574,63 +541164,43 @@ 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_SEMI] = ACTIONS(5734), - [anon_sym_LBRACK] = ACTIONS(5736), - [anon_sym_COLON] = ACTIONS(5734), - [anon_sym_COMMA] = ACTIONS(5734), - [anon_sym_RBRACK] = ACTIONS(5734), - [anon_sym_LPAREN] = ACTIONS(5734), - [anon_sym_RPAREN] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(5734), - [anon_sym_LT] = ACTIONS(5739), - [anon_sym_GT] = ACTIONS(5739), - [anon_sym_in] = ACTIONS(5734), - [anon_sym_where] = ACTIONS(5734), - [anon_sym_QMARK] = ACTIONS(5739), - [anon_sym_BANG] = ACTIONS(5739), - [anon_sym_PLUS_PLUS] = ACTIONS(5734), - [anon_sym_DASH_DASH] = ACTIONS(5734), - [anon_sym_PLUS] = ACTIONS(5739), - [anon_sym_DASH] = ACTIONS(5739), - [anon_sym_STAR] = ACTIONS(5734), - [anon_sym_SLASH] = ACTIONS(5739), - [anon_sym_PERCENT] = ACTIONS(5734), - [anon_sym_CARET] = ACTIONS(5734), - [anon_sym_PIPE] = ACTIONS(5739), - [anon_sym_AMP] = ACTIONS(5739), - [anon_sym_LT_LT] = ACTIONS(5734), - [anon_sym_GT_GT] = ACTIONS(5739), - [anon_sym_GT_GT_GT] = ACTIONS(5734), - [anon_sym_EQ_EQ] = ACTIONS(5734), - [anon_sym_BANG_EQ] = ACTIONS(5734), - [anon_sym_GT_EQ] = ACTIONS(5734), - [anon_sym_LT_EQ] = ACTIONS(5734), - [anon_sym_DOT] = ACTIONS(5739), - [anon_sym_EQ_GT] = ACTIONS(5734), - [anon_sym_switch] = ACTIONS(5734), - [anon_sym_DOT_DOT] = ACTIONS(5734), - [anon_sym_and] = ACTIONS(5734), - [anon_sym_or] = ACTIONS(5739), - [anon_sym_AMP_AMP] = ACTIONS(5734), - [anon_sym_PIPE_PIPE] = ACTIONS(5734), - [sym_op_coalescing] = ACTIONS(5734), - [anon_sym_from] = ACTIONS(5734), - [anon_sym_join] = ACTIONS(5734), - [anon_sym_on] = ACTIONS(5734), - [anon_sym_equals] = ACTIONS(5734), - [anon_sym_let] = ACTIONS(5734), - [anon_sym_orderby] = ACTIONS(5734), - [anon_sym_group] = ACTIONS(5734), - [anon_sym_by] = ACTIONS(5734), - [anon_sym_select] = ACTIONS(5734), - [anon_sym_as] = ACTIONS(5734), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(5734), - [anon_sym_with] = ACTIONS(5734), - [aux_sym_preproc_if_token3] = ACTIONS(5734), - [aux_sym_preproc_else_token1] = ACTIONS(5734), - [aux_sym_preproc_elif_token1] = ACTIONS(5734), + [anon_sym_SEMI] = ACTIONS(5296), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -544643,27 +541213,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3753] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3753), [sym_preproc_endregion] = STATE(3753), [sym_preproc_line] = STATE(3753), @@ -544673,43 +541237,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3753), [sym_preproc_define] = STATE(3753), [sym_preproc_undef] = STATE(3753), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5308), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -544722,27 +541286,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3754] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1464), - [sym_op_lte] = STATE(1464), - [sym_op_eq] = STATE(1463), - [sym_op_neq] = STATE(1463), - [sym_op_gt] = STATE(1464), - [sym_op_gte] = STATE(1464), - [sym_op_and] = STATE(1462), - [sym_op_or] = STATE(1461), - [sym_op_bitwise_and] = STATE(1459), - [sym_op_bitwise_or] = STATE(1456), - [sym_op_bitwise_xor] = STATE(1455), - [sym_op_left_shift] = STATE(1454), - [sym_op_right_shift] = STATE(1454), - [sym_op_unsigned_right_shift] = STATE(1454), - [sym_op_plus] = STATE(1453), - [sym_op_minus] = STATE(1453), - [sym_op_multiply] = STATE(1452), - [sym_op_divide] = STATE(1452), - [sym_op_modulo] = STATE(1452), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3754), [sym_preproc_endregion] = STATE(3754), [sym_preproc_line] = STATE(3754), @@ -544752,42 +541310,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3754), [sym_preproc_define] = STATE(3754), [sym_preproc_undef] = STATE(3754), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_when] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -544798,9 +541357,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4774), }, [3755] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3755), [sym_preproc_endregion] = STATE(3755), [sym_preproc_line] = STATE(3755), @@ -544810,64 +541383,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3755), [sym_preproc_define] = STATE(3755), [sym_preproc_undef] = STATE(3755), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_COLON] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_RBRACK] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4262), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(4262), - [anon_sym_QMARK] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_CARET] = ACTIONS(4262), - [anon_sym_PIPE] = ACTIONS(4260), - [anon_sym_AMP] = ACTIONS(4260), - [anon_sym_LT_LT] = ACTIONS(4262), - [anon_sym_GT_GT] = ACTIONS(4260), - [anon_sym_GT_GT_GT] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_EQ_GT] = ACTIONS(4262), - [anon_sym_switch] = ACTIONS(4262), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_and] = ACTIONS(4262), - [anon_sym_or] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [sym_op_coalescing] = ACTIONS(4262), - [anon_sym_from] = ACTIONS(4262), - [anon_sym_into] = ACTIONS(4262), - [anon_sym_join] = ACTIONS(4262), - [anon_sym_on] = ACTIONS(4262), - [anon_sym_equals] = ACTIONS(4262), - [anon_sym_let] = ACTIONS(4262), - [anon_sym_orderby] = ACTIONS(4262), - [anon_sym_group] = ACTIONS(4262), - [anon_sym_by] = ACTIONS(4262), - [anon_sym_select] = ACTIONS(4262), - [anon_sym_as] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4262), - [anon_sym_DASH_GT] = ACTIONS(4262), - [anon_sym_with] = ACTIONS(4262), - [aux_sym_preproc_if_token3] = ACTIONS(4262), - [aux_sym_preproc_else_token1] = ACTIONS(4262), - [aux_sym_preproc_elif_token1] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -544880,27 +541432,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3756] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3756), [sym_preproc_endregion] = STATE(3756), [sym_preproc_line] = STATE(3756), @@ -544910,43 +541456,43 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5314), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), + [aux_sym_preproc_if_token3] = ACTIONS(5314), + [aux_sym_preproc_else_token1] = ACTIONS(5314), + [aux_sym_preproc_elif_token1] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -544959,27 +541505,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3757] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3757), [sym_preproc_endregion] = STATE(3757), [sym_preproc_line] = STATE(3757), @@ -544989,43 +541529,43 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5336), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(5336), + [aux_sym_preproc_else_token1] = ACTIONS(5336), + [aux_sym_preproc_elif_token1] = ACTIONS(5336), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -545038,27 +541578,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3758] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3758), [sym_preproc_endregion] = STATE(3758), [sym_preproc_line] = STATE(3758), @@ -545068,43 +541602,43 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -545117,27 +541651,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3759] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3759), [sym_preproc_endregion] = STATE(3759), [sym_preproc_line] = STATE(3759), @@ -545147,43 +541675,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(5803), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5805), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -545196,28 +541724,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3760] = { - [sym_attribute_list] = STATE(6281), - [sym__attribute_list] = STATE(6280), - [sym_type_parameter] = STATE(7263), - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7277), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(6620), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if_in_attribute_list] = STATE(6281), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3760), [sym_preproc_endregion] = STATE(3760), [sym_preproc_line] = STATE(3760), @@ -545227,42 +541748,43 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(6037), - [aux_sym_type_argument_list_repeat1] = STATE(7273), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5977), - [anon_sym_COMMA] = ACTIONS(5979), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(5985), - [anon_sym_in] = ACTIONS(5987), - [anon_sym_out] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), - [aux_sym_preproc_if_token1] = ACTIONS(5993), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -545275,6 +541797,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3761] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3761), [sym_preproc_endregion] = STATE(3761), [sym_preproc_line] = STATE(3761), @@ -545284,64 +541821,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3761), [sym_preproc_define] = STATE(3761), [sym_preproc_undef] = STATE(3761), - [anon_sym_SEMI] = ACTIONS(4446), - [anon_sym_LBRACK] = ACTIONS(4446), - [anon_sym_COLON] = ACTIONS(4446), - [anon_sym_COMMA] = ACTIONS(4446), - [anon_sym_RBRACK] = ACTIONS(4446), - [anon_sym_LPAREN] = ACTIONS(4446), - [anon_sym_RPAREN] = ACTIONS(4446), - [anon_sym_LBRACE] = ACTIONS(4446), - [anon_sym_RBRACE] = ACTIONS(4446), - [anon_sym_LT] = ACTIONS(4444), - [anon_sym_GT] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4444), - [anon_sym_where] = ACTIONS(4446), - [anon_sym_QMARK] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4446), - [anon_sym_DASH_DASH] = ACTIONS(4446), - [anon_sym_PLUS] = ACTIONS(4444), - [anon_sym_DASH] = ACTIONS(4444), - [anon_sym_STAR] = ACTIONS(4446), - [anon_sym_SLASH] = ACTIONS(4444), - [anon_sym_PERCENT] = ACTIONS(4446), - [anon_sym_CARET] = ACTIONS(4446), - [anon_sym_PIPE] = ACTIONS(4444), - [anon_sym_AMP] = ACTIONS(4444), - [anon_sym_LT_LT] = ACTIONS(4446), - [anon_sym_GT_GT] = ACTIONS(4444), - [anon_sym_GT_GT_GT] = ACTIONS(4446), - [anon_sym_EQ_EQ] = ACTIONS(4446), - [anon_sym_BANG_EQ] = ACTIONS(4446), - [anon_sym_GT_EQ] = ACTIONS(4446), - [anon_sym_LT_EQ] = ACTIONS(4446), - [anon_sym_DOT] = ACTIONS(4444), - [anon_sym_EQ_GT] = ACTIONS(4446), - [anon_sym_switch] = ACTIONS(4446), - [anon_sym_DOT_DOT] = ACTIONS(4446), - [anon_sym_and] = ACTIONS(4446), - [anon_sym_or] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4446), - [anon_sym_PIPE_PIPE] = ACTIONS(4446), - [sym_op_coalescing] = ACTIONS(4446), - [anon_sym_from] = ACTIONS(4446), - [anon_sym_into] = ACTIONS(4446), - [anon_sym_join] = ACTIONS(4446), - [anon_sym_on] = ACTIONS(4446), - [anon_sym_equals] = ACTIONS(4446), - [anon_sym_let] = ACTIONS(4446), - [anon_sym_orderby] = ACTIONS(4446), - [anon_sym_group] = ACTIONS(4446), - [anon_sym_by] = ACTIONS(4446), - [anon_sym_select] = ACTIONS(4446), - [anon_sym_as] = ACTIONS(4446), - [anon_sym_is] = ACTIONS(4446), - [anon_sym_DASH_GT] = ACTIONS(4446), - [anon_sym_with] = ACTIONS(4446), - [aux_sym_preproc_if_token3] = ACTIONS(4446), - [aux_sym_preproc_else_token1] = ACTIONS(4446), - [aux_sym_preproc_elif_token1] = ACTIONS(4446), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -545354,6 +541870,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3762] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3762), [sym_preproc_endregion] = STATE(3762), [sym_preproc_line] = STATE(3762), @@ -545363,64 +541894,43 @@ 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_SEMI] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(4357), - [anon_sym_COLON] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4357), - [anon_sym_RBRACK] = ACTIONS(4357), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_RPAREN] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4357), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4357), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_PLUS_PLUS] = ACTIONS(4357), - [anon_sym_DASH_DASH] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4357), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4357), - [anon_sym_CARET] = ACTIONS(4357), - [anon_sym_PIPE] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_LT] = ACTIONS(4357), - [anon_sym_GT_GT] = ACTIONS(4355), - [anon_sym_GT_GT_GT] = ACTIONS(4357), - [anon_sym_EQ_EQ] = ACTIONS(4357), - [anon_sym_BANG_EQ] = ACTIONS(4357), - [anon_sym_GT_EQ] = ACTIONS(4357), - [anon_sym_LT_EQ] = ACTIONS(4357), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_EQ_GT] = ACTIONS(4357), - [anon_sym_switch] = ACTIONS(4357), - [anon_sym_DOT_DOT] = ACTIONS(4357), - [anon_sym_and] = ACTIONS(4357), - [anon_sym_or] = ACTIONS(4355), - [anon_sym_AMP_AMP] = ACTIONS(4357), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [sym_op_coalescing] = ACTIONS(4357), - [anon_sym_from] = ACTIONS(4357), - [anon_sym_into] = ACTIONS(4357), - [anon_sym_join] = ACTIONS(4357), - [anon_sym_on] = ACTIONS(4357), - [anon_sym_equals] = ACTIONS(4357), - [anon_sym_let] = ACTIONS(4357), - [anon_sym_orderby] = ACTIONS(4357), - [anon_sym_group] = ACTIONS(4357), - [anon_sym_by] = ACTIONS(4357), - [anon_sym_select] = ACTIONS(4357), - [anon_sym_as] = ACTIONS(4357), - [anon_sym_is] = ACTIONS(4357), - [anon_sym_DASH_GT] = ACTIONS(4357), - [anon_sym_with] = ACTIONS(4357), - [aux_sym_preproc_if_token3] = ACTIONS(4357), - [aux_sym_preproc_else_token1] = ACTIONS(4357), - [aux_sym_preproc_elif_token1] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -545433,27 +541943,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3763] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3763), [sym_preproc_endregion] = STATE(3763), [sym_preproc_line] = STATE(3763), @@ -545463,43 +541967,43 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6444), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -545512,27 +542016,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3764] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3764), [sym_preproc_endregion] = STATE(3764), [sym_preproc_line] = STATE(3764), @@ -545542,43 +542040,43 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4752), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5847), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -545591,27 +542089,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3765] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3765), [sym_preproc_endregion] = STATE(3765), [sym_preproc_line] = STATE(3765), @@ -545621,43 +542113,43 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4730), - [anon_sym_QMARK] = ACTIONS(5803), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5805), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -545670,27 +542162,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3766] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3766), [sym_preproc_endregion] = STATE(3766), [sym_preproc_line] = STATE(3766), @@ -545700,43 +542186,43 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4750), - [anon_sym_QMARK] = ACTIONS(5803), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5805), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(5807), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -545758,63 +542244,57 @@ 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_SEMI] = ACTIONS(4349), - [anon_sym_LBRACK] = ACTIONS(4349), - [anon_sym_COLON] = ACTIONS(4349), - [anon_sym_COMMA] = ACTIONS(4349), - [anon_sym_RBRACK] = ACTIONS(4349), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym_RPAREN] = ACTIONS(4349), - [anon_sym_LBRACE] = ACTIONS(4349), - [anon_sym_RBRACE] = ACTIONS(4349), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_where] = ACTIONS(4349), - [anon_sym_QMARK] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_PLUS_PLUS] = ACTIONS(4349), - [anon_sym_DASH_DASH] = ACTIONS(4349), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4349), - [anon_sym_CARET] = ACTIONS(4349), - [anon_sym_PIPE] = ACTIONS(4347), - [anon_sym_AMP] = ACTIONS(4347), - [anon_sym_LT_LT] = ACTIONS(4349), - [anon_sym_GT_GT] = ACTIONS(4347), - [anon_sym_GT_GT_GT] = ACTIONS(4349), - [anon_sym_EQ_EQ] = ACTIONS(4349), - [anon_sym_BANG_EQ] = ACTIONS(4349), - [anon_sym_GT_EQ] = ACTIONS(4349), - [anon_sym_LT_EQ] = ACTIONS(4349), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_EQ_GT] = ACTIONS(4349), - [anon_sym_switch] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4349), - [anon_sym_and] = ACTIONS(4349), - [anon_sym_or] = ACTIONS(4347), - [anon_sym_AMP_AMP] = ACTIONS(4349), - [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [sym_op_coalescing] = ACTIONS(4349), - [anon_sym_from] = ACTIONS(4349), - [anon_sym_join] = ACTIONS(4349), - [anon_sym_on] = ACTIONS(4349), - [anon_sym_equals] = ACTIONS(4349), - [anon_sym_let] = ACTIONS(4349), - [anon_sym_orderby] = ACTIONS(4349), - [anon_sym_group] = ACTIONS(4349), - [anon_sym_by] = ACTIONS(4349), - [anon_sym_select] = ACTIONS(4349), - [anon_sym_as] = ACTIONS(4349), - [anon_sym_is] = ACTIONS(4349), - [anon_sym_DASH_GT] = ACTIONS(4349), - [anon_sym_with] = ACTIONS(4349), - [aux_sym_preproc_if_token3] = ACTIONS(4349), - [aux_sym_preproc_else_token1] = ACTIONS(4349), - [aux_sym_preproc_elif_token1] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4526), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_COLON] = ACTIONS(4524), + [anon_sym_COMMA] = ACTIONS(4524), + [anon_sym_LPAREN] = ACTIONS(4524), + [anon_sym_LT] = ACTIONS(4526), + [anon_sym_GT] = ACTIONS(4526), + [anon_sym_QMARK] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_switch] = ACTIONS(4524), + [anon_sym_DOT_DOT] = ACTIONS(4524), + [anon_sym_LT_EQ] = ACTIONS(4524), + [anon_sym_GT_EQ] = ACTIONS(4524), + [anon_sym_and] = ACTIONS(4524), + [anon_sym_or] = ACTIONS(4524), + [anon_sym_PLUS_EQ] = ACTIONS(4524), + [anon_sym_DASH_EQ] = ACTIONS(4524), + [anon_sym_STAR_EQ] = ACTIONS(4524), + [anon_sym_SLASH_EQ] = ACTIONS(4524), + [anon_sym_PERCENT_EQ] = ACTIONS(4524), + [anon_sym_AMP_EQ] = ACTIONS(4524), + [anon_sym_CARET_EQ] = ACTIONS(4524), + [anon_sym_PIPE_EQ] = ACTIONS(4524), + [anon_sym_LT_LT_EQ] = ACTIONS(4524), + [anon_sym_GT_GT_EQ] = ACTIONS(4524), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4524), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4524), + [anon_sym_EQ_EQ] = ACTIONS(4524), + [anon_sym_BANG_EQ] = ACTIONS(4524), + [anon_sym_AMP_AMP] = ACTIONS(4524), + [anon_sym_PIPE_PIPE] = ACTIONS(4524), + [anon_sym_AMP] = ACTIONS(4526), + [sym_op_bitwise_or] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [sym_op_left_shift] = ACTIONS(4526), + [sym_op_right_shift] = ACTIONS(4526), + [sym_op_unsigned_right_shift] = ACTIONS(4526), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [sym_op_divide] = ACTIONS(4526), + [sym_op_modulo] = ACTIONS(4526), + [sym_op_coalescing] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_PLUS_PLUS] = ACTIONS(4524), + [anon_sym_DASH_DASH] = ACTIONS(4524), + [anon_sym_into] = ACTIONS(4524), + [anon_sym_as] = ACTIONS(4524), + [anon_sym_is] = ACTIONS(4524), + [anon_sym_DASH_GT] = ACTIONS(4524), + [anon_sym_with] = ACTIONS(4524), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -545825,6 +542305,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(4524), }, [3768] = { [sym_preproc_region] = STATE(3768), @@ -545836,63 +542317,58 @@ 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_SEMI] = ACTIONS(5995), - [anon_sym_LBRACK] = ACTIONS(5995), - [anon_sym_COLON] = ACTIONS(5995), - [anon_sym_COMMA] = ACTIONS(5995), - [anon_sym_RBRACK] = ACTIONS(5995), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_RBRACE] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_in] = ACTIONS(5997), - [anon_sym_where] = ACTIONS(5995), - [anon_sym_QMARK] = ACTIONS(5997), - [anon_sym_BANG] = ACTIONS(5997), - [anon_sym_PLUS_PLUS] = ACTIONS(5995), - [anon_sym_DASH_DASH] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(5997), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5997), - [anon_sym_PERCENT] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), - [anon_sym_LT_LT] = ACTIONS(5995), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_GT_GT_GT] = ACTIONS(5995), - [anon_sym_EQ_EQ] = ACTIONS(5995), - [anon_sym_BANG_EQ] = ACTIONS(5995), - [anon_sym_GT_EQ] = ACTIONS(5995), - [anon_sym_LT_EQ] = ACTIONS(5995), - [anon_sym_DOT] = ACTIONS(5997), - [anon_sym_EQ_GT] = ACTIONS(5995), - [anon_sym_switch] = ACTIONS(5995), - [anon_sym_DOT_DOT] = ACTIONS(5995), - [anon_sym_and] = ACTIONS(5995), - [anon_sym_or] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), - [sym_op_coalescing] = ACTIONS(5995), - [anon_sym_from] = ACTIONS(5995), - [anon_sym_into] = ACTIONS(5995), - [anon_sym_join] = ACTIONS(5995), - [anon_sym_on] = ACTIONS(5995), - [anon_sym_equals] = ACTIONS(5995), - [anon_sym_let] = ACTIONS(5995), - [anon_sym_orderby] = ACTIONS(5995), - [anon_sym_group] = ACTIONS(5995), - [anon_sym_by] = ACTIONS(5995), - [anon_sym_select] = ACTIONS(5995), - [anon_sym_as] = ACTIONS(5995), - [anon_sym_is] = ACTIONS(5995), - [anon_sym_DASH_GT] = ACTIONS(5995), - [anon_sym_with] = ACTIONS(5995), - [aux_sym_preproc_if_token3] = ACTIONS(5995), - [aux_sym_preproc_else_token1] = ACTIONS(5995), - [aux_sym_preproc_elif_token1] = ACTIONS(5995), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_when] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3694), + [anon_sym_or] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_into] = ACTIONS(3694), + [anon_sym_on] = ACTIONS(3694), + [anon_sym_equals] = ACTIONS(3694), + [anon_sym_by] = ACTIONS(3694), + [anon_sym_as] = ACTIONS(3694), + [anon_sym_is] = ACTIONS(3694), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3694), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -545914,63 +542390,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3769), [sym_preproc_define] = STATE(3769), [sym_preproc_undef] = STATE(3769), - [anon_sym_SEMI] = ACTIONS(5999), - [anon_sym_LBRACK] = ACTIONS(5999), - [anon_sym_COLON] = ACTIONS(5999), - [anon_sym_COMMA] = ACTIONS(5999), - [anon_sym_RBRACK] = ACTIONS(5999), - [anon_sym_LPAREN] = ACTIONS(5999), - [anon_sym_RPAREN] = ACTIONS(5999), - [anon_sym_RBRACE] = ACTIONS(5999), - [anon_sym_LT] = ACTIONS(6001), - [anon_sym_GT] = ACTIONS(6001), - [anon_sym_in] = 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_EQ_GT] = ACTIONS(5999), - [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), - [sym_op_coalescing] = ACTIONS(5999), - [anon_sym_from] = ACTIONS(5999), - [anon_sym_into] = ACTIONS(5999), - [anon_sym_join] = ACTIONS(5999), - [anon_sym_on] = ACTIONS(5999), - [anon_sym_equals] = ACTIONS(5999), - [anon_sym_let] = ACTIONS(5999), - [anon_sym_orderby] = ACTIONS(5999), - [anon_sym_group] = ACTIONS(5999), - [anon_sym_by] = ACTIONS(5999), - [anon_sym_select] = ACTIONS(5999), - [anon_sym_as] = ACTIONS(5999), - [anon_sym_is] = ACTIONS(5999), - [anon_sym_DASH_GT] = ACTIONS(5999), - [anon_sym_with] = ACTIONS(5999), - [aux_sym_preproc_if_token3] = ACTIONS(5999), - [aux_sym_preproc_else_token1] = ACTIONS(5999), - [aux_sym_preproc_elif_token1] = ACTIONS(5999), + [anon_sym_EQ] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(4554), + [anon_sym_COMMA] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4554), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4556), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4556), + [anon_sym_STAR] = ACTIONS(4556), + [anon_sym_switch] = ACTIONS(4554), + [anon_sym_DOT_DOT] = ACTIONS(4554), + [anon_sym_LT_EQ] = ACTIONS(4554), + [anon_sym_GT_EQ] = ACTIONS(4554), + [anon_sym_and] = ACTIONS(4554), + [anon_sym_or] = ACTIONS(4554), + [anon_sym_PLUS_EQ] = ACTIONS(4554), + [anon_sym_DASH_EQ] = ACTIONS(4554), + [anon_sym_STAR_EQ] = ACTIONS(4554), + [anon_sym_SLASH_EQ] = ACTIONS(4554), + [anon_sym_PERCENT_EQ] = ACTIONS(4554), + [anon_sym_AMP_EQ] = ACTIONS(4554), + [anon_sym_CARET_EQ] = ACTIONS(4554), + [anon_sym_PIPE_EQ] = ACTIONS(4554), + [anon_sym_LT_LT_EQ] = ACTIONS(4554), + [anon_sym_GT_GT_EQ] = ACTIONS(4554), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4554), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4554), + [anon_sym_EQ_EQ] = ACTIONS(4554), + [anon_sym_BANG_EQ] = ACTIONS(4554), + [anon_sym_AMP_AMP] = ACTIONS(4554), + [anon_sym_PIPE_PIPE] = ACTIONS(4554), + [anon_sym_AMP] = ACTIONS(4556), + [sym_op_bitwise_or] = ACTIONS(4556), + [anon_sym_CARET] = ACTIONS(4556), + [sym_op_left_shift] = ACTIONS(4556), + [sym_op_right_shift] = ACTIONS(4556), + [sym_op_unsigned_right_shift] = ACTIONS(4556), + [anon_sym_PLUS] = ACTIONS(4556), + [anon_sym_DASH] = ACTIONS(4556), + [sym_op_divide] = ACTIONS(4556), + [sym_op_modulo] = ACTIONS(4556), + [sym_op_coalescing] = ACTIONS(4556), + [anon_sym_BANG] = ACTIONS(4556), + [anon_sym_PLUS_PLUS] = ACTIONS(4554), + [anon_sym_DASH_DASH] = ACTIONS(4554), + [anon_sym_into] = ACTIONS(4554), + [anon_sym_as] = ACTIONS(4554), + [anon_sym_is] = ACTIONS(4554), + [anon_sym_DASH_GT] = ACTIONS(4554), + [anon_sym_with] = ACTIONS(4554), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -545981,6 +542451,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(4554), }, [3770] = { [sym_preproc_region] = STATE(3770), @@ -545992,63 +542463,57 @@ 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_SEMI] = ACTIONS(6003), - [anon_sym_LBRACK] = ACTIONS(6003), - [anon_sym_COLON] = ACTIONS(6003), - [anon_sym_COMMA] = ACTIONS(6003), - [anon_sym_RBRACK] = ACTIONS(6003), - [anon_sym_LPAREN] = ACTIONS(6003), - [anon_sym_RPAREN] = ACTIONS(6003), - [anon_sym_RBRACE] = ACTIONS(6003), - [anon_sym_LT] = ACTIONS(6005), - [anon_sym_GT] = ACTIONS(6005), - [anon_sym_in] = 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_EQ_GT] = ACTIONS(6003), - [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), - [sym_op_coalescing] = ACTIONS(6003), - [anon_sym_from] = ACTIONS(6003), - [anon_sym_into] = ACTIONS(6003), - [anon_sym_join] = ACTIONS(6003), - [anon_sym_on] = ACTIONS(6003), - [anon_sym_equals] = ACTIONS(6003), - [anon_sym_let] = ACTIONS(6003), - [anon_sym_orderby] = ACTIONS(6003), - [anon_sym_group] = ACTIONS(6003), - [anon_sym_by] = ACTIONS(6003), - [anon_sym_select] = ACTIONS(6003), - [anon_sym_as] = ACTIONS(6003), - [anon_sym_is] = ACTIONS(6003), - [anon_sym_DASH_GT] = ACTIONS(6003), - [anon_sym_with] = ACTIONS(6003), - [aux_sym_preproc_if_token3] = ACTIONS(6003), - [aux_sym_preproc_else_token1] = ACTIONS(6003), - [aux_sym_preproc_elif_token1] = ACTIONS(6003), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_COLON] = ACTIONS(4550), + [anon_sym_COMMA] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_LT] = ACTIONS(4552), + [anon_sym_GT] = ACTIONS(4552), + [anon_sym_QMARK] = ACTIONS(4552), + [anon_sym_DOT] = ACTIONS(4552), + [anon_sym_STAR] = ACTIONS(4552), + [anon_sym_switch] = ACTIONS(4550), + [anon_sym_DOT_DOT] = ACTIONS(4550), + [anon_sym_LT_EQ] = ACTIONS(4550), + [anon_sym_GT_EQ] = ACTIONS(4550), + [anon_sym_and] = ACTIONS(4550), + [anon_sym_or] = ACTIONS(4550), + [anon_sym_PLUS_EQ] = ACTIONS(4550), + [anon_sym_DASH_EQ] = ACTIONS(4550), + [anon_sym_STAR_EQ] = ACTIONS(4550), + [anon_sym_SLASH_EQ] = ACTIONS(4550), + [anon_sym_PERCENT_EQ] = ACTIONS(4550), + [anon_sym_AMP_EQ] = ACTIONS(4550), + [anon_sym_CARET_EQ] = ACTIONS(4550), + [anon_sym_PIPE_EQ] = ACTIONS(4550), + [anon_sym_LT_LT_EQ] = ACTIONS(4550), + [anon_sym_GT_GT_EQ] = ACTIONS(4550), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4550), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4550), + [anon_sym_EQ_EQ] = ACTIONS(4550), + [anon_sym_BANG_EQ] = ACTIONS(4550), + [anon_sym_AMP_AMP] = ACTIONS(4550), + [anon_sym_PIPE_PIPE] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4552), + [sym_op_bitwise_or] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [sym_op_left_shift] = ACTIONS(4552), + [sym_op_right_shift] = ACTIONS(4552), + [sym_op_unsigned_right_shift] = ACTIONS(4552), + [anon_sym_PLUS] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4552), + [sym_op_divide] = ACTIONS(4552), + [sym_op_modulo] = ACTIONS(4552), + [sym_op_coalescing] = ACTIONS(4552), + [anon_sym_BANG] = ACTIONS(4552), + [anon_sym_PLUS_PLUS] = ACTIONS(4550), + [anon_sym_DASH_DASH] = ACTIONS(4550), + [anon_sym_into] = ACTIONS(4550), + [anon_sym_as] = ACTIONS(4550), + [anon_sym_is] = ACTIONS(4550), + [anon_sym_DASH_GT] = ACTIONS(4550), + [anon_sym_with] = ACTIONS(4550), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -546059,6 +542524,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(4550), }, [3771] = { [sym_preproc_region] = STATE(3771), @@ -546070,63 +542536,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3771), [sym_preproc_define] = STATE(3771), [sym_preproc_undef] = STATE(3771), - [anon_sym_SEMI] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(6007), - [anon_sym_COLON] = ACTIONS(6007), - [anon_sym_COMMA] = ACTIONS(6007), - [anon_sym_RBRACK] = ACTIONS(6007), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_RPAREN] = ACTIONS(6007), - [anon_sym_RBRACE] = ACTIONS(6007), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_in] = ACTIONS(6009), - [anon_sym_where] = ACTIONS(6007), - [anon_sym_QMARK] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PLUS_PLUS] = ACTIONS(6007), - [anon_sym_DASH_DASH] = ACTIONS(6007), - [anon_sym_PLUS] = ACTIONS(6009), - [anon_sym_DASH] = ACTIONS(6009), - [anon_sym_STAR] = ACTIONS(6007), - [anon_sym_SLASH] = ACTIONS(6009), - [anon_sym_PERCENT] = ACTIONS(6007), - [anon_sym_CARET] = ACTIONS(6007), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_AMP] = ACTIONS(6009), - [anon_sym_LT_LT] = ACTIONS(6007), - [anon_sym_GT_GT] = ACTIONS(6009), - [anon_sym_GT_GT_GT] = ACTIONS(6007), - [anon_sym_EQ_EQ] = ACTIONS(6007), - [anon_sym_BANG_EQ] = ACTIONS(6007), - [anon_sym_GT_EQ] = ACTIONS(6007), - [anon_sym_LT_EQ] = ACTIONS(6007), - [anon_sym_DOT] = ACTIONS(6009), - [anon_sym_EQ_GT] = ACTIONS(6007), - [anon_sym_switch] = ACTIONS(6007), - [anon_sym_DOT_DOT] = ACTIONS(6007), - [anon_sym_and] = ACTIONS(6007), - [anon_sym_or] = ACTIONS(6009), - [anon_sym_AMP_AMP] = ACTIONS(6007), - [anon_sym_PIPE_PIPE] = ACTIONS(6007), - [sym_op_coalescing] = ACTIONS(6007), - [anon_sym_from] = ACTIONS(6007), - [anon_sym_into] = ACTIONS(6007), - [anon_sym_join] = ACTIONS(6007), - [anon_sym_on] = ACTIONS(6007), - [anon_sym_equals] = ACTIONS(6007), - [anon_sym_let] = ACTIONS(6007), - [anon_sym_orderby] = ACTIONS(6007), - [anon_sym_group] = ACTIONS(6007), - [anon_sym_by] = ACTIONS(6007), - [anon_sym_select] = ACTIONS(6007), - [anon_sym_as] = ACTIONS(6007), - [anon_sym_is] = ACTIONS(6007), - [anon_sym_DASH_GT] = ACTIONS(6007), - [anon_sym_with] = ACTIONS(6007), - [aux_sym_preproc_if_token3] = ACTIONS(6007), - [aux_sym_preproc_else_token1] = ACTIONS(6007), - [aux_sym_preproc_elif_token1] = ACTIONS(6007), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3189), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACK] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_in] = ACTIONS(3187), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_EQ_GT] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_when] = ACTIONS(3189), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3189), + [sym_op_left_shift] = ACTIONS(3189), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3189), + [sym_op_coalescing] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_into] = ACTIONS(3189), + [anon_sym_on] = ACTIONS(3189), + [anon_sym_equals] = ACTIONS(3189), + [anon_sym_by] = ACTIONS(3189), + [anon_sym_as] = ACTIONS(3189), + [anon_sym_is] = ACTIONS(3189), + [anon_sym_DASH_GT] = ACTIONS(3189), + [anon_sym_with] = 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), @@ -546139,27 +542600,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3772] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), [sym_op_lt] = STATE(1879), [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), [sym_op_gt] = STATE(1879), [sym_op_gte] = STATE(1879), [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3772), [sym_preproc_endregion] = STATE(3772), [sym_preproc_line] = STATE(3772), @@ -546169,42 +542624,43 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6013), - [anon_sym_is] = ACTIONS(6015), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -546217,27 +542673,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3773] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3773), [sym_preproc_endregion] = STATE(3773), [sym_preproc_line] = STATE(3773), @@ -546247,42 +542697,43 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4708), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6021), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6023), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -546295,6 +542746,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3774] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3774), [sym_preproc_endregion] = STATE(3774), [sym_preproc_line] = STATE(3774), @@ -546304,63 +542770,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3774), [sym_preproc_define] = STATE(3774), [sym_preproc_undef] = STATE(3774), - [anon_sym_SEMI] = ACTIONS(4748), - [anon_sym_LBRACK] = ACTIONS(4748), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_RBRACK] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4748), - [anon_sym_RPAREN] = ACTIONS(4748), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4750), - [anon_sym_GT] = ACTIONS(4750), - [anon_sym_in] = ACTIONS(4750), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(4750), - [anon_sym_BANG] = ACTIONS(4750), - [anon_sym_PLUS_PLUS] = ACTIONS(4748), - [anon_sym_DASH_DASH] = ACTIONS(4748), - [anon_sym_PLUS] = ACTIONS(4750), - [anon_sym_DASH] = ACTIONS(4750), - [anon_sym_STAR] = ACTIONS(4748), - [anon_sym_SLASH] = ACTIONS(4750), - [anon_sym_PERCENT] = ACTIONS(4748), - [anon_sym_CARET] = ACTIONS(4748), - [anon_sym_PIPE] = ACTIONS(4750), - [anon_sym_AMP] = ACTIONS(4750), - [anon_sym_LT_LT] = ACTIONS(4748), - [anon_sym_GT_GT] = ACTIONS(4750), - [anon_sym_GT_GT_GT] = ACTIONS(4748), - [anon_sym_EQ_EQ] = ACTIONS(4748), - [anon_sym_BANG_EQ] = ACTIONS(4748), - [anon_sym_GT_EQ] = ACTIONS(4748), - [anon_sym_LT_EQ] = ACTIONS(4748), - [anon_sym_DOT] = ACTIONS(4750), - [anon_sym_EQ_GT] = ACTIONS(4748), - [anon_sym_switch] = ACTIONS(4748), - [anon_sym_DOT_DOT] = ACTIONS(4748), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4750), - [anon_sym_AMP_AMP] = ACTIONS(4748), - [anon_sym_PIPE_PIPE] = ACTIONS(4748), - [sym_op_coalescing] = ACTIONS(4748), - [anon_sym_from] = ACTIONS(4748), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_join] = ACTIONS(4748), - [anon_sym_on] = ACTIONS(4748), - [anon_sym_equals] = ACTIONS(4748), - [anon_sym_let] = ACTIONS(4748), - [anon_sym_orderby] = ACTIONS(4748), - [anon_sym_group] = ACTIONS(4748), - [anon_sym_by] = ACTIONS(4748), - [anon_sym_select] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4748), - [anon_sym_is] = ACTIONS(4748), - [anon_sym_DASH_GT] = ACTIONS(4748), - [anon_sym_with] = ACTIONS(4748), - [aux_sym_preproc_if_token3] = ACTIONS(4748), - [aux_sym_preproc_else_token1] = ACTIONS(4748), - [aux_sym_preproc_elif_token1] = ACTIONS(4748), + [anon_sym_SEMI] = ACTIONS(5360), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), + [aux_sym_preproc_if_token3] = ACTIONS(5360), + [aux_sym_preproc_else_token1] = ACTIONS(5360), + [aux_sym_preproc_elif_token1] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -546373,6 +542819,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3775] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3775), [sym_preproc_endregion] = STATE(3775), [sym_preproc_line] = STATE(3775), @@ -546382,63 +542843,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3775), [sym_preproc_define] = STATE(3775), [sym_preproc_undef] = STATE(3775), - [anon_sym_SEMI] = ACTIONS(6025), - [anon_sym_LBRACK] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6025), - [anon_sym_COMMA] = ACTIONS(6025), - [anon_sym_RBRACK] = ACTIONS(6025), - [anon_sym_LPAREN] = ACTIONS(6025), - [anon_sym_RPAREN] = ACTIONS(6025), - [anon_sym_RBRACE] = ACTIONS(6025), - [anon_sym_LT] = ACTIONS(6027), - [anon_sym_GT] = ACTIONS(6027), - [anon_sym_in] = ACTIONS(6027), - [anon_sym_where] = ACTIONS(6025), - [anon_sym_QMARK] = ACTIONS(6027), - [anon_sym_BANG] = ACTIONS(6027), - [anon_sym_PLUS_PLUS] = ACTIONS(6025), - [anon_sym_DASH_DASH] = ACTIONS(6025), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6025), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_PERCENT] = ACTIONS(6025), - [anon_sym_CARET] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), - [anon_sym_LT_LT] = ACTIONS(6025), - [anon_sym_GT_GT] = ACTIONS(6027), - [anon_sym_GT_GT_GT] = ACTIONS(6025), - [anon_sym_EQ_EQ] = ACTIONS(6025), - [anon_sym_BANG_EQ] = ACTIONS(6025), - [anon_sym_GT_EQ] = ACTIONS(6025), - [anon_sym_LT_EQ] = ACTIONS(6025), - [anon_sym_DOT] = ACTIONS(6027), - [anon_sym_EQ_GT] = ACTIONS(6025), - [anon_sym_switch] = ACTIONS(6025), - [anon_sym_DOT_DOT] = ACTIONS(6025), - [anon_sym_and] = ACTIONS(6025), - [anon_sym_or] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [sym_op_coalescing] = ACTIONS(6025), - [anon_sym_from] = ACTIONS(6025), - [anon_sym_into] = ACTIONS(6025), - [anon_sym_join] = ACTIONS(6025), - [anon_sym_on] = ACTIONS(6025), - [anon_sym_equals] = ACTIONS(6025), - [anon_sym_let] = ACTIONS(6025), - [anon_sym_orderby] = ACTIONS(6025), - [anon_sym_group] = ACTIONS(6025), - [anon_sym_by] = ACTIONS(6025), - [anon_sym_select] = ACTIONS(6025), - [anon_sym_as] = ACTIONS(6025), - [anon_sym_is] = ACTIONS(6025), - [anon_sym_DASH_GT] = ACTIONS(6025), - [anon_sym_with] = ACTIONS(6025), - [aux_sym_preproc_if_token3] = ACTIONS(6025), - [aux_sym_preproc_else_token1] = ACTIONS(6025), - [aux_sym_preproc_elif_token1] = ACTIONS(6025), + [anon_sym_SEMI] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(5332), + [aux_sym_preproc_else_token1] = ACTIONS(5332), + [aux_sym_preproc_elif_token1] = ACTIONS(5332), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -546460,63 +542901,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3776), [sym_preproc_define] = STATE(3776), [sym_preproc_undef] = STATE(3776), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_COLON] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACK] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_in] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2175), - [anon_sym_QMARK] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_EQ_GT] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_DOT_DOT] = ACTIONS(2175), - [anon_sym_and] = ACTIONS(2175), - [anon_sym_or] = ACTIONS(2177), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [sym_op_coalescing] = ACTIONS(2175), - [anon_sym_from] = ACTIONS(2175), - [anon_sym_into] = ACTIONS(2175), - [anon_sym_join] = ACTIONS(2175), - [anon_sym_on] = ACTIONS(2175), - [anon_sym_equals] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_orderby] = ACTIONS(2175), - [anon_sym_group] = ACTIONS(2175), - [anon_sym_by] = ACTIONS(2175), - [anon_sym_select] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_is] = ACTIONS(2175), - [anon_sym_DASH_GT] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [aux_sym_preproc_if_token3] = ACTIONS(2175), - [aux_sym_preproc_else_token1] = ACTIONS(2175), - [aux_sym_preproc_elif_token1] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(5645), + [anon_sym_LBRACK] = ACTIONS(5645), + [anon_sym_COLON] = ACTIONS(5645), + [anon_sym_COMMA] = ACTIONS(5645), + [anon_sym_RBRACK] = ACTIONS(5645), + [anon_sym_LPAREN] = ACTIONS(5645), + [anon_sym_RPAREN] = ACTIONS(5645), + [anon_sym_RBRACE] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5647), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_in] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5647), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_EQ_GT] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_switch] = ACTIONS(5645), + [anon_sym_when] = ACTIONS(5645), + [anon_sym_DOT_DOT] = ACTIONS(5645), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5645), + [anon_sym_BANG_EQ] = ACTIONS(5645), + [anon_sym_AMP_AMP] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [sym_op_bitwise_or] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5645), + [sym_op_left_shift] = ACTIONS(5645), + [sym_op_right_shift] = ACTIONS(5647), + [sym_op_unsigned_right_shift] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_DASH] = ACTIONS(5647), + [sym_op_divide] = ACTIONS(5647), + [sym_op_modulo] = ACTIONS(5645), + [sym_op_coalescing] = ACTIONS(5645), + [anon_sym_BANG] = ACTIONS(5647), + [anon_sym_PLUS_PLUS] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5645), + [anon_sym_on] = ACTIONS(5645), + [anon_sym_equals] = ACTIONS(5645), + [anon_sym_by] = ACTIONS(5645), + [anon_sym_as] = ACTIONS(5645), + [anon_sym_is] = ACTIONS(5645), + [anon_sym_DASH_GT] = ACTIONS(5645), + [anon_sym_with] = ACTIONS(5645), + [anon_sym_DQUOTE] = ACTIONS(5645), + [sym_string_literal_encoding] = ACTIONS(6517), + [aux_sym_preproc_if_token3] = ACTIONS(5645), + [aux_sym_preproc_else_token1] = ACTIONS(5645), + [aux_sym_preproc_elif_token1] = ACTIONS(5645), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -546529,27 +542965,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3777] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3777), [sym_preproc_endregion] = STATE(3777), [sym_preproc_line] = STATE(3777), @@ -546559,42 +542989,43 @@ 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), - [aux_sym_array_rank_specifier_repeat1] = STATE(7299), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6029), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -546607,27 +543038,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3778] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(3778), [sym_preproc_endregion] = STATE(3778), [sym_preproc_line] = STATE(3778), @@ -546637,42 +543062,43 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4790), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6021), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6023), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_RBRACK] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5308), + [anon_sym_RBRACE] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -546685,27 +543111,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3779] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), [sym_preproc_region] = STATE(3779), [sym_preproc_endregion] = STATE(3779), [sym_preproc_line] = STATE(3779), @@ -546715,42 +543120,58 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6013), - [anon_sym_is] = ACTIONS(6015), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(6519), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_interface] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_record] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -546763,27 +543184,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3780] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), [sym_op_lt] = STATE(1879), [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), [sym_op_gt] = STATE(1879), [sym_op_gte] = STATE(1879), [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3780), [sym_preproc_endregion] = STATE(3780), [sym_preproc_line] = STATE(3780), @@ -546793,42 +543208,43 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6013), - [anon_sym_is] = ACTIONS(6015), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -546841,27 +543257,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3781] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3781), [sym_preproc_endregion] = STATE(3781), [sym_preproc_line] = STATE(3781), @@ -546871,42 +543281,42 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4794), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_COMMA] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6500), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(6506), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6498), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -546917,29 +543327,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(5232), }, [3782] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), [sym_preproc_region] = STATE(3782), [sym_preproc_endregion] = STATE(3782), [sym_preproc_line] = STATE(3782), @@ -546949,42 +543339,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3782), [sym_preproc_define] = STATE(3782), [sym_preproc_undef] = STATE(3782), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6033), - [anon_sym_is] = ACTIONS(6035), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(6523), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_interface] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_record] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -546997,6 +543403,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3783] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(3783), [sym_preproc_endregion] = STATE(3783), [sym_preproc_line] = STATE(3783), @@ -547006,63 +543427,43 @@ 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_SEMI] = ACTIONS(4363), - [anon_sym_LBRACK] = ACTIONS(4363), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_COMMA] = ACTIONS(4363), - [anon_sym_RBRACK] = ACTIONS(4363), - [anon_sym_LPAREN] = ACTIONS(4363), - [anon_sym_RPAREN] = ACTIONS(4363), - [anon_sym_LBRACE] = ACTIONS(4363), - [anon_sym_RBRACE] = ACTIONS(4363), - [anon_sym_LT] = ACTIONS(4361), - [anon_sym_GT] = ACTIONS(4361), - [anon_sym_in] = ACTIONS(4363), - [anon_sym_where] = ACTIONS(4363), - [anon_sym_QMARK] = ACTIONS(4361), - [anon_sym_BANG] = ACTIONS(4361), - [anon_sym_PLUS_PLUS] = ACTIONS(4363), - [anon_sym_DASH_DASH] = ACTIONS(4363), - [anon_sym_PLUS] = ACTIONS(4361), - [anon_sym_DASH] = ACTIONS(4361), - [anon_sym_STAR] = ACTIONS(4363), - [anon_sym_SLASH] = ACTIONS(4361), - [anon_sym_PERCENT] = ACTIONS(4363), - [anon_sym_CARET] = ACTIONS(4363), - [anon_sym_PIPE] = ACTIONS(4361), - [anon_sym_AMP] = ACTIONS(4361), - [anon_sym_LT_LT] = ACTIONS(4363), - [anon_sym_GT_GT] = ACTIONS(4361), - [anon_sym_GT_GT_GT] = ACTIONS(4363), - [anon_sym_EQ_EQ] = ACTIONS(4363), - [anon_sym_BANG_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_DOT] = ACTIONS(4361), - [anon_sym_EQ_GT] = ACTIONS(4363), - [anon_sym_switch] = ACTIONS(4363), - [anon_sym_DOT_DOT] = ACTIONS(4363), - [anon_sym_and] = ACTIONS(4363), - [anon_sym_or] = ACTIONS(4361), - [anon_sym_AMP_AMP] = ACTIONS(4363), - [anon_sym_PIPE_PIPE] = ACTIONS(4363), - [sym_op_coalescing] = ACTIONS(4363), - [anon_sym_from] = ACTIONS(4363), - [anon_sym_join] = ACTIONS(4363), - [anon_sym_on] = ACTIONS(4363), - [anon_sym_equals] = ACTIONS(4363), - [anon_sym_let] = ACTIONS(4363), - [anon_sym_orderby] = ACTIONS(4363), - [anon_sym_group] = ACTIONS(4363), - [anon_sym_by] = ACTIONS(4363), - [anon_sym_select] = ACTIONS(4363), - [anon_sym_as] = ACTIONS(4363), - [anon_sym_is] = ACTIONS(4363), - [anon_sym_DASH_GT] = ACTIONS(4363), - [anon_sym_with] = ACTIONS(4363), - [aux_sym_preproc_if_token3] = ACTIONS(4363), - [aux_sym_preproc_else_token1] = ACTIONS(4363), - [aux_sym_preproc_elif_token1] = ACTIONS(4363), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_RBRACK] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -547075,27 +543476,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3784] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(3784), [sym_preproc_endregion] = STATE(3784), [sym_preproc_line] = STATE(3784), @@ -547105,42 +543500,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3784), [sym_preproc_define] = STATE(3784), [sym_preproc_undef] = STATE(3784), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -547153,27 +543549,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3785] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3785), [sym_preproc_endregion] = STATE(3785), [sym_preproc_line] = STATE(3785), @@ -547183,41 +543573,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3785), [sym_preproc_define] = STATE(3785), [sym_preproc_undef] = STATE(3785), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5364), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(5364), + [aux_sym_preproc_else_token1] = ACTIONS(5364), + [aux_sym_preproc_elif_token1] = ACTIONS(5364), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -547228,30 +543620,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3786] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(3786), [sym_preproc_endregion] = STATE(3786), [sym_preproc_line] = STATE(3786), @@ -547261,42 +543646,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3786), [sym_preproc_define] = STATE(3786), [sym_preproc_undef] = STATE(3786), - [anon_sym_SEMI] = ACTIONS(4766), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [aux_sym_initializer_expression_repeat1] = STATE(7079), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6529), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(6531), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6533), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6203), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(6213), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -547309,27 +543695,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3787] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(3787), [sym_preproc_endregion] = STATE(3787), [sym_preproc_line] = STATE(3787), @@ -547339,41 +543719,43 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_RBRACK] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5356), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -547384,30 +543766,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3788] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3788), [sym_preproc_endregion] = STATE(3788), [sym_preproc_line] = STATE(3788), @@ -547417,54 +543792,70 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5304), + [anon_sym_COMMA] = ACTIONS(5304), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6500), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(6506), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6498), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5304), }, [3789] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3789), [sym_preproc_endregion] = STATE(3789), [sym_preproc_line] = STATE(3789), @@ -547474,63 +543865,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3789), [sym_preproc_define] = STATE(3789), [sym_preproc_undef] = STATE(3789), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_COLON] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_RBRACK] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4262), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4262), - [anon_sym_where] = ACTIONS(4262), - [anon_sym_QMARK] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_CARET] = ACTIONS(4262), - [anon_sym_PIPE] = ACTIONS(4260), - [anon_sym_AMP] = ACTIONS(4260), - [anon_sym_LT_LT] = ACTIONS(4262), - [anon_sym_GT_GT] = ACTIONS(4260), - [anon_sym_GT_GT_GT] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_EQ_GT] = ACTIONS(4262), - [anon_sym_switch] = ACTIONS(4262), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_and] = ACTIONS(4262), - [anon_sym_or] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [sym_op_coalescing] = ACTIONS(4262), - [anon_sym_from] = ACTIONS(4262), - [anon_sym_join] = ACTIONS(4262), - [anon_sym_on] = ACTIONS(4262), - [anon_sym_equals] = ACTIONS(4262), - [anon_sym_let] = ACTIONS(4262), - [anon_sym_orderby] = ACTIONS(4262), - [anon_sym_group] = ACTIONS(4262), - [anon_sym_by] = ACTIONS(4262), - [anon_sym_select] = ACTIONS(4262), - [anon_sym_as] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4262), - [anon_sym_DASH_GT] = ACTIONS(4262), - [anon_sym_with] = ACTIONS(4262), - [aux_sym_preproc_if_token3] = ACTIONS(4262), - [aux_sym_preproc_else_token1] = ACTIONS(4262), - [aux_sym_preproc_elif_token1] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5308), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_when] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -547543,27 +543914,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3790] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3790), [sym_preproc_endregion] = STATE(3790), [sym_preproc_line] = STATE(3790), @@ -547573,42 +543938,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3790), [sym_preproc_define] = STATE(3790), [sym_preproc_undef] = STATE(3790), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6039), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6041), - [anon_sym_on] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(6033), - [anon_sym_is] = ACTIONS(6035), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(6551), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(5364), + [aux_sym_preproc_else_token1] = ACTIONS(5364), + [aux_sym_preproc_elif_token1] = ACTIONS(5364), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -547621,27 +543987,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3791] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3791), [sym_preproc_endregion] = STATE(3791), [sym_preproc_line] = STATE(3791), @@ -547651,75 +544011,70 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6500), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(6506), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6498), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5332), }, [3792] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3792), [sym_preproc_endregion] = STATE(3792), [sym_preproc_line] = STATE(3792), @@ -547729,75 +544084,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3792), [sym_preproc_define] = STATE(3792), [sym_preproc_undef] = STATE(3792), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5308), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5308), }, [3793] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3793), [sym_preproc_endregion] = STATE(3793), [sym_preproc_line] = STATE(3793), @@ -547807,75 +544157,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3793), [sym_preproc_define] = STATE(3793), [sym_preproc_undef] = STATE(3793), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5352), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5352), }, [3794] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3794), [sym_preproc_endregion] = STATE(3794), [sym_preproc_line] = STATE(3794), @@ -547885,41 +544230,42 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -547930,9 +544276,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), + [sym_interpolation_close_brace] = ACTIONS(1365), }, [3795] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3795), [sym_preproc_endregion] = STATE(3795), [sym_preproc_line] = STATE(3795), @@ -547942,63 +544303,43 @@ 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_SEMI] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_COLON] = ACTIONS(4337), - [anon_sym_COMMA] = ACTIONS(4337), - [anon_sym_RBRACK] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_RPAREN] = ACTIONS(4337), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_RBRACE] = ACTIONS(4337), - [anon_sym_LT] = ACTIONS(4335), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_in] = ACTIONS(4337), - [anon_sym_where] = ACTIONS(4337), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_PLUS_PLUS] = ACTIONS(4337), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4335), - [anon_sym_LT_LT] = ACTIONS(4337), - [anon_sym_GT_GT] = ACTIONS(4335), - [anon_sym_GT_GT_GT] = ACTIONS(4337), - [anon_sym_EQ_EQ] = ACTIONS(4337), - [anon_sym_BANG_EQ] = ACTIONS(4337), - [anon_sym_GT_EQ] = ACTIONS(4337), - [anon_sym_LT_EQ] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_EQ_GT] = ACTIONS(4337), - [anon_sym_switch] = ACTIONS(4337), - [anon_sym_DOT_DOT] = ACTIONS(4337), - [anon_sym_and] = ACTIONS(4337), - [anon_sym_or] = ACTIONS(4335), - [anon_sym_AMP_AMP] = ACTIONS(4337), - [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [sym_op_coalescing] = ACTIONS(4337), - [anon_sym_from] = ACTIONS(4337), - [anon_sym_join] = ACTIONS(4337), - [anon_sym_on] = ACTIONS(4337), - [anon_sym_equals] = ACTIONS(4337), - [anon_sym_let] = ACTIONS(4337), - [anon_sym_orderby] = ACTIONS(4337), - [anon_sym_group] = ACTIONS(4337), - [anon_sym_by] = ACTIONS(4337), - [anon_sym_select] = ACTIONS(4337), - [anon_sym_as] = ACTIONS(4337), - [anon_sym_is] = ACTIONS(4337), - [anon_sym_DASH_GT] = ACTIONS(4337), - [anon_sym_with] = ACTIONS(4337), - [aux_sym_preproc_if_token3] = ACTIONS(4337), - [aux_sym_preproc_else_token1] = ACTIONS(4337), - [aux_sym_preproc_elif_token1] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(5356), + [aux_sym_preproc_else_token1] = ACTIONS(5356), + [aux_sym_preproc_elif_token1] = ACTIONS(5356), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -548011,6 +544352,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3796] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3796), [sym_preproc_endregion] = STATE(3796), [sym_preproc_line] = STATE(3796), @@ -548020,63 +544376,43 @@ 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_SEMI] = ACTIONS(4424), - [anon_sym_LBRACK] = ACTIONS(4424), - [anon_sym_COLON] = ACTIONS(4424), - [anon_sym_COMMA] = ACTIONS(4424), - [anon_sym_RBRACK] = ACTIONS(4424), - [anon_sym_LPAREN] = ACTIONS(4424), - [anon_sym_RPAREN] = ACTIONS(4424), - [anon_sym_LBRACE] = ACTIONS(4424), - [anon_sym_RBRACE] = ACTIONS(4424), - [anon_sym_LT] = ACTIONS(4422), - [anon_sym_GT] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4424), - [anon_sym_where] = ACTIONS(4424), - [anon_sym_QMARK] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4424), - [anon_sym_DASH_DASH] = ACTIONS(4424), - [anon_sym_PLUS] = ACTIONS(4422), - [anon_sym_DASH] = ACTIONS(4422), - [anon_sym_STAR] = ACTIONS(4424), - [anon_sym_SLASH] = ACTIONS(4422), - [anon_sym_PERCENT] = ACTIONS(4424), - [anon_sym_CARET] = ACTIONS(4424), - [anon_sym_PIPE] = ACTIONS(4422), - [anon_sym_AMP] = ACTIONS(4422), - [anon_sym_LT_LT] = ACTIONS(4424), - [anon_sym_GT_GT] = ACTIONS(4422), - [anon_sym_GT_GT_GT] = ACTIONS(4424), - [anon_sym_EQ_EQ] = ACTIONS(4424), - [anon_sym_BANG_EQ] = ACTIONS(4424), - [anon_sym_GT_EQ] = ACTIONS(4424), - [anon_sym_LT_EQ] = ACTIONS(4424), - [anon_sym_DOT] = ACTIONS(4422), - [anon_sym_EQ_GT] = ACTIONS(4424), - [anon_sym_switch] = ACTIONS(4424), - [anon_sym_DOT_DOT] = ACTIONS(4424), - [anon_sym_and] = ACTIONS(4424), - [anon_sym_or] = ACTIONS(4422), - [anon_sym_AMP_AMP] = ACTIONS(4424), - [anon_sym_PIPE_PIPE] = ACTIONS(4424), - [sym_op_coalescing] = ACTIONS(4424), - [anon_sym_from] = ACTIONS(4424), - [anon_sym_join] = ACTIONS(4424), - [anon_sym_on] = ACTIONS(4424), - [anon_sym_equals] = ACTIONS(4424), - [anon_sym_let] = ACTIONS(4424), - [anon_sym_orderby] = ACTIONS(4424), - [anon_sym_group] = ACTIONS(4424), - [anon_sym_by] = ACTIONS(4424), - [anon_sym_select] = ACTIONS(4424), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_is] = ACTIONS(4424), - [anon_sym_DASH_GT] = ACTIONS(4424), - [anon_sym_with] = ACTIONS(4424), - [aux_sym_preproc_if_token3] = ACTIONS(4424), - [aux_sym_preproc_else_token1] = ACTIONS(4424), - [aux_sym_preproc_elif_token1] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5296), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(6557), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -548089,27 +544425,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3797] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3797), [sym_preproc_endregion] = STATE(3797), [sym_preproc_line] = STATE(3797), @@ -548119,41 +544449,43 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(6557), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -548164,30 +544496,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3798] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3798), [sym_preproc_endregion] = STATE(3798), [sym_preproc_line] = STATE(3798), @@ -548197,41 +544522,43 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(6557), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -548242,30 +544569,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3799] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3799), [sym_preproc_endregion] = STATE(3799), [sym_preproc_line] = STATE(3799), @@ -548275,41 +544595,43 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -548320,30 +544642,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(4672), }, [3800] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), [sym_preproc_region] = STATE(3800), [sym_preproc_endregion] = STATE(3800), [sym_preproc_line] = STATE(3800), @@ -548353,42 +544653,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3800), [sym_preproc_define] = STATE(3800), [sym_preproc_undef] = STATE(3800), - [anon_sym_SEMI] = ACTIONS(4794), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4794), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COMMA] = ACTIONS(3910), + [anon_sym_RBRACK] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_RPAREN] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_RBRACE] = ACTIONS(3910), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_in] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3910), + [anon_sym_switch] = ACTIONS(3910), + [anon_sym_when] = ACTIONS(3910), + [anon_sym_DOT_DOT] = ACTIONS(3910), + [anon_sym_LT_EQ] = ACTIONS(3910), + [anon_sym_GT_EQ] = ACTIONS(3910), + [anon_sym_and] = ACTIONS(3910), + [anon_sym_or] = ACTIONS(3910), + [anon_sym_EQ_EQ] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_AMP] = ACTIONS(3913), + [sym_op_bitwise_or] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3910), + [sym_op_left_shift] = ACTIONS(3910), + [sym_op_right_shift] = ACTIONS(3913), + [sym_op_unsigned_right_shift] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [sym_op_divide] = ACTIONS(3913), + [sym_op_modulo] = ACTIONS(3910), + [sym_op_coalescing] = ACTIONS(3910), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3910), + [anon_sym_on] = ACTIONS(3910), + [anon_sym_equals] = ACTIONS(3910), + [anon_sym_by] = ACTIONS(3910), + [anon_sym_as] = ACTIONS(3910), + [anon_sym_is] = ACTIONS(3910), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_with] = ACTIONS(3910), + [aux_sym_preproc_if_token3] = ACTIONS(3910), + [aux_sym_preproc_else_token1] = ACTIONS(3910), + [aux_sym_preproc_elif_token1] = ACTIONS(3910), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -548401,27 +544717,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3801] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3801), [sym_preproc_endregion] = STATE(3801), [sym_preproc_line] = STATE(3801), @@ -548431,42 +544741,43 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6043), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6045), - [anon_sym_equals] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(6013), - [anon_sym_is] = ACTIONS(6015), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -548479,27 +544790,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3802] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3802), [sym_preproc_endregion] = STATE(3802), [sym_preproc_line] = STATE(3802), @@ -548509,42 +544814,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3802), [sym_preproc_define] = STATE(3802), [sym_preproc_undef] = STATE(3802), - [anon_sym_SEMI] = ACTIONS(4790), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6049), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -548557,6 +544863,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3803] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3803), [sym_preproc_endregion] = STATE(3803), [sym_preproc_line] = STATE(3803), @@ -548566,63 +544887,43 @@ 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_SEMI] = ACTIONS(6051), - [anon_sym_LBRACK] = ACTIONS(6051), - [anon_sym_COLON] = ACTIONS(6051), - [anon_sym_COMMA] = ACTIONS(6051), - [anon_sym_RBRACK] = ACTIONS(6051), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_RBRACE] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_in] = ACTIONS(6053), - [anon_sym_where] = ACTIONS(6051), - [anon_sym_QMARK] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PLUS_PLUS] = ACTIONS(6051), - [anon_sym_DASH_DASH] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6053), - [anon_sym_DASH] = ACTIONS(6053), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6053), - [anon_sym_PERCENT] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_AMP] = ACTIONS(6053), - [anon_sym_LT_LT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6053), - [anon_sym_GT_GT_GT] = ACTIONS(6051), - [anon_sym_EQ_EQ] = ACTIONS(6051), - [anon_sym_BANG_EQ] = ACTIONS(6051), - [anon_sym_GT_EQ] = ACTIONS(6051), - [anon_sym_LT_EQ] = ACTIONS(6051), - [anon_sym_DOT] = ACTIONS(6053), - [anon_sym_EQ_GT] = ACTIONS(6051), - [anon_sym_switch] = ACTIONS(6051), - [anon_sym_DOT_DOT] = ACTIONS(6051), - [anon_sym_and] = ACTIONS(6051), - [anon_sym_or] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym_op_coalescing] = ACTIONS(6051), - [anon_sym_from] = ACTIONS(6051), - [anon_sym_into] = ACTIONS(6051), - [anon_sym_join] = ACTIONS(6051), - [anon_sym_on] = ACTIONS(6051), - [anon_sym_equals] = ACTIONS(6051), - [anon_sym_let] = ACTIONS(6051), - [anon_sym_orderby] = ACTIONS(6051), - [anon_sym_group] = ACTIONS(6051), - [anon_sym_by] = ACTIONS(6051), - [anon_sym_select] = ACTIONS(6051), - [anon_sym_as] = ACTIONS(6051), - [anon_sym_is] = ACTIONS(6051), - [anon_sym_DASH_GT] = ACTIONS(6051), - [anon_sym_with] = ACTIONS(6051), - [aux_sym_preproc_if_token3] = ACTIONS(6051), - [aux_sym_preproc_else_token1] = ACTIONS(6051), - [aux_sym_preproc_elif_token1] = ACTIONS(6051), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -548635,27 +544936,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3804] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3804), [sym_preproc_endregion] = STATE(3804), [sym_preproc_line] = STATE(3804), @@ -548665,41 +544960,43 @@ 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(5654), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -548710,9 +545007,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4794), }, [3805] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3805), [sym_preproc_endregion] = STATE(3805), [sym_preproc_line] = STATE(3805), @@ -548722,63 +545033,43 @@ 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_SEMI] = ACTIONS(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3953), - [anon_sym_where] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_from] = ACTIONS(3953), - [anon_sym_join] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_let] = ACTIONS(3953), - [anon_sym_orderby] = ACTIONS(3953), - [anon_sym_group] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_select] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(6557), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -548791,27 +545082,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3806] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3806), [sym_preproc_endregion] = STATE(3806), [sym_preproc_line] = STATE(3806), @@ -548821,42 +545106,43 @@ 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(5430), - [anon_sym_COMMA] = ACTIONS(6055), - [anon_sym_RBRACK] = ACTIONS(6055), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -548869,6 +545155,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3807] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3807), [sym_preproc_endregion] = STATE(3807), [sym_preproc_line] = STATE(3807), @@ -548878,63 +545179,43 @@ 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_SEMI] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_COLON] = ACTIONS(4316), - [anon_sym_COMMA] = ACTIONS(4316), - [anon_sym_RBRACK] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4316), - [anon_sym_RPAREN] = ACTIONS(4316), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_RBRACE] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4314), - [anon_sym_GT] = ACTIONS(4314), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4314), - [anon_sym_BANG] = ACTIONS(4314), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_STAR] = ACTIONS(4316), - [anon_sym_SLASH] = ACTIONS(4314), - [anon_sym_PERCENT] = ACTIONS(4316), - [anon_sym_CARET] = ACTIONS(4316), - [anon_sym_PIPE] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4314), - [anon_sym_LT_LT] = ACTIONS(4316), - [anon_sym_GT_GT] = ACTIONS(4314), - [anon_sym_GT_GT_GT] = ACTIONS(4316), - [anon_sym_EQ_EQ] = ACTIONS(4316), - [anon_sym_BANG_EQ] = ACTIONS(4316), - [anon_sym_GT_EQ] = ACTIONS(4316), - [anon_sym_LT_EQ] = ACTIONS(4316), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_EQ_GT] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4316), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4314), - [anon_sym_AMP_AMP] = ACTIONS(4316), - [anon_sym_PIPE_PIPE] = ACTIONS(4316), - [sym_op_coalescing] = ACTIONS(4316), - [anon_sym_from] = 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_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4316), - [anon_sym_with] = ACTIONS(4316), - [aux_sym_preproc_if_token3] = ACTIONS(4316), - [aux_sym_preproc_else_token1] = ACTIONS(4316), - [aux_sym_preproc_elif_token1] = ACTIONS(4316), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(6557), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -548947,6 +545228,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3808] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3808), [sym_preproc_endregion] = STATE(3808), [sym_preproc_line] = STATE(3808), @@ -548956,63 +545252,43 @@ 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_SEMI] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_RBRACK] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_RPAREN] = ACTIONS(4341), - [anon_sym_LBRACE] = ACTIONS(4341), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4341), - [anon_sym_where] = ACTIONS(4341), - [anon_sym_QMARK] = ACTIONS(4339), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_CARET] = ACTIONS(4341), - [anon_sym_PIPE] = ACTIONS(4339), - [anon_sym_AMP] = ACTIONS(4339), - [anon_sym_LT_LT] = ACTIONS(4341), - [anon_sym_GT_GT] = ACTIONS(4339), - [anon_sym_GT_GT_GT] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_EQ_GT] = ACTIONS(4341), - [anon_sym_switch] = ACTIONS(4341), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_and] = ACTIONS(4341), - [anon_sym_or] = ACTIONS(4339), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [sym_op_coalescing] = ACTIONS(4341), - [anon_sym_from] = ACTIONS(4341), - [anon_sym_join] = ACTIONS(4341), - [anon_sym_on] = ACTIONS(4341), - [anon_sym_equals] = ACTIONS(4341), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_orderby] = ACTIONS(4341), - [anon_sym_group] = ACTIONS(4341), - [anon_sym_by] = ACTIONS(4341), - [anon_sym_select] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4341), - [anon_sym_DASH_GT] = ACTIONS(4341), - [anon_sym_with] = ACTIONS(4341), - [aux_sym_preproc_if_token3] = ACTIONS(4341), - [aux_sym_preproc_else_token1] = ACTIONS(4341), - [aux_sym_preproc_elif_token1] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6444), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -549025,6 +545301,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3809] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3809), [sym_preproc_endregion] = STATE(3809), [sym_preproc_line] = STATE(3809), @@ -549034,63 +545325,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3809), [sym_preproc_define] = STATE(3809), [sym_preproc_undef] = STATE(3809), - [anon_sym_SEMI] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(4357), - [anon_sym_COLON] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4357), - [anon_sym_RBRACK] = ACTIONS(4357), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_RPAREN] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4357), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4357), - [anon_sym_where] = ACTIONS(4357), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_PLUS_PLUS] = ACTIONS(4357), - [anon_sym_DASH_DASH] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4357), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4357), - [anon_sym_CARET] = ACTIONS(4357), - [anon_sym_PIPE] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_LT] = ACTIONS(4357), - [anon_sym_GT_GT] = ACTIONS(4355), - [anon_sym_GT_GT_GT] = ACTIONS(4357), - [anon_sym_EQ_EQ] = ACTIONS(4357), - [anon_sym_BANG_EQ] = ACTIONS(4357), - [anon_sym_GT_EQ] = ACTIONS(4357), - [anon_sym_LT_EQ] = ACTIONS(4357), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_EQ_GT] = ACTIONS(4357), - [anon_sym_switch] = ACTIONS(4357), - [anon_sym_DOT_DOT] = ACTIONS(4357), - [anon_sym_and] = ACTIONS(4357), - [anon_sym_or] = ACTIONS(4355), - [anon_sym_AMP_AMP] = ACTIONS(4357), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [sym_op_coalescing] = ACTIONS(4357), - [anon_sym_from] = ACTIONS(4357), - [anon_sym_join] = ACTIONS(4357), - [anon_sym_on] = ACTIONS(4357), - [anon_sym_equals] = ACTIONS(4357), - [anon_sym_let] = ACTIONS(4357), - [anon_sym_orderby] = ACTIONS(4357), - [anon_sym_group] = ACTIONS(4357), - [anon_sym_by] = ACTIONS(4357), - [anon_sym_select] = ACTIONS(4357), - [anon_sym_as] = ACTIONS(4357), - [anon_sym_is] = ACTIONS(4357), - [anon_sym_DASH_GT] = ACTIONS(4357), - [anon_sym_with] = ACTIONS(4357), - [aux_sym_preproc_if_token3] = ACTIONS(4357), - [aux_sym_preproc_else_token1] = ACTIONS(4357), - [aux_sym_preproc_elif_token1] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(6557), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -549103,27 +545374,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3810] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3810), [sym_preproc_endregion] = STATE(3810), [sym_preproc_line] = STATE(3810), @@ -549133,42 +545398,43 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_on] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -549181,27 +545447,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3811] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3811), [sym_preproc_endregion] = STATE(3811), [sym_preproc_line] = STATE(3811), @@ -549211,42 +545471,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3811), [sym_preproc_define] = STATE(3811), [sym_preproc_undef] = STATE(3811), - [anon_sym_SEMI] = ACTIONS(4708), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4708), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6049), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -549259,27 +545520,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3812] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), [sym_preproc_region] = STATE(3812), [sym_preproc_endregion] = STATE(3812), [sym_preproc_line] = STATE(3812), @@ -549289,42 +545529,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3812), [sym_preproc_define] = STATE(3812), [sym_preproc_undef] = STATE(3812), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6013), - [anon_sym_is] = ACTIONS(6015), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(5070), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_QMARK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_switch] = ACTIONS(5070), + [anon_sym_DOT_DOT] = ACTIONS(5070), + [anon_sym_LT_EQ] = ACTIONS(5070), + [anon_sym_GT_EQ] = ACTIONS(5070), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5068), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(5070), + [anon_sym_BANG_EQ] = ACTIONS(5070), + [anon_sym_AMP_AMP] = ACTIONS(5070), + [anon_sym_PIPE_PIPE] = ACTIONS(5070), + [anon_sym_AMP] = ACTIONS(5073), + [sym_op_bitwise_or] = ACTIONS(5073), + [anon_sym_CARET] = ACTIONS(5073), + [sym_op_left_shift] = ACTIONS(5073), + [sym_op_right_shift] = ACTIONS(5073), + [sym_op_unsigned_right_shift] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [sym_op_divide] = ACTIONS(5073), + [sym_op_modulo] = ACTIONS(5073), + [sym_op_coalescing] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5070), + [anon_sym_DASH_DASH] = ACTIONS(5070), + [anon_sym_into] = ACTIONS(5068), + [anon_sym_as] = ACTIONS(5070), + [anon_sym_is] = ACTIONS(5070), + [anon_sym_DASH_GT] = ACTIONS(5070), + [anon_sym_with] = ACTIONS(5070), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -549335,29 +545590,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5068), }, [3813] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3813), [sym_preproc_endregion] = STATE(3813), [sym_preproc_line] = STATE(3813), @@ -549367,42 +545617,43 @@ 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), - [aux_sym_array_rank_specifier_repeat1] = STATE(7198), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6057), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -549415,27 +545666,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3814] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3814), [sym_preproc_endregion] = STATE(3814), [sym_preproc_line] = STATE(3814), @@ -549445,42 +545690,43 @@ 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(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6043), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6045), - [anon_sym_equals] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(6013), - [anon_sym_is] = ACTIONS(6015), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -549493,27 +545739,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3815] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), [sym_preproc_region] = STATE(3815), [sym_preproc_endregion] = STATE(3815), [sym_preproc_line] = STATE(3815), @@ -549523,41 +545748,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3815), [sym_preproc_define] = STATE(3815), [sym_preproc_undef] = STATE(3815), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5788), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5645), + [anon_sym_LBRACK] = ACTIONS(5645), + [anon_sym_COLON] = ACTIONS(5645), + [anon_sym_COMMA] = ACTIONS(5645), + [anon_sym_RBRACK] = ACTIONS(5645), + [anon_sym_LPAREN] = ACTIONS(5645), + [anon_sym_RPAREN] = ACTIONS(5645), + [anon_sym_RBRACE] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5647), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_in] = ACTIONS(5647), + [anon_sym_QMARK] = ACTIONS(5647), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_EQ_GT] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_switch] = ACTIONS(5645), + [anon_sym_when] = ACTIONS(5645), + [anon_sym_DOT_DOT] = ACTIONS(5645), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5645), + [anon_sym_BANG_EQ] = ACTIONS(5645), + [anon_sym_AMP_AMP] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [sym_op_bitwise_or] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5645), + [sym_op_left_shift] = ACTIONS(5645), + [sym_op_right_shift] = ACTIONS(5647), + [sym_op_unsigned_right_shift] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_DASH] = ACTIONS(5647), + [sym_op_divide] = ACTIONS(5647), + [sym_op_modulo] = ACTIONS(5645), + [sym_op_coalescing] = ACTIONS(5645), + [anon_sym_BANG] = ACTIONS(5647), + [anon_sym_PLUS_PLUS] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5645), + [anon_sym_into] = ACTIONS(5645), + [anon_sym_on] = ACTIONS(5645), + [anon_sym_equals] = ACTIONS(5645), + [anon_sym_by] = ACTIONS(5645), + [anon_sym_as] = ACTIONS(5645), + [anon_sym_is] = ACTIONS(5645), + [anon_sym_DASH_GT] = ACTIONS(5645), + [anon_sym_with] = ACTIONS(5645), + [sym_string_literal_encoding] = ACTIONS(6571), + [aux_sym_preproc_if_token3] = ACTIONS(5645), + [aux_sym_preproc_else_token1] = ACTIONS(5645), + [aux_sym_preproc_elif_token1] = ACTIONS(5645), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -549568,9 +545810,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4672), }, [3816] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3816), [sym_preproc_endregion] = STATE(3816), [sym_preproc_line] = STATE(3816), @@ -549580,63 +545836,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3816), [sym_preproc_define] = STATE(3816), [sym_preproc_undef] = STATE(3816), - [anon_sym_SEMI] = ACTIONS(6059), - [anon_sym_LBRACK] = ACTIONS(6059), - [anon_sym_COLON] = ACTIONS(6059), - [anon_sym_COMMA] = ACTIONS(6059), - [anon_sym_RBRACK] = ACTIONS(6059), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_RBRACE] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_in] = ACTIONS(6061), - [anon_sym_where] = ACTIONS(6059), - [anon_sym_QMARK] = ACTIONS(6061), - [anon_sym_BANG] = ACTIONS(6061), - [anon_sym_PLUS_PLUS] = ACTIONS(6059), - [anon_sym_DASH_DASH] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6061), - [anon_sym_DASH] = ACTIONS(6061), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6061), - [anon_sym_PERCENT] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - [anon_sym_LT_LT] = ACTIONS(6059), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_GT_GT_GT] = ACTIONS(6059), - [anon_sym_EQ_EQ] = ACTIONS(6059), - [anon_sym_BANG_EQ] = ACTIONS(6059), - [anon_sym_GT_EQ] = ACTIONS(6059), - [anon_sym_LT_EQ] = ACTIONS(6059), - [anon_sym_DOT] = ACTIONS(6061), - [anon_sym_EQ_GT] = ACTIONS(6059), - [anon_sym_switch] = ACTIONS(6059), - [anon_sym_DOT_DOT] = ACTIONS(6059), - [anon_sym_and] = ACTIONS(6059), - [anon_sym_or] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [sym_op_coalescing] = ACTIONS(6059), - [anon_sym_from] = ACTIONS(6059), - [anon_sym_into] = ACTIONS(6059), - [anon_sym_join] = ACTIONS(6059), - [anon_sym_on] = ACTIONS(6059), - [anon_sym_equals] = ACTIONS(6059), - [anon_sym_let] = ACTIONS(6059), - [anon_sym_orderby] = ACTIONS(6059), - [anon_sym_group] = ACTIONS(6059), - [anon_sym_by] = ACTIONS(6059), - [anon_sym_select] = ACTIONS(6059), - [anon_sym_as] = ACTIONS(6059), - [anon_sym_is] = ACTIONS(6059), - [anon_sym_DASH_GT] = ACTIONS(6059), - [anon_sym_with] = ACTIONS(6059), - [aux_sym_preproc_if_token3] = ACTIONS(6059), - [aux_sym_preproc_else_token1] = ACTIONS(6059), - [aux_sym_preproc_elif_token1] = ACTIONS(6059), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -549649,6 +545885,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3817] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3817), [sym_preproc_endregion] = STATE(3817), [sym_preproc_line] = STATE(3817), @@ -549658,63 +545909,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3817), [sym_preproc_define] = STATE(3817), [sym_preproc_undef] = STATE(3817), - [anon_sym_SEMI] = ACTIONS(6063), - [anon_sym_LBRACK] = ACTIONS(6063), - [anon_sym_COLON] = ACTIONS(6063), - [anon_sym_COMMA] = ACTIONS(6063), - [anon_sym_RBRACK] = ACTIONS(6063), - [anon_sym_LPAREN] = ACTIONS(6063), - [anon_sym_RPAREN] = ACTIONS(6063), - [anon_sym_RBRACE] = ACTIONS(6063), - [anon_sym_LT] = ACTIONS(6065), - [anon_sym_GT] = ACTIONS(6065), - [anon_sym_in] = ACTIONS(6065), - [anon_sym_where] = ACTIONS(6063), - [anon_sym_QMARK] = ACTIONS(6065), - [anon_sym_BANG] = ACTIONS(6065), - [anon_sym_PLUS_PLUS] = ACTIONS(6063), - [anon_sym_DASH_DASH] = ACTIONS(6063), - [anon_sym_PLUS] = ACTIONS(6065), - [anon_sym_DASH] = ACTIONS(6065), - [anon_sym_STAR] = ACTIONS(6063), - [anon_sym_SLASH] = ACTIONS(6065), - [anon_sym_PERCENT] = ACTIONS(6063), - [anon_sym_CARET] = ACTIONS(6063), - [anon_sym_PIPE] = ACTIONS(6065), - [anon_sym_AMP] = ACTIONS(6065), - [anon_sym_LT_LT] = ACTIONS(6063), - [anon_sym_GT_GT] = ACTIONS(6065), - [anon_sym_GT_GT_GT] = ACTIONS(6063), - [anon_sym_EQ_EQ] = ACTIONS(6063), - [anon_sym_BANG_EQ] = ACTIONS(6063), - [anon_sym_GT_EQ] = ACTIONS(6063), - [anon_sym_LT_EQ] = ACTIONS(6063), - [anon_sym_DOT] = ACTIONS(6065), - [anon_sym_EQ_GT] = ACTIONS(6063), - [anon_sym_switch] = ACTIONS(6063), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_and] = ACTIONS(6063), - [anon_sym_or] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6063), - [anon_sym_PIPE_PIPE] = ACTIONS(6063), - [sym_op_coalescing] = ACTIONS(6063), - [anon_sym_from] = ACTIONS(6063), - [anon_sym_into] = ACTIONS(6063), - [anon_sym_join] = ACTIONS(6063), - [anon_sym_on] = ACTIONS(6063), - [anon_sym_equals] = ACTIONS(6063), - [anon_sym_let] = ACTIONS(6063), - [anon_sym_orderby] = ACTIONS(6063), - [anon_sym_group] = ACTIONS(6063), - [anon_sym_by] = ACTIONS(6063), - [anon_sym_select] = ACTIONS(6063), - [anon_sym_as] = ACTIONS(6063), - [anon_sym_is] = ACTIONS(6063), - [anon_sym_DASH_GT] = ACTIONS(6063), - [anon_sym_with] = ACTIONS(6063), - [aux_sym_preproc_if_token3] = ACTIONS(6063), - [aux_sym_preproc_else_token1] = ACTIONS(6063), - [aux_sym_preproc_elif_token1] = ACTIONS(6063), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -549727,6 +545958,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3818] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3818), [sym_preproc_endregion] = STATE(3818), [sym_preproc_line] = STATE(3818), @@ -549736,63 +545982,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3818), [sym_preproc_define] = STATE(3818), [sym_preproc_undef] = STATE(3818), - [anon_sym_SEMI] = ACTIONS(4440), - [anon_sym_LBRACK] = ACTIONS(4440), - [anon_sym_COLON] = ACTIONS(4440), - [anon_sym_COMMA] = ACTIONS(4440), - [anon_sym_RBRACK] = ACTIONS(4440), - [anon_sym_LPAREN] = ACTIONS(4440), - [anon_sym_RPAREN] = ACTIONS(4440), - [anon_sym_LBRACE] = ACTIONS(4440), - [anon_sym_RBRACE] = ACTIONS(4440), - [anon_sym_LT] = ACTIONS(4438), - [anon_sym_GT] = ACTIONS(4438), - [anon_sym_in] = ACTIONS(4440), - [anon_sym_where] = ACTIONS(4440), - [anon_sym_QMARK] = ACTIONS(4438), - [anon_sym_BANG] = ACTIONS(4438), - [anon_sym_PLUS_PLUS] = ACTIONS(4440), - [anon_sym_DASH_DASH] = ACTIONS(4440), - [anon_sym_PLUS] = ACTIONS(4438), - [anon_sym_DASH] = ACTIONS(4438), - [anon_sym_STAR] = ACTIONS(4440), - [anon_sym_SLASH] = ACTIONS(4438), - [anon_sym_PERCENT] = ACTIONS(4440), - [anon_sym_CARET] = ACTIONS(4440), - [anon_sym_PIPE] = ACTIONS(4438), - [anon_sym_AMP] = ACTIONS(4438), - [anon_sym_LT_LT] = ACTIONS(4440), - [anon_sym_GT_GT] = ACTIONS(4438), - [anon_sym_GT_GT_GT] = ACTIONS(4440), - [anon_sym_EQ_EQ] = ACTIONS(4440), - [anon_sym_BANG_EQ] = ACTIONS(4440), - [anon_sym_GT_EQ] = ACTIONS(4440), - [anon_sym_LT_EQ] = ACTIONS(4440), - [anon_sym_DOT] = ACTIONS(4438), - [anon_sym_EQ_GT] = ACTIONS(4440), - [anon_sym_switch] = ACTIONS(4440), - [anon_sym_DOT_DOT] = ACTIONS(4440), - [anon_sym_and] = ACTIONS(4440), - [anon_sym_or] = ACTIONS(4438), - [anon_sym_AMP_AMP] = ACTIONS(4440), - [anon_sym_PIPE_PIPE] = ACTIONS(4440), - [sym_op_coalescing] = ACTIONS(4440), - [anon_sym_from] = ACTIONS(4440), - [anon_sym_join] = ACTIONS(4440), - [anon_sym_on] = ACTIONS(4440), - [anon_sym_equals] = ACTIONS(4440), - [anon_sym_let] = ACTIONS(4440), - [anon_sym_orderby] = ACTIONS(4440), - [anon_sym_group] = ACTIONS(4440), - [anon_sym_by] = ACTIONS(4440), - [anon_sym_select] = ACTIONS(4440), - [anon_sym_as] = ACTIONS(4440), - [anon_sym_is] = ACTIONS(4440), - [anon_sym_DASH_GT] = ACTIONS(4440), - [anon_sym_with] = ACTIONS(4440), - [aux_sym_preproc_if_token3] = ACTIONS(4440), - [aux_sym_preproc_else_token1] = ACTIONS(4440), - [aux_sym_preproc_elif_token1] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5358), + [anon_sym_QMARK] = ACTIONS(6464), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6444), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(6446), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -549805,6 +546031,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3819] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3819), [sym_preproc_endregion] = STATE(3819), [sym_preproc_line] = STATE(3819), @@ -549814,63 +546055,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3819), [sym_preproc_define] = STATE(3819), [sym_preproc_undef] = STATE(3819), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LBRACK] = ACTIONS(6067), - [anon_sym_COLON] = ACTIONS(6067), - [anon_sym_COMMA] = ACTIONS(6067), - [anon_sym_RBRACK] = ACTIONS(6067), - [anon_sym_LPAREN] = ACTIONS(6067), - [anon_sym_RPAREN] = ACTIONS(6067), - [anon_sym_RBRACE] = ACTIONS(6067), - [anon_sym_LT] = ACTIONS(6069), - [anon_sym_GT] = ACTIONS(6069), - [anon_sym_in] = 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_EQ_GT] = ACTIONS(6067), - [anon_sym_switch] = ACTIONS(6067), - [anon_sym_DOT_DOT] = ACTIONS(6067), - [anon_sym_and] = ACTIONS(6067), - [anon_sym_or] = ACTIONS(6069), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [sym_op_coalescing] = ACTIONS(6067), - [anon_sym_from] = ACTIONS(6067), - [anon_sym_into] = ACTIONS(6067), - [anon_sym_join] = ACTIONS(6067), - [anon_sym_on] = ACTIONS(6067), - [anon_sym_equals] = ACTIONS(6067), - [anon_sym_let] = ACTIONS(6067), - [anon_sym_orderby] = ACTIONS(6067), - [anon_sym_group] = ACTIONS(6067), - [anon_sym_by] = ACTIONS(6067), - [anon_sym_select] = ACTIONS(6067), - [anon_sym_as] = ACTIONS(6067), - [anon_sym_is] = ACTIONS(6067), - [anon_sym_DASH_GT] = ACTIONS(6067), - [anon_sym_with] = ACTIONS(6067), - [aux_sym_preproc_if_token3] = ACTIONS(6067), - [aux_sym_preproc_else_token1] = ACTIONS(6067), - [aux_sym_preproc_elif_token1] = ACTIONS(6067), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -549883,27 +546104,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3820] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3820), [sym_preproc_endregion] = STATE(3820), [sym_preproc_line] = STATE(3820), @@ -549913,42 +546128,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3820), [sym_preproc_define] = STATE(3820), [sym_preproc_undef] = STATE(3820), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6043), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6045), - [anon_sym_equals] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(6013), - [anon_sym_is] = ACTIONS(6015), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5338), + [anon_sym_QMARK] = ACTIONS(6464), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6444), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(6446), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -549961,27 +546177,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3821] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(3821), [sym_preproc_endregion] = STATE(3821), [sym_preproc_line] = STATE(3821), @@ -549991,42 +546186,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3821), [sym_preproc_define] = STATE(3821), [sym_preproc_undef] = STATE(3821), - [aux_sym_array_rank_specifier_repeat1] = STATE(7314), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6071), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3694), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_when] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3694), + [anon_sym_or] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3694), + [sym_op_left_shift] = ACTIONS(3694), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3694), + [sym_op_coalescing] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_on] = ACTIONS(3694), + [anon_sym_equals] = ACTIONS(3694), + [anon_sym_by] = ACTIONS(3694), + [anon_sym_as] = ACTIONS(3694), + [anon_sym_is] = ACTIONS(3694), + [anon_sym_DASH_GT] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3694), + [aux_sym_preproc_if_token3] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -550039,6 +546250,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3822] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3822), [sym_preproc_endregion] = STATE(3822), [sym_preproc_line] = STATE(3822), @@ -550048,63 +546274,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3822), [sym_preproc_define] = STATE(3822), [sym_preproc_undef] = STATE(3822), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LBRACK] = ACTIONS(6073), - [anon_sym_COLON] = ACTIONS(6073), - [anon_sym_COMMA] = ACTIONS(6073), - [anon_sym_RBRACK] = ACTIONS(6073), - [anon_sym_LPAREN] = ACTIONS(6073), - [anon_sym_RPAREN] = ACTIONS(6073), - [anon_sym_RBRACE] = ACTIONS(6073), - [anon_sym_LT] = ACTIONS(6075), - [anon_sym_GT] = ACTIONS(6075), - [anon_sym_in] = ACTIONS(6075), - [anon_sym_where] = ACTIONS(6073), - [anon_sym_QMARK] = ACTIONS(6075), - [anon_sym_BANG] = ACTIONS(6075), - [anon_sym_PLUS_PLUS] = ACTIONS(6073), - [anon_sym_DASH_DASH] = ACTIONS(6073), - [anon_sym_PLUS] = ACTIONS(6075), - [anon_sym_DASH] = ACTIONS(6075), - [anon_sym_STAR] = ACTIONS(6073), - [anon_sym_SLASH] = ACTIONS(6075), - [anon_sym_PERCENT] = ACTIONS(6073), - [anon_sym_CARET] = ACTIONS(6073), - [anon_sym_PIPE] = ACTIONS(6075), - [anon_sym_AMP] = ACTIONS(6075), - [anon_sym_LT_LT] = ACTIONS(6073), - [anon_sym_GT_GT] = ACTIONS(6075), - [anon_sym_GT_GT_GT] = ACTIONS(6073), - [anon_sym_EQ_EQ] = ACTIONS(6073), - [anon_sym_BANG_EQ] = ACTIONS(6073), - [anon_sym_GT_EQ] = ACTIONS(6073), - [anon_sym_LT_EQ] = ACTIONS(6073), - [anon_sym_DOT] = ACTIONS(6075), - [anon_sym_EQ_GT] = ACTIONS(6073), - [anon_sym_switch] = ACTIONS(6073), - [anon_sym_DOT_DOT] = ACTIONS(6073), - [anon_sym_and] = ACTIONS(6073), - [anon_sym_or] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [sym_op_coalescing] = ACTIONS(6073), - [anon_sym_from] = ACTIONS(6073), - [anon_sym_into] = ACTIONS(6073), - [anon_sym_join] = ACTIONS(6073), - [anon_sym_on] = ACTIONS(6073), - [anon_sym_equals] = ACTIONS(6073), - [anon_sym_let] = ACTIONS(6073), - [anon_sym_orderby] = ACTIONS(6073), - [anon_sym_group] = ACTIONS(6073), - [anon_sym_by] = ACTIONS(6073), - [anon_sym_select] = ACTIONS(6073), - [anon_sym_as] = ACTIONS(6073), - [anon_sym_is] = ACTIONS(6073), - [anon_sym_DASH_GT] = ACTIONS(6073), - [anon_sym_with] = ACTIONS(6073), - [aux_sym_preproc_if_token3] = ACTIONS(6073), - [aux_sym_preproc_else_token1] = ACTIONS(6073), - [aux_sym_preproc_elif_token1] = ACTIONS(6073), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_on] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -550126,63 +546332,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3823), [sym_preproc_define] = STATE(3823), [sym_preproc_undef] = STATE(3823), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LBRACK] = ACTIONS(6077), - [anon_sym_COLON] = ACTIONS(6077), - [anon_sym_COMMA] = ACTIONS(6077), - [anon_sym_RBRACK] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_RPAREN] = ACTIONS(6077), - [anon_sym_RBRACE] = ACTIONS(6077), - [anon_sym_LT] = ACTIONS(6079), - [anon_sym_GT] = ACTIONS(6079), - [anon_sym_in] = ACTIONS(6079), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6079), - [anon_sym_BANG] = ACTIONS(6079), - [anon_sym_PLUS_PLUS] = ACTIONS(6077), - [anon_sym_DASH_DASH] = ACTIONS(6077), - [anon_sym_PLUS] = ACTIONS(6079), - [anon_sym_DASH] = ACTIONS(6079), - [anon_sym_STAR] = ACTIONS(6077), - [anon_sym_SLASH] = ACTIONS(6079), - [anon_sym_PERCENT] = ACTIONS(6077), - [anon_sym_CARET] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6079), - [anon_sym_AMP] = ACTIONS(6079), - [anon_sym_LT_LT] = ACTIONS(6077), - [anon_sym_GT_GT] = ACTIONS(6079), - [anon_sym_GT_GT_GT] = ACTIONS(6077), - [anon_sym_EQ_EQ] = ACTIONS(6077), - [anon_sym_BANG_EQ] = ACTIONS(6077), - [anon_sym_GT_EQ] = ACTIONS(6077), - [anon_sym_LT_EQ] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6079), - [anon_sym_EQ_GT] = ACTIONS(6077), - [anon_sym_switch] = ACTIONS(6077), - [anon_sym_DOT_DOT] = ACTIONS(6077), - [anon_sym_and] = ACTIONS(6077), - [anon_sym_or] = ACTIONS(6079), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [sym_op_coalescing] = ACTIONS(6077), - [anon_sym_from] = ACTIONS(6077), - [anon_sym_into] = ACTIONS(6077), - [anon_sym_join] = ACTIONS(6077), - [anon_sym_on] = ACTIONS(6077), - [anon_sym_equals] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_orderby] = ACTIONS(6077), - [anon_sym_group] = ACTIONS(6077), - [anon_sym_by] = ACTIONS(6077), - [anon_sym_select] = ACTIONS(6077), - [anon_sym_as] = ACTIONS(6077), - [anon_sym_is] = ACTIONS(6077), - [anon_sym_DASH_GT] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [aux_sym_preproc_if_token3] = ACTIONS(6077), - [aux_sym_preproc_else_token1] = ACTIONS(6077), - [aux_sym_preproc_elif_token1] = ACTIONS(6077), + [anon_sym_SEMI] = ACTIONS(5713), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_COLON] = ACTIONS(5713), + [anon_sym_COMMA] = ACTIONS(5713), + [anon_sym_RBRACK] = ACTIONS(5713), + [anon_sym_LPAREN] = ACTIONS(5713), + [anon_sym_RPAREN] = ACTIONS(5713), + [anon_sym_LBRACE] = ACTIONS(5713), + [anon_sym_RBRACE] = ACTIONS(5713), + [anon_sym_LT] = ACTIONS(5715), + [anon_sym_GT] = ACTIONS(5715), + [anon_sym_in] = ACTIONS(5713), + [anon_sym_where] = ACTIONS(5713), + [anon_sym_QMARK] = ACTIONS(5715), + [anon_sym_DOT] = ACTIONS(5715), + [anon_sym_EQ_GT] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(5713), + [anon_sym_switch] = ACTIONS(5713), + [anon_sym_when] = ACTIONS(5713), + [anon_sym_DOT_DOT] = ACTIONS(5713), + [anon_sym_LT_EQ] = ACTIONS(5713), + [anon_sym_GT_EQ] = ACTIONS(5713), + [anon_sym_and] = ACTIONS(5713), + [anon_sym_or] = ACTIONS(5713), + [anon_sym_EQ_EQ] = ACTIONS(5713), + [anon_sym_BANG_EQ] = ACTIONS(5713), + [anon_sym_AMP_AMP] = ACTIONS(5713), + [anon_sym_PIPE_PIPE] = ACTIONS(5713), + [anon_sym_AMP] = ACTIONS(5715), + [sym_op_bitwise_or] = ACTIONS(5715), + [anon_sym_CARET] = ACTIONS(5713), + [sym_op_left_shift] = ACTIONS(5713), + [sym_op_right_shift] = ACTIONS(5715), + [sym_op_unsigned_right_shift] = ACTIONS(5713), + [anon_sym_PLUS] = ACTIONS(5715), + [anon_sym_DASH] = ACTIONS(5715), + [sym_op_divide] = ACTIONS(5715), + [sym_op_modulo] = ACTIONS(5713), + [sym_op_coalescing] = ACTIONS(5713), + [anon_sym_BANG] = ACTIONS(5715), + [anon_sym_PLUS_PLUS] = ACTIONS(5713), + [anon_sym_DASH_DASH] = ACTIONS(5713), + [anon_sym_on] = ACTIONS(5713), + [anon_sym_equals] = ACTIONS(5713), + [anon_sym_by] = ACTIONS(5713), + [anon_sym_as] = ACTIONS(5713), + [anon_sym_is] = ACTIONS(5713), + [anon_sym_DASH_GT] = ACTIONS(5713), + [anon_sym_with] = ACTIONS(5713), + [aux_sym_preproc_if_token3] = ACTIONS(5713), + [aux_sym_preproc_else_token1] = ACTIONS(5713), + [aux_sym_preproc_elif_token1] = ACTIONS(5713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -550204,63 +546405,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3824), [sym_preproc_define] = STATE(3824), [sym_preproc_undef] = STATE(3824), - [anon_sym_SEMI] = ACTIONS(6081), - [anon_sym_LBRACK] = ACTIONS(6081), - [anon_sym_COLON] = ACTIONS(6081), - [anon_sym_COMMA] = ACTIONS(6081), - [anon_sym_RBRACK] = ACTIONS(6081), - [anon_sym_LPAREN] = ACTIONS(6081), - [anon_sym_RPAREN] = ACTIONS(6081), - [anon_sym_RBRACE] = ACTIONS(6081), - [anon_sym_LT] = ACTIONS(6083), - [anon_sym_GT] = ACTIONS(6083), - [anon_sym_in] = ACTIONS(6083), - [anon_sym_where] = ACTIONS(6081), - [anon_sym_QMARK] = ACTIONS(6083), - [anon_sym_BANG] = ACTIONS(6083), - [anon_sym_PLUS_PLUS] = ACTIONS(6081), - [anon_sym_DASH_DASH] = ACTIONS(6081), - [anon_sym_PLUS] = ACTIONS(6083), - [anon_sym_DASH] = ACTIONS(6083), - [anon_sym_STAR] = ACTIONS(6081), - [anon_sym_SLASH] = ACTIONS(6083), - [anon_sym_PERCENT] = ACTIONS(6081), - [anon_sym_CARET] = ACTIONS(6081), - [anon_sym_PIPE] = ACTIONS(6083), - [anon_sym_AMP] = ACTIONS(6083), - [anon_sym_LT_LT] = ACTIONS(6081), - [anon_sym_GT_GT] = ACTIONS(6083), - [anon_sym_GT_GT_GT] = ACTIONS(6081), - [anon_sym_EQ_EQ] = ACTIONS(6081), - [anon_sym_BANG_EQ] = ACTIONS(6081), - [anon_sym_GT_EQ] = ACTIONS(6081), - [anon_sym_LT_EQ] = ACTIONS(6081), - [anon_sym_DOT] = ACTIONS(6083), - [anon_sym_EQ_GT] = ACTIONS(6081), - [anon_sym_switch] = ACTIONS(6081), - [anon_sym_DOT_DOT] = ACTIONS(6081), - [anon_sym_and] = ACTIONS(6081), - [anon_sym_or] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(6081), - [anon_sym_PIPE_PIPE] = ACTIONS(6081), - [sym_op_coalescing] = ACTIONS(6081), - [anon_sym_from] = ACTIONS(6081), - [anon_sym_into] = ACTIONS(6081), - [anon_sym_join] = ACTIONS(6081), - [anon_sym_on] = ACTIONS(6081), - [anon_sym_equals] = ACTIONS(6081), - [anon_sym_let] = ACTIONS(6081), - [anon_sym_orderby] = ACTIONS(6081), - [anon_sym_group] = ACTIONS(6081), - [anon_sym_by] = ACTIONS(6081), - [anon_sym_select] = ACTIONS(6081), - [anon_sym_as] = ACTIONS(6081), - [anon_sym_is] = ACTIONS(6081), - [anon_sym_DASH_GT] = ACTIONS(6081), - [anon_sym_with] = ACTIONS(6081), - [aux_sym_preproc_if_token3] = ACTIONS(6081), - [aux_sym_preproc_else_token1] = ACTIONS(6081), - [aux_sym_preproc_elif_token1] = ACTIONS(6081), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACK] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_in] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_EQ_GT] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_when] = ACTIONS(3189), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3189), + [sym_op_left_shift] = ACTIONS(3189), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3189), + [sym_op_coalescing] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_on] = ACTIONS(3189), + [anon_sym_equals] = ACTIONS(3189), + [anon_sym_by] = ACTIONS(3189), + [anon_sym_as] = ACTIONS(3189), + [anon_sym_is] = ACTIONS(3189), + [anon_sym_DASH_GT] = ACTIONS(3189), + [anon_sym_with] = 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), @@ -550273,27 +546469,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3825] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3825), [sym_preproc_endregion] = STATE(3825), [sym_preproc_line] = STATE(3825), @@ -550303,75 +546493,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3825), [sym_preproc_define] = STATE(3825), [sym_preproc_undef] = STATE(3825), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3826] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3826), [sym_preproc_endregion] = STATE(3826), [sym_preproc_line] = STATE(3826), @@ -550381,42 +546566,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3826), [sym_preproc_define] = STATE(3826), [sym_preproc_undef] = STATE(3826), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5298), + [anon_sym_QMARK] = ACTIONS(6464), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6444), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(6446), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -550429,27 +546615,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3827] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3827), [sym_preproc_endregion] = STATE(3827), [sym_preproc_line] = STATE(3827), @@ -550459,42 +546639,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3827), [sym_preproc_define] = STATE(3827), [sym_preproc_undef] = STATE(3827), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_in] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5334), + [anon_sym_QMARK] = ACTIONS(6464), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6444), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(6446), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -550507,27 +546688,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3828] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3828), [sym_preproc_endregion] = STATE(3828), [sym_preproc_line] = STATE(3828), @@ -550537,42 +546712,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3828), [sym_preproc_define] = STATE(3828), [sym_preproc_undef] = STATE(3828), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4790), - [aux_sym_preproc_else_token1] = ACTIONS(4790), - [aux_sym_preproc_elif_token1] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5296), + [anon_sym_RBRACE] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6533), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6573), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6410), + [sym_op_right_shift] = ACTIONS(6412), + [sym_op_unsigned_right_shift] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(6575), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -550585,27 +546761,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3829] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), [sym_preproc_region] = STATE(3829), [sym_preproc_endregion] = STATE(3829), [sym_preproc_line] = STATE(3829), @@ -550615,42 +546770,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3829), [sym_preproc_define] = STATE(3829), [sym_preproc_undef] = STATE(3829), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6013), - [anon_sym_is] = ACTIONS(6015), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_COMMA] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_QMARK] = ACTIONS(4540), + [anon_sym_DOT] = ACTIONS(4540), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_switch] = ACTIONS(4534), + [anon_sym_DOT_DOT] = ACTIONS(4534), + [anon_sym_LT_EQ] = ACTIONS(4534), + [anon_sym_GT_EQ] = ACTIONS(4534), + [anon_sym_and] = ACTIONS(4534), + [anon_sym_or] = ACTIONS(4534), + [anon_sym_PLUS_EQ] = ACTIONS(4538), + [anon_sym_DASH_EQ] = ACTIONS(4538), + [anon_sym_STAR_EQ] = ACTIONS(4538), + [anon_sym_SLASH_EQ] = ACTIONS(4538), + [anon_sym_PERCENT_EQ] = ACTIONS(4538), + [anon_sym_AMP_EQ] = ACTIONS(4538), + [anon_sym_CARET_EQ] = ACTIONS(4538), + [anon_sym_PIPE_EQ] = ACTIONS(4538), + [anon_sym_LT_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4534), + [anon_sym_BANG_EQ] = ACTIONS(4534), + [anon_sym_AMP_AMP] = ACTIONS(4534), + [anon_sym_PIPE_PIPE] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4540), + [sym_op_bitwise_or] = ACTIONS(4540), + [anon_sym_CARET] = ACTIONS(4540), + [sym_op_left_shift] = ACTIONS(4540), + [sym_op_right_shift] = ACTIONS(4540), + [sym_op_unsigned_right_shift] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [sym_op_divide] = ACTIONS(4540), + [sym_op_modulo] = ACTIONS(4540), + [sym_op_coalescing] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_PLUS_PLUS] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4534), + [anon_sym_into] = ACTIONS(4534), + [anon_sym_as] = ACTIONS(4534), + [anon_sym_is] = ACTIONS(4534), + [anon_sym_DASH_GT] = ACTIONS(4534), + [anon_sym_with] = ACTIONS(4534), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -550661,8 +546831,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4534), }, [3830] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3830), [sym_preproc_endregion] = STATE(3830), [sym_preproc_line] = STATE(3830), @@ -550672,63 +546858,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3830), [sym_preproc_define] = STATE(3830), [sym_preproc_undef] = STATE(3830), - [anon_sym_EQ] = ACTIONS(6087), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(6089), - [anon_sym_DASH_EQ] = ACTIONS(6089), - [anon_sym_STAR_EQ] = ACTIONS(6089), - [anon_sym_SLASH_EQ] = ACTIONS(6089), - [anon_sym_PERCENT_EQ] = ACTIONS(6089), - [anon_sym_AMP_EQ] = ACTIONS(6089), - [anon_sym_CARET_EQ] = ACTIONS(6089), - [anon_sym_PIPE_EQ] = ACTIONS(6089), - [anon_sym_LT_LT_EQ] = ACTIONS(6089), - [anon_sym_GT_GT_EQ] = ACTIONS(6089), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6089), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6089), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [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(5684), - [anon_sym_with] = ACTIONS(5684), - [sym_grit_metavariable] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5336), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6533), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6573), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6410), + [sym_op_right_shift] = ACTIONS(6412), + [sym_op_unsigned_right_shift] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(6575), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -550741,27 +546907,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3831] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3831), [sym_preproc_endregion] = STATE(3831), [sym_preproc_line] = STATE(3831), @@ -550771,54 +546931,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3831), [sym_preproc_define] = STATE(3831), [sym_preproc_undef] = STATE(3831), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6033), - [anon_sym_is] = ACTIONS(6035), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3832] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3832), [sym_preproc_endregion] = STATE(3832), [sym_preproc_line] = STATE(3832), @@ -550828,63 +547004,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3832), [sym_preproc_define] = STATE(3832), [sym_preproc_undef] = STATE(3832), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4331), - [anon_sym_where] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(6091), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4331), - [anon_sym_join] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_let] = ACTIONS(4331), - [anon_sym_orderby] = ACTIONS(4331), - [anon_sym_group] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_select] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -550897,6 +547053,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3833] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3833), [sym_preproc_endregion] = STATE(3833), [sym_preproc_line] = STATE(3833), @@ -550906,73 +547077,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3833), [sym_preproc_define] = STATE(3833), [sym_preproc_undef] = STATE(3833), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4331), - [anon_sym_where] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4331), - [anon_sym_join] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_let] = ACTIONS(4331), - [anon_sym_orderby] = ACTIONS(4331), - [anon_sym_group] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_select] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3834] = { [sym_preproc_region] = STATE(3834), @@ -550984,96 +547135,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3834), [sym_preproc_define] = STATE(3834), [sym_preproc_undef] = STATE(3834), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4331), - [anon_sym_where] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(6091), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4331), - [anon_sym_join] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_let] = ACTIONS(4331), - [anon_sym_orderby] = ACTIONS(4331), - [anon_sym_group] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_select] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(4013), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4020), + [anon_sym_LT] = ACTIONS(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_QMARK] = ACTIONS(4013), + [anon_sym_DOT] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4013), + [anon_sym_switch] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4020), + [anon_sym_or] = ACTIONS(4020), + [anon_sym_PLUS_EQ] = ACTIONS(4020), + [anon_sym_DASH_EQ] = ACTIONS(4020), + [anon_sym_STAR_EQ] = ACTIONS(4020), + [anon_sym_SLASH_EQ] = ACTIONS(4020), + [anon_sym_PERCENT_EQ] = ACTIONS(4020), + [anon_sym_AMP_EQ] = ACTIONS(4020), + [anon_sym_CARET_EQ] = ACTIONS(4020), + [anon_sym_PIPE_EQ] = ACTIONS(4020), + [anon_sym_LT_LT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4020), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4013), + [sym_op_bitwise_or] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [sym_op_left_shift] = ACTIONS(4013), + [sym_op_right_shift] = ACTIONS(4013), + [sym_op_unsigned_right_shift] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_op_divide] = ACTIONS(4013), + [sym_op_modulo] = ACTIONS(4013), + [sym_op_coalescing] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_into] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_DASH_GT] = ACTIONS(4020), + [anon_sym_with] = ACTIONS(4020), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4020), }, [3835] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3835), [sym_preproc_endregion] = STATE(3835), [sym_preproc_line] = STATE(3835), @@ -551083,42 +547223,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3835), [sym_preproc_define] = STATE(3835), [sym_preproc_undef] = STATE(3835), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4782), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6021), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6023), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6410), + [sym_op_right_shift] = ACTIONS(6412), + [sym_op_unsigned_right_shift] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -551131,6 +547272,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3836] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3836), [sym_preproc_endregion] = STATE(3836), [sym_preproc_line] = STATE(3836), @@ -551140,75 +547296,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3836), [sym_preproc_define] = STATE(3836), [sym_preproc_undef] = STATE(3836), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4331), - [anon_sym_where] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4331), - [anon_sym_join] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_let] = ACTIONS(4331), - [anon_sym_orderby] = ACTIONS(4331), - [anon_sym_group] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_select] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [3837] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3837), [sym_preproc_endregion] = STATE(3837), [sym_preproc_line] = STATE(3837), @@ -551218,63 +547369,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3837), [sym_preproc_define] = STATE(3837), [sym_preproc_undef] = STATE(3837), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_RBRACK] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_RPAREN] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_in] = ACTIONS(3371), - [anon_sym_where] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3373), - [anon_sym_CARET] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3373), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3373), - [anon_sym_EQ_EQ] = ACTIONS(3373), - [anon_sym_BANG_EQ] = ACTIONS(3373), - [anon_sym_GT_EQ] = ACTIONS(3373), - [anon_sym_LT_EQ] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_EQ_GT] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3373), - [anon_sym_and] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_PIPE_PIPE] = ACTIONS(3373), - [sym_op_coalescing] = 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_group] = ACTIONS(3373), - [anon_sym_by] = ACTIONS(3373), - [anon_sym_select] = ACTIONS(3373), - [anon_sym_as] = ACTIONS(3373), - [anon_sym_is] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [aux_sym_preproc_if_token3] = ACTIONS(3373), - [aux_sym_preproc_else_token1] = ACTIONS(3373), - [aux_sym_preproc_elif_token1] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6410), + [sym_op_right_shift] = ACTIONS(6412), + [sym_op_unsigned_right_shift] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -551287,6 +547418,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3838] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3838), [sym_preproc_endregion] = STATE(3838), [sym_preproc_line] = STATE(3838), @@ -551296,63 +547442,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3838), [sym_preproc_define] = STATE(3838), [sym_preproc_undef] = STATE(3838), - [anon_sym_SEMI] = ACTIONS(3997), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_COLON] = ACTIONS(3997), - [anon_sym_COMMA] = ACTIONS(3997), - [anon_sym_RBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_RPAREN] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_RBRACE] = ACTIONS(3997), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_in] = ACTIONS(3997), - [anon_sym_where] = ACTIONS(3997), - [anon_sym_QMARK] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3986), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3986), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_EQ_GT] = ACTIONS(3997), - [anon_sym_switch] = ACTIONS(3997), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3997), - [anon_sym_or] = ACTIONS(3986), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [sym_op_coalescing] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3997), - [anon_sym_join] = ACTIONS(3997), - [anon_sym_on] = ACTIONS(3997), - [anon_sym_equals] = ACTIONS(3997), - [anon_sym_let] = ACTIONS(3997), - [anon_sym_orderby] = ACTIONS(3997), - [anon_sym_group] = ACTIONS(3997), - [anon_sym_by] = ACTIONS(3997), - [anon_sym_select] = ACTIONS(3997), - [anon_sym_as] = ACTIONS(3997), - [anon_sym_is] = ACTIONS(3997), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3997), - [aux_sym_preproc_if_token3] = ACTIONS(3997), - [aux_sym_preproc_else_token1] = ACTIONS(3997), - [aux_sym_preproc_elif_token1] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6573), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6410), + [sym_op_right_shift] = ACTIONS(6412), + [sym_op_unsigned_right_shift] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -551365,27 +547491,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3839] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3839), [sym_preproc_endregion] = STATE(3839), [sym_preproc_line] = STATE(3839), @@ -551395,42 +547515,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3839), [sym_preproc_define] = STATE(3839), [sym_preproc_undef] = STATE(3839), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6033), - [anon_sym_is] = ACTIONS(6035), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -551441,8 +547561,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5314), }, [3840] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3840), [sym_preproc_endregion] = STATE(3840), [sym_preproc_line] = STATE(3840), @@ -551452,63 +547588,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3840), [sym_preproc_define] = STATE(3840), [sym_preproc_undef] = STATE(3840), - [anon_sym_SEMI] = ACTIONS(6094), - [anon_sym_LBRACK] = ACTIONS(6094), - [anon_sym_COLON] = ACTIONS(6094), - [anon_sym_COMMA] = ACTIONS(6094), - [anon_sym_RBRACK] = ACTIONS(6094), - [anon_sym_LPAREN] = ACTIONS(6094), - [anon_sym_RPAREN] = ACTIONS(6094), - [anon_sym_RBRACE] = ACTIONS(6094), - [anon_sym_LT] = ACTIONS(6096), - [anon_sym_GT] = ACTIONS(6096), - [anon_sym_in] = ACTIONS(6096), - [anon_sym_where] = ACTIONS(6094), - [anon_sym_QMARK] = ACTIONS(6096), - [anon_sym_BANG] = ACTIONS(6096), - [anon_sym_PLUS_PLUS] = ACTIONS(6094), - [anon_sym_DASH_DASH] = ACTIONS(6094), - [anon_sym_PLUS] = ACTIONS(6096), - [anon_sym_DASH] = ACTIONS(6096), - [anon_sym_STAR] = ACTIONS(6094), - [anon_sym_SLASH] = ACTIONS(6096), - [anon_sym_PERCENT] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6094), - [anon_sym_PIPE] = ACTIONS(6096), - [anon_sym_AMP] = ACTIONS(6096), - [anon_sym_LT_LT] = ACTIONS(6094), - [anon_sym_GT_GT] = ACTIONS(6096), - [anon_sym_GT_GT_GT] = ACTIONS(6094), - [anon_sym_EQ_EQ] = ACTIONS(6094), - [anon_sym_BANG_EQ] = ACTIONS(6094), - [anon_sym_GT_EQ] = ACTIONS(6094), - [anon_sym_LT_EQ] = ACTIONS(6094), - [anon_sym_DOT] = ACTIONS(6096), - [anon_sym_EQ_GT] = ACTIONS(6094), - [anon_sym_switch] = ACTIONS(6094), - [anon_sym_DOT_DOT] = ACTIONS(6094), - [anon_sym_and] = ACTIONS(6094), - [anon_sym_or] = ACTIONS(6096), - [anon_sym_AMP_AMP] = ACTIONS(6094), - [anon_sym_PIPE_PIPE] = ACTIONS(6094), - [sym_op_coalescing] = ACTIONS(6094), - [anon_sym_from] = ACTIONS(6094), - [anon_sym_into] = ACTIONS(6094), - [anon_sym_join] = ACTIONS(6094), - [anon_sym_on] = ACTIONS(6094), - [anon_sym_equals] = ACTIONS(6094), - [anon_sym_let] = ACTIONS(6094), - [anon_sym_orderby] = ACTIONS(6094), - [anon_sym_group] = ACTIONS(6094), - [anon_sym_by] = ACTIONS(6094), - [anon_sym_select] = ACTIONS(6094), - [anon_sym_as] = ACTIONS(6094), - [anon_sym_is] = ACTIONS(6094), - [anon_sym_DASH_GT] = ACTIONS(6094), - [anon_sym_with] = ACTIONS(6094), - [aux_sym_preproc_if_token3] = ACTIONS(6094), - [aux_sym_preproc_else_token1] = ACTIONS(6094), - [aux_sym_preproc_elif_token1] = ACTIONS(6094), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -551521,6 +547637,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3841] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3841), [sym_preproc_endregion] = STATE(3841), [sym_preproc_line] = STATE(3841), @@ -551530,63 +547661,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3841), [sym_preproc_define] = STATE(3841), [sym_preproc_undef] = STATE(3841), - [anon_sym_SEMI] = ACTIONS(6098), - [anon_sym_LBRACK] = ACTIONS(6098), - [anon_sym_COLON] = ACTIONS(6098), - [anon_sym_COMMA] = ACTIONS(6098), - [anon_sym_RBRACK] = ACTIONS(6098), - [anon_sym_LPAREN] = ACTIONS(6098), - [anon_sym_RPAREN] = ACTIONS(6098), - [anon_sym_RBRACE] = ACTIONS(6098), - [anon_sym_LT] = ACTIONS(6100), - [anon_sym_GT] = ACTIONS(6100), - [anon_sym_in] = ACTIONS(6100), - [anon_sym_where] = ACTIONS(6098), - [anon_sym_QMARK] = ACTIONS(6100), - [anon_sym_BANG] = ACTIONS(6100), - [anon_sym_PLUS_PLUS] = ACTIONS(6098), - [anon_sym_DASH_DASH] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(6098), - [anon_sym_SLASH] = ACTIONS(6100), - [anon_sym_PERCENT] = ACTIONS(6098), - [anon_sym_CARET] = ACTIONS(6098), - [anon_sym_PIPE] = ACTIONS(6100), - [anon_sym_AMP] = ACTIONS(6100), - [anon_sym_LT_LT] = ACTIONS(6098), - [anon_sym_GT_GT] = ACTIONS(6100), - [anon_sym_GT_GT_GT] = ACTIONS(6098), - [anon_sym_EQ_EQ] = ACTIONS(6098), - [anon_sym_BANG_EQ] = ACTIONS(6098), - [anon_sym_GT_EQ] = ACTIONS(6098), - [anon_sym_LT_EQ] = ACTIONS(6098), - [anon_sym_DOT] = ACTIONS(6100), - [anon_sym_EQ_GT] = ACTIONS(6098), - [anon_sym_switch] = ACTIONS(6098), - [anon_sym_DOT_DOT] = ACTIONS(6098), - [anon_sym_and] = ACTIONS(6098), - [anon_sym_or] = ACTIONS(6100), - [anon_sym_AMP_AMP] = ACTIONS(6098), - [anon_sym_PIPE_PIPE] = ACTIONS(6098), - [sym_op_coalescing] = ACTIONS(6098), - [anon_sym_from] = ACTIONS(6098), - [anon_sym_into] = ACTIONS(6098), - [anon_sym_join] = ACTIONS(6098), - [anon_sym_on] = ACTIONS(6098), - [anon_sym_equals] = ACTIONS(6098), - [anon_sym_let] = ACTIONS(6098), - [anon_sym_orderby] = ACTIONS(6098), - [anon_sym_group] = ACTIONS(6098), - [anon_sym_by] = ACTIONS(6098), - [anon_sym_select] = ACTIONS(6098), - [anon_sym_as] = ACTIONS(6098), - [anon_sym_is] = ACTIONS(6098), - [anon_sym_DASH_GT] = ACTIONS(6098), - [anon_sym_with] = ACTIONS(6098), - [aux_sym_preproc_if_token3] = ACTIONS(6098), - [aux_sym_preproc_else_token1] = ACTIONS(6098), - [aux_sym_preproc_elif_token1] = ACTIONS(6098), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -551599,27 +547710,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3842] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3842), [sym_preproc_endregion] = STATE(3842), [sym_preproc_line] = STATE(3842), @@ -551629,42 +547734,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3842), [sym_preproc_define] = STATE(3842), [sym_preproc_undef] = STATE(3842), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6021), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6023), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6573), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6410), + [sym_op_right_shift] = ACTIONS(6412), + [sym_op_unsigned_right_shift] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -551677,27 +547783,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3843] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3843), [sym_preproc_endregion] = STATE(3843), [sym_preproc_line] = STATE(3843), @@ -551707,42 +547807,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3843), [sym_preproc_define] = STATE(3843), [sym_preproc_undef] = STATE(3843), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5314), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -551755,27 +547856,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3844] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3844), [sym_preproc_endregion] = STATE(3844), [sym_preproc_line] = STATE(3844), @@ -551785,42 +547880,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3844), [sym_preproc_define] = STATE(3844), [sym_preproc_undef] = STATE(3844), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6033), - [anon_sym_is] = ACTIONS(6035), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(6557), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -551833,27 +547929,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3845] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3845), [sym_preproc_endregion] = STATE(3845), [sym_preproc_line] = STATE(3845), @@ -551863,42 +547953,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3845), [sym_preproc_define] = STATE(3845), [sym_preproc_undef] = STATE(3845), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6043), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6045), - [anon_sym_equals] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(6013), - [anon_sym_is] = ACTIONS(6015), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5308), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -551911,6 +548002,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3846] = { + [sym_modifier] = STATE(5123), + [sym_identifier] = STATE(6701), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(3846), [sym_preproc_endregion] = STATE(3846), [sym_preproc_line] = STATE(3846), @@ -551920,97 +548014,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3846), [sym_preproc_define] = STATE(3846), [sym_preproc_undef] = STATE(3846), - [anon_sym_SEMI] = ACTIONS(6102), - [anon_sym_LBRACK] = ACTIONS(6102), - [anon_sym_COLON] = ACTIONS(6102), - [anon_sym_COMMA] = ACTIONS(6102), - [anon_sym_RBRACK] = ACTIONS(6102), - [anon_sym_LPAREN] = ACTIONS(6102), - [anon_sym_RPAREN] = ACTIONS(6102), - [anon_sym_RBRACE] = ACTIONS(6102), - [anon_sym_LT] = ACTIONS(6104), - [anon_sym_GT] = ACTIONS(6104), - [anon_sym_in] = ACTIONS(6104), - [anon_sym_where] = ACTIONS(6102), - [anon_sym_QMARK] = ACTIONS(6104), - [anon_sym_BANG] = ACTIONS(6104), - [anon_sym_PLUS_PLUS] = ACTIONS(6102), - [anon_sym_DASH_DASH] = ACTIONS(6102), - [anon_sym_PLUS] = ACTIONS(6104), - [anon_sym_DASH] = ACTIONS(6104), - [anon_sym_STAR] = ACTIONS(6102), - [anon_sym_SLASH] = ACTIONS(6104), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_CARET] = ACTIONS(6102), - [anon_sym_PIPE] = ACTIONS(6104), - [anon_sym_AMP] = ACTIONS(6104), - [anon_sym_LT_LT] = ACTIONS(6102), - [anon_sym_GT_GT] = ACTIONS(6104), - [anon_sym_GT_GT_GT] = ACTIONS(6102), - [anon_sym_EQ_EQ] = ACTIONS(6102), - [anon_sym_BANG_EQ] = ACTIONS(6102), - [anon_sym_GT_EQ] = ACTIONS(6102), - [anon_sym_LT_EQ] = ACTIONS(6102), - [anon_sym_DOT] = ACTIONS(6104), - [anon_sym_EQ_GT] = ACTIONS(6102), - [anon_sym_switch] = ACTIONS(6102), - [anon_sym_DOT_DOT] = ACTIONS(6102), - [anon_sym_and] = ACTIONS(6102), - [anon_sym_or] = ACTIONS(6104), - [anon_sym_AMP_AMP] = ACTIONS(6102), - [anon_sym_PIPE_PIPE] = ACTIONS(6102), - [sym_op_coalescing] = ACTIONS(6102), - [anon_sym_from] = ACTIONS(6102), - [anon_sym_into] = ACTIONS(6102), - [anon_sym_join] = ACTIONS(6102), - [anon_sym_on] = ACTIONS(6102), - [anon_sym_equals] = ACTIONS(6102), - [anon_sym_let] = ACTIONS(6102), - [anon_sym_orderby] = ACTIONS(6102), - [anon_sym_group] = ACTIONS(6102), - [anon_sym_by] = ACTIONS(6102), - [anon_sym_select] = ACTIONS(6102), - [anon_sym_as] = ACTIONS(6102), - [anon_sym_is] = ACTIONS(6102), - [anon_sym_DASH_GT] = ACTIONS(6102), - [anon_sym_with] = ACTIONS(6102), - [aux_sym_preproc_if_token3] = ACTIONS(6102), - [aux_sym_preproc_else_token1] = ACTIONS(6102), - [aux_sym_preproc_elif_token1] = ACTIONS(6102), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), - [sym_preproc_region] = STATE(3847), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4484), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(5394), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_unsafe] = ACTIONS(5394), + [anon_sym_static] = ACTIONS(5394), + [anon_sym_public] = ACTIONS(5394), + [anon_sym_private] = ACTIONS(5394), + [anon_sym_readonly] = ACTIONS(5394), + [anon_sym_abstract] = ACTIONS(5394), + [anon_sym_async] = ACTIONS(5394), + [anon_sym_const] = ACTIONS(5394), + [anon_sym_file] = ACTIONS(5400), + [anon_sym_fixed] = ACTIONS(5394), + [anon_sym_internal] = ACTIONS(5394), + [anon_sym_new] = ACTIONS(5394), + [anon_sym_override] = ACTIONS(5394), + [anon_sym_partial] = ACTIONS(5394), + [anon_sym_protected] = ACTIONS(5394), + [anon_sym_required] = ACTIONS(5394), + [anon_sym_sealed] = ACTIONS(5394), + [anon_sym_virtual] = ACTIONS(5394), + [anon_sym_volatile] = ACTIONS(5394), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [sym_accessor_get] = ACTIONS(6577), + [sym_accessor_set] = ACTIONS(6577), + [sym_accessor_add] = ACTIONS(6577), + [sym_accessor_remove] = ACTIONS(6577), + [sym_accessor_init] = ACTIONS(6577), + [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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3847] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), + [sym_preproc_region] = STATE(3847), [sym_preproc_endregion] = STATE(3847), [sym_preproc_line] = STATE(3847), [sym_preproc_pragma] = STATE(3847), @@ -552019,42 +548099,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3847), [sym_preproc_define] = STATE(3847), [sym_preproc_undef] = STATE(3847), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4778), - [anon_sym_QMARK] = ACTIONS(6106), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6108), - [anon_sym_as] = ACTIONS(6110), - [anon_sym_is] = ACTIONS(6112), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6410), + [sym_op_right_shift] = ACTIONS(6412), + [sym_op_unsigned_right_shift] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -552067,27 +548148,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3848] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), [sym_preproc_region] = STATE(3848), [sym_preproc_endregion] = STATE(3848), [sym_preproc_line] = STATE(3848), @@ -552097,42 +548157,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3848), [sym_preproc_define] = STATE(3848), [sym_preproc_undef] = STATE(3848), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6023), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_LBRACK] = ACTIONS(4558), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_COMMA] = ACTIONS(4558), + [anon_sym_LPAREN] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4560), + [anon_sym_GT] = ACTIONS(4560), + [anon_sym_QMARK] = ACTIONS(4560), + [anon_sym_DOT] = ACTIONS(4560), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_switch] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(4558), + [anon_sym_LT_EQ] = ACTIONS(4558), + [anon_sym_GT_EQ] = ACTIONS(4558), + [anon_sym_and] = ACTIONS(4558), + [anon_sym_or] = ACTIONS(4558), + [anon_sym_PLUS_EQ] = ACTIONS(4558), + [anon_sym_DASH_EQ] = ACTIONS(4558), + [anon_sym_STAR_EQ] = ACTIONS(4558), + [anon_sym_SLASH_EQ] = ACTIONS(4558), + [anon_sym_PERCENT_EQ] = ACTIONS(4558), + [anon_sym_AMP_EQ] = ACTIONS(4558), + [anon_sym_CARET_EQ] = ACTIONS(4558), + [anon_sym_PIPE_EQ] = ACTIONS(4558), + [anon_sym_LT_LT_EQ] = ACTIONS(4558), + [anon_sym_GT_GT_EQ] = ACTIONS(4558), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4558), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4558), + [anon_sym_EQ_EQ] = ACTIONS(4558), + [anon_sym_BANG_EQ] = ACTIONS(4558), + [anon_sym_AMP_AMP] = ACTIONS(4558), + [anon_sym_PIPE_PIPE] = ACTIONS(4558), + [anon_sym_AMP] = ACTIONS(4560), + [sym_op_bitwise_or] = ACTIONS(4560), + [anon_sym_CARET] = ACTIONS(4560), + [sym_op_left_shift] = ACTIONS(4560), + [sym_op_right_shift] = ACTIONS(4560), + [sym_op_unsigned_right_shift] = ACTIONS(4560), + [anon_sym_PLUS] = ACTIONS(4560), + [anon_sym_DASH] = ACTIONS(4560), + [sym_op_divide] = ACTIONS(4560), + [sym_op_modulo] = ACTIONS(4560), + [sym_op_coalescing] = ACTIONS(4560), + [anon_sym_BANG] = ACTIONS(4560), + [anon_sym_PLUS_PLUS] = ACTIONS(4558), + [anon_sym_DASH_DASH] = ACTIONS(4558), + [anon_sym_into] = ACTIONS(4558), + [anon_sym_as] = ACTIONS(4558), + [anon_sym_is] = ACTIONS(4558), + [anon_sym_DASH_GT] = ACTIONS(4558), + [anon_sym_with] = ACTIONS(4558), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -552143,8 +548218,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4558), }, [3849] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3849), [sym_preproc_endregion] = STATE(3849), [sym_preproc_line] = STATE(3849), @@ -552154,63 +548245,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3849), [sym_preproc_define] = STATE(3849), [sym_preproc_undef] = STATE(3849), - [anon_sym_SEMI] = ACTIONS(6114), - [anon_sym_LBRACK] = ACTIONS(6114), - [anon_sym_COLON] = ACTIONS(6114), - [anon_sym_COMMA] = ACTIONS(6114), - [anon_sym_RBRACK] = ACTIONS(6114), - [anon_sym_LPAREN] = ACTIONS(6114), - [anon_sym_RPAREN] = ACTIONS(6114), - [anon_sym_RBRACE] = ACTIONS(6114), - [anon_sym_LT] = ACTIONS(6116), - [anon_sym_GT] = ACTIONS(6116), - [anon_sym_in] = ACTIONS(6116), - [anon_sym_where] = ACTIONS(6114), - [anon_sym_QMARK] = ACTIONS(6116), - [anon_sym_BANG] = ACTIONS(6116), - [anon_sym_PLUS_PLUS] = ACTIONS(6114), - [anon_sym_DASH_DASH] = ACTIONS(6114), - [anon_sym_PLUS] = ACTIONS(6116), - [anon_sym_DASH] = ACTIONS(6116), - [anon_sym_STAR] = ACTIONS(6114), - [anon_sym_SLASH] = ACTIONS(6116), - [anon_sym_PERCENT] = ACTIONS(6114), - [anon_sym_CARET] = ACTIONS(6114), - [anon_sym_PIPE] = ACTIONS(6116), - [anon_sym_AMP] = ACTIONS(6116), - [anon_sym_LT_LT] = ACTIONS(6114), - [anon_sym_GT_GT] = ACTIONS(6116), - [anon_sym_GT_GT_GT] = ACTIONS(6114), - [anon_sym_EQ_EQ] = ACTIONS(6114), - [anon_sym_BANG_EQ] = ACTIONS(6114), - [anon_sym_GT_EQ] = ACTIONS(6114), - [anon_sym_LT_EQ] = ACTIONS(6114), - [anon_sym_DOT] = ACTIONS(6116), - [anon_sym_EQ_GT] = ACTIONS(6114), - [anon_sym_switch] = ACTIONS(6114), - [anon_sym_DOT_DOT] = ACTIONS(6114), - [anon_sym_and] = ACTIONS(6114), - [anon_sym_or] = ACTIONS(6116), - [anon_sym_AMP_AMP] = ACTIONS(6114), - [anon_sym_PIPE_PIPE] = ACTIONS(6114), - [sym_op_coalescing] = ACTIONS(6114), - [anon_sym_from] = ACTIONS(6114), - [anon_sym_into] = ACTIONS(6114), - [anon_sym_join] = ACTIONS(6114), - [anon_sym_on] = ACTIONS(6114), - [anon_sym_equals] = ACTIONS(6114), - [anon_sym_let] = ACTIONS(6114), - [anon_sym_orderby] = ACTIONS(6114), - [anon_sym_group] = ACTIONS(6114), - [anon_sym_by] = ACTIONS(6114), - [anon_sym_select] = ACTIONS(6114), - [anon_sym_as] = ACTIONS(6114), - [anon_sym_is] = ACTIONS(6114), - [anon_sym_DASH_GT] = ACTIONS(6114), - [anon_sym_with] = ACTIONS(6114), - [aux_sym_preproc_if_token3] = ACTIONS(6114), - [aux_sym_preproc_else_token1] = ACTIONS(6114), - [aux_sym_preproc_elif_token1] = ACTIONS(6114), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6410), + [sym_op_right_shift] = ACTIONS(6412), + [sym_op_unsigned_right_shift] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -552223,27 +548294,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3850] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), [sym_preproc_region] = STATE(3850), [sym_preproc_endregion] = STATE(3850), [sym_preproc_line] = STATE(3850), @@ -552253,42 +548303,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3850), [sym_preproc_define] = STATE(3850), [sym_preproc_undef] = STATE(3850), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_in] = ACTIONS(4752), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_LBRACK] = ACTIONS(4562), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4564), + [anon_sym_QMARK] = ACTIONS(4564), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_STAR] = ACTIONS(4564), + [anon_sym_switch] = ACTIONS(4562), + [anon_sym_DOT_DOT] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_and] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4562), + [anon_sym_PLUS_EQ] = ACTIONS(4562), + [anon_sym_DASH_EQ] = ACTIONS(4562), + [anon_sym_STAR_EQ] = ACTIONS(4562), + [anon_sym_SLASH_EQ] = ACTIONS(4562), + [anon_sym_PERCENT_EQ] = ACTIONS(4562), + [anon_sym_AMP_EQ] = ACTIONS(4562), + [anon_sym_CARET_EQ] = ACTIONS(4562), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_LT_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4562), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4562), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4564), + [sym_op_bitwise_or] = ACTIONS(4564), + [anon_sym_CARET] = ACTIONS(4564), + [sym_op_left_shift] = ACTIONS(4564), + [sym_op_right_shift] = ACTIONS(4564), + [sym_op_unsigned_right_shift] = ACTIONS(4564), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4564), + [sym_op_divide] = ACTIONS(4564), + [sym_op_modulo] = ACTIONS(4564), + [sym_op_coalescing] = ACTIONS(4564), + [anon_sym_BANG] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_into] = ACTIONS(4562), + [anon_sym_as] = ACTIONS(4562), + [anon_sym_is] = ACTIONS(4562), + [anon_sym_DASH_GT] = ACTIONS(4562), + [anon_sym_with] = ACTIONS(4562), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -552299,8 +548364,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4562), }, [3851] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3851), [sym_preproc_endregion] = STATE(3851), [sym_preproc_line] = STATE(3851), @@ -552310,63 +548391,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3851), [sym_preproc_define] = STATE(3851), [sym_preproc_undef] = STATE(3851), - [anon_sym_SEMI] = ACTIONS(6118), - [anon_sym_LBRACK] = ACTIONS(6118), - [anon_sym_COLON] = ACTIONS(6118), - [anon_sym_COMMA] = ACTIONS(6118), - [anon_sym_RBRACK] = ACTIONS(6118), - [anon_sym_LPAREN] = ACTIONS(6118), - [anon_sym_RPAREN] = ACTIONS(6118), - [anon_sym_RBRACE] = ACTIONS(6118), - [anon_sym_LT] = ACTIONS(6120), - [anon_sym_GT] = ACTIONS(6120), - [anon_sym_in] = ACTIONS(6120), - [anon_sym_where] = ACTIONS(6118), - [anon_sym_QMARK] = ACTIONS(6120), - [anon_sym_BANG] = ACTIONS(6120), - [anon_sym_PLUS_PLUS] = ACTIONS(6118), - [anon_sym_DASH_DASH] = ACTIONS(6118), - [anon_sym_PLUS] = ACTIONS(6120), - [anon_sym_DASH] = ACTIONS(6120), - [anon_sym_STAR] = ACTIONS(6118), - [anon_sym_SLASH] = ACTIONS(6120), - [anon_sym_PERCENT] = ACTIONS(6118), - [anon_sym_CARET] = ACTIONS(6118), - [anon_sym_PIPE] = ACTIONS(6120), - [anon_sym_AMP] = ACTIONS(6120), - [anon_sym_LT_LT] = ACTIONS(6118), - [anon_sym_GT_GT] = ACTIONS(6120), - [anon_sym_GT_GT_GT] = ACTIONS(6118), - [anon_sym_EQ_EQ] = ACTIONS(6118), - [anon_sym_BANG_EQ] = ACTIONS(6118), - [anon_sym_GT_EQ] = ACTIONS(6118), - [anon_sym_LT_EQ] = ACTIONS(6118), - [anon_sym_DOT] = ACTIONS(6120), - [anon_sym_EQ_GT] = ACTIONS(6118), - [anon_sym_switch] = ACTIONS(6118), - [anon_sym_DOT_DOT] = ACTIONS(6118), - [anon_sym_and] = ACTIONS(6118), - [anon_sym_or] = ACTIONS(6120), - [anon_sym_AMP_AMP] = ACTIONS(6118), - [anon_sym_PIPE_PIPE] = ACTIONS(6118), - [sym_op_coalescing] = ACTIONS(6118), - [anon_sym_from] = ACTIONS(6118), - [anon_sym_into] = ACTIONS(6118), - [anon_sym_join] = ACTIONS(6118), - [anon_sym_on] = ACTIONS(6118), - [anon_sym_equals] = ACTIONS(6118), - [anon_sym_let] = ACTIONS(6118), - [anon_sym_orderby] = ACTIONS(6118), - [anon_sym_group] = ACTIONS(6118), - [anon_sym_by] = ACTIONS(6118), - [anon_sym_select] = ACTIONS(6118), - [anon_sym_as] = ACTIONS(6118), - [anon_sym_is] = ACTIONS(6118), - [anon_sym_DASH_GT] = ACTIONS(6118), - [anon_sym_with] = ACTIONS(6118), - [aux_sym_preproc_if_token3] = ACTIONS(6118), - [aux_sym_preproc_else_token1] = ACTIONS(6118), - [aux_sym_preproc_elif_token1] = ACTIONS(6118), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5232), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(6557), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -552379,27 +548440,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3852] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3852), [sym_preproc_endregion] = STATE(3852), [sym_preproc_line] = STATE(3852), @@ -552409,75 +548464,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3852), [sym_preproc_define] = STATE(3852), [sym_preproc_undef] = STATE(3852), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6122), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6126), - [anon_sym_by] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(6128), - [anon_sym_is] = ACTIONS(6130), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6500), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(6506), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6498), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5296), }, [3853] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3853), [sym_preproc_endregion] = STATE(3853), [sym_preproc_line] = STATE(3853), @@ -552487,42 +548537,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3853), [sym_preproc_define] = STATE(3853), [sym_preproc_undef] = STATE(3853), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_equals] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6573), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6410), + [sym_op_right_shift] = ACTIONS(6412), + [sym_op_unsigned_right_shift] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(6575), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -552535,27 +548586,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3854] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3854), [sym_preproc_endregion] = STATE(3854), [sym_preproc_line] = STATE(3854), @@ -552565,54 +548610,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3854), [sym_preproc_define] = STATE(3854), [sym_preproc_undef] = STATE(3854), - [aux_sym_initializer_expression_repeat1] = STATE(7351), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6132), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(6134), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6500), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(6506), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6498), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5336), }, [3855] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3855), [sym_preproc_endregion] = STATE(3855), [sym_preproc_line] = STATE(3855), @@ -552622,63 +548683,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3855), [sym_preproc_define] = STATE(3855), [sym_preproc_undef] = STATE(3855), - [anon_sym_SEMI] = ACTIONS(6136), - [anon_sym_LBRACK] = ACTIONS(6136), - [anon_sym_COLON] = ACTIONS(6136), - [anon_sym_COMMA] = ACTIONS(6136), - [anon_sym_RBRACK] = ACTIONS(6136), - [anon_sym_LPAREN] = ACTIONS(6136), - [anon_sym_RPAREN] = ACTIONS(6136), - [anon_sym_RBRACE] = ACTIONS(6136), - [anon_sym_LT] = ACTIONS(6138), - [anon_sym_GT] = ACTIONS(6138), - [anon_sym_in] = ACTIONS(6138), - [anon_sym_where] = ACTIONS(6136), - [anon_sym_QMARK] = ACTIONS(6138), - [anon_sym_BANG] = ACTIONS(6138), - [anon_sym_PLUS_PLUS] = ACTIONS(6136), - [anon_sym_DASH_DASH] = ACTIONS(6136), - [anon_sym_PLUS] = ACTIONS(6138), - [anon_sym_DASH] = ACTIONS(6138), - [anon_sym_STAR] = ACTIONS(6136), - [anon_sym_SLASH] = ACTIONS(6138), - [anon_sym_PERCENT] = ACTIONS(6136), - [anon_sym_CARET] = ACTIONS(6136), - [anon_sym_PIPE] = ACTIONS(6138), - [anon_sym_AMP] = ACTIONS(6138), - [anon_sym_LT_LT] = ACTIONS(6136), - [anon_sym_GT_GT] = ACTIONS(6138), - [anon_sym_GT_GT_GT] = ACTIONS(6136), - [anon_sym_EQ_EQ] = ACTIONS(6136), - [anon_sym_BANG_EQ] = ACTIONS(6136), - [anon_sym_GT_EQ] = ACTIONS(6136), - [anon_sym_LT_EQ] = ACTIONS(6136), - [anon_sym_DOT] = ACTIONS(6138), - [anon_sym_EQ_GT] = ACTIONS(6136), - [anon_sym_switch] = ACTIONS(6136), - [anon_sym_DOT_DOT] = ACTIONS(6136), - [anon_sym_and] = ACTIONS(6136), - [anon_sym_or] = ACTIONS(6138), - [anon_sym_AMP_AMP] = ACTIONS(6136), - [anon_sym_PIPE_PIPE] = ACTIONS(6136), - [sym_op_coalescing] = ACTIONS(6136), - [anon_sym_from] = ACTIONS(6136), - [anon_sym_into] = ACTIONS(6136), - [anon_sym_join] = ACTIONS(6136), - [anon_sym_on] = ACTIONS(6136), - [anon_sym_equals] = ACTIONS(6136), - [anon_sym_let] = ACTIONS(6136), - [anon_sym_orderby] = ACTIONS(6136), - [anon_sym_group] = ACTIONS(6136), - [anon_sym_by] = ACTIONS(6136), - [anon_sym_select] = ACTIONS(6136), - [anon_sym_as] = ACTIONS(6136), - [anon_sym_is] = ACTIONS(6136), - [anon_sym_DASH_GT] = ACTIONS(6136), - [anon_sym_with] = ACTIONS(6136), - [aux_sym_preproc_if_token3] = ACTIONS(6136), - [aux_sym_preproc_else_token1] = ACTIONS(6136), - [aux_sym_preproc_elif_token1] = ACTIONS(6136), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5304), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5304), + [anon_sym_or] = ACTIONS(5304), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(6557), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6559), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -552691,6 +548732,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3856] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3856), [sym_preproc_endregion] = STATE(3856), [sym_preproc_line] = STATE(3856), @@ -552700,96 +548756,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3856), [sym_preproc_define] = STATE(3856), [sym_preproc_undef] = STATE(3856), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_COLON] = ACTIONS(2173), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(6140), - [anon_sym_RPAREN] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_in] = ACTIONS(2171), - [anon_sym_where] = ACTIONS(2173), - [anon_sym_QMARK] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_PERCENT] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2173), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2173), - [anon_sym_BANG_EQ] = ACTIONS(2173), - [anon_sym_GT_EQ] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2173), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_EQ_GT] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2173), - [anon_sym_and] = ACTIONS(2173), - [anon_sym_or] = ACTIONS(2171), - [anon_sym_AMP_AMP] = ACTIONS(2173), - [anon_sym_PIPE_PIPE] = ACTIONS(2173), - [sym_op_coalescing] = ACTIONS(2173), - [anon_sym_from] = ACTIONS(2173), - [anon_sym_into] = ACTIONS(2173), - [anon_sym_join] = ACTIONS(2173), - [anon_sym_on] = ACTIONS(2173), - [anon_sym_equals] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_orderby] = ACTIONS(2173), - [anon_sym_group] = ACTIONS(2173), - [anon_sym_by] = ACTIONS(2173), - [anon_sym_select] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_is] = ACTIONS(2173), - [anon_sym_DASH_GT] = ACTIONS(2173), - [anon_sym_with] = ACTIONS(2173), - [aux_sym_preproc_if_token3] = ACTIONS(2173), - [aux_sym_preproc_else_token1] = ACTIONS(2173), - [aux_sym_preproc_elif_token1] = ACTIONS(2173), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6500), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(6506), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6498), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5356), }, [3857] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), [sym_preproc_region] = STATE(3857), [sym_preproc_endregion] = STATE(3857), [sym_preproc_line] = STATE(3857), @@ -552799,42 +548814,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3857), [sym_preproc_define] = STATE(3857), [sym_preproc_undef] = STATE(3857), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4782), - [anon_sym_QMARK] = ACTIONS(6106), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6108), - [anon_sym_as] = ACTIONS(6110), - [anon_sym_is] = ACTIONS(6112), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5713), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_COLON] = ACTIONS(5713), + [anon_sym_COMMA] = ACTIONS(5713), + [anon_sym_RBRACK] = ACTIONS(5713), + [anon_sym_LPAREN] = ACTIONS(5713), + [anon_sym_RPAREN] = ACTIONS(5713), + [anon_sym_LBRACE] = ACTIONS(5713), + [anon_sym_RBRACE] = ACTIONS(5713), + [anon_sym_LT] = ACTIONS(5715), + [anon_sym_GT] = ACTIONS(5715), + [anon_sym_in] = ACTIONS(5715), + [anon_sym_QMARK] = ACTIONS(5715), + [anon_sym_DOT] = ACTIONS(5715), + [anon_sym_EQ_GT] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(5713), + [anon_sym_switch] = ACTIONS(5713), + [anon_sym_when] = ACTIONS(5713), + [anon_sym_DOT_DOT] = ACTIONS(5713), + [anon_sym_LT_EQ] = ACTIONS(5713), + [anon_sym_GT_EQ] = ACTIONS(5713), + [anon_sym_and] = ACTIONS(5713), + [anon_sym_or] = ACTIONS(5713), + [anon_sym_EQ_EQ] = ACTIONS(5713), + [anon_sym_BANG_EQ] = ACTIONS(5713), + [anon_sym_AMP_AMP] = ACTIONS(5713), + [anon_sym_PIPE_PIPE] = ACTIONS(5713), + [anon_sym_AMP] = ACTIONS(5715), + [sym_op_bitwise_or] = ACTIONS(5715), + [anon_sym_CARET] = ACTIONS(5713), + [sym_op_left_shift] = ACTIONS(5713), + [sym_op_right_shift] = ACTIONS(5715), + [sym_op_unsigned_right_shift] = ACTIONS(5713), + [anon_sym_PLUS] = ACTIONS(5715), + [anon_sym_DASH] = ACTIONS(5715), + [sym_op_divide] = ACTIONS(5715), + [sym_op_modulo] = ACTIONS(5713), + [sym_op_coalescing] = ACTIONS(5713), + [anon_sym_BANG] = ACTIONS(5715), + [anon_sym_PLUS_PLUS] = ACTIONS(5713), + [anon_sym_DASH_DASH] = ACTIONS(5713), + [anon_sym_into] = ACTIONS(5713), + [anon_sym_on] = ACTIONS(5713), + [anon_sym_equals] = ACTIONS(5713), + [anon_sym_by] = ACTIONS(5713), + [anon_sym_as] = ACTIONS(5713), + [anon_sym_is] = ACTIONS(5713), + [anon_sym_DASH_GT] = ACTIONS(5713), + [anon_sym_with] = ACTIONS(5713), + [aux_sym_preproc_if_token3] = ACTIONS(5713), + [aux_sym_preproc_else_token1] = ACTIONS(5713), + [aux_sym_preproc_elif_token1] = ACTIONS(5713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -552847,27 +548878,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3858] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3858), [sym_preproc_endregion] = STATE(3858), [sym_preproc_line] = STATE(3858), @@ -552877,42 +548902,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3858), [sym_preproc_define] = STATE(3858), [sym_preproc_undef] = STATE(3858), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(6106), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6108), - [anon_sym_as] = ACTIONS(6110), - [anon_sym_is] = ACTIONS(6112), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -552925,27 +548951,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3859] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(3859), [sym_preproc_endregion] = STATE(3859), [sym_preproc_line] = STATE(3859), @@ -552955,42 +548975,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3859), [sym_preproc_define] = STATE(3859), [sym_preproc_undef] = STATE(3859), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6144), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6146), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_EQ_GT] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6434), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -553003,27 +549024,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3860] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3860), [sym_preproc_endregion] = STATE(3860), [sym_preproc_line] = STATE(3860), @@ -553033,42 +549048,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3860), [sym_preproc_define] = STATE(3860), [sym_preproc_undef] = STATE(3860), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5360), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -553081,27 +549097,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3861] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3861), [sym_preproc_endregion] = STATE(3861), [sym_preproc_line] = STATE(3861), @@ -553111,42 +549121,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3861), [sym_preproc_define] = STATE(3861), [sym_preproc_undef] = STATE(3861), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6146), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -553159,27 +549170,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3862] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3862), [sym_preproc_endregion] = STATE(3862), [sym_preproc_line] = STATE(3862), @@ -553189,42 +549194,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3862), [sym_preproc_define] = STATE(3862), [sym_preproc_undef] = STATE(3862), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6146), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -553237,27 +549243,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3863] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3863), [sym_preproc_endregion] = STATE(3863), [sym_preproc_line] = STATE(3863), @@ -553267,42 +549267,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3863), [sym_preproc_define] = STATE(3863), [sym_preproc_undef] = STATE(3863), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4752), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -553315,27 +549316,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3864] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3864), [sym_preproc_endregion] = STATE(3864), [sym_preproc_line] = STATE(3864), @@ -553345,42 +549340,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3864), [sym_preproc_define] = STATE(3864), [sym_preproc_undef] = STATE(3864), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6146), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -553393,27 +549389,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3865] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3865), [sym_preproc_endregion] = STATE(3865), [sym_preproc_line] = STATE(3865), @@ -553423,42 +549413,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3865), [sym_preproc_define] = STATE(3865), [sym_preproc_undef] = STATE(3865), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6146), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_equals] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -553471,27 +549462,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3866] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3866), [sym_preproc_endregion] = STATE(3866), [sym_preproc_line] = STATE(3866), @@ -553501,42 +549486,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3866), [sym_preproc_define] = STATE(3866), [sym_preproc_undef] = STATE(3866), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6146), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_on] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -553549,27 +549535,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3867] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), [sym_preproc_region] = STATE(3867), [sym_preproc_endregion] = STATE(3867), [sym_preproc_line] = STATE(3867), @@ -553579,42 +549544,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3867), [sym_preproc_define] = STATE(3867), [sym_preproc_undef] = STATE(3867), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4708), - [anon_sym_QMARK] = ACTIONS(6106), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6108), - [anon_sym_as] = ACTIONS(6110), - [anon_sym_is] = ACTIONS(6112), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(4532), + [anon_sym_LBRACK] = ACTIONS(4530), + [anon_sym_COLON] = ACTIONS(4530), + [anon_sym_COMMA] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(4530), + [anon_sym_LT] = ACTIONS(4532), + [anon_sym_GT] = ACTIONS(4532), + [anon_sym_QMARK] = ACTIONS(4532), + [anon_sym_DOT] = ACTIONS(4532), + [anon_sym_STAR] = ACTIONS(4532), + [anon_sym_switch] = ACTIONS(4530), + [anon_sym_DOT_DOT] = ACTIONS(4530), + [anon_sym_LT_EQ] = ACTIONS(4530), + [anon_sym_GT_EQ] = ACTIONS(4530), + [anon_sym_and] = ACTIONS(4530), + [anon_sym_or] = ACTIONS(4530), + [anon_sym_PLUS_EQ] = ACTIONS(4530), + [anon_sym_DASH_EQ] = ACTIONS(4530), + [anon_sym_STAR_EQ] = ACTIONS(4530), + [anon_sym_SLASH_EQ] = ACTIONS(4530), + [anon_sym_PERCENT_EQ] = ACTIONS(4530), + [anon_sym_AMP_EQ] = ACTIONS(4530), + [anon_sym_CARET_EQ] = ACTIONS(4530), + [anon_sym_PIPE_EQ] = ACTIONS(4530), + [anon_sym_LT_LT_EQ] = ACTIONS(4530), + [anon_sym_GT_GT_EQ] = ACTIONS(4530), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4530), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4530), + [anon_sym_EQ_EQ] = ACTIONS(4530), + [anon_sym_BANG_EQ] = ACTIONS(4530), + [anon_sym_AMP_AMP] = ACTIONS(4530), + [anon_sym_PIPE_PIPE] = ACTIONS(4530), + [anon_sym_AMP] = ACTIONS(4532), + [sym_op_bitwise_or] = ACTIONS(4532), + [anon_sym_CARET] = ACTIONS(4532), + [sym_op_left_shift] = ACTIONS(4532), + [sym_op_right_shift] = ACTIONS(4532), + [sym_op_unsigned_right_shift] = ACTIONS(4532), + [anon_sym_PLUS] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [sym_op_divide] = ACTIONS(4532), + [sym_op_modulo] = ACTIONS(4532), + [sym_op_coalescing] = ACTIONS(4532), + [anon_sym_BANG] = ACTIONS(4532), + [anon_sym_PLUS_PLUS] = ACTIONS(4530), + [anon_sym_DASH_DASH] = ACTIONS(4530), + [anon_sym_into] = ACTIONS(4530), + [anon_sym_as] = ACTIONS(4530), + [anon_sym_is] = ACTIONS(4530), + [anon_sym_DASH_GT] = ACTIONS(4530), + [anon_sym_with] = ACTIONS(4530), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -553625,8 +549605,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4530), }, [3868] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3868), [sym_preproc_endregion] = STATE(3868), [sym_preproc_line] = STATE(3868), @@ -553636,63 +549632,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3868), [sym_preproc_define] = STATE(3868), [sym_preproc_undef] = STATE(3868), - [anon_sym_SEMI] = ACTIONS(6148), - [anon_sym_LBRACK] = ACTIONS(6148), - [anon_sym_COLON] = ACTIONS(6148), - [anon_sym_COMMA] = ACTIONS(6148), - [anon_sym_RBRACK] = ACTIONS(6148), - [anon_sym_LPAREN] = ACTIONS(6148), - [anon_sym_RPAREN] = ACTIONS(6148), - [anon_sym_RBRACE] = ACTIONS(6148), - [anon_sym_LT] = ACTIONS(6150), - [anon_sym_GT] = ACTIONS(6150), - [anon_sym_in] = ACTIONS(6150), - [anon_sym_where] = ACTIONS(6148), - [anon_sym_QMARK] = ACTIONS(6150), - [anon_sym_BANG] = ACTIONS(6150), - [anon_sym_PLUS_PLUS] = ACTIONS(6148), - [anon_sym_DASH_DASH] = ACTIONS(6148), - [anon_sym_PLUS] = ACTIONS(6150), - [anon_sym_DASH] = ACTIONS(6150), - [anon_sym_STAR] = ACTIONS(6148), - [anon_sym_SLASH] = ACTIONS(6150), - [anon_sym_PERCENT] = ACTIONS(6148), - [anon_sym_CARET] = ACTIONS(6148), - [anon_sym_PIPE] = ACTIONS(6150), - [anon_sym_AMP] = ACTIONS(6150), - [anon_sym_LT_LT] = ACTIONS(6148), - [anon_sym_GT_GT] = ACTIONS(6150), - [anon_sym_GT_GT_GT] = ACTIONS(6148), - [anon_sym_EQ_EQ] = ACTIONS(6148), - [anon_sym_BANG_EQ] = ACTIONS(6148), - [anon_sym_GT_EQ] = ACTIONS(6148), - [anon_sym_LT_EQ] = ACTIONS(6148), - [anon_sym_DOT] = ACTIONS(6150), - [anon_sym_EQ_GT] = ACTIONS(6148), - [anon_sym_switch] = ACTIONS(6148), - [anon_sym_DOT_DOT] = ACTIONS(6148), - [anon_sym_and] = ACTIONS(6148), - [anon_sym_or] = ACTIONS(6150), - [anon_sym_AMP_AMP] = ACTIONS(6148), - [anon_sym_PIPE_PIPE] = ACTIONS(6148), - [sym_op_coalescing] = ACTIONS(6148), - [anon_sym_from] = ACTIONS(6148), - [anon_sym_into] = ACTIONS(6148), - [anon_sym_join] = ACTIONS(6148), - [anon_sym_on] = ACTIONS(6148), - [anon_sym_equals] = ACTIONS(6148), - [anon_sym_let] = ACTIONS(6148), - [anon_sym_orderby] = ACTIONS(6148), - [anon_sym_group] = ACTIONS(6148), - [anon_sym_by] = ACTIONS(6148), - [anon_sym_select] = ACTIONS(6148), - [anon_sym_as] = ACTIONS(6148), - [anon_sym_is] = ACTIONS(6148), - [anon_sym_DASH_GT] = ACTIONS(6148), - [anon_sym_with] = ACTIONS(6148), - [aux_sym_preproc_if_token3] = ACTIONS(6148), - [aux_sym_preproc_else_token1] = ACTIONS(6148), - [aux_sym_preproc_elif_token1] = ACTIONS(6148), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_on] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -553705,27 +549681,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3869] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3869), [sym_preproc_endregion] = STATE(3869), [sym_preproc_line] = STATE(3869), @@ -553735,42 +549705,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3869), [sym_preproc_define] = STATE(3869), [sym_preproc_undef] = STATE(3869), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6146), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_when] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -553783,6 +549754,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3870] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3870), [sym_preproc_endregion] = STATE(3870), [sym_preproc_line] = STATE(3870), @@ -553792,63 +549778,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3870), [sym_preproc_define] = STATE(3870), [sym_preproc_undef] = STATE(3870), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COLON] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(4353), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_in] = ACTIONS(4353), - [anon_sym_where] = ACTIONS(4353), - [anon_sym_QMARK] = ACTIONS(4351), - [anon_sym_BANG] = ACTIONS(4351), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_SLASH] = ACTIONS(4351), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_AMP] = ACTIONS(4351), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4351), - [anon_sym_GT_GT_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ_GT] = ACTIONS(4353), - [anon_sym_switch] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_and] = ACTIONS(4353), - [anon_sym_or] = ACTIONS(4351), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [sym_op_coalescing] = ACTIONS(4353), - [anon_sym_from] = ACTIONS(4353), - [anon_sym_join] = ACTIONS(4353), - [anon_sym_on] = ACTIONS(4353), - [anon_sym_equals] = ACTIONS(4353), - [anon_sym_let] = ACTIONS(4353), - [anon_sym_orderby] = ACTIONS(4353), - [anon_sym_group] = ACTIONS(4353), - [anon_sym_by] = ACTIONS(4353), - [anon_sym_select] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(4353), - [anon_sym_with] = ACTIONS(4353), - [aux_sym_preproc_if_token3] = ACTIONS(4353), - [aux_sym_preproc_else_token1] = ACTIONS(4353), - [aux_sym_preproc_elif_token1] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_on] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -553861,27 +549827,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3871] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3871), [sym_preproc_endregion] = STATE(3871), [sym_preproc_line] = STATE(3871), @@ -553891,42 +549851,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3871), [sym_preproc_define] = STATE(3871), [sym_preproc_undef] = STATE(3871), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_equals] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_on] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -553939,27 +549900,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3872] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3872), [sym_preproc_endregion] = STATE(3872), [sym_preproc_line] = STATE(3872), @@ -553969,42 +549924,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3872), [sym_preproc_define] = STATE(3872), [sym_preproc_undef] = STATE(3872), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_by] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -554017,27 +549973,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3873] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), [sym_preproc_region] = STATE(3873), [sym_preproc_endregion] = STATE(3873), [sym_preproc_line] = STATE(3873), @@ -554047,42 +549982,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3873), [sym_preproc_define] = STATE(3873), [sym_preproc_undef] = STATE(3873), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(6106), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6108), - [anon_sym_as] = ACTIONS(6110), - [anon_sym_is] = ACTIONS(6112), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3189), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3189), + [anon_sym_PLUS_EQ] = ACTIONS(3189), + [anon_sym_DASH_EQ] = ACTIONS(3189), + [anon_sym_STAR_EQ] = ACTIONS(3189), + [anon_sym_SLASH_EQ] = ACTIONS(3189), + [anon_sym_PERCENT_EQ] = ACTIONS(3189), + [anon_sym_AMP_EQ] = ACTIONS(3189), + [anon_sym_CARET_EQ] = ACTIONS(3189), + [anon_sym_PIPE_EQ] = ACTIONS(3189), + [anon_sym_LT_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_GT_EQ] = ACTIONS(3189), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [sym_op_bitwise_or] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [sym_op_left_shift] = ACTIONS(3187), + [sym_op_right_shift] = ACTIONS(3187), + [sym_op_unsigned_right_shift] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [sym_op_divide] = ACTIONS(3187), + [sym_op_modulo] = ACTIONS(3187), + [sym_op_coalescing] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_into] = ACTIONS(3189), + [anon_sym_as] = ACTIONS(3189), + [anon_sym_is] = ACTIONS(3189), + [anon_sym_DASH_GT] = ACTIONS(3189), + [anon_sym_with] = ACTIONS(3189), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -554093,6 +550043,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(3189), }, [3874] = { [sym_preproc_region] = STATE(3874), @@ -554104,63 +550055,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3874), [sym_preproc_define] = STATE(3874), [sym_preproc_undef] = STATE(3874), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_COLON] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_RPAREN] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_where] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3201), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_GT_EQ] = ACTIONS(3201), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_op_coalescing] = 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_group] = ACTIONS(3201), - [anon_sym_by] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3201), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_with] = ACTIONS(3201), - [aux_sym_preproc_if_token3] = ACTIONS(3201), - [aux_sym_preproc_else_token1] = ACTIONS(3201), - [aux_sym_preproc_elif_token1] = ACTIONS(3201), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(6589), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_interface] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_record] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -554173,6 +550119,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3875] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3875), [sym_preproc_endregion] = STATE(3875), [sym_preproc_line] = STATE(3875), @@ -554182,63 +550143,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3875), [sym_preproc_define] = STATE(3875), [sym_preproc_undef] = STATE(3875), - [anon_sym_SEMI] = ACTIONS(6152), - [anon_sym_LBRACK] = ACTIONS(6152), - [anon_sym_COLON] = ACTIONS(6152), - [anon_sym_COMMA] = ACTIONS(6152), - [anon_sym_RBRACK] = ACTIONS(6152), - [anon_sym_LPAREN] = ACTIONS(6152), - [anon_sym_RPAREN] = ACTIONS(6152), - [anon_sym_RBRACE] = ACTIONS(6152), - [anon_sym_LT] = ACTIONS(6154), - [anon_sym_GT] = ACTIONS(6154), - [anon_sym_in] = ACTIONS(6154), - [anon_sym_where] = ACTIONS(6152), - [anon_sym_QMARK] = ACTIONS(6154), - [anon_sym_BANG] = ACTIONS(6154), - [anon_sym_PLUS_PLUS] = ACTIONS(6152), - [anon_sym_DASH_DASH] = ACTIONS(6152), - [anon_sym_PLUS] = ACTIONS(6154), - [anon_sym_DASH] = ACTIONS(6154), - [anon_sym_STAR] = ACTIONS(6152), - [anon_sym_SLASH] = ACTIONS(6154), - [anon_sym_PERCENT] = ACTIONS(6152), - [anon_sym_CARET] = ACTIONS(6152), - [anon_sym_PIPE] = ACTIONS(6154), - [anon_sym_AMP] = ACTIONS(6154), - [anon_sym_LT_LT] = ACTIONS(6152), - [anon_sym_GT_GT] = ACTIONS(6154), - [anon_sym_GT_GT_GT] = ACTIONS(6152), - [anon_sym_EQ_EQ] = ACTIONS(6152), - [anon_sym_BANG_EQ] = ACTIONS(6152), - [anon_sym_GT_EQ] = ACTIONS(6152), - [anon_sym_LT_EQ] = ACTIONS(6152), - [anon_sym_DOT] = ACTIONS(6154), - [anon_sym_EQ_GT] = ACTIONS(6152), - [anon_sym_switch] = ACTIONS(6152), - [anon_sym_DOT_DOT] = ACTIONS(6152), - [anon_sym_and] = ACTIONS(6152), - [anon_sym_or] = ACTIONS(6154), - [anon_sym_AMP_AMP] = ACTIONS(6152), - [anon_sym_PIPE_PIPE] = ACTIONS(6152), - [sym_op_coalescing] = ACTIONS(6152), - [anon_sym_from] = ACTIONS(6152), - [anon_sym_into] = ACTIONS(6152), - [anon_sym_join] = ACTIONS(6152), - [anon_sym_on] = ACTIONS(6152), - [anon_sym_equals] = ACTIONS(6152), - [anon_sym_let] = ACTIONS(6152), - [anon_sym_orderby] = ACTIONS(6152), - [anon_sym_group] = ACTIONS(6152), - [anon_sym_by] = ACTIONS(6152), - [anon_sym_select] = ACTIONS(6152), - [anon_sym_as] = ACTIONS(6152), - [anon_sym_is] = ACTIONS(6152), - [anon_sym_DASH_GT] = ACTIONS(6152), - [anon_sym_with] = ACTIONS(6152), - [aux_sym_preproc_if_token3] = ACTIONS(6152), - [aux_sym_preproc_else_token1] = ACTIONS(6152), - [aux_sym_preproc_elif_token1] = ACTIONS(6152), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6591), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5332), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6595), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(6605), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6607), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -554251,6 +550192,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3876] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3876), [sym_preproc_endregion] = STATE(3876), [sym_preproc_line] = STATE(3876), @@ -554260,96 +550216,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3876), [sym_preproc_define] = STATE(3876), [sym_preproc_undef] = STATE(3876), - [anon_sym_SEMI] = ACTIONS(6156), - [anon_sym_LBRACK] = ACTIONS(6156), - [anon_sym_COLON] = ACTIONS(6156), - [anon_sym_COMMA] = ACTIONS(6156), - [anon_sym_RBRACK] = ACTIONS(6156), - [anon_sym_LPAREN] = ACTIONS(6156), - [anon_sym_RPAREN] = ACTIONS(6156), - [anon_sym_RBRACE] = ACTIONS(6156), - [anon_sym_LT] = ACTIONS(6158), - [anon_sym_GT] = ACTIONS(6158), - [anon_sym_in] = ACTIONS(6158), - [anon_sym_where] = ACTIONS(6156), - [anon_sym_QMARK] = ACTIONS(6158), - [anon_sym_BANG] = ACTIONS(6158), - [anon_sym_PLUS_PLUS] = ACTIONS(6156), - [anon_sym_DASH_DASH] = ACTIONS(6156), - [anon_sym_PLUS] = ACTIONS(6158), - [anon_sym_DASH] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(6156), - [anon_sym_SLASH] = ACTIONS(6158), - [anon_sym_PERCENT] = ACTIONS(6156), - [anon_sym_CARET] = ACTIONS(6156), - [anon_sym_PIPE] = ACTIONS(6158), - [anon_sym_AMP] = ACTIONS(6158), - [anon_sym_LT_LT] = ACTIONS(6156), - [anon_sym_GT_GT] = ACTIONS(6158), - [anon_sym_GT_GT_GT] = ACTIONS(6156), - [anon_sym_EQ_EQ] = ACTIONS(6156), - [anon_sym_BANG_EQ] = ACTIONS(6156), - [anon_sym_GT_EQ] = ACTIONS(6156), - [anon_sym_LT_EQ] = ACTIONS(6156), - [anon_sym_DOT] = ACTIONS(6158), - [anon_sym_EQ_GT] = ACTIONS(6156), - [anon_sym_switch] = ACTIONS(6156), - [anon_sym_DOT_DOT] = ACTIONS(6156), - [anon_sym_and] = ACTIONS(6156), - [anon_sym_or] = ACTIONS(6158), - [anon_sym_AMP_AMP] = ACTIONS(6156), - [anon_sym_PIPE_PIPE] = ACTIONS(6156), - [sym_op_coalescing] = ACTIONS(6156), - [anon_sym_from] = ACTIONS(6156), - [anon_sym_into] = ACTIONS(6156), - [anon_sym_join] = ACTIONS(6156), - [anon_sym_on] = ACTIONS(6156), - [anon_sym_equals] = ACTIONS(6156), - [anon_sym_let] = ACTIONS(6156), - [anon_sym_orderby] = ACTIONS(6156), - [anon_sym_group] = ACTIONS(6156), - [anon_sym_by] = ACTIONS(6156), - [anon_sym_select] = ACTIONS(6156), - [anon_sym_as] = ACTIONS(6156), - [anon_sym_is] = ACTIONS(6156), - [anon_sym_DASH_GT] = ACTIONS(6156), - [anon_sym_with] = ACTIONS(6156), - [aux_sym_preproc_if_token3] = ACTIONS(6156), - [aux_sym_preproc_else_token1] = ACTIONS(6156), - [aux_sym_preproc_elif_token1] = ACTIONS(6156), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5360), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5360), }, [3877] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(3877), [sym_preproc_endregion] = STATE(3877), [sym_preproc_line] = STATE(3877), @@ -554359,42 +550274,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3877), [sym_preproc_define] = STATE(3877), [sym_preproc_undef] = STATE(3877), - [aux_sym_array_rank_specifier_repeat1] = STATE(7193), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6160), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_and] = ACTIONS(3694), + [anon_sym_or] = ACTIONS(3694), + [anon_sym_PLUS_EQ] = ACTIONS(3694), + [anon_sym_DASH_EQ] = ACTIONS(3694), + [anon_sym_STAR_EQ] = ACTIONS(3694), + [anon_sym_SLASH_EQ] = ACTIONS(3694), + [anon_sym_PERCENT_EQ] = ACTIONS(3694), + [anon_sym_AMP_EQ] = ACTIONS(3694), + [anon_sym_CARET_EQ] = ACTIONS(3694), + [anon_sym_PIPE_EQ] = ACTIONS(3694), + [anon_sym_LT_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3694), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3696), + [sym_op_bitwise_or] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [sym_op_left_shift] = ACTIONS(3696), + [sym_op_right_shift] = ACTIONS(3696), + [sym_op_unsigned_right_shift] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [sym_op_divide] = ACTIONS(3696), + [sym_op_modulo] = ACTIONS(3696), + [sym_op_coalescing] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_into] = ACTIONS(3694), + [anon_sym_as] = ACTIONS(3694), + [anon_sym_is] = ACTIONS(3694), + [anon_sym_DASH_GT] = ACTIONS(3694), + [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), @@ -554405,29 +550335,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(3694), }, [3878] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), [sym_preproc_region] = STATE(3878), [sym_preproc_endregion] = STATE(3878), [sym_preproc_line] = STATE(3878), @@ -554437,42 +550347,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3878), [sym_preproc_define] = STATE(3878), [sym_preproc_undef] = STATE(3878), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4774), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_COLON] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_RBRACK] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_RPAREN] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_QMARK] = ACTIONS(4343), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_EQ_GT] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_switch] = ACTIONS(4345), + [anon_sym_when] = ACTIONS(4345), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_and] = ACTIONS(4345), + [anon_sym_or] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4343), + [sym_op_bitwise_or] = ACTIONS(4343), + [anon_sym_CARET] = ACTIONS(4345), + [sym_op_left_shift] = ACTIONS(4345), + [sym_op_right_shift] = ACTIONS(4343), + [sym_op_unsigned_right_shift] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [sym_op_divide] = ACTIONS(4343), + [sym_op_modulo] = ACTIONS(4345), + [sym_op_coalescing] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_into] = ACTIONS(4345), + [anon_sym_on] = ACTIONS(4345), + [anon_sym_equals] = ACTIONS(4345), + [anon_sym_by] = ACTIONS(4345), + [anon_sym_as] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4345), + [anon_sym_DASH_GT] = ACTIONS(4345), + [anon_sym_with] = ACTIONS(4345), + [aux_sym_preproc_if_token3] = ACTIONS(4345), + [aux_sym_preproc_else_token1] = ACTIONS(4345), + [aux_sym_preproc_elif_token1] = ACTIONS(4345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -554485,27 +550411,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3879] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1751), + [sym_op_lte] = STATE(1751), + [sym_op_eq] = STATE(1753), + [sym_op_neq] = STATE(1753), + [sym_op_gt] = STATE(1751), + [sym_op_gte] = STATE(1751), + [sym_op_and] = STATE(1762), + [sym_op_or] = STATE(1763), + [sym_op_bitwise_and] = STATE(1764), + [sym_op_bitwise_xor] = STATE(1766), + [sym_op_plus] = STATE(1767), + [sym_op_minus] = STATE(1767), + [sym_op_multiply] = STATE(1748), [sym_preproc_region] = STATE(3879), [sym_preproc_endregion] = STATE(3879), [sym_preproc_line] = STATE(3879), @@ -554515,75 +550435,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3879), [sym_preproc_define] = STATE(3879), [sym_preproc_undef] = STATE(3879), - [aux_sym_initializer_expression_repeat1] = STATE(7099), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6162), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(6164), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6488), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6500), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6490), + [sym_op_right_shift] = ACTIONS(6492), + [sym_op_unsigned_right_shift] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6494), + [sym_op_modulo] = ACTIONS(6496), + [sym_op_coalescing] = ACTIONS(6506), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(6175), + [anon_sym_is] = ACTIONS(6498), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5364), }, [3880] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), [sym_preproc_region] = STATE(3880), [sym_preproc_endregion] = STATE(3880), [sym_preproc_line] = STATE(3880), @@ -554593,42 +550493,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3880), [sym_preproc_define] = STATE(3880), [sym_preproc_undef] = STATE(3880), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4316), + [anon_sym_LBRACK] = ACTIONS(4316), + [anon_sym_COLON] = ACTIONS(4316), + [anon_sym_COMMA] = ACTIONS(4316), + [anon_sym_RBRACK] = ACTIONS(4316), + [anon_sym_LPAREN] = ACTIONS(4316), + [anon_sym_RPAREN] = ACTIONS(4316), + [anon_sym_LBRACE] = ACTIONS(4316), + [anon_sym_RBRACE] = ACTIONS(4316), + [anon_sym_LT] = ACTIONS(4314), + [anon_sym_GT] = ACTIONS(4314), + [anon_sym_in] = ACTIONS(4314), + [anon_sym_QMARK] = ACTIONS(4314), + [anon_sym_DOT] = ACTIONS(4314), + [anon_sym_EQ_GT] = ACTIONS(4316), + [anon_sym_STAR] = ACTIONS(4316), + [anon_sym_switch] = ACTIONS(4316), + [anon_sym_when] = ACTIONS(4316), + [anon_sym_DOT_DOT] = ACTIONS(4316), + [anon_sym_LT_EQ] = ACTIONS(4316), + [anon_sym_GT_EQ] = ACTIONS(4316), + [anon_sym_and] = ACTIONS(4316), + [anon_sym_or] = ACTIONS(4316), + [anon_sym_EQ_EQ] = ACTIONS(4316), + [anon_sym_BANG_EQ] = ACTIONS(4316), + [anon_sym_AMP_AMP] = ACTIONS(4316), + [anon_sym_PIPE_PIPE] = ACTIONS(4316), + [anon_sym_AMP] = ACTIONS(4314), + [sym_op_bitwise_or] = ACTIONS(4314), + [anon_sym_CARET] = ACTIONS(4316), + [sym_op_left_shift] = ACTIONS(4316), + [sym_op_right_shift] = ACTIONS(4314), + [sym_op_unsigned_right_shift] = ACTIONS(4316), + [anon_sym_PLUS] = ACTIONS(4314), + [anon_sym_DASH] = ACTIONS(4314), + [sym_op_divide] = ACTIONS(4314), + [sym_op_modulo] = ACTIONS(4316), + [sym_op_coalescing] = ACTIONS(4316), + [anon_sym_BANG] = ACTIONS(4314), + [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4316), + [anon_sym_into] = ACTIONS(4316), + [anon_sym_on] = ACTIONS(4316), + [anon_sym_equals] = ACTIONS(4316), + [anon_sym_by] = ACTIONS(4316), + [anon_sym_as] = ACTIONS(4316), + [anon_sym_is] = ACTIONS(4316), + [anon_sym_DASH_GT] = ACTIONS(4316), + [anon_sym_with] = ACTIONS(4316), + [aux_sym_preproc_if_token3] = ACTIONS(4316), + [aux_sym_preproc_else_token1] = ACTIONS(4316), + [aux_sym_preproc_elif_token1] = ACTIONS(4316), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -554650,63 +550566,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3881), [sym_preproc_define] = STATE(3881), [sym_preproc_undef] = STATE(3881), - [anon_sym_SEMI] = ACTIONS(6166), - [anon_sym_LBRACK] = ACTIONS(6166), - [anon_sym_COLON] = ACTIONS(6166), - [anon_sym_COMMA] = ACTIONS(6166), - [anon_sym_RBRACK] = ACTIONS(6166), - [anon_sym_LPAREN] = ACTIONS(6166), - [anon_sym_RPAREN] = ACTIONS(6166), - [anon_sym_RBRACE] = ACTIONS(6166), - [anon_sym_LT] = ACTIONS(6168), - [anon_sym_GT] = ACTIONS(6168), - [anon_sym_in] = ACTIONS(6168), - [anon_sym_where] = ACTIONS(6166), - [anon_sym_QMARK] = ACTIONS(6168), - [anon_sym_BANG] = ACTIONS(6168), - [anon_sym_PLUS_PLUS] = ACTIONS(6166), - [anon_sym_DASH_DASH] = ACTIONS(6166), - [anon_sym_PLUS] = ACTIONS(6168), - [anon_sym_DASH] = ACTIONS(6168), - [anon_sym_STAR] = ACTIONS(6166), - [anon_sym_SLASH] = ACTIONS(6168), - [anon_sym_PERCENT] = ACTIONS(6166), - [anon_sym_CARET] = ACTIONS(6166), - [anon_sym_PIPE] = ACTIONS(6168), - [anon_sym_AMP] = ACTIONS(6168), - [anon_sym_LT_LT] = ACTIONS(6166), - [anon_sym_GT_GT] = ACTIONS(6168), - [anon_sym_GT_GT_GT] = ACTIONS(6166), - [anon_sym_EQ_EQ] = ACTIONS(6166), - [anon_sym_BANG_EQ] = ACTIONS(6166), - [anon_sym_GT_EQ] = ACTIONS(6166), - [anon_sym_LT_EQ] = ACTIONS(6166), - [anon_sym_DOT] = ACTIONS(6168), - [anon_sym_EQ_GT] = ACTIONS(6166), - [anon_sym_switch] = ACTIONS(6166), - [anon_sym_DOT_DOT] = ACTIONS(6166), - [anon_sym_and] = ACTIONS(6166), - [anon_sym_or] = ACTIONS(6168), - [anon_sym_AMP_AMP] = ACTIONS(6166), - [anon_sym_PIPE_PIPE] = ACTIONS(6166), - [sym_op_coalescing] = ACTIONS(6166), - [anon_sym_from] = ACTIONS(6166), - [anon_sym_into] = ACTIONS(6166), - [anon_sym_join] = ACTIONS(6166), - [anon_sym_on] = ACTIONS(6166), - [anon_sym_equals] = ACTIONS(6166), - [anon_sym_let] = ACTIONS(6166), - [anon_sym_orderby] = ACTIONS(6166), - [anon_sym_group] = ACTIONS(6166), - [anon_sym_by] = ACTIONS(6166), - [anon_sym_select] = ACTIONS(6166), - [anon_sym_as] = ACTIONS(6166), - [anon_sym_is] = ACTIONS(6166), - [anon_sym_DASH_GT] = ACTIONS(6166), - [anon_sym_with] = ACTIONS(6166), - [aux_sym_preproc_if_token3] = ACTIONS(6166), - [aux_sym_preproc_else_token1] = ACTIONS(6166), - [aux_sym_preproc_elif_token1] = ACTIONS(6166), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_COLON] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_QMARK] = ACTIONS(3970), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_switch] = ACTIONS(3972), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_and] = ACTIONS(3972), + [anon_sym_or] = ACTIONS(3972), + [anon_sym_PLUS_EQ] = ACTIONS(3972), + [anon_sym_DASH_EQ] = ACTIONS(3972), + [anon_sym_STAR_EQ] = ACTIONS(3972), + [anon_sym_SLASH_EQ] = ACTIONS(3972), + [anon_sym_PERCENT_EQ] = ACTIONS(3972), + [anon_sym_AMP_EQ] = ACTIONS(3972), + [anon_sym_CARET_EQ] = ACTIONS(3972), + [anon_sym_PIPE_EQ] = ACTIONS(3972), + [anon_sym_LT_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_GT_EQ] = ACTIONS(3972), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3972), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [sym_op_bitwise_or] = ACTIONS(3970), + [anon_sym_CARET] = ACTIONS(3970), + [sym_op_left_shift] = ACTIONS(3970), + [sym_op_right_shift] = ACTIONS(3970), + [sym_op_unsigned_right_shift] = ACTIONS(3970), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [sym_op_divide] = ACTIONS(3970), + [sym_op_modulo] = ACTIONS(3970), + [sym_op_coalescing] = ACTIONS(3970), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_into] = ACTIONS(3972), + [anon_sym_as] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3972), + [anon_sym_DASH_GT] = ACTIONS(3972), + [anon_sym_with] = ACTIONS(3972), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -554717,8 +550627,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3972), }, [3882] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3882), [sym_preproc_endregion] = STATE(3882), [sym_preproc_line] = STATE(3882), @@ -554728,63 +550654,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3882), [sym_preproc_define] = STATE(3882), [sym_preproc_undef] = STATE(3882), - [anon_sym_SEMI] = ACTIONS(6170), - [anon_sym_LBRACK] = ACTIONS(6170), - [anon_sym_COLON] = ACTIONS(6170), - [anon_sym_COMMA] = ACTIONS(6170), - [anon_sym_RBRACK] = ACTIONS(6170), - [anon_sym_LPAREN] = ACTIONS(6170), - [anon_sym_RPAREN] = ACTIONS(6170), - [anon_sym_RBRACE] = ACTIONS(6170), - [anon_sym_LT] = ACTIONS(6172), - [anon_sym_GT] = ACTIONS(6172), - [anon_sym_in] = ACTIONS(6172), - [anon_sym_where] = ACTIONS(6170), - [anon_sym_QMARK] = ACTIONS(6172), - [anon_sym_BANG] = ACTIONS(6172), - [anon_sym_PLUS_PLUS] = ACTIONS(6170), - [anon_sym_DASH_DASH] = ACTIONS(6170), - [anon_sym_PLUS] = ACTIONS(6172), - [anon_sym_DASH] = ACTIONS(6172), - [anon_sym_STAR] = ACTIONS(6170), - [anon_sym_SLASH] = ACTIONS(6172), - [anon_sym_PERCENT] = ACTIONS(6170), - [anon_sym_CARET] = ACTIONS(6170), - [anon_sym_PIPE] = ACTIONS(6172), - [anon_sym_AMP] = ACTIONS(6172), - [anon_sym_LT_LT] = ACTIONS(6170), - [anon_sym_GT_GT] = ACTIONS(6172), - [anon_sym_GT_GT_GT] = ACTIONS(6170), - [anon_sym_EQ_EQ] = ACTIONS(6170), - [anon_sym_BANG_EQ] = ACTIONS(6170), - [anon_sym_GT_EQ] = ACTIONS(6170), - [anon_sym_LT_EQ] = ACTIONS(6170), - [anon_sym_DOT] = ACTIONS(6172), - [anon_sym_EQ_GT] = ACTIONS(6170), - [anon_sym_switch] = ACTIONS(6170), - [anon_sym_DOT_DOT] = ACTIONS(6170), - [anon_sym_and] = ACTIONS(6170), - [anon_sym_or] = ACTIONS(6172), - [anon_sym_AMP_AMP] = ACTIONS(6170), - [anon_sym_PIPE_PIPE] = ACTIONS(6170), - [sym_op_coalescing] = ACTIONS(6170), - [anon_sym_from] = ACTIONS(6170), - [anon_sym_into] = ACTIONS(6170), - [anon_sym_join] = ACTIONS(6170), - [anon_sym_on] = ACTIONS(6170), - [anon_sym_equals] = ACTIONS(6170), - [anon_sym_let] = ACTIONS(6170), - [anon_sym_orderby] = ACTIONS(6170), - [anon_sym_group] = ACTIONS(6170), - [anon_sym_by] = ACTIONS(6170), - [anon_sym_select] = ACTIONS(6170), - [anon_sym_as] = ACTIONS(6170), - [anon_sym_is] = ACTIONS(6170), - [anon_sym_DASH_GT] = ACTIONS(6170), - [anon_sym_with] = ACTIONS(6170), - [aux_sym_preproc_if_token3] = ACTIONS(6170), - [aux_sym_preproc_else_token1] = ACTIONS(6170), - [aux_sym_preproc_elif_token1] = ACTIONS(6170), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -554806,63 +550712,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3883), [sym_preproc_define] = STATE(3883), [sym_preproc_undef] = STATE(3883), - [anon_sym_SEMI] = ACTIONS(4312), - [anon_sym_LBRACK] = ACTIONS(4312), - [anon_sym_COLON] = ACTIONS(4312), - [anon_sym_COMMA] = ACTIONS(4312), - [anon_sym_RBRACK] = ACTIONS(4312), - [anon_sym_LPAREN] = ACTIONS(4312), - [anon_sym_RPAREN] = ACTIONS(4312), - [anon_sym_LBRACE] = ACTIONS(4312), - [anon_sym_RBRACE] = ACTIONS(4312), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym_GT] = ACTIONS(4310), - [anon_sym_in] = ACTIONS(4312), - [anon_sym_where] = ACTIONS(4312), - [anon_sym_QMARK] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(4310), - [anon_sym_PLUS_PLUS] = ACTIONS(4312), - [anon_sym_DASH_DASH] = ACTIONS(4312), - [anon_sym_PLUS] = ACTIONS(4310), - [anon_sym_DASH] = ACTIONS(4310), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_SLASH] = ACTIONS(4310), - [anon_sym_PERCENT] = ACTIONS(4312), - [anon_sym_CARET] = ACTIONS(4312), - [anon_sym_PIPE] = ACTIONS(4310), - [anon_sym_AMP] = ACTIONS(4310), - [anon_sym_LT_LT] = ACTIONS(4312), - [anon_sym_GT_GT] = ACTIONS(4310), - [anon_sym_GT_GT_GT] = ACTIONS(4312), - [anon_sym_EQ_EQ] = ACTIONS(4312), - [anon_sym_BANG_EQ] = ACTIONS(4312), - [anon_sym_GT_EQ] = ACTIONS(4312), - [anon_sym_LT_EQ] = ACTIONS(4312), - [anon_sym_DOT] = ACTIONS(4310), - [anon_sym_EQ_GT] = ACTIONS(4312), - [anon_sym_switch] = ACTIONS(4312), - [anon_sym_DOT_DOT] = ACTIONS(4312), - [anon_sym_and] = ACTIONS(4312), - [anon_sym_or] = ACTIONS(4310), - [anon_sym_AMP_AMP] = ACTIONS(4312), - [anon_sym_PIPE_PIPE] = ACTIONS(4312), - [sym_op_coalescing] = ACTIONS(4312), - [anon_sym_from] = 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_group] = ACTIONS(4312), - [anon_sym_by] = ACTIONS(4312), - [anon_sym_select] = ACTIONS(4312), - [anon_sym_as] = ACTIONS(4312), - [anon_sym_is] = ACTIONS(4312), - [anon_sym_DASH_GT] = ACTIONS(4312), - [anon_sym_with] = ACTIONS(4312), - [aux_sym_preproc_if_token3] = ACTIONS(4312), - [aux_sym_preproc_else_token1] = ACTIONS(4312), - [aux_sym_preproc_elif_token1] = ACTIONS(4312), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4458), + [anon_sym_COLON] = ACTIONS(4458), + [anon_sym_COMMA] = ACTIONS(4458), + [anon_sym_RBRACK] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym_RPAREN] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4458), + [anon_sym_RBRACE] = ACTIONS(4458), + [anon_sym_LT] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4456), + [anon_sym_in] = ACTIONS(4456), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_DOT] = ACTIONS(4456), + [anon_sym_EQ_GT] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_switch] = ACTIONS(4458), + [anon_sym_when] = ACTIONS(4458), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_AMP_AMP] = ACTIONS(4458), + [anon_sym_PIPE_PIPE] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [sym_op_bitwise_or] = ACTIONS(4456), + [anon_sym_CARET] = ACTIONS(4458), + [sym_op_left_shift] = ACTIONS(4458), + [sym_op_right_shift] = ACTIONS(4456), + [sym_op_unsigned_right_shift] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [sym_op_divide] = ACTIONS(4456), + [sym_op_modulo] = ACTIONS(4458), + [sym_op_coalescing] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4456), + [anon_sym_PLUS_PLUS] = ACTIONS(4458), + [anon_sym_DASH_DASH] = ACTIONS(4458), + [anon_sym_into] = ACTIONS(4458), + [anon_sym_on] = ACTIONS(4458), + [anon_sym_equals] = ACTIONS(4458), + [anon_sym_by] = ACTIONS(4458), + [anon_sym_as] = ACTIONS(4458), + [anon_sym_is] = ACTIONS(4458), + [anon_sym_DASH_GT] = ACTIONS(4458), + [anon_sym_with] = ACTIONS(4458), + [aux_sym_preproc_if_token3] = ACTIONS(4458), + [aux_sym_preproc_else_token1] = ACTIONS(4458), + [aux_sym_preproc_elif_token1] = ACTIONS(4458), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -554875,27 +550776,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3884] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), [sym_preproc_region] = STATE(3884), [sym_preproc_endregion] = STATE(3884), [sym_preproc_line] = STATE(3884), @@ -554905,42 +550785,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3884), [sym_preproc_define] = STATE(3884), [sym_preproc_undef] = STATE(3884), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4708), - [aux_sym_preproc_else_token1] = ACTIONS(4708), - [aux_sym_preproc_elif_token1] = ACTIONS(4708), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_COLON] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_RBRACK] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_RPAREN] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_QMARK] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_EQ_GT] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_switch] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_and] = ACTIONS(4349), + [anon_sym_or] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(4347), + [sym_op_bitwise_or] = ACTIONS(4347), + [anon_sym_CARET] = ACTIONS(4349), + [sym_op_left_shift] = ACTIONS(4349), + [sym_op_right_shift] = ACTIONS(4347), + [sym_op_unsigned_right_shift] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [sym_op_divide] = ACTIONS(4347), + [sym_op_modulo] = ACTIONS(4349), + [sym_op_coalescing] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_into] = ACTIONS(4349), + [anon_sym_on] = ACTIONS(4349), + [anon_sym_equals] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(4349), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_DASH_GT] = ACTIONS(4349), + [anon_sym_with] = ACTIONS(4349), + [aux_sym_preproc_if_token3] = ACTIONS(4349), + [aux_sym_preproc_else_token1] = ACTIONS(4349), + [aux_sym_preproc_elif_token1] = ACTIONS(4349), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -554953,27 +550849,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3885] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), [sym_preproc_region] = STATE(3885), [sym_preproc_endregion] = STATE(3885), [sym_preproc_line] = STATE(3885), @@ -554983,42 +550858,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3885), [sym_preproc_define] = STATE(3885), [sym_preproc_undef] = STATE(3885), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3951), + [anon_sym_switch] = ACTIONS(3953), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3953), + [anon_sym_or] = ACTIONS(3953), + [anon_sym_PLUS_EQ] = ACTIONS(3953), + [anon_sym_DASH_EQ] = ACTIONS(3953), + [anon_sym_STAR_EQ] = ACTIONS(3953), + [anon_sym_SLASH_EQ] = ACTIONS(3953), + [anon_sym_PERCENT_EQ] = ACTIONS(3953), + [anon_sym_AMP_EQ] = ACTIONS(3953), + [anon_sym_CARET_EQ] = ACTIONS(3953), + [anon_sym_PIPE_EQ] = ACTIONS(3953), + [anon_sym_LT_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_GT_EQ] = ACTIONS(3953), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP] = ACTIONS(3951), + [sym_op_bitwise_or] = ACTIONS(3951), + [anon_sym_CARET] = ACTIONS(3951), + [sym_op_left_shift] = ACTIONS(3951), + [sym_op_right_shift] = ACTIONS(3951), + [sym_op_unsigned_right_shift] = ACTIONS(3951), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [sym_op_divide] = ACTIONS(3951), + [sym_op_modulo] = ACTIONS(3951), + [sym_op_coalescing] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_into] = ACTIONS(3953), + [anon_sym_as] = ACTIONS(3953), + [anon_sym_is] = ACTIONS(3953), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -555029,6 +550919,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(3953), }, [3886] = { [sym_preproc_region] = STATE(3886), @@ -555040,63 +550931,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3886), [sym_preproc_define] = STATE(3886), [sym_preproc_undef] = STATE(3886), - [anon_sym_SEMI] = ACTIONS(6174), - [anon_sym_LBRACK] = ACTIONS(6174), - [anon_sym_COLON] = ACTIONS(6174), - [anon_sym_COMMA] = ACTIONS(6174), - [anon_sym_RBRACK] = ACTIONS(6174), - [anon_sym_LPAREN] = ACTIONS(6174), - [anon_sym_RPAREN] = ACTIONS(6174), - [anon_sym_RBRACE] = ACTIONS(6174), - [anon_sym_LT] = ACTIONS(6176), - [anon_sym_GT] = ACTIONS(6176), - [anon_sym_in] = ACTIONS(6176), - [anon_sym_where] = ACTIONS(6174), - [anon_sym_QMARK] = ACTIONS(6176), - [anon_sym_BANG] = ACTIONS(6176), - [anon_sym_PLUS_PLUS] = ACTIONS(6174), - [anon_sym_DASH_DASH] = ACTIONS(6174), - [anon_sym_PLUS] = ACTIONS(6176), - [anon_sym_DASH] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(6174), - [anon_sym_SLASH] = ACTIONS(6176), - [anon_sym_PERCENT] = ACTIONS(6174), - [anon_sym_CARET] = ACTIONS(6174), - [anon_sym_PIPE] = ACTIONS(6176), - [anon_sym_AMP] = ACTIONS(6176), - [anon_sym_LT_LT] = ACTIONS(6174), - [anon_sym_GT_GT] = ACTIONS(6176), - [anon_sym_GT_GT_GT] = ACTIONS(6174), - [anon_sym_EQ_EQ] = ACTIONS(6174), - [anon_sym_BANG_EQ] = ACTIONS(6174), - [anon_sym_GT_EQ] = ACTIONS(6174), - [anon_sym_LT_EQ] = ACTIONS(6174), - [anon_sym_DOT] = ACTIONS(6176), - [anon_sym_EQ_GT] = ACTIONS(6174), - [anon_sym_switch] = ACTIONS(6174), - [anon_sym_DOT_DOT] = ACTIONS(6174), - [anon_sym_and] = ACTIONS(6174), - [anon_sym_or] = ACTIONS(6176), - [anon_sym_AMP_AMP] = ACTIONS(6174), - [anon_sym_PIPE_PIPE] = ACTIONS(6174), - [sym_op_coalescing] = ACTIONS(6174), - [anon_sym_from] = ACTIONS(6174), - [anon_sym_into] = ACTIONS(6174), - [anon_sym_join] = ACTIONS(6174), - [anon_sym_on] = ACTIONS(6174), - [anon_sym_equals] = ACTIONS(6174), - [anon_sym_let] = ACTIONS(6174), - [anon_sym_orderby] = ACTIONS(6174), - [anon_sym_group] = ACTIONS(6174), - [anon_sym_by] = ACTIONS(6174), - [anon_sym_select] = ACTIONS(6174), - [anon_sym_as] = ACTIONS(6174), - [anon_sym_is] = ACTIONS(6174), - [anon_sym_DASH_GT] = ACTIONS(6174), - [anon_sym_with] = ACTIONS(6174), - [aux_sym_preproc_if_token3] = ACTIONS(6174), - [aux_sym_preproc_else_token1] = ACTIONS(6174), - [aux_sym_preproc_elif_token1] = ACTIONS(6174), + [anon_sym_SEMI] = ACTIONS(5703), + [anon_sym_LBRACK] = ACTIONS(5703), + [anon_sym_COLON] = ACTIONS(5703), + [anon_sym_COMMA] = ACTIONS(5703), + [anon_sym_RBRACK] = ACTIONS(5703), + [anon_sym_LPAREN] = ACTIONS(5703), + [anon_sym_RPAREN] = ACTIONS(5703), + [anon_sym_RBRACE] = ACTIONS(5703), + [anon_sym_LT] = ACTIONS(5705), + [anon_sym_GT] = ACTIONS(5705), + [anon_sym_in] = ACTIONS(5703), + [anon_sym_QMARK] = ACTIONS(5705), + [anon_sym_DOT] = ACTIONS(5705), + [anon_sym_EQ_GT] = ACTIONS(5703), + [anon_sym_STAR] = ACTIONS(5703), + [anon_sym_switch] = ACTIONS(5703), + [anon_sym_when] = ACTIONS(5703), + [anon_sym_DOT_DOT] = ACTIONS(5703), + [anon_sym_LT_EQ] = ACTIONS(5703), + [anon_sym_GT_EQ] = ACTIONS(5703), + [anon_sym_and] = ACTIONS(5703), + [anon_sym_or] = ACTIONS(5703), + [anon_sym_EQ_EQ] = ACTIONS(5703), + [anon_sym_BANG_EQ] = ACTIONS(5703), + [anon_sym_AMP_AMP] = ACTIONS(5703), + [anon_sym_PIPE_PIPE] = ACTIONS(5703), + [anon_sym_AMP] = ACTIONS(5705), + [sym_op_bitwise_or] = ACTIONS(5705), + [anon_sym_CARET] = ACTIONS(5703), + [sym_op_left_shift] = ACTIONS(5703), + [sym_op_right_shift] = ACTIONS(5705), + [sym_op_unsigned_right_shift] = ACTIONS(5703), + [anon_sym_PLUS] = ACTIONS(5705), + [anon_sym_DASH] = ACTIONS(5705), + [sym_op_divide] = ACTIONS(5705), + [sym_op_modulo] = ACTIONS(5703), + [sym_op_coalescing] = ACTIONS(5703), + [anon_sym_BANG] = ACTIONS(5705), + [anon_sym_PLUS_PLUS] = ACTIONS(5703), + [anon_sym_DASH_DASH] = ACTIONS(5703), + [anon_sym_on] = ACTIONS(5703), + [anon_sym_equals] = ACTIONS(5703), + [anon_sym_by] = ACTIONS(5703), + [anon_sym_as] = ACTIONS(5703), + [anon_sym_is] = ACTIONS(5703), + [anon_sym_DASH_GT] = ACTIONS(5703), + [anon_sym_with] = ACTIONS(5703), + [anon_sym_DQUOTE] = ACTIONS(5703), + [sym_string_literal_encoding] = ACTIONS(6609), + [aux_sym_preproc_if_token3] = ACTIONS(5703), + [aux_sym_preproc_else_token1] = ACTIONS(5703), + [aux_sym_preproc_elif_token1] = ACTIONS(5703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -555118,63 +551004,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3887), [sym_preproc_define] = STATE(3887), [sym_preproc_undef] = STATE(3887), - [anon_sym_SEMI] = ACTIONS(6178), - [anon_sym_LBRACK] = ACTIONS(6178), - [anon_sym_COLON] = ACTIONS(6178), - [anon_sym_COMMA] = ACTIONS(6178), - [anon_sym_RBRACK] = ACTIONS(6178), - [anon_sym_LPAREN] = ACTIONS(6178), - [anon_sym_RPAREN] = ACTIONS(6178), - [anon_sym_RBRACE] = ACTIONS(6178), - [anon_sym_LT] = ACTIONS(6180), - [anon_sym_GT] = ACTIONS(6180), - [anon_sym_in] = ACTIONS(6180), - [anon_sym_where] = ACTIONS(6178), - [anon_sym_QMARK] = ACTIONS(6180), - [anon_sym_BANG] = ACTIONS(6180), - [anon_sym_PLUS_PLUS] = ACTIONS(6178), - [anon_sym_DASH_DASH] = ACTIONS(6178), - [anon_sym_PLUS] = ACTIONS(6180), - [anon_sym_DASH] = ACTIONS(6180), - [anon_sym_STAR] = ACTIONS(6178), - [anon_sym_SLASH] = ACTIONS(6180), - [anon_sym_PERCENT] = ACTIONS(6178), - [anon_sym_CARET] = ACTIONS(6178), - [anon_sym_PIPE] = ACTIONS(6180), - [anon_sym_AMP] = ACTIONS(6180), - [anon_sym_LT_LT] = ACTIONS(6178), - [anon_sym_GT_GT] = ACTIONS(6180), - [anon_sym_GT_GT_GT] = ACTIONS(6178), - [anon_sym_EQ_EQ] = ACTIONS(6178), - [anon_sym_BANG_EQ] = ACTIONS(6178), - [anon_sym_GT_EQ] = ACTIONS(6178), - [anon_sym_LT_EQ] = ACTIONS(6178), - [anon_sym_DOT] = ACTIONS(6180), - [anon_sym_EQ_GT] = ACTIONS(6178), - [anon_sym_switch] = ACTIONS(6178), - [anon_sym_DOT_DOT] = ACTIONS(6178), - [anon_sym_and] = ACTIONS(6178), - [anon_sym_or] = ACTIONS(6180), - [anon_sym_AMP_AMP] = ACTIONS(6178), - [anon_sym_PIPE_PIPE] = ACTIONS(6178), - [sym_op_coalescing] = ACTIONS(6178), - [anon_sym_from] = ACTIONS(6178), - [anon_sym_into] = ACTIONS(6178), - [anon_sym_join] = ACTIONS(6178), - [anon_sym_on] = ACTIONS(6178), - [anon_sym_equals] = ACTIONS(6178), - [anon_sym_let] = ACTIONS(6178), - [anon_sym_orderby] = ACTIONS(6178), - [anon_sym_group] = ACTIONS(6178), - [anon_sym_by] = ACTIONS(6178), - [anon_sym_select] = ACTIONS(6178), - [anon_sym_as] = ACTIONS(6178), - [anon_sym_is] = ACTIONS(6178), - [anon_sym_DASH_GT] = ACTIONS(6178), - [anon_sym_with] = ACTIONS(6178), - [aux_sym_preproc_if_token3] = ACTIONS(6178), - [aux_sym_preproc_else_token1] = ACTIONS(6178), - [aux_sym_preproc_elif_token1] = ACTIONS(6178), + [anon_sym_EQ] = ACTIONS(4544), + [anon_sym_LBRACK] = ACTIONS(4542), + [anon_sym_COLON] = ACTIONS(4542), + [anon_sym_COMMA] = ACTIONS(4542), + [anon_sym_LPAREN] = ACTIONS(4542), + [anon_sym_LT] = ACTIONS(4544), + [anon_sym_GT] = ACTIONS(4544), + [anon_sym_QMARK] = ACTIONS(4544), + [anon_sym_DOT] = ACTIONS(4544), + [anon_sym_STAR] = ACTIONS(4544), + [anon_sym_switch] = ACTIONS(4542), + [anon_sym_DOT_DOT] = ACTIONS(4542), + [anon_sym_LT_EQ] = ACTIONS(4542), + [anon_sym_GT_EQ] = ACTIONS(4542), + [anon_sym_and] = ACTIONS(4542), + [anon_sym_or] = ACTIONS(4542), + [anon_sym_PLUS_EQ] = ACTIONS(4542), + [anon_sym_DASH_EQ] = ACTIONS(4542), + [anon_sym_STAR_EQ] = ACTIONS(4542), + [anon_sym_SLASH_EQ] = ACTIONS(4542), + [anon_sym_PERCENT_EQ] = ACTIONS(4542), + [anon_sym_AMP_EQ] = ACTIONS(4542), + [anon_sym_CARET_EQ] = ACTIONS(4542), + [anon_sym_PIPE_EQ] = ACTIONS(4542), + [anon_sym_LT_LT_EQ] = ACTIONS(4542), + [anon_sym_GT_GT_EQ] = ACTIONS(4542), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4542), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4542), + [anon_sym_EQ_EQ] = ACTIONS(4542), + [anon_sym_BANG_EQ] = ACTIONS(4542), + [anon_sym_AMP_AMP] = ACTIONS(4542), + [anon_sym_PIPE_PIPE] = ACTIONS(4542), + [anon_sym_AMP] = ACTIONS(4544), + [sym_op_bitwise_or] = ACTIONS(4544), + [anon_sym_CARET] = ACTIONS(4544), + [sym_op_left_shift] = ACTIONS(4544), + [sym_op_right_shift] = ACTIONS(4544), + [sym_op_unsigned_right_shift] = ACTIONS(4544), + [anon_sym_PLUS] = ACTIONS(4544), + [anon_sym_DASH] = ACTIONS(4544), + [sym_op_divide] = ACTIONS(4544), + [sym_op_modulo] = ACTIONS(4544), + [sym_op_coalescing] = ACTIONS(4544), + [anon_sym_BANG] = ACTIONS(4544), + [anon_sym_PLUS_PLUS] = ACTIONS(4542), + [anon_sym_DASH_DASH] = ACTIONS(4542), + [anon_sym_into] = ACTIONS(4542), + [anon_sym_as] = ACTIONS(4542), + [anon_sym_is] = ACTIONS(4542), + [anon_sym_DASH_GT] = ACTIONS(4542), + [anon_sym_with] = ACTIONS(4542), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -555185,29 +551065,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(4542), }, [3888] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), [sym_preproc_region] = STATE(3888), [sym_preproc_endregion] = STATE(3888), [sym_preproc_line] = STATE(3888), @@ -555217,42 +551077,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3888), [sym_preproc_define] = STATE(3888), [sym_preproc_undef] = STATE(3888), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_COLON] = ACTIONS(3982), + [anon_sym_COMMA] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym_LT] = ACTIONS(3980), + [anon_sym_GT] = ACTIONS(3980), + [anon_sym_QMARK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3980), + [anon_sym_switch] = ACTIONS(3982), + [anon_sym_DOT_DOT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_EQ] = ACTIONS(3982), + [anon_sym_and] = ACTIONS(3982), + [anon_sym_or] = ACTIONS(3982), + [anon_sym_PLUS_EQ] = ACTIONS(3982), + [anon_sym_DASH_EQ] = ACTIONS(3982), + [anon_sym_STAR_EQ] = ACTIONS(3982), + [anon_sym_SLASH_EQ] = ACTIONS(3982), + [anon_sym_PERCENT_EQ] = ACTIONS(3982), + [anon_sym_AMP_EQ] = ACTIONS(3982), + [anon_sym_CARET_EQ] = ACTIONS(3982), + [anon_sym_PIPE_EQ] = ACTIONS(3982), + [anon_sym_LT_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_GT_EQ] = ACTIONS(3982), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3982), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3982), + [anon_sym_EQ_EQ] = ACTIONS(3982), + [anon_sym_BANG_EQ] = ACTIONS(3982), + [anon_sym_AMP_AMP] = ACTIONS(3982), + [anon_sym_PIPE_PIPE] = ACTIONS(3982), + [anon_sym_AMP] = ACTIONS(3980), + [sym_op_bitwise_or] = ACTIONS(3980), + [anon_sym_CARET] = ACTIONS(3980), + [sym_op_left_shift] = ACTIONS(3980), + [sym_op_right_shift] = ACTIONS(3980), + [sym_op_unsigned_right_shift] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3980), + [sym_op_divide] = ACTIONS(3980), + [sym_op_modulo] = ACTIONS(3980), + [sym_op_coalescing] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3982), + [anon_sym_into] = ACTIONS(3982), + [anon_sym_as] = ACTIONS(3982), + [anon_sym_is] = ACTIONS(3982), + [anon_sym_DASH_GT] = ACTIONS(3982), + [anon_sym_with] = ACTIONS(3982), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -555263,29 +551138,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3982), }, [3889] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3889), [sym_preproc_endregion] = STATE(3889), [sym_preproc_line] = STATE(3889), @@ -555295,42 +551165,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3889), [sym_preproc_define] = STATE(3889), [sym_preproc_undef] = STATE(3889), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -555343,27 +551214,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3890] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), [sym_preproc_region] = STATE(3890), [sym_preproc_endregion] = STATE(3890), [sym_preproc_line] = STATE(3890), @@ -555373,42 +551223,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3890), [sym_preproc_define] = STATE(3890), [sym_preproc_undef] = STATE(3890), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6043), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6045), - [anon_sym_equals] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(6013), - [anon_sym_is] = ACTIONS(6015), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_interface] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_record] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -555421,27 +551287,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3891] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3891), [sym_preproc_endregion] = STATE(3891), [sym_preproc_line] = STATE(3891), @@ -555451,41 +551311,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3891), [sym_preproc_define] = STATE(3891), [sym_preproc_undef] = STATE(3891), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5784), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5788), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -555496,30 +551358,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4790), }, [3892] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3892), [sym_preproc_endregion] = STATE(3892), [sym_preproc_line] = STATE(3892), @@ -555529,42 +551384,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3892), [sym_preproc_define] = STATE(3892), [sym_preproc_undef] = STATE(3892), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -555577,27 +551433,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3893] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3893), [sym_preproc_endregion] = STATE(3893), [sym_preproc_line] = STATE(3893), @@ -555607,42 +551457,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3893), [sym_preproc_define] = STATE(3893), [sym_preproc_undef] = STATE(3893), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6182), - [anon_sym_RBRACK] = ACTIONS(6182), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6182), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5352), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -555655,6 +551506,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3894] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3894), [sym_preproc_endregion] = STATE(3894), [sym_preproc_line] = STATE(3894), @@ -555664,63 +551530,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3894), [sym_preproc_define] = STATE(3894), [sym_preproc_undef] = STATE(3894), - [anon_sym_SEMI] = ACTIONS(6184), - [anon_sym_LBRACK] = ACTIONS(6184), - [anon_sym_COLON] = ACTIONS(6184), - [anon_sym_COMMA] = ACTIONS(6184), - [anon_sym_RBRACK] = ACTIONS(6184), - [anon_sym_LPAREN] = ACTIONS(6184), - [anon_sym_RPAREN] = ACTIONS(6184), - [anon_sym_RBRACE] = ACTIONS(6184), - [anon_sym_LT] = ACTIONS(6186), - [anon_sym_GT] = ACTIONS(6186), - [anon_sym_in] = ACTIONS(6186), - [anon_sym_where] = ACTIONS(6184), - [anon_sym_QMARK] = ACTIONS(6186), - [anon_sym_BANG] = ACTIONS(6186), - [anon_sym_PLUS_PLUS] = ACTIONS(6184), - [anon_sym_DASH_DASH] = ACTIONS(6184), - [anon_sym_PLUS] = ACTIONS(6186), - [anon_sym_DASH] = ACTIONS(6186), - [anon_sym_STAR] = ACTIONS(6184), - [anon_sym_SLASH] = ACTIONS(6186), - [anon_sym_PERCENT] = ACTIONS(6184), - [anon_sym_CARET] = ACTIONS(6184), - [anon_sym_PIPE] = ACTIONS(6186), - [anon_sym_AMP] = ACTIONS(6186), - [anon_sym_LT_LT] = ACTIONS(6184), - [anon_sym_GT_GT] = ACTIONS(6186), - [anon_sym_GT_GT_GT] = ACTIONS(6184), - [anon_sym_EQ_EQ] = ACTIONS(6184), - [anon_sym_BANG_EQ] = ACTIONS(6184), - [anon_sym_GT_EQ] = ACTIONS(6184), - [anon_sym_LT_EQ] = ACTIONS(6184), - [anon_sym_DOT] = ACTIONS(6186), - [anon_sym_EQ_GT] = ACTIONS(6184), - [anon_sym_switch] = ACTIONS(6184), - [anon_sym_DOT_DOT] = ACTIONS(6184), - [anon_sym_and] = ACTIONS(6184), - [anon_sym_or] = ACTIONS(6186), - [anon_sym_AMP_AMP] = ACTIONS(6184), - [anon_sym_PIPE_PIPE] = ACTIONS(6184), - [sym_op_coalescing] = ACTIONS(6184), - [anon_sym_from] = ACTIONS(6184), - [anon_sym_into] = ACTIONS(6184), - [anon_sym_join] = ACTIONS(6184), - [anon_sym_on] = ACTIONS(6184), - [anon_sym_equals] = ACTIONS(6184), - [anon_sym_let] = ACTIONS(6184), - [anon_sym_orderby] = ACTIONS(6184), - [anon_sym_group] = ACTIONS(6184), - [anon_sym_by] = ACTIONS(6184), - [anon_sym_select] = ACTIONS(6184), - [anon_sym_as] = ACTIONS(6184), - [anon_sym_is] = ACTIONS(6184), - [anon_sym_DASH_GT] = ACTIONS(6184), - [anon_sym_with] = ACTIONS(6184), - [aux_sym_preproc_if_token3] = ACTIONS(6184), - [aux_sym_preproc_else_token1] = ACTIONS(6184), - [aux_sym_preproc_elif_token1] = ACTIONS(6184), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5308), + [anon_sym_RBRACE] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -555733,6 +551579,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3895] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3895), [sym_preproc_endregion] = STATE(3895), [sym_preproc_line] = STATE(3895), @@ -555742,63 +551603,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3895), [sym_preproc_define] = STATE(3895), [sym_preproc_undef] = STATE(3895), - [anon_sym_SEMI] = ACTIONS(6188), - [anon_sym_LBRACK] = ACTIONS(6188), - [anon_sym_COLON] = ACTIONS(6188), - [anon_sym_COMMA] = ACTIONS(6188), - [anon_sym_RBRACK] = ACTIONS(6188), - [anon_sym_LPAREN] = ACTIONS(6188), - [anon_sym_RPAREN] = ACTIONS(6188), - [anon_sym_RBRACE] = ACTIONS(6188), - [anon_sym_LT] = ACTIONS(6190), - [anon_sym_GT] = ACTIONS(6190), - [anon_sym_in] = ACTIONS(6190), - [anon_sym_where] = ACTIONS(6188), - [anon_sym_QMARK] = ACTIONS(6190), - [anon_sym_BANG] = ACTIONS(6190), - [anon_sym_PLUS_PLUS] = ACTIONS(6188), - [anon_sym_DASH_DASH] = ACTIONS(6188), - [anon_sym_PLUS] = ACTIONS(6190), - [anon_sym_DASH] = ACTIONS(6190), - [anon_sym_STAR] = ACTIONS(6188), - [anon_sym_SLASH] = ACTIONS(6190), - [anon_sym_PERCENT] = ACTIONS(6188), - [anon_sym_CARET] = ACTIONS(6188), - [anon_sym_PIPE] = ACTIONS(6190), - [anon_sym_AMP] = ACTIONS(6190), - [anon_sym_LT_LT] = ACTIONS(6188), - [anon_sym_GT_GT] = ACTIONS(6190), - [anon_sym_GT_GT_GT] = ACTIONS(6188), - [anon_sym_EQ_EQ] = ACTIONS(6188), - [anon_sym_BANG_EQ] = ACTIONS(6188), - [anon_sym_GT_EQ] = ACTIONS(6188), - [anon_sym_LT_EQ] = ACTIONS(6188), - [anon_sym_DOT] = ACTIONS(6190), - [anon_sym_EQ_GT] = ACTIONS(6188), - [anon_sym_switch] = ACTIONS(6188), - [anon_sym_DOT_DOT] = ACTIONS(6188), - [anon_sym_and] = ACTIONS(6188), - [anon_sym_or] = ACTIONS(6190), - [anon_sym_AMP_AMP] = ACTIONS(6188), - [anon_sym_PIPE_PIPE] = ACTIONS(6188), - [sym_op_coalescing] = ACTIONS(6188), - [anon_sym_from] = ACTIONS(6188), - [anon_sym_into] = ACTIONS(6188), - [anon_sym_join] = ACTIONS(6188), - [anon_sym_on] = ACTIONS(6188), - [anon_sym_equals] = ACTIONS(6188), - [anon_sym_let] = ACTIONS(6188), - [anon_sym_orderby] = ACTIONS(6188), - [anon_sym_group] = ACTIONS(6188), - [anon_sym_by] = ACTIONS(6188), - [anon_sym_select] = ACTIONS(6188), - [anon_sym_as] = ACTIONS(6188), - [anon_sym_is] = ACTIONS(6188), - [anon_sym_DASH_GT] = ACTIONS(6188), - [anon_sym_with] = ACTIONS(6188), - [aux_sym_preproc_if_token3] = ACTIONS(6188), - [aux_sym_preproc_else_token1] = ACTIONS(6188), - [aux_sym_preproc_elif_token1] = ACTIONS(6188), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6533), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6573), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6410), + [sym_op_right_shift] = ACTIONS(6412), + [sym_op_unsigned_right_shift] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(6575), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -555811,6 +551652,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3896] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3896), [sym_preproc_endregion] = STATE(3896), [sym_preproc_line] = STATE(3896), @@ -555820,63 +551676,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3896), [sym_preproc_define] = STATE(3896), [sym_preproc_undef] = STATE(3896), - [anon_sym_SEMI] = ACTIONS(6192), - [anon_sym_LBRACK] = ACTIONS(6192), - [anon_sym_COLON] = ACTIONS(6192), - [anon_sym_COMMA] = ACTIONS(6192), - [anon_sym_RBRACK] = ACTIONS(6192), - [anon_sym_LPAREN] = ACTIONS(6192), - [anon_sym_RPAREN] = ACTIONS(6192), - [anon_sym_RBRACE] = ACTIONS(6192), - [anon_sym_LT] = ACTIONS(6194), - [anon_sym_GT] = ACTIONS(6194), - [anon_sym_in] = ACTIONS(6194), - [anon_sym_where] = ACTIONS(6192), - [anon_sym_QMARK] = ACTIONS(6194), - [anon_sym_BANG] = ACTIONS(6194), - [anon_sym_PLUS_PLUS] = ACTIONS(6192), - [anon_sym_DASH_DASH] = ACTIONS(6192), - [anon_sym_PLUS] = ACTIONS(6194), - [anon_sym_DASH] = ACTIONS(6194), - [anon_sym_STAR] = ACTIONS(6192), - [anon_sym_SLASH] = ACTIONS(6194), - [anon_sym_PERCENT] = ACTIONS(6192), - [anon_sym_CARET] = ACTIONS(6192), - [anon_sym_PIPE] = ACTIONS(6194), - [anon_sym_AMP] = ACTIONS(6194), - [anon_sym_LT_LT] = ACTIONS(6192), - [anon_sym_GT_GT] = ACTIONS(6194), - [anon_sym_GT_GT_GT] = ACTIONS(6192), - [anon_sym_EQ_EQ] = ACTIONS(6192), - [anon_sym_BANG_EQ] = ACTIONS(6192), - [anon_sym_GT_EQ] = ACTIONS(6192), - [anon_sym_LT_EQ] = ACTIONS(6192), - [anon_sym_DOT] = ACTIONS(6194), - [anon_sym_EQ_GT] = ACTIONS(6192), - [anon_sym_switch] = ACTIONS(6192), - [anon_sym_DOT_DOT] = ACTIONS(6192), - [anon_sym_and] = ACTIONS(6192), - [anon_sym_or] = ACTIONS(6194), - [anon_sym_AMP_AMP] = ACTIONS(6192), - [anon_sym_PIPE_PIPE] = ACTIONS(6192), - [sym_op_coalescing] = ACTIONS(6192), - [anon_sym_from] = ACTIONS(6192), - [anon_sym_into] = ACTIONS(6192), - [anon_sym_join] = ACTIONS(6192), - [anon_sym_on] = ACTIONS(6192), - [anon_sym_equals] = ACTIONS(6192), - [anon_sym_let] = ACTIONS(6192), - [anon_sym_orderby] = ACTIONS(6192), - [anon_sym_group] = ACTIONS(6192), - [anon_sym_by] = ACTIONS(6192), - [anon_sym_select] = ACTIONS(6192), - [anon_sym_as] = ACTIONS(6192), - [anon_sym_is] = ACTIONS(6192), - [anon_sym_DASH_GT] = ACTIONS(6192), - [anon_sym_with] = ACTIONS(6192), - [aux_sym_preproc_if_token3] = ACTIONS(6192), - [aux_sym_preproc_else_token1] = ACTIONS(6192), - [aux_sym_preproc_elif_token1] = ACTIONS(6192), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -555889,27 +551725,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3897] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3897), [sym_preproc_endregion] = STATE(3897), [sym_preproc_line] = STATE(3897), @@ -555919,42 +551749,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3897), [sym_preproc_define] = STATE(3897), [sym_preproc_undef] = STATE(3897), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6591), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5328), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6595), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(6605), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6607), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -555976,63 +551807,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3898), [sym_preproc_define] = STATE(3898), [sym_preproc_undef] = STATE(3898), - [anon_sym_SEMI] = ACTIONS(6196), - [anon_sym_LBRACK] = ACTIONS(6196), - [anon_sym_COLON] = ACTIONS(6196), - [anon_sym_COMMA] = ACTIONS(6196), - [anon_sym_RBRACK] = ACTIONS(6196), - [anon_sym_LPAREN] = ACTIONS(6196), - [anon_sym_RPAREN] = ACTIONS(6196), - [anon_sym_RBRACE] = ACTIONS(6196), - [anon_sym_LT] = ACTIONS(6198), - [anon_sym_GT] = ACTIONS(6198), - [anon_sym_in] = ACTIONS(6198), - [anon_sym_where] = ACTIONS(6196), - [anon_sym_QMARK] = ACTIONS(6198), - [anon_sym_BANG] = ACTIONS(6198), - [anon_sym_PLUS_PLUS] = ACTIONS(6196), - [anon_sym_DASH_DASH] = ACTIONS(6196), - [anon_sym_PLUS] = ACTIONS(6198), - [anon_sym_DASH] = ACTIONS(6198), - [anon_sym_STAR] = ACTIONS(6196), - [anon_sym_SLASH] = ACTIONS(6198), - [anon_sym_PERCENT] = ACTIONS(6196), - [anon_sym_CARET] = ACTIONS(6196), - [anon_sym_PIPE] = ACTIONS(6198), - [anon_sym_AMP] = ACTIONS(6198), - [anon_sym_LT_LT] = ACTIONS(6196), - [anon_sym_GT_GT] = ACTIONS(6198), - [anon_sym_GT_GT_GT] = ACTIONS(6196), - [anon_sym_EQ_EQ] = ACTIONS(6196), - [anon_sym_BANG_EQ] = ACTIONS(6196), - [anon_sym_GT_EQ] = ACTIONS(6196), - [anon_sym_LT_EQ] = ACTIONS(6196), - [anon_sym_DOT] = ACTIONS(6198), - [anon_sym_EQ_GT] = ACTIONS(6196), - [anon_sym_switch] = ACTIONS(6196), - [anon_sym_DOT_DOT] = ACTIONS(6196), - [anon_sym_and] = ACTIONS(6196), - [anon_sym_or] = ACTIONS(6198), - [anon_sym_AMP_AMP] = ACTIONS(6196), - [anon_sym_PIPE_PIPE] = ACTIONS(6196), - [sym_op_coalescing] = ACTIONS(6196), - [anon_sym_from] = ACTIONS(6196), - [anon_sym_into] = ACTIONS(6196), - [anon_sym_join] = ACTIONS(6196), - [anon_sym_on] = ACTIONS(6196), - [anon_sym_equals] = ACTIONS(6196), - [anon_sym_let] = ACTIONS(6196), - [anon_sym_orderby] = ACTIONS(6196), - [anon_sym_group] = ACTIONS(6196), - [anon_sym_by] = ACTIONS(6196), - [anon_sym_select] = ACTIONS(6196), - [anon_sym_as] = ACTIONS(6196), - [anon_sym_is] = ACTIONS(6196), - [anon_sym_DASH_GT] = ACTIONS(6196), - [anon_sym_with] = ACTIONS(6196), - [aux_sym_preproc_if_token3] = ACTIONS(6196), - [aux_sym_preproc_else_token1] = ACTIONS(6196), - [aux_sym_preproc_elif_token1] = ACTIONS(6196), + [anon_sym_SEMI] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_COLON] = ACTIONS(4393), + [anon_sym_COMMA] = ACTIONS(4393), + [anon_sym_RBRACK] = ACTIONS(4393), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym_RPAREN] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4393), + [anon_sym_RBRACE] = ACTIONS(4393), + [anon_sym_LT] = ACTIONS(4391), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_in] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_EQ_GT] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_switch] = ACTIONS(4393), + [anon_sym_when] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4393), + [anon_sym_LT_EQ] = ACTIONS(4393), + [anon_sym_GT_EQ] = ACTIONS(4393), + [anon_sym_and] = ACTIONS(4393), + [anon_sym_or] = ACTIONS(4393), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_AMP_AMP] = ACTIONS(4393), + [anon_sym_PIPE_PIPE] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(4391), + [sym_op_bitwise_or] = ACTIONS(4391), + [anon_sym_CARET] = ACTIONS(4393), + [sym_op_left_shift] = ACTIONS(4393), + [sym_op_right_shift] = ACTIONS(4391), + [sym_op_unsigned_right_shift] = ACTIONS(4393), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [sym_op_divide] = ACTIONS(4391), + [sym_op_modulo] = ACTIONS(4393), + [sym_op_coalescing] = ACTIONS(4393), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4393), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_into] = ACTIONS(4393), + [anon_sym_on] = ACTIONS(4393), + [anon_sym_equals] = ACTIONS(4393), + [anon_sym_by] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_DASH_GT] = ACTIONS(4393), + [anon_sym_with] = ACTIONS(4393), + [aux_sym_preproc_if_token3] = ACTIONS(4393), + [aux_sym_preproc_else_token1] = ACTIONS(4393), + [aux_sym_preproc_elif_token1] = ACTIONS(4393), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -556054,63 +551880,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3899), [sym_preproc_define] = STATE(3899), [sym_preproc_undef] = STATE(3899), - [anon_sym_SEMI] = ACTIONS(6200), - [anon_sym_LBRACK] = ACTIONS(6200), - [anon_sym_COLON] = ACTIONS(6200), - [anon_sym_COMMA] = ACTIONS(6200), - [anon_sym_RBRACK] = ACTIONS(6200), - [anon_sym_LPAREN] = ACTIONS(6200), - [anon_sym_RPAREN] = ACTIONS(6200), - [anon_sym_RBRACE] = ACTIONS(6200), - [anon_sym_LT] = ACTIONS(6202), - [anon_sym_GT] = ACTIONS(6202), - [anon_sym_in] = ACTIONS(6202), - [anon_sym_where] = ACTIONS(6200), - [anon_sym_QMARK] = ACTIONS(6202), - [anon_sym_BANG] = ACTIONS(6202), - [anon_sym_PLUS_PLUS] = ACTIONS(6200), - [anon_sym_DASH_DASH] = ACTIONS(6200), - [anon_sym_PLUS] = ACTIONS(6202), - [anon_sym_DASH] = ACTIONS(6202), - [anon_sym_STAR] = ACTIONS(6200), - [anon_sym_SLASH] = ACTIONS(6202), - [anon_sym_PERCENT] = ACTIONS(6200), - [anon_sym_CARET] = ACTIONS(6200), - [anon_sym_PIPE] = ACTIONS(6202), - [anon_sym_AMP] = ACTIONS(6202), - [anon_sym_LT_LT] = ACTIONS(6200), - [anon_sym_GT_GT] = ACTIONS(6202), - [anon_sym_GT_GT_GT] = ACTIONS(6200), - [anon_sym_EQ_EQ] = ACTIONS(6200), - [anon_sym_BANG_EQ] = ACTIONS(6200), - [anon_sym_GT_EQ] = ACTIONS(6200), - [anon_sym_LT_EQ] = ACTIONS(6200), - [anon_sym_DOT] = ACTIONS(6202), - [anon_sym_EQ_GT] = ACTIONS(6200), - [anon_sym_switch] = ACTIONS(6200), - [anon_sym_DOT_DOT] = ACTIONS(6200), - [anon_sym_and] = ACTIONS(6200), - [anon_sym_or] = ACTIONS(6202), - [anon_sym_AMP_AMP] = ACTIONS(6200), - [anon_sym_PIPE_PIPE] = ACTIONS(6200), - [sym_op_coalescing] = ACTIONS(6200), - [anon_sym_from] = ACTIONS(6200), - [anon_sym_into] = ACTIONS(6200), - [anon_sym_join] = ACTIONS(6200), - [anon_sym_on] = ACTIONS(6200), - [anon_sym_equals] = ACTIONS(6200), - [anon_sym_let] = ACTIONS(6200), - [anon_sym_orderby] = ACTIONS(6200), - [anon_sym_group] = ACTIONS(6200), - [anon_sym_by] = ACTIONS(6200), - [anon_sym_select] = ACTIONS(6200), - [anon_sym_as] = ACTIONS(6200), - [anon_sym_is] = ACTIONS(6200), - [anon_sym_DASH_GT] = ACTIONS(6200), - [anon_sym_with] = ACTIONS(6200), - [aux_sym_preproc_if_token3] = ACTIONS(6200), - [aux_sym_preproc_else_token1] = ACTIONS(6200), - [aux_sym_preproc_elif_token1] = ACTIONS(6200), + [anon_sym_SEMI] = ACTIONS(5703), + [anon_sym_LBRACK] = ACTIONS(5703), + [anon_sym_COLON] = ACTIONS(5703), + [anon_sym_COMMA] = ACTIONS(5703), + [anon_sym_RBRACK] = ACTIONS(5703), + [anon_sym_LPAREN] = ACTIONS(5703), + [anon_sym_RPAREN] = ACTIONS(5703), + [anon_sym_RBRACE] = ACTIONS(5703), + [anon_sym_LT] = ACTIONS(5705), + [anon_sym_GT] = ACTIONS(5705), + [anon_sym_in] = ACTIONS(5705), + [anon_sym_QMARK] = ACTIONS(5705), + [anon_sym_DOT] = ACTIONS(5705), + [anon_sym_EQ_GT] = ACTIONS(5703), + [anon_sym_STAR] = ACTIONS(5703), + [anon_sym_switch] = ACTIONS(5703), + [anon_sym_when] = ACTIONS(5703), + [anon_sym_DOT_DOT] = ACTIONS(5703), + [anon_sym_LT_EQ] = ACTIONS(5703), + [anon_sym_GT_EQ] = ACTIONS(5703), + [anon_sym_and] = ACTIONS(5703), + [anon_sym_or] = ACTIONS(5703), + [anon_sym_EQ_EQ] = ACTIONS(5703), + [anon_sym_BANG_EQ] = ACTIONS(5703), + [anon_sym_AMP_AMP] = ACTIONS(5703), + [anon_sym_PIPE_PIPE] = ACTIONS(5703), + [anon_sym_AMP] = ACTIONS(5705), + [sym_op_bitwise_or] = ACTIONS(5705), + [anon_sym_CARET] = ACTIONS(5703), + [sym_op_left_shift] = ACTIONS(5703), + [sym_op_right_shift] = ACTIONS(5705), + [sym_op_unsigned_right_shift] = ACTIONS(5703), + [anon_sym_PLUS] = ACTIONS(5705), + [anon_sym_DASH] = ACTIONS(5705), + [sym_op_divide] = ACTIONS(5705), + [sym_op_modulo] = ACTIONS(5703), + [sym_op_coalescing] = ACTIONS(5703), + [anon_sym_BANG] = ACTIONS(5705), + [anon_sym_PLUS_PLUS] = ACTIONS(5703), + [anon_sym_DASH_DASH] = ACTIONS(5703), + [anon_sym_into] = ACTIONS(5703), + [anon_sym_on] = ACTIONS(5703), + [anon_sym_equals] = ACTIONS(5703), + [anon_sym_by] = ACTIONS(5703), + [anon_sym_as] = ACTIONS(5703), + [anon_sym_is] = ACTIONS(5703), + [anon_sym_DASH_GT] = ACTIONS(5703), + [anon_sym_with] = ACTIONS(5703), + [sym_string_literal_encoding] = ACTIONS(6611), + [aux_sym_preproc_if_token3] = ACTIONS(5703), + [aux_sym_preproc_else_token1] = ACTIONS(5703), + [aux_sym_preproc_elif_token1] = ACTIONS(5703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -556123,27 +551944,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3900] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3900), [sym_preproc_endregion] = STATE(3900), [sym_preproc_line] = STATE(3900), @@ -556153,44 +551968,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3900), [sym_preproc_define] = STATE(3900), [sym_preproc_undef] = STATE(3900), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_equals] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(1365), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), @@ -556201,6 +552017,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3901] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3901), [sym_preproc_endregion] = STATE(3901), [sym_preproc_line] = STATE(3901), @@ -556210,63 +552041,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3901), [sym_preproc_define] = STATE(3901), [sym_preproc_undef] = STATE(3901), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym_LBRACK] = ACTIONS(3980), - [anon_sym_COLON] = ACTIONS(3980), - [anon_sym_COMMA] = ACTIONS(3980), - [anon_sym_RBRACK] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym_RPAREN] = ACTIONS(3980), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_RBRACE] = ACTIONS(3980), - [anon_sym_LT] = ACTIONS(3978), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_in] = ACTIONS(3980), - [anon_sym_where] = ACTIONS(3980), - [anon_sym_QMARK] = ACTIONS(3978), - [anon_sym_BANG] = ACTIONS(3978), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_SLASH] = ACTIONS(3978), - [anon_sym_PERCENT] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3978), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_LT_LT] = ACTIONS(3980), - [anon_sym_GT_GT] = ACTIONS(3978), - [anon_sym_GT_GT_GT] = ACTIONS(3980), - [anon_sym_EQ_EQ] = ACTIONS(3980), - [anon_sym_BANG_EQ] = ACTIONS(3980), - [anon_sym_GT_EQ] = ACTIONS(3980), - [anon_sym_LT_EQ] = ACTIONS(3980), - [anon_sym_DOT] = ACTIONS(3978), - [anon_sym_EQ_GT] = ACTIONS(3980), - [anon_sym_switch] = ACTIONS(3980), - [anon_sym_DOT_DOT] = ACTIONS(3980), - [anon_sym_and] = ACTIONS(3980), - [anon_sym_or] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_PIPE_PIPE] = ACTIONS(3980), - [sym_op_coalescing] = ACTIONS(3980), - [anon_sym_from] = ACTIONS(3980), - [anon_sym_join] = ACTIONS(3980), - [anon_sym_on] = ACTIONS(3980), - [anon_sym_equals] = ACTIONS(3980), - [anon_sym_let] = ACTIONS(3980), - [anon_sym_orderby] = ACTIONS(3980), - [anon_sym_group] = ACTIONS(3980), - [anon_sym_by] = ACTIONS(3980), - [anon_sym_select] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(3980), - [anon_sym_is] = ACTIONS(3980), - [anon_sym_DASH_GT] = ACTIONS(3980), - [anon_sym_with] = ACTIONS(3980), - [aux_sym_preproc_if_token3] = ACTIONS(3980), - [aux_sym_preproc_else_token1] = ACTIONS(3980), - [aux_sym_preproc_elif_token1] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_equals] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -556288,63 +552099,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3902), [sym_preproc_define] = STATE(3902), [sym_preproc_undef] = STATE(3902), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym_LBRACK] = ACTIONS(3968), - [anon_sym_COLON] = ACTIONS(3968), - [anon_sym_COMMA] = ACTIONS(3968), - [anon_sym_RBRACK] = ACTIONS(3968), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_RPAREN] = ACTIONS(3968), - [anon_sym_LBRACE] = ACTIONS(3968), - [anon_sym_RBRACE] = ACTIONS(3968), - [anon_sym_LT] = ACTIONS(3966), - [anon_sym_GT] = ACTIONS(3966), - [anon_sym_in] = ACTIONS(3968), - [anon_sym_where] = ACTIONS(3968), - [anon_sym_QMARK] = ACTIONS(3966), - [anon_sym_BANG] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_SLASH] = ACTIONS(3966), - [anon_sym_PERCENT] = ACTIONS(3968), - [anon_sym_CARET] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(3966), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_LT_LT] = ACTIONS(3968), - [anon_sym_GT_GT] = ACTIONS(3966), - [anon_sym_GT_GT_GT] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3968), - [anon_sym_BANG_EQ] = ACTIONS(3968), - [anon_sym_GT_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3968), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_EQ_GT] = ACTIONS(3968), - [anon_sym_switch] = ACTIONS(3968), - [anon_sym_DOT_DOT] = ACTIONS(3968), - [anon_sym_and] = ACTIONS(3968), - [anon_sym_or] = ACTIONS(3966), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_PIPE_PIPE] = ACTIONS(3968), - [sym_op_coalescing] = ACTIONS(3968), - [anon_sym_from] = ACTIONS(3968), - [anon_sym_join] = ACTIONS(3968), - [anon_sym_on] = ACTIONS(3968), - [anon_sym_equals] = ACTIONS(3968), - [anon_sym_let] = ACTIONS(3968), - [anon_sym_orderby] = ACTIONS(3968), - [anon_sym_group] = ACTIONS(3968), - [anon_sym_by] = ACTIONS(3968), - [anon_sym_select] = ACTIONS(3968), - [anon_sym_as] = ACTIONS(3968), - [anon_sym_is] = ACTIONS(3968), - [anon_sym_DASH_GT] = ACTIONS(3968), - [anon_sym_with] = ACTIONS(3968), - [aux_sym_preproc_if_token3] = ACTIONS(3968), - [aux_sym_preproc_else_token1] = ACTIONS(3968), - [aux_sym_preproc_elif_token1] = ACTIONS(3968), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_COLON] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_RBRACK] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_RPAREN] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4411), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_QMARK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_EQ_GT] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_switch] = ACTIONS(4411), + [anon_sym_when] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_and] = ACTIONS(4411), + [anon_sym_or] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4409), + [sym_op_bitwise_or] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4411), + [sym_op_left_shift] = ACTIONS(4411), + [sym_op_right_shift] = ACTIONS(4409), + [sym_op_unsigned_right_shift] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [sym_op_divide] = ACTIONS(4409), + [sym_op_modulo] = ACTIONS(4411), + [sym_op_coalescing] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_into] = ACTIONS(4411), + [anon_sym_on] = ACTIONS(4411), + [anon_sym_equals] = ACTIONS(4411), + [anon_sym_by] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_DASH_GT] = ACTIONS(4411), + [anon_sym_with] = ACTIONS(4411), + [aux_sym_preproc_if_token3] = ACTIONS(4411), + [aux_sym_preproc_else_token1] = ACTIONS(4411), + [aux_sym_preproc_elif_token1] = ACTIONS(4411), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -556357,27 +552163,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3903] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3903), [sym_preproc_endregion] = STATE(3903), [sym_preproc_line] = STATE(3903), @@ -556387,42 +552187,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3903), [sym_preproc_define] = STATE(3903), [sym_preproc_undef] = STATE(3903), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4778), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6021), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6023), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_equals] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -556435,27 +552236,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3904] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3904), [sym_preproc_endregion] = STATE(3904), [sym_preproc_line] = STATE(3904), @@ -556465,42 +552260,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3904), [sym_preproc_define] = STATE(3904), [sym_preproc_undef] = STATE(3904), - [anon_sym_SEMI] = ACTIONS(4752), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4752), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_equals] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -556513,27 +552309,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3905] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), [sym_preproc_region] = STATE(3905), [sym_preproc_endregion] = STATE(3905), [sym_preproc_line] = STATE(3905), @@ -556543,42 +552318,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3905), [sym_preproc_define] = STATE(3905), [sym_preproc_undef] = STATE(3905), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6049), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4015), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_COLON] = ACTIONS(4015), + [anon_sym_COMMA] = ACTIONS(4015), + [anon_sym_RBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4015), + [anon_sym_RPAREN] = ACTIONS(4015), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4008), + [anon_sym_GT] = ACTIONS(4008), + [anon_sym_in] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4008), + [anon_sym_EQ_GT] = ACTIONS(4015), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_switch] = ACTIONS(4015), + [anon_sym_when] = ACTIONS(4015), + [anon_sym_DOT_DOT] = ACTIONS(4015), + [anon_sym_LT_EQ] = ACTIONS(4015), + [anon_sym_GT_EQ] = ACTIONS(4015), + [anon_sym_and] = ACTIONS(4015), + [anon_sym_or] = ACTIONS(4015), + [anon_sym_EQ_EQ] = ACTIONS(4015), + [anon_sym_BANG_EQ] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4008), + [sym_op_bitwise_or] = ACTIONS(4008), + [anon_sym_CARET] = ACTIONS(4015), + [sym_op_left_shift] = ACTIONS(4015), + [sym_op_right_shift] = ACTIONS(4008), + [sym_op_unsigned_right_shift] = ACTIONS(4015), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4008), + [sym_op_divide] = ACTIONS(4008), + [sym_op_modulo] = ACTIONS(4015), + [sym_op_coalescing] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(4008), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_into] = ACTIONS(4015), + [anon_sym_on] = ACTIONS(4015), + [anon_sym_equals] = ACTIONS(4015), + [anon_sym_by] = ACTIONS(4015), + [anon_sym_as] = ACTIONS(4015), + [anon_sym_is] = ACTIONS(4015), + [anon_sym_DASH_GT] = ACTIONS(4015), + [anon_sym_with] = ACTIONS(4015), + [aux_sym_preproc_if_token3] = ACTIONS(4015), + [aux_sym_preproc_else_token1] = ACTIONS(4015), + [aux_sym_preproc_elif_token1] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -556591,27 +552382,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3906] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3906), [sym_preproc_endregion] = STATE(3906), [sym_preproc_line] = STATE(3906), @@ -556621,42 +552406,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3906), [sym_preproc_define] = STATE(3906), [sym_preproc_undef] = STATE(3906), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4786), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6021), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6023), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6613), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6615), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_on] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -556669,7 +552455,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3907] = { - [sym_modifier] = STATE(4327), [sym_preproc_region] = STATE(3907), [sym_preproc_endregion] = STATE(3907), [sym_preproc_line] = STATE(3907), @@ -556679,62 +552464,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3907), [sym_preproc_define] = STATE(3907), [sym_preproc_undef] = STATE(3907), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3907), - [sym__identifier_token] = ACTIONS(6204), - [anon_sym_extern] = ACTIONS(6206), - [anon_sym_alias] = ACTIONS(6204), - [anon_sym_global] = ACTIONS(6204), - [anon_sym_unsafe] = ACTIONS(6206), - [anon_sym_static] = ACTIONS(6206), - [anon_sym_LPAREN] = ACTIONS(6209), - [anon_sym_event] = ACTIONS(6204), - [anon_sym_class] = ACTIONS(6204), - [anon_sym_ref] = ACTIONS(6204), - [anon_sym_struct] = ACTIONS(6204), - [anon_sym_enum] = ACTIONS(6204), - [anon_sym_interface] = ACTIONS(6204), - [anon_sym_delegate] = ACTIONS(6204), - [anon_sym_record] = ACTIONS(6204), - [anon_sym_public] = ACTIONS(6206), - [anon_sym_private] = ACTIONS(6206), - [anon_sym_readonly] = ACTIONS(6206), - [anon_sym_abstract] = ACTIONS(6206), - [anon_sym_async] = ACTIONS(6206), - [anon_sym_const] = ACTIONS(6206), - [anon_sym_file] = ACTIONS(6206), - [anon_sym_fixed] = ACTIONS(6206), - [anon_sym_internal] = ACTIONS(6206), - [anon_sym_new] = ACTIONS(6206), - [anon_sym_override] = ACTIONS(6206), - [anon_sym_partial] = ACTIONS(6206), - [anon_sym_protected] = ACTIONS(6206), - [anon_sym_required] = ACTIONS(6206), - [anon_sym_sealed] = ACTIONS(6206), - [anon_sym_virtual] = ACTIONS(6206), - [anon_sym_volatile] = ACTIONS(6206), - [anon_sym_where] = ACTIONS(6204), - [anon_sym_notnull] = ACTIONS(6204), - [anon_sym_unmanaged] = ACTIONS(6204), - [anon_sym_implicit] = ACTIONS(6204), - [anon_sym_explicit] = ACTIONS(6204), - [anon_sym_scoped] = ACTIONS(6204), - [anon_sym_var] = ACTIONS(6204), - [sym_predefined_type] = ACTIONS(6204), - [anon_sym_yield] = ACTIONS(6204), - [anon_sym_when] = ACTIONS(6204), - [anon_sym_from] = ACTIONS(6204), - [anon_sym_into] = ACTIONS(6204), - [anon_sym_join] = ACTIONS(6204), - [anon_sym_on] = ACTIONS(6204), - [anon_sym_equals] = ACTIONS(6204), - [anon_sym_let] = ACTIONS(6204), - [anon_sym_orderby] = ACTIONS(6204), - [anon_sym_ascending] = ACTIONS(6204), - [anon_sym_descending] = ACTIONS(6204), - [anon_sym_group] = ACTIONS(6204), - [anon_sym_by] = ACTIONS(6204), - [anon_sym_select] = ACTIONS(6204), - [sym_grit_metavariable] = ACTIONS(6209), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(4435), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_RBRACK] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_RPAREN] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4435), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_QMARK] = ACTIONS(4433), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_EQ_GT] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [anon_sym_switch] = ACTIONS(4435), + [anon_sym_when] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_and] = ACTIONS(4435), + [anon_sym_or] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_AMP] = ACTIONS(4433), + [sym_op_bitwise_or] = ACTIONS(4433), + [anon_sym_CARET] = ACTIONS(4435), + [sym_op_left_shift] = ACTIONS(4435), + [sym_op_right_shift] = ACTIONS(4433), + [sym_op_unsigned_right_shift] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [sym_op_divide] = ACTIONS(4433), + [sym_op_modulo] = ACTIONS(4435), + [sym_op_coalescing] = ACTIONS(4435), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_into] = ACTIONS(4435), + [anon_sym_on] = ACTIONS(4435), + [anon_sym_equals] = ACTIONS(4435), + [anon_sym_by] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_DASH_GT] = ACTIONS(4435), + [anon_sym_with] = 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), @@ -556747,6 +552528,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3908] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3908), [sym_preproc_endregion] = STATE(3908), [sym_preproc_line] = STATE(3908), @@ -556756,63 +552552,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3908), [sym_preproc_define] = STATE(3908), [sym_preproc_undef] = STATE(3908), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_COLON] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_RPAREN] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_where] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3201), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_GT_EQ] = ACTIONS(3201), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_op_coalescing] = 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_group] = ACTIONS(3201), - [anon_sym_by] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3201), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_with] = ACTIONS(3201), - [aux_sym_preproc_if_token3] = ACTIONS(3201), - [aux_sym_preproc_else_token1] = ACTIONS(3201), - [aux_sym_preproc_elif_token1] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6613), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5304), + [anon_sym_or] = ACTIONS(5304), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6615), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_on] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -556825,27 +552601,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3909] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(3909), [sym_preproc_endregion] = STATE(3909), [sym_preproc_line] = STATE(3909), @@ -556855,54 +552610,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3909), [sym_preproc_define] = STATE(3909), [sym_preproc_undef] = STATE(3909), - [aux_sym_array_rank_specifier_repeat1] = STATE(7345), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6211), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(3959), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3961), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_GT] = ACTIONS(3959), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_DOT] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3959), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3961), + [anon_sym_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_EQ] = ACTIONS(3961), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_PLUS_EQ] = ACTIONS(3961), + [anon_sym_DASH_EQ] = ACTIONS(3961), + [anon_sym_STAR_EQ] = ACTIONS(3961), + [anon_sym_SLASH_EQ] = ACTIONS(3961), + [anon_sym_PERCENT_EQ] = ACTIONS(3961), + [anon_sym_AMP_EQ] = ACTIONS(3961), + [anon_sym_CARET_EQ] = ACTIONS(3961), + [anon_sym_PIPE_EQ] = ACTIONS(3961), + [anon_sym_LT_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_GT_EQ] = ACTIONS(3961), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3961), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3961), + [anon_sym_EQ_EQ] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [sym_op_bitwise_or] = ACTIONS(3959), + [anon_sym_CARET] = ACTIONS(3959), + [sym_op_left_shift] = ACTIONS(3959), + [sym_op_right_shift] = ACTIONS(3959), + [sym_op_unsigned_right_shift] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3959), + [sym_op_divide] = ACTIONS(3959), + [sym_op_modulo] = ACTIONS(3959), + [sym_op_coalescing] = ACTIONS(3959), + [anon_sym_BANG] = ACTIONS(3959), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3961), }, [3910] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3910), [sym_preproc_endregion] = STATE(3910), [sym_preproc_line] = STATE(3910), @@ -556912,63 +552698,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3910), [sym_preproc_define] = STATE(3910), [sym_preproc_undef] = STATE(3910), - [anon_sym_SEMI] = ACTIONS(4466), - [anon_sym_LBRACK] = ACTIONS(4466), - [anon_sym_COLON] = ACTIONS(4466), - [anon_sym_COMMA] = ACTIONS(4466), - [anon_sym_RBRACK] = ACTIONS(4466), - [anon_sym_LPAREN] = ACTIONS(4466), - [anon_sym_RPAREN] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4466), - [anon_sym_RBRACE] = ACTIONS(4466), - [anon_sym_LT] = ACTIONS(4464), - [anon_sym_GT] = ACTIONS(4464), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_QMARK] = ACTIONS(4464), - [anon_sym_BANG] = ACTIONS(4464), - [anon_sym_PLUS_PLUS] = ACTIONS(4466), - [anon_sym_DASH_DASH] = ACTIONS(4466), - [anon_sym_PLUS] = ACTIONS(4464), - [anon_sym_DASH] = ACTIONS(4464), - [anon_sym_STAR] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4464), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_PIPE] = ACTIONS(4464), - [anon_sym_AMP] = ACTIONS(4464), - [anon_sym_LT_LT] = ACTIONS(4466), - [anon_sym_GT_GT] = ACTIONS(4464), - [anon_sym_GT_GT_GT] = ACTIONS(4466), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_GT_EQ] = ACTIONS(4466), - [anon_sym_LT_EQ] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4464), - [anon_sym_EQ_GT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4466), - [anon_sym_and] = ACTIONS(4466), - [anon_sym_or] = ACTIONS(4464), - [anon_sym_AMP_AMP] = ACTIONS(4466), - [anon_sym_PIPE_PIPE] = ACTIONS(4466), - [sym_op_coalescing] = ACTIONS(4466), - [anon_sym_from] = ACTIONS(4466), - [anon_sym_join] = ACTIONS(4466), - [anon_sym_on] = ACTIONS(4466), - [anon_sym_equals] = ACTIONS(4466), - [anon_sym_let] = ACTIONS(4466), - [anon_sym_orderby] = ACTIONS(4466), - [anon_sym_group] = ACTIONS(4466), - [anon_sym_by] = ACTIONS(4466), - [anon_sym_select] = ACTIONS(4466), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_DASH_GT] = ACTIONS(4466), - [anon_sym_with] = ACTIONS(4466), - [aux_sym_preproc_if_token3] = ACTIONS(4466), - [aux_sym_preproc_else_token1] = ACTIONS(4466), - [aux_sym_preproc_elif_token1] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6591), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5296), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6595), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(6605), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6607), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -556981,27 +552747,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3911] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3911), [sym_preproc_endregion] = STATE(3911), [sym_preproc_line] = STATE(3911), @@ -557011,42 +552771,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3911), [sym_preproc_define] = STATE(3911), [sym_preproc_undef] = STATE(3911), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4748), - [aux_sym_preproc_else_token1] = ACTIONS(4748), - [aux_sym_preproc_elif_token1] = ACTIONS(4748), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6591), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5336), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6595), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(6605), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6607), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -557059,27 +552820,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3912] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3912), [sym_preproc_endregion] = STATE(3912), [sym_preproc_line] = STATE(3912), @@ -557089,41 +552844,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3912), [sym_preproc_define] = STATE(3912), [sym_preproc_undef] = STATE(3912), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6591), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5356), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6595), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(6605), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6607), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -557134,9 +552891,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4752), }, [3913] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3913), [sym_preproc_endregion] = STATE(3913), [sym_preproc_line] = STATE(3913), @@ -557146,63 +552917,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3913), [sym_preproc_define] = STATE(3913), [sym_preproc_undef] = STATE(3913), - [anon_sym_SEMI] = ACTIONS(5684), - [anon_sym_EQ] = ACTIONS(6213), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_RBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(5684), - [anon_sym_RBRACE] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(6215), - [anon_sym_DASH_EQ] = ACTIONS(6215), - [anon_sym_STAR_EQ] = ACTIONS(6215), - [anon_sym_SLASH_EQ] = ACTIONS(6215), - [anon_sym_PERCENT_EQ] = ACTIONS(6215), - [anon_sym_AMP_EQ] = ACTIONS(6215), - [anon_sym_CARET_EQ] = ACTIONS(6215), - [anon_sym_PIPE_EQ] = ACTIONS(6215), - [anon_sym_LT_LT_EQ] = ACTIONS(6215), - [anon_sym_GT_GT_EQ] = ACTIONS(6215), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6215), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6215), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_if_token3] = ACTIONS(5684), - [aux_sym_preproc_else_token1] = ACTIONS(5684), - [aux_sym_preproc_elif_token1] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_when] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -557215,6 +552966,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3914] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3914), [sym_preproc_endregion] = STATE(3914), [sym_preproc_line] = STATE(3914), @@ -557224,63 +552990,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3914), [sym_preproc_define] = STATE(3914), [sym_preproc_undef] = STATE(3914), - [anon_sym_SEMI] = ACTIONS(6217), - [anon_sym_LBRACK] = ACTIONS(6217), - [anon_sym_COLON] = ACTIONS(6217), - [anon_sym_COMMA] = ACTIONS(6217), - [anon_sym_RBRACK] = ACTIONS(6217), - [anon_sym_LPAREN] = ACTIONS(6217), - [anon_sym_RPAREN] = ACTIONS(6217), - [anon_sym_RBRACE] = ACTIONS(6217), - [anon_sym_LT] = ACTIONS(6219), - [anon_sym_GT] = ACTIONS(6219), - [anon_sym_in] = ACTIONS(6219), - [anon_sym_where] = ACTIONS(6217), - [anon_sym_QMARK] = ACTIONS(6219), - [anon_sym_BANG] = ACTIONS(6219), - [anon_sym_PLUS_PLUS] = ACTIONS(6217), - [anon_sym_DASH_DASH] = ACTIONS(6217), - [anon_sym_PLUS] = ACTIONS(6219), - [anon_sym_DASH] = ACTIONS(6219), - [anon_sym_STAR] = ACTIONS(6217), - [anon_sym_SLASH] = ACTIONS(6219), - [anon_sym_PERCENT] = ACTIONS(6217), - [anon_sym_CARET] = ACTIONS(6217), - [anon_sym_PIPE] = ACTIONS(6219), - [anon_sym_AMP] = ACTIONS(6219), - [anon_sym_LT_LT] = ACTIONS(6217), - [anon_sym_GT_GT] = ACTIONS(6219), - [anon_sym_GT_GT_GT] = ACTIONS(6217), - [anon_sym_EQ_EQ] = ACTIONS(6217), - [anon_sym_BANG_EQ] = ACTIONS(6217), - [anon_sym_GT_EQ] = ACTIONS(6217), - [anon_sym_LT_EQ] = ACTIONS(6217), - [anon_sym_DOT] = ACTIONS(6219), - [anon_sym_EQ_GT] = ACTIONS(6217), - [anon_sym_switch] = ACTIONS(6217), - [anon_sym_DOT_DOT] = ACTIONS(6217), - [anon_sym_and] = ACTIONS(6217), - [anon_sym_or] = ACTIONS(6219), - [anon_sym_AMP_AMP] = ACTIONS(6217), - [anon_sym_PIPE_PIPE] = ACTIONS(6217), - [sym_op_coalescing] = ACTIONS(6217), - [anon_sym_from] = ACTIONS(6217), - [anon_sym_into] = ACTIONS(6217), - [anon_sym_join] = ACTIONS(6217), - [anon_sym_on] = ACTIONS(6217), - [anon_sym_equals] = ACTIONS(6217), - [anon_sym_let] = ACTIONS(6217), - [anon_sym_orderby] = ACTIONS(6217), - [anon_sym_group] = ACTIONS(6217), - [anon_sym_by] = ACTIONS(6217), - [anon_sym_select] = ACTIONS(6217), - [anon_sym_as] = ACTIONS(6217), - [anon_sym_is] = ACTIONS(6217), - [anon_sym_DASH_GT] = ACTIONS(6217), - [anon_sym_with] = ACTIONS(6217), - [aux_sym_preproc_if_token3] = ACTIONS(6217), - [aux_sym_preproc_else_token1] = ACTIONS(6217), - [aux_sym_preproc_elif_token1] = ACTIONS(6217), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6591), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5364), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6595), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(6605), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6607), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -557293,27 +553039,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3915] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3915), [sym_preproc_endregion] = STATE(3915), [sym_preproc_line] = STATE(3915), @@ -557323,42 +553063,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3915), [sym_preproc_define] = STATE(3915), [sym_preproc_undef] = STATE(3915), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_when] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -557371,27 +553112,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3916] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3916), [sym_preproc_endregion] = STATE(3916), [sym_preproc_line] = STATE(3916), @@ -557401,42 +553136,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3916), [sym_preproc_define] = STATE(3916), [sym_preproc_undef] = STATE(3916), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_when] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -557449,27 +553185,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3917] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3917), [sym_preproc_endregion] = STATE(3917), [sym_preproc_line] = STATE(3917), @@ -557479,42 +553209,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3917), [sym_preproc_define] = STATE(3917), [sym_preproc_undef] = STATE(3917), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6221), - [anon_sym_RBRACK] = ACTIONS(6221), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -557527,27 +553258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3918] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_type_argument_list] = STATE(4268), [sym_preproc_region] = STATE(3918), [sym_preproc_endregion] = STATE(3918), [sym_preproc_line] = STATE(3918), @@ -557557,42 +553268,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3918), [sym_preproc_define] = STATE(3918), [sym_preproc_undef] = STATE(3918), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6221), - [anon_sym_RBRACK] = ACTIONS(6221), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6221), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3955), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(6508), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(6623), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_when] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -557605,27 +553331,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3919] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), [sym_preproc_region] = STATE(3919), [sym_preproc_endregion] = STATE(3919), [sym_preproc_line] = STATE(3919), @@ -557635,42 +553340,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3919), [sym_preproc_define] = STATE(3919), [sym_preproc_undef] = STATE(3919), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6039), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6041), - [anon_sym_on] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(6033), - [anon_sym_is] = ACTIONS(6035), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(4431), + [anon_sym_LBRACK] = ACTIONS(4431), + [anon_sym_COLON] = ACTIONS(4431), + [anon_sym_COMMA] = ACTIONS(4431), + [anon_sym_RBRACK] = ACTIONS(4431), + [anon_sym_LPAREN] = ACTIONS(4431), + [anon_sym_RPAREN] = ACTIONS(4431), + [anon_sym_LBRACE] = ACTIONS(4431), + [anon_sym_RBRACE] = ACTIONS(4431), + [anon_sym_LT] = ACTIONS(4429), + [anon_sym_GT] = ACTIONS(4429), + [anon_sym_in] = ACTIONS(4429), + [anon_sym_QMARK] = ACTIONS(4429), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_EQ_GT] = ACTIONS(4431), + [anon_sym_STAR] = ACTIONS(4431), + [anon_sym_switch] = ACTIONS(4431), + [anon_sym_when] = ACTIONS(4431), + [anon_sym_DOT_DOT] = ACTIONS(4431), + [anon_sym_LT_EQ] = ACTIONS(4431), + [anon_sym_GT_EQ] = ACTIONS(4431), + [anon_sym_and] = ACTIONS(4431), + [anon_sym_or] = ACTIONS(4431), + [anon_sym_EQ_EQ] = ACTIONS(4431), + [anon_sym_BANG_EQ] = ACTIONS(4431), + [anon_sym_AMP_AMP] = ACTIONS(4431), + [anon_sym_PIPE_PIPE] = ACTIONS(4431), + [anon_sym_AMP] = ACTIONS(4429), + [sym_op_bitwise_or] = ACTIONS(4429), + [anon_sym_CARET] = ACTIONS(4431), + [sym_op_left_shift] = ACTIONS(4431), + [sym_op_right_shift] = ACTIONS(4429), + [sym_op_unsigned_right_shift] = ACTIONS(4431), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4429), + [sym_op_divide] = ACTIONS(4429), + [sym_op_modulo] = ACTIONS(4431), + [sym_op_coalescing] = ACTIONS(4431), + [anon_sym_BANG] = ACTIONS(4429), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_into] = ACTIONS(4431), + [anon_sym_on] = ACTIONS(4431), + [anon_sym_equals] = ACTIONS(4431), + [anon_sym_by] = ACTIONS(4431), + [anon_sym_as] = ACTIONS(4431), + [anon_sym_is] = ACTIONS(4431), + [anon_sym_DASH_GT] = ACTIONS(4431), + [anon_sym_with] = 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), @@ -557683,27 +553404,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3920] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3920), [sym_preproc_endregion] = STATE(3920), [sym_preproc_line] = STATE(3920), @@ -557713,42 +553428,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3920), [sym_preproc_define] = STATE(3920), [sym_preproc_undef] = STATE(3920), - [aux_sym_initializer_expression_repeat1] = STATE(7357), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6223), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(6225), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6607), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -557761,27 +553477,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3921] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3921), [sym_preproc_endregion] = STATE(3921), [sym_preproc_line] = STATE(3921), @@ -557791,42 +553501,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3921), [sym_preproc_define] = STATE(3921), [sym_preproc_undef] = STATE(3921), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6607), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -557848,63 +553559,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3922), [sym_preproc_define] = STATE(3922), [sym_preproc_undef] = STATE(3922), - [anon_sym_SEMI] = ACTIONS(6227), - [anon_sym_LBRACK] = ACTIONS(6227), - [anon_sym_COLON] = ACTIONS(6227), - [anon_sym_COMMA] = ACTIONS(6227), - [anon_sym_RBRACK] = ACTIONS(6227), - [anon_sym_LPAREN] = ACTIONS(6227), - [anon_sym_RPAREN] = ACTIONS(6227), - [anon_sym_RBRACE] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(6229), - [anon_sym_GT] = ACTIONS(6229), - [anon_sym_in] = ACTIONS(6229), - [anon_sym_where] = ACTIONS(6227), - [anon_sym_QMARK] = ACTIONS(6229), - [anon_sym_BANG] = ACTIONS(6229), - [anon_sym_PLUS_PLUS] = ACTIONS(6227), - [anon_sym_DASH_DASH] = ACTIONS(6227), - [anon_sym_PLUS] = ACTIONS(6229), - [anon_sym_DASH] = ACTIONS(6229), - [anon_sym_STAR] = ACTIONS(6227), - [anon_sym_SLASH] = ACTIONS(6229), - [anon_sym_PERCENT] = ACTIONS(6227), - [anon_sym_CARET] = ACTIONS(6227), - [anon_sym_PIPE] = ACTIONS(6229), - [anon_sym_AMP] = ACTIONS(6229), - [anon_sym_LT_LT] = ACTIONS(6227), - [anon_sym_GT_GT] = ACTIONS(6229), - [anon_sym_GT_GT_GT] = ACTIONS(6227), - [anon_sym_EQ_EQ] = ACTIONS(6227), - [anon_sym_BANG_EQ] = ACTIONS(6227), - [anon_sym_GT_EQ] = ACTIONS(6227), - [anon_sym_LT_EQ] = ACTIONS(6227), - [anon_sym_DOT] = ACTIONS(6229), - [anon_sym_EQ_GT] = ACTIONS(6227), - [anon_sym_switch] = ACTIONS(6227), - [anon_sym_DOT_DOT] = ACTIONS(6227), - [anon_sym_and] = ACTIONS(6227), - [anon_sym_or] = ACTIONS(6229), - [anon_sym_AMP_AMP] = ACTIONS(6227), - [anon_sym_PIPE_PIPE] = ACTIONS(6227), - [sym_op_coalescing] = ACTIONS(6227), - [anon_sym_from] = ACTIONS(6227), - [anon_sym_into] = ACTIONS(6227), - [anon_sym_join] = ACTIONS(6227), - [anon_sym_on] = ACTIONS(6227), - [anon_sym_equals] = ACTIONS(6227), - [anon_sym_let] = ACTIONS(6227), - [anon_sym_orderby] = ACTIONS(6227), - [anon_sym_group] = ACTIONS(6227), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_select] = ACTIONS(6227), - [anon_sym_as] = ACTIONS(6227), - [anon_sym_is] = ACTIONS(6227), - [anon_sym_DASH_GT] = ACTIONS(6227), - [anon_sym_with] = ACTIONS(6227), - [aux_sym_preproc_if_token3] = ACTIONS(6227), - [aux_sym_preproc_else_token1] = ACTIONS(6227), - [aux_sym_preproc_elif_token1] = ACTIONS(6227), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_COLON] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(4341), + [anon_sym_RBRACK] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_RPAREN] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_in] = ACTIONS(4339), + [anon_sym_QMARK] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_EQ_GT] = ACTIONS(4341), + [anon_sym_STAR] = ACTIONS(4341), + [anon_sym_switch] = ACTIONS(4341), + [anon_sym_when] = ACTIONS(4341), + [anon_sym_DOT_DOT] = ACTIONS(4341), + [anon_sym_LT_EQ] = ACTIONS(4341), + [anon_sym_GT_EQ] = ACTIONS(4341), + [anon_sym_and] = ACTIONS(4341), + [anon_sym_or] = ACTIONS(4341), + [anon_sym_EQ_EQ] = ACTIONS(4341), + [anon_sym_BANG_EQ] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_PIPE_PIPE] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4339), + [sym_op_bitwise_or] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4341), + [sym_op_left_shift] = ACTIONS(4341), + [sym_op_right_shift] = ACTIONS(4339), + [sym_op_unsigned_right_shift] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [sym_op_divide] = ACTIONS(4339), + [sym_op_modulo] = ACTIONS(4341), + [sym_op_coalescing] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4339), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_into] = ACTIONS(4341), + [anon_sym_on] = ACTIONS(4341), + [anon_sym_equals] = ACTIONS(4341), + [anon_sym_by] = ACTIONS(4341), + [anon_sym_as] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(4341), + [anon_sym_DASH_GT] = ACTIONS(4341), + [anon_sym_with] = ACTIONS(4341), + [aux_sym_preproc_if_token3] = ACTIONS(4341), + [aux_sym_preproc_else_token1] = ACTIONS(4341), + [aux_sym_preproc_elif_token1] = ACTIONS(4341), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -557917,6 +553623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3923] = { + [sym_initializer_expression] = STATE(4633), [sym_preproc_region] = STATE(3923), [sym_preproc_endregion] = STATE(3923), [sym_preproc_line] = STATE(3923), @@ -557926,63 +553633,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3923), [sym_preproc_define] = STATE(3923), [sym_preproc_undef] = STATE(3923), - [anon_sym_SEMI] = ACTIONS(6231), - [anon_sym_LBRACK] = ACTIONS(6231), - [anon_sym_COLON] = ACTIONS(6231), - [anon_sym_COMMA] = ACTIONS(6231), - [anon_sym_RBRACK] = ACTIONS(6231), - [anon_sym_LPAREN] = ACTIONS(6231), - [anon_sym_RPAREN] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(6231), - [anon_sym_LT] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6233), - [anon_sym_in] = ACTIONS(6233), - [anon_sym_where] = ACTIONS(6231), - [anon_sym_QMARK] = ACTIONS(6233), - [anon_sym_BANG] = ACTIONS(6233), - [anon_sym_PLUS_PLUS] = ACTIONS(6231), - [anon_sym_DASH_DASH] = ACTIONS(6231), - [anon_sym_PLUS] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6233), - [anon_sym_STAR] = ACTIONS(6231), - [anon_sym_SLASH] = ACTIONS(6233), - [anon_sym_PERCENT] = ACTIONS(6231), - [anon_sym_CARET] = ACTIONS(6231), - [anon_sym_PIPE] = ACTIONS(6233), - [anon_sym_AMP] = ACTIONS(6233), - [anon_sym_LT_LT] = ACTIONS(6231), - [anon_sym_GT_GT] = ACTIONS(6233), - [anon_sym_GT_GT_GT] = ACTIONS(6231), - [anon_sym_EQ_EQ] = ACTIONS(6231), - [anon_sym_BANG_EQ] = ACTIONS(6231), - [anon_sym_GT_EQ] = ACTIONS(6231), - [anon_sym_LT_EQ] = ACTIONS(6231), - [anon_sym_DOT] = ACTIONS(6233), - [anon_sym_EQ_GT] = ACTIONS(6231), - [anon_sym_switch] = ACTIONS(6231), - [anon_sym_DOT_DOT] = ACTIONS(6231), - [anon_sym_and] = ACTIONS(6231), - [anon_sym_or] = ACTIONS(6233), - [anon_sym_AMP_AMP] = ACTIONS(6231), - [anon_sym_PIPE_PIPE] = ACTIONS(6231), - [sym_op_coalescing] = ACTIONS(6231), - [anon_sym_from] = ACTIONS(6231), - [anon_sym_into] = ACTIONS(6231), - [anon_sym_join] = ACTIONS(6231), - [anon_sym_on] = ACTIONS(6231), - [anon_sym_equals] = ACTIONS(6231), - [anon_sym_let] = ACTIONS(6231), - [anon_sym_orderby] = ACTIONS(6231), - [anon_sym_group] = ACTIONS(6231), - [anon_sym_by] = ACTIONS(6231), - [anon_sym_select] = ACTIONS(6231), - [anon_sym_as] = ACTIONS(6231), - [anon_sym_is] = ACTIONS(6231), - [anon_sym_DASH_GT] = ACTIONS(6231), - [anon_sym_with] = ACTIONS(6231), - [aux_sym_preproc_if_token3] = ACTIONS(6231), - [aux_sym_preproc_else_token1] = ACTIONS(6231), - [aux_sym_preproc_elif_token1] = ACTIONS(6231), + [anon_sym_SEMI] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym_COLON] = ACTIONS(5516), + [anon_sym_COMMA] = ACTIONS(5516), + [anon_sym_RBRACK] = ACTIONS(5516), + [anon_sym_LPAREN] = ACTIONS(5516), + [anon_sym_RPAREN] = ACTIONS(5516), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(5516), + [anon_sym_LT] = ACTIONS(5518), + [anon_sym_GT] = ACTIONS(5518), + [anon_sym_in] = ACTIONS(5516), + [anon_sym_QMARK] = ACTIONS(5518), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_EQ_GT] = ACTIONS(5516), + [anon_sym_STAR] = ACTIONS(5516), + [anon_sym_switch] = ACTIONS(5516), + [anon_sym_when] = ACTIONS(5516), + [anon_sym_DOT_DOT] = ACTIONS(5516), + [anon_sym_LT_EQ] = ACTIONS(5516), + [anon_sym_GT_EQ] = ACTIONS(5516), + [anon_sym_and] = ACTIONS(5516), + [anon_sym_or] = ACTIONS(5516), + [anon_sym_EQ_EQ] = ACTIONS(5516), + [anon_sym_BANG_EQ] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5516), + [anon_sym_PIPE_PIPE] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [sym_op_bitwise_or] = ACTIONS(5518), + [anon_sym_CARET] = ACTIONS(5516), + [sym_op_left_shift] = ACTIONS(5516), + [sym_op_right_shift] = ACTIONS(5518), + [sym_op_unsigned_right_shift] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5518), + [sym_op_divide] = ACTIONS(5518), + [sym_op_modulo] = ACTIONS(5516), + [sym_op_coalescing] = ACTIONS(5516), + [anon_sym_BANG] = ACTIONS(5518), + [anon_sym_PLUS_PLUS] = ACTIONS(5516), + [anon_sym_DASH_DASH] = ACTIONS(5516), + [anon_sym_on] = ACTIONS(5516), + [anon_sym_equals] = ACTIONS(5516), + [anon_sym_by] = ACTIONS(5516), + [anon_sym_as] = ACTIONS(5516), + [anon_sym_is] = ACTIONS(5516), + [anon_sym_DASH_GT] = ACTIONS(5516), + [anon_sym_with] = ACTIONS(5516), + [aux_sym_preproc_if_token3] = ACTIONS(5516), + [aux_sym_preproc_else_token1] = ACTIONS(5516), + [aux_sym_preproc_elif_token1] = ACTIONS(5516), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -557995,27 +553696,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3924] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), [sym_preproc_region] = STATE(3924), [sym_preproc_endregion] = STATE(3924), [sym_preproc_line] = STATE(3924), @@ -558025,42 +553705,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3924), [sym_preproc_define] = STATE(3924), [sym_preproc_undef] = STATE(3924), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(5654), + [anon_sym_LBRACK] = ACTIONS(5654), + [anon_sym_COLON] = ACTIONS(5654), + [anon_sym_COMMA] = ACTIONS(5654), + [anon_sym_RBRACK] = ACTIONS(5654), + [anon_sym_LPAREN] = ACTIONS(5654), + [anon_sym_RPAREN] = ACTIONS(5654), + [anon_sym_LBRACE] = ACTIONS(5654), + [anon_sym_RBRACE] = ACTIONS(5654), + [anon_sym_LT] = ACTIONS(5656), + [anon_sym_GT] = ACTIONS(5656), + [anon_sym_in] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5654), + [anon_sym_QMARK] = ACTIONS(5656), + [anon_sym_DOT] = ACTIONS(5656), + [anon_sym_EQ_GT] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_switch] = ACTIONS(5654), + [anon_sym_when] = ACTIONS(5654), + [anon_sym_DOT_DOT] = ACTIONS(5654), + [anon_sym_LT_EQ] = ACTIONS(5654), + [anon_sym_GT_EQ] = ACTIONS(5654), + [anon_sym_and] = ACTIONS(5654), + [anon_sym_or] = ACTIONS(5654), + [anon_sym_EQ_EQ] = ACTIONS(5654), + [anon_sym_BANG_EQ] = ACTIONS(5654), + [anon_sym_AMP_AMP] = ACTIONS(5654), + [anon_sym_PIPE_PIPE] = ACTIONS(5654), + [anon_sym_AMP] = ACTIONS(5656), + [sym_op_bitwise_or] = ACTIONS(5656), + [anon_sym_CARET] = ACTIONS(5654), + [sym_op_left_shift] = ACTIONS(5654), + [sym_op_right_shift] = ACTIONS(5656), + [sym_op_unsigned_right_shift] = ACTIONS(5654), + [anon_sym_PLUS] = ACTIONS(5656), + [anon_sym_DASH] = ACTIONS(5656), + [sym_op_divide] = ACTIONS(5656), + [sym_op_modulo] = ACTIONS(5654), + [sym_op_coalescing] = ACTIONS(5654), + [anon_sym_BANG] = ACTIONS(5656), + [anon_sym_PLUS_PLUS] = ACTIONS(5654), + [anon_sym_DASH_DASH] = ACTIONS(5654), + [anon_sym_on] = ACTIONS(5654), + [anon_sym_equals] = ACTIONS(5654), + [anon_sym_by] = ACTIONS(5654), + [anon_sym_as] = ACTIONS(5654), + [anon_sym_is] = ACTIONS(5654), + [anon_sym_DASH_GT] = ACTIONS(5654), + [anon_sym_with] = ACTIONS(5654), + [aux_sym_preproc_if_token3] = ACTIONS(5654), + [aux_sym_preproc_else_token1] = ACTIONS(5654), + [aux_sym_preproc_elif_token1] = ACTIONS(5654), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -558073,27 +553769,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3925] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3925), [sym_preproc_endregion] = STATE(3925), [sym_preproc_line] = STATE(3925), @@ -558103,42 +553793,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3925), [sym_preproc_define] = STATE(3925), [sym_preproc_undef] = STATE(3925), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6144), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6146), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6595), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6607), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -558151,27 +553842,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3926] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), [sym_preproc_region] = STATE(3926), [sym_preproc_endregion] = STATE(3926), [sym_preproc_line] = STATE(3926), @@ -558181,42 +553851,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3926), [sym_preproc_define] = STATE(3926), [sym_preproc_undef] = STATE(3926), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_COLON] = ACTIONS(4282), + [anon_sym_COMMA] = ACTIONS(4282), + [anon_sym_RBRACK] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_RPAREN] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4282), + [anon_sym_LT] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4280), + [anon_sym_in] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_DOT] = ACTIONS(4280), + [anon_sym_EQ_GT] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_switch] = ACTIONS(4282), + [anon_sym_when] = ACTIONS(4282), + [anon_sym_DOT_DOT] = ACTIONS(4282), + [anon_sym_LT_EQ] = ACTIONS(4282), + [anon_sym_GT_EQ] = ACTIONS(4282), + [anon_sym_and] = ACTIONS(4282), + [anon_sym_or] = ACTIONS(4282), + [anon_sym_EQ_EQ] = ACTIONS(4282), + [anon_sym_BANG_EQ] = ACTIONS(4282), + [anon_sym_AMP_AMP] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4282), + [anon_sym_AMP] = ACTIONS(4280), + [sym_op_bitwise_or] = ACTIONS(4280), + [anon_sym_CARET] = ACTIONS(4282), + [sym_op_left_shift] = ACTIONS(4282), + [sym_op_right_shift] = ACTIONS(4280), + [sym_op_unsigned_right_shift] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + [sym_op_divide] = ACTIONS(4280), + [sym_op_modulo] = ACTIONS(4282), + [sym_op_coalescing] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [anon_sym_into] = ACTIONS(4282), + [anon_sym_on] = ACTIONS(4282), + [anon_sym_equals] = ACTIONS(4282), + [anon_sym_by] = ACTIONS(4282), + [anon_sym_as] = ACTIONS(4282), + [anon_sym_is] = ACTIONS(4282), + [anon_sym_DASH_GT] = ACTIONS(4282), + [anon_sym_with] = ACTIONS(4282), + [aux_sym_preproc_if_token3] = ACTIONS(4282), + [aux_sym_preproc_else_token1] = ACTIONS(4282), + [aux_sym_preproc_elif_token1] = ACTIONS(4282), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -558229,27 +553915,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3927] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), [sym_preproc_region] = STATE(3927), [sym_preproc_endregion] = STATE(3927), [sym_preproc_line] = STATE(3927), @@ -558259,42 +553924,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3927), [sym_preproc_define] = STATE(3927), [sym_preproc_undef] = STATE(3927), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_in] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(3974), + [anon_sym_LBRACK] = ACTIONS(3976), + [anon_sym_COLON] = ACTIONS(3976), + [anon_sym_COMMA] = ACTIONS(3976), + [anon_sym_LPAREN] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3974), + [anon_sym_GT] = ACTIONS(3974), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3974), + [anon_sym_STAR] = ACTIONS(3974), + [anon_sym_switch] = ACTIONS(3976), + [anon_sym_DOT_DOT] = ACTIONS(3976), + [anon_sym_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_EQ] = ACTIONS(3976), + [anon_sym_and] = ACTIONS(3976), + [anon_sym_or] = ACTIONS(3976), + [anon_sym_PLUS_EQ] = ACTIONS(3976), + [anon_sym_DASH_EQ] = ACTIONS(3976), + [anon_sym_STAR_EQ] = ACTIONS(3976), + [anon_sym_SLASH_EQ] = ACTIONS(3976), + [anon_sym_PERCENT_EQ] = ACTIONS(3976), + [anon_sym_AMP_EQ] = ACTIONS(3976), + [anon_sym_CARET_EQ] = ACTIONS(3976), + [anon_sym_PIPE_EQ] = ACTIONS(3976), + [anon_sym_LT_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_GT_EQ] = ACTIONS(3976), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3976), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3976), + [anon_sym_EQ_EQ] = ACTIONS(3976), + [anon_sym_BANG_EQ] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [sym_op_bitwise_or] = ACTIONS(3974), + [anon_sym_CARET] = ACTIONS(3974), + [sym_op_left_shift] = ACTIONS(3974), + [sym_op_right_shift] = ACTIONS(3974), + [sym_op_unsigned_right_shift] = ACTIONS(3974), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [sym_op_divide] = ACTIONS(3974), + [sym_op_modulo] = ACTIONS(3974), + [sym_op_coalescing] = ACTIONS(3974), + [anon_sym_BANG] = ACTIONS(3974), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_into] = ACTIONS(3976), + [anon_sym_as] = ACTIONS(3976), + [anon_sym_is] = ACTIONS(3976), + [anon_sym_DASH_GT] = ACTIONS(3976), + [anon_sym_with] = ACTIONS(3976), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -558305,6 +553985,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(3976), }, [3928] = { [sym_preproc_region] = STATE(3928), @@ -558316,63 +553997,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3928), [sym_preproc_define] = STATE(3928), [sym_preproc_undef] = STATE(3928), - [anon_sym_SEMI] = ACTIONS(6237), - [anon_sym_LBRACK] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_COMMA] = ACTIONS(6237), - [anon_sym_RBRACK] = ACTIONS(6237), - [anon_sym_LPAREN] = ACTIONS(6237), - [anon_sym_RPAREN] = ACTIONS(6237), - [anon_sym_RBRACE] = ACTIONS(6237), - [anon_sym_LT] = ACTIONS(6239), - [anon_sym_GT] = ACTIONS(6239), - [anon_sym_in] = ACTIONS(6239), - [anon_sym_where] = ACTIONS(6237), - [anon_sym_QMARK] = ACTIONS(6239), - [anon_sym_BANG] = ACTIONS(6239), - [anon_sym_PLUS_PLUS] = ACTIONS(6237), - [anon_sym_DASH_DASH] = ACTIONS(6237), - [anon_sym_PLUS] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_PERCENT] = ACTIONS(6237), - [anon_sym_CARET] = ACTIONS(6237), - [anon_sym_PIPE] = ACTIONS(6239), - [anon_sym_AMP] = ACTIONS(6239), - [anon_sym_LT_LT] = ACTIONS(6237), - [anon_sym_GT_GT] = ACTIONS(6239), - [anon_sym_GT_GT_GT] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6237), - [anon_sym_BANG_EQ] = ACTIONS(6237), - [anon_sym_GT_EQ] = ACTIONS(6237), - [anon_sym_LT_EQ] = ACTIONS(6237), - [anon_sym_DOT] = ACTIONS(6239), - [anon_sym_EQ_GT] = ACTIONS(6237), - [anon_sym_switch] = ACTIONS(6237), - [anon_sym_DOT_DOT] = ACTIONS(6237), - [anon_sym_and] = ACTIONS(6237), - [anon_sym_or] = ACTIONS(6239), - [anon_sym_AMP_AMP] = ACTIONS(6237), - [anon_sym_PIPE_PIPE] = ACTIONS(6237), - [sym_op_coalescing] = ACTIONS(6237), - [anon_sym_from] = ACTIONS(6237), - [anon_sym_into] = ACTIONS(6237), - [anon_sym_join] = ACTIONS(6237), - [anon_sym_on] = ACTIONS(6237), - [anon_sym_equals] = ACTIONS(6237), - [anon_sym_let] = ACTIONS(6237), - [anon_sym_orderby] = ACTIONS(6237), - [anon_sym_group] = ACTIONS(6237), - [anon_sym_by] = ACTIONS(6237), - [anon_sym_select] = ACTIONS(6237), - [anon_sym_as] = ACTIONS(6237), - [anon_sym_is] = ACTIONS(6237), - [anon_sym_DASH_GT] = ACTIONS(6237), - [anon_sym_with] = ACTIONS(6237), - [aux_sym_preproc_if_token3] = ACTIONS(6237), - [aux_sym_preproc_else_token1] = ACTIONS(6237), - [aux_sym_preproc_elif_token1] = ACTIONS(6237), + [anon_sym_SEMI] = ACTIONS(4312), + [anon_sym_LBRACK] = ACTIONS(4312), + [anon_sym_COLON] = ACTIONS(4312), + [anon_sym_COMMA] = ACTIONS(4312), + [anon_sym_RBRACK] = ACTIONS(4312), + [anon_sym_LPAREN] = ACTIONS(4312), + [anon_sym_RPAREN] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4312), + [anon_sym_RBRACE] = ACTIONS(4312), + [anon_sym_LT] = ACTIONS(4310), + [anon_sym_GT] = ACTIONS(4310), + [anon_sym_in] = ACTIONS(4310), + [anon_sym_QMARK] = ACTIONS(4310), + [anon_sym_DOT] = ACTIONS(4310), + [anon_sym_EQ_GT] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4312), + [anon_sym_switch] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4312), + [anon_sym_LT_EQ] = ACTIONS(4312), + [anon_sym_GT_EQ] = ACTIONS(4312), + [anon_sym_and] = ACTIONS(4312), + [anon_sym_or] = ACTIONS(4312), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_AMP_AMP] = ACTIONS(4312), + [anon_sym_PIPE_PIPE] = ACTIONS(4312), + [anon_sym_AMP] = ACTIONS(4310), + [sym_op_bitwise_or] = ACTIONS(4310), + [anon_sym_CARET] = ACTIONS(4312), + [sym_op_left_shift] = ACTIONS(4312), + [sym_op_right_shift] = ACTIONS(4310), + [sym_op_unsigned_right_shift] = ACTIONS(4312), + [anon_sym_PLUS] = ACTIONS(4310), + [anon_sym_DASH] = ACTIONS(4310), + [sym_op_divide] = ACTIONS(4310), + [sym_op_modulo] = ACTIONS(4312), + [sym_op_coalescing] = ACTIONS(4312), + [anon_sym_BANG] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4312), + [anon_sym_DASH_DASH] = ACTIONS(4312), + [anon_sym_into] = ACTIONS(4312), + [anon_sym_on] = ACTIONS(4312), + [anon_sym_equals] = ACTIONS(4312), + [anon_sym_by] = ACTIONS(4312), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_DASH_GT] = ACTIONS(4312), + [anon_sym_with] = ACTIONS(4312), + [aux_sym_preproc_if_token3] = ACTIONS(4312), + [aux_sym_preproc_else_token1] = ACTIONS(4312), + [aux_sym_preproc_elif_token1] = ACTIONS(4312), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -558385,27 +554061,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3929] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(3929), [sym_preproc_endregion] = STATE(3929), [sym_preproc_line] = STATE(3929), @@ -558415,42 +554070,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3929), [sym_preproc_define] = STATE(3929), [sym_preproc_undef] = STATE(3929), - [aux_sym_initializer_expression_repeat1] = STATE(7251), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6241), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(6243), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_COLON] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_RBRACK] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_RPAREN] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_QMARK] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_EQ_GT] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_switch] = ACTIONS(4403), + [anon_sym_when] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_and] = ACTIONS(4403), + [anon_sym_or] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_AMP] = ACTIONS(4401), + [sym_op_bitwise_or] = ACTIONS(4401), + [anon_sym_CARET] = ACTIONS(4403), + [sym_op_left_shift] = ACTIONS(4403), + [sym_op_right_shift] = ACTIONS(4401), + [sym_op_unsigned_right_shift] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [sym_op_divide] = ACTIONS(4401), + [sym_op_modulo] = ACTIONS(4403), + [sym_op_coalescing] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_into] = ACTIONS(4403), + [anon_sym_on] = ACTIONS(4403), + [anon_sym_equals] = ACTIONS(4403), + [anon_sym_by] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_DASH_GT] = ACTIONS(4403), + [anon_sym_with] = ACTIONS(4403), + [aux_sym_preproc_if_token3] = ACTIONS(4403), + [aux_sym_preproc_else_token1] = ACTIONS(4403), + [aux_sym_preproc_elif_token1] = ACTIONS(4403), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -558463,27 +554134,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3930] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), [sym_preproc_region] = STATE(3930), [sym_preproc_endregion] = STATE(3930), [sym_preproc_line] = STATE(3930), @@ -558493,42 +554143,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3930), [sym_preproc_define] = STATE(3930), [sym_preproc_undef] = STATE(3930), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5654), + [anon_sym_LBRACK] = ACTIONS(5654), + [anon_sym_COLON] = ACTIONS(5654), + [anon_sym_COMMA] = ACTIONS(5654), + [anon_sym_RBRACK] = ACTIONS(5654), + [anon_sym_LPAREN] = ACTIONS(5654), + [anon_sym_RPAREN] = ACTIONS(5654), + [anon_sym_LBRACE] = ACTIONS(5654), + [anon_sym_RBRACE] = ACTIONS(5654), + [anon_sym_LT] = ACTIONS(5656), + [anon_sym_GT] = ACTIONS(5656), + [anon_sym_in] = ACTIONS(5656), + [anon_sym_QMARK] = ACTIONS(5656), + [anon_sym_DOT] = ACTIONS(5656), + [anon_sym_EQ_GT] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_switch] = ACTIONS(5654), + [anon_sym_when] = ACTIONS(5654), + [anon_sym_DOT_DOT] = ACTIONS(5654), + [anon_sym_LT_EQ] = ACTIONS(5654), + [anon_sym_GT_EQ] = ACTIONS(5654), + [anon_sym_and] = ACTIONS(5654), + [anon_sym_or] = ACTIONS(5654), + [anon_sym_EQ_EQ] = ACTIONS(5654), + [anon_sym_BANG_EQ] = ACTIONS(5654), + [anon_sym_AMP_AMP] = ACTIONS(5654), + [anon_sym_PIPE_PIPE] = ACTIONS(5654), + [anon_sym_AMP] = ACTIONS(5656), + [sym_op_bitwise_or] = ACTIONS(5656), + [anon_sym_CARET] = ACTIONS(5654), + [sym_op_left_shift] = ACTIONS(5654), + [sym_op_right_shift] = ACTIONS(5656), + [sym_op_unsigned_right_shift] = ACTIONS(5654), + [anon_sym_PLUS] = ACTIONS(5656), + [anon_sym_DASH] = ACTIONS(5656), + [sym_op_divide] = ACTIONS(5656), + [sym_op_modulo] = ACTIONS(5654), + [sym_op_coalescing] = ACTIONS(5654), + [anon_sym_BANG] = ACTIONS(5656), + [anon_sym_PLUS_PLUS] = ACTIONS(5654), + [anon_sym_DASH_DASH] = ACTIONS(5654), + [anon_sym_into] = ACTIONS(5654), + [anon_sym_on] = ACTIONS(5654), + [anon_sym_equals] = ACTIONS(5654), + [anon_sym_by] = ACTIONS(5654), + [anon_sym_as] = ACTIONS(5654), + [anon_sym_is] = ACTIONS(5654), + [anon_sym_DASH_GT] = ACTIONS(5654), + [anon_sym_with] = ACTIONS(5654), + [aux_sym_preproc_if_token3] = ACTIONS(5654), + [aux_sym_preproc_else_token1] = ACTIONS(5654), + [aux_sym_preproc_elif_token1] = ACTIONS(5654), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -558541,27 +554207,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3931] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3931), [sym_preproc_endregion] = STATE(3931), [sym_preproc_line] = STATE(3931), @@ -558571,42 +554231,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3931), [sym_preproc_define] = STATE(3931), [sym_preproc_undef] = STATE(3931), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5364), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6533), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6573), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6410), + [sym_op_right_shift] = ACTIONS(6412), + [sym_op_unsigned_right_shift] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(6575), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -558619,27 +554280,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3932] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(3932), [sym_preproc_endregion] = STATE(3932), [sym_preproc_line] = STATE(3932), @@ -558649,42 +554304,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3932), [sym_preproc_define] = STATE(3932), [sym_preproc_undef] = STATE(3932), - [aux_sym_initializer_expression_repeat1] = STATE(7280), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6245), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(6247), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5356), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6533), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6573), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6410), + [sym_op_right_shift] = ACTIONS(6412), + [sym_op_unsigned_right_shift] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(6575), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -558697,27 +554353,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3933] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), [sym_preproc_region] = STATE(3933), [sym_preproc_endregion] = STATE(3933), [sym_preproc_line] = STATE(3933), @@ -558727,42 +554362,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3933), [sym_preproc_define] = STATE(3933), [sym_preproc_undef] = STATE(3933), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4766), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(5662), + [anon_sym_LBRACK] = ACTIONS(5662), + [anon_sym_COLON] = ACTIONS(5662), + [anon_sym_COMMA] = ACTIONS(5662), + [anon_sym_RBRACK] = ACTIONS(5662), + [anon_sym_LPAREN] = ACTIONS(5662), + [anon_sym_RPAREN] = ACTIONS(5662), + [anon_sym_RBRACE] = ACTIONS(5662), + [anon_sym_LT] = ACTIONS(5664), + [anon_sym_GT] = ACTIONS(5664), + [anon_sym_in] = ACTIONS(5664), + [anon_sym_QMARK] = ACTIONS(5664), + [anon_sym_DOT] = ACTIONS(5664), + [anon_sym_EQ_GT] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5662), + [anon_sym_switch] = ACTIONS(5662), + [anon_sym_when] = ACTIONS(5662), + [anon_sym_DOT_DOT] = ACTIONS(5662), + [anon_sym_LT_EQ] = ACTIONS(5662), + [anon_sym_GT_EQ] = ACTIONS(5662), + [anon_sym_and] = ACTIONS(5662), + [anon_sym_or] = ACTIONS(5662), + [anon_sym_EQ_EQ] = ACTIONS(5662), + [anon_sym_BANG_EQ] = ACTIONS(5662), + [anon_sym_AMP_AMP] = ACTIONS(5662), + [anon_sym_PIPE_PIPE] = ACTIONS(5662), + [anon_sym_AMP] = ACTIONS(5664), + [sym_op_bitwise_or] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5662), + [sym_op_left_shift] = ACTIONS(5662), + [sym_op_right_shift] = ACTIONS(5664), + [sym_op_unsigned_right_shift] = ACTIONS(5662), + [anon_sym_PLUS] = ACTIONS(5664), + [anon_sym_DASH] = ACTIONS(5664), + [sym_op_divide] = ACTIONS(5664), + [sym_op_modulo] = ACTIONS(5662), + [sym_op_coalescing] = ACTIONS(5662), + [anon_sym_BANG] = ACTIONS(5664), + [anon_sym_PLUS_PLUS] = ACTIONS(5662), + [anon_sym_DASH_DASH] = ACTIONS(5662), + [anon_sym_into] = ACTIONS(5662), + [anon_sym_on] = ACTIONS(5662), + [anon_sym_equals] = ACTIONS(5662), + [anon_sym_by] = ACTIONS(5662), + [anon_sym_as] = ACTIONS(5662), + [anon_sym_is] = ACTIONS(5662), + [anon_sym_DASH_GT] = ACTIONS(5662), + [anon_sym_with] = ACTIONS(5662), + [aux_sym_raw_string_literal_token1] = ACTIONS(6625), + [aux_sym_preproc_if_token3] = ACTIONS(5662), + [aux_sym_preproc_else_token1] = ACTIONS(5662), + [aux_sym_preproc_elif_token1] = ACTIONS(5662), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -558775,27 +554426,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3934] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3934), [sym_preproc_endregion] = STATE(3934), [sym_preproc_line] = STATE(3934), @@ -558805,42 +554450,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3934), [sym_preproc_define] = STATE(3934), [sym_preproc_undef] = STATE(3934), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_by] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6627), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6462), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(6466), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_by] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -558853,27 +554499,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3935] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), [sym_preproc_region] = STATE(3935), [sym_preproc_endregion] = STATE(3935), [sym_preproc_line] = STATE(3935), @@ -558883,42 +554508,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3935), [sym_preproc_define] = STATE(3935), [sym_preproc_undef] = STATE(3935), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6023), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_RBRACK] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_QMARK] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_EQ_GT] = ACTIONS(4337), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_switch] = ACTIONS(4337), + [anon_sym_when] = ACTIONS(4337), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_and] = ACTIONS(4337), + [anon_sym_or] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4335), + [sym_op_bitwise_or] = ACTIONS(4335), + [anon_sym_CARET] = ACTIONS(4337), + [sym_op_left_shift] = ACTIONS(4337), + [sym_op_right_shift] = ACTIONS(4335), + [sym_op_unsigned_right_shift] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [sym_op_divide] = ACTIONS(4335), + [sym_op_modulo] = ACTIONS(4337), + [sym_op_coalescing] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_into] = ACTIONS(4337), + [anon_sym_on] = ACTIONS(4337), + [anon_sym_equals] = ACTIONS(4337), + [anon_sym_by] = ACTIONS(4337), + [anon_sym_as] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4337), + [anon_sym_DASH_GT] = ACTIONS(4337), + [anon_sym_with] = ACTIONS(4337), + [aux_sym_preproc_if_token3] = ACTIONS(4337), + [aux_sym_preproc_else_token1] = ACTIONS(4337), + [aux_sym_preproc_elif_token1] = ACTIONS(4337), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -558940,63 +554581,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3936), [sym_preproc_define] = STATE(3936), [sym_preproc_undef] = STATE(3936), - [anon_sym_SEMI] = ACTIONS(6249), - [anon_sym_LBRACK] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6249), - [anon_sym_COMMA] = ACTIONS(6249), - [anon_sym_RBRACK] = ACTIONS(6249), - [anon_sym_LPAREN] = ACTIONS(6249), - [anon_sym_RPAREN] = ACTIONS(6249), - [anon_sym_RBRACE] = ACTIONS(6249), - [anon_sym_LT] = ACTIONS(6251), - [anon_sym_GT] = ACTIONS(6251), - [anon_sym_in] = ACTIONS(6251), - [anon_sym_where] = ACTIONS(6249), - [anon_sym_QMARK] = ACTIONS(6251), - [anon_sym_BANG] = ACTIONS(6251), - [anon_sym_PLUS_PLUS] = ACTIONS(6249), - [anon_sym_DASH_DASH] = ACTIONS(6249), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6249), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_PERCENT] = ACTIONS(6249), - [anon_sym_CARET] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6251), - [anon_sym_AMP] = ACTIONS(6251), - [anon_sym_LT_LT] = ACTIONS(6249), - [anon_sym_GT_GT] = ACTIONS(6251), - [anon_sym_GT_GT_GT] = ACTIONS(6249), - [anon_sym_EQ_EQ] = ACTIONS(6249), - [anon_sym_BANG_EQ] = ACTIONS(6249), - [anon_sym_GT_EQ] = ACTIONS(6249), - [anon_sym_LT_EQ] = ACTIONS(6249), - [anon_sym_DOT] = ACTIONS(6251), - [anon_sym_EQ_GT] = ACTIONS(6249), - [anon_sym_switch] = ACTIONS(6249), - [anon_sym_DOT_DOT] = ACTIONS(6249), - [anon_sym_and] = ACTIONS(6249), - [anon_sym_or] = ACTIONS(6251), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6249), - [sym_op_coalescing] = ACTIONS(6249), - [anon_sym_from] = ACTIONS(6249), - [anon_sym_into] = ACTIONS(6249), - [anon_sym_join] = ACTIONS(6249), - [anon_sym_on] = ACTIONS(6249), - [anon_sym_equals] = ACTIONS(6249), - [anon_sym_let] = ACTIONS(6249), - [anon_sym_orderby] = ACTIONS(6249), - [anon_sym_group] = ACTIONS(6249), - [anon_sym_by] = ACTIONS(6249), - [anon_sym_select] = ACTIONS(6249), - [anon_sym_as] = ACTIONS(6249), - [anon_sym_is] = ACTIONS(6249), - [anon_sym_DASH_GT] = ACTIONS(6249), - [anon_sym_with] = ACTIONS(6249), - [aux_sym_preproc_if_token3] = ACTIONS(6249), - [aux_sym_preproc_else_token1] = ACTIONS(6249), - [aux_sym_preproc_elif_token1] = ACTIONS(6249), + [anon_sym_SEMI] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_COLON] = ACTIONS(4353), + [anon_sym_COMMA] = ACTIONS(4353), + [anon_sym_RBRACK] = ACTIONS(4353), + [anon_sym_LPAREN] = ACTIONS(4353), + [anon_sym_RPAREN] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4353), + [anon_sym_RBRACE] = ACTIONS(4353), + [anon_sym_LT] = ACTIONS(4351), + [anon_sym_GT] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4351), + [anon_sym_QMARK] = ACTIONS(4351), + [anon_sym_DOT] = ACTIONS(4351), + [anon_sym_EQ_GT] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_switch] = ACTIONS(4353), + [anon_sym_when] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4353), + [anon_sym_LT_EQ] = ACTIONS(4353), + [anon_sym_GT_EQ] = ACTIONS(4353), + [anon_sym_and] = ACTIONS(4353), + [anon_sym_or] = ACTIONS(4353), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4353), + [anon_sym_PIPE_PIPE] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4351), + [sym_op_bitwise_or] = ACTIONS(4351), + [anon_sym_CARET] = ACTIONS(4353), + [sym_op_left_shift] = ACTIONS(4353), + [sym_op_right_shift] = ACTIONS(4351), + [sym_op_unsigned_right_shift] = ACTIONS(4353), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_DASH] = ACTIONS(4351), + [sym_op_divide] = ACTIONS(4351), + [sym_op_modulo] = ACTIONS(4353), + [sym_op_coalescing] = ACTIONS(4353), + [anon_sym_BANG] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4353), + [anon_sym_DASH_DASH] = ACTIONS(4353), + [anon_sym_into] = ACTIONS(4353), + [anon_sym_on] = ACTIONS(4353), + [anon_sym_equals] = ACTIONS(4353), + [anon_sym_by] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_DASH_GT] = ACTIONS(4353), + [anon_sym_with] = ACTIONS(4353), + [aux_sym_preproc_if_token3] = ACTIONS(4353), + [aux_sym_preproc_else_token1] = ACTIONS(4353), + [aux_sym_preproc_elif_token1] = ACTIONS(4353), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -559009,27 +554645,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3937] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(3937), [sym_preproc_endregion] = STATE(3937), [sym_preproc_line] = STATE(3937), @@ -559039,42 +554654,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3937), [sym_preproc_define] = STATE(3937), [sym_preproc_undef] = STATE(3937), - [aux_sym_array_rank_specifier_repeat1] = STATE(7086), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6253), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_QMARK] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_EQ_GT] = ACTIONS(4361), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_switch] = ACTIONS(4361), + [anon_sym_when] = ACTIONS(4361), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_and] = ACTIONS(4361), + [anon_sym_or] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4359), + [sym_op_bitwise_or] = ACTIONS(4359), + [anon_sym_CARET] = ACTIONS(4361), + [sym_op_left_shift] = ACTIONS(4361), + [sym_op_right_shift] = ACTIONS(4359), + [sym_op_unsigned_right_shift] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [sym_op_divide] = ACTIONS(4359), + [sym_op_modulo] = ACTIONS(4361), + [sym_op_coalescing] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_into] = ACTIONS(4361), + [anon_sym_on] = ACTIONS(4361), + [anon_sym_equals] = ACTIONS(4361), + [anon_sym_by] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4361), + [anon_sym_DASH_GT] = ACTIONS(4361), + [anon_sym_with] = ACTIONS(4361), + [aux_sym_preproc_if_token3] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -559087,27 +554718,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3938] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), [sym_preproc_region] = STATE(3938), [sym_preproc_endregion] = STATE(3938), [sym_preproc_line] = STATE(3938), @@ -559117,42 +554727,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3938), [sym_preproc_define] = STATE(3938), [sym_preproc_undef] = STATE(3938), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_QMARK] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_EQ_GT] = ACTIONS(4361), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_switch] = ACTIONS(4361), + [anon_sym_when] = ACTIONS(4361), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_and] = ACTIONS(4361), + [anon_sym_or] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4359), + [sym_op_bitwise_or] = ACTIONS(4359), + [anon_sym_CARET] = ACTIONS(4361), + [sym_op_left_shift] = ACTIONS(4361), + [sym_op_right_shift] = ACTIONS(4359), + [sym_op_unsigned_right_shift] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [sym_op_divide] = ACTIONS(4359), + [sym_op_modulo] = ACTIONS(4361), + [sym_op_coalescing] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_into] = ACTIONS(4361), + [anon_sym_on] = ACTIONS(4361), + [anon_sym_equals] = ACTIONS(4361), + [anon_sym_by] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4361), + [anon_sym_DASH_GT] = ACTIONS(4361), + [anon_sym_with] = ACTIONS(4361), + [aux_sym_preproc_if_token3] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -559165,27 +554791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3939] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_initializer_expression] = STATE(4572), [sym_preproc_region] = STATE(3939), [sym_preproc_endregion] = STATE(3939), [sym_preproc_line] = STATE(3939), @@ -559195,42 +554801,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3939), [sym_preproc_define] = STATE(3939), [sym_preproc_undef] = STATE(3939), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6041), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6033), - [anon_sym_is] = ACTIONS(6035), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(5540), + [anon_sym_COLON] = ACTIONS(5538), + [anon_sym_COMMA] = ACTIONS(5538), + [anon_sym_RBRACK] = ACTIONS(5538), + [anon_sym_LPAREN] = ACTIONS(5538), + [anon_sym_RPAREN] = ACTIONS(5538), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(5538), + [anon_sym_LT] = ACTIONS(5543), + [anon_sym_GT] = ACTIONS(5543), + [anon_sym_in] = ACTIONS(5538), + [anon_sym_QMARK] = ACTIONS(5543), + [anon_sym_DOT] = ACTIONS(5543), + [anon_sym_EQ_GT] = ACTIONS(5538), + [anon_sym_STAR] = ACTIONS(5538), + [anon_sym_switch] = ACTIONS(5538), + [anon_sym_when] = ACTIONS(5538), + [anon_sym_DOT_DOT] = ACTIONS(5538), + [anon_sym_LT_EQ] = ACTIONS(5538), + [anon_sym_GT_EQ] = ACTIONS(5538), + [anon_sym_and] = ACTIONS(5538), + [anon_sym_or] = ACTIONS(5538), + [anon_sym_EQ_EQ] = ACTIONS(5538), + [anon_sym_BANG_EQ] = ACTIONS(5538), + [anon_sym_AMP_AMP] = ACTIONS(5538), + [anon_sym_PIPE_PIPE] = ACTIONS(5538), + [anon_sym_AMP] = ACTIONS(5543), + [sym_op_bitwise_or] = ACTIONS(5543), + [anon_sym_CARET] = ACTIONS(5538), + [sym_op_left_shift] = ACTIONS(5538), + [sym_op_right_shift] = ACTIONS(5543), + [sym_op_unsigned_right_shift] = ACTIONS(5538), + [anon_sym_PLUS] = ACTIONS(5543), + [anon_sym_DASH] = ACTIONS(5543), + [sym_op_divide] = ACTIONS(5543), + [sym_op_modulo] = ACTIONS(5538), + [sym_op_coalescing] = ACTIONS(5538), + [anon_sym_BANG] = ACTIONS(5543), + [anon_sym_PLUS_PLUS] = ACTIONS(5538), + [anon_sym_DASH_DASH] = ACTIONS(5538), + [anon_sym_on] = ACTIONS(5538), + [anon_sym_equals] = ACTIONS(5538), + [anon_sym_by] = ACTIONS(5538), + [anon_sym_as] = ACTIONS(5538), + [anon_sym_is] = ACTIONS(5538), + [anon_sym_DASH_GT] = ACTIONS(5538), + [anon_sym_with] = ACTIONS(5538), + [aux_sym_preproc_if_token3] = ACTIONS(5538), + [aux_sym_preproc_else_token1] = ACTIONS(5538), + [aux_sym_preproc_elif_token1] = ACTIONS(5538), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -559243,6 +554864,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3940] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3940), [sym_preproc_endregion] = STATE(3940), [sym_preproc_line] = STATE(3940), @@ -559252,63 +554888,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3940), [sym_preproc_define] = STATE(3940), [sym_preproc_undef] = STATE(3940), - [anon_sym_SEMI] = ACTIONS(6255), - [anon_sym_LBRACK] = ACTIONS(6255), - [anon_sym_COLON] = ACTIONS(6255), - [anon_sym_COMMA] = ACTIONS(6255), - [anon_sym_RBRACK] = ACTIONS(6255), - [anon_sym_LPAREN] = ACTIONS(6255), - [anon_sym_RPAREN] = ACTIONS(6255), - [anon_sym_RBRACE] = ACTIONS(6255), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_GT] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_where] = ACTIONS(6255), - [anon_sym_QMARK] = ACTIONS(6257), - [anon_sym_BANG] = ACTIONS(6257), - [anon_sym_PLUS_PLUS] = ACTIONS(6255), - [anon_sym_DASH_DASH] = ACTIONS(6255), - [anon_sym_PLUS] = ACTIONS(6257), - [anon_sym_DASH] = ACTIONS(6257), - [anon_sym_STAR] = ACTIONS(6255), - [anon_sym_SLASH] = ACTIONS(6257), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_CARET] = ACTIONS(6255), - [anon_sym_PIPE] = ACTIONS(6257), - [anon_sym_AMP] = ACTIONS(6257), - [anon_sym_LT_LT] = ACTIONS(6255), - [anon_sym_GT_GT] = ACTIONS(6257), - [anon_sym_GT_GT_GT] = ACTIONS(6255), - [anon_sym_EQ_EQ] = ACTIONS(6255), - [anon_sym_BANG_EQ] = ACTIONS(6255), - [anon_sym_GT_EQ] = ACTIONS(6255), - [anon_sym_LT_EQ] = ACTIONS(6255), - [anon_sym_DOT] = ACTIONS(6257), - [anon_sym_EQ_GT] = ACTIONS(6255), - [anon_sym_switch] = ACTIONS(6255), - [anon_sym_DOT_DOT] = ACTIONS(6255), - [anon_sym_and] = ACTIONS(6255), - [anon_sym_or] = ACTIONS(6257), - [anon_sym_AMP_AMP] = ACTIONS(6255), - [anon_sym_PIPE_PIPE] = ACTIONS(6255), - [sym_op_coalescing] = ACTIONS(6255), - [anon_sym_from] = ACTIONS(6255), - [anon_sym_into] = ACTIONS(6255), - [anon_sym_join] = ACTIONS(6255), - [anon_sym_on] = ACTIONS(6255), - [anon_sym_equals] = ACTIONS(6255), - [anon_sym_let] = ACTIONS(6255), - [anon_sym_orderby] = ACTIONS(6255), - [anon_sym_group] = ACTIONS(6255), - [anon_sym_by] = ACTIONS(6255), - [anon_sym_select] = ACTIONS(6255), - [anon_sym_as] = ACTIONS(6255), - [anon_sym_is] = ACTIONS(6255), - [anon_sym_DASH_GT] = ACTIONS(6255), - [anon_sym_with] = ACTIONS(6255), - [aux_sym_preproc_if_token3] = ACTIONS(6255), - [aux_sym_preproc_else_token1] = ACTIONS(6255), - [aux_sym_preproc_elif_token1] = ACTIONS(6255), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_by] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -559321,27 +554937,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3941] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3941), [sym_preproc_endregion] = STATE(3941), [sym_preproc_line] = STATE(3941), @@ -559351,42 +554961,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3941), [sym_preproc_define] = STATE(3941), [sym_preproc_undef] = STATE(3941), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_by] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -559408,63 +555019,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3942), [sym_preproc_define] = STATE(3942), [sym_preproc_undef] = STATE(3942), - [anon_sym_SEMI] = ACTIONS(5684), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_RBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [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_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [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(5686), - [anon_sym_EQ_GT] = ACTIONS(5684), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5686), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5684), - [anon_sym_from] = ACTIONS(5684), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_join] = ACTIONS(5684), - [anon_sym_on] = ACTIONS(5684), - [anon_sym_equals] = ACTIONS(5684), - [anon_sym_let] = ACTIONS(5684), - [anon_sym_orderby] = ACTIONS(5684), - [anon_sym_group] = ACTIONS(5684), - [anon_sym_by] = ACTIONS(5684), - [anon_sym_select] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_if_token3] = ACTIONS(5684), - [aux_sym_preproc_else_token1] = ACTIONS(5684), - [aux_sym_preproc_elif_token1] = ACTIONS(5684), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(6631), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_into] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -559477,27 +555083,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3943] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3943), [sym_preproc_endregion] = STATE(3943), [sym_preproc_line] = STATE(3943), @@ -559507,42 +555107,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3943), [sym_preproc_define] = STATE(3943), [sym_preproc_undef] = STATE(3943), - [anon_sym_SEMI] = ACTIONS(6259), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6049), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6595), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6607), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -559555,27 +555156,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3944] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3944), [sym_preproc_endregion] = STATE(3944), [sym_preproc_line] = STATE(3944), @@ -559585,41 +555180,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3944), [sym_preproc_define] = STATE(3944), [sym_preproc_undef] = STATE(3944), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4782), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5784), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5788), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6607), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -559630,30 +555227,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(4782), }, [3945] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(3945), [sym_preproc_endregion] = STATE(3945), [sym_preproc_line] = STATE(3945), @@ -559663,42 +555238,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3945), [sym_preproc_define] = STATE(3945), [sym_preproc_undef] = STATE(3945), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6261), - [anon_sym_RBRACK] = ACTIONS(6261), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6261), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(6631), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_into] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -559711,27 +555302,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3946] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), [sym_preproc_region] = STATE(3946), [sym_preproc_endregion] = STATE(3946), [sym_preproc_line] = STATE(3946), @@ -559741,42 +555311,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3946), [sym_preproc_define] = STATE(3946), [sym_preproc_undef] = STATE(3946), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6033), - [anon_sym_is] = ACTIONS(6035), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_into] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -559789,27 +555375,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3947] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), [sym_preproc_region] = STATE(3947), [sym_preproc_endregion] = STATE(3947), [sym_preproc_line] = STATE(3947), @@ -559819,41 +555384,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3947), [sym_preproc_define] = STATE(3947), [sym_preproc_undef] = STATE(3947), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5784), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5788), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(6631), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_into] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -559864,30 +555446,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4748), }, [3948] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3948), [sym_preproc_endregion] = STATE(3948), [sym_preproc_line] = STATE(3948), @@ -559897,42 +555472,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3948), [sym_preproc_define] = STATE(3948), [sym_preproc_undef] = STATE(3948), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6627), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6462), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(6466), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_by] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -559945,6 +555521,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3949] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3949), [sym_preproc_endregion] = STATE(3949), [sym_preproc_line] = STATE(3949), @@ -559954,63 +555545,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3949), [sym_preproc_define] = STATE(3949), [sym_preproc_undef] = STATE(3949), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_COLON] = ACTIONS(3972), - [anon_sym_COMMA] = ACTIONS(3972), - [anon_sym_RBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3972), - [anon_sym_RPAREN] = ACTIONS(3972), - [anon_sym_LBRACE] = ACTIONS(3972), - [anon_sym_RBRACE] = ACTIONS(3972), - [anon_sym_LT] = ACTIONS(3970), - [anon_sym_GT] = ACTIONS(3970), - [anon_sym_in] = ACTIONS(3972), - [anon_sym_where] = ACTIONS(3972), - [anon_sym_QMARK] = ACTIONS(3970), - [anon_sym_BANG] = ACTIONS(3970), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(3970), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_CARET] = ACTIONS(3972), - [anon_sym_PIPE] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_LT_LT] = ACTIONS(3972), - [anon_sym_GT_GT] = ACTIONS(3970), - [anon_sym_GT_GT_GT] = ACTIONS(3972), - [anon_sym_EQ_EQ] = ACTIONS(3972), - [anon_sym_BANG_EQ] = ACTIONS(3972), - [anon_sym_GT_EQ] = ACTIONS(3972), - [anon_sym_LT_EQ] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(3970), - [anon_sym_EQ_GT] = ACTIONS(3972), - [anon_sym_switch] = ACTIONS(3972), - [anon_sym_DOT_DOT] = ACTIONS(3972), - [anon_sym_and] = ACTIONS(3972), - [anon_sym_or] = ACTIONS(3970), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_PIPE_PIPE] = ACTIONS(3972), - [sym_op_coalescing] = ACTIONS(3972), - [anon_sym_from] = ACTIONS(3972), - [anon_sym_join] = ACTIONS(3972), - [anon_sym_on] = ACTIONS(3972), - [anon_sym_equals] = ACTIONS(3972), - [anon_sym_let] = ACTIONS(3972), - [anon_sym_orderby] = ACTIONS(3972), - [anon_sym_group] = ACTIONS(3972), - [anon_sym_by] = ACTIONS(3972), - [anon_sym_select] = ACTIONS(3972), - [anon_sym_as] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3972), - [anon_sym_DASH_GT] = ACTIONS(3972), - [anon_sym_with] = ACTIONS(3972), - [aux_sym_preproc_if_token3] = ACTIONS(3972), - [aux_sym_preproc_else_token1] = ACTIONS(3972), - [aux_sym_preproc_elif_token1] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6627), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6462), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(6466), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_by] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -560023,27 +555594,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3950] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3950), [sym_preproc_endregion] = STATE(3950), [sym_preproc_line] = STATE(3950), @@ -560053,42 +555618,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3950), [sym_preproc_define] = STATE(3950), [sym_preproc_undef] = STATE(3950), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_by] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6627), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6462), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(6466), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_by] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -560101,27 +555667,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3951] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), [sym_preproc_region] = STATE(3951), [sym_preproc_endregion] = STATE(3951), [sym_preproc_line] = STATE(3951), @@ -560131,42 +555676,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3951), [sym_preproc_define] = STATE(3951), [sym_preproc_undef] = STATE(3951), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6033), - [anon_sym_is] = ACTIONS(6035), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_into] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -560179,27 +555740,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3952] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3952), [sym_preproc_endregion] = STATE(3952), [sym_preproc_line] = STATE(3952), @@ -560209,42 +555764,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3952), [sym_preproc_define] = STATE(3952), [sym_preproc_undef] = STATE(3952), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6636), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(6638), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_equals] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -560257,27 +555813,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3953] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3953), [sym_preproc_endregion] = STATE(3953), [sym_preproc_line] = STATE(3953), @@ -560287,42 +555837,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3953), [sym_preproc_define] = STATE(3953), [sym_preproc_undef] = STATE(3953), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_on] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6613), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6615), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5328), + [anon_sym_on] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -560335,27 +555886,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3954] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3954), [sym_preproc_endregion] = STATE(3954), [sym_preproc_line] = STATE(3954), @@ -560365,42 +555910,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3954), [sym_preproc_define] = STATE(3954), [sym_preproc_undef] = STATE(3954), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5304), + [anon_sym_or] = ACTIONS(5304), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6636), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(6638), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_equals] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -560413,6 +555959,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3955] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(3955), [sym_preproc_endregion] = STATE(3955), [sym_preproc_line] = STATE(3955), @@ -560422,63 +555983,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3955), [sym_preproc_define] = STATE(3955), [sym_preproc_undef] = STATE(3955), - [anon_sym_SEMI] = ACTIONS(6263), - [anon_sym_LBRACK] = ACTIONS(6263), - [anon_sym_COLON] = ACTIONS(6263), - [anon_sym_COMMA] = ACTIONS(6263), - [anon_sym_RBRACK] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6263), - [anon_sym_RPAREN] = ACTIONS(6263), - [anon_sym_RBRACE] = ACTIONS(6263), - [anon_sym_LT] = ACTIONS(6265), - [anon_sym_GT] = ACTIONS(6265), - [anon_sym_in] = ACTIONS(6265), - [anon_sym_where] = ACTIONS(6263), - [anon_sym_QMARK] = ACTIONS(6265), - [anon_sym_BANG] = ACTIONS(6265), - [anon_sym_PLUS_PLUS] = ACTIONS(6263), - [anon_sym_DASH_DASH] = ACTIONS(6263), - [anon_sym_PLUS] = ACTIONS(6265), - [anon_sym_DASH] = ACTIONS(6265), - [anon_sym_STAR] = ACTIONS(6263), - [anon_sym_SLASH] = ACTIONS(6265), - [anon_sym_PERCENT] = ACTIONS(6263), - [anon_sym_CARET] = ACTIONS(6263), - [anon_sym_PIPE] = ACTIONS(6265), - [anon_sym_AMP] = ACTIONS(6265), - [anon_sym_LT_LT] = ACTIONS(6263), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6263), - [anon_sym_EQ_EQ] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6263), - [anon_sym_LT_EQ] = ACTIONS(6263), - [anon_sym_DOT] = ACTIONS(6265), - [anon_sym_EQ_GT] = ACTIONS(6263), - [anon_sym_switch] = ACTIONS(6263), - [anon_sym_DOT_DOT] = ACTIONS(6263), - [anon_sym_and] = ACTIONS(6263), - [anon_sym_or] = ACTIONS(6265), - [anon_sym_AMP_AMP] = ACTIONS(6263), - [anon_sym_PIPE_PIPE] = ACTIONS(6263), - [sym_op_coalescing] = ACTIONS(6263), - [anon_sym_from] = ACTIONS(6263), - [anon_sym_into] = ACTIONS(6263), - [anon_sym_join] = ACTIONS(6263), - [anon_sym_on] = ACTIONS(6263), - [anon_sym_equals] = ACTIONS(6263), - [anon_sym_let] = ACTIONS(6263), - [anon_sym_orderby] = ACTIONS(6263), - [anon_sym_group] = ACTIONS(6263), - [anon_sym_by] = ACTIONS(6263), - [anon_sym_select] = ACTIONS(6263), - [anon_sym_as] = ACTIONS(6263), - [anon_sym_is] = ACTIONS(6263), - [anon_sym_DASH_GT] = ACTIONS(6263), - [anon_sym_with] = ACTIONS(6263), - [aux_sym_preproc_if_token3] = ACTIONS(6263), - [aux_sym_preproc_else_token1] = ACTIONS(6263), - [aux_sym_preproc_elif_token1] = ACTIONS(6263), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_RBRACK] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5296), + [anon_sym_RBRACE] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -560491,27 +556032,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3956] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3956), [sym_preproc_endregion] = STATE(3956), [sym_preproc_line] = STATE(3956), @@ -560521,41 +556056,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3956), [sym_preproc_define] = STATE(3956), [sym_preproc_undef] = STATE(3956), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6627), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6462), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(6466), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_by] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -560566,9 +556103,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(1435), }, [3957] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(3957), [sym_preproc_endregion] = STATE(3957), [sym_preproc_line] = STATE(3957), @@ -560578,63 +556129,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3957), [sym_preproc_define] = STATE(3957), [sym_preproc_undef] = STATE(3957), - [anon_sym_SEMI] = ACTIONS(6267), - [anon_sym_LBRACK] = ACTIONS(6267), - [anon_sym_COLON] = ACTIONS(6267), - [anon_sym_COMMA] = ACTIONS(6267), - [anon_sym_RBRACK] = ACTIONS(6267), - [anon_sym_LPAREN] = ACTIONS(6267), - [anon_sym_RPAREN] = ACTIONS(6267), - [anon_sym_RBRACE] = ACTIONS(6267), - [anon_sym_LT] = ACTIONS(6269), - [anon_sym_GT] = ACTIONS(6269), - [anon_sym_in] = ACTIONS(6269), - [anon_sym_where] = ACTIONS(6267), - [anon_sym_QMARK] = ACTIONS(6269), - [anon_sym_BANG] = ACTIONS(6269), - [anon_sym_PLUS_PLUS] = ACTIONS(6267), - [anon_sym_DASH_DASH] = ACTIONS(6267), - [anon_sym_PLUS] = ACTIONS(6269), - [anon_sym_DASH] = ACTIONS(6269), - [anon_sym_STAR] = ACTIONS(6267), - [anon_sym_SLASH] = ACTIONS(6269), - [anon_sym_PERCENT] = ACTIONS(6267), - [anon_sym_CARET] = ACTIONS(6267), - [anon_sym_PIPE] = ACTIONS(6269), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_GT_GT] = ACTIONS(6269), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_EQ_EQ] = ACTIONS(6267), - [anon_sym_BANG_EQ] = ACTIONS(6267), - [anon_sym_GT_EQ] = ACTIONS(6267), - [anon_sym_LT_EQ] = ACTIONS(6267), - [anon_sym_DOT] = ACTIONS(6269), - [anon_sym_EQ_GT] = ACTIONS(6267), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_DOT_DOT] = ACTIONS(6267), - [anon_sym_and] = ACTIONS(6267), - [anon_sym_or] = ACTIONS(6269), - [anon_sym_AMP_AMP] = ACTIONS(6267), - [anon_sym_PIPE_PIPE] = ACTIONS(6267), - [sym_op_coalescing] = ACTIONS(6267), - [anon_sym_from] = ACTIONS(6267), - [anon_sym_into] = ACTIONS(6267), - [anon_sym_join] = ACTIONS(6267), - [anon_sym_on] = ACTIONS(6267), - [anon_sym_equals] = ACTIONS(6267), - [anon_sym_let] = ACTIONS(6267), - [anon_sym_orderby] = ACTIONS(6267), - [anon_sym_group] = ACTIONS(6267), - [anon_sym_by] = ACTIONS(6267), - [anon_sym_select] = ACTIONS(6267), - [anon_sym_as] = ACTIONS(6267), - [anon_sym_is] = ACTIONS(6267), - [anon_sym_DASH_GT] = ACTIONS(6267), - [anon_sym_with] = ACTIONS(6267), - [aux_sym_preproc_if_token3] = ACTIONS(6267), - [aux_sym_preproc_else_token1] = ACTIONS(6267), - [aux_sym_preproc_elif_token1] = ACTIONS(6267), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_RBRACK] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5332), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -560647,27 +556178,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3958] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(3958), [sym_preproc_endregion] = STATE(3958), [sym_preproc_line] = STATE(3958), @@ -560677,42 +556202,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3958), [sym_preproc_define] = STATE(3958), [sym_preproc_undef] = STATE(3958), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), + [aux_sym_preproc_if_token3] = ACTIONS(1365), + [aux_sym_preproc_else_token1] = ACTIONS(1365), + [aux_sym_preproc_elif_token1] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -560725,27 +556251,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3959] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(3959), [sym_preproc_endregion] = STATE(3959), [sym_preproc_line] = STATE(3959), @@ -560755,42 +556275,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3959), [sym_preproc_define] = STATE(3959), [sym_preproc_undef] = STATE(3959), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6468), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5328), + [anon_sym_DOT_DOT] = ACTIONS(6470), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6472), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(6482), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6486), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -560803,27 +556324,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3960] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(3960), [sym_preproc_endregion] = STATE(3960), [sym_preproc_line] = STATE(3960), @@ -560833,42 +556348,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3960), [sym_preproc_define] = STATE(3960), [sym_preproc_undef] = STATE(3960), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), - [aux_sym_preproc_if_token3] = ACTIONS(4752), - [aux_sym_preproc_else_token1] = ACTIONS(4752), - [aux_sym_preproc_elif_token1] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_RBRACK] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5364), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -560881,27 +556397,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3961] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), [sym_preproc_region] = STATE(3961), [sym_preproc_endregion] = STATE(3961), [sym_preproc_line] = STATE(3961), @@ -560911,42 +556406,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3961), [sym_preproc_define] = STATE(3961), [sym_preproc_undef] = STATE(3961), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3957), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [sym_op_left_shift] = ACTIONS(3955), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3955), + [sym_op_coalescing] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -560957,29 +556467,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(3957), }, [3962] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), [sym_preproc_region] = STATE(3962), [sym_preproc_endregion] = STATE(3962), [sym_preproc_line] = STATE(3962), @@ -560989,52 +556479,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3962), [sym_preproc_define] = STATE(3962), [sym_preproc_undef] = STATE(3962), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(6644), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(6646), + [anon_sym_DASH_EQ] = ACTIONS(6646), + [anon_sym_STAR_EQ] = ACTIONS(6646), + [anon_sym_SLASH_EQ] = ACTIONS(6646), + [anon_sym_PERCENT_EQ] = ACTIONS(6646), + [anon_sym_AMP_EQ] = ACTIONS(6646), + [anon_sym_CARET_EQ] = ACTIONS(6646), + [anon_sym_PIPE_EQ] = ACTIONS(6646), + [anon_sym_LT_LT_EQ] = ACTIONS(6646), + [anon_sym_GT_GT_EQ] = ACTIONS(6646), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6646), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6646), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5508), }, [3963] = { [sym_preproc_region] = STATE(3963), @@ -561046,63 +556552,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3963), [sym_preproc_define] = STATE(3963), [sym_preproc_undef] = STATE(3963), - [anon_sym_SEMI] = ACTIONS(6271), - [anon_sym_LBRACK] = ACTIONS(6271), - [anon_sym_COLON] = ACTIONS(6271), - [anon_sym_COMMA] = ACTIONS(6271), - [anon_sym_RBRACK] = ACTIONS(6271), - [anon_sym_LPAREN] = ACTIONS(6271), - [anon_sym_RPAREN] = ACTIONS(6271), - [anon_sym_RBRACE] = ACTIONS(6271), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_in] = ACTIONS(6273), - [anon_sym_where] = ACTIONS(6271), - [anon_sym_QMARK] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PLUS_PLUS] = ACTIONS(6271), - [anon_sym_DASH_DASH] = ACTIONS(6271), - [anon_sym_PLUS] = ACTIONS(6273), - [anon_sym_DASH] = ACTIONS(6273), - [anon_sym_STAR] = ACTIONS(6271), - [anon_sym_SLASH] = ACTIONS(6273), - [anon_sym_PERCENT] = ACTIONS(6271), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_AMP] = ACTIONS(6273), - [anon_sym_LT_LT] = ACTIONS(6271), - [anon_sym_GT_GT] = ACTIONS(6273), - [anon_sym_GT_GT_GT] = ACTIONS(6271), - [anon_sym_EQ_EQ] = ACTIONS(6271), - [anon_sym_BANG_EQ] = ACTIONS(6271), - [anon_sym_GT_EQ] = ACTIONS(6271), - [anon_sym_LT_EQ] = ACTIONS(6271), - [anon_sym_DOT] = ACTIONS(6273), - [anon_sym_EQ_GT] = ACTIONS(6271), - [anon_sym_switch] = ACTIONS(6271), - [anon_sym_DOT_DOT] = ACTIONS(6271), - [anon_sym_and] = ACTIONS(6271), - [anon_sym_or] = ACTIONS(6273), - [anon_sym_AMP_AMP] = ACTIONS(6271), - [anon_sym_PIPE_PIPE] = ACTIONS(6271), - [sym_op_coalescing] = ACTIONS(6271), - [anon_sym_from] = ACTIONS(6271), - [anon_sym_into] = ACTIONS(6271), - [anon_sym_join] = ACTIONS(6271), - [anon_sym_on] = ACTIONS(6271), - [anon_sym_equals] = ACTIONS(6271), - [anon_sym_let] = ACTIONS(6271), - [anon_sym_orderby] = ACTIONS(6271), - [anon_sym_group] = ACTIONS(6271), - [anon_sym_by] = ACTIONS(6271), - [anon_sym_select] = ACTIONS(6271), - [anon_sym_as] = ACTIONS(6271), - [anon_sym_is] = ACTIONS(6271), - [anon_sym_DASH_GT] = ACTIONS(6271), - [anon_sym_with] = ACTIONS(6271), - [aux_sym_preproc_if_token3] = ACTIONS(6271), - [aux_sym_preproc_else_token1] = ACTIONS(6271), - [aux_sym_preproc_elif_token1] = ACTIONS(6271), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_RBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_RPAREN] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3986), + [anon_sym_GT] = ACTIONS(3986), + [anon_sym_in] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3986), + [anon_sym_EQ_GT] = ACTIONS(3997), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_switch] = ACTIONS(3997), + [anon_sym_when] = ACTIONS(3997), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3997), + [anon_sym_or] = ACTIONS(3997), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP] = ACTIONS(3986), + [sym_op_bitwise_or] = ACTIONS(3986), + [anon_sym_CARET] = ACTIONS(3997), + [sym_op_left_shift] = ACTIONS(3997), + [sym_op_right_shift] = ACTIONS(3986), + [sym_op_unsigned_right_shift] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3986), + [anon_sym_DASH] = ACTIONS(3986), + [sym_op_divide] = ACTIONS(3986), + [sym_op_modulo] = ACTIONS(3997), + [sym_op_coalescing] = ACTIONS(3997), + [anon_sym_BANG] = ACTIONS(3986), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_into] = ACTIONS(3997), + [anon_sym_on] = ACTIONS(3997), + [anon_sym_equals] = ACTIONS(3997), + [anon_sym_by] = ACTIONS(3997), + [anon_sym_as] = ACTIONS(3997), + [anon_sym_is] = ACTIONS(3997), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3997), + [aux_sym_preproc_if_token3] = ACTIONS(3997), + [aux_sym_preproc_else_token1] = ACTIONS(3997), + [aux_sym_preproc_elif_token1] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -561115,27 +556616,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3964] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3964), [sym_preproc_endregion] = STATE(3964), [sym_preproc_line] = STATE(3964), @@ -561145,42 +556640,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3964), [sym_preproc_define] = STATE(3964), [sym_preproc_undef] = STATE(3964), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5306), + [anon_sym_QMARK] = ACTIONS(6464), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5304), + [anon_sym_or] = ACTIONS(5304), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6444), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(6446), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -561193,27 +556689,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3965] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3965), [sym_preproc_endregion] = STATE(3965), [sym_preproc_line] = STATE(3965), @@ -561223,42 +556713,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3965), [sym_preproc_define] = STATE(3965), [sym_preproc_undef] = STATE(3965), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5330), + [anon_sym_QMARK] = ACTIONS(6464), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6444), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(6446), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -561271,27 +556762,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3966] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3966), [sym_preproc_endregion] = STATE(3966), [sym_preproc_line] = STATE(3966), @@ -561301,42 +556786,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3966), [sym_preproc_define] = STATE(3966), [sym_preproc_undef] = STATE(3966), - [anon_sym_SEMI] = ACTIONS(4782), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6049), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(6464), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6444), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(6446), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(5571), + [anon_sym_is] = ACTIONS(6432), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -561349,27 +556835,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3967] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3967), [sym_preproc_endregion] = STATE(3967), [sym_preproc_line] = STATE(3967), @@ -561379,42 +556859,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3967), [sym_preproc_define] = STATE(3967), [sym_preproc_undef] = STATE(3967), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_on] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -561427,27 +556908,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3968] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3968), [sym_preproc_endregion] = STATE(3968), [sym_preproc_line] = STATE(3968), @@ -561457,42 +556932,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3968), [sym_preproc_define] = STATE(3968), [sym_preproc_undef] = STATE(3968), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6595), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(6605), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6607), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -561505,27 +556981,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3969] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3969), [sym_preproc_endregion] = STATE(3969), [sym_preproc_line] = STATE(3969), @@ -561535,42 +557005,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3969), [sym_preproc_define] = STATE(3969), [sym_preproc_undef] = STATE(3969), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_in] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -561583,27 +557054,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3970] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3970), [sym_preproc_endregion] = STATE(3970), [sym_preproc_line] = STATE(3970), @@ -561613,42 +557078,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3970), [sym_preproc_define] = STATE(3970), [sym_preproc_undef] = STATE(3970), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(6275), - [aux_sym_preproc_else_token1] = ACTIONS(6275), - [aux_sym_preproc_elif_token1] = ACTIONS(6275), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_in] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -561661,27 +557127,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3971] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(3971), [sym_preproc_endregion] = STATE(3971), [sym_preproc_line] = STATE(3971), @@ -561691,42 +557151,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3971), [sym_preproc_define] = STATE(3971), [sym_preproc_undef] = STATE(3971), - [anon_sym_SEMI] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6627), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6462), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(6466), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5328), + [anon_sym_by] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -561739,27 +557200,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3972] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3972), [sym_preproc_endregion] = STATE(3972), [sym_preproc_line] = STATE(3972), @@ -561769,42 +557224,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3972), [sym_preproc_define] = STATE(3972), [sym_preproc_undef] = STATE(3972), - [aux_sym__for_statement_conditions_repeat1] = STATE(7153), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6277), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6279), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -561826,63 +557282,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3973), [sym_preproc_define] = STATE(3973), [sym_preproc_undef] = STATE(3973), - [anon_sym_SEMI] = ACTIONS(4446), - [anon_sym_LBRACK] = ACTIONS(4446), - [anon_sym_COLON] = ACTIONS(4446), - [anon_sym_COMMA] = ACTIONS(4446), - [anon_sym_RBRACK] = ACTIONS(4446), - [anon_sym_LPAREN] = ACTIONS(4446), - [anon_sym_RPAREN] = ACTIONS(4446), - [anon_sym_LBRACE] = ACTIONS(4446), - [anon_sym_RBRACE] = ACTIONS(4446), - [anon_sym_LT] = ACTIONS(4444), - [anon_sym_GT] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4446), - [anon_sym_where] = ACTIONS(4446), - [anon_sym_QMARK] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4446), - [anon_sym_DASH_DASH] = ACTIONS(4446), - [anon_sym_PLUS] = ACTIONS(4444), - [anon_sym_DASH] = ACTIONS(4444), - [anon_sym_STAR] = ACTIONS(4446), - [anon_sym_SLASH] = ACTIONS(4444), - [anon_sym_PERCENT] = ACTIONS(4446), - [anon_sym_CARET] = ACTIONS(4446), - [anon_sym_PIPE] = ACTIONS(4444), - [anon_sym_AMP] = ACTIONS(4444), - [anon_sym_LT_LT] = ACTIONS(4446), - [anon_sym_GT_GT] = ACTIONS(4444), - [anon_sym_GT_GT_GT] = ACTIONS(4446), - [anon_sym_EQ_EQ] = ACTIONS(4446), - [anon_sym_BANG_EQ] = ACTIONS(4446), - [anon_sym_GT_EQ] = ACTIONS(4446), - [anon_sym_LT_EQ] = ACTIONS(4446), - [anon_sym_DOT] = ACTIONS(4444), - [anon_sym_EQ_GT] = ACTIONS(4446), - [anon_sym_switch] = ACTIONS(4446), - [anon_sym_DOT_DOT] = ACTIONS(4446), - [anon_sym_and] = ACTIONS(4446), - [anon_sym_or] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4446), - [anon_sym_PIPE_PIPE] = ACTIONS(4446), - [sym_op_coalescing] = ACTIONS(4446), - [anon_sym_from] = ACTIONS(4446), - [anon_sym_join] = ACTIONS(4446), - [anon_sym_on] = ACTIONS(4446), - [anon_sym_equals] = ACTIONS(4446), - [anon_sym_let] = ACTIONS(4446), - [anon_sym_orderby] = ACTIONS(4446), - [anon_sym_group] = ACTIONS(4446), - [anon_sym_by] = ACTIONS(4446), - [anon_sym_select] = ACTIONS(4446), - [anon_sym_as] = ACTIONS(4446), - [anon_sym_is] = ACTIONS(4446), - [anon_sym_DASH_GT] = ACTIONS(4446), - [anon_sym_with] = ACTIONS(4446), - [aux_sym_preproc_if_token3] = ACTIONS(4446), - [aux_sym_preproc_else_token1] = ACTIONS(4446), - [aux_sym_preproc_elif_token1] = ACTIONS(4446), + [anon_sym_EQ] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4538), + [anon_sym_COLON] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4538), + [anon_sym_LT] = ACTIONS(4536), + [anon_sym_GT] = ACTIONS(4536), + [anon_sym_QMARK] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4536), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_switch] = ACTIONS(4538), + [anon_sym_DOT_DOT] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4538), + [anon_sym_and] = ACTIONS(4538), + [anon_sym_or] = ACTIONS(4538), + [anon_sym_PLUS_EQ] = ACTIONS(4538), + [anon_sym_DASH_EQ] = ACTIONS(4538), + [anon_sym_STAR_EQ] = ACTIONS(4538), + [anon_sym_SLASH_EQ] = ACTIONS(4538), + [anon_sym_PERCENT_EQ] = ACTIONS(4538), + [anon_sym_AMP_EQ] = ACTIONS(4538), + [anon_sym_CARET_EQ] = ACTIONS(4538), + [anon_sym_PIPE_EQ] = ACTIONS(4538), + [anon_sym_LT_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ] = ACTIONS(4538), + [anon_sym_BANG_EQ] = ACTIONS(4538), + [anon_sym_AMP_AMP] = ACTIONS(4538), + [anon_sym_PIPE_PIPE] = ACTIONS(4538), + [anon_sym_AMP] = ACTIONS(4536), + [sym_op_bitwise_or] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [sym_op_left_shift] = ACTIONS(4536), + [sym_op_right_shift] = ACTIONS(4536), + [sym_op_unsigned_right_shift] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [sym_op_divide] = ACTIONS(4536), + [sym_op_modulo] = ACTIONS(4536), + [sym_op_coalescing] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_PLUS_PLUS] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4538), + [anon_sym_into] = ACTIONS(4538), + [anon_sym_as] = ACTIONS(4538), + [anon_sym_is] = ACTIONS(4538), + [anon_sym_DASH_GT] = ACTIONS(4538), + [anon_sym_with] = ACTIONS(4538), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -561893,8 +557343,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4538), }, [3974] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3974), [sym_preproc_endregion] = STATE(3974), [sym_preproc_line] = STATE(3974), @@ -561904,63 +557370,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3974), [sym_preproc_define] = STATE(3974), [sym_preproc_undef] = STATE(3974), - [anon_sym_SEMI] = ACTIONS(6281), - [anon_sym_LBRACK] = ACTIONS(6281), - [anon_sym_COLON] = ACTIONS(6281), - [anon_sym_COMMA] = ACTIONS(6281), - [anon_sym_RBRACK] = ACTIONS(6281), - [anon_sym_LPAREN] = ACTIONS(6281), - [anon_sym_RPAREN] = ACTIONS(6281), - [anon_sym_RBRACE] = ACTIONS(6281), - [anon_sym_LT] = ACTIONS(6283), - [anon_sym_GT] = ACTIONS(6283), - [anon_sym_in] = ACTIONS(6283), - [anon_sym_where] = ACTIONS(6281), - [anon_sym_QMARK] = ACTIONS(6283), - [anon_sym_BANG] = ACTIONS(6283), - [anon_sym_PLUS_PLUS] = ACTIONS(6281), - [anon_sym_DASH_DASH] = ACTIONS(6281), - [anon_sym_PLUS] = ACTIONS(6283), - [anon_sym_DASH] = ACTIONS(6283), - [anon_sym_STAR] = ACTIONS(6281), - [anon_sym_SLASH] = ACTIONS(6283), - [anon_sym_PERCENT] = ACTIONS(6281), - [anon_sym_CARET] = ACTIONS(6281), - [anon_sym_PIPE] = ACTIONS(6283), - [anon_sym_AMP] = ACTIONS(6283), - [anon_sym_LT_LT] = ACTIONS(6281), - [anon_sym_GT_GT] = ACTIONS(6283), - [anon_sym_GT_GT_GT] = ACTIONS(6281), - [anon_sym_EQ_EQ] = ACTIONS(6281), - [anon_sym_BANG_EQ] = ACTIONS(6281), - [anon_sym_GT_EQ] = ACTIONS(6281), - [anon_sym_LT_EQ] = ACTIONS(6281), - [anon_sym_DOT] = ACTIONS(6283), - [anon_sym_EQ_GT] = ACTIONS(6281), - [anon_sym_switch] = ACTIONS(6281), - [anon_sym_DOT_DOT] = ACTIONS(6281), - [anon_sym_and] = ACTIONS(6281), - [anon_sym_or] = ACTIONS(6283), - [anon_sym_AMP_AMP] = ACTIONS(6281), - [anon_sym_PIPE_PIPE] = ACTIONS(6281), - [sym_op_coalescing] = ACTIONS(6281), - [anon_sym_from] = ACTIONS(6281), - [anon_sym_into] = ACTIONS(6281), - [anon_sym_join] = ACTIONS(6281), - [anon_sym_on] = ACTIONS(6281), - [anon_sym_equals] = ACTIONS(6281), - [anon_sym_let] = ACTIONS(6281), - [anon_sym_orderby] = ACTIONS(6281), - [anon_sym_group] = ACTIONS(6281), - [anon_sym_by] = ACTIONS(6281), - [anon_sym_select] = ACTIONS(6281), - [anon_sym_as] = ACTIONS(6281), - [anon_sym_is] = ACTIONS(6281), - [anon_sym_DASH_GT] = ACTIONS(6281), - [anon_sym_with] = ACTIONS(6281), - [aux_sym_preproc_if_token3] = ACTIONS(6281), - [aux_sym_preproc_else_token1] = ACTIONS(6281), - [aux_sym_preproc_elif_token1] = ACTIONS(6281), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -561973,27 +557419,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3975] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(3975), [sym_preproc_endregion] = STATE(3975), [sym_preproc_line] = STATE(3975), @@ -562003,42 +557443,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3975), [sym_preproc_define] = STATE(3975), [sym_preproc_undef] = STATE(3975), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_equals] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_when] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(6593), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6484), + [anon_sym_is] = ACTIONS(6607), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -562051,27 +557492,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3976] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(3976), [sym_preproc_endregion] = STATE(3976), [sym_preproc_line] = STATE(3976), @@ -562081,42 +557516,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3976), [sym_preproc_define] = STATE(3976), [sym_preproc_undef] = STATE(3976), - [aux_sym_initializer_expression_repeat1] = STATE(7324), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(5973), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_in] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -562129,27 +557565,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3977] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(3977), [sym_preproc_endregion] = STATE(3977), [sym_preproc_line] = STATE(3977), @@ -562159,42 +557589,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3977), [sym_preproc_define] = STATE(3977), [sym_preproc_undef] = STATE(3977), - [aux_sym__for_statement_conditions_repeat1] = STATE(7154), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6277), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6285), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_RBRACK] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -562207,27 +557638,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3978] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3978), [sym_preproc_endregion] = STATE(3978), [sym_preproc_line] = STATE(3978), @@ -562237,42 +557662,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3978), [sym_preproc_define] = STATE(3978), [sym_preproc_undef] = STATE(3978), - [aux_sym__for_statement_conditions_repeat1] = STATE(7155), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6277), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6287), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6636), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(6638), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_equals] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -562285,6 +557711,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3979] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3979), [sym_preproc_endregion] = STATE(3979), [sym_preproc_line] = STATE(3979), @@ -562294,63 +557735,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3979), [sym_preproc_define] = STATE(3979), [sym_preproc_undef] = STATE(3979), - [anon_sym_SEMI] = ACTIONS(6289), - [anon_sym_LBRACK] = ACTIONS(6289), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_COMMA] = ACTIONS(6289), - [anon_sym_RBRACK] = ACTIONS(6289), - [anon_sym_LPAREN] = ACTIONS(6289), - [anon_sym_RPAREN] = ACTIONS(6289), - [anon_sym_RBRACE] = ACTIONS(6289), - [anon_sym_LT] = ACTIONS(6291), - [anon_sym_GT] = ACTIONS(6291), - [anon_sym_in] = ACTIONS(6291), - [anon_sym_where] = ACTIONS(6289), - [anon_sym_QMARK] = ACTIONS(6291), - [anon_sym_BANG] = ACTIONS(6291), - [anon_sym_PLUS_PLUS] = ACTIONS(6289), - [anon_sym_DASH_DASH] = ACTIONS(6289), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6289), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_PERCENT] = ACTIONS(6289), - [anon_sym_CARET] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6291), - [anon_sym_AMP] = ACTIONS(6291), - [anon_sym_LT_LT] = ACTIONS(6289), - [anon_sym_GT_GT] = ACTIONS(6291), - [anon_sym_GT_GT_GT] = ACTIONS(6289), - [anon_sym_EQ_EQ] = ACTIONS(6289), - [anon_sym_BANG_EQ] = ACTIONS(6289), - [anon_sym_GT_EQ] = ACTIONS(6289), - [anon_sym_LT_EQ] = ACTIONS(6289), - [anon_sym_DOT] = ACTIONS(6291), - [anon_sym_EQ_GT] = ACTIONS(6289), - [anon_sym_switch] = ACTIONS(6289), - [anon_sym_DOT_DOT] = ACTIONS(6289), - [anon_sym_and] = ACTIONS(6289), - [anon_sym_or] = ACTIONS(6291), - [anon_sym_AMP_AMP] = ACTIONS(6289), - [anon_sym_PIPE_PIPE] = ACTIONS(6289), - [sym_op_coalescing] = ACTIONS(6289), - [anon_sym_from] = ACTIONS(6289), - [anon_sym_into] = ACTIONS(6289), - [anon_sym_join] = ACTIONS(6289), - [anon_sym_on] = ACTIONS(6289), - [anon_sym_equals] = ACTIONS(6289), - [anon_sym_let] = ACTIONS(6289), - [anon_sym_orderby] = ACTIONS(6289), - [anon_sym_group] = ACTIONS(6289), - [anon_sym_by] = ACTIONS(6289), - [anon_sym_select] = ACTIONS(6289), - [anon_sym_as] = ACTIONS(6289), - [anon_sym_is] = ACTIONS(6289), - [anon_sym_DASH_GT] = ACTIONS(6289), - [anon_sym_with] = ACTIONS(6289), - [aux_sym_preproc_if_token3] = ACTIONS(6289), - [aux_sym_preproc_else_token1] = ACTIONS(6289), - [aux_sym_preproc_elif_token1] = ACTIONS(6289), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -562363,6 +557784,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3980] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3980), [sym_preproc_endregion] = STATE(3980), [sym_preproc_line] = STATE(3980), @@ -562372,63 +557808,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3980), [sym_preproc_define] = STATE(3980), [sym_preproc_undef] = STATE(3980), - [anon_sym_SEMI] = ACTIONS(6293), - [anon_sym_LBRACK] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6293), - [anon_sym_COMMA] = ACTIONS(6293), - [anon_sym_RBRACK] = ACTIONS(6293), - [anon_sym_LPAREN] = ACTIONS(6293), - [anon_sym_RPAREN] = ACTIONS(6293), - [anon_sym_RBRACE] = ACTIONS(6293), - [anon_sym_LT] = ACTIONS(6295), - [anon_sym_GT] = ACTIONS(6295), - [anon_sym_in] = ACTIONS(6295), - [anon_sym_where] = ACTIONS(6293), - [anon_sym_QMARK] = ACTIONS(6295), - [anon_sym_BANG] = ACTIONS(6295), - [anon_sym_PLUS_PLUS] = ACTIONS(6293), - [anon_sym_DASH_DASH] = ACTIONS(6293), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6293), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_PERCENT] = ACTIONS(6293), - [anon_sym_CARET] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6295), - [anon_sym_AMP] = ACTIONS(6295), - [anon_sym_LT_LT] = ACTIONS(6293), - [anon_sym_GT_GT] = ACTIONS(6295), - [anon_sym_GT_GT_GT] = ACTIONS(6293), - [anon_sym_EQ_EQ] = ACTIONS(6293), - [anon_sym_BANG_EQ] = ACTIONS(6293), - [anon_sym_GT_EQ] = ACTIONS(6293), - [anon_sym_LT_EQ] = ACTIONS(6293), - [anon_sym_DOT] = ACTIONS(6295), - [anon_sym_EQ_GT] = ACTIONS(6293), - [anon_sym_switch] = ACTIONS(6293), - [anon_sym_DOT_DOT] = ACTIONS(6293), - [anon_sym_and] = ACTIONS(6293), - [anon_sym_or] = ACTIONS(6295), - [anon_sym_AMP_AMP] = ACTIONS(6293), - [anon_sym_PIPE_PIPE] = ACTIONS(6293), - [sym_op_coalescing] = ACTIONS(6293), - [anon_sym_from] = ACTIONS(6293), - [anon_sym_into] = ACTIONS(6293), - [anon_sym_join] = ACTIONS(6293), - [anon_sym_on] = ACTIONS(6293), - [anon_sym_equals] = ACTIONS(6293), - [anon_sym_let] = ACTIONS(6293), - [anon_sym_orderby] = ACTIONS(6293), - [anon_sym_group] = ACTIONS(6293), - [anon_sym_by] = ACTIONS(6293), - [anon_sym_select] = ACTIONS(6293), - [anon_sym_as] = ACTIONS(6293), - [anon_sym_is] = ACTIONS(6293), - [anon_sym_DASH_GT] = ACTIONS(6293), - [anon_sym_with] = ACTIONS(6293), - [aux_sym_preproc_if_token3] = ACTIONS(6293), - [aux_sym_preproc_else_token1] = ACTIONS(6293), - [aux_sym_preproc_elif_token1] = ACTIONS(6293), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6636), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(6638), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -562441,27 +557857,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3981] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3981), [sym_preproc_endregion] = STATE(3981), [sym_preproc_line] = STATE(3981), @@ -562471,42 +557881,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3981), [sym_preproc_define] = STATE(3981), [sym_preproc_undef] = STATE(3981), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), - [aux_sym_preproc_if_token3] = ACTIONS(4774), - [aux_sym_preproc_else_token1] = ACTIONS(4774), - [aux_sym_preproc_elif_token1] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -562519,27 +557930,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3982] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3982), [sym_preproc_endregion] = STATE(3982), [sym_preproc_line] = STATE(3982), @@ -562549,42 +557954,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3982), [sym_preproc_define] = STATE(3982), [sym_preproc_undef] = STATE(3982), - [anon_sym_SEMI] = ACTIONS(4778), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6049), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6636), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -562597,27 +558003,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3983] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3983), [sym_preproc_endregion] = STATE(3983), [sym_preproc_line] = STATE(3983), @@ -562627,42 +558027,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3983), [sym_preproc_define] = STATE(3983), [sym_preproc_undef] = STATE(3983), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6636), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -562675,27 +558076,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3984] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3984), [sym_preproc_endregion] = STATE(3984), [sym_preproc_line] = STATE(3984), @@ -562705,42 +558100,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3984), [sym_preproc_define] = STATE(3984), [sym_preproc_undef] = STATE(3984), - [anon_sym_SEMI] = ACTIONS(4748), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6049), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -562753,27 +558149,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3985] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3985), [sym_preproc_endregion] = STATE(3985), [sym_preproc_line] = STATE(3985), @@ -562783,42 +558173,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3985), [sym_preproc_define] = STATE(3985), [sym_preproc_undef] = STATE(3985), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(6297), - [aux_sym_preproc_else_token1] = ACTIONS(6297), - [aux_sym_preproc_elif_token1] = ACTIONS(6297), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -562831,27 +558222,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3986] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), [sym_preproc_region] = STATE(3986), [sym_preproc_endregion] = STATE(3986), [sym_preproc_line] = STATE(3986), @@ -562861,42 +558231,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3986), [sym_preproc_define] = STATE(3986), [sym_preproc_undef] = STATE(3986), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4748), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6021), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6023), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_COLON] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_switch] = ACTIONS(4006), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(4006), + [anon_sym_or] = ACTIONS(4006), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -562907,29 +558292,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4006), }, [3987] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3987), [sym_preproc_endregion] = STATE(3987), [sym_preproc_line] = STATE(3987), @@ -562939,41 +558319,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3987), [sym_preproc_define] = STATE(3987), [sym_preproc_undef] = STATE(3987), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4766), - [anon_sym_COMMA] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6636), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(6638), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_equals] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -562984,30 +558366,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4766), }, [3988] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(3988), [sym_preproc_endregion] = STATE(3988), [sym_preproc_line] = STATE(3988), @@ -563017,43 +558392,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3988), [sym_preproc_define] = STATE(3988), [sym_preproc_undef] = STATE(3988), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), - [aux_sym_preproc_if_token3] = ACTIONS(4766), - [aux_sym_preproc_else_token1] = ACTIONS(4766), - [aux_sym_preproc_elif_token1] = ACTIONS(4766), - [aux_sym_preproc_region_token1] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_RBRACK] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5336), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), @@ -563065,27 +558441,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3989] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(3989), [sym_preproc_endregion] = STATE(3989), [sym_preproc_line] = STATE(3989), @@ -563095,42 +558465,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3989), [sym_preproc_define] = STATE(3989), [sym_preproc_undef] = STATE(3989), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6636), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(6638), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_equals] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -563143,27 +558514,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3990] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(3990), [sym_preproc_endregion] = STATE(3990), [sym_preproc_line] = STATE(3990), @@ -563173,42 +558538,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3990), [sym_preproc_define] = STATE(3990), [sym_preproc_undef] = STATE(3990), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), - [aux_sym_preproc_if_token3] = ACTIONS(4794), - [aux_sym_preproc_else_token1] = ACTIONS(4794), - [aux_sym_preproc_elif_token1] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -563221,27 +558587,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3991] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(3991), [sym_preproc_endregion] = STATE(3991), [sym_preproc_line] = STATE(3991), @@ -563251,42 +558611,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3991), [sym_preproc_define] = STATE(3991), [sym_preproc_undef] = STATE(3991), - [aux_sym_array_rank_specifier_repeat1] = STATE(7124), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6299), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -563299,27 +558660,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3992] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(3992), [sym_preproc_endregion] = STATE(3992), [sym_preproc_line] = STATE(3992), @@ -563329,42 +558684,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3992), [sym_preproc_define] = STATE(3992), [sym_preproc_undef] = STATE(3992), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_on] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -563377,27 +558733,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3993] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3993), [sym_preproc_endregion] = STATE(3993), [sym_preproc_line] = STATE(3993), @@ -563407,42 +558757,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3993), [sym_preproc_define] = STATE(3993), [sym_preproc_undef] = STATE(3993), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6613), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6615), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_on] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -563455,27 +558806,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3994] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3994), [sym_preproc_endregion] = STATE(3994), [sym_preproc_line] = STATE(3994), @@ -563485,42 +558830,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3994), [sym_preproc_define] = STATE(3994), [sym_preproc_undef] = STATE(3994), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6013), - [anon_sym_is] = ACTIONS(6015), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6613), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6615), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_on] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -563533,6 +558879,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3995] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(3995), [sym_preproc_endregion] = STATE(3995), [sym_preproc_line] = STATE(3995), @@ -563542,63 +558903,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3995), [sym_preproc_define] = STATE(3995), [sym_preproc_undef] = STATE(3995), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LBRACK] = ACTIONS(4810), - [anon_sym_COLON] = ACTIONS(4810), - [anon_sym_COMMA] = ACTIONS(4810), - [anon_sym_RBRACK] = ACTIONS(4810), - [anon_sym_LPAREN] = ACTIONS(4810), - [anon_sym_RPAREN] = ACTIONS(4810), - [anon_sym_RBRACE] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4812), - [anon_sym_GT] = ACTIONS(4812), - [anon_sym_in] = ACTIONS(4812), - [anon_sym_where] = ACTIONS(4810), - [anon_sym_QMARK] = ACTIONS(4812), - [anon_sym_BANG] = ACTIONS(4812), - [anon_sym_PLUS_PLUS] = ACTIONS(4810), - [anon_sym_DASH_DASH] = ACTIONS(4810), - [anon_sym_PLUS] = ACTIONS(4812), - [anon_sym_DASH] = ACTIONS(4812), - [anon_sym_STAR] = ACTIONS(4810), - [anon_sym_SLASH] = ACTIONS(4812), - [anon_sym_PERCENT] = ACTIONS(4810), - [anon_sym_CARET] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4812), - [anon_sym_AMP] = ACTIONS(4812), - [anon_sym_LT_LT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4812), - [anon_sym_GT_GT_GT] = ACTIONS(4810), - [anon_sym_EQ_EQ] = ACTIONS(4810), - [anon_sym_BANG_EQ] = ACTIONS(4810), - [anon_sym_GT_EQ] = ACTIONS(4810), - [anon_sym_LT_EQ] = ACTIONS(4810), - [anon_sym_DOT] = ACTIONS(4812), - [anon_sym_EQ_GT] = ACTIONS(4810), - [anon_sym_switch] = ACTIONS(4810), - [anon_sym_DOT_DOT] = ACTIONS(4810), - [anon_sym_and] = ACTIONS(4810), - [anon_sym_or] = ACTIONS(4812), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym_op_coalescing] = ACTIONS(4810), - [anon_sym_from] = ACTIONS(4810), - [anon_sym_into] = ACTIONS(4810), - [anon_sym_join] = ACTIONS(4810), - [anon_sym_on] = ACTIONS(4810), - [anon_sym_equals] = ACTIONS(4810), - [anon_sym_let] = ACTIONS(4810), - [anon_sym_orderby] = ACTIONS(4810), - [anon_sym_group] = ACTIONS(4810), - [anon_sym_by] = ACTIONS(4810), - [anon_sym_select] = ACTIONS(4810), - [anon_sym_as] = ACTIONS(4810), - [anon_sym_is] = ACTIONS(4810), - [anon_sym_DASH_GT] = ACTIONS(4810), - [anon_sym_with] = ACTIONS(4810), - [aux_sym_preproc_if_token3] = ACTIONS(4810), - [aux_sym_preproc_else_token1] = ACTIONS(4810), - [aux_sym_preproc_elif_token1] = ACTIONS(4810), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -563611,27 +558952,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3996] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1598), - [sym_op_lte] = STATE(1598), - [sym_op_eq] = STATE(1601), - [sym_op_neq] = STATE(1601), - [sym_op_gt] = STATE(1598), - [sym_op_gte] = STATE(1598), - [sym_op_and] = STATE(1605), - [sym_op_or] = STATE(1607), - [sym_op_bitwise_and] = STATE(1615), - [sym_op_bitwise_or] = STATE(1619), - [sym_op_bitwise_xor] = STATE(1621), - [sym_op_left_shift] = STATE(1622), - [sym_op_right_shift] = STATE(1622), - [sym_op_unsigned_right_shift] = STATE(1622), - [sym_op_plus] = STATE(1624), - [sym_op_minus] = STATE(1624), - [sym_op_multiply] = STATE(1628), - [sym_op_divide] = STATE(1628), - [sym_op_modulo] = STATE(1628), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3996), [sym_preproc_endregion] = STATE(3996), [sym_preproc_line] = STATE(3996), @@ -563641,42 +558976,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3996), [sym_preproc_define] = STATE(3996), [sym_preproc_undef] = STATE(3996), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(6221), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5819), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5821), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6613), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6615), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_on] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -563689,27 +559025,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3997] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3997), [sym_preproc_endregion] = STATE(3997), [sym_preproc_line] = STATE(3997), @@ -563719,42 +559049,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3997), [sym_preproc_define] = STATE(3997), [sym_preproc_undef] = STATE(3997), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4778), - [aux_sym_preproc_else_token1] = ACTIONS(4778), - [aux_sym_preproc_elif_token1] = ACTIONS(4778), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6613), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6615), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_on] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -563767,27 +559098,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3998] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3998), [sym_preproc_endregion] = STATE(3998), [sym_preproc_line] = STATE(3998), @@ -563797,42 +559122,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3998), [sym_preproc_define] = STATE(3998), [sym_preproc_undef] = STATE(3998), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -563845,6 +559171,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3999] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(3999), [sym_preproc_endregion] = STATE(3999), [sym_preproc_line] = STATE(3999), @@ -563854,63 +559195,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3999), [sym_preproc_define] = STATE(3999), [sym_preproc_undef] = STATE(3999), - [anon_sym_SEMI] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_COLON] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_RBRACK] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_RPAREN] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4008), - [anon_sym_GT] = ACTIONS(4008), - [anon_sym_in] = ACTIONS(4017), - [anon_sym_where] = ACTIONS(4017), - [anon_sym_QMARK] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4017), - [anon_sym_SLASH] = ACTIONS(4008), - [anon_sym_PERCENT] = ACTIONS(4017), - [anon_sym_CARET] = ACTIONS(4017), - [anon_sym_PIPE] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(4017), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_GT_GT_GT] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4017), - [anon_sym_switch] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(4017), - [anon_sym_and] = ACTIONS(4017), - [anon_sym_or] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [sym_op_coalescing] = ACTIONS(4017), - [anon_sym_from] = ACTIONS(4017), - [anon_sym_join] = ACTIONS(4017), - [anon_sym_on] = ACTIONS(4017), - [anon_sym_equals] = ACTIONS(4017), - [anon_sym_let] = ACTIONS(4017), - [anon_sym_orderby] = ACTIONS(4017), - [anon_sym_group] = ACTIONS(4017), - [anon_sym_by] = ACTIONS(4017), - [anon_sym_select] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4017), - [anon_sym_DASH_GT] = ACTIONS(4017), - [anon_sym_with] = ACTIONS(4017), - [aux_sym_preproc_if_token3] = ACTIONS(4017), - [aux_sym_preproc_else_token1] = ACTIONS(4017), - [aux_sym_preproc_elif_token1] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -563923,27 +559244,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4000] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(4000), [sym_preproc_endregion] = STATE(4000), [sym_preproc_line] = STATE(4000), @@ -563953,42 +559268,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4000), [sym_preproc_define] = STATE(4000), [sym_preproc_undef] = STATE(4000), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6301), - [anon_sym_RBRACK] = ACTIONS(6301), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6301), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6615), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -564001,27 +559317,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4001] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(4001), [sym_preproc_endregion] = STATE(4001), [sym_preproc_line] = STATE(4001), @@ -564031,42 +559341,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4001), [sym_preproc_define] = STATE(4001), [sym_preproc_undef] = STATE(4001), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6301), - [anon_sym_RBRACK] = ACTIONS(6301), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6301), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6615), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -564079,27 +559390,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4002] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(4002), [sym_preproc_endregion] = STATE(4002), [sym_preproc_line] = STATE(4002), @@ -564109,42 +559414,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4002), [sym_preproc_define] = STATE(4002), [sym_preproc_undef] = STATE(4002), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6303), - [anon_sym_RBRACK] = ACTIONS(6303), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6303), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -564157,27 +559463,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4003] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(4003), [sym_preproc_endregion] = STATE(4003), [sym_preproc_line] = STATE(4003), @@ -564187,42 +559487,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4003), [sym_preproc_define] = STATE(4003), [sym_preproc_undef] = STATE(4003), - [aux_sym__for_statement_conditions_repeat1] = STATE(7261), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6277), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6305), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6615), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -564235,27 +559536,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4004] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(4004), [sym_preproc_endregion] = STATE(4004), [sym_preproc_line] = STATE(4004), @@ -564265,42 +559560,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4004), [sym_preproc_define] = STATE(4004), [sym_preproc_undef] = STATE(4004), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6307), - [anon_sym_RBRACK] = ACTIONS(6307), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6307), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -564313,27 +559609,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4005] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(4005), [sym_preproc_endregion] = STATE(4005), [sym_preproc_line] = STATE(4005), @@ -564343,41 +559633,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4005), [sym_preproc_define] = STATE(4005), [sym_preproc_undef] = STATE(4005), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4708), - [anon_sym_COMMA] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5784), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5788), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6613), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6615), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_on] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(6619), + [anon_sym_is] = ACTIONS(6621), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -564388,9 +559680,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4708), }, [4006] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4006), [sym_preproc_endregion] = STATE(4006), [sym_preproc_line] = STATE(4006), @@ -564400,63 +559706,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4006), [sym_preproc_define] = STATE(4006), [sym_preproc_undef] = STATE(4006), - [anon_sym_SEMI] = ACTIONS(6309), - [anon_sym_LBRACK] = ACTIONS(6309), - [anon_sym_COLON] = ACTIONS(6309), - [anon_sym_COMMA] = ACTIONS(6309), - [anon_sym_RBRACK] = ACTIONS(6309), - [anon_sym_LPAREN] = ACTIONS(6309), - [anon_sym_RPAREN] = ACTIONS(6309), - [anon_sym_RBRACE] = ACTIONS(6309), - [anon_sym_LT] = ACTIONS(6311), - [anon_sym_GT] = ACTIONS(6311), - [anon_sym_in] = ACTIONS(6311), - [anon_sym_where] = ACTIONS(6309), - [anon_sym_QMARK] = ACTIONS(6311), - [anon_sym_BANG] = ACTIONS(6311), - [anon_sym_PLUS_PLUS] = ACTIONS(6309), - [anon_sym_DASH_DASH] = ACTIONS(6309), - [anon_sym_PLUS] = ACTIONS(6311), - [anon_sym_DASH] = ACTIONS(6311), - [anon_sym_STAR] = ACTIONS(6309), - [anon_sym_SLASH] = ACTIONS(6311), - [anon_sym_PERCENT] = ACTIONS(6309), - [anon_sym_CARET] = ACTIONS(6309), - [anon_sym_PIPE] = ACTIONS(6311), - [anon_sym_AMP] = ACTIONS(6311), - [anon_sym_LT_LT] = ACTIONS(6309), - [anon_sym_GT_GT] = ACTIONS(6311), - [anon_sym_GT_GT_GT] = ACTIONS(6309), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_GT_EQ] = ACTIONS(6309), - [anon_sym_LT_EQ] = ACTIONS(6309), - [anon_sym_DOT] = ACTIONS(6311), - [anon_sym_EQ_GT] = ACTIONS(6309), - [anon_sym_switch] = ACTIONS(6309), - [anon_sym_DOT_DOT] = ACTIONS(6309), - [anon_sym_and] = ACTIONS(6309), - [anon_sym_or] = ACTIONS(6311), - [anon_sym_AMP_AMP] = ACTIONS(6309), - [anon_sym_PIPE_PIPE] = ACTIONS(6309), - [sym_op_coalescing] = ACTIONS(6309), - [anon_sym_from] = ACTIONS(6309), - [anon_sym_into] = ACTIONS(6309), - [anon_sym_join] = ACTIONS(6309), - [anon_sym_on] = ACTIONS(6309), - [anon_sym_equals] = ACTIONS(6309), - [anon_sym_let] = ACTIONS(6309), - [anon_sym_orderby] = ACTIONS(6309), - [anon_sym_group] = ACTIONS(6309), - [anon_sym_by] = ACTIONS(6309), - [anon_sym_select] = ACTIONS(6309), - [anon_sym_as] = ACTIONS(6309), - [anon_sym_is] = ACTIONS(6309), - [anon_sym_DASH_GT] = ACTIONS(6309), - [anon_sym_with] = ACTIONS(6309), - [aux_sym_preproc_if_token3] = ACTIONS(6309), - [aux_sym_preproc_else_token1] = ACTIONS(6309), - [aux_sym_preproc_elif_token1] = ACTIONS(6309), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -564469,6 +559755,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4007] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(4007), [sym_preproc_endregion] = STATE(4007), [sym_preproc_line] = STATE(4007), @@ -564478,63 +559779,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4007), [sym_preproc_define] = STATE(4007), [sym_preproc_undef] = STATE(4007), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_RBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_LBRACE] = ACTIONS(3957), - [anon_sym_RBRACE] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3955), - [anon_sym_GT] = ACTIONS(3955), - [anon_sym_in] = ACTIONS(3957), - [anon_sym_where] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3955), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3955), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_EQ_GT] = ACTIONS(3957), - [anon_sym_switch] = ACTIONS(3957), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3957), - [anon_sym_or] = ACTIONS(3955), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [sym_op_coalescing] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3957), - [anon_sym_join] = ACTIONS(3957), - [anon_sym_on] = ACTIONS(3957), - [anon_sym_equals] = ACTIONS(3957), - [anon_sym_let] = ACTIONS(3957), - [anon_sym_orderby] = ACTIONS(3957), - [anon_sym_group] = ACTIONS(3957), - [anon_sym_by] = ACTIONS(3957), - [anon_sym_select] = ACTIONS(3957), - [anon_sym_as] = ACTIONS(3957), - [anon_sym_is] = ACTIONS(3957), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3957), - [aux_sym_preproc_if_token3] = ACTIONS(3957), - [aux_sym_preproc_else_token1] = ACTIONS(3957), - [aux_sym_preproc_elif_token1] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_in] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6422), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -564547,27 +559828,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4008] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_modifier] = STATE(5123), + [sym_identifier] = STATE(6715), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(4008), [sym_preproc_endregion] = STATE(4008), [sym_preproc_line] = STATE(4008), @@ -564577,42 +559840,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4008), [sym_preproc_define] = STATE(4008), [sym_preproc_undef] = STATE(4008), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6122), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6126), - [anon_sym_by] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(6128), - [anon_sym_is] = ACTIONS(6130), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4484), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(5394), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_unsafe] = ACTIONS(5394), + [anon_sym_static] = ACTIONS(5394), + [anon_sym_public] = ACTIONS(5394), + [anon_sym_private] = ACTIONS(5394), + [anon_sym_readonly] = ACTIONS(5394), + [anon_sym_abstract] = ACTIONS(5394), + [anon_sym_async] = ACTIONS(5394), + [anon_sym_const] = ACTIONS(5394), + [anon_sym_file] = ACTIONS(5400), + [anon_sym_fixed] = ACTIONS(5394), + [anon_sym_internal] = ACTIONS(5394), + [anon_sym_new] = ACTIONS(5394), + [anon_sym_override] = ACTIONS(5394), + [anon_sym_partial] = ACTIONS(5394), + [anon_sym_protected] = ACTIONS(5394), + [anon_sym_required] = ACTIONS(5394), + [anon_sym_sealed] = ACTIONS(5394), + [anon_sym_virtual] = ACTIONS(5394), + [anon_sym_volatile] = ACTIONS(5394), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [sym_accessor_get] = ACTIONS(6648), + [sym_accessor_set] = ACTIONS(6648), + [sym_accessor_add] = ACTIONS(6648), + [sym_accessor_remove] = ACTIONS(6648), + [sym_accessor_init] = ACTIONS(6648), + [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), + [sym_grit_metavariable] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -564625,27 +559901,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4009] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4009), [sym_preproc_endregion] = STATE(4009), [sym_preproc_line] = STATE(4009), @@ -564655,42 +559925,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4009), [sym_preproc_define] = STATE(4009), [sym_preproc_undef] = STATE(4009), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6039), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6041), - [anon_sym_on] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(6033), - [anon_sym_is] = ACTIONS(6035), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -564703,27 +559974,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4010] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4010), [sym_preproc_endregion] = STATE(4010), [sym_preproc_line] = STATE(4010), @@ -564733,42 +559998,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4010), [sym_preproc_define] = STATE(4010), [sym_preproc_undef] = STATE(4010), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -564781,27 +560047,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4011] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(4011), [sym_preproc_endregion] = STATE(4011), [sym_preproc_line] = STATE(4011), @@ -564811,42 +560071,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4011), [sym_preproc_define] = STATE(4011), [sym_preproc_undef] = STATE(4011), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6045), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6013), - [anon_sym_is] = ACTIONS(6015), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6636), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(6638), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_equals] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -564859,6 +560120,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4012] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(4012), [sym_preproc_endregion] = STATE(4012), [sym_preproc_line] = STATE(4012), @@ -564868,63 +560144,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4012), [sym_preproc_define] = STATE(4012), [sym_preproc_undef] = STATE(4012), - [anon_sym_SEMI] = ACTIONS(6313), - [anon_sym_LBRACK] = ACTIONS(6313), - [anon_sym_COLON] = ACTIONS(6313), - [anon_sym_COMMA] = ACTIONS(6313), - [anon_sym_RBRACK] = ACTIONS(6313), - [anon_sym_LPAREN] = ACTIONS(6313), - [anon_sym_RPAREN] = ACTIONS(6313), - [anon_sym_RBRACE] = ACTIONS(6313), - [anon_sym_LT] = ACTIONS(6315), - [anon_sym_GT] = ACTIONS(6315), - [anon_sym_in] = ACTIONS(6315), - [anon_sym_where] = ACTIONS(6313), - [anon_sym_QMARK] = ACTIONS(6315), - [anon_sym_BANG] = ACTIONS(6315), - [anon_sym_PLUS_PLUS] = ACTIONS(6313), - [anon_sym_DASH_DASH] = ACTIONS(6313), - [anon_sym_PLUS] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6315), - [anon_sym_STAR] = ACTIONS(6313), - [anon_sym_SLASH] = ACTIONS(6315), - [anon_sym_PERCENT] = ACTIONS(6313), - [anon_sym_CARET] = ACTIONS(6313), - [anon_sym_PIPE] = ACTIONS(6315), - [anon_sym_AMP] = ACTIONS(6315), - [anon_sym_LT_LT] = ACTIONS(6313), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6313), - [anon_sym_EQ_EQ] = ACTIONS(6313), - [anon_sym_BANG_EQ] = ACTIONS(6313), - [anon_sym_GT_EQ] = ACTIONS(6313), - [anon_sym_LT_EQ] = ACTIONS(6313), - [anon_sym_DOT] = ACTIONS(6315), - [anon_sym_EQ_GT] = ACTIONS(6313), - [anon_sym_switch] = ACTIONS(6313), - [anon_sym_DOT_DOT] = ACTIONS(6313), - [anon_sym_and] = ACTIONS(6313), - [anon_sym_or] = ACTIONS(6315), - [anon_sym_AMP_AMP] = ACTIONS(6313), - [anon_sym_PIPE_PIPE] = ACTIONS(6313), - [sym_op_coalescing] = ACTIONS(6313), - [anon_sym_from] = ACTIONS(6313), - [anon_sym_into] = ACTIONS(6313), - [anon_sym_join] = ACTIONS(6313), - [anon_sym_on] = ACTIONS(6313), - [anon_sym_equals] = ACTIONS(6313), - [anon_sym_let] = ACTIONS(6313), - [anon_sym_orderby] = ACTIONS(6313), - [anon_sym_group] = ACTIONS(6313), - [anon_sym_by] = ACTIONS(6313), - [anon_sym_select] = ACTIONS(6313), - [anon_sym_as] = ACTIONS(6313), - [anon_sym_is] = ACTIONS(6313), - [anon_sym_DASH_GT] = ACTIONS(6313), - [anon_sym_with] = ACTIONS(6313), - [aux_sym_preproc_if_token3] = ACTIONS(6313), - [aux_sym_preproc_else_token1] = ACTIONS(6313), - [aux_sym_preproc_elif_token1] = ACTIONS(6313), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_by] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -564937,27 +560193,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4013] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(4013), [sym_preproc_endregion] = STATE(4013), [sym_preproc_line] = STATE(4013), @@ -564967,42 +560217,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4013), [sym_preproc_define] = STATE(4013), [sym_preproc_undef] = STATE(4013), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6122), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6126), - [anon_sym_by] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(6128), - [anon_sym_is] = ACTIONS(6130), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_by] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -565015,27 +560266,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4014] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(4014), [sym_preproc_endregion] = STATE(4014), [sym_preproc_line] = STATE(4014), @@ -565045,41 +560290,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4014), [sym_preproc_define] = STATE(4014), [sym_preproc_undef] = STATE(4014), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4778), - [anon_sym_COMMA] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5784), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5788), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6636), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(6638), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_equals] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -565090,30 +560337,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(4778), }, [4015] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), [sym_preproc_region] = STATE(4015), [sym_preproc_endregion] = STATE(4015), [sym_preproc_line] = STATE(4015), @@ -565123,42 +560348,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4015), [sym_preproc_define] = STATE(4015), [sym_preproc_undef] = STATE(4015), + [anon_sym_EQ] = ACTIONS(6650), [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6122), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6126), - [anon_sym_by] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(6128), - [anon_sym_is] = ACTIONS(6130), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(6652), + [anon_sym_DASH_EQ] = ACTIONS(6652), + [anon_sym_STAR_EQ] = ACTIONS(6652), + [anon_sym_SLASH_EQ] = ACTIONS(6652), + [anon_sym_PERCENT_EQ] = ACTIONS(6652), + [anon_sym_AMP_EQ] = ACTIONS(6652), + [anon_sym_CARET_EQ] = ACTIONS(6652), + [anon_sym_PIPE_EQ] = ACTIONS(6652), + [anon_sym_LT_LT_EQ] = ACTIONS(6652), + [anon_sym_GT_GT_EQ] = ACTIONS(6652), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6652), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6652), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -565171,6 +560412,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4016] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(4016), [sym_preproc_endregion] = STATE(4016), [sym_preproc_line] = STATE(4016), @@ -565180,63 +560436,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4016), [sym_preproc_define] = STATE(4016), [sym_preproc_undef] = STATE(4016), - [anon_sym_SEMI] = ACTIONS(6317), - [anon_sym_LBRACK] = ACTIONS(6317), - [anon_sym_COLON] = ACTIONS(6317), - [anon_sym_COMMA] = ACTIONS(6317), - [anon_sym_RBRACK] = ACTIONS(6317), - [anon_sym_LPAREN] = ACTIONS(6317), - [anon_sym_RPAREN] = ACTIONS(6317), - [anon_sym_RBRACE] = ACTIONS(6317), - [anon_sym_LT] = ACTIONS(6319), - [anon_sym_GT] = ACTIONS(6319), - [anon_sym_in] = ACTIONS(6319), - [anon_sym_where] = ACTIONS(6317), - [anon_sym_QMARK] = ACTIONS(6319), - [anon_sym_BANG] = ACTIONS(6319), - [anon_sym_PLUS_PLUS] = ACTIONS(6317), - [anon_sym_DASH_DASH] = ACTIONS(6317), - [anon_sym_PLUS] = ACTIONS(6319), - [anon_sym_DASH] = ACTIONS(6319), - [anon_sym_STAR] = ACTIONS(6317), - [anon_sym_SLASH] = ACTIONS(6319), - [anon_sym_PERCENT] = ACTIONS(6317), - [anon_sym_CARET] = ACTIONS(6317), - [anon_sym_PIPE] = ACTIONS(6319), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_GT_GT] = ACTIONS(6319), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_EQ_EQ] = ACTIONS(6317), - [anon_sym_BANG_EQ] = ACTIONS(6317), - [anon_sym_GT_EQ] = ACTIONS(6317), - [anon_sym_LT_EQ] = ACTIONS(6317), - [anon_sym_DOT] = ACTIONS(6319), - [anon_sym_EQ_GT] = ACTIONS(6317), - [anon_sym_switch] = ACTIONS(6317), - [anon_sym_DOT_DOT] = ACTIONS(6317), - [anon_sym_and] = ACTIONS(6317), - [anon_sym_or] = ACTIONS(6319), - [anon_sym_AMP_AMP] = ACTIONS(6317), - [anon_sym_PIPE_PIPE] = ACTIONS(6317), - [sym_op_coalescing] = ACTIONS(6317), - [anon_sym_from] = ACTIONS(6317), - [anon_sym_into] = ACTIONS(6317), - [anon_sym_join] = ACTIONS(6317), - [anon_sym_on] = ACTIONS(6317), - [anon_sym_equals] = ACTIONS(6317), - [anon_sym_let] = ACTIONS(6317), - [anon_sym_orderby] = ACTIONS(6317), - [anon_sym_group] = ACTIONS(6317), - [anon_sym_by] = ACTIONS(6317), - [anon_sym_select] = ACTIONS(6317), - [anon_sym_as] = ACTIONS(6317), - [anon_sym_is] = ACTIONS(6317), - [anon_sym_DASH_GT] = ACTIONS(6317), - [anon_sym_with] = ACTIONS(6317), - [aux_sym_preproc_if_token3] = ACTIONS(6317), - [aux_sym_preproc_else_token1] = ACTIONS(6317), - [aux_sym_preproc_elif_token1] = ACTIONS(6317), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6627), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5232), + [anon_sym_or] = ACTIONS(5232), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6462), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(6466), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_by] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -565249,27 +560485,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4017] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4017), [sym_preproc_endregion] = STATE(4017), [sym_preproc_line] = STATE(4017), @@ -565279,42 +560509,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4017), [sym_preproc_define] = STATE(4017), [sym_preproc_undef] = STATE(4017), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6122), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6126), - [anon_sym_by] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(6128), - [anon_sym_is] = ACTIONS(6130), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -565327,27 +560558,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4018] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(4018), [sym_preproc_endregion] = STATE(4018), [sym_preproc_line] = STATE(4018), @@ -565357,42 +560582,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4018), [sym_preproc_define] = STATE(4018), [sym_preproc_undef] = STATE(4018), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6023), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6579), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6636), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(6638), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5328), + [anon_sym_equals] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(6640), + [anon_sym_is] = ACTIONS(6642), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -565405,27 +560631,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4019] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(4019), [sym_preproc_endregion] = STATE(4019), [sym_preproc_line] = STATE(4019), @@ -565435,42 +560655,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4019), [sym_preproc_define] = STATE(4019), [sym_preproc_undef] = STATE(4019), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6023), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6627), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5551), + [anon_sym_DOT_DOT] = ACTIONS(6448), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5304), + [anon_sym_or] = ACTIONS(5304), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6462), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(6466), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_by] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(6458), + [anon_sym_is] = ACTIONS(6460), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5575), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -565483,6 +560704,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4020] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4020), [sym_preproc_endregion] = STATE(4020), [sym_preproc_line] = STATE(4020), @@ -565492,63 +560728,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4020), [sym_preproc_define] = STATE(4020), [sym_preproc_undef] = STATE(4020), - [anon_sym_SEMI] = ACTIONS(6321), - [anon_sym_LBRACK] = ACTIONS(6321), - [anon_sym_COLON] = ACTIONS(6321), - [anon_sym_COMMA] = ACTIONS(6321), - [anon_sym_RBRACK] = ACTIONS(6321), - [anon_sym_LPAREN] = ACTIONS(6321), - [anon_sym_RPAREN] = ACTIONS(6321), - [anon_sym_RBRACE] = ACTIONS(6321), - [anon_sym_LT] = ACTIONS(6323), - [anon_sym_GT] = ACTIONS(6323), - [anon_sym_in] = ACTIONS(6323), - [anon_sym_where] = ACTIONS(6321), - [anon_sym_QMARK] = ACTIONS(6323), - [anon_sym_BANG] = ACTIONS(6323), - [anon_sym_PLUS_PLUS] = ACTIONS(6321), - [anon_sym_DASH_DASH] = ACTIONS(6321), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6321), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_PERCENT] = ACTIONS(6321), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_AMP] = ACTIONS(6323), - [anon_sym_LT_LT] = ACTIONS(6321), - [anon_sym_GT_GT] = ACTIONS(6323), - [anon_sym_GT_GT_GT] = ACTIONS(6321), - [anon_sym_EQ_EQ] = ACTIONS(6321), - [anon_sym_BANG_EQ] = ACTIONS(6321), - [anon_sym_GT_EQ] = ACTIONS(6321), - [anon_sym_LT_EQ] = ACTIONS(6321), - [anon_sym_DOT] = ACTIONS(6323), - [anon_sym_EQ_GT] = ACTIONS(6321), - [anon_sym_switch] = ACTIONS(6321), - [anon_sym_DOT_DOT] = ACTIONS(6321), - [anon_sym_and] = ACTIONS(6321), - [anon_sym_or] = ACTIONS(6323), - [anon_sym_AMP_AMP] = ACTIONS(6321), - [anon_sym_PIPE_PIPE] = ACTIONS(6321), - [sym_op_coalescing] = ACTIONS(6321), - [anon_sym_from] = ACTIONS(6321), - [anon_sym_into] = ACTIONS(6321), - [anon_sym_join] = ACTIONS(6321), - [anon_sym_on] = ACTIONS(6321), - [anon_sym_equals] = ACTIONS(6321), - [anon_sym_let] = ACTIONS(6321), - [anon_sym_orderby] = ACTIONS(6321), - [anon_sym_group] = ACTIONS(6321), - [anon_sym_by] = ACTIONS(6321), - [anon_sym_select] = ACTIONS(6321), - [anon_sym_as] = ACTIONS(6321), - [anon_sym_is] = ACTIONS(6321), - [anon_sym_DASH_GT] = ACTIONS(6321), - [anon_sym_with] = ACTIONS(6321), - [aux_sym_preproc_if_token3] = ACTIONS(6321), - [aux_sym_preproc_else_token1] = ACTIONS(6321), - [aux_sym_preproc_elif_token1] = ACTIONS(6321), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -565561,27 +560777,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4021] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4021), [sym_preproc_endregion] = STATE(4021), [sym_preproc_line] = STATE(4021), @@ -565591,42 +560801,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4021), [sym_preproc_define] = STATE(4021), [sym_preproc_undef] = STATE(4021), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_by] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -565639,27 +560850,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4022] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4022), [sym_preproc_endregion] = STATE(4022), [sym_preproc_line] = STATE(4022), @@ -565669,42 +560874,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4022), [sym_preproc_define] = STATE(4022), [sym_preproc_undef] = STATE(4022), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6122), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6126), - [anon_sym_by] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(6128), - [anon_sym_is] = ACTIONS(6130), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -565717,27 +560923,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4023] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4023), [sym_preproc_endregion] = STATE(4023), [sym_preproc_line] = STATE(4023), @@ -565747,42 +560947,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4023), [sym_preproc_define] = STATE(4023), [sym_preproc_undef] = STATE(4023), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_RBRACK] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5360), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -565795,27 +560996,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4024] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), [sym_preproc_region] = STATE(4024), [sym_preproc_endregion] = STATE(4024), [sym_preproc_line] = STATE(4024), @@ -565825,42 +561005,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4024), [sym_preproc_define] = STATE(4024), [sym_preproc_undef] = STATE(4024), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6144), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6146), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(6654), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_interface] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_record] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -565873,27 +561069,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4025] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4025), [sym_preproc_endregion] = STATE(4025), [sym_preproc_line] = STATE(4025), @@ -565903,42 +561078,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4025), [sym_preproc_define] = STATE(4025), [sym_preproc_undef] = STATE(4025), - [aux_sym__for_statement_conditions_repeat1] = STATE(7170), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6277), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6325), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_EQ] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(6658), + [anon_sym_DASH_EQ] = ACTIONS(6658), + [anon_sym_STAR_EQ] = ACTIONS(6658), + [anon_sym_SLASH_EQ] = ACTIONS(6658), + [anon_sym_PERCENT_EQ] = ACTIONS(6658), + [anon_sym_AMP_EQ] = ACTIONS(6658), + [anon_sym_CARET_EQ] = ACTIONS(6658), + [anon_sym_PIPE_EQ] = ACTIONS(6658), + [anon_sym_LT_LT_EQ] = ACTIONS(6658), + [anon_sym_GT_GT_EQ] = ACTIONS(6658), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6658), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6658), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -565951,27 +561141,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4026] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4026), [sym_preproc_endregion] = STATE(4026), [sym_preproc_line] = STATE(4026), @@ -565981,42 +561165,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4026), [sym_preproc_define] = STATE(4026), [sym_preproc_undef] = STATE(4026), - [aux_sym__for_statement_conditions_repeat1] = STATE(7172), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6277), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6327), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_array_rank_specifier_repeat1] = STATE(7130), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(6660), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -566029,27 +561213,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4027] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4027), [sym_preproc_endregion] = STATE(4027), [sym_preproc_line] = STATE(4027), @@ -566059,42 +561237,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4027), [sym_preproc_define] = STATE(4027), [sym_preproc_undef] = STATE(4027), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [aux_sym_array_rank_specifier_repeat1] = STATE(7069), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(6662), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -566107,27 +561285,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4028] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), [sym_preproc_region] = STATE(4028), [sym_preproc_endregion] = STATE(4028), [sym_preproc_line] = STATE(4028), @@ -566137,75 +561294,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4028), [sym_preproc_define] = STATE(4028), [sym_preproc_undef] = STATE(4028), + [anon_sym_EQ] = ACTIONS(6664), [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6023), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(6666), + [anon_sym_DASH_EQ] = ACTIONS(6666), + [anon_sym_STAR_EQ] = ACTIONS(6666), + [anon_sym_SLASH_EQ] = ACTIONS(6666), + [anon_sym_PERCENT_EQ] = ACTIONS(6666), + [anon_sym_AMP_EQ] = ACTIONS(6666), + [anon_sym_CARET_EQ] = ACTIONS(6666), + [anon_sym_PIPE_EQ] = ACTIONS(6666), + [anon_sym_LT_LT_EQ] = ACTIONS(6666), + [anon_sym_GT_GT_EQ] = ACTIONS(6666), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6666), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6666), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5508), }, [4029] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4029), [sym_preproc_endregion] = STATE(4029), [sym_preproc_line] = STATE(4029), @@ -566215,42 +561366,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4029), [sym_preproc_define] = STATE(4029), [sym_preproc_undef] = STATE(4029), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6329), - [anon_sym_RBRACK] = ACTIONS(6329), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [sym__identifier_token] = ACTIONS(6668), + [anon_sym_extern] = ACTIONS(6668), + [anon_sym_alias] = ACTIONS(6668), + [anon_sym_global] = ACTIONS(6668), + [anon_sym_unsafe] = ACTIONS(6668), + [anon_sym_static] = ACTIONS(6668), + [anon_sym_LBRACK] = ACTIONS(6670), + [anon_sym_RBRACE] = ACTIONS(6670), + [anon_sym_public] = ACTIONS(6668), + [anon_sym_private] = ACTIONS(6668), + [anon_sym_readonly] = ACTIONS(6668), + [anon_sym_abstract] = ACTIONS(6668), + [anon_sym_async] = ACTIONS(6668), + [anon_sym_const] = ACTIONS(6668), + [anon_sym_file] = ACTIONS(6668), + [anon_sym_fixed] = ACTIONS(6668), + [anon_sym_internal] = ACTIONS(6668), + [anon_sym_new] = ACTIONS(6668), + [anon_sym_override] = ACTIONS(6668), + [anon_sym_partial] = ACTIONS(6668), + [anon_sym_protected] = ACTIONS(6668), + [anon_sym_required] = ACTIONS(6668), + [anon_sym_sealed] = ACTIONS(6668), + [anon_sym_virtual] = ACTIONS(6668), + [anon_sym_volatile] = ACTIONS(6668), + [anon_sym_where] = ACTIONS(6668), + [anon_sym_notnull] = ACTIONS(6668), + [anon_sym_unmanaged] = ACTIONS(6668), + [sym_accessor_get] = ACTIONS(6668), + [sym_accessor_set] = ACTIONS(6668), + [sym_accessor_add] = ACTIONS(6668), + [sym_accessor_remove] = ACTIONS(6668), + [sym_accessor_init] = ACTIONS(6668), + [anon_sym_scoped] = ACTIONS(6668), + [anon_sym_var] = ACTIONS(6668), + [anon_sym_yield] = ACTIONS(6668), + [anon_sym_when] = ACTIONS(6668), + [anon_sym_from] = ACTIONS(6668), + [anon_sym_into] = ACTIONS(6668), + [anon_sym_join] = ACTIONS(6668), + [anon_sym_on] = ACTIONS(6668), + [anon_sym_equals] = ACTIONS(6668), + [anon_sym_let] = ACTIONS(6668), + [anon_sym_orderby] = ACTIONS(6668), + [anon_sym_ascending] = ACTIONS(6668), + [anon_sym_descending] = ACTIONS(6668), + [anon_sym_group] = ACTIONS(6668), + [anon_sym_by] = ACTIONS(6668), + [anon_sym_select] = ACTIONS(6668), + [sym_grit_metavariable] = ACTIONS(6670), + [aux_sym_preproc_if_token1] = ACTIONS(6670), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -566263,27 +561429,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4030] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4030), [sym_preproc_endregion] = STATE(4030), [sym_preproc_line] = STATE(4030), @@ -566293,42 +561438,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4030), [sym_preproc_define] = STATE(4030), [sym_preproc_undef] = STATE(4030), - [aux_sym__for_statement_conditions_repeat1] = STATE(7128), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6277), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6331), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [sym__identifier_token] = ACTIONS(6672), + [anon_sym_extern] = ACTIONS(6672), + [anon_sym_alias] = ACTIONS(6672), + [anon_sym_global] = ACTIONS(6672), + [anon_sym_unsafe] = ACTIONS(6672), + [anon_sym_static] = ACTIONS(6672), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACE] = ACTIONS(6674), + [anon_sym_public] = ACTIONS(6672), + [anon_sym_private] = ACTIONS(6672), + [anon_sym_readonly] = ACTIONS(6672), + [anon_sym_abstract] = ACTIONS(6672), + [anon_sym_async] = ACTIONS(6672), + [anon_sym_const] = ACTIONS(6672), + [anon_sym_file] = ACTIONS(6672), + [anon_sym_fixed] = ACTIONS(6672), + [anon_sym_internal] = ACTIONS(6672), + [anon_sym_new] = ACTIONS(6672), + [anon_sym_override] = ACTIONS(6672), + [anon_sym_partial] = ACTIONS(6672), + [anon_sym_protected] = ACTIONS(6672), + [anon_sym_required] = ACTIONS(6672), + [anon_sym_sealed] = ACTIONS(6672), + [anon_sym_virtual] = ACTIONS(6672), + [anon_sym_volatile] = ACTIONS(6672), + [anon_sym_where] = ACTIONS(6672), + [anon_sym_notnull] = ACTIONS(6672), + [anon_sym_unmanaged] = ACTIONS(6672), + [sym_accessor_get] = ACTIONS(6672), + [sym_accessor_set] = ACTIONS(6672), + [sym_accessor_add] = ACTIONS(6672), + [sym_accessor_remove] = ACTIONS(6672), + [sym_accessor_init] = ACTIONS(6672), + [anon_sym_scoped] = ACTIONS(6672), + [anon_sym_var] = ACTIONS(6672), + [anon_sym_yield] = ACTIONS(6672), + [anon_sym_when] = ACTIONS(6672), + [anon_sym_from] = ACTIONS(6672), + [anon_sym_into] = ACTIONS(6672), + [anon_sym_join] = ACTIONS(6672), + [anon_sym_on] = ACTIONS(6672), + [anon_sym_equals] = ACTIONS(6672), + [anon_sym_let] = ACTIONS(6672), + [anon_sym_orderby] = ACTIONS(6672), + [anon_sym_ascending] = ACTIONS(6672), + [anon_sym_descending] = ACTIONS(6672), + [anon_sym_group] = ACTIONS(6672), + [anon_sym_by] = ACTIONS(6672), + [anon_sym_select] = ACTIONS(6672), + [sym_grit_metavariable] = ACTIONS(6674), + [aux_sym_preproc_if_token1] = ACTIONS(6674), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -566341,27 +561501,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4031] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), [sym_preproc_region] = STATE(4031), [sym_preproc_endregion] = STATE(4031), [sym_preproc_line] = STATE(4031), @@ -566371,42 +561510,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4031), [sym_preproc_define] = STATE(4031), [sym_preproc_undef] = STATE(4031), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6144), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6146), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5783), + [anon_sym_LBRACK] = ACTIONS(5783), + [anon_sym_COLON] = ACTIONS(5783), + [anon_sym_COMMA] = ACTIONS(5783), + [anon_sym_RBRACK] = ACTIONS(5783), + [anon_sym_LPAREN] = ACTIONS(5783), + [anon_sym_RPAREN] = ACTIONS(5783), + [anon_sym_RBRACE] = ACTIONS(5783), + [anon_sym_LT] = ACTIONS(5785), + [anon_sym_GT] = ACTIONS(5785), + [anon_sym_in] = ACTIONS(5785), + [anon_sym_QMARK] = ACTIONS(5785), + [anon_sym_DOT] = ACTIONS(5785), + [anon_sym_EQ_GT] = ACTIONS(5783), + [anon_sym_STAR] = ACTIONS(5783), + [anon_sym_switch] = ACTIONS(5783), + [anon_sym_when] = ACTIONS(5783), + [anon_sym_DOT_DOT] = ACTIONS(5783), + [anon_sym_LT_EQ] = ACTIONS(5783), + [anon_sym_GT_EQ] = ACTIONS(5783), + [anon_sym_and] = ACTIONS(5783), + [anon_sym_or] = ACTIONS(5783), + [anon_sym_EQ_EQ] = ACTIONS(5783), + [anon_sym_BANG_EQ] = ACTIONS(5783), + [anon_sym_AMP_AMP] = ACTIONS(5783), + [anon_sym_PIPE_PIPE] = ACTIONS(5783), + [anon_sym_AMP] = ACTIONS(5785), + [sym_op_bitwise_or] = ACTIONS(5785), + [anon_sym_CARET] = ACTIONS(5783), + [sym_op_left_shift] = ACTIONS(5783), + [sym_op_right_shift] = ACTIONS(5785), + [sym_op_unsigned_right_shift] = ACTIONS(5783), + [anon_sym_PLUS] = ACTIONS(5785), + [anon_sym_DASH] = ACTIONS(5785), + [sym_op_divide] = ACTIONS(5785), + [sym_op_modulo] = ACTIONS(5783), + [sym_op_coalescing] = ACTIONS(5783), + [anon_sym_BANG] = ACTIONS(5785), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_into] = ACTIONS(5783), + [anon_sym_on] = ACTIONS(5783), + [anon_sym_equals] = ACTIONS(5783), + [anon_sym_by] = ACTIONS(5783), + [anon_sym_as] = ACTIONS(5783), + [anon_sym_is] = ACTIONS(5783), + [anon_sym_DASH_GT] = ACTIONS(5783), + [anon_sym_with] = ACTIONS(5783), + [aux_sym_preproc_if_token3] = ACTIONS(5783), + [aux_sym_preproc_else_token1] = ACTIONS(5783), + [aux_sym_preproc_elif_token1] = ACTIONS(5783), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -566419,27 +561573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4032] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_initializer_expression] = STATE(4574), [sym_preproc_region] = STATE(4032), [sym_preproc_endregion] = STATE(4032), [sym_preproc_line] = STATE(4032), @@ -566449,42 +561583,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4032), [sym_preproc_define] = STATE(4032), [sym_preproc_undef] = STATE(4032), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6144), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6146), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_COLON] = ACTIONS(5628), + [anon_sym_COMMA] = ACTIONS(5628), + [anon_sym_RBRACK] = ACTIONS(5628), + [anon_sym_LPAREN] = ACTIONS(5628), + [anon_sym_RPAREN] = ACTIONS(5628), + [anon_sym_LBRACE] = ACTIONS(6676), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_LT] = ACTIONS(5634), + [anon_sym_GT] = ACTIONS(5634), + [anon_sym_QMARK] = ACTIONS(6679), + [anon_sym_DOT] = ACTIONS(5634), + [anon_sym_EQ_GT] = ACTIONS(5628), + [anon_sym_STAR] = ACTIONS(5628), + [anon_sym_switch] = ACTIONS(5628), + [anon_sym_when] = ACTIONS(5628), + [anon_sym_DOT_DOT] = ACTIONS(5628), + [anon_sym_LT_EQ] = ACTIONS(5628), + [anon_sym_GT_EQ] = ACTIONS(5628), + [anon_sym_and] = ACTIONS(5628), + [anon_sym_or] = ACTIONS(5628), + [anon_sym_EQ_EQ] = ACTIONS(5628), + [anon_sym_BANG_EQ] = ACTIONS(5628), + [anon_sym_AMP_AMP] = ACTIONS(5628), + [anon_sym_PIPE_PIPE] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(5634), + [sym_op_bitwise_or] = ACTIONS(5634), + [anon_sym_CARET] = ACTIONS(5628), + [sym_op_left_shift] = ACTIONS(5628), + [sym_op_right_shift] = ACTIONS(5634), + [sym_op_unsigned_right_shift] = ACTIONS(5628), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [sym_op_divide] = ACTIONS(5634), + [sym_op_modulo] = ACTIONS(5628), + [sym_op_coalescing] = ACTIONS(5628), + [anon_sym_BANG] = ACTIONS(5634), + [anon_sym_PLUS_PLUS] = ACTIONS(5628), + [anon_sym_DASH_DASH] = ACTIONS(5628), + [anon_sym_on] = ACTIONS(5628), + [anon_sym_equals] = ACTIONS(5628), + [anon_sym_by] = ACTIONS(5628), + [anon_sym_as] = ACTIONS(5628), + [anon_sym_is] = ACTIONS(5628), + [anon_sym_DASH_GT] = ACTIONS(5628), + [anon_sym_with] = ACTIONS(5628), + [aux_sym_preproc_if_token3] = ACTIONS(5628), + [aux_sym_preproc_else_token1] = ACTIONS(5628), + [aux_sym_preproc_elif_token1] = ACTIONS(5628), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -566497,27 +561645,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4033] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4033), [sym_preproc_endregion] = STATE(4033), [sym_preproc_line] = STATE(4033), @@ -566527,42 +561654,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4033), [sym_preproc_define] = STATE(4033), [sym_preproc_undef] = STATE(4033), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6333), - [anon_sym_RBRACK] = ACTIONS(6333), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6333), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [sym__identifier_token] = ACTIONS(6683), + [anon_sym_extern] = ACTIONS(6683), + [anon_sym_alias] = ACTIONS(6683), + [anon_sym_global] = ACTIONS(6683), + [anon_sym_unsafe] = ACTIONS(6683), + [anon_sym_static] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(6685), + [anon_sym_RBRACE] = ACTIONS(6685), + [anon_sym_public] = ACTIONS(6683), + [anon_sym_private] = ACTIONS(6683), + [anon_sym_readonly] = ACTIONS(6683), + [anon_sym_abstract] = ACTIONS(6683), + [anon_sym_async] = ACTIONS(6683), + [anon_sym_const] = ACTIONS(6683), + [anon_sym_file] = ACTIONS(6683), + [anon_sym_fixed] = ACTIONS(6683), + [anon_sym_internal] = ACTIONS(6683), + [anon_sym_new] = ACTIONS(6683), + [anon_sym_override] = ACTIONS(6683), + [anon_sym_partial] = ACTIONS(6683), + [anon_sym_protected] = ACTIONS(6683), + [anon_sym_required] = ACTIONS(6683), + [anon_sym_sealed] = ACTIONS(6683), + [anon_sym_virtual] = ACTIONS(6683), + [anon_sym_volatile] = ACTIONS(6683), + [anon_sym_where] = ACTIONS(6683), + [anon_sym_notnull] = ACTIONS(6683), + [anon_sym_unmanaged] = ACTIONS(6683), + [sym_accessor_get] = ACTIONS(6683), + [sym_accessor_set] = ACTIONS(6683), + [sym_accessor_add] = ACTIONS(6683), + [sym_accessor_remove] = ACTIONS(6683), + [sym_accessor_init] = ACTIONS(6683), + [anon_sym_scoped] = ACTIONS(6683), + [anon_sym_var] = ACTIONS(6683), + [anon_sym_yield] = ACTIONS(6683), + [anon_sym_when] = ACTIONS(6683), + [anon_sym_from] = ACTIONS(6683), + [anon_sym_into] = ACTIONS(6683), + [anon_sym_join] = ACTIONS(6683), + [anon_sym_on] = ACTIONS(6683), + [anon_sym_equals] = ACTIONS(6683), + [anon_sym_let] = ACTIONS(6683), + [anon_sym_orderby] = ACTIONS(6683), + [anon_sym_ascending] = ACTIONS(6683), + [anon_sym_descending] = ACTIONS(6683), + [anon_sym_group] = ACTIONS(6683), + [anon_sym_by] = ACTIONS(6683), + [anon_sym_select] = ACTIONS(6683), + [sym_grit_metavariable] = ACTIONS(6685), + [aux_sym_preproc_if_token1] = ACTIONS(6685), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -566575,6 +561717,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4034] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4034), [sym_preproc_endregion] = STATE(4034), [sym_preproc_line] = STATE(4034), @@ -566584,63 +561741,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4034), [sym_preproc_define] = STATE(4034), [sym_preproc_undef] = STATE(4034), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_LBRACK] = ACTIONS(3976), - [anon_sym_COLON] = ACTIONS(3976), - [anon_sym_COMMA] = ACTIONS(3976), - [anon_sym_RBRACK] = ACTIONS(3976), - [anon_sym_LPAREN] = ACTIONS(3976), - [anon_sym_RPAREN] = ACTIONS(3976), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_RBRACE] = ACTIONS(3976), - [anon_sym_LT] = ACTIONS(3974), - [anon_sym_GT] = ACTIONS(3974), - [anon_sym_in] = ACTIONS(3976), - [anon_sym_where] = ACTIONS(3976), - [anon_sym_QMARK] = ACTIONS(3974), - [anon_sym_BANG] = ACTIONS(3974), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_SLASH] = ACTIONS(3974), - [anon_sym_PERCENT] = ACTIONS(3976), - [anon_sym_CARET] = ACTIONS(3976), - [anon_sym_PIPE] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_LT_LT] = ACTIONS(3976), - [anon_sym_GT_GT] = ACTIONS(3974), - [anon_sym_GT_GT_GT] = ACTIONS(3976), - [anon_sym_EQ_EQ] = ACTIONS(3976), - [anon_sym_BANG_EQ] = ACTIONS(3976), - [anon_sym_GT_EQ] = ACTIONS(3976), - [anon_sym_LT_EQ] = ACTIONS(3976), - [anon_sym_DOT] = ACTIONS(3974), - [anon_sym_EQ_GT] = ACTIONS(3976), - [anon_sym_switch] = ACTIONS(3976), - [anon_sym_DOT_DOT] = ACTIONS(3976), - [anon_sym_and] = ACTIONS(3976), - [anon_sym_or] = ACTIONS(3974), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_PIPE_PIPE] = ACTIONS(3976), - [sym_op_coalescing] = ACTIONS(3976), - [anon_sym_from] = ACTIONS(3976), - [anon_sym_join] = ACTIONS(3976), - [anon_sym_on] = ACTIONS(3976), - [anon_sym_equals] = ACTIONS(3976), - [anon_sym_let] = ACTIONS(3976), - [anon_sym_orderby] = ACTIONS(3976), - [anon_sym_group] = ACTIONS(3976), - [anon_sym_by] = ACTIONS(3976), - [anon_sym_select] = ACTIONS(3976), - [anon_sym_as] = ACTIONS(3976), - [anon_sym_is] = ACTIONS(3976), - [anon_sym_DASH_GT] = ACTIONS(3976), - [anon_sym_with] = ACTIONS(3976), - [aux_sym_preproc_if_token3] = ACTIONS(3976), - [aux_sym_preproc_else_token1] = ACTIONS(3976), - [aux_sym_preproc_elif_token1] = ACTIONS(3976), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6697), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -566653,27 +561789,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4035] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7869), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4035), [sym_preproc_endregion] = STATE(4035), [sym_preproc_line] = STATE(4035), @@ -566683,42 +561818,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4035), [sym_preproc_define] = STATE(4035), [sym_preproc_undef] = STATE(4035), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4708), - [anon_sym_or] = ACTIONS(4708), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6144), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6146), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -566731,6 +561861,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4036] = { + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7850), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4036), [sym_preproc_endregion] = STATE(4036), [sym_preproc_line] = STATE(4036), @@ -566740,63 +561890,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4036), [sym_preproc_define] = STATE(4036), [sym_preproc_undef] = STATE(4036), - [anon_sym_SEMI] = ACTIONS(6335), - [anon_sym_LBRACK] = ACTIONS(6335), - [anon_sym_COLON] = ACTIONS(6335), - [anon_sym_COMMA] = ACTIONS(6335), - [anon_sym_RBRACK] = ACTIONS(6335), - [anon_sym_LPAREN] = ACTIONS(6335), - [anon_sym_RPAREN] = ACTIONS(6335), - [anon_sym_RBRACE] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_in] = ACTIONS(6337), - [anon_sym_where] = ACTIONS(6335), - [anon_sym_QMARK] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PLUS_PLUS] = ACTIONS(6335), - [anon_sym_DASH_DASH] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6337), - [anon_sym_DASH] = ACTIONS(6337), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6337), - [anon_sym_PERCENT] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_AMP] = ACTIONS(6337), - [anon_sym_LT_LT] = ACTIONS(6335), - [anon_sym_GT_GT] = ACTIONS(6337), - [anon_sym_GT_GT_GT] = ACTIONS(6335), - [anon_sym_EQ_EQ] = ACTIONS(6335), - [anon_sym_BANG_EQ] = ACTIONS(6335), - [anon_sym_GT_EQ] = ACTIONS(6335), - [anon_sym_LT_EQ] = ACTIONS(6335), - [anon_sym_DOT] = ACTIONS(6337), - [anon_sym_EQ_GT] = ACTIONS(6335), - [anon_sym_switch] = ACTIONS(6335), - [anon_sym_DOT_DOT] = ACTIONS(6335), - [anon_sym_and] = ACTIONS(6335), - [anon_sym_or] = ACTIONS(6337), - [anon_sym_AMP_AMP] = ACTIONS(6335), - [anon_sym_PIPE_PIPE] = ACTIONS(6335), - [sym_op_coalescing] = ACTIONS(6335), - [anon_sym_from] = ACTIONS(6335), - [anon_sym_into] = ACTIONS(6335), - [anon_sym_join] = ACTIONS(6335), - [anon_sym_on] = ACTIONS(6335), - [anon_sym_equals] = ACTIONS(6335), - [anon_sym_let] = ACTIONS(6335), - [anon_sym_orderby] = ACTIONS(6335), - [anon_sym_group] = ACTIONS(6335), - [anon_sym_by] = ACTIONS(6335), - [anon_sym_select] = ACTIONS(6335), - [anon_sym_as] = ACTIONS(6335), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(6335), - [anon_sym_with] = ACTIONS(6335), - [aux_sym_preproc_if_token3] = ACTIONS(6335), - [aux_sym_preproc_else_token1] = ACTIONS(6335), - [aux_sym_preproc_elif_token1] = ACTIONS(6335), + [aux_sym_function_pointer_type_repeat1] = STATE(4035), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -566809,27 +561933,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4037] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7850), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4037), [sym_preproc_endregion] = STATE(4037), [sym_preproc_line] = STATE(4037), @@ -566839,42 +561962,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4037), [sym_preproc_define] = STATE(4037), [sym_preproc_undef] = STATE(4037), - [aux_sym_array_rank_specifier_repeat1] = STATE(7152), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6339), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -566887,27 +562005,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4038] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4038), [sym_preproc_endregion] = STATE(4038), [sym_preproc_line] = STATE(4038), @@ -566917,41 +562029,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4038), [sym_preproc_define] = STATE(4038), [sym_preproc_undef] = STATE(4038), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -566962,9 +562075,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4774), }, [4039] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4039), [sym_preproc_endregion] = STATE(4039), [sym_preproc_line] = STATE(4039), @@ -566974,63 +562101,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4039), [sym_preproc_define] = STATE(4039), [sym_preproc_undef] = STATE(4039), - [anon_sym_SEMI] = ACTIONS(6341), - [anon_sym_LBRACK] = ACTIONS(6341), - [anon_sym_COLON] = ACTIONS(6341), - [anon_sym_COMMA] = ACTIONS(6341), - [anon_sym_RBRACK] = ACTIONS(6341), - [anon_sym_LPAREN] = ACTIONS(6341), - [anon_sym_RPAREN] = ACTIONS(6341), - [anon_sym_RBRACE] = ACTIONS(6341), - [anon_sym_LT] = ACTIONS(6343), - [anon_sym_GT] = ACTIONS(6343), - [anon_sym_in] = ACTIONS(6343), - [anon_sym_where] = ACTIONS(6341), - [anon_sym_QMARK] = ACTIONS(6343), - [anon_sym_BANG] = ACTIONS(6343), - [anon_sym_PLUS_PLUS] = ACTIONS(6341), - [anon_sym_DASH_DASH] = ACTIONS(6341), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6341), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_PERCENT] = ACTIONS(6341), - [anon_sym_CARET] = ACTIONS(6341), - [anon_sym_PIPE] = ACTIONS(6343), - [anon_sym_AMP] = ACTIONS(6343), - [anon_sym_LT_LT] = ACTIONS(6341), - [anon_sym_GT_GT] = ACTIONS(6343), - [anon_sym_GT_GT_GT] = ACTIONS(6341), - [anon_sym_EQ_EQ] = ACTIONS(6341), - [anon_sym_BANG_EQ] = ACTIONS(6341), - [anon_sym_GT_EQ] = ACTIONS(6341), - [anon_sym_LT_EQ] = ACTIONS(6341), - [anon_sym_DOT] = ACTIONS(6343), - [anon_sym_EQ_GT] = ACTIONS(6341), - [anon_sym_switch] = ACTIONS(6341), - [anon_sym_DOT_DOT] = ACTIONS(6341), - [anon_sym_and] = ACTIONS(6341), - [anon_sym_or] = ACTIONS(6343), - [anon_sym_AMP_AMP] = ACTIONS(6341), - [anon_sym_PIPE_PIPE] = ACTIONS(6341), - [sym_op_coalescing] = ACTIONS(6341), - [anon_sym_from] = ACTIONS(6341), - [anon_sym_into] = ACTIONS(6341), - [anon_sym_join] = ACTIONS(6341), - [anon_sym_on] = ACTIONS(6341), - [anon_sym_equals] = ACTIONS(6341), - [anon_sym_let] = ACTIONS(6341), - [anon_sym_orderby] = ACTIONS(6341), - [anon_sym_group] = ACTIONS(6341), - [anon_sym_by] = ACTIONS(6341), - [anon_sym_select] = ACTIONS(6341), - [anon_sym_as] = ACTIONS(6341), - [anon_sym_is] = ACTIONS(6341), - [anon_sym_DASH_GT] = ACTIONS(6341), - [anon_sym_with] = ACTIONS(6341), - [aux_sym_preproc_if_token3] = ACTIONS(6341), - [aux_sym_preproc_else_token1] = ACTIONS(6341), - [aux_sym_preproc_elif_token1] = ACTIONS(6341), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -567043,27 +562149,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4040] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4040), [sym_preproc_endregion] = STATE(4040), [sym_preproc_line] = STATE(4040), @@ -567073,42 +562173,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4040), [sym_preproc_define] = STATE(4040), [sym_preproc_undef] = STATE(4040), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6345), - [anon_sym_RBRACK] = ACTIONS(6345), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6345), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6707), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(6709), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6697), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -567130,63 +562230,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4041), [sym_preproc_define] = STATE(4041), [sym_preproc_undef] = STATE(4041), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_COLON] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_RBRACK] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_RPAREN] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_where] = ACTIONS(3205), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3205), - [anon_sym_EQ_EQ] = ACTIONS(3205), - [anon_sym_BANG_EQ] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3205), - [anon_sym_LT_EQ] = ACTIONS(3205), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_EQ_GT] = ACTIONS(3205), - [anon_sym_switch] = ACTIONS(3205), - [anon_sym_DOT_DOT] = ACTIONS(3205), - [anon_sym_and] = ACTIONS(3205), - [anon_sym_or] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [sym_op_coalescing] = ACTIONS(3205), - [anon_sym_from] = ACTIONS(3205), - [anon_sym_into] = ACTIONS(3205), - [anon_sym_join] = ACTIONS(3205), - [anon_sym_on] = ACTIONS(3205), - [anon_sym_equals] = ACTIONS(3205), - [anon_sym_let] = ACTIONS(3205), - [anon_sym_orderby] = ACTIONS(3205), - [anon_sym_group] = ACTIONS(3205), - [anon_sym_by] = ACTIONS(3205), - [anon_sym_select] = ACTIONS(3205), - [anon_sym_as] = ACTIONS(3205), - [anon_sym_is] = ACTIONS(3205), - [anon_sym_DASH_GT] = ACTIONS(3205), - [anon_sym_with] = ACTIONS(3205), - [aux_sym_preproc_if_token3] = ACTIONS(3205), - [aux_sym_preproc_else_token1] = ACTIONS(3205), - [aux_sym_preproc_elif_token1] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_COLON] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_RBRACK] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_RPAREN] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_QMARK] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_EQ_GT] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_switch] = ACTIONS(4349), + [anon_sym_when] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_and] = ACTIONS(4349), + [anon_sym_or] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(4347), + [sym_op_bitwise_or] = ACTIONS(4347), + [anon_sym_CARET] = ACTIONS(4349), + [sym_op_left_shift] = ACTIONS(4349), + [sym_op_right_shift] = ACTIONS(4347), + [sym_op_unsigned_right_shift] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [sym_op_divide] = ACTIONS(4347), + [sym_op_modulo] = ACTIONS(4349), + [sym_op_coalescing] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_on] = ACTIONS(4349), + [anon_sym_equals] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(4349), + [anon_sym_as] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4349), + [anon_sym_DASH_GT] = ACTIONS(4349), + [anon_sym_with] = ACTIONS(4349), + [aux_sym_preproc_if_token3] = ACTIONS(4349), + [aux_sym_preproc_else_token1] = ACTIONS(4349), + [aux_sym_preproc_elif_token1] = ACTIONS(4349), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -567199,27 +562293,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4042] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), [sym_preproc_region] = STATE(4042), [sym_preproc_endregion] = STATE(4042), [sym_preproc_line] = STATE(4042), @@ -567229,42 +562302,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4042), [sym_preproc_define] = STATE(4042), [sym_preproc_undef] = STATE(4042), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4458), + [anon_sym_COLON] = ACTIONS(4458), + [anon_sym_COMMA] = ACTIONS(4458), + [anon_sym_RBRACK] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym_RPAREN] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4458), + [anon_sym_RBRACE] = ACTIONS(4458), + [anon_sym_LT] = ACTIONS(4456), + [anon_sym_GT] = ACTIONS(4456), + [anon_sym_in] = ACTIONS(4458), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_DOT] = ACTIONS(4456), + [anon_sym_EQ_GT] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_switch] = ACTIONS(4458), + [anon_sym_when] = ACTIONS(4458), + [anon_sym_DOT_DOT] = ACTIONS(4458), + [anon_sym_LT_EQ] = ACTIONS(4458), + [anon_sym_GT_EQ] = ACTIONS(4458), + [anon_sym_and] = ACTIONS(4458), + [anon_sym_or] = ACTIONS(4458), + [anon_sym_EQ_EQ] = ACTIONS(4458), + [anon_sym_BANG_EQ] = ACTIONS(4458), + [anon_sym_AMP_AMP] = ACTIONS(4458), + [anon_sym_PIPE_PIPE] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [sym_op_bitwise_or] = ACTIONS(4456), + [anon_sym_CARET] = ACTIONS(4458), + [sym_op_left_shift] = ACTIONS(4458), + [sym_op_right_shift] = ACTIONS(4456), + [sym_op_unsigned_right_shift] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [sym_op_divide] = ACTIONS(4456), + [sym_op_modulo] = ACTIONS(4458), + [sym_op_coalescing] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4456), + [anon_sym_PLUS_PLUS] = ACTIONS(4458), + [anon_sym_DASH_DASH] = ACTIONS(4458), + [anon_sym_on] = ACTIONS(4458), + [anon_sym_equals] = ACTIONS(4458), + [anon_sym_by] = ACTIONS(4458), + [anon_sym_as] = ACTIONS(4458), + [anon_sym_is] = ACTIONS(4458), + [anon_sym_DASH_GT] = ACTIONS(4458), + [anon_sym_with] = ACTIONS(4458), + [aux_sym_preproc_if_token3] = ACTIONS(4458), + [aux_sym_preproc_else_token1] = ACTIONS(4458), + [aux_sym_preproc_elif_token1] = ACTIONS(4458), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -567277,6 +562365,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4043] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4043), [sym_preproc_endregion] = STATE(4043), [sym_preproc_line] = STATE(4043), @@ -567286,63 +562389,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4043), [sym_preproc_define] = STATE(4043), [sym_preproc_undef] = STATE(4043), - [anon_sym_SEMI] = ACTIONS(6347), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_COLON] = ACTIONS(6347), - [anon_sym_COMMA] = ACTIONS(6347), - [anon_sym_RBRACK] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_RBRACE] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_in] = ACTIONS(6349), - [anon_sym_where] = ACTIONS(6347), - [anon_sym_QMARK] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PLUS_PLUS] = ACTIONS(6347), - [anon_sym_DASH_DASH] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6349), - [anon_sym_DASH] = ACTIONS(6349), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6349), - [anon_sym_PERCENT] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_AMP] = ACTIONS(6349), - [anon_sym_LT_LT] = ACTIONS(6347), - [anon_sym_GT_GT] = ACTIONS(6349), - [anon_sym_GT_GT_GT] = ACTIONS(6347), - [anon_sym_EQ_EQ] = ACTIONS(6347), - [anon_sym_BANG_EQ] = ACTIONS(6347), - [anon_sym_GT_EQ] = ACTIONS(6347), - [anon_sym_LT_EQ] = ACTIONS(6347), - [anon_sym_DOT] = ACTIONS(6349), - [anon_sym_EQ_GT] = ACTIONS(6347), - [anon_sym_switch] = ACTIONS(6347), - [anon_sym_DOT_DOT] = ACTIONS(6347), - [anon_sym_and] = ACTIONS(6347), - [anon_sym_or] = ACTIONS(6349), - [anon_sym_AMP_AMP] = ACTIONS(6347), - [anon_sym_PIPE_PIPE] = ACTIONS(6347), - [sym_op_coalescing] = ACTIONS(6347), - [anon_sym_from] = ACTIONS(6347), - [anon_sym_into] = ACTIONS(6347), - [anon_sym_join] = ACTIONS(6347), - [anon_sym_on] = ACTIONS(6347), - [anon_sym_equals] = ACTIONS(6347), - [anon_sym_let] = ACTIONS(6347), - [anon_sym_orderby] = ACTIONS(6347), - [anon_sym_group] = ACTIONS(6347), - [anon_sym_by] = ACTIONS(6347), - [anon_sym_select] = ACTIONS(6347), - [anon_sym_as] = ACTIONS(6347), - [anon_sym_is] = ACTIONS(6347), - [anon_sym_DASH_GT] = ACTIONS(6347), - [anon_sym_with] = ACTIONS(6347), - [aux_sym_preproc_if_token3] = ACTIONS(6347), - [aux_sym_preproc_else_token1] = ACTIONS(6347), - [aux_sym_preproc_elif_token1] = ACTIONS(6347), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -567364,63 +562446,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4044), [sym_preproc_define] = STATE(4044), [sym_preproc_undef] = STATE(4044), - [anon_sym_SEMI] = ACTIONS(4436), - [anon_sym_LBRACK] = ACTIONS(4436), - [anon_sym_COLON] = ACTIONS(4436), - [anon_sym_COMMA] = ACTIONS(4436), - [anon_sym_RBRACK] = ACTIONS(4436), - [anon_sym_LPAREN] = ACTIONS(4436), - [anon_sym_RPAREN] = ACTIONS(4436), - [anon_sym_LBRACE] = ACTIONS(4436), - [anon_sym_RBRACE] = ACTIONS(4436), - [anon_sym_LT] = ACTIONS(4434), - [anon_sym_GT] = ACTIONS(4434), - [anon_sym_in] = ACTIONS(4436), - [anon_sym_where] = ACTIONS(4436), - [anon_sym_QMARK] = ACTIONS(4434), - [anon_sym_BANG] = ACTIONS(4434), - [anon_sym_PLUS_PLUS] = ACTIONS(4436), - [anon_sym_DASH_DASH] = ACTIONS(4436), - [anon_sym_PLUS] = ACTIONS(4434), - [anon_sym_DASH] = ACTIONS(4434), - [anon_sym_STAR] = ACTIONS(4436), - [anon_sym_SLASH] = ACTIONS(4434), - [anon_sym_PERCENT] = ACTIONS(4436), - [anon_sym_CARET] = ACTIONS(4436), - [anon_sym_PIPE] = ACTIONS(4434), - [anon_sym_AMP] = ACTIONS(4434), - [anon_sym_LT_LT] = ACTIONS(4436), - [anon_sym_GT_GT] = ACTIONS(4434), - [anon_sym_GT_GT_GT] = ACTIONS(4436), - [anon_sym_EQ_EQ] = ACTIONS(4436), - [anon_sym_BANG_EQ] = ACTIONS(4436), - [anon_sym_GT_EQ] = ACTIONS(4436), - [anon_sym_LT_EQ] = ACTIONS(4436), - [anon_sym_DOT] = ACTIONS(4434), - [anon_sym_EQ_GT] = ACTIONS(4436), - [anon_sym_switch] = ACTIONS(4436), - [anon_sym_DOT_DOT] = ACTIONS(4436), - [anon_sym_and] = ACTIONS(4436), - [anon_sym_or] = ACTIONS(4434), - [anon_sym_AMP_AMP] = ACTIONS(4436), - [anon_sym_PIPE_PIPE] = ACTIONS(4436), - [sym_op_coalescing] = ACTIONS(4436), - [anon_sym_from] = ACTIONS(4436), - [anon_sym_join] = ACTIONS(4436), - [anon_sym_on] = ACTIONS(4436), - [anon_sym_equals] = ACTIONS(4436), - [anon_sym_let] = ACTIONS(4436), - [anon_sym_orderby] = ACTIONS(4436), - [anon_sym_group] = ACTIONS(4436), - [anon_sym_by] = ACTIONS(4436), - [anon_sym_select] = ACTIONS(4436), - [anon_sym_as] = ACTIONS(4436), - [anon_sym_is] = ACTIONS(4436), - [anon_sym_DASH_GT] = ACTIONS(4436), - [anon_sym_with] = ACTIONS(4436), - [aux_sym_preproc_if_token3] = ACTIONS(4436), - [aux_sym_preproc_else_token1] = ACTIONS(4436), - [aux_sym_preproc_elif_token1] = ACTIONS(4436), + [anon_sym_SEMI] = ACTIONS(4316), + [anon_sym_LBRACK] = ACTIONS(4316), + [anon_sym_COLON] = ACTIONS(4316), + [anon_sym_COMMA] = ACTIONS(4316), + [anon_sym_RBRACK] = ACTIONS(4316), + [anon_sym_LPAREN] = ACTIONS(4316), + [anon_sym_RPAREN] = ACTIONS(4316), + [anon_sym_LBRACE] = ACTIONS(4316), + [anon_sym_RBRACE] = ACTIONS(4316), + [anon_sym_LT] = ACTIONS(4314), + [anon_sym_GT] = ACTIONS(4314), + [anon_sym_in] = ACTIONS(4316), + [anon_sym_QMARK] = ACTIONS(4314), + [anon_sym_DOT] = ACTIONS(4314), + [anon_sym_EQ_GT] = ACTIONS(4316), + [anon_sym_STAR] = ACTIONS(4316), + [anon_sym_switch] = ACTIONS(4316), + [anon_sym_when] = ACTIONS(4316), + [anon_sym_DOT_DOT] = ACTIONS(4316), + [anon_sym_LT_EQ] = ACTIONS(4316), + [anon_sym_GT_EQ] = ACTIONS(4316), + [anon_sym_and] = ACTIONS(4316), + [anon_sym_or] = ACTIONS(4316), + [anon_sym_EQ_EQ] = ACTIONS(4316), + [anon_sym_BANG_EQ] = ACTIONS(4316), + [anon_sym_AMP_AMP] = ACTIONS(4316), + [anon_sym_PIPE_PIPE] = ACTIONS(4316), + [anon_sym_AMP] = ACTIONS(4314), + [sym_op_bitwise_or] = ACTIONS(4314), + [anon_sym_CARET] = ACTIONS(4316), + [sym_op_left_shift] = ACTIONS(4316), + [sym_op_right_shift] = ACTIONS(4314), + [sym_op_unsigned_right_shift] = ACTIONS(4316), + [anon_sym_PLUS] = ACTIONS(4314), + [anon_sym_DASH] = ACTIONS(4314), + [sym_op_divide] = ACTIONS(4314), + [sym_op_modulo] = ACTIONS(4316), + [sym_op_coalescing] = ACTIONS(4316), + [anon_sym_BANG] = ACTIONS(4314), + [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_DASH_DASH] = ACTIONS(4316), + [anon_sym_on] = ACTIONS(4316), + [anon_sym_equals] = ACTIONS(4316), + [anon_sym_by] = ACTIONS(4316), + [anon_sym_as] = ACTIONS(4316), + [anon_sym_is] = ACTIONS(4316), + [anon_sym_DASH_GT] = ACTIONS(4316), + [anon_sym_with] = ACTIONS(4316), + [aux_sym_preproc_if_token3] = ACTIONS(4316), + [aux_sym_preproc_else_token1] = ACTIONS(4316), + [aux_sym_preproc_elif_token1] = ACTIONS(4316), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -567433,27 +562509,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4045] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), [sym_preproc_region] = STATE(4045), [sym_preproc_endregion] = STATE(4045), [sym_preproc_line] = STATE(4045), @@ -567463,42 +562518,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4045), [sym_preproc_define] = STATE(4045), [sym_preproc_undef] = STATE(4045), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_COLON] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_RBRACK] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_RPAREN] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_in] = ACTIONS(4345), + [anon_sym_QMARK] = ACTIONS(4343), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_EQ_GT] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_switch] = ACTIONS(4345), + [anon_sym_when] = ACTIONS(4345), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_and] = ACTIONS(4345), + [anon_sym_or] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4343), + [sym_op_bitwise_or] = ACTIONS(4343), + [anon_sym_CARET] = ACTIONS(4345), + [sym_op_left_shift] = ACTIONS(4345), + [sym_op_right_shift] = ACTIONS(4343), + [sym_op_unsigned_right_shift] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [sym_op_divide] = ACTIONS(4343), + [sym_op_modulo] = ACTIONS(4345), + [sym_op_coalescing] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_on] = ACTIONS(4345), + [anon_sym_equals] = ACTIONS(4345), + [anon_sym_by] = ACTIONS(4345), + [anon_sym_as] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4345), + [anon_sym_DASH_GT] = ACTIONS(4345), + [anon_sym_with] = ACTIONS(4345), + [aux_sym_preproc_if_token3] = ACTIONS(4345), + [aux_sym_preproc_else_token1] = ACTIONS(4345), + [aux_sym_preproc_elif_token1] = ACTIONS(4345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -567511,6 +562581,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4046] = { + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7776), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4046), [sym_preproc_endregion] = STATE(4046), [sym_preproc_line] = STATE(4046), @@ -567520,63 +562610,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4046), [sym_preproc_define] = STATE(4046), [sym_preproc_undef] = STATE(4046), - [anon_sym_SEMI] = ACTIONS(6351), - [anon_sym_LBRACK] = ACTIONS(6351), - [anon_sym_COLON] = ACTIONS(6351), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_RBRACK] = ACTIONS(6351), - [anon_sym_LPAREN] = ACTIONS(6351), - [anon_sym_RPAREN] = ACTIONS(6351), - [anon_sym_RBRACE] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_in] = ACTIONS(6353), - [anon_sym_where] = ACTIONS(6351), - [anon_sym_QMARK] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PLUS_PLUS] = ACTIONS(6351), - [anon_sym_DASH_DASH] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6353), - [anon_sym_DASH] = ACTIONS(6353), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6353), - [anon_sym_PERCENT] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_AMP] = ACTIONS(6353), - [anon_sym_LT_LT] = ACTIONS(6351), - [anon_sym_GT_GT] = ACTIONS(6353), - [anon_sym_GT_GT_GT] = ACTIONS(6351), - [anon_sym_EQ_EQ] = ACTIONS(6351), - [anon_sym_BANG_EQ] = ACTIONS(6351), - [anon_sym_GT_EQ] = ACTIONS(6351), - [anon_sym_LT_EQ] = ACTIONS(6351), - [anon_sym_DOT] = ACTIONS(6353), - [anon_sym_EQ_GT] = ACTIONS(6351), - [anon_sym_switch] = ACTIONS(6351), - [anon_sym_DOT_DOT] = ACTIONS(6351), - [anon_sym_and] = ACTIONS(6351), - [anon_sym_or] = ACTIONS(6353), - [anon_sym_AMP_AMP] = ACTIONS(6351), - [anon_sym_PIPE_PIPE] = ACTIONS(6351), - [sym_op_coalescing] = ACTIONS(6351), - [anon_sym_from] = ACTIONS(6351), - [anon_sym_into] = ACTIONS(6351), - [anon_sym_join] = ACTIONS(6351), - [anon_sym_on] = ACTIONS(6351), - [anon_sym_equals] = ACTIONS(6351), - [anon_sym_let] = ACTIONS(6351), - [anon_sym_orderby] = ACTIONS(6351), - [anon_sym_group] = ACTIONS(6351), - [anon_sym_by] = ACTIONS(6351), - [anon_sym_select] = ACTIONS(6351), - [anon_sym_as] = ACTIONS(6351), - [anon_sym_is] = ACTIONS(6351), - [anon_sym_DASH_GT] = ACTIONS(6351), - [anon_sym_with] = ACTIONS(6351), - [aux_sym_preproc_if_token3] = ACTIONS(6351), - [aux_sym_preproc_else_token1] = ACTIONS(6351), - [aux_sym_preproc_elif_token1] = ACTIONS(6351), + [aux_sym_function_pointer_type_repeat1] = STATE(4037), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -567589,27 +562653,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4047] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4047), [sym_preproc_endregion] = STATE(4047), [sym_preproc_line] = STATE(4047), @@ -567619,42 +562677,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4047), [sym_preproc_define] = STATE(4047), [sym_preproc_undef] = STATE(4047), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6039), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6041), - [anon_sym_on] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(6033), - [anon_sym_is] = ACTIONS(6035), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6697), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -567667,27 +562725,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4048] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4048), [sym_preproc_endregion] = STATE(4048), [sym_preproc_line] = STATE(4048), @@ -567697,42 +562749,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4048), [sym_preproc_define] = STATE(4048), [sym_preproc_undef] = STATE(4048), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_equals] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6707), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6697), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -567745,27 +562797,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4049] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4049), [sym_preproc_endregion] = STATE(4049), [sym_preproc_line] = STATE(4049), @@ -567775,42 +562821,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4049), [sym_preproc_define] = STATE(4049), [sym_preproc_undef] = STATE(4049), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6039), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4782), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6041), - [anon_sym_on] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(6033), - [anon_sym_is] = ACTIONS(6035), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -567823,27 +562869,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4050] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4050), [sym_preproc_endregion] = STATE(4050), [sym_preproc_line] = STATE(4050), @@ -567853,42 +562893,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4050), [sym_preproc_define] = STATE(4050), [sym_preproc_undef] = STATE(4050), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4752), - [anon_sym_or] = ACTIONS(4752), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_on] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [aux_sym_array_rank_specifier_repeat1] = STATE(7219), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(6713), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -567901,27 +562941,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4051] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4051), [sym_preproc_endregion] = STATE(4051), [sym_preproc_line] = STATE(4051), @@ -567931,42 +562965,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4051), [sym_preproc_define] = STATE(4051), [sym_preproc_undef] = STATE(4051), - [aux_sym__for_statement_conditions_repeat1] = STATE(7330), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6277), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6355), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -567988,63 +563022,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4052), [sym_preproc_define] = STATE(4052), [sym_preproc_undef] = STATE(4052), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_RBRACE] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PLUS_PLUS] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_CARET] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_AMP] = ACTIONS(4391), - [anon_sym_LT_LT] = ACTIONS(4393), - [anon_sym_GT_GT] = ACTIONS(4391), - [anon_sym_GT_GT_GT] = ACTIONS(4393), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_GT_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(4393), - [anon_sym_DOT] = ACTIONS(4391), - [anon_sym_EQ_GT] = ACTIONS(4393), - [anon_sym_switch] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4393), - [anon_sym_and] = ACTIONS(4393), - [anon_sym_or] = ACTIONS(4391), - [anon_sym_AMP_AMP] = ACTIONS(4393), - [anon_sym_PIPE_PIPE] = ACTIONS(4393), - [sym_op_coalescing] = ACTIONS(4393), - [anon_sym_from] = 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_group] = ACTIONS(4393), - [anon_sym_by] = ACTIONS(4393), - [anon_sym_select] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_DASH_GT] = ACTIONS(4393), - [anon_sym_with] = ACTIONS(4393), - [aux_sym_preproc_if_token3] = ACTIONS(4393), - [aux_sym_preproc_else_token1] = ACTIONS(4393), - [aux_sym_preproc_elif_token1] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(5662), + [anon_sym_LBRACK] = ACTIONS(5662), + [anon_sym_COLON] = ACTIONS(5662), + [anon_sym_COMMA] = ACTIONS(5662), + [anon_sym_RBRACK] = ACTIONS(5662), + [anon_sym_LPAREN] = ACTIONS(5662), + [anon_sym_RPAREN] = ACTIONS(5662), + [anon_sym_RBRACE] = ACTIONS(5662), + [anon_sym_LT] = ACTIONS(5664), + [anon_sym_GT] = ACTIONS(5664), + [anon_sym_in] = ACTIONS(5662), + [anon_sym_QMARK] = ACTIONS(5664), + [anon_sym_DOT] = ACTIONS(5664), + [anon_sym_EQ_GT] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5662), + [anon_sym_switch] = ACTIONS(5662), + [anon_sym_when] = ACTIONS(5662), + [anon_sym_DOT_DOT] = ACTIONS(5662), + [anon_sym_LT_EQ] = ACTIONS(5662), + [anon_sym_GT_EQ] = ACTIONS(5662), + [anon_sym_and] = ACTIONS(5662), + [anon_sym_or] = ACTIONS(5662), + [anon_sym_EQ_EQ] = ACTIONS(5662), + [anon_sym_BANG_EQ] = ACTIONS(5662), + [anon_sym_AMP_AMP] = ACTIONS(5662), + [anon_sym_PIPE_PIPE] = ACTIONS(5662), + [anon_sym_AMP] = ACTIONS(5664), + [sym_op_bitwise_or] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5662), + [sym_op_left_shift] = ACTIONS(5662), + [sym_op_right_shift] = ACTIONS(5664), + [sym_op_unsigned_right_shift] = ACTIONS(5662), + [anon_sym_PLUS] = ACTIONS(5664), + [anon_sym_DASH] = ACTIONS(5664), + [sym_op_divide] = ACTIONS(5664), + [sym_op_modulo] = ACTIONS(5662), + [sym_op_coalescing] = ACTIONS(5662), + [anon_sym_BANG] = ACTIONS(5664), + [anon_sym_PLUS_PLUS] = ACTIONS(5662), + [anon_sym_DASH_DASH] = ACTIONS(5662), + [anon_sym_on] = ACTIONS(5662), + [anon_sym_equals] = ACTIONS(5662), + [anon_sym_by] = ACTIONS(5662), + [anon_sym_as] = ACTIONS(5662), + [anon_sym_is] = ACTIONS(5662), + [anon_sym_DASH_GT] = ACTIONS(5662), + [anon_sym_with] = ACTIONS(5662), + [aux_sym_raw_string_literal_token1] = ACTIONS(6715), + [aux_sym_preproc_if_token3] = ACTIONS(5662), + [aux_sym_preproc_else_token1] = ACTIONS(5662), + [aux_sym_preproc_elif_token1] = ACTIONS(5662), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -568057,6 +563085,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4053] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4053), [sym_preproc_endregion] = STATE(4053), [sym_preproc_line] = STATE(4053), @@ -568066,63 +563109,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4053), [sym_preproc_define] = STATE(4053), [sym_preproc_undef] = STATE(4053), - [anon_sym_SEMI] = ACTIONS(6357), - [anon_sym_LBRACK] = ACTIONS(6357), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_COMMA] = ACTIONS(6357), - [anon_sym_RBRACK] = ACTIONS(6357), - [anon_sym_LPAREN] = ACTIONS(6357), - [anon_sym_RPAREN] = ACTIONS(6357), - [anon_sym_RBRACE] = ACTIONS(6357), - [anon_sym_LT] = ACTIONS(6359), - [anon_sym_GT] = ACTIONS(6359), - [anon_sym_in] = ACTIONS(6359), - [anon_sym_where] = ACTIONS(6357), - [anon_sym_QMARK] = ACTIONS(6359), - [anon_sym_BANG] = ACTIONS(6359), - [anon_sym_PLUS_PLUS] = ACTIONS(6357), - [anon_sym_DASH_DASH] = ACTIONS(6357), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6357), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_PERCENT] = ACTIONS(6357), - [anon_sym_CARET] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6359), - [anon_sym_AMP] = ACTIONS(6359), - [anon_sym_LT_LT] = ACTIONS(6357), - [anon_sym_GT_GT] = ACTIONS(6359), - [anon_sym_GT_GT_GT] = ACTIONS(6357), - [anon_sym_EQ_EQ] = ACTIONS(6357), - [anon_sym_BANG_EQ] = ACTIONS(6357), - [anon_sym_GT_EQ] = ACTIONS(6357), - [anon_sym_LT_EQ] = ACTIONS(6357), - [anon_sym_DOT] = ACTIONS(6359), - [anon_sym_EQ_GT] = ACTIONS(6357), - [anon_sym_switch] = ACTIONS(6357), - [anon_sym_DOT_DOT] = ACTIONS(6357), - [anon_sym_and] = ACTIONS(6357), - [anon_sym_or] = ACTIONS(6359), - [anon_sym_AMP_AMP] = ACTIONS(6357), - [anon_sym_PIPE_PIPE] = ACTIONS(6357), - [sym_op_coalescing] = ACTIONS(6357), - [anon_sym_from] = ACTIONS(6357), - [anon_sym_into] = ACTIONS(6357), - [anon_sym_join] = ACTIONS(6357), - [anon_sym_on] = ACTIONS(6357), - [anon_sym_equals] = ACTIONS(6357), - [anon_sym_let] = ACTIONS(6357), - [anon_sym_orderby] = ACTIONS(6357), - [anon_sym_group] = ACTIONS(6357), - [anon_sym_by] = ACTIONS(6357), - [anon_sym_select] = ACTIONS(6357), - [anon_sym_as] = ACTIONS(6357), - [anon_sym_is] = ACTIONS(6357), - [anon_sym_DASH_GT] = ACTIONS(6357), - [anon_sym_with] = ACTIONS(6357), - [aux_sym_preproc_if_token3] = ACTIONS(6357), - [aux_sym_preproc_else_token1] = ACTIONS(6357), - [aux_sym_preproc_elif_token1] = ACTIONS(6357), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6707), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6697), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -568135,27 +563157,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4054] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4054), [sym_preproc_endregion] = STATE(4054), [sym_preproc_line] = STATE(4054), @@ -568165,42 +563181,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4054), [sym_preproc_define] = STATE(4054), [sym_preproc_undef] = STATE(4054), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), - [aux_sym_preproc_if_token3] = ACTIONS(1435), - [aux_sym_preproc_else_token1] = ACTIONS(1435), - [aux_sym_preproc_elif_token1] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(5308), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -568213,29 +563229,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4055] = { - [sym_attribute_list] = STATE(5927), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6220), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym__lambda_parameters] = STATE(7967), - [sym_identifier] = STATE(6072), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_if_in_attribute_list] = STATE(5927), [sym_preproc_region] = STATE(4055), [sym_preproc_endregion] = STATE(4055), [sym_preproc_line] = STATE(4055), @@ -568245,40 +563238,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4055), [sym_preproc_define] = STATE(4055), [sym_preproc_undef] = STATE(4055), - [aux_sym__class_declaration_initializer_repeat1] = STATE(5564), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), - [aux_sym_preproc_if_token1] = ACTIONS(5454), + [sym__identifier_token] = ACTIONS(3191), + [anon_sym_extern] = ACTIONS(3191), + [anon_sym_alias] = ACTIONS(3191), + [anon_sym_global] = ACTIONS(3191), + [anon_sym_unsafe] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_readonly] = 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_protected] = 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), + [sym_accessor_get] = ACTIONS(3191), + [sym_accessor_set] = ACTIONS(3191), + [sym_accessor_add] = ACTIONS(3191), + [sym_accessor_remove] = ACTIONS(3191), + [sym_accessor_init] = ACTIONS(3191), + [anon_sym_scoped] = ACTIONS(3191), + [anon_sym_var] = ACTIONS(3191), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_when] = ACTIONS(3191), + [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), + [sym_grit_metavariable] = 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), @@ -568291,27 +563301,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4056] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4056), [sym_preproc_endregion] = STATE(4056), [sym_preproc_line] = STATE(4056), @@ -568321,42 +563325,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4056), [sym_preproc_define] = STATE(4056), [sym_preproc_undef] = STATE(4056), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6697), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -568369,27 +563373,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4057] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), [sym_preproc_region] = STATE(4057), [sym_preproc_endregion] = STATE(4057), [sym_preproc_line] = STATE(4057), @@ -568399,42 +563382,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4057), [sym_preproc_define] = STATE(4057), [sym_preproc_undef] = STATE(4057), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_equals] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [sym__identifier_token] = ACTIONS(3386), + [anon_sym_extern] = ACTIONS(3386), + [anon_sym_alias] = ACTIONS(3386), + [anon_sym_global] = ACTIONS(3386), + [anon_sym_unsafe] = ACTIONS(3386), + [anon_sym_static] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_public] = ACTIONS(3386), + [anon_sym_private] = ACTIONS(3386), + [anon_sym_readonly] = ACTIONS(3386), + [anon_sym_abstract] = ACTIONS(3386), + [anon_sym_async] = ACTIONS(3386), + [anon_sym_const] = ACTIONS(3386), + [anon_sym_file] = ACTIONS(3386), + [anon_sym_fixed] = ACTIONS(3386), + [anon_sym_internal] = ACTIONS(3386), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_override] = ACTIONS(3386), + [anon_sym_partial] = ACTIONS(3386), + [anon_sym_protected] = ACTIONS(3386), + [anon_sym_required] = ACTIONS(3386), + [anon_sym_sealed] = ACTIONS(3386), + [anon_sym_virtual] = ACTIONS(3386), + [anon_sym_volatile] = ACTIONS(3386), + [anon_sym_where] = ACTIONS(3386), + [anon_sym_notnull] = ACTIONS(3386), + [anon_sym_unmanaged] = ACTIONS(3386), + [sym_accessor_get] = ACTIONS(3386), + [sym_accessor_set] = ACTIONS(3386), + [sym_accessor_add] = ACTIONS(3386), + [sym_accessor_remove] = ACTIONS(3386), + [sym_accessor_init] = ACTIONS(3386), + [anon_sym_scoped] = ACTIONS(3386), + [anon_sym_var] = ACTIONS(3386), + [anon_sym_yield] = ACTIONS(3386), + [anon_sym_when] = ACTIONS(3386), + [anon_sym_from] = ACTIONS(3386), + [anon_sym_into] = ACTIONS(3386), + [anon_sym_join] = ACTIONS(3386), + [anon_sym_on] = ACTIONS(3386), + [anon_sym_equals] = ACTIONS(3386), + [anon_sym_let] = ACTIONS(3386), + [anon_sym_orderby] = ACTIONS(3386), + [anon_sym_ascending] = ACTIONS(3386), + [anon_sym_descending] = ACTIONS(3386), + [anon_sym_group] = ACTIONS(3386), + [anon_sym_by] = ACTIONS(3386), + [anon_sym_select] = ACTIONS(3386), + [sym_grit_metavariable] = ACTIONS(3388), + [aux_sym_preproc_if_token1] = ACTIONS(3388), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -568447,27 +563445,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4058] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4058), [sym_preproc_endregion] = STATE(4058), [sym_preproc_line] = STATE(4058), @@ -568477,42 +563469,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4058), [sym_preproc_define] = STATE(4058), [sym_preproc_undef] = STATE(4058), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6697), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -568525,27 +563517,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4059] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4059), [sym_preproc_endregion] = STATE(4059), [sym_preproc_line] = STATE(4059), @@ -568555,42 +563541,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4059), [sym_preproc_define] = STATE(4059), [sym_preproc_undef] = STATE(4059), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -568603,27 +563589,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4060] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4060), [sym_preproc_endregion] = STATE(4060), [sym_preproc_line] = STATE(4060), @@ -568633,42 +563613,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4060), [sym_preproc_define] = STATE(4060), [sym_preproc_undef] = STATE(4060), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6110), - [anon_sym_is] = ACTIONS(6112), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -568681,27 +563661,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4061] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4061), [sym_preproc_endregion] = STATE(4061), [sym_preproc_line] = STATE(4061), @@ -568711,42 +563685,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4061), [sym_preproc_define] = STATE(4061), [sym_preproc_undef] = STATE(4061), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6110), - [anon_sym_is] = ACTIONS(6112), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -568759,27 +563733,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4062] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), [sym_preproc_region] = STATE(4062), [sym_preproc_endregion] = STATE(4062), [sym_preproc_line] = STATE(4062), @@ -568789,42 +563742,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4062), [sym_preproc_define] = STATE(4062), [sym_preproc_undef] = STATE(4062), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6110), - [anon_sym_is] = ACTIONS(6112), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_COLON] = ACTIONS(4282), + [anon_sym_COMMA] = ACTIONS(4282), + [anon_sym_RBRACK] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_RPAREN] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4282), + [anon_sym_LT] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4280), + [anon_sym_in] = ACTIONS(4282), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_DOT] = ACTIONS(4280), + [anon_sym_EQ_GT] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_switch] = ACTIONS(4282), + [anon_sym_when] = ACTIONS(4282), + [anon_sym_DOT_DOT] = ACTIONS(4282), + [anon_sym_LT_EQ] = ACTIONS(4282), + [anon_sym_GT_EQ] = ACTIONS(4282), + [anon_sym_and] = ACTIONS(4282), + [anon_sym_or] = ACTIONS(4282), + [anon_sym_EQ_EQ] = ACTIONS(4282), + [anon_sym_BANG_EQ] = ACTIONS(4282), + [anon_sym_AMP_AMP] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4282), + [anon_sym_AMP] = ACTIONS(4280), + [sym_op_bitwise_or] = ACTIONS(4280), + [anon_sym_CARET] = ACTIONS(4282), + [sym_op_left_shift] = ACTIONS(4282), + [sym_op_right_shift] = ACTIONS(4280), + [sym_op_unsigned_right_shift] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + [sym_op_divide] = ACTIONS(4280), + [sym_op_modulo] = ACTIONS(4282), + [sym_op_coalescing] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [anon_sym_on] = ACTIONS(4282), + [anon_sym_equals] = ACTIONS(4282), + [anon_sym_by] = ACTIONS(4282), + [anon_sym_as] = ACTIONS(4282), + [anon_sym_is] = ACTIONS(4282), + [anon_sym_DASH_GT] = ACTIONS(4282), + [anon_sym_with] = ACTIONS(4282), + [aux_sym_preproc_if_token3] = ACTIONS(4282), + [aux_sym_preproc_else_token1] = ACTIONS(4282), + [aux_sym_preproc_elif_token1] = ACTIONS(4282), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -568837,6 +563805,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4063] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4063), [sym_preproc_endregion] = STATE(4063), [sym_preproc_line] = STATE(4063), @@ -568846,63 +563829,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4063), [sym_preproc_define] = STATE(4063), [sym_preproc_undef] = STATE(4063), - [anon_sym_SEMI] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6361), - [anon_sym_COLON] = ACTIONS(6361), - [anon_sym_COMMA] = ACTIONS(6361), - [anon_sym_RBRACK] = ACTIONS(6361), - [anon_sym_LPAREN] = ACTIONS(6361), - [anon_sym_RPAREN] = ACTIONS(6361), - [anon_sym_RBRACE] = ACTIONS(6361), - [anon_sym_LT] = ACTIONS(6363), - [anon_sym_GT] = ACTIONS(6363), - [anon_sym_in] = ACTIONS(6363), - [anon_sym_where] = ACTIONS(6361), - [anon_sym_QMARK] = ACTIONS(6363), - [anon_sym_BANG] = ACTIONS(6363), - [anon_sym_PLUS_PLUS] = ACTIONS(6361), - [anon_sym_DASH_DASH] = ACTIONS(6361), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6361), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_PERCENT] = ACTIONS(6361), - [anon_sym_CARET] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6363), - [anon_sym_AMP] = ACTIONS(6363), - [anon_sym_LT_LT] = ACTIONS(6361), - [anon_sym_GT_GT] = ACTIONS(6363), - [anon_sym_GT_GT_GT] = ACTIONS(6361), - [anon_sym_EQ_EQ] = ACTIONS(6361), - [anon_sym_BANG_EQ] = ACTIONS(6361), - [anon_sym_GT_EQ] = ACTIONS(6361), - [anon_sym_LT_EQ] = ACTIONS(6361), - [anon_sym_DOT] = ACTIONS(6363), - [anon_sym_EQ_GT] = ACTIONS(6361), - [anon_sym_switch] = ACTIONS(6361), - [anon_sym_DOT_DOT] = ACTIONS(6361), - [anon_sym_and] = ACTIONS(6361), - [anon_sym_or] = ACTIONS(6363), - [anon_sym_AMP_AMP] = ACTIONS(6361), - [anon_sym_PIPE_PIPE] = ACTIONS(6361), - [sym_op_coalescing] = ACTIONS(6361), - [anon_sym_from] = ACTIONS(6361), - [anon_sym_into] = ACTIONS(6361), - [anon_sym_join] = ACTIONS(6361), - [anon_sym_on] = ACTIONS(6361), - [anon_sym_equals] = ACTIONS(6361), - [anon_sym_let] = ACTIONS(6361), - [anon_sym_orderby] = ACTIONS(6361), - [anon_sym_group] = ACTIONS(6361), - [anon_sym_by] = ACTIONS(6361), - [anon_sym_select] = ACTIONS(6361), - [anon_sym_as] = ACTIONS(6361), - [anon_sym_is] = ACTIONS(6361), - [anon_sym_DASH_GT] = ACTIONS(6361), - [anon_sym_with] = ACTIONS(6361), - [aux_sym_preproc_if_token3] = ACTIONS(6361), - [aux_sym_preproc_else_token1] = ACTIONS(6361), - [aux_sym_preproc_elif_token1] = ACTIONS(6361), + [anon_sym_SEMI] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6717), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(6729), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -568915,27 +563877,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4064] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4064), [sym_preproc_endregion] = STATE(4064), [sym_preproc_line] = STATE(4064), @@ -568945,42 +563901,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4064), [sym_preproc_define] = STATE(4064), [sym_preproc_undef] = STATE(4064), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6110), - [anon_sym_is] = ACTIONS(6112), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6731), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6707), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(6709), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6697), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -568993,27 +563949,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4065] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_parameter_list] = STATE(7966), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6226), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym__lambda_parameters] = STATE(8081), + [sym_identifier] = STATE(6061), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4065), [sym_preproc_endregion] = STATE(4065), [sym_preproc_line] = STATE(4065), @@ -569023,42 +563978,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4065), [sym_preproc_define] = STATE(4065), [sym_preproc_undef] = STATE(4065), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4782), - [aux_sym_preproc_else_token1] = ACTIONS(4782), - [aux_sym_preproc_elif_token1] = ACTIONS(4782), + [aux_sym__lambda_expression_init_repeat1] = STATE(6103), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(6733), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -569080,63 +564030,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4066), [sym_preproc_define] = STATE(4066), [sym_preproc_undef] = STATE(4066), - [anon_sym_SEMI] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6365), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_COMMA] = ACTIONS(6365), - [anon_sym_RBRACK] = ACTIONS(6365), - [anon_sym_LPAREN] = ACTIONS(6365), - [anon_sym_RPAREN] = ACTIONS(6365), - [anon_sym_RBRACE] = ACTIONS(6365), - [anon_sym_LT] = ACTIONS(6367), - [anon_sym_GT] = ACTIONS(6367), - [anon_sym_in] = ACTIONS(6367), - [anon_sym_where] = ACTIONS(6365), - [anon_sym_QMARK] = ACTIONS(6367), - [anon_sym_BANG] = ACTIONS(6367), - [anon_sym_PLUS_PLUS] = ACTIONS(6365), - [anon_sym_DASH_DASH] = ACTIONS(6365), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6365), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_PERCENT] = ACTIONS(6365), - [anon_sym_CARET] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6367), - [anon_sym_AMP] = ACTIONS(6367), - [anon_sym_LT_LT] = ACTIONS(6365), - [anon_sym_GT_GT] = ACTIONS(6367), - [anon_sym_GT_GT_GT] = ACTIONS(6365), - [anon_sym_EQ_EQ] = ACTIONS(6365), - [anon_sym_BANG_EQ] = ACTIONS(6365), - [anon_sym_GT_EQ] = ACTIONS(6365), - [anon_sym_LT_EQ] = ACTIONS(6365), - [anon_sym_DOT] = ACTIONS(6367), - [anon_sym_EQ_GT] = ACTIONS(6365), - [anon_sym_switch] = ACTIONS(6365), - [anon_sym_DOT_DOT] = ACTIONS(6365), - [anon_sym_and] = ACTIONS(6365), - [anon_sym_or] = ACTIONS(6367), - [anon_sym_AMP_AMP] = ACTIONS(6365), - [anon_sym_PIPE_PIPE] = ACTIONS(6365), - [sym_op_coalescing] = ACTIONS(6365), - [anon_sym_from] = ACTIONS(6365), - [anon_sym_into] = ACTIONS(6365), - [anon_sym_join] = ACTIONS(6365), - [anon_sym_on] = ACTIONS(6365), - [anon_sym_equals] = ACTIONS(6365), - [anon_sym_let] = ACTIONS(6365), - [anon_sym_orderby] = ACTIONS(6365), - [anon_sym_group] = ACTIONS(6365), - [anon_sym_by] = ACTIONS(6365), - [anon_sym_select] = ACTIONS(6365), - [anon_sym_as] = ACTIONS(6365), - [anon_sym_is] = ACTIONS(6365), - [anon_sym_DASH_GT] = ACTIONS(6365), - [anon_sym_with] = ACTIONS(6365), - [aux_sym_preproc_if_token3] = ACTIONS(6365), - [aux_sym_preproc_else_token1] = ACTIONS(6365), - [aux_sym_preproc_elif_token1] = ACTIONS(6365), + [anon_sym_SEMI] = ACTIONS(5767), + [anon_sym_LBRACK] = ACTIONS(5767), + [anon_sym_COLON] = ACTIONS(5767), + [anon_sym_COMMA] = ACTIONS(5767), + [anon_sym_RBRACK] = ACTIONS(5767), + [anon_sym_LPAREN] = ACTIONS(5767), + [anon_sym_RPAREN] = ACTIONS(5767), + [anon_sym_RBRACE] = ACTIONS(5767), + [anon_sym_LT] = ACTIONS(5769), + [anon_sym_GT] = ACTIONS(5769), + [anon_sym_in] = ACTIONS(5769), + [anon_sym_QMARK] = ACTIONS(5769), + [anon_sym_DOT] = ACTIONS(5769), + [anon_sym_EQ_GT] = ACTIONS(5767), + [anon_sym_STAR] = ACTIONS(5767), + [anon_sym_switch] = ACTIONS(5767), + [anon_sym_when] = ACTIONS(5767), + [anon_sym_DOT_DOT] = ACTIONS(5767), + [anon_sym_LT_EQ] = ACTIONS(5767), + [anon_sym_GT_EQ] = ACTIONS(5767), + [anon_sym_and] = ACTIONS(5767), + [anon_sym_or] = ACTIONS(5767), + [anon_sym_EQ_EQ] = ACTIONS(5767), + [anon_sym_BANG_EQ] = ACTIONS(5767), + [anon_sym_AMP_AMP] = ACTIONS(5767), + [anon_sym_PIPE_PIPE] = ACTIONS(5767), + [anon_sym_AMP] = ACTIONS(5769), + [sym_op_bitwise_or] = ACTIONS(5769), + [anon_sym_CARET] = ACTIONS(5767), + [sym_op_left_shift] = ACTIONS(5767), + [sym_op_right_shift] = ACTIONS(5769), + [sym_op_unsigned_right_shift] = ACTIONS(5767), + [anon_sym_PLUS] = ACTIONS(5769), + [anon_sym_DASH] = ACTIONS(5769), + [sym_op_divide] = ACTIONS(5769), + [sym_op_modulo] = ACTIONS(5767), + [sym_op_coalescing] = ACTIONS(5767), + [anon_sym_BANG] = ACTIONS(5769), + [anon_sym_PLUS_PLUS] = ACTIONS(5767), + [anon_sym_DASH_DASH] = ACTIONS(5767), + [anon_sym_into] = ACTIONS(5767), + [anon_sym_on] = ACTIONS(5767), + [anon_sym_equals] = ACTIONS(5767), + [anon_sym_by] = ACTIONS(5767), + [anon_sym_as] = ACTIONS(5767), + [anon_sym_is] = ACTIONS(5767), + [anon_sym_DASH_GT] = ACTIONS(5767), + [anon_sym_with] = ACTIONS(5767), + [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), @@ -569149,27 +564093,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4067] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4067), [sym_preproc_endregion] = STATE(4067), [sym_preproc_line] = STATE(4067), @@ -569179,42 +564117,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4067), [sym_preproc_define] = STATE(4067), [sym_preproc_undef] = STATE(4067), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6108), - [anon_sym_as] = ACTIONS(6110), - [anon_sym_is] = ACTIONS(6112), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [aux_sym_initializer_expression_repeat1] = STATE(7057), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6735), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(6737), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -569227,27 +564165,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4068] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4068), [sym_preproc_endregion] = STATE(4068), [sym_preproc_line] = STATE(4068), @@ -569257,42 +564189,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4068), [sym_preproc_define] = STATE(4068), [sym_preproc_undef] = STATE(4068), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6043), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6011), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6045), - [anon_sym_equals] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(6013), - [anon_sym_is] = ACTIONS(6015), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [aux_sym__for_statement_conditions_repeat1] = STATE(7148), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6739), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6741), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -569305,27 +564237,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4069] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4069), [sym_preproc_endregion] = STATE(4069), [sym_preproc_line] = STATE(4069), @@ -569335,42 +564261,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4069), [sym_preproc_define] = STATE(4069), [sym_preproc_undef] = STATE(4069), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -569392,63 +564318,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4070), [sym_preproc_define] = STATE(4070), [sym_preproc_undef] = STATE(4070), - [anon_sym_SEMI] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(6369), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_COMMA] = ACTIONS(6369), - [anon_sym_RBRACK] = ACTIONS(6369), - [anon_sym_LPAREN] = ACTIONS(6369), - [anon_sym_RPAREN] = ACTIONS(6369), - [anon_sym_RBRACE] = ACTIONS(6369), - [anon_sym_LT] = ACTIONS(6371), - [anon_sym_GT] = ACTIONS(6371), - [anon_sym_in] = ACTIONS(6371), - [anon_sym_where] = ACTIONS(6369), - [anon_sym_QMARK] = ACTIONS(6371), - [anon_sym_BANG] = ACTIONS(6371), - [anon_sym_PLUS_PLUS] = ACTIONS(6369), - [anon_sym_DASH_DASH] = ACTIONS(6369), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6369), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_PERCENT] = ACTIONS(6369), - [anon_sym_CARET] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6371), - [anon_sym_AMP] = ACTIONS(6371), - [anon_sym_LT_LT] = ACTIONS(6369), - [anon_sym_GT_GT] = ACTIONS(6371), - [anon_sym_GT_GT_GT] = ACTIONS(6369), - [anon_sym_EQ_EQ] = ACTIONS(6369), - [anon_sym_BANG_EQ] = ACTIONS(6369), - [anon_sym_GT_EQ] = ACTIONS(6369), - [anon_sym_LT_EQ] = ACTIONS(6369), - [anon_sym_DOT] = ACTIONS(6371), - [anon_sym_EQ_GT] = ACTIONS(6369), - [anon_sym_switch] = ACTIONS(6369), - [anon_sym_DOT_DOT] = ACTIONS(6369), - [anon_sym_and] = ACTIONS(6369), - [anon_sym_or] = ACTIONS(6371), - [anon_sym_AMP_AMP] = ACTIONS(6369), - [anon_sym_PIPE_PIPE] = ACTIONS(6369), - [sym_op_coalescing] = ACTIONS(6369), - [anon_sym_from] = ACTIONS(6369), - [anon_sym_into] = ACTIONS(6369), - [anon_sym_join] = ACTIONS(6369), - [anon_sym_on] = ACTIONS(6369), - [anon_sym_equals] = ACTIONS(6369), - [anon_sym_let] = ACTIONS(6369), - [anon_sym_orderby] = ACTIONS(6369), - [anon_sym_group] = ACTIONS(6369), - [anon_sym_by] = ACTIONS(6369), - [anon_sym_select] = ACTIONS(6369), - [anon_sym_as] = ACTIONS(6369), - [anon_sym_is] = ACTIONS(6369), - [anon_sym_DASH_GT] = ACTIONS(6369), - [anon_sym_with] = ACTIONS(6369), - [aux_sym_preproc_if_token3] = ACTIONS(6369), - [aux_sym_preproc_else_token1] = ACTIONS(6369), - [aux_sym_preproc_elif_token1] = ACTIONS(6369), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(6743), + [anon_sym_GT] = ACTIONS(6743), + [anon_sym_in] = ACTIONS(6743), + [anon_sym_QMARK] = ACTIONS(6743), + [anon_sym_DOT] = ACTIONS(6743), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_and] = ACTIONS(4152), + [anon_sym_or] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(6743), + [sym_op_bitwise_or] = ACTIONS(6743), + [anon_sym_CARET] = ACTIONS(4152), + [sym_op_left_shift] = ACTIONS(4152), + [sym_op_right_shift] = ACTIONS(6743), + [sym_op_unsigned_right_shift] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(6743), + [anon_sym_DASH] = ACTIONS(6743), + [sym_op_divide] = ACTIONS(6743), + [sym_op_modulo] = ACTIONS(4152), + [sym_op_coalescing] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(6743), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_into] = ACTIONS(4152), + [anon_sym_on] = ACTIONS(4152), + [anon_sym_equals] = ACTIONS(4152), + [anon_sym_by] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [anon_sym_with] = ACTIONS(4152), + [aux_sym_preproc_if_token3] = ACTIONS(4152), + [aux_sym_preproc_else_token1] = ACTIONS(4152), + [aux_sym_preproc_elif_token1] = ACTIONS(4152), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -569461,27 +564381,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4071] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), [sym_preproc_region] = STATE(4071), [sym_preproc_endregion] = STATE(4071), [sym_preproc_line] = STATE(4071), @@ -569491,42 +564390,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4071), [sym_preproc_define] = STATE(4071), [sym_preproc_undef] = STATE(4071), + [anon_sym_EQ] = ACTIONS(6745), [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6023), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_when] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(6747), + [anon_sym_DASH_EQ] = ACTIONS(6747), + [anon_sym_STAR_EQ] = ACTIONS(6747), + [anon_sym_SLASH_EQ] = ACTIONS(6747), + [anon_sym_PERCENT_EQ] = ACTIONS(6747), + [anon_sym_AMP_EQ] = ACTIONS(6747), + [anon_sym_CARET_EQ] = ACTIONS(6747), + [anon_sym_PIPE_EQ] = ACTIONS(6747), + [anon_sym_LT_LT_EQ] = ACTIONS(6747), + [anon_sym_GT_GT_EQ] = ACTIONS(6747), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6747), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6747), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -569539,27 +564453,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4072] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4072), [sym_preproc_endregion] = STATE(4072), [sym_preproc_line] = STATE(4072), @@ -569569,42 +564477,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4072), [sym_preproc_define] = STATE(4072), [sym_preproc_undef] = STATE(4072), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6142), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6144), - [anon_sym_as] = ACTIONS(5524), - [anon_sym_is] = ACTIONS(6146), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(5364), + [aux_sym_preproc_else_token1] = ACTIONS(5364), + [aux_sym_preproc_elif_token1] = ACTIONS(5364), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -569617,27 +564525,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4073] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1196), + [sym_op_lte] = STATE(1196), + [sym_op_eq] = STATE(1195), + [sym_op_neq] = STATE(1195), + [sym_op_gt] = STATE(1196), + [sym_op_gte] = STATE(1196), + [sym_op_and] = STATE(1193), + [sym_op_or] = STATE(1192), + [sym_op_bitwise_and] = STATE(1191), + [sym_op_bitwise_xor] = STATE(1190), + [sym_op_plus] = STATE(1189), + [sym_op_minus] = STATE(1189), + [sym_op_multiply] = STATE(1202), [sym_preproc_region] = STATE(4073), [sym_preproc_endregion] = STATE(4073), [sym_preproc_line] = STATE(4073), @@ -569647,42 +564549,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4073), [sym_preproc_define] = STATE(4073), [sym_preproc_undef] = STATE(4073), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(6749), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6533), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6573), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6410), + [sym_op_right_shift] = ACTIONS(6412), + [sym_op_unsigned_right_shift] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6414), + [sym_op_modulo] = ACTIONS(6416), + [sym_op_coalescing] = ACTIONS(6575), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -569695,6 +564597,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4074] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4074), [sym_preproc_endregion] = STATE(4074), [sym_preproc_line] = STATE(4074), @@ -569704,63 +564621,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4074), [sym_preproc_define] = STATE(4074), [sym_preproc_undef] = STATE(4074), - [anon_sym_SEMI] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(6373), - [anon_sym_COLON] = ACTIONS(6373), - [anon_sym_COMMA] = ACTIONS(6373), - [anon_sym_RBRACK] = ACTIONS(6373), - [anon_sym_LPAREN] = ACTIONS(6373), - [anon_sym_RPAREN] = ACTIONS(6373), - [anon_sym_RBRACE] = ACTIONS(6373), - [anon_sym_LT] = ACTIONS(6375), - [anon_sym_GT] = ACTIONS(6375), - [anon_sym_in] = ACTIONS(6375), - [anon_sym_where] = ACTIONS(6373), - [anon_sym_QMARK] = ACTIONS(6375), - [anon_sym_BANG] = ACTIONS(6375), - [anon_sym_PLUS_PLUS] = ACTIONS(6373), - [anon_sym_DASH_DASH] = ACTIONS(6373), - [anon_sym_PLUS] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_STAR] = ACTIONS(6373), - [anon_sym_SLASH] = ACTIONS(6375), - [anon_sym_PERCENT] = ACTIONS(6373), - [anon_sym_CARET] = ACTIONS(6373), - [anon_sym_PIPE] = ACTIONS(6375), - [anon_sym_AMP] = ACTIONS(6375), - [anon_sym_LT_LT] = ACTIONS(6373), - [anon_sym_GT_GT] = ACTIONS(6375), - [anon_sym_GT_GT_GT] = ACTIONS(6373), - [anon_sym_EQ_EQ] = ACTIONS(6373), - [anon_sym_BANG_EQ] = ACTIONS(6373), - [anon_sym_GT_EQ] = ACTIONS(6373), - [anon_sym_LT_EQ] = ACTIONS(6373), - [anon_sym_DOT] = ACTIONS(6375), - [anon_sym_EQ_GT] = ACTIONS(6373), - [anon_sym_switch] = ACTIONS(6373), - [anon_sym_DOT_DOT] = ACTIONS(6373), - [anon_sym_and] = ACTIONS(6373), - [anon_sym_or] = ACTIONS(6375), - [anon_sym_AMP_AMP] = ACTIONS(6373), - [anon_sym_PIPE_PIPE] = ACTIONS(6373), - [sym_op_coalescing] = ACTIONS(6373), - [anon_sym_from] = ACTIONS(6373), - [anon_sym_into] = ACTIONS(6373), - [anon_sym_join] = ACTIONS(6373), - [anon_sym_on] = ACTIONS(6373), - [anon_sym_equals] = ACTIONS(6373), - [anon_sym_let] = ACTIONS(6373), - [anon_sym_orderby] = ACTIONS(6373), - [anon_sym_group] = ACTIONS(6373), - [anon_sym_by] = ACTIONS(6373), - [anon_sym_select] = ACTIONS(6373), - [anon_sym_as] = ACTIONS(6373), - [anon_sym_is] = ACTIONS(6373), - [anon_sym_DASH_GT] = ACTIONS(6373), - [anon_sym_with] = ACTIONS(6373), - [aux_sym_preproc_if_token3] = ACTIONS(6373), - [aux_sym_preproc_else_token1] = ACTIONS(6373), - [aux_sym_preproc_elif_token1] = ACTIONS(6373), + [aux_sym__for_statement_conditions_repeat1] = STATE(7145), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6739), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6751), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -569773,27 +564669,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4075] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4075), [sym_preproc_endregion] = STATE(4075), [sym_preproc_line] = STATE(4075), @@ -569803,42 +564693,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4075), [sym_preproc_define] = STATE(4075), [sym_preproc_undef] = STATE(4075), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6039), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(4778), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6041), - [anon_sym_on] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(6033), - [anon_sym_is] = ACTIONS(6035), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [aux_sym__for_statement_conditions_repeat1] = STATE(7140), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6739), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6753), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -569851,6 +564741,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4076] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4076), [sym_preproc_endregion] = STATE(4076), [sym_preproc_line] = STATE(4076), @@ -569860,63 +564765,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4076), [sym_preproc_define] = STATE(4076), [sym_preproc_undef] = STATE(4076), - [anon_sym_SEMI] = ACTIONS(6377), - [anon_sym_LBRACK] = ACTIONS(6377), - [anon_sym_COLON] = ACTIONS(6377), - [anon_sym_COMMA] = ACTIONS(6377), - [anon_sym_RBRACK] = ACTIONS(6377), - [anon_sym_LPAREN] = ACTIONS(6377), - [anon_sym_RPAREN] = ACTIONS(6377), - [anon_sym_RBRACE] = ACTIONS(6377), - [anon_sym_LT] = ACTIONS(6379), - [anon_sym_GT] = ACTIONS(6379), - [anon_sym_in] = ACTIONS(6379), - [anon_sym_where] = ACTIONS(6377), - [anon_sym_QMARK] = ACTIONS(6379), - [anon_sym_BANG] = ACTIONS(6379), - [anon_sym_PLUS_PLUS] = ACTIONS(6377), - [anon_sym_DASH_DASH] = ACTIONS(6377), - [anon_sym_PLUS] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [anon_sym_STAR] = ACTIONS(6377), - [anon_sym_SLASH] = ACTIONS(6379), - [anon_sym_PERCENT] = ACTIONS(6377), - [anon_sym_CARET] = ACTIONS(6377), - [anon_sym_PIPE] = ACTIONS(6379), - [anon_sym_AMP] = ACTIONS(6379), - [anon_sym_LT_LT] = ACTIONS(6377), - [anon_sym_GT_GT] = ACTIONS(6379), - [anon_sym_GT_GT_GT] = ACTIONS(6377), - [anon_sym_EQ_EQ] = ACTIONS(6377), - [anon_sym_BANG_EQ] = ACTIONS(6377), - [anon_sym_GT_EQ] = ACTIONS(6377), - [anon_sym_LT_EQ] = ACTIONS(6377), - [anon_sym_DOT] = ACTIONS(6379), - [anon_sym_EQ_GT] = ACTIONS(6377), - [anon_sym_switch] = ACTIONS(6377), - [anon_sym_DOT_DOT] = ACTIONS(6377), - [anon_sym_and] = ACTIONS(6377), - [anon_sym_or] = ACTIONS(6379), - [anon_sym_AMP_AMP] = ACTIONS(6377), - [anon_sym_PIPE_PIPE] = ACTIONS(6377), - [sym_op_coalescing] = ACTIONS(6377), - [anon_sym_from] = ACTIONS(6377), - [anon_sym_into] = ACTIONS(6377), - [anon_sym_join] = ACTIONS(6377), - [anon_sym_on] = ACTIONS(6377), - [anon_sym_equals] = ACTIONS(6377), - [anon_sym_let] = ACTIONS(6377), - [anon_sym_orderby] = ACTIONS(6377), - [anon_sym_group] = ACTIONS(6377), - [anon_sym_by] = ACTIONS(6377), - [anon_sym_select] = ACTIONS(6377), - [anon_sym_as] = ACTIONS(6377), - [anon_sym_is] = ACTIONS(6377), - [anon_sym_DASH_GT] = ACTIONS(6377), - [anon_sym_with] = ACTIONS(6377), - [aux_sym_preproc_if_token3] = ACTIONS(6377), - [aux_sym_preproc_else_token1] = ACTIONS(6377), - [aux_sym_preproc_elif_token1] = ACTIONS(6377), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6731), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6707), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(6709), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6697), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -569929,27 +564813,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4077] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4077), [sym_preproc_endregion] = STATE(4077), [sym_preproc_line] = STATE(4077), @@ -569959,42 +564837,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4077), [sym_preproc_define] = STATE(4077), [sym_preproc_undef] = STATE(4077), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(4672), - [aux_sym_preproc_else_token1] = ACTIONS(4672), - [aux_sym_preproc_elif_token1] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6731), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6707), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(6709), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6697), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -570007,27 +564885,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4078] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4078), [sym_preproc_endregion] = STATE(4078), [sym_preproc_line] = STATE(4078), @@ -570037,42 +564909,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4078), [sym_preproc_define] = STATE(4078), [sym_preproc_undef] = STATE(4078), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_by] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(5356), + [aux_sym_preproc_else_token1] = ACTIONS(5356), + [aux_sym_preproc_elif_token1] = ACTIONS(5356), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -570085,27 +564957,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4079] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4079), [sym_preproc_endregion] = STATE(4079), [sym_preproc_line] = STATE(4079), @@ -570115,42 +564981,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4079), [sym_preproc_define] = STATE(4079), [sym_preproc_undef] = STATE(4079), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_and] = ACTIONS(4766), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_by] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6731), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5296), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6707), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(6709), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6697), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -570163,27 +565029,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4080] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4080), [sym_preproc_endregion] = STATE(4080), [sym_preproc_line] = STATE(4080), @@ -570193,42 +565053,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4080), [sym_preproc_define] = STATE(4080), [sym_preproc_undef] = STATE(4080), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(6106), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6108), - [anon_sym_as] = ACTIONS(6110), - [anon_sym_is] = ACTIONS(6112), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6731), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6707), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(6709), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6697), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -570241,27 +565101,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4081] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_parameter_list] = STATE(7966), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6226), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym__lambda_parameters] = STATE(8081), + [sym_identifier] = STATE(6061), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4081), [sym_preproc_endregion] = STATE(4081), [sym_preproc_line] = STATE(4081), @@ -570271,42 +565130,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4081), [sym_preproc_define] = STATE(4081), [sym_preproc_undef] = STATE(4081), - [aux_sym__for_statement_conditions_repeat1] = STATE(7239), - [anon_sym_SEMI] = ACTIONS(6381), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6383), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6049), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym__lambda_expression_init_repeat1] = STATE(6103), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(6755), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -570319,27 +565173,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4082] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4082), [sym_preproc_endregion] = STATE(4082), [sym_preproc_line] = STATE(4082), @@ -570349,42 +565197,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4082), [sym_preproc_define] = STATE(4082), [sym_preproc_undef] = STATE(4082), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_in] = ACTIONS(4774), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_and] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5308), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -570397,6 +565245,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4083] = { + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7726), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4083), [sym_preproc_endregion] = STATE(4083), [sym_preproc_line] = STATE(4083), @@ -570406,63 +565274,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4083), [sym_preproc_define] = STATE(4083), [sym_preproc_undef] = STATE(4083), - [anon_sym_SEMI] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6385), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_COMMA] = ACTIONS(6385), - [anon_sym_RBRACK] = ACTIONS(6385), - [anon_sym_LPAREN] = ACTIONS(6385), - [anon_sym_RPAREN] = ACTIONS(6385), - [anon_sym_RBRACE] = ACTIONS(6385), - [anon_sym_LT] = ACTIONS(6387), - [anon_sym_GT] = ACTIONS(6387), - [anon_sym_in] = ACTIONS(6387), - [anon_sym_where] = ACTIONS(6385), - [anon_sym_QMARK] = ACTIONS(6387), - [anon_sym_BANG] = ACTIONS(6387), - [anon_sym_PLUS_PLUS] = ACTIONS(6385), - [anon_sym_DASH_DASH] = ACTIONS(6385), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6385), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_PERCENT] = ACTIONS(6385), - [anon_sym_CARET] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6387), - [anon_sym_AMP] = ACTIONS(6387), - [anon_sym_LT_LT] = ACTIONS(6385), - [anon_sym_GT_GT] = ACTIONS(6387), - [anon_sym_GT_GT_GT] = ACTIONS(6385), - [anon_sym_EQ_EQ] = ACTIONS(6385), - [anon_sym_BANG_EQ] = ACTIONS(6385), - [anon_sym_GT_EQ] = ACTIONS(6385), - [anon_sym_LT_EQ] = ACTIONS(6385), - [anon_sym_DOT] = ACTIONS(6387), - [anon_sym_EQ_GT] = ACTIONS(6385), - [anon_sym_switch] = ACTIONS(6385), - [anon_sym_DOT_DOT] = ACTIONS(6385), - [anon_sym_and] = ACTIONS(6385), - [anon_sym_or] = ACTIONS(6387), - [anon_sym_AMP_AMP] = ACTIONS(6385), - [anon_sym_PIPE_PIPE] = ACTIONS(6385), - [sym_op_coalescing] = ACTIONS(6385), - [anon_sym_from] = ACTIONS(6385), - [anon_sym_into] = ACTIONS(6385), - [anon_sym_join] = ACTIONS(6385), - [anon_sym_on] = ACTIONS(6385), - [anon_sym_equals] = ACTIONS(6385), - [anon_sym_let] = ACTIONS(6385), - [anon_sym_orderby] = ACTIONS(6385), - [anon_sym_group] = ACTIONS(6385), - [anon_sym_by] = ACTIONS(6385), - [anon_sym_select] = ACTIONS(6385), - [anon_sym_as] = ACTIONS(6385), - [anon_sym_is] = ACTIONS(6385), - [anon_sym_DASH_GT] = ACTIONS(6385), - [anon_sym_with] = ACTIONS(6385), - [aux_sym_preproc_if_token3] = ACTIONS(6385), - [aux_sym_preproc_else_token1] = ACTIONS(6385), - [aux_sym_preproc_elif_token1] = ACTIONS(6385), + [aux_sym_function_pointer_type_repeat1] = STATE(4362), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -570475,27 +565317,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4084] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7726), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4084), [sym_preproc_endregion] = STATE(4084), [sym_preproc_line] = STATE(4084), @@ -570505,42 +565346,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4084), [sym_preproc_define] = STATE(4084), [sym_preproc_undef] = STATE(4084), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6126), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6128), - [anon_sym_is] = ACTIONS(6130), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -570553,27 +565389,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4085] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), [sym_preproc_region] = STATE(4085), [sym_preproc_endregion] = STATE(4085), [sym_preproc_line] = STATE(4085), @@ -570583,42 +565398,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4085), [sym_preproc_define] = STATE(4085), [sym_preproc_undef] = STATE(4085), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6110), - [anon_sym_is] = ACTIONS(6112), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_COLON] = ACTIONS(4393), + [anon_sym_COMMA] = ACTIONS(4393), + [anon_sym_RBRACK] = ACTIONS(4393), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym_RPAREN] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4393), + [anon_sym_RBRACE] = ACTIONS(4393), + [anon_sym_LT] = ACTIONS(4391), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_EQ_GT] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_switch] = ACTIONS(4393), + [anon_sym_when] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4393), + [anon_sym_LT_EQ] = ACTIONS(4393), + [anon_sym_GT_EQ] = ACTIONS(4393), + [anon_sym_and] = ACTIONS(4393), + [anon_sym_or] = ACTIONS(4393), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_AMP_AMP] = ACTIONS(4393), + [anon_sym_PIPE_PIPE] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(4391), + [sym_op_bitwise_or] = ACTIONS(4391), + [anon_sym_CARET] = ACTIONS(4393), + [sym_op_left_shift] = ACTIONS(4393), + [sym_op_right_shift] = ACTIONS(4391), + [sym_op_unsigned_right_shift] = ACTIONS(4393), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [sym_op_divide] = ACTIONS(4391), + [sym_op_modulo] = ACTIONS(4393), + [sym_op_coalescing] = ACTIONS(4393), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4393), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_on] = ACTIONS(4393), + [anon_sym_equals] = ACTIONS(4393), + [anon_sym_by] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_DASH_GT] = ACTIONS(4393), + [anon_sym_with] = ACTIONS(4393), + [aux_sym_preproc_if_token3] = ACTIONS(4393), + [aux_sym_preproc_else_token1] = ACTIONS(4393), + [aux_sym_preproc_elif_token1] = ACTIONS(4393), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -570631,27 +565461,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4086] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), [sym_preproc_region] = STATE(4086), [sym_preproc_endregion] = STATE(4086), [sym_preproc_line] = STATE(4086), @@ -570661,42 +565470,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4086), [sym_preproc_define] = STATE(4086), [sym_preproc_undef] = STATE(4086), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6110), - [anon_sym_is] = ACTIONS(6112), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5865), + [anon_sym_LBRACK] = ACTIONS(5865), + [anon_sym_COLON] = ACTIONS(5865), + [anon_sym_COMMA] = ACTIONS(5865), + [anon_sym_RBRACK] = ACTIONS(5865), + [anon_sym_LPAREN] = ACTIONS(5865), + [anon_sym_RPAREN] = ACTIONS(5865), + [anon_sym_RBRACE] = ACTIONS(5865), + [anon_sym_LT] = ACTIONS(5867), + [anon_sym_GT] = ACTIONS(5867), + [anon_sym_in] = ACTIONS(5867), + [anon_sym_QMARK] = ACTIONS(5867), + [anon_sym_DOT] = ACTIONS(5867), + [anon_sym_EQ_GT] = ACTIONS(5865), + [anon_sym_STAR] = ACTIONS(5865), + [anon_sym_switch] = ACTIONS(5865), + [anon_sym_when] = ACTIONS(5865), + [anon_sym_DOT_DOT] = ACTIONS(5865), + [anon_sym_LT_EQ] = ACTIONS(5865), + [anon_sym_GT_EQ] = ACTIONS(5865), + [anon_sym_and] = ACTIONS(5865), + [anon_sym_or] = ACTIONS(5865), + [anon_sym_EQ_EQ] = ACTIONS(5865), + [anon_sym_BANG_EQ] = ACTIONS(5865), + [anon_sym_AMP_AMP] = ACTIONS(5865), + [anon_sym_PIPE_PIPE] = ACTIONS(5865), + [anon_sym_AMP] = ACTIONS(5867), + [sym_op_bitwise_or] = ACTIONS(5867), + [anon_sym_CARET] = ACTIONS(5865), + [sym_op_left_shift] = ACTIONS(5865), + [sym_op_right_shift] = ACTIONS(5867), + [sym_op_unsigned_right_shift] = ACTIONS(5865), + [anon_sym_PLUS] = ACTIONS(5867), + [anon_sym_DASH] = ACTIONS(5867), + [sym_op_divide] = ACTIONS(5867), + [sym_op_modulo] = ACTIONS(5865), + [sym_op_coalescing] = ACTIONS(5865), + [anon_sym_BANG] = ACTIONS(5867), + [anon_sym_PLUS_PLUS] = ACTIONS(5865), + [anon_sym_DASH_DASH] = ACTIONS(5865), + [anon_sym_into] = ACTIONS(5865), + [anon_sym_on] = ACTIONS(5865), + [anon_sym_equals] = ACTIONS(5865), + [anon_sym_by] = ACTIONS(5865), + [anon_sym_as] = ACTIONS(5865), + [anon_sym_is] = ACTIONS(5865), + [anon_sym_DASH_GT] = ACTIONS(5865), + [anon_sym_with] = ACTIONS(5865), + [aux_sym_preproc_if_token3] = ACTIONS(5865), + [aux_sym_preproc_else_token1] = ACTIONS(5865), + [aux_sym_preproc_elif_token1] = ACTIONS(5865), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -570709,27 +565533,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4087] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4087), [sym_preproc_endregion] = STATE(4087), [sym_preproc_line] = STATE(4087), @@ -570739,42 +565557,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4087), [sym_preproc_define] = STATE(4087), [sym_preproc_undef] = STATE(4087), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -570796,63 +565614,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4088), [sym_preproc_define] = STATE(4088), [sym_preproc_undef] = STATE(4088), - [anon_sym_SEMI] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(6389), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_COMMA] = ACTIONS(6389), - [anon_sym_RBRACK] = ACTIONS(6389), - [anon_sym_LPAREN] = ACTIONS(6389), - [anon_sym_RPAREN] = ACTIONS(6389), - [anon_sym_RBRACE] = ACTIONS(6389), - [anon_sym_LT] = ACTIONS(6391), - [anon_sym_GT] = ACTIONS(6391), - [anon_sym_in] = ACTIONS(6391), - [anon_sym_where] = ACTIONS(6389), - [anon_sym_QMARK] = ACTIONS(6391), - [anon_sym_BANG] = ACTIONS(6391), - [anon_sym_PLUS_PLUS] = ACTIONS(6389), - [anon_sym_DASH_DASH] = ACTIONS(6389), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6389), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_PERCENT] = ACTIONS(6389), - [anon_sym_CARET] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6391), - [anon_sym_AMP] = ACTIONS(6391), - [anon_sym_LT_LT] = ACTIONS(6389), - [anon_sym_GT_GT] = ACTIONS(6391), - [anon_sym_GT_GT_GT] = ACTIONS(6389), - [anon_sym_EQ_EQ] = ACTIONS(6389), - [anon_sym_BANG_EQ] = ACTIONS(6389), - [anon_sym_GT_EQ] = ACTIONS(6389), - [anon_sym_LT_EQ] = ACTIONS(6389), - [anon_sym_DOT] = ACTIONS(6391), - [anon_sym_EQ_GT] = ACTIONS(6389), - [anon_sym_switch] = ACTIONS(6389), - [anon_sym_DOT_DOT] = ACTIONS(6389), - [anon_sym_and] = ACTIONS(6389), - [anon_sym_or] = ACTIONS(6391), - [anon_sym_AMP_AMP] = ACTIONS(6389), - [anon_sym_PIPE_PIPE] = ACTIONS(6389), - [sym_op_coalescing] = ACTIONS(6389), - [anon_sym_from] = ACTIONS(6389), - [anon_sym_into] = ACTIONS(6389), - [anon_sym_join] = ACTIONS(6389), - [anon_sym_on] = ACTIONS(6389), - [anon_sym_equals] = ACTIONS(6389), - [anon_sym_let] = ACTIONS(6389), - [anon_sym_orderby] = ACTIONS(6389), - [anon_sym_group] = ACTIONS(6389), - [anon_sym_by] = ACTIONS(6389), - [anon_sym_select] = ACTIONS(6389), - [anon_sym_as] = ACTIONS(6389), - [anon_sym_is] = ACTIONS(6389), - [anon_sym_DASH_GT] = ACTIONS(6389), - [anon_sym_with] = ACTIONS(6389), - [aux_sym_preproc_if_token3] = ACTIONS(6389), - [aux_sym_preproc_else_token1] = ACTIONS(6389), - [aux_sym_preproc_elif_token1] = ACTIONS(6389), + [anon_sym_SEMI] = ACTIONS(5817), + [anon_sym_LBRACK] = ACTIONS(5817), + [anon_sym_COLON] = ACTIONS(5817), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_RBRACK] = ACTIONS(5817), + [anon_sym_LPAREN] = ACTIONS(5817), + [anon_sym_RPAREN] = ACTIONS(5817), + [anon_sym_RBRACE] = ACTIONS(5817), + [anon_sym_LT] = ACTIONS(5819), + [anon_sym_GT] = ACTIONS(5819), + [anon_sym_in] = ACTIONS(5817), + [anon_sym_QMARK] = ACTIONS(5819), + [anon_sym_DOT] = ACTIONS(5819), + [anon_sym_EQ_GT] = ACTIONS(5817), + [anon_sym_STAR] = ACTIONS(5817), + [anon_sym_switch] = ACTIONS(5817), + [anon_sym_when] = ACTIONS(5817), + [anon_sym_DOT_DOT] = ACTIONS(5817), + [anon_sym_LT_EQ] = ACTIONS(5817), + [anon_sym_GT_EQ] = ACTIONS(5817), + [anon_sym_and] = ACTIONS(5817), + [anon_sym_or] = ACTIONS(5817), + [anon_sym_EQ_EQ] = ACTIONS(5817), + [anon_sym_BANG_EQ] = ACTIONS(5817), + [anon_sym_AMP_AMP] = ACTIONS(5817), + [anon_sym_PIPE_PIPE] = ACTIONS(5817), + [anon_sym_AMP] = ACTIONS(5819), + [sym_op_bitwise_or] = ACTIONS(5819), + [anon_sym_CARET] = ACTIONS(5817), + [sym_op_left_shift] = ACTIONS(5817), + [sym_op_right_shift] = ACTIONS(5819), + [sym_op_unsigned_right_shift] = ACTIONS(5817), + [anon_sym_PLUS] = ACTIONS(5819), + [anon_sym_DASH] = ACTIONS(5819), + [sym_op_divide] = ACTIONS(5819), + [sym_op_modulo] = ACTIONS(5817), + [sym_op_coalescing] = ACTIONS(5817), + [anon_sym_BANG] = ACTIONS(5819), + [anon_sym_PLUS_PLUS] = ACTIONS(5817), + [anon_sym_DASH_DASH] = ACTIONS(5817), + [anon_sym_on] = ACTIONS(5817), + [anon_sym_equals] = ACTIONS(5817), + [anon_sym_by] = ACTIONS(5817), + [anon_sym_as] = ACTIONS(5817), + [anon_sym_is] = ACTIONS(5817), + [anon_sym_DASH_GT] = ACTIONS(5817), + [anon_sym_with] = ACTIONS(5817), + [anon_sym_DQUOTE] = ACTIONS(5817), + [aux_sym_preproc_if_token3] = ACTIONS(5817), + [aux_sym_preproc_else_token1] = ACTIONS(5817), + [aux_sym_preproc_elif_token1] = ACTIONS(5817), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -570865,27 +565677,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4089] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), [sym_preproc_region] = STATE(4089), [sym_preproc_endregion] = STATE(4089), [sym_preproc_line] = STATE(4089), @@ -570895,42 +565686,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4089), [sym_preproc_define] = STATE(4089), [sym_preproc_undef] = STATE(4089), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6128), - [anon_sym_is] = ACTIONS(6130), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_COLON] = ACTIONS(2267), + [anon_sym_COMMA] = ACTIONS(2267), + [anon_sym_RBRACK] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_RPAREN] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_GT] = ACTIONS(2269), + [anon_sym_in] = ACTIONS(2269), + [anon_sym_QMARK] = ACTIONS(2269), + [anon_sym_DOT] = ACTIONS(2269), + [anon_sym_EQ_GT] = ACTIONS(2267), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_switch] = ACTIONS(2267), + [anon_sym_when] = ACTIONS(2267), + [anon_sym_DOT_DOT] = ACTIONS(2267), + [anon_sym_LT_EQ] = ACTIONS(2267), + [anon_sym_GT_EQ] = ACTIONS(2267), + [anon_sym_and] = ACTIONS(2267), + [anon_sym_or] = ACTIONS(2267), + [anon_sym_EQ_EQ] = ACTIONS(2267), + [anon_sym_BANG_EQ] = ACTIONS(2267), + [anon_sym_AMP_AMP] = ACTIONS(2267), + [anon_sym_PIPE_PIPE] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2269), + [sym_op_bitwise_or] = ACTIONS(2269), + [anon_sym_CARET] = ACTIONS(2267), + [sym_op_left_shift] = ACTIONS(2267), + [sym_op_right_shift] = ACTIONS(2269), + [sym_op_unsigned_right_shift] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [sym_op_divide] = ACTIONS(2269), + [sym_op_modulo] = ACTIONS(2267), + [sym_op_coalescing] = ACTIONS(2267), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_into] = ACTIONS(2267), + [anon_sym_on] = ACTIONS(2267), + [anon_sym_equals] = ACTIONS(2267), + [anon_sym_by] = ACTIONS(2267), + [anon_sym_as] = ACTIONS(2267), + [anon_sym_is] = ACTIONS(2267), + [anon_sym_DASH_GT] = ACTIONS(2267), + [anon_sym_with] = ACTIONS(2267), + [aux_sym_preproc_if_token3] = ACTIONS(2267), + [aux_sym_preproc_else_token1] = ACTIONS(2267), + [aux_sym_preproc_elif_token1] = ACTIONS(2267), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -570943,27 +565749,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4090] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4090), [sym_preproc_endregion] = STATE(4090), [sym_preproc_line] = STATE(4090), @@ -570973,42 +565773,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4090), [sym_preproc_define] = STATE(4090), [sym_preproc_undef] = STATE(4090), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6085), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -571021,6 +565821,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4091] = { + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8119), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4091), [sym_preproc_endregion] = STATE(4091), [sym_preproc_line] = STATE(4091), @@ -571030,63 +565850,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4091), [sym_preproc_define] = STATE(4091), [sym_preproc_undef] = STATE(4091), - [anon_sym_SEMI] = ACTIONS(6393), - [anon_sym_LBRACK] = ACTIONS(6393), - [anon_sym_COLON] = ACTIONS(6393), - [anon_sym_COMMA] = ACTIONS(6393), - [anon_sym_RBRACK] = ACTIONS(6393), - [anon_sym_LPAREN] = ACTIONS(6393), - [anon_sym_RPAREN] = ACTIONS(6393), - [anon_sym_RBRACE] = ACTIONS(6393), - [anon_sym_LT] = ACTIONS(6395), - [anon_sym_GT] = ACTIONS(6395), - [anon_sym_in] = ACTIONS(6395), - [anon_sym_where] = ACTIONS(6393), - [anon_sym_QMARK] = ACTIONS(6395), - [anon_sym_BANG] = ACTIONS(6395), - [anon_sym_PLUS_PLUS] = ACTIONS(6393), - [anon_sym_DASH_DASH] = ACTIONS(6393), - [anon_sym_PLUS] = ACTIONS(6395), - [anon_sym_DASH] = ACTIONS(6395), - [anon_sym_STAR] = ACTIONS(6393), - [anon_sym_SLASH] = ACTIONS(6395), - [anon_sym_PERCENT] = ACTIONS(6393), - [anon_sym_CARET] = ACTIONS(6393), - [anon_sym_PIPE] = ACTIONS(6395), - [anon_sym_AMP] = ACTIONS(6395), - [anon_sym_LT_LT] = ACTIONS(6393), - [anon_sym_GT_GT] = ACTIONS(6395), - [anon_sym_GT_GT_GT] = ACTIONS(6393), - [anon_sym_EQ_EQ] = ACTIONS(6393), - [anon_sym_BANG_EQ] = ACTIONS(6393), - [anon_sym_GT_EQ] = ACTIONS(6393), - [anon_sym_LT_EQ] = ACTIONS(6393), - [anon_sym_DOT] = ACTIONS(6395), - [anon_sym_EQ_GT] = ACTIONS(6393), - [anon_sym_switch] = ACTIONS(6393), - [anon_sym_DOT_DOT] = ACTIONS(6393), - [anon_sym_and] = ACTIONS(6393), - [anon_sym_or] = ACTIONS(6395), - [anon_sym_AMP_AMP] = ACTIONS(6393), - [anon_sym_PIPE_PIPE] = ACTIONS(6393), - [sym_op_coalescing] = ACTIONS(6393), - [anon_sym_from] = ACTIONS(6393), - [anon_sym_into] = ACTIONS(6393), - [anon_sym_join] = ACTIONS(6393), - [anon_sym_on] = ACTIONS(6393), - [anon_sym_equals] = ACTIONS(6393), - [anon_sym_let] = ACTIONS(6393), - [anon_sym_orderby] = ACTIONS(6393), - [anon_sym_group] = ACTIONS(6393), - [anon_sym_by] = ACTIONS(6393), - [anon_sym_select] = ACTIONS(6393), - [anon_sym_as] = ACTIONS(6393), - [anon_sym_is] = ACTIONS(6393), - [anon_sym_DASH_GT] = ACTIONS(6393), - [anon_sym_with] = ACTIONS(6393), - [aux_sym_preproc_if_token3] = ACTIONS(6393), - [aux_sym_preproc_else_token1] = ACTIONS(6393), - [aux_sym_preproc_elif_token1] = ACTIONS(6393), + [aux_sym_function_pointer_type_repeat1] = STATE(4108), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -571099,27 +565893,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4092] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), [sym_preproc_region] = STATE(4092), [sym_preproc_endregion] = STATE(4092), [sym_preproc_line] = STATE(4092), @@ -571129,42 +565902,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4092), [sym_preproc_define] = STATE(4092), [sym_preproc_undef] = STATE(4092), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6128), - [anon_sym_is] = ACTIONS(6130), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [sym__identifier_token] = ACTIONS(3488), + [anon_sym_extern] = ACTIONS(3488), + [anon_sym_alias] = ACTIONS(3488), + [anon_sym_global] = ACTIONS(3488), + [anon_sym_unsafe] = ACTIONS(3488), + [anon_sym_static] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_RBRACE] = ACTIONS(3490), + [anon_sym_public] = ACTIONS(3488), + [anon_sym_private] = ACTIONS(3488), + [anon_sym_readonly] = ACTIONS(3488), + [anon_sym_abstract] = ACTIONS(3488), + [anon_sym_async] = ACTIONS(3488), + [anon_sym_const] = ACTIONS(3488), + [anon_sym_file] = ACTIONS(3488), + [anon_sym_fixed] = ACTIONS(3488), + [anon_sym_internal] = ACTIONS(3488), + [anon_sym_new] = ACTIONS(3488), + [anon_sym_override] = ACTIONS(3488), + [anon_sym_partial] = ACTIONS(3488), + [anon_sym_protected] = ACTIONS(3488), + [anon_sym_required] = ACTIONS(3488), + [anon_sym_sealed] = ACTIONS(3488), + [anon_sym_virtual] = ACTIONS(3488), + [anon_sym_volatile] = ACTIONS(3488), + [anon_sym_where] = ACTIONS(3488), + [anon_sym_notnull] = ACTIONS(3488), + [anon_sym_unmanaged] = ACTIONS(3488), + [sym_accessor_get] = ACTIONS(3488), + [sym_accessor_set] = ACTIONS(3488), + [sym_accessor_add] = ACTIONS(3488), + [sym_accessor_remove] = ACTIONS(3488), + [sym_accessor_init] = ACTIONS(3488), + [anon_sym_scoped] = ACTIONS(3488), + [anon_sym_var] = ACTIONS(3488), + [anon_sym_yield] = ACTIONS(3488), + [anon_sym_when] = ACTIONS(3488), + [anon_sym_from] = ACTIONS(3488), + [anon_sym_into] = ACTIONS(3488), + [anon_sym_join] = ACTIONS(3488), + [anon_sym_on] = ACTIONS(3488), + [anon_sym_equals] = ACTIONS(3488), + [anon_sym_let] = ACTIONS(3488), + [anon_sym_orderby] = ACTIONS(3488), + [anon_sym_ascending] = ACTIONS(3488), + [anon_sym_descending] = ACTIONS(3488), + [anon_sym_group] = ACTIONS(3488), + [anon_sym_by] = ACTIONS(3488), + [anon_sym_select] = ACTIONS(3488), + [sym_grit_metavariable] = ACTIONS(3490), + [aux_sym_preproc_if_token1] = ACTIONS(3490), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -571177,27 +565965,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4093] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), [sym_preproc_region] = STATE(4093), [sym_preproc_endregion] = STATE(4093), [sym_preproc_line] = STATE(4093), @@ -571207,42 +565974,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4093), [sym_preproc_define] = STATE(4093), [sym_preproc_undef] = STATE(4093), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [sym__identifier_token] = ACTIONS(3500), + [anon_sym_extern] = ACTIONS(3500), + [anon_sym_alias] = ACTIONS(3500), + [anon_sym_global] = ACTIONS(3500), + [anon_sym_unsafe] = ACTIONS(3500), + [anon_sym_static] = ACTIONS(3500), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_RBRACE] = ACTIONS(3502), + [anon_sym_public] = ACTIONS(3500), + [anon_sym_private] = ACTIONS(3500), + [anon_sym_readonly] = ACTIONS(3500), + [anon_sym_abstract] = ACTIONS(3500), + [anon_sym_async] = ACTIONS(3500), + [anon_sym_const] = ACTIONS(3500), + [anon_sym_file] = ACTIONS(3500), + [anon_sym_fixed] = ACTIONS(3500), + [anon_sym_internal] = ACTIONS(3500), + [anon_sym_new] = ACTIONS(3500), + [anon_sym_override] = ACTIONS(3500), + [anon_sym_partial] = ACTIONS(3500), + [anon_sym_protected] = ACTIONS(3500), + [anon_sym_required] = ACTIONS(3500), + [anon_sym_sealed] = ACTIONS(3500), + [anon_sym_virtual] = ACTIONS(3500), + [anon_sym_volatile] = ACTIONS(3500), + [anon_sym_where] = ACTIONS(3500), + [anon_sym_notnull] = ACTIONS(3500), + [anon_sym_unmanaged] = ACTIONS(3500), + [sym_accessor_get] = ACTIONS(3500), + [sym_accessor_set] = ACTIONS(3500), + [sym_accessor_add] = ACTIONS(3500), + [sym_accessor_remove] = ACTIONS(3500), + [sym_accessor_init] = ACTIONS(3500), + [anon_sym_scoped] = ACTIONS(3500), + [anon_sym_var] = ACTIONS(3500), + [anon_sym_yield] = ACTIONS(3500), + [anon_sym_when] = ACTIONS(3500), + [anon_sym_from] = ACTIONS(3500), + [anon_sym_into] = ACTIONS(3500), + [anon_sym_join] = ACTIONS(3500), + [anon_sym_on] = ACTIONS(3500), + [anon_sym_equals] = ACTIONS(3500), + [anon_sym_let] = ACTIONS(3500), + [anon_sym_orderby] = ACTIONS(3500), + [anon_sym_ascending] = ACTIONS(3500), + [anon_sym_descending] = ACTIONS(3500), + [anon_sym_group] = ACTIONS(3500), + [anon_sym_by] = ACTIONS(3500), + [anon_sym_select] = ACTIONS(3500), + [sym_grit_metavariable] = ACTIONS(3502), + [aux_sym_preproc_if_token1] = ACTIONS(3502), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -571264,63 +566046,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4094), [sym_preproc_define] = STATE(4094), [sym_preproc_undef] = STATE(4094), - [anon_sym_SEMI] = ACTIONS(6397), - [anon_sym_LBRACK] = ACTIONS(6397), - [anon_sym_COLON] = ACTIONS(6397), - [anon_sym_COMMA] = ACTIONS(6397), - [anon_sym_RBRACK] = ACTIONS(6397), - [anon_sym_LPAREN] = ACTIONS(6397), - [anon_sym_RPAREN] = ACTIONS(6397), - [anon_sym_RBRACE] = ACTIONS(6397), - [anon_sym_LT] = ACTIONS(6399), - [anon_sym_GT] = ACTIONS(6399), - [anon_sym_in] = ACTIONS(6399), - [anon_sym_where] = ACTIONS(6397), - [anon_sym_QMARK] = ACTIONS(6399), - [anon_sym_BANG] = ACTIONS(6399), - [anon_sym_PLUS_PLUS] = ACTIONS(6397), - [anon_sym_DASH_DASH] = ACTIONS(6397), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_STAR] = ACTIONS(6397), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_PERCENT] = ACTIONS(6397), - [anon_sym_CARET] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(6399), - [anon_sym_AMP] = ACTIONS(6399), - [anon_sym_LT_LT] = ACTIONS(6397), - [anon_sym_GT_GT] = ACTIONS(6399), - [anon_sym_GT_GT_GT] = ACTIONS(6397), - [anon_sym_EQ_EQ] = ACTIONS(6397), - [anon_sym_BANG_EQ] = ACTIONS(6397), - [anon_sym_GT_EQ] = ACTIONS(6397), - [anon_sym_LT_EQ] = ACTIONS(6397), - [anon_sym_DOT] = ACTIONS(6399), - [anon_sym_EQ_GT] = ACTIONS(6397), - [anon_sym_switch] = ACTIONS(6397), - [anon_sym_DOT_DOT] = ACTIONS(6397), - [anon_sym_and] = ACTIONS(6397), - [anon_sym_or] = ACTIONS(6399), - [anon_sym_AMP_AMP] = ACTIONS(6397), - [anon_sym_PIPE_PIPE] = ACTIONS(6397), - [sym_op_coalescing] = ACTIONS(6397), - [anon_sym_from] = ACTIONS(6397), - [anon_sym_into] = ACTIONS(6397), - [anon_sym_join] = ACTIONS(6397), - [anon_sym_on] = ACTIONS(6397), - [anon_sym_equals] = ACTIONS(6397), - [anon_sym_let] = ACTIONS(6397), - [anon_sym_orderby] = ACTIONS(6397), - [anon_sym_group] = ACTIONS(6397), - [anon_sym_by] = ACTIONS(6397), - [anon_sym_select] = ACTIONS(6397), - [anon_sym_as] = ACTIONS(6397), - [anon_sym_is] = ACTIONS(6397), - [anon_sym_DASH_GT] = ACTIONS(6397), - [anon_sym_with] = ACTIONS(6397), - [aux_sym_preproc_if_token3] = ACTIONS(6397), - [aux_sym_preproc_else_token1] = ACTIONS(6397), - [aux_sym_preproc_elif_token1] = ACTIONS(6397), + [anon_sym_SEMI] = ACTIONS(6757), + [anon_sym_LBRACK] = ACTIONS(6757), + [anon_sym_COLON] = ACTIONS(6757), + [anon_sym_COMMA] = ACTIONS(6757), + [anon_sym_RBRACK] = ACTIONS(6757), + [anon_sym_LPAREN] = ACTIONS(6757), + [anon_sym_RPAREN] = ACTIONS(6757), + [anon_sym_RBRACE] = ACTIONS(6757), + [anon_sym_LT] = ACTIONS(6759), + [anon_sym_GT] = ACTIONS(6759), + [anon_sym_in] = ACTIONS(6759), + [anon_sym_QMARK] = ACTIONS(6759), + [anon_sym_DOT] = ACTIONS(6759), + [anon_sym_EQ_GT] = ACTIONS(6757), + [anon_sym_STAR] = ACTIONS(6757), + [anon_sym_switch] = ACTIONS(6757), + [anon_sym_when] = ACTIONS(6757), + [anon_sym_DOT_DOT] = ACTIONS(6757), + [anon_sym_LT_EQ] = ACTIONS(6757), + [anon_sym_GT_EQ] = ACTIONS(6757), + [anon_sym_and] = ACTIONS(6757), + [anon_sym_or] = ACTIONS(6757), + [anon_sym_EQ_EQ] = ACTIONS(6757), + [anon_sym_BANG_EQ] = ACTIONS(6757), + [anon_sym_AMP_AMP] = ACTIONS(6757), + [anon_sym_PIPE_PIPE] = ACTIONS(6757), + [anon_sym_AMP] = ACTIONS(6759), + [sym_op_bitwise_or] = ACTIONS(6759), + [anon_sym_CARET] = ACTIONS(6757), + [sym_op_left_shift] = ACTIONS(6757), + [sym_op_right_shift] = ACTIONS(6759), + [sym_op_unsigned_right_shift] = ACTIONS(6757), + [anon_sym_PLUS] = ACTIONS(6759), + [anon_sym_DASH] = ACTIONS(6759), + [sym_op_divide] = ACTIONS(6759), + [sym_op_modulo] = ACTIONS(6757), + [sym_op_coalescing] = ACTIONS(6757), + [anon_sym_BANG] = ACTIONS(6759), + [anon_sym_PLUS_PLUS] = ACTIONS(6757), + [anon_sym_DASH_DASH] = ACTIONS(6757), + [anon_sym_into] = ACTIONS(6757), + [anon_sym_on] = ACTIONS(6757), + [anon_sym_equals] = ACTIONS(6757), + [anon_sym_by] = ACTIONS(6757), + [anon_sym_as] = ACTIONS(6757), + [anon_sym_is] = ACTIONS(6757), + [anon_sym_DASH_GT] = ACTIONS(6757), + [anon_sym_with] = ACTIONS(6757), + [aux_sym_preproc_if_token3] = ACTIONS(6757), + [aux_sym_preproc_else_token1] = ACTIONS(6757), + [aux_sym_preproc_elif_token1] = ACTIONS(6757), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -571333,27 +566109,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4095] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4095), [sym_preproc_endregion] = STATE(4095), [sym_preproc_line] = STATE(4095), @@ -571363,42 +566133,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4095), [sym_preproc_define] = STATE(4095), [sym_preproc_undef] = STATE(4095), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6761), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6765), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(6775), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(6777), + [anon_sym_is] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -571411,27 +566181,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4096] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4096), [sym_preproc_endregion] = STATE(4096), [sym_preproc_line] = STATE(4096), @@ -571441,42 +566205,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4096), [sym_preproc_define] = STATE(4096), [sym_preproc_undef] = STATE(4096), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6128), - [anon_sym_is] = ACTIONS(6130), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6761), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6765), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(6775), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(6777), + [anon_sym_is] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -571489,6 +566253,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4097] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4097), [sym_preproc_endregion] = STATE(4097), [sym_preproc_line] = STATE(4097), @@ -571498,63 +566277,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4097), [sym_preproc_define] = STATE(4097), [sym_preproc_undef] = STATE(4097), - [anon_sym_SEMI] = ACTIONS(6401), - [anon_sym_LBRACK] = ACTIONS(6401), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_COMMA] = ACTIONS(6401), - [anon_sym_RBRACK] = ACTIONS(6401), - [anon_sym_LPAREN] = ACTIONS(6401), - [anon_sym_RPAREN] = ACTIONS(6401), - [anon_sym_RBRACE] = ACTIONS(6401), - [anon_sym_LT] = ACTIONS(6403), - [anon_sym_GT] = ACTIONS(6403), - [anon_sym_in] = ACTIONS(6403), - [anon_sym_where] = ACTIONS(6401), - [anon_sym_QMARK] = ACTIONS(6403), - [anon_sym_BANG] = ACTIONS(6403), - [anon_sym_PLUS_PLUS] = ACTIONS(6401), - [anon_sym_DASH_DASH] = ACTIONS(6401), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6401), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_PERCENT] = ACTIONS(6401), - [anon_sym_CARET] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6403), - [anon_sym_AMP] = ACTIONS(6403), - [anon_sym_LT_LT] = ACTIONS(6401), - [anon_sym_GT_GT] = ACTIONS(6403), - [anon_sym_GT_GT_GT] = ACTIONS(6401), - [anon_sym_EQ_EQ] = ACTIONS(6401), - [anon_sym_BANG_EQ] = ACTIONS(6401), - [anon_sym_GT_EQ] = ACTIONS(6401), - [anon_sym_LT_EQ] = ACTIONS(6401), - [anon_sym_DOT] = ACTIONS(6403), - [anon_sym_EQ_GT] = ACTIONS(6401), - [anon_sym_switch] = ACTIONS(6401), - [anon_sym_DOT_DOT] = ACTIONS(6401), - [anon_sym_and] = ACTIONS(6401), - [anon_sym_or] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(6401), - [anon_sym_PIPE_PIPE] = ACTIONS(6401), - [sym_op_coalescing] = ACTIONS(6401), - [anon_sym_from] = ACTIONS(6401), - [anon_sym_into] = ACTIONS(6401), - [anon_sym_join] = ACTIONS(6401), - [anon_sym_on] = ACTIONS(6401), - [anon_sym_equals] = ACTIONS(6401), - [anon_sym_let] = ACTIONS(6401), - [anon_sym_orderby] = ACTIONS(6401), - [anon_sym_group] = ACTIONS(6401), - [anon_sym_by] = ACTIONS(6401), - [anon_sym_select] = ACTIONS(6401), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_is] = ACTIONS(6401), - [anon_sym_DASH_GT] = ACTIONS(6401), - [anon_sym_with] = ACTIONS(6401), - [aux_sym_preproc_if_token3] = ACTIONS(6401), - [aux_sym_preproc_else_token1] = ACTIONS(6401), - [aux_sym_preproc_elif_token1] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6761), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6765), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(6775), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(6777), + [anon_sym_is] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -571567,27 +566325,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4098] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4098), [sym_preproc_endregion] = STATE(4098), [sym_preproc_line] = STATE(4098), @@ -571597,42 +566349,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4098), [sym_preproc_define] = STATE(4098), [sym_preproc_undef] = STATE(4098), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6761), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6765), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(6775), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(6777), + [anon_sym_is] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -571645,27 +566397,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4099] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4099), [sym_preproc_endregion] = STATE(4099), [sym_preproc_line] = STATE(4099), @@ -571675,42 +566421,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4099), [sym_preproc_define] = STATE(4099), [sym_preproc_undef] = STATE(4099), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6128), - [anon_sym_is] = ACTIONS(6130), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -571723,27 +566469,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4100] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), [sym_preproc_region] = STATE(4100), [sym_preproc_endregion] = STATE(4100), [sym_preproc_line] = STATE(4100), @@ -571753,42 +566478,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4100), [sym_preproc_define] = STATE(4100), [sym_preproc_undef] = STATE(4100), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6128), - [anon_sym_is] = ACTIONS(6130), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5869), + [anon_sym_LBRACK] = ACTIONS(5869), + [anon_sym_COLON] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5869), + [anon_sym_RBRACK] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5869), + [anon_sym_RPAREN] = ACTIONS(5869), + [anon_sym_RBRACE] = ACTIONS(5869), + [anon_sym_LT] = ACTIONS(5871), + [anon_sym_GT] = ACTIONS(5871), + [anon_sym_in] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [anon_sym_DOT] = ACTIONS(5871), + [anon_sym_EQ_GT] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(5869), + [anon_sym_switch] = ACTIONS(5869), + [anon_sym_when] = ACTIONS(5869), + [anon_sym_DOT_DOT] = ACTIONS(5869), + [anon_sym_LT_EQ] = ACTIONS(5869), + [anon_sym_GT_EQ] = ACTIONS(5869), + [anon_sym_and] = ACTIONS(5869), + [anon_sym_or] = ACTIONS(5869), + [anon_sym_EQ_EQ] = ACTIONS(5869), + [anon_sym_BANG_EQ] = ACTIONS(5869), + [anon_sym_AMP_AMP] = ACTIONS(5869), + [anon_sym_PIPE_PIPE] = ACTIONS(5869), + [anon_sym_AMP] = ACTIONS(5871), + [sym_op_bitwise_or] = ACTIONS(5871), + [anon_sym_CARET] = ACTIONS(5869), + [sym_op_left_shift] = ACTIONS(5869), + [sym_op_right_shift] = ACTIONS(5871), + [sym_op_unsigned_right_shift] = ACTIONS(5869), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5871), + [sym_op_divide] = ACTIONS(5871), + [sym_op_modulo] = ACTIONS(5869), + [sym_op_coalescing] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [anon_sym_PLUS_PLUS] = ACTIONS(5869), + [anon_sym_DASH_DASH] = ACTIONS(5869), + [anon_sym_into] = ACTIONS(5869), + [anon_sym_on] = ACTIONS(5869), + [anon_sym_equals] = ACTIONS(5869), + [anon_sym_by] = ACTIONS(5869), + [anon_sym_as] = ACTIONS(5869), + [anon_sym_is] = ACTIONS(5869), + [anon_sym_DASH_GT] = ACTIONS(5869), + [anon_sym_with] = ACTIONS(5869), + [aux_sym_preproc_if_token3] = ACTIONS(5869), + [aux_sym_preproc_else_token1] = ACTIONS(5869), + [aux_sym_preproc_elif_token1] = ACTIONS(5869), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -571801,27 +566541,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4101] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4101), [sym_preproc_endregion] = STATE(4101), [sym_preproc_line] = STATE(4101), @@ -571831,42 +566565,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4101), [sym_preproc_define] = STATE(4101), [sym_preproc_undef] = STATE(4101), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5518), - [anon_sym_DOT_DOT] = ACTIONS(6124), - [anon_sym_and] = ACTIONS(4672), - [anon_sym_or] = ACTIONS(4672), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6128), - [anon_sym_is] = ACTIONS(6130), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6761), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6765), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(6775), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(6777), + [anon_sym_is] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -571879,27 +566613,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4102] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4102), [sym_preproc_endregion] = STATE(4102), [sym_preproc_line] = STATE(4102), @@ -571909,41 +566637,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4102), [sym_preproc_define] = STATE(4102), [sym_preproc_undef] = STATE(4102), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -571956,27 +566685,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4103] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), + [sym_parameter_list] = STATE(7966), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6227), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym__lambda_parameters] = STATE(7786), + [sym_identifier] = STATE(6061), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4103), [sym_preproc_endregion] = STATE(4103), [sym_preproc_line] = STATE(4103), @@ -571986,41 +566714,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4103), [sym_preproc_define] = STATE(4103), [sym_preproc_undef] = STATE(4103), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6407), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6411), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_on] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(6413), - [anon_sym_is] = ACTIONS(6415), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym__lambda_expression_init_repeat1] = STATE(6103), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -572042,62 +566766,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4104), [sym_preproc_define] = STATE(4104), [sym_preproc_undef] = STATE(4104), - [anon_sym_SEMI] = ACTIONS(6351), - [anon_sym_LBRACK] = ACTIONS(6351), - [anon_sym_COLON] = ACTIONS(6351), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_RBRACK] = ACTIONS(6351), - [anon_sym_LPAREN] = ACTIONS(6351), - [anon_sym_RPAREN] = ACTIONS(6351), - [anon_sym_RBRACE] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_in] = ACTIONS(6351), - [anon_sym_where] = ACTIONS(6351), - [anon_sym_QMARK] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PLUS_PLUS] = ACTIONS(6351), - [anon_sym_DASH_DASH] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6353), - [anon_sym_DASH] = ACTIONS(6353), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6353), - [anon_sym_PERCENT] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_AMP] = ACTIONS(6353), - [anon_sym_LT_LT] = ACTIONS(6351), - [anon_sym_GT_GT] = ACTIONS(6353), - [anon_sym_GT_GT_GT] = ACTIONS(6351), - [anon_sym_EQ_EQ] = ACTIONS(6351), - [anon_sym_BANG_EQ] = ACTIONS(6351), - [anon_sym_GT_EQ] = ACTIONS(6351), - [anon_sym_LT_EQ] = ACTIONS(6351), - [anon_sym_DOT] = ACTIONS(6353), - [anon_sym_EQ_GT] = ACTIONS(6351), - [anon_sym_switch] = ACTIONS(6351), - [anon_sym_DOT_DOT] = ACTIONS(6351), - [anon_sym_and] = ACTIONS(6351), - [anon_sym_or] = ACTIONS(6353), - [anon_sym_AMP_AMP] = ACTIONS(6351), - [anon_sym_PIPE_PIPE] = ACTIONS(6351), - [sym_op_coalescing] = ACTIONS(6351), - [anon_sym_from] = ACTIONS(6351), - [anon_sym_join] = ACTIONS(6351), - [anon_sym_on] = ACTIONS(6351), - [anon_sym_equals] = ACTIONS(6351), - [anon_sym_let] = ACTIONS(6351), - [anon_sym_orderby] = ACTIONS(6351), - [anon_sym_group] = ACTIONS(6351), - [anon_sym_by] = ACTIONS(6351), - [anon_sym_select] = ACTIONS(6351), - [anon_sym_as] = ACTIONS(6351), - [anon_sym_is] = ACTIONS(6351), - [anon_sym_DASH_GT] = ACTIONS(6351), - [anon_sym_with] = ACTIONS(6351), - [aux_sym_preproc_if_token3] = ACTIONS(6351), - [aux_sym_preproc_else_token1] = ACTIONS(6351), - [aux_sym_preproc_elif_token1] = ACTIONS(6351), + [anon_sym_SEMI] = ACTIONS(5963), + [anon_sym_LBRACK] = ACTIONS(5963), + [anon_sym_COLON] = ACTIONS(5963), + [anon_sym_COMMA] = ACTIONS(5963), + [anon_sym_RBRACK] = ACTIONS(5963), + [anon_sym_LPAREN] = ACTIONS(5963), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_RBRACE] = ACTIONS(5963), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_in] = ACTIONS(5965), + [anon_sym_QMARK] = ACTIONS(5965), + [anon_sym_DOT] = ACTIONS(5965), + [anon_sym_EQ_GT] = ACTIONS(5963), + [anon_sym_STAR] = ACTIONS(5963), + [anon_sym_switch] = ACTIONS(5963), + [anon_sym_when] = ACTIONS(5963), + [anon_sym_DOT_DOT] = ACTIONS(5963), + [anon_sym_LT_EQ] = ACTIONS(5963), + [anon_sym_GT_EQ] = ACTIONS(5963), + [anon_sym_and] = ACTIONS(5963), + [anon_sym_or] = ACTIONS(5963), + [anon_sym_EQ_EQ] = ACTIONS(5963), + [anon_sym_BANG_EQ] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [anon_sym_AMP] = ACTIONS(5965), + [sym_op_bitwise_or] = ACTIONS(5965), + [anon_sym_CARET] = ACTIONS(5963), + [sym_op_left_shift] = ACTIONS(5963), + [sym_op_right_shift] = ACTIONS(5965), + [sym_op_unsigned_right_shift] = ACTIONS(5963), + [anon_sym_PLUS] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5965), + [sym_op_divide] = ACTIONS(5965), + [sym_op_modulo] = ACTIONS(5963), + [sym_op_coalescing] = ACTIONS(5963), + [anon_sym_BANG] = ACTIONS(5965), + [anon_sym_PLUS_PLUS] = ACTIONS(5963), + [anon_sym_DASH_DASH] = ACTIONS(5963), + [anon_sym_into] = ACTIONS(5963), + [anon_sym_on] = ACTIONS(5963), + [anon_sym_equals] = ACTIONS(5963), + [anon_sym_by] = ACTIONS(5963), + [anon_sym_as] = ACTIONS(5963), + [anon_sym_is] = ACTIONS(5963), + [anon_sym_DASH_GT] = ACTIONS(5963), + [anon_sym_with] = ACTIONS(5963), + [aux_sym_preproc_if_token3] = ACTIONS(5963), + [aux_sym_preproc_else_token1] = ACTIONS(5963), + [aux_sym_preproc_elif_token1] = ACTIONS(5963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -572110,27 +566829,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4105] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), [sym_preproc_region] = STATE(4105), [sym_preproc_endregion] = STATE(4105), [sym_preproc_line] = STATE(4105), @@ -572140,41 +566838,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4105), [sym_preproc_define] = STATE(4105), [sym_preproc_undef] = STATE(4105), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_on] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(5749), + [anon_sym_LBRACK] = ACTIONS(5749), + [anon_sym_COLON] = ACTIONS(5749), + [anon_sym_COMMA] = ACTIONS(5749), + [anon_sym_RBRACK] = ACTIONS(5749), + [anon_sym_LPAREN] = ACTIONS(5749), + [anon_sym_RPAREN] = ACTIONS(5749), + [anon_sym_RBRACE] = ACTIONS(5749), + [anon_sym_LT] = ACTIONS(5751), + [anon_sym_GT] = ACTIONS(5751), + [anon_sym_in] = ACTIONS(5751), + [anon_sym_QMARK] = ACTIONS(5751), + [anon_sym_DOT] = ACTIONS(5751), + [anon_sym_EQ_GT] = ACTIONS(5749), + [anon_sym_STAR] = ACTIONS(5749), + [anon_sym_switch] = ACTIONS(5749), + [anon_sym_when] = ACTIONS(5749), + [anon_sym_DOT_DOT] = ACTIONS(5749), + [anon_sym_LT_EQ] = ACTIONS(5749), + [anon_sym_GT_EQ] = ACTIONS(5749), + [anon_sym_and] = ACTIONS(5749), + [anon_sym_or] = ACTIONS(5749), + [anon_sym_EQ_EQ] = ACTIONS(5749), + [anon_sym_BANG_EQ] = ACTIONS(5749), + [anon_sym_AMP_AMP] = ACTIONS(5749), + [anon_sym_PIPE_PIPE] = ACTIONS(5749), + [anon_sym_AMP] = ACTIONS(5751), + [sym_op_bitwise_or] = ACTIONS(5751), + [anon_sym_CARET] = ACTIONS(5749), + [sym_op_left_shift] = ACTIONS(5749), + [sym_op_right_shift] = ACTIONS(5751), + [sym_op_unsigned_right_shift] = ACTIONS(5749), + [anon_sym_PLUS] = ACTIONS(5751), + [anon_sym_DASH] = ACTIONS(5751), + [sym_op_divide] = ACTIONS(5751), + [sym_op_modulo] = ACTIONS(5749), + [sym_op_coalescing] = ACTIONS(5749), + [anon_sym_BANG] = ACTIONS(5751), + [anon_sym_PLUS_PLUS] = ACTIONS(5749), + [anon_sym_DASH_DASH] = ACTIONS(5749), + [anon_sym_into] = ACTIONS(5749), + [anon_sym_on] = ACTIONS(5749), + [anon_sym_equals] = ACTIONS(5749), + [anon_sym_by] = ACTIONS(5749), + [anon_sym_as] = ACTIONS(5749), + [anon_sym_is] = ACTIONS(5749), + [anon_sym_DASH_GT] = ACTIONS(5749), + [anon_sym_with] = ACTIONS(5749), + [aux_sym_preproc_if_token3] = ACTIONS(5749), + [aux_sym_preproc_else_token1] = ACTIONS(5749), + [aux_sym_preproc_elif_token1] = ACTIONS(5749), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -572187,6 +566901,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4106] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4106), [sym_preproc_endregion] = STATE(4106), [sym_preproc_line] = STATE(4106), @@ -572196,62 +566925,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4106), [sym_preproc_define] = STATE(4106), [sym_preproc_undef] = STATE(4106), - [anon_sym_SEMI] = ACTIONS(6102), - [anon_sym_LBRACK] = ACTIONS(6102), - [anon_sym_COLON] = ACTIONS(6102), - [anon_sym_COMMA] = ACTIONS(6102), - [anon_sym_RBRACK] = ACTIONS(6102), - [anon_sym_LPAREN] = ACTIONS(6102), - [anon_sym_RPAREN] = ACTIONS(6102), - [anon_sym_RBRACE] = ACTIONS(6102), - [anon_sym_LT] = ACTIONS(6104), - [anon_sym_GT] = ACTIONS(6104), - [anon_sym_in] = ACTIONS(6102), - [anon_sym_where] = ACTIONS(6102), - [anon_sym_QMARK] = ACTIONS(6104), - [anon_sym_BANG] = ACTIONS(6104), - [anon_sym_PLUS_PLUS] = ACTIONS(6102), - [anon_sym_DASH_DASH] = ACTIONS(6102), - [anon_sym_PLUS] = ACTIONS(6104), - [anon_sym_DASH] = ACTIONS(6104), - [anon_sym_STAR] = ACTIONS(6102), - [anon_sym_SLASH] = ACTIONS(6104), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_CARET] = ACTIONS(6102), - [anon_sym_PIPE] = ACTIONS(6104), - [anon_sym_AMP] = ACTIONS(6104), - [anon_sym_LT_LT] = ACTIONS(6102), - [anon_sym_GT_GT] = ACTIONS(6104), - [anon_sym_GT_GT_GT] = ACTIONS(6102), - [anon_sym_EQ_EQ] = ACTIONS(6102), - [anon_sym_BANG_EQ] = ACTIONS(6102), - [anon_sym_GT_EQ] = ACTIONS(6102), - [anon_sym_LT_EQ] = ACTIONS(6102), - [anon_sym_DOT] = ACTIONS(6104), - [anon_sym_EQ_GT] = ACTIONS(6102), - [anon_sym_switch] = ACTIONS(6102), - [anon_sym_DOT_DOT] = ACTIONS(6102), - [anon_sym_and] = ACTIONS(6102), - [anon_sym_or] = ACTIONS(6104), - [anon_sym_AMP_AMP] = ACTIONS(6102), - [anon_sym_PIPE_PIPE] = ACTIONS(6102), - [sym_op_coalescing] = ACTIONS(6102), - [anon_sym_from] = ACTIONS(6102), - [anon_sym_join] = ACTIONS(6102), - [anon_sym_on] = ACTIONS(6102), - [anon_sym_equals] = ACTIONS(6102), - [anon_sym_let] = ACTIONS(6102), - [anon_sym_orderby] = ACTIONS(6102), - [anon_sym_group] = ACTIONS(6102), - [anon_sym_by] = ACTIONS(6102), - [anon_sym_select] = ACTIONS(6102), - [anon_sym_as] = ACTIONS(6102), - [anon_sym_is] = ACTIONS(6102), - [anon_sym_DASH_GT] = ACTIONS(6102), - [anon_sym_with] = ACTIONS(6102), - [aux_sym_preproc_if_token3] = ACTIONS(6102), - [aux_sym_preproc_else_token1] = ACTIONS(6102), - [aux_sym_preproc_elif_token1] = ACTIONS(6102), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -572264,27 +566973,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4107] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4107), [sym_preproc_endregion] = STATE(4107), [sym_preproc_line] = STATE(4107), @@ -572294,41 +566997,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4107), [sym_preproc_define] = STATE(4107), [sym_preproc_undef] = STATE(4107), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6421), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_equals] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(6423), - [anon_sym_is] = ACTIONS(6425), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -572341,6 +567045,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4108] = { + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8105), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4108), [sym_preproc_endregion] = STATE(4108), [sym_preproc_line] = STATE(4108), @@ -572350,62 +567074,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4108), [sym_preproc_define] = STATE(4108), [sym_preproc_undef] = STATE(4108), - [anon_sym_SEMI] = ACTIONS(6136), - [anon_sym_LBRACK] = ACTIONS(6136), - [anon_sym_COLON] = ACTIONS(6136), - [anon_sym_COMMA] = ACTIONS(6136), - [anon_sym_RBRACK] = ACTIONS(6136), - [anon_sym_LPAREN] = ACTIONS(6136), - [anon_sym_RPAREN] = ACTIONS(6136), - [anon_sym_RBRACE] = ACTIONS(6136), - [anon_sym_LT] = ACTIONS(6138), - [anon_sym_GT] = ACTIONS(6138), - [anon_sym_in] = ACTIONS(6136), - [anon_sym_where] = ACTIONS(6136), - [anon_sym_QMARK] = ACTIONS(6138), - [anon_sym_BANG] = ACTIONS(6138), - [anon_sym_PLUS_PLUS] = ACTIONS(6136), - [anon_sym_DASH_DASH] = ACTIONS(6136), - [anon_sym_PLUS] = ACTIONS(6138), - [anon_sym_DASH] = ACTIONS(6138), - [anon_sym_STAR] = ACTIONS(6136), - [anon_sym_SLASH] = ACTIONS(6138), - [anon_sym_PERCENT] = ACTIONS(6136), - [anon_sym_CARET] = ACTIONS(6136), - [anon_sym_PIPE] = ACTIONS(6138), - [anon_sym_AMP] = ACTIONS(6138), - [anon_sym_LT_LT] = ACTIONS(6136), - [anon_sym_GT_GT] = ACTIONS(6138), - [anon_sym_GT_GT_GT] = ACTIONS(6136), - [anon_sym_EQ_EQ] = ACTIONS(6136), - [anon_sym_BANG_EQ] = ACTIONS(6136), - [anon_sym_GT_EQ] = ACTIONS(6136), - [anon_sym_LT_EQ] = ACTIONS(6136), - [anon_sym_DOT] = ACTIONS(6138), - [anon_sym_EQ_GT] = ACTIONS(6136), - [anon_sym_switch] = ACTIONS(6136), - [anon_sym_DOT_DOT] = ACTIONS(6136), - [anon_sym_and] = ACTIONS(6136), - [anon_sym_or] = ACTIONS(6138), - [anon_sym_AMP_AMP] = ACTIONS(6136), - [anon_sym_PIPE_PIPE] = ACTIONS(6136), - [sym_op_coalescing] = ACTIONS(6136), - [anon_sym_from] = ACTIONS(6136), - [anon_sym_join] = ACTIONS(6136), - [anon_sym_on] = ACTIONS(6136), - [anon_sym_equals] = ACTIONS(6136), - [anon_sym_let] = ACTIONS(6136), - [anon_sym_orderby] = ACTIONS(6136), - [anon_sym_group] = ACTIONS(6136), - [anon_sym_by] = ACTIONS(6136), - [anon_sym_select] = ACTIONS(6136), - [anon_sym_as] = ACTIONS(6136), - [anon_sym_is] = ACTIONS(6136), - [anon_sym_DASH_GT] = ACTIONS(6136), - [anon_sym_with] = ACTIONS(6136), - [aux_sym_preproc_if_token3] = ACTIONS(6136), - [aux_sym_preproc_else_token1] = ACTIONS(6136), - [aux_sym_preproc_elif_token1] = ACTIONS(6136), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -572418,27 +567117,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4109] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), [sym_preproc_region] = STATE(4109), [sym_preproc_endregion] = STATE(4109), [sym_preproc_line] = STATE(4109), @@ -572448,41 +567126,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4109), [sym_preproc_define] = STATE(4109), [sym_preproc_undef] = STATE(4109), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4752), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(5853), + [anon_sym_LBRACK] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [anon_sym_COMMA] = ACTIONS(5853), + [anon_sym_RBRACK] = ACTIONS(5853), + [anon_sym_LPAREN] = ACTIONS(5853), + [anon_sym_RPAREN] = ACTIONS(5853), + [anon_sym_RBRACE] = ACTIONS(5853), + [anon_sym_LT] = ACTIONS(5855), + [anon_sym_GT] = ACTIONS(5855), + [anon_sym_in] = ACTIONS(5855), + [anon_sym_QMARK] = ACTIONS(5855), + [anon_sym_DOT] = ACTIONS(5855), + [anon_sym_EQ_GT] = ACTIONS(5853), + [anon_sym_STAR] = ACTIONS(5853), + [anon_sym_switch] = ACTIONS(5853), + [anon_sym_when] = ACTIONS(5853), + [anon_sym_DOT_DOT] = ACTIONS(5853), + [anon_sym_LT_EQ] = ACTIONS(5853), + [anon_sym_GT_EQ] = ACTIONS(5853), + [anon_sym_and] = ACTIONS(5853), + [anon_sym_or] = ACTIONS(5853), + [anon_sym_EQ_EQ] = ACTIONS(5853), + [anon_sym_BANG_EQ] = ACTIONS(5853), + [anon_sym_AMP_AMP] = ACTIONS(5853), + [anon_sym_PIPE_PIPE] = ACTIONS(5853), + [anon_sym_AMP] = ACTIONS(5855), + [sym_op_bitwise_or] = ACTIONS(5855), + [anon_sym_CARET] = ACTIONS(5853), + [sym_op_left_shift] = ACTIONS(5853), + [sym_op_right_shift] = ACTIONS(5855), + [sym_op_unsigned_right_shift] = ACTIONS(5853), + [anon_sym_PLUS] = ACTIONS(5855), + [anon_sym_DASH] = ACTIONS(5855), + [sym_op_divide] = ACTIONS(5855), + [sym_op_modulo] = ACTIONS(5853), + [sym_op_coalescing] = ACTIONS(5853), + [anon_sym_BANG] = ACTIONS(5855), + [anon_sym_PLUS_PLUS] = ACTIONS(5853), + [anon_sym_DASH_DASH] = ACTIONS(5853), + [anon_sym_into] = ACTIONS(5853), + [anon_sym_on] = ACTIONS(5853), + [anon_sym_equals] = ACTIONS(5853), + [anon_sym_by] = ACTIONS(5853), + [anon_sym_as] = ACTIONS(5853), + [anon_sym_is] = ACTIONS(5853), + [anon_sym_DASH_GT] = ACTIONS(5853), + [anon_sym_with] = ACTIONS(5853), + [aux_sym_preproc_if_token3] = ACTIONS(5853), + [aux_sym_preproc_else_token1] = ACTIONS(5853), + [aux_sym_preproc_elif_token1] = ACTIONS(5853), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -572495,6 +567189,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4110] = { + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8105), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4110), [sym_preproc_endregion] = STATE(4110), [sym_preproc_line] = STATE(4110), @@ -572504,62 +567218,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4110), [sym_preproc_define] = STATE(4110), [sym_preproc_undef] = STATE(4110), - [anon_sym_SEMI] = ACTIONS(6249), - [anon_sym_LBRACK] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6249), - [anon_sym_COMMA] = ACTIONS(6249), - [anon_sym_RBRACK] = ACTIONS(6249), - [anon_sym_LPAREN] = ACTIONS(6249), - [anon_sym_RPAREN] = ACTIONS(6249), - [anon_sym_RBRACE] = ACTIONS(6249), - [anon_sym_LT] = ACTIONS(6251), - [anon_sym_GT] = ACTIONS(6251), - [anon_sym_in] = ACTIONS(6249), - [anon_sym_where] = ACTIONS(6249), - [anon_sym_QMARK] = ACTIONS(6251), - [anon_sym_BANG] = ACTIONS(6251), - [anon_sym_PLUS_PLUS] = ACTIONS(6249), - [anon_sym_DASH_DASH] = ACTIONS(6249), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6249), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_PERCENT] = ACTIONS(6249), - [anon_sym_CARET] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6251), - [anon_sym_AMP] = ACTIONS(6251), - [anon_sym_LT_LT] = ACTIONS(6249), - [anon_sym_GT_GT] = ACTIONS(6251), - [anon_sym_GT_GT_GT] = ACTIONS(6249), - [anon_sym_EQ_EQ] = ACTIONS(6249), - [anon_sym_BANG_EQ] = ACTIONS(6249), - [anon_sym_GT_EQ] = ACTIONS(6249), - [anon_sym_LT_EQ] = ACTIONS(6249), - [anon_sym_DOT] = ACTIONS(6251), - [anon_sym_EQ_GT] = ACTIONS(6249), - [anon_sym_switch] = ACTIONS(6249), - [anon_sym_DOT_DOT] = ACTIONS(6249), - [anon_sym_and] = ACTIONS(6249), - [anon_sym_or] = ACTIONS(6251), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6249), - [sym_op_coalescing] = ACTIONS(6249), - [anon_sym_from] = ACTIONS(6249), - [anon_sym_join] = ACTIONS(6249), - [anon_sym_on] = ACTIONS(6249), - [anon_sym_equals] = ACTIONS(6249), - [anon_sym_let] = ACTIONS(6249), - [anon_sym_orderby] = ACTIONS(6249), - [anon_sym_group] = ACTIONS(6249), - [anon_sym_by] = ACTIONS(6249), - [anon_sym_select] = ACTIONS(6249), - [anon_sym_as] = ACTIONS(6249), - [anon_sym_is] = ACTIONS(6249), - [anon_sym_DASH_GT] = ACTIONS(6249), - [anon_sym_with] = ACTIONS(6249), - [aux_sym_preproc_if_token3] = ACTIONS(6249), - [aux_sym_preproc_else_token1] = ACTIONS(6249), - [aux_sym_preproc_elif_token1] = ACTIONS(6249), + [aux_sym_function_pointer_type_repeat1] = STATE(4112), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -572572,6 +567261,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4111] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4111), [sym_preproc_endregion] = STATE(4111), [sym_preproc_line] = STATE(4111), @@ -572581,62 +567285,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4111), [sym_preproc_define] = STATE(4111), [sym_preproc_undef] = STATE(4111), - [anon_sym_SEMI] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(6389), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_COMMA] = ACTIONS(6389), - [anon_sym_RBRACK] = ACTIONS(6389), - [anon_sym_LPAREN] = ACTIONS(6389), - [anon_sym_RPAREN] = ACTIONS(6389), - [anon_sym_RBRACE] = ACTIONS(6389), - [anon_sym_LT] = ACTIONS(6391), - [anon_sym_GT] = ACTIONS(6391), - [anon_sym_in] = ACTIONS(6389), - [anon_sym_where] = ACTIONS(6389), - [anon_sym_QMARK] = ACTIONS(6391), - [anon_sym_BANG] = ACTIONS(6391), - [anon_sym_PLUS_PLUS] = ACTIONS(6389), - [anon_sym_DASH_DASH] = ACTIONS(6389), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6389), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_PERCENT] = ACTIONS(6389), - [anon_sym_CARET] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6391), - [anon_sym_AMP] = ACTIONS(6391), - [anon_sym_LT_LT] = ACTIONS(6389), - [anon_sym_GT_GT] = ACTIONS(6391), - [anon_sym_GT_GT_GT] = ACTIONS(6389), - [anon_sym_EQ_EQ] = ACTIONS(6389), - [anon_sym_BANG_EQ] = ACTIONS(6389), - [anon_sym_GT_EQ] = ACTIONS(6389), - [anon_sym_LT_EQ] = ACTIONS(6389), - [anon_sym_DOT] = ACTIONS(6391), - [anon_sym_EQ_GT] = ACTIONS(6389), - [anon_sym_switch] = ACTIONS(6389), - [anon_sym_DOT_DOT] = ACTIONS(6389), - [anon_sym_and] = ACTIONS(6389), - [anon_sym_or] = ACTIONS(6391), - [anon_sym_AMP_AMP] = ACTIONS(6389), - [anon_sym_PIPE_PIPE] = ACTIONS(6389), - [sym_op_coalescing] = ACTIONS(6389), - [anon_sym_from] = ACTIONS(6389), - [anon_sym_join] = ACTIONS(6389), - [anon_sym_on] = ACTIONS(6389), - [anon_sym_equals] = ACTIONS(6389), - [anon_sym_let] = ACTIONS(6389), - [anon_sym_orderby] = ACTIONS(6389), - [anon_sym_group] = ACTIONS(6389), - [anon_sym_by] = ACTIONS(6389), - [anon_sym_select] = ACTIONS(6389), - [anon_sym_as] = ACTIONS(6389), - [anon_sym_is] = ACTIONS(6389), - [anon_sym_DASH_GT] = ACTIONS(6389), - [anon_sym_with] = ACTIONS(6389), - [aux_sym_preproc_if_token3] = ACTIONS(6389), - [aux_sym_preproc_else_token1] = ACTIONS(6389), - [aux_sym_preproc_elif_token1] = ACTIONS(6389), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5328), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(6795), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6797), + [anon_sym_is] = ACTIONS(6799), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -572649,27 +567333,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4112] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8092), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4112), [sym_preproc_endregion] = STATE(4112), [sym_preproc_line] = STATE(4112), @@ -572679,41 +567362,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4112), [sym_preproc_define] = STATE(4112), [sym_preproc_undef] = STATE(4112), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6297), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(6297), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -572726,6 +567405,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4113] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4113), [sym_preproc_endregion] = STATE(4113), [sym_preproc_line] = STATE(4113), @@ -572735,62 +567429,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4113), [sym_preproc_define] = STATE(4113), [sym_preproc_undef] = STATE(4113), - [anon_sym_SEMI] = ACTIONS(6231), - [anon_sym_LBRACK] = ACTIONS(6231), - [anon_sym_COLON] = ACTIONS(6231), - [anon_sym_COMMA] = ACTIONS(6231), - [anon_sym_RBRACK] = ACTIONS(6231), - [anon_sym_LPAREN] = ACTIONS(6231), - [anon_sym_RPAREN] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(6231), - [anon_sym_LT] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6233), - [anon_sym_in] = ACTIONS(6231), - [anon_sym_where] = ACTIONS(6231), - [anon_sym_QMARK] = ACTIONS(6233), - [anon_sym_BANG] = ACTIONS(6233), - [anon_sym_PLUS_PLUS] = ACTIONS(6231), - [anon_sym_DASH_DASH] = ACTIONS(6231), - [anon_sym_PLUS] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6233), - [anon_sym_STAR] = ACTIONS(6231), - [anon_sym_SLASH] = ACTIONS(6233), - [anon_sym_PERCENT] = ACTIONS(6231), - [anon_sym_CARET] = ACTIONS(6231), - [anon_sym_PIPE] = ACTIONS(6233), - [anon_sym_AMP] = ACTIONS(6233), - [anon_sym_LT_LT] = ACTIONS(6231), - [anon_sym_GT_GT] = ACTIONS(6233), - [anon_sym_GT_GT_GT] = ACTIONS(6231), - [anon_sym_EQ_EQ] = ACTIONS(6231), - [anon_sym_BANG_EQ] = ACTIONS(6231), - [anon_sym_GT_EQ] = ACTIONS(6231), - [anon_sym_LT_EQ] = ACTIONS(6231), - [anon_sym_DOT] = ACTIONS(6233), - [anon_sym_EQ_GT] = ACTIONS(6231), - [anon_sym_switch] = ACTIONS(6231), - [anon_sym_DOT_DOT] = ACTIONS(6231), - [anon_sym_and] = ACTIONS(6231), - [anon_sym_or] = ACTIONS(6233), - [anon_sym_AMP_AMP] = ACTIONS(6231), - [anon_sym_PIPE_PIPE] = ACTIONS(6231), - [sym_op_coalescing] = ACTIONS(6231), - [anon_sym_from] = ACTIONS(6231), - [anon_sym_join] = ACTIONS(6231), - [anon_sym_on] = ACTIONS(6231), - [anon_sym_equals] = ACTIONS(6231), - [anon_sym_let] = ACTIONS(6231), - [anon_sym_orderby] = ACTIONS(6231), - [anon_sym_group] = ACTIONS(6231), - [anon_sym_by] = ACTIONS(6231), - [anon_sym_select] = ACTIONS(6231), - [anon_sym_as] = ACTIONS(6231), - [anon_sym_is] = ACTIONS(6231), - [anon_sym_DASH_GT] = ACTIONS(6231), - [anon_sym_with] = ACTIONS(6231), - [aux_sym_preproc_if_token3] = ACTIONS(6231), - [aux_sym_preproc_else_token1] = ACTIONS(6231), - [aux_sym_preproc_elif_token1] = ACTIONS(6231), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6777), + [anon_sym_is] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -572812,62 +567486,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4114), [sym_preproc_define] = STATE(4114), [sym_preproc_undef] = STATE(4114), - [anon_sym_SEMI] = ACTIONS(6192), - [anon_sym_LBRACK] = ACTIONS(6192), - [anon_sym_COLON] = ACTIONS(6192), - [anon_sym_COMMA] = ACTIONS(6192), - [anon_sym_RBRACK] = ACTIONS(6192), - [anon_sym_LPAREN] = ACTIONS(6192), - [anon_sym_RPAREN] = ACTIONS(6192), - [anon_sym_RBRACE] = ACTIONS(6192), - [anon_sym_LT] = ACTIONS(6194), - [anon_sym_GT] = ACTIONS(6194), - [anon_sym_in] = ACTIONS(6192), - [anon_sym_where] = ACTIONS(6192), - [anon_sym_QMARK] = ACTIONS(6194), - [anon_sym_BANG] = ACTIONS(6194), - [anon_sym_PLUS_PLUS] = ACTIONS(6192), - [anon_sym_DASH_DASH] = ACTIONS(6192), - [anon_sym_PLUS] = ACTIONS(6194), - [anon_sym_DASH] = ACTIONS(6194), - [anon_sym_STAR] = ACTIONS(6192), - [anon_sym_SLASH] = ACTIONS(6194), - [anon_sym_PERCENT] = ACTIONS(6192), - [anon_sym_CARET] = ACTIONS(6192), - [anon_sym_PIPE] = ACTIONS(6194), - [anon_sym_AMP] = ACTIONS(6194), - [anon_sym_LT_LT] = ACTIONS(6192), - [anon_sym_GT_GT] = ACTIONS(6194), - [anon_sym_GT_GT_GT] = ACTIONS(6192), - [anon_sym_EQ_EQ] = ACTIONS(6192), - [anon_sym_BANG_EQ] = ACTIONS(6192), - [anon_sym_GT_EQ] = ACTIONS(6192), - [anon_sym_LT_EQ] = ACTIONS(6192), - [anon_sym_DOT] = ACTIONS(6194), - [anon_sym_EQ_GT] = ACTIONS(6192), - [anon_sym_switch] = ACTIONS(6192), - [anon_sym_DOT_DOT] = ACTIONS(6192), - [anon_sym_and] = ACTIONS(6192), - [anon_sym_or] = ACTIONS(6194), - [anon_sym_AMP_AMP] = ACTIONS(6192), - [anon_sym_PIPE_PIPE] = ACTIONS(6192), - [sym_op_coalescing] = ACTIONS(6192), - [anon_sym_from] = ACTIONS(6192), - [anon_sym_join] = ACTIONS(6192), - [anon_sym_on] = ACTIONS(6192), - [anon_sym_equals] = ACTIONS(6192), - [anon_sym_let] = ACTIONS(6192), - [anon_sym_orderby] = ACTIONS(6192), - [anon_sym_group] = ACTIONS(6192), - [anon_sym_by] = ACTIONS(6192), - [anon_sym_select] = ACTIONS(6192), - [anon_sym_as] = ACTIONS(6192), - [anon_sym_is] = ACTIONS(6192), - [anon_sym_DASH_GT] = ACTIONS(6192), - [anon_sym_with] = ACTIONS(6192), - [aux_sym_preproc_if_token3] = ACTIONS(6192), - [aux_sym_preproc_else_token1] = ACTIONS(6192), - [aux_sym_preproc_elif_token1] = ACTIONS(6192), + [anon_sym_SEMI] = ACTIONS(5861), + [anon_sym_LBRACK] = ACTIONS(5861), + [anon_sym_COLON] = ACTIONS(5861), + [anon_sym_COMMA] = ACTIONS(5861), + [anon_sym_RBRACK] = ACTIONS(5861), + [anon_sym_LPAREN] = ACTIONS(5861), + [anon_sym_RPAREN] = ACTIONS(5861), + [anon_sym_RBRACE] = ACTIONS(5861), + [anon_sym_LT] = ACTIONS(5863), + [anon_sym_GT] = ACTIONS(5863), + [anon_sym_in] = ACTIONS(5863), + [anon_sym_QMARK] = ACTIONS(5863), + [anon_sym_DOT] = ACTIONS(5863), + [anon_sym_EQ_GT] = ACTIONS(5861), + [anon_sym_STAR] = ACTIONS(5861), + [anon_sym_switch] = ACTIONS(5861), + [anon_sym_when] = ACTIONS(5861), + [anon_sym_DOT_DOT] = ACTIONS(5861), + [anon_sym_LT_EQ] = ACTIONS(5861), + [anon_sym_GT_EQ] = ACTIONS(5861), + [anon_sym_and] = ACTIONS(5861), + [anon_sym_or] = ACTIONS(5861), + [anon_sym_EQ_EQ] = ACTIONS(5861), + [anon_sym_BANG_EQ] = ACTIONS(5861), + [anon_sym_AMP_AMP] = ACTIONS(5861), + [anon_sym_PIPE_PIPE] = ACTIONS(5861), + [anon_sym_AMP] = ACTIONS(5863), + [sym_op_bitwise_or] = ACTIONS(5863), + [anon_sym_CARET] = ACTIONS(5861), + [sym_op_left_shift] = ACTIONS(5861), + [sym_op_right_shift] = ACTIONS(5863), + [sym_op_unsigned_right_shift] = ACTIONS(5861), + [anon_sym_PLUS] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5863), + [sym_op_divide] = ACTIONS(5863), + [sym_op_modulo] = ACTIONS(5861), + [sym_op_coalescing] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(5863), + [anon_sym_PLUS_PLUS] = ACTIONS(5861), + [anon_sym_DASH_DASH] = ACTIONS(5861), + [anon_sym_into] = ACTIONS(5861), + [anon_sym_on] = ACTIONS(5861), + [anon_sym_equals] = ACTIONS(5861), + [anon_sym_by] = ACTIONS(5861), + [anon_sym_as] = ACTIONS(5861), + [anon_sym_is] = ACTIONS(5861), + [anon_sym_DASH_GT] = ACTIONS(5861), + [anon_sym_with] = ACTIONS(5861), + [aux_sym_preproc_if_token3] = ACTIONS(5861), + [aux_sym_preproc_else_token1] = ACTIONS(5861), + [aux_sym_preproc_elif_token1] = ACTIONS(5861), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -572880,27 +567549,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4115] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4115), [sym_preproc_endregion] = STATE(4115), [sym_preproc_line] = STATE(4115), @@ -572910,41 +567573,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4115), [sym_preproc_define] = STATE(4115), [sym_preproc_undef] = STATE(4115), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6421), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_equals] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(6423), - [anon_sym_is] = ACTIONS(6425), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6777), + [anon_sym_is] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -572957,27 +567621,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4116] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4116), [sym_preproc_endregion] = STATE(4116), [sym_preproc_line] = STATE(4116), @@ -572987,41 +567645,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4116), [sym_preproc_define] = STATE(4116), [sym_preproc_undef] = STATE(4116), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6421), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_equals] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(6423), - [anon_sym_is] = ACTIONS(6425), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6765), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6777), + [anon_sym_is] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -573034,27 +567693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4117] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), [sym_preproc_region] = STATE(4117), [sym_preproc_endregion] = STATE(4117), [sym_preproc_line] = STATE(4117), @@ -573064,41 +567702,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4117), [sym_preproc_define] = STATE(4117), [sym_preproc_undef] = STATE(4117), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_equals] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4794), + [sym__identifier_token] = ACTIONS(6801), + [anon_sym_extern] = ACTIONS(6801), + [anon_sym_alias] = ACTIONS(6801), + [anon_sym_global] = ACTIONS(6801), + [anon_sym_unsafe] = ACTIONS(6801), + [anon_sym_static] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym_RBRACE] = ACTIONS(6803), + [anon_sym_public] = ACTIONS(6801), + [anon_sym_private] = ACTIONS(6801), + [anon_sym_readonly] = ACTIONS(6801), + [anon_sym_abstract] = ACTIONS(6801), + [anon_sym_async] = ACTIONS(6801), + [anon_sym_const] = ACTIONS(6801), + [anon_sym_file] = ACTIONS(6801), + [anon_sym_fixed] = ACTIONS(6801), + [anon_sym_internal] = ACTIONS(6801), + [anon_sym_new] = ACTIONS(6801), + [anon_sym_override] = ACTIONS(6801), + [anon_sym_partial] = ACTIONS(6801), + [anon_sym_protected] = ACTIONS(6801), + [anon_sym_required] = ACTIONS(6801), + [anon_sym_sealed] = ACTIONS(6801), + [anon_sym_virtual] = ACTIONS(6801), + [anon_sym_volatile] = ACTIONS(6801), + [anon_sym_where] = ACTIONS(6801), + [anon_sym_notnull] = ACTIONS(6801), + [anon_sym_unmanaged] = ACTIONS(6801), + [sym_accessor_get] = ACTIONS(6801), + [sym_accessor_set] = ACTIONS(6801), + [sym_accessor_add] = ACTIONS(6801), + [sym_accessor_remove] = ACTIONS(6801), + [sym_accessor_init] = ACTIONS(6801), + [anon_sym_scoped] = ACTIONS(6801), + [anon_sym_var] = ACTIONS(6801), + [anon_sym_yield] = ACTIONS(6801), + [anon_sym_when] = ACTIONS(6801), + [anon_sym_from] = ACTIONS(6801), + [anon_sym_into] = ACTIONS(6801), + [anon_sym_join] = ACTIONS(6801), + [anon_sym_on] = ACTIONS(6801), + [anon_sym_equals] = ACTIONS(6801), + [anon_sym_let] = ACTIONS(6801), + [anon_sym_orderby] = ACTIONS(6801), + [anon_sym_ascending] = ACTIONS(6801), + [anon_sym_descending] = ACTIONS(6801), + [anon_sym_group] = ACTIONS(6801), + [anon_sym_by] = ACTIONS(6801), + [anon_sym_select] = ACTIONS(6801), + [sym_grit_metavariable] = ACTIONS(6803), + [aux_sym_preproc_if_token1] = ACTIONS(6803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -573111,27 +567765,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4118] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4118), [sym_preproc_endregion] = STATE(4118), [sym_preproc_line] = STATE(4118), @@ -573141,41 +567789,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4118), [sym_preproc_define] = STATE(4118), [sym_preproc_undef] = STATE(4118), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4760), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6431), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6749), + [anon_sym_RBRACK] = ACTIONS(6749), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5332), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -573188,27 +567837,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4119] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4119), [sym_preproc_endregion] = STATE(4119), [sym_preproc_line] = STATE(4119), @@ -573218,41 +567861,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4119), [sym_preproc_define] = STATE(4119), [sym_preproc_undef] = STATE(4119), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_equals] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6765), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6777), + [anon_sym_is] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -573265,27 +567909,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4120] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4120), [sym_preproc_endregion] = STATE(4120), [sym_preproc_line] = STATE(4120), @@ -573295,41 +567933,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4120), [sym_preproc_define] = STATE(4120), [sym_preproc_undef] = STATE(4120), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6435), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(6435), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6749), + [anon_sym_RBRACK] = ACTIONS(6749), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6749), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -573351,62 +567990,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4121), [sym_preproc_define] = STATE(4121), [sym_preproc_undef] = STATE(4121), - [anon_sym_EQ] = ACTIONS(6437), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5686), - [anon_sym_PLUS_EQ] = ACTIONS(6439), - [anon_sym_DASH_EQ] = ACTIONS(6439), - [anon_sym_STAR_EQ] = ACTIONS(6439), - [anon_sym_SLASH_EQ] = ACTIONS(6439), - [anon_sym_PERCENT_EQ] = ACTIONS(6439), - [anon_sym_AMP_EQ] = ACTIONS(6439), - [anon_sym_CARET_EQ] = ACTIONS(6439), - [anon_sym_PIPE_EQ] = ACTIONS(6439), - [anon_sym_LT_LT_EQ] = ACTIONS(6439), - [anon_sym_GT_GT_EQ] = ACTIONS(6439), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6439), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6439), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [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_group] = ACTIONS(5684), - [anon_sym_select] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_SEMI] = ACTIONS(5891), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_COLON] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_RBRACK] = ACTIONS(5891), + [anon_sym_LPAREN] = ACTIONS(5891), + [anon_sym_RPAREN] = ACTIONS(5891), + [anon_sym_RBRACE] = ACTIONS(5891), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_in] = ACTIONS(5893), + [anon_sym_QMARK] = ACTIONS(5893), + [anon_sym_DOT] = ACTIONS(5893), + [anon_sym_EQ_GT] = ACTIONS(5891), + [anon_sym_STAR] = ACTIONS(5891), + [anon_sym_switch] = ACTIONS(5891), + [anon_sym_when] = ACTIONS(5891), + [anon_sym_DOT_DOT] = ACTIONS(5891), + [anon_sym_LT_EQ] = ACTIONS(5891), + [anon_sym_GT_EQ] = ACTIONS(5891), + [anon_sym_and] = ACTIONS(5891), + [anon_sym_or] = ACTIONS(5891), + [anon_sym_EQ_EQ] = ACTIONS(5891), + [anon_sym_BANG_EQ] = ACTIONS(5891), + [anon_sym_AMP_AMP] = ACTIONS(5891), + [anon_sym_PIPE_PIPE] = ACTIONS(5891), + [anon_sym_AMP] = ACTIONS(5893), + [sym_op_bitwise_or] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5891), + [sym_op_left_shift] = ACTIONS(5891), + [sym_op_right_shift] = ACTIONS(5893), + [sym_op_unsigned_right_shift] = ACTIONS(5891), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_DASH] = ACTIONS(5893), + [sym_op_divide] = ACTIONS(5893), + [sym_op_modulo] = ACTIONS(5891), + [sym_op_coalescing] = ACTIONS(5891), + [anon_sym_BANG] = ACTIONS(5893), + [anon_sym_PLUS_PLUS] = ACTIONS(5891), + [anon_sym_DASH_DASH] = ACTIONS(5891), + [anon_sym_into] = ACTIONS(5891), + [anon_sym_on] = ACTIONS(5891), + [anon_sym_equals] = ACTIONS(5891), + [anon_sym_by] = ACTIONS(5891), + [anon_sym_as] = ACTIONS(5891), + [anon_sym_is] = ACTIONS(5891), + [anon_sym_DASH_GT] = ACTIONS(5891), + [anon_sym_with] = ACTIONS(5891), + [aux_sym_preproc_if_token3] = ACTIONS(5891), + [aux_sym_preproc_else_token1] = ACTIONS(5891), + [aux_sym_preproc_elif_token1] = ACTIONS(5891), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -573419,27 +568053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4122] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), [sym_preproc_region] = STATE(4122), [sym_preproc_endregion] = STATE(4122), [sym_preproc_line] = STATE(4122), @@ -573449,41 +568062,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4122), [sym_preproc_define] = STATE(4122), [sym_preproc_undef] = STATE(4122), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_equals] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(6007), + [anon_sym_LBRACK] = ACTIONS(6007), + [anon_sym_COLON] = ACTIONS(6007), + [anon_sym_COMMA] = ACTIONS(6007), + [anon_sym_RBRACK] = ACTIONS(6007), + [anon_sym_LPAREN] = ACTIONS(6007), + [anon_sym_RPAREN] = ACTIONS(6007), + [anon_sym_RBRACE] = ACTIONS(6007), + [anon_sym_LT] = ACTIONS(6009), + [anon_sym_GT] = ACTIONS(6009), + [anon_sym_in] = ACTIONS(6009), + [anon_sym_QMARK] = ACTIONS(6009), + [anon_sym_DOT] = ACTIONS(6009), + [anon_sym_EQ_GT] = ACTIONS(6007), + [anon_sym_STAR] = ACTIONS(6007), + [anon_sym_switch] = ACTIONS(6007), + [anon_sym_when] = ACTIONS(6007), + [anon_sym_DOT_DOT] = ACTIONS(6007), + [anon_sym_LT_EQ] = ACTIONS(6007), + [anon_sym_GT_EQ] = ACTIONS(6007), + [anon_sym_and] = ACTIONS(6007), + [anon_sym_or] = ACTIONS(6007), + [anon_sym_EQ_EQ] = ACTIONS(6007), + [anon_sym_BANG_EQ] = ACTIONS(6007), + [anon_sym_AMP_AMP] = ACTIONS(6007), + [anon_sym_PIPE_PIPE] = ACTIONS(6007), + [anon_sym_AMP] = ACTIONS(6009), + [sym_op_bitwise_or] = ACTIONS(6009), + [anon_sym_CARET] = ACTIONS(6007), + [sym_op_left_shift] = ACTIONS(6007), + [sym_op_right_shift] = ACTIONS(6009), + [sym_op_unsigned_right_shift] = ACTIONS(6007), + [anon_sym_PLUS] = ACTIONS(6009), + [anon_sym_DASH] = ACTIONS(6009), + [sym_op_divide] = ACTIONS(6009), + [sym_op_modulo] = ACTIONS(6007), + [sym_op_coalescing] = ACTIONS(6007), + [anon_sym_BANG] = ACTIONS(6009), + [anon_sym_PLUS_PLUS] = ACTIONS(6007), + [anon_sym_DASH_DASH] = ACTIONS(6007), + [anon_sym_into] = ACTIONS(6007), + [anon_sym_on] = ACTIONS(6007), + [anon_sym_equals] = ACTIONS(6007), + [anon_sym_by] = ACTIONS(6007), + [anon_sym_as] = ACTIONS(6007), + [anon_sym_is] = ACTIONS(6007), + [anon_sym_DASH_GT] = ACTIONS(6007), + [anon_sym_with] = ACTIONS(6007), + [aux_sym_preproc_if_token3] = ACTIONS(6007), + [aux_sym_preproc_else_token1] = ACTIONS(6007), + [aux_sym_preproc_elif_token1] = ACTIONS(6007), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -573505,62 +568134,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4123), [sym_preproc_define] = STATE(4123), [sym_preproc_undef] = STATE(4123), - [anon_sym_SEMI] = ACTIONS(4748), - [anon_sym_LBRACK] = ACTIONS(4748), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_RBRACK] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4748), - [anon_sym_RPAREN] = ACTIONS(4748), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4750), - [anon_sym_GT] = ACTIONS(4750), - [anon_sym_in] = ACTIONS(4748), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(4750), - [anon_sym_BANG] = ACTIONS(4750), - [anon_sym_PLUS_PLUS] = ACTIONS(4748), - [anon_sym_DASH_DASH] = ACTIONS(4748), - [anon_sym_PLUS] = ACTIONS(4750), - [anon_sym_DASH] = ACTIONS(4750), - [anon_sym_STAR] = ACTIONS(4748), - [anon_sym_SLASH] = ACTIONS(4750), - [anon_sym_PERCENT] = ACTIONS(4748), - [anon_sym_CARET] = ACTIONS(4748), - [anon_sym_PIPE] = ACTIONS(4750), - [anon_sym_AMP] = ACTIONS(4750), - [anon_sym_LT_LT] = ACTIONS(4748), - [anon_sym_GT_GT] = ACTIONS(4750), - [anon_sym_GT_GT_GT] = ACTIONS(4748), - [anon_sym_EQ_EQ] = ACTIONS(4748), - [anon_sym_BANG_EQ] = ACTIONS(4748), - [anon_sym_GT_EQ] = ACTIONS(4748), - [anon_sym_LT_EQ] = ACTIONS(4748), - [anon_sym_DOT] = ACTIONS(4750), - [anon_sym_EQ_GT] = ACTIONS(4748), - [anon_sym_switch] = ACTIONS(4748), - [anon_sym_DOT_DOT] = ACTIONS(4748), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4750), - [anon_sym_AMP_AMP] = ACTIONS(4748), - [anon_sym_PIPE_PIPE] = ACTIONS(4748), - [sym_op_coalescing] = ACTIONS(4748), - [anon_sym_from] = ACTIONS(4748), - [anon_sym_join] = ACTIONS(4748), - [anon_sym_on] = ACTIONS(4748), - [anon_sym_equals] = ACTIONS(4748), - [anon_sym_let] = ACTIONS(4748), - [anon_sym_orderby] = ACTIONS(4748), - [anon_sym_group] = ACTIONS(4748), - [anon_sym_by] = ACTIONS(4748), - [anon_sym_select] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4748), - [anon_sym_is] = ACTIONS(4748), - [anon_sym_DASH_GT] = ACTIONS(4748), - [anon_sym_with] = ACTIONS(4748), - [aux_sym_preproc_if_token3] = ACTIONS(4748), - [aux_sym_preproc_else_token1] = ACTIONS(4748), - [aux_sym_preproc_elif_token1] = ACTIONS(4748), + [anon_sym_SEMI] = ACTIONS(5771), + [anon_sym_LBRACK] = ACTIONS(5771), + [anon_sym_COLON] = ACTIONS(5771), + [anon_sym_COMMA] = ACTIONS(5771), + [anon_sym_RBRACK] = ACTIONS(5771), + [anon_sym_LPAREN] = ACTIONS(5771), + [anon_sym_RPAREN] = ACTIONS(5771), + [anon_sym_RBRACE] = ACTIONS(5771), + [anon_sym_LT] = ACTIONS(5773), + [anon_sym_GT] = ACTIONS(5773), + [anon_sym_in] = ACTIONS(5773), + [anon_sym_QMARK] = ACTIONS(5773), + [anon_sym_DOT] = ACTIONS(5773), + [anon_sym_EQ_GT] = ACTIONS(5771), + [anon_sym_STAR] = ACTIONS(5771), + [anon_sym_switch] = ACTIONS(5771), + [anon_sym_when] = ACTIONS(5771), + [anon_sym_DOT_DOT] = ACTIONS(5771), + [anon_sym_LT_EQ] = ACTIONS(5771), + [anon_sym_GT_EQ] = ACTIONS(5771), + [anon_sym_and] = ACTIONS(5771), + [anon_sym_or] = ACTIONS(5771), + [anon_sym_EQ_EQ] = ACTIONS(5771), + [anon_sym_BANG_EQ] = ACTIONS(5771), + [anon_sym_AMP_AMP] = ACTIONS(5771), + [anon_sym_PIPE_PIPE] = ACTIONS(5771), + [anon_sym_AMP] = ACTIONS(5773), + [sym_op_bitwise_or] = ACTIONS(5773), + [anon_sym_CARET] = ACTIONS(5771), + [sym_op_left_shift] = ACTIONS(5771), + [sym_op_right_shift] = ACTIONS(5773), + [sym_op_unsigned_right_shift] = ACTIONS(5771), + [anon_sym_PLUS] = ACTIONS(5773), + [anon_sym_DASH] = ACTIONS(5773), + [sym_op_divide] = ACTIONS(5773), + [sym_op_modulo] = ACTIONS(5771), + [sym_op_coalescing] = ACTIONS(5771), + [anon_sym_BANG] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5771), + [anon_sym_DASH_DASH] = ACTIONS(5771), + [anon_sym_into] = ACTIONS(5771), + [anon_sym_on] = ACTIONS(5771), + [anon_sym_equals] = ACTIONS(5771), + [anon_sym_by] = ACTIONS(5771), + [anon_sym_as] = ACTIONS(5771), + [anon_sym_is] = ACTIONS(5771), + [anon_sym_DASH_GT] = ACTIONS(5771), + [anon_sym_with] = ACTIONS(5771), + [aux_sym_preproc_if_token3] = ACTIONS(5771), + [aux_sym_preproc_else_token1] = ACTIONS(5771), + [aux_sym_preproc_elif_token1] = ACTIONS(5771), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -573582,62 +568206,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4124), [sym_preproc_define] = STATE(4124), [sym_preproc_undef] = STATE(4124), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_COLON] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_RPAREN] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_where] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3201), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_GT_EQ] = ACTIONS(3201), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_op_coalescing] = ACTIONS(3201), - [anon_sym_from] = 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_group] = ACTIONS(3201), - [anon_sym_by] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3201), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_with] = ACTIONS(3201), - [aux_sym_preproc_if_token3] = ACTIONS(3201), - [aux_sym_preproc_else_token1] = ACTIONS(3201), - [aux_sym_preproc_elif_token1] = ACTIONS(3201), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_COLON] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_RBRACK] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_RPAREN] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4411), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_QMARK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_EQ_GT] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_switch] = ACTIONS(4411), + [anon_sym_when] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_and] = ACTIONS(4411), + [anon_sym_or] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4409), + [sym_op_bitwise_or] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4411), + [sym_op_left_shift] = ACTIONS(4411), + [sym_op_right_shift] = ACTIONS(4409), + [sym_op_unsigned_right_shift] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [sym_op_divide] = ACTIONS(4409), + [sym_op_modulo] = ACTIONS(4411), + [sym_op_coalescing] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_on] = ACTIONS(4411), + [anon_sym_equals] = ACTIONS(4411), + [anon_sym_by] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_DASH_GT] = ACTIONS(4411), + [anon_sym_with] = ACTIONS(4411), + [aux_sym_preproc_if_token3] = ACTIONS(4411), + [aux_sym_preproc_else_token1] = ACTIONS(4411), + [aux_sym_preproc_elif_token1] = ACTIONS(4411), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -573650,6 +568269,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4125] = { + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7840), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4125), [sym_preproc_endregion] = STATE(4125), [sym_preproc_line] = STATE(4125), @@ -573659,62 +568298,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4125), [sym_preproc_define] = STATE(4125), [sym_preproc_undef] = STATE(4125), - [anon_sym_SEMI] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(6369), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_COMMA] = ACTIONS(6369), - [anon_sym_RBRACK] = ACTIONS(6369), - [anon_sym_LPAREN] = ACTIONS(6369), - [anon_sym_RPAREN] = ACTIONS(6369), - [anon_sym_RBRACE] = ACTIONS(6369), - [anon_sym_LT] = ACTIONS(6371), - [anon_sym_GT] = ACTIONS(6371), - [anon_sym_in] = ACTIONS(6369), - [anon_sym_where] = ACTIONS(6369), - [anon_sym_QMARK] = ACTIONS(6371), - [anon_sym_BANG] = ACTIONS(6371), - [anon_sym_PLUS_PLUS] = ACTIONS(6369), - [anon_sym_DASH_DASH] = ACTIONS(6369), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6369), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_PERCENT] = ACTIONS(6369), - [anon_sym_CARET] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6371), - [anon_sym_AMP] = ACTIONS(6371), - [anon_sym_LT_LT] = ACTIONS(6369), - [anon_sym_GT_GT] = ACTIONS(6371), - [anon_sym_GT_GT_GT] = ACTIONS(6369), - [anon_sym_EQ_EQ] = ACTIONS(6369), - [anon_sym_BANG_EQ] = ACTIONS(6369), - [anon_sym_GT_EQ] = ACTIONS(6369), - [anon_sym_LT_EQ] = ACTIONS(6369), - [anon_sym_DOT] = ACTIONS(6371), - [anon_sym_EQ_GT] = ACTIONS(6369), - [anon_sym_switch] = ACTIONS(6369), - [anon_sym_DOT_DOT] = ACTIONS(6369), - [anon_sym_and] = ACTIONS(6369), - [anon_sym_or] = ACTIONS(6371), - [anon_sym_AMP_AMP] = ACTIONS(6369), - [anon_sym_PIPE_PIPE] = ACTIONS(6369), - [sym_op_coalescing] = ACTIONS(6369), - [anon_sym_from] = ACTIONS(6369), - [anon_sym_join] = ACTIONS(6369), - [anon_sym_on] = ACTIONS(6369), - [anon_sym_equals] = ACTIONS(6369), - [anon_sym_let] = ACTIONS(6369), - [anon_sym_orderby] = ACTIONS(6369), - [anon_sym_group] = ACTIONS(6369), - [anon_sym_by] = ACTIONS(6369), - [anon_sym_select] = ACTIONS(6369), - [anon_sym_as] = ACTIONS(6369), - [anon_sym_is] = ACTIONS(6369), - [anon_sym_DASH_GT] = ACTIONS(6369), - [anon_sym_with] = ACTIONS(6369), - [aux_sym_preproc_if_token3] = ACTIONS(6369), - [aux_sym_preproc_else_token1] = ACTIONS(6369), - [aux_sym_preproc_elif_token1] = ACTIONS(6369), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -573727,27 +568341,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4126] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), [sym_preproc_region] = STATE(4126), [sym_preproc_endregion] = STATE(4126), [sym_preproc_line] = STATE(4126), @@ -573757,41 +568350,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4126), [sym_preproc_define] = STATE(4126), [sym_preproc_undef] = STATE(4126), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_COLON] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_RBRACK] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3191), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_EQ_GT] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_EQ] = ACTIONS(3193), + [anon_sym_and] = ACTIONS(3193), + [anon_sym_or] = ACTIONS(3193), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_PIPE_PIPE] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [sym_op_bitwise_or] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3193), + [sym_op_left_shift] = ACTIONS(3193), + [sym_op_right_shift] = ACTIONS(3191), + [sym_op_unsigned_right_shift] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [sym_op_divide] = ACTIONS(3191), + [sym_op_modulo] = ACTIONS(3193), + [sym_op_coalescing] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_into] = ACTIONS(3193), + [anon_sym_on] = ACTIONS(3193), + [anon_sym_equals] = ACTIONS(3193), + [anon_sym_by] = ACTIONS(3193), + [anon_sym_as] = ACTIONS(3193), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_DASH_GT] = ACTIONS(3193), + [anon_sym_with] = 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), @@ -573804,27 +568413,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4127] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7884), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4127), [sym_preproc_endregion] = STATE(4127), [sym_preproc_line] = STATE(4127), @@ -573834,41 +568442,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4127), [sym_preproc_define] = STATE(4127), [sym_preproc_undef] = STATE(4127), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym_function_pointer_type_repeat1] = STATE(4125), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -573881,27 +568485,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4128] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7884), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4128), [sym_preproc_endregion] = STATE(4128), [sym_preproc_line] = STATE(4128), @@ -573911,41 +568514,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4128), [sym_preproc_define] = STATE(4128), [sym_preproc_undef] = STATE(4128), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -573958,27 +568557,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4129] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym_type_parameter_constraint] = STATE(6805), + [sym_constructor_constraint] = STATE(6867), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6777), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4129), [sym_preproc_endregion] = STATE(4129), [sym_preproc_line] = STATE(4129), @@ -573988,41 +568586,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4129), [sym_preproc_define] = STATE(4129), [sym_preproc_undef] = STATE(4129), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(6805), + [anon_sym_ref] = ACTIONS(6807), + [anon_sym_struct] = ACTIONS(6809), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(6811), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(6813), + [anon_sym_unmanaged] = ACTIONS(6813), + [anon_sym_scoped] = ACTIONS(6815), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -574035,27 +568629,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4130] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4130), [sym_preproc_endregion] = STATE(4130), [sym_preproc_line] = STATE(4130), @@ -574065,41 +568653,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4130), [sym_preproc_define] = STATE(4130), [sym_preproc_undef] = STATE(4130), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4780), - [anon_sym_QMARK] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6443), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6445), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6717), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(6729), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -574112,27 +568701,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4131] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4131), [sym_preproc_endregion] = STATE(4131), [sym_preproc_line] = STATE(4131), @@ -574142,41 +568725,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4131), [sym_preproc_define] = STATE(4131), [sym_preproc_undef] = STATE(4131), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6447), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(6447), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -574189,6 +568773,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4132] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4132), [sym_preproc_endregion] = STATE(4132), [sym_preproc_line] = STATE(4132), @@ -574198,62 +568797,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4132), [sym_preproc_define] = STATE(4132), [sym_preproc_undef] = STATE(4132), - [anon_sym_SEMI] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6365), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_COMMA] = ACTIONS(6365), - [anon_sym_RBRACK] = ACTIONS(6365), - [anon_sym_LPAREN] = ACTIONS(6365), - [anon_sym_RPAREN] = ACTIONS(6365), - [anon_sym_RBRACE] = ACTIONS(6365), - [anon_sym_LT] = ACTIONS(6367), - [anon_sym_GT] = ACTIONS(6367), - [anon_sym_in] = ACTIONS(6365), - [anon_sym_where] = ACTIONS(6365), - [anon_sym_QMARK] = ACTIONS(6367), - [anon_sym_BANG] = ACTIONS(6367), - [anon_sym_PLUS_PLUS] = ACTIONS(6365), - [anon_sym_DASH_DASH] = ACTIONS(6365), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6365), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_PERCENT] = ACTIONS(6365), - [anon_sym_CARET] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6367), - [anon_sym_AMP] = ACTIONS(6367), - [anon_sym_LT_LT] = ACTIONS(6365), - [anon_sym_GT_GT] = ACTIONS(6367), - [anon_sym_GT_GT_GT] = ACTIONS(6365), - [anon_sym_EQ_EQ] = ACTIONS(6365), - [anon_sym_BANG_EQ] = ACTIONS(6365), - [anon_sym_GT_EQ] = ACTIONS(6365), - [anon_sym_LT_EQ] = ACTIONS(6365), - [anon_sym_DOT] = ACTIONS(6367), - [anon_sym_EQ_GT] = ACTIONS(6365), - [anon_sym_switch] = ACTIONS(6365), - [anon_sym_DOT_DOT] = ACTIONS(6365), - [anon_sym_and] = ACTIONS(6365), - [anon_sym_or] = ACTIONS(6367), - [anon_sym_AMP_AMP] = ACTIONS(6365), - [anon_sym_PIPE_PIPE] = ACTIONS(6365), - [sym_op_coalescing] = ACTIONS(6365), - [anon_sym_from] = ACTIONS(6365), - [anon_sym_join] = ACTIONS(6365), - [anon_sym_on] = ACTIONS(6365), - [anon_sym_equals] = ACTIONS(6365), - [anon_sym_let] = ACTIONS(6365), - [anon_sym_orderby] = ACTIONS(6365), - [anon_sym_group] = ACTIONS(6365), - [anon_sym_by] = ACTIONS(6365), - [anon_sym_select] = ACTIONS(6365), - [anon_sym_as] = ACTIONS(6365), - [anon_sym_is] = ACTIONS(6365), - [anon_sym_DASH_GT] = ACTIONS(6365), - [anon_sym_with] = ACTIONS(6365), - [aux_sym_preproc_if_token3] = ACTIONS(6365), - [aux_sym_preproc_else_token1] = ACTIONS(6365), - [aux_sym_preproc_elif_token1] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6777), + [anon_sym_is] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -574266,6 +568845,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4133] = { + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8109), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4133), [sym_preproc_endregion] = STATE(4133), [sym_preproc_line] = STATE(4133), @@ -574275,62 +568874,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4133), [sym_preproc_define] = STATE(4133), [sym_preproc_undef] = STATE(4133), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_COLON] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_RBRACK] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_RPAREN] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3205), - [anon_sym_where] = ACTIONS(3205), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3205), - [anon_sym_EQ_EQ] = ACTIONS(3205), - [anon_sym_BANG_EQ] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3205), - [anon_sym_LT_EQ] = ACTIONS(3205), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_EQ_GT] = ACTIONS(3205), - [anon_sym_switch] = ACTIONS(3205), - [anon_sym_DOT_DOT] = ACTIONS(3205), - [anon_sym_and] = ACTIONS(3205), - [anon_sym_or] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [sym_op_coalescing] = ACTIONS(3205), - [anon_sym_from] = 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_group] = ACTIONS(3205), - [anon_sym_by] = ACTIONS(3205), - [anon_sym_select] = ACTIONS(3205), - [anon_sym_as] = ACTIONS(3205), - [anon_sym_is] = ACTIONS(3205), - [anon_sym_DASH_GT] = ACTIONS(3205), - [anon_sym_with] = ACTIONS(3205), - [aux_sym_preproc_if_token3] = ACTIONS(3205), - [aux_sym_preproc_else_token1] = ACTIONS(3205), - [aux_sym_preproc_elif_token1] = ACTIONS(3205), + [aux_sym_function_pointer_type_repeat1] = STATE(4128), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -574343,27 +568917,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4134] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4134), [sym_preproc_endregion] = STATE(4134), [sym_preproc_line] = STATE(4134), @@ -574373,41 +568941,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4134), [sym_preproc_define] = STATE(4134), [sym_preproc_undef] = STATE(4134), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6449), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6449), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5364), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6717), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(6729), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -574420,27 +568989,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4135] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), [sym_preproc_region] = STATE(4135), [sym_preproc_endregion] = STATE(4135), [sym_preproc_line] = STATE(4135), @@ -574450,41 +568998,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4135), [sym_preproc_define] = STATE(4135), [sym_preproc_undef] = STATE(4135), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(4015), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_COLON] = ACTIONS(4015), + [anon_sym_COMMA] = ACTIONS(4015), + [anon_sym_RBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4015), + [anon_sym_RPAREN] = ACTIONS(4015), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4008), + [anon_sym_GT] = ACTIONS(4008), + [anon_sym_in] = ACTIONS(4015), + [anon_sym_QMARK] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4008), + [anon_sym_EQ_GT] = ACTIONS(4015), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_switch] = ACTIONS(4015), + [anon_sym_when] = ACTIONS(4015), + [anon_sym_DOT_DOT] = ACTIONS(4015), + [anon_sym_LT_EQ] = ACTIONS(4015), + [anon_sym_GT_EQ] = ACTIONS(4015), + [anon_sym_and] = ACTIONS(4015), + [anon_sym_or] = ACTIONS(4015), + [anon_sym_EQ_EQ] = ACTIONS(4015), + [anon_sym_BANG_EQ] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_PIPE_PIPE] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4008), + [sym_op_bitwise_or] = ACTIONS(4008), + [anon_sym_CARET] = ACTIONS(4015), + [sym_op_left_shift] = ACTIONS(4015), + [sym_op_right_shift] = ACTIONS(4008), + [sym_op_unsigned_right_shift] = ACTIONS(4015), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4008), + [sym_op_divide] = ACTIONS(4008), + [sym_op_modulo] = ACTIONS(4015), + [sym_op_coalescing] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(4008), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_on] = ACTIONS(4015), + [anon_sym_equals] = ACTIONS(4015), + [anon_sym_by] = ACTIONS(4015), + [anon_sym_as] = ACTIONS(4015), + [anon_sym_is] = ACTIONS(4015), + [anon_sym_DASH_GT] = ACTIONS(4015), + [anon_sym_with] = ACTIONS(4015), + [aux_sym_preproc_if_token3] = ACTIONS(4015), + [aux_sym_preproc_else_token1] = ACTIONS(4015), + [aux_sym_preproc_elif_token1] = ACTIONS(4015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -574497,27 +569061,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4136] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), [sym_preproc_region] = STATE(4136), [sym_preproc_endregion] = STATE(4136), [sym_preproc_line] = STATE(4136), @@ -574527,41 +569070,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4136), [sym_preproc_define] = STATE(4136), [sym_preproc_undef] = STATE(4136), - [anon_sym_SEMI] = ACTIONS(6451), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6451), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6049), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6817), + [anon_sym_LBRACK] = ACTIONS(6817), + [anon_sym_COLON] = ACTIONS(6817), + [anon_sym_COMMA] = ACTIONS(6817), + [anon_sym_RBRACK] = ACTIONS(6817), + [anon_sym_LPAREN] = ACTIONS(6817), + [anon_sym_RPAREN] = ACTIONS(6817), + [anon_sym_RBRACE] = ACTIONS(6817), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_in] = ACTIONS(6819), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_EQ_GT] = ACTIONS(6817), + [anon_sym_STAR] = ACTIONS(6817), + [anon_sym_switch] = ACTIONS(6817), + [anon_sym_when] = ACTIONS(6817), + [anon_sym_DOT_DOT] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_and] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6817), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6817), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP] = ACTIONS(6819), + [sym_op_bitwise_or] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6817), + [sym_op_left_shift] = ACTIONS(6817), + [sym_op_right_shift] = ACTIONS(6819), + [sym_op_unsigned_right_shift] = ACTIONS(6817), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6819), + [sym_op_divide] = ACTIONS(6819), + [sym_op_modulo] = ACTIONS(6817), + [sym_op_coalescing] = ACTIONS(6817), + [anon_sym_BANG] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_into] = ACTIONS(6817), + [anon_sym_on] = ACTIONS(6817), + [anon_sym_equals] = ACTIONS(6817), + [anon_sym_by] = ACTIONS(6817), + [anon_sym_as] = ACTIONS(6817), + [anon_sym_is] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6817), + [anon_sym_with] = ACTIONS(6817), + [aux_sym_preproc_if_token3] = ACTIONS(6817), + [aux_sym_preproc_else_token1] = ACTIONS(6817), + [aux_sym_preproc_elif_token1] = ACTIONS(6817), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -574574,6 +569133,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4137] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4137), [sym_preproc_endregion] = STATE(4137), [sym_preproc_line] = STATE(4137), @@ -574583,62 +569157,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4137), [sym_preproc_define] = STATE(4137), [sym_preproc_undef] = STATE(4137), - [anon_sym_SEMI] = ACTIONS(6255), - [anon_sym_LBRACK] = ACTIONS(6255), - [anon_sym_COLON] = ACTIONS(6255), - [anon_sym_COMMA] = ACTIONS(6255), - [anon_sym_RBRACK] = ACTIONS(6255), - [anon_sym_LPAREN] = ACTIONS(6255), - [anon_sym_RPAREN] = ACTIONS(6255), - [anon_sym_RBRACE] = ACTIONS(6255), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_GT] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6255), - [anon_sym_where] = ACTIONS(6255), - [anon_sym_QMARK] = ACTIONS(6257), - [anon_sym_BANG] = ACTIONS(6257), - [anon_sym_PLUS_PLUS] = ACTIONS(6255), - [anon_sym_DASH_DASH] = ACTIONS(6255), - [anon_sym_PLUS] = ACTIONS(6257), - [anon_sym_DASH] = ACTIONS(6257), - [anon_sym_STAR] = ACTIONS(6255), - [anon_sym_SLASH] = ACTIONS(6257), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_CARET] = ACTIONS(6255), - [anon_sym_PIPE] = ACTIONS(6257), - [anon_sym_AMP] = ACTIONS(6257), - [anon_sym_LT_LT] = ACTIONS(6255), - [anon_sym_GT_GT] = ACTIONS(6257), - [anon_sym_GT_GT_GT] = ACTIONS(6255), - [anon_sym_EQ_EQ] = ACTIONS(6255), - [anon_sym_BANG_EQ] = ACTIONS(6255), - [anon_sym_GT_EQ] = ACTIONS(6255), - [anon_sym_LT_EQ] = ACTIONS(6255), - [anon_sym_DOT] = ACTIONS(6257), - [anon_sym_EQ_GT] = ACTIONS(6255), - [anon_sym_switch] = ACTIONS(6255), - [anon_sym_DOT_DOT] = ACTIONS(6255), - [anon_sym_and] = ACTIONS(6255), - [anon_sym_or] = ACTIONS(6257), - [anon_sym_AMP_AMP] = ACTIONS(6255), - [anon_sym_PIPE_PIPE] = ACTIONS(6255), - [sym_op_coalescing] = ACTIONS(6255), - [anon_sym_from] = ACTIONS(6255), - [anon_sym_join] = ACTIONS(6255), - [anon_sym_on] = ACTIONS(6255), - [anon_sym_equals] = ACTIONS(6255), - [anon_sym_let] = ACTIONS(6255), - [anon_sym_orderby] = ACTIONS(6255), - [anon_sym_group] = ACTIONS(6255), - [anon_sym_by] = ACTIONS(6255), - [anon_sym_select] = ACTIONS(6255), - [anon_sym_as] = ACTIONS(6255), - [anon_sym_is] = ACTIONS(6255), - [anon_sym_DASH_GT] = ACTIONS(6255), - [anon_sym_with] = ACTIONS(6255), - [aux_sym_preproc_if_token3] = ACTIONS(6255), - [aux_sym_preproc_else_token1] = ACTIONS(6255), - [aux_sym_preproc_elif_token1] = ACTIONS(6255), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -574651,27 +569205,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4138] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4138), [sym_preproc_endregion] = STATE(4138), [sym_preproc_line] = STATE(4138), @@ -574681,41 +569229,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4138), [sym_preproc_define] = STATE(4138), [sym_preproc_undef] = STATE(4138), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_QMARK] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6443), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6445), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -574728,27 +569277,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4139] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4139), [sym_preproc_endregion] = STATE(4139), [sym_preproc_line] = STATE(4139), @@ -574758,41 +569301,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4139), [sym_preproc_define] = STATE(4139), [sym_preproc_undef] = STATE(4139), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4750), - [anon_sym_QMARK] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6443), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6445), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6821), + [anon_sym_RBRACK] = ACTIONS(6821), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -574805,27 +569349,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4140] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4140), [sym_preproc_endregion] = STATE(4140), [sym_preproc_line] = STATE(4140), @@ -574835,41 +569373,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4140), [sym_preproc_define] = STATE(4140), [sym_preproc_undef] = STATE(4140), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4730), - [anon_sym_QMARK] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6443), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6445), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -574882,27 +569421,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4141] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), [sym_preproc_region] = STATE(4141), [sym_preproc_endregion] = STATE(4141), [sym_preproc_line] = STATE(4141), @@ -574912,41 +569430,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4141), [sym_preproc_define] = STATE(4141), [sym_preproc_undef] = STATE(4141), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6445), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(4435), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_RBRACK] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_RPAREN] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4435), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_QMARK] = ACTIONS(4433), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_EQ_GT] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [anon_sym_switch] = ACTIONS(4435), + [anon_sym_when] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_and] = ACTIONS(4435), + [anon_sym_or] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_AMP] = ACTIONS(4433), + [sym_op_bitwise_or] = ACTIONS(4433), + [anon_sym_CARET] = ACTIONS(4435), + [sym_op_left_shift] = ACTIONS(4435), + [sym_op_right_shift] = ACTIONS(4433), + [sym_op_unsigned_right_shift] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [sym_op_divide] = ACTIONS(4433), + [sym_op_modulo] = ACTIONS(4435), + [sym_op_coalescing] = ACTIONS(4435), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_on] = ACTIONS(4435), + [anon_sym_equals] = ACTIONS(4435), + [anon_sym_by] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_DASH_GT] = ACTIONS(4435), + [anon_sym_with] = 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), @@ -574959,27 +569493,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4142] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), [sym_preproc_region] = STATE(4142), [sym_preproc_endregion] = STATE(4142), [sym_preproc_line] = STATE(4142), @@ -574989,41 +569502,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4142), [sym_preproc_define] = STATE(4142), [sym_preproc_undef] = STATE(4142), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(6823), + [anon_sym_COLON] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RBRACK] = ACTIONS(6823), + [anon_sym_LPAREN] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_RBRACE] = ACTIONS(6823), + [anon_sym_LT] = ACTIONS(6825), + [anon_sym_GT] = ACTIONS(6825), + [anon_sym_in] = ACTIONS(6825), + [anon_sym_QMARK] = ACTIONS(6825), + [anon_sym_DOT] = ACTIONS(6825), + [anon_sym_EQ_GT] = ACTIONS(6823), + [anon_sym_STAR] = ACTIONS(6823), + [anon_sym_switch] = ACTIONS(6823), + [anon_sym_when] = ACTIONS(6823), + [anon_sym_DOT_DOT] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(6825), + [sym_op_bitwise_or] = ACTIONS(6825), + [anon_sym_CARET] = ACTIONS(6823), + [sym_op_left_shift] = ACTIONS(6823), + [sym_op_right_shift] = ACTIONS(6825), + [sym_op_unsigned_right_shift] = ACTIONS(6823), + [anon_sym_PLUS] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6825), + [sym_op_divide] = ACTIONS(6825), + [sym_op_modulo] = ACTIONS(6823), + [sym_op_coalescing] = ACTIONS(6823), + [anon_sym_BANG] = ACTIONS(6825), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_into] = ACTIONS(6823), + [anon_sym_on] = ACTIONS(6823), + [anon_sym_equals] = ACTIONS(6823), + [anon_sym_by] = ACTIONS(6823), + [anon_sym_as] = ACTIONS(6823), + [anon_sym_is] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [anon_sym_with] = ACTIONS(6823), + [aux_sym_preproc_if_token3] = ACTIONS(6823), + [aux_sym_preproc_else_token1] = ACTIONS(6823), + [aux_sym_preproc_elif_token1] = ACTIONS(6823), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -575036,27 +569565,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4143] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), [sym_preproc_region] = STATE(4143), [sym_preproc_endregion] = STATE(4143), [sym_preproc_line] = STATE(4143), @@ -575066,41 +569574,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4143), [sym_preproc_define] = STATE(4143), [sym_preproc_undef] = STATE(4143), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4748), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6431), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(6827), + [anon_sym_LBRACK] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(6827), + [anon_sym_COMMA] = ACTIONS(6827), + [anon_sym_RBRACK] = ACTIONS(6827), + [anon_sym_LPAREN] = ACTIONS(6827), + [anon_sym_RPAREN] = ACTIONS(6827), + [anon_sym_RBRACE] = ACTIONS(6827), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_in] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6829), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_EQ_GT] = ACTIONS(6827), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_switch] = ACTIONS(6827), + [anon_sym_when] = ACTIONS(6827), + [anon_sym_DOT_DOT] = ACTIONS(6827), + [anon_sym_LT_EQ] = ACTIONS(6827), + [anon_sym_GT_EQ] = ACTIONS(6827), + [anon_sym_and] = ACTIONS(6827), + [anon_sym_or] = ACTIONS(6827), + [anon_sym_EQ_EQ] = ACTIONS(6827), + [anon_sym_BANG_EQ] = ACTIONS(6827), + [anon_sym_AMP_AMP] = ACTIONS(6827), + [anon_sym_PIPE_PIPE] = ACTIONS(6827), + [anon_sym_AMP] = ACTIONS(6829), + [sym_op_bitwise_or] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6827), + [sym_op_left_shift] = ACTIONS(6827), + [sym_op_right_shift] = ACTIONS(6829), + [sym_op_unsigned_right_shift] = ACTIONS(6827), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_DASH] = ACTIONS(6829), + [sym_op_divide] = ACTIONS(6829), + [sym_op_modulo] = ACTIONS(6827), + [sym_op_coalescing] = ACTIONS(6827), + [anon_sym_BANG] = ACTIONS(6829), + [anon_sym_PLUS_PLUS] = ACTIONS(6827), + [anon_sym_DASH_DASH] = ACTIONS(6827), + [anon_sym_into] = ACTIONS(6827), + [anon_sym_on] = ACTIONS(6827), + [anon_sym_equals] = ACTIONS(6827), + [anon_sym_by] = ACTIONS(6827), + [anon_sym_as] = ACTIONS(6827), + [anon_sym_is] = ACTIONS(6827), + [anon_sym_DASH_GT] = ACTIONS(6827), + [anon_sym_with] = ACTIONS(6827), + [aux_sym_preproc_if_token3] = ACTIONS(6827), + [aux_sym_preproc_else_token1] = ACTIONS(6827), + [aux_sym_preproc_elif_token1] = ACTIONS(6827), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -575113,27 +569637,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4144] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_parameter_list] = STATE(7966), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6226), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym__lambda_parameters] = STATE(8081), + [sym_identifier] = STATE(6061), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4144), [sym_preproc_endregion] = STATE(4144), [sym_preproc_line] = STATE(4144), @@ -575143,41 +569666,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4144), [sym_preproc_define] = STATE(4144), [sym_preproc_undef] = STATE(4144), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6421), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_equals] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(6423), - [anon_sym_is] = ACTIONS(6425), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym__lambda_expression_init_repeat1] = STATE(6103), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(6831), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -575190,6 +569709,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4145] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4145), [sym_preproc_endregion] = STATE(4145), [sym_preproc_line] = STATE(4145), @@ -575199,62 +569733,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4145), [sym_preproc_define] = STATE(4145), [sym_preproc_undef] = STATE(4145), - [anon_sym_SEMI] = ACTIONS(6094), - [anon_sym_LBRACK] = ACTIONS(6094), - [anon_sym_COLON] = ACTIONS(6094), - [anon_sym_COMMA] = ACTIONS(6094), - [anon_sym_RBRACK] = ACTIONS(6094), - [anon_sym_LPAREN] = ACTIONS(6094), - [anon_sym_RPAREN] = ACTIONS(6094), - [anon_sym_RBRACE] = ACTIONS(6094), - [anon_sym_LT] = ACTIONS(6096), - [anon_sym_GT] = ACTIONS(6096), - [anon_sym_in] = ACTIONS(6094), - [anon_sym_where] = ACTIONS(6094), - [anon_sym_QMARK] = ACTIONS(6096), - [anon_sym_BANG] = ACTIONS(6096), - [anon_sym_PLUS_PLUS] = ACTIONS(6094), - [anon_sym_DASH_DASH] = ACTIONS(6094), - [anon_sym_PLUS] = ACTIONS(6096), - [anon_sym_DASH] = ACTIONS(6096), - [anon_sym_STAR] = ACTIONS(6094), - [anon_sym_SLASH] = ACTIONS(6096), - [anon_sym_PERCENT] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6094), - [anon_sym_PIPE] = ACTIONS(6096), - [anon_sym_AMP] = ACTIONS(6096), - [anon_sym_LT_LT] = ACTIONS(6094), - [anon_sym_GT_GT] = ACTIONS(6096), - [anon_sym_GT_GT_GT] = ACTIONS(6094), - [anon_sym_EQ_EQ] = ACTIONS(6094), - [anon_sym_BANG_EQ] = ACTIONS(6094), - [anon_sym_GT_EQ] = ACTIONS(6094), - [anon_sym_LT_EQ] = ACTIONS(6094), - [anon_sym_DOT] = ACTIONS(6096), - [anon_sym_EQ_GT] = ACTIONS(6094), - [anon_sym_switch] = ACTIONS(6094), - [anon_sym_DOT_DOT] = ACTIONS(6094), - [anon_sym_and] = ACTIONS(6094), - [anon_sym_or] = ACTIONS(6096), - [anon_sym_AMP_AMP] = ACTIONS(6094), - [anon_sym_PIPE_PIPE] = ACTIONS(6094), - [sym_op_coalescing] = ACTIONS(6094), - [anon_sym_from] = ACTIONS(6094), - [anon_sym_join] = ACTIONS(6094), - [anon_sym_on] = ACTIONS(6094), - [anon_sym_equals] = ACTIONS(6094), - [anon_sym_let] = ACTIONS(6094), - [anon_sym_orderby] = ACTIONS(6094), - [anon_sym_group] = ACTIONS(6094), - [anon_sym_by] = ACTIONS(6094), - [anon_sym_select] = ACTIONS(6094), - [anon_sym_as] = ACTIONS(6094), - [anon_sym_is] = ACTIONS(6094), - [anon_sym_DASH_GT] = ACTIONS(6094), - [anon_sym_with] = ACTIONS(6094), - [aux_sym_preproc_if_token3] = ACTIONS(6094), - [aux_sym_preproc_else_token1] = ACTIONS(6094), - [aux_sym_preproc_elif_token1] = ACTIONS(6094), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6833), + [anon_sym_RBRACK] = ACTIONS(6833), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6833), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -575267,27 +569781,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4146] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6437), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4146), [sym_preproc_endregion] = STATE(4146), [sym_preproc_line] = STATE(4146), @@ -575297,41 +569808,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4146), [sym_preproc_define] = STATE(4146), [sym_preproc_undef] = STATE(4146), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6329), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6455), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(6065), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5216), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(1311), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_out] = ACTIONS(1311), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_this] = ACTIONS(1311), + [anon_sym_scoped] = ACTIONS(5226), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -575344,27 +569853,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4147] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), [sym_preproc_region] = STATE(4147), [sym_preproc_endregion] = STATE(4147), [sym_preproc_line] = STATE(4147), @@ -575374,41 +569862,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4147), [sym_preproc_define] = STATE(4147), [sym_preproc_undef] = STATE(4147), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(6827), + [anon_sym_LBRACK] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(6827), + [anon_sym_COMMA] = ACTIONS(6827), + [anon_sym_RBRACK] = ACTIONS(6827), + [anon_sym_LPAREN] = ACTIONS(6827), + [anon_sym_RPAREN] = ACTIONS(6827), + [anon_sym_RBRACE] = ACTIONS(6827), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_in] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6829), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_EQ_GT] = ACTIONS(6827), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_switch] = ACTIONS(6827), + [anon_sym_when] = ACTIONS(6827), + [anon_sym_DOT_DOT] = ACTIONS(6827), + [anon_sym_LT_EQ] = ACTIONS(6827), + [anon_sym_GT_EQ] = ACTIONS(6827), + [anon_sym_and] = ACTIONS(6827), + [anon_sym_or] = ACTIONS(6827), + [anon_sym_EQ_EQ] = ACTIONS(6827), + [anon_sym_BANG_EQ] = ACTIONS(6827), + [anon_sym_AMP_AMP] = ACTIONS(6827), + [anon_sym_PIPE_PIPE] = ACTIONS(6827), + [anon_sym_AMP] = ACTIONS(6829), + [sym_op_bitwise_or] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6827), + [sym_op_left_shift] = ACTIONS(6827), + [sym_op_right_shift] = ACTIONS(6829), + [sym_op_unsigned_right_shift] = ACTIONS(6827), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_DASH] = ACTIONS(6829), + [sym_op_divide] = ACTIONS(6829), + [sym_op_modulo] = ACTIONS(6827), + [sym_op_coalescing] = ACTIONS(6827), + [anon_sym_BANG] = ACTIONS(6829), + [anon_sym_PLUS_PLUS] = ACTIONS(6827), + [anon_sym_DASH_DASH] = ACTIONS(6827), + [anon_sym_into] = ACTIONS(6827), + [anon_sym_on] = ACTIONS(6827), + [anon_sym_equals] = ACTIONS(6827), + [anon_sym_by] = ACTIONS(6827), + [anon_sym_as] = ACTIONS(6827), + [anon_sym_is] = ACTIONS(6827), + [anon_sym_DASH_GT] = ACTIONS(6827), + [anon_sym_with] = ACTIONS(6827), + [aux_sym_preproc_if_token3] = ACTIONS(6827), + [aux_sym_preproc_else_token1] = ACTIONS(6827), + [aux_sym_preproc_elif_token1] = ACTIONS(6827), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -575421,6 +569925,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4148] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4148), [sym_preproc_endregion] = STATE(4148), [sym_preproc_line] = STATE(4148), @@ -575430,62 +569949,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4148), [sym_preproc_define] = STATE(4148), [sym_preproc_undef] = STATE(4148), - [anon_sym_SEMI] = ACTIONS(6188), - [anon_sym_LBRACK] = ACTIONS(6188), - [anon_sym_COLON] = ACTIONS(6188), - [anon_sym_COMMA] = ACTIONS(6188), - [anon_sym_RBRACK] = ACTIONS(6188), - [anon_sym_LPAREN] = ACTIONS(6188), - [anon_sym_RPAREN] = ACTIONS(6188), - [anon_sym_RBRACE] = ACTIONS(6188), - [anon_sym_LT] = ACTIONS(6190), - [anon_sym_GT] = ACTIONS(6190), - [anon_sym_in] = ACTIONS(6188), - [anon_sym_where] = ACTIONS(6188), - [anon_sym_QMARK] = ACTIONS(6190), - [anon_sym_BANG] = ACTIONS(6190), - [anon_sym_PLUS_PLUS] = ACTIONS(6188), - [anon_sym_DASH_DASH] = ACTIONS(6188), - [anon_sym_PLUS] = ACTIONS(6190), - [anon_sym_DASH] = ACTIONS(6190), - [anon_sym_STAR] = ACTIONS(6188), - [anon_sym_SLASH] = ACTIONS(6190), - [anon_sym_PERCENT] = ACTIONS(6188), - [anon_sym_CARET] = ACTIONS(6188), - [anon_sym_PIPE] = ACTIONS(6190), - [anon_sym_AMP] = ACTIONS(6190), - [anon_sym_LT_LT] = ACTIONS(6188), - [anon_sym_GT_GT] = ACTIONS(6190), - [anon_sym_GT_GT_GT] = ACTIONS(6188), - [anon_sym_EQ_EQ] = ACTIONS(6188), - [anon_sym_BANG_EQ] = ACTIONS(6188), - [anon_sym_GT_EQ] = ACTIONS(6188), - [anon_sym_LT_EQ] = ACTIONS(6188), - [anon_sym_DOT] = ACTIONS(6190), - [anon_sym_EQ_GT] = ACTIONS(6188), - [anon_sym_switch] = ACTIONS(6188), - [anon_sym_DOT_DOT] = ACTIONS(6188), - [anon_sym_and] = ACTIONS(6188), - [anon_sym_or] = ACTIONS(6190), - [anon_sym_AMP_AMP] = ACTIONS(6188), - [anon_sym_PIPE_PIPE] = ACTIONS(6188), - [sym_op_coalescing] = ACTIONS(6188), - [anon_sym_from] = ACTIONS(6188), - [anon_sym_join] = ACTIONS(6188), - [anon_sym_on] = ACTIONS(6188), - [anon_sym_equals] = ACTIONS(6188), - [anon_sym_let] = ACTIONS(6188), - [anon_sym_orderby] = ACTIONS(6188), - [anon_sym_group] = ACTIONS(6188), - [anon_sym_by] = ACTIONS(6188), - [anon_sym_select] = ACTIONS(6188), - [anon_sym_as] = ACTIONS(6188), - [anon_sym_is] = ACTIONS(6188), - [anon_sym_DASH_GT] = ACTIONS(6188), - [anon_sym_with] = ACTIONS(6188), - [aux_sym_preproc_if_token3] = ACTIONS(6188), - [aux_sym_preproc_else_token1] = ACTIONS(6188), - [aux_sym_preproc_elif_token1] = ACTIONS(6188), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -575498,6 +569997,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4149] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4149), [sym_preproc_endregion] = STATE(4149), [sym_preproc_line] = STATE(4149), @@ -575507,62 +570021,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4149), [sym_preproc_define] = STATE(4149), [sym_preproc_undef] = STATE(4149), - [anon_sym_SEMI] = ACTIONS(6281), - [anon_sym_LBRACK] = ACTIONS(6281), - [anon_sym_COLON] = ACTIONS(6281), - [anon_sym_COMMA] = ACTIONS(6281), - [anon_sym_RBRACK] = ACTIONS(6281), - [anon_sym_LPAREN] = ACTIONS(6281), - [anon_sym_RPAREN] = ACTIONS(6281), - [anon_sym_RBRACE] = ACTIONS(6281), - [anon_sym_LT] = ACTIONS(6283), - [anon_sym_GT] = ACTIONS(6283), - [anon_sym_in] = ACTIONS(6281), - [anon_sym_where] = ACTIONS(6281), - [anon_sym_QMARK] = ACTIONS(6283), - [anon_sym_BANG] = ACTIONS(6283), - [anon_sym_PLUS_PLUS] = ACTIONS(6281), - [anon_sym_DASH_DASH] = ACTIONS(6281), - [anon_sym_PLUS] = ACTIONS(6283), - [anon_sym_DASH] = ACTIONS(6283), - [anon_sym_STAR] = ACTIONS(6281), - [anon_sym_SLASH] = ACTIONS(6283), - [anon_sym_PERCENT] = ACTIONS(6281), - [anon_sym_CARET] = ACTIONS(6281), - [anon_sym_PIPE] = ACTIONS(6283), - [anon_sym_AMP] = ACTIONS(6283), - [anon_sym_LT_LT] = ACTIONS(6281), - [anon_sym_GT_GT] = ACTIONS(6283), - [anon_sym_GT_GT_GT] = ACTIONS(6281), - [anon_sym_EQ_EQ] = ACTIONS(6281), - [anon_sym_BANG_EQ] = ACTIONS(6281), - [anon_sym_GT_EQ] = ACTIONS(6281), - [anon_sym_LT_EQ] = ACTIONS(6281), - [anon_sym_DOT] = ACTIONS(6283), - [anon_sym_EQ_GT] = ACTIONS(6281), - [anon_sym_switch] = ACTIONS(6281), - [anon_sym_DOT_DOT] = ACTIONS(6281), - [anon_sym_and] = ACTIONS(6281), - [anon_sym_or] = ACTIONS(6283), - [anon_sym_AMP_AMP] = ACTIONS(6281), - [anon_sym_PIPE_PIPE] = ACTIONS(6281), - [sym_op_coalescing] = ACTIONS(6281), - [anon_sym_from] = ACTIONS(6281), - [anon_sym_join] = ACTIONS(6281), - [anon_sym_on] = ACTIONS(6281), - [anon_sym_equals] = ACTIONS(6281), - [anon_sym_let] = ACTIONS(6281), - [anon_sym_orderby] = ACTIONS(6281), - [anon_sym_group] = ACTIONS(6281), - [anon_sym_by] = ACTIONS(6281), - [anon_sym_select] = ACTIONS(6281), - [anon_sym_as] = ACTIONS(6281), - [anon_sym_is] = ACTIONS(6281), - [anon_sym_DASH_GT] = ACTIONS(6281), - [anon_sym_with] = ACTIONS(6281), - [aux_sym_preproc_if_token3] = ACTIONS(6281), - [aux_sym_preproc_else_token1] = ACTIONS(6281), - [aux_sym_preproc_elif_token1] = ACTIONS(6281), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_in] = ACTIONS(5314), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -575584,62 +570078,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4150), [sym_preproc_define] = STATE(4150), [sym_preproc_undef] = STATE(4150), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LBRACK] = ACTIONS(4810), - [anon_sym_COLON] = ACTIONS(4810), - [anon_sym_COMMA] = ACTIONS(4810), - [anon_sym_RBRACK] = ACTIONS(4810), - [anon_sym_LPAREN] = ACTIONS(4810), - [anon_sym_RPAREN] = ACTIONS(4810), - [anon_sym_RBRACE] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4812), - [anon_sym_GT] = ACTIONS(4812), - [anon_sym_in] = ACTIONS(4810), - [anon_sym_where] = ACTIONS(4810), - [anon_sym_QMARK] = ACTIONS(4812), - [anon_sym_BANG] = ACTIONS(4812), - [anon_sym_PLUS_PLUS] = ACTIONS(4810), - [anon_sym_DASH_DASH] = ACTIONS(4810), - [anon_sym_PLUS] = ACTIONS(4812), - [anon_sym_DASH] = ACTIONS(4812), - [anon_sym_STAR] = ACTIONS(4810), - [anon_sym_SLASH] = ACTIONS(4812), - [anon_sym_PERCENT] = ACTIONS(4810), - [anon_sym_CARET] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4812), - [anon_sym_AMP] = ACTIONS(4812), - [anon_sym_LT_LT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4812), - [anon_sym_GT_GT_GT] = ACTIONS(4810), - [anon_sym_EQ_EQ] = ACTIONS(4810), - [anon_sym_BANG_EQ] = ACTIONS(4810), - [anon_sym_GT_EQ] = ACTIONS(4810), - [anon_sym_LT_EQ] = ACTIONS(4810), - [anon_sym_DOT] = ACTIONS(4812), - [anon_sym_EQ_GT] = ACTIONS(4810), - [anon_sym_switch] = ACTIONS(4810), - [anon_sym_DOT_DOT] = ACTIONS(4810), - [anon_sym_and] = ACTIONS(4810), - [anon_sym_or] = ACTIONS(4812), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym_op_coalescing] = ACTIONS(4810), - [anon_sym_from] = ACTIONS(4810), - [anon_sym_join] = ACTIONS(4810), - [anon_sym_on] = ACTIONS(4810), - [anon_sym_equals] = ACTIONS(4810), - [anon_sym_let] = ACTIONS(4810), - [anon_sym_orderby] = ACTIONS(4810), - [anon_sym_group] = ACTIONS(4810), - [anon_sym_by] = ACTIONS(4810), - [anon_sym_select] = ACTIONS(4810), - [anon_sym_as] = ACTIONS(4810), - [anon_sym_is] = ACTIONS(4810), - [anon_sym_DASH_GT] = ACTIONS(4810), - [anon_sym_with] = ACTIONS(4810), - [aux_sym_preproc_if_token3] = ACTIONS(4810), - [aux_sym_preproc_else_token1] = ACTIONS(4810), - [aux_sym_preproc_elif_token1] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(6835), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_COLON] = ACTIONS(6835), + [anon_sym_COMMA] = ACTIONS(6835), + [anon_sym_RBRACK] = ACTIONS(6835), + [anon_sym_LPAREN] = ACTIONS(6835), + [anon_sym_RPAREN] = ACTIONS(6835), + [anon_sym_RBRACE] = ACTIONS(6835), + [anon_sym_LT] = ACTIONS(6837), + [anon_sym_GT] = ACTIONS(6837), + [anon_sym_in] = ACTIONS(6837), + [anon_sym_QMARK] = ACTIONS(6837), + [anon_sym_DOT] = ACTIONS(6837), + [anon_sym_EQ_GT] = ACTIONS(6835), + [anon_sym_STAR] = ACTIONS(6835), + [anon_sym_switch] = ACTIONS(6835), + [anon_sym_when] = ACTIONS(6835), + [anon_sym_DOT_DOT] = ACTIONS(6835), + [anon_sym_LT_EQ] = ACTIONS(6835), + [anon_sym_GT_EQ] = ACTIONS(6835), + [anon_sym_and] = ACTIONS(6835), + [anon_sym_or] = ACTIONS(6835), + [anon_sym_EQ_EQ] = ACTIONS(6835), + [anon_sym_BANG_EQ] = ACTIONS(6835), + [anon_sym_AMP_AMP] = ACTIONS(6835), + [anon_sym_PIPE_PIPE] = ACTIONS(6835), + [anon_sym_AMP] = ACTIONS(6837), + [sym_op_bitwise_or] = ACTIONS(6837), + [anon_sym_CARET] = ACTIONS(6835), + [sym_op_left_shift] = ACTIONS(6835), + [sym_op_right_shift] = ACTIONS(6837), + [sym_op_unsigned_right_shift] = ACTIONS(6835), + [anon_sym_PLUS] = ACTIONS(6837), + [anon_sym_DASH] = ACTIONS(6837), + [sym_op_divide] = ACTIONS(6837), + [sym_op_modulo] = ACTIONS(6835), + [sym_op_coalescing] = ACTIONS(6835), + [anon_sym_BANG] = ACTIONS(6837), + [anon_sym_PLUS_PLUS] = ACTIONS(6835), + [anon_sym_DASH_DASH] = ACTIONS(6835), + [anon_sym_into] = ACTIONS(6835), + [anon_sym_on] = ACTIONS(6835), + [anon_sym_equals] = ACTIONS(6835), + [anon_sym_by] = ACTIONS(6835), + [anon_sym_as] = ACTIONS(6835), + [anon_sym_is] = ACTIONS(6835), + [anon_sym_DASH_GT] = ACTIONS(6835), + [anon_sym_with] = ACTIONS(6835), + [aux_sym_preproc_if_token3] = ACTIONS(6835), + [aux_sym_preproc_else_token1] = ACTIONS(6835), + [aux_sym_preproc_elif_token1] = ACTIONS(6835), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -575652,27 +570141,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4151] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), [sym_preproc_region] = STATE(4151), [sym_preproc_endregion] = STATE(4151), [sym_preproc_line] = STATE(4151), @@ -575682,41 +570150,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4151), [sym_preproc_define] = STATE(4151), [sym_preproc_undef] = STATE(4151), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(6839), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_COLON] = ACTIONS(6839), + [anon_sym_COMMA] = ACTIONS(6839), + [anon_sym_RBRACK] = ACTIONS(6839), + [anon_sym_LPAREN] = ACTIONS(6839), + [anon_sym_RPAREN] = ACTIONS(6839), + [anon_sym_RBRACE] = ACTIONS(6839), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_in] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(6841), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_EQ_GT] = ACTIONS(6839), + [anon_sym_STAR] = ACTIONS(6839), + [anon_sym_switch] = ACTIONS(6839), + [anon_sym_when] = ACTIONS(6839), + [anon_sym_DOT_DOT] = ACTIONS(6839), + [anon_sym_LT_EQ] = ACTIONS(6839), + [anon_sym_GT_EQ] = ACTIONS(6839), + [anon_sym_and] = ACTIONS(6839), + [anon_sym_or] = ACTIONS(6839), + [anon_sym_EQ_EQ] = ACTIONS(6839), + [anon_sym_BANG_EQ] = ACTIONS(6839), + [anon_sym_AMP_AMP] = ACTIONS(6839), + [anon_sym_PIPE_PIPE] = ACTIONS(6839), + [anon_sym_AMP] = ACTIONS(6841), + [sym_op_bitwise_or] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6839), + [sym_op_left_shift] = ACTIONS(6839), + [sym_op_right_shift] = ACTIONS(6841), + [sym_op_unsigned_right_shift] = ACTIONS(6839), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_DASH] = ACTIONS(6841), + [sym_op_divide] = ACTIONS(6841), + [sym_op_modulo] = ACTIONS(6839), + [sym_op_coalescing] = ACTIONS(6839), + [anon_sym_BANG] = ACTIONS(6841), + [anon_sym_PLUS_PLUS] = ACTIONS(6839), + [anon_sym_DASH_DASH] = ACTIONS(6839), + [anon_sym_into] = ACTIONS(6839), + [anon_sym_on] = ACTIONS(6839), + [anon_sym_equals] = ACTIONS(6839), + [anon_sym_by] = ACTIONS(6839), + [anon_sym_as] = ACTIONS(6839), + [anon_sym_is] = ACTIONS(6839), + [anon_sym_DASH_GT] = ACTIONS(6839), + [anon_sym_with] = ACTIONS(6839), + [aux_sym_preproc_if_token3] = ACTIONS(6839), + [aux_sym_preproc_else_token1] = ACTIONS(6839), + [aux_sym_preproc_elif_token1] = ACTIONS(6839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -575729,27 +570213,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4152] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4152), [sym_preproc_endregion] = STATE(4152), [sym_preproc_line] = STATE(4152), @@ -575759,41 +570237,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4152), [sym_preproc_define] = STATE(4152), [sym_preproc_undef] = STATE(4152), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -575804,29 +570282,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(5300), }, [4153] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4153), [sym_preproc_endregion] = STATE(4153), [sym_preproc_line] = STATE(4153), @@ -575836,41 +570294,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4153), [sym_preproc_define] = STATE(4153), [sym_preproc_undef] = STATE(4153), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6457), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym_LBRACK] = ACTIONS(6843), + [anon_sym_COLON] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RBRACK] = ACTIONS(6843), + [anon_sym_LPAREN] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_RBRACE] = ACTIONS(6843), + [anon_sym_LT] = ACTIONS(6845), + [anon_sym_GT] = ACTIONS(6845), + [anon_sym_in] = ACTIONS(6845), + [anon_sym_QMARK] = ACTIONS(6845), + [anon_sym_DOT] = ACTIONS(6845), + [anon_sym_EQ_GT] = ACTIONS(6843), + [anon_sym_STAR] = ACTIONS(6843), + [anon_sym_switch] = ACTIONS(6843), + [anon_sym_when] = ACTIONS(6843), + [anon_sym_DOT_DOT] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(6845), + [sym_op_bitwise_or] = ACTIONS(6845), + [anon_sym_CARET] = ACTIONS(6843), + [sym_op_left_shift] = ACTIONS(6843), + [sym_op_right_shift] = ACTIONS(6845), + [sym_op_unsigned_right_shift] = ACTIONS(6843), + [anon_sym_PLUS] = ACTIONS(6845), + [anon_sym_DASH] = ACTIONS(6845), + [sym_op_divide] = ACTIONS(6845), + [sym_op_modulo] = ACTIONS(6843), + [sym_op_coalescing] = ACTIONS(6843), + [anon_sym_BANG] = ACTIONS(6845), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_into] = ACTIONS(6843), + [anon_sym_on] = ACTIONS(6843), + [anon_sym_equals] = ACTIONS(6843), + [anon_sym_by] = ACTIONS(6843), + [anon_sym_as] = ACTIONS(6843), + [anon_sym_is] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [anon_sym_with] = ACTIONS(6843), + [aux_sym_preproc_if_token3] = ACTIONS(6843), + [aux_sym_preproc_else_token1] = ACTIONS(6843), + [aux_sym_preproc_elif_token1] = ACTIONS(6843), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -575883,27 +570357,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4154] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4154), [sym_preproc_endregion] = STATE(4154), [sym_preproc_line] = STATE(4154), @@ -575913,41 +570381,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4154), [sym_preproc_define] = STATE(4154), [sym_preproc_undef] = STATE(4154), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6459), - [anon_sym_is] = ACTIONS(6461), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6765), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(6775), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6777), + [anon_sym_is] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -575960,6 +570429,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4155] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4155), [sym_preproc_endregion] = STATE(4155), [sym_preproc_line] = STATE(4155), @@ -575969,62 +570453,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4155), [sym_preproc_define] = STATE(4155), [sym_preproc_undef] = STATE(4155), - [anon_sym_SEMI] = ACTIONS(6059), - [anon_sym_LBRACK] = ACTIONS(6059), - [anon_sym_COLON] = ACTIONS(6059), - [anon_sym_COMMA] = ACTIONS(6059), - [anon_sym_RBRACK] = ACTIONS(6059), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_RBRACE] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_in] = ACTIONS(6059), - [anon_sym_where] = ACTIONS(6059), - [anon_sym_QMARK] = ACTIONS(6061), - [anon_sym_BANG] = ACTIONS(6061), - [anon_sym_PLUS_PLUS] = ACTIONS(6059), - [anon_sym_DASH_DASH] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6061), - [anon_sym_DASH] = ACTIONS(6061), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6061), - [anon_sym_PERCENT] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - [anon_sym_LT_LT] = ACTIONS(6059), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_GT_GT_GT] = ACTIONS(6059), - [anon_sym_EQ_EQ] = ACTIONS(6059), - [anon_sym_BANG_EQ] = ACTIONS(6059), - [anon_sym_GT_EQ] = ACTIONS(6059), - [anon_sym_LT_EQ] = ACTIONS(6059), - [anon_sym_DOT] = ACTIONS(6061), - [anon_sym_EQ_GT] = ACTIONS(6059), - [anon_sym_switch] = ACTIONS(6059), - [anon_sym_DOT_DOT] = ACTIONS(6059), - [anon_sym_and] = ACTIONS(6059), - [anon_sym_or] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [sym_op_coalescing] = ACTIONS(6059), - [anon_sym_from] = ACTIONS(6059), - [anon_sym_join] = ACTIONS(6059), - [anon_sym_on] = ACTIONS(6059), - [anon_sym_equals] = ACTIONS(6059), - [anon_sym_let] = ACTIONS(6059), - [anon_sym_orderby] = ACTIONS(6059), - [anon_sym_group] = ACTIONS(6059), - [anon_sym_by] = ACTIONS(6059), - [anon_sym_select] = ACTIONS(6059), - [anon_sym_as] = ACTIONS(6059), - [anon_sym_is] = ACTIONS(6059), - [anon_sym_DASH_GT] = ACTIONS(6059), - [anon_sym_with] = ACTIONS(6059), - [aux_sym_preproc_if_token3] = ACTIONS(6059), - [aux_sym_preproc_else_token1] = ACTIONS(6059), - [aux_sym_preproc_elif_token1] = ACTIONS(6059), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), + [aux_sym_preproc_if_token3] = ACTIONS(1365), + [aux_sym_preproc_else_token1] = ACTIONS(1365), + [aux_sym_preproc_elif_token1] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -576037,27 +570501,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4156] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4156), [sym_preproc_endregion] = STATE(4156), [sym_preproc_line] = STATE(4156), @@ -576067,41 +570525,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4156), [sym_preproc_define] = STATE(4156), [sym_preproc_undef] = STATE(4156), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6459), - [anon_sym_is] = ACTIONS(6461), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6847), + [anon_sym_RBRACK] = ACTIONS(6847), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6847), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -576114,27 +570573,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4157] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), [sym_preproc_region] = STATE(4157), [sym_preproc_endregion] = STATE(4157), [sym_preproc_line] = STATE(4157), @@ -576144,41 +570582,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4157), [sym_preproc_define] = STATE(4157), [sym_preproc_undef] = STATE(4157), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5895), + [anon_sym_COLON] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_RBRACK] = ACTIONS(5895), + [anon_sym_LPAREN] = ACTIONS(5895), + [anon_sym_RPAREN] = ACTIONS(5895), + [anon_sym_RBRACE] = ACTIONS(5895), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_in] = ACTIONS(5897), + [anon_sym_QMARK] = ACTIONS(5897), + [anon_sym_DOT] = ACTIONS(5897), + [anon_sym_EQ_GT] = ACTIONS(5895), + [anon_sym_STAR] = ACTIONS(5895), + [anon_sym_switch] = ACTIONS(5895), + [anon_sym_when] = ACTIONS(5895), + [anon_sym_DOT_DOT] = ACTIONS(5895), + [anon_sym_LT_EQ] = ACTIONS(5895), + [anon_sym_GT_EQ] = ACTIONS(5895), + [anon_sym_and] = ACTIONS(5895), + [anon_sym_or] = ACTIONS(5895), + [anon_sym_EQ_EQ] = ACTIONS(5895), + [anon_sym_BANG_EQ] = ACTIONS(5895), + [anon_sym_AMP_AMP] = ACTIONS(5895), + [anon_sym_PIPE_PIPE] = ACTIONS(5895), + [anon_sym_AMP] = ACTIONS(5897), + [sym_op_bitwise_or] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5895), + [sym_op_left_shift] = ACTIONS(5895), + [sym_op_right_shift] = ACTIONS(5897), + [sym_op_unsigned_right_shift] = ACTIONS(5895), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [sym_op_divide] = ACTIONS(5897), + [sym_op_modulo] = ACTIONS(5895), + [sym_op_coalescing] = ACTIONS(5895), + [anon_sym_BANG] = ACTIONS(5897), + [anon_sym_PLUS_PLUS] = ACTIONS(5895), + [anon_sym_DASH_DASH] = ACTIONS(5895), + [anon_sym_into] = ACTIONS(5895), + [anon_sym_on] = ACTIONS(5895), + [anon_sym_equals] = ACTIONS(5895), + [anon_sym_by] = ACTIONS(5895), + [anon_sym_as] = ACTIONS(5895), + [anon_sym_is] = ACTIONS(5895), + [anon_sym_DASH_GT] = ACTIONS(5895), + [anon_sym_with] = ACTIONS(5895), + [aux_sym_preproc_if_token3] = ACTIONS(5895), + [aux_sym_preproc_else_token1] = ACTIONS(5895), + [aux_sym_preproc_elif_token1] = ACTIONS(5895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -576191,6 +570645,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4158] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4158), [sym_preproc_endregion] = STATE(4158), [sym_preproc_line] = STATE(4158), @@ -576200,62 +570669,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4158), [sym_preproc_define] = STATE(4158), [sym_preproc_undef] = STATE(4158), - [anon_sym_SEMI] = ACTIONS(6227), - [anon_sym_LBRACK] = ACTIONS(6227), - [anon_sym_COLON] = ACTIONS(6227), - [anon_sym_COMMA] = ACTIONS(6227), - [anon_sym_RBRACK] = ACTIONS(6227), - [anon_sym_LPAREN] = ACTIONS(6227), - [anon_sym_RPAREN] = ACTIONS(6227), - [anon_sym_RBRACE] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(6229), - [anon_sym_GT] = ACTIONS(6229), - [anon_sym_in] = ACTIONS(6227), - [anon_sym_where] = ACTIONS(6227), - [anon_sym_QMARK] = ACTIONS(6229), - [anon_sym_BANG] = ACTIONS(6229), - [anon_sym_PLUS_PLUS] = ACTIONS(6227), - [anon_sym_DASH_DASH] = ACTIONS(6227), - [anon_sym_PLUS] = ACTIONS(6229), - [anon_sym_DASH] = ACTIONS(6229), - [anon_sym_STAR] = ACTIONS(6227), - [anon_sym_SLASH] = ACTIONS(6229), - [anon_sym_PERCENT] = ACTIONS(6227), - [anon_sym_CARET] = ACTIONS(6227), - [anon_sym_PIPE] = ACTIONS(6229), - [anon_sym_AMP] = ACTIONS(6229), - [anon_sym_LT_LT] = ACTIONS(6227), - [anon_sym_GT_GT] = ACTIONS(6229), - [anon_sym_GT_GT_GT] = ACTIONS(6227), - [anon_sym_EQ_EQ] = ACTIONS(6227), - [anon_sym_BANG_EQ] = ACTIONS(6227), - [anon_sym_GT_EQ] = ACTIONS(6227), - [anon_sym_LT_EQ] = ACTIONS(6227), - [anon_sym_DOT] = ACTIONS(6229), - [anon_sym_EQ_GT] = ACTIONS(6227), - [anon_sym_switch] = ACTIONS(6227), - [anon_sym_DOT_DOT] = ACTIONS(6227), - [anon_sym_and] = ACTIONS(6227), - [anon_sym_or] = ACTIONS(6229), - [anon_sym_AMP_AMP] = ACTIONS(6227), - [anon_sym_PIPE_PIPE] = ACTIONS(6227), - [sym_op_coalescing] = ACTIONS(6227), - [anon_sym_from] = ACTIONS(6227), - [anon_sym_join] = ACTIONS(6227), - [anon_sym_on] = ACTIONS(6227), - [anon_sym_equals] = ACTIONS(6227), - [anon_sym_let] = ACTIONS(6227), - [anon_sym_orderby] = ACTIONS(6227), - [anon_sym_group] = ACTIONS(6227), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_select] = ACTIONS(6227), - [anon_sym_as] = ACTIONS(6227), - [anon_sym_is] = ACTIONS(6227), - [anon_sym_DASH_GT] = ACTIONS(6227), - [anon_sym_with] = ACTIONS(6227), - [aux_sym_preproc_if_token3] = ACTIONS(6227), - [aux_sym_preproc_else_token1] = ACTIONS(6227), - [aux_sym_preproc_elif_token1] = ACTIONS(6227), + [anon_sym_SEMI] = ACTIONS(6849), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6717), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(6729), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -576268,27 +570717,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4159] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4159), [sym_preproc_endregion] = STATE(4159), [sym_preproc_line] = STATE(4159), @@ -576298,41 +570741,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4159), [sym_preproc_define] = STATE(4159), [sym_preproc_undef] = STATE(4159), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6443), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6445), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -576345,27 +570789,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4160] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4160), [sym_preproc_endregion] = STATE(4160), [sym_preproc_line] = STATE(4160), @@ -576375,41 +570813,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4160), [sym_preproc_define] = STATE(4160), [sym_preproc_undef] = STATE(4160), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6459), - [anon_sym_is] = ACTIONS(6461), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -576422,27 +570861,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4161] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4161), [sym_preproc_endregion] = STATE(4161), [sym_preproc_line] = STATE(4161), @@ -576452,41 +570885,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4161), [sym_preproc_define] = STATE(4161), [sym_preproc_undef] = STATE(4161), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6421), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_equals] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(6423), - [anon_sym_is] = ACTIONS(6425), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6777), + [anon_sym_is] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -576499,27 +570933,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4162] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4162), [sym_preproc_endregion] = STATE(4162), [sym_preproc_line] = STATE(4162), @@ -576529,41 +570957,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4162), [sym_preproc_define] = STATE(4162), [sym_preproc_undef] = STATE(4162), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6421), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_equals] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(6423), - [anon_sym_is] = ACTIONS(6425), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym_initializer_expression_repeat1] = STATE(7079), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6529), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(6531), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -576576,27 +571005,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4163] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym__name] = STATE(5847), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(5576), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(4163), [sym_preproc_endregion] = STATE(4163), [sym_preproc_line] = STATE(4163), @@ -576606,41 +571023,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4163), [sym_preproc_define] = STATE(4163), [sym_preproc_undef] = STATE(4163), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [sym__identifier_token] = ACTIONS(3876), + [anon_sym_alias] = ACTIONS(3880), + [anon_sym_global] = ACTIONS(3880), + [anon_sym_EQ] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(2919), + [anon_sym_delegate] = ACTIONS(2919), + [anon_sym_readonly] = ACTIONS(2919), + [anon_sym_file] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_in] = ACTIONS(2919), + [anon_sym_out] = ACTIONS(2919), + [anon_sym_where] = ACTIONS(3880), + [anon_sym_QMARK] = ACTIONS(3694), + [anon_sym_notnull] = ACTIONS(3880), + [anon_sym_unmanaged] = ACTIONS(3880), + [anon_sym_this] = ACTIONS(2919), + [anon_sym_DOT] = ACTIONS(3694), + [anon_sym_scoped] = ACTIONS(3880), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3880), + [anon_sym_STAR] = ACTIONS(3694), + [sym_predefined_type] = ACTIONS(2919), + [anon_sym_yield] = ACTIONS(3880), + [anon_sym_when] = ACTIONS(3880), + [anon_sym_from] = ACTIONS(3880), + [anon_sym_into] = ACTIONS(3880), + [anon_sym_join] = ACTIONS(3880), + [anon_sym_on] = ACTIONS(3880), + [anon_sym_equals] = ACTIONS(3880), + [anon_sym_let] = ACTIONS(3880), + [anon_sym_orderby] = ACTIONS(3880), + [anon_sym_ascending] = ACTIONS(3880), + [anon_sym_descending] = ACTIONS(3880), + [anon_sym_group] = ACTIONS(3880), + [anon_sym_by] = ACTIONS(3880), + [anon_sym_select] = ACTIONS(3880), + [sym_grit_metavariable] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -576653,27 +571077,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4164] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4164), [sym_preproc_endregion] = STATE(4164), [sym_preproc_line] = STATE(4164), @@ -576683,41 +571101,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4164), [sym_preproc_define] = STATE(4164), [sym_preproc_undef] = STATE(4164), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6421), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6423), - [anon_sym_is] = ACTIONS(6425), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym_initializer_expression_repeat1] = STATE(7343), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6851), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(6853), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -576730,6 +571149,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4165] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4165), [sym_preproc_endregion] = STATE(4165), [sym_preproc_line] = STATE(4165), @@ -576739,62 +571173,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4165), [sym_preproc_define] = STATE(4165), [sym_preproc_undef] = STATE(4165), - [anon_sym_SEMI] = ACTIONS(6184), - [anon_sym_LBRACK] = ACTIONS(6184), - [anon_sym_COLON] = ACTIONS(6184), - [anon_sym_COMMA] = ACTIONS(6184), - [anon_sym_RBRACK] = ACTIONS(6184), - [anon_sym_LPAREN] = ACTIONS(6184), - [anon_sym_RPAREN] = ACTIONS(6184), - [anon_sym_RBRACE] = ACTIONS(6184), - [anon_sym_LT] = ACTIONS(6186), - [anon_sym_GT] = ACTIONS(6186), - [anon_sym_in] = ACTIONS(6184), - [anon_sym_where] = ACTIONS(6184), - [anon_sym_QMARK] = ACTIONS(6186), - [anon_sym_BANG] = ACTIONS(6186), - [anon_sym_PLUS_PLUS] = ACTIONS(6184), - [anon_sym_DASH_DASH] = ACTIONS(6184), - [anon_sym_PLUS] = ACTIONS(6186), - [anon_sym_DASH] = ACTIONS(6186), - [anon_sym_STAR] = ACTIONS(6184), - [anon_sym_SLASH] = ACTIONS(6186), - [anon_sym_PERCENT] = ACTIONS(6184), - [anon_sym_CARET] = ACTIONS(6184), - [anon_sym_PIPE] = ACTIONS(6186), - [anon_sym_AMP] = ACTIONS(6186), - [anon_sym_LT_LT] = ACTIONS(6184), - [anon_sym_GT_GT] = ACTIONS(6186), - [anon_sym_GT_GT_GT] = ACTIONS(6184), - [anon_sym_EQ_EQ] = ACTIONS(6184), - [anon_sym_BANG_EQ] = ACTIONS(6184), - [anon_sym_GT_EQ] = ACTIONS(6184), - [anon_sym_LT_EQ] = ACTIONS(6184), - [anon_sym_DOT] = ACTIONS(6186), - [anon_sym_EQ_GT] = ACTIONS(6184), - [anon_sym_switch] = ACTIONS(6184), - [anon_sym_DOT_DOT] = ACTIONS(6184), - [anon_sym_and] = ACTIONS(6184), - [anon_sym_or] = ACTIONS(6186), - [anon_sym_AMP_AMP] = ACTIONS(6184), - [anon_sym_PIPE_PIPE] = ACTIONS(6184), - [sym_op_coalescing] = ACTIONS(6184), - [anon_sym_from] = ACTIONS(6184), - [anon_sym_join] = ACTIONS(6184), - [anon_sym_on] = ACTIONS(6184), - [anon_sym_equals] = ACTIONS(6184), - [anon_sym_let] = ACTIONS(6184), - [anon_sym_orderby] = ACTIONS(6184), - [anon_sym_group] = ACTIONS(6184), - [anon_sym_by] = ACTIONS(6184), - [anon_sym_select] = ACTIONS(6184), - [anon_sym_as] = ACTIONS(6184), - [anon_sym_is] = ACTIONS(6184), - [anon_sym_DASH_GT] = ACTIONS(6184), - [anon_sym_with] = ACTIONS(6184), - [aux_sym_preproc_if_token3] = ACTIONS(6184), - [aux_sym_preproc_else_token1] = ACTIONS(6184), - [aux_sym_preproc_elif_token1] = ACTIONS(6184), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(5332), + [aux_sym_preproc_else_token1] = ACTIONS(5332), + [aux_sym_preproc_elif_token1] = ACTIONS(5332), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -576807,27 +571221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4166] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), [sym_preproc_region] = STATE(4166), [sym_preproc_endregion] = STATE(4166), [sym_preproc_line] = STATE(4166), @@ -576837,41 +571230,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4166), [sym_preproc_define] = STATE(4166), [sym_preproc_undef] = STATE(4166), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4431), + [anon_sym_LBRACK] = ACTIONS(4431), + [anon_sym_COLON] = ACTIONS(4431), + [anon_sym_COMMA] = ACTIONS(4431), + [anon_sym_RBRACK] = ACTIONS(4431), + [anon_sym_LPAREN] = ACTIONS(4431), + [anon_sym_RPAREN] = ACTIONS(4431), + [anon_sym_LBRACE] = ACTIONS(4431), + [anon_sym_RBRACE] = ACTIONS(4431), + [anon_sym_LT] = ACTIONS(4429), + [anon_sym_GT] = ACTIONS(4429), + [anon_sym_in] = ACTIONS(4431), + [anon_sym_QMARK] = ACTIONS(4429), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_EQ_GT] = ACTIONS(4431), + [anon_sym_STAR] = ACTIONS(4431), + [anon_sym_switch] = ACTIONS(4431), + [anon_sym_when] = ACTIONS(4431), + [anon_sym_DOT_DOT] = ACTIONS(4431), + [anon_sym_LT_EQ] = ACTIONS(4431), + [anon_sym_GT_EQ] = ACTIONS(4431), + [anon_sym_and] = ACTIONS(4431), + [anon_sym_or] = ACTIONS(4431), + [anon_sym_EQ_EQ] = ACTIONS(4431), + [anon_sym_BANG_EQ] = ACTIONS(4431), + [anon_sym_AMP_AMP] = ACTIONS(4431), + [anon_sym_PIPE_PIPE] = ACTIONS(4431), + [anon_sym_AMP] = ACTIONS(4429), + [sym_op_bitwise_or] = ACTIONS(4429), + [anon_sym_CARET] = ACTIONS(4431), + [sym_op_left_shift] = ACTIONS(4431), + [sym_op_right_shift] = ACTIONS(4429), + [sym_op_unsigned_right_shift] = ACTIONS(4431), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4429), + [sym_op_divide] = ACTIONS(4429), + [sym_op_modulo] = ACTIONS(4431), + [sym_op_coalescing] = ACTIONS(4431), + [anon_sym_BANG] = ACTIONS(4429), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_on] = ACTIONS(4431), + [anon_sym_equals] = ACTIONS(4431), + [anon_sym_by] = ACTIONS(4431), + [anon_sym_as] = ACTIONS(4431), + [anon_sym_is] = ACTIONS(4431), + [anon_sym_DASH_GT] = ACTIONS(4431), + [anon_sym_with] = 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), @@ -576884,27 +571293,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4167] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6421), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4167), [sym_preproc_endregion] = STATE(4167), [sym_preproc_line] = STATE(4167), @@ -576914,41 +571320,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4167), [sym_preproc_define] = STATE(4167), [sym_preproc_undef] = STATE(4167), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6413), - [anon_sym_is] = ACTIONS(6415), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(6065), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5216), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(1311), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_out] = ACTIONS(1311), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_this] = ACTIONS(1311), + [anon_sym_scoped] = ACTIONS(5226), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -576961,27 +571365,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4168] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), [sym_preproc_region] = STATE(4168), [sym_preproc_endregion] = STATE(4168), [sym_preproc_line] = STATE(4168), @@ -576991,41 +571374,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4168), [sym_preproc_define] = STATE(4168), [sym_preproc_undef] = STATE(4168), - [anon_sym_SEMI] = ACTIONS(6463), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6463), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6049), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6855), + [anon_sym_LBRACK] = ACTIONS(6855), + [anon_sym_COLON] = ACTIONS(6855), + [anon_sym_COMMA] = ACTIONS(6855), + [anon_sym_RBRACK] = ACTIONS(6855), + [anon_sym_LPAREN] = ACTIONS(6855), + [anon_sym_RPAREN] = ACTIONS(6855), + [anon_sym_RBRACE] = ACTIONS(6855), + [anon_sym_LT] = ACTIONS(6857), + [anon_sym_GT] = ACTIONS(6857), + [anon_sym_in] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(6857), + [anon_sym_DOT] = ACTIONS(6857), + [anon_sym_EQ_GT] = ACTIONS(6855), + [anon_sym_STAR] = ACTIONS(6855), + [anon_sym_switch] = ACTIONS(6855), + [anon_sym_when] = ACTIONS(6855), + [anon_sym_DOT_DOT] = ACTIONS(6855), + [anon_sym_LT_EQ] = ACTIONS(6855), + [anon_sym_GT_EQ] = ACTIONS(6855), + [anon_sym_and] = ACTIONS(6855), + [anon_sym_or] = ACTIONS(6855), + [anon_sym_EQ_EQ] = ACTIONS(6855), + [anon_sym_BANG_EQ] = ACTIONS(6855), + [anon_sym_AMP_AMP] = ACTIONS(6855), + [anon_sym_PIPE_PIPE] = ACTIONS(6855), + [anon_sym_AMP] = ACTIONS(6857), + [sym_op_bitwise_or] = ACTIONS(6857), + [anon_sym_CARET] = ACTIONS(6855), + [sym_op_left_shift] = ACTIONS(6855), + [sym_op_right_shift] = ACTIONS(6857), + [sym_op_unsigned_right_shift] = ACTIONS(6855), + [anon_sym_PLUS] = ACTIONS(6857), + [anon_sym_DASH] = ACTIONS(6857), + [sym_op_divide] = ACTIONS(6857), + [sym_op_modulo] = ACTIONS(6855), + [sym_op_coalescing] = ACTIONS(6855), + [anon_sym_BANG] = ACTIONS(6857), + [anon_sym_PLUS_PLUS] = ACTIONS(6855), + [anon_sym_DASH_DASH] = ACTIONS(6855), + [anon_sym_into] = ACTIONS(6855), + [anon_sym_on] = ACTIONS(6855), + [anon_sym_equals] = ACTIONS(6855), + [anon_sym_by] = ACTIONS(6855), + [anon_sym_as] = ACTIONS(6855), + [anon_sym_is] = ACTIONS(6855), + [anon_sym_DASH_GT] = ACTIONS(6855), + [anon_sym_with] = ACTIONS(6855), + [aux_sym_preproc_if_token3] = ACTIONS(6855), + [aux_sym_preproc_else_token1] = ACTIONS(6855), + [aux_sym_preproc_elif_token1] = ACTIONS(6855), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -577038,27 +571437,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4169] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4169), [sym_preproc_endregion] = STATE(4169), [sym_preproc_line] = STATE(4169), @@ -577068,41 +571461,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4169), [sym_preproc_define] = STATE(4169), [sym_preproc_undef] = STATE(4169), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_equals] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -577115,27 +571509,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4170] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4170), [sym_preproc_endregion] = STATE(4170), [sym_preproc_line] = STATE(4170), @@ -577145,41 +571533,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4170), [sym_preproc_define] = STATE(4170), [sym_preproc_undef] = STATE(4170), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6421), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_equals] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(6423), - [anon_sym_is] = ACTIONS(6425), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym_array_rank_specifier_repeat1] = STATE(7356), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(6859), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -577192,27 +571581,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4171] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym_parameter_list] = STATE(7966), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6226), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym__lambda_parameters] = STATE(8081), + [sym_identifier] = STATE(6061), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4171), [sym_preproc_endregion] = STATE(4171), [sym_preproc_line] = STATE(4171), @@ -577222,41 +571610,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4171), [sym_preproc_define] = STATE(4171), [sym_preproc_undef] = STATE(4171), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6445), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym__lambda_expression_init_repeat1] = STATE(6103), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(6861), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -577269,27 +571653,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4172] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4172), [sym_preproc_endregion] = STATE(4172), [sym_preproc_line] = STATE(4172), @@ -577299,41 +571677,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4172), [sym_preproc_define] = STATE(4172), [sym_preproc_undef] = STATE(4172), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6459), - [anon_sym_is] = ACTIONS(6461), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym__for_statement_conditions_repeat1] = STATE(7304), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6739), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6863), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -577346,27 +571725,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4173] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4173), [sym_preproc_endregion] = STATE(4173), [sym_preproc_line] = STATE(4173), @@ -577376,41 +571749,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4173), [sym_preproc_define] = STATE(4173), [sym_preproc_undef] = STATE(4173), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6445), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6374), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6378), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(6388), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -577421,8 +571794,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5296), }, [4174] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4174), [sym_preproc_endregion] = STATE(4174), [sym_preproc_line] = STATE(4174), @@ -577432,62 +571821,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4174), [sym_preproc_define] = STATE(4174), [sym_preproc_undef] = STATE(4174), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_event] = ACTIONS(3738), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_record] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_TILDE] = ACTIONS(6465), - [anon_sym_implicit] = ACTIONS(3738), - [anon_sym_explicit] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6374), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6378), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(6388), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -577498,29 +571866,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5364), }, [4175] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4175), [sym_preproc_endregion] = STATE(4175), [sym_preproc_line] = STATE(4175), @@ -577530,41 +571893,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4175), [sym_preproc_define] = STATE(4175), [sym_preproc_undef] = STATE(4175), - [anon_sym_SEMI] = ACTIONS(6467), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6467), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6049), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5314), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_and] = ACTIONS(5314), + [anon_sym_or] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -577577,27 +571941,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4176] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), [sym_preproc_region] = STATE(4176), [sym_preproc_endregion] = STATE(4176), [sym_preproc_line] = STATE(4176), @@ -577607,41 +571950,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4176), [sym_preproc_define] = STATE(4176), [sym_preproc_undef] = STATE(4176), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6413), - [anon_sym_is] = ACTIONS(6415), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5919), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_COLON] = ACTIONS(5919), + [anon_sym_COMMA] = ACTIONS(5919), + [anon_sym_RBRACK] = ACTIONS(5919), + [anon_sym_LPAREN] = ACTIONS(5919), + [anon_sym_RPAREN] = ACTIONS(5919), + [anon_sym_RBRACE] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5921), + [anon_sym_GT] = ACTIONS(5921), + [anon_sym_in] = ACTIONS(5921), + [anon_sym_QMARK] = ACTIONS(5921), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_EQ_GT] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_switch] = ACTIONS(5919), + [anon_sym_when] = ACTIONS(5919), + [anon_sym_DOT_DOT] = ACTIONS(5919), + [anon_sym_LT_EQ] = ACTIONS(5919), + [anon_sym_GT_EQ] = ACTIONS(5919), + [anon_sym_and] = ACTIONS(5919), + [anon_sym_or] = ACTIONS(5919), + [anon_sym_EQ_EQ] = ACTIONS(5919), + [anon_sym_BANG_EQ] = ACTIONS(5919), + [anon_sym_AMP_AMP] = ACTIONS(5919), + [anon_sym_PIPE_PIPE] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5921), + [sym_op_bitwise_or] = ACTIONS(5921), + [anon_sym_CARET] = ACTIONS(5919), + [sym_op_left_shift] = ACTIONS(5919), + [sym_op_right_shift] = ACTIONS(5921), + [sym_op_unsigned_right_shift] = ACTIONS(5919), + [anon_sym_PLUS] = ACTIONS(5921), + [anon_sym_DASH] = ACTIONS(5921), + [sym_op_divide] = ACTIONS(5921), + [sym_op_modulo] = ACTIONS(5919), + [sym_op_coalescing] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5921), + [anon_sym_PLUS_PLUS] = ACTIONS(5919), + [anon_sym_DASH_DASH] = ACTIONS(5919), + [anon_sym_into] = ACTIONS(5919), + [anon_sym_on] = ACTIONS(5919), + [anon_sym_equals] = ACTIONS(5919), + [anon_sym_by] = ACTIONS(5919), + [anon_sym_as] = ACTIONS(5919), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(5919), + [anon_sym_with] = ACTIONS(5919), + [aux_sym_preproc_if_token3] = ACTIONS(5919), + [aux_sym_preproc_else_token1] = ACTIONS(5919), + [aux_sym_preproc_elif_token1] = ACTIONS(5919), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -577654,27 +572013,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4177] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4177), [sym_preproc_endregion] = STATE(4177), [sym_preproc_line] = STATE(4177), @@ -577684,41 +572037,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4177), [sym_preproc_define] = STATE(4177), [sym_preproc_undef] = STATE(4177), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), + [aux_sym_preproc_if_token3] = ACTIONS(5314), + [aux_sym_preproc_else_token1] = ACTIONS(5314), + [aux_sym_preproc_elif_token1] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -577731,27 +572085,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4178] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), [sym_preproc_region] = STATE(4178), [sym_preproc_endregion] = STATE(4178), [sym_preproc_line] = STATE(4178), @@ -577761,41 +572094,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4178), [sym_preproc_define] = STATE(4178), [sym_preproc_undef] = STATE(4178), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6459), - [anon_sym_is] = ACTIONS(6461), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_EQ_GT] = ACTIONS(4361), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_switch] = ACTIONS(4361), + [anon_sym_when] = ACTIONS(4361), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_and] = ACTIONS(4361), + [anon_sym_or] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4359), + [sym_op_bitwise_or] = ACTIONS(4359), + [anon_sym_CARET] = ACTIONS(4361), + [sym_op_left_shift] = ACTIONS(4361), + [sym_op_right_shift] = ACTIONS(4359), + [sym_op_unsigned_right_shift] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [sym_op_divide] = ACTIONS(4359), + [sym_op_modulo] = ACTIONS(4361), + [sym_op_coalescing] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_on] = ACTIONS(4361), + [anon_sym_equals] = ACTIONS(4361), + [anon_sym_by] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4361), + [anon_sym_DASH_GT] = ACTIONS(4361), + [anon_sym_with] = ACTIONS(4361), + [aux_sym_preproc_if_token3] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -577808,27 +572157,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4179] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), + [sym_type_parameter_constraint] = STATE(6703), + [sym_constructor_constraint] = STATE(6867), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6777), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4179), [sym_preproc_endregion] = STATE(4179), [sym_preproc_line] = STATE(4179), @@ -577838,41 +572186,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4179), [sym_preproc_define] = STATE(4179), [sym_preproc_undef] = STATE(4179), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6413), - [anon_sym_is] = ACTIONS(6415), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(6805), + [anon_sym_ref] = ACTIONS(6807), + [anon_sym_struct] = ACTIONS(6809), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(6811), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(6813), + [anon_sym_unmanaged] = ACTIONS(6813), + [anon_sym_scoped] = ACTIONS(6815), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -577885,27 +572229,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4180] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4180), [sym_preproc_endregion] = STATE(4180), [sym_preproc_line] = STATE(4180), @@ -577915,41 +572253,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4180), [sym_preproc_define] = STATE(4180), [sym_preproc_undef] = STATE(4180), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6413), - [anon_sym_is] = ACTIONS(6415), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6865), + [anon_sym_RBRACK] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6865), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -577962,27 +572301,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4181] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4181), [sym_preproc_endregion] = STATE(4181), [sym_preproc_line] = STATE(4181), @@ -577992,41 +572325,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4181), [sym_preproc_define] = STATE(4181), [sym_preproc_undef] = STATE(4181), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6413), - [anon_sym_is] = ACTIONS(6415), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(6867), + [aux_sym_preproc_else_token1] = ACTIONS(6867), + [aux_sym_preproc_elif_token1] = ACTIONS(6867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -578039,27 +572373,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4182] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), [sym_preproc_region] = STATE(4182), [sym_preproc_endregion] = STATE(4182), [sym_preproc_line] = STATE(4182), @@ -578069,41 +572382,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4182), [sym_preproc_define] = STATE(4182), [sym_preproc_undef] = STATE(4182), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6459), - [anon_sym_is] = ACTIONS(6461), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_COLON] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_RPAREN] = ACTIONS(3972), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_in] = ACTIONS(3972), + [anon_sym_QMARK] = ACTIONS(3970), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_EQ_GT] = ACTIONS(3972), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_switch] = ACTIONS(3972), + [anon_sym_when] = ACTIONS(3972), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_and] = ACTIONS(3972), + [anon_sym_or] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [sym_op_bitwise_or] = ACTIONS(3970), + [anon_sym_CARET] = ACTIONS(3972), + [sym_op_left_shift] = ACTIONS(3972), + [sym_op_right_shift] = ACTIONS(3970), + [sym_op_unsigned_right_shift] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [sym_op_divide] = ACTIONS(3970), + [sym_op_modulo] = ACTIONS(3972), + [sym_op_coalescing] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_on] = ACTIONS(3972), + [anon_sym_equals] = ACTIONS(3972), + [anon_sym_by] = ACTIONS(3972), + [anon_sym_as] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3972), + [anon_sym_DASH_GT] = ACTIONS(3972), + [anon_sym_with] = ACTIONS(3972), + [aux_sym_preproc_if_token3] = ACTIONS(3972), + [aux_sym_preproc_else_token1] = ACTIONS(3972), + [aux_sym_preproc_elif_token1] = ACTIONS(3972), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -578116,27 +572445,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4183] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), [sym_preproc_region] = STATE(4183), [sym_preproc_endregion] = STATE(4183), [sym_preproc_line] = STATE(4183), @@ -578146,41 +572454,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4183), [sym_preproc_define] = STATE(4183), [sym_preproc_undef] = STATE(4183), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6423), - [anon_sym_is] = ACTIONS(6425), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_in] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_EQ_GT] = ACTIONS(3953), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_switch] = ACTIONS(3953), + [anon_sym_when] = ACTIONS(3953), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3953), + [anon_sym_or] = ACTIONS(3953), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_AMP] = ACTIONS(3951), + [sym_op_bitwise_or] = ACTIONS(3951), + [anon_sym_CARET] = ACTIONS(3953), + [sym_op_left_shift] = ACTIONS(3953), + [sym_op_right_shift] = ACTIONS(3951), + [sym_op_unsigned_right_shift] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [sym_op_divide] = ACTIONS(3951), + [sym_op_modulo] = ACTIONS(3953), + [sym_op_coalescing] = ACTIONS(3953), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_on] = ACTIONS(3953), + [anon_sym_equals] = ACTIONS(3953), + [anon_sym_by] = ACTIONS(3953), + [anon_sym_as] = ACTIONS(3953), + [anon_sym_is] = ACTIONS(3953), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3953), + [aux_sym_preproc_if_token3] = ACTIONS(3953), + [aux_sym_preproc_else_token1] = ACTIONS(3953), + [aux_sym_preproc_elif_token1] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -578202,62 +572526,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4184), [sym_preproc_define] = STATE(4184), [sym_preproc_undef] = STATE(4184), - [anon_sym_SEMI] = ACTIONS(6357), - [anon_sym_LBRACK] = ACTIONS(6357), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_COMMA] = ACTIONS(6357), - [anon_sym_RBRACK] = ACTIONS(6357), - [anon_sym_LPAREN] = ACTIONS(6357), - [anon_sym_RPAREN] = ACTIONS(6357), - [anon_sym_RBRACE] = ACTIONS(6357), - [anon_sym_LT] = ACTIONS(6359), - [anon_sym_GT] = ACTIONS(6359), - [anon_sym_in] = ACTIONS(6357), - [anon_sym_where] = ACTIONS(6357), - [anon_sym_QMARK] = ACTIONS(6359), - [anon_sym_BANG] = ACTIONS(6359), - [anon_sym_PLUS_PLUS] = ACTIONS(6357), - [anon_sym_DASH_DASH] = ACTIONS(6357), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6357), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_PERCENT] = ACTIONS(6357), - [anon_sym_CARET] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6359), - [anon_sym_AMP] = ACTIONS(6359), - [anon_sym_LT_LT] = ACTIONS(6357), - [anon_sym_GT_GT] = ACTIONS(6359), - [anon_sym_GT_GT_GT] = ACTIONS(6357), - [anon_sym_EQ_EQ] = ACTIONS(6357), - [anon_sym_BANG_EQ] = ACTIONS(6357), - [anon_sym_GT_EQ] = ACTIONS(6357), - [anon_sym_LT_EQ] = ACTIONS(6357), - [anon_sym_DOT] = ACTIONS(6359), - [anon_sym_EQ_GT] = ACTIONS(6357), - [anon_sym_switch] = ACTIONS(6357), - [anon_sym_DOT_DOT] = ACTIONS(6357), - [anon_sym_and] = ACTIONS(6357), - [anon_sym_or] = ACTIONS(6359), - [anon_sym_AMP_AMP] = ACTIONS(6357), - [anon_sym_PIPE_PIPE] = ACTIONS(6357), - [sym_op_coalescing] = ACTIONS(6357), - [anon_sym_from] = ACTIONS(6357), - [anon_sym_join] = ACTIONS(6357), - [anon_sym_on] = ACTIONS(6357), - [anon_sym_equals] = ACTIONS(6357), - [anon_sym_let] = ACTIONS(6357), - [anon_sym_orderby] = ACTIONS(6357), - [anon_sym_group] = ACTIONS(6357), - [anon_sym_by] = ACTIONS(6357), - [anon_sym_select] = ACTIONS(6357), - [anon_sym_as] = ACTIONS(6357), - [anon_sym_is] = ACTIONS(6357), - [anon_sym_DASH_GT] = ACTIONS(6357), - [anon_sym_with] = ACTIONS(6357), - [aux_sym_preproc_if_token3] = ACTIONS(6357), - [aux_sym_preproc_else_token1] = ACTIONS(6357), - [aux_sym_preproc_elif_token1] = ACTIONS(6357), + [anon_sym_SEMI] = ACTIONS(5979), + [anon_sym_LBRACK] = ACTIONS(5979), + [anon_sym_COLON] = ACTIONS(5979), + [anon_sym_COMMA] = ACTIONS(5979), + [anon_sym_RBRACK] = ACTIONS(5979), + [anon_sym_LPAREN] = ACTIONS(5979), + [anon_sym_RPAREN] = ACTIONS(5979), + [anon_sym_RBRACE] = ACTIONS(5979), + [anon_sym_LT] = ACTIONS(5981), + [anon_sym_GT] = ACTIONS(5981), + [anon_sym_in] = ACTIONS(5981), + [anon_sym_QMARK] = ACTIONS(5981), + [anon_sym_DOT] = ACTIONS(5981), + [anon_sym_EQ_GT] = ACTIONS(5979), + [anon_sym_STAR] = ACTIONS(5979), + [anon_sym_switch] = ACTIONS(5979), + [anon_sym_when] = ACTIONS(5979), + [anon_sym_DOT_DOT] = ACTIONS(5979), + [anon_sym_LT_EQ] = ACTIONS(5979), + [anon_sym_GT_EQ] = ACTIONS(5979), + [anon_sym_and] = ACTIONS(5979), + [anon_sym_or] = ACTIONS(5979), + [anon_sym_EQ_EQ] = ACTIONS(5979), + [anon_sym_BANG_EQ] = ACTIONS(5979), + [anon_sym_AMP_AMP] = ACTIONS(5979), + [anon_sym_PIPE_PIPE] = ACTIONS(5979), + [anon_sym_AMP] = ACTIONS(5981), + [sym_op_bitwise_or] = ACTIONS(5981), + [anon_sym_CARET] = ACTIONS(5979), + [sym_op_left_shift] = ACTIONS(5979), + [sym_op_right_shift] = ACTIONS(5981), + [sym_op_unsigned_right_shift] = ACTIONS(5979), + [anon_sym_PLUS] = ACTIONS(5981), + [anon_sym_DASH] = ACTIONS(5981), + [sym_op_divide] = ACTIONS(5981), + [sym_op_modulo] = ACTIONS(5979), + [sym_op_coalescing] = ACTIONS(5979), + [anon_sym_BANG] = ACTIONS(5981), + [anon_sym_PLUS_PLUS] = ACTIONS(5979), + [anon_sym_DASH_DASH] = ACTIONS(5979), + [anon_sym_into] = ACTIONS(5979), + [anon_sym_on] = ACTIONS(5979), + [anon_sym_equals] = ACTIONS(5979), + [anon_sym_by] = ACTIONS(5979), + [anon_sym_as] = ACTIONS(5979), + [anon_sym_is] = ACTIONS(5979), + [anon_sym_DASH_GT] = ACTIONS(5979), + [anon_sym_with] = ACTIONS(5979), + [aux_sym_preproc_if_token3] = ACTIONS(5979), + [aux_sym_preproc_else_token1] = ACTIONS(5979), + [aux_sym_preproc_elif_token1] = ACTIONS(5979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -578279,62 +572598,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4185), [sym_preproc_define] = STATE(4185), [sym_preproc_undef] = STATE(4185), - [anon_sym_SEMI] = ACTIONS(5999), - [anon_sym_LBRACK] = ACTIONS(5999), - [anon_sym_COLON] = ACTIONS(5999), - [anon_sym_COMMA] = ACTIONS(5999), - [anon_sym_RBRACK] = ACTIONS(5999), - [anon_sym_LPAREN] = ACTIONS(5999), - [anon_sym_RPAREN] = ACTIONS(5999), - [anon_sym_RBRACE] = ACTIONS(5999), - [anon_sym_LT] = ACTIONS(6001), - [anon_sym_GT] = ACTIONS(6001), - [anon_sym_in] = ACTIONS(5999), - [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_EQ_GT] = ACTIONS(5999), - [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), - [sym_op_coalescing] = ACTIONS(5999), - [anon_sym_from] = ACTIONS(5999), - [anon_sym_join] = ACTIONS(5999), - [anon_sym_on] = ACTIONS(5999), - [anon_sym_equals] = ACTIONS(5999), - [anon_sym_let] = ACTIONS(5999), - [anon_sym_orderby] = ACTIONS(5999), - [anon_sym_group] = ACTIONS(5999), - [anon_sym_by] = ACTIONS(5999), - [anon_sym_select] = ACTIONS(5999), - [anon_sym_as] = ACTIONS(5999), - [anon_sym_is] = ACTIONS(5999), - [anon_sym_DASH_GT] = ACTIONS(5999), - [anon_sym_with] = ACTIONS(5999), - [aux_sym_preproc_if_token3] = ACTIONS(5999), - [aux_sym_preproc_else_token1] = ACTIONS(5999), - [aux_sym_preproc_elif_token1] = ACTIONS(5999), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_COLON] = ACTIONS(2283), + [anon_sym_COMMA] = ACTIONS(2283), + [anon_sym_RBRACK] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(6869), + [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_GT] = ACTIONS(2281), + [anon_sym_in] = ACTIONS(2281), + [anon_sym_QMARK] = ACTIONS(2281), + [anon_sym_DOT] = ACTIONS(2281), + [anon_sym_EQ_GT] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2283), + [anon_sym_switch] = ACTIONS(2283), + [anon_sym_when] = ACTIONS(2283), + [anon_sym_DOT_DOT] = ACTIONS(2283), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_and] = ACTIONS(2283), + [anon_sym_or] = ACTIONS(2283), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_AMP_AMP] = ACTIONS(2283), + [anon_sym_PIPE_PIPE] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2281), + [sym_op_bitwise_or] = ACTIONS(2281), + [anon_sym_CARET] = ACTIONS(2283), + [sym_op_left_shift] = ACTIONS(2283), + [sym_op_right_shift] = ACTIONS(2281), + [sym_op_unsigned_right_shift] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [sym_op_divide] = ACTIONS(2281), + [sym_op_modulo] = ACTIONS(2283), + [sym_op_coalescing] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2283), + [anon_sym_into] = ACTIONS(2283), + [anon_sym_on] = ACTIONS(2283), + [anon_sym_equals] = ACTIONS(2283), + [anon_sym_by] = ACTIONS(2283), + [anon_sym_as] = ACTIONS(2283), + [anon_sym_is] = ACTIONS(2283), + [anon_sym_DASH_GT] = ACTIONS(2283), + [anon_sym_with] = ACTIONS(2283), + [aux_sym_preproc_if_token3] = ACTIONS(2283), + [aux_sym_preproc_else_token1] = ACTIONS(2283), + [aux_sym_preproc_elif_token1] = ACTIONS(2283), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -578347,27 +572661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4186] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), [sym_preproc_region] = STATE(4186), [sym_preproc_endregion] = STATE(4186), [sym_preproc_line] = STATE(4186), @@ -578377,41 +572670,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4186), [sym_preproc_define] = STATE(4186), [sym_preproc_undef] = STATE(4186), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6413), - [anon_sym_is] = ACTIONS(6415), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_COLON] = ACTIONS(4341), + [anon_sym_COMMA] = ACTIONS(4341), + [anon_sym_RBRACK] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_RPAREN] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_in] = ACTIONS(4341), + [anon_sym_QMARK] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_EQ_GT] = ACTIONS(4341), + [anon_sym_STAR] = ACTIONS(4341), + [anon_sym_switch] = ACTIONS(4341), + [anon_sym_when] = ACTIONS(4341), + [anon_sym_DOT_DOT] = ACTIONS(4341), + [anon_sym_LT_EQ] = ACTIONS(4341), + [anon_sym_GT_EQ] = ACTIONS(4341), + [anon_sym_and] = ACTIONS(4341), + [anon_sym_or] = ACTIONS(4341), + [anon_sym_EQ_EQ] = ACTIONS(4341), + [anon_sym_BANG_EQ] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_PIPE_PIPE] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4339), + [sym_op_bitwise_or] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4341), + [sym_op_left_shift] = ACTIONS(4341), + [sym_op_right_shift] = ACTIONS(4339), + [sym_op_unsigned_right_shift] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [sym_op_divide] = ACTIONS(4339), + [sym_op_modulo] = ACTIONS(4341), + [sym_op_coalescing] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4339), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_on] = ACTIONS(4341), + [anon_sym_equals] = ACTIONS(4341), + [anon_sym_by] = ACTIONS(4341), + [anon_sym_as] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(4341), + [anon_sym_DASH_GT] = ACTIONS(4341), + [anon_sym_with] = ACTIONS(4341), + [aux_sym_preproc_if_token3] = ACTIONS(4341), + [aux_sym_preproc_else_token1] = ACTIONS(4341), + [aux_sym_preproc_elif_token1] = ACTIONS(4341), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -578424,27 +572733,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4187] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4187), [sym_preproc_endregion] = STATE(4187), [sym_preproc_line] = STATE(4187), @@ -578454,41 +572742,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4187), [sym_preproc_define] = STATE(4187), [sym_preproc_undef] = STATE(4187), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6275), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(6275), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5987), + [anon_sym_LBRACK] = ACTIONS(5987), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_COMMA] = ACTIONS(5987), + [anon_sym_RBRACK] = ACTIONS(5987), + [anon_sym_LPAREN] = ACTIONS(5987), + [anon_sym_RPAREN] = ACTIONS(5987), + [anon_sym_RBRACE] = ACTIONS(5987), + [anon_sym_LT] = ACTIONS(5989), + [anon_sym_GT] = ACTIONS(5989), + [anon_sym_in] = ACTIONS(5989), + [anon_sym_QMARK] = ACTIONS(5989), + [anon_sym_DOT] = ACTIONS(5989), + [anon_sym_EQ_GT] = ACTIONS(5987), + [anon_sym_STAR] = ACTIONS(5987), + [anon_sym_switch] = ACTIONS(5987), + [anon_sym_when] = ACTIONS(5987), + [anon_sym_DOT_DOT] = ACTIONS(5987), + [anon_sym_LT_EQ] = ACTIONS(5987), + [anon_sym_GT_EQ] = ACTIONS(5987), + [anon_sym_and] = ACTIONS(5987), + [anon_sym_or] = ACTIONS(5987), + [anon_sym_EQ_EQ] = ACTIONS(5987), + [anon_sym_BANG_EQ] = ACTIONS(5987), + [anon_sym_AMP_AMP] = ACTIONS(5987), + [anon_sym_PIPE_PIPE] = ACTIONS(5987), + [anon_sym_AMP] = ACTIONS(5989), + [sym_op_bitwise_or] = ACTIONS(5989), + [anon_sym_CARET] = ACTIONS(5987), + [sym_op_left_shift] = ACTIONS(5987), + [sym_op_right_shift] = ACTIONS(5989), + [sym_op_unsigned_right_shift] = ACTIONS(5987), + [anon_sym_PLUS] = ACTIONS(5989), + [anon_sym_DASH] = ACTIONS(5989), + [sym_op_divide] = ACTIONS(5989), + [sym_op_modulo] = ACTIONS(5987), + [sym_op_coalescing] = ACTIONS(5987), + [anon_sym_BANG] = ACTIONS(5989), + [anon_sym_PLUS_PLUS] = ACTIONS(5987), + [anon_sym_DASH_DASH] = ACTIONS(5987), + [anon_sym_into] = ACTIONS(5987), + [anon_sym_on] = ACTIONS(5987), + [anon_sym_equals] = ACTIONS(5987), + [anon_sym_by] = ACTIONS(5987), + [anon_sym_as] = ACTIONS(5987), + [anon_sym_is] = ACTIONS(5987), + [anon_sym_DASH_GT] = ACTIONS(5987), + [anon_sym_with] = ACTIONS(5987), + [aux_sym_preproc_if_token3] = ACTIONS(5987), + [aux_sym_preproc_else_token1] = ACTIONS(5987), + [aux_sym_preproc_elif_token1] = ACTIONS(5987), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -578510,62 +572814,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4188), [sym_preproc_define] = STATE(4188), [sym_preproc_undef] = STATE(4188), - [anon_sym_SEMI] = ACTIONS(6166), - [anon_sym_LBRACK] = ACTIONS(6166), - [anon_sym_COLON] = ACTIONS(6166), - [anon_sym_COMMA] = ACTIONS(6166), - [anon_sym_RBRACK] = ACTIONS(6166), - [anon_sym_LPAREN] = ACTIONS(6166), - [anon_sym_RPAREN] = ACTIONS(6166), - [anon_sym_RBRACE] = ACTIONS(6166), - [anon_sym_LT] = ACTIONS(6168), - [anon_sym_GT] = ACTIONS(6168), - [anon_sym_in] = ACTIONS(6166), - [anon_sym_where] = ACTIONS(6166), - [anon_sym_QMARK] = ACTIONS(6168), - [anon_sym_BANG] = ACTIONS(6168), - [anon_sym_PLUS_PLUS] = ACTIONS(6166), - [anon_sym_DASH_DASH] = ACTIONS(6166), - [anon_sym_PLUS] = ACTIONS(6168), - [anon_sym_DASH] = ACTIONS(6168), - [anon_sym_STAR] = ACTIONS(6166), - [anon_sym_SLASH] = ACTIONS(6168), - [anon_sym_PERCENT] = ACTIONS(6166), - [anon_sym_CARET] = ACTIONS(6166), - [anon_sym_PIPE] = ACTIONS(6168), - [anon_sym_AMP] = ACTIONS(6168), - [anon_sym_LT_LT] = ACTIONS(6166), - [anon_sym_GT_GT] = ACTIONS(6168), - [anon_sym_GT_GT_GT] = ACTIONS(6166), - [anon_sym_EQ_EQ] = ACTIONS(6166), - [anon_sym_BANG_EQ] = ACTIONS(6166), - [anon_sym_GT_EQ] = ACTIONS(6166), - [anon_sym_LT_EQ] = ACTIONS(6166), - [anon_sym_DOT] = ACTIONS(6168), - [anon_sym_EQ_GT] = ACTIONS(6166), - [anon_sym_switch] = ACTIONS(6166), - [anon_sym_DOT_DOT] = ACTIONS(6166), - [anon_sym_and] = ACTIONS(6166), - [anon_sym_or] = ACTIONS(6168), - [anon_sym_AMP_AMP] = ACTIONS(6166), - [anon_sym_PIPE_PIPE] = ACTIONS(6166), - [sym_op_coalescing] = ACTIONS(6166), - [anon_sym_from] = ACTIONS(6166), - [anon_sym_join] = ACTIONS(6166), - [anon_sym_on] = ACTIONS(6166), - [anon_sym_equals] = ACTIONS(6166), - [anon_sym_let] = ACTIONS(6166), - [anon_sym_orderby] = ACTIONS(6166), - [anon_sym_group] = ACTIONS(6166), - [anon_sym_by] = ACTIONS(6166), - [anon_sym_select] = ACTIONS(6166), - [anon_sym_as] = ACTIONS(6166), - [anon_sym_is] = ACTIONS(6166), - [anon_sym_DASH_GT] = ACTIONS(6166), - [anon_sym_with] = ACTIONS(6166), - [aux_sym_preproc_if_token3] = ACTIONS(6166), - [aux_sym_preproc_else_token1] = ACTIONS(6166), - [aux_sym_preproc_elif_token1] = ACTIONS(6166), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_COLON] = ACTIONS(3982), + [anon_sym_COMMA] = ACTIONS(3982), + [anon_sym_RBRACK] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym_RPAREN] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3982), + [anon_sym_RBRACE] = ACTIONS(3982), + [anon_sym_LT] = ACTIONS(3980), + [anon_sym_GT] = ACTIONS(3980), + [anon_sym_in] = ACTIONS(3982), + [anon_sym_QMARK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_EQ_GT] = ACTIONS(3982), + [anon_sym_STAR] = ACTIONS(3982), + [anon_sym_switch] = ACTIONS(3982), + [anon_sym_when] = ACTIONS(3982), + [anon_sym_DOT_DOT] = ACTIONS(3982), + [anon_sym_LT_EQ] = ACTIONS(3982), + [anon_sym_GT_EQ] = ACTIONS(3982), + [anon_sym_and] = ACTIONS(3982), + [anon_sym_or] = ACTIONS(3982), + [anon_sym_EQ_EQ] = ACTIONS(3982), + [anon_sym_BANG_EQ] = ACTIONS(3982), + [anon_sym_AMP_AMP] = ACTIONS(3982), + [anon_sym_PIPE_PIPE] = ACTIONS(3982), + [anon_sym_AMP] = ACTIONS(3980), + [sym_op_bitwise_or] = ACTIONS(3980), + [anon_sym_CARET] = ACTIONS(3982), + [sym_op_left_shift] = ACTIONS(3982), + [sym_op_right_shift] = ACTIONS(3980), + [sym_op_unsigned_right_shift] = ACTIONS(3982), + [anon_sym_PLUS] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3980), + [sym_op_divide] = ACTIONS(3980), + [sym_op_modulo] = ACTIONS(3982), + [sym_op_coalescing] = ACTIONS(3982), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3982), + [anon_sym_on] = ACTIONS(3982), + [anon_sym_equals] = ACTIONS(3982), + [anon_sym_by] = ACTIONS(3982), + [anon_sym_as] = ACTIONS(3982), + [anon_sym_is] = ACTIONS(3982), + [anon_sym_DASH_GT] = ACTIONS(3982), + [anon_sym_with] = ACTIONS(3982), + [aux_sym_preproc_if_token3] = ACTIONS(3982), + [aux_sym_preproc_else_token1] = ACTIONS(3982), + [aux_sym_preproc_elif_token1] = ACTIONS(3982), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -578578,27 +572877,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4189] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4189), [sym_preproc_endregion] = STATE(4189), [sym_preproc_line] = STATE(4189), @@ -578608,41 +572901,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4189), [sym_preproc_define] = STATE(4189), [sym_preproc_undef] = STATE(4189), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6445), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym_initializer_expression_repeat1] = STATE(7124), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6871), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(6873), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -578655,27 +572949,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4190] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4190), [sym_preproc_endregion] = STATE(4190), [sym_preproc_line] = STATE(4190), @@ -578685,41 +572958,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4190), [sym_preproc_define] = STATE(4190), [sym_preproc_undef] = STATE(4190), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6469), - [anon_sym_RBRACK] = ACTIONS(6469), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6875), + [anon_sym_LBRACK] = ACTIONS(6875), + [anon_sym_COLON] = ACTIONS(6875), + [anon_sym_COMMA] = ACTIONS(6875), + [anon_sym_RBRACK] = ACTIONS(6875), + [anon_sym_LPAREN] = ACTIONS(6875), + [anon_sym_RPAREN] = ACTIONS(6875), + [anon_sym_RBRACE] = ACTIONS(6875), + [anon_sym_LT] = ACTIONS(6877), + [anon_sym_GT] = ACTIONS(6877), + [anon_sym_in] = ACTIONS(6877), + [anon_sym_QMARK] = ACTIONS(6877), + [anon_sym_DOT] = ACTIONS(6877), + [anon_sym_EQ_GT] = ACTIONS(6875), + [anon_sym_STAR] = ACTIONS(6875), + [anon_sym_switch] = ACTIONS(6875), + [anon_sym_when] = ACTIONS(6875), + [anon_sym_DOT_DOT] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6875), + [anon_sym_GT_EQ] = ACTIONS(6875), + [anon_sym_and] = ACTIONS(6875), + [anon_sym_or] = ACTIONS(6875), + [anon_sym_EQ_EQ] = ACTIONS(6875), + [anon_sym_BANG_EQ] = ACTIONS(6875), + [anon_sym_AMP_AMP] = ACTIONS(6875), + [anon_sym_PIPE_PIPE] = ACTIONS(6875), + [anon_sym_AMP] = ACTIONS(6877), + [sym_op_bitwise_or] = ACTIONS(6877), + [anon_sym_CARET] = ACTIONS(6875), + [sym_op_left_shift] = ACTIONS(6875), + [sym_op_right_shift] = ACTIONS(6877), + [sym_op_unsigned_right_shift] = ACTIONS(6875), + [anon_sym_PLUS] = ACTIONS(6877), + [anon_sym_DASH] = ACTIONS(6877), + [sym_op_divide] = ACTIONS(6877), + [sym_op_modulo] = ACTIONS(6875), + [sym_op_coalescing] = ACTIONS(6875), + [anon_sym_BANG] = ACTIONS(6877), + [anon_sym_PLUS_PLUS] = ACTIONS(6875), + [anon_sym_DASH_DASH] = ACTIONS(6875), + [anon_sym_into] = ACTIONS(6875), + [anon_sym_on] = ACTIONS(6875), + [anon_sym_equals] = ACTIONS(6875), + [anon_sym_by] = ACTIONS(6875), + [anon_sym_as] = ACTIONS(6875), + [anon_sym_is] = ACTIONS(6875), + [anon_sym_DASH_GT] = ACTIONS(6875), + [anon_sym_with] = ACTIONS(6875), + [aux_sym_preproc_if_token3] = ACTIONS(6875), + [aux_sym_preproc_else_token1] = ACTIONS(6875), + [aux_sym_preproc_elif_token1] = ACTIONS(6875), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -578732,27 +573021,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4191] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4191), [sym_preproc_endregion] = STATE(4191), [sym_preproc_line] = STATE(4191), @@ -578762,41 +573045,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4191), [sym_preproc_define] = STATE(4191), [sym_preproc_undef] = STATE(4191), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6445), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_COMMA] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6374), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6378), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(6388), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -578807,29 +573090,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5332), }, [4192] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4192), [sym_preproc_endregion] = STATE(4192), [sym_preproc_line] = STATE(4192), @@ -578839,41 +573117,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4192), [sym_preproc_define] = STATE(4192), [sym_preproc_undef] = STATE(4192), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6445), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(6879), + [aux_sym_preproc_else_token1] = ACTIONS(6879), + [aux_sym_preproc_elif_token1] = ACTIONS(6879), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -578886,27 +573165,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4193] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), [sym_preproc_region] = STATE(4193), [sym_preproc_endregion] = STATE(4193), [sym_preproc_line] = STATE(4193), @@ -578916,41 +573174,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4193), [sym_preproc_define] = STATE(4193), [sym_preproc_undef] = STATE(4193), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4774), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_COLON] = ACTIONS(4353), + [anon_sym_COMMA] = ACTIONS(4353), + [anon_sym_RBRACK] = ACTIONS(4353), + [anon_sym_LPAREN] = ACTIONS(4353), + [anon_sym_RPAREN] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4353), + [anon_sym_RBRACE] = ACTIONS(4353), + [anon_sym_LT] = ACTIONS(4351), + [anon_sym_GT] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_QMARK] = ACTIONS(4351), + [anon_sym_DOT] = ACTIONS(4351), + [anon_sym_EQ_GT] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_switch] = ACTIONS(4353), + [anon_sym_when] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4353), + [anon_sym_LT_EQ] = ACTIONS(4353), + [anon_sym_GT_EQ] = ACTIONS(4353), + [anon_sym_and] = ACTIONS(4353), + [anon_sym_or] = ACTIONS(4353), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4353), + [anon_sym_PIPE_PIPE] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4351), + [sym_op_bitwise_or] = ACTIONS(4351), + [anon_sym_CARET] = ACTIONS(4353), + [sym_op_left_shift] = ACTIONS(4353), + [sym_op_right_shift] = ACTIONS(4351), + [sym_op_unsigned_right_shift] = ACTIONS(4353), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_DASH] = ACTIONS(4351), + [sym_op_divide] = ACTIONS(4351), + [sym_op_modulo] = ACTIONS(4353), + [sym_op_coalescing] = ACTIONS(4353), + [anon_sym_BANG] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4353), + [anon_sym_DASH_DASH] = ACTIONS(4353), + [anon_sym_on] = ACTIONS(4353), + [anon_sym_equals] = ACTIONS(4353), + [anon_sym_by] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_DASH_GT] = ACTIONS(4353), + [anon_sym_with] = ACTIONS(4353), + [aux_sym_preproc_if_token3] = ACTIONS(4353), + [aux_sym_preproc_else_token1] = ACTIONS(4353), + [aux_sym_preproc_elif_token1] = ACTIONS(4353), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -578963,27 +573237,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4194] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4194), [sym_preproc_endregion] = STATE(4194), [sym_preproc_line] = STATE(4194), @@ -578993,41 +573261,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4194), [sym_preproc_define] = STATE(4194), [sym_preproc_undef] = STATE(4194), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -579040,27 +573309,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4195] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), [sym_preproc_region] = STATE(4195), [sym_preproc_endregion] = STATE(4195), [sym_preproc_line] = STATE(4195), @@ -579070,41 +573318,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4195), [sym_preproc_define] = STATE(4195), [sym_preproc_undef] = STATE(4195), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LBRACK] = ACTIONS(5943), + [anon_sym_COLON] = ACTIONS(5943), + [anon_sym_COMMA] = ACTIONS(5943), + [anon_sym_RBRACK] = ACTIONS(5943), + [anon_sym_LPAREN] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_RBRACE] = ACTIONS(5943), + [anon_sym_LT] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5945), + [anon_sym_in] = ACTIONS(5945), + [anon_sym_QMARK] = ACTIONS(5945), + [anon_sym_DOT] = ACTIONS(5945), + [anon_sym_EQ_GT] = ACTIONS(5943), + [anon_sym_STAR] = ACTIONS(5943), + [anon_sym_switch] = ACTIONS(5943), + [anon_sym_when] = ACTIONS(5943), + [anon_sym_DOT_DOT] = ACTIONS(5943), + [anon_sym_LT_EQ] = ACTIONS(5943), + [anon_sym_GT_EQ] = ACTIONS(5943), + [anon_sym_and] = ACTIONS(5943), + [anon_sym_or] = ACTIONS(5943), + [anon_sym_EQ_EQ] = ACTIONS(5943), + [anon_sym_BANG_EQ] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5945), + [sym_op_bitwise_or] = ACTIONS(5945), + [anon_sym_CARET] = ACTIONS(5943), + [sym_op_left_shift] = ACTIONS(5943), + [sym_op_right_shift] = ACTIONS(5945), + [sym_op_unsigned_right_shift] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5945), + [anon_sym_DASH] = ACTIONS(5945), + [sym_op_divide] = ACTIONS(5945), + [sym_op_modulo] = ACTIONS(5943), + [sym_op_coalescing] = ACTIONS(5943), + [anon_sym_BANG] = ACTIONS(5945), + [anon_sym_PLUS_PLUS] = ACTIONS(5943), + [anon_sym_DASH_DASH] = ACTIONS(5943), + [anon_sym_into] = ACTIONS(5943), + [anon_sym_on] = ACTIONS(5943), + [anon_sym_equals] = ACTIONS(5943), + [anon_sym_by] = ACTIONS(5943), + [anon_sym_as] = ACTIONS(5943), + [anon_sym_is] = ACTIONS(5943), + [anon_sym_DASH_GT] = ACTIONS(5943), + [anon_sym_with] = ACTIONS(5943), + [aux_sym_preproc_if_token3] = ACTIONS(5943), + [aux_sym_preproc_else_token1] = ACTIONS(5943), + [aux_sym_preproc_elif_token1] = ACTIONS(5943), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -579117,27 +573381,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4196] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4196), [sym_preproc_endregion] = STATE(4196), [sym_preproc_line] = STATE(4196), @@ -579147,41 +573390,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4196), [sym_preproc_define] = STATE(4196), [sym_preproc_undef] = STATE(4196), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6471), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6471), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6881), + [anon_sym_LBRACK] = ACTIONS(6881), + [anon_sym_COLON] = ACTIONS(6881), + [anon_sym_COMMA] = ACTIONS(6881), + [anon_sym_RBRACK] = ACTIONS(6881), + [anon_sym_LPAREN] = ACTIONS(6881), + [anon_sym_RPAREN] = ACTIONS(6881), + [anon_sym_RBRACE] = ACTIONS(6881), + [anon_sym_LT] = ACTIONS(6883), + [anon_sym_GT] = ACTIONS(6883), + [anon_sym_in] = ACTIONS(6883), + [anon_sym_QMARK] = ACTIONS(6883), + [anon_sym_DOT] = ACTIONS(6883), + [anon_sym_EQ_GT] = ACTIONS(6881), + [anon_sym_STAR] = ACTIONS(6881), + [anon_sym_switch] = ACTIONS(6881), + [anon_sym_when] = ACTIONS(6881), + [anon_sym_DOT_DOT] = ACTIONS(6881), + [anon_sym_LT_EQ] = ACTIONS(6881), + [anon_sym_GT_EQ] = ACTIONS(6881), + [anon_sym_and] = ACTIONS(6881), + [anon_sym_or] = ACTIONS(6881), + [anon_sym_EQ_EQ] = ACTIONS(6881), + [anon_sym_BANG_EQ] = ACTIONS(6881), + [anon_sym_AMP_AMP] = ACTIONS(6881), + [anon_sym_PIPE_PIPE] = ACTIONS(6881), + [anon_sym_AMP] = ACTIONS(6883), + [sym_op_bitwise_or] = ACTIONS(6883), + [anon_sym_CARET] = ACTIONS(6881), + [sym_op_left_shift] = ACTIONS(6881), + [sym_op_right_shift] = ACTIONS(6883), + [sym_op_unsigned_right_shift] = ACTIONS(6881), + [anon_sym_PLUS] = ACTIONS(6883), + [anon_sym_DASH] = ACTIONS(6883), + [sym_op_divide] = ACTIONS(6883), + [sym_op_modulo] = ACTIONS(6881), + [sym_op_coalescing] = ACTIONS(6881), + [anon_sym_BANG] = ACTIONS(6883), + [anon_sym_PLUS_PLUS] = ACTIONS(6881), + [anon_sym_DASH_DASH] = ACTIONS(6881), + [anon_sym_into] = ACTIONS(6881), + [anon_sym_on] = ACTIONS(6881), + [anon_sym_equals] = ACTIONS(6881), + [anon_sym_by] = ACTIONS(6881), + [anon_sym_as] = ACTIONS(6881), + [anon_sym_is] = ACTIONS(6881), + [anon_sym_DASH_GT] = ACTIONS(6881), + [anon_sym_with] = ACTIONS(6881), + [aux_sym_preproc_if_token3] = ACTIONS(6881), + [aux_sym_preproc_else_token1] = ACTIONS(6881), + [aux_sym_preproc_elif_token1] = ACTIONS(6881), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -579194,27 +573453,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4197] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), [sym_preproc_region] = STATE(4197), [sym_preproc_endregion] = STATE(4197), [sym_preproc_line] = STATE(4197), @@ -579224,41 +573462,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4197), [sym_preproc_define] = STATE(4197), [sym_preproc_undef] = STATE(4197), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6411), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6413), - [anon_sym_is] = ACTIONS(6415), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LBRACK] = ACTIONS(5939), + [anon_sym_COLON] = ACTIONS(5939), + [anon_sym_COMMA] = ACTIONS(5939), + [anon_sym_RBRACK] = ACTIONS(5939), + [anon_sym_LPAREN] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_RBRACE] = ACTIONS(5939), + [anon_sym_LT] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_in] = ACTIONS(5941), + [anon_sym_QMARK] = ACTIONS(5941), + [anon_sym_DOT] = ACTIONS(5941), + [anon_sym_EQ_GT] = ACTIONS(5939), + [anon_sym_STAR] = ACTIONS(5939), + [anon_sym_switch] = ACTIONS(5939), + [anon_sym_when] = ACTIONS(5939), + [anon_sym_DOT_DOT] = ACTIONS(5939), + [anon_sym_LT_EQ] = ACTIONS(5939), + [anon_sym_GT_EQ] = ACTIONS(5939), + [anon_sym_and] = ACTIONS(5939), + [anon_sym_or] = ACTIONS(5939), + [anon_sym_EQ_EQ] = ACTIONS(5939), + [anon_sym_BANG_EQ] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5941), + [sym_op_bitwise_or] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5939), + [sym_op_left_shift] = ACTIONS(5939), + [sym_op_right_shift] = ACTIONS(5941), + [sym_op_unsigned_right_shift] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [sym_op_divide] = ACTIONS(5941), + [sym_op_modulo] = ACTIONS(5939), + [sym_op_coalescing] = ACTIONS(5939), + [anon_sym_BANG] = ACTIONS(5941), + [anon_sym_PLUS_PLUS] = ACTIONS(5939), + [anon_sym_DASH_DASH] = ACTIONS(5939), + [anon_sym_into] = ACTIONS(5939), + [anon_sym_on] = ACTIONS(5939), + [anon_sym_equals] = ACTIONS(5939), + [anon_sym_by] = ACTIONS(5939), + [anon_sym_as] = ACTIONS(5939), + [anon_sym_is] = ACTIONS(5939), + [anon_sym_DASH_GT] = ACTIONS(5939), + [anon_sym_with] = ACTIONS(5939), + [aux_sym_preproc_if_token3] = ACTIONS(5939), + [aux_sym_preproc_else_token1] = ACTIONS(5939), + [aux_sym_preproc_elif_token1] = ACTIONS(5939), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -579271,6 +573525,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4198] = { + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7953), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4198), [sym_preproc_endregion] = STATE(4198), [sym_preproc_line] = STATE(4198), @@ -579280,62 +573554,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4198), [sym_preproc_define] = STATE(4198), [sym_preproc_undef] = STATE(4198), - [anon_sym_SEMI] = ACTIONS(6025), - [anon_sym_LBRACK] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6025), - [anon_sym_COMMA] = ACTIONS(6025), - [anon_sym_RBRACK] = ACTIONS(6025), - [anon_sym_LPAREN] = ACTIONS(6025), - [anon_sym_RPAREN] = ACTIONS(6025), - [anon_sym_RBRACE] = ACTIONS(6025), - [anon_sym_LT] = ACTIONS(6027), - [anon_sym_GT] = ACTIONS(6027), - [anon_sym_in] = ACTIONS(6025), - [anon_sym_where] = ACTIONS(6025), - [anon_sym_QMARK] = ACTIONS(6027), - [anon_sym_BANG] = ACTIONS(6027), - [anon_sym_PLUS_PLUS] = ACTIONS(6025), - [anon_sym_DASH_DASH] = ACTIONS(6025), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6025), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_PERCENT] = ACTIONS(6025), - [anon_sym_CARET] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), - [anon_sym_LT_LT] = ACTIONS(6025), - [anon_sym_GT_GT] = ACTIONS(6027), - [anon_sym_GT_GT_GT] = ACTIONS(6025), - [anon_sym_EQ_EQ] = ACTIONS(6025), - [anon_sym_BANG_EQ] = ACTIONS(6025), - [anon_sym_GT_EQ] = ACTIONS(6025), - [anon_sym_LT_EQ] = ACTIONS(6025), - [anon_sym_DOT] = ACTIONS(6027), - [anon_sym_EQ_GT] = ACTIONS(6025), - [anon_sym_switch] = ACTIONS(6025), - [anon_sym_DOT_DOT] = ACTIONS(6025), - [anon_sym_and] = ACTIONS(6025), - [anon_sym_or] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [sym_op_coalescing] = ACTIONS(6025), - [anon_sym_from] = ACTIONS(6025), - [anon_sym_join] = ACTIONS(6025), - [anon_sym_on] = ACTIONS(6025), - [anon_sym_equals] = ACTIONS(6025), - [anon_sym_let] = ACTIONS(6025), - [anon_sym_orderby] = ACTIONS(6025), - [anon_sym_group] = ACTIONS(6025), - [anon_sym_by] = ACTIONS(6025), - [anon_sym_select] = ACTIONS(6025), - [anon_sym_as] = ACTIONS(6025), - [anon_sym_is] = ACTIONS(6025), - [anon_sym_DASH_GT] = ACTIONS(6025), - [anon_sym_with] = ACTIONS(6025), - [aux_sym_preproc_if_token3] = ACTIONS(6025), - [aux_sym_preproc_else_token1] = ACTIONS(6025), - [aux_sym_preproc_elif_token1] = ACTIONS(6025), + [aux_sym_function_pointer_type_repeat1] = STATE(4084), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -579348,27 +573597,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4199] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), [sym_preproc_region] = STATE(4199), [sym_preproc_endregion] = STATE(4199), [sym_preproc_line] = STATE(4199), @@ -579378,41 +573606,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4199), [sym_preproc_define] = STATE(4199), [sym_preproc_undef] = STATE(4199), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(3961), + [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_LBRACE] = ACTIONS(3961), + [anon_sym_RBRACE] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_GT] = ACTIONS(3959), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_DOT] = ACTIONS(3959), + [anon_sym_EQ_GT] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3961), + [anon_sym_LT_EQ] = ACTIONS(3961), + [anon_sym_GT_EQ] = ACTIONS(3961), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_EQ_EQ] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [sym_op_bitwise_or] = ACTIONS(3959), + [anon_sym_CARET] = ACTIONS(3961), + [sym_op_left_shift] = ACTIONS(3961), + [sym_op_right_shift] = ACTIONS(3959), + [sym_op_unsigned_right_shift] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3959), + [sym_op_divide] = ACTIONS(3959), + [sym_op_modulo] = ACTIONS(3961), + [sym_op_coalescing] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3959), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), + [anon_sym_with] = ACTIONS(3961), + [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), @@ -579425,27 +573669,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4200] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), [sym_preproc_region] = STATE(4200), [sym_preproc_endregion] = STATE(4200), [sym_preproc_line] = STATE(4200), @@ -579455,41 +573678,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4200), [sym_preproc_define] = STATE(4200), [sym_preproc_undef] = STATE(4200), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_by] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(6885), + [anon_sym_LBRACK] = ACTIONS(6885), + [anon_sym_COLON] = ACTIONS(6885), + [anon_sym_COMMA] = ACTIONS(6885), + [anon_sym_RBRACK] = ACTIONS(6885), + [anon_sym_LPAREN] = ACTIONS(6885), + [anon_sym_RPAREN] = ACTIONS(6885), + [anon_sym_RBRACE] = ACTIONS(6885), + [anon_sym_LT] = ACTIONS(6887), + [anon_sym_GT] = ACTIONS(6887), + [anon_sym_in] = ACTIONS(6887), + [anon_sym_QMARK] = ACTIONS(6887), + [anon_sym_DOT] = ACTIONS(6887), + [anon_sym_EQ_GT] = ACTIONS(6885), + [anon_sym_STAR] = ACTIONS(6885), + [anon_sym_switch] = ACTIONS(6885), + [anon_sym_when] = ACTIONS(6885), + [anon_sym_DOT_DOT] = ACTIONS(6885), + [anon_sym_LT_EQ] = ACTIONS(6885), + [anon_sym_GT_EQ] = ACTIONS(6885), + [anon_sym_and] = ACTIONS(6885), + [anon_sym_or] = ACTIONS(6885), + [anon_sym_EQ_EQ] = ACTIONS(6885), + [anon_sym_BANG_EQ] = ACTIONS(6885), + [anon_sym_AMP_AMP] = ACTIONS(6885), + [anon_sym_PIPE_PIPE] = ACTIONS(6885), + [anon_sym_AMP] = ACTIONS(6887), + [sym_op_bitwise_or] = ACTIONS(6887), + [anon_sym_CARET] = ACTIONS(6885), + [sym_op_left_shift] = ACTIONS(6885), + [sym_op_right_shift] = ACTIONS(6887), + [sym_op_unsigned_right_shift] = ACTIONS(6885), + [anon_sym_PLUS] = ACTIONS(6887), + [anon_sym_DASH] = ACTIONS(6887), + [sym_op_divide] = ACTIONS(6887), + [sym_op_modulo] = ACTIONS(6885), + [sym_op_coalescing] = ACTIONS(6885), + [anon_sym_BANG] = ACTIONS(6887), + [anon_sym_PLUS_PLUS] = ACTIONS(6885), + [anon_sym_DASH_DASH] = ACTIONS(6885), + [anon_sym_into] = ACTIONS(6885), + [anon_sym_on] = ACTIONS(6885), + [anon_sym_equals] = ACTIONS(6885), + [anon_sym_by] = ACTIONS(6885), + [anon_sym_as] = ACTIONS(6885), + [anon_sym_is] = ACTIONS(6885), + [anon_sym_DASH_GT] = ACTIONS(6885), + [anon_sym_with] = ACTIONS(6885), + [aux_sym_preproc_if_token3] = ACTIONS(6885), + [aux_sym_preproc_else_token1] = ACTIONS(6885), + [aux_sym_preproc_elif_token1] = ACTIONS(6885), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -579502,27 +573741,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4201] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4201), [sym_preproc_endregion] = STATE(4201), [sym_preproc_line] = STATE(4201), @@ -579532,41 +573765,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4201), [sym_preproc_define] = STATE(4201), [sym_preproc_undef] = STATE(4201), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6329), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6473), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6889), + [anon_sym_RBRACK] = ACTIONS(6889), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -579579,27 +573813,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4202] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7933), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4202), [sym_preproc_endregion] = STATE(4202), [sym_preproc_line] = STATE(4202), @@ -579609,41 +573842,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4202), [sym_preproc_define] = STATE(4202), [sym_preproc_undef] = STATE(4202), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4770), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6431), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym_function_pointer_type_repeat1] = STATE(4235), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -579665,62 +573894,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4203), [sym_preproc_define] = STATE(4203), [sym_preproc_undef] = STATE(4203), - [anon_sym_SEMI] = ACTIONS(6156), - [anon_sym_LBRACK] = ACTIONS(6156), - [anon_sym_COLON] = ACTIONS(6156), - [anon_sym_COMMA] = ACTIONS(6156), - [anon_sym_RBRACK] = ACTIONS(6156), - [anon_sym_LPAREN] = ACTIONS(6156), - [anon_sym_RPAREN] = ACTIONS(6156), - [anon_sym_RBRACE] = ACTIONS(6156), - [anon_sym_LT] = ACTIONS(6158), - [anon_sym_GT] = ACTIONS(6158), - [anon_sym_in] = ACTIONS(6156), - [anon_sym_where] = ACTIONS(6156), - [anon_sym_QMARK] = ACTIONS(6158), - [anon_sym_BANG] = ACTIONS(6158), - [anon_sym_PLUS_PLUS] = ACTIONS(6156), - [anon_sym_DASH_DASH] = ACTIONS(6156), - [anon_sym_PLUS] = ACTIONS(6158), - [anon_sym_DASH] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(6156), - [anon_sym_SLASH] = ACTIONS(6158), - [anon_sym_PERCENT] = ACTIONS(6156), - [anon_sym_CARET] = ACTIONS(6156), - [anon_sym_PIPE] = ACTIONS(6158), - [anon_sym_AMP] = ACTIONS(6158), - [anon_sym_LT_LT] = ACTIONS(6156), - [anon_sym_GT_GT] = ACTIONS(6158), - [anon_sym_GT_GT_GT] = ACTIONS(6156), - [anon_sym_EQ_EQ] = ACTIONS(6156), - [anon_sym_BANG_EQ] = ACTIONS(6156), - [anon_sym_GT_EQ] = ACTIONS(6156), - [anon_sym_LT_EQ] = ACTIONS(6156), - [anon_sym_DOT] = ACTIONS(6158), - [anon_sym_EQ_GT] = ACTIONS(6156), - [anon_sym_switch] = ACTIONS(6156), - [anon_sym_DOT_DOT] = ACTIONS(6156), - [anon_sym_and] = ACTIONS(6156), - [anon_sym_or] = ACTIONS(6158), - [anon_sym_AMP_AMP] = ACTIONS(6156), - [anon_sym_PIPE_PIPE] = ACTIONS(6156), - [sym_op_coalescing] = ACTIONS(6156), - [anon_sym_from] = ACTIONS(6156), - [anon_sym_join] = ACTIONS(6156), - [anon_sym_on] = ACTIONS(6156), - [anon_sym_equals] = ACTIONS(6156), - [anon_sym_let] = ACTIONS(6156), - [anon_sym_orderby] = ACTIONS(6156), - [anon_sym_group] = ACTIONS(6156), - [anon_sym_by] = ACTIONS(6156), - [anon_sym_select] = ACTIONS(6156), - [anon_sym_as] = ACTIONS(6156), - [anon_sym_is] = ACTIONS(6156), - [anon_sym_DASH_GT] = ACTIONS(6156), - [anon_sym_with] = ACTIONS(6156), - [aux_sym_preproc_if_token3] = ACTIONS(6156), - [aux_sym_preproc_else_token1] = ACTIONS(6156), - [aux_sym_preproc_elif_token1] = ACTIONS(6156), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_COLON] = ACTIONS(3388), + [anon_sym_COMMA] = ACTIONS(3388), + [anon_sym_RBRACK] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_RPAREN] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_GT] = ACTIONS(3386), + [anon_sym_in] = ACTIONS(3386), + [anon_sym_QMARK] = ACTIONS(3386), + [anon_sym_DOT] = ACTIONS(3386), + [anon_sym_EQ_GT] = ACTIONS(3388), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3388), + [anon_sym_when] = ACTIONS(3388), + [anon_sym_DOT_DOT] = ACTIONS(3388), + [anon_sym_LT_EQ] = ACTIONS(3388), + [anon_sym_GT_EQ] = ACTIONS(3388), + [anon_sym_and] = ACTIONS(3388), + [anon_sym_or] = ACTIONS(3388), + [anon_sym_EQ_EQ] = ACTIONS(3388), + [anon_sym_BANG_EQ] = ACTIONS(3388), + [anon_sym_AMP_AMP] = ACTIONS(3388), + [anon_sym_PIPE_PIPE] = ACTIONS(3388), + [anon_sym_AMP] = ACTIONS(3386), + [sym_op_bitwise_or] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3388), + [sym_op_left_shift] = ACTIONS(3388), + [sym_op_right_shift] = ACTIONS(3386), + [sym_op_unsigned_right_shift] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [sym_op_divide] = ACTIONS(3386), + [sym_op_modulo] = ACTIONS(3388), + [sym_op_coalescing] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_into] = ACTIONS(3388), + [anon_sym_on] = ACTIONS(3388), + [anon_sym_equals] = ACTIONS(3388), + [anon_sym_by] = ACTIONS(3388), + [anon_sym_as] = ACTIONS(3388), + [anon_sym_is] = ACTIONS(3388), + [anon_sym_DASH_GT] = ACTIONS(3388), + [anon_sym_with] = ACTIONS(3388), + [aux_sym_preproc_if_token3] = ACTIONS(3388), + [aux_sym_preproc_else_token1] = ACTIONS(3388), + [aux_sym_preproc_elif_token1] = ACTIONS(3388), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -579733,27 +573957,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4204] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1400), - [sym_op_lte] = STATE(1400), - [sym_op_eq] = STATE(1403), - [sym_op_neq] = STATE(1403), - [sym_op_gt] = STATE(1400), - [sym_op_gte] = STATE(1400), - [sym_op_and] = STATE(1407), - [sym_op_or] = STATE(1412), - [sym_op_bitwise_and] = STATE(1414), - [sym_op_bitwise_or] = STATE(1419), - [sym_op_bitwise_xor] = STATE(1422), - [sym_op_left_shift] = STATE(1430), - [sym_op_right_shift] = STATE(1430), - [sym_op_unsigned_right_shift] = STATE(1430), - [sym_op_plus] = STATE(1435), - [sym_op_minus] = STATE(1435), - [sym_op_multiply] = STATE(1439), - [sym_op_divide] = STATE(1439), - [sym_op_modulo] = STATE(1439), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4204), [sym_preproc_endregion] = STATE(4204), [sym_preproc_line] = STATE(4204), @@ -579763,40 +573981,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4204), [sym_preproc_define] = STATE(4204), [sym_preproc_undef] = STATE(4204), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(6475), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5784), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5664), - [anon_sym_DOT_DOT] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5788), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6895), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(6905), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(6907), + [anon_sym_is] = ACTIONS(6909), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -579807,30 +574027,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(6475), }, [4205] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4205), [sym_preproc_endregion] = STATE(4205), [sym_preproc_line] = STATE(4205), @@ -579840,41 +574053,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4205), [sym_preproc_define] = STATE(4205), [sym_preproc_undef] = STATE(4205), - [anon_sym_SEMI] = ACTIONS(6457), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6457), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6049), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6895), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(6905), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(6907), + [anon_sym_is] = ACTIONS(6909), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -579887,6 +574101,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4206] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4206), [sym_preproc_endregion] = STATE(4206), [sym_preproc_line] = STATE(4206), @@ -579896,62 +574125,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4206), [sym_preproc_define] = STATE(4206), [sym_preproc_undef] = STATE(4206), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_event] = ACTIONS(3738), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_record] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_TILDE] = ACTIONS(6477), - [anon_sym_implicit] = ACTIONS(3738), - [anon_sym_explicit] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6895), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(6905), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(6907), + [anon_sym_is] = ACTIONS(6909), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -579964,27 +574173,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4207] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4207), [sym_preproc_endregion] = STATE(4207), [sym_preproc_line] = STATE(4207), @@ -579994,41 +574197,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4207), [sym_preproc_define] = STATE(4207), [sym_preproc_undef] = STATE(4207), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6407), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6411), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_on] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(6413), - [anon_sym_is] = ACTIONS(6415), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6895), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(6905), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(6907), + [anon_sym_is] = ACTIONS(6909), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -580041,6 +574245,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4208] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4208), [sym_preproc_endregion] = STATE(4208), [sym_preproc_line] = STATE(4208), @@ -580050,62 +574269,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4208), [sym_preproc_define] = STATE(4208), [sym_preproc_undef] = STATE(4208), - [anon_sym_SEMI] = ACTIONS(6267), - [anon_sym_LBRACK] = ACTIONS(6267), - [anon_sym_COLON] = ACTIONS(6267), - [anon_sym_COMMA] = ACTIONS(6267), - [anon_sym_RBRACK] = ACTIONS(6267), - [anon_sym_LPAREN] = ACTIONS(6267), - [anon_sym_RPAREN] = ACTIONS(6267), - [anon_sym_RBRACE] = ACTIONS(6267), - [anon_sym_LT] = ACTIONS(6269), - [anon_sym_GT] = ACTIONS(6269), - [anon_sym_in] = ACTIONS(6267), - [anon_sym_where] = ACTIONS(6267), - [anon_sym_QMARK] = ACTIONS(6269), - [anon_sym_BANG] = ACTIONS(6269), - [anon_sym_PLUS_PLUS] = ACTIONS(6267), - [anon_sym_DASH_DASH] = ACTIONS(6267), - [anon_sym_PLUS] = ACTIONS(6269), - [anon_sym_DASH] = ACTIONS(6269), - [anon_sym_STAR] = ACTIONS(6267), - [anon_sym_SLASH] = ACTIONS(6269), - [anon_sym_PERCENT] = ACTIONS(6267), - [anon_sym_CARET] = ACTIONS(6267), - [anon_sym_PIPE] = ACTIONS(6269), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_GT_GT] = ACTIONS(6269), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_EQ_EQ] = ACTIONS(6267), - [anon_sym_BANG_EQ] = ACTIONS(6267), - [anon_sym_GT_EQ] = ACTIONS(6267), - [anon_sym_LT_EQ] = ACTIONS(6267), - [anon_sym_DOT] = ACTIONS(6269), - [anon_sym_EQ_GT] = ACTIONS(6267), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_DOT_DOT] = ACTIONS(6267), - [anon_sym_and] = ACTIONS(6267), - [anon_sym_or] = ACTIONS(6269), - [anon_sym_AMP_AMP] = ACTIONS(6267), - [anon_sym_PIPE_PIPE] = ACTIONS(6267), - [sym_op_coalescing] = ACTIONS(6267), - [anon_sym_from] = ACTIONS(6267), - [anon_sym_join] = ACTIONS(6267), - [anon_sym_on] = ACTIONS(6267), - [anon_sym_equals] = ACTIONS(6267), - [anon_sym_let] = ACTIONS(6267), - [anon_sym_orderby] = ACTIONS(6267), - [anon_sym_group] = ACTIONS(6267), - [anon_sym_by] = ACTIONS(6267), - [anon_sym_select] = ACTIONS(6267), - [anon_sym_as] = ACTIONS(6267), - [anon_sym_is] = ACTIONS(6267), - [anon_sym_DASH_GT] = ACTIONS(6267), - [anon_sym_with] = ACTIONS(6267), - [aux_sym_preproc_if_token3] = ACTIONS(6267), - [aux_sym_preproc_else_token1] = ACTIONS(6267), - [aux_sym_preproc_elif_token1] = ACTIONS(6267), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -580118,27 +574317,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4209] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1040), - [sym_op_lte] = STATE(1040), - [sym_op_eq] = STATE(1039), - [sym_op_neq] = STATE(1039), - [sym_op_gt] = STATE(1040), - [sym_op_gte] = STATE(1040), - [sym_op_and] = STATE(1038), - [sym_op_or] = STATE(1036), - [sym_op_bitwise_and] = STATE(1035), - [sym_op_bitwise_or] = STATE(1033), - [sym_op_bitwise_xor] = STATE(1031), - [sym_op_left_shift] = STATE(1029), - [sym_op_right_shift] = STATE(1029), - [sym_op_unsigned_right_shift] = STATE(1029), - [sym_op_plus] = STATE(1018), - [sym_op_minus] = STATE(1018), - [sym_op_multiply] = STATE(1017), - [sym_op_divide] = STATE(1017), - [sym_op_modulo] = STATE(1017), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4209), [sym_preproc_endregion] = STATE(4209), [sym_preproc_line] = STATE(4209), @@ -580148,41 +574341,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4209), [sym_preproc_define] = STATE(4209), [sym_preproc_undef] = STATE(4209), - [anon_sym_SEMI] = ACTIONS(6479), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6479), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6049), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6895), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(6905), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(6907), + [anon_sym_is] = ACTIONS(6909), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -580195,27 +574389,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4210] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [sym_parameter_list] = STATE(7966), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6226), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym__lambda_parameters] = STATE(8081), + [sym_identifier] = STATE(6061), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4210), [sym_preproc_endregion] = STATE(4210), [sym_preproc_line] = STATE(4210), @@ -580225,41 +574418,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4210), [sym_preproc_define] = STATE(4210), [sym_preproc_undef] = STATE(4210), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6329), - [anon_sym_RBRACK] = ACTIONS(6329), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5522), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym__lambda_expression_init_repeat1] = STATE(6103), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(6911), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -580272,27 +574461,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4211] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4211), [sym_preproc_endregion] = STATE(4211), [sym_preproc_line] = STATE(4211), @@ -580302,41 +574485,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4211), [sym_preproc_define] = STATE(4211), [sym_preproc_undef] = STATE(4211), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6407), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6411), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_on] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(6413), - [anon_sym_is] = ACTIONS(6415), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -580349,6 +574533,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4212] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4212), [sym_preproc_endregion] = STATE(4212), [sym_preproc_line] = STATE(4212), @@ -580358,62 +574557,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4212), [sym_preproc_define] = STATE(4212), [sym_preproc_undef] = STATE(4212), - [anon_sym_SEMI] = ACTIONS(6313), - [anon_sym_LBRACK] = ACTIONS(6313), - [anon_sym_COLON] = ACTIONS(6313), - [anon_sym_COMMA] = ACTIONS(6313), - [anon_sym_RBRACK] = ACTIONS(6313), - [anon_sym_LPAREN] = ACTIONS(6313), - [anon_sym_RPAREN] = ACTIONS(6313), - [anon_sym_RBRACE] = ACTIONS(6313), - [anon_sym_LT] = ACTIONS(6315), - [anon_sym_GT] = ACTIONS(6315), - [anon_sym_in] = ACTIONS(6313), - [anon_sym_where] = ACTIONS(6313), - [anon_sym_QMARK] = ACTIONS(6315), - [anon_sym_BANG] = ACTIONS(6315), - [anon_sym_PLUS_PLUS] = ACTIONS(6313), - [anon_sym_DASH_DASH] = ACTIONS(6313), - [anon_sym_PLUS] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6315), - [anon_sym_STAR] = ACTIONS(6313), - [anon_sym_SLASH] = ACTIONS(6315), - [anon_sym_PERCENT] = ACTIONS(6313), - [anon_sym_CARET] = ACTIONS(6313), - [anon_sym_PIPE] = ACTIONS(6315), - [anon_sym_AMP] = ACTIONS(6315), - [anon_sym_LT_LT] = ACTIONS(6313), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6313), - [anon_sym_EQ_EQ] = ACTIONS(6313), - [anon_sym_BANG_EQ] = ACTIONS(6313), - [anon_sym_GT_EQ] = ACTIONS(6313), - [anon_sym_LT_EQ] = ACTIONS(6313), - [anon_sym_DOT] = ACTIONS(6315), - [anon_sym_EQ_GT] = ACTIONS(6313), - [anon_sym_switch] = ACTIONS(6313), - [anon_sym_DOT_DOT] = ACTIONS(6313), - [anon_sym_and] = ACTIONS(6313), - [anon_sym_or] = ACTIONS(6315), - [anon_sym_AMP_AMP] = ACTIONS(6313), - [anon_sym_PIPE_PIPE] = ACTIONS(6313), - [sym_op_coalescing] = ACTIONS(6313), - [anon_sym_from] = ACTIONS(6313), - [anon_sym_join] = ACTIONS(6313), - [anon_sym_on] = ACTIONS(6313), - [anon_sym_equals] = ACTIONS(6313), - [anon_sym_let] = ACTIONS(6313), - [anon_sym_orderby] = ACTIONS(6313), - [anon_sym_group] = ACTIONS(6313), - [anon_sym_by] = ACTIONS(6313), - [anon_sym_select] = ACTIONS(6313), - [anon_sym_as] = ACTIONS(6313), - [anon_sym_is] = ACTIONS(6313), - [anon_sym_DASH_GT] = ACTIONS(6313), - [anon_sym_with] = ACTIONS(6313), - [aux_sym_preproc_if_token3] = ACTIONS(6313), - [aux_sym_preproc_else_token1] = ACTIONS(6313), - [aux_sym_preproc_elif_token1] = ACTIONS(6313), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -580426,27 +574605,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4213] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4213), [sym_preproc_endregion] = STATE(4213), [sym_preproc_line] = STATE(4213), @@ -580456,41 +574629,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4213), [sym_preproc_define] = STATE(4213), [sym_preproc_undef] = STATE(4213), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -580503,27 +574677,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4214] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4214), [sym_preproc_endregion] = STATE(4214), [sym_preproc_line] = STATE(4214), @@ -580533,41 +574701,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4214), [sym_preproc_define] = STATE(4214), [sym_preproc_undef] = STATE(4214), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6407), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6411), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_on] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(6413), - [anon_sym_is] = ACTIONS(6415), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym__for_statement_conditions_repeat1] = STATE(7313), + [anon_sym_SEMI] = ACTIONS(6913), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6915), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6717), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(6729), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -580580,27 +574749,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4215] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), [sym_preproc_region] = STATE(4215), [sym_preproc_endregion] = STATE(4215), [sym_preproc_line] = STATE(4215), @@ -580610,41 +574758,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4215), [sym_preproc_define] = STATE(4215), [sym_preproc_undef] = STATE(4215), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6407), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6411), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_on] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(6413), - [anon_sym_is] = ACTIONS(6415), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(6917), + [anon_sym_LBRACK] = ACTIONS(6917), + [anon_sym_COLON] = ACTIONS(6917), + [anon_sym_COMMA] = ACTIONS(6917), + [anon_sym_RBRACK] = ACTIONS(6917), + [anon_sym_LPAREN] = ACTIONS(6917), + [anon_sym_RPAREN] = ACTIONS(6917), + [anon_sym_RBRACE] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6919), + [anon_sym_GT] = ACTIONS(6919), + [anon_sym_in] = ACTIONS(6919), + [anon_sym_QMARK] = ACTIONS(6919), + [anon_sym_DOT] = ACTIONS(6919), + [anon_sym_EQ_GT] = ACTIONS(6917), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_switch] = ACTIONS(6917), + [anon_sym_when] = ACTIONS(6917), + [anon_sym_DOT_DOT] = ACTIONS(6917), + [anon_sym_LT_EQ] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6917), + [anon_sym_and] = ACTIONS(6917), + [anon_sym_or] = ACTIONS(6917), + [anon_sym_EQ_EQ] = ACTIONS(6917), + [anon_sym_BANG_EQ] = ACTIONS(6917), + [anon_sym_AMP_AMP] = ACTIONS(6917), + [anon_sym_PIPE_PIPE] = ACTIONS(6917), + [anon_sym_AMP] = ACTIONS(6919), + [sym_op_bitwise_or] = ACTIONS(6919), + [anon_sym_CARET] = ACTIONS(6917), + [sym_op_left_shift] = ACTIONS(6917), + [sym_op_right_shift] = ACTIONS(6919), + [sym_op_unsigned_right_shift] = ACTIONS(6917), + [anon_sym_PLUS] = ACTIONS(6919), + [anon_sym_DASH] = ACTIONS(6919), + [sym_op_divide] = ACTIONS(6919), + [sym_op_modulo] = ACTIONS(6917), + [sym_op_coalescing] = ACTIONS(6917), + [anon_sym_BANG] = ACTIONS(6919), + [anon_sym_PLUS_PLUS] = ACTIONS(6917), + [anon_sym_DASH_DASH] = ACTIONS(6917), + [anon_sym_into] = ACTIONS(6917), + [anon_sym_on] = ACTIONS(6917), + [anon_sym_equals] = ACTIONS(6917), + [anon_sym_by] = ACTIONS(6917), + [anon_sym_as] = ACTIONS(6917), + [anon_sym_is] = ACTIONS(6917), + [anon_sym_DASH_GT] = ACTIONS(6917), + [anon_sym_with] = ACTIONS(6917), + [aux_sym_preproc_if_token3] = ACTIONS(6917), + [aux_sym_preproc_else_token1] = ACTIONS(6917), + [aux_sym_preproc_elif_token1] = ACTIONS(6917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -580657,27 +574821,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4216] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4216), [sym_preproc_endregion] = STATE(4216), [sym_preproc_line] = STATE(4216), @@ -580687,41 +574845,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4216), [sym_preproc_define] = STATE(4216), [sym_preproc_undef] = STATE(4216), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6407), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6411), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_on] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(6413), - [anon_sym_is] = ACTIONS(6415), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6907), + [anon_sym_is] = ACTIONS(6909), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -580734,6 +574893,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4217] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4217), [sym_preproc_endregion] = STATE(4217), [sym_preproc_line] = STATE(4217), @@ -580743,62 +574917,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4217), [sym_preproc_define] = STATE(4217), [sym_preproc_undef] = STATE(4217), - [anon_sym_SEMI] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(6007), - [anon_sym_COLON] = ACTIONS(6007), - [anon_sym_COMMA] = ACTIONS(6007), - [anon_sym_RBRACK] = ACTIONS(6007), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_RPAREN] = ACTIONS(6007), - [anon_sym_RBRACE] = ACTIONS(6007), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_in] = ACTIONS(6007), - [anon_sym_where] = ACTIONS(6007), - [anon_sym_QMARK] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PLUS_PLUS] = ACTIONS(6007), - [anon_sym_DASH_DASH] = ACTIONS(6007), - [anon_sym_PLUS] = ACTIONS(6009), - [anon_sym_DASH] = ACTIONS(6009), - [anon_sym_STAR] = ACTIONS(6007), - [anon_sym_SLASH] = ACTIONS(6009), - [anon_sym_PERCENT] = ACTIONS(6007), - [anon_sym_CARET] = ACTIONS(6007), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_AMP] = ACTIONS(6009), - [anon_sym_LT_LT] = ACTIONS(6007), - [anon_sym_GT_GT] = ACTIONS(6009), - [anon_sym_GT_GT_GT] = ACTIONS(6007), - [anon_sym_EQ_EQ] = ACTIONS(6007), - [anon_sym_BANG_EQ] = ACTIONS(6007), - [anon_sym_GT_EQ] = ACTIONS(6007), - [anon_sym_LT_EQ] = ACTIONS(6007), - [anon_sym_DOT] = ACTIONS(6009), - [anon_sym_EQ_GT] = ACTIONS(6007), - [anon_sym_switch] = ACTIONS(6007), - [anon_sym_DOT_DOT] = ACTIONS(6007), - [anon_sym_and] = ACTIONS(6007), - [anon_sym_or] = ACTIONS(6009), - [anon_sym_AMP_AMP] = ACTIONS(6007), - [anon_sym_PIPE_PIPE] = ACTIONS(6007), - [sym_op_coalescing] = ACTIONS(6007), - [anon_sym_from] = ACTIONS(6007), - [anon_sym_join] = ACTIONS(6007), - [anon_sym_on] = ACTIONS(6007), - [anon_sym_equals] = ACTIONS(6007), - [anon_sym_let] = ACTIONS(6007), - [anon_sym_orderby] = ACTIONS(6007), - [anon_sym_group] = ACTIONS(6007), - [anon_sym_by] = ACTIONS(6007), - [anon_sym_select] = ACTIONS(6007), - [anon_sym_as] = ACTIONS(6007), - [anon_sym_is] = ACTIONS(6007), - [anon_sym_DASH_GT] = ACTIONS(6007), - [anon_sym_with] = ACTIONS(6007), - [aux_sym_preproc_if_token3] = ACTIONS(6007), - [aux_sym_preproc_else_token1] = ACTIONS(6007), - [aux_sym_preproc_elif_token1] = ACTIONS(6007), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6907), + [anon_sym_is] = ACTIONS(6909), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -580811,27 +574965,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4218] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4218), [sym_preproc_endregion] = STATE(4218), [sym_preproc_line] = STATE(4218), @@ -580841,41 +574989,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4218), [sym_preproc_define] = STATE(4218), [sym_preproc_undef] = STATE(4218), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6481), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6459), - [anon_sym_is] = ACTIONS(6461), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6895), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6907), + [anon_sym_is] = ACTIONS(6909), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -580888,27 +575037,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4219] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), [sym_preproc_region] = STATE(4219), [sym_preproc_endregion] = STATE(4219), [sym_preproc_line] = STATE(4219), @@ -580918,41 +575046,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4219), [sym_preproc_define] = STATE(4219), [sym_preproc_undef] = STATE(4219), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4790), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6431), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_COMMA] = ACTIONS(5923), + [anon_sym_RBRACK] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(5923), + [anon_sym_RPAREN] = ACTIONS(5923), + [anon_sym_RBRACE] = ACTIONS(5923), + [anon_sym_LT] = ACTIONS(5925), + [anon_sym_GT] = ACTIONS(5925), + [anon_sym_in] = ACTIONS(5925), + [anon_sym_QMARK] = ACTIONS(5925), + [anon_sym_DOT] = ACTIONS(5925), + [anon_sym_EQ_GT] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_switch] = ACTIONS(5923), + [anon_sym_when] = ACTIONS(5923), + [anon_sym_DOT_DOT] = ACTIONS(5923), + [anon_sym_LT_EQ] = ACTIONS(5923), + [anon_sym_GT_EQ] = ACTIONS(5923), + [anon_sym_and] = ACTIONS(5923), + [anon_sym_or] = ACTIONS(5923), + [anon_sym_EQ_EQ] = ACTIONS(5923), + [anon_sym_BANG_EQ] = ACTIONS(5923), + [anon_sym_AMP_AMP] = ACTIONS(5923), + [anon_sym_PIPE_PIPE] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5925), + [sym_op_bitwise_or] = ACTIONS(5925), + [anon_sym_CARET] = ACTIONS(5923), + [sym_op_left_shift] = ACTIONS(5923), + [sym_op_right_shift] = ACTIONS(5925), + [sym_op_unsigned_right_shift] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5925), + [sym_op_divide] = ACTIONS(5925), + [sym_op_modulo] = ACTIONS(5923), + [sym_op_coalescing] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5925), + [anon_sym_PLUS_PLUS] = ACTIONS(5923), + [anon_sym_DASH_DASH] = ACTIONS(5923), + [anon_sym_into] = ACTIONS(5923), + [anon_sym_on] = ACTIONS(5923), + [anon_sym_equals] = ACTIONS(5923), + [anon_sym_by] = ACTIONS(5923), + [anon_sym_as] = ACTIONS(5923), + [anon_sym_is] = ACTIONS(5923), + [anon_sym_DASH_GT] = ACTIONS(5923), + [anon_sym_with] = ACTIONS(5923), + [aux_sym_preproc_if_token3] = ACTIONS(5923), + [aux_sym_preproc_else_token1] = ACTIONS(5923), + [aux_sym_preproc_elif_token1] = ACTIONS(5923), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -580965,27 +575109,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4220] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), [sym_preproc_region] = STATE(4220), [sym_preproc_endregion] = STATE(4220), [sym_preproc_line] = STATE(4220), @@ -580995,41 +575118,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4220), [sym_preproc_define] = STATE(4220), [sym_preproc_undef] = STATE(4220), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_on] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(6921), + [anon_sym_LBRACK] = ACTIONS(6921), + [anon_sym_COLON] = ACTIONS(6921), + [anon_sym_COMMA] = ACTIONS(6921), + [anon_sym_RBRACK] = ACTIONS(6921), + [anon_sym_LPAREN] = ACTIONS(6921), + [anon_sym_RPAREN] = ACTIONS(6921), + [anon_sym_RBRACE] = ACTIONS(6921), + [anon_sym_LT] = ACTIONS(6923), + [anon_sym_GT] = ACTIONS(6923), + [anon_sym_in] = ACTIONS(6923), + [anon_sym_QMARK] = ACTIONS(6923), + [anon_sym_DOT] = ACTIONS(6923), + [anon_sym_EQ_GT] = ACTIONS(6921), + [anon_sym_STAR] = ACTIONS(6921), + [anon_sym_switch] = ACTIONS(6921), + [anon_sym_when] = ACTIONS(6921), + [anon_sym_DOT_DOT] = ACTIONS(6921), + [anon_sym_LT_EQ] = ACTIONS(6921), + [anon_sym_GT_EQ] = ACTIONS(6921), + [anon_sym_and] = ACTIONS(6921), + [anon_sym_or] = ACTIONS(6921), + [anon_sym_EQ_EQ] = ACTIONS(6921), + [anon_sym_BANG_EQ] = ACTIONS(6921), + [anon_sym_AMP_AMP] = ACTIONS(6921), + [anon_sym_PIPE_PIPE] = ACTIONS(6921), + [anon_sym_AMP] = ACTIONS(6923), + [sym_op_bitwise_or] = ACTIONS(6923), + [anon_sym_CARET] = ACTIONS(6921), + [sym_op_left_shift] = ACTIONS(6921), + [sym_op_right_shift] = ACTIONS(6923), + [sym_op_unsigned_right_shift] = ACTIONS(6921), + [anon_sym_PLUS] = ACTIONS(6923), + [anon_sym_DASH] = ACTIONS(6923), + [sym_op_divide] = ACTIONS(6923), + [sym_op_modulo] = ACTIONS(6921), + [sym_op_coalescing] = ACTIONS(6921), + [anon_sym_BANG] = ACTIONS(6923), + [anon_sym_PLUS_PLUS] = ACTIONS(6921), + [anon_sym_DASH_DASH] = ACTIONS(6921), + [anon_sym_into] = ACTIONS(6921), + [anon_sym_on] = ACTIONS(6921), + [anon_sym_equals] = ACTIONS(6921), + [anon_sym_by] = ACTIONS(6921), + [anon_sym_as] = ACTIONS(6921), + [anon_sym_is] = ACTIONS(6921), + [anon_sym_DASH_GT] = ACTIONS(6921), + [anon_sym_with] = ACTIONS(6921), + [aux_sym_preproc_if_token3] = ACTIONS(6921), + [aux_sym_preproc_else_token1] = ACTIONS(6921), + [aux_sym_preproc_elif_token1] = ACTIONS(6921), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -581042,27 +575181,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4221] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), [sym_preproc_region] = STATE(4221), [sym_preproc_endregion] = STATE(4221), [sym_preproc_line] = STATE(4221), @@ -581072,41 +575190,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4221), [sym_preproc_define] = STATE(4221), [sym_preproc_undef] = STATE(4221), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6407), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6411), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_on] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(6413), - [anon_sym_is] = ACTIONS(6415), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5927), + [anon_sym_LBRACK] = ACTIONS(5927), + [anon_sym_COLON] = ACTIONS(5927), + [anon_sym_COMMA] = ACTIONS(5927), + [anon_sym_RBRACK] = ACTIONS(5927), + [anon_sym_LPAREN] = ACTIONS(5927), + [anon_sym_RPAREN] = ACTIONS(5927), + [anon_sym_RBRACE] = ACTIONS(5927), + [anon_sym_LT] = ACTIONS(5929), + [anon_sym_GT] = ACTIONS(5929), + [anon_sym_in] = ACTIONS(5929), + [anon_sym_QMARK] = ACTIONS(5929), + [anon_sym_DOT] = ACTIONS(5929), + [anon_sym_EQ_GT] = ACTIONS(5927), + [anon_sym_STAR] = ACTIONS(5927), + [anon_sym_switch] = ACTIONS(5927), + [anon_sym_when] = ACTIONS(5927), + [anon_sym_DOT_DOT] = ACTIONS(5927), + [anon_sym_LT_EQ] = ACTIONS(5927), + [anon_sym_GT_EQ] = ACTIONS(5927), + [anon_sym_and] = ACTIONS(5927), + [anon_sym_or] = ACTIONS(5927), + [anon_sym_EQ_EQ] = ACTIONS(5927), + [anon_sym_BANG_EQ] = ACTIONS(5927), + [anon_sym_AMP_AMP] = ACTIONS(5927), + [anon_sym_PIPE_PIPE] = ACTIONS(5927), + [anon_sym_AMP] = ACTIONS(5929), + [sym_op_bitwise_or] = ACTIONS(5929), + [anon_sym_CARET] = ACTIONS(5927), + [sym_op_left_shift] = ACTIONS(5927), + [sym_op_right_shift] = ACTIONS(5929), + [sym_op_unsigned_right_shift] = ACTIONS(5927), + [anon_sym_PLUS] = ACTIONS(5929), + [anon_sym_DASH] = ACTIONS(5929), + [sym_op_divide] = ACTIONS(5929), + [sym_op_modulo] = ACTIONS(5927), + [sym_op_coalescing] = ACTIONS(5927), + [anon_sym_BANG] = ACTIONS(5929), + [anon_sym_PLUS_PLUS] = ACTIONS(5927), + [anon_sym_DASH_DASH] = ACTIONS(5927), + [anon_sym_into] = ACTIONS(5927), + [anon_sym_on] = ACTIONS(5927), + [anon_sym_equals] = ACTIONS(5927), + [anon_sym_by] = ACTIONS(5927), + [anon_sym_as] = ACTIONS(5927), + [anon_sym_is] = ACTIONS(5927), + [anon_sym_DASH_GT] = ACTIONS(5927), + [anon_sym_with] = ACTIONS(5927), + [aux_sym_preproc_if_token3] = ACTIONS(5927), + [aux_sym_preproc_else_token1] = ACTIONS(5927), + [aux_sym_preproc_elif_token1] = ACTIONS(5927), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -581119,27 +575253,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4222] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), [sym_preproc_region] = STATE(4222), [sym_preproc_endregion] = STATE(4222), [sym_preproc_line] = STATE(4222), @@ -581149,41 +575262,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4222), [sym_preproc_define] = STATE(4222), [sym_preproc_undef] = STATE(4222), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_on] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(5817), + [anon_sym_LBRACK] = ACTIONS(5817), + [anon_sym_COLON] = ACTIONS(5817), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_RBRACK] = ACTIONS(5817), + [anon_sym_LPAREN] = ACTIONS(5817), + [anon_sym_RPAREN] = ACTIONS(5817), + [anon_sym_RBRACE] = ACTIONS(5817), + [anon_sym_LT] = ACTIONS(5819), + [anon_sym_GT] = ACTIONS(5819), + [anon_sym_in] = ACTIONS(5819), + [anon_sym_QMARK] = ACTIONS(5819), + [anon_sym_DOT] = ACTIONS(5819), + [anon_sym_EQ_GT] = ACTIONS(5817), + [anon_sym_STAR] = ACTIONS(5817), + [anon_sym_switch] = ACTIONS(5817), + [anon_sym_when] = ACTIONS(5817), + [anon_sym_DOT_DOT] = ACTIONS(5817), + [anon_sym_LT_EQ] = ACTIONS(5817), + [anon_sym_GT_EQ] = ACTIONS(5817), + [anon_sym_and] = ACTIONS(5817), + [anon_sym_or] = ACTIONS(5817), + [anon_sym_EQ_EQ] = ACTIONS(5817), + [anon_sym_BANG_EQ] = ACTIONS(5817), + [anon_sym_AMP_AMP] = ACTIONS(5817), + [anon_sym_PIPE_PIPE] = ACTIONS(5817), + [anon_sym_AMP] = ACTIONS(5819), + [sym_op_bitwise_or] = ACTIONS(5819), + [anon_sym_CARET] = ACTIONS(5817), + [sym_op_left_shift] = ACTIONS(5817), + [sym_op_right_shift] = ACTIONS(5819), + [sym_op_unsigned_right_shift] = ACTIONS(5817), + [anon_sym_PLUS] = ACTIONS(5819), + [anon_sym_DASH] = ACTIONS(5819), + [sym_op_divide] = ACTIONS(5819), + [sym_op_modulo] = ACTIONS(5817), + [sym_op_coalescing] = ACTIONS(5817), + [anon_sym_BANG] = ACTIONS(5819), + [anon_sym_PLUS_PLUS] = ACTIONS(5817), + [anon_sym_DASH_DASH] = ACTIONS(5817), + [anon_sym_into] = ACTIONS(5817), + [anon_sym_on] = ACTIONS(5817), + [anon_sym_equals] = ACTIONS(5817), + [anon_sym_by] = ACTIONS(5817), + [anon_sym_as] = ACTIONS(5817), + [anon_sym_is] = ACTIONS(5817), + [anon_sym_DASH_GT] = ACTIONS(5817), + [anon_sym_with] = ACTIONS(5817), + [aux_sym_preproc_if_token3] = ACTIONS(5817), + [aux_sym_preproc_else_token1] = ACTIONS(5817), + [aux_sym_preproc_elif_token1] = ACTIONS(5817), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -581196,27 +575325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4223] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), [sym_preproc_region] = STATE(4223), [sym_preproc_endregion] = STATE(4223), [sym_preproc_line] = STATE(4223), @@ -581226,41 +575334,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4223), [sym_preproc_define] = STATE(4223), [sym_preproc_undef] = STATE(4223), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_on] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LBRACK] = ACTIONS(5931), + [anon_sym_COLON] = ACTIONS(5931), + [anon_sym_COMMA] = ACTIONS(5931), + [anon_sym_RBRACK] = ACTIONS(5931), + [anon_sym_LPAREN] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_RBRACE] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5933), + [anon_sym_in] = ACTIONS(5933), + [anon_sym_QMARK] = ACTIONS(5933), + [anon_sym_DOT] = ACTIONS(5933), + [anon_sym_EQ_GT] = ACTIONS(5931), + [anon_sym_STAR] = ACTIONS(5931), + [anon_sym_switch] = ACTIONS(5931), + [anon_sym_when] = ACTIONS(5931), + [anon_sym_DOT_DOT] = ACTIONS(5931), + [anon_sym_LT_EQ] = ACTIONS(5931), + [anon_sym_GT_EQ] = ACTIONS(5931), + [anon_sym_and] = ACTIONS(5931), + [anon_sym_or] = ACTIONS(5931), + [anon_sym_EQ_EQ] = ACTIONS(5931), + [anon_sym_BANG_EQ] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5933), + [sym_op_bitwise_or] = ACTIONS(5933), + [anon_sym_CARET] = ACTIONS(5931), + [sym_op_left_shift] = ACTIONS(5931), + [sym_op_right_shift] = ACTIONS(5933), + [sym_op_unsigned_right_shift] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5933), + [sym_op_divide] = ACTIONS(5933), + [sym_op_modulo] = ACTIONS(5931), + [sym_op_coalescing] = ACTIONS(5931), + [anon_sym_BANG] = ACTIONS(5933), + [anon_sym_PLUS_PLUS] = ACTIONS(5931), + [anon_sym_DASH_DASH] = ACTIONS(5931), + [anon_sym_into] = ACTIONS(5931), + [anon_sym_on] = ACTIONS(5931), + [anon_sym_equals] = ACTIONS(5931), + [anon_sym_by] = ACTIONS(5931), + [anon_sym_as] = ACTIONS(5931), + [anon_sym_is] = ACTIONS(5931), + [anon_sym_DASH_GT] = ACTIONS(5931), + [anon_sym_with] = ACTIONS(5931), + [aux_sym_preproc_if_token3] = ACTIONS(5931), + [aux_sym_preproc_else_token1] = ACTIONS(5931), + [aux_sym_preproc_elif_token1] = ACTIONS(5931), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -581282,62 +575406,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4224), [sym_preproc_define] = STATE(4224), [sym_preproc_undef] = STATE(4224), - [anon_sym_SEMI] = ACTIONS(6293), - [anon_sym_LBRACK] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6293), - [anon_sym_COMMA] = ACTIONS(6293), - [anon_sym_RBRACK] = ACTIONS(6293), - [anon_sym_LPAREN] = ACTIONS(6293), - [anon_sym_RPAREN] = ACTIONS(6293), - [anon_sym_RBRACE] = ACTIONS(6293), - [anon_sym_LT] = ACTIONS(6295), - [anon_sym_GT] = ACTIONS(6295), - [anon_sym_in] = ACTIONS(6293), - [anon_sym_where] = ACTIONS(6293), - [anon_sym_QMARK] = ACTIONS(6295), - [anon_sym_BANG] = ACTIONS(6295), - [anon_sym_PLUS_PLUS] = ACTIONS(6293), - [anon_sym_DASH_DASH] = ACTIONS(6293), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6293), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_PERCENT] = ACTIONS(6293), - [anon_sym_CARET] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6295), - [anon_sym_AMP] = ACTIONS(6295), - [anon_sym_LT_LT] = ACTIONS(6293), - [anon_sym_GT_GT] = ACTIONS(6295), - [anon_sym_GT_GT_GT] = ACTIONS(6293), - [anon_sym_EQ_EQ] = ACTIONS(6293), - [anon_sym_BANG_EQ] = ACTIONS(6293), - [anon_sym_GT_EQ] = ACTIONS(6293), - [anon_sym_LT_EQ] = ACTIONS(6293), - [anon_sym_DOT] = ACTIONS(6295), - [anon_sym_EQ_GT] = ACTIONS(6293), - [anon_sym_switch] = ACTIONS(6293), - [anon_sym_DOT_DOT] = ACTIONS(6293), - [anon_sym_and] = ACTIONS(6293), - [anon_sym_or] = ACTIONS(6295), - [anon_sym_AMP_AMP] = ACTIONS(6293), - [anon_sym_PIPE_PIPE] = ACTIONS(6293), - [sym_op_coalescing] = ACTIONS(6293), - [anon_sym_from] = ACTIONS(6293), - [anon_sym_join] = ACTIONS(6293), - [anon_sym_on] = ACTIONS(6293), - [anon_sym_equals] = ACTIONS(6293), - [anon_sym_let] = ACTIONS(6293), - [anon_sym_orderby] = ACTIONS(6293), - [anon_sym_group] = ACTIONS(6293), - [anon_sym_by] = ACTIONS(6293), - [anon_sym_select] = ACTIONS(6293), - [anon_sym_as] = ACTIONS(6293), - [anon_sym_is] = ACTIONS(6293), - [anon_sym_DASH_GT] = ACTIONS(6293), - [anon_sym_with] = ACTIONS(6293), - [aux_sym_preproc_if_token3] = ACTIONS(6293), - [aux_sym_preproc_else_token1] = ACTIONS(6293), - [aux_sym_preproc_elif_token1] = ACTIONS(6293), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LBRACK] = ACTIONS(5935), + [anon_sym_COLON] = ACTIONS(5935), + [anon_sym_COMMA] = ACTIONS(5935), + [anon_sym_RBRACK] = ACTIONS(5935), + [anon_sym_LPAREN] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_RBRACE] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5937), + [anon_sym_GT] = ACTIONS(5937), + [anon_sym_in] = ACTIONS(5937), + [anon_sym_QMARK] = ACTIONS(5937), + [anon_sym_DOT] = ACTIONS(5937), + [anon_sym_EQ_GT] = ACTIONS(5935), + [anon_sym_STAR] = ACTIONS(5935), + [anon_sym_switch] = ACTIONS(5935), + [anon_sym_when] = ACTIONS(5935), + [anon_sym_DOT_DOT] = ACTIONS(5935), + [anon_sym_LT_EQ] = ACTIONS(5935), + [anon_sym_GT_EQ] = ACTIONS(5935), + [anon_sym_and] = ACTIONS(5935), + [anon_sym_or] = ACTIONS(5935), + [anon_sym_EQ_EQ] = ACTIONS(5935), + [anon_sym_BANG_EQ] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5937), + [sym_op_bitwise_or] = ACTIONS(5937), + [anon_sym_CARET] = ACTIONS(5935), + [sym_op_left_shift] = ACTIONS(5935), + [sym_op_right_shift] = ACTIONS(5937), + [sym_op_unsigned_right_shift] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [sym_op_divide] = ACTIONS(5937), + [sym_op_modulo] = ACTIONS(5935), + [sym_op_coalescing] = ACTIONS(5935), + [anon_sym_BANG] = ACTIONS(5937), + [anon_sym_PLUS_PLUS] = ACTIONS(5935), + [anon_sym_DASH_DASH] = ACTIONS(5935), + [anon_sym_into] = ACTIONS(5935), + [anon_sym_on] = ACTIONS(5935), + [anon_sym_equals] = ACTIONS(5935), + [anon_sym_by] = ACTIONS(5935), + [anon_sym_as] = ACTIONS(5935), + [anon_sym_is] = ACTIONS(5935), + [anon_sym_DASH_GT] = ACTIONS(5935), + [anon_sym_with] = ACTIONS(5935), + [aux_sym_preproc_if_token3] = ACTIONS(5935), + [aux_sym_preproc_else_token1] = ACTIONS(5935), + [aux_sym_preproc_elif_token1] = ACTIONS(5935), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -581350,27 +575469,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4225] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1356), - [sym_op_lte] = STATE(1356), - [sym_op_eq] = STATE(1358), - [sym_op_neq] = STATE(1358), - [sym_op_gt] = STATE(1356), - [sym_op_gte] = STATE(1356), - [sym_op_and] = STATE(1360), - [sym_op_or] = STATE(1361), - [sym_op_bitwise_and] = STATE(1362), - [sym_op_bitwise_or] = STATE(1364), - [sym_op_bitwise_xor] = STATE(1367), - [sym_op_left_shift] = STATE(1368), - [sym_op_right_shift] = STATE(1368), - [sym_op_unsigned_right_shift] = STATE(1368), - [sym_op_plus] = STATE(1369), - [sym_op_minus] = STATE(1369), - [sym_op_multiply] = STATE(1370), - [sym_op_divide] = STATE(1370), - [sym_op_modulo] = STATE(1370), [sym_preproc_region] = STATE(4225), [sym_preproc_endregion] = STATE(4225), [sym_preproc_line] = STATE(4225), @@ -581380,41 +575478,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4225), [sym_preproc_define] = STATE(4225), [sym_preproc_undef] = STATE(4225), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6409), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_on] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(6921), + [anon_sym_LBRACK] = ACTIONS(6921), + [anon_sym_COLON] = ACTIONS(6921), + [anon_sym_COMMA] = ACTIONS(6921), + [anon_sym_RBRACK] = ACTIONS(6921), + [anon_sym_LPAREN] = ACTIONS(6921), + [anon_sym_RPAREN] = ACTIONS(6921), + [anon_sym_RBRACE] = ACTIONS(6921), + [anon_sym_LT] = ACTIONS(6923), + [anon_sym_GT] = ACTIONS(6923), + [anon_sym_in] = ACTIONS(6923), + [anon_sym_QMARK] = ACTIONS(6923), + [anon_sym_DOT] = ACTIONS(6923), + [anon_sym_EQ_GT] = ACTIONS(6921), + [anon_sym_STAR] = ACTIONS(6921), + [anon_sym_switch] = ACTIONS(6921), + [anon_sym_when] = ACTIONS(6921), + [anon_sym_DOT_DOT] = ACTIONS(6921), + [anon_sym_LT_EQ] = ACTIONS(6921), + [anon_sym_GT_EQ] = ACTIONS(6921), + [anon_sym_and] = ACTIONS(6921), + [anon_sym_or] = ACTIONS(6921), + [anon_sym_EQ_EQ] = ACTIONS(6921), + [anon_sym_BANG_EQ] = ACTIONS(6921), + [anon_sym_AMP_AMP] = ACTIONS(6921), + [anon_sym_PIPE_PIPE] = ACTIONS(6921), + [anon_sym_AMP] = ACTIONS(6923), + [sym_op_bitwise_or] = ACTIONS(6923), + [anon_sym_CARET] = ACTIONS(6921), + [sym_op_left_shift] = ACTIONS(6921), + [sym_op_right_shift] = ACTIONS(6923), + [sym_op_unsigned_right_shift] = ACTIONS(6921), + [anon_sym_PLUS] = ACTIONS(6923), + [anon_sym_DASH] = ACTIONS(6923), + [sym_op_divide] = ACTIONS(6923), + [sym_op_modulo] = ACTIONS(6921), + [sym_op_coalescing] = ACTIONS(6921), + [anon_sym_BANG] = ACTIONS(6923), + [anon_sym_PLUS_PLUS] = ACTIONS(6921), + [anon_sym_DASH_DASH] = ACTIONS(6921), + [anon_sym_into] = ACTIONS(6921), + [anon_sym_on] = ACTIONS(6921), + [anon_sym_equals] = ACTIONS(6921), + [anon_sym_by] = ACTIONS(6921), + [anon_sym_as] = ACTIONS(6921), + [anon_sym_is] = ACTIONS(6921), + [anon_sym_DASH_GT] = ACTIONS(6921), + [anon_sym_with] = ACTIONS(6921), + [aux_sym_preproc_if_token3] = ACTIONS(6921), + [aux_sym_preproc_else_token1] = ACTIONS(6921), + [aux_sym_preproc_elif_token1] = ACTIONS(6921), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -581427,27 +575541,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4226] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), [sym_preproc_region] = STATE(4226), [sym_preproc_endregion] = STATE(4226), [sym_preproc_line] = STATE(4226), @@ -581457,41 +575550,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4226), [sym_preproc_define] = STATE(4226), [sym_preproc_undef] = STATE(4226), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_equals] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(5947), + [anon_sym_LBRACK] = ACTIONS(5947), + [anon_sym_COLON] = ACTIONS(5947), + [anon_sym_COMMA] = ACTIONS(5947), + [anon_sym_RBRACK] = ACTIONS(5947), + [anon_sym_LPAREN] = ACTIONS(5947), + [anon_sym_RPAREN] = ACTIONS(5947), + [anon_sym_RBRACE] = ACTIONS(5947), + [anon_sym_LT] = ACTIONS(5949), + [anon_sym_GT] = ACTIONS(5949), + [anon_sym_in] = ACTIONS(5949), + [anon_sym_QMARK] = ACTIONS(5949), + [anon_sym_DOT] = ACTIONS(5949), + [anon_sym_EQ_GT] = ACTIONS(5947), + [anon_sym_STAR] = ACTIONS(5947), + [anon_sym_switch] = ACTIONS(5947), + [anon_sym_when] = ACTIONS(5947), + [anon_sym_DOT_DOT] = ACTIONS(5947), + [anon_sym_LT_EQ] = ACTIONS(5947), + [anon_sym_GT_EQ] = ACTIONS(5947), + [anon_sym_and] = ACTIONS(5947), + [anon_sym_or] = ACTIONS(5947), + [anon_sym_EQ_EQ] = ACTIONS(5947), + [anon_sym_BANG_EQ] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [anon_sym_AMP] = ACTIONS(5949), + [sym_op_bitwise_or] = ACTIONS(5949), + [anon_sym_CARET] = ACTIONS(5947), + [sym_op_left_shift] = ACTIONS(5947), + [sym_op_right_shift] = ACTIONS(5949), + [sym_op_unsigned_right_shift] = ACTIONS(5947), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [sym_op_divide] = ACTIONS(5949), + [sym_op_modulo] = ACTIONS(5947), + [sym_op_coalescing] = ACTIONS(5947), + [anon_sym_BANG] = ACTIONS(5949), + [anon_sym_PLUS_PLUS] = ACTIONS(5947), + [anon_sym_DASH_DASH] = ACTIONS(5947), + [anon_sym_into] = ACTIONS(5947), + [anon_sym_on] = ACTIONS(5947), + [anon_sym_equals] = ACTIONS(5947), + [anon_sym_by] = ACTIONS(5947), + [anon_sym_as] = ACTIONS(5947), + [anon_sym_is] = ACTIONS(5947), + [anon_sym_DASH_GT] = ACTIONS(5947), + [anon_sym_with] = ACTIONS(5947), + [aux_sym_preproc_if_token3] = ACTIONS(5947), + [aux_sym_preproc_else_token1] = ACTIONS(5947), + [aux_sym_preproc_elif_token1] = ACTIONS(5947), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -581504,27 +575613,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4227] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4227), [sym_preproc_endregion] = STATE(4227), [sym_preproc_line] = STATE(4227), @@ -581534,41 +575622,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4227), [sym_preproc_define] = STATE(4227), [sym_preproc_undef] = STATE(4227), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6329), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6483), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5951), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_COLON] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_RBRACK] = ACTIONS(5951), + [anon_sym_LPAREN] = ACTIONS(5951), + [anon_sym_RPAREN] = ACTIONS(5951), + [anon_sym_RBRACE] = ACTIONS(5951), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_in] = ACTIONS(5953), + [anon_sym_QMARK] = ACTIONS(5953), + [anon_sym_DOT] = ACTIONS(5953), + [anon_sym_EQ_GT] = ACTIONS(5951), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_switch] = ACTIONS(5951), + [anon_sym_when] = ACTIONS(5951), + [anon_sym_DOT_DOT] = ACTIONS(5951), + [anon_sym_LT_EQ] = ACTIONS(5951), + [anon_sym_GT_EQ] = ACTIONS(5951), + [anon_sym_and] = ACTIONS(5951), + [anon_sym_or] = ACTIONS(5951), + [anon_sym_EQ_EQ] = ACTIONS(5951), + [anon_sym_BANG_EQ] = ACTIONS(5951), + [anon_sym_AMP_AMP] = ACTIONS(5951), + [anon_sym_PIPE_PIPE] = ACTIONS(5951), + [anon_sym_AMP] = ACTIONS(5953), + [sym_op_bitwise_or] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5951), + [sym_op_left_shift] = ACTIONS(5951), + [sym_op_right_shift] = ACTIONS(5953), + [sym_op_unsigned_right_shift] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [sym_op_divide] = ACTIONS(5953), + [sym_op_modulo] = ACTIONS(5951), + [sym_op_coalescing] = ACTIONS(5951), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PLUS_PLUS] = ACTIONS(5951), + [anon_sym_DASH_DASH] = ACTIONS(5951), + [anon_sym_into] = ACTIONS(5951), + [anon_sym_on] = ACTIONS(5951), + [anon_sym_equals] = ACTIONS(5951), + [anon_sym_by] = ACTIONS(5951), + [anon_sym_as] = ACTIONS(5951), + [anon_sym_is] = ACTIONS(5951), + [anon_sym_DASH_GT] = ACTIONS(5951), + [anon_sym_with] = ACTIONS(5951), + [aux_sym_preproc_if_token3] = ACTIONS(5951), + [aux_sym_preproc_else_token1] = ACTIONS(5951), + [aux_sym_preproc_elif_token1] = ACTIONS(5951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -581581,27 +575685,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4228] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4228), [sym_preproc_endregion] = STATE(4228), [sym_preproc_line] = STATE(4228), @@ -581611,41 +575694,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4228), [sym_preproc_define] = STATE(4228), [sym_preproc_undef] = STATE(4228), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6451), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6451), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LBRACK] = ACTIONS(5955), + [anon_sym_COLON] = ACTIONS(5955), + [anon_sym_COMMA] = ACTIONS(5955), + [anon_sym_RBRACK] = ACTIONS(5955), + [anon_sym_LPAREN] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_RBRACE] = ACTIONS(5955), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_in] = ACTIONS(5957), + [anon_sym_QMARK] = ACTIONS(5957), + [anon_sym_DOT] = ACTIONS(5957), + [anon_sym_EQ_GT] = ACTIONS(5955), + [anon_sym_STAR] = ACTIONS(5955), + [anon_sym_switch] = ACTIONS(5955), + [anon_sym_when] = ACTIONS(5955), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_LT_EQ] = ACTIONS(5955), + [anon_sym_GT_EQ] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5955), + [anon_sym_or] = ACTIONS(5955), + [anon_sym_EQ_EQ] = ACTIONS(5955), + [anon_sym_BANG_EQ] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5957), + [sym_op_bitwise_or] = ACTIONS(5957), + [anon_sym_CARET] = ACTIONS(5955), + [sym_op_left_shift] = ACTIONS(5955), + [sym_op_right_shift] = ACTIONS(5957), + [sym_op_unsigned_right_shift] = ACTIONS(5955), + [anon_sym_PLUS] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(5957), + [sym_op_divide] = ACTIONS(5957), + [sym_op_modulo] = ACTIONS(5955), + [sym_op_coalescing] = ACTIONS(5955), + [anon_sym_BANG] = ACTIONS(5957), + [anon_sym_PLUS_PLUS] = ACTIONS(5955), + [anon_sym_DASH_DASH] = ACTIONS(5955), + [anon_sym_into] = ACTIONS(5955), + [anon_sym_on] = ACTIONS(5955), + [anon_sym_equals] = ACTIONS(5955), + [anon_sym_by] = ACTIONS(5955), + [anon_sym_as] = ACTIONS(5955), + [anon_sym_is] = ACTIONS(5955), + [anon_sym_DASH_GT] = ACTIONS(5955), + [anon_sym_with] = ACTIONS(5955), + [aux_sym_preproc_if_token3] = ACTIONS(5955), + [aux_sym_preproc_else_token1] = ACTIONS(5955), + [aux_sym_preproc_elif_token1] = ACTIONS(5955), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -581658,27 +575757,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4229] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), [sym_preproc_region] = STATE(4229), [sym_preproc_endregion] = STATE(4229), [sym_preproc_line] = STATE(4229), @@ -581688,41 +575766,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4229), [sym_preproc_define] = STATE(4229), [sym_preproc_undef] = STATE(4229), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6423), - [anon_sym_is] = ACTIONS(6425), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5971), + [anon_sym_LBRACK] = ACTIONS(5971), + [anon_sym_COLON] = ACTIONS(5971), + [anon_sym_COMMA] = ACTIONS(5971), + [anon_sym_RBRACK] = ACTIONS(5971), + [anon_sym_LPAREN] = ACTIONS(5971), + [anon_sym_RPAREN] = ACTIONS(5971), + [anon_sym_RBRACE] = ACTIONS(5971), + [anon_sym_LT] = ACTIONS(5973), + [anon_sym_GT] = ACTIONS(5973), + [anon_sym_in] = ACTIONS(5973), + [anon_sym_QMARK] = ACTIONS(5973), + [anon_sym_DOT] = ACTIONS(5973), + [anon_sym_EQ_GT] = ACTIONS(5971), + [anon_sym_STAR] = ACTIONS(5971), + [anon_sym_switch] = ACTIONS(5971), + [anon_sym_when] = ACTIONS(5971), + [anon_sym_DOT_DOT] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_and] = ACTIONS(5971), + [anon_sym_or] = ACTIONS(5971), + [anon_sym_EQ_EQ] = ACTIONS(5971), + [anon_sym_BANG_EQ] = ACTIONS(5971), + [anon_sym_AMP_AMP] = ACTIONS(5971), + [anon_sym_PIPE_PIPE] = ACTIONS(5971), + [anon_sym_AMP] = ACTIONS(5973), + [sym_op_bitwise_or] = ACTIONS(5973), + [anon_sym_CARET] = ACTIONS(5971), + [sym_op_left_shift] = ACTIONS(5971), + [sym_op_right_shift] = ACTIONS(5973), + [sym_op_unsigned_right_shift] = ACTIONS(5971), + [anon_sym_PLUS] = ACTIONS(5973), + [anon_sym_DASH] = ACTIONS(5973), + [sym_op_divide] = ACTIONS(5973), + [sym_op_modulo] = ACTIONS(5971), + [sym_op_coalescing] = ACTIONS(5971), + [anon_sym_BANG] = ACTIONS(5973), + [anon_sym_PLUS_PLUS] = ACTIONS(5971), + [anon_sym_DASH_DASH] = ACTIONS(5971), + [anon_sym_into] = ACTIONS(5971), + [anon_sym_on] = ACTIONS(5971), + [anon_sym_equals] = ACTIONS(5971), + [anon_sym_by] = ACTIONS(5971), + [anon_sym_as] = ACTIONS(5971), + [anon_sym_is] = ACTIONS(5971), + [anon_sym_DASH_GT] = ACTIONS(5971), + [anon_sym_with] = ACTIONS(5971), + [aux_sym_preproc_if_token3] = ACTIONS(5971), + [aux_sym_preproc_else_token1] = ACTIONS(5971), + [aux_sym_preproc_elif_token1] = ACTIONS(5971), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -581744,62 +575838,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4230), [sym_preproc_define] = STATE(4230), [sym_preproc_undef] = STATE(4230), - [anon_sym_SEMI] = ACTIONS(6217), - [anon_sym_LBRACK] = ACTIONS(6217), - [anon_sym_COLON] = ACTIONS(6217), - [anon_sym_COMMA] = ACTIONS(6217), - [anon_sym_RBRACK] = ACTIONS(6217), - [anon_sym_LPAREN] = ACTIONS(6217), - [anon_sym_RPAREN] = ACTIONS(6217), - [anon_sym_RBRACE] = ACTIONS(6217), - [anon_sym_LT] = ACTIONS(6219), - [anon_sym_GT] = ACTIONS(6219), - [anon_sym_in] = ACTIONS(6217), - [anon_sym_where] = ACTIONS(6217), - [anon_sym_QMARK] = ACTIONS(6219), - [anon_sym_BANG] = ACTIONS(6219), - [anon_sym_PLUS_PLUS] = ACTIONS(6217), - [anon_sym_DASH_DASH] = ACTIONS(6217), - [anon_sym_PLUS] = ACTIONS(6219), - [anon_sym_DASH] = ACTIONS(6219), - [anon_sym_STAR] = ACTIONS(6217), - [anon_sym_SLASH] = ACTIONS(6219), - [anon_sym_PERCENT] = ACTIONS(6217), - [anon_sym_CARET] = ACTIONS(6217), - [anon_sym_PIPE] = ACTIONS(6219), - [anon_sym_AMP] = ACTIONS(6219), - [anon_sym_LT_LT] = ACTIONS(6217), - [anon_sym_GT_GT] = ACTIONS(6219), - [anon_sym_GT_GT_GT] = ACTIONS(6217), - [anon_sym_EQ_EQ] = ACTIONS(6217), - [anon_sym_BANG_EQ] = ACTIONS(6217), - [anon_sym_GT_EQ] = ACTIONS(6217), - [anon_sym_LT_EQ] = ACTIONS(6217), - [anon_sym_DOT] = ACTIONS(6219), - [anon_sym_EQ_GT] = ACTIONS(6217), - [anon_sym_switch] = ACTIONS(6217), - [anon_sym_DOT_DOT] = ACTIONS(6217), - [anon_sym_and] = ACTIONS(6217), - [anon_sym_or] = ACTIONS(6219), - [anon_sym_AMP_AMP] = ACTIONS(6217), - [anon_sym_PIPE_PIPE] = ACTIONS(6217), - [sym_op_coalescing] = ACTIONS(6217), - [anon_sym_from] = ACTIONS(6217), - [anon_sym_join] = ACTIONS(6217), - [anon_sym_on] = ACTIONS(6217), - [anon_sym_equals] = ACTIONS(6217), - [anon_sym_let] = ACTIONS(6217), - [anon_sym_orderby] = ACTIONS(6217), - [anon_sym_group] = ACTIONS(6217), - [anon_sym_by] = ACTIONS(6217), - [anon_sym_select] = ACTIONS(6217), - [anon_sym_as] = ACTIONS(6217), - [anon_sym_is] = ACTIONS(6217), - [anon_sym_DASH_GT] = ACTIONS(6217), - [anon_sym_with] = ACTIONS(6217), - [aux_sym_preproc_if_token3] = ACTIONS(6217), - [aux_sym_preproc_else_token1] = ACTIONS(6217), - [aux_sym_preproc_elif_token1] = ACTIONS(6217), + [anon_sym_SEMI] = ACTIONS(5975), + [anon_sym_LBRACK] = ACTIONS(5975), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_COMMA] = ACTIONS(5975), + [anon_sym_RBRACK] = ACTIONS(5975), + [anon_sym_LPAREN] = ACTIONS(5975), + [anon_sym_RPAREN] = ACTIONS(5975), + [anon_sym_RBRACE] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5977), + [anon_sym_GT] = ACTIONS(5977), + [anon_sym_in] = ACTIONS(5977), + [anon_sym_QMARK] = ACTIONS(5977), + [anon_sym_DOT] = ACTIONS(5977), + [anon_sym_EQ_GT] = ACTIONS(5975), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_switch] = ACTIONS(5975), + [anon_sym_when] = ACTIONS(5975), + [anon_sym_DOT_DOT] = ACTIONS(5975), + [anon_sym_LT_EQ] = ACTIONS(5975), + [anon_sym_GT_EQ] = ACTIONS(5975), + [anon_sym_and] = ACTIONS(5975), + [anon_sym_or] = ACTIONS(5975), + [anon_sym_EQ_EQ] = ACTIONS(5975), + [anon_sym_BANG_EQ] = ACTIONS(5975), + [anon_sym_AMP_AMP] = ACTIONS(5975), + [anon_sym_PIPE_PIPE] = ACTIONS(5975), + [anon_sym_AMP] = ACTIONS(5977), + [sym_op_bitwise_or] = ACTIONS(5977), + [anon_sym_CARET] = ACTIONS(5975), + [sym_op_left_shift] = ACTIONS(5975), + [sym_op_right_shift] = ACTIONS(5977), + [sym_op_unsigned_right_shift] = ACTIONS(5975), + [anon_sym_PLUS] = ACTIONS(5977), + [anon_sym_DASH] = ACTIONS(5977), + [sym_op_divide] = ACTIONS(5977), + [sym_op_modulo] = ACTIONS(5975), + [sym_op_coalescing] = ACTIONS(5975), + [anon_sym_BANG] = ACTIONS(5977), + [anon_sym_PLUS_PLUS] = ACTIONS(5975), + [anon_sym_DASH_DASH] = ACTIONS(5975), + [anon_sym_into] = ACTIONS(5975), + [anon_sym_on] = ACTIONS(5975), + [anon_sym_equals] = ACTIONS(5975), + [anon_sym_by] = ACTIONS(5975), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5975), + [anon_sym_DASH_GT] = ACTIONS(5975), + [anon_sym_with] = ACTIONS(5975), + [aux_sym_preproc_if_token3] = ACTIONS(5975), + [aux_sym_preproc_else_token1] = ACTIONS(5975), + [aux_sym_preproc_elif_token1] = ACTIONS(5975), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -581821,62 +575910,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4231), [sym_preproc_define] = STATE(4231), [sym_preproc_undef] = STATE(4231), - [anon_sym_SEMI] = ACTIONS(6263), - [anon_sym_LBRACK] = ACTIONS(6263), - [anon_sym_COLON] = ACTIONS(6263), - [anon_sym_COMMA] = ACTIONS(6263), - [anon_sym_RBRACK] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6263), - [anon_sym_RPAREN] = ACTIONS(6263), - [anon_sym_RBRACE] = ACTIONS(6263), - [anon_sym_LT] = ACTIONS(6265), - [anon_sym_GT] = ACTIONS(6265), - [anon_sym_in] = ACTIONS(6263), - [anon_sym_where] = ACTIONS(6263), - [anon_sym_QMARK] = ACTIONS(6265), - [anon_sym_BANG] = ACTIONS(6265), - [anon_sym_PLUS_PLUS] = ACTIONS(6263), - [anon_sym_DASH_DASH] = ACTIONS(6263), - [anon_sym_PLUS] = ACTIONS(6265), - [anon_sym_DASH] = ACTIONS(6265), - [anon_sym_STAR] = ACTIONS(6263), - [anon_sym_SLASH] = ACTIONS(6265), - [anon_sym_PERCENT] = ACTIONS(6263), - [anon_sym_CARET] = ACTIONS(6263), - [anon_sym_PIPE] = ACTIONS(6265), - [anon_sym_AMP] = ACTIONS(6265), - [anon_sym_LT_LT] = ACTIONS(6263), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6263), - [anon_sym_EQ_EQ] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6263), - [anon_sym_LT_EQ] = ACTIONS(6263), - [anon_sym_DOT] = ACTIONS(6265), - [anon_sym_EQ_GT] = ACTIONS(6263), - [anon_sym_switch] = ACTIONS(6263), - [anon_sym_DOT_DOT] = ACTIONS(6263), - [anon_sym_and] = ACTIONS(6263), - [anon_sym_or] = ACTIONS(6265), - [anon_sym_AMP_AMP] = ACTIONS(6263), - [anon_sym_PIPE_PIPE] = ACTIONS(6263), - [sym_op_coalescing] = ACTIONS(6263), - [anon_sym_from] = ACTIONS(6263), - [anon_sym_join] = ACTIONS(6263), - [anon_sym_on] = ACTIONS(6263), - [anon_sym_equals] = ACTIONS(6263), - [anon_sym_let] = ACTIONS(6263), - [anon_sym_orderby] = ACTIONS(6263), - [anon_sym_group] = ACTIONS(6263), - [anon_sym_by] = ACTIONS(6263), - [anon_sym_select] = ACTIONS(6263), - [anon_sym_as] = ACTIONS(6263), - [anon_sym_is] = ACTIONS(6263), - [anon_sym_DASH_GT] = ACTIONS(6263), - [anon_sym_with] = ACTIONS(6263), - [aux_sym_preproc_if_token3] = ACTIONS(6263), - [aux_sym_preproc_else_token1] = ACTIONS(6263), - [aux_sym_preproc_elif_token1] = ACTIONS(6263), + [anon_sym_SEMI] = ACTIONS(5887), + [anon_sym_LBRACK] = ACTIONS(5887), + [anon_sym_COLON] = ACTIONS(5887), + [anon_sym_COMMA] = ACTIONS(5887), + [anon_sym_RBRACK] = ACTIONS(5887), + [anon_sym_LPAREN] = ACTIONS(5887), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_RBRACE] = ACTIONS(5887), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_in] = ACTIONS(5889), + [anon_sym_QMARK] = ACTIONS(5889), + [anon_sym_DOT] = ACTIONS(5889), + [anon_sym_EQ_GT] = ACTIONS(5887), + [anon_sym_STAR] = ACTIONS(5887), + [anon_sym_switch] = ACTIONS(5887), + [anon_sym_when] = ACTIONS(5887), + [anon_sym_DOT_DOT] = ACTIONS(5887), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_and] = ACTIONS(5887), + [anon_sym_or] = ACTIONS(5887), + [anon_sym_EQ_EQ] = ACTIONS(5887), + [anon_sym_BANG_EQ] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5889), + [sym_op_bitwise_or] = ACTIONS(5889), + [anon_sym_CARET] = ACTIONS(5887), + [sym_op_left_shift] = ACTIONS(5887), + [sym_op_right_shift] = ACTIONS(5889), + [sym_op_unsigned_right_shift] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5889), + [anon_sym_DASH] = ACTIONS(5889), + [sym_op_divide] = ACTIONS(5889), + [sym_op_modulo] = ACTIONS(5887), + [sym_op_coalescing] = ACTIONS(5887), + [anon_sym_BANG] = ACTIONS(5889), + [anon_sym_PLUS_PLUS] = ACTIONS(5887), + [anon_sym_DASH_DASH] = ACTIONS(5887), + [anon_sym_into] = ACTIONS(5887), + [anon_sym_on] = ACTIONS(5887), + [anon_sym_equals] = ACTIONS(5887), + [anon_sym_by] = ACTIONS(5887), + [anon_sym_as] = ACTIONS(5887), + [anon_sym_is] = ACTIONS(5887), + [anon_sym_DASH_GT] = ACTIONS(5887), + [anon_sym_with] = ACTIONS(5887), + [aux_sym_preproc_if_token3] = ACTIONS(5887), + [aux_sym_preproc_else_token1] = ACTIONS(5887), + [aux_sym_preproc_elif_token1] = ACTIONS(5887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -581889,27 +575973,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4232] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4232), [sym_preproc_endregion] = STATE(4232), [sym_preproc_line] = STATE(4232), @@ -581919,41 +575982,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4232), [sym_preproc_define] = STATE(4232), [sym_preproc_undef] = STATE(4232), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6467), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6467), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6011), + [anon_sym_LBRACK] = ACTIONS(6011), + [anon_sym_COLON] = ACTIONS(6011), + [anon_sym_COMMA] = ACTIONS(6011), + [anon_sym_RBRACK] = ACTIONS(6011), + [anon_sym_LPAREN] = ACTIONS(6011), + [anon_sym_RPAREN] = ACTIONS(6011), + [anon_sym_RBRACE] = ACTIONS(6011), + [anon_sym_LT] = ACTIONS(6013), + [anon_sym_GT] = ACTIONS(6013), + [anon_sym_in] = ACTIONS(6013), + [anon_sym_QMARK] = ACTIONS(6013), + [anon_sym_DOT] = ACTIONS(6013), + [anon_sym_EQ_GT] = ACTIONS(6011), + [anon_sym_STAR] = ACTIONS(6011), + [anon_sym_switch] = ACTIONS(6011), + [anon_sym_when] = ACTIONS(6011), + [anon_sym_DOT_DOT] = ACTIONS(6011), + [anon_sym_LT_EQ] = ACTIONS(6011), + [anon_sym_GT_EQ] = ACTIONS(6011), + [anon_sym_and] = ACTIONS(6011), + [anon_sym_or] = ACTIONS(6011), + [anon_sym_EQ_EQ] = ACTIONS(6011), + [anon_sym_BANG_EQ] = ACTIONS(6011), + [anon_sym_AMP_AMP] = ACTIONS(6011), + [anon_sym_PIPE_PIPE] = ACTIONS(6011), + [anon_sym_AMP] = ACTIONS(6013), + [sym_op_bitwise_or] = ACTIONS(6013), + [anon_sym_CARET] = ACTIONS(6011), + [sym_op_left_shift] = ACTIONS(6011), + [sym_op_right_shift] = ACTIONS(6013), + [sym_op_unsigned_right_shift] = ACTIONS(6011), + [anon_sym_PLUS] = ACTIONS(6013), + [anon_sym_DASH] = ACTIONS(6013), + [sym_op_divide] = ACTIONS(6013), + [sym_op_modulo] = ACTIONS(6011), + [sym_op_coalescing] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6013), + [anon_sym_PLUS_PLUS] = ACTIONS(6011), + [anon_sym_DASH_DASH] = ACTIONS(6011), + [anon_sym_into] = ACTIONS(6011), + [anon_sym_on] = ACTIONS(6011), + [anon_sym_equals] = ACTIONS(6011), + [anon_sym_by] = ACTIONS(6011), + [anon_sym_as] = ACTIONS(6011), + [anon_sym_is] = ACTIONS(6011), + [anon_sym_DASH_GT] = ACTIONS(6011), + [anon_sym_with] = ACTIONS(6011), + [aux_sym_preproc_if_token3] = ACTIONS(6011), + [aux_sym_preproc_else_token1] = ACTIONS(6011), + [aux_sym_preproc_elif_token1] = ACTIONS(6011), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -581975,62 +576054,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4233), [sym_preproc_define] = STATE(4233), [sym_preproc_undef] = STATE(4233), - [anon_sym_SEMI] = ACTIONS(6347), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_COLON] = ACTIONS(6347), - [anon_sym_COMMA] = ACTIONS(6347), - [anon_sym_RBRACK] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_RBRACE] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_in] = ACTIONS(6347), - [anon_sym_where] = ACTIONS(6347), - [anon_sym_QMARK] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PLUS_PLUS] = ACTIONS(6347), - [anon_sym_DASH_DASH] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6349), - [anon_sym_DASH] = ACTIONS(6349), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6349), - [anon_sym_PERCENT] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_AMP] = ACTIONS(6349), - [anon_sym_LT_LT] = ACTIONS(6347), - [anon_sym_GT_GT] = ACTIONS(6349), - [anon_sym_GT_GT_GT] = ACTIONS(6347), - [anon_sym_EQ_EQ] = ACTIONS(6347), - [anon_sym_BANG_EQ] = ACTIONS(6347), - [anon_sym_GT_EQ] = ACTIONS(6347), - [anon_sym_LT_EQ] = ACTIONS(6347), - [anon_sym_DOT] = ACTIONS(6349), - [anon_sym_EQ_GT] = ACTIONS(6347), - [anon_sym_switch] = ACTIONS(6347), - [anon_sym_DOT_DOT] = ACTIONS(6347), - [anon_sym_and] = ACTIONS(6347), - [anon_sym_or] = ACTIONS(6349), - [anon_sym_AMP_AMP] = ACTIONS(6347), - [anon_sym_PIPE_PIPE] = ACTIONS(6347), - [sym_op_coalescing] = ACTIONS(6347), - [anon_sym_from] = ACTIONS(6347), - [anon_sym_join] = ACTIONS(6347), - [anon_sym_on] = ACTIONS(6347), - [anon_sym_equals] = ACTIONS(6347), - [anon_sym_let] = ACTIONS(6347), - [anon_sym_orderby] = ACTIONS(6347), - [anon_sym_group] = ACTIONS(6347), - [anon_sym_by] = ACTIONS(6347), - [anon_sym_select] = ACTIONS(6347), - [anon_sym_as] = ACTIONS(6347), - [anon_sym_is] = ACTIONS(6347), - [anon_sym_DASH_GT] = ACTIONS(6347), - [anon_sym_with] = ACTIONS(6347), - [aux_sym_preproc_if_token3] = ACTIONS(6347), - [aux_sym_preproc_else_token1] = ACTIONS(6347), - [aux_sym_preproc_elif_token1] = ACTIONS(6347), + [anon_sym_SEMI] = ACTIONS(5787), + [anon_sym_LBRACK] = ACTIONS(5787), + [anon_sym_COLON] = ACTIONS(5787), + [anon_sym_COMMA] = ACTIONS(5787), + [anon_sym_RBRACK] = ACTIONS(5787), + [anon_sym_LPAREN] = ACTIONS(5787), + [anon_sym_RPAREN] = ACTIONS(5787), + [anon_sym_RBRACE] = ACTIONS(5787), + [anon_sym_LT] = ACTIONS(5789), + [anon_sym_GT] = ACTIONS(5789), + [anon_sym_in] = ACTIONS(5789), + [anon_sym_QMARK] = ACTIONS(5789), + [anon_sym_DOT] = ACTIONS(5789), + [anon_sym_EQ_GT] = ACTIONS(5787), + [anon_sym_STAR] = ACTIONS(5787), + [anon_sym_switch] = ACTIONS(5787), + [anon_sym_when] = ACTIONS(5787), + [anon_sym_DOT_DOT] = ACTIONS(5787), + [anon_sym_LT_EQ] = ACTIONS(5787), + [anon_sym_GT_EQ] = ACTIONS(5787), + [anon_sym_and] = ACTIONS(5787), + [anon_sym_or] = ACTIONS(5787), + [anon_sym_EQ_EQ] = ACTIONS(5787), + [anon_sym_BANG_EQ] = ACTIONS(5787), + [anon_sym_AMP_AMP] = ACTIONS(5787), + [anon_sym_PIPE_PIPE] = ACTIONS(5787), + [anon_sym_AMP] = ACTIONS(5789), + [sym_op_bitwise_or] = ACTIONS(5789), + [anon_sym_CARET] = ACTIONS(5787), + [sym_op_left_shift] = ACTIONS(5787), + [sym_op_right_shift] = ACTIONS(5789), + [sym_op_unsigned_right_shift] = ACTIONS(5787), + [anon_sym_PLUS] = ACTIONS(5789), + [anon_sym_DASH] = ACTIONS(5789), + [sym_op_divide] = ACTIONS(5789), + [sym_op_modulo] = ACTIONS(5787), + [sym_op_coalescing] = ACTIONS(5787), + [anon_sym_BANG] = ACTIONS(5789), + [anon_sym_PLUS_PLUS] = ACTIONS(5787), + [anon_sym_DASH_DASH] = ACTIONS(5787), + [anon_sym_into] = ACTIONS(5787), + [anon_sym_on] = ACTIONS(5787), + [anon_sym_equals] = ACTIONS(5787), + [anon_sym_by] = ACTIONS(5787), + [anon_sym_as] = ACTIONS(5787), + [anon_sym_is] = ACTIONS(5787), + [anon_sym_DASH_GT] = ACTIONS(5787), + [anon_sym_with] = ACTIONS(5787), + [aux_sym_preproc_if_token3] = ACTIONS(5787), + [aux_sym_preproc_else_token1] = ACTIONS(5787), + [aux_sym_preproc_elif_token1] = ACTIONS(5787), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -582043,27 +576117,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4234] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), [sym_preproc_region] = STATE(4234), [sym_preproc_endregion] = STATE(4234), [sym_preproc_line] = STATE(4234), @@ -582073,41 +576126,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4234), [sym_preproc_define] = STATE(4234), [sym_preproc_undef] = STATE(4234), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_by] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(6003), + [anon_sym_LBRACK] = ACTIONS(6003), + [anon_sym_COLON] = ACTIONS(6003), + [anon_sym_COMMA] = ACTIONS(6003), + [anon_sym_RBRACK] = ACTIONS(6003), + [anon_sym_LPAREN] = ACTIONS(6003), + [anon_sym_RPAREN] = ACTIONS(6003), + [anon_sym_RBRACE] = ACTIONS(6003), + [anon_sym_LT] = ACTIONS(6005), + [anon_sym_GT] = ACTIONS(6005), + [anon_sym_in] = ACTIONS(6005), + [anon_sym_QMARK] = ACTIONS(6005), + [anon_sym_DOT] = ACTIONS(6005), + [anon_sym_EQ_GT] = ACTIONS(6003), + [anon_sym_STAR] = ACTIONS(6003), + [anon_sym_switch] = ACTIONS(6003), + [anon_sym_when] = ACTIONS(6003), + [anon_sym_DOT_DOT] = ACTIONS(6003), + [anon_sym_LT_EQ] = ACTIONS(6003), + [anon_sym_GT_EQ] = ACTIONS(6003), + [anon_sym_and] = ACTIONS(6003), + [anon_sym_or] = ACTIONS(6003), + [anon_sym_EQ_EQ] = ACTIONS(6003), + [anon_sym_BANG_EQ] = ACTIONS(6003), + [anon_sym_AMP_AMP] = ACTIONS(6003), + [anon_sym_PIPE_PIPE] = ACTIONS(6003), + [anon_sym_AMP] = ACTIONS(6005), + [sym_op_bitwise_or] = ACTIONS(6005), + [anon_sym_CARET] = ACTIONS(6003), + [sym_op_left_shift] = ACTIONS(6003), + [sym_op_right_shift] = ACTIONS(6005), + [sym_op_unsigned_right_shift] = ACTIONS(6003), + [anon_sym_PLUS] = ACTIONS(6005), + [anon_sym_DASH] = ACTIONS(6005), + [sym_op_divide] = ACTIONS(6005), + [sym_op_modulo] = ACTIONS(6003), + [sym_op_coalescing] = ACTIONS(6003), + [anon_sym_BANG] = ACTIONS(6005), + [anon_sym_PLUS_PLUS] = ACTIONS(6003), + [anon_sym_DASH_DASH] = ACTIONS(6003), + [anon_sym_into] = ACTIONS(6003), + [anon_sym_on] = ACTIONS(6003), + [anon_sym_equals] = ACTIONS(6003), + [anon_sym_by] = ACTIONS(6003), + [anon_sym_as] = ACTIONS(6003), + [anon_sym_is] = ACTIONS(6003), + [anon_sym_DASH_GT] = ACTIONS(6003), + [anon_sym_with] = ACTIONS(6003), + [aux_sym_preproc_if_token3] = ACTIONS(6003), + [aux_sym_preproc_else_token1] = ACTIONS(6003), + [aux_sym_preproc_elif_token1] = ACTIONS(6003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -582120,27 +576189,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4235] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7921), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4235), [sym_preproc_endregion] = STATE(4235), [sym_preproc_line] = STATE(4235), @@ -582150,41 +576218,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4235), [sym_preproc_define] = STATE(4235), [sym_preproc_undef] = STATE(4235), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6443), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6445), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -582197,6 +576261,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4236] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4236), [sym_preproc_endregion] = STATE(4236), [sym_preproc_line] = STATE(4236), @@ -582206,62 +576285,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4236), [sym_preproc_define] = STATE(4236), [sym_preproc_undef] = STATE(4236), - [anon_sym_SEMI] = ACTIONS(6317), - [anon_sym_LBRACK] = ACTIONS(6317), - [anon_sym_COLON] = ACTIONS(6317), - [anon_sym_COMMA] = ACTIONS(6317), - [anon_sym_RBRACK] = ACTIONS(6317), - [anon_sym_LPAREN] = ACTIONS(6317), - [anon_sym_RPAREN] = ACTIONS(6317), - [anon_sym_RBRACE] = ACTIONS(6317), - [anon_sym_LT] = ACTIONS(6319), - [anon_sym_GT] = ACTIONS(6319), - [anon_sym_in] = ACTIONS(6317), - [anon_sym_where] = ACTIONS(6317), - [anon_sym_QMARK] = ACTIONS(6319), - [anon_sym_BANG] = ACTIONS(6319), - [anon_sym_PLUS_PLUS] = ACTIONS(6317), - [anon_sym_DASH_DASH] = ACTIONS(6317), - [anon_sym_PLUS] = ACTIONS(6319), - [anon_sym_DASH] = ACTIONS(6319), - [anon_sym_STAR] = ACTIONS(6317), - [anon_sym_SLASH] = ACTIONS(6319), - [anon_sym_PERCENT] = ACTIONS(6317), - [anon_sym_CARET] = ACTIONS(6317), - [anon_sym_PIPE] = ACTIONS(6319), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_GT_GT] = ACTIONS(6319), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_EQ_EQ] = ACTIONS(6317), - [anon_sym_BANG_EQ] = ACTIONS(6317), - [anon_sym_GT_EQ] = ACTIONS(6317), - [anon_sym_LT_EQ] = ACTIONS(6317), - [anon_sym_DOT] = ACTIONS(6319), - [anon_sym_EQ_GT] = ACTIONS(6317), - [anon_sym_switch] = ACTIONS(6317), - [anon_sym_DOT_DOT] = ACTIONS(6317), - [anon_sym_and] = ACTIONS(6317), - [anon_sym_or] = ACTIONS(6319), - [anon_sym_AMP_AMP] = ACTIONS(6317), - [anon_sym_PIPE_PIPE] = ACTIONS(6317), - [sym_op_coalescing] = ACTIONS(6317), - [anon_sym_from] = ACTIONS(6317), - [anon_sym_join] = ACTIONS(6317), - [anon_sym_on] = ACTIONS(6317), - [anon_sym_equals] = ACTIONS(6317), - [anon_sym_let] = ACTIONS(6317), - [anon_sym_orderby] = ACTIONS(6317), - [anon_sym_group] = ACTIONS(6317), - [anon_sym_by] = ACTIONS(6317), - [anon_sym_select] = ACTIONS(6317), - [anon_sym_as] = ACTIONS(6317), - [anon_sym_is] = ACTIONS(6317), - [anon_sym_DASH_GT] = ACTIONS(6317), - [anon_sym_with] = ACTIONS(6317), - [aux_sym_preproc_if_token3] = ACTIONS(6317), - [aux_sym_preproc_else_token1] = ACTIONS(6317), - [aux_sym_preproc_elif_token1] = ACTIONS(6317), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6374), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6378), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(6388), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -582272,6 +576330,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(5336), }, [4237] = { [sym_preproc_region] = STATE(4237), @@ -582283,62 +576342,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4237), [sym_preproc_define] = STATE(4237), [sym_preproc_undef] = STATE(4237), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4972), - [anon_sym_LPAREN] = ACTIONS(4972), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_where] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_PLUS_PLUS] = ACTIONS(4972), - [anon_sym_DASH_DASH] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4975), - [anon_sym_LT_LT] = ACTIONS(4975), - [anon_sym_GT_GT] = ACTIONS(4975), - [anon_sym_GT_GT_GT] = ACTIONS(4975), - [anon_sym_EQ_EQ] = ACTIONS(4972), - [anon_sym_BANG_EQ] = ACTIONS(4972), - [anon_sym_GT_EQ] = ACTIONS(4972), - [anon_sym_LT_EQ] = ACTIONS(4972), - [anon_sym_DOT] = ACTIONS(4975), - [anon_sym_switch] = ACTIONS(4972), - [anon_sym_DOT_DOT] = ACTIONS(4972), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4978), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4972), - [anon_sym_PIPE_PIPE] = ACTIONS(4972), - [sym_op_coalescing] = ACTIONS(4975), - [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_group] = ACTIONS(4970), - [anon_sym_select] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(4972), - [anon_sym_is] = ACTIONS(4972), - [anon_sym_DASH_GT] = ACTIONS(4972), - [anon_sym_with] = ACTIONS(4972), + [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_DOT] = ACTIONS(5338), + [anon_sym_EQ_GT] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_switch] = ACTIONS(5336), + [anon_sym_when] = ACTIONS(5336), + [anon_sym_DOT_DOT] = ACTIONS(5336), + [anon_sym_LT_EQ] = ACTIONS(5336), + [anon_sym_GT_EQ] = ACTIONS(5336), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5336), + [anon_sym_BANG_EQ] = ACTIONS(5336), + [anon_sym_AMP_AMP] = ACTIONS(5336), + [anon_sym_PIPE_PIPE] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(5338), + [sym_op_bitwise_or] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5336), + [sym_op_left_shift] = ACTIONS(5336), + [sym_op_right_shift] = ACTIONS(5338), + [sym_op_unsigned_right_shift] = ACTIONS(5336), + [anon_sym_PLUS] = ACTIONS(5338), + [anon_sym_DASH] = ACTIONS(5338), + [sym_op_divide] = ACTIONS(5338), + [sym_op_modulo] = ACTIONS(5336), + [sym_op_coalescing] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(5338), + [anon_sym_PLUS_PLUS] = ACTIONS(5336), + [anon_sym_DASH_DASH] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -582351,27 +576405,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4238] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4238), [sym_preproc_endregion] = STATE(4238), [sym_preproc_line] = STATE(4238), @@ -582381,41 +576429,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4238), [sym_preproc_define] = STATE(4238), [sym_preproc_undef] = STATE(4238), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6485), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(6485), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6895), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6907), + [anon_sym_is] = ACTIONS(6909), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -582428,27 +576477,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4239] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4239), [sym_preproc_endregion] = STATE(4239), [sym_preproc_line] = STATE(4239), @@ -582458,41 +576501,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4239), [sym_preproc_define] = STATE(4239), [sym_preproc_undef] = STATE(4239), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4778), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6431), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6907), + [anon_sym_is] = ACTIONS(6909), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -582514,62 +576558,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4240), [sym_preproc_define] = STATE(4240), [sym_preproc_undef] = STATE(4240), - [anon_sym_SEMI] = ACTIONS(6003), - [anon_sym_LBRACK] = ACTIONS(6003), - [anon_sym_COLON] = ACTIONS(6003), - [anon_sym_COMMA] = ACTIONS(6003), - [anon_sym_RBRACK] = ACTIONS(6003), - [anon_sym_LPAREN] = ACTIONS(6003), - [anon_sym_RPAREN] = ACTIONS(6003), - [anon_sym_RBRACE] = ACTIONS(6003), - [anon_sym_LT] = ACTIONS(6005), - [anon_sym_GT] = ACTIONS(6005), - [anon_sym_in] = ACTIONS(6003), - [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_EQ_GT] = ACTIONS(6003), - [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), - [sym_op_coalescing] = ACTIONS(6003), - [anon_sym_from] = ACTIONS(6003), - [anon_sym_join] = ACTIONS(6003), - [anon_sym_on] = ACTIONS(6003), - [anon_sym_equals] = ACTIONS(6003), - [anon_sym_let] = ACTIONS(6003), - [anon_sym_orderby] = ACTIONS(6003), - [anon_sym_group] = ACTIONS(6003), - [anon_sym_by] = ACTIONS(6003), - [anon_sym_select] = ACTIONS(6003), - [anon_sym_as] = ACTIONS(6003), - [anon_sym_is] = ACTIONS(6003), - [anon_sym_DASH_GT] = ACTIONS(6003), - [anon_sym_with] = ACTIONS(6003), - [aux_sym_preproc_if_token3] = ACTIONS(6003), - [aux_sym_preproc_else_token1] = ACTIONS(6003), - [aux_sym_preproc_elif_token1] = ACTIONS(6003), + [anon_sym_SEMI] = ACTIONS(6925), + [anon_sym_LBRACK] = ACTIONS(6925), + [anon_sym_COLON] = ACTIONS(6925), + [anon_sym_COMMA] = ACTIONS(6925), + [anon_sym_RBRACK] = ACTIONS(6925), + [anon_sym_LPAREN] = ACTIONS(6925), + [anon_sym_RPAREN] = ACTIONS(6925), + [anon_sym_RBRACE] = ACTIONS(6925), + [anon_sym_LT] = ACTIONS(6927), + [anon_sym_GT] = ACTIONS(6927), + [anon_sym_in] = ACTIONS(6927), + [anon_sym_QMARK] = ACTIONS(6927), + [anon_sym_DOT] = ACTIONS(6927), + [anon_sym_EQ_GT] = ACTIONS(6925), + [anon_sym_STAR] = ACTIONS(6925), + [anon_sym_switch] = ACTIONS(6925), + [anon_sym_when] = ACTIONS(6925), + [anon_sym_DOT_DOT] = ACTIONS(6925), + [anon_sym_LT_EQ] = ACTIONS(6925), + [anon_sym_GT_EQ] = ACTIONS(6925), + [anon_sym_and] = ACTIONS(6925), + [anon_sym_or] = ACTIONS(6925), + [anon_sym_EQ_EQ] = ACTIONS(6925), + [anon_sym_BANG_EQ] = ACTIONS(6925), + [anon_sym_AMP_AMP] = ACTIONS(6925), + [anon_sym_PIPE_PIPE] = ACTIONS(6925), + [anon_sym_AMP] = ACTIONS(6927), + [sym_op_bitwise_or] = ACTIONS(6927), + [anon_sym_CARET] = ACTIONS(6925), + [sym_op_left_shift] = ACTIONS(6925), + [sym_op_right_shift] = ACTIONS(6927), + [sym_op_unsigned_right_shift] = ACTIONS(6925), + [anon_sym_PLUS] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6927), + [sym_op_divide] = ACTIONS(6927), + [sym_op_modulo] = ACTIONS(6925), + [sym_op_coalescing] = ACTIONS(6925), + [anon_sym_BANG] = ACTIONS(6927), + [anon_sym_PLUS_PLUS] = ACTIONS(6925), + [anon_sym_DASH_DASH] = ACTIONS(6925), + [anon_sym_into] = ACTIONS(6925), + [anon_sym_on] = ACTIONS(6925), + [anon_sym_equals] = ACTIONS(6925), + [anon_sym_by] = ACTIONS(6925), + [anon_sym_as] = ACTIONS(6925), + [anon_sym_is] = ACTIONS(6925), + [anon_sym_DASH_GT] = ACTIONS(6925), + [anon_sym_with] = ACTIONS(6925), + [aux_sym_preproc_if_token3] = ACTIONS(6925), + [aux_sym_preproc_else_token1] = ACTIONS(6925), + [aux_sym_preproc_elif_token1] = ACTIONS(6925), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -582582,6 +576621,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4241] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4241), [sym_preproc_endregion] = STATE(4241), [sym_preproc_line] = STATE(4241), @@ -582591,62 +576645,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4241), [sym_preproc_define] = STATE(4241), [sym_preproc_undef] = STATE(4241), - [sym__identifier_token] = ACTIONS(3735), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3735), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(3735), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3740), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3735), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_where] = ACTIONS(3735), - [anon_sym_QMARK] = ACTIONS(3696), - [anon_sym_notnull] = ACTIONS(3735), - [anon_sym_unmanaged] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_scoped] = ACTIONS(3735), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3735), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3735), - [anon_sym_when] = ACTIONS(3735), - [anon_sym_from] = ACTIONS(3735), - [anon_sym_into] = ACTIONS(3735), - [anon_sym_join] = ACTIONS(3735), - [anon_sym_on] = ACTIONS(3735), - [anon_sym_equals] = ACTIONS(3735), - [anon_sym_let] = ACTIONS(3735), - [anon_sym_orderby] = ACTIONS(3735), - [anon_sym_ascending] = ACTIONS(3735), - [anon_sym_descending] = ACTIONS(3735), - [anon_sym_group] = ACTIONS(3735), - [anon_sym_by] = ACTIONS(3735), - [anon_sym_select] = ACTIONS(3735), - [sym_grit_metavariable] = ACTIONS(3740), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -582659,6 +576693,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4242] = { + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7921), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4242), [sym_preproc_endregion] = STATE(4242), [sym_preproc_line] = STATE(4242), @@ -582668,62 +576722,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4242), [sym_preproc_define] = STATE(4242), [sym_preproc_undef] = STATE(4242), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LBRACK] = ACTIONS(6051), - [anon_sym_COLON] = ACTIONS(6051), - [anon_sym_COMMA] = ACTIONS(6051), - [anon_sym_RBRACK] = ACTIONS(6051), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_RBRACE] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_in] = ACTIONS(6051), - [anon_sym_where] = ACTIONS(6051), - [anon_sym_QMARK] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PLUS_PLUS] = ACTIONS(6051), - [anon_sym_DASH_DASH] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6053), - [anon_sym_DASH] = ACTIONS(6053), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6053), - [anon_sym_PERCENT] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_AMP] = ACTIONS(6053), - [anon_sym_LT_LT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6053), - [anon_sym_GT_GT_GT] = ACTIONS(6051), - [anon_sym_EQ_EQ] = ACTIONS(6051), - [anon_sym_BANG_EQ] = ACTIONS(6051), - [anon_sym_GT_EQ] = ACTIONS(6051), - [anon_sym_LT_EQ] = ACTIONS(6051), - [anon_sym_DOT] = ACTIONS(6053), - [anon_sym_EQ_GT] = ACTIONS(6051), - [anon_sym_switch] = ACTIONS(6051), - [anon_sym_DOT_DOT] = ACTIONS(6051), - [anon_sym_and] = ACTIONS(6051), - [anon_sym_or] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym_op_coalescing] = ACTIONS(6051), - [anon_sym_from] = ACTIONS(6051), - [anon_sym_join] = ACTIONS(6051), - [anon_sym_on] = ACTIONS(6051), - [anon_sym_equals] = ACTIONS(6051), - [anon_sym_let] = ACTIONS(6051), - [anon_sym_orderby] = ACTIONS(6051), - [anon_sym_group] = ACTIONS(6051), - [anon_sym_by] = ACTIONS(6051), - [anon_sym_select] = ACTIONS(6051), - [anon_sym_as] = ACTIONS(6051), - [anon_sym_is] = ACTIONS(6051), - [anon_sym_DASH_GT] = ACTIONS(6051), - [anon_sym_with] = ACTIONS(6051), - [aux_sym_preproc_if_token3] = ACTIONS(6051), - [aux_sym_preproc_else_token1] = ACTIONS(6051), - [aux_sym_preproc_elif_token1] = ACTIONS(6051), + [aux_sym_function_pointer_type_repeat1] = STATE(4276), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -582736,27 +576765,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4243] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), [sym_preproc_region] = STATE(4243), [sym_preproc_endregion] = STATE(4243), [sym_preproc_line] = STATE(4243), @@ -582766,41 +576774,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4243), [sym_preproc_define] = STATE(4243), [sym_preproc_undef] = STATE(4243), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_in] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_into] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4774), + [sym__identifier_token] = ACTIONS(3528), + [anon_sym_extern] = ACTIONS(3528), + [anon_sym_alias] = ACTIONS(3528), + [anon_sym_global] = ACTIONS(3528), + [anon_sym_unsafe] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_RBRACE] = ACTIONS(3530), + [anon_sym_public] = ACTIONS(3528), + [anon_sym_private] = ACTIONS(3528), + [anon_sym_readonly] = ACTIONS(3528), + [anon_sym_abstract] = ACTIONS(3528), + [anon_sym_async] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_file] = ACTIONS(3528), + [anon_sym_fixed] = ACTIONS(3528), + [anon_sym_internal] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_override] = ACTIONS(3528), + [anon_sym_partial] = ACTIONS(3528), + [anon_sym_protected] = ACTIONS(3528), + [anon_sym_required] = ACTIONS(3528), + [anon_sym_sealed] = ACTIONS(3528), + [anon_sym_virtual] = ACTIONS(3528), + [anon_sym_volatile] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3528), + [anon_sym_notnull] = ACTIONS(3528), + [anon_sym_unmanaged] = ACTIONS(3528), + [sym_accessor_get] = ACTIONS(3528), + [sym_accessor_set] = ACTIONS(3528), + [sym_accessor_add] = ACTIONS(3528), + [sym_accessor_remove] = ACTIONS(3528), + [sym_accessor_init] = ACTIONS(3528), + [anon_sym_scoped] = ACTIONS(3528), + [anon_sym_var] = ACTIONS(3528), + [anon_sym_yield] = ACTIONS(3528), + [anon_sym_when] = ACTIONS(3528), + [anon_sym_from] = ACTIONS(3528), + [anon_sym_into] = ACTIONS(3528), + [anon_sym_join] = ACTIONS(3528), + [anon_sym_on] = ACTIONS(3528), + [anon_sym_equals] = ACTIONS(3528), + [anon_sym_let] = ACTIONS(3528), + [anon_sym_orderby] = ACTIONS(3528), + [anon_sym_ascending] = ACTIONS(3528), + [anon_sym_descending] = ACTIONS(3528), + [anon_sym_group] = ACTIONS(3528), + [anon_sym_by] = ACTIONS(3528), + [anon_sym_select] = ACTIONS(3528), + [sym_grit_metavariable] = ACTIONS(3530), + [aux_sym_preproc_if_token1] = ACTIONS(3530), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -582813,6 +576837,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4244] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4244), [sym_preproc_endregion] = STATE(4244), [sym_preproc_line] = STATE(4244), @@ -582822,62 +576861,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4244), [sym_preproc_define] = STATE(4244), [sym_preproc_undef] = STATE(4244), - [anon_sym_SEMI] = ACTIONS(6271), - [anon_sym_LBRACK] = ACTIONS(6271), - [anon_sym_COLON] = ACTIONS(6271), - [anon_sym_COMMA] = ACTIONS(6271), - [anon_sym_RBRACK] = ACTIONS(6271), - [anon_sym_LPAREN] = ACTIONS(6271), - [anon_sym_RPAREN] = ACTIONS(6271), - [anon_sym_RBRACE] = ACTIONS(6271), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_in] = ACTIONS(6271), - [anon_sym_where] = ACTIONS(6271), - [anon_sym_QMARK] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PLUS_PLUS] = ACTIONS(6271), - [anon_sym_DASH_DASH] = ACTIONS(6271), - [anon_sym_PLUS] = ACTIONS(6273), - [anon_sym_DASH] = ACTIONS(6273), - [anon_sym_STAR] = ACTIONS(6271), - [anon_sym_SLASH] = ACTIONS(6273), - [anon_sym_PERCENT] = ACTIONS(6271), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_AMP] = ACTIONS(6273), - [anon_sym_LT_LT] = ACTIONS(6271), - [anon_sym_GT_GT] = ACTIONS(6273), - [anon_sym_GT_GT_GT] = ACTIONS(6271), - [anon_sym_EQ_EQ] = ACTIONS(6271), - [anon_sym_BANG_EQ] = ACTIONS(6271), - [anon_sym_GT_EQ] = ACTIONS(6271), - [anon_sym_LT_EQ] = ACTIONS(6271), - [anon_sym_DOT] = ACTIONS(6273), - [anon_sym_EQ_GT] = ACTIONS(6271), - [anon_sym_switch] = ACTIONS(6271), - [anon_sym_DOT_DOT] = ACTIONS(6271), - [anon_sym_and] = ACTIONS(6271), - [anon_sym_or] = ACTIONS(6273), - [anon_sym_AMP_AMP] = ACTIONS(6271), - [anon_sym_PIPE_PIPE] = ACTIONS(6271), - [sym_op_coalescing] = ACTIONS(6271), - [anon_sym_from] = ACTIONS(6271), - [anon_sym_join] = ACTIONS(6271), - [anon_sym_on] = ACTIONS(6271), - [anon_sym_equals] = ACTIONS(6271), - [anon_sym_let] = ACTIONS(6271), - [anon_sym_orderby] = ACTIONS(6271), - [anon_sym_group] = ACTIONS(6271), - [anon_sym_by] = ACTIONS(6271), - [anon_sym_select] = ACTIONS(6271), - [anon_sym_as] = ACTIONS(6271), - [anon_sym_is] = ACTIONS(6271), - [anon_sym_DASH_GT] = ACTIONS(6271), - [anon_sym_with] = ACTIONS(6271), - [aux_sym_preproc_if_token3] = ACTIONS(6271), - [aux_sym_preproc_else_token1] = ACTIONS(6271), - [aux_sym_preproc_elif_token1] = ACTIONS(6271), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6895), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(6905), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6907), + [anon_sym_is] = ACTIONS(6909), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -582890,27 +576909,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4245] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4245), [sym_preproc_endregion] = STATE(4245), [sym_preproc_line] = STATE(4245), @@ -582920,41 +576933,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4245), [sym_preproc_define] = STATE(4245), [sym_preproc_undef] = STATE(4245), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4794), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4794), + [aux_sym_initializer_expression_repeat1] = STATE(7220), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6929), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(6931), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -582967,27 +576981,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4246] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), [sym_preproc_region] = STATE(4246), [sym_preproc_endregion] = STATE(4246), [sym_preproc_line] = STATE(4246), @@ -582997,41 +576990,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4246), [sym_preproc_define] = STATE(4246), [sym_preproc_undef] = STATE(4246), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_by] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(6875), + [anon_sym_LBRACK] = ACTIONS(6875), + [anon_sym_COLON] = ACTIONS(6875), + [anon_sym_COMMA] = ACTIONS(6875), + [anon_sym_RBRACK] = ACTIONS(6875), + [anon_sym_LPAREN] = ACTIONS(6875), + [anon_sym_RPAREN] = ACTIONS(6875), + [anon_sym_RBRACE] = ACTIONS(6875), + [anon_sym_LT] = ACTIONS(6877), + [anon_sym_GT] = ACTIONS(6877), + [anon_sym_in] = ACTIONS(6877), + [anon_sym_QMARK] = ACTIONS(6877), + [anon_sym_DOT] = ACTIONS(6877), + [anon_sym_EQ_GT] = ACTIONS(6875), + [anon_sym_STAR] = ACTIONS(6875), + [anon_sym_switch] = ACTIONS(6875), + [anon_sym_when] = ACTIONS(6875), + [anon_sym_DOT_DOT] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6875), + [anon_sym_GT_EQ] = ACTIONS(6875), + [anon_sym_and] = ACTIONS(6875), + [anon_sym_or] = ACTIONS(6875), + [anon_sym_EQ_EQ] = ACTIONS(6875), + [anon_sym_BANG_EQ] = ACTIONS(6875), + [anon_sym_AMP_AMP] = ACTIONS(6875), + [anon_sym_PIPE_PIPE] = ACTIONS(6875), + [anon_sym_AMP] = ACTIONS(6877), + [sym_op_bitwise_or] = ACTIONS(6877), + [anon_sym_CARET] = ACTIONS(6875), + [sym_op_left_shift] = ACTIONS(6875), + [sym_op_right_shift] = ACTIONS(6877), + [sym_op_unsigned_right_shift] = ACTIONS(6875), + [anon_sym_PLUS] = ACTIONS(6877), + [anon_sym_DASH] = ACTIONS(6877), + [sym_op_divide] = ACTIONS(6877), + [sym_op_modulo] = ACTIONS(6875), + [sym_op_coalescing] = ACTIONS(6875), + [anon_sym_BANG] = ACTIONS(6877), + [anon_sym_PLUS_PLUS] = ACTIONS(6875), + [anon_sym_DASH_DASH] = ACTIONS(6875), + [anon_sym_into] = ACTIONS(6875), + [anon_sym_on] = ACTIONS(6875), + [anon_sym_equals] = ACTIONS(6875), + [anon_sym_by] = ACTIONS(6875), + [anon_sym_as] = ACTIONS(6875), + [anon_sym_is] = ACTIONS(6875), + [anon_sym_DASH_GT] = ACTIONS(6875), + [anon_sym_with] = ACTIONS(6875), + [aux_sym_preproc_if_token3] = ACTIONS(6875), + [aux_sym_preproc_else_token1] = ACTIONS(6875), + [aux_sym_preproc_elif_token1] = ACTIONS(6875), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -583044,27 +577053,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4247] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4247), [sym_preproc_endregion] = STATE(4247), [sym_preproc_line] = STATE(4247), @@ -583074,41 +577077,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4247), [sym_preproc_define] = STATE(4247), [sym_preproc_undef] = STATE(4247), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_by] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -583121,27 +577125,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4248] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4248), [sym_preproc_endregion] = STATE(4248), [sym_preproc_line] = STATE(4248), @@ -583151,41 +577149,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4248), [sym_preproc_define] = STATE(4248), [sym_preproc_undef] = STATE(4248), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6487), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(6487), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6933), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6937), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(6947), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -583198,6 +577197,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4249] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4249), [sym_preproc_endregion] = STATE(4249), [sym_preproc_line] = STATE(4249), @@ -583207,62 +577221,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4249), [sym_preproc_define] = STATE(4249), [sym_preproc_undef] = STATE(4249), - [anon_sym_SEMI] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6385), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_COMMA] = ACTIONS(6385), - [anon_sym_RBRACK] = ACTIONS(6385), - [anon_sym_LPAREN] = ACTIONS(6385), - [anon_sym_RPAREN] = ACTIONS(6385), - [anon_sym_RBRACE] = ACTIONS(6385), - [anon_sym_LT] = ACTIONS(6387), - [anon_sym_GT] = ACTIONS(6387), - [anon_sym_in] = ACTIONS(6385), - [anon_sym_where] = ACTIONS(6385), - [anon_sym_QMARK] = ACTIONS(6387), - [anon_sym_BANG] = ACTIONS(6387), - [anon_sym_PLUS_PLUS] = ACTIONS(6385), - [anon_sym_DASH_DASH] = ACTIONS(6385), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6385), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_PERCENT] = ACTIONS(6385), - [anon_sym_CARET] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6387), - [anon_sym_AMP] = ACTIONS(6387), - [anon_sym_LT_LT] = ACTIONS(6385), - [anon_sym_GT_GT] = ACTIONS(6387), - [anon_sym_GT_GT_GT] = ACTIONS(6385), - [anon_sym_EQ_EQ] = ACTIONS(6385), - [anon_sym_BANG_EQ] = ACTIONS(6385), - [anon_sym_GT_EQ] = ACTIONS(6385), - [anon_sym_LT_EQ] = ACTIONS(6385), - [anon_sym_DOT] = ACTIONS(6387), - [anon_sym_EQ_GT] = ACTIONS(6385), - [anon_sym_switch] = ACTIONS(6385), - [anon_sym_DOT_DOT] = ACTIONS(6385), - [anon_sym_and] = ACTIONS(6385), - [anon_sym_or] = ACTIONS(6387), - [anon_sym_AMP_AMP] = ACTIONS(6385), - [anon_sym_PIPE_PIPE] = ACTIONS(6385), - [sym_op_coalescing] = ACTIONS(6385), - [anon_sym_from] = ACTIONS(6385), - [anon_sym_join] = ACTIONS(6385), - [anon_sym_on] = ACTIONS(6385), - [anon_sym_equals] = ACTIONS(6385), - [anon_sym_let] = ACTIONS(6385), - [anon_sym_orderby] = ACTIONS(6385), - [anon_sym_group] = ACTIONS(6385), - [anon_sym_by] = ACTIONS(6385), - [anon_sym_select] = ACTIONS(6385), - [anon_sym_as] = ACTIONS(6385), - [anon_sym_is] = ACTIONS(6385), - [anon_sym_DASH_GT] = ACTIONS(6385), - [anon_sym_with] = ACTIONS(6385), - [aux_sym_preproc_if_token3] = ACTIONS(6385), - [aux_sym_preproc_else_token1] = ACTIONS(6385), - [aux_sym_preproc_elif_token1] = ACTIONS(6385), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_in] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -583275,27 +577269,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4250] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7706), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4250), [sym_preproc_endregion] = STATE(4250), [sym_preproc_line] = STATE(4250), @@ -583305,41 +577298,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4250), [sym_preproc_define] = STATE(4250), [sym_preproc_undef] = STATE(4250), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4766), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4766), + [aux_sym_function_pointer_type_repeat1] = STATE(4284), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -583352,6 +577341,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4251] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4251), [sym_preproc_endregion] = STATE(4251), [sym_preproc_line] = STATE(4251), @@ -583361,62 +577365,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4251), [sym_preproc_define] = STATE(4251), [sym_preproc_undef] = STATE(4251), - [anon_sym_SEMI] = ACTIONS(6148), - [anon_sym_LBRACK] = ACTIONS(6148), - [anon_sym_COLON] = ACTIONS(6148), - [anon_sym_COMMA] = ACTIONS(6148), - [anon_sym_RBRACK] = ACTIONS(6148), - [anon_sym_LPAREN] = ACTIONS(6148), - [anon_sym_RPAREN] = ACTIONS(6148), - [anon_sym_RBRACE] = ACTIONS(6148), - [anon_sym_LT] = ACTIONS(6150), - [anon_sym_GT] = ACTIONS(6150), - [anon_sym_in] = ACTIONS(6148), - [anon_sym_where] = ACTIONS(6148), - [anon_sym_QMARK] = ACTIONS(6150), - [anon_sym_BANG] = ACTIONS(6150), - [anon_sym_PLUS_PLUS] = ACTIONS(6148), - [anon_sym_DASH_DASH] = ACTIONS(6148), - [anon_sym_PLUS] = ACTIONS(6150), - [anon_sym_DASH] = ACTIONS(6150), - [anon_sym_STAR] = ACTIONS(6148), - [anon_sym_SLASH] = ACTIONS(6150), - [anon_sym_PERCENT] = ACTIONS(6148), - [anon_sym_CARET] = ACTIONS(6148), - [anon_sym_PIPE] = ACTIONS(6150), - [anon_sym_AMP] = ACTIONS(6150), - [anon_sym_LT_LT] = ACTIONS(6148), - [anon_sym_GT_GT] = ACTIONS(6150), - [anon_sym_GT_GT_GT] = ACTIONS(6148), - [anon_sym_EQ_EQ] = ACTIONS(6148), - [anon_sym_BANG_EQ] = ACTIONS(6148), - [anon_sym_GT_EQ] = ACTIONS(6148), - [anon_sym_LT_EQ] = ACTIONS(6148), - [anon_sym_DOT] = ACTIONS(6150), - [anon_sym_EQ_GT] = ACTIONS(6148), - [anon_sym_switch] = ACTIONS(6148), - [anon_sym_DOT_DOT] = ACTIONS(6148), - [anon_sym_and] = ACTIONS(6148), - [anon_sym_or] = ACTIONS(6150), - [anon_sym_AMP_AMP] = ACTIONS(6148), - [anon_sym_PIPE_PIPE] = ACTIONS(6148), - [sym_op_coalescing] = ACTIONS(6148), - [anon_sym_from] = ACTIONS(6148), - [anon_sym_join] = ACTIONS(6148), - [anon_sym_on] = ACTIONS(6148), - [anon_sym_equals] = ACTIONS(6148), - [anon_sym_let] = ACTIONS(6148), - [anon_sym_orderby] = ACTIONS(6148), - [anon_sym_group] = ACTIONS(6148), - [anon_sym_by] = ACTIONS(6148), - [anon_sym_select] = ACTIONS(6148), - [anon_sym_as] = ACTIONS(6148), - [anon_sym_is] = ACTIONS(6148), - [anon_sym_DASH_GT] = ACTIONS(6148), - [anon_sym_with] = ACTIONS(6148), - [aux_sym_preproc_if_token3] = ACTIONS(6148), - [aux_sym_preproc_else_token1] = ACTIONS(6148), - [aux_sym_preproc_elif_token1] = ACTIONS(6148), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -583427,8 +577410,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [4252] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4252), [sym_preproc_endregion] = STATE(4252), [sym_preproc_line] = STATE(4252), @@ -583438,62 +577437,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4252), [sym_preproc_define] = STATE(4252), [sym_preproc_undef] = STATE(4252), - [anon_sym_SEMI] = ACTIONS(6063), - [anon_sym_LBRACK] = ACTIONS(6063), - [anon_sym_COLON] = ACTIONS(6063), - [anon_sym_COMMA] = ACTIONS(6063), - [anon_sym_RBRACK] = ACTIONS(6063), + [anon_sym_LBRACK] = ACTIONS(6061), [anon_sym_LPAREN] = ACTIONS(6063), - [anon_sym_RPAREN] = ACTIONS(6063), - [anon_sym_RBRACE] = ACTIONS(6063), - [anon_sym_LT] = ACTIONS(6065), - [anon_sym_GT] = ACTIONS(6065), - [anon_sym_in] = ACTIONS(6063), - [anon_sym_where] = ACTIONS(6063), - [anon_sym_QMARK] = ACTIONS(6065), - [anon_sym_BANG] = ACTIONS(6065), - [anon_sym_PLUS_PLUS] = ACTIONS(6063), - [anon_sym_DASH_DASH] = ACTIONS(6063), - [anon_sym_PLUS] = ACTIONS(6065), - [anon_sym_DASH] = ACTIONS(6065), - [anon_sym_STAR] = ACTIONS(6063), - [anon_sym_SLASH] = ACTIONS(6065), - [anon_sym_PERCENT] = ACTIONS(6063), - [anon_sym_CARET] = ACTIONS(6063), - [anon_sym_PIPE] = ACTIONS(6065), - [anon_sym_AMP] = ACTIONS(6065), - [anon_sym_LT_LT] = ACTIONS(6063), - [anon_sym_GT_GT] = ACTIONS(6065), - [anon_sym_GT_GT_GT] = ACTIONS(6063), - [anon_sym_EQ_EQ] = ACTIONS(6063), - [anon_sym_BANG_EQ] = ACTIONS(6063), - [anon_sym_GT_EQ] = ACTIONS(6063), - [anon_sym_LT_EQ] = ACTIONS(6063), - [anon_sym_DOT] = ACTIONS(6065), - [anon_sym_EQ_GT] = ACTIONS(6063), - [anon_sym_switch] = ACTIONS(6063), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_and] = ACTIONS(6063), - [anon_sym_or] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6063), - [anon_sym_PIPE_PIPE] = ACTIONS(6063), - [sym_op_coalescing] = ACTIONS(6063), - [anon_sym_from] = ACTIONS(6063), - [anon_sym_join] = ACTIONS(6063), - [anon_sym_on] = ACTIONS(6063), - [anon_sym_equals] = ACTIONS(6063), - [anon_sym_let] = ACTIONS(6063), - [anon_sym_orderby] = ACTIONS(6063), - [anon_sym_group] = ACTIONS(6063), - [anon_sym_by] = ACTIONS(6063), - [anon_sym_select] = ACTIONS(6063), - [anon_sym_as] = ACTIONS(6063), - [anon_sym_is] = ACTIONS(6063), - [anon_sym_DASH_GT] = ACTIONS(6063), - [anon_sym_with] = ACTIONS(6063), - [aux_sym_preproc_if_token3] = ACTIONS(6063), - [aux_sym_preproc_else_token1] = ACTIONS(6063), - [aux_sym_preproc_elif_token1] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -583506,27 +577485,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4253] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4253), [sym_preproc_endregion] = STATE(4253), [sym_preproc_line] = STATE(4253), @@ -583536,41 +577509,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4253), [sym_preproc_define] = STATE(4253), [sym_preproc_undef] = STATE(4253), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6489), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6489), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -583581,29 +577554,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [4254] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4254), [sym_preproc_endregion] = STATE(4254), [sym_preproc_line] = STATE(4254), @@ -583613,41 +577581,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4254), [sym_preproc_define] = STATE(4254), [sym_preproc_undef] = STATE(4254), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6423), - [anon_sym_is] = ACTIONS(6425), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6378), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -583658,29 +577626,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [4255] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4255), [sym_preproc_endregion] = STATE(4255), [sym_preproc_line] = STATE(4255), @@ -583690,41 +577653,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4255), [sym_preproc_define] = STATE(4255), [sym_preproc_undef] = STATE(4255), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6423), - [anon_sym_is] = ACTIONS(6425), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6378), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -583735,29 +577698,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [4256] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4256), [sym_preproc_endregion] = STATE(4256), [sym_preproc_line] = STATE(4256), @@ -583767,41 +577725,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4256), [sym_preproc_define] = STATE(4256), [sym_preproc_undef] = STATE(4256), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6423), - [anon_sym_is] = ACTIONS(6425), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RBRACK] = ACTIONS(6951), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6951), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -583814,27 +577773,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4257] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4257), [sym_preproc_endregion] = STATE(4257), [sym_preproc_line] = STATE(4257), @@ -583844,41 +577797,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4257), [sym_preproc_define] = STATE(4257), [sym_preproc_undef] = STATE(4257), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4708), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6431), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -583889,29 +577842,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [4258] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4258), [sym_preproc_endregion] = STATE(4258), [sym_preproc_line] = STATE(4258), @@ -583921,41 +577869,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4258), [sym_preproc_define] = STATE(4258), [sym_preproc_undef] = STATE(4258), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6491), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6481), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_by] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(6459), - [anon_sym_is] = ACTIONS(6461), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -583966,29 +577914,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(5300), }, [4259] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), [sym_preproc_region] = STATE(4259), [sym_preproc_endregion] = STATE(4259), [sym_preproc_line] = STATE(4259), @@ -583998,41 +577926,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4259), [sym_preproc_define] = STATE(4259), [sym_preproc_undef] = STATE(4259), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_COLON] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_LPAREN] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [anon_sym_RBRACE] = ACTIONS(5805), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_in] = ACTIONS(5807), + [anon_sym_QMARK] = ACTIONS(5807), + [anon_sym_DOT] = ACTIONS(5807), + [anon_sym_EQ_GT] = ACTIONS(5805), + [anon_sym_STAR] = ACTIONS(5805), + [anon_sym_switch] = ACTIONS(5805), + [anon_sym_when] = ACTIONS(5805), + [anon_sym_DOT_DOT] = ACTIONS(5805), + [anon_sym_LT_EQ] = ACTIONS(5805), + [anon_sym_GT_EQ] = ACTIONS(5805), + [anon_sym_and] = ACTIONS(5805), + [anon_sym_or] = ACTIONS(5805), + [anon_sym_EQ_EQ] = ACTIONS(5805), + [anon_sym_BANG_EQ] = ACTIONS(5805), + [anon_sym_AMP_AMP] = ACTIONS(5805), + [anon_sym_PIPE_PIPE] = ACTIONS(5805), + [anon_sym_AMP] = ACTIONS(5807), + [sym_op_bitwise_or] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5805), + [sym_op_left_shift] = ACTIONS(5805), + [sym_op_right_shift] = ACTIONS(5807), + [sym_op_unsigned_right_shift] = ACTIONS(5805), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_DASH] = ACTIONS(5807), + [sym_op_divide] = ACTIONS(5807), + [sym_op_modulo] = ACTIONS(5805), + [sym_op_coalescing] = ACTIONS(5805), + [anon_sym_BANG] = ACTIONS(5807), + [anon_sym_PLUS_PLUS] = ACTIONS(5805), + [anon_sym_DASH_DASH] = ACTIONS(5805), + [anon_sym_into] = ACTIONS(5805), + [anon_sym_on] = ACTIONS(5805), + [anon_sym_equals] = ACTIONS(5805), + [anon_sym_by] = ACTIONS(5805), + [anon_sym_as] = ACTIONS(5805), + [anon_sym_is] = ACTIONS(5805), + [anon_sym_DASH_GT] = ACTIONS(5805), + [anon_sym_with] = ACTIONS(5805), + [aux_sym_preproc_if_token3] = ACTIONS(5805), + [aux_sym_preproc_else_token1] = ACTIONS(5805), + [aux_sym_preproc_elif_token1] = ACTIONS(5805), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -584045,27 +577989,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4260] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), [sym_preproc_region] = STATE(4260), [sym_preproc_endregion] = STATE(4260), [sym_preproc_line] = STATE(4260), @@ -584075,41 +577998,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4260), [sym_preproc_define] = STATE(4260), [sym_preproc_undef] = STATE(4260), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_QMARK] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6443), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6445), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(6953), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(6953), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(6956), + [anon_sym_GT] = ACTIONS(6956), + [anon_sym_in] = ACTIONS(5076), + [anon_sym_QMARK] = ACTIONS(6956), + [anon_sym_DOT] = ACTIONS(6956), + [anon_sym_EQ_GT] = ACTIONS(5068), + [anon_sym_STAR] = ACTIONS(6953), + [anon_sym_switch] = ACTIONS(6953), + [anon_sym_when] = ACTIONS(5068), + [anon_sym_DOT_DOT] = ACTIONS(6953), + [anon_sym_LT_EQ] = ACTIONS(6953), + [anon_sym_GT_EQ] = ACTIONS(6953), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5068), + [anon_sym_EQ_EQ] = ACTIONS(6953), + [anon_sym_BANG_EQ] = ACTIONS(6953), + [anon_sym_AMP_AMP] = ACTIONS(6953), + [anon_sym_PIPE_PIPE] = ACTIONS(6953), + [anon_sym_AMP] = ACTIONS(6956), + [sym_op_bitwise_or] = ACTIONS(6956), + [anon_sym_CARET] = ACTIONS(6953), + [sym_op_left_shift] = ACTIONS(6953), + [sym_op_right_shift] = ACTIONS(6956), + [sym_op_unsigned_right_shift] = ACTIONS(6953), + [anon_sym_PLUS] = ACTIONS(6956), + [anon_sym_DASH] = ACTIONS(6956), + [sym_op_divide] = ACTIONS(6956), + [sym_op_modulo] = ACTIONS(6953), + [sym_op_coalescing] = ACTIONS(6953), + [anon_sym_BANG] = ACTIONS(6956), + [anon_sym_PLUS_PLUS] = ACTIONS(6953), + [anon_sym_DASH_DASH] = ACTIONS(6953), + [anon_sym_into] = ACTIONS(5068), + [anon_sym_on] = ACTIONS(5068), + [anon_sym_equals] = ACTIONS(5068), + [anon_sym_by] = ACTIONS(5068), + [anon_sym_as] = ACTIONS(6953), + [anon_sym_is] = ACTIONS(6953), + [anon_sym_DASH_GT] = ACTIONS(6953), + [anon_sym_with] = ACTIONS(6953), + [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), @@ -584122,27 +578061,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4261] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), [sym_preproc_region] = STATE(4261), [sym_preproc_endregion] = STATE(4261), [sym_preproc_line] = STATE(4261), @@ -584152,41 +578070,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4261), [sym_preproc_define] = STATE(4261), [sym_preproc_undef] = STATE(4261), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6423), - [anon_sym_is] = ACTIONS(6425), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(6959), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(6959), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(6962), + [anon_sym_GT] = ACTIONS(6962), + [anon_sym_in] = ACTIONS(5076), + [anon_sym_QMARK] = ACTIONS(6962), + [anon_sym_DOT] = ACTIONS(6962), + [anon_sym_EQ_GT] = ACTIONS(5068), + [anon_sym_STAR] = ACTIONS(6959), + [anon_sym_switch] = ACTIONS(6959), + [anon_sym_when] = ACTIONS(5068), + [anon_sym_DOT_DOT] = ACTIONS(6959), + [anon_sym_LT_EQ] = ACTIONS(6959), + [anon_sym_GT_EQ] = ACTIONS(6959), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5068), + [anon_sym_EQ_EQ] = ACTIONS(6959), + [anon_sym_BANG_EQ] = ACTIONS(6959), + [anon_sym_AMP_AMP] = ACTIONS(6959), + [anon_sym_PIPE_PIPE] = ACTIONS(6959), + [anon_sym_AMP] = ACTIONS(6962), + [sym_op_bitwise_or] = ACTIONS(6962), + [anon_sym_CARET] = ACTIONS(6959), + [sym_op_left_shift] = ACTIONS(6959), + [sym_op_right_shift] = ACTIONS(6962), + [sym_op_unsigned_right_shift] = ACTIONS(6959), + [anon_sym_PLUS] = ACTIONS(6962), + [anon_sym_DASH] = ACTIONS(6962), + [sym_op_divide] = ACTIONS(6962), + [sym_op_modulo] = ACTIONS(6959), + [sym_op_coalescing] = ACTIONS(6959), + [anon_sym_BANG] = ACTIONS(6962), + [anon_sym_PLUS_PLUS] = ACTIONS(6959), + [anon_sym_DASH_DASH] = ACTIONS(6959), + [anon_sym_into] = ACTIONS(5068), + [anon_sym_on] = ACTIONS(5068), + [anon_sym_equals] = ACTIONS(5068), + [anon_sym_by] = ACTIONS(5068), + [anon_sym_as] = ACTIONS(6959), + [anon_sym_is] = ACTIONS(6959), + [anon_sym_DASH_GT] = ACTIONS(6959), + [anon_sym_with] = ACTIONS(6959), + [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), @@ -584199,6 +578133,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4262] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4262), [sym_preproc_endregion] = STATE(4262), [sym_preproc_line] = STATE(4262), @@ -584208,62 +578157,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4262), [sym_preproc_define] = STATE(4262), [sym_preproc_undef] = STATE(4262), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4331), - [anon_sym_where] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(6091), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(6493), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4331), - [anon_sym_join] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_let] = ACTIONS(4331), - [anon_sym_orderby] = ACTIONS(4331), - [anon_sym_group] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_select] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -584274,29 +578202,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5360), }, [4263] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4263), [sym_preproc_endregion] = STATE(4263), [sym_preproc_line] = STATE(4263), @@ -584306,41 +578229,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4263), [sym_preproc_define] = STATE(4263), [sym_preproc_undef] = STATE(4263), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6491), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6481), - [anon_sym_into] = ACTIONS(4778), - [anon_sym_by] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(6459), - [anon_sym_is] = ACTIONS(6461), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(6907), + [anon_sym_is] = ACTIONS(6909), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -584353,27 +578277,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4264] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym__name] = STATE(5847), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(5576), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(4264), [sym_preproc_endregion] = STATE(4264), [sym_preproc_line] = STATE(4264), @@ -584383,41 +578295,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4264), [sym_preproc_define] = STATE(4264), [sym_preproc_undef] = STATE(4264), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6431), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [sym__identifier_token] = ACTIONS(3876), + [anon_sym_alias] = ACTIONS(3880), + [anon_sym_global] = ACTIONS(3880), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(2919), + [anon_sym_delegate] = ACTIONS(2919), + [anon_sym_readonly] = ACTIONS(2919), + [anon_sym_file] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_in] = ACTIONS(2919), + [anon_sym_out] = ACTIONS(2919), + [anon_sym_where] = ACTIONS(3880), + [anon_sym_QMARK] = ACTIONS(3694), + [anon_sym_notnull] = ACTIONS(3880), + [anon_sym_unmanaged] = ACTIONS(3880), + [anon_sym_this] = ACTIONS(2919), + [anon_sym_DOT] = ACTIONS(3694), + [anon_sym_scoped] = ACTIONS(3880), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3880), + [anon_sym_STAR] = ACTIONS(3694), + [sym_predefined_type] = ACTIONS(2919), + [anon_sym_yield] = ACTIONS(3880), + [anon_sym_when] = ACTIONS(3880), + [anon_sym_from] = ACTIONS(3880), + [anon_sym_into] = ACTIONS(3880), + [anon_sym_join] = ACTIONS(3880), + [anon_sym_on] = ACTIONS(3880), + [anon_sym_equals] = ACTIONS(3880), + [anon_sym_let] = ACTIONS(3880), + [anon_sym_orderby] = ACTIONS(3880), + [anon_sym_ascending] = ACTIONS(3880), + [anon_sym_descending] = ACTIONS(3880), + [anon_sym_group] = ACTIONS(3880), + [anon_sym_by] = ACTIONS(3880), + [anon_sym_select] = ACTIONS(3880), + [sym_grit_metavariable] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -584430,27 +578349,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4265] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4265), [sym_preproc_endregion] = STATE(4265), [sym_preproc_line] = STATE(4265), @@ -584460,41 +578373,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4265), [sym_preproc_define] = STATE(4265), [sym_preproc_undef] = STATE(4265), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_into] = ACTIONS(4752), - [anon_sym_by] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(6795), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6797), + [anon_sym_is] = ACTIONS(6799), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -584507,27 +578421,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4266] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4266), [sym_preproc_endregion] = STATE(4266), [sym_preproc_line] = STATE(4266), @@ -584537,41 +578445,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4266), [sym_preproc_define] = STATE(4266), [sym_preproc_undef] = STATE(4266), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6479), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5296), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(6795), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6797), + [anon_sym_is] = ACTIONS(6799), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -584584,27 +578493,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4267] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4267), [sym_preproc_endregion] = STATE(4267), [sym_preproc_line] = STATE(4267), @@ -584614,41 +578517,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4267), [sym_preproc_define] = STATE(4267), [sym_preproc_undef] = STATE(4267), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(6795), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6797), + [anon_sym_is] = ACTIONS(6799), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -584661,27 +578565,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4268] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4268), [sym_preproc_endregion] = STATE(4268), [sym_preproc_line] = STATE(4268), @@ -584691,41 +578574,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4268), [sym_preproc_define] = STATE(4268), [sym_preproc_undef] = STATE(4268), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6463), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6463), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_LBRACK] = ACTIONS(3976), + [anon_sym_COLON] = ACTIONS(3976), + [anon_sym_COMMA] = ACTIONS(3976), + [anon_sym_RBRACK] = ACTIONS(3976), + [anon_sym_LPAREN] = ACTIONS(3976), + [anon_sym_RPAREN] = ACTIONS(3976), + [anon_sym_LBRACE] = ACTIONS(3976), + [anon_sym_RBRACE] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3974), + [anon_sym_GT] = ACTIONS(3974), + [anon_sym_in] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3974), + [anon_sym_EQ_GT] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3976), + [anon_sym_switch] = ACTIONS(3976), + [anon_sym_when] = ACTIONS(3976), + [anon_sym_DOT_DOT] = ACTIONS(3976), + [anon_sym_LT_EQ] = ACTIONS(3976), + [anon_sym_GT_EQ] = ACTIONS(3976), + [anon_sym_and] = ACTIONS(3976), + [anon_sym_or] = ACTIONS(3976), + [anon_sym_EQ_EQ] = ACTIONS(3976), + [anon_sym_BANG_EQ] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [sym_op_bitwise_or] = ACTIONS(3974), + [anon_sym_CARET] = ACTIONS(3976), + [sym_op_left_shift] = ACTIONS(3976), + [sym_op_right_shift] = ACTIONS(3974), + [sym_op_unsigned_right_shift] = ACTIONS(3976), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_DASH] = ACTIONS(3974), + [sym_op_divide] = ACTIONS(3974), + [sym_op_modulo] = ACTIONS(3976), + [sym_op_coalescing] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3974), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_on] = ACTIONS(3976), + [anon_sym_equals] = ACTIONS(3976), + [anon_sym_by] = ACTIONS(3976), + [anon_sym_as] = ACTIONS(3976), + [anon_sym_is] = ACTIONS(3976), + [anon_sym_DASH_GT] = ACTIONS(3976), + [anon_sym_with] = ACTIONS(3976), + [aux_sym_preproc_if_token3] = ACTIONS(3976), + [aux_sym_preproc_else_token1] = ACTIONS(3976), + [aux_sym_preproc_elif_token1] = ACTIONS(3976), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -584738,6 +578637,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4269] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4269), [sym_preproc_endregion] = STATE(4269), [sym_preproc_line] = STATE(4269), @@ -584747,62 +578661,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4269), [sym_preproc_define] = STATE(4269), [sym_preproc_undef] = STATE(4269), - [anon_sym_SEMI] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6361), - [anon_sym_COLON] = ACTIONS(6361), - [anon_sym_COMMA] = ACTIONS(6361), - [anon_sym_RBRACK] = ACTIONS(6361), - [anon_sym_LPAREN] = ACTIONS(6361), - [anon_sym_RPAREN] = ACTIONS(6361), - [anon_sym_RBRACE] = ACTIONS(6361), - [anon_sym_LT] = ACTIONS(6363), - [anon_sym_GT] = ACTIONS(6363), - [anon_sym_in] = ACTIONS(6361), - [anon_sym_where] = ACTIONS(6361), - [anon_sym_QMARK] = ACTIONS(6363), - [anon_sym_BANG] = ACTIONS(6363), - [anon_sym_PLUS_PLUS] = ACTIONS(6361), - [anon_sym_DASH_DASH] = ACTIONS(6361), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6361), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_PERCENT] = ACTIONS(6361), - [anon_sym_CARET] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6363), - [anon_sym_AMP] = ACTIONS(6363), - [anon_sym_LT_LT] = ACTIONS(6361), - [anon_sym_GT_GT] = ACTIONS(6363), - [anon_sym_GT_GT_GT] = ACTIONS(6361), - [anon_sym_EQ_EQ] = ACTIONS(6361), - [anon_sym_BANG_EQ] = ACTIONS(6361), - [anon_sym_GT_EQ] = ACTIONS(6361), - [anon_sym_LT_EQ] = ACTIONS(6361), - [anon_sym_DOT] = ACTIONS(6363), - [anon_sym_EQ_GT] = ACTIONS(6361), - [anon_sym_switch] = ACTIONS(6361), - [anon_sym_DOT_DOT] = ACTIONS(6361), - [anon_sym_and] = ACTIONS(6361), - [anon_sym_or] = ACTIONS(6363), - [anon_sym_AMP_AMP] = ACTIONS(6361), - [anon_sym_PIPE_PIPE] = ACTIONS(6361), - [sym_op_coalescing] = ACTIONS(6361), - [anon_sym_from] = ACTIONS(6361), - [anon_sym_join] = ACTIONS(6361), - [anon_sym_on] = ACTIONS(6361), - [anon_sym_equals] = ACTIONS(6361), - [anon_sym_let] = ACTIONS(6361), - [anon_sym_orderby] = ACTIONS(6361), - [anon_sym_group] = ACTIONS(6361), - [anon_sym_by] = ACTIONS(6361), - [anon_sym_select] = ACTIONS(6361), - [anon_sym_as] = ACTIONS(6361), - [anon_sym_is] = ACTIONS(6361), - [anon_sym_DASH_GT] = ACTIONS(6361), - [anon_sym_with] = ACTIONS(6361), - [aux_sym_preproc_if_token3] = ACTIONS(6361), - [aux_sym_preproc_else_token1] = ACTIONS(6361), - [aux_sym_preproc_elif_token1] = ACTIONS(6361), + [aux_sym_array_rank_specifier_repeat1] = STATE(7046), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(6965), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -584815,27 +578709,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4270] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4270), [sym_preproc_endregion] = STATE(4270), [sym_preproc_line] = STATE(4270), @@ -584845,41 +578733,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4270), [sym_preproc_define] = STATE(4270), [sym_preproc_undef] = STATE(4270), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6443), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6445), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -584892,27 +578781,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4271] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4271), [sym_preproc_endregion] = STATE(4271), [sym_preproc_line] = STATE(4271), @@ -584922,41 +578805,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4271), [sym_preproc_define] = STATE(4271), [sym_preproc_undef] = STATE(4271), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4782), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6431), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6967), + [anon_sym_RBRACK] = ACTIONS(6967), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6967), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -584969,27 +578853,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4272] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), [sym_preproc_region] = STATE(4272), [sym_preproc_endregion] = STATE(4272), [sym_preproc_line] = STATE(4272), @@ -584999,41 +578862,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4272), [sym_preproc_define] = STATE(4272), [sym_preproc_undef] = STATE(4272), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(6969), + [anon_sym_LBRACK] = ACTIONS(6969), + [anon_sym_COLON] = ACTIONS(6969), + [anon_sym_COMMA] = ACTIONS(6969), + [anon_sym_RBRACK] = ACTIONS(6969), + [anon_sym_LPAREN] = ACTIONS(6969), + [anon_sym_RPAREN] = ACTIONS(6969), + [anon_sym_RBRACE] = ACTIONS(6969), + [anon_sym_LT] = ACTIONS(6971), + [anon_sym_GT] = ACTIONS(6971), + [anon_sym_in] = ACTIONS(6971), + [anon_sym_QMARK] = ACTIONS(6971), + [anon_sym_DOT] = ACTIONS(6971), + [anon_sym_EQ_GT] = ACTIONS(6969), + [anon_sym_STAR] = ACTIONS(6969), + [anon_sym_switch] = ACTIONS(6969), + [anon_sym_when] = ACTIONS(6969), + [anon_sym_DOT_DOT] = ACTIONS(6969), + [anon_sym_LT_EQ] = ACTIONS(6969), + [anon_sym_GT_EQ] = ACTIONS(6969), + [anon_sym_and] = ACTIONS(6969), + [anon_sym_or] = ACTIONS(6969), + [anon_sym_EQ_EQ] = ACTIONS(6969), + [anon_sym_BANG_EQ] = ACTIONS(6969), + [anon_sym_AMP_AMP] = ACTIONS(6969), + [anon_sym_PIPE_PIPE] = ACTIONS(6969), + [anon_sym_AMP] = ACTIONS(6971), + [sym_op_bitwise_or] = ACTIONS(6971), + [anon_sym_CARET] = ACTIONS(6969), + [sym_op_left_shift] = ACTIONS(6969), + [sym_op_right_shift] = ACTIONS(6971), + [sym_op_unsigned_right_shift] = ACTIONS(6969), + [anon_sym_PLUS] = ACTIONS(6971), + [anon_sym_DASH] = ACTIONS(6971), + [sym_op_divide] = ACTIONS(6971), + [sym_op_modulo] = ACTIONS(6969), + [sym_op_coalescing] = ACTIONS(6969), + [anon_sym_BANG] = ACTIONS(6971), + [anon_sym_PLUS_PLUS] = ACTIONS(6969), + [anon_sym_DASH_DASH] = ACTIONS(6969), + [anon_sym_into] = ACTIONS(6969), + [anon_sym_on] = ACTIONS(6969), + [anon_sym_equals] = ACTIONS(6969), + [anon_sym_by] = ACTIONS(6969), + [anon_sym_as] = ACTIONS(6969), + [anon_sym_is] = ACTIONS(6969), + [anon_sym_DASH_GT] = ACTIONS(6969), + [anon_sym_with] = ACTIONS(6969), + [aux_sym_preproc_if_token3] = ACTIONS(6969), + [aux_sym_preproc_else_token1] = ACTIONS(6969), + [aux_sym_preproc_elif_token1] = ACTIONS(6969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -585055,62 +578934,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4273), [sym_preproc_define] = STATE(4273), [sym_preproc_undef] = STATE(4273), - [anon_sym_SEMI] = ACTIONS(6289), - [anon_sym_LBRACK] = ACTIONS(6289), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_COMMA] = ACTIONS(6289), - [anon_sym_RBRACK] = ACTIONS(6289), - [anon_sym_LPAREN] = ACTIONS(6289), - [anon_sym_RPAREN] = ACTIONS(6289), - [anon_sym_RBRACE] = ACTIONS(6289), - [anon_sym_LT] = ACTIONS(6291), - [anon_sym_GT] = ACTIONS(6291), - [anon_sym_in] = ACTIONS(6289), - [anon_sym_where] = ACTIONS(6289), - [anon_sym_QMARK] = ACTIONS(6291), - [anon_sym_BANG] = ACTIONS(6291), - [anon_sym_PLUS_PLUS] = ACTIONS(6289), - [anon_sym_DASH_DASH] = ACTIONS(6289), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6289), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_PERCENT] = ACTIONS(6289), - [anon_sym_CARET] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6291), - [anon_sym_AMP] = ACTIONS(6291), - [anon_sym_LT_LT] = ACTIONS(6289), - [anon_sym_GT_GT] = ACTIONS(6291), - [anon_sym_GT_GT_GT] = ACTIONS(6289), - [anon_sym_EQ_EQ] = ACTIONS(6289), - [anon_sym_BANG_EQ] = ACTIONS(6289), - [anon_sym_GT_EQ] = ACTIONS(6289), - [anon_sym_LT_EQ] = ACTIONS(6289), - [anon_sym_DOT] = ACTIONS(6291), - [anon_sym_EQ_GT] = ACTIONS(6289), - [anon_sym_switch] = ACTIONS(6289), - [anon_sym_DOT_DOT] = ACTIONS(6289), - [anon_sym_and] = ACTIONS(6289), - [anon_sym_or] = ACTIONS(6291), - [anon_sym_AMP_AMP] = ACTIONS(6289), - [anon_sym_PIPE_PIPE] = ACTIONS(6289), - [sym_op_coalescing] = ACTIONS(6289), - [anon_sym_from] = ACTIONS(6289), - [anon_sym_join] = ACTIONS(6289), - [anon_sym_on] = ACTIONS(6289), - [anon_sym_equals] = ACTIONS(6289), - [anon_sym_let] = ACTIONS(6289), - [anon_sym_orderby] = ACTIONS(6289), - [anon_sym_group] = ACTIONS(6289), - [anon_sym_by] = ACTIONS(6289), - [anon_sym_select] = ACTIONS(6289), - [anon_sym_as] = ACTIONS(6289), - [anon_sym_is] = ACTIONS(6289), - [anon_sym_DASH_GT] = ACTIONS(6289), - [anon_sym_with] = ACTIONS(6289), - [aux_sym_preproc_if_token3] = ACTIONS(6289), - [aux_sym_preproc_else_token1] = ACTIONS(6289), - [aux_sym_preproc_elif_token1] = ACTIONS(6289), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_when] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -585123,27 +578997,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4274] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4274), [sym_preproc_endregion] = STATE(4274), [sym_preproc_line] = STATE(4274), @@ -585153,41 +579006,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4274), [sym_preproc_define] = STATE(4274), [sym_preproc_undef] = STATE(4274), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6495), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_RBRACK] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_EQ_GT] = ACTIONS(4337), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_switch] = ACTIONS(4337), + [anon_sym_when] = ACTIONS(4337), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_and] = ACTIONS(4337), + [anon_sym_or] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4335), + [sym_op_bitwise_or] = ACTIONS(4335), + [anon_sym_CARET] = ACTIONS(4337), + [sym_op_left_shift] = ACTIONS(4337), + [sym_op_right_shift] = ACTIONS(4335), + [sym_op_unsigned_right_shift] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [sym_op_divide] = ACTIONS(4335), + [sym_op_modulo] = ACTIONS(4337), + [sym_op_coalescing] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_on] = ACTIONS(4337), + [anon_sym_equals] = ACTIONS(4337), + [anon_sym_by] = ACTIONS(4337), + [anon_sym_as] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4337), + [anon_sym_DASH_GT] = ACTIONS(4337), + [anon_sym_with] = ACTIONS(4337), + [aux_sym_preproc_if_token3] = ACTIONS(4337), + [aux_sym_preproc_else_token1] = ACTIONS(4337), + [aux_sym_preproc_elif_token1] = ACTIONS(4337), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -585200,27 +579069,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4275] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4275), [sym_preproc_endregion] = STATE(4275), [sym_preproc_line] = STATE(4275), @@ -585230,41 +579093,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4275), [sym_preproc_define] = STATE(4275), [sym_preproc_undef] = STATE(4275), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_in] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5356), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(6795), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6797), + [anon_sym_is] = ACTIONS(6799), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -585277,27 +579141,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4276] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7914), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4276), [sym_preproc_endregion] = STATE(4276), [sym_preproc_line] = STATE(4276), @@ -585307,41 +579170,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4276), [sym_preproc_define] = STATE(4276), [sym_preproc_undef] = STATE(4276), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_in] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_into] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4766), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -585363,62 +579222,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4277), [sym_preproc_define] = STATE(4277), [sym_preproc_undef] = STATE(4277), - [anon_sym_SEMI] = ACTIONS(5684), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_RBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(5684), - [anon_sym_RBRACE] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_in] = ACTIONS(5684), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [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(5686), - [anon_sym_EQ_GT] = ACTIONS(5684), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5686), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5684), - [anon_sym_from] = ACTIONS(5684), - [anon_sym_join] = ACTIONS(5684), - [anon_sym_on] = ACTIONS(5684), - [anon_sym_equals] = ACTIONS(5684), - [anon_sym_let] = ACTIONS(5684), - [anon_sym_orderby] = ACTIONS(5684), - [anon_sym_group] = ACTIONS(5684), - [anon_sym_by] = ACTIONS(5684), - [anon_sym_select] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_if_token3] = ACTIONS(5684), - [aux_sym_preproc_else_token1] = ACTIONS(5684), - [aux_sym_preproc_elif_token1] = ACTIONS(5684), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_COLON] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_RBRACK] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_RPAREN] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_QMARK] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_EQ_GT] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_switch] = ACTIONS(4403), + [anon_sym_when] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_and] = ACTIONS(4403), + [anon_sym_or] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_AMP] = ACTIONS(4401), + [sym_op_bitwise_or] = ACTIONS(4401), + [anon_sym_CARET] = ACTIONS(4403), + [sym_op_left_shift] = ACTIONS(4403), + [sym_op_right_shift] = ACTIONS(4401), + [sym_op_unsigned_right_shift] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [sym_op_divide] = ACTIONS(4401), + [sym_op_modulo] = ACTIONS(4403), + [sym_op_coalescing] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_on] = ACTIONS(4403), + [anon_sym_equals] = ACTIONS(4403), + [anon_sym_by] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_DASH_GT] = ACTIONS(4403), + [anon_sym_with] = ACTIONS(4403), + [aux_sym_preproc_if_token3] = ACTIONS(4403), + [aux_sym_preproc_else_token1] = ACTIONS(4403), + [aux_sym_preproc_elif_token1] = ACTIONS(4403), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -585440,62 +579294,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4278), [sym_preproc_define] = STATE(4278), [sym_preproc_undef] = STATE(4278), - [anon_sym_SEMI] = ACTIONS(6401), - [anon_sym_LBRACK] = ACTIONS(6401), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_COMMA] = ACTIONS(6401), - [anon_sym_RBRACK] = ACTIONS(6401), - [anon_sym_LPAREN] = ACTIONS(6401), - [anon_sym_RPAREN] = ACTIONS(6401), - [anon_sym_RBRACE] = ACTIONS(6401), - [anon_sym_LT] = ACTIONS(6403), - [anon_sym_GT] = ACTIONS(6403), - [anon_sym_in] = ACTIONS(6401), - [anon_sym_where] = ACTIONS(6401), - [anon_sym_QMARK] = ACTIONS(6403), - [anon_sym_BANG] = ACTIONS(6403), - [anon_sym_PLUS_PLUS] = ACTIONS(6401), - [anon_sym_DASH_DASH] = ACTIONS(6401), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6401), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_PERCENT] = ACTIONS(6401), - [anon_sym_CARET] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6403), - [anon_sym_AMP] = ACTIONS(6403), - [anon_sym_LT_LT] = ACTIONS(6401), - [anon_sym_GT_GT] = ACTIONS(6403), - [anon_sym_GT_GT_GT] = ACTIONS(6401), - [anon_sym_EQ_EQ] = ACTIONS(6401), - [anon_sym_BANG_EQ] = ACTIONS(6401), - [anon_sym_GT_EQ] = ACTIONS(6401), - [anon_sym_LT_EQ] = ACTIONS(6401), - [anon_sym_DOT] = ACTIONS(6403), - [anon_sym_EQ_GT] = ACTIONS(6401), - [anon_sym_switch] = ACTIONS(6401), - [anon_sym_DOT_DOT] = ACTIONS(6401), - [anon_sym_and] = ACTIONS(6401), - [anon_sym_or] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(6401), - [anon_sym_PIPE_PIPE] = ACTIONS(6401), - [sym_op_coalescing] = ACTIONS(6401), - [anon_sym_from] = ACTIONS(6401), - [anon_sym_join] = ACTIONS(6401), - [anon_sym_on] = ACTIONS(6401), - [anon_sym_equals] = ACTIONS(6401), - [anon_sym_let] = ACTIONS(6401), - [anon_sym_orderby] = ACTIONS(6401), - [anon_sym_group] = ACTIONS(6401), - [anon_sym_by] = ACTIONS(6401), - [anon_sym_select] = ACTIONS(6401), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_is] = ACTIONS(6401), - [anon_sym_DASH_GT] = ACTIONS(6401), - [anon_sym_with] = ACTIONS(6401), - [aux_sym_preproc_if_token3] = ACTIONS(6401), - [aux_sym_preproc_else_token1] = ACTIONS(6401), - [aux_sym_preproc_elif_token1] = ACTIONS(6401), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_QMARK] = ACTIONS(6973), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -585508,27 +579357,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4279] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1110), - [sym_op_lte] = STATE(1110), - [sym_op_eq] = STATE(1109), - [sym_op_neq] = STATE(1109), - [sym_op_gt] = STATE(1110), - [sym_op_gte] = STATE(1110), - [sym_op_and] = STATE(1108), - [sym_op_or] = STATE(1107), - [sym_op_bitwise_and] = STATE(1106), - [sym_op_bitwise_or] = STATE(1105), - [sym_op_bitwise_xor] = STATE(1104), - [sym_op_left_shift] = STATE(1102), - [sym_op_right_shift] = STATE(1102), - [sym_op_unsigned_right_shift] = STATE(1102), - [sym_op_plus] = STATE(1099), - [sym_op_minus] = STATE(1099), - [sym_op_multiply] = STATE(1096), - [sym_op_divide] = STATE(1096), - [sym_op_modulo] = STATE(1096), [sym_preproc_region] = STATE(4279), [sym_preproc_endregion] = STATE(4279), [sym_preproc_line] = STATE(4279), @@ -585538,41 +579366,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4279), [sym_preproc_define] = STATE(4279), [sym_preproc_undef] = STATE(4279), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_in] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6405), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(4312), + [anon_sym_LBRACK] = ACTIONS(4312), + [anon_sym_COLON] = ACTIONS(4312), + [anon_sym_COMMA] = ACTIONS(4312), + [anon_sym_RBRACK] = ACTIONS(4312), + [anon_sym_LPAREN] = ACTIONS(4312), + [anon_sym_RPAREN] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(4312), + [anon_sym_RBRACE] = ACTIONS(4312), + [anon_sym_LT] = ACTIONS(4310), + [anon_sym_GT] = ACTIONS(4310), + [anon_sym_in] = ACTIONS(4312), + [anon_sym_QMARK] = ACTIONS(4310), + [anon_sym_DOT] = ACTIONS(4310), + [anon_sym_EQ_GT] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4312), + [anon_sym_switch] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4312), + [anon_sym_LT_EQ] = ACTIONS(4312), + [anon_sym_GT_EQ] = ACTIONS(4312), + [anon_sym_and] = ACTIONS(4312), + [anon_sym_or] = ACTIONS(4312), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_AMP_AMP] = ACTIONS(4312), + [anon_sym_PIPE_PIPE] = ACTIONS(4312), + [anon_sym_AMP] = ACTIONS(4310), + [sym_op_bitwise_or] = ACTIONS(4310), + [anon_sym_CARET] = ACTIONS(4312), + [sym_op_left_shift] = ACTIONS(4312), + [sym_op_right_shift] = ACTIONS(4310), + [sym_op_unsigned_right_shift] = ACTIONS(4312), + [anon_sym_PLUS] = ACTIONS(4310), + [anon_sym_DASH] = ACTIONS(4310), + [sym_op_divide] = ACTIONS(4310), + [sym_op_modulo] = ACTIONS(4312), + [sym_op_coalescing] = ACTIONS(4312), + [anon_sym_BANG] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4312), + [anon_sym_DASH_DASH] = ACTIONS(4312), + [anon_sym_on] = ACTIONS(4312), + [anon_sym_equals] = ACTIONS(4312), + [anon_sym_by] = ACTIONS(4312), + [anon_sym_as] = ACTIONS(4312), + [anon_sym_is] = ACTIONS(4312), + [anon_sym_DASH_GT] = ACTIONS(4312), + [anon_sym_with] = ACTIONS(4312), + [aux_sym_preproc_if_token3] = ACTIONS(4312), + [aux_sym_preproc_else_token1] = ACTIONS(4312), + [aux_sym_preproc_elif_token1] = ACTIONS(4312), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -585585,27 +579429,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4280] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1095), - [sym_op_lte] = STATE(1095), - [sym_op_eq] = STATE(1101), - [sym_op_neq] = STATE(1101), - [sym_op_gt] = STATE(1095), - [sym_op_gte] = STATE(1095), - [sym_op_and] = STATE(1115), - [sym_op_or] = STATE(1116), - [sym_op_bitwise_and] = STATE(1121), - [sym_op_bitwise_or] = STATE(1123), - [sym_op_bitwise_xor] = STATE(1124), - [sym_op_left_shift] = STATE(1134), - [sym_op_right_shift] = STATE(1134), - [sym_op_unsigned_right_shift] = STATE(1134), - [sym_op_plus] = STATE(1151), - [sym_op_minus] = STATE(1151), - [sym_op_multiply] = STATE(1157), - [sym_op_divide] = STATE(1157), - [sym_op_modulo] = STATE(1157), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4280), [sym_preproc_endregion] = STATE(4280), [sym_preproc_line] = STATE(4280), @@ -585615,41 +579453,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4280), [sym_preproc_define] = STATE(4280), [sym_preproc_undef] = STATE(4280), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6419), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym_initializer_expression_repeat1] = STATE(7298), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6976), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(6978), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -585662,27 +579501,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4281] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4281), [sym_preproc_endregion] = STATE(4281), [sym_preproc_line] = STATE(4281), @@ -585692,41 +579510,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4281), [sym_preproc_define] = STATE(4281), [sym_preproc_undef] = STATE(4281), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RBRACE] = ACTIONS(6497), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -585739,27 +579573,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4282] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4282), [sym_preproc_endregion] = STATE(4282), [sym_preproc_line] = STATE(4282), @@ -585769,41 +579597,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4282), [sym_preproc_define] = STATE(4282), [sym_preproc_undef] = STATE(4282), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6221), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6221), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6967), + [anon_sym_RBRACK] = ACTIONS(6967), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6967), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -585816,27 +579645,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4283] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4283), [sym_preproc_endregion] = STATE(4283), [sym_preproc_line] = STATE(4283), @@ -585846,41 +579669,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4283), [sym_preproc_define] = STATE(4283), [sym_preproc_undef] = STATE(4283), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(5971), - [anon_sym_COMMA] = ACTIONS(6329), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5819), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5680), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(5825), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6980), + [anon_sym_RBRACK] = ACTIONS(6980), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6980), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -585893,27 +579717,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4284] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8025), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4284), [sym_preproc_endregion] = STATE(4284), [sym_preproc_line] = STATE(4284), @@ -585923,41 +579746,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4284), [sym_preproc_define] = STATE(4284), [sym_preproc_undef] = STATE(4284), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6329), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6499), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -585970,6 +579789,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4285] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4285), [sym_preproc_endregion] = STATE(4285), [sym_preproc_line] = STATE(4285), @@ -585979,62 +579813,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4285), [sym_preproc_define] = STATE(4285), [sym_preproc_undef] = STATE(4285), - [anon_sym_SEMI] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4357), - [anon_sym_RBRACK] = ACTIONS(4357), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_RPAREN] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4357), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4357), - [anon_sym_where] = ACTIONS(4357), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_PLUS_PLUS] = ACTIONS(4357), - [anon_sym_DASH_DASH] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4357), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4357), - [anon_sym_CARET] = ACTIONS(4357), - [anon_sym_PIPE] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_LT] = ACTIONS(4357), - [anon_sym_GT_GT] = ACTIONS(4355), - [anon_sym_GT_GT_GT] = ACTIONS(4357), - [anon_sym_EQ_EQ] = ACTIONS(4357), - [anon_sym_BANG_EQ] = ACTIONS(4357), - [anon_sym_GT_EQ] = ACTIONS(4357), - [anon_sym_LT_EQ] = ACTIONS(4357), - [anon_sym_DOT] = ACTIONS(6493), - [anon_sym_EQ_GT] = ACTIONS(4357), - [anon_sym_switch] = ACTIONS(4357), - [anon_sym_DOT_DOT] = ACTIONS(4357), - [anon_sym_and] = ACTIONS(4357), - [anon_sym_or] = ACTIONS(4355), - [anon_sym_AMP_AMP] = ACTIONS(4357), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [sym_op_coalescing] = ACTIONS(4357), - [anon_sym_from] = ACTIONS(4357), - [anon_sym_join] = ACTIONS(4357), - [anon_sym_on] = ACTIONS(4357), - [anon_sym_equals] = ACTIONS(4357), - [anon_sym_let] = ACTIONS(4357), - [anon_sym_orderby] = ACTIONS(4357), - [anon_sym_group] = ACTIONS(4357), - [anon_sym_by] = ACTIONS(4357), - [anon_sym_select] = ACTIONS(4357), - [anon_sym_as] = ACTIONS(4357), - [anon_sym_is] = ACTIONS(4357), - [anon_sym_DASH_GT] = ACTIONS(4357), - [anon_sym_with] = ACTIONS(4357), - [aux_sym_preproc_if_token3] = ACTIONS(4357), - [aux_sym_preproc_else_token1] = ACTIONS(4357), - [aux_sym_preproc_elif_token1] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6982), + [anon_sym_RBRACK] = ACTIONS(6982), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6982), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -586047,6 +579861,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4286] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4286), [sym_preproc_endregion] = STATE(4286), [sym_preproc_line] = STATE(4286), @@ -586056,62 +579885,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4286), [sym_preproc_define] = STATE(4286), [sym_preproc_undef] = STATE(4286), - [anon_sym_SEMI] = ACTIONS(6321), - [anon_sym_LBRACK] = ACTIONS(6321), - [anon_sym_COLON] = ACTIONS(6321), - [anon_sym_COMMA] = ACTIONS(6321), - [anon_sym_RBRACK] = ACTIONS(6321), - [anon_sym_LPAREN] = ACTIONS(6321), - [anon_sym_RPAREN] = ACTIONS(6321), - [anon_sym_RBRACE] = ACTIONS(6321), - [anon_sym_LT] = ACTIONS(6323), - [anon_sym_GT] = ACTIONS(6323), - [anon_sym_in] = ACTIONS(6321), - [anon_sym_where] = ACTIONS(6321), - [anon_sym_QMARK] = ACTIONS(6323), - [anon_sym_BANG] = ACTIONS(6323), - [anon_sym_PLUS_PLUS] = ACTIONS(6321), - [anon_sym_DASH_DASH] = ACTIONS(6321), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6321), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_PERCENT] = ACTIONS(6321), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_AMP] = ACTIONS(6323), - [anon_sym_LT_LT] = ACTIONS(6321), - [anon_sym_GT_GT] = ACTIONS(6323), - [anon_sym_GT_GT_GT] = ACTIONS(6321), - [anon_sym_EQ_EQ] = ACTIONS(6321), - [anon_sym_BANG_EQ] = ACTIONS(6321), - [anon_sym_GT_EQ] = ACTIONS(6321), - [anon_sym_LT_EQ] = ACTIONS(6321), - [anon_sym_DOT] = ACTIONS(6323), - [anon_sym_EQ_GT] = ACTIONS(6321), - [anon_sym_switch] = ACTIONS(6321), - [anon_sym_DOT_DOT] = ACTIONS(6321), - [anon_sym_and] = ACTIONS(6321), - [anon_sym_or] = ACTIONS(6323), - [anon_sym_AMP_AMP] = ACTIONS(6321), - [anon_sym_PIPE_PIPE] = ACTIONS(6321), - [sym_op_coalescing] = ACTIONS(6321), - [anon_sym_from] = ACTIONS(6321), - [anon_sym_join] = ACTIONS(6321), - [anon_sym_on] = ACTIONS(6321), - [anon_sym_equals] = ACTIONS(6321), - [anon_sym_let] = ACTIONS(6321), - [anon_sym_orderby] = ACTIONS(6321), - [anon_sym_group] = ACTIONS(6321), - [anon_sym_by] = ACTIONS(6321), - [anon_sym_select] = ACTIONS(6321), - [anon_sym_as] = ACTIONS(6321), - [anon_sym_is] = ACTIONS(6321), - [anon_sym_DASH_GT] = ACTIONS(6321), - [anon_sym_with] = ACTIONS(6321), - [aux_sym_preproc_if_token3] = ACTIONS(6321), - [aux_sym_preproc_else_token1] = ACTIONS(6321), - [aux_sym_preproc_elif_token1] = ACTIONS(6321), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -586122,29 +579930,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5314), }, [4287] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4287), [sym_preproc_endregion] = STATE(4287), [sym_preproc_line] = STATE(4287), @@ -586154,41 +579957,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4287), [sym_preproc_define] = STATE(4287), [sym_preproc_undef] = STATE(4287), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym__for_statement_conditions_repeat1] = STATE(7285), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6739), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6984), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -586201,27 +580005,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4288] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4288), [sym_preproc_endregion] = STATE(4288), [sym_preproc_line] = STATE(4288), @@ -586231,41 +580029,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4288), [sym_preproc_define] = STATE(4288), [sym_preproc_undef] = STATE(4288), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6491), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6481), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_by] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(6459), - [anon_sym_is] = ACTIONS(6461), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6986), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6990), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(7000), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(7002), + [anon_sym_is] = ACTIONS(7004), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -586278,27 +580077,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4289] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4289), [sym_preproc_endregion] = STATE(4289), [sym_preproc_line] = STATE(4289), @@ -586308,41 +580101,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4289), [sym_preproc_define] = STATE(4289), [sym_preproc_undef] = STATE(4289), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_in] = ACTIONS(5360), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -586355,27 +580149,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4290] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4290), [sym_preproc_endregion] = STATE(4290), [sym_preproc_line] = STATE(4290), @@ -586385,41 +580173,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4290), [sym_preproc_define] = STATE(4290), [sym_preproc_undef] = STATE(4290), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6986), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6990), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(7000), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(7002), + [anon_sym_is] = ACTIONS(7004), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -586432,27 +580221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4291] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), [sym_preproc_region] = STATE(4291), [sym_preproc_endregion] = STATE(4291), [sym_preproc_line] = STATE(4291), @@ -586462,41 +580230,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4291), [sym_preproc_define] = STATE(4291), [sym_preproc_undef] = STATE(4291), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5779), + [anon_sym_LBRACK] = ACTIONS(5779), + [anon_sym_COLON] = ACTIONS(5779), + [anon_sym_COMMA] = ACTIONS(5779), + [anon_sym_RBRACK] = ACTIONS(5779), + [anon_sym_LPAREN] = ACTIONS(5779), + [anon_sym_RPAREN] = ACTIONS(5779), + [anon_sym_RBRACE] = ACTIONS(5779), + [anon_sym_LT] = ACTIONS(5781), + [anon_sym_GT] = ACTIONS(5781), + [anon_sym_in] = ACTIONS(5781), + [anon_sym_QMARK] = ACTIONS(5781), + [anon_sym_DOT] = ACTIONS(5781), + [anon_sym_EQ_GT] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_switch] = ACTIONS(5779), + [anon_sym_when] = ACTIONS(5779), + [anon_sym_DOT_DOT] = ACTIONS(5779), + [anon_sym_LT_EQ] = ACTIONS(5779), + [anon_sym_GT_EQ] = ACTIONS(5779), + [anon_sym_and] = ACTIONS(5779), + [anon_sym_or] = ACTIONS(5779), + [anon_sym_EQ_EQ] = ACTIONS(5779), + [anon_sym_BANG_EQ] = ACTIONS(5779), + [anon_sym_AMP_AMP] = ACTIONS(5779), + [anon_sym_PIPE_PIPE] = ACTIONS(5779), + [anon_sym_AMP] = ACTIONS(5781), + [sym_op_bitwise_or] = ACTIONS(5781), + [anon_sym_CARET] = ACTIONS(5779), + [sym_op_left_shift] = ACTIONS(5779), + [sym_op_right_shift] = ACTIONS(5781), + [sym_op_unsigned_right_shift] = ACTIONS(5779), + [anon_sym_PLUS] = ACTIONS(5781), + [anon_sym_DASH] = ACTIONS(5781), + [sym_op_divide] = ACTIONS(5781), + [sym_op_modulo] = ACTIONS(5779), + [sym_op_coalescing] = ACTIONS(5779), + [anon_sym_BANG] = ACTIONS(5781), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_into] = ACTIONS(5779), + [anon_sym_on] = ACTIONS(5779), + [anon_sym_equals] = ACTIONS(5779), + [anon_sym_by] = ACTIONS(5779), + [anon_sym_as] = ACTIONS(5779), + [anon_sym_is] = ACTIONS(5779), + [anon_sym_DASH_GT] = ACTIONS(5779), + [anon_sym_with] = ACTIONS(5779), + [aux_sym_preproc_if_token3] = ACTIONS(5779), + [aux_sym_preproc_else_token1] = ACTIONS(5779), + [aux_sym_preproc_elif_token1] = ACTIONS(5779), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -586509,27 +580293,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4292] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4292), [sym_preproc_endregion] = STATE(4292), [sym_preproc_line] = STATE(4292), @@ -586539,41 +580317,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4292), [sym_preproc_define] = STATE(4292), [sym_preproc_undef] = STATE(4292), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym__for_statement_conditions_repeat1] = STATE(7287), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6739), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7006), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -586586,27 +580365,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4293] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1710), - [sym_op_lte] = STATE(1710), - [sym_op_eq] = STATE(1711), - [sym_op_neq] = STATE(1711), - [sym_op_gt] = STATE(1710), - [sym_op_gte] = STATE(1710), - [sym_op_and] = STATE(1713), - [sym_op_or] = STATE(1714), - [sym_op_bitwise_and] = STATE(1715), - [sym_op_bitwise_or] = STATE(1716), - [sym_op_bitwise_xor] = STATE(1717), - [sym_op_left_shift] = STATE(1718), - [sym_op_right_shift] = STATE(1718), - [sym_op_unsigned_right_shift] = STATE(1718), - [sym_op_plus] = STATE(1721), - [sym_op_minus] = STATE(1721), - [sym_op_multiply] = STATE(1724), - [sym_op_divide] = STATE(1724), - [sym_op_modulo] = STATE(1724), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4293), [sym_preproc_endregion] = STATE(4293), [sym_preproc_line] = STATE(4293), @@ -586616,41 +580389,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4293), [sym_preproc_define] = STATE(4293), [sym_preproc_undef] = STATE(4293), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6427), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_into] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5422), - [anon_sym_is] = ACTIONS(6433), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [aux_sym__for_statement_conditions_repeat1] = STATE(7288), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6739), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7008), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -586663,27 +580437,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4294] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4294), [sym_preproc_endregion] = STATE(4294), [sym_preproc_line] = STATE(4294), @@ -586693,41 +580461,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4294), [sym_preproc_define] = STATE(4294), [sym_preproc_undef] = STATE(4294), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6491), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6481), - [anon_sym_into] = ACTIONS(4782), - [anon_sym_by] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(6459), - [anon_sym_is] = ACTIONS(6461), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -586740,6 +580509,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4295] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4295), [sym_preproc_endregion] = STATE(4295), [sym_preproc_line] = STATE(4295), @@ -586749,62 +580533,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4295), [sym_preproc_define] = STATE(4295), [sym_preproc_undef] = STATE(4295), - [anon_sym_SEMI] = ACTIONS(6178), - [anon_sym_LBRACK] = ACTIONS(6178), - [anon_sym_COLON] = ACTIONS(6178), - [anon_sym_COMMA] = ACTIONS(6178), - [anon_sym_RBRACK] = ACTIONS(6178), - [anon_sym_LPAREN] = ACTIONS(6178), - [anon_sym_RPAREN] = ACTIONS(6178), - [anon_sym_RBRACE] = ACTIONS(6178), - [anon_sym_LT] = ACTIONS(6180), - [anon_sym_GT] = ACTIONS(6180), - [anon_sym_in] = ACTIONS(6178), - [anon_sym_where] = ACTIONS(6178), - [anon_sym_QMARK] = ACTIONS(6180), - [anon_sym_BANG] = ACTIONS(6180), - [anon_sym_PLUS_PLUS] = ACTIONS(6178), - [anon_sym_DASH_DASH] = ACTIONS(6178), - [anon_sym_PLUS] = ACTIONS(6180), - [anon_sym_DASH] = ACTIONS(6180), - [anon_sym_STAR] = ACTIONS(6178), - [anon_sym_SLASH] = ACTIONS(6180), - [anon_sym_PERCENT] = ACTIONS(6178), - [anon_sym_CARET] = ACTIONS(6178), - [anon_sym_PIPE] = ACTIONS(6180), - [anon_sym_AMP] = ACTIONS(6180), - [anon_sym_LT_LT] = ACTIONS(6178), - [anon_sym_GT_GT] = ACTIONS(6180), - [anon_sym_GT_GT_GT] = ACTIONS(6178), - [anon_sym_EQ_EQ] = ACTIONS(6178), - [anon_sym_BANG_EQ] = ACTIONS(6178), - [anon_sym_GT_EQ] = ACTIONS(6178), - [anon_sym_LT_EQ] = ACTIONS(6178), - [anon_sym_DOT] = ACTIONS(6180), - [anon_sym_EQ_GT] = ACTIONS(6178), - [anon_sym_switch] = ACTIONS(6178), - [anon_sym_DOT_DOT] = ACTIONS(6178), - [anon_sym_and] = ACTIONS(6178), - [anon_sym_or] = ACTIONS(6180), - [anon_sym_AMP_AMP] = ACTIONS(6178), - [anon_sym_PIPE_PIPE] = ACTIONS(6178), - [sym_op_coalescing] = ACTIONS(6178), - [anon_sym_from] = ACTIONS(6178), - [anon_sym_join] = ACTIONS(6178), - [anon_sym_on] = ACTIONS(6178), - [anon_sym_equals] = ACTIONS(6178), - [anon_sym_let] = ACTIONS(6178), - [anon_sym_orderby] = ACTIONS(6178), - [anon_sym_group] = ACTIONS(6178), - [anon_sym_by] = ACTIONS(6178), - [anon_sym_select] = ACTIONS(6178), - [anon_sym_as] = ACTIONS(6178), - [anon_sym_is] = ACTIONS(6178), - [anon_sym_DASH_GT] = ACTIONS(6178), - [anon_sym_with] = ACTIONS(6178), - [aux_sym_preproc_if_token3] = ACTIONS(6178), - [aux_sym_preproc_else_token1] = ACTIONS(6178), - [aux_sym_preproc_elif_token1] = ACTIONS(6178), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -586817,27 +580581,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4296] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4296), [sym_preproc_endregion] = STATE(4296), [sym_preproc_line] = STATE(4296), @@ -586847,41 +580605,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4296), [sym_preproc_define] = STATE(4296), [sym_preproc_undef] = STATE(4296), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6491), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6481), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_by] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(6459), - [anon_sym_is] = ACTIONS(6461), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6378), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(6388), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -586892,29 +580650,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [4297] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4297), [sym_preproc_endregion] = STATE(4297), [sym_preproc_line] = STATE(4297), @@ -586924,41 +580677,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4297), [sym_preproc_define] = STATE(4297), [sym_preproc_undef] = STATE(4297), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6491), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6481), - [anon_sym_into] = ACTIONS(4770), - [anon_sym_by] = ACTIONS(4770), - [anon_sym_as] = ACTIONS(6459), - [anon_sym_is] = ACTIONS(6461), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -586969,8 +580722,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [4298] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4298), [sym_preproc_endregion] = STATE(4298), [sym_preproc_line] = STATE(4298), @@ -586980,62 +580749,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4298), [sym_preproc_define] = STATE(4298), [sym_preproc_undef] = STATE(4298), - [anon_sym_SEMI] = ACTIONS(6335), - [anon_sym_LBRACK] = ACTIONS(6335), - [anon_sym_COLON] = ACTIONS(6335), - [anon_sym_COMMA] = ACTIONS(6335), - [anon_sym_RBRACK] = ACTIONS(6335), - [anon_sym_LPAREN] = ACTIONS(6335), - [anon_sym_RPAREN] = ACTIONS(6335), - [anon_sym_RBRACE] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_in] = ACTIONS(6335), - [anon_sym_where] = ACTIONS(6335), - [anon_sym_QMARK] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PLUS_PLUS] = ACTIONS(6335), - [anon_sym_DASH_DASH] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6337), - [anon_sym_DASH] = ACTIONS(6337), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6337), - [anon_sym_PERCENT] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_AMP] = ACTIONS(6337), - [anon_sym_LT_LT] = ACTIONS(6335), - [anon_sym_GT_GT] = ACTIONS(6337), - [anon_sym_GT_GT_GT] = ACTIONS(6335), - [anon_sym_EQ_EQ] = ACTIONS(6335), - [anon_sym_BANG_EQ] = ACTIONS(6335), - [anon_sym_GT_EQ] = ACTIONS(6335), - [anon_sym_LT_EQ] = ACTIONS(6335), - [anon_sym_DOT] = ACTIONS(6337), - [anon_sym_EQ_GT] = ACTIONS(6335), - [anon_sym_switch] = ACTIONS(6335), - [anon_sym_DOT_DOT] = ACTIONS(6335), - [anon_sym_and] = ACTIONS(6335), - [anon_sym_or] = ACTIONS(6337), - [anon_sym_AMP_AMP] = ACTIONS(6335), - [anon_sym_PIPE_PIPE] = ACTIONS(6335), - [sym_op_coalescing] = ACTIONS(6335), - [anon_sym_from] = ACTIONS(6335), - [anon_sym_join] = ACTIONS(6335), - [anon_sym_on] = ACTIONS(6335), - [anon_sym_equals] = ACTIONS(6335), - [anon_sym_let] = ACTIONS(6335), - [anon_sym_orderby] = ACTIONS(6335), - [anon_sym_group] = ACTIONS(6335), - [anon_sym_by] = ACTIONS(6335), - [anon_sym_select] = ACTIONS(6335), - [anon_sym_as] = ACTIONS(6335), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(6335), - [anon_sym_with] = ACTIONS(6335), - [aux_sym_preproc_if_token3] = ACTIONS(6335), - [aux_sym_preproc_else_token1] = ACTIONS(6335), - [aux_sym_preproc_elif_token1] = ACTIONS(6335), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -587048,27 +580797,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4299] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(849), - [sym_op_lte] = STATE(849), - [sym_op_eq] = STATE(848), - [sym_op_neq] = STATE(848), - [sym_op_gt] = STATE(849), - [sym_op_gte] = STATE(849), - [sym_op_and] = STATE(847), - [sym_op_or] = STATE(846), - [sym_op_bitwise_and] = STATE(845), - [sym_op_bitwise_or] = STATE(1916), - [sym_op_bitwise_xor] = STATE(920), - [sym_op_left_shift] = STATE(918), - [sym_op_right_shift] = STATE(918), - [sym_op_unsigned_right_shift] = STATE(918), - [sym_op_plus] = STATE(911), - [sym_op_minus] = STATE(911), - [sym_op_multiply] = STATE(909), - [sym_op_divide] = STATE(909), - [sym_op_modulo] = STATE(909), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4299), [sym_preproc_endregion] = STATE(4299), [sym_preproc_line] = STATE(4299), @@ -587078,41 +580821,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4299), [sym_preproc_define] = STATE(4299), [sym_preproc_undef] = STATE(4299), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6491), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6481), - [anon_sym_into] = ACTIONS(4708), - [anon_sym_by] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(6459), - [anon_sym_is] = ACTIONS(6461), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6937), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(6947), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -587125,6 +580869,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4300] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4300), [sym_preproc_endregion] = STATE(4300), [sym_preproc_line] = STATE(4300), @@ -587134,62 +580893,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4300), [sym_preproc_define] = STATE(4300), [sym_preproc_undef] = STATE(4300), - [anon_sym_SEMI] = ACTIONS(6174), - [anon_sym_LBRACK] = ACTIONS(6174), - [anon_sym_COLON] = ACTIONS(6174), - [anon_sym_COMMA] = ACTIONS(6174), - [anon_sym_RBRACK] = ACTIONS(6174), - [anon_sym_LPAREN] = ACTIONS(6174), - [anon_sym_RPAREN] = ACTIONS(6174), - [anon_sym_RBRACE] = ACTIONS(6174), - [anon_sym_LT] = ACTIONS(6176), - [anon_sym_GT] = ACTIONS(6176), - [anon_sym_in] = ACTIONS(6174), - [anon_sym_where] = ACTIONS(6174), - [anon_sym_QMARK] = ACTIONS(6176), - [anon_sym_BANG] = ACTIONS(6176), - [anon_sym_PLUS_PLUS] = ACTIONS(6174), - [anon_sym_DASH_DASH] = ACTIONS(6174), - [anon_sym_PLUS] = ACTIONS(6176), - [anon_sym_DASH] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(6174), - [anon_sym_SLASH] = ACTIONS(6176), - [anon_sym_PERCENT] = ACTIONS(6174), - [anon_sym_CARET] = ACTIONS(6174), - [anon_sym_PIPE] = ACTIONS(6176), - [anon_sym_AMP] = ACTIONS(6176), - [anon_sym_LT_LT] = ACTIONS(6174), - [anon_sym_GT_GT] = ACTIONS(6176), - [anon_sym_GT_GT_GT] = ACTIONS(6174), - [anon_sym_EQ_EQ] = ACTIONS(6174), - [anon_sym_BANG_EQ] = ACTIONS(6174), - [anon_sym_GT_EQ] = ACTIONS(6174), - [anon_sym_LT_EQ] = ACTIONS(6174), - [anon_sym_DOT] = ACTIONS(6176), - [anon_sym_EQ_GT] = ACTIONS(6174), - [anon_sym_switch] = ACTIONS(6174), - [anon_sym_DOT_DOT] = ACTIONS(6174), - [anon_sym_and] = ACTIONS(6174), - [anon_sym_or] = ACTIONS(6176), - [anon_sym_AMP_AMP] = ACTIONS(6174), - [anon_sym_PIPE_PIPE] = ACTIONS(6174), - [sym_op_coalescing] = ACTIONS(6174), - [anon_sym_from] = ACTIONS(6174), - [anon_sym_join] = ACTIONS(6174), - [anon_sym_on] = ACTIONS(6174), - [anon_sym_equals] = ACTIONS(6174), - [anon_sym_let] = ACTIONS(6174), - [anon_sym_orderby] = ACTIONS(6174), - [anon_sym_group] = ACTIONS(6174), - [anon_sym_by] = ACTIONS(6174), - [anon_sym_select] = ACTIONS(6174), - [anon_sym_as] = ACTIONS(6174), - [anon_sym_is] = ACTIONS(6174), - [anon_sym_DASH_GT] = ACTIONS(6174), - [anon_sym_with] = ACTIONS(6174), - [aux_sym_preproc_if_token3] = ACTIONS(6174), - [aux_sym_preproc_else_token1] = ACTIONS(6174), - [aux_sym_preproc_elif_token1] = ACTIONS(6174), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -587200,29 +580938,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [4301] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4301), [sym_preproc_endregion] = STATE(4301), [sym_preproc_line] = STATE(4301), @@ -587232,40 +580965,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4301), [sym_preproc_define] = STATE(4301), [sym_preproc_undef] = STATE(4301), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -587276,29 +581010,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5300), }, [4302] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4302), [sym_preproc_endregion] = STATE(4302), [sym_preproc_line] = STATE(4302), @@ -587308,40 +581037,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4302), [sym_preproc_define] = STATE(4302), [sym_preproc_undef] = STATE(4302), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6503), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(6795), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6797), + [anon_sym_is] = ACTIONS(6799), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -587354,27 +581085,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4303] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8025), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4303), [sym_preproc_endregion] = STATE(4303), [sym_preproc_line] = STATE(4303), @@ -587384,40 +581114,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4303), [sym_preproc_define] = STATE(4303), [sym_preproc_undef] = STATE(4303), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6505), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_function_pointer_type_repeat1] = STATE(4317), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -587430,27 +581157,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4304] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4304), [sym_preproc_endregion] = STATE(4304), [sym_preproc_line] = STATE(4304), @@ -587460,40 +581181,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4304), [sym_preproc_define] = STATE(4304), [sym_preproc_undef] = STATE(4304), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6515), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -587506,27 +581229,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4305] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4305), [sym_preproc_endregion] = STATE(4305), [sym_preproc_line] = STATE(4305), @@ -587536,40 +581253,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4305), [sym_preproc_define] = STATE(4305), [sym_preproc_undef] = STATE(4305), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6517), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -587582,27 +581301,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4306] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4306), [sym_preproc_endregion] = STATE(4306), [sym_preproc_line] = STATE(4306), @@ -587612,40 +581310,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4306), [sym_preproc_define] = STATE(4306), [sym_preproc_undef] = STATE(4306), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6525), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5745), + [anon_sym_LBRACK] = ACTIONS(5745), + [anon_sym_COLON] = ACTIONS(5745), + [anon_sym_COMMA] = ACTIONS(5745), + [anon_sym_RBRACK] = ACTIONS(5745), + [anon_sym_LPAREN] = ACTIONS(5745), + [anon_sym_RPAREN] = ACTIONS(5745), + [anon_sym_RBRACE] = ACTIONS(5745), + [anon_sym_LT] = ACTIONS(5747), + [anon_sym_GT] = ACTIONS(5747), + [anon_sym_in] = ACTIONS(5747), + [anon_sym_QMARK] = ACTIONS(5747), + [anon_sym_DOT] = ACTIONS(5747), + [anon_sym_EQ_GT] = ACTIONS(5745), + [anon_sym_STAR] = ACTIONS(5745), + [anon_sym_switch] = ACTIONS(5745), + [anon_sym_when] = ACTIONS(5745), + [anon_sym_DOT_DOT] = ACTIONS(5745), + [anon_sym_LT_EQ] = ACTIONS(5745), + [anon_sym_GT_EQ] = ACTIONS(5745), + [anon_sym_and] = ACTIONS(5745), + [anon_sym_or] = ACTIONS(5745), + [anon_sym_EQ_EQ] = ACTIONS(5745), + [anon_sym_BANG_EQ] = ACTIONS(5745), + [anon_sym_AMP_AMP] = ACTIONS(5745), + [anon_sym_PIPE_PIPE] = ACTIONS(5745), + [anon_sym_AMP] = ACTIONS(5747), + [sym_op_bitwise_or] = ACTIONS(5747), + [anon_sym_CARET] = ACTIONS(5745), + [sym_op_left_shift] = ACTIONS(5745), + [sym_op_right_shift] = ACTIONS(5747), + [sym_op_unsigned_right_shift] = ACTIONS(5745), + [anon_sym_PLUS] = ACTIONS(5747), + [anon_sym_DASH] = ACTIONS(5747), + [sym_op_divide] = ACTIONS(5747), + [sym_op_modulo] = ACTIONS(5745), + [sym_op_coalescing] = ACTIONS(5745), + [anon_sym_BANG] = ACTIONS(5747), + [anon_sym_PLUS_PLUS] = ACTIONS(5745), + [anon_sym_DASH_DASH] = ACTIONS(5745), + [anon_sym_into] = ACTIONS(5745), + [anon_sym_on] = ACTIONS(5745), + [anon_sym_equals] = ACTIONS(5745), + [anon_sym_by] = ACTIONS(5745), + [anon_sym_as] = ACTIONS(5745), + [anon_sym_is] = ACTIONS(5745), + [anon_sym_DASH_GT] = ACTIONS(5745), + [anon_sym_with] = ACTIONS(5745), + [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), @@ -587658,27 +581373,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4307] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4307), [sym_preproc_endregion] = STATE(4307), [sym_preproc_line] = STATE(4307), @@ -587688,40 +581397,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4307), [sym_preproc_define] = STATE(4307), [sym_preproc_undef] = STATE(4307), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6531), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6986), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6990), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(7000), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(7002), + [anon_sym_is] = ACTIONS(7004), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -587734,27 +581445,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4308] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4308), [sym_preproc_endregion] = STATE(4308), [sym_preproc_line] = STATE(4308), @@ -587764,40 +581469,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4308), [sym_preproc_define] = STATE(4308), [sym_preproc_undef] = STATE(4308), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6533), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6937), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -587810,27 +581517,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4309] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4309), [sym_preproc_endregion] = STATE(4309), [sym_preproc_line] = STATE(4309), @@ -587840,40 +581526,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4309), [sym_preproc_define] = STATE(4309), [sym_preproc_undef] = STATE(4309), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6535), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5839), + [anon_sym_LBRACK] = ACTIONS(5839), + [anon_sym_COLON] = 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_DOT] = ACTIONS(5841), + [anon_sym_EQ_GT] = ACTIONS(5839), + [anon_sym_STAR] = ACTIONS(5839), + [anon_sym_switch] = ACTIONS(5839), + [anon_sym_when] = ACTIONS(5839), + [anon_sym_DOT_DOT] = ACTIONS(5839), + [anon_sym_LT_EQ] = ACTIONS(5839), + [anon_sym_GT_EQ] = ACTIONS(5839), + [anon_sym_and] = ACTIONS(5839), + [anon_sym_or] = ACTIONS(5839), + [anon_sym_EQ_EQ] = ACTIONS(5839), + [anon_sym_BANG_EQ] = ACTIONS(5839), + [anon_sym_AMP_AMP] = ACTIONS(5839), + [anon_sym_PIPE_PIPE] = ACTIONS(5839), + [anon_sym_AMP] = ACTIONS(5841), + [sym_op_bitwise_or] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5839), + [sym_op_left_shift] = ACTIONS(5839), + [sym_op_right_shift] = ACTIONS(5841), + [sym_op_unsigned_right_shift] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [sym_op_divide] = ACTIONS(5841), + [sym_op_modulo] = ACTIONS(5839), + [sym_op_coalescing] = ACTIONS(5839), + [anon_sym_BANG] = ACTIONS(5841), + [anon_sym_PLUS_PLUS] = ACTIONS(5839), + [anon_sym_DASH_DASH] = ACTIONS(5839), + [anon_sym_into] = ACTIONS(5839), + [anon_sym_on] = ACTIONS(5839), + [anon_sym_equals] = ACTIONS(5839), + [anon_sym_by] = ACTIONS(5839), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -587886,27 +581589,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4310] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4310), [sym_preproc_endregion] = STATE(4310), [sym_preproc_line] = STATE(4310), @@ -587916,40 +581613,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4310), [sym_preproc_define] = STATE(4310), [sym_preproc_undef] = STATE(4310), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4748), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6543), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6937), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -587962,27 +581661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4311] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4311), [sym_preproc_endregion] = STATE(4311), [sym_preproc_line] = STATE(4311), @@ -587992,40 +581670,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4311), [sym_preproc_define] = STATE(4311), [sym_preproc_undef] = STATE(4311), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6019), + [anon_sym_LBRACK] = ACTIONS(6019), + [anon_sym_COLON] = ACTIONS(6019), + [anon_sym_COMMA] = ACTIONS(6019), + [anon_sym_RBRACK] = ACTIONS(6019), + [anon_sym_LPAREN] = ACTIONS(6019), + [anon_sym_RPAREN] = ACTIONS(6019), + [anon_sym_RBRACE] = ACTIONS(6019), + [anon_sym_LT] = ACTIONS(6021), + [anon_sym_GT] = ACTIONS(6021), + [anon_sym_in] = ACTIONS(6021), + [anon_sym_QMARK] = ACTIONS(6021), + [anon_sym_DOT] = ACTIONS(6021), + [anon_sym_EQ_GT] = ACTIONS(6019), + [anon_sym_STAR] = ACTIONS(6019), + [anon_sym_switch] = ACTIONS(6019), + [anon_sym_when] = ACTIONS(6019), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_LT_EQ] = ACTIONS(6019), + [anon_sym_GT_EQ] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(6019), + [anon_sym_or] = ACTIONS(6019), + [anon_sym_EQ_EQ] = ACTIONS(6019), + [anon_sym_BANG_EQ] = ACTIONS(6019), + [anon_sym_AMP_AMP] = ACTIONS(6019), + [anon_sym_PIPE_PIPE] = ACTIONS(6019), + [anon_sym_AMP] = ACTIONS(6021), + [sym_op_bitwise_or] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6019), + [sym_op_left_shift] = ACTIONS(6019), + [sym_op_right_shift] = ACTIONS(6021), + [sym_op_unsigned_right_shift] = ACTIONS(6019), + [anon_sym_PLUS] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [sym_op_divide] = ACTIONS(6021), + [sym_op_modulo] = ACTIONS(6019), + [sym_op_coalescing] = ACTIONS(6019), + [anon_sym_BANG] = ACTIONS(6021), + [anon_sym_PLUS_PLUS] = ACTIONS(6019), + [anon_sym_DASH_DASH] = ACTIONS(6019), + [anon_sym_into] = ACTIONS(6019), + [anon_sym_on] = ACTIONS(6019), + [anon_sym_equals] = ACTIONS(6019), + [anon_sym_by] = ACTIONS(6019), + [anon_sym_as] = ACTIONS(6019), + [anon_sym_is] = ACTIONS(6019), + [anon_sym_DASH_GT] = ACTIONS(6019), + [anon_sym_with] = ACTIONS(6019), + [aux_sym_preproc_if_token3] = ACTIONS(6019), + [aux_sym_preproc_else_token1] = ACTIONS(6019), + [aux_sym_preproc_elif_token1] = ACTIONS(6019), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -588038,27 +581733,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4312] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4312), [sym_preproc_endregion] = STATE(4312), [sym_preproc_line] = STATE(4312), @@ -588068,40 +581757,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4312), [sym_preproc_define] = STATE(4312), [sym_preproc_undef] = STATE(4312), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6547), - [anon_sym_is] = ACTIONS(6549), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6986), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6990), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(7000), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(7002), + [anon_sym_is] = ACTIONS(7004), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -588114,27 +581805,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4313] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4313), [sym_preproc_endregion] = STATE(4313), [sym_preproc_line] = STATE(4313), @@ -588144,40 +581829,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4313), [sym_preproc_define] = STATE(4313), [sym_preproc_undef] = STATE(4313), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6551), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -588190,27 +581877,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4314] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4314), [sym_preproc_endregion] = STATE(4314), [sym_preproc_line] = STATE(4314), @@ -588220,40 +581901,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4314), [sym_preproc_define] = STATE(4314), [sym_preproc_undef] = STATE(4314), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(6553), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6555), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6557), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -588266,27 +581949,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4315] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4315), [sym_preproc_endregion] = STATE(4315), [sym_preproc_line] = STATE(4315), @@ -588296,40 +581973,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4315), [sym_preproc_define] = STATE(4315), [sym_preproc_undef] = STATE(4315), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(6559), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6543), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -588342,27 +582021,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4316] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4316), [sym_preproc_endregion] = STATE(4316), [sym_preproc_line] = STATE(4316), @@ -588372,40 +582045,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4316), [sym_preproc_define] = STATE(4316), [sym_preproc_undef] = STATE(4316), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6561), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -588418,27 +582093,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4317] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8144), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4317), [sym_preproc_endregion] = STATE(4317), [sym_preproc_line] = STATE(4317), @@ -588448,40 +582122,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4317), [sym_preproc_define] = STATE(4317), [sym_preproc_undef] = STATE(4317), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6563), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -588494,27 +582165,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4318] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4318), [sym_preproc_endregion] = STATE(4318), [sym_preproc_line] = STATE(4318), @@ -588524,40 +582174,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4318), [sym_preproc_define] = STATE(4318), [sym_preproc_undef] = STATE(4318), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6565), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5857), + [anon_sym_LBRACK] = ACTIONS(5857), + [anon_sym_COLON] = ACTIONS(5857), + [anon_sym_COMMA] = ACTIONS(5857), + [anon_sym_RBRACK] = ACTIONS(5857), + [anon_sym_LPAREN] = ACTIONS(5857), + [anon_sym_RPAREN] = ACTIONS(5857), + [anon_sym_RBRACE] = ACTIONS(5857), + [anon_sym_LT] = ACTIONS(5859), + [anon_sym_GT] = ACTIONS(5859), + [anon_sym_in] = ACTIONS(5859), + [anon_sym_QMARK] = ACTIONS(5859), + [anon_sym_DOT] = ACTIONS(5859), + [anon_sym_EQ_GT] = ACTIONS(5857), + [anon_sym_STAR] = ACTIONS(5857), + [anon_sym_switch] = ACTIONS(5857), + [anon_sym_when] = ACTIONS(5857), + [anon_sym_DOT_DOT] = ACTIONS(5857), + [anon_sym_LT_EQ] = ACTIONS(5857), + [anon_sym_GT_EQ] = ACTIONS(5857), + [anon_sym_and] = ACTIONS(5857), + [anon_sym_or] = ACTIONS(5857), + [anon_sym_EQ_EQ] = ACTIONS(5857), + [anon_sym_BANG_EQ] = ACTIONS(5857), + [anon_sym_AMP_AMP] = ACTIONS(5857), + [anon_sym_PIPE_PIPE] = ACTIONS(5857), + [anon_sym_AMP] = ACTIONS(5859), + [sym_op_bitwise_or] = ACTIONS(5859), + [anon_sym_CARET] = ACTIONS(5857), + [sym_op_left_shift] = ACTIONS(5857), + [sym_op_right_shift] = ACTIONS(5859), + [sym_op_unsigned_right_shift] = ACTIONS(5857), + [anon_sym_PLUS] = ACTIONS(5859), + [anon_sym_DASH] = ACTIONS(5859), + [sym_op_divide] = ACTIONS(5859), + [sym_op_modulo] = ACTIONS(5857), + [sym_op_coalescing] = ACTIONS(5857), + [anon_sym_BANG] = ACTIONS(5859), + [anon_sym_PLUS_PLUS] = ACTIONS(5857), + [anon_sym_DASH_DASH] = ACTIONS(5857), + [anon_sym_into] = ACTIONS(5857), + [anon_sym_on] = ACTIONS(5857), + [anon_sym_equals] = ACTIONS(5857), + [anon_sym_by] = ACTIONS(5857), + [anon_sym_as] = ACTIONS(5857), + [anon_sym_is] = ACTIONS(5857), + [anon_sym_DASH_GT] = ACTIONS(5857), + [anon_sym_with] = ACTIONS(5857), + [aux_sym_preproc_if_token3] = ACTIONS(5857), + [aux_sym_preproc_else_token1] = ACTIONS(5857), + [aux_sym_preproc_elif_token1] = ACTIONS(5857), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -588570,27 +582237,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4319] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4319), [sym_preproc_endregion] = STATE(4319), [sym_preproc_line] = STATE(4319), @@ -588600,40 +582246,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4319), [sym_preproc_define] = STATE(4319), [sym_preproc_undef] = STATE(4319), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6567), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5879), + [anon_sym_LBRACK] = ACTIONS(5879), + [anon_sym_COLON] = ACTIONS(5879), + [anon_sym_COMMA] = ACTIONS(5879), + [anon_sym_RBRACK] = ACTIONS(5879), + [anon_sym_LPAREN] = ACTIONS(5879), + [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_RBRACE] = ACTIONS(5879), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_in] = ACTIONS(5881), + [anon_sym_QMARK] = ACTIONS(5881), + [anon_sym_DOT] = ACTIONS(5881), + [anon_sym_EQ_GT] = ACTIONS(5879), + [anon_sym_STAR] = ACTIONS(5879), + [anon_sym_switch] = ACTIONS(5879), + [anon_sym_when] = ACTIONS(5879), + [anon_sym_DOT_DOT] = ACTIONS(5879), + [anon_sym_LT_EQ] = ACTIONS(5879), + [anon_sym_GT_EQ] = ACTIONS(5879), + [anon_sym_and] = ACTIONS(5879), + [anon_sym_or] = ACTIONS(5879), + [anon_sym_EQ_EQ] = ACTIONS(5879), + [anon_sym_BANG_EQ] = ACTIONS(5879), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5879), + [anon_sym_AMP] = ACTIONS(5881), + [sym_op_bitwise_or] = ACTIONS(5881), + [anon_sym_CARET] = ACTIONS(5879), + [sym_op_left_shift] = ACTIONS(5879), + [sym_op_right_shift] = ACTIONS(5881), + [sym_op_unsigned_right_shift] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5881), + [sym_op_divide] = ACTIONS(5881), + [sym_op_modulo] = ACTIONS(5879), + [sym_op_coalescing] = ACTIONS(5879), + [anon_sym_BANG] = ACTIONS(5881), + [anon_sym_PLUS_PLUS] = ACTIONS(5879), + [anon_sym_DASH_DASH] = ACTIONS(5879), + [anon_sym_into] = ACTIONS(5879), + [anon_sym_on] = ACTIONS(5879), + [anon_sym_equals] = ACTIONS(5879), + [anon_sym_by] = ACTIONS(5879), + [anon_sym_as] = ACTIONS(5879), + [anon_sym_is] = ACTIONS(5879), + [anon_sym_DASH_GT] = ACTIONS(5879), + [anon_sym_with] = ACTIONS(5879), + [aux_sym_preproc_if_token3] = ACTIONS(5879), + [aux_sym_preproc_else_token1] = ACTIONS(5879), + [aux_sym_preproc_elif_token1] = ACTIONS(5879), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -588646,27 +582309,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4320] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4320), [sym_preproc_endregion] = STATE(4320), [sym_preproc_line] = STATE(4320), @@ -588676,40 +582333,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4320), [sym_preproc_define] = STATE(4320), [sym_preproc_undef] = STATE(4320), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4778), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6543), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_COMMA] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -588720,29 +582378,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5308), }, [4321] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4321), [sym_preproc_endregion] = STATE(4321), [sym_preproc_line] = STATE(4321), @@ -588752,40 +582405,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4321), [sym_preproc_define] = STATE(4321), [sym_preproc_undef] = STATE(4321), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6543), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -588798,27 +582453,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4322] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7769), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4322), [sym_preproc_endregion] = STATE(4322), [sym_preproc_line] = STATE(4322), @@ -588828,40 +582482,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4322), [sym_preproc_define] = STATE(4322), [sym_preproc_undef] = STATE(4322), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6569), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_function_pointer_type_repeat1] = STATE(4329), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -588874,27 +582525,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4323] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4323), [sym_preproc_endregion] = STATE(4323), [sym_preproc_line] = STATE(4323), @@ -588904,40 +582549,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4323), [sym_preproc_define] = STATE(4323), [sym_preproc_undef] = STATE(4323), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6571), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6986), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6990), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(7000), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(7002), + [anon_sym_is] = ACTIONS(7004), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -588950,27 +582597,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4324] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), [sym_preproc_region] = STATE(4324), [sym_preproc_endregion] = STATE(4324), [sym_preproc_line] = STATE(4324), @@ -588980,40 +582606,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4324), [sym_preproc_define] = STATE(4324), [sym_preproc_undef] = STATE(4324), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6855), + [anon_sym_LBRACK] = ACTIONS(6855), + [anon_sym_COLON] = ACTIONS(6855), + [anon_sym_COMMA] = ACTIONS(6855), + [anon_sym_RBRACK] = ACTIONS(6855), + [anon_sym_LPAREN] = ACTIONS(6855), + [anon_sym_RPAREN] = ACTIONS(6855), + [anon_sym_RBRACE] = ACTIONS(6855), + [anon_sym_LT] = ACTIONS(6857), + [anon_sym_GT] = ACTIONS(6857), + [anon_sym_in] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(6857), + [anon_sym_DOT] = ACTIONS(6857), + [anon_sym_EQ_GT] = ACTIONS(6855), + [anon_sym_STAR] = ACTIONS(6855), + [anon_sym_switch] = ACTIONS(6855), + [anon_sym_when] = ACTIONS(6855), + [anon_sym_DOT_DOT] = ACTIONS(6855), + [anon_sym_LT_EQ] = ACTIONS(6855), + [anon_sym_GT_EQ] = ACTIONS(6855), + [anon_sym_and] = ACTIONS(6855), + [anon_sym_or] = ACTIONS(6855), + [anon_sym_EQ_EQ] = ACTIONS(6855), + [anon_sym_BANG_EQ] = ACTIONS(6855), + [anon_sym_AMP_AMP] = ACTIONS(6855), + [anon_sym_PIPE_PIPE] = ACTIONS(6855), + [anon_sym_AMP] = ACTIONS(6857), + [sym_op_bitwise_or] = ACTIONS(6857), + [anon_sym_CARET] = ACTIONS(6855), + [sym_op_left_shift] = ACTIONS(6855), + [sym_op_right_shift] = ACTIONS(6857), + [sym_op_unsigned_right_shift] = ACTIONS(6855), + [anon_sym_PLUS] = ACTIONS(6857), + [anon_sym_DASH] = ACTIONS(6857), + [sym_op_divide] = ACTIONS(6857), + [sym_op_modulo] = ACTIONS(6855), + [sym_op_coalescing] = ACTIONS(6855), + [anon_sym_BANG] = ACTIONS(6857), + [anon_sym_PLUS_PLUS] = ACTIONS(6855), + [anon_sym_DASH_DASH] = ACTIONS(6855), + [anon_sym_into] = ACTIONS(6855), + [anon_sym_on] = ACTIONS(6855), + [anon_sym_equals] = ACTIONS(6855), + [anon_sym_by] = ACTIONS(6855), + [anon_sym_as] = ACTIONS(6855), + [anon_sym_is] = ACTIONS(6855), + [anon_sym_DASH_GT] = ACTIONS(6855), + [anon_sym_with] = ACTIONS(6855), + [aux_sym_preproc_if_token3] = ACTIONS(6855), + [aux_sym_preproc_else_token1] = ACTIONS(6855), + [aux_sym_preproc_elif_token1] = ACTIONS(6855), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -589026,27 +582669,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4325] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), [sym_preproc_region] = STATE(4325), [sym_preproc_endregion] = STATE(4325), [sym_preproc_line] = STATE(4325), @@ -589056,40 +582678,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4325), [sym_preproc_define] = STATE(4325), [sym_preproc_undef] = STATE(4325), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(6553), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6555), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6557), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5723), + [anon_sym_LBRACK] = ACTIONS(5723), + [anon_sym_COLON] = ACTIONS(5723), + [anon_sym_COMMA] = ACTIONS(5723), + [anon_sym_RBRACK] = ACTIONS(5723), + [anon_sym_LPAREN] = ACTIONS(5723), + [anon_sym_RPAREN] = ACTIONS(5723), + [anon_sym_RBRACE] = ACTIONS(5723), + [anon_sym_LT] = ACTIONS(5725), + [anon_sym_GT] = ACTIONS(5725), + [anon_sym_in] = ACTIONS(5725), + [anon_sym_QMARK] = ACTIONS(5725), + [anon_sym_DOT] = ACTIONS(5725), + [anon_sym_EQ_GT] = ACTIONS(5723), + [anon_sym_STAR] = ACTIONS(5723), + [anon_sym_switch] = ACTIONS(5723), + [anon_sym_when] = ACTIONS(5723), + [anon_sym_DOT_DOT] = ACTIONS(5723), + [anon_sym_LT_EQ] = ACTIONS(5723), + [anon_sym_GT_EQ] = ACTIONS(5723), + [anon_sym_and] = ACTIONS(5723), + [anon_sym_or] = ACTIONS(5723), + [anon_sym_EQ_EQ] = ACTIONS(5723), + [anon_sym_BANG_EQ] = ACTIONS(5723), + [anon_sym_AMP_AMP] = ACTIONS(5723), + [anon_sym_PIPE_PIPE] = ACTIONS(5723), + [anon_sym_AMP] = ACTIONS(5725), + [sym_op_bitwise_or] = ACTIONS(5725), + [anon_sym_CARET] = ACTIONS(5723), + [sym_op_left_shift] = ACTIONS(5723), + [sym_op_right_shift] = ACTIONS(5725), + [sym_op_unsigned_right_shift] = ACTIONS(5723), + [anon_sym_PLUS] = ACTIONS(5725), + [anon_sym_DASH] = ACTIONS(5725), + [sym_op_divide] = ACTIONS(5725), + [sym_op_modulo] = ACTIONS(5723), + [sym_op_coalescing] = ACTIONS(5723), + [anon_sym_BANG] = ACTIONS(5725), + [anon_sym_PLUS_PLUS] = ACTIONS(5723), + [anon_sym_DASH_DASH] = ACTIONS(5723), + [anon_sym_into] = ACTIONS(5723), + [anon_sym_on] = ACTIONS(5723), + [anon_sym_equals] = ACTIONS(5723), + [anon_sym_by] = ACTIONS(5723), + [anon_sym_as] = ACTIONS(5723), + [anon_sym_is] = ACTIONS(5723), + [anon_sym_DASH_GT] = ACTIONS(5723), + [anon_sym_with] = ACTIONS(5723), + [aux_sym_preproc_if_token3] = ACTIONS(5723), + [aux_sym_preproc_else_token1] = ACTIONS(5723), + [aux_sym_preproc_elif_token1] = ACTIONS(5723), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -589102,27 +582741,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4326] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(4326), [sym_preproc_endregion] = STATE(4326), [sym_preproc_line] = STATE(4326), @@ -589132,40 +582750,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4326), [sym_preproc_define] = STATE(4326), [sym_preproc_undef] = STATE(4326), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(5971), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5680), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5857), + [anon_sym_LBRACK] = ACTIONS(5857), + [anon_sym_COLON] = ACTIONS(5857), + [anon_sym_COMMA] = ACTIONS(5857), + [anon_sym_RBRACK] = ACTIONS(5857), + [anon_sym_LPAREN] = ACTIONS(5857), + [anon_sym_RPAREN] = ACTIONS(5857), + [anon_sym_RBRACE] = ACTIONS(5857), + [anon_sym_LT] = ACTIONS(5859), + [anon_sym_GT] = ACTIONS(5859), + [anon_sym_in] = ACTIONS(5857), + [anon_sym_QMARK] = ACTIONS(5859), + [anon_sym_DOT] = ACTIONS(5859), + [anon_sym_EQ_GT] = ACTIONS(5857), + [anon_sym_STAR] = ACTIONS(5857), + [anon_sym_switch] = ACTIONS(5857), + [anon_sym_when] = ACTIONS(5857), + [anon_sym_DOT_DOT] = ACTIONS(5857), + [anon_sym_LT_EQ] = ACTIONS(5857), + [anon_sym_GT_EQ] = ACTIONS(5857), + [anon_sym_and] = ACTIONS(5857), + [anon_sym_or] = ACTIONS(5857), + [anon_sym_EQ_EQ] = ACTIONS(5857), + [anon_sym_BANG_EQ] = ACTIONS(5857), + [anon_sym_AMP_AMP] = ACTIONS(5857), + [anon_sym_PIPE_PIPE] = ACTIONS(5857), + [anon_sym_AMP] = ACTIONS(5859), + [sym_op_bitwise_or] = ACTIONS(5859), + [anon_sym_CARET] = ACTIONS(5857), + [sym_op_left_shift] = ACTIONS(5857), + [sym_op_right_shift] = ACTIONS(5859), + [sym_op_unsigned_right_shift] = ACTIONS(5857), + [anon_sym_PLUS] = ACTIONS(5859), + [anon_sym_DASH] = ACTIONS(5859), + [sym_op_divide] = ACTIONS(5859), + [sym_op_modulo] = ACTIONS(5857), + [sym_op_coalescing] = ACTIONS(5857), + [anon_sym_BANG] = ACTIONS(5859), + [anon_sym_PLUS_PLUS] = ACTIONS(5857), + [anon_sym_DASH_DASH] = ACTIONS(5857), + [anon_sym_on] = ACTIONS(5857), + [anon_sym_equals] = ACTIONS(5857), + [anon_sym_by] = ACTIONS(5857), + [anon_sym_as] = ACTIONS(5857), + [anon_sym_is] = ACTIONS(5857), + [anon_sym_DASH_GT] = ACTIONS(5857), + [anon_sym_with] = ACTIONS(5857), + [anon_sym_DQUOTE] = ACTIONS(5857), + [aux_sym_preproc_if_token3] = ACTIONS(5857), + [aux_sym_preproc_else_token1] = ACTIONS(5857), + [aux_sym_preproc_elif_token1] = ACTIONS(5857), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -589187,61 +582822,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4327), [sym_preproc_define] = STATE(4327), [sym_preproc_undef] = STATE(4327), - [sym__identifier_token] = ACTIONS(6573), - [anon_sym_extern] = ACTIONS(6573), - [anon_sym_alias] = ACTIONS(6573), - [anon_sym_global] = ACTIONS(6573), - [anon_sym_unsafe] = ACTIONS(6573), - [anon_sym_static] = ACTIONS(6573), - [anon_sym_LPAREN] = ACTIONS(6575), - [anon_sym_event] = ACTIONS(6573), - [anon_sym_class] = ACTIONS(6573), - [anon_sym_ref] = ACTIONS(6573), - [anon_sym_struct] = ACTIONS(6573), - [anon_sym_enum] = ACTIONS(6573), - [anon_sym_interface] = ACTIONS(6573), - [anon_sym_delegate] = ACTIONS(6573), - [anon_sym_record] = ACTIONS(6573), - [anon_sym_public] = ACTIONS(6573), - [anon_sym_private] = ACTIONS(6573), - [anon_sym_readonly] = ACTIONS(6573), - [anon_sym_abstract] = ACTIONS(6573), - [anon_sym_async] = ACTIONS(6573), - [anon_sym_const] = ACTIONS(6573), - [anon_sym_file] = ACTIONS(6573), - [anon_sym_fixed] = ACTIONS(6573), - [anon_sym_internal] = ACTIONS(6573), - [anon_sym_new] = ACTIONS(6573), - [anon_sym_override] = ACTIONS(6573), - [anon_sym_partial] = ACTIONS(6573), - [anon_sym_protected] = ACTIONS(6573), - [anon_sym_required] = ACTIONS(6573), - [anon_sym_sealed] = ACTIONS(6573), - [anon_sym_virtual] = ACTIONS(6573), - [anon_sym_volatile] = ACTIONS(6573), - [anon_sym_where] = ACTIONS(6573), - [anon_sym_notnull] = ACTIONS(6573), - [anon_sym_unmanaged] = ACTIONS(6573), - [anon_sym_implicit] = ACTIONS(6573), - [anon_sym_explicit] = ACTIONS(6573), - [anon_sym_scoped] = ACTIONS(6573), - [anon_sym_var] = ACTIONS(6573), - [sym_predefined_type] = ACTIONS(6573), - [anon_sym_yield] = ACTIONS(6573), - [anon_sym_when] = ACTIONS(6573), - [anon_sym_from] = ACTIONS(6573), - [anon_sym_into] = ACTIONS(6573), - [anon_sym_join] = ACTIONS(6573), - [anon_sym_on] = ACTIONS(6573), - [anon_sym_equals] = ACTIONS(6573), - [anon_sym_let] = ACTIONS(6573), - [anon_sym_orderby] = ACTIONS(6573), - [anon_sym_ascending] = ACTIONS(6573), - [anon_sym_descending] = ACTIONS(6573), - [anon_sym_group] = ACTIONS(6573), - [anon_sym_by] = ACTIONS(6573), - [anon_sym_select] = ACTIONS(6573), - [sym_grit_metavariable] = ACTIONS(6575), + [anon_sym_SEMI] = ACTIONS(5813), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_COLON] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_LPAREN] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [anon_sym_RBRACE] = ACTIONS(5813), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_in] = ACTIONS(5815), + [anon_sym_QMARK] = ACTIONS(5815), + [anon_sym_DOT] = ACTIONS(5815), + [anon_sym_EQ_GT] = ACTIONS(5813), + [anon_sym_STAR] = ACTIONS(5813), + [anon_sym_switch] = ACTIONS(5813), + [anon_sym_when] = ACTIONS(5813), + [anon_sym_DOT_DOT] = ACTIONS(5813), + [anon_sym_LT_EQ] = ACTIONS(5813), + [anon_sym_GT_EQ] = ACTIONS(5813), + [anon_sym_and] = ACTIONS(5813), + [anon_sym_or] = ACTIONS(5813), + [anon_sym_EQ_EQ] = ACTIONS(5813), + [anon_sym_BANG_EQ] = ACTIONS(5813), + [anon_sym_AMP_AMP] = ACTIONS(5813), + [anon_sym_PIPE_PIPE] = ACTIONS(5813), + [anon_sym_AMP] = ACTIONS(5815), + [sym_op_bitwise_or] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5813), + [sym_op_left_shift] = ACTIONS(5813), + [sym_op_right_shift] = ACTIONS(5815), + [sym_op_unsigned_right_shift] = ACTIONS(5813), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_DASH] = ACTIONS(5815), + [sym_op_divide] = ACTIONS(5815), + [sym_op_modulo] = ACTIONS(5813), + [sym_op_coalescing] = ACTIONS(5813), + [anon_sym_BANG] = ACTIONS(5815), + [anon_sym_PLUS_PLUS] = ACTIONS(5813), + [anon_sym_DASH_DASH] = ACTIONS(5813), + [anon_sym_into] = ACTIONS(5813), + [anon_sym_on] = ACTIONS(5813), + [anon_sym_equals] = ACTIONS(5813), + [anon_sym_by] = ACTIONS(5813), + [anon_sym_as] = ACTIONS(5813), + [anon_sym_is] = ACTIONS(5813), + [anon_sym_DASH_GT] = ACTIONS(5813), + [anon_sym_with] = ACTIONS(5813), + [aux_sym_preproc_if_token3] = ACTIONS(5813), + [aux_sym_preproc_else_token1] = ACTIONS(5813), + [aux_sym_preproc_elif_token1] = ACTIONS(5813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -589254,27 +582885,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4328] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4328), [sym_preproc_endregion] = STATE(4328), [sym_preproc_line] = STATE(4328), @@ -589284,40 +582894,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4328), [sym_preproc_define] = STATE(4328), [sym_preproc_undef] = STATE(4328), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6577), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_QMARK] = ACTIONS(6973), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -589330,27 +582957,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4329] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7763), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4329), [sym_preproc_endregion] = STATE(4329), [sym_preproc_line] = STATE(4329), @@ -589360,40 +582986,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4329), [sym_preproc_define] = STATE(4329), [sym_preproc_undef] = STATE(4329), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6579), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -589406,27 +583029,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4330] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7763), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4330), [sym_preproc_endregion] = STATE(4330), [sym_preproc_line] = STATE(4330), @@ -589436,40 +583058,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4330), [sym_preproc_define] = STATE(4330), [sym_preproc_undef] = STATE(4330), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6581), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_function_pointer_type_repeat1] = STATE(4334), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -589482,27 +583101,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4331] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), [sym_preproc_region] = STATE(4331), [sym_preproc_endregion] = STATE(4331), [sym_preproc_line] = STATE(4331), @@ -589512,40 +583110,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4331), [sym_preproc_define] = STATE(4331), [sym_preproc_undef] = STATE(4331), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6583), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6585), - [anon_sym_on] = ACTIONS(6587), - [anon_sym_as] = ACTIONS(6547), - [anon_sym_is] = ACTIONS(6549), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6023), + [anon_sym_LBRACK] = ACTIONS(6023), + [anon_sym_COLON] = ACTIONS(6023), + [anon_sym_COMMA] = ACTIONS(6023), + [anon_sym_RBRACK] = ACTIONS(6023), + [anon_sym_LPAREN] = ACTIONS(6023), + [anon_sym_RPAREN] = ACTIONS(6023), + [anon_sym_RBRACE] = ACTIONS(6023), + [anon_sym_LT] = ACTIONS(6025), + [anon_sym_GT] = ACTIONS(6025), + [anon_sym_in] = ACTIONS(6025), + [anon_sym_QMARK] = ACTIONS(6025), + [anon_sym_DOT] = ACTIONS(6025), + [anon_sym_EQ_GT] = ACTIONS(6023), + [anon_sym_STAR] = ACTIONS(6023), + [anon_sym_switch] = ACTIONS(6023), + [anon_sym_when] = ACTIONS(6023), + [anon_sym_DOT_DOT] = ACTIONS(6023), + [anon_sym_LT_EQ] = ACTIONS(6023), + [anon_sym_GT_EQ] = ACTIONS(6023), + [anon_sym_and] = ACTIONS(6023), + [anon_sym_or] = ACTIONS(6023), + [anon_sym_EQ_EQ] = ACTIONS(6023), + [anon_sym_BANG_EQ] = ACTIONS(6023), + [anon_sym_AMP_AMP] = ACTIONS(6023), + [anon_sym_PIPE_PIPE] = ACTIONS(6023), + [anon_sym_AMP] = ACTIONS(6025), + [sym_op_bitwise_or] = ACTIONS(6025), + [anon_sym_CARET] = ACTIONS(6023), + [sym_op_left_shift] = ACTIONS(6023), + [sym_op_right_shift] = ACTIONS(6025), + [sym_op_unsigned_right_shift] = ACTIONS(6023), + [anon_sym_PLUS] = ACTIONS(6025), + [anon_sym_DASH] = ACTIONS(6025), + [sym_op_divide] = ACTIONS(6025), + [sym_op_modulo] = ACTIONS(6023), + [sym_op_coalescing] = ACTIONS(6023), + [anon_sym_BANG] = ACTIONS(6025), + [anon_sym_PLUS_PLUS] = ACTIONS(6023), + [anon_sym_DASH_DASH] = ACTIONS(6023), + [anon_sym_into] = ACTIONS(6023), + [anon_sym_on] = ACTIONS(6023), + [anon_sym_equals] = ACTIONS(6023), + [anon_sym_by] = ACTIONS(6023), + [anon_sym_as] = ACTIONS(6023), + [anon_sym_is] = ACTIONS(6023), + [anon_sym_DASH_GT] = ACTIONS(6023), + [anon_sym_with] = ACTIONS(6023), + [aux_sym_preproc_if_token3] = ACTIONS(6023), + [aux_sym_preproc_else_token1] = ACTIONS(6023), + [aux_sym_preproc_elif_token1] = ACTIONS(6023), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -589558,27 +583173,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4332] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4332), [sym_preproc_endregion] = STATE(4332), [sym_preproc_line] = STATE(4332), @@ -589588,40 +583197,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4332), [sym_preproc_define] = STATE(4332), [sym_preproc_undef] = STATE(4332), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6589), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(5336), + [aux_sym_preproc_else_token1] = ACTIONS(5336), + [aux_sym_preproc_elif_token1] = ACTIONS(5336), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -589634,27 +583245,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4333] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4333), [sym_preproc_endregion] = STATE(4333), [sym_preproc_line] = STATE(4333), @@ -589664,40 +583269,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4333), [sym_preproc_define] = STATE(4333), [sym_preproc_undef] = STATE(4333), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6986), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6990), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(7000), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(7002), + [anon_sym_is] = ACTIONS(7004), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -589710,27 +583317,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4334] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7762), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4334), [sym_preproc_endregion] = STATE(4334), [sym_preproc_line] = STATE(4334), @@ -589740,40 +583346,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4334), [sym_preproc_define] = STATE(4334), [sym_preproc_undef] = STATE(4334), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6591), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -589786,27 +583389,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4335] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), [sym_preproc_region] = STATE(4335), [sym_preproc_endregion] = STATE(4335), [sym_preproc_line] = STATE(4335), @@ -589816,40 +583398,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4335), [sym_preproc_define] = STATE(4335), [sym_preproc_undef] = STATE(4335), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_on] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_COLON] = ACTIONS(6027), + [anon_sym_COMMA] = ACTIONS(6027), + [anon_sym_RBRACK] = ACTIONS(6027), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_RBRACE] = ACTIONS(6027), + [anon_sym_LT] = ACTIONS(6029), + [anon_sym_GT] = ACTIONS(6029), + [anon_sym_in] = ACTIONS(6029), + [anon_sym_QMARK] = ACTIONS(6029), + [anon_sym_DOT] = ACTIONS(6029), + [anon_sym_EQ_GT] = ACTIONS(6027), + [anon_sym_STAR] = ACTIONS(6027), + [anon_sym_switch] = ACTIONS(6027), + [anon_sym_when] = ACTIONS(6027), + [anon_sym_DOT_DOT] = ACTIONS(6027), + [anon_sym_LT_EQ] = ACTIONS(6027), + [anon_sym_GT_EQ] = ACTIONS(6027), + [anon_sym_and] = ACTIONS(6027), + [anon_sym_or] = ACTIONS(6027), + [anon_sym_EQ_EQ] = ACTIONS(6027), + [anon_sym_BANG_EQ] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6029), + [sym_op_bitwise_or] = ACTIONS(6029), + [anon_sym_CARET] = ACTIONS(6027), + [sym_op_left_shift] = ACTIONS(6027), + [sym_op_right_shift] = ACTIONS(6029), + [sym_op_unsigned_right_shift] = ACTIONS(6027), + [anon_sym_PLUS] = ACTIONS(6029), + [anon_sym_DASH] = ACTIONS(6029), + [sym_op_divide] = ACTIONS(6029), + [sym_op_modulo] = ACTIONS(6027), + [sym_op_coalescing] = ACTIONS(6027), + [anon_sym_BANG] = ACTIONS(6029), + [anon_sym_PLUS_PLUS] = ACTIONS(6027), + [anon_sym_DASH_DASH] = ACTIONS(6027), + [anon_sym_into] = ACTIONS(6027), + [anon_sym_on] = ACTIONS(6027), + [anon_sym_equals] = ACTIONS(6027), + [anon_sym_by] = ACTIONS(6027), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6027), + [anon_sym_DASH_GT] = ACTIONS(6027), + [anon_sym_with] = ACTIONS(6027), + [aux_sym_preproc_if_token3] = ACTIONS(6027), + [aux_sym_preproc_else_token1] = ACTIONS(6027), + [aux_sym_preproc_elif_token1] = ACTIONS(6027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -589862,27 +583461,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4336] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4336), [sym_preproc_endregion] = STATE(4336), [sym_preproc_line] = STATE(4336), @@ -589892,40 +583485,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4336), [sym_preproc_define] = STATE(4336), [sym_preproc_undef] = STATE(4336), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -589936,29 +583530,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5352), }, [4337] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4337), [sym_preproc_endregion] = STATE(4337), [sym_preproc_line] = STATE(4337), @@ -589968,40 +583557,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4337), [sym_preproc_define] = STATE(4337), [sym_preproc_undef] = STATE(4337), - [anon_sym_SEMI] = ACTIONS(6593), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -590012,29 +583602,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(1365), }, [4338] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4338), [sym_preproc_endregion] = STATE(4338), [sym_preproc_line] = STATE(4338), @@ -590044,40 +583614,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4338), [sym_preproc_define] = STATE(4338), [sym_preproc_undef] = STATE(4338), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6595), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6015), + [anon_sym_LBRACK] = ACTIONS(6015), + [anon_sym_COLON] = ACTIONS(6015), + [anon_sym_COMMA] = ACTIONS(6015), + [anon_sym_RBRACK] = ACTIONS(6015), + [anon_sym_LPAREN] = ACTIONS(6015), + [anon_sym_RPAREN] = ACTIONS(6015), + [anon_sym_RBRACE] = ACTIONS(6015), + [anon_sym_LT] = ACTIONS(6017), + [anon_sym_GT] = ACTIONS(6017), + [anon_sym_in] = ACTIONS(6017), + [anon_sym_QMARK] = ACTIONS(6017), + [anon_sym_DOT] = ACTIONS(6017), + [anon_sym_EQ_GT] = ACTIONS(6015), + [anon_sym_STAR] = ACTIONS(6015), + [anon_sym_switch] = ACTIONS(6015), + [anon_sym_when] = ACTIONS(6015), + [anon_sym_DOT_DOT] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_and] = ACTIONS(6015), + [anon_sym_or] = ACTIONS(6015), + [anon_sym_EQ_EQ] = ACTIONS(6015), + [anon_sym_BANG_EQ] = ACTIONS(6015), + [anon_sym_AMP_AMP] = ACTIONS(6015), + [anon_sym_PIPE_PIPE] = ACTIONS(6015), + [anon_sym_AMP] = ACTIONS(6017), + [sym_op_bitwise_or] = ACTIONS(6017), + [anon_sym_CARET] = ACTIONS(6015), + [sym_op_left_shift] = ACTIONS(6015), + [sym_op_right_shift] = ACTIONS(6017), + [sym_op_unsigned_right_shift] = ACTIONS(6015), + [anon_sym_PLUS] = ACTIONS(6017), + [anon_sym_DASH] = ACTIONS(6017), + [sym_op_divide] = ACTIONS(6017), + [sym_op_modulo] = ACTIONS(6015), + [sym_op_coalescing] = ACTIONS(6015), + [anon_sym_BANG] = ACTIONS(6017), + [anon_sym_PLUS_PLUS] = ACTIONS(6015), + [anon_sym_DASH_DASH] = ACTIONS(6015), + [anon_sym_into] = ACTIONS(6015), + [anon_sym_on] = ACTIONS(6015), + [anon_sym_equals] = ACTIONS(6015), + [anon_sym_by] = ACTIONS(6015), + [anon_sym_as] = ACTIONS(6015), + [anon_sym_is] = ACTIONS(6015), + [anon_sym_DASH_GT] = ACTIONS(6015), + [anon_sym_with] = ACTIONS(6015), + [aux_sym_preproc_if_token3] = ACTIONS(6015), + [aux_sym_preproc_else_token1] = ACTIONS(6015), + [aux_sym_preproc_elif_token1] = ACTIONS(6015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -590090,27 +583677,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4339] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4339), [sym_preproc_endregion] = STATE(4339), [sym_preproc_line] = STATE(4339), @@ -590120,40 +583701,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4339), [sym_preproc_define] = STATE(4339), [sym_preproc_undef] = STATE(4339), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6597), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6797), + [anon_sym_is] = ACTIONS(6799), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -590166,27 +583749,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4340] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4340), [sym_preproc_endregion] = STATE(4340), [sym_preproc_line] = STATE(4340), @@ -590196,40 +583773,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4340), [sym_preproc_define] = STATE(4340), [sym_preproc_undef] = STATE(4340), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6585), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6547), - [anon_sym_is] = ACTIONS(6549), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -590242,27 +583821,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4341] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4341), [sym_preproc_endregion] = STATE(4341), [sym_preproc_line] = STATE(4341), @@ -590272,40 +583830,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4341), [sym_preproc_define] = STATE(4341), [sym_preproc_undef] = STATE(4341), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6599), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5899), + [anon_sym_COLON] = ACTIONS(5899), + [anon_sym_COMMA] = ACTIONS(5899), + [anon_sym_RBRACK] = ACTIONS(5899), + [anon_sym_LPAREN] = ACTIONS(5899), + [anon_sym_RPAREN] = ACTIONS(5899), + [anon_sym_RBRACE] = ACTIONS(5899), + [anon_sym_LT] = ACTIONS(5901), + [anon_sym_GT] = ACTIONS(5901), + [anon_sym_in] = ACTIONS(5901), + [anon_sym_QMARK] = ACTIONS(5901), + [anon_sym_DOT] = ACTIONS(5901), + [anon_sym_EQ_GT] = ACTIONS(5899), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_switch] = ACTIONS(5899), + [anon_sym_when] = ACTIONS(5899), + [anon_sym_DOT_DOT] = ACTIONS(5899), + [anon_sym_LT_EQ] = ACTIONS(5899), + [anon_sym_GT_EQ] = ACTIONS(5899), + [anon_sym_and] = ACTIONS(5899), + [anon_sym_or] = ACTIONS(5899), + [anon_sym_EQ_EQ] = ACTIONS(5899), + [anon_sym_BANG_EQ] = ACTIONS(5899), + [anon_sym_AMP_AMP] = ACTIONS(5899), + [anon_sym_PIPE_PIPE] = ACTIONS(5899), + [anon_sym_AMP] = ACTIONS(5901), + [sym_op_bitwise_or] = ACTIONS(5901), + [anon_sym_CARET] = ACTIONS(5899), + [sym_op_left_shift] = ACTIONS(5899), + [sym_op_right_shift] = ACTIONS(5901), + [sym_op_unsigned_right_shift] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_DASH] = ACTIONS(5901), + [sym_op_divide] = ACTIONS(5901), + [sym_op_modulo] = ACTIONS(5899), + [sym_op_coalescing] = ACTIONS(5899), + [anon_sym_BANG] = ACTIONS(5901), + [anon_sym_PLUS_PLUS] = ACTIONS(5899), + [anon_sym_DASH_DASH] = ACTIONS(5899), + [anon_sym_into] = ACTIONS(5899), + [anon_sym_on] = ACTIONS(5899), + [anon_sym_equals] = ACTIONS(5899), + [anon_sym_by] = ACTIONS(5899), + [anon_sym_as] = ACTIONS(5899), + [anon_sym_is] = ACTIONS(5899), + [anon_sym_DASH_GT] = ACTIONS(5899), + [anon_sym_with] = ACTIONS(5899), + [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), @@ -590318,27 +583893,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4342] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4342), [sym_preproc_endregion] = STATE(4342), [sym_preproc_line] = STATE(4342), @@ -590348,40 +583917,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4342), [sym_preproc_define] = STATE(4342), [sym_preproc_undef] = STATE(4342), - [anon_sym_SEMI] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -590394,27 +583965,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4343] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4343), [sym_preproc_endregion] = STATE(4343), [sym_preproc_line] = STATE(4343), @@ -590424,40 +583989,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4343), [sym_preproc_define] = STATE(4343), [sym_preproc_undef] = STATE(4343), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_if_token3] = ACTIONS(6603), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -590470,27 +584037,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4344] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4344), [sym_preproc_endregion] = STATE(4344), [sym_preproc_line] = STATE(4344), @@ -590500,40 +584061,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4344), [sym_preproc_define] = STATE(4344), [sym_preproc_undef] = STATE(4344), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6605), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(6795), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6797), + [anon_sym_is] = ACTIONS(6799), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -590546,27 +584109,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4345] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4345), [sym_preproc_endregion] = STATE(4345), [sym_preproc_line] = STATE(4345), @@ -590576,40 +584133,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4345), [sym_preproc_define] = STATE(4345), [sym_preproc_undef] = STATE(4345), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6607), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -590622,27 +584181,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4346] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4346), [sym_preproc_endregion] = STATE(4346), [sym_preproc_line] = STATE(4346), @@ -590652,40 +584205,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4346), [sym_preproc_define] = STATE(4346), [sym_preproc_undef] = STATE(4346), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_in] = ACTIONS(4752), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -590698,27 +584253,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4347] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4347), [sym_preproc_endregion] = STATE(4347), [sym_preproc_line] = STATE(4347), @@ -590728,40 +584277,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4347), [sym_preproc_define] = STATE(4347), [sym_preproc_undef] = STATE(4347), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6609), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6797), + [anon_sym_is] = ACTIONS(6799), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -590774,27 +584325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4348] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4348), [sym_preproc_endregion] = STATE(4348), [sym_preproc_line] = STATE(4348), @@ -590804,40 +584334,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4348), [sym_preproc_define] = STATE(4348), [sym_preproc_undef] = STATE(4348), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6611), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5753), + [anon_sym_LBRACK] = ACTIONS(5753), + [anon_sym_COLON] = ACTIONS(5753), + [anon_sym_COMMA] = ACTIONS(5753), + [anon_sym_RBRACK] = ACTIONS(5753), + [anon_sym_LPAREN] = ACTIONS(5753), + [anon_sym_RPAREN] = ACTIONS(5753), + [anon_sym_RBRACE] = ACTIONS(5753), + [anon_sym_LT] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5755), + [anon_sym_in] = ACTIONS(5755), + [anon_sym_QMARK] = ACTIONS(5755), + [anon_sym_DOT] = ACTIONS(5755), + [anon_sym_EQ_GT] = ACTIONS(5753), + [anon_sym_STAR] = ACTIONS(5753), + [anon_sym_switch] = ACTIONS(5753), + [anon_sym_when] = ACTIONS(5753), + [anon_sym_DOT_DOT] = ACTIONS(5753), + [anon_sym_LT_EQ] = ACTIONS(5753), + [anon_sym_GT_EQ] = ACTIONS(5753), + [anon_sym_and] = ACTIONS(5753), + [anon_sym_or] = ACTIONS(5753), + [anon_sym_EQ_EQ] = ACTIONS(5753), + [anon_sym_BANG_EQ] = ACTIONS(5753), + [anon_sym_AMP_AMP] = ACTIONS(5753), + [anon_sym_PIPE_PIPE] = ACTIONS(5753), + [anon_sym_AMP] = ACTIONS(5755), + [sym_op_bitwise_or] = ACTIONS(5755), + [anon_sym_CARET] = ACTIONS(5753), + [sym_op_left_shift] = ACTIONS(5753), + [sym_op_right_shift] = ACTIONS(5755), + [sym_op_unsigned_right_shift] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [sym_op_divide] = ACTIONS(5755), + [sym_op_modulo] = ACTIONS(5753), + [sym_op_coalescing] = ACTIONS(5753), + [anon_sym_BANG] = ACTIONS(5755), + [anon_sym_PLUS_PLUS] = ACTIONS(5753), + [anon_sym_DASH_DASH] = ACTIONS(5753), + [anon_sym_into] = ACTIONS(5753), + [anon_sym_on] = ACTIONS(5753), + [anon_sym_equals] = ACTIONS(5753), + [anon_sym_by] = ACTIONS(5753), + [anon_sym_as] = ACTIONS(5753), + [anon_sym_is] = ACTIONS(5753), + [anon_sym_DASH_GT] = ACTIONS(5753), + [anon_sym_with] = ACTIONS(5753), + [aux_sym_preproc_if_token3] = ACTIONS(5753), + [aux_sym_preproc_else_token1] = ACTIONS(5753), + [aux_sym_preproc_elif_token1] = ACTIONS(5753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -590850,27 +584397,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4349] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4349), [sym_preproc_endregion] = STATE(4349), [sym_preproc_line] = STATE(4349), @@ -590880,40 +584421,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4349), [sym_preproc_define] = STATE(4349), [sym_preproc_undef] = STATE(4349), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6613), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6797), + [anon_sym_is] = ACTIONS(6799), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -590926,27 +584469,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4350] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4350), [sym_preproc_endregion] = STATE(4350), [sym_preproc_line] = STATE(4350), @@ -590956,40 +584493,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4350), [sym_preproc_define] = STATE(4350), [sym_preproc_undef] = STATE(4350), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5296), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6717), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(6729), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -591002,27 +584541,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4351] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4351), [sym_preproc_endregion] = STATE(4351), [sym_preproc_line] = STATE(4351), @@ -591032,40 +584565,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4351), [sym_preproc_define] = STATE(4351), [sym_preproc_undef] = STATE(4351), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6797), + [anon_sym_is] = ACTIONS(6799), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -591078,27 +584613,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4352] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7642), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4352), [sym_preproc_endregion] = STATE(4352), [sym_preproc_line] = STATE(4352), @@ -591108,40 +584642,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4352), [sym_preproc_define] = STATE(4352), [sym_preproc_undef] = STATE(4352), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_function_pointer_type_repeat1] = STATE(4357), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -591154,27 +584685,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4353] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4353), [sym_preproc_endregion] = STATE(4353), [sym_preproc_line] = STATE(4353), @@ -591184,40 +584709,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4353), [sym_preproc_define] = STATE(4353), [sym_preproc_undef] = STATE(4353), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6615), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6797), + [anon_sym_is] = ACTIONS(6799), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -591230,27 +584757,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4354] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4354), [sym_preproc_endregion] = STATE(4354), [sym_preproc_line] = STATE(4354), @@ -591260,40 +584766,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4354), [sym_preproc_define] = STATE(4354), [sym_preproc_undef] = STATE(4354), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6617), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_RBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_in] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_EQ_GT] = ACTIONS(5508), + [anon_sym_STAR] = ACTIONS(5508), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_when] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5508), + [sym_op_left_shift] = ACTIONS(5508), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5508), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5508), + [sym_op_coalescing] = ACTIONS(5508), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_on] = ACTIONS(5508), + [anon_sym_equals] = ACTIONS(5508), + [anon_sym_by] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [aux_sym_preproc_if_token3] = ACTIONS(5508), + [aux_sym_preproc_else_token1] = ACTIONS(5508), + [aux_sym_preproc_elif_token1] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -591306,27 +584829,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4355] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4355), [sym_preproc_endregion] = STATE(4355), [sym_preproc_line] = STATE(4355), @@ -591336,40 +584853,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4355), [sym_preproc_define] = STATE(4355), [sym_preproc_undef] = STATE(4355), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6619), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6797), + [anon_sym_is] = ACTIONS(6799), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -591382,27 +584901,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4356] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4356), [sym_preproc_endregion] = STATE(4356), [sym_preproc_line] = STATE(4356), @@ -591412,40 +584910,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4356), [sym_preproc_define] = STATE(4356), [sym_preproc_undef] = STATE(4356), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6621), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_EQ] = ACTIONS(7010), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_EQ_GT] = ACTIONS(5508), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_when] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7012), + [anon_sym_DASH_EQ] = ACTIONS(7012), + [anon_sym_STAR_EQ] = ACTIONS(7012), + [anon_sym_SLASH_EQ] = ACTIONS(7012), + [anon_sym_PERCENT_EQ] = ACTIONS(7012), + [anon_sym_AMP_EQ] = ACTIONS(7012), + [anon_sym_CARET_EQ] = ACTIONS(7012), + [anon_sym_PIPE_EQ] = ACTIONS(7012), + [anon_sym_LT_LT_EQ] = ACTIONS(7012), + [anon_sym_GT_GT_EQ] = ACTIONS(7012), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7012), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7012), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -591458,27 +584973,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4357] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7808), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4357), [sym_preproc_endregion] = STATE(4357), [sym_preproc_line] = STATE(4357), @@ -591488,40 +585002,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4357), [sym_preproc_define] = STATE(4357), [sym_preproc_undef] = STATE(4357), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_in] = ACTIONS(4774), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -591534,27 +585045,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4358] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7808), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4358), [sym_preproc_endregion] = STATE(4358), [sym_preproc_line] = STATE(4358), @@ -591564,40 +585074,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4358), [sym_preproc_define] = STATE(4358), [sym_preproc_undef] = STATE(4358), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_function_pointer_type_repeat1] = STATE(4363), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -591610,27 +585117,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4359] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4359), [sym_preproc_endregion] = STATE(4359), [sym_preproc_line] = STATE(4359), @@ -591640,40 +585141,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4359), [sym_preproc_define] = STATE(4359), [sym_preproc_undef] = STATE(4359), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6547), - [anon_sym_is] = ACTIONS(6549), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -591686,27 +585189,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4360] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), [sym_preproc_region] = STATE(4360), [sym_preproc_endregion] = STATE(4360), [sym_preproc_line] = STATE(4360), @@ -591716,40 +585198,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4360), [sym_preproc_define] = STATE(4360), [sym_preproc_undef] = STATE(4360), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6547), - [anon_sym_is] = ACTIONS(6549), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5915), + [anon_sym_LBRACK] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_COMMA] = ACTIONS(5915), + [anon_sym_RBRACK] = ACTIONS(5915), + [anon_sym_LPAREN] = ACTIONS(5915), + [anon_sym_RPAREN] = ACTIONS(5915), + [anon_sym_RBRACE] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5917), + [anon_sym_GT] = ACTIONS(5917), + [anon_sym_in] = ACTIONS(5917), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5917), + [anon_sym_EQ_GT] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_switch] = ACTIONS(5915), + [anon_sym_when] = ACTIONS(5915), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_LT_EQ] = ACTIONS(5915), + [anon_sym_GT_EQ] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5915), + [anon_sym_or] = ACTIONS(5915), + [anon_sym_EQ_EQ] = ACTIONS(5915), + [anon_sym_BANG_EQ] = ACTIONS(5915), + [anon_sym_AMP_AMP] = ACTIONS(5915), + [anon_sym_PIPE_PIPE] = ACTIONS(5915), + [anon_sym_AMP] = ACTIONS(5917), + [sym_op_bitwise_or] = ACTIONS(5917), + [anon_sym_CARET] = ACTIONS(5915), + [sym_op_left_shift] = ACTIONS(5915), + [sym_op_right_shift] = ACTIONS(5917), + [sym_op_unsigned_right_shift] = ACTIONS(5915), + [anon_sym_PLUS] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5917), + [sym_op_divide] = ACTIONS(5917), + [sym_op_modulo] = ACTIONS(5915), + [sym_op_coalescing] = ACTIONS(5915), + [anon_sym_BANG] = ACTIONS(5917), + [anon_sym_PLUS_PLUS] = ACTIONS(5915), + [anon_sym_DASH_DASH] = ACTIONS(5915), + [anon_sym_into] = ACTIONS(5915), + [anon_sym_on] = ACTIONS(5915), + [anon_sym_equals] = ACTIONS(5915), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_as] = ACTIONS(5915), + [anon_sym_is] = ACTIONS(5915), + [anon_sym_DASH_GT] = ACTIONS(5915), + [anon_sym_with] = ACTIONS(5915), + [aux_sym_preproc_if_token3] = ACTIONS(5915), + [aux_sym_preproc_else_token1] = ACTIONS(5915), + [aux_sym_preproc_elif_token1] = ACTIONS(5915), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -591762,27 +585261,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4361] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4361), [sym_preproc_endregion] = STATE(4361), [sym_preproc_line] = STATE(4361), @@ -591792,40 +585270,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4361), [sym_preproc_define] = STATE(4361), [sym_preproc_undef] = STATE(4361), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6623), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5983), + [anon_sym_LBRACK] = ACTIONS(5983), + [anon_sym_COLON] = ACTIONS(5983), + [anon_sym_COMMA] = ACTIONS(5983), + [anon_sym_RBRACK] = ACTIONS(5983), + [anon_sym_LPAREN] = ACTIONS(5983), + [anon_sym_RPAREN] = ACTIONS(5983), + [anon_sym_RBRACE] = ACTIONS(5983), + [anon_sym_LT] = ACTIONS(5985), + [anon_sym_GT] = ACTIONS(5985), + [anon_sym_in] = ACTIONS(5985), + [anon_sym_QMARK] = ACTIONS(5985), + [anon_sym_DOT] = ACTIONS(5985), + [anon_sym_EQ_GT] = ACTIONS(5983), + [anon_sym_STAR] = ACTIONS(5983), + [anon_sym_switch] = ACTIONS(5983), + [anon_sym_when] = ACTIONS(5983), + [anon_sym_DOT_DOT] = ACTIONS(5983), + [anon_sym_LT_EQ] = ACTIONS(5983), + [anon_sym_GT_EQ] = ACTIONS(5983), + [anon_sym_and] = ACTIONS(5983), + [anon_sym_or] = ACTIONS(5983), + [anon_sym_EQ_EQ] = ACTIONS(5983), + [anon_sym_BANG_EQ] = ACTIONS(5983), + [anon_sym_AMP_AMP] = ACTIONS(5983), + [anon_sym_PIPE_PIPE] = ACTIONS(5983), + [anon_sym_AMP] = ACTIONS(5985), + [sym_op_bitwise_or] = ACTIONS(5985), + [anon_sym_CARET] = ACTIONS(5983), + [sym_op_left_shift] = ACTIONS(5983), + [sym_op_right_shift] = ACTIONS(5985), + [sym_op_unsigned_right_shift] = ACTIONS(5983), + [anon_sym_PLUS] = ACTIONS(5985), + [anon_sym_DASH] = ACTIONS(5985), + [sym_op_divide] = ACTIONS(5985), + [sym_op_modulo] = ACTIONS(5983), + [sym_op_coalescing] = ACTIONS(5983), + [anon_sym_BANG] = ACTIONS(5985), + [anon_sym_PLUS_PLUS] = ACTIONS(5983), + [anon_sym_DASH_DASH] = ACTIONS(5983), + [anon_sym_into] = ACTIONS(5983), + [anon_sym_on] = ACTIONS(5983), + [anon_sym_equals] = ACTIONS(5983), + [anon_sym_by] = ACTIONS(5983), + [anon_sym_as] = ACTIONS(5983), + [anon_sym_is] = ACTIONS(5983), + [anon_sym_DASH_GT] = ACTIONS(5983), + [anon_sym_with] = ACTIONS(5983), + [aux_sym_preproc_if_token3] = ACTIONS(5983), + [aux_sym_preproc_else_token1] = ACTIONS(5983), + [aux_sym_preproc_elif_token1] = ACTIONS(5983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -591838,27 +585333,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4362] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8055), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4362), [sym_preproc_endregion] = STATE(4362), [sym_preproc_line] = STATE(4362), @@ -591868,40 +585362,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4362), [sym_preproc_define] = STATE(4362), [sym_preproc_undef] = STATE(4362), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6625), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5869), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -591914,27 +585405,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4363] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7639), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_function_pointer_parameter] = STATE(7934), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7787), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4363), [sym_preproc_endregion] = STATE(4363), [sym_preproc_line] = STATE(4363), @@ -591944,40 +585434,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4363), [sym_preproc_define] = STATE(4363), [sym_preproc_undef] = STATE(4363), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6627), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6699), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(6701), + [anon_sym_out] = ACTIONS(6701), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -591990,27 +585477,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4364] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4364), [sym_preproc_endregion] = STATE(4364), [sym_preproc_line] = STATE(4364), @@ -592020,40 +585501,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4364), [sym_preproc_define] = STATE(4364), [sym_preproc_undef] = STATE(4364), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6629), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_in] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -592066,27 +585549,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4365] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(4365), [sym_preproc_endregion] = STATE(4365), [sym_preproc_line] = STATE(4365), @@ -592096,40 +585573,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4365), [sym_preproc_define] = STATE(4365), [sym_preproc_undef] = STATE(4365), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6547), - [anon_sym_is] = ACTIONS(6549), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_in] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -592142,27 +585621,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4366] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4366), [sym_preproc_endregion] = STATE(4366), [sym_preproc_line] = STATE(4366), @@ -592172,40 +585645,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4366), [sym_preproc_define] = STATE(4366), [sym_preproc_undef] = STATE(4366), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6543), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_and] = ACTIONS(1365), + [anon_sym_or] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -592218,27 +585693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4367] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4367), [sym_preproc_endregion] = STATE(4367), [sym_preproc_line] = STATE(4367), @@ -592248,40 +585702,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4367), [sym_preproc_define] = STATE(4367), [sym_preproc_undef] = STATE(4367), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6631), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5775), + [anon_sym_LBRACK] = ACTIONS(5775), + [anon_sym_COLON] = ACTIONS(5775), + [anon_sym_COMMA] = ACTIONS(5775), + [anon_sym_RBRACK] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5775), + [anon_sym_RPAREN] = ACTIONS(5775), + [anon_sym_RBRACE] = ACTIONS(5775), + [anon_sym_LT] = ACTIONS(5777), + [anon_sym_GT] = ACTIONS(5777), + [anon_sym_in] = ACTIONS(5777), + [anon_sym_QMARK] = ACTIONS(5777), + [anon_sym_DOT] = ACTIONS(5777), + [anon_sym_EQ_GT] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5775), + [anon_sym_switch] = ACTIONS(5775), + [anon_sym_when] = ACTIONS(5775), + [anon_sym_DOT_DOT] = ACTIONS(5775), + [anon_sym_LT_EQ] = ACTIONS(5775), + [anon_sym_GT_EQ] = ACTIONS(5775), + [anon_sym_and] = ACTIONS(5775), + [anon_sym_or] = ACTIONS(5775), + [anon_sym_EQ_EQ] = ACTIONS(5775), + [anon_sym_BANG_EQ] = ACTIONS(5775), + [anon_sym_AMP_AMP] = ACTIONS(5775), + [anon_sym_PIPE_PIPE] = ACTIONS(5775), + [anon_sym_AMP] = ACTIONS(5777), + [sym_op_bitwise_or] = ACTIONS(5777), + [anon_sym_CARET] = ACTIONS(5775), + [sym_op_left_shift] = ACTIONS(5775), + [sym_op_right_shift] = ACTIONS(5777), + [sym_op_unsigned_right_shift] = ACTIONS(5775), + [anon_sym_PLUS] = ACTIONS(5777), + [anon_sym_DASH] = ACTIONS(5777), + [sym_op_divide] = ACTIONS(5777), + [sym_op_modulo] = ACTIONS(5775), + [sym_op_coalescing] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_into] = ACTIONS(5775), + [anon_sym_on] = ACTIONS(5775), + [anon_sym_equals] = ACTIONS(5775), + [anon_sym_by] = ACTIONS(5775), + [anon_sym_as] = ACTIONS(5775), + [anon_sym_is] = ACTIONS(5775), + [anon_sym_DASH_GT] = ACTIONS(5775), + [anon_sym_with] = ACTIONS(5775), + [aux_sym_preproc_if_token3] = ACTIONS(5775), + [aux_sym_preproc_else_token1] = ACTIONS(5775), + [aux_sym_preproc_elif_token1] = ACTIONS(5775), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -592303,61 +585774,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4368), [sym_preproc_define] = STATE(4368), [sym_preproc_undef] = STATE(4368), - [anon_sym_SEMI] = ACTIONS(5684), - [anon_sym_EQ] = ACTIONS(6633), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_RBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(5684), - [anon_sym_RBRACE] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(6635), - [anon_sym_DASH_EQ] = ACTIONS(6635), - [anon_sym_STAR_EQ] = ACTIONS(6635), - [anon_sym_SLASH_EQ] = ACTIONS(6635), - [anon_sym_PERCENT_EQ] = ACTIONS(6635), - [anon_sym_AMP_EQ] = ACTIONS(6635), - [anon_sym_CARET_EQ] = ACTIONS(6635), - [anon_sym_PIPE_EQ] = ACTIONS(6635), - [anon_sym_LT_LT_EQ] = ACTIONS(6635), - [anon_sym_GT_GT_EQ] = ACTIONS(6635), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6635), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6635), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_if_token3] = ACTIONS(5684), - [aux_sym_preproc_else_token1] = ACTIONS(5684), - [aux_sym_preproc_elif_token1] = ACTIONS(5684), + [anon_sym_SEMI] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(7014), + [anon_sym_COLON] = ACTIONS(7014), + [anon_sym_COMMA] = ACTIONS(7014), + [anon_sym_RBRACK] = ACTIONS(7014), + [anon_sym_LPAREN] = ACTIONS(7014), + [anon_sym_RPAREN] = ACTIONS(7014), + [anon_sym_RBRACE] = ACTIONS(7014), + [anon_sym_LT] = ACTIONS(7016), + [anon_sym_GT] = ACTIONS(7016), + [anon_sym_in] = ACTIONS(7016), + [anon_sym_QMARK] = ACTIONS(7016), + [anon_sym_DOT] = ACTIONS(7016), + [anon_sym_EQ_GT] = ACTIONS(7014), + [anon_sym_STAR] = ACTIONS(7014), + [anon_sym_switch] = ACTIONS(7014), + [anon_sym_when] = ACTIONS(7014), + [anon_sym_DOT_DOT] = ACTIONS(7014), + [anon_sym_LT_EQ] = ACTIONS(7014), + [anon_sym_GT_EQ] = ACTIONS(7014), + [anon_sym_and] = ACTIONS(7014), + [anon_sym_or] = ACTIONS(7014), + [anon_sym_EQ_EQ] = ACTIONS(7014), + [anon_sym_BANG_EQ] = ACTIONS(7014), + [anon_sym_AMP_AMP] = ACTIONS(7014), + [anon_sym_PIPE_PIPE] = ACTIONS(7014), + [anon_sym_AMP] = ACTIONS(7016), + [sym_op_bitwise_or] = ACTIONS(7016), + [anon_sym_CARET] = ACTIONS(7014), + [sym_op_left_shift] = ACTIONS(7014), + [sym_op_right_shift] = ACTIONS(7016), + [sym_op_unsigned_right_shift] = ACTIONS(7014), + [anon_sym_PLUS] = ACTIONS(7016), + [anon_sym_DASH] = ACTIONS(7016), + [sym_op_divide] = ACTIONS(7016), + [sym_op_modulo] = ACTIONS(7014), + [sym_op_coalescing] = ACTIONS(7014), + [anon_sym_BANG] = ACTIONS(7016), + [anon_sym_PLUS_PLUS] = ACTIONS(7014), + [anon_sym_DASH_DASH] = ACTIONS(7014), + [anon_sym_into] = ACTIONS(7014), + [anon_sym_on] = ACTIONS(7014), + [anon_sym_equals] = ACTIONS(7014), + [anon_sym_by] = ACTIONS(7014), + [anon_sym_as] = ACTIONS(7014), + [anon_sym_is] = ACTIONS(7014), + [anon_sym_DASH_GT] = ACTIONS(7014), + [anon_sym_with] = ACTIONS(7014), + [aux_sym_preproc_if_token3] = ACTIONS(7014), + [aux_sym_preproc_else_token1] = ACTIONS(7014), + [aux_sym_preproc_elif_token1] = ACTIONS(7014), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -592370,27 +585837,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4369] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4369), [sym_preproc_endregion] = STATE(4369), [sym_preproc_line] = STATE(4369), @@ -592400,40 +585846,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4369), [sym_preproc_define] = STATE(4369), [sym_preproc_undef] = STATE(4369), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6637), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -592446,27 +585909,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4370] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4370), [sym_preproc_endregion] = STATE(4370), [sym_preproc_line] = STATE(4370), @@ -592476,40 +585918,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4370), [sym_preproc_define] = STATE(4370), [sym_preproc_undef] = STATE(4370), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6639), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5991), + [anon_sym_LBRACK] = ACTIONS(5991), + [anon_sym_COLON] = ACTIONS(5991), + [anon_sym_COMMA] = ACTIONS(5991), + [anon_sym_RBRACK] = ACTIONS(5991), + [anon_sym_LPAREN] = ACTIONS(5991), + [anon_sym_RPAREN] = ACTIONS(5991), + [anon_sym_RBRACE] = ACTIONS(5991), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_in] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5993), + [anon_sym_DOT] = ACTIONS(5993), + [anon_sym_EQ_GT] = ACTIONS(5991), + [anon_sym_STAR] = ACTIONS(5991), + [anon_sym_switch] = ACTIONS(5991), + [anon_sym_when] = ACTIONS(5991), + [anon_sym_DOT_DOT] = ACTIONS(5991), + [anon_sym_LT_EQ] = ACTIONS(5991), + [anon_sym_GT_EQ] = ACTIONS(5991), + [anon_sym_and] = ACTIONS(5991), + [anon_sym_or] = ACTIONS(5991), + [anon_sym_EQ_EQ] = ACTIONS(5991), + [anon_sym_BANG_EQ] = ACTIONS(5991), + [anon_sym_AMP_AMP] = ACTIONS(5991), + [anon_sym_PIPE_PIPE] = ACTIONS(5991), + [anon_sym_AMP] = ACTIONS(5993), + [sym_op_bitwise_or] = ACTIONS(5993), + [anon_sym_CARET] = ACTIONS(5991), + [sym_op_left_shift] = ACTIONS(5991), + [sym_op_right_shift] = ACTIONS(5993), + [sym_op_unsigned_right_shift] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5993), + [sym_op_divide] = ACTIONS(5993), + [sym_op_modulo] = ACTIONS(5991), + [sym_op_coalescing] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(5993), + [anon_sym_PLUS_PLUS] = ACTIONS(5991), + [anon_sym_DASH_DASH] = ACTIONS(5991), + [anon_sym_into] = ACTIONS(5991), + [anon_sym_on] = ACTIONS(5991), + [anon_sym_equals] = ACTIONS(5991), + [anon_sym_by] = ACTIONS(5991), + [anon_sym_as] = ACTIONS(5991), + [anon_sym_is] = ACTIONS(5991), + [anon_sym_DASH_GT] = ACTIONS(5991), + [anon_sym_with] = ACTIONS(5991), + [aux_sym_preproc_if_token3] = ACTIONS(5991), + [aux_sym_preproc_else_token1] = ACTIONS(5991), + [aux_sym_preproc_elif_token1] = ACTIONS(5991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -592522,27 +585981,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4371] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4371), [sym_preproc_endregion] = STATE(4371), [sym_preproc_line] = STATE(4371), @@ -592552,40 +586005,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4371), [sym_preproc_define] = STATE(4371), [sym_preproc_undef] = STATE(4371), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6547), - [anon_sym_is] = ACTIONS(6549), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_and] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -592598,27 +586053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4372] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4372), [sym_preproc_endregion] = STATE(4372), [sym_preproc_line] = STATE(4372), @@ -592628,40 +586062,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4372), [sym_preproc_define] = STATE(4372), [sym_preproc_undef] = STATE(4372), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6641), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_RBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_RPAREN] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_LT] = ACTIONS(3986), + [anon_sym_GT] = ACTIONS(3986), + [anon_sym_in] = ACTIONS(3997), + [anon_sym_QMARK] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3986), + [anon_sym_EQ_GT] = ACTIONS(3997), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_switch] = ACTIONS(3997), + [anon_sym_when] = ACTIONS(3997), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3997), + [anon_sym_or] = ACTIONS(3997), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_AMP] = ACTIONS(3986), + [sym_op_bitwise_or] = ACTIONS(3986), + [anon_sym_CARET] = ACTIONS(3997), + [sym_op_left_shift] = ACTIONS(3997), + [sym_op_right_shift] = ACTIONS(3986), + [sym_op_unsigned_right_shift] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3986), + [anon_sym_DASH] = ACTIONS(3986), + [sym_op_divide] = ACTIONS(3986), + [sym_op_modulo] = ACTIONS(3997), + [sym_op_coalescing] = ACTIONS(3997), + [anon_sym_BANG] = ACTIONS(3986), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_on] = ACTIONS(3997), + [anon_sym_equals] = ACTIONS(3997), + [anon_sym_by] = ACTIONS(3997), + [anon_sym_as] = ACTIONS(3997), + [anon_sym_is] = ACTIONS(3997), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3997), + [aux_sym_preproc_if_token3] = ACTIONS(3997), + [aux_sym_preproc_else_token1] = ACTIONS(3997), + [aux_sym_preproc_elif_token1] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -592674,27 +586125,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4373] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4373), [sym_preproc_endregion] = STATE(4373), [sym_preproc_line] = STATE(4373), @@ -592704,40 +586149,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4373), [sym_preproc_define] = STATE(4373), [sym_preproc_undef] = STATE(4373), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6559), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6933), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6937), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(6947), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -592750,27 +586197,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4374] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4374), [sym_preproc_endregion] = STATE(4374), [sym_preproc_line] = STATE(4374), @@ -592780,40 +586221,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4374), [sym_preproc_define] = STATE(4374), [sym_preproc_undef] = STATE(4374), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6557), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_and] = ACTIONS(5360), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -592826,27 +586269,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4375] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4375), [sym_preproc_endregion] = STATE(4375), [sym_preproc_line] = STATE(4375), @@ -592856,40 +586293,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4375), [sym_preproc_define] = STATE(4375), [sym_preproc_undef] = STATE(4375), - [anon_sym_SEMI] = ACTIONS(6643), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6933), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6937), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(6947), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -592902,27 +586341,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4376] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4376), [sym_preproc_endregion] = STATE(4376), [sym_preproc_line] = STATE(4376), @@ -592932,40 +586365,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4376), [sym_preproc_define] = STATE(4376), [sym_preproc_undef] = STATE(4376), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6645), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6933), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6937), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(6947), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -592978,27 +586413,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4377] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), [sym_preproc_region] = STATE(4377), [sym_preproc_endregion] = STATE(4377), [sym_preproc_line] = STATE(4377), @@ -593008,40 +586422,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4377), [sym_preproc_define] = STATE(4377), [sym_preproc_undef] = STATE(4377), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6557), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5967), + [anon_sym_LBRACK] = ACTIONS(5967), + [anon_sym_COLON] = ACTIONS(5967), + [anon_sym_COMMA] = ACTIONS(5967), + [anon_sym_RBRACK] = ACTIONS(5967), + [anon_sym_LPAREN] = ACTIONS(5967), + [anon_sym_RPAREN] = ACTIONS(5967), + [anon_sym_RBRACE] = ACTIONS(5967), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_in] = ACTIONS(5969), + [anon_sym_QMARK] = ACTIONS(5969), + [anon_sym_DOT] = ACTIONS(5969), + [anon_sym_EQ_GT] = ACTIONS(5967), + [anon_sym_STAR] = ACTIONS(5967), + [anon_sym_switch] = ACTIONS(5967), + [anon_sym_when] = ACTIONS(5967), + [anon_sym_DOT_DOT] = ACTIONS(5967), + [anon_sym_LT_EQ] = ACTIONS(5967), + [anon_sym_GT_EQ] = ACTIONS(5967), + [anon_sym_and] = ACTIONS(5967), + [anon_sym_or] = ACTIONS(5967), + [anon_sym_EQ_EQ] = ACTIONS(5967), + [anon_sym_BANG_EQ] = ACTIONS(5967), + [anon_sym_AMP_AMP] = ACTIONS(5967), + [anon_sym_PIPE_PIPE] = ACTIONS(5967), + [anon_sym_AMP] = ACTIONS(5969), + [sym_op_bitwise_or] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5967), + [sym_op_left_shift] = ACTIONS(5967), + [sym_op_right_shift] = ACTIONS(5969), + [sym_op_unsigned_right_shift] = ACTIONS(5967), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [sym_op_divide] = ACTIONS(5969), + [sym_op_modulo] = ACTIONS(5967), + [sym_op_coalescing] = ACTIONS(5967), + [anon_sym_BANG] = ACTIONS(5969), + [anon_sym_PLUS_PLUS] = ACTIONS(5967), + [anon_sym_DASH_DASH] = ACTIONS(5967), + [anon_sym_into] = ACTIONS(5967), + [anon_sym_on] = ACTIONS(5967), + [anon_sym_equals] = ACTIONS(5967), + [anon_sym_by] = ACTIONS(5967), + [anon_sym_as] = ACTIONS(5967), + [anon_sym_is] = ACTIONS(5967), + [anon_sym_DASH_GT] = ACTIONS(5967), + [anon_sym_with] = ACTIONS(5967), + [aux_sym_preproc_if_token3] = ACTIONS(5967), + [aux_sym_preproc_else_token1] = ACTIONS(5967), + [aux_sym_preproc_elif_token1] = ACTIONS(5967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -593054,27 +586485,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4378] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4378), [sym_preproc_endregion] = STATE(4378), [sym_preproc_line] = STATE(4378), @@ -593084,40 +586509,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4378), [sym_preproc_define] = STATE(4378), [sym_preproc_undef] = STATE(4378), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6933), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5296), + [anon_sym_or] = ACTIONS(5296), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6937), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(6947), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -593130,27 +586557,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4379] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), [sym_preproc_region] = STATE(4379), [sym_preproc_endregion] = STATE(4379), [sym_preproc_line] = STATE(4379), @@ -593160,40 +586566,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4379), [sym_preproc_define] = STATE(4379), [sym_preproc_undef] = STATE(4379), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6557), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5999), + [anon_sym_LBRACK] = ACTIONS(5999), + [anon_sym_COLON] = ACTIONS(5999), + [anon_sym_COMMA] = ACTIONS(5999), + [anon_sym_RBRACK] = ACTIONS(5999), + [anon_sym_LPAREN] = ACTIONS(5999), + [anon_sym_RPAREN] = ACTIONS(5999), + [anon_sym_RBRACE] = ACTIONS(5999), + [anon_sym_LT] = ACTIONS(6001), + [anon_sym_GT] = ACTIONS(6001), + [anon_sym_in] = ACTIONS(6001), + [anon_sym_QMARK] = ACTIONS(6001), + [anon_sym_DOT] = ACTIONS(6001), + [anon_sym_EQ_GT] = ACTIONS(5999), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_switch] = ACTIONS(5999), + [anon_sym_when] = ACTIONS(5999), + [anon_sym_DOT_DOT] = ACTIONS(5999), + [anon_sym_LT_EQ] = ACTIONS(5999), + [anon_sym_GT_EQ] = ACTIONS(5999), + [anon_sym_and] = ACTIONS(5999), + [anon_sym_or] = ACTIONS(5999), + [anon_sym_EQ_EQ] = ACTIONS(5999), + [anon_sym_BANG_EQ] = ACTIONS(5999), + [anon_sym_AMP_AMP] = ACTIONS(5999), + [anon_sym_PIPE_PIPE] = ACTIONS(5999), + [anon_sym_AMP] = ACTIONS(6001), + [sym_op_bitwise_or] = ACTIONS(6001), + [anon_sym_CARET] = ACTIONS(5999), + [sym_op_left_shift] = ACTIONS(5999), + [sym_op_right_shift] = ACTIONS(6001), + [sym_op_unsigned_right_shift] = ACTIONS(5999), + [anon_sym_PLUS] = ACTIONS(6001), + [anon_sym_DASH] = ACTIONS(6001), + [sym_op_divide] = ACTIONS(6001), + [sym_op_modulo] = ACTIONS(5999), + [sym_op_coalescing] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(6001), + [anon_sym_PLUS_PLUS] = ACTIONS(5999), + [anon_sym_DASH_DASH] = ACTIONS(5999), + [anon_sym_into] = ACTIONS(5999), + [anon_sym_on] = ACTIONS(5999), + [anon_sym_equals] = ACTIONS(5999), + [anon_sym_by] = ACTIONS(5999), + [anon_sym_as] = ACTIONS(5999), + [anon_sym_is] = ACTIONS(5999), + [anon_sym_DASH_GT] = ACTIONS(5999), + [anon_sym_with] = ACTIONS(5999), + [aux_sym_preproc_if_token3] = ACTIONS(5999), + [aux_sym_preproc_else_token1] = ACTIONS(5999), + [aux_sym_preproc_elif_token1] = ACTIONS(5999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -593206,27 +586629,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4380] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4380), [sym_preproc_endregion] = STATE(4380), [sym_preproc_line] = STATE(4380), @@ -593236,40 +586653,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4380), [sym_preproc_define] = STATE(4380), [sym_preproc_undef] = STATE(4380), - [anon_sym_SEMI] = ACTIONS(6647), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6933), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5332), + [anon_sym_or] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6937), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(6947), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -593282,27 +586701,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4381] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4381), [sym_preproc_endregion] = STATE(4381), [sym_preproc_line] = STATE(4381), @@ -593312,40 +586725,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4381), [sym_preproc_define] = STATE(4381), [sym_preproc_undef] = STATE(4381), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6649), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -593358,27 +586773,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4382] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4382), [sym_preproc_endregion] = STATE(4382), [sym_preproc_line] = STATE(4382), @@ -593388,40 +586797,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4382), [sym_preproc_define] = STATE(4382), [sym_preproc_undef] = STATE(4382), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6547), - [anon_sym_is] = ACTIONS(6549), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -593434,27 +586845,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4383] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_parameter_list] = STATE(7966), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6226), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym__lambda_parameters] = STATE(8081), + [sym_identifier] = STATE(6061), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4383), [sym_preproc_endregion] = STATE(4383), [sym_preproc_line] = STATE(4383), @@ -593464,40 +586874,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4383), [sym_preproc_define] = STATE(4383), [sym_preproc_undef] = STATE(4383), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_by] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [aux_sym__lambda_expression_init_repeat1] = STATE(6103), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(7018), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -593510,27 +586917,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4384] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4384), [sym_preproc_endregion] = STATE(4384), [sym_preproc_line] = STATE(4384), @@ -593540,40 +586926,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4384), [sym_preproc_define] = STATE(4384), [sym_preproc_undef] = STATE(4384), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6651), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5873), + [anon_sym_LBRACK] = ACTIONS(5873), + [anon_sym_COLON] = ACTIONS(5873), + [anon_sym_COMMA] = ACTIONS(5873), + [anon_sym_RBRACK] = ACTIONS(5873), + [anon_sym_LPAREN] = ACTIONS(5873), + [anon_sym_RPAREN] = ACTIONS(5873), + [anon_sym_RBRACE] = ACTIONS(5873), + [anon_sym_LT] = ACTIONS(5875), + [anon_sym_GT] = ACTIONS(5875), + [anon_sym_in] = ACTIONS(5875), + [anon_sym_QMARK] = ACTIONS(5875), + [anon_sym_DOT] = ACTIONS(5875), + [anon_sym_EQ_GT] = ACTIONS(5873), + [anon_sym_STAR] = ACTIONS(5873), + [anon_sym_switch] = ACTIONS(5873), + [anon_sym_when] = ACTIONS(5873), + [anon_sym_DOT_DOT] = ACTIONS(5873), + [anon_sym_LT_EQ] = ACTIONS(5873), + [anon_sym_GT_EQ] = ACTIONS(5873), + [anon_sym_and] = ACTIONS(5873), + [anon_sym_or] = ACTIONS(5873), + [anon_sym_EQ_EQ] = ACTIONS(5873), + [anon_sym_BANG_EQ] = ACTIONS(5873), + [anon_sym_AMP_AMP] = ACTIONS(5873), + [anon_sym_PIPE_PIPE] = ACTIONS(5873), + [anon_sym_AMP] = ACTIONS(5875), + [sym_op_bitwise_or] = ACTIONS(5875), + [anon_sym_CARET] = ACTIONS(5873), + [sym_op_left_shift] = ACTIONS(5873), + [sym_op_right_shift] = ACTIONS(5875), + [sym_op_unsigned_right_shift] = ACTIONS(5873), + [anon_sym_PLUS] = ACTIONS(5875), + [anon_sym_DASH] = ACTIONS(5875), + [sym_op_divide] = ACTIONS(5875), + [sym_op_modulo] = ACTIONS(5873), + [sym_op_coalescing] = ACTIONS(5873), + [anon_sym_BANG] = ACTIONS(5875), + [anon_sym_PLUS_PLUS] = ACTIONS(5873), + [anon_sym_DASH_DASH] = ACTIONS(5873), + [anon_sym_into] = ACTIONS(5873), + [anon_sym_on] = ACTIONS(5873), + [anon_sym_equals] = ACTIONS(5873), + [anon_sym_by] = ACTIONS(5873), + [anon_sym_as] = ACTIONS(5873), + [anon_sym_is] = ACTIONS(5873), + [anon_sym_DASH_GT] = ACTIONS(5873), + [anon_sym_with] = ACTIONS(5873), + [aux_sym_preproc_if_token3] = ACTIONS(5873), + [aux_sym_preproc_else_token1] = ACTIONS(5873), + [aux_sym_preproc_elif_token1] = ACTIONS(5873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -593586,27 +586989,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4385] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4385), [sym_preproc_endregion] = STATE(4385), [sym_preproc_line] = STATE(4385), @@ -593616,40 +587013,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4385), [sym_preproc_define] = STATE(4385), [sym_preproc_undef] = STATE(4385), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -593662,27 +587061,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4386] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4386), [sym_preproc_endregion] = STATE(4386), [sym_preproc_line] = STATE(4386), @@ -593692,40 +587085,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4386), [sym_preproc_define] = STATE(4386), [sym_preproc_undef] = STATE(4386), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4708), - [anon_sym_QMARK] = ACTIONS(6553), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6555), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6557), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -593738,27 +587133,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4387] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4387), [sym_preproc_endregion] = STATE(4387), [sym_preproc_line] = STATE(4387), @@ -593768,40 +587157,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4387), [sym_preproc_define] = STATE(4387), [sym_preproc_undef] = STATE(4387), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6653), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -593814,27 +587205,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4388] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(4388), [sym_preproc_endregion] = STATE(4388), [sym_preproc_line] = STATE(4388), @@ -593844,40 +587229,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4388), [sym_preproc_define] = STATE(4388), [sym_preproc_undef] = STATE(4388), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_and] = ACTIONS(5308), + [anon_sym_or] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -593890,27 +587277,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4389] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(4389), [sym_preproc_endregion] = STATE(4389), [sym_preproc_line] = STATE(4389), @@ -593920,40 +587301,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4389), [sym_preproc_define] = STATE(4389), [sym_preproc_undef] = STATE(4389), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6655), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6893), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6895), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(6905), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(6907), + [anon_sym_is] = ACTIONS(6909), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -593966,27 +587349,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4390] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4390), [sym_preproc_endregion] = STATE(4390), [sym_preproc_line] = STATE(4390), @@ -593996,40 +587358,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4390), [sym_preproc_define] = STATE(4390), [sym_preproc_undef] = STATE(4390), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6657), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(6743), + [anon_sym_GT] = ACTIONS(6743), + [anon_sym_in] = ACTIONS(6743), + [anon_sym_QMARK] = ACTIONS(6743), + [anon_sym_DOT] = ACTIONS(6743), + [anon_sym_EQ_GT] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_and] = ACTIONS(4152), + [anon_sym_or] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(6743), + [sym_op_bitwise_or] = ACTIONS(6743), + [anon_sym_CARET] = ACTIONS(4152), + [sym_op_left_shift] = ACTIONS(4152), + [sym_op_right_shift] = ACTIONS(6743), + [sym_op_unsigned_right_shift] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(6743), + [anon_sym_DASH] = ACTIONS(6743), + [sym_op_divide] = ACTIONS(6743), + [sym_op_modulo] = ACTIONS(4152), + [sym_op_coalescing] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(6743), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_into] = ACTIONS(4152), + [anon_sym_on] = ACTIONS(4152), + [anon_sym_equals] = ACTIONS(4152), + [anon_sym_by] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [anon_sym_with] = ACTIONS(4152), + [aux_sym_preproc_if_token3] = ACTIONS(4152), + [aux_sym_preproc_else_token1] = ACTIONS(4152), + [aux_sym_preproc_elif_token1] = ACTIONS(4152), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -594042,27 +587421,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4391] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4391), [sym_preproc_endregion] = STATE(4391), [sym_preproc_line] = STATE(4391), @@ -594072,40 +587430,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4391), [sym_preproc_define] = STATE(4391), [sym_preproc_undef] = STATE(4391), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6659), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LBRACK] = ACTIONS(7020), + [anon_sym_COLON] = ACTIONS(7020), + [anon_sym_COMMA] = ACTIONS(7020), + [anon_sym_RBRACK] = ACTIONS(7020), + [anon_sym_LPAREN] = ACTIONS(7020), + [anon_sym_RPAREN] = ACTIONS(7020), + [anon_sym_RBRACE] = ACTIONS(7020), + [anon_sym_LT] = ACTIONS(7022), + [anon_sym_GT] = ACTIONS(7022), + [anon_sym_in] = ACTIONS(7022), + [anon_sym_QMARK] = ACTIONS(7022), + [anon_sym_DOT] = ACTIONS(7022), + [anon_sym_EQ_GT] = ACTIONS(7020), + [anon_sym_STAR] = ACTIONS(7020), + [anon_sym_switch] = ACTIONS(7020), + [anon_sym_when] = ACTIONS(7020), + [anon_sym_DOT_DOT] = ACTIONS(7020), + [anon_sym_LT_EQ] = ACTIONS(7020), + [anon_sym_GT_EQ] = ACTIONS(7020), + [anon_sym_and] = ACTIONS(7020), + [anon_sym_or] = ACTIONS(7020), + [anon_sym_EQ_EQ] = ACTIONS(7020), + [anon_sym_BANG_EQ] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7022), + [sym_op_bitwise_or] = ACTIONS(7022), + [anon_sym_CARET] = ACTIONS(7020), + [sym_op_left_shift] = ACTIONS(7020), + [sym_op_right_shift] = ACTIONS(7022), + [sym_op_unsigned_right_shift] = ACTIONS(7020), + [anon_sym_PLUS] = ACTIONS(7022), + [anon_sym_DASH] = ACTIONS(7022), + [sym_op_divide] = ACTIONS(7022), + [sym_op_modulo] = ACTIONS(7020), + [sym_op_coalescing] = ACTIONS(7020), + [anon_sym_BANG] = ACTIONS(7022), + [anon_sym_PLUS_PLUS] = ACTIONS(7020), + [anon_sym_DASH_DASH] = ACTIONS(7020), + [anon_sym_into] = ACTIONS(7020), + [anon_sym_on] = ACTIONS(7020), + [anon_sym_equals] = ACTIONS(7020), + [anon_sym_by] = ACTIONS(7020), + [anon_sym_as] = ACTIONS(7020), + [anon_sym_is] = ACTIONS(7020), + [anon_sym_DASH_GT] = ACTIONS(7020), + [anon_sym_with] = ACTIONS(7020), + [aux_sym_preproc_if_token3] = ACTIONS(7020), + [aux_sym_preproc_else_token1] = ACTIONS(7020), + [aux_sym_preproc_elif_token1] = ACTIONS(7020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -594118,27 +587493,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4392] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4392), [sym_preproc_endregion] = STATE(4392), [sym_preproc_line] = STATE(4392), @@ -594148,40 +587502,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4392), [sym_preproc_define] = STATE(4392), [sym_preproc_undef] = STATE(4392), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6661), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5995), + [anon_sym_LBRACK] = ACTIONS(5995), + [anon_sym_COLON] = ACTIONS(5995), + [anon_sym_COMMA] = ACTIONS(5995), + [anon_sym_RBRACK] = ACTIONS(5995), + [anon_sym_LPAREN] = ACTIONS(5995), + [anon_sym_RPAREN] = ACTIONS(5995), + [anon_sym_RBRACE] = ACTIONS(5995), + [anon_sym_LT] = ACTIONS(5997), + [anon_sym_GT] = ACTIONS(5997), + [anon_sym_in] = ACTIONS(5997), + [anon_sym_QMARK] = ACTIONS(5997), + [anon_sym_DOT] = ACTIONS(5997), + [anon_sym_EQ_GT] = ACTIONS(5995), + [anon_sym_STAR] = ACTIONS(5995), + [anon_sym_switch] = ACTIONS(5995), + [anon_sym_when] = ACTIONS(5995), + [anon_sym_DOT_DOT] = ACTIONS(5995), + [anon_sym_LT_EQ] = ACTIONS(5995), + [anon_sym_GT_EQ] = ACTIONS(5995), + [anon_sym_and] = ACTIONS(5995), + [anon_sym_or] = ACTIONS(5995), + [anon_sym_EQ_EQ] = ACTIONS(5995), + [anon_sym_BANG_EQ] = ACTIONS(5995), + [anon_sym_AMP_AMP] = ACTIONS(5995), + [anon_sym_PIPE_PIPE] = ACTIONS(5995), + [anon_sym_AMP] = ACTIONS(5997), + [sym_op_bitwise_or] = ACTIONS(5997), + [anon_sym_CARET] = ACTIONS(5995), + [sym_op_left_shift] = ACTIONS(5995), + [sym_op_right_shift] = ACTIONS(5997), + [sym_op_unsigned_right_shift] = ACTIONS(5995), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [sym_op_divide] = ACTIONS(5997), + [sym_op_modulo] = ACTIONS(5995), + [sym_op_coalescing] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5997), + [anon_sym_PLUS_PLUS] = ACTIONS(5995), + [anon_sym_DASH_DASH] = ACTIONS(5995), + [anon_sym_into] = ACTIONS(5995), + [anon_sym_on] = ACTIONS(5995), + [anon_sym_equals] = ACTIONS(5995), + [anon_sym_by] = ACTIONS(5995), + [anon_sym_as] = ACTIONS(5995), + [anon_sym_is] = ACTIONS(5995), + [anon_sym_DASH_GT] = ACTIONS(5995), + [anon_sym_with] = ACTIONS(5995), + [aux_sym_preproc_if_token3] = ACTIONS(5995), + [aux_sym_preproc_else_token1] = ACTIONS(5995), + [aux_sym_preproc_elif_token1] = ACTIONS(5995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -594194,27 +587565,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4393] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4393), [sym_preproc_endregion] = STATE(4393), [sym_preproc_line] = STATE(4393), @@ -594224,40 +587574,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4393), [sym_preproc_define] = STATE(4393), [sym_preproc_undef] = STATE(4393), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6663), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5959), + [anon_sym_LBRACK] = ACTIONS(5959), + [anon_sym_COLON] = ACTIONS(5959), + [anon_sym_COMMA] = ACTIONS(5959), + [anon_sym_RBRACK] = ACTIONS(5959), + [anon_sym_LPAREN] = ACTIONS(5959), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_RBRACE] = ACTIONS(5959), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_in] = ACTIONS(5961), + [anon_sym_QMARK] = ACTIONS(5961), + [anon_sym_DOT] = ACTIONS(5961), + [anon_sym_EQ_GT] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(5959), + [anon_sym_switch] = ACTIONS(5959), + [anon_sym_when] = ACTIONS(5959), + [anon_sym_DOT_DOT] = ACTIONS(5959), + [anon_sym_LT_EQ] = ACTIONS(5959), + [anon_sym_GT_EQ] = ACTIONS(5959), + [anon_sym_and] = ACTIONS(5959), + [anon_sym_or] = ACTIONS(5959), + [anon_sym_EQ_EQ] = ACTIONS(5959), + [anon_sym_BANG_EQ] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [anon_sym_AMP] = ACTIONS(5961), + [sym_op_bitwise_or] = ACTIONS(5961), + [anon_sym_CARET] = ACTIONS(5959), + [sym_op_left_shift] = ACTIONS(5959), + [sym_op_right_shift] = ACTIONS(5961), + [sym_op_unsigned_right_shift] = ACTIONS(5959), + [anon_sym_PLUS] = ACTIONS(5961), + [anon_sym_DASH] = ACTIONS(5961), + [sym_op_divide] = ACTIONS(5961), + [sym_op_modulo] = ACTIONS(5959), + [sym_op_coalescing] = ACTIONS(5959), + [anon_sym_BANG] = ACTIONS(5961), + [anon_sym_PLUS_PLUS] = ACTIONS(5959), + [anon_sym_DASH_DASH] = ACTIONS(5959), + [anon_sym_into] = ACTIONS(5959), + [anon_sym_on] = ACTIONS(5959), + [anon_sym_equals] = ACTIONS(5959), + [anon_sym_by] = ACTIONS(5959), + [anon_sym_as] = ACTIONS(5959), + [anon_sym_is] = ACTIONS(5959), + [anon_sym_DASH_GT] = ACTIONS(5959), + [anon_sym_with] = ACTIONS(5959), + [aux_sym_preproc_if_token3] = ACTIONS(5959), + [aux_sym_preproc_else_token1] = ACTIONS(5959), + [aux_sym_preproc_elif_token1] = ACTIONS(5959), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -594270,27 +587637,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4394] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4394), [sym_preproc_endregion] = STATE(4394), [sym_preproc_line] = STATE(4394), @@ -594300,40 +587661,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4394), [sym_preproc_define] = STATE(4394), [sym_preproc_undef] = STATE(4394), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6665), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_array_rank_specifier_repeat1] = STATE(7205), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(7024), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -594355,61 +587718,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4395), [sym_preproc_define] = STATE(4395), [sym_preproc_undef] = STATE(4395), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4972), - [anon_sym_RBRACK] = ACTIONS(4972), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_RPAREN] = ACTIONS(4972), - [anon_sym_RBRACE] = ACTIONS(4972), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(3991), - [anon_sym_EQ_GT] = ACTIONS(4970), - [anon_sym_switch] = ACTIONS(4006), - [anon_sym_when] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_as] = ACTIONS(4006), - [anon_sym_is] = ACTIONS(4006), - [anon_sym_DASH_GT] = ACTIONS(4006), - [anon_sym_with] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_COLON] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_RBRACK] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3191), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_EQ_GT] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_EQ] = ACTIONS(3193), + [anon_sym_and] = ACTIONS(3193), + [anon_sym_or] = ACTIONS(3193), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_PIPE_PIPE] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [sym_op_bitwise_or] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3193), + [sym_op_left_shift] = ACTIONS(3193), + [sym_op_right_shift] = ACTIONS(3191), + [sym_op_unsigned_right_shift] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [sym_op_divide] = ACTIONS(3191), + [sym_op_modulo] = ACTIONS(3193), + [sym_op_coalescing] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_into] = ACTIONS(3193), + [anon_sym_on] = ACTIONS(3193), + [anon_sym_equals] = ACTIONS(3193), + [anon_sym_by] = ACTIONS(3193), + [anon_sym_as] = ACTIONS(3193), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_DASH_GT] = ACTIONS(3193), + [anon_sym_with] = 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), @@ -594422,27 +587781,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4396] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), [sym_preproc_region] = STATE(4396), [sym_preproc_endregion] = STATE(4396), [sym_preproc_line] = STATE(4396), @@ -594452,40 +587790,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4396), [sym_preproc_define] = STATE(4396), [sym_preproc_undef] = STATE(4396), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6667), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5680), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4660), + [anon_sym_COLON] = ACTIONS(4660), + [anon_sym_COMMA] = ACTIONS(4660), + [anon_sym_RBRACK] = ACTIONS(4660), + [anon_sym_LPAREN] = ACTIONS(4660), + [anon_sym_RPAREN] = ACTIONS(4660), + [anon_sym_RBRACE] = ACTIONS(4660), + [anon_sym_LT] = ACTIONS(4662), + [anon_sym_GT] = ACTIONS(4662), + [anon_sym_in] = ACTIONS(4662), + [anon_sym_QMARK] = ACTIONS(4662), + [anon_sym_DOT] = ACTIONS(4662), + [anon_sym_EQ_GT] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [anon_sym_switch] = ACTIONS(4660), + [anon_sym_when] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4660), + [anon_sym_LT_EQ] = ACTIONS(4660), + [anon_sym_GT_EQ] = ACTIONS(4660), + [anon_sym_and] = ACTIONS(4660), + [anon_sym_or] = ACTIONS(4660), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_AMP_AMP] = ACTIONS(4660), + [anon_sym_PIPE_PIPE] = ACTIONS(4660), + [anon_sym_AMP] = ACTIONS(4662), + [sym_op_bitwise_or] = ACTIONS(4662), + [anon_sym_CARET] = ACTIONS(4660), + [sym_op_left_shift] = ACTIONS(4660), + [sym_op_right_shift] = ACTIONS(4662), + [sym_op_unsigned_right_shift] = ACTIONS(4660), + [anon_sym_PLUS] = ACTIONS(4662), + [anon_sym_DASH] = ACTIONS(4662), + [sym_op_divide] = ACTIONS(4662), + [sym_op_modulo] = ACTIONS(4660), + [sym_op_coalescing] = ACTIONS(4660), + [anon_sym_BANG] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4660), + [anon_sym_DASH_DASH] = ACTIONS(4660), + [anon_sym_into] = ACTIONS(4660), + [anon_sym_on] = ACTIONS(4660), + [anon_sym_equals] = ACTIONS(4660), + [anon_sym_by] = ACTIONS(4660), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_DASH_GT] = ACTIONS(4660), + [anon_sym_with] = ACTIONS(4660), + [aux_sym_preproc_if_token3] = ACTIONS(4660), + [aux_sym_preproc_else_token1] = ACTIONS(4660), + [aux_sym_preproc_elif_token1] = ACTIONS(4660), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -594498,27 +587853,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4397] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4397), [sym_preproc_endregion] = STATE(4397), [sym_preproc_line] = STATE(4397), @@ -594528,40 +587877,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4397), [sym_preproc_define] = STATE(4397), [sym_preproc_undef] = STATE(4397), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6669), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -594574,27 +587925,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4398] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4398), [sym_preproc_endregion] = STATE(4398), [sym_preproc_line] = STATE(4398), @@ -594604,40 +587949,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4398), [sym_preproc_define] = STATE(4398), [sym_preproc_undef] = STATE(4398), - [anon_sym_SEMI] = ACTIONS(6671), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -594650,27 +587997,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4399] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), [sym_preproc_region] = STATE(4399), [sym_preproc_endregion] = STATE(4399), [sym_preproc_line] = STATE(4399), @@ -594680,40 +588006,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4399), [sym_preproc_define] = STATE(4399), [sym_preproc_undef] = STATE(4399), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4766), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [sym__identifier_token] = ACTIONS(7026), + [anon_sym_extern] = ACTIONS(7026), + [anon_sym_alias] = ACTIONS(7026), + [anon_sym_global] = ACTIONS(7026), + [anon_sym_unsafe] = ACTIONS(7026), + [anon_sym_static] = ACTIONS(7026), + [anon_sym_LBRACK] = ACTIONS(7028), + [anon_sym_RBRACE] = ACTIONS(7028), + [anon_sym_public] = ACTIONS(7026), + [anon_sym_private] = ACTIONS(7026), + [anon_sym_readonly] = ACTIONS(7026), + [anon_sym_abstract] = ACTIONS(7026), + [anon_sym_async] = ACTIONS(7026), + [anon_sym_const] = ACTIONS(7026), + [anon_sym_file] = ACTIONS(7026), + [anon_sym_fixed] = ACTIONS(7026), + [anon_sym_internal] = ACTIONS(7026), + [anon_sym_new] = ACTIONS(7026), + [anon_sym_override] = ACTIONS(7026), + [anon_sym_partial] = ACTIONS(7026), + [anon_sym_protected] = ACTIONS(7026), + [anon_sym_required] = ACTIONS(7026), + [anon_sym_sealed] = ACTIONS(7026), + [anon_sym_virtual] = ACTIONS(7026), + [anon_sym_volatile] = ACTIONS(7026), + [anon_sym_where] = ACTIONS(7026), + [anon_sym_notnull] = ACTIONS(7026), + [anon_sym_unmanaged] = ACTIONS(7026), + [sym_accessor_get] = ACTIONS(7026), + [sym_accessor_set] = ACTIONS(7026), + [sym_accessor_add] = ACTIONS(7026), + [sym_accessor_remove] = ACTIONS(7026), + [sym_accessor_init] = ACTIONS(7026), + [anon_sym_scoped] = ACTIONS(7026), + [anon_sym_var] = ACTIONS(7026), + [anon_sym_yield] = ACTIONS(7026), + [anon_sym_when] = ACTIONS(7026), + [anon_sym_from] = ACTIONS(7026), + [anon_sym_into] = ACTIONS(7026), + [anon_sym_join] = ACTIONS(7026), + [anon_sym_on] = ACTIONS(7026), + [anon_sym_equals] = ACTIONS(7026), + [anon_sym_let] = ACTIONS(7026), + [anon_sym_orderby] = ACTIONS(7026), + [anon_sym_ascending] = ACTIONS(7026), + [anon_sym_descending] = ACTIONS(7026), + [anon_sym_group] = ACTIONS(7026), + [anon_sym_by] = ACTIONS(7026), + [anon_sym_select] = ACTIONS(7026), + [sym_grit_metavariable] = ACTIONS(7028), + [aux_sym_preproc_if_token1] = ACTIONS(7028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -594726,27 +588069,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4400] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4400), [sym_preproc_endregion] = STATE(4400), [sym_preproc_line] = STATE(4400), @@ -594756,40 +588093,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4400), [sym_preproc_define] = STATE(4400), [sym_preproc_undef] = STATE(4400), - [anon_sym_SEMI] = ACTIONS(6673), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5314), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -594811,61 +588150,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4401), [sym_preproc_define] = STATE(4401), [sym_preproc_undef] = STATE(4401), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_event] = ACTIONS(3738), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_record] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_implicit] = ACTIONS(3738), - [anon_sym_explicit] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_COLON] = ACTIONS(3197), + [anon_sym_COMMA] = ACTIONS(3197), + [anon_sym_RBRACK] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_RPAREN] = ACTIONS(3197), + [anon_sym_RBRACE] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_QMARK] = ACTIONS(3195), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_EQ_GT] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_switch] = ACTIONS(3197), + [anon_sym_when] = ACTIONS(3197), + [anon_sym_DOT_DOT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [sym_op_bitwise_or] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3197), + [sym_op_left_shift] = ACTIONS(3197), + [sym_op_right_shift] = ACTIONS(3195), + [sym_op_unsigned_right_shift] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [sym_op_divide] = ACTIONS(3195), + [sym_op_modulo] = ACTIONS(3197), + [sym_op_coalescing] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_into] = ACTIONS(3197), + [anon_sym_on] = ACTIONS(3197), + [anon_sym_equals] = ACTIONS(3197), + [anon_sym_by] = ACTIONS(3197), + [anon_sym_as] = ACTIONS(3197), + [anon_sym_is] = ACTIONS(3197), + [anon_sym_DASH_GT] = ACTIONS(3197), + [anon_sym_with] = 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), @@ -594878,27 +588213,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4402] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4402), [sym_preproc_endregion] = STATE(4402), [sym_preproc_line] = STATE(4402), @@ -594908,40 +588222,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4402), [sym_preproc_define] = STATE(4402), [sym_preproc_undef] = STATE(4402), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6675), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(7030), + [anon_sym_LBRACK] = ACTIONS(7030), + [anon_sym_COLON] = ACTIONS(7030), + [anon_sym_COMMA] = ACTIONS(7030), + [anon_sym_RBRACK] = ACTIONS(7030), + [anon_sym_LPAREN] = ACTIONS(7030), + [anon_sym_RPAREN] = ACTIONS(7030), + [anon_sym_RBRACE] = ACTIONS(7030), + [anon_sym_LT] = ACTIONS(7032), + [anon_sym_GT] = ACTIONS(7032), + [anon_sym_in] = ACTIONS(7032), + [anon_sym_QMARK] = ACTIONS(7032), + [anon_sym_DOT] = ACTIONS(7032), + [anon_sym_EQ_GT] = ACTIONS(7030), + [anon_sym_STAR] = ACTIONS(7030), + [anon_sym_switch] = ACTIONS(7030), + [anon_sym_when] = ACTIONS(7030), + [anon_sym_DOT_DOT] = ACTIONS(7030), + [anon_sym_LT_EQ] = ACTIONS(7030), + [anon_sym_GT_EQ] = ACTIONS(7030), + [anon_sym_and] = ACTIONS(7030), + [anon_sym_or] = ACTIONS(7030), + [anon_sym_EQ_EQ] = ACTIONS(7030), + [anon_sym_BANG_EQ] = ACTIONS(7030), + [anon_sym_AMP_AMP] = ACTIONS(7030), + [anon_sym_PIPE_PIPE] = ACTIONS(7030), + [anon_sym_AMP] = ACTIONS(7032), + [sym_op_bitwise_or] = ACTIONS(7032), + [anon_sym_CARET] = ACTIONS(7030), + [sym_op_left_shift] = ACTIONS(7030), + [sym_op_right_shift] = ACTIONS(7032), + [sym_op_unsigned_right_shift] = ACTIONS(7030), + [anon_sym_PLUS] = ACTIONS(7032), + [anon_sym_DASH] = ACTIONS(7032), + [sym_op_divide] = ACTIONS(7032), + [sym_op_modulo] = ACTIONS(7030), + [sym_op_coalescing] = ACTIONS(7030), + [anon_sym_BANG] = ACTIONS(7032), + [anon_sym_PLUS_PLUS] = ACTIONS(7030), + [anon_sym_DASH_DASH] = ACTIONS(7030), + [anon_sym_into] = ACTIONS(7030), + [anon_sym_on] = ACTIONS(7030), + [anon_sym_equals] = ACTIONS(7030), + [anon_sym_by] = ACTIONS(7030), + [anon_sym_as] = ACTIONS(7030), + [anon_sym_is] = ACTIONS(7030), + [anon_sym_DASH_GT] = ACTIONS(7030), + [anon_sym_with] = ACTIONS(7030), + [aux_sym_preproc_if_token3] = ACTIONS(7030), + [aux_sym_preproc_else_token1] = ACTIONS(7030), + [aux_sym_preproc_elif_token1] = ACTIONS(7030), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -594954,27 +588285,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4403] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4403), [sym_preproc_endregion] = STATE(4403), [sym_preproc_line] = STATE(4403), @@ -594984,40 +588309,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4403), [sym_preproc_define] = STATE(4403), [sym_preproc_undef] = STATE(4403), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6677), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_array_rank_specifier_repeat1] = STATE(7277), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(7034), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -595030,27 +588357,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4404] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4404), [sym_preproc_endregion] = STATE(4404), [sym_preproc_line] = STATE(4404), @@ -595060,40 +588381,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4404), [sym_preproc_define] = STATE(4404), [sym_preproc_undef] = STATE(4404), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_by] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -595106,27 +588429,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4405] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), [sym_preproc_region] = STATE(4405), [sym_preproc_endregion] = STATE(4405), [sym_preproc_line] = STATE(4405), @@ -595136,40 +588438,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4405), [sym_preproc_define] = STATE(4405), [sym_preproc_undef] = STATE(4405), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4794), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(5761), + [anon_sym_LBRACK] = ACTIONS(5761), + [anon_sym_COLON] = ACTIONS(5761), + [anon_sym_COMMA] = ACTIONS(5761), + [anon_sym_RBRACK] = ACTIONS(5761), + [anon_sym_LPAREN] = ACTIONS(5761), + [anon_sym_RPAREN] = ACTIONS(5761), + [anon_sym_RBRACE] = ACTIONS(5761), + [anon_sym_LT] = ACTIONS(5763), + [anon_sym_GT] = ACTIONS(5763), + [anon_sym_in] = ACTIONS(5763), + [anon_sym_QMARK] = ACTIONS(5763), + [anon_sym_DOT] = ACTIONS(5763), + [anon_sym_EQ_GT] = ACTIONS(5761), + [anon_sym_STAR] = ACTIONS(5761), + [anon_sym_switch] = ACTIONS(5761), + [anon_sym_when] = ACTIONS(5761), + [anon_sym_DOT_DOT] = ACTIONS(5761), + [anon_sym_LT_EQ] = ACTIONS(5761), + [anon_sym_GT_EQ] = ACTIONS(5761), + [anon_sym_and] = ACTIONS(5761), + [anon_sym_or] = ACTIONS(5761), + [anon_sym_EQ_EQ] = ACTIONS(5761), + [anon_sym_BANG_EQ] = ACTIONS(5761), + [anon_sym_AMP_AMP] = ACTIONS(5761), + [anon_sym_PIPE_PIPE] = ACTIONS(5761), + [anon_sym_AMP] = ACTIONS(5763), + [sym_op_bitwise_or] = ACTIONS(5763), + [anon_sym_CARET] = ACTIONS(5761), + [sym_op_left_shift] = ACTIONS(5761), + [sym_op_right_shift] = ACTIONS(5763), + [sym_op_unsigned_right_shift] = ACTIONS(5761), + [anon_sym_PLUS] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5763), + [sym_op_divide] = ACTIONS(5763), + [sym_op_modulo] = ACTIONS(5761), + [sym_op_coalescing] = ACTIONS(5761), + [anon_sym_BANG] = ACTIONS(5763), + [anon_sym_PLUS_PLUS] = ACTIONS(5761), + [anon_sym_DASH_DASH] = ACTIONS(5761), + [anon_sym_into] = ACTIONS(5761), + [anon_sym_on] = ACTIONS(5761), + [anon_sym_equals] = ACTIONS(5761), + [anon_sym_by] = ACTIONS(5761), + [anon_sym_as] = ACTIONS(5761), + [anon_sym_is] = ACTIONS(5761), + [anon_sym_DASH_GT] = ACTIONS(5761), + [anon_sym_with] = ACTIONS(5761), + [aux_sym_preproc_if_token3] = ACTIONS(5761), + [aux_sym_preproc_else_token1] = ACTIONS(5761), + [aux_sym_preproc_elif_token1] = ACTIONS(5761), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -595182,27 +588501,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4406] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4406), [sym_preproc_endregion] = STATE(4406), [sym_preproc_line] = STATE(4406), @@ -595212,40 +588525,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4406), [sym_preproc_define] = STATE(4406), [sym_preproc_undef] = STATE(4406), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5336), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6717), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(6729), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -595258,27 +588573,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4407] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4407), [sym_preproc_endregion] = STATE(4407), [sym_preproc_line] = STATE(4407), @@ -595288,40 +588597,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4407), [sym_preproc_define] = STATE(4407), [sym_preproc_undef] = STATE(4407), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4790), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6543), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -595334,27 +588645,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4408] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4408), [sym_preproc_endregion] = STATE(4408), [sym_preproc_line] = STATE(4408), @@ -595364,40 +588669,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4408), [sym_preproc_define] = STATE(4408), [sym_preproc_undef] = STATE(4408), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -595410,27 +588717,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4409] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4409), [sym_preproc_endregion] = STATE(4409), [sym_preproc_line] = STATE(4409), @@ -595440,40 +588741,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4409), [sym_preproc_define] = STATE(4409), [sym_preproc_undef] = STATE(4409), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6679), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6683), - [anon_sym_equals] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(6685), - [anon_sym_is] = ACTIONS(6687), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -595486,27 +588789,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4410] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4410), [sym_preproc_endregion] = STATE(4410), [sym_preproc_line] = STATE(4410), @@ -595516,40 +588813,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4410), [sym_preproc_define] = STATE(4410), [sym_preproc_undef] = STATE(4410), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(6689), - [anon_sym_QMARK] = ACTIONS(6553), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6555), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6557), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -595562,27 +588861,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4411] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4411), [sym_preproc_endregion] = STATE(4411), [sym_preproc_line] = STATE(4411), @@ -595592,40 +588885,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4411), [sym_preproc_define] = STATE(4411), [sym_preproc_undef] = STATE(4411), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4752), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -595638,27 +588933,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4412] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4412), [sym_preproc_endregion] = STATE(4412), [sym_preproc_line] = STATE(4412), @@ -595668,40 +588957,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4412), [sym_preproc_define] = STATE(4412), [sym_preproc_undef] = STATE(4412), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6691), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -595714,27 +589005,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4413] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4413), [sym_preproc_endregion] = STATE(4413), [sym_preproc_line] = STATE(4413), @@ -595744,40 +589029,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4413), [sym_preproc_define] = STATE(4413), [sym_preproc_undef] = STATE(4413), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -595790,27 +589077,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4414] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4414), [sym_preproc_endregion] = STATE(4414), [sym_preproc_line] = STATE(4414), @@ -595820,40 +589101,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4414), [sym_preproc_define] = STATE(4414), [sym_preproc_undef] = STATE(4414), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_on] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym__for_statement_conditions_repeat1] = STATE(7097), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6739), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7036), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -595866,27 +589149,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4415] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4415), [sym_preproc_endregion] = STATE(4415), [sym_preproc_line] = STATE(4415), @@ -595896,40 +589173,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4415), [sym_preproc_define] = STATE(4415), [sym_preproc_undef] = STATE(4415), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6583), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6585), - [anon_sym_on] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(6547), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(6729), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), [anon_sym_is] = ACTIONS(6549), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -595942,27 +589221,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4416] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4416), [sym_preproc_endregion] = STATE(4416), [sym_preproc_line] = STATE(4416), @@ -595972,40 +589245,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4416), [sym_preproc_define] = STATE(4416), [sym_preproc_undef] = STATE(4416), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6679), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6683), - [anon_sym_equals] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(6685), - [anon_sym_is] = ACTIONS(6687), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -596018,27 +589293,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4417] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4417), [sym_preproc_endregion] = STATE(4417), [sym_preproc_line] = STATE(4417), @@ -596048,40 +589317,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4417), [sym_preproc_define] = STATE(4417), [sym_preproc_undef] = STATE(4417), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6693), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), + [aux_sym_preproc_if_token3] = ACTIONS(5360), + [aux_sym_preproc_else_token1] = ACTIONS(5360), + [aux_sym_preproc_elif_token1] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -596094,27 +589365,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4418] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4418), [sym_preproc_endregion] = STATE(4418), [sym_preproc_line] = STATE(4418), @@ -596124,40 +589389,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4418), [sym_preproc_define] = STATE(4418), [sym_preproc_undef] = STATE(4418), - [anon_sym_SEMI] = ACTIONS(6695), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -596170,27 +589437,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4419] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4419), [sym_preproc_endregion] = STATE(4419), [sym_preproc_line] = STATE(4419), @@ -596200,40 +589461,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4419), [sym_preproc_define] = STATE(4419), [sym_preproc_undef] = STATE(4419), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6697), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -596246,27 +589509,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4420] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4420), [sym_preproc_endregion] = STATE(4420), [sym_preproc_line] = STATE(4420), @@ -596276,40 +589533,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4420), [sym_preproc_define] = STATE(4420), [sym_preproc_undef] = STATE(4420), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6699), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -596322,27 +589581,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4421] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4421), [sym_preproc_endregion] = STATE(4421), [sym_preproc_line] = STATE(4421), @@ -596352,40 +589605,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4421), [sym_preproc_define] = STATE(4421), [sym_preproc_undef] = STATE(4421), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4766), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -596398,27 +589653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4422] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_type_argument_list] = STATE(3144), [sym_preproc_region] = STATE(4422), [sym_preproc_endregion] = STATE(4422), [sym_preproc_line] = STATE(4422), @@ -596428,40 +589663,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4422), [sym_preproc_define] = STATE(4422), [sym_preproc_undef] = STATE(4422), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3955), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(5581), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(7038), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -596474,27 +589725,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4423] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4423), [sym_preproc_endregion] = STATE(4423), [sym_preproc_line] = STATE(4423), @@ -596504,40 +589749,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4423), [sym_preproc_define] = STATE(4423), [sym_preproc_undef] = STATE(4423), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6701), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5360), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -596550,27 +589797,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4424] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4424), [sym_preproc_endregion] = STATE(4424), [sym_preproc_line] = STATE(4424), @@ -596580,40 +589821,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4424), [sym_preproc_define] = STATE(4424), [sym_preproc_undef] = STATE(4424), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6703), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_array_rank_specifier_repeat1] = STATE(7182), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(7040), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -596626,27 +589869,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4425] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4425), [sym_preproc_endregion] = STATE(4425), [sym_preproc_line] = STATE(4425), @@ -596656,40 +589878,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4425), [sym_preproc_define] = STATE(4425), [sym_preproc_undef] = STATE(4425), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COMMA] = ACTIONS(6705), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5828), + [anon_sym_LBRACK] = ACTIONS(5828), + [anon_sym_COLON] = ACTIONS(5828), + [anon_sym_COMMA] = ACTIONS(5828), + [anon_sym_RBRACK] = ACTIONS(5828), + [anon_sym_LPAREN] = ACTIONS(5828), + [anon_sym_RPAREN] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(5828), + [anon_sym_LT] = ACTIONS(5830), + [anon_sym_GT] = ACTIONS(5830), + [anon_sym_in] = ACTIONS(5830), + [anon_sym_QMARK] = ACTIONS(5830), + [anon_sym_DOT] = ACTIONS(5830), + [anon_sym_EQ_GT] = ACTIONS(5828), + [anon_sym_STAR] = ACTIONS(5828), + [anon_sym_switch] = ACTIONS(5828), + [anon_sym_when] = ACTIONS(5828), + [anon_sym_DOT_DOT] = ACTIONS(5828), + [anon_sym_LT_EQ] = ACTIONS(5828), + [anon_sym_GT_EQ] = ACTIONS(5828), + [anon_sym_and] = ACTIONS(5828), + [anon_sym_or] = ACTIONS(5828), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_AMP_AMP] = ACTIONS(5828), + [anon_sym_PIPE_PIPE] = ACTIONS(5828), + [anon_sym_AMP] = ACTIONS(5830), + [sym_op_bitwise_or] = ACTIONS(5830), + [anon_sym_CARET] = ACTIONS(5828), + [sym_op_left_shift] = ACTIONS(5828), + [sym_op_right_shift] = ACTIONS(5830), + [sym_op_unsigned_right_shift] = ACTIONS(5828), + [anon_sym_PLUS] = ACTIONS(5830), + [anon_sym_DASH] = ACTIONS(5830), + [sym_op_divide] = ACTIONS(5830), + [sym_op_modulo] = ACTIONS(5828), + [sym_op_coalescing] = ACTIONS(5828), + [anon_sym_BANG] = ACTIONS(5830), + [anon_sym_PLUS_PLUS] = ACTIONS(5828), + [anon_sym_DASH_DASH] = ACTIONS(5828), + [anon_sym_into] = ACTIONS(5828), + [anon_sym_on] = ACTIONS(5828), + [anon_sym_equals] = ACTIONS(5828), + [anon_sym_by] = ACTIONS(5828), + [anon_sym_as] = ACTIONS(5828), + [anon_sym_is] = ACTIONS(5828), + [anon_sym_DASH_GT] = ACTIONS(5828), + [anon_sym_with] = ACTIONS(5828), + [aux_sym_preproc_if_token3] = ACTIONS(5828), + [aux_sym_preproc_else_token1] = ACTIONS(5828), + [aux_sym_preproc_elif_token1] = ACTIONS(5828), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -596702,27 +589941,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4426] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(4426), [sym_preproc_endregion] = STATE(4426), [sym_preproc_line] = STATE(4426), @@ -596732,40 +589965,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4426), [sym_preproc_define] = STATE(4426), [sym_preproc_undef] = STATE(4426), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6707), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6761), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6763), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6765), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(6775), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5328), + [anon_sym_as] = ACTIONS(6777), + [anon_sym_is] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -596778,27 +590013,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4427] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4427), [sym_preproc_endregion] = STATE(4427), [sym_preproc_line] = STATE(4427), @@ -596808,40 +590022,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4427), [sym_preproc_define] = STATE(4427), [sym_preproc_undef] = STATE(4427), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6709), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5907), + [anon_sym_LBRACK] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5907), + [anon_sym_COMMA] = ACTIONS(5907), + [anon_sym_RBRACK] = ACTIONS(5907), + [anon_sym_LPAREN] = ACTIONS(5907), + [anon_sym_RPAREN] = ACTIONS(5907), + [anon_sym_RBRACE] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5909), + [anon_sym_GT] = ACTIONS(5909), + [anon_sym_in] = ACTIONS(5909), + [anon_sym_QMARK] = ACTIONS(5909), + [anon_sym_DOT] = ACTIONS(5909), + [anon_sym_EQ_GT] = ACTIONS(5907), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_switch] = ACTIONS(5907), + [anon_sym_when] = ACTIONS(5907), + [anon_sym_DOT_DOT] = ACTIONS(5907), + [anon_sym_LT_EQ] = ACTIONS(5907), + [anon_sym_GT_EQ] = ACTIONS(5907), + [anon_sym_and] = ACTIONS(5907), + [anon_sym_or] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5907), + [anon_sym_BANG_EQ] = ACTIONS(5907), + [anon_sym_AMP_AMP] = ACTIONS(5907), + [anon_sym_PIPE_PIPE] = ACTIONS(5907), + [anon_sym_AMP] = ACTIONS(5909), + [sym_op_bitwise_or] = ACTIONS(5909), + [anon_sym_CARET] = ACTIONS(5907), + [sym_op_left_shift] = ACTIONS(5907), + [sym_op_right_shift] = ACTIONS(5909), + [sym_op_unsigned_right_shift] = ACTIONS(5907), + [anon_sym_PLUS] = ACTIONS(5909), + [anon_sym_DASH] = ACTIONS(5909), + [sym_op_divide] = ACTIONS(5909), + [sym_op_modulo] = ACTIONS(5907), + [sym_op_coalescing] = ACTIONS(5907), + [anon_sym_BANG] = ACTIONS(5909), + [anon_sym_PLUS_PLUS] = ACTIONS(5907), + [anon_sym_DASH_DASH] = ACTIONS(5907), + [anon_sym_into] = ACTIONS(5907), + [anon_sym_on] = ACTIONS(5907), + [anon_sym_equals] = ACTIONS(5907), + [anon_sym_by] = ACTIONS(5907), + [anon_sym_as] = ACTIONS(5907), + [anon_sym_is] = ACTIONS(5907), + [anon_sym_DASH_GT] = ACTIONS(5907), + [anon_sym_with] = ACTIONS(5907), + [aux_sym_preproc_if_token3] = ACTIONS(5907), + [aux_sym_preproc_else_token1] = ACTIONS(5907), + [aux_sym_preproc_elif_token1] = ACTIONS(5907), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -596854,27 +590085,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4428] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), [sym_preproc_region] = STATE(4428), [sym_preproc_endregion] = STATE(4428), [sym_preproc_line] = STATE(4428), @@ -596884,40 +590094,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4428), [sym_preproc_define] = STATE(4428), [sym_preproc_undef] = STATE(4428), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_on] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LBRACK] = ACTIONS(7042), + [anon_sym_COLON] = ACTIONS(7042), + [anon_sym_COMMA] = ACTIONS(7042), + [anon_sym_RBRACK] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7042), + [anon_sym_RPAREN] = ACTIONS(7042), + [anon_sym_RBRACE] = ACTIONS(7042), + [anon_sym_LT] = ACTIONS(7044), + [anon_sym_GT] = ACTIONS(7044), + [anon_sym_in] = ACTIONS(7044), + [anon_sym_QMARK] = ACTIONS(7044), + [anon_sym_DOT] = ACTIONS(7044), + [anon_sym_EQ_GT] = ACTIONS(7042), + [anon_sym_STAR] = ACTIONS(7042), + [anon_sym_switch] = ACTIONS(7042), + [anon_sym_when] = ACTIONS(7042), + [anon_sym_DOT_DOT] = ACTIONS(7042), + [anon_sym_LT_EQ] = ACTIONS(7042), + [anon_sym_GT_EQ] = ACTIONS(7042), + [anon_sym_and] = ACTIONS(7042), + [anon_sym_or] = ACTIONS(7042), + [anon_sym_EQ_EQ] = ACTIONS(7042), + [anon_sym_BANG_EQ] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7044), + [sym_op_bitwise_or] = ACTIONS(7044), + [anon_sym_CARET] = ACTIONS(7042), + [sym_op_left_shift] = ACTIONS(7042), + [sym_op_right_shift] = ACTIONS(7044), + [sym_op_unsigned_right_shift] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7044), + [sym_op_divide] = ACTIONS(7044), + [sym_op_modulo] = ACTIONS(7042), + [sym_op_coalescing] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [anon_sym_PLUS_PLUS] = ACTIONS(7042), + [anon_sym_DASH_DASH] = ACTIONS(7042), + [anon_sym_into] = ACTIONS(7042), + [anon_sym_on] = ACTIONS(7042), + [anon_sym_equals] = ACTIONS(7042), + [anon_sym_by] = ACTIONS(7042), + [anon_sym_as] = ACTIONS(7042), + [anon_sym_is] = ACTIONS(7042), + [anon_sym_DASH_GT] = ACTIONS(7042), + [anon_sym_with] = ACTIONS(7042), + [aux_sym_preproc_if_token3] = ACTIONS(7042), + [aux_sym_preproc_else_token1] = ACTIONS(7042), + [aux_sym_preproc_elif_token1] = ACTIONS(7042), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -596930,27 +590157,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4429] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4429), [sym_preproc_endregion] = STATE(4429), [sym_preproc_line] = STATE(4429), @@ -596960,40 +590166,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4429), [sym_preproc_define] = STATE(4429), [sym_preproc_undef] = STATE(4429), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6711), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5903), + [anon_sym_LBRACK] = ACTIONS(5903), + [anon_sym_COLON] = ACTIONS(5903), + [anon_sym_COMMA] = ACTIONS(5903), + [anon_sym_RBRACK] = ACTIONS(5903), + [anon_sym_LPAREN] = ACTIONS(5903), + [anon_sym_RPAREN] = ACTIONS(5903), + [anon_sym_RBRACE] = ACTIONS(5903), + [anon_sym_LT] = ACTIONS(5905), + [anon_sym_GT] = ACTIONS(5905), + [anon_sym_in] = ACTIONS(5905), + [anon_sym_QMARK] = ACTIONS(5905), + [anon_sym_DOT] = ACTIONS(5905), + [anon_sym_EQ_GT] = ACTIONS(5903), + [anon_sym_STAR] = ACTIONS(5903), + [anon_sym_switch] = ACTIONS(5903), + [anon_sym_when] = ACTIONS(5903), + [anon_sym_DOT_DOT] = ACTIONS(5903), + [anon_sym_LT_EQ] = ACTIONS(5903), + [anon_sym_GT_EQ] = ACTIONS(5903), + [anon_sym_and] = ACTIONS(5903), + [anon_sym_or] = ACTIONS(5903), + [anon_sym_EQ_EQ] = ACTIONS(5903), + [anon_sym_BANG_EQ] = ACTIONS(5903), + [anon_sym_AMP_AMP] = ACTIONS(5903), + [anon_sym_PIPE_PIPE] = ACTIONS(5903), + [anon_sym_AMP] = ACTIONS(5905), + [sym_op_bitwise_or] = ACTIONS(5905), + [anon_sym_CARET] = ACTIONS(5903), + [sym_op_left_shift] = ACTIONS(5903), + [sym_op_right_shift] = ACTIONS(5905), + [sym_op_unsigned_right_shift] = ACTIONS(5903), + [anon_sym_PLUS] = ACTIONS(5905), + [anon_sym_DASH] = ACTIONS(5905), + [sym_op_divide] = ACTIONS(5905), + [sym_op_modulo] = ACTIONS(5903), + [sym_op_coalescing] = ACTIONS(5903), + [anon_sym_BANG] = ACTIONS(5905), + [anon_sym_PLUS_PLUS] = ACTIONS(5903), + [anon_sym_DASH_DASH] = ACTIONS(5903), + [anon_sym_into] = ACTIONS(5903), + [anon_sym_on] = ACTIONS(5903), + [anon_sym_equals] = ACTIONS(5903), + [anon_sym_by] = ACTIONS(5903), + [anon_sym_as] = ACTIONS(5903), + [anon_sym_is] = ACTIONS(5903), + [anon_sym_DASH_GT] = ACTIONS(5903), + [anon_sym_with] = ACTIONS(5903), + [aux_sym_preproc_if_token3] = ACTIONS(5903), + [aux_sym_preproc_else_token1] = ACTIONS(5903), + [aux_sym_preproc_elif_token1] = ACTIONS(5903), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -597006,27 +590229,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4430] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4430), [sym_preproc_endregion] = STATE(4430), [sym_preproc_line] = STATE(4430), @@ -597036,40 +590253,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4430), [sym_preproc_define] = STATE(4430), [sym_preproc_undef] = STATE(4430), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_on] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7002), + [anon_sym_is] = ACTIONS(7004), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -597082,27 +590301,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4431] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4431), [sym_preproc_endregion] = STATE(4431), [sym_preproc_line] = STATE(4431), @@ -597112,40 +590325,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4431), [sym_preproc_define] = STATE(4431), [sym_preproc_undef] = STATE(4431), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6557), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -597158,27 +590373,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4432] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4432), [sym_preproc_endregion] = STATE(4432), [sym_preproc_line] = STATE(4432), @@ -597188,40 +590397,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4432), [sym_preproc_define] = STATE(4432), [sym_preproc_undef] = STATE(4432), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6557), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -597234,27 +590445,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4433] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4433), [sym_preproc_endregion] = STATE(4433), [sym_preproc_line] = STATE(4433), @@ -597264,40 +590454,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4433), [sym_preproc_define] = STATE(4433), [sym_preproc_undef] = STATE(4433), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6713), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5911), + [anon_sym_LBRACK] = ACTIONS(5911), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_COMMA] = ACTIONS(5911), + [anon_sym_RBRACK] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5911), + [anon_sym_RPAREN] = ACTIONS(5911), + [anon_sym_RBRACE] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5913), + [anon_sym_GT] = ACTIONS(5913), + [anon_sym_in] = ACTIONS(5913), + [anon_sym_QMARK] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_EQ_GT] = ACTIONS(5911), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_switch] = ACTIONS(5911), + [anon_sym_when] = ACTIONS(5911), + [anon_sym_DOT_DOT] = ACTIONS(5911), + [anon_sym_LT_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5911), + [anon_sym_and] = ACTIONS(5911), + [anon_sym_or] = ACTIONS(5911), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_AMP_AMP] = ACTIONS(5911), + [anon_sym_PIPE_PIPE] = ACTIONS(5911), + [anon_sym_AMP] = ACTIONS(5913), + [sym_op_bitwise_or] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(5911), + [sym_op_left_shift] = ACTIONS(5911), + [sym_op_right_shift] = ACTIONS(5913), + [sym_op_unsigned_right_shift] = ACTIONS(5911), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_DASH] = ACTIONS(5913), + [sym_op_divide] = ACTIONS(5913), + [sym_op_modulo] = ACTIONS(5911), + [sym_op_coalescing] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(5913), + [anon_sym_PLUS_PLUS] = ACTIONS(5911), + [anon_sym_DASH_DASH] = ACTIONS(5911), + [anon_sym_into] = ACTIONS(5911), + [anon_sym_on] = ACTIONS(5911), + [anon_sym_equals] = ACTIONS(5911), + [anon_sym_by] = ACTIONS(5911), + [anon_sym_as] = ACTIONS(5911), + [anon_sym_is] = ACTIONS(5911), + [anon_sym_DASH_GT] = ACTIONS(5911), + [anon_sym_with] = ACTIONS(5911), + [aux_sym_preproc_if_token3] = ACTIONS(5911), + [aux_sym_preproc_else_token1] = ACTIONS(5911), + [aux_sym_preproc_elif_token1] = ACTIONS(5911), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -597310,27 +590517,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4434] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4434), [sym_preproc_endregion] = STATE(4434), [sym_preproc_line] = STATE(4434), @@ -597340,40 +590541,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4434), [sym_preproc_define] = STATE(4434), [sym_preproc_undef] = STATE(4434), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6715), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -597386,27 +590589,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4435] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4435), [sym_preproc_endregion] = STATE(4435), [sym_preproc_line] = STATE(4435), @@ -597416,40 +590613,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4435), [sym_preproc_define] = STATE(4435), [sym_preproc_undef] = STATE(4435), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6557), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6374), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6378), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(6388), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -597460,29 +590658,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(5356), }, [4436] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), [sym_preproc_region] = STATE(4436), [sym_preproc_endregion] = STATE(4436), [sym_preproc_line] = STATE(4436), @@ -597492,40 +590670,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4436), [sym_preproc_define] = STATE(4436), [sym_preproc_undef] = STATE(4436), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6583), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6585), - [anon_sym_on] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(6547), - [anon_sym_is] = ACTIONS(6549), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5791), + [anon_sym_LBRACK] = ACTIONS(5791), + [anon_sym_COLON] = ACTIONS(5791), + [anon_sym_COMMA] = ACTIONS(5791), + [anon_sym_RBRACK] = ACTIONS(5791), + [anon_sym_LPAREN] = ACTIONS(5791), + [anon_sym_RPAREN] = ACTIONS(5791), + [anon_sym_RBRACE] = ACTIONS(5791), + [anon_sym_LT] = ACTIONS(5793), + [anon_sym_GT] = ACTIONS(5793), + [anon_sym_in] = ACTIONS(5793), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5793), + [anon_sym_EQ_GT] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_switch] = ACTIONS(5791), + [anon_sym_when] = ACTIONS(5791), + [anon_sym_DOT_DOT] = ACTIONS(5791), + [anon_sym_LT_EQ] = ACTIONS(5791), + [anon_sym_GT_EQ] = ACTIONS(5791), + [anon_sym_and] = ACTIONS(5791), + [anon_sym_or] = ACTIONS(5791), + [anon_sym_EQ_EQ] = ACTIONS(5791), + [anon_sym_BANG_EQ] = ACTIONS(5791), + [anon_sym_AMP_AMP] = ACTIONS(5791), + [anon_sym_PIPE_PIPE] = ACTIONS(5791), + [anon_sym_AMP] = ACTIONS(5793), + [sym_op_bitwise_or] = ACTIONS(5793), + [anon_sym_CARET] = ACTIONS(5791), + [sym_op_left_shift] = ACTIONS(5791), + [sym_op_right_shift] = ACTIONS(5793), + [sym_op_unsigned_right_shift] = ACTIONS(5791), + [anon_sym_PLUS] = ACTIONS(5793), + [anon_sym_DASH] = ACTIONS(5793), + [sym_op_divide] = ACTIONS(5793), + [sym_op_modulo] = ACTIONS(5791), + [sym_op_coalescing] = ACTIONS(5791), + [anon_sym_BANG] = ACTIONS(5793), + [anon_sym_PLUS_PLUS] = ACTIONS(5791), + [anon_sym_DASH_DASH] = ACTIONS(5791), + [anon_sym_into] = ACTIONS(5791), + [anon_sym_on] = ACTIONS(5791), + [anon_sym_equals] = ACTIONS(5791), + [anon_sym_by] = ACTIONS(5791), + [anon_sym_as] = ACTIONS(5791), + [anon_sym_is] = ACTIONS(5791), + [anon_sym_DASH_GT] = ACTIONS(5791), + [anon_sym_with] = ACTIONS(5791), + [aux_sym_preproc_if_token3] = ACTIONS(5791), + [aux_sym_preproc_else_token1] = ACTIONS(5791), + [aux_sym_preproc_elif_token1] = ACTIONS(5791), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -597538,27 +590733,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4437] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4437), [sym_preproc_endregion] = STATE(4437), [sym_preproc_line] = STATE(4437), @@ -597568,40 +590757,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4437), [sym_preproc_define] = STATE(4437), [sym_preproc_undef] = STATE(4437), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6555), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6557), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [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), @@ -597614,27 +590805,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4438] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4438), [sym_preproc_endregion] = STATE(4438), [sym_preproc_line] = STATE(4438), @@ -597644,40 +590814,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4438), [sym_preproc_define] = STATE(4438), [sym_preproc_undef] = STATE(4438), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6717), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5757), + [anon_sym_LBRACK] = ACTIONS(5757), + [anon_sym_COLON] = ACTIONS(5757), + [anon_sym_COMMA] = ACTIONS(5757), + [anon_sym_RBRACK] = ACTIONS(5757), + [anon_sym_LPAREN] = ACTIONS(5757), + [anon_sym_RPAREN] = ACTIONS(5757), + [anon_sym_RBRACE] = ACTIONS(5757), + [anon_sym_LT] = ACTIONS(5759), + [anon_sym_GT] = ACTIONS(5759), + [anon_sym_in] = ACTIONS(5759), + [anon_sym_QMARK] = ACTIONS(5759), + [anon_sym_DOT] = ACTIONS(5759), + [anon_sym_EQ_GT] = ACTIONS(5757), + [anon_sym_STAR] = ACTIONS(5757), + [anon_sym_switch] = ACTIONS(5757), + [anon_sym_when] = ACTIONS(5757), + [anon_sym_DOT_DOT] = ACTIONS(5757), + [anon_sym_LT_EQ] = ACTIONS(5757), + [anon_sym_GT_EQ] = ACTIONS(5757), + [anon_sym_and] = ACTIONS(5757), + [anon_sym_or] = ACTIONS(5757), + [anon_sym_EQ_EQ] = ACTIONS(5757), + [anon_sym_BANG_EQ] = ACTIONS(5757), + [anon_sym_AMP_AMP] = ACTIONS(5757), + [anon_sym_PIPE_PIPE] = ACTIONS(5757), + [anon_sym_AMP] = ACTIONS(5759), + [sym_op_bitwise_or] = ACTIONS(5759), + [anon_sym_CARET] = ACTIONS(5757), + [sym_op_left_shift] = ACTIONS(5757), + [sym_op_right_shift] = ACTIONS(5759), + [sym_op_unsigned_right_shift] = ACTIONS(5757), + [anon_sym_PLUS] = ACTIONS(5759), + [anon_sym_DASH] = ACTIONS(5759), + [sym_op_divide] = ACTIONS(5759), + [sym_op_modulo] = ACTIONS(5757), + [sym_op_coalescing] = ACTIONS(5757), + [anon_sym_BANG] = ACTIONS(5759), + [anon_sym_PLUS_PLUS] = ACTIONS(5757), + [anon_sym_DASH_DASH] = ACTIONS(5757), + [anon_sym_into] = ACTIONS(5757), + [anon_sym_on] = ACTIONS(5757), + [anon_sym_equals] = ACTIONS(5757), + [anon_sym_by] = ACTIONS(5757), + [anon_sym_as] = ACTIONS(5757), + [anon_sym_is] = ACTIONS(5757), + [anon_sym_DASH_GT] = ACTIONS(5757), + [anon_sym_with] = ACTIONS(5757), + [aux_sym_preproc_if_token3] = ACTIONS(5757), + [aux_sym_preproc_else_token1] = ACTIONS(5757), + [aux_sym_preproc_elif_token1] = ACTIONS(5757), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -597690,27 +590877,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4439] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), [sym_preproc_region] = STATE(4439), [sym_preproc_endregion] = STATE(4439), [sym_preproc_line] = STATE(4439), @@ -597720,40 +590886,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4439), [sym_preproc_define] = STATE(4439), [sym_preproc_undef] = STATE(4439), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_in] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [sym_accessor_get] = ACTIONS(3738), + [sym_accessor_set] = ACTIONS(3738), + [sym_accessor_add] = ACTIONS(3738), + [sym_accessor_remove] = ACTIONS(3738), + [sym_accessor_init] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -597766,27 +590949,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4440] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4440), [sym_preproc_endregion] = STATE(4440), [sym_preproc_line] = STATE(4440), @@ -597796,40 +590973,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4440), [sym_preproc_define] = STATE(4440), [sym_preproc_undef] = STATE(4440), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6719), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6990), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(7000), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7002), + [anon_sym_is] = ACTIONS(7004), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -597842,27 +591021,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4441] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4441), [sym_preproc_endregion] = STATE(4441), [sym_preproc_line] = STATE(4441), @@ -597872,40 +591045,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4441), [sym_preproc_define] = STATE(4441), [sym_preproc_undef] = STATE(4441), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6583), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6585), - [anon_sym_on] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(6547), - [anon_sym_is] = ACTIONS(6549), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -597918,27 +591093,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4442] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4442), [sym_preproc_endregion] = STATE(4442), [sym_preproc_line] = STATE(4442), @@ -597948,40 +591117,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4442), [sym_preproc_define] = STATE(4442), [sym_preproc_undef] = STATE(4442), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6721), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7002), + [anon_sym_is] = ACTIONS(7004), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -597994,27 +591165,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4443] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4443), [sym_preproc_endregion] = STATE(4443), [sym_preproc_line] = STATE(4443), @@ -598024,40 +591189,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4443), [sym_preproc_define] = STATE(4443), [sym_preproc_undef] = STATE(4443), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6723), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6990), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7002), + [anon_sym_is] = ACTIONS(7004), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -598070,27 +591237,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4444] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(4444), [sym_preproc_endregion] = STATE(4444), [sym_preproc_line] = STATE(4444), @@ -598100,40 +591261,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4444), [sym_preproc_define] = STATE(4444), [sym_preproc_undef] = STATE(4444), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6543), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6731), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6687), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5328), + [anon_sym_or] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6707), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(6709), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6117), + [anon_sym_is] = ACTIONS(6697), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -598146,27 +591309,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4445] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4445), [sym_preproc_endregion] = STATE(4445), [sym_preproc_line] = STATE(4445), @@ -598176,40 +591333,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4445), [sym_preproc_define] = STATE(4445), [sym_preproc_undef] = STATE(4445), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6543), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6990), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7002), + [anon_sym_is] = ACTIONS(7004), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -598222,27 +591381,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4446] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4446), [sym_preproc_endregion] = STATE(4446), [sym_preproc_line] = STATE(4446), @@ -598252,40 +591405,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4446), [sym_preproc_define] = STATE(4446), [sym_preproc_undef] = STATE(4446), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_on] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7002), + [anon_sym_is] = ACTIONS(7004), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -598298,27 +591453,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4447] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(4447), [sym_preproc_endregion] = STATE(4447), [sym_preproc_line] = STATE(4447), @@ -598328,40 +591477,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4447), [sym_preproc_define] = STATE(4447), [sym_preproc_undef] = STATE(4447), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6725), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_and] = ACTIONS(5300), + [anon_sym_or] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7002), + [anon_sym_is] = ACTIONS(7004), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(6121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -598374,27 +591525,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4448] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4448), [sym_preproc_endregion] = STATE(4448), [sym_preproc_line] = STATE(4448), @@ -598404,40 +591549,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4448), [sym_preproc_define] = STATE(4448), [sym_preproc_undef] = STATE(4448), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6583), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6585), - [anon_sym_on] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(6547), - [anon_sym_is] = ACTIONS(6549), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -598450,27 +591596,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4449] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4449), [sym_preproc_endregion] = STATE(4449), [sym_preproc_line] = STATE(4449), @@ -598480,40 +591605,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4449), [sym_preproc_define] = STATE(4449), [sym_preproc_undef] = STATE(4449), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6727), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(6959), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(6959), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(6962), + [anon_sym_GT] = ACTIONS(6962), + [anon_sym_in] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(6962), + [anon_sym_DOT] = ACTIONS(6962), + [anon_sym_EQ_GT] = ACTIONS(5068), + [anon_sym_STAR] = ACTIONS(6959), + [anon_sym_switch] = ACTIONS(6959), + [anon_sym_when] = ACTIONS(5068), + [anon_sym_DOT_DOT] = ACTIONS(6959), + [anon_sym_LT_EQ] = ACTIONS(6959), + [anon_sym_GT_EQ] = ACTIONS(6959), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5068), + [anon_sym_EQ_EQ] = ACTIONS(6959), + [anon_sym_BANG_EQ] = ACTIONS(6959), + [anon_sym_AMP_AMP] = ACTIONS(6959), + [anon_sym_PIPE_PIPE] = ACTIONS(6959), + [anon_sym_AMP] = ACTIONS(6962), + [sym_op_bitwise_or] = ACTIONS(6962), + [anon_sym_CARET] = ACTIONS(6959), + [sym_op_left_shift] = ACTIONS(6959), + [sym_op_right_shift] = ACTIONS(6962), + [sym_op_unsigned_right_shift] = ACTIONS(6959), + [anon_sym_PLUS] = ACTIONS(6962), + [anon_sym_DASH] = ACTIONS(6962), + [sym_op_divide] = ACTIONS(6962), + [sym_op_modulo] = ACTIONS(6959), + [sym_op_coalescing] = ACTIONS(6959), + [anon_sym_BANG] = ACTIONS(6962), + [anon_sym_PLUS_PLUS] = ACTIONS(6959), + [anon_sym_DASH_DASH] = ACTIONS(6959), + [anon_sym_on] = ACTIONS(5068), + [anon_sym_equals] = ACTIONS(5068), + [anon_sym_by] = ACTIONS(5068), + [anon_sym_as] = ACTIONS(6959), + [anon_sym_is] = ACTIONS(6959), + [anon_sym_DASH_GT] = ACTIONS(6959), + [anon_sym_with] = ACTIONS(6959), + [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), @@ -598526,27 +591667,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4450] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), [sym_preproc_region] = STATE(4450), [sym_preproc_endregion] = STATE(4450), [sym_preproc_line] = STATE(4450), @@ -598556,40 +591676,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4450), [sym_preproc_define] = STATE(4450), [sym_preproc_undef] = STATE(4450), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_equals] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(6953), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(6953), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(6956), + [anon_sym_GT] = ACTIONS(6956), + [anon_sym_in] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(6956), + [anon_sym_DOT] = ACTIONS(6956), + [anon_sym_EQ_GT] = ACTIONS(5068), + [anon_sym_STAR] = ACTIONS(6953), + [anon_sym_switch] = ACTIONS(6953), + [anon_sym_when] = ACTIONS(5068), + [anon_sym_DOT_DOT] = ACTIONS(6953), + [anon_sym_LT_EQ] = ACTIONS(6953), + [anon_sym_GT_EQ] = ACTIONS(6953), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5068), + [anon_sym_EQ_EQ] = ACTIONS(6953), + [anon_sym_BANG_EQ] = ACTIONS(6953), + [anon_sym_AMP_AMP] = ACTIONS(6953), + [anon_sym_PIPE_PIPE] = ACTIONS(6953), + [anon_sym_AMP] = ACTIONS(6956), + [sym_op_bitwise_or] = ACTIONS(6956), + [anon_sym_CARET] = ACTIONS(6953), + [sym_op_left_shift] = ACTIONS(6953), + [sym_op_right_shift] = ACTIONS(6956), + [sym_op_unsigned_right_shift] = ACTIONS(6953), + [anon_sym_PLUS] = ACTIONS(6956), + [anon_sym_DASH] = ACTIONS(6956), + [sym_op_divide] = ACTIONS(6956), + [sym_op_modulo] = ACTIONS(6953), + [sym_op_coalescing] = ACTIONS(6953), + [anon_sym_BANG] = ACTIONS(6956), + [anon_sym_PLUS_PLUS] = ACTIONS(6953), + [anon_sym_DASH_DASH] = ACTIONS(6953), + [anon_sym_on] = ACTIONS(5068), + [anon_sym_equals] = ACTIONS(5068), + [anon_sym_by] = ACTIONS(5068), + [anon_sym_as] = ACTIONS(6953), + [anon_sym_is] = ACTIONS(6953), + [anon_sym_DASH_GT] = ACTIONS(6953), + [anon_sym_with] = ACTIONS(6953), + [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), @@ -598602,27 +591738,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4451] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4451), [sym_preproc_endregion] = STATE(4451), [sym_preproc_line] = STATE(4451), @@ -598632,40 +591762,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4451), [sym_preproc_define] = STATE(4451), [sym_preproc_undef] = STATE(4451), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6729), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7052), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7056), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(7066), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7068), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -598678,27 +591809,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4452] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4452), [sym_preproc_endregion] = STATE(4452), [sym_preproc_line] = STATE(4452), @@ -598708,40 +591833,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4452), [sym_preproc_define] = STATE(4452), [sym_preproc_undef] = STATE(4452), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_equals] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(7070), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7070), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6717), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(6729), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -598754,27 +591880,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4453] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4453), [sym_preproc_endregion] = STATE(4453), [sym_preproc_line] = STATE(4453), @@ -598784,40 +591904,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4453), [sym_preproc_define] = STATE(4453), [sym_preproc_undef] = STATE(4453), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6543), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_in] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -598830,27 +591951,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4454] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4454), [sym_preproc_endregion] = STATE(4454), [sym_preproc_line] = STATE(4454), @@ -598860,40 +591960,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4454), [sym_preproc_define] = STATE(4454), [sym_preproc_undef] = STATE(4454), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6731), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [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_DOT] = ACTIONS(5338), + [anon_sym_EQ_GT] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_switch] = ACTIONS(5336), + [anon_sym_when] = ACTIONS(5336), + [anon_sym_DOT_DOT] = ACTIONS(5336), + [anon_sym_LT_EQ] = ACTIONS(5336), + [anon_sym_GT_EQ] = ACTIONS(5336), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5336), + [anon_sym_EQ_EQ] = ACTIONS(5336), + [anon_sym_BANG_EQ] = ACTIONS(5336), + [anon_sym_AMP_AMP] = ACTIONS(5336), + [anon_sym_PIPE_PIPE] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(5338), + [sym_op_bitwise_or] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5336), + [sym_op_left_shift] = ACTIONS(5336), + [sym_op_right_shift] = ACTIONS(5338), + [sym_op_unsigned_right_shift] = ACTIONS(5336), + [anon_sym_PLUS] = ACTIONS(5338), + [anon_sym_DASH] = ACTIONS(5338), + [sym_op_divide] = ACTIONS(5338), + [sym_op_modulo] = ACTIONS(5336), + [sym_op_coalescing] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(5338), + [anon_sym_PLUS_PLUS] = ACTIONS(5336), + [anon_sym_DASH_DASH] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -598906,27 +592022,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4455] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4455), [sym_preproc_endregion] = STATE(4455), [sym_preproc_line] = STATE(4455), @@ -598936,40 +592031,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4455), [sym_preproc_define] = STATE(4455), [sym_preproc_undef] = STATE(4455), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6733), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(7014), + [anon_sym_COLON] = ACTIONS(7014), + [anon_sym_COMMA] = ACTIONS(7014), + [anon_sym_RBRACK] = ACTIONS(7014), + [anon_sym_LPAREN] = ACTIONS(7014), + [anon_sym_RPAREN] = ACTIONS(7014), + [anon_sym_RBRACE] = ACTIONS(7014), + [anon_sym_LT] = ACTIONS(7016), + [anon_sym_GT] = ACTIONS(7016), + [anon_sym_in] = ACTIONS(7014), + [anon_sym_QMARK] = ACTIONS(7016), + [anon_sym_DOT] = ACTIONS(7016), + [anon_sym_EQ_GT] = ACTIONS(7014), + [anon_sym_STAR] = ACTIONS(7014), + [anon_sym_switch] = ACTIONS(7014), + [anon_sym_when] = ACTIONS(7014), + [anon_sym_DOT_DOT] = ACTIONS(7014), + [anon_sym_LT_EQ] = ACTIONS(7014), + [anon_sym_GT_EQ] = ACTIONS(7014), + [anon_sym_and] = ACTIONS(7014), + [anon_sym_or] = ACTIONS(7014), + [anon_sym_EQ_EQ] = ACTIONS(7014), + [anon_sym_BANG_EQ] = ACTIONS(7014), + [anon_sym_AMP_AMP] = ACTIONS(7014), + [anon_sym_PIPE_PIPE] = ACTIONS(7014), + [anon_sym_AMP] = ACTIONS(7016), + [sym_op_bitwise_or] = ACTIONS(7016), + [anon_sym_CARET] = ACTIONS(7014), + [sym_op_left_shift] = ACTIONS(7014), + [sym_op_right_shift] = ACTIONS(7016), + [sym_op_unsigned_right_shift] = ACTIONS(7014), + [anon_sym_PLUS] = ACTIONS(7016), + [anon_sym_DASH] = ACTIONS(7016), + [sym_op_divide] = ACTIONS(7016), + [sym_op_modulo] = ACTIONS(7014), + [sym_op_coalescing] = ACTIONS(7014), + [anon_sym_BANG] = ACTIONS(7016), + [anon_sym_PLUS_PLUS] = ACTIONS(7014), + [anon_sym_DASH_DASH] = ACTIONS(7014), + [anon_sym_on] = ACTIONS(7014), + [anon_sym_equals] = ACTIONS(7014), + [anon_sym_by] = ACTIONS(7014), + [anon_sym_as] = ACTIONS(7014), + [anon_sym_is] = ACTIONS(7014), + [anon_sym_DASH_GT] = ACTIONS(7014), + [anon_sym_with] = ACTIONS(7014), + [aux_sym_preproc_if_token3] = ACTIONS(7014), + [aux_sym_preproc_else_token1] = ACTIONS(7014), + [aux_sym_preproc_elif_token1] = ACTIONS(7014), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -598982,27 +592093,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4456] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4456), [sym_preproc_endregion] = STATE(4456), [sym_preproc_line] = STATE(4456), @@ -599012,40 +592102,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4456), [sym_preproc_define] = STATE(4456), [sym_preproc_undef] = STATE(4456), - [anon_sym_SEMI] = ACTIONS(6735), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6885), + [anon_sym_LBRACK] = ACTIONS(6885), + [anon_sym_COLON] = ACTIONS(6885), + [anon_sym_COMMA] = ACTIONS(6885), + [anon_sym_RBRACK] = ACTIONS(6885), + [anon_sym_LPAREN] = ACTIONS(6885), + [anon_sym_RPAREN] = ACTIONS(6885), + [anon_sym_RBRACE] = ACTIONS(6885), + [anon_sym_LT] = ACTIONS(6887), + [anon_sym_GT] = ACTIONS(6887), + [anon_sym_in] = ACTIONS(6885), + [anon_sym_QMARK] = ACTIONS(6887), + [anon_sym_DOT] = ACTIONS(6887), + [anon_sym_EQ_GT] = ACTIONS(6885), + [anon_sym_STAR] = ACTIONS(6885), + [anon_sym_switch] = ACTIONS(6885), + [anon_sym_when] = ACTIONS(6885), + [anon_sym_DOT_DOT] = ACTIONS(6885), + [anon_sym_LT_EQ] = ACTIONS(6885), + [anon_sym_GT_EQ] = ACTIONS(6885), + [anon_sym_and] = ACTIONS(6885), + [anon_sym_or] = ACTIONS(6885), + [anon_sym_EQ_EQ] = ACTIONS(6885), + [anon_sym_BANG_EQ] = ACTIONS(6885), + [anon_sym_AMP_AMP] = ACTIONS(6885), + [anon_sym_PIPE_PIPE] = ACTIONS(6885), + [anon_sym_AMP] = ACTIONS(6887), + [sym_op_bitwise_or] = ACTIONS(6887), + [anon_sym_CARET] = ACTIONS(6885), + [sym_op_left_shift] = ACTIONS(6885), + [sym_op_right_shift] = ACTIONS(6887), + [sym_op_unsigned_right_shift] = ACTIONS(6885), + [anon_sym_PLUS] = ACTIONS(6887), + [anon_sym_DASH] = ACTIONS(6887), + [sym_op_divide] = ACTIONS(6887), + [sym_op_modulo] = ACTIONS(6885), + [sym_op_coalescing] = ACTIONS(6885), + [anon_sym_BANG] = ACTIONS(6887), + [anon_sym_PLUS_PLUS] = ACTIONS(6885), + [anon_sym_DASH_DASH] = ACTIONS(6885), + [anon_sym_on] = ACTIONS(6885), + [anon_sym_equals] = ACTIONS(6885), + [anon_sym_by] = ACTIONS(6885), + [anon_sym_as] = ACTIONS(6885), + [anon_sym_is] = ACTIONS(6885), + [anon_sym_DASH_GT] = ACTIONS(6885), + [anon_sym_with] = ACTIONS(6885), + [aux_sym_preproc_if_token3] = ACTIONS(6885), + [aux_sym_preproc_else_token1] = ACTIONS(6885), + [aux_sym_preproc_elif_token1] = ACTIONS(6885), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -599058,27 +592164,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4457] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4457), [sym_preproc_endregion] = STATE(4457), [sym_preproc_line] = STATE(4457), @@ -599088,40 +592188,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4457), [sym_preproc_define] = STATE(4457), [sym_preproc_undef] = STATE(4457), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_on] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7072), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(7072), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -599134,27 +592235,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4458] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4458), [sym_preproc_endregion] = STATE(4458), [sym_preproc_line] = STATE(4458), @@ -599164,40 +592244,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4458), [sym_preproc_define] = STATE(4458), [sym_preproc_undef] = STATE(4458), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6737), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_COLON] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_LPAREN] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [anon_sym_RBRACE] = ACTIONS(5805), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_in] = ACTIONS(5805), + [anon_sym_QMARK] = ACTIONS(5807), + [anon_sym_DOT] = ACTIONS(5807), + [anon_sym_EQ_GT] = ACTIONS(5805), + [anon_sym_STAR] = ACTIONS(5805), + [anon_sym_switch] = ACTIONS(5805), + [anon_sym_when] = ACTIONS(5805), + [anon_sym_DOT_DOT] = ACTIONS(5805), + [anon_sym_LT_EQ] = ACTIONS(5805), + [anon_sym_GT_EQ] = ACTIONS(5805), + [anon_sym_and] = ACTIONS(5805), + [anon_sym_or] = ACTIONS(5805), + [anon_sym_EQ_EQ] = ACTIONS(5805), + [anon_sym_BANG_EQ] = ACTIONS(5805), + [anon_sym_AMP_AMP] = ACTIONS(5805), + [anon_sym_PIPE_PIPE] = ACTIONS(5805), + [anon_sym_AMP] = ACTIONS(5807), + [sym_op_bitwise_or] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5805), + [sym_op_left_shift] = ACTIONS(5805), + [sym_op_right_shift] = ACTIONS(5807), + [sym_op_unsigned_right_shift] = ACTIONS(5805), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_DASH] = ACTIONS(5807), + [sym_op_divide] = ACTIONS(5807), + [sym_op_modulo] = ACTIONS(5805), + [sym_op_coalescing] = ACTIONS(5805), + [anon_sym_BANG] = ACTIONS(5807), + [anon_sym_PLUS_PLUS] = ACTIONS(5805), + [anon_sym_DASH_DASH] = ACTIONS(5805), + [anon_sym_on] = ACTIONS(5805), + [anon_sym_equals] = ACTIONS(5805), + [anon_sym_by] = ACTIONS(5805), + [anon_sym_as] = ACTIONS(5805), + [anon_sym_is] = ACTIONS(5805), + [anon_sym_DASH_GT] = ACTIONS(5805), + [anon_sym_with] = ACTIONS(5805), + [aux_sym_preproc_if_token3] = ACTIONS(5805), + [aux_sym_preproc_else_token1] = ACTIONS(5805), + [aux_sym_preproc_elif_token1] = ACTIONS(5805), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -599210,27 +592306,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4459] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4459), [sym_preproc_endregion] = STATE(4459), [sym_preproc_line] = STATE(4459), @@ -599240,40 +592315,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4459), [sym_preproc_define] = STATE(4459), [sym_preproc_undef] = STATE(4459), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5915), + [anon_sym_LBRACK] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_COMMA] = ACTIONS(5915), + [anon_sym_RBRACK] = ACTIONS(5915), + [anon_sym_LPAREN] = ACTIONS(5915), + [anon_sym_RPAREN] = ACTIONS(5915), + [anon_sym_RBRACE] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5917), + [anon_sym_GT] = ACTIONS(5917), + [anon_sym_in] = ACTIONS(5915), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5917), + [anon_sym_EQ_GT] = ACTIONS(5915), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_switch] = ACTIONS(5915), + [anon_sym_when] = ACTIONS(5915), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_LT_EQ] = ACTIONS(5915), + [anon_sym_GT_EQ] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5915), + [anon_sym_or] = ACTIONS(5915), + [anon_sym_EQ_EQ] = ACTIONS(5915), + [anon_sym_BANG_EQ] = ACTIONS(5915), + [anon_sym_AMP_AMP] = ACTIONS(5915), + [anon_sym_PIPE_PIPE] = ACTIONS(5915), + [anon_sym_AMP] = ACTIONS(5917), + [sym_op_bitwise_or] = ACTIONS(5917), + [anon_sym_CARET] = ACTIONS(5915), + [sym_op_left_shift] = ACTIONS(5915), + [sym_op_right_shift] = ACTIONS(5917), + [sym_op_unsigned_right_shift] = ACTIONS(5915), + [anon_sym_PLUS] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5917), + [sym_op_divide] = ACTIONS(5917), + [sym_op_modulo] = ACTIONS(5915), + [sym_op_coalescing] = ACTIONS(5915), + [anon_sym_BANG] = ACTIONS(5917), + [anon_sym_PLUS_PLUS] = ACTIONS(5915), + [anon_sym_DASH_DASH] = ACTIONS(5915), + [anon_sym_on] = ACTIONS(5915), + [anon_sym_equals] = ACTIONS(5915), + [anon_sym_by] = ACTIONS(5915), + [anon_sym_as] = ACTIONS(5915), + [anon_sym_is] = ACTIONS(5915), + [anon_sym_DASH_GT] = ACTIONS(5915), + [anon_sym_with] = ACTIONS(5915), + [aux_sym_preproc_if_token3] = ACTIONS(5915), + [aux_sym_preproc_else_token1] = ACTIONS(5915), + [aux_sym_preproc_elif_token1] = ACTIONS(5915), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -599286,27 +592377,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4460] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4460), [sym_preproc_endregion] = STATE(4460), [sym_preproc_line] = STATE(4460), @@ -599316,40 +592401,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4460), [sym_preproc_define] = STATE(4460), [sym_preproc_undef] = STATE(4460), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6543), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6749), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(6749), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -599362,27 +592448,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4461] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4461), [sym_preproc_endregion] = STATE(4461), [sym_preproc_line] = STATE(4461), @@ -599392,40 +592457,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4461), [sym_preproc_define] = STATE(4461), [sym_preproc_undef] = STATE(4461), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6739), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_COLON] = ACTIONS(3388), + [anon_sym_COMMA] = ACTIONS(3388), + [anon_sym_RBRACK] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_RPAREN] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_GT] = ACTIONS(3386), + [anon_sym_in] = ACTIONS(3388), + [anon_sym_QMARK] = ACTIONS(3386), + [anon_sym_DOT] = ACTIONS(3386), + [anon_sym_EQ_GT] = ACTIONS(3388), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3388), + [anon_sym_when] = ACTIONS(3388), + [anon_sym_DOT_DOT] = ACTIONS(3388), + [anon_sym_LT_EQ] = ACTIONS(3388), + [anon_sym_GT_EQ] = ACTIONS(3388), + [anon_sym_and] = ACTIONS(3388), + [anon_sym_or] = ACTIONS(3388), + [anon_sym_EQ_EQ] = ACTIONS(3388), + [anon_sym_BANG_EQ] = ACTIONS(3388), + [anon_sym_AMP_AMP] = ACTIONS(3388), + [anon_sym_PIPE_PIPE] = ACTIONS(3388), + [anon_sym_AMP] = ACTIONS(3386), + [sym_op_bitwise_or] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3388), + [sym_op_left_shift] = ACTIONS(3388), + [sym_op_right_shift] = ACTIONS(3386), + [sym_op_unsigned_right_shift] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [sym_op_divide] = ACTIONS(3386), + [sym_op_modulo] = ACTIONS(3388), + [sym_op_coalescing] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_on] = ACTIONS(3388), + [anon_sym_equals] = ACTIONS(3388), + [anon_sym_by] = ACTIONS(3388), + [anon_sym_as] = ACTIONS(3388), + [anon_sym_is] = ACTIONS(3388), + [anon_sym_DASH_GT] = ACTIONS(3388), + [anon_sym_with] = ACTIONS(3388), + [aux_sym_preproc_if_token3] = ACTIONS(3388), + [aux_sym_preproc_else_token1] = ACTIONS(3388), + [aux_sym_preproc_elif_token1] = ACTIONS(3388), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -599438,27 +592519,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4462] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4462), [sym_preproc_endregion] = STATE(4462), [sym_preproc_line] = STATE(4462), @@ -599468,40 +592543,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4462), [sym_preproc_define] = STATE(4462), [sym_preproc_undef] = STATE(4462), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6741), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_on] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -599514,27 +592590,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4463] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), [sym_preproc_region] = STATE(4463), [sym_preproc_endregion] = STATE(4463), [sym_preproc_line] = STATE(4463), @@ -599544,40 +592599,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4463), [sym_preproc_define] = STATE(4463), [sym_preproc_undef] = STATE(4463), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(6743), - [anon_sym_QMARK] = ACTIONS(6553), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6555), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6557), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_COLON] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_RBRACK] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_EQ_GT] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_EQ] = ACTIONS(3193), + [anon_sym_and] = ACTIONS(3193), + [anon_sym_or] = ACTIONS(3193), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_PIPE_PIPE] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [sym_op_bitwise_or] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3193), + [sym_op_left_shift] = ACTIONS(3193), + [sym_op_right_shift] = ACTIONS(3191), + [sym_op_unsigned_right_shift] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [sym_op_divide] = ACTIONS(3191), + [sym_op_modulo] = ACTIONS(3193), + [sym_op_coalescing] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_on] = ACTIONS(3193), + [anon_sym_equals] = ACTIONS(3193), + [anon_sym_by] = ACTIONS(3193), + [anon_sym_as] = ACTIONS(3193), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_DASH_GT] = ACTIONS(3193), + [anon_sym_with] = 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), @@ -599590,27 +592661,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4464] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4464), [sym_preproc_endregion] = STATE(4464), [sym_preproc_line] = STATE(4464), @@ -599620,40 +592685,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4464), [sym_preproc_define] = STATE(4464), [sym_preproc_undef] = STATE(4464), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6745), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7056), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7068), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -599666,27 +592732,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4465] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4465), [sym_preproc_endregion] = STATE(4465), [sym_preproc_line] = STATE(4465), @@ -599696,40 +592741,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4465), [sym_preproc_define] = STATE(4465), [sym_preproc_undef] = STATE(4465), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6747), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6835), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_COLON] = ACTIONS(6835), + [anon_sym_COMMA] = ACTIONS(6835), + [anon_sym_RBRACK] = ACTIONS(6835), + [anon_sym_LPAREN] = ACTIONS(6835), + [anon_sym_RPAREN] = ACTIONS(6835), + [anon_sym_RBRACE] = ACTIONS(6835), + [anon_sym_LT] = ACTIONS(6837), + [anon_sym_GT] = ACTIONS(6837), + [anon_sym_in] = ACTIONS(6835), + [anon_sym_QMARK] = ACTIONS(6837), + [anon_sym_DOT] = ACTIONS(6837), + [anon_sym_EQ_GT] = ACTIONS(6835), + [anon_sym_STAR] = ACTIONS(6835), + [anon_sym_switch] = ACTIONS(6835), + [anon_sym_when] = ACTIONS(6835), + [anon_sym_DOT_DOT] = ACTIONS(6835), + [anon_sym_LT_EQ] = ACTIONS(6835), + [anon_sym_GT_EQ] = ACTIONS(6835), + [anon_sym_and] = ACTIONS(6835), + [anon_sym_or] = ACTIONS(6835), + [anon_sym_EQ_EQ] = ACTIONS(6835), + [anon_sym_BANG_EQ] = ACTIONS(6835), + [anon_sym_AMP_AMP] = ACTIONS(6835), + [anon_sym_PIPE_PIPE] = ACTIONS(6835), + [anon_sym_AMP] = ACTIONS(6837), + [sym_op_bitwise_or] = ACTIONS(6837), + [anon_sym_CARET] = ACTIONS(6835), + [sym_op_left_shift] = ACTIONS(6835), + [sym_op_right_shift] = ACTIONS(6837), + [sym_op_unsigned_right_shift] = ACTIONS(6835), + [anon_sym_PLUS] = ACTIONS(6837), + [anon_sym_DASH] = ACTIONS(6837), + [sym_op_divide] = ACTIONS(6837), + [sym_op_modulo] = ACTIONS(6835), + [sym_op_coalescing] = ACTIONS(6835), + [anon_sym_BANG] = ACTIONS(6837), + [anon_sym_PLUS_PLUS] = ACTIONS(6835), + [anon_sym_DASH_DASH] = ACTIONS(6835), + [anon_sym_on] = ACTIONS(6835), + [anon_sym_equals] = ACTIONS(6835), + [anon_sym_by] = ACTIONS(6835), + [anon_sym_as] = ACTIONS(6835), + [anon_sym_is] = ACTIONS(6835), + [anon_sym_DASH_GT] = ACTIONS(6835), + [anon_sym_with] = ACTIONS(6835), + [aux_sym_preproc_if_token3] = ACTIONS(6835), + [aux_sym_preproc_else_token1] = ACTIONS(6835), + [aux_sym_preproc_elif_token1] = ACTIONS(6835), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -599742,27 +592803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4466] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4466), [sym_preproc_endregion] = STATE(4466), [sym_preproc_line] = STATE(4466), @@ -599772,40 +592812,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4466), [sym_preproc_define] = STATE(4466), [sym_preproc_undef] = STATE(4466), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_RBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_in] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_EQ_GT] = ACTIONS(5508), + [anon_sym_STAR] = ACTIONS(5508), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_when] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5508), + [sym_op_left_shift] = ACTIONS(5508), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5508), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5508), + [sym_op_coalescing] = ACTIONS(5508), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_on] = ACTIONS(5508), + [anon_sym_equals] = ACTIONS(5508), + [anon_sym_by] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [aux_sym_preproc_if_token3] = ACTIONS(5508), + [aux_sym_preproc_else_token1] = ACTIONS(5508), + [aux_sym_preproc_elif_token1] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -599818,27 +592874,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4467] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4467), [sym_preproc_endregion] = STATE(4467), [sym_preproc_line] = STATE(4467), @@ -599848,40 +592883,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4467), [sym_preproc_define] = STATE(4467), [sym_preproc_undef] = STATE(4467), - [anon_sym_SEMI] = ACTIONS(6749), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_COMMA] = ACTIONS(5923), + [anon_sym_RBRACK] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(5923), + [anon_sym_RPAREN] = ACTIONS(5923), + [anon_sym_RBRACE] = ACTIONS(5923), + [anon_sym_LT] = ACTIONS(5925), + [anon_sym_GT] = ACTIONS(5925), + [anon_sym_in] = ACTIONS(5923), + [anon_sym_QMARK] = ACTIONS(5925), + [anon_sym_DOT] = ACTIONS(5925), + [anon_sym_EQ_GT] = ACTIONS(5923), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_switch] = ACTIONS(5923), + [anon_sym_when] = ACTIONS(5923), + [anon_sym_DOT_DOT] = ACTIONS(5923), + [anon_sym_LT_EQ] = ACTIONS(5923), + [anon_sym_GT_EQ] = ACTIONS(5923), + [anon_sym_and] = ACTIONS(5923), + [anon_sym_or] = ACTIONS(5923), + [anon_sym_EQ_EQ] = ACTIONS(5923), + [anon_sym_BANG_EQ] = ACTIONS(5923), + [anon_sym_AMP_AMP] = ACTIONS(5923), + [anon_sym_PIPE_PIPE] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5925), + [sym_op_bitwise_or] = ACTIONS(5925), + [anon_sym_CARET] = ACTIONS(5923), + [sym_op_left_shift] = ACTIONS(5923), + [sym_op_right_shift] = ACTIONS(5925), + [sym_op_unsigned_right_shift] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5925), + [sym_op_divide] = ACTIONS(5925), + [sym_op_modulo] = ACTIONS(5923), + [sym_op_coalescing] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5925), + [anon_sym_PLUS_PLUS] = ACTIONS(5923), + [anon_sym_DASH_DASH] = ACTIONS(5923), + [anon_sym_on] = ACTIONS(5923), + [anon_sym_equals] = ACTIONS(5923), + [anon_sym_by] = ACTIONS(5923), + [anon_sym_as] = ACTIONS(5923), + [anon_sym_is] = ACTIONS(5923), + [anon_sym_DASH_GT] = ACTIONS(5923), + [anon_sym_with] = ACTIONS(5923), + [aux_sym_preproc_if_token3] = ACTIONS(5923), + [aux_sym_preproc_else_token1] = ACTIONS(5923), + [aux_sym_preproc_elif_token1] = ACTIONS(5923), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -599894,27 +592945,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4468] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_explicit_interface_specifier] = STATE(6211), + [sym__name] = STATE(6907), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7372), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4468), [sym_preproc_endregion] = STATE(4468), [sym_preproc_line] = STATE(4468), @@ -599924,40 +592973,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4468), [sym_preproc_define] = STATE(4468), [sym_preproc_undef] = STATE(4468), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6751), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_conversion_operator_declaration_repeat1] = STATE(5789), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(7074), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_operator] = ACTIONS(7076), + [anon_sym_checked] = ACTIONS(7076), + [anon_sym_scoped] = ACTIONS(7078), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -599970,27 +593016,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4469] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4469), [sym_preproc_endregion] = STATE(4469), [sym_preproc_line] = STATE(4469), @@ -600000,40 +593025,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4469), [sym_preproc_define] = STATE(4469), [sym_preproc_undef] = STATE(4469), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6753), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LBRACK] = ACTIONS(5931), + [anon_sym_COLON] = ACTIONS(5931), + [anon_sym_COMMA] = ACTIONS(5931), + [anon_sym_RBRACK] = ACTIONS(5931), + [anon_sym_LPAREN] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_RBRACE] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5933), + [anon_sym_in] = ACTIONS(5931), + [anon_sym_QMARK] = ACTIONS(5933), + [anon_sym_DOT] = ACTIONS(5933), + [anon_sym_EQ_GT] = ACTIONS(5931), + [anon_sym_STAR] = ACTIONS(5931), + [anon_sym_switch] = ACTIONS(5931), + [anon_sym_when] = ACTIONS(5931), + [anon_sym_DOT_DOT] = ACTIONS(5931), + [anon_sym_LT_EQ] = ACTIONS(5931), + [anon_sym_GT_EQ] = ACTIONS(5931), + [anon_sym_and] = ACTIONS(5931), + [anon_sym_or] = ACTIONS(5931), + [anon_sym_EQ_EQ] = ACTIONS(5931), + [anon_sym_BANG_EQ] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5933), + [sym_op_bitwise_or] = ACTIONS(5933), + [anon_sym_CARET] = ACTIONS(5931), + [sym_op_left_shift] = ACTIONS(5931), + [sym_op_right_shift] = ACTIONS(5933), + [sym_op_unsigned_right_shift] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5933), + [sym_op_divide] = ACTIONS(5933), + [sym_op_modulo] = ACTIONS(5931), + [sym_op_coalescing] = ACTIONS(5931), + [anon_sym_BANG] = ACTIONS(5933), + [anon_sym_PLUS_PLUS] = ACTIONS(5931), + [anon_sym_DASH_DASH] = ACTIONS(5931), + [anon_sym_on] = ACTIONS(5931), + [anon_sym_equals] = ACTIONS(5931), + [anon_sym_by] = ACTIONS(5931), + [anon_sym_as] = ACTIONS(5931), + [anon_sym_is] = ACTIONS(5931), + [anon_sym_DASH_GT] = ACTIONS(5931), + [anon_sym_with] = ACTIONS(5931), + [aux_sym_preproc_if_token3] = ACTIONS(5931), + [aux_sym_preproc_else_token1] = ACTIONS(5931), + [aux_sym_preproc_elif_token1] = ACTIONS(5931), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -600046,27 +593087,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4470] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), [sym_preproc_region] = STATE(4470), [sym_preproc_endregion] = STATE(4470), [sym_preproc_line] = STATE(4470), @@ -600076,40 +593096,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4470), [sym_preproc_define] = STATE(4470), [sym_preproc_undef] = STATE(4470), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4672), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6543), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_EQ] = ACTIONS(7080), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_EQ_GT] = ACTIONS(5508), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7082), + [anon_sym_DASH_EQ] = ACTIONS(7082), + [anon_sym_STAR_EQ] = ACTIONS(7082), + [anon_sym_SLASH_EQ] = ACTIONS(7082), + [anon_sym_PERCENT_EQ] = ACTIONS(7082), + [anon_sym_AMP_EQ] = ACTIONS(7082), + [anon_sym_CARET_EQ] = ACTIONS(7082), + [anon_sym_PIPE_EQ] = ACTIONS(7082), + [anon_sym_LT_LT_EQ] = ACTIONS(7082), + [anon_sym_GT_GT_EQ] = ACTIONS(7082), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7082), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7082), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -600122,27 +593158,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4471] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4471), [sym_preproc_endregion] = STATE(4471), [sym_preproc_line] = STATE(4471), @@ -600152,40 +593182,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4471), [sym_preproc_define] = STATE(4471), [sym_preproc_undef] = STATE(4471), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6755), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -600198,27 +593229,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4472] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4472), [sym_preproc_endregion] = STATE(4472), [sym_preproc_line] = STATE(4472), @@ -600228,40 +593253,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4472), [sym_preproc_define] = STATE(4472), [sym_preproc_undef] = STATE(4472), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6757), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -600274,27 +593300,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4473] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4473), [sym_preproc_endregion] = STATE(4473), [sym_preproc_line] = STATE(4473), @@ -600304,40 +593324,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4473), [sym_preproc_define] = STATE(4473), [sym_preproc_undef] = STATE(4473), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6759), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7094), + [anon_sym_is] = ACTIONS(7096), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -600350,27 +593371,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4474] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), [sym_preproc_region] = STATE(4474), [sym_preproc_endregion] = STATE(4474), [sym_preproc_line] = STATE(4474), @@ -600380,73 +593380,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4474), [sym_preproc_define] = STATE(4474), [sym_preproc_undef] = STATE(4474), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(7098), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7100), + [anon_sym_DASH_EQ] = ACTIONS(7100), + [anon_sym_STAR_EQ] = ACTIONS(7100), + [anon_sym_SLASH_EQ] = ACTIONS(7100), + [anon_sym_PERCENT_EQ] = ACTIONS(7100), + [anon_sym_AMP_EQ] = ACTIONS(7100), + [anon_sym_CARET_EQ] = ACTIONS(7100), + [anon_sym_PIPE_EQ] = ACTIONS(7100), + [anon_sym_LT_LT_EQ] = ACTIONS(7100), + [anon_sym_GT_GT_EQ] = ACTIONS(7100), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7100), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7100), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5508), }, [4475] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4475), [sym_preproc_endregion] = STATE(4475), [sym_preproc_line] = STATE(4475), @@ -600456,40 +593466,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4475), [sym_preproc_define] = STATE(4475), [sym_preproc_undef] = STATE(4475), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6761), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7094), + [anon_sym_is] = ACTIONS(7096), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -600502,27 +593513,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4476] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4476), [sym_preproc_endregion] = STATE(4476), [sym_preproc_line] = STATE(4476), @@ -600532,40 +593537,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4476), [sym_preproc_define] = STATE(4476), [sym_preproc_undef] = STATE(4476), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6583), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6585), - [anon_sym_on] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(6547), - [anon_sym_is] = ACTIONS(6549), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7102), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7094), + [anon_sym_is] = ACTIONS(7096), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -600578,27 +593584,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4477] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4477), [sym_preproc_endregion] = STATE(4477), [sym_preproc_line] = STATE(4477), @@ -600608,40 +593608,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4477), [sym_preproc_define] = STATE(4477), [sym_preproc_undef] = STATE(4477), - [anon_sym_SEMI] = ACTIONS(6763), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7102), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7094), + [anon_sym_is] = ACTIONS(7096), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -600654,27 +593655,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4478] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4478), [sym_preproc_endregion] = STATE(4478), [sym_preproc_line] = STATE(4478), @@ -600684,40 +593679,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4478), [sym_preproc_define] = STATE(4478), [sym_preproc_undef] = STATE(4478), - [anon_sym_SEMI] = ACTIONS(6765), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7094), + [anon_sym_is] = ACTIONS(7096), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -600730,27 +593726,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4479] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4479), [sym_preproc_endregion] = STATE(4479), [sym_preproc_line] = STATE(4479), @@ -600760,40 +593750,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4479), [sym_preproc_define] = STATE(4479), [sym_preproc_undef] = STATE(4479), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6767), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -600806,27 +593797,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4480] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4480), [sym_preproc_endregion] = STATE(4480), [sym_preproc_line] = STATE(4480), @@ -600836,40 +593821,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4480), [sym_preproc_define] = STATE(4480), [sym_preproc_undef] = STATE(4480), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6769), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7102), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(7104), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7094), + [anon_sym_is] = ACTIONS(7096), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -600882,27 +593868,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4481] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4481), [sym_preproc_endregion] = STATE(4481), [sym_preproc_line] = STATE(4481), @@ -600912,40 +593892,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4481), [sym_preproc_define] = STATE(4481), [sym_preproc_undef] = STATE(4481), - [anon_sym_SEMI] = ACTIONS(6771), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -600958,27 +593939,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4482] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4482), [sym_preproc_endregion] = STATE(4482), [sym_preproc_line] = STATE(4482), @@ -600988,40 +593963,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4482), [sym_preproc_define] = STATE(4482), [sym_preproc_undef] = STATE(4482), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_in] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -601034,27 +594010,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4483] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4483), [sym_preproc_endregion] = STATE(4483), [sym_preproc_line] = STATE(4483), @@ -601064,40 +594034,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4483), [sym_preproc_define] = STATE(4483), [sym_preproc_undef] = STATE(4483), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6773), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7094), + [anon_sym_is] = ACTIONS(7096), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -601110,27 +594081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4484] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_modifier] = STATE(5123), [sym_preproc_region] = STATE(4484), [sym_preproc_endregion] = STATE(4484), [sym_preproc_line] = STATE(4484), @@ -601140,40 +594091,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4484), [sym_preproc_define] = STATE(4484), [sym_preproc_undef] = STATE(4484), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6775), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4484), + [sym__identifier_token] = ACTIONS(5821), + [anon_sym_extern] = ACTIONS(7106), + [anon_sym_alias] = ACTIONS(5821), + [anon_sym_global] = ACTIONS(5821), + [anon_sym_unsafe] = ACTIONS(7106), + [anon_sym_static] = ACTIONS(7106), + [anon_sym_public] = ACTIONS(7106), + [anon_sym_private] = ACTIONS(7106), + [anon_sym_readonly] = ACTIONS(7106), + [anon_sym_abstract] = ACTIONS(7106), + [anon_sym_async] = ACTIONS(7106), + [anon_sym_const] = ACTIONS(7106), + [anon_sym_file] = ACTIONS(7106), + [anon_sym_fixed] = ACTIONS(7106), + [anon_sym_internal] = ACTIONS(7106), + [anon_sym_new] = ACTIONS(7106), + [anon_sym_override] = ACTIONS(7106), + [anon_sym_partial] = ACTIONS(7106), + [anon_sym_protected] = ACTIONS(7106), + [anon_sym_required] = ACTIONS(7106), + [anon_sym_sealed] = ACTIONS(7106), + [anon_sym_virtual] = ACTIONS(7106), + [anon_sym_volatile] = ACTIONS(7106), + [anon_sym_where] = ACTIONS(5821), + [anon_sym_notnull] = ACTIONS(5821), + [anon_sym_unmanaged] = ACTIONS(5821), + [sym_accessor_get] = ACTIONS(5821), + [sym_accessor_set] = ACTIONS(5821), + [sym_accessor_add] = ACTIONS(5821), + [sym_accessor_remove] = ACTIONS(5821), + [sym_accessor_init] = ACTIONS(5821), + [anon_sym_scoped] = ACTIONS(5821), + [anon_sym_var] = ACTIONS(5821), + [anon_sym_yield] = ACTIONS(5821), + [anon_sym_when] = ACTIONS(5821), + [anon_sym_from] = ACTIONS(5821), + [anon_sym_into] = ACTIONS(5821), + [anon_sym_join] = ACTIONS(5821), + [anon_sym_on] = ACTIONS(5821), + [anon_sym_equals] = ACTIONS(5821), + [anon_sym_let] = ACTIONS(5821), + [anon_sym_orderby] = ACTIONS(5821), + [anon_sym_ascending] = ACTIONS(5821), + [anon_sym_descending] = ACTIONS(5821), + [anon_sym_group] = ACTIONS(5821), + [anon_sym_by] = ACTIONS(5821), + [anon_sym_select] = ACTIONS(5821), + [sym_grit_metavariable] = ACTIONS(5826), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -601186,27 +594152,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4485] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4485), [sym_preproc_endregion] = STATE(4485), [sym_preproc_line] = STATE(4485), @@ -601216,40 +594161,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4485), [sym_preproc_define] = STATE(4485), [sym_preproc_undef] = STATE(4485), - [anon_sym_SEMI] = ACTIONS(6777), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5869), + [anon_sym_LBRACK] = ACTIONS(5869), + [anon_sym_COLON] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5869), + [anon_sym_RBRACK] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5869), + [anon_sym_RPAREN] = ACTIONS(5869), + [anon_sym_RBRACE] = ACTIONS(5869), + [anon_sym_LT] = ACTIONS(5871), + [anon_sym_GT] = ACTIONS(5871), + [anon_sym_in] = ACTIONS(5869), + [anon_sym_QMARK] = ACTIONS(5871), + [anon_sym_DOT] = ACTIONS(5871), + [anon_sym_EQ_GT] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(5869), + [anon_sym_switch] = ACTIONS(5869), + [anon_sym_when] = ACTIONS(5869), + [anon_sym_DOT_DOT] = ACTIONS(5869), + [anon_sym_LT_EQ] = ACTIONS(5869), + [anon_sym_GT_EQ] = ACTIONS(5869), + [anon_sym_and] = ACTIONS(5869), + [anon_sym_or] = ACTIONS(5869), + [anon_sym_EQ_EQ] = ACTIONS(5869), + [anon_sym_BANG_EQ] = ACTIONS(5869), + [anon_sym_AMP_AMP] = ACTIONS(5869), + [anon_sym_PIPE_PIPE] = ACTIONS(5869), + [anon_sym_AMP] = ACTIONS(5871), + [sym_op_bitwise_or] = ACTIONS(5871), + [anon_sym_CARET] = ACTIONS(5869), + [sym_op_left_shift] = ACTIONS(5869), + [sym_op_right_shift] = ACTIONS(5871), + [sym_op_unsigned_right_shift] = ACTIONS(5869), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5871), + [sym_op_divide] = ACTIONS(5871), + [sym_op_modulo] = ACTIONS(5869), + [sym_op_coalescing] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [anon_sym_PLUS_PLUS] = ACTIONS(5869), + [anon_sym_DASH_DASH] = ACTIONS(5869), + [anon_sym_on] = ACTIONS(5869), + [anon_sym_equals] = ACTIONS(5869), + [anon_sym_by] = ACTIONS(5869), + [anon_sym_as] = ACTIONS(5869), + [anon_sym_is] = ACTIONS(5869), + [anon_sym_DASH_GT] = ACTIONS(5869), + [anon_sym_with] = ACTIONS(5869), + [aux_sym_preproc_if_token3] = ACTIONS(5869), + [aux_sym_preproc_else_token1] = ACTIONS(5869), + [aux_sym_preproc_elif_token1] = ACTIONS(5869), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -601262,27 +594223,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4486] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4486), [sym_preproc_endregion] = STATE(4486), [sym_preproc_line] = STATE(4486), @@ -601292,40 +594232,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4486), [sym_preproc_define] = STATE(4486), [sym_preproc_undef] = STATE(4486), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6779), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [sym__identifier_token] = ACTIONS(5668), + [anon_sym_extern] = ACTIONS(5668), + [anon_sym_alias] = ACTIONS(5668), + [anon_sym_global] = ACTIONS(5668), + [anon_sym_unsafe] = ACTIONS(5668), + [anon_sym_static] = ACTIONS(5668), + [anon_sym_LBRACK] = ACTIONS(5670), + [anon_sym_public] = ACTIONS(5668), + [anon_sym_private] = ACTIONS(5668), + [anon_sym_readonly] = ACTIONS(5668), + [anon_sym_abstract] = ACTIONS(5668), + [anon_sym_async] = ACTIONS(5668), + [anon_sym_const] = ACTIONS(5668), + [anon_sym_file] = ACTIONS(5668), + [anon_sym_fixed] = ACTIONS(5668), + [anon_sym_internal] = ACTIONS(5668), + [anon_sym_new] = ACTIONS(5668), + [anon_sym_override] = ACTIONS(5668), + [anon_sym_partial] = ACTIONS(5668), + [anon_sym_protected] = ACTIONS(5668), + [anon_sym_required] = ACTIONS(5668), + [anon_sym_sealed] = ACTIONS(5668), + [anon_sym_virtual] = ACTIONS(5668), + [anon_sym_volatile] = ACTIONS(5668), + [anon_sym_where] = ACTIONS(5668), + [anon_sym_notnull] = ACTIONS(5668), + [anon_sym_unmanaged] = ACTIONS(5668), + [sym_accessor_get] = ACTIONS(5668), + [sym_accessor_set] = ACTIONS(5668), + [sym_accessor_add] = ACTIONS(5668), + [sym_accessor_remove] = ACTIONS(5668), + [sym_accessor_init] = ACTIONS(5668), + [anon_sym_scoped] = ACTIONS(5668), + [anon_sym_var] = ACTIONS(5668), + [anon_sym_yield] = ACTIONS(5668), + [anon_sym_when] = ACTIONS(5668), + [anon_sym_from] = ACTIONS(5668), + [anon_sym_into] = ACTIONS(5668), + [anon_sym_join] = ACTIONS(5668), + [anon_sym_on] = ACTIONS(5668), + [anon_sym_equals] = ACTIONS(5668), + [anon_sym_let] = ACTIONS(5668), + [anon_sym_orderby] = ACTIONS(5668), + [anon_sym_ascending] = ACTIONS(5668), + [anon_sym_descending] = ACTIONS(5668), + [anon_sym_group] = ACTIONS(5668), + [anon_sym_by] = ACTIONS(5668), + [anon_sym_select] = ACTIONS(5668), + [sym_grit_metavariable] = ACTIONS(5670), + [aux_sym_preproc_if_token1] = ACTIONS(5670), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -601338,27 +594294,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4487] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4487), [sym_preproc_endregion] = STATE(4487), [sym_preproc_line] = STATE(4487), @@ -601368,40 +594303,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4487), [sym_preproc_define] = STATE(4487), [sym_preproc_undef] = STATE(4487), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6781), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_EQ] = ACTIONS(7109), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7111), + [anon_sym_DASH_EQ] = ACTIONS(7111), + [anon_sym_STAR_EQ] = ACTIONS(7111), + [anon_sym_SLASH_EQ] = ACTIONS(7111), + [anon_sym_PERCENT_EQ] = ACTIONS(7111), + [anon_sym_AMP_EQ] = ACTIONS(7111), + [anon_sym_CARET_EQ] = ACTIONS(7111), + [anon_sym_PIPE_EQ] = ACTIONS(7111), + [anon_sym_LT_LT_EQ] = ACTIONS(7111), + [anon_sym_GT_GT_EQ] = ACTIONS(7111), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7111), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7111), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -601414,27 +594365,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4488] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4488), [sym_preproc_endregion] = STATE(4488), [sym_preproc_line] = STATE(4488), @@ -601444,40 +594374,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4488), [sym_preproc_define] = STATE(4488), [sym_preproc_undef] = STATE(4488), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6783), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_EQ] = ACTIONS(7113), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7115), + [anon_sym_DASH_EQ] = ACTIONS(7115), + [anon_sym_STAR_EQ] = ACTIONS(7115), + [anon_sym_SLASH_EQ] = ACTIONS(7115), + [anon_sym_PERCENT_EQ] = ACTIONS(7115), + [anon_sym_AMP_EQ] = ACTIONS(7115), + [anon_sym_CARET_EQ] = ACTIONS(7115), + [anon_sym_PIPE_EQ] = ACTIONS(7115), + [anon_sym_LT_LT_EQ] = ACTIONS(7115), + [anon_sym_GT_GT_EQ] = ACTIONS(7115), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7115), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7115), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_on] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -601490,27 +594436,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4489] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4489), [sym_preproc_endregion] = STATE(4489), [sym_preproc_line] = STATE(4489), @@ -601520,40 +594460,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4489), [sym_preproc_define] = STATE(4489), [sym_preproc_undef] = STATE(4489), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -601566,27 +594507,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4490] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4490), [sym_preproc_endregion] = STATE(4490), [sym_preproc_line] = STATE(4490), @@ -601596,40 +594531,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4490), [sym_preproc_define] = STATE(4490), [sym_preproc_undef] = STATE(4490), - [anon_sym_SEMI] = ACTIONS(6785), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -601642,27 +594578,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4491] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4491), [sym_preproc_endregion] = STATE(4491), [sym_preproc_line] = STATE(4491), @@ -601672,40 +594587,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4491), [sym_preproc_define] = STATE(4491), [sym_preproc_undef] = STATE(4491), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6787), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6003), + [anon_sym_LBRACK] = ACTIONS(6003), + [anon_sym_COLON] = ACTIONS(6003), + [anon_sym_COMMA] = ACTIONS(6003), + [anon_sym_RBRACK] = ACTIONS(6003), + [anon_sym_LPAREN] = ACTIONS(6003), + [anon_sym_RPAREN] = ACTIONS(6003), + [anon_sym_RBRACE] = ACTIONS(6003), + [anon_sym_LT] = ACTIONS(6005), + [anon_sym_GT] = ACTIONS(6005), + [anon_sym_in] = ACTIONS(6003), + [anon_sym_QMARK] = ACTIONS(6005), + [anon_sym_DOT] = ACTIONS(6005), + [anon_sym_EQ_GT] = ACTIONS(6003), + [anon_sym_STAR] = ACTIONS(6003), + [anon_sym_switch] = ACTIONS(6003), + [anon_sym_when] = ACTIONS(6003), + [anon_sym_DOT_DOT] = ACTIONS(6003), + [anon_sym_LT_EQ] = ACTIONS(6003), + [anon_sym_GT_EQ] = ACTIONS(6003), + [anon_sym_and] = ACTIONS(6003), + [anon_sym_or] = ACTIONS(6003), + [anon_sym_EQ_EQ] = ACTIONS(6003), + [anon_sym_BANG_EQ] = ACTIONS(6003), + [anon_sym_AMP_AMP] = ACTIONS(6003), + [anon_sym_PIPE_PIPE] = ACTIONS(6003), + [anon_sym_AMP] = ACTIONS(6005), + [sym_op_bitwise_or] = ACTIONS(6005), + [anon_sym_CARET] = ACTIONS(6003), + [sym_op_left_shift] = ACTIONS(6003), + [sym_op_right_shift] = ACTIONS(6005), + [sym_op_unsigned_right_shift] = ACTIONS(6003), + [anon_sym_PLUS] = ACTIONS(6005), + [anon_sym_DASH] = ACTIONS(6005), + [sym_op_divide] = ACTIONS(6005), + [sym_op_modulo] = ACTIONS(6003), + [sym_op_coalescing] = ACTIONS(6003), + [anon_sym_BANG] = ACTIONS(6005), + [anon_sym_PLUS_PLUS] = ACTIONS(6003), + [anon_sym_DASH_DASH] = ACTIONS(6003), + [anon_sym_on] = ACTIONS(6003), + [anon_sym_equals] = ACTIONS(6003), + [anon_sym_by] = ACTIONS(6003), + [anon_sym_as] = ACTIONS(6003), + [anon_sym_is] = ACTIONS(6003), + [anon_sym_DASH_GT] = ACTIONS(6003), + [anon_sym_with] = ACTIONS(6003), + [aux_sym_preproc_if_token3] = ACTIONS(6003), + [aux_sym_preproc_else_token1] = ACTIONS(6003), + [aux_sym_preproc_elif_token1] = ACTIONS(6003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -601718,27 +594649,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4492] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4492), [sym_preproc_endregion] = STATE(4492), [sym_preproc_line] = STATE(4492), @@ -601748,40 +594673,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4492), [sym_preproc_define] = STATE(4492), [sym_preproc_undef] = STATE(4492), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6789), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7117), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7102), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(7104), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_on] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(7094), + [anon_sym_is] = ACTIONS(7096), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -601794,27 +594720,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4493] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4493), [sym_preproc_endregion] = STATE(4493), [sym_preproc_line] = STATE(4493), @@ -601824,40 +594744,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4493), [sym_preproc_define] = STATE(4493), [sym_preproc_undef] = STATE(4493), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(4778), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5308), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -601870,27 +594791,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4494] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4494), [sym_preproc_endregion] = STATE(4494), [sym_preproc_line] = STATE(4494), @@ -601900,40 +594815,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4494), [sym_preproc_define] = STATE(4494), [sym_preproc_undef] = STATE(4494), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(7119), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7119), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6717), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(6729), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -601946,27 +594862,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4495] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4495), [sym_preproc_endregion] = STATE(4495), [sym_preproc_line] = STATE(4495), @@ -601976,40 +594886,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4495), [sym_preproc_define] = STATE(4495), [sym_preproc_undef] = STATE(4495), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6791), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7117), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7102), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(7104), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_on] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(7094), + [anon_sym_is] = ACTIONS(7096), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -602022,27 +594933,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4496] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), [sym_preproc_region] = STATE(4496), [sym_preproc_endregion] = STATE(4496), [sym_preproc_line] = STATE(4496), @@ -602052,40 +594942,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4496), [sym_preproc_define] = STATE(4496), [sym_preproc_undef] = STATE(4496), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4782), - [anon_sym_QMARK] = ACTIONS(6553), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6555), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6557), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [sym__identifier_token] = ACTIONS(5478), + [anon_sym_extern] = ACTIONS(5478), + [anon_sym_alias] = ACTIONS(5478), + [anon_sym_global] = ACTIONS(5478), + [anon_sym_unsafe] = ACTIONS(5478), + [anon_sym_static] = ACTIONS(5478), + [anon_sym_LBRACK] = ACTIONS(5480), + [anon_sym_public] = ACTIONS(5478), + [anon_sym_private] = ACTIONS(5478), + [anon_sym_readonly] = ACTIONS(5478), + [anon_sym_abstract] = ACTIONS(5478), + [anon_sym_async] = ACTIONS(5478), + [anon_sym_const] = ACTIONS(5478), + [anon_sym_file] = ACTIONS(5478), + [anon_sym_fixed] = ACTIONS(5478), + [anon_sym_internal] = ACTIONS(5478), + [anon_sym_new] = ACTIONS(5478), + [anon_sym_override] = ACTIONS(5478), + [anon_sym_partial] = ACTIONS(5478), + [anon_sym_protected] = ACTIONS(5478), + [anon_sym_required] = ACTIONS(5478), + [anon_sym_sealed] = ACTIONS(5478), + [anon_sym_virtual] = ACTIONS(5478), + [anon_sym_volatile] = ACTIONS(5478), + [anon_sym_where] = ACTIONS(5478), + [anon_sym_notnull] = ACTIONS(5478), + [anon_sym_unmanaged] = ACTIONS(5478), + [sym_accessor_get] = ACTIONS(5478), + [sym_accessor_set] = ACTIONS(5478), + [sym_accessor_add] = ACTIONS(5478), + [sym_accessor_remove] = ACTIONS(5478), + [sym_accessor_init] = ACTIONS(5478), + [anon_sym_scoped] = ACTIONS(5478), + [anon_sym_var] = ACTIONS(5478), + [anon_sym_yield] = ACTIONS(5478), + [anon_sym_when] = ACTIONS(5478), + [anon_sym_from] = ACTIONS(5478), + [anon_sym_into] = ACTIONS(5478), + [anon_sym_join] = ACTIONS(5478), + [anon_sym_on] = ACTIONS(5478), + [anon_sym_equals] = ACTIONS(5478), + [anon_sym_let] = ACTIONS(5478), + [anon_sym_orderby] = ACTIONS(5478), + [anon_sym_ascending] = ACTIONS(5478), + [anon_sym_descending] = ACTIONS(5478), + [anon_sym_group] = ACTIONS(5478), + [anon_sym_by] = ACTIONS(5478), + [anon_sym_select] = ACTIONS(5478), + [sym_grit_metavariable] = ACTIONS(5480), + [aux_sym_preproc_if_token1] = ACTIONS(5480), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -602098,27 +595004,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4497] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4497), [sym_preproc_endregion] = STATE(4497), [sym_preproc_line] = STATE(4497), @@ -602128,40 +595013,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4497), [sym_preproc_define] = STATE(4497), [sym_preproc_undef] = STATE(4497), - [anon_sym_SEMI] = ACTIONS(6793), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [sym__identifier_token] = ACTIONS(5420), + [anon_sym_extern] = ACTIONS(5420), + [anon_sym_alias] = ACTIONS(5420), + [anon_sym_global] = ACTIONS(5420), + [anon_sym_unsafe] = ACTIONS(5420), + [anon_sym_static] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5422), + [anon_sym_public] = ACTIONS(5420), + [anon_sym_private] = ACTIONS(5420), + [anon_sym_readonly] = ACTIONS(5420), + [anon_sym_abstract] = ACTIONS(5420), + [anon_sym_async] = ACTIONS(5420), + [anon_sym_const] = ACTIONS(5420), + [anon_sym_file] = ACTIONS(5420), + [anon_sym_fixed] = ACTIONS(5420), + [anon_sym_internal] = ACTIONS(5420), + [anon_sym_new] = ACTIONS(5420), + [anon_sym_override] = ACTIONS(5420), + [anon_sym_partial] = ACTIONS(5420), + [anon_sym_protected] = ACTIONS(5420), + [anon_sym_required] = ACTIONS(5420), + [anon_sym_sealed] = ACTIONS(5420), + [anon_sym_virtual] = ACTIONS(5420), + [anon_sym_volatile] = ACTIONS(5420), + [anon_sym_where] = ACTIONS(5420), + [anon_sym_notnull] = ACTIONS(5420), + [anon_sym_unmanaged] = ACTIONS(5420), + [sym_accessor_get] = ACTIONS(5420), + [sym_accessor_set] = ACTIONS(5420), + [sym_accessor_add] = ACTIONS(5420), + [sym_accessor_remove] = ACTIONS(5420), + [sym_accessor_init] = ACTIONS(5420), + [anon_sym_scoped] = ACTIONS(5420), + [anon_sym_var] = ACTIONS(5420), + [anon_sym_yield] = ACTIONS(5420), + [anon_sym_when] = ACTIONS(5420), + [anon_sym_from] = ACTIONS(5420), + [anon_sym_into] = ACTIONS(5420), + [anon_sym_join] = ACTIONS(5420), + [anon_sym_on] = ACTIONS(5420), + [anon_sym_equals] = ACTIONS(5420), + [anon_sym_let] = ACTIONS(5420), + [anon_sym_orderby] = ACTIONS(5420), + [anon_sym_ascending] = ACTIONS(5420), + [anon_sym_descending] = ACTIONS(5420), + [anon_sym_group] = ACTIONS(5420), + [anon_sym_by] = ACTIONS(5420), + [anon_sym_select] = ACTIONS(5420), + [sym_grit_metavariable] = ACTIONS(5422), + [aux_sym_preproc_if_token1] = ACTIONS(5422), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -602174,27 +595075,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4498] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4498), [sym_preproc_endregion] = STATE(4498), [sym_preproc_line] = STATE(4498), @@ -602204,40 +595099,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4498), [sym_preproc_define] = STATE(4498), [sym_preproc_undef] = STATE(4498), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -602250,27 +595146,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4499] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4499), [sym_preproc_endregion] = STATE(4499), [sym_preproc_line] = STATE(4499), @@ -602280,40 +595155,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4499), [sym_preproc_define] = STATE(4499), [sym_preproc_undef] = STATE(4499), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4796), - [anon_sym_GT] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4796), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4794), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_CARET] = ACTIONS(4794), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(4794), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_GT_GT_GT] = ACTIONS(4794), - [anon_sym_EQ_EQ] = ACTIONS(4794), - [anon_sym_BANG_EQ] = ACTIONS(4794), - [anon_sym_GT_EQ] = ACTIONS(4794), - [anon_sym_LT_EQ] = ACTIONS(4794), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4794), - [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [sym_op_coalescing] = ACTIONS(4794), - [anon_sym_by] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4794), - [anon_sym_is] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(5779), + [anon_sym_LBRACK] = ACTIONS(5779), + [anon_sym_COLON] = ACTIONS(5779), + [anon_sym_COMMA] = ACTIONS(5779), + [anon_sym_RBRACK] = ACTIONS(5779), + [anon_sym_LPAREN] = ACTIONS(5779), + [anon_sym_RPAREN] = ACTIONS(5779), + [anon_sym_RBRACE] = ACTIONS(5779), + [anon_sym_LT] = ACTIONS(5781), + [anon_sym_GT] = ACTIONS(5781), + [anon_sym_in] = ACTIONS(5779), + [anon_sym_QMARK] = ACTIONS(5781), + [anon_sym_DOT] = ACTIONS(5781), + [anon_sym_EQ_GT] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_switch] = ACTIONS(5779), + [anon_sym_when] = ACTIONS(5779), + [anon_sym_DOT_DOT] = ACTIONS(5779), + [anon_sym_LT_EQ] = ACTIONS(5779), + [anon_sym_GT_EQ] = ACTIONS(5779), + [anon_sym_and] = ACTIONS(5779), + [anon_sym_or] = ACTIONS(5779), + [anon_sym_EQ_EQ] = ACTIONS(5779), + [anon_sym_BANG_EQ] = ACTIONS(5779), + [anon_sym_AMP_AMP] = ACTIONS(5779), + [anon_sym_PIPE_PIPE] = ACTIONS(5779), + [anon_sym_AMP] = ACTIONS(5781), + [sym_op_bitwise_or] = ACTIONS(5781), + [anon_sym_CARET] = ACTIONS(5779), + [sym_op_left_shift] = ACTIONS(5779), + [sym_op_right_shift] = ACTIONS(5781), + [sym_op_unsigned_right_shift] = ACTIONS(5779), + [anon_sym_PLUS] = ACTIONS(5781), + [anon_sym_DASH] = ACTIONS(5781), + [sym_op_divide] = ACTIONS(5781), + [sym_op_modulo] = ACTIONS(5779), + [sym_op_coalescing] = ACTIONS(5779), + [anon_sym_BANG] = ACTIONS(5781), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_on] = ACTIONS(5779), + [anon_sym_equals] = ACTIONS(5779), + [anon_sym_by] = ACTIONS(5779), + [anon_sym_as] = ACTIONS(5779), + [anon_sym_is] = ACTIONS(5779), + [anon_sym_DASH_GT] = ACTIONS(5779), + [anon_sym_with] = ACTIONS(5779), + [aux_sym_preproc_if_token3] = ACTIONS(5779), + [aux_sym_preproc_else_token1] = ACTIONS(5779), + [aux_sym_preproc_elif_token1] = ACTIONS(5779), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -602326,27 +595217,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4500] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4500), [sym_preproc_endregion] = STATE(4500), [sym_preproc_line] = STATE(4500), @@ -602356,40 +595241,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4500), [sym_preproc_define] = STATE(4500), [sym_preproc_undef] = STATE(4500), - [anon_sym_SEMI] = ACTIONS(6795), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -602402,27 +595288,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4501] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4501), [sym_preproc_endregion] = STATE(4501), [sym_preproc_line] = STATE(4501), @@ -602432,40 +595312,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4501), [sym_preproc_define] = STATE(4501), [sym_preproc_undef] = STATE(4501), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_by] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7117), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7102), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(7104), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_on] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(7094), + [anon_sym_is] = ACTIONS(7096), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -602478,27 +595359,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4502] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4502), [sym_preproc_endregion] = STATE(4502), [sym_preproc_line] = STATE(4502), @@ -602508,40 +595383,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4502), [sym_preproc_define] = STATE(4502), [sym_preproc_undef] = STATE(4502), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_by] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(7121), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7121), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6717), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(6729), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -602554,27 +595430,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4503] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4503), [sym_preproc_endregion] = STATE(4503), [sym_preproc_line] = STATE(4503), @@ -602584,40 +595454,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4503), [sym_preproc_define] = STATE(4503), [sym_preproc_undef] = STATE(4503), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6797), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -602630,27 +595501,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4504] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4504), [sym_preproc_endregion] = STATE(4504), [sym_preproc_line] = STATE(4504), @@ -602660,40 +595525,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4504), [sym_preproc_define] = STATE(4504), [sym_preproc_undef] = STATE(4504), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6799), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -602706,27 +595572,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4505] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4505), [sym_preproc_endregion] = STATE(4505), [sym_preproc_line] = STATE(4505), @@ -602736,40 +595596,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4505), [sym_preproc_define] = STATE(4505), [sym_preproc_undef] = STATE(4505), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6801), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7121), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7121), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -602782,27 +595643,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4506] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4506), [sym_preproc_endregion] = STATE(4506), [sym_preproc_line] = STATE(4506), @@ -602812,40 +595667,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4506), [sym_preproc_define] = STATE(4506), [sym_preproc_undef] = STATE(4506), - [anon_sym_SEMI] = ACTIONS(6803), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7119), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7119), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -602858,27 +595714,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4507] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4507), [sym_preproc_endregion] = STATE(4507), [sym_preproc_line] = STATE(4507), @@ -602888,40 +595723,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4507), [sym_preproc_define] = STATE(4507), [sym_preproc_undef] = STATE(4507), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6805), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5927), + [anon_sym_LBRACK] = ACTIONS(5927), + [anon_sym_COLON] = ACTIONS(5927), + [anon_sym_COMMA] = ACTIONS(5927), + [anon_sym_RBRACK] = ACTIONS(5927), + [anon_sym_LPAREN] = ACTIONS(5927), + [anon_sym_RPAREN] = ACTIONS(5927), + [anon_sym_RBRACE] = ACTIONS(5927), + [anon_sym_LT] = ACTIONS(5929), + [anon_sym_GT] = ACTIONS(5929), + [anon_sym_in] = ACTIONS(5927), + [anon_sym_QMARK] = ACTIONS(5929), + [anon_sym_DOT] = ACTIONS(5929), + [anon_sym_EQ_GT] = ACTIONS(5927), + [anon_sym_STAR] = ACTIONS(5927), + [anon_sym_switch] = ACTIONS(5927), + [anon_sym_when] = ACTIONS(5927), + [anon_sym_DOT_DOT] = ACTIONS(5927), + [anon_sym_LT_EQ] = ACTIONS(5927), + [anon_sym_GT_EQ] = ACTIONS(5927), + [anon_sym_and] = ACTIONS(5927), + [anon_sym_or] = ACTIONS(5927), + [anon_sym_EQ_EQ] = ACTIONS(5927), + [anon_sym_BANG_EQ] = ACTIONS(5927), + [anon_sym_AMP_AMP] = ACTIONS(5927), + [anon_sym_PIPE_PIPE] = ACTIONS(5927), + [anon_sym_AMP] = ACTIONS(5929), + [sym_op_bitwise_or] = ACTIONS(5929), + [anon_sym_CARET] = ACTIONS(5927), + [sym_op_left_shift] = ACTIONS(5927), + [sym_op_right_shift] = ACTIONS(5929), + [sym_op_unsigned_right_shift] = ACTIONS(5927), + [anon_sym_PLUS] = ACTIONS(5929), + [anon_sym_DASH] = ACTIONS(5929), + [sym_op_divide] = ACTIONS(5929), + [sym_op_modulo] = ACTIONS(5927), + [sym_op_coalescing] = ACTIONS(5927), + [anon_sym_BANG] = ACTIONS(5929), + [anon_sym_PLUS_PLUS] = ACTIONS(5927), + [anon_sym_DASH_DASH] = ACTIONS(5927), + [anon_sym_on] = ACTIONS(5927), + [anon_sym_equals] = ACTIONS(5927), + [anon_sym_by] = ACTIONS(5927), + [anon_sym_as] = ACTIONS(5927), + [anon_sym_is] = ACTIONS(5927), + [anon_sym_DASH_GT] = ACTIONS(5927), + [anon_sym_with] = ACTIONS(5927), + [aux_sym_preproc_if_token3] = ACTIONS(5927), + [aux_sym_preproc_else_token1] = ACTIONS(5927), + [aux_sym_preproc_elif_token1] = ACTIONS(5927), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -602934,27 +595785,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4508] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4508), [sym_preproc_endregion] = STATE(4508), [sym_preproc_line] = STATE(4508), @@ -602964,40 +595809,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4508), [sym_preproc_define] = STATE(4508), [sym_preproc_undef] = STATE(4508), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6807), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7070), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7070), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -603010,27 +595856,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4509] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4509), [sym_preproc_endregion] = STATE(4509), [sym_preproc_line] = STATE(4509), @@ -603040,40 +595880,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4509), [sym_preproc_define] = STATE(4509), [sym_preproc_undef] = STATE(4509), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6809), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_on] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -603086,27 +595927,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4510] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(5088), + [sym_initializer_expression] = STATE(5318), [sym_preproc_region] = STATE(4510), [sym_preproc_endregion] = STATE(4510), [sym_preproc_line] = STATE(4510), @@ -603116,40 +595938,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4510), [sym_preproc_define] = STATE(4510), [sym_preproc_undef] = STATE(4510), - [anon_sym_SEMI] = ACTIONS(6811), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(5500), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(5504), + [anon_sym_GT] = ACTIONS(5504), + [anon_sym_where] = ACTIONS(5500), + [anon_sym_QMARK] = ACTIONS(5504), + [anon_sym_DOT] = ACTIONS(5504), + [anon_sym_STAR] = ACTIONS(5500), + [anon_sym_switch] = ACTIONS(5500), + [anon_sym_DOT_DOT] = ACTIONS(5500), + [anon_sym_LT_EQ] = ACTIONS(5500), + [anon_sym_GT_EQ] = ACTIONS(5500), + [anon_sym_and] = ACTIONS(5500), + [anon_sym_or] = ACTIONS(5504), + [anon_sym_EQ_EQ] = ACTIONS(5500), + [anon_sym_BANG_EQ] = ACTIONS(5500), + [anon_sym_AMP_AMP] = ACTIONS(5500), + [anon_sym_PIPE_PIPE] = ACTIONS(5500), + [anon_sym_AMP] = ACTIONS(5504), + [sym_op_bitwise_or] = ACTIONS(5504), + [anon_sym_CARET] = ACTIONS(5500), + [sym_op_left_shift] = ACTIONS(5500), + [sym_op_right_shift] = ACTIONS(5504), + [sym_op_unsigned_right_shift] = ACTIONS(5500), + [anon_sym_PLUS] = ACTIONS(5504), + [anon_sym_DASH] = ACTIONS(5504), + [sym_op_divide] = ACTIONS(5504), + [sym_op_modulo] = ACTIONS(5500), + [sym_op_coalescing] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5504), + [anon_sym_PLUS_PLUS] = ACTIONS(5500), + [anon_sym_DASH_DASH] = ACTIONS(5500), + [anon_sym_from] = ACTIONS(5500), + [anon_sym_into] = ACTIONS(5500), + [anon_sym_join] = ACTIONS(5500), + [anon_sym_let] = ACTIONS(5500), + [anon_sym_orderby] = ACTIONS(5500), + [anon_sym_ascending] = ACTIONS(5500), + [anon_sym_descending] = ACTIONS(5500), + [anon_sym_group] = ACTIONS(5500), + [anon_sym_select] = ACTIONS(5500), + [anon_sym_as] = ACTIONS(5504), + [anon_sym_is] = ACTIONS(5500), + [anon_sym_DASH_GT] = ACTIONS(5500), + [anon_sym_with] = ACTIONS(5500), + [sym_grit_metavariable] = ACTIONS(5500), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -603162,27 +595998,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4511] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4511), [sym_preproc_endregion] = STATE(4511), [sym_preproc_line] = STATE(4511), @@ -603192,40 +596022,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4511), [sym_preproc_define] = STATE(4511), [sym_preproc_undef] = STATE(4511), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_in] = ACTIONS(4778), - [anon_sym_QMARK] = ACTIONS(6553), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6501), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6555), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6557), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7117), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7102), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(7104), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_on] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(7094), + [anon_sym_is] = ACTIONS(7096), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -603238,27 +596069,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4512] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4512), [sym_preproc_endregion] = STATE(4512), [sym_preproc_line] = STATE(4512), @@ -603268,40 +596078,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4512), [sym_preproc_define] = STATE(4512), [sym_preproc_undef] = STATE(4512), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(5879), + [anon_sym_LBRACK] = ACTIONS(5879), + [anon_sym_COLON] = ACTIONS(5879), + [anon_sym_COMMA] = ACTIONS(5879), + [anon_sym_RBRACK] = ACTIONS(5879), + [anon_sym_LPAREN] = ACTIONS(5879), + [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_RBRACE] = ACTIONS(5879), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_in] = ACTIONS(5879), + [anon_sym_QMARK] = ACTIONS(5881), + [anon_sym_DOT] = ACTIONS(5881), + [anon_sym_EQ_GT] = ACTIONS(5879), + [anon_sym_STAR] = ACTIONS(5879), + [anon_sym_switch] = ACTIONS(5879), + [anon_sym_when] = ACTIONS(5879), + [anon_sym_DOT_DOT] = ACTIONS(5879), + [anon_sym_LT_EQ] = ACTIONS(5879), + [anon_sym_GT_EQ] = ACTIONS(5879), + [anon_sym_and] = ACTIONS(5879), + [anon_sym_or] = ACTIONS(5879), + [anon_sym_EQ_EQ] = ACTIONS(5879), + [anon_sym_BANG_EQ] = ACTIONS(5879), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5879), + [anon_sym_AMP] = ACTIONS(5881), + [sym_op_bitwise_or] = ACTIONS(5881), + [anon_sym_CARET] = ACTIONS(5879), + [sym_op_left_shift] = ACTIONS(5879), + [sym_op_right_shift] = ACTIONS(5881), + [sym_op_unsigned_right_shift] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5881), + [sym_op_divide] = ACTIONS(5881), + [sym_op_modulo] = ACTIONS(5879), + [sym_op_coalescing] = ACTIONS(5879), + [anon_sym_BANG] = ACTIONS(5881), + [anon_sym_PLUS_PLUS] = ACTIONS(5879), + [anon_sym_DASH_DASH] = ACTIONS(5879), + [anon_sym_on] = ACTIONS(5879), + [anon_sym_equals] = ACTIONS(5879), + [anon_sym_by] = ACTIONS(5879), + [anon_sym_as] = ACTIONS(5879), + [anon_sym_is] = ACTIONS(5879), + [anon_sym_DASH_GT] = ACTIONS(5879), + [anon_sym_with] = ACTIONS(5879), + [aux_sym_preproc_if_token3] = ACTIONS(5879), + [aux_sym_preproc_else_token1] = ACTIONS(5879), + [aux_sym_preproc_elif_token1] = ACTIONS(5879), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -603314,27 +596140,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4513] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4513), [sym_preproc_endregion] = STATE(4513), [sym_preproc_line] = STATE(4513), @@ -603344,40 +596164,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4513), [sym_preproc_define] = STATE(4513), [sym_preproc_undef] = STATE(4513), - [anon_sym_SEMI] = ACTIONS(6259), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_equals] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -603399,61 +596220,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4514), [sym_preproc_define] = STATE(4514), [sym_preproc_undef] = STATE(4514), - [anon_sym_EQ] = ACTIONS(6813), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5686), - [anon_sym_PLUS_EQ] = ACTIONS(6815), - [anon_sym_DASH_EQ] = ACTIONS(6815), - [anon_sym_STAR_EQ] = ACTIONS(6815), - [anon_sym_SLASH_EQ] = ACTIONS(6815), - [anon_sym_PERCENT_EQ] = ACTIONS(6815), - [anon_sym_AMP_EQ] = ACTIONS(6815), - [anon_sym_CARET_EQ] = ACTIONS(6815), - [anon_sym_PIPE_EQ] = ACTIONS(6815), - [anon_sym_LT_LT_EQ] = ACTIONS(6815), - [anon_sym_GT_GT_EQ] = ACTIONS(6815), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6815), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6815), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_from] = ACTIONS(5684), - [anon_sym_join] = ACTIONS(5684), - [anon_sym_let] = ACTIONS(5684), - [anon_sym_orderby] = ACTIONS(5684), - [anon_sym_group] = ACTIONS(5684), - [anon_sym_select] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_EQ] = ACTIONS(7123), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7125), + [anon_sym_DASH_EQ] = ACTIONS(7125), + [anon_sym_STAR_EQ] = ACTIONS(7125), + [anon_sym_SLASH_EQ] = ACTIONS(7125), + [anon_sym_PERCENT_EQ] = ACTIONS(7125), + [anon_sym_AMP_EQ] = ACTIONS(7125), + [anon_sym_CARET_EQ] = ACTIONS(7125), + [anon_sym_PIPE_EQ] = ACTIONS(7125), + [anon_sym_LT_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_GT_EQ] = ACTIONS(7125), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7125), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7125), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_equals] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -603466,27 +596282,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4515] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4515), [sym_preproc_endregion] = STATE(4515), [sym_preproc_line] = STATE(4515), @@ -603496,40 +596291,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4515), [sym_preproc_define] = STATE(4515), [sym_preproc_undef] = STATE(4515), - [anon_sym_SEMI] = ACTIONS(6817), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [sym__identifier_token] = ACTIONS(5696), + [anon_sym_extern] = ACTIONS(5696), + [anon_sym_alias] = ACTIONS(5696), + [anon_sym_global] = ACTIONS(5696), + [anon_sym_unsafe] = ACTIONS(5696), + [anon_sym_static] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5698), + [anon_sym_public] = ACTIONS(5696), + [anon_sym_private] = ACTIONS(5696), + [anon_sym_readonly] = ACTIONS(5696), + [anon_sym_abstract] = ACTIONS(5696), + [anon_sym_async] = ACTIONS(5696), + [anon_sym_const] = ACTIONS(5696), + [anon_sym_file] = ACTIONS(5696), + [anon_sym_fixed] = ACTIONS(5696), + [anon_sym_internal] = ACTIONS(5696), + [anon_sym_new] = ACTIONS(5696), + [anon_sym_override] = ACTIONS(5696), + [anon_sym_partial] = ACTIONS(5696), + [anon_sym_protected] = ACTIONS(5696), + [anon_sym_required] = ACTIONS(5696), + [anon_sym_sealed] = ACTIONS(5696), + [anon_sym_virtual] = ACTIONS(5696), + [anon_sym_volatile] = ACTIONS(5696), + [anon_sym_where] = ACTIONS(5696), + [anon_sym_notnull] = ACTIONS(5696), + [anon_sym_unmanaged] = ACTIONS(5696), + [sym_accessor_get] = ACTIONS(5696), + [sym_accessor_set] = ACTIONS(5696), + [sym_accessor_add] = ACTIONS(5696), + [sym_accessor_remove] = ACTIONS(5696), + [sym_accessor_init] = ACTIONS(5696), + [anon_sym_scoped] = ACTIONS(5696), + [anon_sym_var] = ACTIONS(5696), + [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), + [sym_grit_metavariable] = ACTIONS(5698), + [aux_sym_preproc_if_token1] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -603542,27 +596353,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4516] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4516), [sym_preproc_endregion] = STATE(4516), [sym_preproc_line] = STATE(4516), @@ -603572,40 +596377,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4516), [sym_preproc_define] = STATE(4516), [sym_preproc_undef] = STATE(4516), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7127), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7127), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -603618,27 +596424,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4517] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4517), [sym_preproc_endregion] = STATE(4517), [sym_preproc_line] = STATE(4517), @@ -603648,40 +596448,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4517), [sym_preproc_define] = STATE(4517), [sym_preproc_undef] = STATE(4517), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6819), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7129), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7129), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -603694,27 +596495,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4518] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1211), - [sym_op_lte] = STATE(1211), - [sym_op_eq] = STATE(1210), - [sym_op_neq] = STATE(1210), - [sym_op_gt] = STATE(1211), - [sym_op_gte] = STATE(1211), - [sym_op_and] = STATE(1209), - [sym_op_or] = STATE(1208), - [sym_op_bitwise_and] = STATE(1207), - [sym_op_bitwise_or] = STATE(1202), - [sym_op_bitwise_xor] = STATE(1201), - [sym_op_left_shift] = STATE(1200), - [sym_op_right_shift] = STATE(1200), - [sym_op_unsigned_right_shift] = STATE(1200), - [sym_op_plus] = STATE(1198), - [sym_op_minus] = STATE(1198), - [sym_op_multiply] = STATE(1197), - [sym_op_divide] = STATE(1197), - [sym_op_modulo] = STATE(1197), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4518), [sym_preproc_endregion] = STATE(4518), [sym_preproc_line] = STATE(4518), @@ -603724,40 +596519,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4518), [sym_preproc_define] = STATE(4518), [sym_preproc_undef] = STATE(4518), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_on] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -603770,27 +596566,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4519] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4519), [sym_preproc_endregion] = STATE(4519), [sym_preproc_line] = STATE(4519), @@ -603800,40 +596590,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4519), [sym_preproc_define] = STATE(4519), [sym_preproc_undef] = STATE(4519), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6821), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_on] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -603846,27 +596637,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4520] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4520), [sym_preproc_endregion] = STATE(4520), [sym_preproc_line] = STATE(4520), @@ -603876,40 +596646,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4520), [sym_preproc_define] = STATE(4520), [sym_preproc_undef] = STATE(4520), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6839), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_COLON] = ACTIONS(6839), + [anon_sym_COMMA] = ACTIONS(6839), + [anon_sym_RBRACK] = ACTIONS(6839), + [anon_sym_LPAREN] = ACTIONS(6839), + [anon_sym_RPAREN] = ACTIONS(6839), + [anon_sym_RBRACE] = ACTIONS(6839), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_in] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6841), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_EQ_GT] = ACTIONS(6839), + [anon_sym_STAR] = ACTIONS(6839), + [anon_sym_switch] = ACTIONS(6839), + [anon_sym_when] = ACTIONS(6839), + [anon_sym_DOT_DOT] = ACTIONS(6839), + [anon_sym_LT_EQ] = ACTIONS(6839), + [anon_sym_GT_EQ] = ACTIONS(6839), + [anon_sym_and] = ACTIONS(6839), + [anon_sym_or] = ACTIONS(6839), + [anon_sym_EQ_EQ] = ACTIONS(6839), + [anon_sym_BANG_EQ] = ACTIONS(6839), + [anon_sym_AMP_AMP] = ACTIONS(6839), + [anon_sym_PIPE_PIPE] = ACTIONS(6839), + [anon_sym_AMP] = ACTIONS(6841), + [sym_op_bitwise_or] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6839), + [sym_op_left_shift] = ACTIONS(6839), + [sym_op_right_shift] = ACTIONS(6841), + [sym_op_unsigned_right_shift] = ACTIONS(6839), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_DASH] = ACTIONS(6841), + [sym_op_divide] = ACTIONS(6841), + [sym_op_modulo] = ACTIONS(6839), + [sym_op_coalescing] = ACTIONS(6839), + [anon_sym_BANG] = ACTIONS(6841), + [anon_sym_PLUS_PLUS] = ACTIONS(6839), + [anon_sym_DASH_DASH] = ACTIONS(6839), + [anon_sym_on] = ACTIONS(6839), + [anon_sym_equals] = ACTIONS(6839), + [anon_sym_by] = ACTIONS(6839), + [anon_sym_as] = ACTIONS(6839), + [anon_sym_is] = ACTIONS(6839), + [anon_sym_DASH_GT] = ACTIONS(6839), + [anon_sym_with] = ACTIONS(6839), + [aux_sym_preproc_if_token3] = ACTIONS(6839), + [aux_sym_preproc_else_token1] = ACTIONS(6839), + [aux_sym_preproc_elif_token1] = ACTIONS(6839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -603922,27 +596708,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4521] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4521), [sym_preproc_endregion] = STATE(4521), [sym_preproc_line] = STATE(4521), @@ -603952,40 +596732,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4521), [sym_preproc_define] = STATE(4521), [sym_preproc_undef] = STATE(4521), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4766), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_CARET] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_GT_GT_GT] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), - [anon_sym_GT_EQ] = ACTIONS(4766), - [anon_sym_LT_EQ] = ACTIONS(4766), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4766), - [anon_sym_DOT_DOT] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym_op_coalescing] = ACTIONS(4766), - [anon_sym_equals] = ACTIONS(4766), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4766), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4766), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7117), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7102), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(7104), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_on] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(7094), + [anon_sym_is] = ACTIONS(7096), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -603998,27 +596779,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4522] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4522), [sym_preproc_endregion] = STATE(4522), [sym_preproc_line] = STATE(4522), @@ -604028,40 +596803,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4522), [sym_preproc_define] = STATE(4522), [sym_preproc_undef] = STATE(4522), - [anon_sym_SEMI] = ACTIONS(6825), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7117), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7102), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(7104), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_on] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(7094), + [anon_sym_is] = ACTIONS(7096), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -604074,27 +596850,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4523] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4523), [sym_preproc_endregion] = STATE(4523), [sym_preproc_line] = STATE(4523), @@ -604104,40 +596874,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4523), [sym_preproc_define] = STATE(4523), [sym_preproc_undef] = STATE(4523), - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7135), + [anon_sym_is] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -604150,27 +596921,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4524] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4524), [sym_preproc_endregion] = STATE(4524), [sym_preproc_line] = STATE(4524), @@ -604180,40 +596945,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4524), [sym_preproc_define] = STATE(4524), [sym_preproc_undef] = STATE(4524), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6827), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7052), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5296), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7056), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(7066), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7068), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -604226,27 +596992,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4525] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), [sym_preproc_region] = STATE(4525), [sym_preproc_endregion] = STATE(4525), [sym_preproc_line] = STATE(4525), @@ -604256,40 +597001,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4525), [sym_preproc_define] = STATE(4525), [sym_preproc_undef] = STATE(4525), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_QMARK] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4752), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_CARET] = ACTIONS(4752), - [anon_sym_PIPE] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4752), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_GT_GT_GT] = ACTIONS(4752), - [anon_sym_EQ_EQ] = ACTIONS(4752), - [anon_sym_BANG_EQ] = ACTIONS(4752), - [anon_sym_GT_EQ] = ACTIONS(4752), - [anon_sym_LT_EQ] = ACTIONS(4752), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4752), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4752), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4752), - [anon_sym_equals] = ACTIONS(4752), - [anon_sym_as] = ACTIONS(4752), - [anon_sym_is] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4752), + [anon_sym_SEMI] = ACTIONS(5508), + [anon_sym_EQ] = ACTIONS(7139), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7141), + [anon_sym_DASH_EQ] = ACTIONS(7141), + [anon_sym_STAR_EQ] = ACTIONS(7141), + [anon_sym_SLASH_EQ] = ACTIONS(7141), + [anon_sym_PERCENT_EQ] = ACTIONS(7141), + [anon_sym_AMP_EQ] = ACTIONS(7141), + [anon_sym_CARET_EQ] = ACTIONS(7141), + [anon_sym_PIPE_EQ] = ACTIONS(7141), + [anon_sym_LT_LT_EQ] = ACTIONS(7141), + [anon_sym_GT_GT_EQ] = ACTIONS(7141), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7141), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7141), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [aux_sym_preproc_if_token3] = ACTIONS(5508), + [aux_sym_preproc_else_token1] = ACTIONS(5508), + [aux_sym_preproc_elif_token1] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -604302,27 +597063,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4526] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), [sym_preproc_region] = STATE(4526), [sym_preproc_endregion] = STATE(4526), [sym_preproc_line] = STATE(4526), @@ -604332,40 +597072,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4526), [sym_preproc_define] = STATE(4526), [sym_preproc_undef] = STATE(4526), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6683), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6685), - [anon_sym_is] = ACTIONS(6687), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [sym__identifier_token] = ACTIONS(5202), + [anon_sym_extern] = ACTIONS(5202), + [anon_sym_alias] = ACTIONS(5202), + [anon_sym_global] = ACTIONS(5202), + [anon_sym_unsafe] = ACTIONS(5202), + [anon_sym_static] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_public] = ACTIONS(5202), + [anon_sym_private] = ACTIONS(5202), + [anon_sym_readonly] = ACTIONS(5202), + [anon_sym_abstract] = ACTIONS(5202), + [anon_sym_async] = ACTIONS(5202), + [anon_sym_const] = ACTIONS(5202), + [anon_sym_file] = ACTIONS(5202), + [anon_sym_fixed] = ACTIONS(5202), + [anon_sym_internal] = ACTIONS(5202), + [anon_sym_new] = ACTIONS(5202), + [anon_sym_override] = ACTIONS(5202), + [anon_sym_partial] = ACTIONS(5202), + [anon_sym_protected] = ACTIONS(5202), + [anon_sym_required] = ACTIONS(5202), + [anon_sym_sealed] = ACTIONS(5202), + [anon_sym_virtual] = ACTIONS(5202), + [anon_sym_volatile] = ACTIONS(5202), + [anon_sym_where] = ACTIONS(5202), + [anon_sym_notnull] = ACTIONS(5202), + [anon_sym_unmanaged] = ACTIONS(5202), + [sym_accessor_get] = ACTIONS(5202), + [sym_accessor_set] = ACTIONS(5202), + [sym_accessor_add] = ACTIONS(5202), + [sym_accessor_remove] = ACTIONS(5202), + [sym_accessor_init] = ACTIONS(5202), + [anon_sym_scoped] = ACTIONS(5202), + [anon_sym_var] = ACTIONS(5202), + [anon_sym_yield] = ACTIONS(5202), + [anon_sym_when] = ACTIONS(5202), + [anon_sym_from] = ACTIONS(5202), + [anon_sym_into] = ACTIONS(5202), + [anon_sym_join] = ACTIONS(5202), + [anon_sym_on] = ACTIONS(5202), + [anon_sym_equals] = ACTIONS(5202), + [anon_sym_let] = ACTIONS(5202), + [anon_sym_orderby] = ACTIONS(5202), + [anon_sym_ascending] = ACTIONS(5202), + [anon_sym_descending] = ACTIONS(5202), + [anon_sym_group] = ACTIONS(5202), + [anon_sym_by] = ACTIONS(5202), + [anon_sym_select] = ACTIONS(5202), + [sym_grit_metavariable] = ACTIONS(5204), + [aux_sym_preproc_if_token1] = ACTIONS(5204), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -604378,27 +597134,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4527] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4527), [sym_preproc_endregion] = STATE(4527), [sym_preproc_line] = STATE(4527), @@ -604408,40 +597143,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4527), [sym_preproc_define] = STATE(4527), [sym_preproc_undef] = STATE(4527), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6829), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5753), + [anon_sym_LBRACK] = ACTIONS(5753), + [anon_sym_COLON] = ACTIONS(5753), + [anon_sym_COMMA] = ACTIONS(5753), + [anon_sym_RBRACK] = ACTIONS(5753), + [anon_sym_LPAREN] = ACTIONS(5753), + [anon_sym_RPAREN] = ACTIONS(5753), + [anon_sym_RBRACE] = ACTIONS(5753), + [anon_sym_LT] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5755), + [anon_sym_in] = ACTIONS(5753), + [anon_sym_QMARK] = ACTIONS(5755), + [anon_sym_DOT] = ACTIONS(5755), + [anon_sym_EQ_GT] = ACTIONS(5753), + [anon_sym_STAR] = ACTIONS(5753), + [anon_sym_switch] = ACTIONS(5753), + [anon_sym_when] = ACTIONS(5753), + [anon_sym_DOT_DOT] = ACTIONS(5753), + [anon_sym_LT_EQ] = ACTIONS(5753), + [anon_sym_GT_EQ] = ACTIONS(5753), + [anon_sym_and] = ACTIONS(5753), + [anon_sym_or] = ACTIONS(5753), + [anon_sym_EQ_EQ] = ACTIONS(5753), + [anon_sym_BANG_EQ] = ACTIONS(5753), + [anon_sym_AMP_AMP] = ACTIONS(5753), + [anon_sym_PIPE_PIPE] = ACTIONS(5753), + [anon_sym_AMP] = ACTIONS(5755), + [sym_op_bitwise_or] = ACTIONS(5755), + [anon_sym_CARET] = ACTIONS(5753), + [sym_op_left_shift] = ACTIONS(5753), + [sym_op_right_shift] = ACTIONS(5755), + [sym_op_unsigned_right_shift] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [sym_op_divide] = ACTIONS(5755), + [sym_op_modulo] = ACTIONS(5753), + [sym_op_coalescing] = ACTIONS(5753), + [anon_sym_BANG] = ACTIONS(5755), + [anon_sym_PLUS_PLUS] = ACTIONS(5753), + [anon_sym_DASH_DASH] = ACTIONS(5753), + [anon_sym_on] = ACTIONS(5753), + [anon_sym_equals] = ACTIONS(5753), + [anon_sym_by] = ACTIONS(5753), + [anon_sym_as] = ACTIONS(5753), + [anon_sym_is] = ACTIONS(5753), + [anon_sym_DASH_GT] = ACTIONS(5753), + [anon_sym_with] = ACTIONS(5753), + [aux_sym_preproc_if_token3] = ACTIONS(5753), + [aux_sym_preproc_else_token1] = ACTIONS(5753), + [aux_sym_preproc_elif_token1] = ACTIONS(5753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -604454,27 +597205,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4528] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), [sym_preproc_region] = STATE(4528), [sym_preproc_endregion] = STATE(4528), [sym_preproc_line] = STATE(4528), @@ -604484,40 +597214,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4528), [sym_preproc_define] = STATE(4528), [sym_preproc_undef] = STATE(4528), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6685), - [anon_sym_is] = ACTIONS(6687), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6827), + [anon_sym_LBRACK] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(6827), + [anon_sym_COMMA] = ACTIONS(6827), + [anon_sym_RBRACK] = ACTIONS(6827), + [anon_sym_LPAREN] = ACTIONS(6827), + [anon_sym_RPAREN] = ACTIONS(6827), + [anon_sym_RBRACE] = ACTIONS(6827), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_in] = ACTIONS(6827), + [anon_sym_QMARK] = ACTIONS(6829), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_EQ_GT] = ACTIONS(6827), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_switch] = ACTIONS(6827), + [anon_sym_when] = ACTIONS(6827), + [anon_sym_DOT_DOT] = ACTIONS(6827), + [anon_sym_LT_EQ] = ACTIONS(6827), + [anon_sym_GT_EQ] = ACTIONS(6827), + [anon_sym_and] = ACTIONS(6827), + [anon_sym_or] = ACTIONS(6827), + [anon_sym_EQ_EQ] = ACTIONS(6827), + [anon_sym_BANG_EQ] = ACTIONS(6827), + [anon_sym_AMP_AMP] = ACTIONS(6827), + [anon_sym_PIPE_PIPE] = ACTIONS(6827), + [anon_sym_AMP] = ACTIONS(6829), + [sym_op_bitwise_or] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6827), + [sym_op_left_shift] = ACTIONS(6827), + [sym_op_right_shift] = ACTIONS(6829), + [sym_op_unsigned_right_shift] = ACTIONS(6827), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_DASH] = ACTIONS(6829), + [sym_op_divide] = ACTIONS(6829), + [sym_op_modulo] = ACTIONS(6827), + [sym_op_coalescing] = ACTIONS(6827), + [anon_sym_BANG] = ACTIONS(6829), + [anon_sym_PLUS_PLUS] = ACTIONS(6827), + [anon_sym_DASH_DASH] = ACTIONS(6827), + [anon_sym_on] = ACTIONS(6827), + [anon_sym_equals] = ACTIONS(6827), + [anon_sym_by] = ACTIONS(6827), + [anon_sym_as] = ACTIONS(6827), + [anon_sym_is] = ACTIONS(6827), + [anon_sym_DASH_GT] = ACTIONS(6827), + [anon_sym_with] = ACTIONS(6827), + [aux_sym_preproc_if_token3] = ACTIONS(6827), + [aux_sym_preproc_else_token1] = ACTIONS(6827), + [aux_sym_preproc_elif_token1] = ACTIONS(6827), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -604530,27 +597276,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4529] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), [sym_preproc_region] = STATE(4529), [sym_preproc_endregion] = STATE(4529), [sym_preproc_line] = STATE(4529), @@ -604560,40 +597285,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4529), [sym_preproc_define] = STATE(4529), [sym_preproc_undef] = STATE(4529), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6685), - [anon_sym_is] = ACTIONS(6687), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6827), + [anon_sym_LBRACK] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(6827), + [anon_sym_COMMA] = ACTIONS(6827), + [anon_sym_RBRACK] = ACTIONS(6827), + [anon_sym_LPAREN] = ACTIONS(6827), + [anon_sym_RPAREN] = ACTIONS(6827), + [anon_sym_RBRACE] = ACTIONS(6827), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_in] = ACTIONS(6827), + [anon_sym_QMARK] = ACTIONS(6829), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_EQ_GT] = ACTIONS(6827), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_switch] = ACTIONS(6827), + [anon_sym_when] = ACTIONS(6827), + [anon_sym_DOT_DOT] = ACTIONS(6827), + [anon_sym_LT_EQ] = ACTIONS(6827), + [anon_sym_GT_EQ] = ACTIONS(6827), + [anon_sym_and] = ACTIONS(6827), + [anon_sym_or] = ACTIONS(6827), + [anon_sym_EQ_EQ] = ACTIONS(6827), + [anon_sym_BANG_EQ] = ACTIONS(6827), + [anon_sym_AMP_AMP] = ACTIONS(6827), + [anon_sym_PIPE_PIPE] = ACTIONS(6827), + [anon_sym_AMP] = ACTIONS(6829), + [sym_op_bitwise_or] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6827), + [sym_op_left_shift] = ACTIONS(6827), + [sym_op_right_shift] = ACTIONS(6829), + [sym_op_unsigned_right_shift] = ACTIONS(6827), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_DASH] = ACTIONS(6829), + [sym_op_divide] = ACTIONS(6829), + [sym_op_modulo] = ACTIONS(6827), + [sym_op_coalescing] = ACTIONS(6827), + [anon_sym_BANG] = ACTIONS(6829), + [anon_sym_PLUS_PLUS] = ACTIONS(6827), + [anon_sym_DASH_DASH] = ACTIONS(6827), + [anon_sym_on] = ACTIONS(6827), + [anon_sym_equals] = ACTIONS(6827), + [anon_sym_by] = ACTIONS(6827), + [anon_sym_as] = ACTIONS(6827), + [anon_sym_is] = ACTIONS(6827), + [anon_sym_DASH_GT] = ACTIONS(6827), + [anon_sym_with] = ACTIONS(6827), + [aux_sym_preproc_if_token3] = ACTIONS(6827), + [aux_sym_preproc_else_token1] = ACTIONS(6827), + [aux_sym_preproc_elif_token1] = ACTIONS(6827), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -604606,27 +597347,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4530] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), [sym_preproc_region] = STATE(4530), [sym_preproc_endregion] = STATE(4530), [sym_preproc_line] = STATE(4530), @@ -604636,40 +597356,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4530), [sym_preproc_define] = STATE(4530), [sym_preproc_undef] = STATE(4530), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6685), - [anon_sym_is] = ACTIONS(6687), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(6823), + [anon_sym_COLON] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RBRACK] = ACTIONS(6823), + [anon_sym_LPAREN] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_RBRACE] = ACTIONS(6823), + [anon_sym_LT] = ACTIONS(6825), + [anon_sym_GT] = ACTIONS(6825), + [anon_sym_in] = ACTIONS(6823), + [anon_sym_QMARK] = ACTIONS(6825), + [anon_sym_DOT] = ACTIONS(6825), + [anon_sym_EQ_GT] = ACTIONS(6823), + [anon_sym_STAR] = ACTIONS(6823), + [anon_sym_switch] = ACTIONS(6823), + [anon_sym_when] = ACTIONS(6823), + [anon_sym_DOT_DOT] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(6825), + [sym_op_bitwise_or] = ACTIONS(6825), + [anon_sym_CARET] = ACTIONS(6823), + [sym_op_left_shift] = ACTIONS(6823), + [sym_op_right_shift] = ACTIONS(6825), + [sym_op_unsigned_right_shift] = ACTIONS(6823), + [anon_sym_PLUS] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6825), + [sym_op_divide] = ACTIONS(6825), + [sym_op_modulo] = ACTIONS(6823), + [sym_op_coalescing] = ACTIONS(6823), + [anon_sym_BANG] = ACTIONS(6825), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_on] = ACTIONS(6823), + [anon_sym_equals] = ACTIONS(6823), + [anon_sym_by] = ACTIONS(6823), + [anon_sym_as] = ACTIONS(6823), + [anon_sym_is] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [anon_sym_with] = ACTIONS(6823), + [aux_sym_preproc_if_token3] = ACTIONS(6823), + [aux_sym_preproc_else_token1] = ACTIONS(6823), + [aux_sym_preproc_elif_token1] = ACTIONS(6823), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -604682,27 +597418,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4531] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4531), [sym_preproc_endregion] = STATE(4531), [sym_preproc_line] = STATE(4531), @@ -604712,40 +597442,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4531), [sym_preproc_define] = STATE(4531), [sym_preproc_undef] = STATE(4531), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6685), - [anon_sym_is] = ACTIONS(6687), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6879), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(6879), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -604758,27 +597489,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4532] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), [sym_preproc_region] = STATE(4532), [sym_preproc_endregion] = STATE(4532), [sym_preproc_line] = STATE(4532), @@ -604788,40 +597498,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4532), [sym_preproc_define] = STATE(4532), [sym_preproc_undef] = STATE(4532), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_GT_GT_GT] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [sym_op_coalescing] = ACTIONS(1435), - [anon_sym_equals] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(6817), + [anon_sym_LBRACK] = ACTIONS(6817), + [anon_sym_COLON] = ACTIONS(6817), + [anon_sym_COMMA] = ACTIONS(6817), + [anon_sym_RBRACK] = ACTIONS(6817), + [anon_sym_LPAREN] = ACTIONS(6817), + [anon_sym_RPAREN] = ACTIONS(6817), + [anon_sym_RBRACE] = ACTIONS(6817), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_in] = ACTIONS(6817), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_EQ_GT] = ACTIONS(6817), + [anon_sym_STAR] = ACTIONS(6817), + [anon_sym_switch] = ACTIONS(6817), + [anon_sym_when] = ACTIONS(6817), + [anon_sym_DOT_DOT] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_and] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6817), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6817), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP] = ACTIONS(6819), + [sym_op_bitwise_or] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6817), + [sym_op_left_shift] = ACTIONS(6817), + [sym_op_right_shift] = ACTIONS(6819), + [sym_op_unsigned_right_shift] = ACTIONS(6817), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6819), + [sym_op_divide] = ACTIONS(6819), + [sym_op_modulo] = ACTIONS(6817), + [sym_op_coalescing] = ACTIONS(6817), + [anon_sym_BANG] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_on] = ACTIONS(6817), + [anon_sym_equals] = ACTIONS(6817), + [anon_sym_by] = ACTIONS(6817), + [anon_sym_as] = ACTIONS(6817), + [anon_sym_is] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6817), + [anon_sym_with] = ACTIONS(6817), + [aux_sym_preproc_if_token3] = ACTIONS(6817), + [aux_sym_preproc_else_token1] = ACTIONS(6817), + [aux_sym_preproc_elif_token1] = ACTIONS(6817), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -604834,27 +597560,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4533] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4533), [sym_preproc_endregion] = STATE(4533), [sym_preproc_line] = STATE(4533), @@ -604864,40 +597584,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4533), [sym_preproc_define] = STATE(4533), [sym_preproc_undef] = STATE(4533), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6831), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7052), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7056), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(7066), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7068), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -604910,27 +597631,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4534] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4534), [sym_preproc_endregion] = STATE(4534), [sym_preproc_line] = STATE(4534), @@ -604940,40 +597655,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4534), [sym_preproc_define] = STATE(4534), [sym_preproc_undef] = STATE(4534), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7052), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7056), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(7066), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7068), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -604986,27 +597702,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4535] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4535), [sym_preproc_endregion] = STATE(4535), [sym_preproc_line] = STATE(4535), @@ -605016,40 +597726,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4535), [sym_preproc_define] = STATE(4535), [sym_preproc_undef] = STATE(4535), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6685), - [anon_sym_is] = ACTIONS(6687), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7143), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7145), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(7147), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_by] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(7135), + [anon_sym_is] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -605062,27 +597773,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4536] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), [sym_preproc_region] = STATE(4536), [sym_preproc_endregion] = STATE(4536), [sym_preproc_line] = STATE(4536), @@ -605092,40 +597782,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4536), [sym_preproc_define] = STATE(4536), [sym_preproc_undef] = STATE(4536), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6685), - [anon_sym_is] = ACTIONS(6687), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5947), + [anon_sym_LBRACK] = ACTIONS(5947), + [anon_sym_COLON] = ACTIONS(5947), + [anon_sym_COMMA] = ACTIONS(5947), + [anon_sym_RBRACK] = ACTIONS(5947), + [anon_sym_LPAREN] = ACTIONS(5947), + [anon_sym_RPAREN] = ACTIONS(5947), + [anon_sym_RBRACE] = ACTIONS(5947), + [anon_sym_LT] = ACTIONS(5949), + [anon_sym_GT] = ACTIONS(5949), + [anon_sym_in] = ACTIONS(5947), + [anon_sym_QMARK] = ACTIONS(5949), + [anon_sym_DOT] = ACTIONS(5949), + [anon_sym_EQ_GT] = ACTIONS(5947), + [anon_sym_STAR] = ACTIONS(5947), + [anon_sym_switch] = ACTIONS(5947), + [anon_sym_when] = ACTIONS(5947), + [anon_sym_DOT_DOT] = ACTIONS(5947), + [anon_sym_LT_EQ] = ACTIONS(5947), + [anon_sym_GT_EQ] = ACTIONS(5947), + [anon_sym_and] = ACTIONS(5947), + [anon_sym_or] = ACTIONS(5947), + [anon_sym_EQ_EQ] = ACTIONS(5947), + [anon_sym_BANG_EQ] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [anon_sym_AMP] = ACTIONS(5949), + [sym_op_bitwise_or] = ACTIONS(5949), + [anon_sym_CARET] = ACTIONS(5947), + [sym_op_left_shift] = ACTIONS(5947), + [sym_op_right_shift] = ACTIONS(5949), + [sym_op_unsigned_right_shift] = ACTIONS(5947), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [sym_op_divide] = ACTIONS(5949), + [sym_op_modulo] = ACTIONS(5947), + [sym_op_coalescing] = ACTIONS(5947), + [anon_sym_BANG] = ACTIONS(5949), + [anon_sym_PLUS_PLUS] = ACTIONS(5947), + [anon_sym_DASH_DASH] = ACTIONS(5947), + [anon_sym_on] = ACTIONS(5947), + [anon_sym_equals] = ACTIONS(5947), + [anon_sym_by] = ACTIONS(5947), + [anon_sym_as] = ACTIONS(5947), + [anon_sym_is] = ACTIONS(5947), + [anon_sym_DASH_GT] = ACTIONS(5947), + [anon_sym_with] = ACTIONS(5947), + [aux_sym_preproc_if_token3] = ACTIONS(5947), + [aux_sym_preproc_else_token1] = ACTIONS(5947), + [aux_sym_preproc_elif_token1] = ACTIONS(5947), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -605138,27 +597844,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4537] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4537), [sym_preproc_endregion] = STATE(4537), [sym_preproc_line] = STATE(4537), @@ -605168,40 +597868,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4537), [sym_preproc_define] = STATE(4537), [sym_preproc_undef] = STATE(4537), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_by] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -605214,27 +597915,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4538] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), [sym_preproc_region] = STATE(4538), [sym_preproc_endregion] = STATE(4538), [sym_preproc_line] = STATE(4538), @@ -605244,40 +597924,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4538), [sym_preproc_define] = STATE(4538), [sym_preproc_undef] = STATE(4538), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5839), + [anon_sym_LBRACK] = ACTIONS(5839), + [anon_sym_COLON] = 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(5839), + [anon_sym_QMARK] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_EQ_GT] = ACTIONS(5839), + [anon_sym_STAR] = ACTIONS(5839), + [anon_sym_switch] = ACTIONS(5839), + [anon_sym_when] = ACTIONS(5839), + [anon_sym_DOT_DOT] = ACTIONS(5839), + [anon_sym_LT_EQ] = ACTIONS(5839), + [anon_sym_GT_EQ] = ACTIONS(5839), + [anon_sym_and] = ACTIONS(5839), + [anon_sym_or] = ACTIONS(5839), + [anon_sym_EQ_EQ] = ACTIONS(5839), + [anon_sym_BANG_EQ] = ACTIONS(5839), + [anon_sym_AMP_AMP] = ACTIONS(5839), + [anon_sym_PIPE_PIPE] = ACTIONS(5839), + [anon_sym_AMP] = ACTIONS(5841), + [sym_op_bitwise_or] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5839), + [sym_op_left_shift] = ACTIONS(5839), + [sym_op_right_shift] = ACTIONS(5841), + [sym_op_unsigned_right_shift] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [sym_op_divide] = ACTIONS(5841), + [sym_op_modulo] = ACTIONS(5839), + [sym_op_coalescing] = ACTIONS(5839), + [anon_sym_BANG] = ACTIONS(5841), + [anon_sym_PLUS_PLUS] = ACTIONS(5839), + [anon_sym_DASH_DASH] = ACTIONS(5839), + [anon_sym_on] = ACTIONS(5839), + [anon_sym_equals] = ACTIONS(5839), + [anon_sym_by] = ACTIONS(5839), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -605290,27 +597986,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4539] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), [sym_preproc_region] = STATE(4539), [sym_preproc_endregion] = STATE(4539), [sym_preproc_line] = STATE(4539), @@ -605320,40 +597995,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4539), [sym_preproc_define] = STATE(4539), [sym_preproc_undef] = STATE(4539), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_equals] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LBRACK] = ACTIONS(7042), + [anon_sym_COLON] = ACTIONS(7042), + [anon_sym_COMMA] = ACTIONS(7042), + [anon_sym_RBRACK] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7042), + [anon_sym_RPAREN] = ACTIONS(7042), + [anon_sym_RBRACE] = ACTIONS(7042), + [anon_sym_LT] = ACTIONS(7044), + [anon_sym_GT] = ACTIONS(7044), + [anon_sym_in] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [anon_sym_DOT] = ACTIONS(7044), + [anon_sym_EQ_GT] = ACTIONS(7042), + [anon_sym_STAR] = ACTIONS(7042), + [anon_sym_switch] = ACTIONS(7042), + [anon_sym_when] = ACTIONS(7042), + [anon_sym_DOT_DOT] = ACTIONS(7042), + [anon_sym_LT_EQ] = ACTIONS(7042), + [anon_sym_GT_EQ] = ACTIONS(7042), + [anon_sym_and] = ACTIONS(7042), + [anon_sym_or] = ACTIONS(7042), + [anon_sym_EQ_EQ] = ACTIONS(7042), + [anon_sym_BANG_EQ] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7044), + [sym_op_bitwise_or] = ACTIONS(7044), + [anon_sym_CARET] = ACTIONS(7042), + [sym_op_left_shift] = ACTIONS(7042), + [sym_op_right_shift] = ACTIONS(7044), + [sym_op_unsigned_right_shift] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7044), + [sym_op_divide] = ACTIONS(7044), + [sym_op_modulo] = ACTIONS(7042), + [sym_op_coalescing] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [anon_sym_PLUS_PLUS] = ACTIONS(7042), + [anon_sym_DASH_DASH] = ACTIONS(7042), + [anon_sym_on] = ACTIONS(7042), + [anon_sym_equals] = ACTIONS(7042), + [anon_sym_by] = ACTIONS(7042), + [anon_sym_as] = ACTIONS(7042), + [anon_sym_is] = ACTIONS(7042), + [anon_sym_DASH_GT] = ACTIONS(7042), + [anon_sym_with] = ACTIONS(7042), + [aux_sym_preproc_if_token3] = ACTIONS(7042), + [aux_sym_preproc_else_token1] = ACTIONS(7042), + [aux_sym_preproc_elif_token1] = ACTIONS(7042), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -605366,27 +598057,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4540] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), [sym_preproc_region] = STATE(4540), [sym_preproc_endregion] = STATE(4540), [sym_preproc_line] = STATE(4540), @@ -605396,40 +598066,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4540), [sym_preproc_define] = STATE(4540), [sym_preproc_undef] = STATE(4540), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6679), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6683), - [anon_sym_equals] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(6685), - [anon_sym_is] = ACTIONS(6687), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(6973), + [anon_sym_DOT] = ACTIONS(7149), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_and] = ACTIONS(4331), + [anon_sym_or] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -605442,27 +598128,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4541] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4541), [sym_preproc_endregion] = STATE(4541), [sym_preproc_line] = STATE(4541), @@ -605472,40 +598137,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4541), [sym_preproc_define] = STATE(4541), [sym_preproc_undef] = STATE(4541), - [anon_sym_SEMI] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_QMARK] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(7149), + [anon_sym_EQ_GT] = ACTIONS(4361), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_switch] = ACTIONS(4361), + [anon_sym_when] = ACTIONS(4361), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_and] = ACTIONS(4361), + [anon_sym_or] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4359), + [sym_op_bitwise_or] = ACTIONS(4359), + [anon_sym_CARET] = ACTIONS(4361), + [sym_op_left_shift] = ACTIONS(4361), + [sym_op_right_shift] = ACTIONS(4359), + [sym_op_unsigned_right_shift] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [sym_op_divide] = ACTIONS(4359), + [sym_op_modulo] = ACTIONS(4361), + [sym_op_coalescing] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_on] = ACTIONS(4361), + [anon_sym_equals] = ACTIONS(4361), + [anon_sym_by] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4361), + [anon_sym_DASH_GT] = ACTIONS(4361), + [anon_sym_with] = ACTIONS(4361), + [aux_sym_preproc_if_token3] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -605518,27 +598199,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4542] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4542), [sym_preproc_endregion] = STATE(4542), [sym_preproc_line] = STATE(4542), @@ -605548,40 +598223,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4542), [sym_preproc_define] = STATE(4542), [sym_preproc_undef] = STATE(4542), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4708), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6543), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -605594,27 +598270,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4543] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4543), [sym_preproc_endregion] = STATE(4543), [sym_preproc_line] = STATE(4543), @@ -605624,40 +598294,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4543), [sym_preproc_define] = STATE(4543), [sym_preproc_undef] = STATE(4543), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7143), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7145), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(7147), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_by] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(7135), + [anon_sym_is] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -605670,27 +598341,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4544] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4544), [sym_preproc_endregion] = STATE(4544), [sym_preproc_line] = STATE(4544), @@ -605700,40 +598350,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4544), [sym_preproc_define] = STATE(4544), [sym_preproc_undef] = STATE(4544), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5745), + [anon_sym_LBRACK] = ACTIONS(5745), + [anon_sym_COLON] = ACTIONS(5745), + [anon_sym_COMMA] = ACTIONS(5745), + [anon_sym_RBRACK] = ACTIONS(5745), + [anon_sym_LPAREN] = ACTIONS(5745), + [anon_sym_RPAREN] = ACTIONS(5745), + [anon_sym_RBRACE] = ACTIONS(5745), + [anon_sym_LT] = ACTIONS(5747), + [anon_sym_GT] = ACTIONS(5747), + [anon_sym_in] = ACTIONS(5745), + [anon_sym_QMARK] = ACTIONS(5747), + [anon_sym_DOT] = ACTIONS(5747), + [anon_sym_EQ_GT] = ACTIONS(5745), + [anon_sym_STAR] = ACTIONS(5745), + [anon_sym_switch] = ACTIONS(5745), + [anon_sym_when] = ACTIONS(5745), + [anon_sym_DOT_DOT] = ACTIONS(5745), + [anon_sym_LT_EQ] = ACTIONS(5745), + [anon_sym_GT_EQ] = ACTIONS(5745), + [anon_sym_and] = ACTIONS(5745), + [anon_sym_or] = ACTIONS(5745), + [anon_sym_EQ_EQ] = ACTIONS(5745), + [anon_sym_BANG_EQ] = ACTIONS(5745), + [anon_sym_AMP_AMP] = ACTIONS(5745), + [anon_sym_PIPE_PIPE] = ACTIONS(5745), + [anon_sym_AMP] = ACTIONS(5747), + [sym_op_bitwise_or] = ACTIONS(5747), + [anon_sym_CARET] = ACTIONS(5745), + [sym_op_left_shift] = ACTIONS(5745), + [sym_op_right_shift] = ACTIONS(5747), + [sym_op_unsigned_right_shift] = ACTIONS(5745), + [anon_sym_PLUS] = ACTIONS(5747), + [anon_sym_DASH] = ACTIONS(5747), + [sym_op_divide] = ACTIONS(5747), + [sym_op_modulo] = ACTIONS(5745), + [sym_op_coalescing] = ACTIONS(5745), + [anon_sym_BANG] = ACTIONS(5747), + [anon_sym_PLUS_PLUS] = ACTIONS(5745), + [anon_sym_DASH_DASH] = ACTIONS(5745), + [anon_sym_on] = ACTIONS(5745), + [anon_sym_equals] = ACTIONS(5745), + [anon_sym_by] = ACTIONS(5745), + [anon_sym_as] = ACTIONS(5745), + [anon_sym_is] = ACTIONS(5745), + [anon_sym_DASH_GT] = ACTIONS(5745), + [anon_sym_with] = ACTIONS(5745), + [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), @@ -605746,27 +598412,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4545] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4545), [sym_preproc_endregion] = STATE(4545), [sym_preproc_line] = STATE(4545), @@ -605776,40 +598421,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4545), [sym_preproc_define] = STATE(4545), [sym_preproc_undef] = STATE(4545), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [sym__identifier_token] = ACTIONS(5432), + [anon_sym_extern] = ACTIONS(5432), + [anon_sym_alias] = ACTIONS(5432), + [anon_sym_global] = ACTIONS(5432), + [anon_sym_unsafe] = ACTIONS(5432), + [anon_sym_static] = ACTIONS(5432), + [anon_sym_LBRACK] = ACTIONS(5434), + [anon_sym_public] = ACTIONS(5432), + [anon_sym_private] = ACTIONS(5432), + [anon_sym_readonly] = ACTIONS(5432), + [anon_sym_abstract] = ACTIONS(5432), + [anon_sym_async] = ACTIONS(5432), + [anon_sym_const] = ACTIONS(5432), + [anon_sym_file] = ACTIONS(5432), + [anon_sym_fixed] = ACTIONS(5432), + [anon_sym_internal] = ACTIONS(5432), + [anon_sym_new] = ACTIONS(5432), + [anon_sym_override] = ACTIONS(5432), + [anon_sym_partial] = ACTIONS(5432), + [anon_sym_protected] = ACTIONS(5432), + [anon_sym_required] = ACTIONS(5432), + [anon_sym_sealed] = ACTIONS(5432), + [anon_sym_virtual] = ACTIONS(5432), + [anon_sym_volatile] = ACTIONS(5432), + [anon_sym_where] = ACTIONS(5432), + [anon_sym_notnull] = ACTIONS(5432), + [anon_sym_unmanaged] = ACTIONS(5432), + [sym_accessor_get] = ACTIONS(5432), + [sym_accessor_set] = ACTIONS(5432), + [sym_accessor_add] = ACTIONS(5432), + [sym_accessor_remove] = ACTIONS(5432), + [sym_accessor_init] = ACTIONS(5432), + [anon_sym_scoped] = ACTIONS(5432), + [anon_sym_var] = ACTIONS(5432), + [anon_sym_yield] = ACTIONS(5432), + [anon_sym_when] = ACTIONS(5432), + [anon_sym_from] = ACTIONS(5432), + [anon_sym_into] = ACTIONS(5432), + [anon_sym_join] = ACTIONS(5432), + [anon_sym_on] = ACTIONS(5432), + [anon_sym_equals] = ACTIONS(5432), + [anon_sym_let] = ACTIONS(5432), + [anon_sym_orderby] = ACTIONS(5432), + [anon_sym_ascending] = ACTIONS(5432), + [anon_sym_descending] = ACTIONS(5432), + [anon_sym_group] = ACTIONS(5432), + [anon_sym_by] = ACTIONS(5432), + [anon_sym_select] = ACTIONS(5432), + [sym_grit_metavariable] = ACTIONS(5434), + [aux_sym_preproc_if_token1] = ACTIONS(5434), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -605822,27 +598483,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4546] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4546), [sym_preproc_endregion] = STATE(4546), [sym_preproc_line] = STATE(4546), @@ -605852,40 +598507,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4546), [sym_preproc_define] = STATE(4546), [sym_preproc_undef] = STATE(4546), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6679), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6683), - [anon_sym_equals] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(6685), - [anon_sym_is] = ACTIONS(6687), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7143), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7145), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(7147), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_by] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(7135), + [anon_sym_is] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -605898,27 +598554,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4547] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4547), [sym_preproc_endregion] = STATE(4547), [sym_preproc_line] = STATE(4547), @@ -605928,40 +598563,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4547), [sym_preproc_define] = STATE(4547), [sym_preproc_undef] = STATE(4547), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6835), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5749), + [anon_sym_LBRACK] = ACTIONS(5749), + [anon_sym_COLON] = ACTIONS(5749), + [anon_sym_COMMA] = ACTIONS(5749), + [anon_sym_RBRACK] = ACTIONS(5749), + [anon_sym_LPAREN] = ACTIONS(5749), + [anon_sym_RPAREN] = ACTIONS(5749), + [anon_sym_RBRACE] = ACTIONS(5749), + [anon_sym_LT] = ACTIONS(5751), + [anon_sym_GT] = ACTIONS(5751), + [anon_sym_in] = ACTIONS(5749), + [anon_sym_QMARK] = ACTIONS(5751), + [anon_sym_DOT] = ACTIONS(5751), + [anon_sym_EQ_GT] = ACTIONS(5749), + [anon_sym_STAR] = ACTIONS(5749), + [anon_sym_switch] = ACTIONS(5749), + [anon_sym_when] = ACTIONS(5749), + [anon_sym_DOT_DOT] = ACTIONS(5749), + [anon_sym_LT_EQ] = ACTIONS(5749), + [anon_sym_GT_EQ] = ACTIONS(5749), + [anon_sym_and] = ACTIONS(5749), + [anon_sym_or] = ACTIONS(5749), + [anon_sym_EQ_EQ] = ACTIONS(5749), + [anon_sym_BANG_EQ] = ACTIONS(5749), + [anon_sym_AMP_AMP] = ACTIONS(5749), + [anon_sym_PIPE_PIPE] = ACTIONS(5749), + [anon_sym_AMP] = ACTIONS(5751), + [sym_op_bitwise_or] = ACTIONS(5751), + [anon_sym_CARET] = ACTIONS(5749), + [sym_op_left_shift] = ACTIONS(5749), + [sym_op_right_shift] = ACTIONS(5751), + [sym_op_unsigned_right_shift] = ACTIONS(5749), + [anon_sym_PLUS] = ACTIONS(5751), + [anon_sym_DASH] = ACTIONS(5751), + [sym_op_divide] = ACTIONS(5751), + [sym_op_modulo] = ACTIONS(5749), + [sym_op_coalescing] = ACTIONS(5749), + [anon_sym_BANG] = ACTIONS(5751), + [anon_sym_PLUS_PLUS] = ACTIONS(5749), + [anon_sym_DASH_DASH] = ACTIONS(5749), + [anon_sym_on] = ACTIONS(5749), + [anon_sym_equals] = ACTIONS(5749), + [anon_sym_by] = ACTIONS(5749), + [anon_sym_as] = ACTIONS(5749), + [anon_sym_is] = ACTIONS(5749), + [anon_sym_DASH_GT] = ACTIONS(5749), + [anon_sym_with] = ACTIONS(5749), + [aux_sym_preproc_if_token3] = ACTIONS(5749), + [aux_sym_preproc_else_token1] = ACTIONS(5749), + [aux_sym_preproc_elif_token1] = ACTIONS(5749), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -605974,27 +598625,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4548] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4548), [sym_preproc_endregion] = STATE(4548), [sym_preproc_line] = STATE(4548), @@ -606004,40 +598634,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4548), [sym_preproc_define] = STATE(4548), [sym_preproc_undef] = STATE(4548), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4708), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5963), + [anon_sym_LBRACK] = ACTIONS(5963), + [anon_sym_COLON] = ACTIONS(5963), + [anon_sym_COMMA] = ACTIONS(5963), + [anon_sym_RBRACK] = ACTIONS(5963), + [anon_sym_LPAREN] = ACTIONS(5963), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_RBRACE] = ACTIONS(5963), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_in] = ACTIONS(5963), + [anon_sym_QMARK] = ACTIONS(5965), + [anon_sym_DOT] = ACTIONS(5965), + [anon_sym_EQ_GT] = ACTIONS(5963), + [anon_sym_STAR] = ACTIONS(5963), + [anon_sym_switch] = ACTIONS(5963), + [anon_sym_when] = ACTIONS(5963), + [anon_sym_DOT_DOT] = ACTIONS(5963), + [anon_sym_LT_EQ] = ACTIONS(5963), + [anon_sym_GT_EQ] = ACTIONS(5963), + [anon_sym_and] = ACTIONS(5963), + [anon_sym_or] = ACTIONS(5963), + [anon_sym_EQ_EQ] = ACTIONS(5963), + [anon_sym_BANG_EQ] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [anon_sym_AMP] = ACTIONS(5965), + [sym_op_bitwise_or] = ACTIONS(5965), + [anon_sym_CARET] = ACTIONS(5963), + [sym_op_left_shift] = ACTIONS(5963), + [sym_op_right_shift] = ACTIONS(5965), + [sym_op_unsigned_right_shift] = ACTIONS(5963), + [anon_sym_PLUS] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5965), + [sym_op_divide] = ACTIONS(5965), + [sym_op_modulo] = ACTIONS(5963), + [sym_op_coalescing] = ACTIONS(5963), + [anon_sym_BANG] = ACTIONS(5965), + [anon_sym_PLUS_PLUS] = ACTIONS(5963), + [anon_sym_DASH_DASH] = ACTIONS(5963), + [anon_sym_on] = ACTIONS(5963), + [anon_sym_equals] = ACTIONS(5963), + [anon_sym_by] = ACTIONS(5963), + [anon_sym_as] = ACTIONS(5963), + [anon_sym_is] = ACTIONS(5963), + [anon_sym_DASH_GT] = ACTIONS(5963), + [anon_sym_with] = ACTIONS(5963), + [aux_sym_preproc_if_token3] = ACTIONS(5963), + [aux_sym_preproc_else_token1] = ACTIONS(5963), + [aux_sym_preproc_elif_token1] = ACTIONS(5963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -606050,27 +598696,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4549] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4549), [sym_preproc_endregion] = STATE(4549), [sym_preproc_line] = STATE(4549), @@ -606080,40 +598720,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4549), [sym_preproc_define] = STATE(4549), [sym_preproc_undef] = STATE(4549), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6837), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7143), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7145), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(7147), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_by] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(7135), + [anon_sym_is] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -606126,27 +598767,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4550] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4550), [sym_preproc_endregion] = STATE(4550), [sym_preproc_line] = STATE(4550), @@ -606156,40 +598776,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4550), [sym_preproc_define] = STATE(4550), [sym_preproc_undef] = STATE(4550), - [anon_sym_SEMI] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6019), + [anon_sym_LBRACK] = ACTIONS(6019), + [anon_sym_COLON] = ACTIONS(6019), + [anon_sym_COMMA] = ACTIONS(6019), + [anon_sym_RBRACK] = ACTIONS(6019), + [anon_sym_LPAREN] = ACTIONS(6019), + [anon_sym_RPAREN] = ACTIONS(6019), + [anon_sym_RBRACE] = ACTIONS(6019), + [anon_sym_LT] = ACTIONS(6021), + [anon_sym_GT] = ACTIONS(6021), + [anon_sym_in] = ACTIONS(6019), + [anon_sym_QMARK] = ACTIONS(6021), + [anon_sym_DOT] = ACTIONS(6021), + [anon_sym_EQ_GT] = ACTIONS(6019), + [anon_sym_STAR] = ACTIONS(6019), + [anon_sym_switch] = ACTIONS(6019), + [anon_sym_when] = ACTIONS(6019), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_LT_EQ] = ACTIONS(6019), + [anon_sym_GT_EQ] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(6019), + [anon_sym_or] = ACTIONS(6019), + [anon_sym_EQ_EQ] = ACTIONS(6019), + [anon_sym_BANG_EQ] = ACTIONS(6019), + [anon_sym_AMP_AMP] = ACTIONS(6019), + [anon_sym_PIPE_PIPE] = ACTIONS(6019), + [anon_sym_AMP] = ACTIONS(6021), + [sym_op_bitwise_or] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6019), + [sym_op_left_shift] = ACTIONS(6019), + [sym_op_right_shift] = ACTIONS(6021), + [sym_op_unsigned_right_shift] = ACTIONS(6019), + [anon_sym_PLUS] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [sym_op_divide] = ACTIONS(6021), + [sym_op_modulo] = ACTIONS(6019), + [sym_op_coalescing] = ACTIONS(6019), + [anon_sym_BANG] = ACTIONS(6021), + [anon_sym_PLUS_PLUS] = ACTIONS(6019), + [anon_sym_DASH_DASH] = ACTIONS(6019), + [anon_sym_on] = ACTIONS(6019), + [anon_sym_equals] = ACTIONS(6019), + [anon_sym_by] = ACTIONS(6019), + [anon_sym_as] = ACTIONS(6019), + [anon_sym_is] = ACTIONS(6019), + [anon_sym_DASH_GT] = ACTIONS(6019), + [anon_sym_with] = ACTIONS(6019), + [aux_sym_preproc_if_token3] = ACTIONS(6019), + [aux_sym_preproc_else_token1] = ACTIONS(6019), + [aux_sym_preproc_elif_token1] = ACTIONS(6019), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -606202,27 +598838,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4551] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4551), [sym_preproc_endregion] = STATE(4551), [sym_preproc_line] = STATE(4551), @@ -606232,40 +598862,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4551), [sym_preproc_define] = STATE(4551), [sym_preproc_undef] = STATE(4551), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6839), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7068), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -606278,27 +598909,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4552] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4552), [sym_preproc_endregion] = STATE(4552), [sym_preproc_line] = STATE(4552), @@ -606308,40 +598933,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4552), [sym_preproc_define] = STATE(4552), [sym_preproc_undef] = STATE(4552), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7068), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -606354,27 +598980,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4553] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4553), [sym_preproc_endregion] = STATE(4553), [sym_preproc_line] = STATE(4553), @@ -606384,40 +598989,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4553), [sym_preproc_define] = STATE(4553), [sym_preproc_undef] = STATE(4553), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5861), + [anon_sym_LBRACK] = ACTIONS(5861), + [anon_sym_COLON] = ACTIONS(5861), + [anon_sym_COMMA] = ACTIONS(5861), + [anon_sym_RBRACK] = ACTIONS(5861), + [anon_sym_LPAREN] = ACTIONS(5861), + [anon_sym_RPAREN] = ACTIONS(5861), + [anon_sym_RBRACE] = ACTIONS(5861), + [anon_sym_LT] = ACTIONS(5863), + [anon_sym_GT] = ACTIONS(5863), + [anon_sym_in] = ACTIONS(5861), + [anon_sym_QMARK] = ACTIONS(5863), + [anon_sym_DOT] = ACTIONS(5863), + [anon_sym_EQ_GT] = ACTIONS(5861), + [anon_sym_STAR] = ACTIONS(5861), + [anon_sym_switch] = ACTIONS(5861), + [anon_sym_when] = ACTIONS(5861), + [anon_sym_DOT_DOT] = ACTIONS(5861), + [anon_sym_LT_EQ] = ACTIONS(5861), + [anon_sym_GT_EQ] = ACTIONS(5861), + [anon_sym_and] = ACTIONS(5861), + [anon_sym_or] = ACTIONS(5861), + [anon_sym_EQ_EQ] = ACTIONS(5861), + [anon_sym_BANG_EQ] = ACTIONS(5861), + [anon_sym_AMP_AMP] = ACTIONS(5861), + [anon_sym_PIPE_PIPE] = ACTIONS(5861), + [anon_sym_AMP] = ACTIONS(5863), + [sym_op_bitwise_or] = ACTIONS(5863), + [anon_sym_CARET] = ACTIONS(5861), + [sym_op_left_shift] = ACTIONS(5861), + [sym_op_right_shift] = ACTIONS(5863), + [sym_op_unsigned_right_shift] = ACTIONS(5861), + [anon_sym_PLUS] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5863), + [sym_op_divide] = ACTIONS(5863), + [sym_op_modulo] = ACTIONS(5861), + [sym_op_coalescing] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(5863), + [anon_sym_PLUS_PLUS] = ACTIONS(5861), + [anon_sym_DASH_DASH] = ACTIONS(5861), + [anon_sym_on] = ACTIONS(5861), + [anon_sym_equals] = ACTIONS(5861), + [anon_sym_by] = ACTIONS(5861), + [anon_sym_as] = ACTIONS(5861), + [anon_sym_is] = ACTIONS(5861), + [anon_sym_DASH_GT] = ACTIONS(5861), + [anon_sym_with] = ACTIONS(5861), + [aux_sym_preproc_if_token3] = ACTIONS(5861), + [aux_sym_preproc_else_token1] = ACTIONS(5861), + [aux_sym_preproc_elif_token1] = ACTIONS(5861), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -606430,27 +599051,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4554] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4554), [sym_preproc_endregion] = STATE(4554), [sym_preproc_line] = STATE(4554), @@ -606460,40 +599060,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4554), [sym_preproc_define] = STATE(4554), [sym_preproc_undef] = STATE(4554), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6841), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5853), + [anon_sym_LBRACK] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [anon_sym_COMMA] = ACTIONS(5853), + [anon_sym_RBRACK] = ACTIONS(5853), + [anon_sym_LPAREN] = ACTIONS(5853), + [anon_sym_RPAREN] = ACTIONS(5853), + [anon_sym_RBRACE] = ACTIONS(5853), + [anon_sym_LT] = ACTIONS(5855), + [anon_sym_GT] = ACTIONS(5855), + [anon_sym_in] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5855), + [anon_sym_DOT] = ACTIONS(5855), + [anon_sym_EQ_GT] = ACTIONS(5853), + [anon_sym_STAR] = ACTIONS(5853), + [anon_sym_switch] = ACTIONS(5853), + [anon_sym_when] = ACTIONS(5853), + [anon_sym_DOT_DOT] = ACTIONS(5853), + [anon_sym_LT_EQ] = ACTIONS(5853), + [anon_sym_GT_EQ] = ACTIONS(5853), + [anon_sym_and] = ACTIONS(5853), + [anon_sym_or] = ACTIONS(5853), + [anon_sym_EQ_EQ] = ACTIONS(5853), + [anon_sym_BANG_EQ] = ACTIONS(5853), + [anon_sym_AMP_AMP] = ACTIONS(5853), + [anon_sym_PIPE_PIPE] = ACTIONS(5853), + [anon_sym_AMP] = ACTIONS(5855), + [sym_op_bitwise_or] = ACTIONS(5855), + [anon_sym_CARET] = ACTIONS(5853), + [sym_op_left_shift] = ACTIONS(5853), + [sym_op_right_shift] = ACTIONS(5855), + [sym_op_unsigned_right_shift] = ACTIONS(5853), + [anon_sym_PLUS] = ACTIONS(5855), + [anon_sym_DASH] = ACTIONS(5855), + [sym_op_divide] = ACTIONS(5855), + [sym_op_modulo] = ACTIONS(5853), + [sym_op_coalescing] = ACTIONS(5853), + [anon_sym_BANG] = ACTIONS(5855), + [anon_sym_PLUS_PLUS] = ACTIONS(5853), + [anon_sym_DASH_DASH] = ACTIONS(5853), + [anon_sym_on] = ACTIONS(5853), + [anon_sym_equals] = ACTIONS(5853), + [anon_sym_by] = ACTIONS(5853), + [anon_sym_as] = ACTIONS(5853), + [anon_sym_is] = ACTIONS(5853), + [anon_sym_DASH_GT] = ACTIONS(5853), + [anon_sym_with] = ACTIONS(5853), + [aux_sym_preproc_if_token3] = ACTIONS(5853), + [aux_sym_preproc_else_token1] = ACTIONS(5853), + [aux_sym_preproc_elif_token1] = ACTIONS(5853), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -606506,27 +599122,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4555] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4555), [sym_preproc_endregion] = STATE(4555), [sym_preproc_line] = STATE(4555), @@ -606536,40 +599146,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4555), [sym_preproc_define] = STATE(4555), [sym_preproc_undef] = STATE(4555), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7135), + [anon_sym_is] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -606582,27 +599193,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4556] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4556), [sym_preproc_endregion] = STATE(4556), [sym_preproc_line] = STATE(4556), @@ -606612,40 +599202,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4556), [sym_preproc_define] = STATE(4556), [sym_preproc_undef] = STATE(4556), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6843), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5757), + [anon_sym_LBRACK] = ACTIONS(5757), + [anon_sym_COLON] = ACTIONS(5757), + [anon_sym_COMMA] = ACTIONS(5757), + [anon_sym_RBRACK] = ACTIONS(5757), + [anon_sym_LPAREN] = ACTIONS(5757), + [anon_sym_RPAREN] = ACTIONS(5757), + [anon_sym_RBRACE] = ACTIONS(5757), + [anon_sym_LT] = ACTIONS(5759), + [anon_sym_GT] = ACTIONS(5759), + [anon_sym_in] = ACTIONS(5757), + [anon_sym_QMARK] = ACTIONS(5759), + [anon_sym_DOT] = ACTIONS(5759), + [anon_sym_EQ_GT] = ACTIONS(5757), + [anon_sym_STAR] = ACTIONS(5757), + [anon_sym_switch] = ACTIONS(5757), + [anon_sym_when] = ACTIONS(5757), + [anon_sym_DOT_DOT] = ACTIONS(5757), + [anon_sym_LT_EQ] = ACTIONS(5757), + [anon_sym_GT_EQ] = ACTIONS(5757), + [anon_sym_and] = ACTIONS(5757), + [anon_sym_or] = ACTIONS(5757), + [anon_sym_EQ_EQ] = ACTIONS(5757), + [anon_sym_BANG_EQ] = ACTIONS(5757), + [anon_sym_AMP_AMP] = ACTIONS(5757), + [anon_sym_PIPE_PIPE] = ACTIONS(5757), + [anon_sym_AMP] = ACTIONS(5759), + [sym_op_bitwise_or] = ACTIONS(5759), + [anon_sym_CARET] = ACTIONS(5757), + [sym_op_left_shift] = ACTIONS(5757), + [sym_op_right_shift] = ACTIONS(5759), + [sym_op_unsigned_right_shift] = ACTIONS(5757), + [anon_sym_PLUS] = ACTIONS(5759), + [anon_sym_DASH] = ACTIONS(5759), + [sym_op_divide] = ACTIONS(5759), + [sym_op_modulo] = ACTIONS(5757), + [sym_op_coalescing] = ACTIONS(5757), + [anon_sym_BANG] = ACTIONS(5759), + [anon_sym_PLUS_PLUS] = ACTIONS(5757), + [anon_sym_DASH_DASH] = ACTIONS(5757), + [anon_sym_on] = ACTIONS(5757), + [anon_sym_equals] = ACTIONS(5757), + [anon_sym_by] = ACTIONS(5757), + [anon_sym_as] = ACTIONS(5757), + [anon_sym_is] = ACTIONS(5757), + [anon_sym_DASH_GT] = ACTIONS(5757), + [anon_sym_with] = ACTIONS(5757), + [aux_sym_preproc_if_token3] = ACTIONS(5757), + [aux_sym_preproc_else_token1] = ACTIONS(5757), + [aux_sym_preproc_elif_token1] = ACTIONS(5757), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -606658,27 +599264,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4557] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4557), [sym_preproc_endregion] = STATE(4557), [sym_preproc_line] = STATE(4557), @@ -606688,40 +599288,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4557), [sym_preproc_define] = STATE(4557), [sym_preproc_undef] = STATE(4557), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -606734,27 +599335,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4558] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4558), [sym_preproc_endregion] = STATE(4558), [sym_preproc_line] = STATE(4558), @@ -606764,40 +599359,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4558), [sym_preproc_define] = STATE(4558), [sym_preproc_undef] = STATE(4558), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6845), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7117), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7102), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7090), + [sym_op_right_shift] = ACTIONS(7092), + [sym_op_unsigned_right_shift] = ACTIONS(7090), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7086), + [sym_op_modulo] = ACTIONS(7088), + [sym_op_coalescing] = ACTIONS(7104), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_on] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(7094), + [anon_sym_is] = ACTIONS(7096), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -606810,27 +599406,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4559] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4559), [sym_preproc_endregion] = STATE(4559), [sym_preproc_line] = STATE(4559), @@ -606840,40 +599415,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4559), [sym_preproc_define] = STATE(4559), [sym_preproc_undef] = STATE(4559), - [anon_sym_SEMI] = ACTIONS(6847), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6015), + [anon_sym_LBRACK] = ACTIONS(6015), + [anon_sym_COLON] = ACTIONS(6015), + [anon_sym_COMMA] = ACTIONS(6015), + [anon_sym_RBRACK] = ACTIONS(6015), + [anon_sym_LPAREN] = ACTIONS(6015), + [anon_sym_RPAREN] = ACTIONS(6015), + [anon_sym_RBRACE] = ACTIONS(6015), + [anon_sym_LT] = ACTIONS(6017), + [anon_sym_GT] = ACTIONS(6017), + [anon_sym_in] = ACTIONS(6015), + [anon_sym_QMARK] = ACTIONS(6017), + [anon_sym_DOT] = ACTIONS(6017), + [anon_sym_EQ_GT] = ACTIONS(6015), + [anon_sym_STAR] = ACTIONS(6015), + [anon_sym_switch] = ACTIONS(6015), + [anon_sym_when] = ACTIONS(6015), + [anon_sym_DOT_DOT] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_and] = ACTIONS(6015), + [anon_sym_or] = ACTIONS(6015), + [anon_sym_EQ_EQ] = ACTIONS(6015), + [anon_sym_BANG_EQ] = ACTIONS(6015), + [anon_sym_AMP_AMP] = ACTIONS(6015), + [anon_sym_PIPE_PIPE] = ACTIONS(6015), + [anon_sym_AMP] = ACTIONS(6017), + [sym_op_bitwise_or] = ACTIONS(6017), + [anon_sym_CARET] = ACTIONS(6015), + [sym_op_left_shift] = ACTIONS(6015), + [sym_op_right_shift] = ACTIONS(6017), + [sym_op_unsigned_right_shift] = ACTIONS(6015), + [anon_sym_PLUS] = ACTIONS(6017), + [anon_sym_DASH] = ACTIONS(6017), + [sym_op_divide] = ACTIONS(6017), + [sym_op_modulo] = ACTIONS(6015), + [sym_op_coalescing] = ACTIONS(6015), + [anon_sym_BANG] = ACTIONS(6017), + [anon_sym_PLUS_PLUS] = ACTIONS(6015), + [anon_sym_DASH_DASH] = ACTIONS(6015), + [anon_sym_on] = ACTIONS(6015), + [anon_sym_equals] = ACTIONS(6015), + [anon_sym_by] = ACTIONS(6015), + [anon_sym_as] = ACTIONS(6015), + [anon_sym_is] = ACTIONS(6015), + [anon_sym_DASH_GT] = ACTIONS(6015), + [anon_sym_with] = ACTIONS(6015), + [aux_sym_preproc_if_token3] = ACTIONS(6015), + [aux_sym_preproc_else_token1] = ACTIONS(6015), + [aux_sym_preproc_elif_token1] = ACTIONS(6015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -606886,27 +599477,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4560] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4560), [sym_preproc_endregion] = STATE(4560), [sym_preproc_line] = STATE(4560), @@ -606916,40 +599501,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4560), [sym_preproc_define] = STATE(4560), [sym_preproc_undef] = STATE(4560), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6849), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7153), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -606962,27 +599548,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4561] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), [sym_preproc_region] = STATE(4561), [sym_preproc_endregion] = STATE(4561), [sym_preproc_line] = STATE(4561), @@ -606992,40 +599557,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4561), [sym_preproc_define] = STATE(4561), [sym_preproc_undef] = STATE(4561), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6679), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6683), - [anon_sym_equals] = ACTIONS(4782), - [anon_sym_as] = ACTIONS(6685), - [anon_sym_is] = ACTIONS(6687), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5791), + [anon_sym_LBRACK] = ACTIONS(5791), + [anon_sym_COLON] = ACTIONS(5791), + [anon_sym_COMMA] = ACTIONS(5791), + [anon_sym_RBRACK] = ACTIONS(5791), + [anon_sym_LPAREN] = ACTIONS(5791), + [anon_sym_RPAREN] = ACTIONS(5791), + [anon_sym_RBRACE] = ACTIONS(5791), + [anon_sym_LT] = ACTIONS(5793), + [anon_sym_GT] = ACTIONS(5793), + [anon_sym_in] = ACTIONS(5791), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5793), + [anon_sym_EQ_GT] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_switch] = ACTIONS(5791), + [anon_sym_when] = ACTIONS(5791), + [anon_sym_DOT_DOT] = ACTIONS(5791), + [anon_sym_LT_EQ] = ACTIONS(5791), + [anon_sym_GT_EQ] = ACTIONS(5791), + [anon_sym_and] = ACTIONS(5791), + [anon_sym_or] = ACTIONS(5791), + [anon_sym_EQ_EQ] = ACTIONS(5791), + [anon_sym_BANG_EQ] = ACTIONS(5791), + [anon_sym_AMP_AMP] = ACTIONS(5791), + [anon_sym_PIPE_PIPE] = ACTIONS(5791), + [anon_sym_AMP] = ACTIONS(5793), + [sym_op_bitwise_or] = ACTIONS(5793), + [anon_sym_CARET] = ACTIONS(5791), + [sym_op_left_shift] = ACTIONS(5791), + [sym_op_right_shift] = ACTIONS(5793), + [sym_op_unsigned_right_shift] = ACTIONS(5791), + [anon_sym_PLUS] = ACTIONS(5793), + [anon_sym_DASH] = ACTIONS(5793), + [sym_op_divide] = ACTIONS(5793), + [sym_op_modulo] = ACTIONS(5791), + [sym_op_coalescing] = ACTIONS(5791), + [anon_sym_BANG] = ACTIONS(5793), + [anon_sym_PLUS_PLUS] = ACTIONS(5791), + [anon_sym_DASH_DASH] = ACTIONS(5791), + [anon_sym_on] = ACTIONS(5791), + [anon_sym_equals] = ACTIONS(5791), + [anon_sym_by] = ACTIONS(5791), + [anon_sym_as] = ACTIONS(5791), + [anon_sym_is] = ACTIONS(5791), + [anon_sym_DASH_GT] = ACTIONS(5791), + [anon_sym_with] = ACTIONS(5791), + [aux_sym_preproc_if_token3] = ACTIONS(5791), + [aux_sym_preproc_else_token1] = ACTIONS(5791), + [aux_sym_preproc_elif_token1] = ACTIONS(5791), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -607038,27 +599619,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4562] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4562), [sym_preproc_endregion] = STATE(4562), [sym_preproc_line] = STATE(4562), @@ -607068,40 +599643,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4562), [sym_preproc_define] = STATE(4562), [sym_preproc_undef] = STATE(4562), - [anon_sym_SEMI] = ACTIONS(6851), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -607114,27 +599690,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4563] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4563), [sym_preproc_endregion] = STATE(4563), [sym_preproc_line] = STATE(4563), @@ -607144,40 +599714,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4563), [sym_preproc_define] = STATE(4563), [sym_preproc_undef] = STATE(4563), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6853), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7145), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(7147), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7135), + [anon_sym_is] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -607190,27 +599761,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4564] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4564), [sym_preproc_endregion] = STATE(4564), [sym_preproc_line] = STATE(4564), @@ -607220,40 +599785,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4564), [sym_preproc_define] = STATE(4564), [sym_preproc_undef] = STATE(4564), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6855), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5314), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -607266,27 +599832,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4565] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4565), [sym_preproc_endregion] = STATE(4565), [sym_preproc_line] = STATE(4565), @@ -607296,40 +599841,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4565), [sym_preproc_define] = STATE(4565), [sym_preproc_undef] = STATE(4565), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6857), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_COLON] = ACTIONS(6027), + [anon_sym_COMMA] = ACTIONS(6027), + [anon_sym_RBRACK] = ACTIONS(6027), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_RBRACE] = ACTIONS(6027), + [anon_sym_LT] = ACTIONS(6029), + [anon_sym_GT] = ACTIONS(6029), + [anon_sym_in] = ACTIONS(6027), + [anon_sym_QMARK] = ACTIONS(6029), + [anon_sym_DOT] = ACTIONS(6029), + [anon_sym_EQ_GT] = ACTIONS(6027), + [anon_sym_STAR] = ACTIONS(6027), + [anon_sym_switch] = ACTIONS(6027), + [anon_sym_when] = ACTIONS(6027), + [anon_sym_DOT_DOT] = ACTIONS(6027), + [anon_sym_LT_EQ] = ACTIONS(6027), + [anon_sym_GT_EQ] = ACTIONS(6027), + [anon_sym_and] = ACTIONS(6027), + [anon_sym_or] = ACTIONS(6027), + [anon_sym_EQ_EQ] = ACTIONS(6027), + [anon_sym_BANG_EQ] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6029), + [sym_op_bitwise_or] = ACTIONS(6029), + [anon_sym_CARET] = ACTIONS(6027), + [sym_op_left_shift] = ACTIONS(6027), + [sym_op_right_shift] = ACTIONS(6029), + [sym_op_unsigned_right_shift] = ACTIONS(6027), + [anon_sym_PLUS] = ACTIONS(6029), + [anon_sym_DASH] = ACTIONS(6029), + [sym_op_divide] = ACTIONS(6029), + [sym_op_modulo] = ACTIONS(6027), + [sym_op_coalescing] = ACTIONS(6027), + [anon_sym_BANG] = ACTIONS(6029), + [anon_sym_PLUS_PLUS] = ACTIONS(6027), + [anon_sym_DASH_DASH] = ACTIONS(6027), + [anon_sym_on] = ACTIONS(6027), + [anon_sym_equals] = ACTIONS(6027), + [anon_sym_by] = ACTIONS(6027), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6027), + [anon_sym_DASH_GT] = ACTIONS(6027), + [anon_sym_with] = ACTIONS(6027), + [aux_sym_preproc_if_token3] = ACTIONS(6027), + [aux_sym_preproc_else_token1] = ACTIONS(6027), + [aux_sym_preproc_elif_token1] = ACTIONS(6027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -607342,27 +599903,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4566] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4566), [sym_preproc_endregion] = STATE(4566), [sym_preproc_line] = STATE(4566), @@ -607372,40 +599927,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4566), [sym_preproc_define] = STATE(4566), [sym_preproc_undef] = STATE(4566), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4776), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4774), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_CARET] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym_GT_GT_GT] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4774), - [anon_sym_switch] = ACTIONS(4774), - [anon_sym_DOT_DOT] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym_op_coalescing] = ACTIONS(4774), - [anon_sym_as] = ACTIONS(4774), - [anon_sym_is] = ACTIONS(4774), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(4774), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -607418,27 +599974,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4567] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4567), [sym_preproc_endregion] = STATE(4567), [sym_preproc_line] = STATE(4567), @@ -607448,40 +599998,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4567), [sym_preproc_define] = STATE(4567), [sym_preproc_undef] = STATE(4567), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6859), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7135), + [anon_sym_is] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -607494,27 +600045,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4568] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4568), [sym_preproc_endregion] = STATE(4568), [sym_preproc_line] = STATE(4568), @@ -607524,40 +600054,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4568), [sym_preproc_define] = STATE(4568), [sym_preproc_undef] = STATE(4568), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LBRACK] = ACTIONS(5935), + [anon_sym_COLON] = ACTIONS(5935), + [anon_sym_COMMA] = ACTIONS(5935), + [anon_sym_RBRACK] = ACTIONS(5935), + [anon_sym_LPAREN] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_RBRACE] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5937), + [anon_sym_GT] = ACTIONS(5937), + [anon_sym_in] = ACTIONS(5935), + [anon_sym_QMARK] = ACTIONS(5937), + [anon_sym_DOT] = ACTIONS(5937), + [anon_sym_EQ_GT] = ACTIONS(5935), + [anon_sym_STAR] = ACTIONS(5935), + [anon_sym_switch] = ACTIONS(5935), + [anon_sym_when] = ACTIONS(5935), + [anon_sym_DOT_DOT] = ACTIONS(5935), + [anon_sym_LT_EQ] = ACTIONS(5935), + [anon_sym_GT_EQ] = ACTIONS(5935), + [anon_sym_and] = ACTIONS(5935), + [anon_sym_or] = ACTIONS(5935), + [anon_sym_EQ_EQ] = ACTIONS(5935), + [anon_sym_BANG_EQ] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5937), + [sym_op_bitwise_or] = ACTIONS(5937), + [anon_sym_CARET] = ACTIONS(5935), + [sym_op_left_shift] = ACTIONS(5935), + [sym_op_right_shift] = ACTIONS(5937), + [sym_op_unsigned_right_shift] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [sym_op_divide] = ACTIONS(5937), + [sym_op_modulo] = ACTIONS(5935), + [sym_op_coalescing] = ACTIONS(5935), + [anon_sym_BANG] = ACTIONS(5937), + [anon_sym_PLUS_PLUS] = ACTIONS(5935), + [anon_sym_DASH_DASH] = ACTIONS(5935), + [anon_sym_on] = ACTIONS(5935), + [anon_sym_equals] = ACTIONS(5935), + [anon_sym_by] = ACTIONS(5935), + [anon_sym_as] = ACTIONS(5935), + [anon_sym_is] = ACTIONS(5935), + [anon_sym_DASH_GT] = ACTIONS(5935), + [anon_sym_with] = ACTIONS(5935), + [aux_sym_preproc_if_token3] = ACTIONS(5935), + [aux_sym_preproc_else_token1] = ACTIONS(5935), + [aux_sym_preproc_elif_token1] = ACTIONS(5935), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -607570,27 +600116,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4569] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4569), [sym_preproc_endregion] = STATE(4569), [sym_preproc_line] = STATE(4569), @@ -607600,40 +600125,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4569), [sym_preproc_define] = STATE(4569), [sym_preproc_undef] = STATE(4569), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6875), + [anon_sym_LBRACK] = ACTIONS(6875), + [anon_sym_COLON] = ACTIONS(6875), + [anon_sym_COMMA] = ACTIONS(6875), + [anon_sym_RBRACK] = ACTIONS(6875), + [anon_sym_LPAREN] = ACTIONS(6875), + [anon_sym_RPAREN] = ACTIONS(6875), + [anon_sym_RBRACE] = ACTIONS(6875), + [anon_sym_LT] = ACTIONS(6877), + [anon_sym_GT] = ACTIONS(6877), + [anon_sym_in] = ACTIONS(6875), + [anon_sym_QMARK] = ACTIONS(6877), + [anon_sym_DOT] = ACTIONS(6877), + [anon_sym_EQ_GT] = ACTIONS(6875), + [anon_sym_STAR] = ACTIONS(6875), + [anon_sym_switch] = ACTIONS(6875), + [anon_sym_when] = ACTIONS(6875), + [anon_sym_DOT_DOT] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6875), + [anon_sym_GT_EQ] = ACTIONS(6875), + [anon_sym_and] = ACTIONS(6875), + [anon_sym_or] = ACTIONS(6875), + [anon_sym_EQ_EQ] = ACTIONS(6875), + [anon_sym_BANG_EQ] = ACTIONS(6875), + [anon_sym_AMP_AMP] = ACTIONS(6875), + [anon_sym_PIPE_PIPE] = ACTIONS(6875), + [anon_sym_AMP] = ACTIONS(6877), + [sym_op_bitwise_or] = ACTIONS(6877), + [anon_sym_CARET] = ACTIONS(6875), + [sym_op_left_shift] = ACTIONS(6875), + [sym_op_right_shift] = ACTIONS(6877), + [sym_op_unsigned_right_shift] = ACTIONS(6875), + [anon_sym_PLUS] = ACTIONS(6877), + [anon_sym_DASH] = ACTIONS(6877), + [sym_op_divide] = ACTIONS(6877), + [sym_op_modulo] = ACTIONS(6875), + [sym_op_coalescing] = ACTIONS(6875), + [anon_sym_BANG] = ACTIONS(6877), + [anon_sym_PLUS_PLUS] = ACTIONS(6875), + [anon_sym_DASH_DASH] = ACTIONS(6875), + [anon_sym_on] = ACTIONS(6875), + [anon_sym_equals] = ACTIONS(6875), + [anon_sym_by] = ACTIONS(6875), + [anon_sym_as] = ACTIONS(6875), + [anon_sym_is] = ACTIONS(6875), + [anon_sym_DASH_GT] = ACTIONS(6875), + [anon_sym_with] = ACTIONS(6875), + [aux_sym_preproc_if_token3] = ACTIONS(6875), + [aux_sym_preproc_else_token1] = ACTIONS(6875), + [aux_sym_preproc_elif_token1] = ACTIONS(6875), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -607646,27 +600187,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4570] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4570), [sym_preproc_endregion] = STATE(4570), [sym_preproc_line] = STATE(4570), @@ -607676,40 +600196,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4570), [sym_preproc_define] = STATE(4570), [sym_preproc_undef] = STATE(4570), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4778), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6023), + [anon_sym_LBRACK] = ACTIONS(6023), + [anon_sym_COLON] = ACTIONS(6023), + [anon_sym_COMMA] = ACTIONS(6023), + [anon_sym_RBRACK] = ACTIONS(6023), + [anon_sym_LPAREN] = ACTIONS(6023), + [anon_sym_RPAREN] = ACTIONS(6023), + [anon_sym_RBRACE] = ACTIONS(6023), + [anon_sym_LT] = ACTIONS(6025), + [anon_sym_GT] = ACTIONS(6025), + [anon_sym_in] = ACTIONS(6023), + [anon_sym_QMARK] = ACTIONS(6025), + [anon_sym_DOT] = ACTIONS(6025), + [anon_sym_EQ_GT] = ACTIONS(6023), + [anon_sym_STAR] = ACTIONS(6023), + [anon_sym_switch] = ACTIONS(6023), + [anon_sym_when] = ACTIONS(6023), + [anon_sym_DOT_DOT] = ACTIONS(6023), + [anon_sym_LT_EQ] = ACTIONS(6023), + [anon_sym_GT_EQ] = ACTIONS(6023), + [anon_sym_and] = ACTIONS(6023), + [anon_sym_or] = ACTIONS(6023), + [anon_sym_EQ_EQ] = ACTIONS(6023), + [anon_sym_BANG_EQ] = ACTIONS(6023), + [anon_sym_AMP_AMP] = ACTIONS(6023), + [anon_sym_PIPE_PIPE] = ACTIONS(6023), + [anon_sym_AMP] = ACTIONS(6025), + [sym_op_bitwise_or] = ACTIONS(6025), + [anon_sym_CARET] = ACTIONS(6023), + [sym_op_left_shift] = ACTIONS(6023), + [sym_op_right_shift] = ACTIONS(6025), + [sym_op_unsigned_right_shift] = ACTIONS(6023), + [anon_sym_PLUS] = ACTIONS(6025), + [anon_sym_DASH] = ACTIONS(6025), + [sym_op_divide] = ACTIONS(6025), + [sym_op_modulo] = ACTIONS(6023), + [sym_op_coalescing] = ACTIONS(6023), + [anon_sym_BANG] = ACTIONS(6025), + [anon_sym_PLUS_PLUS] = ACTIONS(6023), + [anon_sym_DASH_DASH] = ACTIONS(6023), + [anon_sym_on] = ACTIONS(6023), + [anon_sym_equals] = ACTIONS(6023), + [anon_sym_by] = ACTIONS(6023), + [anon_sym_as] = ACTIONS(6023), + [anon_sym_is] = ACTIONS(6023), + [anon_sym_DASH_GT] = ACTIONS(6023), + [anon_sym_with] = ACTIONS(6023), + [aux_sym_preproc_if_token3] = ACTIONS(6023), + [aux_sym_preproc_else_token1] = ACTIONS(6023), + [aux_sym_preproc_elif_token1] = ACTIONS(6023), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -607722,27 +600258,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4571] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4571), [sym_preproc_endregion] = STATE(4571), [sym_preproc_line] = STATE(4571), @@ -607752,40 +600282,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4571), [sym_preproc_define] = STATE(4571), [sym_preproc_undef] = STATE(4571), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(6861), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7145), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7135), + [anon_sym_is] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -607798,27 +600329,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4572] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4572), [sym_preproc_endregion] = STATE(4572), [sym_preproc_line] = STATE(4572), @@ -607828,40 +600338,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4572), [sym_preproc_define] = STATE(4572), [sym_preproc_undef] = STATE(4572), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5723), + [anon_sym_LBRACK] = ACTIONS(5723), + [anon_sym_COLON] = ACTIONS(5723), + [anon_sym_COMMA] = ACTIONS(5723), + [anon_sym_RBRACK] = ACTIONS(5723), + [anon_sym_LPAREN] = ACTIONS(5723), + [anon_sym_RPAREN] = ACTIONS(5723), + [anon_sym_RBRACE] = ACTIONS(5723), + [anon_sym_LT] = ACTIONS(5725), + [anon_sym_GT] = ACTIONS(5725), + [anon_sym_in] = ACTIONS(5723), + [anon_sym_QMARK] = ACTIONS(5725), + [anon_sym_DOT] = ACTIONS(5725), + [anon_sym_EQ_GT] = ACTIONS(5723), + [anon_sym_STAR] = ACTIONS(5723), + [anon_sym_switch] = ACTIONS(5723), + [anon_sym_when] = ACTIONS(5723), + [anon_sym_DOT_DOT] = ACTIONS(5723), + [anon_sym_LT_EQ] = ACTIONS(5723), + [anon_sym_GT_EQ] = ACTIONS(5723), + [anon_sym_and] = ACTIONS(5723), + [anon_sym_or] = ACTIONS(5723), + [anon_sym_EQ_EQ] = ACTIONS(5723), + [anon_sym_BANG_EQ] = ACTIONS(5723), + [anon_sym_AMP_AMP] = ACTIONS(5723), + [anon_sym_PIPE_PIPE] = ACTIONS(5723), + [anon_sym_AMP] = ACTIONS(5725), + [sym_op_bitwise_or] = ACTIONS(5725), + [anon_sym_CARET] = ACTIONS(5723), + [sym_op_left_shift] = ACTIONS(5723), + [sym_op_right_shift] = ACTIONS(5725), + [sym_op_unsigned_right_shift] = ACTIONS(5723), + [anon_sym_PLUS] = ACTIONS(5725), + [anon_sym_DASH] = ACTIONS(5725), + [sym_op_divide] = ACTIONS(5725), + [sym_op_modulo] = ACTIONS(5723), + [sym_op_coalescing] = ACTIONS(5723), + [anon_sym_BANG] = ACTIONS(5725), + [anon_sym_PLUS_PLUS] = ACTIONS(5723), + [anon_sym_DASH_DASH] = ACTIONS(5723), + [anon_sym_on] = ACTIONS(5723), + [anon_sym_equals] = ACTIONS(5723), + [anon_sym_by] = ACTIONS(5723), + [anon_sym_as] = ACTIONS(5723), + [anon_sym_is] = ACTIONS(5723), + [anon_sym_DASH_GT] = ACTIONS(5723), + [anon_sym_with] = ACTIONS(5723), + [aux_sym_preproc_if_token3] = ACTIONS(5723), + [aux_sym_preproc_else_token1] = ACTIONS(5723), + [aux_sym_preproc_elif_token1] = ACTIONS(5723), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -607874,27 +600400,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4573] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4573), [sym_preproc_endregion] = STATE(4573), [sym_preproc_line] = STATE(4573), @@ -607904,40 +600409,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4573), [sym_preproc_define] = STATE(4573), [sym_preproc_undef] = STATE(4573), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_EQ] = ACTIONS(7155), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_RBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7157), + [anon_sym_DASH_EQ] = ACTIONS(7157), + [anon_sym_STAR_EQ] = ACTIONS(7157), + [anon_sym_SLASH_EQ] = ACTIONS(7157), + [anon_sym_PERCENT_EQ] = ACTIONS(7157), + [anon_sym_AMP_EQ] = ACTIONS(7157), + [anon_sym_CARET_EQ] = ACTIONS(7157), + [anon_sym_PIPE_EQ] = ACTIONS(7157), + [anon_sym_LT_LT_EQ] = ACTIONS(7157), + [anon_sym_GT_GT_EQ] = ACTIONS(7157), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7157), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7157), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -607950,27 +600471,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4574] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4574), [sym_preproc_endregion] = STATE(4574), [sym_preproc_line] = STATE(4574), @@ -607980,40 +600480,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4574), [sym_preproc_define] = STATE(4574), [sym_preproc_undef] = STATE(4574), - [anon_sym_SEMI] = ACTIONS(6863), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5983), + [anon_sym_LBRACK] = ACTIONS(5983), + [anon_sym_COLON] = ACTIONS(5983), + [anon_sym_COMMA] = ACTIONS(5983), + [anon_sym_RBRACK] = ACTIONS(5983), + [anon_sym_LPAREN] = ACTIONS(5983), + [anon_sym_RPAREN] = ACTIONS(5983), + [anon_sym_RBRACE] = ACTIONS(5983), + [anon_sym_LT] = ACTIONS(5985), + [anon_sym_GT] = ACTIONS(5985), + [anon_sym_in] = ACTIONS(5983), + [anon_sym_QMARK] = ACTIONS(5985), + [anon_sym_DOT] = ACTIONS(5985), + [anon_sym_EQ_GT] = ACTIONS(5983), + [anon_sym_STAR] = ACTIONS(5983), + [anon_sym_switch] = ACTIONS(5983), + [anon_sym_when] = ACTIONS(5983), + [anon_sym_DOT_DOT] = ACTIONS(5983), + [anon_sym_LT_EQ] = ACTIONS(5983), + [anon_sym_GT_EQ] = ACTIONS(5983), + [anon_sym_and] = ACTIONS(5983), + [anon_sym_or] = ACTIONS(5983), + [anon_sym_EQ_EQ] = ACTIONS(5983), + [anon_sym_BANG_EQ] = ACTIONS(5983), + [anon_sym_AMP_AMP] = ACTIONS(5983), + [anon_sym_PIPE_PIPE] = ACTIONS(5983), + [anon_sym_AMP] = ACTIONS(5985), + [sym_op_bitwise_or] = ACTIONS(5985), + [anon_sym_CARET] = ACTIONS(5983), + [sym_op_left_shift] = ACTIONS(5983), + [sym_op_right_shift] = ACTIONS(5985), + [sym_op_unsigned_right_shift] = ACTIONS(5983), + [anon_sym_PLUS] = ACTIONS(5985), + [anon_sym_DASH] = ACTIONS(5985), + [sym_op_divide] = ACTIONS(5985), + [sym_op_modulo] = ACTIONS(5983), + [sym_op_coalescing] = ACTIONS(5983), + [anon_sym_BANG] = ACTIONS(5985), + [anon_sym_PLUS_PLUS] = ACTIONS(5983), + [anon_sym_DASH_DASH] = ACTIONS(5983), + [anon_sym_on] = ACTIONS(5983), + [anon_sym_equals] = ACTIONS(5983), + [anon_sym_by] = ACTIONS(5983), + [anon_sym_as] = ACTIONS(5983), + [anon_sym_is] = ACTIONS(5983), + [anon_sym_DASH_GT] = ACTIONS(5983), + [anon_sym_with] = ACTIONS(5983), + [aux_sym_preproc_if_token3] = ACTIONS(5983), + [aux_sym_preproc_else_token1] = ACTIONS(5983), + [aux_sym_preproc_elif_token1] = ACTIONS(5983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -608026,27 +600542,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4575] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4575), [sym_preproc_endregion] = STATE(4575), [sym_preproc_line] = STATE(4575), @@ -608056,40 +600551,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4575), [sym_preproc_define] = STATE(4575), [sym_preproc_undef] = STATE(4575), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5991), + [anon_sym_LBRACK] = ACTIONS(5991), + [anon_sym_COLON] = ACTIONS(5991), + [anon_sym_COMMA] = ACTIONS(5991), + [anon_sym_RBRACK] = ACTIONS(5991), + [anon_sym_LPAREN] = ACTIONS(5991), + [anon_sym_RPAREN] = ACTIONS(5991), + [anon_sym_RBRACE] = ACTIONS(5991), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_in] = ACTIONS(5991), + [anon_sym_QMARK] = ACTIONS(5993), + [anon_sym_DOT] = ACTIONS(5993), + [anon_sym_EQ_GT] = ACTIONS(5991), + [anon_sym_STAR] = ACTIONS(5991), + [anon_sym_switch] = ACTIONS(5991), + [anon_sym_when] = ACTIONS(5991), + [anon_sym_DOT_DOT] = ACTIONS(5991), + [anon_sym_LT_EQ] = ACTIONS(5991), + [anon_sym_GT_EQ] = ACTIONS(5991), + [anon_sym_and] = ACTIONS(5991), + [anon_sym_or] = ACTIONS(5991), + [anon_sym_EQ_EQ] = ACTIONS(5991), + [anon_sym_BANG_EQ] = ACTIONS(5991), + [anon_sym_AMP_AMP] = ACTIONS(5991), + [anon_sym_PIPE_PIPE] = ACTIONS(5991), + [anon_sym_AMP] = ACTIONS(5993), + [sym_op_bitwise_or] = ACTIONS(5993), + [anon_sym_CARET] = ACTIONS(5991), + [sym_op_left_shift] = ACTIONS(5991), + [sym_op_right_shift] = ACTIONS(5993), + [sym_op_unsigned_right_shift] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5993), + [sym_op_divide] = ACTIONS(5993), + [sym_op_modulo] = ACTIONS(5991), + [sym_op_coalescing] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(5993), + [anon_sym_PLUS_PLUS] = ACTIONS(5991), + [anon_sym_DASH_DASH] = ACTIONS(5991), + [anon_sym_on] = ACTIONS(5991), + [anon_sym_equals] = ACTIONS(5991), + [anon_sym_by] = ACTIONS(5991), + [anon_sym_as] = ACTIONS(5991), + [anon_sym_is] = ACTIONS(5991), + [anon_sym_DASH_GT] = ACTIONS(5991), + [anon_sym_with] = ACTIONS(5991), + [aux_sym_preproc_if_token3] = ACTIONS(5991), + [aux_sym_preproc_else_token1] = ACTIONS(5991), + [aux_sym_preproc_elif_token1] = ACTIONS(5991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -608102,27 +600613,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4576] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4576), [sym_preproc_endregion] = STATE(4576), [sym_preproc_line] = STATE(4576), @@ -608132,40 +600637,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4576), [sym_preproc_define] = STATE(4576), [sym_preproc_undef] = STATE(4576), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7145), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7135), + [anon_sym_is] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -608178,27 +600684,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4577] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4577), [sym_preproc_endregion] = STATE(4577), [sym_preproc_line] = STATE(4577), @@ -608208,40 +600708,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4577), [sym_preproc_define] = STATE(4577), [sym_preproc_undef] = STATE(4577), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7159), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(7159), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -608254,27 +600755,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4578] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1354), - [sym_op_lte] = STATE(1354), - [sym_op_eq] = STATE(1347), - [sym_op_neq] = STATE(1347), - [sym_op_gt] = STATE(1354), - [sym_op_gte] = STATE(1354), - [sym_op_and] = STATE(1323), - [sym_op_or] = STATE(1308), - [sym_op_bitwise_and] = STATE(1303), - [sym_op_bitwise_or] = STATE(1280), - [sym_op_bitwise_xor] = STATE(1275), - [sym_op_left_shift] = STATE(1235), - [sym_op_right_shift] = STATE(1235), - [sym_op_unsigned_right_shift] = STATE(1235), - [sym_op_plus] = STATE(1228), - [sym_op_minus] = STATE(1228), - [sym_op_multiply] = STATE(1226), - [sym_op_divide] = STATE(1226), - [sym_op_modulo] = STATE(1226), [sym_preproc_region] = STATE(4578), [sym_preproc_endregion] = STATE(4578), [sym_preproc_line] = STATE(4578), @@ -608284,40 +600764,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4578), [sym_preproc_define] = STATE(4578), [sym_preproc_undef] = STATE(4578), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6583), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6545), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6585), - [anon_sym_on] = ACTIONS(6865), - [anon_sym_as] = ACTIONS(6547), - [anon_sym_is] = ACTIONS(6549), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6875), + [anon_sym_LBRACK] = ACTIONS(6875), + [anon_sym_COLON] = ACTIONS(6875), + [anon_sym_COMMA] = ACTIONS(6875), + [anon_sym_RBRACK] = ACTIONS(6875), + [anon_sym_LPAREN] = ACTIONS(6875), + [anon_sym_RPAREN] = ACTIONS(6875), + [anon_sym_RBRACE] = ACTIONS(6875), + [anon_sym_LT] = ACTIONS(6877), + [anon_sym_GT] = ACTIONS(6877), + [anon_sym_in] = ACTIONS(6875), + [anon_sym_QMARK] = ACTIONS(6877), + [anon_sym_DOT] = ACTIONS(6877), + [anon_sym_EQ_GT] = ACTIONS(6875), + [anon_sym_STAR] = ACTIONS(6875), + [anon_sym_switch] = ACTIONS(6875), + [anon_sym_when] = ACTIONS(6875), + [anon_sym_DOT_DOT] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6875), + [anon_sym_GT_EQ] = ACTIONS(6875), + [anon_sym_and] = ACTIONS(6875), + [anon_sym_or] = ACTIONS(6875), + [anon_sym_EQ_EQ] = ACTIONS(6875), + [anon_sym_BANG_EQ] = ACTIONS(6875), + [anon_sym_AMP_AMP] = ACTIONS(6875), + [anon_sym_PIPE_PIPE] = ACTIONS(6875), + [anon_sym_AMP] = ACTIONS(6877), + [sym_op_bitwise_or] = ACTIONS(6877), + [anon_sym_CARET] = ACTIONS(6875), + [sym_op_left_shift] = ACTIONS(6875), + [sym_op_right_shift] = ACTIONS(6877), + [sym_op_unsigned_right_shift] = ACTIONS(6875), + [anon_sym_PLUS] = ACTIONS(6877), + [anon_sym_DASH] = ACTIONS(6877), + [sym_op_divide] = ACTIONS(6877), + [sym_op_modulo] = ACTIONS(6875), + [sym_op_coalescing] = ACTIONS(6875), + [anon_sym_BANG] = ACTIONS(6877), + [anon_sym_PLUS_PLUS] = ACTIONS(6875), + [anon_sym_DASH_DASH] = ACTIONS(6875), + [anon_sym_on] = ACTIONS(6875), + [anon_sym_equals] = ACTIONS(6875), + [anon_sym_by] = ACTIONS(6875), + [anon_sym_as] = ACTIONS(6875), + [anon_sym_is] = ACTIONS(6875), + [anon_sym_DASH_GT] = ACTIONS(6875), + [anon_sym_with] = ACTIONS(6875), + [aux_sym_preproc_if_token3] = ACTIONS(6875), + [aux_sym_preproc_else_token1] = ACTIONS(6875), + [aux_sym_preproc_elif_token1] = ACTIONS(6875), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -608330,27 +600826,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4579] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4579), [sym_preproc_endregion] = STATE(4579), [sym_preproc_line] = STATE(4579), @@ -608360,40 +600850,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4579), [sym_preproc_define] = STATE(4579), [sym_preproc_undef] = STATE(4579), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6867), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7161), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(7161), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -608406,27 +600897,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4580] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4580), [sym_preproc_endregion] = STATE(4580), [sym_preproc_line] = STATE(4580), @@ -608436,40 +600906,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4580), [sym_preproc_define] = STATE(4580), [sym_preproc_undef] = STATE(4580), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6869), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(6743), + [anon_sym_GT] = ACTIONS(6743), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_QMARK] = ACTIONS(6743), + [anon_sym_DOT] = ACTIONS(6743), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_and] = ACTIONS(4152), + [anon_sym_or] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(6743), + [sym_op_bitwise_or] = ACTIONS(6743), + [anon_sym_CARET] = ACTIONS(4152), + [sym_op_left_shift] = ACTIONS(4152), + [sym_op_right_shift] = ACTIONS(6743), + [sym_op_unsigned_right_shift] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(6743), + [anon_sym_DASH] = ACTIONS(6743), + [sym_op_divide] = ACTIONS(6743), + [sym_op_modulo] = ACTIONS(4152), + [sym_op_coalescing] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(6743), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_on] = ACTIONS(4152), + [anon_sym_equals] = ACTIONS(4152), + [anon_sym_by] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [anon_sym_with] = ACTIONS(4152), + [aux_sym_preproc_if_token3] = ACTIONS(4152), + [aux_sym_preproc_else_token1] = ACTIONS(4152), + [aux_sym_preproc_elif_token1] = ACTIONS(4152), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -608482,27 +600968,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4581] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1844), - [sym_op_lte] = STATE(1844), - [sym_op_eq] = STATE(1845), - [sym_op_neq] = STATE(1845), - [sym_op_gt] = STATE(1844), - [sym_op_gte] = STATE(1844), - [sym_op_and] = STATE(1848), - [sym_op_or] = STATE(1849), - [sym_op_bitwise_and] = STATE(1851), - [sym_op_bitwise_or] = STATE(1854), - [sym_op_bitwise_xor] = STATE(1855), - [sym_op_left_shift] = STATE(1860), - [sym_op_right_shift] = STATE(1860), - [sym_op_unsigned_right_shift] = STATE(1860), - [sym_op_plus] = STATE(1861), - [sym_op_minus] = STATE(1861), - [sym_op_multiply] = STATE(1864), - [sym_op_divide] = STATE(1864), - [sym_op_modulo] = STATE(1864), [sym_preproc_region] = STATE(4581), [sym_preproc_endregion] = STATE(4581), [sym_preproc_line] = STATE(4581), @@ -608512,40 +600977,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4581), [sym_preproc_define] = STATE(4581), [sym_preproc_undef] = STATE(4581), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6679), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6681), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6683), - [anon_sym_equals] = ACTIONS(6871), - [anon_sym_as] = ACTIONS(6685), - [anon_sym_is] = ACTIONS(6687), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6969), + [anon_sym_LBRACK] = ACTIONS(6969), + [anon_sym_COLON] = ACTIONS(6969), + [anon_sym_COMMA] = ACTIONS(6969), + [anon_sym_RBRACK] = ACTIONS(6969), + [anon_sym_LPAREN] = ACTIONS(6969), + [anon_sym_RPAREN] = ACTIONS(6969), + [anon_sym_RBRACE] = ACTIONS(6969), + [anon_sym_LT] = ACTIONS(6971), + [anon_sym_GT] = ACTIONS(6971), + [anon_sym_in] = ACTIONS(6969), + [anon_sym_QMARK] = ACTIONS(6971), + [anon_sym_DOT] = ACTIONS(6971), + [anon_sym_EQ_GT] = ACTIONS(6969), + [anon_sym_STAR] = ACTIONS(6969), + [anon_sym_switch] = ACTIONS(6969), + [anon_sym_when] = ACTIONS(6969), + [anon_sym_DOT_DOT] = ACTIONS(6969), + [anon_sym_LT_EQ] = ACTIONS(6969), + [anon_sym_GT_EQ] = ACTIONS(6969), + [anon_sym_and] = ACTIONS(6969), + [anon_sym_or] = ACTIONS(6969), + [anon_sym_EQ_EQ] = ACTIONS(6969), + [anon_sym_BANG_EQ] = ACTIONS(6969), + [anon_sym_AMP_AMP] = ACTIONS(6969), + [anon_sym_PIPE_PIPE] = ACTIONS(6969), + [anon_sym_AMP] = ACTIONS(6971), + [sym_op_bitwise_or] = ACTIONS(6971), + [anon_sym_CARET] = ACTIONS(6969), + [sym_op_left_shift] = ACTIONS(6969), + [sym_op_right_shift] = ACTIONS(6971), + [sym_op_unsigned_right_shift] = ACTIONS(6969), + [anon_sym_PLUS] = ACTIONS(6971), + [anon_sym_DASH] = ACTIONS(6971), + [sym_op_divide] = ACTIONS(6971), + [sym_op_modulo] = ACTIONS(6969), + [sym_op_coalescing] = ACTIONS(6969), + [anon_sym_BANG] = ACTIONS(6971), + [anon_sym_PLUS_PLUS] = ACTIONS(6969), + [anon_sym_DASH_DASH] = ACTIONS(6969), + [anon_sym_on] = ACTIONS(6969), + [anon_sym_equals] = ACTIONS(6969), + [anon_sym_by] = ACTIONS(6969), + [anon_sym_as] = ACTIONS(6969), + [anon_sym_is] = ACTIONS(6969), + [anon_sym_DASH_GT] = ACTIONS(6969), + [anon_sym_with] = ACTIONS(6969), + [aux_sym_preproc_if_token3] = ACTIONS(6969), + [aux_sym_preproc_else_token1] = ACTIONS(6969), + [aux_sym_preproc_elif_token1] = ACTIONS(6969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -608558,27 +601039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4582] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_initializer_expression] = STATE(3312), [sym_preproc_region] = STATE(4582), [sym_preproc_endregion] = STATE(4582), [sym_preproc_line] = STATE(4582), @@ -608588,40 +601049,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4582), [sym_preproc_define] = STATE(4582), [sym_preproc_undef] = STATE(4582), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6873), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_COLON] = ACTIONS(5628), + [anon_sym_COMMA] = ACTIONS(5628), + [anon_sym_RBRACK] = ACTIONS(5628), + [anon_sym_LPAREN] = ACTIONS(5628), + [anon_sym_RPAREN] = ACTIONS(5628), + [anon_sym_LBRACE] = ACTIONS(7163), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_LT] = ACTIONS(5634), + [anon_sym_GT] = ACTIONS(5634), + [anon_sym_in] = ACTIONS(5634), + [anon_sym_QMARK] = ACTIONS(7166), + [anon_sym_DOT] = ACTIONS(5634), + [anon_sym_EQ_GT] = ACTIONS(5628), + [anon_sym_STAR] = ACTIONS(5628), + [anon_sym_switch] = ACTIONS(5628), + [anon_sym_DOT_DOT] = ACTIONS(5628), + [anon_sym_LT_EQ] = ACTIONS(5628), + [anon_sym_GT_EQ] = ACTIONS(5628), + [anon_sym_EQ_EQ] = ACTIONS(5628), + [anon_sym_BANG_EQ] = ACTIONS(5628), + [anon_sym_AMP_AMP] = ACTIONS(5628), + [anon_sym_PIPE_PIPE] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(5634), + [sym_op_bitwise_or] = ACTIONS(5634), + [anon_sym_CARET] = ACTIONS(5628), + [sym_op_left_shift] = ACTIONS(5628), + [sym_op_right_shift] = ACTIONS(5634), + [sym_op_unsigned_right_shift] = ACTIONS(5628), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [sym_op_divide] = ACTIONS(5634), + [sym_op_modulo] = ACTIONS(5628), + [sym_op_coalescing] = ACTIONS(5628), + [anon_sym_BANG] = ACTIONS(5634), + [anon_sym_PLUS_PLUS] = ACTIONS(5628), + [anon_sym_DASH_DASH] = ACTIONS(5628), + [anon_sym_into] = ACTIONS(5628), + [anon_sym_on] = ACTIONS(5628), + [anon_sym_equals] = ACTIONS(5628), + [anon_sym_by] = ACTIONS(5628), + [anon_sym_as] = ACTIONS(5628), + [anon_sym_is] = ACTIONS(5628), + [anon_sym_DASH_GT] = ACTIONS(5628), + [anon_sym_with] = ACTIONS(5628), + [aux_sym_preproc_if_token3] = ACTIONS(5628), + [aux_sym_preproc_else_token1] = ACTIONS(5628), + [aux_sym_preproc_elif_token1] = ACTIONS(5628), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -608634,27 +601110,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4583] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4583), [sym_preproc_endregion] = STATE(4583), [sym_preproc_line] = STATE(4583), @@ -608664,40 +601119,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4583), [sym_preproc_define] = STATE(4583), [sym_preproc_undef] = STATE(4583), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(4708), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(6743), + [anon_sym_GT] = ACTIONS(6743), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_QMARK] = ACTIONS(6743), + [anon_sym_DOT] = ACTIONS(6743), + [anon_sym_EQ_GT] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_and] = ACTIONS(4152), + [anon_sym_or] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(6743), + [sym_op_bitwise_or] = ACTIONS(6743), + [anon_sym_CARET] = ACTIONS(4152), + [sym_op_left_shift] = ACTIONS(4152), + [sym_op_right_shift] = ACTIONS(6743), + [sym_op_unsigned_right_shift] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(6743), + [anon_sym_DASH] = ACTIONS(6743), + [sym_op_divide] = ACTIONS(6743), + [sym_op_modulo] = ACTIONS(4152), + [sym_op_coalescing] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(6743), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_on] = ACTIONS(4152), + [anon_sym_equals] = ACTIONS(4152), + [anon_sym_by] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [anon_sym_with] = ACTIONS(4152), + [aux_sym_preproc_if_token3] = ACTIONS(4152), + [aux_sym_preproc_else_token1] = ACTIONS(4152), + [aux_sym_preproc_elif_token1] = ACTIONS(4152), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -608710,27 +601181,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4584] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4584), [sym_preproc_endregion] = STATE(4584), [sym_preproc_line] = STATE(4584), @@ -608740,40 +601190,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4584), [sym_preproc_define] = STATE(4584), [sym_preproc_undef] = STATE(4584), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(7020), + [anon_sym_LBRACK] = ACTIONS(7020), + [anon_sym_COLON] = ACTIONS(7020), + [anon_sym_COMMA] = ACTIONS(7020), + [anon_sym_RBRACK] = ACTIONS(7020), + [anon_sym_LPAREN] = ACTIONS(7020), + [anon_sym_RPAREN] = ACTIONS(7020), + [anon_sym_RBRACE] = ACTIONS(7020), + [anon_sym_LT] = ACTIONS(7022), + [anon_sym_GT] = ACTIONS(7022), + [anon_sym_in] = ACTIONS(7020), + [anon_sym_QMARK] = ACTIONS(7022), + [anon_sym_DOT] = ACTIONS(7022), + [anon_sym_EQ_GT] = ACTIONS(7020), + [anon_sym_STAR] = ACTIONS(7020), + [anon_sym_switch] = ACTIONS(7020), + [anon_sym_when] = ACTIONS(7020), + [anon_sym_DOT_DOT] = ACTIONS(7020), + [anon_sym_LT_EQ] = ACTIONS(7020), + [anon_sym_GT_EQ] = ACTIONS(7020), + [anon_sym_and] = ACTIONS(7020), + [anon_sym_or] = ACTIONS(7020), + [anon_sym_EQ_EQ] = ACTIONS(7020), + [anon_sym_BANG_EQ] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7022), + [sym_op_bitwise_or] = ACTIONS(7022), + [anon_sym_CARET] = ACTIONS(7020), + [sym_op_left_shift] = ACTIONS(7020), + [sym_op_right_shift] = ACTIONS(7022), + [sym_op_unsigned_right_shift] = ACTIONS(7020), + [anon_sym_PLUS] = ACTIONS(7022), + [anon_sym_DASH] = ACTIONS(7022), + [sym_op_divide] = ACTIONS(7022), + [sym_op_modulo] = ACTIONS(7020), + [sym_op_coalescing] = ACTIONS(7020), + [anon_sym_BANG] = ACTIONS(7022), + [anon_sym_PLUS_PLUS] = ACTIONS(7020), + [anon_sym_DASH_DASH] = ACTIONS(7020), + [anon_sym_on] = ACTIONS(7020), + [anon_sym_equals] = ACTIONS(7020), + [anon_sym_by] = ACTIONS(7020), + [anon_sym_as] = ACTIONS(7020), + [anon_sym_is] = ACTIONS(7020), + [anon_sym_DASH_GT] = ACTIONS(7020), + [anon_sym_with] = ACTIONS(7020), + [aux_sym_preproc_if_token3] = ACTIONS(7020), + [aux_sym_preproc_else_token1] = ACTIONS(7020), + [aux_sym_preproc_elif_token1] = ACTIONS(7020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -608786,27 +601252,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4585] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4585), [sym_preproc_endregion] = STATE(4585), [sym_preproc_line] = STATE(4585), @@ -608816,40 +601261,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4585), [sym_preproc_define] = STATE(4585), [sym_preproc_undef] = STATE(4585), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(7030), + [anon_sym_LBRACK] = ACTIONS(7030), + [anon_sym_COLON] = ACTIONS(7030), + [anon_sym_COMMA] = ACTIONS(7030), + [anon_sym_RBRACK] = ACTIONS(7030), + [anon_sym_LPAREN] = ACTIONS(7030), + [anon_sym_RPAREN] = ACTIONS(7030), + [anon_sym_RBRACE] = ACTIONS(7030), + [anon_sym_LT] = ACTIONS(7032), + [anon_sym_GT] = ACTIONS(7032), + [anon_sym_in] = ACTIONS(7030), + [anon_sym_QMARK] = ACTIONS(7032), + [anon_sym_DOT] = ACTIONS(7032), + [anon_sym_EQ_GT] = ACTIONS(7030), + [anon_sym_STAR] = ACTIONS(7030), + [anon_sym_switch] = ACTIONS(7030), + [anon_sym_when] = ACTIONS(7030), + [anon_sym_DOT_DOT] = ACTIONS(7030), + [anon_sym_LT_EQ] = ACTIONS(7030), + [anon_sym_GT_EQ] = ACTIONS(7030), + [anon_sym_and] = ACTIONS(7030), + [anon_sym_or] = ACTIONS(7030), + [anon_sym_EQ_EQ] = ACTIONS(7030), + [anon_sym_BANG_EQ] = ACTIONS(7030), + [anon_sym_AMP_AMP] = ACTIONS(7030), + [anon_sym_PIPE_PIPE] = ACTIONS(7030), + [anon_sym_AMP] = ACTIONS(7032), + [sym_op_bitwise_or] = ACTIONS(7032), + [anon_sym_CARET] = ACTIONS(7030), + [sym_op_left_shift] = ACTIONS(7030), + [sym_op_right_shift] = ACTIONS(7032), + [sym_op_unsigned_right_shift] = ACTIONS(7030), + [anon_sym_PLUS] = ACTIONS(7032), + [anon_sym_DASH] = ACTIONS(7032), + [sym_op_divide] = ACTIONS(7032), + [sym_op_modulo] = ACTIONS(7030), + [sym_op_coalescing] = ACTIONS(7030), + [anon_sym_BANG] = ACTIONS(7032), + [anon_sym_PLUS_PLUS] = ACTIONS(7030), + [anon_sym_DASH_DASH] = ACTIONS(7030), + [anon_sym_on] = ACTIONS(7030), + [anon_sym_equals] = ACTIONS(7030), + [anon_sym_by] = ACTIONS(7030), + [anon_sym_as] = ACTIONS(7030), + [anon_sym_is] = ACTIONS(7030), + [anon_sym_DASH_GT] = ACTIONS(7030), + [anon_sym_with] = ACTIONS(7030), + [aux_sym_preproc_if_token3] = ACTIONS(7030), + [aux_sym_preproc_else_token1] = ACTIONS(7030), + [aux_sym_preproc_elif_token1] = ACTIONS(7030), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -608862,27 +601323,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4586] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4586), [sym_preproc_endregion] = STATE(4586), [sym_preproc_line] = STATE(4586), @@ -608892,40 +601347,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4586), [sym_preproc_define] = STATE(4586), [sym_preproc_undef] = STATE(4586), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7170), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7170), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -608938,27 +601394,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4587] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4587), [sym_preproc_endregion] = STATE(4587), [sym_preproc_line] = STATE(4587), @@ -608968,40 +601403,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4587), [sym_preproc_define] = STATE(4587), [sym_preproc_undef] = STATE(4587), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5999), + [anon_sym_LBRACK] = ACTIONS(5999), + [anon_sym_COLON] = ACTIONS(5999), + [anon_sym_COMMA] = ACTIONS(5999), + [anon_sym_RBRACK] = ACTIONS(5999), + [anon_sym_LPAREN] = ACTIONS(5999), + [anon_sym_RPAREN] = ACTIONS(5999), + [anon_sym_RBRACE] = ACTIONS(5999), + [anon_sym_LT] = ACTIONS(6001), + [anon_sym_GT] = ACTIONS(6001), + [anon_sym_in] = ACTIONS(5999), + [anon_sym_QMARK] = ACTIONS(6001), + [anon_sym_DOT] = ACTIONS(6001), + [anon_sym_EQ_GT] = ACTIONS(5999), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_switch] = ACTIONS(5999), + [anon_sym_when] = ACTIONS(5999), + [anon_sym_DOT_DOT] = ACTIONS(5999), + [anon_sym_LT_EQ] = ACTIONS(5999), + [anon_sym_GT_EQ] = ACTIONS(5999), + [anon_sym_and] = ACTIONS(5999), + [anon_sym_or] = ACTIONS(5999), + [anon_sym_EQ_EQ] = ACTIONS(5999), + [anon_sym_BANG_EQ] = ACTIONS(5999), + [anon_sym_AMP_AMP] = ACTIONS(5999), + [anon_sym_PIPE_PIPE] = ACTIONS(5999), + [anon_sym_AMP] = ACTIONS(6001), + [sym_op_bitwise_or] = ACTIONS(6001), + [anon_sym_CARET] = ACTIONS(5999), + [sym_op_left_shift] = ACTIONS(5999), + [sym_op_right_shift] = ACTIONS(6001), + [sym_op_unsigned_right_shift] = ACTIONS(5999), + [anon_sym_PLUS] = ACTIONS(6001), + [anon_sym_DASH] = ACTIONS(6001), + [sym_op_divide] = ACTIONS(6001), + [sym_op_modulo] = ACTIONS(5999), + [sym_op_coalescing] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(6001), + [anon_sym_PLUS_PLUS] = ACTIONS(5999), + [anon_sym_DASH_DASH] = ACTIONS(5999), + [anon_sym_on] = ACTIONS(5999), + [anon_sym_equals] = ACTIONS(5999), + [anon_sym_by] = ACTIONS(5999), + [anon_sym_as] = ACTIONS(5999), + [anon_sym_is] = ACTIONS(5999), + [anon_sym_DASH_GT] = ACTIONS(5999), + [anon_sym_with] = ACTIONS(5999), + [aux_sym_preproc_if_token3] = ACTIONS(5999), + [aux_sym_preproc_else_token1] = ACTIONS(5999), + [aux_sym_preproc_elif_token1] = ACTIONS(5999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -609014,27 +601465,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4588] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(981), - [sym_op_lte] = STATE(981), - [sym_op_eq] = STATE(982), - [sym_op_neq] = STATE(982), - [sym_op_gt] = STATE(981), - [sym_op_gte] = STATE(981), - [sym_op_and] = STATE(983), - [sym_op_or] = STATE(984), - [sym_op_bitwise_and] = STATE(985), - [sym_op_bitwise_or] = STATE(986), - [sym_op_bitwise_xor] = STATE(993), - [sym_op_left_shift] = STATE(998), - [sym_op_right_shift] = STATE(998), - [sym_op_unsigned_right_shift] = STATE(998), - [sym_op_plus] = STATE(999), - [sym_op_minus] = STATE(999), - [sym_op_multiply] = STATE(1001), - [sym_op_divide] = STATE(1001), - [sym_op_modulo] = STATE(1001), [sym_preproc_region] = STATE(4588), [sym_preproc_endregion] = STATE(4588), [sym_preproc_line] = STATE(4588), @@ -609044,40 +601474,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4588), [sym_preproc_define] = STATE(4588), [sym_preproc_undef] = STATE(4588), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(5823), - [anon_sym_is] = ACTIONS(6513), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5895), + [anon_sym_COLON] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_RBRACK] = ACTIONS(5895), + [anon_sym_LPAREN] = ACTIONS(5895), + [anon_sym_RPAREN] = ACTIONS(5895), + [anon_sym_RBRACE] = ACTIONS(5895), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_in] = ACTIONS(5895), + [anon_sym_QMARK] = ACTIONS(5897), + [anon_sym_DOT] = ACTIONS(5897), + [anon_sym_EQ_GT] = ACTIONS(5895), + [anon_sym_STAR] = ACTIONS(5895), + [anon_sym_switch] = ACTIONS(5895), + [anon_sym_when] = ACTIONS(5895), + [anon_sym_DOT_DOT] = ACTIONS(5895), + [anon_sym_LT_EQ] = ACTIONS(5895), + [anon_sym_GT_EQ] = ACTIONS(5895), + [anon_sym_and] = ACTIONS(5895), + [anon_sym_or] = ACTIONS(5895), + [anon_sym_EQ_EQ] = ACTIONS(5895), + [anon_sym_BANG_EQ] = ACTIONS(5895), + [anon_sym_AMP_AMP] = ACTIONS(5895), + [anon_sym_PIPE_PIPE] = ACTIONS(5895), + [anon_sym_AMP] = ACTIONS(5897), + [sym_op_bitwise_or] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5895), + [sym_op_left_shift] = ACTIONS(5895), + [sym_op_right_shift] = ACTIONS(5897), + [sym_op_unsigned_right_shift] = ACTIONS(5895), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [sym_op_divide] = ACTIONS(5897), + [sym_op_modulo] = ACTIONS(5895), + [sym_op_coalescing] = ACTIONS(5895), + [anon_sym_BANG] = ACTIONS(5897), + [anon_sym_PLUS_PLUS] = ACTIONS(5895), + [anon_sym_DASH_DASH] = ACTIONS(5895), + [anon_sym_on] = ACTIONS(5895), + [anon_sym_equals] = ACTIONS(5895), + [anon_sym_by] = ACTIONS(5895), + [anon_sym_as] = ACTIONS(5895), + [anon_sym_is] = ACTIONS(5895), + [anon_sym_DASH_GT] = ACTIONS(5895), + [anon_sym_with] = ACTIONS(5895), + [aux_sym_preproc_if_token3] = ACTIONS(5895), + [aux_sym_preproc_else_token1] = ACTIONS(5895), + [aux_sym_preproc_elif_token1] = ACTIONS(5895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -609090,27 +601536,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4589] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), [sym_preproc_region] = STATE(4589), [sym_preproc_endregion] = STATE(4589), [sym_preproc_line] = STATE(4589), @@ -609120,40 +601545,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4589), [sym_preproc_define] = STATE(4589), [sym_preproc_undef] = STATE(4589), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6875), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6921), + [anon_sym_LBRACK] = ACTIONS(6921), + [anon_sym_COLON] = ACTIONS(6921), + [anon_sym_COMMA] = ACTIONS(6921), + [anon_sym_RBRACK] = ACTIONS(6921), + [anon_sym_LPAREN] = ACTIONS(6921), + [anon_sym_RPAREN] = ACTIONS(6921), + [anon_sym_RBRACE] = ACTIONS(6921), + [anon_sym_LT] = ACTIONS(6923), + [anon_sym_GT] = ACTIONS(6923), + [anon_sym_in] = ACTIONS(6921), + [anon_sym_QMARK] = ACTIONS(6923), + [anon_sym_DOT] = ACTIONS(6923), + [anon_sym_EQ_GT] = ACTIONS(6921), + [anon_sym_STAR] = ACTIONS(6921), + [anon_sym_switch] = ACTIONS(6921), + [anon_sym_when] = ACTIONS(6921), + [anon_sym_DOT_DOT] = ACTIONS(6921), + [anon_sym_LT_EQ] = ACTIONS(6921), + [anon_sym_GT_EQ] = ACTIONS(6921), + [anon_sym_and] = ACTIONS(6921), + [anon_sym_or] = ACTIONS(6921), + [anon_sym_EQ_EQ] = ACTIONS(6921), + [anon_sym_BANG_EQ] = ACTIONS(6921), + [anon_sym_AMP_AMP] = ACTIONS(6921), + [anon_sym_PIPE_PIPE] = ACTIONS(6921), + [anon_sym_AMP] = ACTIONS(6923), + [sym_op_bitwise_or] = ACTIONS(6923), + [anon_sym_CARET] = ACTIONS(6921), + [sym_op_left_shift] = ACTIONS(6921), + [sym_op_right_shift] = ACTIONS(6923), + [sym_op_unsigned_right_shift] = ACTIONS(6921), + [anon_sym_PLUS] = ACTIONS(6923), + [anon_sym_DASH] = ACTIONS(6923), + [sym_op_divide] = ACTIONS(6923), + [sym_op_modulo] = ACTIONS(6921), + [sym_op_coalescing] = ACTIONS(6921), + [anon_sym_BANG] = ACTIONS(6923), + [anon_sym_PLUS_PLUS] = ACTIONS(6921), + [anon_sym_DASH_DASH] = ACTIONS(6921), + [anon_sym_on] = ACTIONS(6921), + [anon_sym_equals] = ACTIONS(6921), + [anon_sym_by] = ACTIONS(6921), + [anon_sym_as] = ACTIONS(6921), + [anon_sym_is] = ACTIONS(6921), + [anon_sym_DASH_GT] = ACTIONS(6921), + [anon_sym_with] = ACTIONS(6921), + [aux_sym_preproc_if_token3] = ACTIONS(6921), + [aux_sym_preproc_else_token1] = ACTIONS(6921), + [aux_sym_preproc_elif_token1] = ACTIONS(6921), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -609166,27 +601607,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4590] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4590), [sym_preproc_endregion] = STATE(4590), [sym_preproc_line] = STATE(4590), @@ -609196,40 +601631,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4590), [sym_preproc_define] = STATE(4590), [sym_preproc_undef] = STATE(4590), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6877), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7135), + [anon_sym_is] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -609242,27 +601678,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4591] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(4591), [sym_preproc_endregion] = STATE(4591), [sym_preproc_line] = STATE(4591), @@ -609272,40 +601702,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4591), [sym_preproc_define] = STATE(4591), [sym_preproc_undef] = STATE(4591), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6879), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6533), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6408), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6203), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(6213), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(6420), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -609318,27 +601749,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4592] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4592), [sym_preproc_endregion] = STATE(4592), [sym_preproc_line] = STATE(4592), @@ -609348,40 +601758,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4592), [sym_preproc_define] = STATE(4592), [sym_preproc_undef] = STATE(4592), - [anon_sym_SEMI] = ACTIONS(6881), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6921), + [anon_sym_LBRACK] = ACTIONS(6921), + [anon_sym_COLON] = ACTIONS(6921), + [anon_sym_COMMA] = ACTIONS(6921), + [anon_sym_RBRACK] = ACTIONS(6921), + [anon_sym_LPAREN] = ACTIONS(6921), + [anon_sym_RPAREN] = ACTIONS(6921), + [anon_sym_RBRACE] = ACTIONS(6921), + [anon_sym_LT] = ACTIONS(6923), + [anon_sym_GT] = ACTIONS(6923), + [anon_sym_in] = ACTIONS(6921), + [anon_sym_QMARK] = ACTIONS(6923), + [anon_sym_DOT] = ACTIONS(6923), + [anon_sym_EQ_GT] = ACTIONS(6921), + [anon_sym_STAR] = ACTIONS(6921), + [anon_sym_switch] = ACTIONS(6921), + [anon_sym_when] = ACTIONS(6921), + [anon_sym_DOT_DOT] = ACTIONS(6921), + [anon_sym_LT_EQ] = ACTIONS(6921), + [anon_sym_GT_EQ] = ACTIONS(6921), + [anon_sym_and] = ACTIONS(6921), + [anon_sym_or] = ACTIONS(6921), + [anon_sym_EQ_EQ] = ACTIONS(6921), + [anon_sym_BANG_EQ] = ACTIONS(6921), + [anon_sym_AMP_AMP] = ACTIONS(6921), + [anon_sym_PIPE_PIPE] = ACTIONS(6921), + [anon_sym_AMP] = ACTIONS(6923), + [sym_op_bitwise_or] = ACTIONS(6923), + [anon_sym_CARET] = ACTIONS(6921), + [sym_op_left_shift] = ACTIONS(6921), + [sym_op_right_shift] = ACTIONS(6923), + [sym_op_unsigned_right_shift] = ACTIONS(6921), + [anon_sym_PLUS] = ACTIONS(6923), + [anon_sym_DASH] = ACTIONS(6923), + [sym_op_divide] = ACTIONS(6923), + [sym_op_modulo] = ACTIONS(6921), + [sym_op_coalescing] = ACTIONS(6921), + [anon_sym_BANG] = ACTIONS(6923), + [anon_sym_PLUS_PLUS] = ACTIONS(6921), + [anon_sym_DASH_DASH] = ACTIONS(6921), + [anon_sym_on] = ACTIONS(6921), + [anon_sym_equals] = ACTIONS(6921), + [anon_sym_by] = ACTIONS(6921), + [anon_sym_as] = ACTIONS(6921), + [anon_sym_is] = ACTIONS(6921), + [anon_sym_DASH_GT] = ACTIONS(6921), + [anon_sym_with] = ACTIONS(6921), + [aux_sym_preproc_if_token3] = ACTIONS(6921), + [aux_sym_preproc_else_token1] = ACTIONS(6921), + [aux_sym_preproc_elif_token1] = ACTIONS(6921), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -609394,27 +601820,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4593] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4593), [sym_preproc_endregion] = STATE(4593), [sym_preproc_line] = STATE(4593), @@ -609424,40 +601829,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4593), [sym_preproc_define] = STATE(4593), [sym_preproc_undef] = STATE(4593), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5899), + [anon_sym_COLON] = ACTIONS(5899), + [anon_sym_COMMA] = ACTIONS(5899), + [anon_sym_RBRACK] = ACTIONS(5899), + [anon_sym_LPAREN] = ACTIONS(5899), + [anon_sym_RPAREN] = ACTIONS(5899), + [anon_sym_RBRACE] = ACTIONS(5899), + [anon_sym_LT] = ACTIONS(5901), + [anon_sym_GT] = ACTIONS(5901), + [anon_sym_in] = ACTIONS(5899), + [anon_sym_QMARK] = ACTIONS(5901), + [anon_sym_DOT] = ACTIONS(5901), + [anon_sym_EQ_GT] = ACTIONS(5899), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_switch] = ACTIONS(5899), + [anon_sym_when] = ACTIONS(5899), + [anon_sym_DOT_DOT] = ACTIONS(5899), + [anon_sym_LT_EQ] = ACTIONS(5899), + [anon_sym_GT_EQ] = ACTIONS(5899), + [anon_sym_and] = ACTIONS(5899), + [anon_sym_or] = ACTIONS(5899), + [anon_sym_EQ_EQ] = ACTIONS(5899), + [anon_sym_BANG_EQ] = ACTIONS(5899), + [anon_sym_AMP_AMP] = ACTIONS(5899), + [anon_sym_PIPE_PIPE] = ACTIONS(5899), + [anon_sym_AMP] = ACTIONS(5901), + [sym_op_bitwise_or] = ACTIONS(5901), + [anon_sym_CARET] = ACTIONS(5899), + [sym_op_left_shift] = ACTIONS(5899), + [sym_op_right_shift] = ACTIONS(5901), + [sym_op_unsigned_right_shift] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_DASH] = ACTIONS(5901), + [sym_op_divide] = ACTIONS(5901), + [sym_op_modulo] = ACTIONS(5899), + [sym_op_coalescing] = ACTIONS(5899), + [anon_sym_BANG] = ACTIONS(5901), + [anon_sym_PLUS_PLUS] = ACTIONS(5899), + [anon_sym_DASH_DASH] = ACTIONS(5899), + [anon_sym_on] = ACTIONS(5899), + [anon_sym_equals] = ACTIONS(5899), + [anon_sym_by] = ACTIONS(5899), + [anon_sym_as] = ACTIONS(5899), + [anon_sym_is] = ACTIONS(5899), + [anon_sym_DASH_GT] = ACTIONS(5899), + [anon_sym_with] = ACTIONS(5899), + [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), @@ -609470,27 +601891,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4594] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4594), [sym_preproc_endregion] = STATE(4594), [sym_preproc_line] = STATE(4594), @@ -609500,40 +601900,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4594), [sym_preproc_define] = STATE(4594), [sym_preproc_undef] = STATE(4594), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(6883), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6925), + [anon_sym_LBRACK] = ACTIONS(6925), + [anon_sym_COLON] = ACTIONS(6925), + [anon_sym_COMMA] = ACTIONS(6925), + [anon_sym_RBRACK] = ACTIONS(6925), + [anon_sym_LPAREN] = ACTIONS(6925), + [anon_sym_RPAREN] = ACTIONS(6925), + [anon_sym_RBRACE] = ACTIONS(6925), + [anon_sym_LT] = ACTIONS(6927), + [anon_sym_GT] = ACTIONS(6927), + [anon_sym_in] = ACTIONS(6925), + [anon_sym_QMARK] = ACTIONS(6927), + [anon_sym_DOT] = ACTIONS(6927), + [anon_sym_EQ_GT] = ACTIONS(6925), + [anon_sym_STAR] = ACTIONS(6925), + [anon_sym_switch] = ACTIONS(6925), + [anon_sym_when] = ACTIONS(6925), + [anon_sym_DOT_DOT] = ACTIONS(6925), + [anon_sym_LT_EQ] = ACTIONS(6925), + [anon_sym_GT_EQ] = ACTIONS(6925), + [anon_sym_and] = ACTIONS(6925), + [anon_sym_or] = ACTIONS(6925), + [anon_sym_EQ_EQ] = ACTIONS(6925), + [anon_sym_BANG_EQ] = ACTIONS(6925), + [anon_sym_AMP_AMP] = ACTIONS(6925), + [anon_sym_PIPE_PIPE] = ACTIONS(6925), + [anon_sym_AMP] = ACTIONS(6927), + [sym_op_bitwise_or] = ACTIONS(6927), + [anon_sym_CARET] = ACTIONS(6925), + [sym_op_left_shift] = ACTIONS(6925), + [sym_op_right_shift] = ACTIONS(6927), + [sym_op_unsigned_right_shift] = ACTIONS(6925), + [anon_sym_PLUS] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6927), + [sym_op_divide] = ACTIONS(6927), + [sym_op_modulo] = ACTIONS(6925), + [sym_op_coalescing] = ACTIONS(6925), + [anon_sym_BANG] = ACTIONS(6927), + [anon_sym_PLUS_PLUS] = ACTIONS(6925), + [anon_sym_DASH_DASH] = ACTIONS(6925), + [anon_sym_on] = ACTIONS(6925), + [anon_sym_equals] = ACTIONS(6925), + [anon_sym_by] = ACTIONS(6925), + [anon_sym_as] = ACTIONS(6925), + [anon_sym_is] = ACTIONS(6925), + [anon_sym_DASH_GT] = ACTIONS(6925), + [anon_sym_with] = ACTIONS(6925), + [aux_sym_preproc_if_token3] = ACTIONS(6925), + [aux_sym_preproc_else_token1] = ACTIONS(6925), + [aux_sym_preproc_elif_token1] = ACTIONS(6925), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -609546,27 +601962,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4595] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), [sym_preproc_region] = STATE(4595), [sym_preproc_endregion] = STATE(4595), [sym_preproc_line] = STATE(4595), @@ -609576,40 +601971,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4595), [sym_preproc_define] = STATE(4595), [sym_preproc_undef] = STATE(4595), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6523), - [anon_sym_by] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(6527), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LBRACK] = ACTIONS(5939), + [anon_sym_COLON] = ACTIONS(5939), + [anon_sym_COMMA] = ACTIONS(5939), + [anon_sym_RBRACK] = ACTIONS(5939), + [anon_sym_LPAREN] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_RBRACE] = ACTIONS(5939), + [anon_sym_LT] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_in] = ACTIONS(5939), + [anon_sym_QMARK] = ACTIONS(5941), + [anon_sym_DOT] = ACTIONS(5941), + [anon_sym_EQ_GT] = ACTIONS(5939), + [anon_sym_STAR] = ACTIONS(5939), + [anon_sym_switch] = ACTIONS(5939), + [anon_sym_when] = ACTIONS(5939), + [anon_sym_DOT_DOT] = ACTIONS(5939), + [anon_sym_LT_EQ] = ACTIONS(5939), + [anon_sym_GT_EQ] = ACTIONS(5939), + [anon_sym_and] = ACTIONS(5939), + [anon_sym_or] = ACTIONS(5939), + [anon_sym_EQ_EQ] = ACTIONS(5939), + [anon_sym_BANG_EQ] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5941), + [sym_op_bitwise_or] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5939), + [sym_op_left_shift] = ACTIONS(5939), + [sym_op_right_shift] = ACTIONS(5941), + [sym_op_unsigned_right_shift] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [sym_op_divide] = ACTIONS(5941), + [sym_op_modulo] = ACTIONS(5939), + [sym_op_coalescing] = ACTIONS(5939), + [anon_sym_BANG] = ACTIONS(5941), + [anon_sym_PLUS_PLUS] = ACTIONS(5939), + [anon_sym_DASH_DASH] = ACTIONS(5939), + [anon_sym_on] = ACTIONS(5939), + [anon_sym_equals] = ACTIONS(5939), + [anon_sym_by] = ACTIONS(5939), + [anon_sym_as] = ACTIONS(5939), + [anon_sym_is] = ACTIONS(5939), + [anon_sym_DASH_GT] = ACTIONS(5939), + [anon_sym_with] = ACTIONS(5939), + [aux_sym_preproc_if_token3] = ACTIONS(5939), + [aux_sym_preproc_else_token1] = ACTIONS(5939), + [aux_sym_preproc_elif_token1] = ACTIONS(5939), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -609622,27 +602033,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4596] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1826), - [sym_op_lte] = STATE(1826), - [sym_op_eq] = STATE(852), - [sym_op_neq] = STATE(852), - [sym_op_gt] = STATE(1826), - [sym_op_gte] = STATE(1826), - [sym_op_and] = STATE(853), - [sym_op_or] = STATE(854), - [sym_op_bitwise_and] = STATE(855), - [sym_op_bitwise_or] = STATE(856), - [sym_op_bitwise_xor] = STATE(859), - [sym_op_left_shift] = STATE(862), - [sym_op_right_shift] = STATE(862), - [sym_op_unsigned_right_shift] = STATE(862), - [sym_op_plus] = STATE(866), - [sym_op_minus] = STATE(866), - [sym_op_multiply] = STATE(867), - [sym_op_divide] = STATE(867), - [sym_op_modulo] = STATE(867), [sym_preproc_region] = STATE(4596), [sym_preproc_endregion] = STATE(4596), [sym_preproc_line] = STATE(4596), @@ -609652,40 +602042,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4596), [sym_preproc_define] = STATE(4596), [sym_preproc_undef] = STATE(4596), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_EQ_GT] = ACTIONS(4782), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(6543), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5995), + [anon_sym_LBRACK] = ACTIONS(5995), + [anon_sym_COLON] = ACTIONS(5995), + [anon_sym_COMMA] = ACTIONS(5995), + [anon_sym_RBRACK] = ACTIONS(5995), + [anon_sym_LPAREN] = ACTIONS(5995), + [anon_sym_RPAREN] = ACTIONS(5995), + [anon_sym_RBRACE] = ACTIONS(5995), + [anon_sym_LT] = ACTIONS(5997), + [anon_sym_GT] = ACTIONS(5997), + [anon_sym_in] = ACTIONS(5995), + [anon_sym_QMARK] = ACTIONS(5997), + [anon_sym_DOT] = ACTIONS(5997), + [anon_sym_EQ_GT] = ACTIONS(5995), + [anon_sym_STAR] = ACTIONS(5995), + [anon_sym_switch] = ACTIONS(5995), + [anon_sym_when] = ACTIONS(5995), + [anon_sym_DOT_DOT] = ACTIONS(5995), + [anon_sym_LT_EQ] = ACTIONS(5995), + [anon_sym_GT_EQ] = ACTIONS(5995), + [anon_sym_and] = ACTIONS(5995), + [anon_sym_or] = ACTIONS(5995), + [anon_sym_EQ_EQ] = ACTIONS(5995), + [anon_sym_BANG_EQ] = ACTIONS(5995), + [anon_sym_AMP_AMP] = ACTIONS(5995), + [anon_sym_PIPE_PIPE] = ACTIONS(5995), + [anon_sym_AMP] = ACTIONS(5997), + [sym_op_bitwise_or] = ACTIONS(5997), + [anon_sym_CARET] = ACTIONS(5995), + [sym_op_left_shift] = ACTIONS(5995), + [sym_op_right_shift] = ACTIONS(5997), + [sym_op_unsigned_right_shift] = ACTIONS(5995), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [sym_op_divide] = ACTIONS(5997), + [sym_op_modulo] = ACTIONS(5995), + [sym_op_coalescing] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5997), + [anon_sym_PLUS_PLUS] = ACTIONS(5995), + [anon_sym_DASH_DASH] = ACTIONS(5995), + [anon_sym_on] = ACTIONS(5995), + [anon_sym_equals] = ACTIONS(5995), + [anon_sym_by] = ACTIONS(5995), + [anon_sym_as] = ACTIONS(5995), + [anon_sym_is] = ACTIONS(5995), + [anon_sym_DASH_GT] = ACTIONS(5995), + [anon_sym_with] = ACTIONS(5995), + [aux_sym_preproc_if_token3] = ACTIONS(5995), + [aux_sym_preproc_else_token1] = ACTIONS(5995), + [aux_sym_preproc_elif_token1] = ACTIONS(5995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -609698,27 +602104,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4597] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1282), - [sym_op_lte] = STATE(1282), - [sym_op_eq] = STATE(1283), - [sym_op_neq] = STATE(1283), - [sym_op_gt] = STATE(1282), - [sym_op_gte] = STATE(1282), - [sym_op_and] = STATE(1284), - [sym_op_or] = STATE(1285), - [sym_op_bitwise_and] = STATE(1286), - [sym_op_bitwise_or] = STATE(1287), - [sym_op_bitwise_xor] = STATE(1289), - [sym_op_left_shift] = STATE(1292), - [sym_op_right_shift] = STATE(1292), - [sym_op_unsigned_right_shift] = STATE(1292), - [sym_op_plus] = STATE(1295), - [sym_op_minus] = STATE(1295), - [sym_op_multiply] = STATE(1297), - [sym_op_divide] = STATE(1297), - [sym_op_modulo] = STATE(1297), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4597), [sym_preproc_endregion] = STATE(4597), [sym_preproc_line] = STATE(4597), @@ -609728,40 +602128,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4597), [sym_preproc_define] = STATE(4597), [sym_preproc_undef] = STATE(4597), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_QMARK] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_AMP] = ACTIONS(4676), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4676), - [anon_sym_GT_GT_GT] = ACTIONS(4672), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(6521), - [anon_sym_AMP_AMP] = ACTIONS(4672), - [anon_sym_PIPE_PIPE] = ACTIONS(4672), - [sym_op_coalescing] = ACTIONS(4672), - [anon_sym_by] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7056), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7068), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -609774,27 +602175,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4598] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1344), - [sym_op_lte] = STATE(1344), - [sym_op_eq] = STATE(1343), - [sym_op_neq] = STATE(1343), - [sym_op_gt] = STATE(1344), - [sym_op_gte] = STATE(1344), - [sym_op_and] = STATE(1342), - [sym_op_or] = STATE(1341), - [sym_op_bitwise_and] = STATE(1340), - [sym_op_bitwise_or] = STATE(1339), - [sym_op_bitwise_xor] = STATE(1338), - [sym_op_left_shift] = STATE(1337), - [sym_op_right_shift] = STATE(1337), - [sym_op_unsigned_right_shift] = STATE(1337), - [sym_op_plus] = STATE(1336), - [sym_op_minus] = STATE(1336), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4598), [sym_preproc_endregion] = STATE(4598), [sym_preproc_line] = STATE(4598), @@ -609804,40 +602184,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4598), [sym_preproc_define] = STATE(4598), [sym_preproc_undef] = STATE(4598), - [anon_sym_SEMI] = ACTIONS(6885), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5891), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_COLON] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_RBRACK] = ACTIONS(5891), + [anon_sym_LPAREN] = ACTIONS(5891), + [anon_sym_RPAREN] = ACTIONS(5891), + [anon_sym_RBRACE] = ACTIONS(5891), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_in] = ACTIONS(5891), + [anon_sym_QMARK] = ACTIONS(5893), + [anon_sym_DOT] = ACTIONS(5893), + [anon_sym_EQ_GT] = ACTIONS(5891), + [anon_sym_STAR] = ACTIONS(5891), + [anon_sym_switch] = ACTIONS(5891), + [anon_sym_when] = ACTIONS(5891), + [anon_sym_DOT_DOT] = ACTIONS(5891), + [anon_sym_LT_EQ] = ACTIONS(5891), + [anon_sym_GT_EQ] = ACTIONS(5891), + [anon_sym_and] = ACTIONS(5891), + [anon_sym_or] = ACTIONS(5891), + [anon_sym_EQ_EQ] = ACTIONS(5891), + [anon_sym_BANG_EQ] = ACTIONS(5891), + [anon_sym_AMP_AMP] = ACTIONS(5891), + [anon_sym_PIPE_PIPE] = ACTIONS(5891), + [anon_sym_AMP] = ACTIONS(5893), + [sym_op_bitwise_or] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5891), + [sym_op_left_shift] = ACTIONS(5891), + [sym_op_right_shift] = ACTIONS(5893), + [sym_op_unsigned_right_shift] = ACTIONS(5891), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_DASH] = ACTIONS(5893), + [sym_op_divide] = ACTIONS(5893), + [sym_op_modulo] = ACTIONS(5891), + [sym_op_coalescing] = ACTIONS(5891), + [anon_sym_BANG] = ACTIONS(5893), + [anon_sym_PLUS_PLUS] = ACTIONS(5891), + [anon_sym_DASH_DASH] = ACTIONS(5891), + [anon_sym_on] = ACTIONS(5891), + [anon_sym_equals] = ACTIONS(5891), + [anon_sym_by] = ACTIONS(5891), + [anon_sym_as] = ACTIONS(5891), + [anon_sym_is] = ACTIONS(5891), + [anon_sym_DASH_GT] = ACTIONS(5891), + [anon_sym_with] = ACTIONS(5891), + [aux_sym_preproc_if_token3] = ACTIONS(5891), + [aux_sym_preproc_else_token1] = ACTIONS(5891), + [aux_sym_preproc_elif_token1] = ACTIONS(5891), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -609850,27 +602246,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4599] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1817), - [sym_op_lte] = STATE(1817), - [sym_op_eq] = STATE(1816), - [sym_op_neq] = STATE(1816), - [sym_op_gt] = STATE(1817), - [sym_op_gte] = STATE(1817), - [sym_op_and] = STATE(1814), - [sym_op_or] = STATE(1813), - [sym_op_bitwise_and] = STATE(1811), - [sym_op_bitwise_or] = STATE(1807), - [sym_op_bitwise_xor] = STATE(1805), - [sym_op_left_shift] = STATE(1803), - [sym_op_right_shift] = STATE(1803), - [sym_op_unsigned_right_shift] = STATE(1803), - [sym_op_plus] = STATE(1802), - [sym_op_minus] = STATE(1802), - [sym_op_multiply] = STATE(1801), - [sym_op_divide] = STATE(1801), - [sym_op_modulo] = STATE(1801), + [sym__name] = STATE(5847), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(5576), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(4599), [sym_preproc_endregion] = STATE(4599), [sym_preproc_line] = STATE(4599), @@ -609880,40 +602264,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4599), [sym_preproc_define] = STATE(4599), [sym_preproc_undef] = STATE(4599), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(6887), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5885), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5815), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5887), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3894), + [anon_sym_global] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3900), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3894), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_where] = ACTIONS(3894), + [anon_sym_QMARK] = ACTIONS(3694), + [anon_sym_notnull] = ACTIONS(3894), + [anon_sym_unmanaged] = ACTIONS(3894), + [anon_sym_DOT] = ACTIONS(3694), + [anon_sym_scoped] = ACTIONS(3894), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3894), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3894), + [anon_sym_when] = ACTIONS(3894), + [sym_discard] = ACTIONS(3696), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3894), + [anon_sym_into] = ACTIONS(3894), + [anon_sym_join] = ACTIONS(3894), + [anon_sym_on] = ACTIONS(3894), + [anon_sym_equals] = ACTIONS(3894), + [anon_sym_let] = ACTIONS(3894), + [anon_sym_orderby] = ACTIONS(3894), + [anon_sym_ascending] = ACTIONS(3894), + [anon_sym_descending] = ACTIONS(3894), + [anon_sym_group] = ACTIONS(3894), + [anon_sym_by] = ACTIONS(3894), + [anon_sym_select] = ACTIONS(3894), + [sym_grit_metavariable] = ACTIONS(3897), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -609926,27 +602317,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4600] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1879), - [sym_op_lte] = STATE(1879), - [sym_op_eq] = STATE(1880), - [sym_op_neq] = STATE(1880), - [sym_op_gt] = STATE(1879), - [sym_op_gte] = STATE(1879), - [sym_op_and] = STATE(1882), - [sym_op_or] = STATE(1883), - [sym_op_bitwise_and] = STATE(1884), - [sym_op_bitwise_or] = STATE(1888), - [sym_op_bitwise_xor] = STATE(1893), - [sym_op_left_shift] = STATE(1798), - [sym_op_right_shift] = STATE(1798), - [sym_op_unsigned_right_shift] = STATE(1798), - [sym_op_plus] = STATE(1797), - [sym_op_minus] = STATE(1797), - [sym_op_multiply] = STATE(1744), - [sym_op_divide] = STATE(1744), - [sym_op_modulo] = STATE(1744), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4600), [sym_preproc_endregion] = STATE(4600), [sym_preproc_line] = STATE(4600), @@ -609956,39 +602341,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4600), [sym_preproc_define] = STATE(4600), [sym_preproc_undef] = STATE(4600), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6045), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7068), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -610001,27 +602388,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4601] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(4712), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4601), [sym_preproc_endregion] = STATE(4601), [sym_preproc_line] = STATE(4601), @@ -610031,39 +602412,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4601), [sym_preproc_define] = STATE(4601), [sym_preproc_undef] = STATE(4601), - [anon_sym_LBRACK] = ACTIONS(5654), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7172), + [anon_sym_RBRACK] = ACTIONS(7172), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -610076,7 +602459,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4602] = { - [sym_block] = STATE(1986), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4602), [sym_preproc_endregion] = STATE(4602), [sym_preproc_line] = STATE(4602), @@ -610086,59 +602483,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4602), [sym_preproc_define] = STATE(4602), [sym_preproc_undef] = STATE(4602), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(6889), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_record] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_SEMI] = ACTIONS(7127), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7127), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6717), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(6729), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -610151,27 +602530,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4603] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2515), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), [sym_preproc_region] = STATE(4603), [sym_preproc_endregion] = STATE(4603), [sym_preproc_line] = STATE(4603), @@ -610181,39 +602539,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4603), [sym_preproc_define] = STATE(4603), [sym_preproc_undef] = STATE(4603), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_switch] = ACTIONS(4006), + [anon_sym_when] = ACTIONS(5068), + [anon_sym_DOT_DOT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5068), + [anon_sym_PLUS_EQ] = ACTIONS(4006), + [anon_sym_DASH_EQ] = ACTIONS(4006), + [anon_sym_STAR_EQ] = ACTIONS(4006), + [anon_sym_SLASH_EQ] = ACTIONS(4006), + [anon_sym_PERCENT_EQ] = ACTIONS(4006), + [anon_sym_AMP_EQ] = ACTIONS(4006), + [anon_sym_CARET_EQ] = ACTIONS(4006), + [anon_sym_PIPE_EQ] = ACTIONS(4006), + [anon_sym_LT_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), + [sym_op_coalescing] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -610226,8 +602601,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4604] = { - [sym_argument_list] = STATE(4650), - [sym_initializer_expression] = STATE(4902), [sym_preproc_region] = STATE(4604), [sym_preproc_endregion] = STATE(4604), [sym_preproc_line] = STATE(4604), @@ -610237,58 +602610,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4604), [sym_preproc_define] = STATE(4604), [sym_preproc_undef] = STATE(4604), - [anon_sym_SEMI] = ACTIONS(5690), - [anon_sym_LBRACK] = ACTIONS(5690), - [anon_sym_COLON] = ACTIONS(5690), - [anon_sym_COMMA] = ACTIONS(5690), - [anon_sym_RBRACK] = ACTIONS(5690), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(5690), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(5690), - [anon_sym_LT] = ACTIONS(5692), - [anon_sym_GT] = ACTIONS(5692), - [anon_sym_in] = ACTIONS(5692), - [anon_sym_QMARK] = ACTIONS(5692), - [anon_sym_BANG] = ACTIONS(5692), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5692), - [anon_sym_DASH] = ACTIONS(5692), - [anon_sym_STAR] = ACTIONS(5690), - [anon_sym_SLASH] = ACTIONS(5692), - [anon_sym_PERCENT] = ACTIONS(5690), - [anon_sym_CARET] = ACTIONS(5690), - [anon_sym_PIPE] = ACTIONS(5692), - [anon_sym_AMP] = ACTIONS(5692), - [anon_sym_LT_LT] = ACTIONS(5690), - [anon_sym_GT_GT] = ACTIONS(5692), - [anon_sym_GT_GT_GT] = ACTIONS(5690), - [anon_sym_EQ_EQ] = ACTIONS(5690), - [anon_sym_BANG_EQ] = ACTIONS(5690), - [anon_sym_GT_EQ] = ACTIONS(5690), - [anon_sym_LT_EQ] = ACTIONS(5690), - [anon_sym_DOT] = ACTIONS(5692), - [anon_sym_EQ_GT] = ACTIONS(5690), - [anon_sym_switch] = ACTIONS(5690), - [anon_sym_when] = ACTIONS(5690), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5690), - [anon_sym_or] = ACTIONS(5690), - [anon_sym_AMP_AMP] = ACTIONS(5690), - [anon_sym_PIPE_PIPE] = ACTIONS(5690), - [sym_op_coalescing] = ACTIONS(5690), - [anon_sym_into] = ACTIONS(5690), - [anon_sym_on] = ACTIONS(5690), - [anon_sym_equals] = ACTIONS(5690), - [anon_sym_by] = ACTIONS(5690), - [anon_sym_as] = ACTIONS(5690), - [anon_sym_is] = ACTIONS(5690), - [anon_sym_DASH_GT] = ACTIONS(5690), - [anon_sym_with] = ACTIONS(5690), - [aux_sym_preproc_if_token3] = ACTIONS(5690), - [aux_sym_preproc_else_token1] = ACTIONS(5690), - [aux_sym_preproc_elif_token1] = ACTIONS(5690), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym_LBRACK] = ACTIONS(6843), + [anon_sym_COLON] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RBRACK] = ACTIONS(6843), + [anon_sym_LPAREN] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_RBRACE] = ACTIONS(6843), + [anon_sym_LT] = ACTIONS(6845), + [anon_sym_GT] = ACTIONS(6845), + [anon_sym_in] = ACTIONS(6843), + [anon_sym_QMARK] = ACTIONS(6845), + [anon_sym_DOT] = ACTIONS(6845), + [anon_sym_EQ_GT] = ACTIONS(6843), + [anon_sym_STAR] = ACTIONS(6843), + [anon_sym_switch] = ACTIONS(6843), + [anon_sym_when] = ACTIONS(6843), + [anon_sym_DOT_DOT] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(6845), + [sym_op_bitwise_or] = ACTIONS(6845), + [anon_sym_CARET] = ACTIONS(6843), + [sym_op_left_shift] = ACTIONS(6843), + [sym_op_right_shift] = ACTIONS(6845), + [sym_op_unsigned_right_shift] = ACTIONS(6843), + [anon_sym_PLUS] = ACTIONS(6845), + [anon_sym_DASH] = ACTIONS(6845), + [sym_op_divide] = ACTIONS(6845), + [sym_op_modulo] = ACTIONS(6843), + [sym_op_coalescing] = ACTIONS(6843), + [anon_sym_BANG] = ACTIONS(6845), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_on] = ACTIONS(6843), + [anon_sym_equals] = ACTIONS(6843), + [anon_sym_by] = ACTIONS(6843), + [anon_sym_as] = ACTIONS(6843), + [anon_sym_is] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [anon_sym_with] = ACTIONS(6843), + [aux_sym_preproc_if_token3] = ACTIONS(6843), + [aux_sym_preproc_else_token1] = ACTIONS(6843), + [aux_sym_preproc_elif_token1] = ACTIONS(6843), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -610301,27 +602672,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4605] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1668), - [sym_op_lte] = STATE(1668), - [sym_op_eq] = STATE(1671), - [sym_op_neq] = STATE(1671), - [sym_op_gt] = STATE(1668), - [sym_op_gte] = STATE(1668), - [sym_op_and] = STATE(1672), - [sym_op_or] = STATE(1678), - [sym_op_bitwise_and] = STATE(1679), - [sym_op_bitwise_or] = STATE(1680), - [sym_op_bitwise_xor] = STATE(1682), - [sym_op_left_shift] = STATE(1683), - [sym_op_right_shift] = STATE(1683), - [sym_op_unsigned_right_shift] = STATE(1683), - [sym_op_plus] = STATE(1684), - [sym_op_minus] = STATE(1684), - [sym_op_multiply] = STATE(1685), - [sym_op_divide] = STATE(1685), - [sym_op_modulo] = STATE(1685), [sym_preproc_region] = STATE(4605), [sym_preproc_endregion] = STATE(4605), [sym_preproc_line] = STATE(4605), @@ -610331,39 +602681,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4605), [sym_preproc_define] = STATE(4605), [sym_preproc_undef] = STATE(4605), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6126), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5865), + [anon_sym_LBRACK] = ACTIONS(5865), + [anon_sym_COLON] = ACTIONS(5865), + [anon_sym_COMMA] = ACTIONS(5865), + [anon_sym_RBRACK] = ACTIONS(5865), + [anon_sym_LPAREN] = ACTIONS(5865), + [anon_sym_RPAREN] = ACTIONS(5865), + [anon_sym_RBRACE] = ACTIONS(5865), + [anon_sym_LT] = ACTIONS(5867), + [anon_sym_GT] = ACTIONS(5867), + [anon_sym_in] = ACTIONS(5865), + [anon_sym_QMARK] = ACTIONS(5867), + [anon_sym_DOT] = ACTIONS(5867), + [anon_sym_EQ_GT] = ACTIONS(5865), + [anon_sym_STAR] = ACTIONS(5865), + [anon_sym_switch] = ACTIONS(5865), + [anon_sym_when] = ACTIONS(5865), + [anon_sym_DOT_DOT] = ACTIONS(5865), + [anon_sym_LT_EQ] = ACTIONS(5865), + [anon_sym_GT_EQ] = ACTIONS(5865), + [anon_sym_and] = ACTIONS(5865), + [anon_sym_or] = ACTIONS(5865), + [anon_sym_EQ_EQ] = ACTIONS(5865), + [anon_sym_BANG_EQ] = ACTIONS(5865), + [anon_sym_AMP_AMP] = ACTIONS(5865), + [anon_sym_PIPE_PIPE] = ACTIONS(5865), + [anon_sym_AMP] = ACTIONS(5867), + [sym_op_bitwise_or] = ACTIONS(5867), + [anon_sym_CARET] = ACTIONS(5865), + [sym_op_left_shift] = ACTIONS(5865), + [sym_op_right_shift] = ACTIONS(5867), + [sym_op_unsigned_right_shift] = ACTIONS(5865), + [anon_sym_PLUS] = ACTIONS(5867), + [anon_sym_DASH] = ACTIONS(5867), + [sym_op_divide] = ACTIONS(5867), + [sym_op_modulo] = ACTIONS(5865), + [sym_op_coalescing] = ACTIONS(5865), + [anon_sym_BANG] = ACTIONS(5867), + [anon_sym_PLUS_PLUS] = ACTIONS(5865), + [anon_sym_DASH_DASH] = ACTIONS(5865), + [anon_sym_on] = ACTIONS(5865), + [anon_sym_equals] = ACTIONS(5865), + [anon_sym_by] = ACTIONS(5865), + [anon_sym_as] = ACTIONS(5865), + [anon_sym_is] = ACTIONS(5865), + [anon_sym_DASH_GT] = ACTIONS(5865), + [anon_sym_with] = ACTIONS(5865), + [aux_sym_preproc_if_token3] = ACTIONS(5865), + [aux_sym_preproc_else_token1] = ACTIONS(5865), + [aux_sym_preproc_elif_token1] = ACTIONS(5865), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -610376,27 +602743,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4606] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1837), - [sym_op_neq] = STATE(1837), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1838), - [sym_op_or] = STATE(1839), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1846), - [sym_op_bitwise_xor] = STATE(1847), - [sym_op_left_shift] = STATE(1850), - [sym_op_right_shift] = STATE(1850), - [sym_op_unsigned_right_shift] = STATE(1850), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1853), - [sym_op_divide] = STATE(1853), - [sym_op_modulo] = STATE(1853), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(4606), [sym_preproc_endregion] = STATE(4606), [sym_preproc_line] = STATE(4606), @@ -610406,39 +602767,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4606), [sym_preproc_define] = STATE(4606), [sym_preproc_undef] = STATE(4606), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4802), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6865), + [anon_sym_RBRACK] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(6125), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -610451,27 +602814,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4607] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1148), - [sym_op_lte] = STATE(1148), - [sym_op_eq] = STATE(1147), - [sym_op_neq] = STATE(1147), - [sym_op_gt] = STATE(1148), - [sym_op_gte] = STATE(1148), - [sym_op_and] = STATE(1145), - [sym_op_or] = STATE(1144), - [sym_op_bitwise_and] = STATE(1143), - [sym_op_bitwise_or] = STATE(1141), - [sym_op_bitwise_xor] = STATE(1140), - [sym_op_left_shift] = STATE(1139), - [sym_op_right_shift] = STATE(1139), - [sym_op_unsigned_right_shift] = STATE(1139), - [sym_op_plus] = STATE(1138), - [sym_op_minus] = STATE(1138), - [sym_op_multiply] = STATE(1137), - [sym_op_divide] = STATE(1137), - [sym_op_modulo] = STATE(1137), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4607), [sym_preproc_endregion] = STATE(4607), [sym_preproc_line] = STATE(4607), @@ -610481,39 +602838,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4607), [sym_preproc_define] = STATE(4607), [sym_preproc_undef] = STATE(4607), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5714), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7056), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(7066), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7068), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -610526,27 +602885,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4608] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1704), + [sym_op_lte] = STATE(1704), + [sym_op_eq] = STATE(1703), + [sym_op_neq] = STATE(1703), + [sym_op_gt] = STATE(1704), + [sym_op_gte] = STATE(1704), + [sym_op_and] = STATE(1702), + [sym_op_or] = STATE(1699), + [sym_op_bitwise_and] = STATE(1696), + [sym_op_bitwise_xor] = STATE(1695), + [sym_op_plus] = STATE(1694), + [sym_op_minus] = STATE(1694), + [sym_op_multiply] = STATE(1707), [sym_preproc_region] = STATE(4608), [sym_preproc_endregion] = STATE(4608), [sym_preproc_line] = STATE(4608), @@ -610556,39 +602909,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4608), [sym_preproc_define] = STATE(4608), [sym_preproc_undef] = STATE(4608), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(7129), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7129), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6717), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6711), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6721), + [sym_op_right_shift] = ACTIONS(6723), + [sym_op_unsigned_right_shift] = ACTIONS(6721), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6725), + [sym_op_modulo] = ACTIONS(6727), + [sym_op_coalescing] = ACTIONS(6729), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -610601,9 +602956,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4609] = { - [sym_attribute_list] = STATE(4961), - [sym__attribute_list] = STATE(4962), - [sym_preproc_if_in_attribute_list] = STATE(4961), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4609), [sym_preproc_endregion] = STATE(4609), [sym_preproc_line] = STATE(4609), @@ -610613,57 +602980,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4609), [sym_preproc_define] = STATE(4609), [sym_preproc_undef] = STATE(4609), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4609), - [sym__identifier_token] = ACTIONS(5484), - [anon_sym_extern] = ACTIONS(5484), - [anon_sym_alias] = ACTIONS(5484), - [anon_sym_global] = ACTIONS(5484), - [anon_sym_unsafe] = ACTIONS(5484), - [anon_sym_static] = ACTIONS(5484), - [anon_sym_LBRACK] = ACTIONS(6891), - [anon_sym_public] = ACTIONS(5484), - [anon_sym_private] = ACTIONS(5484), - [anon_sym_readonly] = ACTIONS(5484), - [anon_sym_abstract] = ACTIONS(5484), - [anon_sym_async] = ACTIONS(5484), - [anon_sym_const] = ACTIONS(5484), - [anon_sym_file] = ACTIONS(5484), - [anon_sym_fixed] = ACTIONS(5484), - [anon_sym_internal] = ACTIONS(5484), - [anon_sym_new] = ACTIONS(5484), - [anon_sym_override] = ACTIONS(5484), - [anon_sym_partial] = ACTIONS(5484), - [anon_sym_protected] = ACTIONS(5484), - [anon_sym_required] = ACTIONS(5484), - [anon_sym_sealed] = ACTIONS(5484), - [anon_sym_virtual] = ACTIONS(5484), - [anon_sym_volatile] = ACTIONS(5484), - [anon_sym_where] = ACTIONS(5484), - [anon_sym_notnull] = ACTIONS(5484), - [anon_sym_unmanaged] = ACTIONS(5484), - [sym_accessor_get] = ACTIONS(5484), - [sym_accessor_set] = ACTIONS(5484), - [sym_accessor_add] = ACTIONS(5484), - [sym_accessor_remove] = ACTIONS(5484), - [sym_accessor_init] = ACTIONS(5484), - [anon_sym_scoped] = ACTIONS(5484), - [anon_sym_var] = ACTIONS(5484), - [anon_sym_yield] = ACTIONS(5484), - [anon_sym_when] = ACTIONS(5484), - [anon_sym_from] = ACTIONS(5484), - [anon_sym_into] = ACTIONS(5484), - [anon_sym_join] = ACTIONS(5484), - [anon_sym_on] = ACTIONS(5484), - [anon_sym_equals] = ACTIONS(5484), - [anon_sym_let] = ACTIONS(5484), - [anon_sym_orderby] = ACTIONS(5484), - [anon_sym_ascending] = ACTIONS(5484), - [anon_sym_descending] = ACTIONS(5484), - [anon_sym_group] = ACTIONS(5484), - [anon_sym_by] = ACTIONS(5484), - [anon_sym_select] = ACTIONS(5484), - [sym_grit_metavariable] = ACTIONS(5489), - [aux_sym_preproc_if_token1] = ACTIONS(6894), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7068), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -610676,27 +603027,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4610] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1401), - [sym_op_lte] = STATE(1401), - [sym_op_eq] = STATE(1404), - [sym_op_neq] = STATE(1404), - [sym_op_gt] = STATE(1401), - [sym_op_gte] = STATE(1401), - [sym_op_and] = STATE(1405), - [sym_op_or] = STATE(1406), - [sym_op_bitwise_and] = STATE(1408), - [sym_op_bitwise_or] = STATE(1409), - [sym_op_bitwise_xor] = STATE(1438), - [sym_op_left_shift] = STATE(1440), - [sym_op_right_shift] = STATE(1440), - [sym_op_unsigned_right_shift] = STATE(1440), - [sym_op_plus] = STATE(1443), - [sym_op_minus] = STATE(1443), - [sym_op_multiply] = STATE(1444), - [sym_op_divide] = STATE(1444), - [sym_op_modulo] = STATE(1444), [sym_preproc_region] = STATE(4610), [sym_preproc_endregion] = STATE(4610), [sym_preproc_line] = STATE(4610), @@ -610706,39 +603036,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4610), [sym_preproc_define] = STATE(4610), [sym_preproc_undef] = STATE(4610), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5841), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5959), + [anon_sym_LBRACK] = ACTIONS(5959), + [anon_sym_COLON] = ACTIONS(5959), + [anon_sym_COMMA] = ACTIONS(5959), + [anon_sym_RBRACK] = ACTIONS(5959), + [anon_sym_LPAREN] = ACTIONS(5959), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_RBRACE] = ACTIONS(5959), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_in] = ACTIONS(5959), + [anon_sym_QMARK] = ACTIONS(5961), + [anon_sym_DOT] = ACTIONS(5961), + [anon_sym_EQ_GT] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(5959), + [anon_sym_switch] = ACTIONS(5959), + [anon_sym_when] = ACTIONS(5959), + [anon_sym_DOT_DOT] = ACTIONS(5959), + [anon_sym_LT_EQ] = ACTIONS(5959), + [anon_sym_GT_EQ] = ACTIONS(5959), + [anon_sym_and] = ACTIONS(5959), + [anon_sym_or] = ACTIONS(5959), + [anon_sym_EQ_EQ] = ACTIONS(5959), + [anon_sym_BANG_EQ] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [anon_sym_AMP] = ACTIONS(5961), + [sym_op_bitwise_or] = ACTIONS(5961), + [anon_sym_CARET] = ACTIONS(5959), + [sym_op_left_shift] = ACTIONS(5959), + [sym_op_right_shift] = ACTIONS(5961), + [sym_op_unsigned_right_shift] = ACTIONS(5959), + [anon_sym_PLUS] = ACTIONS(5961), + [anon_sym_DASH] = ACTIONS(5961), + [sym_op_divide] = ACTIONS(5961), + [sym_op_modulo] = ACTIONS(5959), + [sym_op_coalescing] = ACTIONS(5959), + [anon_sym_BANG] = ACTIONS(5961), + [anon_sym_PLUS_PLUS] = ACTIONS(5959), + [anon_sym_DASH_DASH] = ACTIONS(5959), + [anon_sym_on] = ACTIONS(5959), + [anon_sym_equals] = ACTIONS(5959), + [anon_sym_by] = ACTIONS(5959), + [anon_sym_as] = ACTIONS(5959), + [anon_sym_is] = ACTIONS(5959), + [anon_sym_DASH_GT] = ACTIONS(5959), + [anon_sym_with] = ACTIONS(5959), + [aux_sym_preproc_if_token3] = ACTIONS(5959), + [aux_sym_preproc_else_token1] = ACTIONS(5959), + [aux_sym_preproc_elif_token1] = ACTIONS(5959), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -610751,27 +603098,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4611] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1006), - [sym_op_lte] = STATE(1006), - [sym_op_eq] = STATE(1004), - [sym_op_neq] = STATE(1004), - [sym_op_gt] = STATE(1006), - [sym_op_gte] = STATE(1006), - [sym_op_and] = STATE(1000), - [sym_op_or] = STATE(997), - [sym_op_bitwise_and] = STATE(996), - [sym_op_bitwise_or] = STATE(994), - [sym_op_bitwise_xor] = STATE(992), - [sym_op_left_shift] = STATE(991), - [sym_op_right_shift] = STATE(991), - [sym_op_unsigned_right_shift] = STATE(991), - [sym_op_plus] = STATE(990), - [sym_op_minus] = STATE(990), - [sym_op_multiply] = STATE(988), - [sym_op_divide] = STATE(988), - [sym_op_modulo] = STATE(988), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4611), [sym_preproc_endregion] = STATE(4611), [sym_preproc_line] = STATE(4611), @@ -610781,39 +603122,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4611), [sym_preproc_define] = STATE(4611), [sym_preproc_undef] = STATE(4611), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4960), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -610826,27 +603169,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4612] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1704), - [sym_op_lte] = STATE(1704), - [sym_op_eq] = STATE(1709), - [sym_op_neq] = STATE(1709), - [sym_op_gt] = STATE(1704), - [sym_op_gte] = STATE(1704), - [sym_op_and] = STATE(1712), - [sym_op_or] = STATE(1719), - [sym_op_bitwise_and] = STATE(1720), - [sym_op_bitwise_or] = STATE(1722), - [sym_op_bitwise_xor] = STATE(1723), - [sym_op_left_shift] = STATE(1731), - [sym_op_right_shift] = STATE(1731), - [sym_op_unsigned_right_shift] = STATE(1731), - [sym_op_plus] = STATE(1732), - [sym_op_minus] = STATE(1732), - [sym_op_multiply] = STATE(1735), - [sym_op_divide] = STATE(1735), - [sym_op_modulo] = STATE(1735), [sym_preproc_region] = STATE(4612), [sym_preproc_endregion] = STATE(4612), [sym_preproc_line] = STATE(4612), @@ -610856,39 +603178,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4612), [sym_preproc_define] = STATE(4612), [sym_preproc_undef] = STATE(4612), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6108), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4660), + [anon_sym_COLON] = ACTIONS(4660), + [anon_sym_COMMA] = ACTIONS(4660), + [anon_sym_RBRACK] = ACTIONS(4660), + [anon_sym_LPAREN] = ACTIONS(4660), + [anon_sym_RPAREN] = ACTIONS(4660), + [anon_sym_RBRACE] = ACTIONS(4660), + [anon_sym_LT] = ACTIONS(4662), + [anon_sym_GT] = ACTIONS(4662), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_QMARK] = ACTIONS(4662), + [anon_sym_DOT] = ACTIONS(4662), + [anon_sym_EQ_GT] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [anon_sym_switch] = ACTIONS(4660), + [anon_sym_when] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4660), + [anon_sym_LT_EQ] = ACTIONS(4660), + [anon_sym_GT_EQ] = ACTIONS(4660), + [anon_sym_and] = ACTIONS(4660), + [anon_sym_or] = ACTIONS(4660), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_AMP_AMP] = ACTIONS(4660), + [anon_sym_PIPE_PIPE] = ACTIONS(4660), + [anon_sym_AMP] = ACTIONS(4662), + [sym_op_bitwise_or] = ACTIONS(4662), + [anon_sym_CARET] = ACTIONS(4660), + [sym_op_left_shift] = ACTIONS(4660), + [sym_op_right_shift] = ACTIONS(4662), + [sym_op_unsigned_right_shift] = ACTIONS(4660), + [anon_sym_PLUS] = ACTIONS(4662), + [anon_sym_DASH] = ACTIONS(4662), + [sym_op_divide] = ACTIONS(4662), + [sym_op_modulo] = ACTIONS(4660), + [sym_op_coalescing] = ACTIONS(4660), + [anon_sym_BANG] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4660), + [anon_sym_DASH_DASH] = ACTIONS(4660), + [anon_sym_on] = ACTIONS(4660), + [anon_sym_equals] = ACTIONS(4660), + [anon_sym_by] = ACTIONS(4660), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_DASH_GT] = ACTIONS(4660), + [anon_sym_with] = ACTIONS(4660), + [aux_sym_preproc_if_token3] = ACTIONS(4660), + [aux_sym_preproc_else_token1] = ACTIONS(4660), + [aux_sym_preproc_elif_token1] = ACTIONS(4660), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -610901,27 +603240,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4613] = { - [sym_argument_list] = STATE(5311), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1822), - [sym_op_lte] = STATE(1822), - [sym_op_eq] = STATE(1821), - [sym_op_neq] = STATE(1821), - [sym_op_gt] = STATE(1822), - [sym_op_gte] = STATE(1822), - [sym_op_and] = STATE(1818), - [sym_op_or] = STATE(1815), - [sym_op_bitwise_and] = STATE(1812), - [sym_op_bitwise_or] = STATE(1809), - [sym_op_bitwise_xor] = STATE(1808), - [sym_op_left_shift] = STATE(1806), - [sym_op_right_shift] = STATE(1806), - [sym_op_unsigned_right_shift] = STATE(1806), - [sym_op_plus] = STATE(1804), - [sym_op_minus] = STATE(1804), - [sym_op_multiply] = STATE(1795), - [sym_op_divide] = STATE(1795), - [sym_op_modulo] = STATE(1795), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4613), [sym_preproc_endregion] = STATE(4613), [sym_preproc_line] = STATE(4613), @@ -610931,39 +603264,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4613), [sym_preproc_define] = STATE(4613), [sym_preproc_undef] = STATE(4613), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4680), - [anon_sym_DASH_DASH] = ACTIONS(4680), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4736), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7184), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -610976,27 +603311,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4614] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1120), - [sym_op_lte] = STATE(1120), - [sym_op_eq] = STATE(1117), - [sym_op_neq] = STATE(1117), - [sym_op_gt] = STATE(1120), - [sym_op_gte] = STATE(1120), - [sym_op_and] = STATE(1113), - [sym_op_or] = STATE(1112), - [sym_op_bitwise_and] = STATE(1032), - [sym_op_bitwise_or] = STATE(1028), - [sym_op_bitwise_xor] = STATE(1014), - [sym_op_left_shift] = STATE(1007), - [sym_op_right_shift] = STATE(1007), - [sym_op_unsigned_right_shift] = STATE(1007), - [sym_op_plus] = STATE(995), - [sym_op_minus] = STATE(995), - [sym_op_multiply] = STATE(989), - [sym_op_divide] = STATE(989), - [sym_op_modulo] = STATE(989), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4614), [sym_preproc_endregion] = STATE(4614), [sym_preproc_line] = STATE(4614), @@ -611006,39 +603335,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4614), [sym_preproc_define] = STATE(4614), [sym_preproc_undef] = STATE(4614), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6041), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7184), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -611051,27 +603382,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4615] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1889), - [sym_op_lte] = STATE(1889), - [sym_op_eq] = STATE(1881), - [sym_op_neq] = STATE(1881), - [sym_op_gt] = STATE(1889), - [sym_op_gte] = STATE(1889), - [sym_op_and] = STATE(1876), - [sym_op_or] = STATE(1874), - [sym_op_bitwise_and] = STATE(1872), - [sym_op_bitwise_or] = STATE(1871), - [sym_op_bitwise_xor] = STATE(1866), - [sym_op_left_shift] = STATE(1863), - [sym_op_right_shift] = STATE(1863), - [sym_op_unsigned_right_shift] = STATE(1863), - [sym_op_plus] = STATE(1862), - [sym_op_minus] = STATE(1862), - [sym_op_multiply] = STATE(1859), - [sym_op_divide] = STATE(1859), - [sym_op_modulo] = STATE(1859), [sym_preproc_region] = STATE(4615), [sym_preproc_endregion] = STATE(4615), [sym_preproc_line] = STATE(4615), @@ -611081,39 +603391,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4615), [sym_preproc_define] = STATE(4615), [sym_preproc_undef] = STATE(4615), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5648), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5987), + [anon_sym_LBRACK] = ACTIONS(5987), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_COMMA] = ACTIONS(5987), + [anon_sym_RBRACK] = ACTIONS(5987), + [anon_sym_LPAREN] = ACTIONS(5987), + [anon_sym_RPAREN] = ACTIONS(5987), + [anon_sym_RBRACE] = ACTIONS(5987), + [anon_sym_LT] = ACTIONS(5989), + [anon_sym_GT] = ACTIONS(5989), + [anon_sym_in] = ACTIONS(5987), + [anon_sym_QMARK] = ACTIONS(5989), + [anon_sym_DOT] = ACTIONS(5989), + [anon_sym_EQ_GT] = ACTIONS(5987), + [anon_sym_STAR] = ACTIONS(5987), + [anon_sym_switch] = ACTIONS(5987), + [anon_sym_when] = ACTIONS(5987), + [anon_sym_DOT_DOT] = ACTIONS(5987), + [anon_sym_LT_EQ] = ACTIONS(5987), + [anon_sym_GT_EQ] = ACTIONS(5987), + [anon_sym_and] = ACTIONS(5987), + [anon_sym_or] = ACTIONS(5987), + [anon_sym_EQ_EQ] = ACTIONS(5987), + [anon_sym_BANG_EQ] = ACTIONS(5987), + [anon_sym_AMP_AMP] = ACTIONS(5987), + [anon_sym_PIPE_PIPE] = ACTIONS(5987), + [anon_sym_AMP] = ACTIONS(5989), + [sym_op_bitwise_or] = ACTIONS(5989), + [anon_sym_CARET] = ACTIONS(5987), + [sym_op_left_shift] = ACTIONS(5987), + [sym_op_right_shift] = ACTIONS(5989), + [sym_op_unsigned_right_shift] = ACTIONS(5987), + [anon_sym_PLUS] = ACTIONS(5989), + [anon_sym_DASH] = ACTIONS(5989), + [sym_op_divide] = ACTIONS(5989), + [sym_op_modulo] = ACTIONS(5987), + [sym_op_coalescing] = ACTIONS(5987), + [anon_sym_BANG] = ACTIONS(5989), + [anon_sym_PLUS_PLUS] = ACTIONS(5987), + [anon_sym_DASH_DASH] = ACTIONS(5987), + [anon_sym_on] = ACTIONS(5987), + [anon_sym_equals] = ACTIONS(5987), + [anon_sym_by] = ACTIONS(5987), + [anon_sym_as] = ACTIONS(5987), + [anon_sym_is] = ACTIONS(5987), + [anon_sym_DASH_GT] = ACTIONS(5987), + [anon_sym_with] = ACTIONS(5987), + [aux_sym_preproc_if_token3] = ACTIONS(5987), + [aux_sym_preproc_else_token1] = ACTIONS(5987), + [aux_sym_preproc_elif_token1] = ACTIONS(5987), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -611126,27 +603453,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4616] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), [sym_preproc_region] = STATE(4616), [sym_preproc_endregion] = STATE(4616), [sym_preproc_line] = STATE(4616), @@ -611156,39 +603462,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4616), [sym_preproc_define] = STATE(4616), [sym_preproc_undef] = STATE(4616), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [sym__identifier_token] = ACTIONS(5384), + [anon_sym_extern] = ACTIONS(5384), + [anon_sym_alias] = ACTIONS(5384), + [anon_sym_global] = ACTIONS(5384), + [anon_sym_unsafe] = ACTIONS(5384), + [anon_sym_static] = ACTIONS(5384), + [anon_sym_LBRACK] = ACTIONS(5386), + [anon_sym_public] = ACTIONS(5384), + [anon_sym_private] = ACTIONS(5384), + [anon_sym_readonly] = ACTIONS(5384), + [anon_sym_abstract] = ACTIONS(5384), + [anon_sym_async] = ACTIONS(5384), + [anon_sym_const] = ACTIONS(5384), + [anon_sym_file] = ACTIONS(5384), + [anon_sym_fixed] = ACTIONS(5384), + [anon_sym_internal] = ACTIONS(5384), + [anon_sym_new] = ACTIONS(5384), + [anon_sym_override] = ACTIONS(5384), + [anon_sym_partial] = ACTIONS(5384), + [anon_sym_protected] = ACTIONS(5384), + [anon_sym_required] = ACTIONS(5384), + [anon_sym_sealed] = ACTIONS(5384), + [anon_sym_virtual] = ACTIONS(5384), + [anon_sym_volatile] = ACTIONS(5384), + [anon_sym_where] = ACTIONS(5384), + [anon_sym_notnull] = ACTIONS(5384), + [anon_sym_unmanaged] = ACTIONS(5384), + [sym_accessor_get] = ACTIONS(5384), + [sym_accessor_set] = ACTIONS(5384), + [sym_accessor_add] = ACTIONS(5384), + [sym_accessor_remove] = ACTIONS(5384), + [sym_accessor_init] = ACTIONS(5384), + [anon_sym_scoped] = ACTIONS(5384), + [anon_sym_var] = ACTIONS(5384), + [anon_sym_yield] = ACTIONS(5384), + [anon_sym_when] = ACTIONS(5384), + [anon_sym_from] = ACTIONS(5384), + [anon_sym_into] = ACTIONS(5384), + [anon_sym_join] = ACTIONS(5384), + [anon_sym_on] = ACTIONS(5384), + [anon_sym_equals] = ACTIONS(5384), + [anon_sym_let] = ACTIONS(5384), + [anon_sym_orderby] = ACTIONS(5384), + [anon_sym_ascending] = ACTIONS(5384), + [anon_sym_descending] = ACTIONS(5384), + [anon_sym_group] = ACTIONS(5384), + [anon_sym_by] = ACTIONS(5384), + [anon_sym_select] = ACTIONS(5384), + [sym_grit_metavariable] = ACTIONS(5386), + [aux_sym_preproc_if_token1] = ACTIONS(5386), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -611201,7 +603524,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4617] = { - [sym_type_argument_list] = STATE(4689), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4617), [sym_preproc_endregion] = STATE(4617), [sym_preproc_line] = STATE(4617), @@ -611211,59 +603548,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4617), [sym_preproc_define] = STATE(4617), [sym_preproc_undef] = STATE(4617), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(6897), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_COLON_COLON] = ACTIONS(6900), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_when] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_into] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7186), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7184), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -611276,27 +603595,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4618] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1250), - [sym_op_lte] = STATE(1250), - [sym_op_eq] = STATE(1249), - [sym_op_neq] = STATE(1249), - [sym_op_gt] = STATE(1250), - [sym_op_gte] = STATE(1250), - [sym_op_and] = STATE(1248), - [sym_op_or] = STATE(1247), - [sym_op_bitwise_and] = STATE(1246), - [sym_op_bitwise_or] = STATE(1245), - [sym_op_bitwise_xor] = STATE(1244), - [sym_op_left_shift] = STATE(1243), - [sym_op_right_shift] = STATE(1243), - [sym_op_unsigned_right_shift] = STATE(1243), - [sym_op_plus] = STATE(1242), - [sym_op_minus] = STATE(1242), - [sym_op_multiply] = STATE(1241), - [sym_op_divide] = STATE(1241), - [sym_op_modulo] = STATE(1241), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4618), [sym_preproc_endregion] = STATE(4618), [sym_preproc_line] = STATE(4618), @@ -611306,39 +603619,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4618), [sym_preproc_define] = STATE(4618), [sym_preproc_undef] = STATE(4618), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5907), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7052), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5232), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7056), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(7066), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7068), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -611351,6 +603666,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4619] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4619), [sym_preproc_endregion] = STATE(4619), [sym_preproc_line] = STATE(4619), @@ -611360,60 +603690,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4619), [sym_preproc_define] = STATE(4619), [sym_preproc_undef] = STATE(4619), - [anon_sym_EQ] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4524), - [anon_sym_COLON] = ACTIONS(4524), - [anon_sym_COMMA] = ACTIONS(4524), - [anon_sym_LPAREN] = ACTIONS(4524), - [anon_sym_RPAREN] = ACTIONS(4524), - [anon_sym_RBRACE] = ACTIONS(4524), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_QMARK] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4524), - [anon_sym_DASH_DASH] = ACTIONS(4524), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_CARET] = ACTIONS(4530), - [anon_sym_PIPE] = ACTIONS(4530), - [anon_sym_AMP] = ACTIONS(4530), - [anon_sym_LT_LT] = ACTIONS(4530), - [anon_sym_GT_GT] = ACTIONS(4530), - [anon_sym_GT_GT_GT] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4524), - [anon_sym_BANG_EQ] = ACTIONS(4524), - [anon_sym_GT_EQ] = ACTIONS(4524), - [anon_sym_LT_EQ] = ACTIONS(4524), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_switch] = ACTIONS(4524), - [anon_sym_when] = ACTIONS(4524), - [anon_sym_DOT_DOT] = ACTIONS(4524), - [anon_sym_and] = ACTIONS(4524), - [anon_sym_or] = ACTIONS(4524), - [anon_sym_PLUS_EQ] = ACTIONS(4528), - [anon_sym_DASH_EQ] = ACTIONS(4528), - [anon_sym_STAR_EQ] = ACTIONS(4528), - [anon_sym_SLASH_EQ] = ACTIONS(4528), - [anon_sym_PERCENT_EQ] = ACTIONS(4528), - [anon_sym_AMP_EQ] = ACTIONS(4528), - [anon_sym_CARET_EQ] = ACTIONS(4528), - [anon_sym_PIPE_EQ] = ACTIONS(4528), - [anon_sym_LT_LT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4524), - [anon_sym_PIPE_PIPE] = ACTIONS(4524), - [sym_op_coalescing] = ACTIONS(4530), - [anon_sym_into] = ACTIONS(4524), - [anon_sym_as] = ACTIONS(4524), - [anon_sym_is] = ACTIONS(4524), - [anon_sym_DASH_GT] = ACTIONS(4524), - [anon_sym_with] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7186), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7184), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -611426,27 +603737,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4620] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3334), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4620), [sym_preproc_endregion] = STATE(4620), [sym_preproc_line] = STATE(4620), @@ -611456,39 +603761,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4620), [sym_preproc_define] = STATE(4620), [sym_preproc_undef] = STATE(4620), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4704), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7184), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -611501,27 +603808,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4621] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1434), - [sym_op_lte] = STATE(1434), - [sym_op_eq] = STATE(1433), - [sym_op_neq] = STATE(1433), - [sym_op_gt] = STATE(1434), - [sym_op_gte] = STATE(1434), - [sym_op_and] = STATE(1432), - [sym_op_or] = STATE(1429), - [sym_op_bitwise_and] = STATE(1428), - [sym_op_bitwise_or] = STATE(1427), - [sym_op_bitwise_xor] = STATE(1426), - [sym_op_left_shift] = STATE(1424), - [sym_op_right_shift] = STATE(1424), - [sym_op_unsigned_right_shift] = STATE(1424), - [sym_op_plus] = STATE(1423), - [sym_op_minus] = STATE(1423), - [sym_op_multiply] = STATE(1420), - [sym_op_divide] = STATE(1420), - [sym_op_modulo] = STATE(1420), [sym_preproc_region] = STATE(4621), [sym_preproc_endregion] = STATE(4621), [sym_preproc_line] = STATE(4621), @@ -611531,39 +603817,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4621), [sym_preproc_define] = STATE(4621), [sym_preproc_undef] = STATE(4621), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5550), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_COLON] = ACTIONS(3197), + [anon_sym_COMMA] = ACTIONS(3197), + [anon_sym_RBRACK] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_RPAREN] = ACTIONS(3197), + [anon_sym_RBRACE] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_QMARK] = ACTIONS(3195), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_EQ_GT] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_switch] = ACTIONS(3197), + [anon_sym_when] = ACTIONS(3197), + [anon_sym_DOT_DOT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [sym_op_bitwise_or] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3197), + [sym_op_left_shift] = ACTIONS(3197), + [sym_op_right_shift] = ACTIONS(3195), + [sym_op_unsigned_right_shift] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [sym_op_divide] = ACTIONS(3195), + [sym_op_modulo] = ACTIONS(3197), + [sym_op_coalescing] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_on] = ACTIONS(3197), + [anon_sym_equals] = ACTIONS(3197), + [anon_sym_by] = ACTIONS(3197), + [anon_sym_as] = ACTIONS(3197), + [anon_sym_is] = ACTIONS(3197), + [anon_sym_DASH_GT] = ACTIONS(3197), + [anon_sym_with] = 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), @@ -611576,27 +603879,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4622] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(3133), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4622), [sym_preproc_endregion] = STATE(4622), [sym_preproc_line] = STATE(4622), @@ -611606,39 +603903,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4622), [sym_preproc_define] = STATE(4622), [sym_preproc_undef] = STATE(4622), - [anon_sym_LBRACK] = ACTIONS(5508), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -611651,27 +603950,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4623] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1041), - [sym_op_lte] = STATE(1041), - [sym_op_eq] = STATE(1049), - [sym_op_neq] = STATE(1049), - [sym_op_gt] = STATE(1041), - [sym_op_gte] = STATE(1041), - [sym_op_and] = STATE(1068), - [sym_op_or] = STATE(1071), - [sym_op_bitwise_and] = STATE(1072), - [sym_op_bitwise_or] = STATE(1073), - [sym_op_bitwise_xor] = STATE(1077), - [sym_op_left_shift] = STATE(1079), - [sym_op_right_shift] = STATE(1079), - [sym_op_unsigned_right_shift] = STATE(1079), - [sym_op_plus] = STATE(1081), - [sym_op_minus] = STATE(1081), - [sym_op_multiply] = STATE(1085), - [sym_op_divide] = STATE(1085), - [sym_op_modulo] = STATE(1085), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4623), [sym_preproc_endregion] = STATE(4623), [sym_preproc_line] = STATE(4623), @@ -611681,39 +603974,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4623), [sym_preproc_define] = STATE(4623), [sym_preproc_undef] = STATE(4623), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6021), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7188), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(7188), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -611726,27 +604021,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4624] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1318), - [sym_op_lte] = STATE(1318), - [sym_op_eq] = STATE(1319), - [sym_op_neq] = STATE(1319), - [sym_op_gt] = STATE(1318), - [sym_op_gte] = STATE(1318), - [sym_op_and] = STATE(1321), - [sym_op_or] = STATE(1322), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1325), - [sym_op_bitwise_xor] = STATE(1326), - [sym_op_left_shift] = STATE(1327), - [sym_op_right_shift] = STATE(1327), - [sym_op_unsigned_right_shift] = STATE(1327), - [sym_op_plus] = STATE(1329), - [sym_op_minus] = STATE(1329), - [sym_op_multiply] = STATE(1330), - [sym_op_divide] = STATE(1330), - [sym_op_modulo] = STATE(1330), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4624), [sym_preproc_endregion] = STATE(4624), [sym_preproc_line] = STATE(4624), @@ -611756,39 +604045,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4624), [sym_preproc_define] = STATE(4624), [sym_preproc_undef] = STATE(4624), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(6144), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7186), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(7190), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7184), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -611801,27 +604092,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4625] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1258), - [sym_op_lte] = STATE(1258), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1258), - [sym_op_gte] = STATE(1258), - [sym_op_and] = STATE(1260), - [sym_op_or] = STATE(1261), - [sym_op_bitwise_and] = STATE(1262), - [sym_op_bitwise_or] = STATE(1263), - [sym_op_bitwise_xor] = STATE(1264), - [sym_op_left_shift] = STATE(1265), - [sym_op_right_shift] = STATE(1265), - [sym_op_unsigned_right_shift] = STATE(1265), - [sym_op_plus] = STATE(1266), - [sym_op_minus] = STATE(1266), - [sym_op_multiply] = STATE(1267), - [sym_op_divide] = STATE(1267), - [sym_op_modulo] = STATE(1267), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4625), [sym_preproc_endregion] = STATE(4625), [sym_preproc_line] = STATE(4625), @@ -611831,39 +604116,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4625), [sym_preproc_define] = STATE(4625), [sym_preproc_undef] = STATE(4625), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5751), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7052), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7056), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(7066), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7068), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -611876,27 +604163,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4626] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2927), - [sym_op_lt] = STATE(1541), - [sym_op_lte] = STATE(1541), - [sym_op_eq] = STATE(1494), - [sym_op_neq] = STATE(1494), - [sym_op_gt] = STATE(1541), - [sym_op_gte] = STATE(1541), - [sym_op_and] = STATE(1493), - [sym_op_or] = STATE(1490), - [sym_op_bitwise_and] = STATE(1466), - [sym_op_bitwise_or] = STATE(1446), - [sym_op_bitwise_xor] = STATE(1397), - [sym_op_left_shift] = STATE(1386), - [sym_op_right_shift] = STATE(1386), - [sym_op_unsigned_right_shift] = STATE(1386), - [sym_op_plus] = STATE(1383), - [sym_op_minus] = STATE(1383), - [sym_op_multiply] = STATE(1381), - [sym_op_divide] = STATE(1381), - [sym_op_modulo] = STATE(1381), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4626), [sym_preproc_endregion] = STATE(4626), [sym_preproc_line] = STATE(4626), @@ -611906,39 +604187,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4626), [sym_preproc_define] = STATE(4626), [sym_preproc_undef] = STATE(4626), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5722), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -611951,27 +604234,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4627] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1526), - [sym_op_lte] = STATE(1526), - [sym_op_eq] = STATE(1562), - [sym_op_neq] = STATE(1562), - [sym_op_gt] = STATE(1526), - [sym_op_gte] = STATE(1526), - [sym_op_and] = STATE(1572), - [sym_op_or] = STATE(1573), - [sym_op_bitwise_and] = STATE(1576), - [sym_op_bitwise_or] = STATE(1579), - [sym_op_bitwise_xor] = STATE(1588), - [sym_op_left_shift] = STATE(1589), - [sym_op_right_shift] = STATE(1589), - [sym_op_unsigned_right_shift] = STATE(1589), - [sym_op_plus] = STATE(1590), - [sym_op_minus] = STATE(1590), - [sym_op_multiply] = STATE(1591), - [sym_op_divide] = STATE(1591), - [sym_op_modulo] = STATE(1591), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4627), [sym_preproc_endregion] = STATE(4627), [sym_preproc_line] = STATE(4627), @@ -611981,39 +604258,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4627), [sym_preproc_define] = STATE(4627), [sym_preproc_undef] = STATE(4627), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(4851), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -612026,7 +604305,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4628] = { - [sym_block] = STATE(2072), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4628), [sym_preproc_endregion] = STATE(4628), [sym_preproc_line] = STATE(4628), @@ -612036,59 +604329,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4628), [sym_preproc_define] = STATE(4628), [sym_preproc_undef] = STATE(4628), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(6902), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_record] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7184), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -612101,27 +604376,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4629] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1065), - [sym_op_lte] = STATE(1065), - [sym_op_eq] = STATE(1064), - [sym_op_neq] = STATE(1064), - [sym_op_gt] = STATE(1065), - [sym_op_gte] = STATE(1065), - [sym_op_and] = STATE(1063), - [sym_op_or] = STATE(1062), - [sym_op_bitwise_and] = STATE(1061), - [sym_op_bitwise_or] = STATE(1060), - [sym_op_bitwise_xor] = STATE(1058), - [sym_op_left_shift] = STATE(1057), - [sym_op_right_shift] = STATE(1057), - [sym_op_unsigned_right_shift] = STATE(1057), - [sym_op_plus] = STATE(1056), - [sym_op_minus] = STATE(1056), - [sym_op_multiply] = STATE(1055), - [sym_op_divide] = STATE(1055), - [sym_op_modulo] = STATE(1055), [sym_preproc_region] = STATE(4629), [sym_preproc_endregion] = STATE(4629), [sym_preproc_line] = STATE(4629), @@ -612131,39 +604385,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4629), [sym_preproc_define] = STATE(4629), [sym_preproc_undef] = STATE(4629), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5805), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6855), + [anon_sym_LBRACK] = ACTIONS(6855), + [anon_sym_COLON] = ACTIONS(6855), + [anon_sym_COMMA] = ACTIONS(6855), + [anon_sym_RBRACK] = ACTIONS(6855), + [anon_sym_LPAREN] = ACTIONS(6855), + [anon_sym_RPAREN] = ACTIONS(6855), + [anon_sym_RBRACE] = ACTIONS(6855), + [anon_sym_LT] = ACTIONS(6857), + [anon_sym_GT] = ACTIONS(6857), + [anon_sym_in] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(6857), + [anon_sym_DOT] = ACTIONS(6857), + [anon_sym_EQ_GT] = ACTIONS(6855), + [anon_sym_STAR] = ACTIONS(6855), + [anon_sym_switch] = ACTIONS(6855), + [anon_sym_when] = ACTIONS(6855), + [anon_sym_DOT_DOT] = ACTIONS(6855), + [anon_sym_LT_EQ] = ACTIONS(6855), + [anon_sym_GT_EQ] = ACTIONS(6855), + [anon_sym_and] = ACTIONS(6855), + [anon_sym_or] = ACTIONS(6855), + [anon_sym_EQ_EQ] = ACTIONS(6855), + [anon_sym_BANG_EQ] = ACTIONS(6855), + [anon_sym_AMP_AMP] = ACTIONS(6855), + [anon_sym_PIPE_PIPE] = ACTIONS(6855), + [anon_sym_AMP] = ACTIONS(6857), + [sym_op_bitwise_or] = ACTIONS(6857), + [anon_sym_CARET] = ACTIONS(6855), + [sym_op_left_shift] = ACTIONS(6855), + [sym_op_right_shift] = ACTIONS(6857), + [sym_op_unsigned_right_shift] = ACTIONS(6855), + [anon_sym_PLUS] = ACTIONS(6857), + [anon_sym_DASH] = ACTIONS(6857), + [sym_op_divide] = ACTIONS(6857), + [sym_op_modulo] = ACTIONS(6855), + [sym_op_coalescing] = ACTIONS(6855), + [anon_sym_BANG] = ACTIONS(6857), + [anon_sym_PLUS_PLUS] = ACTIONS(6855), + [anon_sym_DASH_DASH] = ACTIONS(6855), + [anon_sym_on] = ACTIONS(6855), + [anon_sym_equals] = ACTIONS(6855), + [anon_sym_by] = ACTIONS(6855), + [anon_sym_as] = ACTIONS(6855), + [anon_sym_is] = ACTIONS(6855), + [anon_sym_DASH_GT] = ACTIONS(6855), + [anon_sym_with] = ACTIONS(6855), + [aux_sym_preproc_if_token3] = ACTIONS(6855), + [aux_sym_preproc_else_token1] = ACTIONS(6855), + [aux_sym_preproc_elif_token1] = ACTIONS(6855), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -612176,27 +604447,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4630] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1593), - [sym_op_lte] = STATE(1593), - [sym_op_eq] = STATE(1585), - [sym_op_neq] = STATE(1585), - [sym_op_gt] = STATE(1593), - [sym_op_gte] = STATE(1593), - [sym_op_and] = STATE(1584), - [sym_op_or] = STATE(1583), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1578), - [sym_op_right_shift] = STATE(1578), - [sym_op_unsigned_right_shift] = STATE(1578), - [sym_op_plus] = STATE(1577), - [sym_op_minus] = STATE(1577), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(4630), [sym_preproc_endregion] = STATE(4630), [sym_preproc_line] = STATE(4630), @@ -612206,39 +604456,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4630), [sym_preproc_define] = STATE(4630), [sym_preproc_undef] = STATE(4630), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5522), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6917), + [anon_sym_LBRACK] = ACTIONS(6917), + [anon_sym_COLON] = ACTIONS(6917), + [anon_sym_COMMA] = ACTIONS(6917), + [anon_sym_RBRACK] = ACTIONS(6917), + [anon_sym_LPAREN] = ACTIONS(6917), + [anon_sym_RPAREN] = ACTIONS(6917), + [anon_sym_RBRACE] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6919), + [anon_sym_GT] = ACTIONS(6919), + [anon_sym_in] = ACTIONS(6917), + [anon_sym_QMARK] = ACTIONS(6919), + [anon_sym_DOT] = ACTIONS(6919), + [anon_sym_EQ_GT] = ACTIONS(6917), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_switch] = ACTIONS(6917), + [anon_sym_when] = ACTIONS(6917), + [anon_sym_DOT_DOT] = ACTIONS(6917), + [anon_sym_LT_EQ] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6917), + [anon_sym_and] = ACTIONS(6917), + [anon_sym_or] = ACTIONS(6917), + [anon_sym_EQ_EQ] = ACTIONS(6917), + [anon_sym_BANG_EQ] = ACTIONS(6917), + [anon_sym_AMP_AMP] = ACTIONS(6917), + [anon_sym_PIPE_PIPE] = ACTIONS(6917), + [anon_sym_AMP] = ACTIONS(6919), + [sym_op_bitwise_or] = ACTIONS(6919), + [anon_sym_CARET] = ACTIONS(6917), + [sym_op_left_shift] = ACTIONS(6917), + [sym_op_right_shift] = ACTIONS(6919), + [sym_op_unsigned_right_shift] = ACTIONS(6917), + [anon_sym_PLUS] = ACTIONS(6919), + [anon_sym_DASH] = ACTIONS(6919), + [sym_op_divide] = ACTIONS(6919), + [sym_op_modulo] = ACTIONS(6917), + [sym_op_coalescing] = ACTIONS(6917), + [anon_sym_BANG] = ACTIONS(6919), + [anon_sym_PLUS_PLUS] = ACTIONS(6917), + [anon_sym_DASH_DASH] = ACTIONS(6917), + [anon_sym_on] = ACTIONS(6917), + [anon_sym_equals] = ACTIONS(6917), + [anon_sym_by] = ACTIONS(6917), + [anon_sym_as] = ACTIONS(6917), + [anon_sym_is] = ACTIONS(6917), + [anon_sym_DASH_GT] = ACTIONS(6917), + [anon_sym_with] = ACTIONS(6917), + [aux_sym_preproc_if_token3] = ACTIONS(6917), + [aux_sym_preproc_else_token1] = ACTIONS(6917), + [aux_sym_preproc_elif_token1] = ACTIONS(6917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -612251,27 +604518,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4631] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(935), - [sym_op_lte] = STATE(935), - [sym_op_eq] = STATE(936), - [sym_op_neq] = STATE(936), - [sym_op_gt] = STATE(935), - [sym_op_gte] = STATE(935), - [sym_op_and] = STATE(938), - [sym_op_or] = STATE(942), - [sym_op_bitwise_and] = STATE(943), - [sym_op_bitwise_or] = STATE(945), - [sym_op_bitwise_xor] = STATE(949), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(953), - [sym_op_minus] = STATE(953), - [sym_op_multiply] = STATE(954), - [sym_op_divide] = STATE(954), - [sym_op_modulo] = STATE(954), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1264), + [sym_op_lte] = STATE(1264), + [sym_op_eq] = STATE(1263), + [sym_op_neq] = STATE(1263), + [sym_op_gt] = STATE(1264), + [sym_op_gte] = STATE(1264), + [sym_op_and] = STATE(1262), + [sym_op_or] = STATE(1261), + [sym_op_bitwise_and] = STATE(1260), + [sym_op_bitwise_xor] = STATE(1259), + [sym_op_plus] = STATE(1258), + [sym_op_minus] = STATE(1258), + [sym_op_multiply] = STATE(1266), [sym_preproc_region] = STATE(4631), [sym_preproc_endregion] = STATE(4631), [sym_preproc_line] = STATE(4631), @@ -612281,39 +604542,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4631), [sym_preproc_define] = STATE(4631), [sym_preproc_undef] = STATE(4631), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5893), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_on] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -612326,27 +604589,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4632] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(906), - [sym_op_lte] = STATE(906), - [sym_op_eq] = STATE(905), - [sym_op_neq] = STATE(905), - [sym_op_gt] = STATE(906), - [sym_op_gte] = STATE(906), - [sym_op_and] = STATE(904), - [sym_op_or] = STATE(901), - [sym_op_bitwise_and] = STATE(900), - [sym_op_bitwise_or] = STATE(895), - [sym_op_bitwise_xor] = STATE(891), - [sym_op_left_shift] = STATE(881), - [sym_op_right_shift] = STATE(881), - [sym_op_unsigned_right_shift] = STATE(881), - [sym_op_plus] = STATE(879), - [sym_op_minus] = STATE(879), - [sym_op_multiply] = STATE(878), - [sym_op_divide] = STATE(878), - [sym_op_modulo] = STATE(878), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4632), [sym_preproc_endregion] = STATE(4632), [sym_preproc_line] = STATE(4632), @@ -612356,39 +604613,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4632), [sym_preproc_define] = STATE(4632), [sym_preproc_undef] = STATE(4632), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5680), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5298), + [anon_sym_QMARK] = ACTIONS(7192), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7186), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(7190), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7184), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -612401,27 +604660,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4633] = { - [sym_argument_list] = STATE(3768), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1764), - [sym_op_lte] = STATE(1764), - [sym_op_eq] = STATE(1766), - [sym_op_neq] = STATE(1766), - [sym_op_gt] = STATE(1764), - [sym_op_gte] = STATE(1764), - [sym_op_and] = STATE(1767), - [sym_op_or] = STATE(1769), - [sym_op_bitwise_and] = STATE(1771), - [sym_op_bitwise_or] = STATE(1774), - [sym_op_bitwise_xor] = STATE(1777), - [sym_op_left_shift] = STATE(1779), - [sym_op_right_shift] = STATE(1779), - [sym_op_unsigned_right_shift] = STATE(1779), - [sym_op_plus] = STATE(1785), - [sym_op_minus] = STATE(1785), - [sym_op_multiply] = STATE(1786), - [sym_op_divide] = STATE(1786), - [sym_op_modulo] = STATE(1786), [sym_preproc_region] = STATE(4633), [sym_preproc_endregion] = STATE(4633), [sym_preproc_line] = STATE(4633), @@ -612431,39 +604669,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4633), [sym_preproc_define] = STATE(4633), [sym_preproc_undef] = STATE(4633), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4948), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5442), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LBRACK] = ACTIONS(5955), + [anon_sym_COLON] = ACTIONS(5955), + [anon_sym_COMMA] = ACTIONS(5955), + [anon_sym_RBRACK] = ACTIONS(5955), + [anon_sym_LPAREN] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_RBRACE] = ACTIONS(5955), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_in] = ACTIONS(5955), + [anon_sym_QMARK] = ACTIONS(5957), + [anon_sym_DOT] = ACTIONS(5957), + [anon_sym_EQ_GT] = ACTIONS(5955), + [anon_sym_STAR] = ACTIONS(5955), + [anon_sym_switch] = ACTIONS(5955), + [anon_sym_when] = ACTIONS(5955), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_LT_EQ] = ACTIONS(5955), + [anon_sym_GT_EQ] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5955), + [anon_sym_or] = ACTIONS(5955), + [anon_sym_EQ_EQ] = ACTIONS(5955), + [anon_sym_BANG_EQ] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5957), + [sym_op_bitwise_or] = ACTIONS(5957), + [anon_sym_CARET] = ACTIONS(5955), + [sym_op_left_shift] = ACTIONS(5955), + [sym_op_right_shift] = ACTIONS(5957), + [sym_op_unsigned_right_shift] = ACTIONS(5955), + [anon_sym_PLUS] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(5957), + [sym_op_divide] = ACTIONS(5957), + [sym_op_modulo] = ACTIONS(5955), + [sym_op_coalescing] = ACTIONS(5955), + [anon_sym_BANG] = ACTIONS(5957), + [anon_sym_PLUS_PLUS] = ACTIONS(5955), + [anon_sym_DASH_DASH] = ACTIONS(5955), + [anon_sym_on] = ACTIONS(5955), + [anon_sym_equals] = ACTIONS(5955), + [anon_sym_by] = ACTIONS(5955), + [anon_sym_as] = ACTIONS(5955), + [anon_sym_is] = ACTIONS(5955), + [anon_sym_DASH_GT] = ACTIONS(5955), + [anon_sym_with] = ACTIONS(5955), + [aux_sym_preproc_if_token3] = ACTIONS(5955), + [aux_sym_preproc_else_token1] = ACTIONS(5955), + [aux_sym_preproc_elif_token1] = ACTIONS(5955), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -612476,27 +604731,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4634] = { - [sym_argument_list] = STATE(5021), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1047), - [sym_op_lte] = STATE(1047), - [sym_op_eq] = STATE(1048), - [sym_op_neq] = STATE(1048), - [sym_op_gt] = STATE(1047), - [sym_op_gte] = STATE(1047), - [sym_op_and] = STATE(1050), - [sym_op_or] = STATE(1051), - [sym_op_bitwise_and] = STATE(1053), - [sym_op_bitwise_or] = STATE(1059), - [sym_op_bitwise_xor] = STATE(1074), - [sym_op_left_shift] = STATE(1075), - [sym_op_right_shift] = STATE(1075), - [sym_op_unsigned_right_shift] = STATE(1075), - [sym_op_plus] = STATE(1078), - [sym_op_minus] = STATE(1078), - [sym_op_multiply] = STATE(1080), - [sym_op_divide] = STATE(1080), - [sym_op_modulo] = STATE(1080), + [sym_explicit_interface_specifier] = STATE(6211), + [sym__name] = STATE(6907), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7517), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4634), [sym_preproc_endregion] = STATE(4634), [sym_preproc_line] = STATE(4634), @@ -612506,39 +604759,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4634), [sym_preproc_define] = STATE(4634), [sym_preproc_undef] = STATE(4634), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5514), - [anon_sym_PLUS_PLUS] = ACTIONS(5516), - [anon_sym_DASH_DASH] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4426), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5869), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4428), - [anon_sym_with] = ACTIONS(5440), + [aux_sym_conversion_operator_declaration_repeat1] = STATE(5789), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(7074), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_operator] = ACTIONS(7076), + [anon_sym_checked] = ACTIONS(7076), + [anon_sym_scoped] = ACTIONS(7078), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -612551,27 +604802,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4635] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1768), - [sym_op_lte] = STATE(1768), - [sym_op_eq] = STATE(1765), - [sym_op_neq] = STATE(1765), - [sym_op_gt] = STATE(1768), - [sym_op_gte] = STATE(1768), - [sym_op_and] = STATE(1761), - [sym_op_or] = STATE(1760), - [sym_op_bitwise_and] = STATE(1759), - [sym_op_bitwise_or] = STATE(1758), - [sym_op_bitwise_xor] = STATE(1757), - [sym_op_left_shift] = STATE(1756), - [sym_op_right_shift] = STATE(1756), - [sym_op_unsigned_right_shift] = STATE(1756), - [sym_op_plus] = STATE(1755), - [sym_op_minus] = STATE(1755), - [sym_op_multiply] = STATE(1754), - [sym_op_divide] = STATE(1754), - [sym_op_modulo] = STATE(1754), [sym_preproc_region] = STATE(4635), [sym_preproc_endregion] = STATE(4635), [sym_preproc_line] = STATE(4635), @@ -612581,39 +604811,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4635), [sym_preproc_define] = STATE(4635), [sym_preproc_undef] = STATE(4635), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5668), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_EQ] = ACTIONS(7194), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_when] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7196), + [anon_sym_DASH_EQ] = ACTIONS(7196), + [anon_sym_STAR_EQ] = ACTIONS(7196), + [anon_sym_SLASH_EQ] = ACTIONS(7196), + [anon_sym_PERCENT_EQ] = ACTIONS(7196), + [anon_sym_AMP_EQ] = ACTIONS(7196), + [anon_sym_CARET_EQ] = ACTIONS(7196), + [anon_sym_PIPE_EQ] = ACTIONS(7196), + [anon_sym_LT_LT_EQ] = ACTIONS(7196), + [anon_sym_GT_GT_EQ] = ACTIONS(7196), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7196), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7196), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -612626,27 +604873,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4636] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1643), - [sym_op_lte] = STATE(1643), - [sym_op_eq] = STATE(1625), - [sym_op_neq] = STATE(1625), - [sym_op_gt] = STATE(1643), - [sym_op_gte] = STATE(1643), - [sym_op_and] = STATE(1612), - [sym_op_or] = STATE(1604), - [sym_op_bitwise_and] = STATE(1600), - [sym_op_bitwise_or] = STATE(1524), - [sym_op_bitwise_xor] = STATE(1519), - [sym_op_left_shift] = STATE(1518), - [sym_op_right_shift] = STATE(1518), - [sym_op_unsigned_right_shift] = STATE(1518), - [sym_op_plus] = STATE(1517), - [sym_op_minus] = STATE(1517), - [sym_op_multiply] = STATE(1516), - [sym_op_divide] = STATE(1516), - [sym_op_modulo] = STATE(1516), [sym_preproc_region] = STATE(4636), [sym_preproc_endregion] = STATE(4636), [sym_preproc_line] = STATE(4636), @@ -612656,39 +604882,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4636), [sym_preproc_define] = STATE(4636), [sym_preproc_undef] = STATE(4636), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6881), + [anon_sym_LBRACK] = ACTIONS(6881), + [anon_sym_COLON] = ACTIONS(6881), + [anon_sym_COMMA] = ACTIONS(6881), + [anon_sym_RBRACK] = ACTIONS(6881), + [anon_sym_LPAREN] = ACTIONS(6881), + [anon_sym_RPAREN] = ACTIONS(6881), + [anon_sym_RBRACE] = ACTIONS(6881), + [anon_sym_LT] = ACTIONS(6883), + [anon_sym_GT] = ACTIONS(6883), + [anon_sym_in] = ACTIONS(6881), + [anon_sym_QMARK] = ACTIONS(6883), + [anon_sym_DOT] = ACTIONS(6883), + [anon_sym_EQ_GT] = ACTIONS(6881), + [anon_sym_STAR] = ACTIONS(6881), + [anon_sym_switch] = ACTIONS(6881), + [anon_sym_when] = ACTIONS(6881), + [anon_sym_DOT_DOT] = ACTIONS(6881), + [anon_sym_LT_EQ] = ACTIONS(6881), + [anon_sym_GT_EQ] = ACTIONS(6881), + [anon_sym_and] = ACTIONS(6881), + [anon_sym_or] = ACTIONS(6881), + [anon_sym_EQ_EQ] = ACTIONS(6881), + [anon_sym_BANG_EQ] = ACTIONS(6881), + [anon_sym_AMP_AMP] = ACTIONS(6881), + [anon_sym_PIPE_PIPE] = ACTIONS(6881), + [anon_sym_AMP] = ACTIONS(6883), + [sym_op_bitwise_or] = ACTIONS(6883), + [anon_sym_CARET] = ACTIONS(6881), + [sym_op_left_shift] = ACTIONS(6881), + [sym_op_right_shift] = ACTIONS(6883), + [sym_op_unsigned_right_shift] = ACTIONS(6881), + [anon_sym_PLUS] = ACTIONS(6883), + [anon_sym_DASH] = ACTIONS(6883), + [sym_op_divide] = ACTIONS(6883), + [sym_op_modulo] = ACTIONS(6881), + [sym_op_coalescing] = ACTIONS(6881), + [anon_sym_BANG] = ACTIONS(6883), + [anon_sym_PLUS_PLUS] = ACTIONS(6881), + [anon_sym_DASH_DASH] = ACTIONS(6881), + [anon_sym_on] = ACTIONS(6881), + [anon_sym_equals] = ACTIONS(6881), + [anon_sym_by] = ACTIONS(6881), + [anon_sym_as] = ACTIONS(6881), + [anon_sym_is] = ACTIONS(6881), + [anon_sym_DASH_GT] = ACTIONS(6881), + [anon_sym_with] = ACTIONS(6881), + [aux_sym_preproc_if_token3] = ACTIONS(6881), + [aux_sym_preproc_else_token1] = ACTIONS(6881), + [aux_sym_preproc_elif_token1] = ACTIONS(6881), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -612710,60 +604953,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4637), [sym_preproc_define] = STATE(4637), [sym_preproc_undef] = STATE(4637), - [anon_sym_EQ] = ACTIONS(6904), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(6906), - [anon_sym_DASH_EQ] = ACTIONS(6906), - [anon_sym_STAR_EQ] = ACTIONS(6906), - [anon_sym_SLASH_EQ] = ACTIONS(6906), - [anon_sym_PERCENT_EQ] = ACTIONS(6906), - [anon_sym_AMP_EQ] = ACTIONS(6906), - [anon_sym_CARET_EQ] = ACTIONS(6906), - [anon_sym_PIPE_EQ] = ACTIONS(6906), - [anon_sym_LT_LT_EQ] = ACTIONS(6906), - [anon_sym_GT_GT_EQ] = ACTIONS(6906), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6906), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6906), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [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_group] = ACTIONS(5684), - [anon_sym_select] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_COLON] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_RBRACK] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_EQ_GT] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_EQ] = ACTIONS(3193), + [anon_sym_and] = ACTIONS(3193), + [anon_sym_or] = ACTIONS(3193), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_PIPE_PIPE] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [sym_op_bitwise_or] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3193), + [sym_op_left_shift] = ACTIONS(3193), + [sym_op_right_shift] = ACTIONS(3191), + [sym_op_unsigned_right_shift] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [sym_op_divide] = ACTIONS(3191), + [sym_op_modulo] = ACTIONS(3193), + [sym_op_coalescing] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_on] = ACTIONS(3193), + [anon_sym_equals] = ACTIONS(3193), + [anon_sym_by] = ACTIONS(3193), + [anon_sym_as] = ACTIONS(3193), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_DASH_GT] = ACTIONS(3193), + [anon_sym_with] = 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), @@ -612776,27 +605015,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4638] = { - [sym_argument_list] = STATE(4760), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1750), - [sym_op_lte] = STATE(1750), - [sym_op_eq] = STATE(1752), - [sym_op_neq] = STATE(1752), - [sym_op_gt] = STATE(1750), - [sym_op_gte] = STATE(1750), - [sym_op_and] = STATE(1772), - [sym_op_or] = STATE(1773), - [sym_op_bitwise_and] = STATE(1776), - [sym_op_bitwise_or] = STATE(1780), - [sym_op_bitwise_xor] = STATE(1781), - [sym_op_left_shift] = STATE(1782), - [sym_op_right_shift] = STATE(1782), - [sym_op_unsigned_right_shift] = STATE(1782), - [sym_op_plus] = STATE(1789), - [sym_op_minus] = STATE(1789), - [sym_op_multiply] = STATE(1790), - [sym_op_divide] = STATE(1790), - [sym_op_modulo] = STATE(1790), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4638), [sym_preproc_endregion] = STATE(4638), [sym_preproc_line] = STATE(4638), @@ -612806,39 +605039,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4638), [sym_preproc_define] = STATE(4638), [sym_preproc_undef] = STATE(4638), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4831), - [anon_sym_DASH_DASH] = ACTIONS(4831), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5831), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_equals] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -612851,27 +605086,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4639] = { - [sym_argument_list] = STATE(5754), - [sym_bracketed_argument_list] = STATE(2531), - [sym_op_lt] = STATE(1903), - [sym_op_lte] = STATE(1903), - [sym_op_eq] = STATE(1905), - [sym_op_neq] = STATE(1905), - [sym_op_gt] = STATE(1903), - [sym_op_gte] = STATE(1903), - [sym_op_and] = STATE(1906), - [sym_op_or] = STATE(1907), - [sym_op_bitwise_and] = STATE(1908), - [sym_op_bitwise_or] = STATE(1909), - [sym_op_bitwise_xor] = STATE(1910), - [sym_op_left_shift] = STATE(1911), - [sym_op_right_shift] = STATE(1911), - [sym_op_unsigned_right_shift] = STATE(1911), - [sym_op_plus] = STATE(1912), - [sym_op_minus] = STATE(1912), - [sym_op_multiply] = STATE(1913), - [sym_op_divide] = STATE(1913), - [sym_op_modulo] = STATE(1913), [sym_preproc_region] = STATE(4639), [sym_preproc_endregion] = STATE(4639), [sym_preproc_line] = STATE(4639), @@ -612881,39 +605095,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4639), [sym_preproc_define] = STATE(4639), [sym_preproc_undef] = STATE(4639), - [anon_sym_LBRACK] = ACTIONS(5430), - [anon_sym_LPAREN] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(5718), - [anon_sym_BANG] = ACTIONS(5660), - [anon_sym_PLUS_PLUS] = ACTIONS(5662), - [anon_sym_DASH_DASH] = ACTIONS(5662), - [anon_sym_PLUS] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_LT_LT] = ACTIONS(4692), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4696), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4728), - [anon_sym_DOT] = ACTIONS(5151), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(4732), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5724), - [anon_sym_is] = ACTIONS(5726), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(6007), + [anon_sym_LBRACK] = ACTIONS(6007), + [anon_sym_COLON] = ACTIONS(6007), + [anon_sym_COMMA] = ACTIONS(6007), + [anon_sym_RBRACK] = ACTIONS(6007), + [anon_sym_LPAREN] = ACTIONS(6007), + [anon_sym_RPAREN] = ACTIONS(6007), + [anon_sym_RBRACE] = ACTIONS(6007), + [anon_sym_LT] = ACTIONS(6009), + [anon_sym_GT] = ACTIONS(6009), + [anon_sym_in] = ACTIONS(6007), + [anon_sym_QMARK] = ACTIONS(6009), + [anon_sym_DOT] = ACTIONS(6009), + [anon_sym_EQ_GT] = ACTIONS(6007), + [anon_sym_STAR] = ACTIONS(6007), + [anon_sym_switch] = ACTIONS(6007), + [anon_sym_when] = ACTIONS(6007), + [anon_sym_DOT_DOT] = ACTIONS(6007), + [anon_sym_LT_EQ] = ACTIONS(6007), + [anon_sym_GT_EQ] = ACTIONS(6007), + [anon_sym_and] = ACTIONS(6007), + [anon_sym_or] = ACTIONS(6007), + [anon_sym_EQ_EQ] = ACTIONS(6007), + [anon_sym_BANG_EQ] = ACTIONS(6007), + [anon_sym_AMP_AMP] = ACTIONS(6007), + [anon_sym_PIPE_PIPE] = ACTIONS(6007), + [anon_sym_AMP] = ACTIONS(6009), + [sym_op_bitwise_or] = ACTIONS(6009), + [anon_sym_CARET] = ACTIONS(6007), + [sym_op_left_shift] = ACTIONS(6007), + [sym_op_right_shift] = ACTIONS(6009), + [sym_op_unsigned_right_shift] = ACTIONS(6007), + [anon_sym_PLUS] = ACTIONS(6009), + [anon_sym_DASH] = ACTIONS(6009), + [sym_op_divide] = ACTIONS(6009), + [sym_op_modulo] = ACTIONS(6007), + [sym_op_coalescing] = ACTIONS(6007), + [anon_sym_BANG] = ACTIONS(6009), + [anon_sym_PLUS_PLUS] = ACTIONS(6007), + [anon_sym_DASH_DASH] = ACTIONS(6007), + [anon_sym_on] = ACTIONS(6007), + [anon_sym_equals] = ACTIONS(6007), + [anon_sym_by] = ACTIONS(6007), + [anon_sym_as] = ACTIONS(6007), + [anon_sym_is] = ACTIONS(6007), + [anon_sym_DASH_GT] = ACTIONS(6007), + [anon_sym_with] = ACTIONS(6007), + [aux_sym_preproc_if_token3] = ACTIONS(6007), + [aux_sym_preproc_else_token1] = ACTIONS(6007), + [aux_sym_preproc_elif_token1] = ACTIONS(6007), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -612926,7 +605157,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4640] = { - [sym_initializer_expression] = STATE(4901), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4640), [sym_preproc_endregion] = STATE(4640), [sym_preproc_line] = STATE(4640), @@ -612936,58 +605181,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4640), [sym_preproc_define] = STATE(4640), [sym_preproc_undef] = STATE(4640), - [anon_sym_SEMI] = ACTIONS(5958), - [anon_sym_LBRACK] = ACTIONS(5954), - [anon_sym_COLON] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_RBRACK] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_RPAREN] = ACTIONS(5958), - [anon_sym_LBRACE] = ACTIONS(6908), - [anon_sym_RBRACE] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_in] = ACTIONS(5964), - [anon_sym_QMARK] = ACTIONS(6911), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PLUS_PLUS] = ACTIONS(5958), - [anon_sym_DASH_DASH] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5964), - [anon_sym_DASH] = ACTIONS(5964), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5964), - [anon_sym_PERCENT] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_AMP] = ACTIONS(5964), - [anon_sym_LT_LT] = ACTIONS(5958), - [anon_sym_GT_GT] = ACTIONS(5964), - [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(5964), - [anon_sym_EQ_GT] = ACTIONS(5958), - [anon_sym_switch] = ACTIONS(5958), - [anon_sym_when] = ACTIONS(5958), - [anon_sym_DOT_DOT] = ACTIONS(5958), - [anon_sym_and] = ACTIONS(5958), - [anon_sym_or] = ACTIONS(5958), - [anon_sym_AMP_AMP] = ACTIONS(5958), - [anon_sym_PIPE_PIPE] = ACTIONS(5958), - [sym_op_coalescing] = ACTIONS(5958), - [anon_sym_into] = ACTIONS(5958), - [anon_sym_on] = ACTIONS(5958), - [anon_sym_equals] = ACTIONS(5958), - [anon_sym_by] = ACTIONS(5958), - [anon_sym_as] = ACTIONS(5958), - [anon_sym_is] = ACTIONS(5958), - [anon_sym_DASH_GT] = ACTIONS(5958), - [anon_sym_with] = ACTIONS(5958), - [aux_sym_preproc_if_token3] = ACTIONS(5958), - [aux_sym_preproc_else_token1] = ACTIONS(5958), - [aux_sym_preproc_elif_token1] = ACTIONS(5958), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5338), + [anon_sym_QMARK] = ACTIONS(7192), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7186), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(7190), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7184), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -613000,9 +605228,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4641] = { - [sym_attribute_list] = STATE(5086), - [sym__attribute_list] = STATE(5090), - [sym_preproc_if_in_attribute_list] = STATE(5086), [sym_preproc_region] = STATE(4641), [sym_preproc_endregion] = STATE(4641), [sym_preproc_line] = STATE(4641), @@ -613012,56 +605237,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4641), [sym_preproc_define] = STATE(4641), [sym_preproc_undef] = STATE(4641), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4641), - [sym__identifier_token] = ACTIONS(5484), - [anon_sym_extern] = ACTIONS(5484), - [anon_sym_alias] = ACTIONS(5484), - [anon_sym_global] = ACTIONS(5484), - [anon_sym_unsafe] = ACTIONS(5484), - [anon_sym_static] = ACTIONS(5484), - [anon_sym_LBRACK] = ACTIONS(6915), - [anon_sym_LPAREN] = ACTIONS(5489), - [anon_sym_ref] = ACTIONS(5484), - [anon_sym_delegate] = ACTIONS(5484), - [anon_sym_public] = ACTIONS(5484), - [anon_sym_private] = ACTIONS(5484), - [anon_sym_readonly] = ACTIONS(5484), - [anon_sym_abstract] = ACTIONS(5484), - [anon_sym_async] = ACTIONS(5484), - [anon_sym_const] = ACTIONS(5484), - [anon_sym_file] = ACTIONS(5484), - [anon_sym_fixed] = ACTIONS(5484), - [anon_sym_internal] = ACTIONS(5484), - [anon_sym_new] = ACTIONS(5484), - [anon_sym_override] = ACTIONS(5484), - [anon_sym_partial] = ACTIONS(5484), - [anon_sym_protected] = ACTIONS(5484), - [anon_sym_required] = ACTIONS(5484), - [anon_sym_sealed] = ACTIONS(5484), - [anon_sym_virtual] = ACTIONS(5484), - [anon_sym_volatile] = ACTIONS(5484), - [anon_sym_where] = ACTIONS(5484), - [anon_sym_notnull] = ACTIONS(5484), - [anon_sym_unmanaged] = ACTIONS(5484), - [anon_sym_scoped] = ACTIONS(5484), - [anon_sym_var] = ACTIONS(5484), - [sym_predefined_type] = ACTIONS(5484), - [anon_sym_yield] = ACTIONS(5484), - [anon_sym_when] = ACTIONS(5484), - [anon_sym_from] = ACTIONS(5484), - [anon_sym_into] = ACTIONS(5484), - [anon_sym_join] = ACTIONS(5484), - [anon_sym_on] = ACTIONS(5484), - [anon_sym_equals] = ACTIONS(5484), - [anon_sym_let] = ACTIONS(5484), - [anon_sym_orderby] = ACTIONS(5484), - [anon_sym_ascending] = ACTIONS(5484), - [anon_sym_descending] = ACTIONS(5484), - [anon_sym_group] = ACTIONS(5484), - [anon_sym_by] = ACTIONS(5484), - [anon_sym_select] = ACTIONS(5484), - [sym_grit_metavariable] = ACTIONS(5489), - [aux_sym_preproc_if_token1] = ACTIONS(6918), + [anon_sym_SEMI] = ACTIONS(6855), + [anon_sym_LBRACK] = ACTIONS(6855), + [anon_sym_COLON] = ACTIONS(6855), + [anon_sym_COMMA] = ACTIONS(6855), + [anon_sym_RBRACK] = ACTIONS(6855), + [anon_sym_LPAREN] = ACTIONS(6855), + [anon_sym_RPAREN] = ACTIONS(6855), + [anon_sym_RBRACE] = ACTIONS(6855), + [anon_sym_LT] = ACTIONS(6857), + [anon_sym_GT] = ACTIONS(6857), + [anon_sym_in] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(6857), + [anon_sym_DOT] = ACTIONS(6857), + [anon_sym_EQ_GT] = ACTIONS(6855), + [anon_sym_STAR] = ACTIONS(6855), + [anon_sym_switch] = ACTIONS(6855), + [anon_sym_when] = ACTIONS(6855), + [anon_sym_DOT_DOT] = ACTIONS(6855), + [anon_sym_LT_EQ] = ACTIONS(6855), + [anon_sym_GT_EQ] = ACTIONS(6855), + [anon_sym_and] = ACTIONS(6855), + [anon_sym_or] = ACTIONS(6855), + [anon_sym_EQ_EQ] = ACTIONS(6855), + [anon_sym_BANG_EQ] = ACTIONS(6855), + [anon_sym_AMP_AMP] = ACTIONS(6855), + [anon_sym_PIPE_PIPE] = ACTIONS(6855), + [anon_sym_AMP] = ACTIONS(6857), + [sym_op_bitwise_or] = ACTIONS(6857), + [anon_sym_CARET] = ACTIONS(6855), + [sym_op_left_shift] = ACTIONS(6855), + [sym_op_right_shift] = ACTIONS(6857), + [sym_op_unsigned_right_shift] = ACTIONS(6855), + [anon_sym_PLUS] = ACTIONS(6857), + [anon_sym_DASH] = ACTIONS(6857), + [sym_op_divide] = ACTIONS(6857), + [sym_op_modulo] = ACTIONS(6855), + [sym_op_coalescing] = ACTIONS(6855), + [anon_sym_BANG] = ACTIONS(6857), + [anon_sym_PLUS_PLUS] = ACTIONS(6855), + [anon_sym_DASH_DASH] = ACTIONS(6855), + [anon_sym_on] = ACTIONS(6855), + [anon_sym_equals] = ACTIONS(6855), + [anon_sym_by] = ACTIONS(6855), + [anon_sym_as] = ACTIONS(6855), + [anon_sym_is] = ACTIONS(6855), + [anon_sym_DASH_GT] = ACTIONS(6855), + [anon_sym_with] = ACTIONS(6855), + [aux_sym_preproc_if_token3] = ACTIONS(6855), + [aux_sym_preproc_else_token1] = ACTIONS(6855), + [aux_sym_preproc_elif_token1] = ACTIONS(6855), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -613074,6 +605299,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4642] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4642), [sym_preproc_endregion] = STATE(4642), [sym_preproc_line] = STATE(4642), @@ -613083,59 +605323,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4642), [sym_preproc_define] = STATE(4642), [sym_preproc_undef] = STATE(4642), - [anon_sym_SEMI] = ACTIONS(5684), - [anon_sym_EQ] = ACTIONS(6921), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_RBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(5684), - [anon_sym_RBRACE] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(6923), - [anon_sym_DASH_EQ] = ACTIONS(6923), - [anon_sym_STAR_EQ] = ACTIONS(6923), - [anon_sym_SLASH_EQ] = ACTIONS(6923), - [anon_sym_PERCENT_EQ] = ACTIONS(6923), - [anon_sym_AMP_EQ] = ACTIONS(6923), - [anon_sym_CARET_EQ] = ACTIONS(6923), - [anon_sym_PIPE_EQ] = ACTIONS(6923), - [anon_sym_LT_LT_EQ] = ACTIONS(6923), - [anon_sym_GT_GT_EQ] = ACTIONS(6923), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6923), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6923), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5358), + [anon_sym_QMARK] = ACTIONS(7192), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7186), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(7190), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7184), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -613148,8 +605370,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4643] = { - [sym_argument_list] = STATE(4704), - [sym_initializer_expression] = STATE(4926), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4643), [sym_preproc_endregion] = STATE(4643), [sym_preproc_line] = STATE(4643), @@ -613159,57 +605394,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4643), [sym_preproc_define] = STATE(4643), [sym_preproc_undef] = STATE(4643), - [anon_sym_SEMI] = ACTIONS(5690), - [anon_sym_LBRACK] = ACTIONS(5690), - [anon_sym_COLON] = ACTIONS(5690), - [anon_sym_COMMA] = ACTIONS(5690), - [anon_sym_RBRACK] = ACTIONS(5690), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(5690), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(5690), - [anon_sym_LT] = ACTIONS(5692), - [anon_sym_GT] = ACTIONS(5692), - [anon_sym_in] = ACTIONS(5690), - [anon_sym_QMARK] = ACTIONS(5692), - [anon_sym_BANG] = ACTIONS(5692), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5692), - [anon_sym_DASH] = ACTIONS(5692), - [anon_sym_STAR] = ACTIONS(5690), - [anon_sym_SLASH] = ACTIONS(5692), - [anon_sym_PERCENT] = ACTIONS(5690), - [anon_sym_CARET] = ACTIONS(5690), - [anon_sym_PIPE] = ACTIONS(5692), - [anon_sym_AMP] = ACTIONS(5692), - [anon_sym_LT_LT] = ACTIONS(5690), - [anon_sym_GT_GT] = ACTIONS(5692), - [anon_sym_GT_GT_GT] = ACTIONS(5690), - [anon_sym_EQ_EQ] = ACTIONS(5690), - [anon_sym_BANG_EQ] = ACTIONS(5690), - [anon_sym_GT_EQ] = ACTIONS(5690), - [anon_sym_LT_EQ] = ACTIONS(5690), - [anon_sym_DOT] = ACTIONS(5692), - [anon_sym_EQ_GT] = ACTIONS(5690), - [anon_sym_switch] = ACTIONS(5690), - [anon_sym_when] = ACTIONS(5690), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5690), - [anon_sym_or] = ACTIONS(5690), - [anon_sym_AMP_AMP] = ACTIONS(5690), - [anon_sym_PIPE_PIPE] = ACTIONS(5690), - [sym_op_coalescing] = ACTIONS(5690), - [anon_sym_on] = ACTIONS(5690), - [anon_sym_equals] = ACTIONS(5690), - [anon_sym_by] = ACTIONS(5690), - [anon_sym_as] = ACTIONS(5690), - [anon_sym_is] = ACTIONS(5690), - [anon_sym_DASH_GT] = ACTIONS(5690), - [anon_sym_with] = ACTIONS(5690), - [aux_sym_preproc_if_token3] = ACTIONS(5690), - [aux_sym_preproc_else_token1] = ACTIONS(5690), - [aux_sym_preproc_elif_token1] = ACTIONS(5690), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_in] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -613231,59 +605450,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4644), [sym_preproc_define] = STATE(4644), [sym_preproc_undef] = STATE(4644), - [sym__identifier_token] = ACTIONS(3735), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3735), - [anon_sym_global] = ACTIONS(3735), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3735), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_where] = ACTIONS(3735), - [anon_sym_QMARK] = ACTIONS(3696), - [anon_sym_notnull] = ACTIONS(3735), - [anon_sym_unmanaged] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_scoped] = ACTIONS(3735), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3735), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3735), - [anon_sym_when] = ACTIONS(3735), - [anon_sym_from] = ACTIONS(3735), - [anon_sym_into] = ACTIONS(3735), - [anon_sym_join] = ACTIONS(3735), - [anon_sym_on] = ACTIONS(3735), - [anon_sym_equals] = ACTIONS(3735), - [anon_sym_let] = ACTIONS(3735), - [anon_sym_orderby] = ACTIONS(3735), - [anon_sym_ascending] = ACTIONS(3735), - [anon_sym_descending] = ACTIONS(3735), - [anon_sym_group] = ACTIONS(3735), - [anon_sym_by] = ACTIONS(3735), - [anon_sym_select] = ACTIONS(3735), - [sym_grit_metavariable] = ACTIONS(3740), + [anon_sym_SEMI] = ACTIONS(5967), + [anon_sym_LBRACK] = ACTIONS(5967), + [anon_sym_COLON] = ACTIONS(5967), + [anon_sym_COMMA] = ACTIONS(5967), + [anon_sym_RBRACK] = ACTIONS(5967), + [anon_sym_LPAREN] = ACTIONS(5967), + [anon_sym_RPAREN] = ACTIONS(5967), + [anon_sym_RBRACE] = ACTIONS(5967), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_in] = ACTIONS(5967), + [anon_sym_QMARK] = ACTIONS(5969), + [anon_sym_DOT] = ACTIONS(5969), + [anon_sym_EQ_GT] = ACTIONS(5967), + [anon_sym_STAR] = ACTIONS(5967), + [anon_sym_switch] = ACTIONS(5967), + [anon_sym_when] = ACTIONS(5967), + [anon_sym_DOT_DOT] = ACTIONS(5967), + [anon_sym_LT_EQ] = ACTIONS(5967), + [anon_sym_GT_EQ] = ACTIONS(5967), + [anon_sym_and] = ACTIONS(5967), + [anon_sym_or] = ACTIONS(5967), + [anon_sym_EQ_EQ] = ACTIONS(5967), + [anon_sym_BANG_EQ] = ACTIONS(5967), + [anon_sym_AMP_AMP] = ACTIONS(5967), + [anon_sym_PIPE_PIPE] = ACTIONS(5967), + [anon_sym_AMP] = ACTIONS(5969), + [sym_op_bitwise_or] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5967), + [sym_op_left_shift] = ACTIONS(5967), + [sym_op_right_shift] = ACTIONS(5969), + [sym_op_unsigned_right_shift] = ACTIONS(5967), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [sym_op_divide] = ACTIONS(5969), + [sym_op_modulo] = ACTIONS(5967), + [sym_op_coalescing] = ACTIONS(5967), + [anon_sym_BANG] = ACTIONS(5969), + [anon_sym_PLUS_PLUS] = ACTIONS(5967), + [anon_sym_DASH_DASH] = ACTIONS(5967), + [anon_sym_on] = ACTIONS(5967), + [anon_sym_equals] = ACTIONS(5967), + [anon_sym_by] = ACTIONS(5967), + [anon_sym_as] = ACTIONS(5967), + [anon_sym_is] = ACTIONS(5967), + [anon_sym_DASH_GT] = ACTIONS(5967), + [anon_sym_with] = ACTIONS(5967), + [aux_sym_preproc_if_token3] = ACTIONS(5967), + [aux_sym_preproc_else_token1] = ACTIONS(5967), + [aux_sym_preproc_elif_token1] = ACTIONS(5967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -613296,6 +605512,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4645] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(952), + [sym_op_lte] = STATE(952), + [sym_op_eq] = STATE(959), + [sym_op_neq] = STATE(959), + [sym_op_gt] = STATE(952), + [sym_op_gte] = STATE(952), + [sym_op_and] = STATE(965), + [sym_op_or] = STATE(966), + [sym_op_bitwise_and] = STATE(968), + [sym_op_bitwise_xor] = STATE(983), + [sym_op_plus] = STATE(1001), + [sym_op_minus] = STATE(1001), + [sym_op_multiply] = STATE(932), [sym_preproc_region] = STATE(4645), [sym_preproc_endregion] = STATE(4645), [sym_preproc_line] = STATE(4645), @@ -613305,59 +605536,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4645), [sym_preproc_define] = STATE(4645), [sym_preproc_undef] = STATE(4645), - [anon_sym_EQ] = ACTIONS(6925), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(6927), - [anon_sym_DASH_EQ] = ACTIONS(6927), - [anon_sym_STAR_EQ] = ACTIONS(6927), - [anon_sym_SLASH_EQ] = ACTIONS(6927), - [anon_sym_PERCENT_EQ] = ACTIONS(6927), - [anon_sym_AMP_EQ] = ACTIONS(6927), - [anon_sym_CARET_EQ] = ACTIONS(6927), - [anon_sym_PIPE_EQ] = ACTIONS(6927), - [anon_sym_LT_LT_EQ] = ACTIONS(6927), - [anon_sym_GT_GT_EQ] = ACTIONS(6927), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6927), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6927), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_from] = ACTIONS(5684), - [anon_sym_join] = ACTIONS(5684), - [anon_sym_let] = ACTIONS(5684), - [anon_sym_orderby] = ACTIONS(5684), - [anon_sym_group] = ACTIONS(5684), - [anon_sym_select] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(7200), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6374), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(6155), + [anon_sym_DOT_DOT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6378), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6380), + [sym_op_right_shift] = ACTIONS(6382), + [sym_op_unsigned_right_shift] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6384), + [sym_op_modulo] = ACTIONS(6386), + [sym_op_coalescing] = ACTIONS(6388), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6339), + [anon_sym_is] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(6179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -613368,9 +605580,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(7200), }, [4646] = { - [sym_type_argument_list] = STATE(4689), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4646), [sym_preproc_endregion] = STATE(4646), [sym_preproc_line] = STATE(4646), @@ -613380,58 +605607,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4646), [sym_preproc_define] = STATE(4646), [sym_preproc_undef] = STATE(4646), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(6897), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_when] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_into] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7202), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7202), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -613453,59 +605663,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4647), [sym_preproc_define] = STATE(4647), [sym_preproc_undef] = STATE(4647), - [anon_sym_EQ] = ACTIONS(6929), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(5684), - [anon_sym_RBRACE] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(6931), - [anon_sym_DASH_EQ] = ACTIONS(6931), - [anon_sym_STAR_EQ] = ACTIONS(6931), - [anon_sym_SLASH_EQ] = ACTIONS(6931), - [anon_sym_PERCENT_EQ] = ACTIONS(6931), - [anon_sym_AMP_EQ] = ACTIONS(6931), - [anon_sym_CARET_EQ] = ACTIONS(6931), - [anon_sym_PIPE_EQ] = ACTIONS(6931), - [anon_sym_LT_LT_EQ] = ACTIONS(6931), - [anon_sym_GT_GT_EQ] = ACTIONS(6931), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6931), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6931), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_COLON] = ACTIONS(2283), + [anon_sym_COMMA] = ACTIONS(2283), + [anon_sym_RBRACK] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(7204), + [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_GT] = ACTIONS(2281), + [anon_sym_in] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(2281), + [anon_sym_DOT] = ACTIONS(2281), + [anon_sym_EQ_GT] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2283), + [anon_sym_switch] = ACTIONS(2283), + [anon_sym_when] = ACTIONS(2283), + [anon_sym_DOT_DOT] = ACTIONS(2283), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_and] = ACTIONS(2283), + [anon_sym_or] = ACTIONS(2283), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_AMP_AMP] = ACTIONS(2283), + [anon_sym_PIPE_PIPE] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2281), + [sym_op_bitwise_or] = ACTIONS(2281), + [anon_sym_CARET] = ACTIONS(2283), + [sym_op_left_shift] = ACTIONS(2283), + [sym_op_right_shift] = ACTIONS(2281), + [sym_op_unsigned_right_shift] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [sym_op_divide] = ACTIONS(2281), + [sym_op_modulo] = ACTIONS(2283), + [sym_op_coalescing] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2283), + [anon_sym_on] = ACTIONS(2283), + [anon_sym_equals] = ACTIONS(2283), + [anon_sym_by] = ACTIONS(2283), + [anon_sym_as] = ACTIONS(2283), + [anon_sym_is] = ACTIONS(2283), + [anon_sym_DASH_GT] = ACTIONS(2283), + [anon_sym_with] = ACTIONS(2283), + [aux_sym_preproc_if_token3] = ACTIONS(2283), + [aux_sym_preproc_else_token1] = ACTIONS(2283), + [aux_sym_preproc_elif_token1] = ACTIONS(2283), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -613518,7 +605725,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4648] = { - [sym_initializer_expression] = STATE(4903), [sym_preproc_region] = STATE(4648), [sym_preproc_endregion] = STATE(4648), [sym_preproc_line] = STATE(4648), @@ -613528,58 +605734,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4648), [sym_preproc_define] = STATE(4648), [sym_preproc_undef] = STATE(4648), - [anon_sym_SEMI] = ACTIONS(5755), - [anon_sym_LBRACK] = ACTIONS(5755), - [anon_sym_COLON] = ACTIONS(5755), - [anon_sym_COMMA] = ACTIONS(5755), - [anon_sym_RBRACK] = ACTIONS(5755), - [anon_sym_LPAREN] = ACTIONS(5755), - [anon_sym_RPAREN] = ACTIONS(5755), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(5755), - [anon_sym_LT] = ACTIONS(5757), - [anon_sym_GT] = ACTIONS(5757), - [anon_sym_in] = ACTIONS(5757), - [anon_sym_QMARK] = ACTIONS(5757), - [anon_sym_BANG] = ACTIONS(5757), - [anon_sym_PLUS_PLUS] = ACTIONS(5755), - [anon_sym_DASH_DASH] = ACTIONS(5755), - [anon_sym_PLUS] = ACTIONS(5757), - [anon_sym_DASH] = ACTIONS(5757), - [anon_sym_STAR] = ACTIONS(5755), - [anon_sym_SLASH] = ACTIONS(5757), - [anon_sym_PERCENT] = ACTIONS(5755), - [anon_sym_CARET] = ACTIONS(5755), - [anon_sym_PIPE] = ACTIONS(5757), - [anon_sym_AMP] = ACTIONS(5757), - [anon_sym_LT_LT] = ACTIONS(5755), - [anon_sym_GT_GT] = ACTIONS(5757), - [anon_sym_GT_GT_GT] = ACTIONS(5755), - [anon_sym_EQ_EQ] = ACTIONS(5755), - [anon_sym_BANG_EQ] = ACTIONS(5755), - [anon_sym_GT_EQ] = ACTIONS(5755), - [anon_sym_LT_EQ] = ACTIONS(5755), - [anon_sym_DOT] = ACTIONS(5757), - [anon_sym_EQ_GT] = ACTIONS(5755), - [anon_sym_switch] = ACTIONS(5755), - [anon_sym_when] = ACTIONS(5755), - [anon_sym_DOT_DOT] = ACTIONS(5755), - [anon_sym_and] = ACTIONS(5755), - [anon_sym_or] = ACTIONS(5755), - [anon_sym_AMP_AMP] = ACTIONS(5755), - [anon_sym_PIPE_PIPE] = ACTIONS(5755), - [sym_op_coalescing] = ACTIONS(5755), - [anon_sym_into] = ACTIONS(5755), - [anon_sym_on] = ACTIONS(5755), - [anon_sym_equals] = ACTIONS(5755), - [anon_sym_by] = ACTIONS(5755), - [anon_sym_as] = ACTIONS(5755), - [anon_sym_is] = ACTIONS(5755), - [anon_sym_DASH_GT] = ACTIONS(5755), - [anon_sym_with] = ACTIONS(5755), - [aux_sym_preproc_if_token3] = ACTIONS(5755), - [aux_sym_preproc_else_token1] = ACTIONS(5755), - [aux_sym_preproc_elif_token1] = ACTIONS(5755), + [anon_sym_SEMI] = ACTIONS(6757), + [anon_sym_LBRACK] = ACTIONS(6757), + [anon_sym_COLON] = ACTIONS(6757), + [anon_sym_COMMA] = ACTIONS(6757), + [anon_sym_RBRACK] = ACTIONS(6757), + [anon_sym_LPAREN] = ACTIONS(6757), + [anon_sym_RPAREN] = ACTIONS(6757), + [anon_sym_RBRACE] = ACTIONS(6757), + [anon_sym_LT] = ACTIONS(6759), + [anon_sym_GT] = ACTIONS(6759), + [anon_sym_in] = ACTIONS(6757), + [anon_sym_QMARK] = ACTIONS(6759), + [anon_sym_DOT] = ACTIONS(6759), + [anon_sym_EQ_GT] = ACTIONS(6757), + [anon_sym_STAR] = ACTIONS(6757), + [anon_sym_switch] = ACTIONS(6757), + [anon_sym_when] = ACTIONS(6757), + [anon_sym_DOT_DOT] = ACTIONS(6757), + [anon_sym_LT_EQ] = ACTIONS(6757), + [anon_sym_GT_EQ] = ACTIONS(6757), + [anon_sym_and] = ACTIONS(6757), + [anon_sym_or] = ACTIONS(6757), + [anon_sym_EQ_EQ] = ACTIONS(6757), + [anon_sym_BANG_EQ] = ACTIONS(6757), + [anon_sym_AMP_AMP] = ACTIONS(6757), + [anon_sym_PIPE_PIPE] = ACTIONS(6757), + [anon_sym_AMP] = ACTIONS(6759), + [sym_op_bitwise_or] = ACTIONS(6759), + [anon_sym_CARET] = ACTIONS(6757), + [sym_op_left_shift] = ACTIONS(6757), + [sym_op_right_shift] = ACTIONS(6759), + [sym_op_unsigned_right_shift] = ACTIONS(6757), + [anon_sym_PLUS] = ACTIONS(6759), + [anon_sym_DASH] = ACTIONS(6759), + [sym_op_divide] = ACTIONS(6759), + [sym_op_modulo] = ACTIONS(6757), + [sym_op_coalescing] = ACTIONS(6757), + [anon_sym_BANG] = ACTIONS(6759), + [anon_sym_PLUS_PLUS] = ACTIONS(6757), + [anon_sym_DASH_DASH] = ACTIONS(6757), + [anon_sym_on] = ACTIONS(6757), + [anon_sym_equals] = ACTIONS(6757), + [anon_sym_by] = ACTIONS(6757), + [anon_sym_as] = ACTIONS(6757), + [anon_sym_is] = ACTIONS(6757), + [anon_sym_DASH_GT] = ACTIONS(6757), + [anon_sym_with] = ACTIONS(6757), + [aux_sym_preproc_if_token3] = ACTIONS(6757), + [aux_sym_preproc_else_token1] = ACTIONS(6757), + [aux_sym_preproc_elif_token1] = ACTIONS(6757), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -613592,7 +605796,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4649] = { - [sym_initializer_expression] = STATE(4899), + [sym_parameter_list] = STATE(7553), + [sym_block] = STATE(3421), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6390), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4649), [sym_preproc_endregion] = STATE(4649), [sym_preproc_line] = STATE(4649), @@ -613602,58 +605825,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4649), [sym_preproc_define] = STATE(4649), [sym_preproc_undef] = STATE(4649), - [anon_sym_SEMI] = ACTIONS(5734), - [anon_sym_LBRACK] = ACTIONS(5736), - [anon_sym_COLON] = ACTIONS(5734), - [anon_sym_COMMA] = ACTIONS(5734), - [anon_sym_RBRACK] = ACTIONS(5734), - [anon_sym_LPAREN] = ACTIONS(5734), - [anon_sym_RPAREN] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(5734), - [anon_sym_LT] = ACTIONS(5739), - [anon_sym_GT] = ACTIONS(5739), - [anon_sym_in] = ACTIONS(5739), - [anon_sym_QMARK] = ACTIONS(5739), - [anon_sym_BANG] = ACTIONS(5739), - [anon_sym_PLUS_PLUS] = ACTIONS(5734), - [anon_sym_DASH_DASH] = ACTIONS(5734), - [anon_sym_PLUS] = ACTIONS(5739), - [anon_sym_DASH] = ACTIONS(5739), - [anon_sym_STAR] = ACTIONS(5734), - [anon_sym_SLASH] = ACTIONS(5739), - [anon_sym_PERCENT] = ACTIONS(5734), - [anon_sym_CARET] = ACTIONS(5734), - [anon_sym_PIPE] = ACTIONS(5739), - [anon_sym_AMP] = ACTIONS(5739), - [anon_sym_LT_LT] = ACTIONS(5734), - [anon_sym_GT_GT] = ACTIONS(5739), - [anon_sym_GT_GT_GT] = ACTIONS(5734), - [anon_sym_EQ_EQ] = ACTIONS(5734), - [anon_sym_BANG_EQ] = ACTIONS(5734), - [anon_sym_GT_EQ] = ACTIONS(5734), - [anon_sym_LT_EQ] = ACTIONS(5734), - [anon_sym_DOT] = ACTIONS(5739), - [anon_sym_EQ_GT] = ACTIONS(5734), - [anon_sym_switch] = ACTIONS(5734), - [anon_sym_when] = ACTIONS(5734), - [anon_sym_DOT_DOT] = ACTIONS(5734), - [anon_sym_and] = ACTIONS(5734), - [anon_sym_or] = ACTIONS(5734), - [anon_sym_AMP_AMP] = ACTIONS(5734), - [anon_sym_PIPE_PIPE] = ACTIONS(5734), - [sym_op_coalescing] = ACTIONS(5734), - [anon_sym_into] = ACTIONS(5734), - [anon_sym_on] = ACTIONS(5734), - [anon_sym_equals] = ACTIONS(5734), - [anon_sym_by] = ACTIONS(5734), - [anon_sym_as] = ACTIONS(5734), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(5734), - [anon_sym_with] = ACTIONS(5734), - [aux_sym_preproc_if_token3] = ACTIONS(5734), - [aux_sym_preproc_else_token1] = ACTIONS(5734), - [aux_sym_preproc_elif_token1] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_LBRACE] = ACTIONS(7206), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [anon_sym_STAR] = ACTIONS(7208), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -613666,7 +605867,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4650] = { - [sym_initializer_expression] = STATE(4860), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4650), [sym_preproc_endregion] = STATE(4650), [sym_preproc_line] = STATE(4650), @@ -613676,58 +605891,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4650), [sym_preproc_define] = STATE(4650), [sym_preproc_undef] = STATE(4650), - [anon_sym_SEMI] = ACTIONS(5776), - [anon_sym_LBRACK] = ACTIONS(5776), - [anon_sym_COLON] = ACTIONS(5776), - [anon_sym_COMMA] = ACTIONS(5776), - [anon_sym_RBRACK] = ACTIONS(5776), - [anon_sym_LPAREN] = ACTIONS(5776), - [anon_sym_RPAREN] = ACTIONS(5776), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(5776), - [anon_sym_LT] = ACTIONS(5778), - [anon_sym_GT] = ACTIONS(5778), - [anon_sym_in] = ACTIONS(5778), - [anon_sym_QMARK] = ACTIONS(5778), - [anon_sym_BANG] = ACTIONS(5778), - [anon_sym_PLUS_PLUS] = ACTIONS(5776), - [anon_sym_DASH_DASH] = ACTIONS(5776), - [anon_sym_PLUS] = ACTIONS(5778), - [anon_sym_DASH] = ACTIONS(5778), - [anon_sym_STAR] = ACTIONS(5776), - [anon_sym_SLASH] = ACTIONS(5778), - [anon_sym_PERCENT] = ACTIONS(5776), - [anon_sym_CARET] = ACTIONS(5776), - [anon_sym_PIPE] = ACTIONS(5778), - [anon_sym_AMP] = ACTIONS(5778), - [anon_sym_LT_LT] = ACTIONS(5776), - [anon_sym_GT_GT] = ACTIONS(5778), - [anon_sym_GT_GT_GT] = ACTIONS(5776), - [anon_sym_EQ_EQ] = ACTIONS(5776), - [anon_sym_BANG_EQ] = ACTIONS(5776), - [anon_sym_GT_EQ] = ACTIONS(5776), - [anon_sym_LT_EQ] = ACTIONS(5776), - [anon_sym_DOT] = ACTIONS(5778), - [anon_sym_EQ_GT] = ACTIONS(5776), - [anon_sym_switch] = ACTIONS(5776), - [anon_sym_when] = ACTIONS(5776), - [anon_sym_DOT_DOT] = ACTIONS(5776), - [anon_sym_and] = ACTIONS(5776), - [anon_sym_or] = ACTIONS(5776), - [anon_sym_AMP_AMP] = ACTIONS(5776), - [anon_sym_PIPE_PIPE] = ACTIONS(5776), - [sym_op_coalescing] = ACTIONS(5776), - [anon_sym_into] = ACTIONS(5776), - [anon_sym_on] = ACTIONS(5776), - [anon_sym_equals] = ACTIONS(5776), - [anon_sym_by] = ACTIONS(5776), - [anon_sym_as] = ACTIONS(5776), - [anon_sym_is] = ACTIONS(5776), - [anon_sym_DASH_GT] = ACTIONS(5776), - [anon_sym_with] = ACTIONS(5776), - [aux_sym_preproc_if_token3] = ACTIONS(5776), - [aux_sym_preproc_else_token1] = ACTIONS(5776), - [aux_sym_preproc_elif_token1] = ACTIONS(5776), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7210), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7210), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -613740,7 +605938,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4651] = { - [sym_type_argument_list] = STATE(4703), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4651), [sym_preproc_endregion] = STATE(4651), [sym_preproc_line] = STATE(4651), @@ -613750,57 +605965,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4651), [sym_preproc_define] = STATE(4651), [sym_preproc_undef] = STATE(4651), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(6933), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3953), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3951), - [anon_sym_into] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(2919), + [anon_sym_alias] = ACTIONS(2919), + [anon_sym_global] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_ref] = ACTIONS(2919), + [anon_sym_delegate] = ACTIONS(2919), + [anon_sym_readonly] = ACTIONS(2919), + [anon_sym_file] = ACTIONS(2919), + [anon_sym_in] = ACTIONS(2919), + [anon_sym_out] = ACTIONS(2919), + [anon_sym_where] = ACTIONS(2919), + [anon_sym_notnull] = ACTIONS(2919), + [anon_sym_unmanaged] = ACTIONS(2919), + [anon_sym_this] = ACTIONS(2919), + [anon_sym_scoped] = ACTIONS(2919), + [anon_sym_var] = ACTIONS(2919), + [sym_predefined_type] = ACTIONS(2919), + [anon_sym_yield] = ACTIONS(2919), + [anon_sym_when] = ACTIONS(2919), + [anon_sym_from] = ACTIONS(2919), + [anon_sym_into] = ACTIONS(2919), + [anon_sym_join] = ACTIONS(2919), + [anon_sym_on] = ACTIONS(2919), + [anon_sym_equals] = ACTIONS(2919), + [anon_sym_let] = ACTIONS(2919), + [anon_sym_orderby] = ACTIONS(2919), + [anon_sym_ascending] = ACTIONS(2919), + [anon_sym_descending] = ACTIONS(2919), + [anon_sym_group] = ACTIONS(2919), + [anon_sym_by] = ACTIONS(2919), + [anon_sym_select] = ACTIONS(2919), + [sym_grit_metavariable] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -613811,7 +606007,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(3953), }, [4652] = { [sym_preproc_region] = STATE(4652), @@ -613823,59 +606018,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4652), [sym_preproc_define] = STATE(4652), [sym_preproc_undef] = STATE(4652), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_EQ_GT] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3189), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = ACTIONS(3189), - [anon_sym_into] = ACTIONS(3189), - [anon_sym_on] = ACTIONS(3189), - [anon_sym_equals] = ACTIONS(3189), - [anon_sym_by] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3189), - [aux_sym_preproc_if_token3] = ACTIONS(3189), - [aux_sym_preproc_else_token1] = ACTIONS(3189), - [aux_sym_preproc_elif_token1] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(5919), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_COLON] = ACTIONS(5919), + [anon_sym_COMMA] = ACTIONS(5919), + [anon_sym_RBRACK] = ACTIONS(5919), + [anon_sym_LPAREN] = ACTIONS(5919), + [anon_sym_RPAREN] = ACTIONS(5919), + [anon_sym_RBRACE] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5921), + [anon_sym_GT] = ACTIONS(5921), + [anon_sym_in] = ACTIONS(5919), + [anon_sym_QMARK] = ACTIONS(5921), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_EQ_GT] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_switch] = ACTIONS(5919), + [anon_sym_when] = ACTIONS(5919), + [anon_sym_DOT_DOT] = ACTIONS(5919), + [anon_sym_LT_EQ] = ACTIONS(5919), + [anon_sym_GT_EQ] = ACTIONS(5919), + [anon_sym_and] = ACTIONS(5919), + [anon_sym_or] = ACTIONS(5919), + [anon_sym_EQ_EQ] = ACTIONS(5919), + [anon_sym_BANG_EQ] = ACTIONS(5919), + [anon_sym_AMP_AMP] = ACTIONS(5919), + [anon_sym_PIPE_PIPE] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5921), + [sym_op_bitwise_or] = ACTIONS(5921), + [anon_sym_CARET] = ACTIONS(5919), + [sym_op_left_shift] = ACTIONS(5919), + [sym_op_right_shift] = ACTIONS(5921), + [sym_op_unsigned_right_shift] = ACTIONS(5919), + [anon_sym_PLUS] = ACTIONS(5921), + [anon_sym_DASH] = ACTIONS(5921), + [sym_op_divide] = ACTIONS(5921), + [sym_op_modulo] = ACTIONS(5919), + [sym_op_coalescing] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5921), + [anon_sym_PLUS_PLUS] = ACTIONS(5919), + [anon_sym_DASH_DASH] = ACTIONS(5919), + [anon_sym_on] = ACTIONS(5919), + [anon_sym_equals] = ACTIONS(5919), + [anon_sym_by] = ACTIONS(5919), + [anon_sym_as] = ACTIONS(5919), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(5919), + [anon_sym_with] = ACTIONS(5919), + [aux_sym_preproc_if_token3] = ACTIONS(5919), + [aux_sym_preproc_else_token1] = ACTIONS(5919), + [aux_sym_preproc_elif_token1] = ACTIONS(5919), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -613888,6 +606080,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4653] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4653), [sym_preproc_endregion] = STATE(4653), [sym_preproc_line] = STATE(4653), @@ -613897,59 +606104,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4653), [sym_preproc_define] = STATE(4653), [sym_preproc_undef] = STATE(4653), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(3991), - [anon_sym_switch] = ACTIONS(4006), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_as] = ACTIONS(4006), - [anon_sym_is] = ACTIONS(4006), - [anon_sym_DASH_GT] = ACTIONS(4006), - [anon_sym_with] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7212), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(7212), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -613971,59 +606160,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4654), [sym_preproc_define] = STATE(4654), [sym_preproc_undef] = STATE(4654), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_when] = ACTIONS(3696), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3696), - [anon_sym_or] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_into] = ACTIONS(3696), - [anon_sym_on] = ACTIONS(3696), - [anon_sym_equals] = ACTIONS(3696), - [anon_sym_by] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3696), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(5775), + [anon_sym_LBRACK] = ACTIONS(5775), + [anon_sym_COLON] = ACTIONS(5775), + [anon_sym_COMMA] = ACTIONS(5775), + [anon_sym_RBRACK] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5775), + [anon_sym_RPAREN] = ACTIONS(5775), + [anon_sym_RBRACE] = ACTIONS(5775), + [anon_sym_LT] = ACTIONS(5777), + [anon_sym_GT] = ACTIONS(5777), + [anon_sym_in] = ACTIONS(5775), + [anon_sym_QMARK] = ACTIONS(5777), + [anon_sym_DOT] = ACTIONS(5777), + [anon_sym_EQ_GT] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5775), + [anon_sym_switch] = ACTIONS(5775), + [anon_sym_when] = ACTIONS(5775), + [anon_sym_DOT_DOT] = ACTIONS(5775), + [anon_sym_LT_EQ] = ACTIONS(5775), + [anon_sym_GT_EQ] = ACTIONS(5775), + [anon_sym_and] = ACTIONS(5775), + [anon_sym_or] = ACTIONS(5775), + [anon_sym_EQ_EQ] = ACTIONS(5775), + [anon_sym_BANG_EQ] = ACTIONS(5775), + [anon_sym_AMP_AMP] = ACTIONS(5775), + [anon_sym_PIPE_PIPE] = ACTIONS(5775), + [anon_sym_AMP] = ACTIONS(5777), + [sym_op_bitwise_or] = ACTIONS(5777), + [anon_sym_CARET] = ACTIONS(5775), + [sym_op_left_shift] = ACTIONS(5775), + [sym_op_right_shift] = ACTIONS(5777), + [sym_op_unsigned_right_shift] = ACTIONS(5775), + [anon_sym_PLUS] = ACTIONS(5777), + [anon_sym_DASH] = ACTIONS(5777), + [sym_op_divide] = ACTIONS(5777), + [sym_op_modulo] = ACTIONS(5775), + [sym_op_coalescing] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_on] = ACTIONS(5775), + [anon_sym_equals] = ACTIONS(5775), + [anon_sym_by] = ACTIONS(5775), + [anon_sym_as] = ACTIONS(5775), + [anon_sym_is] = ACTIONS(5775), + [anon_sym_DASH_GT] = ACTIONS(5775), + [anon_sym_with] = ACTIONS(5775), + [aux_sym_preproc_if_token3] = ACTIONS(5775), + [aux_sym_preproc_else_token1] = ACTIONS(5775), + [aux_sym_preproc_elif_token1] = ACTIONS(5775), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -614036,6 +606222,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4655] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4655), [sym_preproc_endregion] = STATE(4655), [sym_preproc_line] = STATE(4655), @@ -614045,59 +606246,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4655), [sym_preproc_define] = STATE(4655), [sym_preproc_undef] = STATE(4655), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_RBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_RPAREN] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3912), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3912), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3912), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3912), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3912), - [anon_sym_when] = ACTIONS(3912), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3912), - [anon_sym_or] = ACTIONS(3912), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3912), - [anon_sym_into] = ACTIONS(3912), - [anon_sym_on] = ACTIONS(3912), - [anon_sym_equals] = ACTIONS(3912), - [anon_sym_by] = ACTIONS(3912), - [anon_sym_as] = ACTIONS(3912), - [anon_sym_is] = ACTIONS(3912), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3912), - [aux_sym_preproc_if_token3] = ACTIONS(3912), - [aux_sym_preproc_else_token1] = ACTIONS(3912), - [aux_sym_preproc_elif_token1] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5366), + [anon_sym_QMARK] = ACTIONS(7192), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7186), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(7190), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7184), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -614110,9 +606293,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4656] = { - [sym_modifier] = STATE(5152), - [sym_identifier] = STATE(6728), - [sym__reserved_identifier] = STATE(2206), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4656), [sym_preproc_endregion] = STATE(4656), [sym_preproc_line] = STATE(4656), @@ -614122,55 +606317,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4656), [sym_preproc_define] = STATE(4656), [sym_preproc_undef] = STATE(4656), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5026), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(5616), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(5616), - [anon_sym_static] = ACTIONS(5616), - [anon_sym_public] = ACTIONS(5616), - [anon_sym_private] = ACTIONS(5616), - [anon_sym_readonly] = ACTIONS(5616), - [anon_sym_abstract] = ACTIONS(5616), - [anon_sym_async] = ACTIONS(5616), - [anon_sym_const] = ACTIONS(5616), - [anon_sym_file] = ACTIONS(5622), - [anon_sym_fixed] = ACTIONS(5616), - [anon_sym_internal] = ACTIONS(5616), - [anon_sym_new] = ACTIONS(5616), - [anon_sym_override] = ACTIONS(5616), - [anon_sym_partial] = ACTIONS(5616), - [anon_sym_protected] = ACTIONS(5616), - [anon_sym_required] = ACTIONS(5616), - [anon_sym_sealed] = ACTIONS(5616), - [anon_sym_virtual] = ACTIONS(5616), - [anon_sym_volatile] = ACTIONS(5616), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [sym_accessor_get] = ACTIONS(6936), - [sym_accessor_set] = ACTIONS(6936), - [sym_accessor_add] = ACTIONS(6936), - [sym_accessor_remove] = ACTIONS(6936), - [sym_accessor_init] = ACTIONS(6936), - [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), - [sym_grit_metavariable] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_equals] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -614183,6 +606364,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4657] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4657), [sym_preproc_endregion] = STATE(4657), [sym_preproc_line] = STATE(4657), @@ -614192,58 +606388,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4657), [sym_preproc_define] = STATE(4657), [sym_preproc_undef] = STATE(4657), - [anon_sym_SEMI] = ACTIONS(4446), - [anon_sym_LBRACK] = ACTIONS(4446), - [anon_sym_COLON] = ACTIONS(4446), - [anon_sym_COMMA] = ACTIONS(4446), - [anon_sym_RBRACK] = ACTIONS(4446), - [anon_sym_LPAREN] = ACTIONS(4446), - [anon_sym_RPAREN] = ACTIONS(4446), - [anon_sym_LBRACE] = ACTIONS(4446), - [anon_sym_RBRACE] = ACTIONS(4446), - [anon_sym_LT] = ACTIONS(4444), - [anon_sym_GT] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4444), - [anon_sym_QMARK] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4446), - [anon_sym_DASH_DASH] = ACTIONS(4446), - [anon_sym_PLUS] = ACTIONS(4444), - [anon_sym_DASH] = ACTIONS(4444), - [anon_sym_STAR] = ACTIONS(4446), - [anon_sym_SLASH] = ACTIONS(4444), - [anon_sym_PERCENT] = ACTIONS(4446), - [anon_sym_CARET] = ACTIONS(4446), - [anon_sym_PIPE] = ACTIONS(4444), - [anon_sym_AMP] = ACTIONS(4444), - [anon_sym_LT_LT] = ACTIONS(4446), - [anon_sym_GT_GT] = ACTIONS(4444), - [anon_sym_GT_GT_GT] = ACTIONS(4446), - [anon_sym_EQ_EQ] = ACTIONS(4446), - [anon_sym_BANG_EQ] = ACTIONS(4446), - [anon_sym_GT_EQ] = ACTIONS(4446), - [anon_sym_LT_EQ] = ACTIONS(4446), - [anon_sym_DOT] = ACTIONS(4444), - [anon_sym_EQ_GT] = ACTIONS(4446), - [anon_sym_switch] = ACTIONS(4446), - [anon_sym_when] = ACTIONS(4446), - [anon_sym_DOT_DOT] = ACTIONS(4446), - [anon_sym_and] = ACTIONS(4446), - [anon_sym_or] = ACTIONS(4446), - [anon_sym_AMP_AMP] = ACTIONS(4446), - [anon_sym_PIPE_PIPE] = ACTIONS(4446), - [sym_op_coalescing] = ACTIONS(4446), - [anon_sym_into] = ACTIONS(4446), - [anon_sym_on] = ACTIONS(4446), - [anon_sym_equals] = ACTIONS(4446), - [anon_sym_by] = ACTIONS(4446), - [anon_sym_as] = ACTIONS(4446), - [anon_sym_is] = ACTIONS(4446), - [anon_sym_DASH_GT] = ACTIONS(4446), - [anon_sym_with] = ACTIONS(4446), - [aux_sym_preproc_if_token3] = ACTIONS(4446), - [aux_sym_preproc_else_token1] = ACTIONS(4446), - [aux_sym_preproc_elif_token1] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7214), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -614265,110 +606444,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4658), [sym_preproc_define] = STATE(4658), [sym_preproc_undef] = STATE(4658), - [anon_sym_SEMI] = ACTIONS(5899), - [anon_sym_LBRACK] = ACTIONS(5899), - [anon_sym_COLON] = ACTIONS(5899), - [anon_sym_COMMA] = ACTIONS(5899), - [anon_sym_RBRACK] = ACTIONS(5899), - [anon_sym_LPAREN] = ACTIONS(5899), - [anon_sym_RPAREN] = ACTIONS(5899), - [anon_sym_RBRACE] = ACTIONS(5899), - [anon_sym_LT] = ACTIONS(5901), - [anon_sym_GT] = ACTIONS(5901), - [anon_sym_in] = ACTIONS(5901), - [anon_sym_QMARK] = ACTIONS(5901), - [anon_sym_BANG] = ACTIONS(5901), - [anon_sym_PLUS_PLUS] = ACTIONS(5899), - [anon_sym_DASH_DASH] = ACTIONS(5899), - [anon_sym_PLUS] = ACTIONS(5901), - [anon_sym_DASH] = ACTIONS(5901), - [anon_sym_STAR] = ACTIONS(5899), - [anon_sym_SLASH] = ACTIONS(5901), - [anon_sym_PERCENT] = ACTIONS(5899), - [anon_sym_CARET] = ACTIONS(5899), - [anon_sym_PIPE] = ACTIONS(5901), - [anon_sym_AMP] = ACTIONS(5901), - [anon_sym_LT_LT] = ACTIONS(5899), - [anon_sym_GT_GT] = ACTIONS(5901), - [anon_sym_GT_GT_GT] = ACTIONS(5899), - [anon_sym_EQ_EQ] = ACTIONS(5899), - [anon_sym_BANG_EQ] = ACTIONS(5899), - [anon_sym_GT_EQ] = ACTIONS(5899), - [anon_sym_LT_EQ] = ACTIONS(5899), - [anon_sym_DOT] = ACTIONS(5901), - [anon_sym_EQ_GT] = ACTIONS(5899), - [anon_sym_switch] = ACTIONS(5899), - [anon_sym_when] = ACTIONS(5899), - [anon_sym_DOT_DOT] = ACTIONS(5899), - [anon_sym_and] = ACTIONS(5899), - [anon_sym_or] = ACTIONS(5899), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(5899), - [sym_op_coalescing] = ACTIONS(5899), - [anon_sym_into] = ACTIONS(5899), - [anon_sym_on] = ACTIONS(5899), - [anon_sym_equals] = ACTIONS(5899), - [anon_sym_by] = ACTIONS(5899), - [anon_sym_as] = ACTIONS(5899), - [anon_sym_is] = ACTIONS(5899), - [anon_sym_DASH_GT] = ACTIONS(5899), - [anon_sym_with] = ACTIONS(5899), - [sym_string_literal_encoding] = ACTIONS(6938), - [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), - }, - [4659] = { - [sym_preproc_region] = STATE(4659), - [sym_preproc_endregion] = STATE(4659), - [sym_preproc_line] = STATE(4659), - [sym_preproc_pragma] = STATE(4659), - [sym_preproc_nullable] = STATE(4659), - [sym_preproc_error] = STATE(4659), - [sym_preproc_warning] = STATE(4659), - [sym_preproc_define] = STATE(4659), - [sym_preproc_undef] = STATE(4659), [anon_sym_EQ] = ACTIONS(3991), [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4006), + [anon_sym_COLON] = ACTIONS(5070), [anon_sym_LPAREN] = ACTIONS(4006), [anon_sym_LT] = ACTIONS(3991), [anon_sym_GT] = ACTIONS(3991), [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(3991), + [anon_sym_STAR] = ACTIONS(3991), [anon_sym_switch] = ACTIONS(4006), + [anon_sym_when] = ACTIONS(5068), [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(4006), - [anon_sym_or] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4006), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5068), [anon_sym_PLUS_EQ] = ACTIONS(4006), [anon_sym_DASH_EQ] = ACTIONS(4006), [anon_sym_STAR_EQ] = ACTIONS(4006), @@ -614381,10 +606472,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(4006), [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), + [anon_sym_EQ_EQ] = ACTIONS(4006), + [anon_sym_BANG_EQ] = ACTIONS(4006), [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(3991), + [sym_op_bitwise_or] = ACTIONS(3991), + [anon_sym_CARET] = ACTIONS(3991), + [sym_op_left_shift] = ACTIONS(3991), + [sym_op_right_shift] = ACTIONS(3991), + [sym_op_unsigned_right_shift] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [sym_op_divide] = ACTIONS(3991), + [sym_op_modulo] = ACTIONS(3991), [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_into] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4006), [anon_sym_as] = ACTIONS(4006), [anon_sym_is] = ACTIONS(4006), [anon_sym_DASH_GT] = ACTIONS(4006), @@ -614399,10 +606504,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4006), + }, + [4659] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), + [sym_preproc_region] = STATE(4659), + [sym_preproc_endregion] = STATE(4659), + [sym_preproc_line] = STATE(4659), + [sym_preproc_pragma] = STATE(4659), + [sym_preproc_nullable] = STATE(4659), + [sym_preproc_error] = STATE(4659), + [sym_preproc_warning] = STATE(4659), + [sym_preproc_define] = STATE(4659), + [sym_preproc_undef] = STATE(4659), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5306), + [anon_sym_QMARK] = ACTIONS(7192), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7186), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(7190), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7184), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [4660] = { - [sym_type_argument_list] = STATE(4782), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4660), [sym_preproc_endregion] = STATE(4660), [sym_preproc_line] = STATE(4660), @@ -614412,57 +606601,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4660), [sym_preproc_define] = STATE(4660), [sym_preproc_undef] = STATE(4660), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(6940), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_COLON_COLON] = ACTIONS(6943), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_when] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_equals] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -614475,6 +606648,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4661] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4661), [sym_preproc_endregion] = STATE(4661), [sym_preproc_line] = STATE(4661), @@ -614484,58 +606672,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4661), [sym_preproc_define] = STATE(4661), [sym_preproc_undef] = STATE(4661), - [anon_sym_SEMI] = ACTIONS(5925), - [anon_sym_LBRACK] = ACTIONS(5925), - [anon_sym_COLON] = ACTIONS(5925), - [anon_sym_COMMA] = ACTIONS(5925), - [anon_sym_RBRACK] = ACTIONS(5925), - [anon_sym_LPAREN] = ACTIONS(5925), - [anon_sym_RPAREN] = ACTIONS(5925), - [anon_sym_RBRACE] = ACTIONS(5925), - [anon_sym_LT] = ACTIONS(5927), - [anon_sym_GT] = ACTIONS(5927), - [anon_sym_in] = ACTIONS(5927), - [anon_sym_QMARK] = ACTIONS(5927), - [anon_sym_BANG] = ACTIONS(5927), - [anon_sym_PLUS_PLUS] = ACTIONS(5925), - [anon_sym_DASH_DASH] = ACTIONS(5925), - [anon_sym_PLUS] = ACTIONS(5927), - [anon_sym_DASH] = ACTIONS(5927), - [anon_sym_STAR] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5927), - [anon_sym_PERCENT] = ACTIONS(5925), - [anon_sym_CARET] = ACTIONS(5925), - [anon_sym_PIPE] = ACTIONS(5927), - [anon_sym_AMP] = ACTIONS(5927), - [anon_sym_LT_LT] = ACTIONS(5925), - [anon_sym_GT_GT] = ACTIONS(5927), - [anon_sym_GT_GT_GT] = ACTIONS(5925), - [anon_sym_EQ_EQ] = ACTIONS(5925), - [anon_sym_BANG_EQ] = ACTIONS(5925), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(5927), - [anon_sym_EQ_GT] = ACTIONS(5925), - [anon_sym_switch] = ACTIONS(5925), - [anon_sym_when] = ACTIONS(5925), - [anon_sym_DOT_DOT] = ACTIONS(5925), - [anon_sym_and] = ACTIONS(5925), - [anon_sym_or] = ACTIONS(5925), - [anon_sym_AMP_AMP] = ACTIONS(5925), - [anon_sym_PIPE_PIPE] = ACTIONS(5925), - [sym_op_coalescing] = ACTIONS(5925), - [anon_sym_into] = ACTIONS(5925), - [anon_sym_on] = ACTIONS(5925), - [anon_sym_equals] = ACTIONS(5925), - [anon_sym_by] = ACTIONS(5925), - [anon_sym_as] = ACTIONS(5925), - [anon_sym_is] = ACTIONS(5925), - [anon_sym_DASH_GT] = ACTIONS(5925), - [anon_sym_with] = ACTIONS(5925), - [sym_string_literal_encoding] = ACTIONS(6945), - [aux_sym_preproc_if_token3] = ACTIONS(5925), - [aux_sym_preproc_else_token1] = ACTIONS(5925), - [aux_sym_preproc_elif_token1] = ACTIONS(5925), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7216), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7218), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(7228), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_equals] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(7230), + [anon_sym_is] = ACTIONS(7232), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -614548,6 +606719,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4662] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4662), [sym_preproc_endregion] = STATE(4662), [sym_preproc_line] = STATE(4662), @@ -614557,58 +606743,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4662), [sym_preproc_define] = STATE(4662), [sym_preproc_undef] = STATE(4662), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_EQ_GT] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3189), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = ACTIONS(3189), - [anon_sym_on] = ACTIONS(3189), - [anon_sym_equals] = ACTIONS(3189), - [anon_sym_by] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3189), - [aux_sym_preproc_if_token3] = ACTIONS(3189), - [aux_sym_preproc_else_token1] = ACTIONS(3189), - [aux_sym_preproc_elif_token1] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -614621,6 +606790,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4663] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4663), [sym_preproc_endregion] = STATE(4663), [sym_preproc_line] = STATE(4663), @@ -614630,58 +606814,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4663), [sym_preproc_define] = STATE(4663), [sym_preproc_undef] = STATE(4663), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3696), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_when] = ACTIONS(3696), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3696), - [anon_sym_or] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_on] = ACTIONS(3696), - [anon_sym_equals] = ACTIONS(3696), - [anon_sym_by] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3696), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7230), + [anon_sym_is] = ACTIONS(7232), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -614694,6 +606861,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4664] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4664), [sym_preproc_endregion] = STATE(4664), [sym_preproc_line] = STATE(4664), @@ -614703,57 +606885,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4664), [sym_preproc_define] = STATE(4664), [sym_preproc_undef] = STATE(4664), - [anon_sym_EQ] = ACTIONS(4552), - [anon_sym_LBRACK] = ACTIONS(4550), - [anon_sym_COLON] = ACTIONS(4550), - [anon_sym_COMMA] = ACTIONS(4550), - [anon_sym_LPAREN] = ACTIONS(4550), - [anon_sym_LT] = ACTIONS(4552), - [anon_sym_GT] = ACTIONS(4552), - [anon_sym_QMARK] = ACTIONS(4552), - [anon_sym_BANG] = ACTIONS(4552), - [anon_sym_PLUS_PLUS] = ACTIONS(4550), - [anon_sym_DASH_DASH] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4552), - [anon_sym_SLASH] = ACTIONS(4552), - [anon_sym_PERCENT] = ACTIONS(4552), - [anon_sym_CARET] = ACTIONS(4552), - [anon_sym_PIPE] = ACTIONS(4552), - [anon_sym_AMP] = ACTIONS(4552), - [anon_sym_LT_LT] = ACTIONS(4552), - [anon_sym_GT_GT] = ACTIONS(4552), - [anon_sym_GT_GT_GT] = ACTIONS(4552), - [anon_sym_EQ_EQ] = ACTIONS(4550), - [anon_sym_BANG_EQ] = ACTIONS(4550), - [anon_sym_GT_EQ] = ACTIONS(4550), - [anon_sym_LT_EQ] = ACTIONS(4550), - [anon_sym_DOT] = ACTIONS(4552), - [anon_sym_switch] = ACTIONS(4550), - [anon_sym_DOT_DOT] = ACTIONS(4550), - [anon_sym_and] = ACTIONS(4550), - [anon_sym_or] = ACTIONS(4550), - [anon_sym_PLUS_EQ] = ACTIONS(4550), - [anon_sym_DASH_EQ] = ACTIONS(4550), - [anon_sym_STAR_EQ] = ACTIONS(4550), - [anon_sym_SLASH_EQ] = ACTIONS(4550), - [anon_sym_PERCENT_EQ] = ACTIONS(4550), - [anon_sym_AMP_EQ] = ACTIONS(4550), - [anon_sym_CARET_EQ] = ACTIONS(4550), - [anon_sym_PIPE_EQ] = ACTIONS(4550), - [anon_sym_LT_LT_EQ] = ACTIONS(4550), - [anon_sym_GT_GT_EQ] = ACTIONS(4550), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4550), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4550), - [anon_sym_AMP_AMP] = ACTIONS(4550), - [anon_sym_PIPE_PIPE] = ACTIONS(4550), - [sym_op_coalescing] = ACTIONS(4552), - [anon_sym_into] = ACTIONS(4550), - [anon_sym_as] = ACTIONS(4550), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_DASH_GT] = ACTIONS(4550), - [anon_sym_with] = ACTIONS(4550), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7216), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7218), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(7228), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_equals] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(7230), + [anon_sym_is] = ACTIONS(7232), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -614764,9 +606930,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4550), }, [4665] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4665), [sym_preproc_endregion] = STATE(4665), [sym_preproc_line] = STATE(4665), @@ -614776,57 +606956,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4665), [sym_preproc_define] = STATE(4665), [sym_preproc_undef] = STATE(4665), - [anon_sym_EQ] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4524), - [anon_sym_COLON] = ACTIONS(4524), - [anon_sym_COMMA] = ACTIONS(4524), - [anon_sym_LPAREN] = ACTIONS(4524), - [anon_sym_LT] = ACTIONS(4530), - [anon_sym_GT] = ACTIONS(4530), - [anon_sym_QMARK] = ACTIONS(4530), - [anon_sym_BANG] = ACTIONS(4530), - [anon_sym_PLUS_PLUS] = ACTIONS(4524), - [anon_sym_DASH_DASH] = ACTIONS(4524), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4530), - [anon_sym_SLASH] = ACTIONS(4530), - [anon_sym_PERCENT] = ACTIONS(4530), - [anon_sym_CARET] = ACTIONS(4530), - [anon_sym_PIPE] = ACTIONS(4530), - [anon_sym_AMP] = ACTIONS(4530), - [anon_sym_LT_LT] = ACTIONS(4530), - [anon_sym_GT_GT] = ACTIONS(4530), - [anon_sym_GT_GT_GT] = ACTIONS(4530), - [anon_sym_EQ_EQ] = ACTIONS(4524), - [anon_sym_BANG_EQ] = ACTIONS(4524), - [anon_sym_GT_EQ] = ACTIONS(4524), - [anon_sym_LT_EQ] = ACTIONS(4524), - [anon_sym_DOT] = ACTIONS(4530), - [anon_sym_switch] = ACTIONS(4524), - [anon_sym_DOT_DOT] = ACTIONS(4524), - [anon_sym_and] = ACTIONS(4524), - [anon_sym_or] = ACTIONS(4524), - [anon_sym_PLUS_EQ] = ACTIONS(4528), - [anon_sym_DASH_EQ] = ACTIONS(4528), - [anon_sym_STAR_EQ] = ACTIONS(4528), - [anon_sym_SLASH_EQ] = ACTIONS(4528), - [anon_sym_PERCENT_EQ] = ACTIONS(4528), - [anon_sym_AMP_EQ] = ACTIONS(4528), - [anon_sym_CARET_EQ] = ACTIONS(4528), - [anon_sym_PIPE_EQ] = ACTIONS(4528), - [anon_sym_LT_LT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4524), - [anon_sym_PIPE_PIPE] = ACTIONS(4524), - [sym_op_coalescing] = ACTIONS(4530), - [anon_sym_into] = ACTIONS(4524), - [anon_sym_as] = ACTIONS(4524), - [anon_sym_is] = ACTIONS(4524), - [anon_sym_DASH_GT] = ACTIONS(4524), - [anon_sym_with] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7230), + [anon_sym_is] = ACTIONS(7232), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -614837,7 +607001,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(4524), }, [4666] = { [sym_preproc_region] = STATE(4666), @@ -614849,57 +607012,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4666), [sym_preproc_define] = STATE(4666), [sym_preproc_undef] = STATE(4666), - [anon_sym_EQ] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4528), - [anon_sym_COLON] = ACTIONS(4528), - [anon_sym_COMMA] = ACTIONS(4528), - [anon_sym_LPAREN] = ACTIONS(4528), - [anon_sym_LT] = ACTIONS(4526), - [anon_sym_GT] = ACTIONS(4526), - [anon_sym_QMARK] = ACTIONS(4526), - [anon_sym_BANG] = ACTIONS(4526), - [anon_sym_PLUS_PLUS] = ACTIONS(4528), - [anon_sym_DASH_DASH] = ACTIONS(4528), - [anon_sym_PLUS] = ACTIONS(4526), - [anon_sym_DASH] = ACTIONS(4526), - [anon_sym_STAR] = ACTIONS(4526), - [anon_sym_SLASH] = ACTIONS(4526), - [anon_sym_PERCENT] = ACTIONS(4526), - [anon_sym_CARET] = ACTIONS(4526), - [anon_sym_PIPE] = ACTIONS(4526), - [anon_sym_AMP] = ACTIONS(4526), - [anon_sym_LT_LT] = ACTIONS(4526), - [anon_sym_GT_GT] = ACTIONS(4526), - [anon_sym_GT_GT_GT] = ACTIONS(4526), - [anon_sym_EQ_EQ] = ACTIONS(4528), - [anon_sym_BANG_EQ] = ACTIONS(4528), - [anon_sym_GT_EQ] = ACTIONS(4528), - [anon_sym_LT_EQ] = ACTIONS(4528), - [anon_sym_DOT] = ACTIONS(4526), - [anon_sym_switch] = ACTIONS(4528), - [anon_sym_DOT_DOT] = ACTIONS(4528), - [anon_sym_and] = ACTIONS(4528), - [anon_sym_or] = ACTIONS(4528), - [anon_sym_PLUS_EQ] = ACTIONS(4528), - [anon_sym_DASH_EQ] = ACTIONS(4528), - [anon_sym_STAR_EQ] = ACTIONS(4528), - [anon_sym_SLASH_EQ] = ACTIONS(4528), - [anon_sym_PERCENT_EQ] = ACTIONS(4528), - [anon_sym_AMP_EQ] = ACTIONS(4528), - [anon_sym_CARET_EQ] = ACTIONS(4528), - [anon_sym_PIPE_EQ] = ACTIONS(4528), - [anon_sym_LT_LT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4528), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4528), - [anon_sym_PIPE_PIPE] = ACTIONS(4528), - [sym_op_coalescing] = ACTIONS(4526), - [anon_sym_into] = ACTIONS(4528), - [anon_sym_as] = ACTIONS(4528), - [anon_sym_is] = ACTIONS(4528), - [anon_sym_DASH_GT] = ACTIONS(4528), - [anon_sym_with] = ACTIONS(4528), + [anon_sym_SEMI] = ACTIONS(5761), + [anon_sym_LBRACK] = ACTIONS(5761), + [anon_sym_COLON] = ACTIONS(5761), + [anon_sym_COMMA] = ACTIONS(5761), + [anon_sym_RBRACK] = ACTIONS(5761), + [anon_sym_LPAREN] = ACTIONS(5761), + [anon_sym_RPAREN] = ACTIONS(5761), + [anon_sym_RBRACE] = ACTIONS(5761), + [anon_sym_LT] = ACTIONS(5763), + [anon_sym_GT] = ACTIONS(5763), + [anon_sym_in] = ACTIONS(5761), + [anon_sym_QMARK] = ACTIONS(5763), + [anon_sym_DOT] = ACTIONS(5763), + [anon_sym_EQ_GT] = ACTIONS(5761), + [anon_sym_STAR] = ACTIONS(5761), + [anon_sym_switch] = ACTIONS(5761), + [anon_sym_when] = ACTIONS(5761), + [anon_sym_DOT_DOT] = ACTIONS(5761), + [anon_sym_LT_EQ] = ACTIONS(5761), + [anon_sym_GT_EQ] = ACTIONS(5761), + [anon_sym_and] = ACTIONS(5761), + [anon_sym_or] = ACTIONS(5761), + [anon_sym_EQ_EQ] = ACTIONS(5761), + [anon_sym_BANG_EQ] = ACTIONS(5761), + [anon_sym_AMP_AMP] = ACTIONS(5761), + [anon_sym_PIPE_PIPE] = ACTIONS(5761), + [anon_sym_AMP] = ACTIONS(5763), + [sym_op_bitwise_or] = ACTIONS(5763), + [anon_sym_CARET] = ACTIONS(5761), + [sym_op_left_shift] = ACTIONS(5761), + [sym_op_right_shift] = ACTIONS(5763), + [sym_op_unsigned_right_shift] = ACTIONS(5761), + [anon_sym_PLUS] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5763), + [sym_op_divide] = ACTIONS(5763), + [sym_op_modulo] = ACTIONS(5761), + [sym_op_coalescing] = ACTIONS(5761), + [anon_sym_BANG] = ACTIONS(5763), + [anon_sym_PLUS_PLUS] = ACTIONS(5761), + [anon_sym_DASH_DASH] = ACTIONS(5761), + [anon_sym_on] = ACTIONS(5761), + [anon_sym_equals] = ACTIONS(5761), + [anon_sym_by] = ACTIONS(5761), + [anon_sym_as] = ACTIONS(5761), + [anon_sym_is] = ACTIONS(5761), + [anon_sym_DASH_GT] = ACTIONS(5761), + [anon_sym_with] = ACTIONS(5761), + [aux_sym_preproc_if_token3] = ACTIONS(5761), + [aux_sym_preproc_else_token1] = ACTIONS(5761), + [aux_sym_preproc_elif_token1] = ACTIONS(5761), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -614910,9 +607072,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4528), }, [4667] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4667), [sym_preproc_endregion] = STATE(4667), [sym_preproc_line] = STATE(4667), @@ -614922,57 +607098,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4667), [sym_preproc_define] = STATE(4667), [sym_preproc_undef] = STATE(4667), - [anon_sym_EQ] = ACTIONS(4548), - [anon_sym_LBRACK] = ACTIONS(4546), - [anon_sym_COLON] = ACTIONS(4546), - [anon_sym_COMMA] = ACTIONS(4546), - [anon_sym_LPAREN] = ACTIONS(4546), - [anon_sym_LT] = ACTIONS(4548), - [anon_sym_GT] = ACTIONS(4548), - [anon_sym_QMARK] = ACTIONS(4548), - [anon_sym_BANG] = ACTIONS(4548), - [anon_sym_PLUS_PLUS] = ACTIONS(4546), - [anon_sym_DASH_DASH] = ACTIONS(4546), - [anon_sym_PLUS] = ACTIONS(4548), - [anon_sym_DASH] = ACTIONS(4548), - [anon_sym_STAR] = ACTIONS(4548), - [anon_sym_SLASH] = ACTIONS(4548), - [anon_sym_PERCENT] = ACTIONS(4548), - [anon_sym_CARET] = ACTIONS(4548), - [anon_sym_PIPE] = ACTIONS(4548), - [anon_sym_AMP] = ACTIONS(4548), - [anon_sym_LT_LT] = ACTIONS(4548), - [anon_sym_GT_GT] = ACTIONS(4548), - [anon_sym_GT_GT_GT] = ACTIONS(4548), - [anon_sym_EQ_EQ] = ACTIONS(4546), - [anon_sym_BANG_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_DOT] = ACTIONS(4548), - [anon_sym_switch] = ACTIONS(4546), - [anon_sym_DOT_DOT] = ACTIONS(4546), - [anon_sym_and] = ACTIONS(4546), - [anon_sym_or] = ACTIONS(4546), - [anon_sym_PLUS_EQ] = ACTIONS(4546), - [anon_sym_DASH_EQ] = ACTIONS(4546), - [anon_sym_STAR_EQ] = ACTIONS(4546), - [anon_sym_SLASH_EQ] = ACTIONS(4546), - [anon_sym_PERCENT_EQ] = ACTIONS(4546), - [anon_sym_AMP_EQ] = ACTIONS(4546), - [anon_sym_CARET_EQ] = ACTIONS(4546), - [anon_sym_PIPE_EQ] = ACTIONS(4546), - [anon_sym_LT_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_GT_EQ] = ACTIONS(4546), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4546), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4546), - [anon_sym_AMP_AMP] = ACTIONS(4546), - [anon_sym_PIPE_PIPE] = ACTIONS(4546), - [sym_op_coalescing] = ACTIONS(4548), - [anon_sym_into] = ACTIONS(4546), - [anon_sym_as] = ACTIONS(4546), - [anon_sym_is] = ACTIONS(4546), - [anon_sym_DASH_GT] = ACTIONS(4546), - [anon_sym_with] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7218), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7230), + [anon_sym_is] = ACTIONS(7232), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -614983,9 +607143,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4546), }, [4668] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4668), [sym_preproc_endregion] = STATE(4668), [sym_preproc_line] = STATE(4668), @@ -614995,58 +607169,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4668), [sym_preproc_define] = STATE(4668), [sym_preproc_undef] = STATE(4668), - [anon_sym_SEMI] = ACTIONS(5684), - [anon_sym_EQ] = ACTIONS(6947), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(6949), - [anon_sym_DASH_EQ] = ACTIONS(6949), - [anon_sym_STAR_EQ] = ACTIONS(6949), - [anon_sym_SLASH_EQ] = ACTIONS(6949), - [anon_sym_PERCENT_EQ] = ACTIONS(6949), - [anon_sym_AMP_EQ] = ACTIONS(6949), - [anon_sym_CARET_EQ] = ACTIONS(6949), - [anon_sym_PIPE_EQ] = ACTIONS(6949), - [anon_sym_LT_LT_EQ] = ACTIONS(6949), - [anon_sym_GT_GT_EQ] = ACTIONS(6949), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6949), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6949), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_if_token3] = ACTIONS(5684), - [aux_sym_preproc_else_token1] = ACTIONS(5684), - [aux_sym_preproc_elif_token1] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7216), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7218), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(7228), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_equals] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(7230), + [anon_sym_is] = ACTIONS(7232), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -615059,6 +607216,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4669] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4669), [sym_preproc_endregion] = STATE(4669), [sym_preproc_line] = STATE(4669), @@ -615068,58 +607240,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4669), [sym_preproc_define] = STATE(4669), [sym_preproc_undef] = STATE(4669), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym_LBRACK] = ACTIONS(3912), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_RBRACK] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_RPAREN] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3912), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3912), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3912), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3912), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_GT_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3912), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3912), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3912), - [anon_sym_when] = ACTIONS(3912), - [anon_sym_DOT_DOT] = ACTIONS(3912), - [anon_sym_and] = ACTIONS(3912), - [anon_sym_or] = ACTIONS(3912), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_PIPE_PIPE] = ACTIONS(3912), - [sym_op_coalescing] = ACTIONS(3912), - [anon_sym_on] = ACTIONS(3912), - [anon_sym_equals] = ACTIONS(3912), - [anon_sym_by] = ACTIONS(3912), - [anon_sym_as] = ACTIONS(3912), - [anon_sym_is] = ACTIONS(3912), - [anon_sym_DASH_GT] = ACTIONS(3912), - [anon_sym_with] = ACTIONS(3912), - [aux_sym_preproc_if_token3] = ACTIONS(3912), - [aux_sym_preproc_else_token1] = ACTIONS(3912), - [aux_sym_preproc_elif_token1] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7218), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7230), + [anon_sym_is] = ACTIONS(7232), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -615141,58 +607296,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4670), [sym_preproc_define] = STATE(4670), [sym_preproc_undef] = STATE(4670), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_EQ_GT] = ACTIONS(3189), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = ACTIONS(3189), - [anon_sym_into] = ACTIONS(3189), - [anon_sym_on] = ACTIONS(3189), - [anon_sym_equals] = ACTIONS(3189), - [anon_sym_by] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3189), - [aux_sym_preproc_if_token3] = ACTIONS(3189), - [aux_sym_preproc_else_token1] = ACTIONS(3189), - [aux_sym_preproc_elif_token1] = ACTIONS(3189), + [sym__identifier_token] = ACTIONS(4084), + [anon_sym_extern] = ACTIONS(4084), + [anon_sym_alias] = ACTIONS(4084), + [anon_sym_global] = ACTIONS(4084), + [anon_sym_unsafe] = ACTIONS(4084), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_public] = ACTIONS(4084), + [anon_sym_private] = ACTIONS(4084), + [anon_sym_readonly] = ACTIONS(4084), + [anon_sym_abstract] = ACTIONS(4084), + [anon_sym_async] = ACTIONS(4084), + [anon_sym_const] = ACTIONS(4084), + [anon_sym_file] = ACTIONS(4084), + [anon_sym_fixed] = ACTIONS(4084), + [anon_sym_internal] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(4084), + [anon_sym_override] = ACTIONS(4084), + [anon_sym_partial] = ACTIONS(4084), + [anon_sym_protected] = ACTIONS(4084), + [anon_sym_required] = ACTIONS(4084), + [anon_sym_sealed] = ACTIONS(4084), + [anon_sym_virtual] = ACTIONS(4084), + [anon_sym_volatile] = ACTIONS(4084), + [anon_sym_where] = ACTIONS(4084), + [anon_sym_notnull] = ACTIONS(4084), + [anon_sym_unmanaged] = ACTIONS(4084), + [sym_accessor_get] = ACTIONS(4084), + [sym_accessor_set] = ACTIONS(4084), + [sym_accessor_add] = ACTIONS(4084), + [sym_accessor_remove] = ACTIONS(4084), + [sym_accessor_init] = ACTIONS(4084), + [anon_sym_scoped] = ACTIONS(4084), + [anon_sym_var] = ACTIONS(4084), + [anon_sym_yield] = ACTIONS(4084), + [anon_sym_when] = 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_ascending] = ACTIONS(4084), + [anon_sym_descending] = ACTIONS(4084), + [anon_sym_group] = ACTIONS(4084), + [anon_sym_by] = ACTIONS(4084), + [anon_sym_select] = ACTIONS(4084), + [sym_grit_metavariable] = ACTIONS(4086), + [aux_sym_preproc_if_token1] = ACTIONS(4086), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -615214,58 +607367,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4671), [sym_preproc_define] = STATE(4671), [sym_preproc_undef] = STATE(4671), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_when] = ACTIONS(3696), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3696), - [anon_sym_or] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3696), - [anon_sym_into] = ACTIONS(3696), - [anon_sym_on] = ACTIONS(3696), - [anon_sym_equals] = ACTIONS(3696), - [anon_sym_by] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3696), - [aux_sym_preproc_if_token3] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(7234), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_EQ_GT] = ACTIONS(5508), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_when] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7236), + [anon_sym_DASH_EQ] = ACTIONS(7236), + [anon_sym_STAR_EQ] = ACTIONS(7236), + [anon_sym_SLASH_EQ] = ACTIONS(7236), + [anon_sym_PERCENT_EQ] = ACTIONS(7236), + [anon_sym_AMP_EQ] = ACTIONS(7236), + [anon_sym_CARET_EQ] = ACTIONS(7236), + [anon_sym_PIPE_EQ] = ACTIONS(7236), + [anon_sym_LT_LT_EQ] = ACTIONS(7236), + [anon_sym_GT_GT_EQ] = ACTIONS(7236), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7236), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7236), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -615287,58 +607438,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4672), [sym_preproc_define] = STATE(4672), [sym_preproc_undef] = STATE(4672), - [anon_sym_SEMI] = ACTIONS(5931), - [anon_sym_LBRACK] = ACTIONS(5931), - [anon_sym_COLON] = ACTIONS(5931), - [anon_sym_COMMA] = ACTIONS(5931), - [anon_sym_RBRACK] = ACTIONS(5931), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_RPAREN] = ACTIONS(5931), - [anon_sym_LBRACE] = ACTIONS(5931), - [anon_sym_RBRACE] = ACTIONS(5931), - [anon_sym_LT] = ACTIONS(5933), - [anon_sym_GT] = ACTIONS(5933), - [anon_sym_in] = ACTIONS(5933), - [anon_sym_QMARK] = ACTIONS(5933), - [anon_sym_BANG] = ACTIONS(5933), - [anon_sym_PLUS_PLUS] = ACTIONS(5931), - [anon_sym_DASH_DASH] = ACTIONS(5931), - [anon_sym_PLUS] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5933), - [anon_sym_STAR] = ACTIONS(5931), - [anon_sym_SLASH] = ACTIONS(5933), - [anon_sym_PERCENT] = ACTIONS(5931), - [anon_sym_CARET] = ACTIONS(5931), - [anon_sym_PIPE] = ACTIONS(5933), - [anon_sym_AMP] = ACTIONS(5933), - [anon_sym_LT_LT] = ACTIONS(5931), - [anon_sym_GT_GT] = ACTIONS(5933), - [anon_sym_GT_GT_GT] = ACTIONS(5931), - [anon_sym_EQ_EQ] = ACTIONS(5931), - [anon_sym_BANG_EQ] = ACTIONS(5931), - [anon_sym_GT_EQ] = ACTIONS(5931), - [anon_sym_LT_EQ] = ACTIONS(5931), - [anon_sym_DOT] = ACTIONS(5933), - [anon_sym_EQ_GT] = ACTIONS(5931), - [anon_sym_switch] = ACTIONS(5931), - [anon_sym_when] = ACTIONS(5931), - [anon_sym_DOT_DOT] = ACTIONS(5931), - [anon_sym_and] = ACTIONS(5931), - [anon_sym_or] = ACTIONS(5931), - [anon_sym_AMP_AMP] = ACTIONS(5931), - [anon_sym_PIPE_PIPE] = ACTIONS(5931), - [sym_op_coalescing] = ACTIONS(5931), - [anon_sym_into] = ACTIONS(5931), - [anon_sym_on] = ACTIONS(5931), - [anon_sym_equals] = ACTIONS(5931), - [anon_sym_by] = ACTIONS(5931), - [anon_sym_as] = ACTIONS(5931), - [anon_sym_is] = ACTIONS(5931), - [anon_sym_DASH_GT] = ACTIONS(5931), - [anon_sym_with] = ACTIONS(5931), - [aux_sym_preproc_if_token3] = ACTIONS(5931), - [aux_sym_preproc_else_token1] = ACTIONS(5931), - [aux_sym_preproc_elif_token1] = ACTIONS(5931), + [sym__identifier_token] = ACTIONS(5428), + [anon_sym_extern] = ACTIONS(5428), + [anon_sym_alias] = ACTIONS(5428), + [anon_sym_global] = ACTIONS(5428), + [anon_sym_unsafe] = ACTIONS(5428), + [anon_sym_static] = ACTIONS(5428), + [anon_sym_LBRACK] = ACTIONS(5430), + [anon_sym_public] = ACTIONS(5428), + [anon_sym_private] = ACTIONS(5428), + [anon_sym_readonly] = ACTIONS(5428), + [anon_sym_abstract] = ACTIONS(5428), + [anon_sym_async] = ACTIONS(5428), + [anon_sym_const] = ACTIONS(5428), + [anon_sym_file] = ACTIONS(5428), + [anon_sym_fixed] = ACTIONS(5428), + [anon_sym_internal] = ACTIONS(5428), + [anon_sym_new] = ACTIONS(5428), + [anon_sym_override] = ACTIONS(5428), + [anon_sym_partial] = ACTIONS(5428), + [anon_sym_protected] = ACTIONS(5428), + [anon_sym_required] = ACTIONS(5428), + [anon_sym_sealed] = ACTIONS(5428), + [anon_sym_virtual] = ACTIONS(5428), + [anon_sym_volatile] = ACTIONS(5428), + [anon_sym_where] = ACTIONS(5428), + [anon_sym_notnull] = ACTIONS(5428), + [anon_sym_unmanaged] = ACTIONS(5428), + [sym_accessor_get] = ACTIONS(5428), + [sym_accessor_set] = ACTIONS(5428), + [sym_accessor_add] = ACTIONS(5428), + [sym_accessor_remove] = ACTIONS(5428), + [sym_accessor_init] = ACTIONS(5428), + [anon_sym_scoped] = ACTIONS(5428), + [anon_sym_var] = ACTIONS(5428), + [anon_sym_yield] = ACTIONS(5428), + [anon_sym_when] = ACTIONS(5428), + [anon_sym_from] = ACTIONS(5428), + [anon_sym_into] = ACTIONS(5428), + [anon_sym_join] = ACTIONS(5428), + [anon_sym_on] = ACTIONS(5428), + [anon_sym_equals] = ACTIONS(5428), + [anon_sym_let] = ACTIONS(5428), + [anon_sym_orderby] = ACTIONS(5428), + [anon_sym_ascending] = ACTIONS(5428), + [anon_sym_descending] = ACTIONS(5428), + [anon_sym_group] = ACTIONS(5428), + [anon_sym_by] = ACTIONS(5428), + [anon_sym_select] = ACTIONS(5428), + [sym_grit_metavariable] = ACTIONS(5430), + [aux_sym_preproc_if_token1] = ACTIONS(5430), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -615351,6 +607500,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4673] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4673), [sym_preproc_endregion] = STATE(4673), [sym_preproc_line] = STATE(4673), @@ -615360,57 +607524,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4673), [sym_preproc_define] = STATE(4673), [sym_preproc_undef] = STATE(4673), - [anon_sym_EQ] = ACTIONS(4544), - [anon_sym_LBRACK] = ACTIONS(4542), - [anon_sym_COLON] = ACTIONS(4542), - [anon_sym_COMMA] = ACTIONS(4542), - [anon_sym_LPAREN] = ACTIONS(4542), - [anon_sym_LT] = ACTIONS(4544), - [anon_sym_GT] = ACTIONS(4544), - [anon_sym_QMARK] = ACTIONS(4544), - [anon_sym_BANG] = ACTIONS(4544), - [anon_sym_PLUS_PLUS] = ACTIONS(4542), - [anon_sym_DASH_DASH] = ACTIONS(4542), - [anon_sym_PLUS] = ACTIONS(4544), - [anon_sym_DASH] = ACTIONS(4544), - [anon_sym_STAR] = ACTIONS(4544), - [anon_sym_SLASH] = ACTIONS(4544), - [anon_sym_PERCENT] = ACTIONS(4544), - [anon_sym_CARET] = ACTIONS(4544), - [anon_sym_PIPE] = ACTIONS(4544), - [anon_sym_AMP] = ACTIONS(4544), - [anon_sym_LT_LT] = ACTIONS(4544), - [anon_sym_GT_GT] = ACTIONS(4544), - [anon_sym_GT_GT_GT] = ACTIONS(4544), - [anon_sym_EQ_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_GT_EQ] = ACTIONS(4542), - [anon_sym_LT_EQ] = ACTIONS(4542), - [anon_sym_DOT] = ACTIONS(4544), - [anon_sym_switch] = ACTIONS(4542), - [anon_sym_DOT_DOT] = ACTIONS(4542), - [anon_sym_and] = ACTIONS(4542), - [anon_sym_or] = ACTIONS(4542), - [anon_sym_PLUS_EQ] = ACTIONS(4542), - [anon_sym_DASH_EQ] = ACTIONS(4542), - [anon_sym_STAR_EQ] = ACTIONS(4542), - [anon_sym_SLASH_EQ] = ACTIONS(4542), - [anon_sym_PERCENT_EQ] = ACTIONS(4542), - [anon_sym_AMP_EQ] = ACTIONS(4542), - [anon_sym_CARET_EQ] = ACTIONS(4542), - [anon_sym_PIPE_EQ] = ACTIONS(4542), - [anon_sym_LT_LT_EQ] = ACTIONS(4542), - [anon_sym_GT_GT_EQ] = ACTIONS(4542), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4542), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4542), - [anon_sym_AMP_AMP] = ACTIONS(4542), - [anon_sym_PIPE_PIPE] = ACTIONS(4542), - [sym_op_coalescing] = ACTIONS(4544), - [anon_sym_into] = ACTIONS(4542), - [anon_sym_as] = ACTIONS(4542), - [anon_sym_is] = ACTIONS(4542), - [anon_sym_DASH_GT] = ACTIONS(4542), - [anon_sym_with] = ACTIONS(4542), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7230), + [anon_sym_is] = ACTIONS(7232), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -615421,7 +607569,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(4542), }, [4674] = { [sym_preproc_region] = STATE(4674), @@ -615433,57 +607580,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4674), [sym_preproc_define] = STATE(4674), [sym_preproc_undef] = STATE(4674), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_QMARK] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4012), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4012), - [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(4012), - [anon_sym_switch] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4010), - [anon_sym_or] = ACTIONS(4010), - [anon_sym_PLUS_EQ] = ACTIONS(4010), - [anon_sym_DASH_EQ] = ACTIONS(4010), - [anon_sym_STAR_EQ] = ACTIONS(4010), - [anon_sym_SLASH_EQ] = ACTIONS(4010), - [anon_sym_PERCENT_EQ] = ACTIONS(4010), - [anon_sym_AMP_EQ] = ACTIONS(4010), - [anon_sym_CARET_EQ] = ACTIONS(4010), - [anon_sym_PIPE_EQ] = ACTIONS(4010), - [anon_sym_LT_LT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4010), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [sym_op_coalescing] = ACTIONS(4012), - [anon_sym_into] = ACTIONS(4010), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4010), - [anon_sym_with] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(5813), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_COLON] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_LPAREN] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [anon_sym_RBRACE] = ACTIONS(5813), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_in] = ACTIONS(5813), + [anon_sym_QMARK] = ACTIONS(5815), + [anon_sym_DOT] = ACTIONS(5815), + [anon_sym_EQ_GT] = ACTIONS(5813), + [anon_sym_STAR] = ACTIONS(5813), + [anon_sym_switch] = ACTIONS(5813), + [anon_sym_when] = ACTIONS(5813), + [anon_sym_DOT_DOT] = ACTIONS(5813), + [anon_sym_LT_EQ] = ACTIONS(5813), + [anon_sym_GT_EQ] = ACTIONS(5813), + [anon_sym_and] = ACTIONS(5813), + [anon_sym_or] = ACTIONS(5813), + [anon_sym_EQ_EQ] = ACTIONS(5813), + [anon_sym_BANG_EQ] = ACTIONS(5813), + [anon_sym_AMP_AMP] = ACTIONS(5813), + [anon_sym_PIPE_PIPE] = ACTIONS(5813), + [anon_sym_AMP] = ACTIONS(5815), + [sym_op_bitwise_or] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5813), + [sym_op_left_shift] = ACTIONS(5813), + [sym_op_right_shift] = ACTIONS(5815), + [sym_op_unsigned_right_shift] = ACTIONS(5813), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_DASH] = ACTIONS(5815), + [sym_op_divide] = ACTIONS(5815), + [sym_op_modulo] = ACTIONS(5813), + [sym_op_coalescing] = ACTIONS(5813), + [anon_sym_BANG] = ACTIONS(5815), + [anon_sym_PLUS_PLUS] = ACTIONS(5813), + [anon_sym_DASH_DASH] = ACTIONS(5813), + [anon_sym_on] = ACTIONS(5813), + [anon_sym_equals] = ACTIONS(5813), + [anon_sym_by] = ACTIONS(5813), + [anon_sym_as] = ACTIONS(5813), + [anon_sym_is] = ACTIONS(5813), + [anon_sym_DASH_GT] = ACTIONS(5813), + [anon_sym_with] = ACTIONS(5813), + [aux_sym_preproc_if_token3] = ACTIONS(5813), + [aux_sym_preproc_else_token1] = ACTIONS(5813), + [aux_sym_preproc_elif_token1] = ACTIONS(5813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -615494,7 +607640,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(4010), }, [4675] = { [sym_preproc_region] = STATE(4675), @@ -615506,58 +607651,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4675), [sym_preproc_define] = STATE(4675), [sym_preproc_undef] = STATE(4675), - [anon_sym_SEMI] = ACTIONS(5931), - [anon_sym_LBRACK] = ACTIONS(5931), - [anon_sym_COLON] = ACTIONS(5931), - [anon_sym_COMMA] = ACTIONS(5931), - [anon_sym_RBRACK] = ACTIONS(5931), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_RPAREN] = ACTIONS(5931), - [anon_sym_LBRACE] = ACTIONS(5931), - [anon_sym_RBRACE] = ACTIONS(5931), - [anon_sym_LT] = ACTIONS(5933), - [anon_sym_GT] = ACTIONS(5933), - [anon_sym_in] = ACTIONS(5931), - [anon_sym_where] = ACTIONS(5931), - [anon_sym_QMARK] = ACTIONS(5933), - [anon_sym_BANG] = ACTIONS(5933), - [anon_sym_PLUS_PLUS] = ACTIONS(5931), - [anon_sym_DASH_DASH] = ACTIONS(5931), - [anon_sym_PLUS] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5933), - [anon_sym_STAR] = ACTIONS(5931), - [anon_sym_SLASH] = ACTIONS(5933), - [anon_sym_PERCENT] = ACTIONS(5931), - [anon_sym_CARET] = ACTIONS(5931), - [anon_sym_PIPE] = ACTIONS(5933), - [anon_sym_AMP] = ACTIONS(5933), - [anon_sym_LT_LT] = ACTIONS(5931), - [anon_sym_GT_GT] = ACTIONS(5933), - [anon_sym_GT_GT_GT] = ACTIONS(5931), - [anon_sym_EQ_EQ] = ACTIONS(5931), - [anon_sym_BANG_EQ] = ACTIONS(5931), - [anon_sym_GT_EQ] = ACTIONS(5931), - [anon_sym_LT_EQ] = ACTIONS(5931), - [anon_sym_DOT] = ACTIONS(5933), - [anon_sym_EQ_GT] = ACTIONS(5931), - [anon_sym_switch] = ACTIONS(5931), - [anon_sym_when] = ACTIONS(5931), - [anon_sym_DOT_DOT] = ACTIONS(5931), - [anon_sym_and] = ACTIONS(5931), - [anon_sym_or] = ACTIONS(5931), - [anon_sym_AMP_AMP] = ACTIONS(5931), - [anon_sym_PIPE_PIPE] = ACTIONS(5931), - [sym_op_coalescing] = ACTIONS(5931), - [anon_sym_on] = ACTIONS(5931), - [anon_sym_equals] = ACTIONS(5931), - [anon_sym_by] = ACTIONS(5931), - [anon_sym_as] = ACTIONS(5931), - [anon_sym_is] = ACTIONS(5931), - [anon_sym_DASH_GT] = ACTIONS(5931), - [anon_sym_with] = ACTIONS(5931), - [aux_sym_preproc_if_token3] = ACTIONS(5931), - [aux_sym_preproc_else_token1] = ACTIONS(5931), - [aux_sym_preproc_elif_token1] = ACTIONS(5931), + [anon_sym_SEMI] = ACTIONS(5828), + [anon_sym_LBRACK] = ACTIONS(5828), + [anon_sym_COLON] = ACTIONS(5828), + [anon_sym_COMMA] = ACTIONS(5828), + [anon_sym_RBRACK] = ACTIONS(5828), + [anon_sym_LPAREN] = ACTIONS(5828), + [anon_sym_RPAREN] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(5828), + [anon_sym_LT] = ACTIONS(5830), + [anon_sym_GT] = ACTIONS(5830), + [anon_sym_in] = ACTIONS(5828), + [anon_sym_QMARK] = ACTIONS(5830), + [anon_sym_DOT] = ACTIONS(5830), + [anon_sym_EQ_GT] = ACTIONS(5828), + [anon_sym_STAR] = ACTIONS(5828), + [anon_sym_switch] = ACTIONS(5828), + [anon_sym_when] = ACTIONS(5828), + [anon_sym_DOT_DOT] = ACTIONS(5828), + [anon_sym_LT_EQ] = ACTIONS(5828), + [anon_sym_GT_EQ] = ACTIONS(5828), + [anon_sym_and] = ACTIONS(5828), + [anon_sym_or] = ACTIONS(5828), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_AMP_AMP] = ACTIONS(5828), + [anon_sym_PIPE_PIPE] = ACTIONS(5828), + [anon_sym_AMP] = ACTIONS(5830), + [sym_op_bitwise_or] = ACTIONS(5830), + [anon_sym_CARET] = ACTIONS(5828), + [sym_op_left_shift] = ACTIONS(5828), + [sym_op_right_shift] = ACTIONS(5830), + [sym_op_unsigned_right_shift] = ACTIONS(5828), + [anon_sym_PLUS] = ACTIONS(5830), + [anon_sym_DASH] = ACTIONS(5830), + [sym_op_divide] = ACTIONS(5830), + [sym_op_modulo] = ACTIONS(5828), + [sym_op_coalescing] = ACTIONS(5828), + [anon_sym_BANG] = ACTIONS(5830), + [anon_sym_PLUS_PLUS] = ACTIONS(5828), + [anon_sym_DASH_DASH] = ACTIONS(5828), + [anon_sym_on] = ACTIONS(5828), + [anon_sym_equals] = ACTIONS(5828), + [anon_sym_by] = ACTIONS(5828), + [anon_sym_as] = ACTIONS(5828), + [anon_sym_is] = ACTIONS(5828), + [anon_sym_DASH_GT] = ACTIONS(5828), + [anon_sym_with] = ACTIONS(5828), + [aux_sym_preproc_if_token3] = ACTIONS(5828), + [aux_sym_preproc_else_token1] = ACTIONS(5828), + [aux_sym_preproc_elif_token1] = ACTIONS(5828), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -615570,9 +607713,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4676] = { - [sym_modifier] = STATE(5152), - [sym_identifier] = STATE(6765), - [sym__reserved_identifier] = STATE(2206), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4676), [sym_preproc_endregion] = STATE(4676), [sym_preproc_line] = STATE(4676), @@ -615582,55 +607737,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4676), [sym_preproc_define] = STATE(4676), [sym_preproc_undef] = STATE(4676), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5026), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(5616), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(5616), - [anon_sym_static] = ACTIONS(5616), - [anon_sym_public] = ACTIONS(5616), - [anon_sym_private] = ACTIONS(5616), - [anon_sym_readonly] = ACTIONS(5616), - [anon_sym_abstract] = ACTIONS(5616), - [anon_sym_async] = ACTIONS(5616), - [anon_sym_const] = ACTIONS(5616), - [anon_sym_file] = ACTIONS(5622), - [anon_sym_fixed] = ACTIONS(5616), - [anon_sym_internal] = ACTIONS(5616), - [anon_sym_new] = ACTIONS(5616), - [anon_sym_override] = ACTIONS(5616), - [anon_sym_partial] = ACTIONS(5616), - [anon_sym_protected] = ACTIONS(5616), - [anon_sym_required] = ACTIONS(5616), - [anon_sym_sealed] = ACTIONS(5616), - [anon_sym_virtual] = ACTIONS(5616), - [anon_sym_volatile] = ACTIONS(5616), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [sym_accessor_get] = ACTIONS(6951), - [sym_accessor_set] = ACTIONS(6951), - [sym_accessor_add] = ACTIONS(6951), - [sym_accessor_remove] = ACTIONS(6951), - [sym_accessor_init] = ACTIONS(6951), - [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), - [sym_grit_metavariable] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7238), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(7238), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -615652,58 +607793,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4677), [sym_preproc_define] = STATE(4677), [sym_preproc_undef] = STATE(4677), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_LBRACK] = ACTIONS(3976), - [anon_sym_COLON] = ACTIONS(3976), - [anon_sym_COMMA] = ACTIONS(3976), - [anon_sym_RBRACK] = ACTIONS(3976), - [anon_sym_LPAREN] = ACTIONS(3976), - [anon_sym_RPAREN] = ACTIONS(3976), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_RBRACE] = ACTIONS(3976), - [anon_sym_LT] = ACTIONS(3974), - [anon_sym_GT] = ACTIONS(3974), - [anon_sym_in] = ACTIONS(3974), - [anon_sym_QMARK] = ACTIONS(3974), - [anon_sym_BANG] = ACTIONS(3974), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_SLASH] = ACTIONS(3974), - [anon_sym_PERCENT] = ACTIONS(3976), - [anon_sym_CARET] = ACTIONS(3976), - [anon_sym_PIPE] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_LT_LT] = ACTIONS(3976), - [anon_sym_GT_GT] = ACTIONS(3974), - [anon_sym_GT_GT_GT] = ACTIONS(3976), - [anon_sym_EQ_EQ] = ACTIONS(3976), - [anon_sym_BANG_EQ] = ACTIONS(3976), - [anon_sym_GT_EQ] = ACTIONS(3976), - [anon_sym_LT_EQ] = ACTIONS(3976), - [anon_sym_DOT] = ACTIONS(3974), - [anon_sym_EQ_GT] = ACTIONS(3976), - [anon_sym_switch] = ACTIONS(3976), - [anon_sym_when] = ACTIONS(3976), - [anon_sym_DOT_DOT] = ACTIONS(3976), - [anon_sym_and] = ACTIONS(3976), - [anon_sym_or] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_PIPE_PIPE] = ACTIONS(3976), - [sym_op_coalescing] = ACTIONS(3976), - [anon_sym_into] = ACTIONS(3976), - [anon_sym_on] = ACTIONS(3976), - [anon_sym_equals] = ACTIONS(3976), - [anon_sym_by] = ACTIONS(3976), - [anon_sym_as] = ACTIONS(3976), - [anon_sym_is] = ACTIONS(3976), - [anon_sym_DASH_GT] = ACTIONS(3976), - [anon_sym_with] = ACTIONS(3976), - [aux_sym_preproc_if_token3] = ACTIONS(3976), - [aux_sym_preproc_else_token1] = ACTIONS(3976), - [aux_sym_preproc_elif_token1] = ACTIONS(3976), + [sym__identifier_token] = ACTIONS(5709), + [anon_sym_extern] = ACTIONS(5709), + [anon_sym_alias] = ACTIONS(5709), + [anon_sym_global] = ACTIONS(5709), + [anon_sym_unsafe] = ACTIONS(5709), + [anon_sym_static] = ACTIONS(5709), + [anon_sym_LBRACK] = ACTIONS(5711), + [anon_sym_public] = ACTIONS(5709), + [anon_sym_private] = ACTIONS(5709), + [anon_sym_readonly] = ACTIONS(5709), + [anon_sym_abstract] = ACTIONS(5709), + [anon_sym_async] = ACTIONS(5709), + [anon_sym_const] = ACTIONS(5709), + [anon_sym_file] = ACTIONS(5709), + [anon_sym_fixed] = ACTIONS(5709), + [anon_sym_internal] = ACTIONS(5709), + [anon_sym_new] = ACTIONS(5709), + [anon_sym_override] = ACTIONS(5709), + [anon_sym_partial] = ACTIONS(5709), + [anon_sym_protected] = ACTIONS(5709), + [anon_sym_required] = ACTIONS(5709), + [anon_sym_sealed] = ACTIONS(5709), + [anon_sym_virtual] = ACTIONS(5709), + [anon_sym_volatile] = ACTIONS(5709), + [anon_sym_where] = ACTIONS(5709), + [anon_sym_notnull] = ACTIONS(5709), + [anon_sym_unmanaged] = ACTIONS(5709), + [sym_accessor_get] = ACTIONS(5709), + [sym_accessor_set] = ACTIONS(5709), + [sym_accessor_add] = ACTIONS(5709), + [sym_accessor_remove] = ACTIONS(5709), + [sym_accessor_init] = ACTIONS(5709), + [anon_sym_scoped] = ACTIONS(5709), + [anon_sym_var] = ACTIONS(5709), + [anon_sym_yield] = ACTIONS(5709), + [anon_sym_when] = ACTIONS(5709), + [anon_sym_from] = ACTIONS(5709), + [anon_sym_into] = ACTIONS(5709), + [anon_sym_join] = ACTIONS(5709), + [anon_sym_on] = ACTIONS(5709), + [anon_sym_equals] = ACTIONS(5709), + [anon_sym_let] = ACTIONS(5709), + [anon_sym_orderby] = ACTIONS(5709), + [anon_sym_ascending] = ACTIONS(5709), + [anon_sym_descending] = ACTIONS(5709), + [anon_sym_group] = ACTIONS(5709), + [anon_sym_by] = ACTIONS(5709), + [anon_sym_select] = ACTIONS(5709), + [sym_grit_metavariable] = ACTIONS(5711), + [aux_sym_preproc_if_token1] = ACTIONS(5711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -615716,6 +607855,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4678] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4678), [sym_preproc_endregion] = STATE(4678), [sym_preproc_line] = STATE(4678), @@ -615725,58 +607879,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4678), [sym_preproc_define] = STATE(4678), [sym_preproc_undef] = STATE(4678), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym_LBRACK] = ACTIONS(3980), - [anon_sym_COLON] = ACTIONS(3980), - [anon_sym_COMMA] = ACTIONS(3980), - [anon_sym_RBRACK] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym_RPAREN] = ACTIONS(3980), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_RBRACE] = ACTIONS(3980), - [anon_sym_LT] = ACTIONS(3978), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_in] = ACTIONS(3978), - [anon_sym_QMARK] = ACTIONS(3978), - [anon_sym_BANG] = ACTIONS(3978), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_SLASH] = ACTIONS(3978), - [anon_sym_PERCENT] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3978), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_LT_LT] = ACTIONS(3980), - [anon_sym_GT_GT] = ACTIONS(3978), - [anon_sym_GT_GT_GT] = ACTIONS(3980), - [anon_sym_EQ_EQ] = ACTIONS(3980), - [anon_sym_BANG_EQ] = ACTIONS(3980), - [anon_sym_GT_EQ] = ACTIONS(3980), - [anon_sym_LT_EQ] = ACTIONS(3980), - [anon_sym_DOT] = ACTIONS(3978), - [anon_sym_EQ_GT] = ACTIONS(3980), - [anon_sym_switch] = ACTIONS(3980), - [anon_sym_when] = ACTIONS(3980), - [anon_sym_DOT_DOT] = ACTIONS(3980), - [anon_sym_and] = ACTIONS(3980), - [anon_sym_or] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_PIPE_PIPE] = ACTIONS(3980), - [sym_op_coalescing] = ACTIONS(3980), - [anon_sym_into] = ACTIONS(3980), - [anon_sym_on] = ACTIONS(3980), - [anon_sym_equals] = ACTIONS(3980), - [anon_sym_by] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(3980), - [anon_sym_is] = ACTIONS(3980), - [anon_sym_DASH_GT] = ACTIONS(3980), - [anon_sym_with] = ACTIONS(3980), - [aux_sym_preproc_if_token3] = ACTIONS(3980), - [aux_sym_preproc_else_token1] = ACTIONS(3980), - [aux_sym_preproc_elif_token1] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -615798,58 +607935,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4679), [sym_preproc_define] = STATE(4679), [sym_preproc_undef] = STATE(4679), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym_LBRACK] = ACTIONS(3968), - [anon_sym_COLON] = ACTIONS(3968), - [anon_sym_COMMA] = ACTIONS(3968), - [anon_sym_RBRACK] = ACTIONS(3968), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_RPAREN] = ACTIONS(3968), - [anon_sym_LBRACE] = ACTIONS(3968), - [anon_sym_RBRACE] = ACTIONS(3968), - [anon_sym_LT] = ACTIONS(3966), - [anon_sym_GT] = ACTIONS(3966), - [anon_sym_in] = ACTIONS(3966), - [anon_sym_QMARK] = ACTIONS(3966), - [anon_sym_BANG] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_SLASH] = ACTIONS(3966), - [anon_sym_PERCENT] = ACTIONS(3968), - [anon_sym_CARET] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(3966), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_LT_LT] = ACTIONS(3968), - [anon_sym_GT_GT] = ACTIONS(3966), - [anon_sym_GT_GT_GT] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3968), - [anon_sym_BANG_EQ] = ACTIONS(3968), - [anon_sym_GT_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3968), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_EQ_GT] = ACTIONS(3968), - [anon_sym_switch] = ACTIONS(3968), - [anon_sym_when] = ACTIONS(3968), - [anon_sym_DOT_DOT] = ACTIONS(3968), - [anon_sym_and] = ACTIONS(3968), - [anon_sym_or] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_PIPE_PIPE] = ACTIONS(3968), - [sym_op_coalescing] = ACTIONS(3968), - [anon_sym_into] = ACTIONS(3968), - [anon_sym_on] = ACTIONS(3968), - [anon_sym_equals] = ACTIONS(3968), - [anon_sym_by] = ACTIONS(3968), - [anon_sym_as] = ACTIONS(3968), - [anon_sym_is] = ACTIONS(3968), - [anon_sym_DASH_GT] = ACTIONS(3968), - [anon_sym_with] = ACTIONS(3968), - [aux_sym_preproc_if_token3] = ACTIONS(3968), - [aux_sym_preproc_else_token1] = ACTIONS(3968), - [aux_sym_preproc_elif_token1] = ACTIONS(3968), + [anon_sym_SEMI] = ACTIONS(5907), + [anon_sym_LBRACK] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5907), + [anon_sym_COMMA] = ACTIONS(5907), + [anon_sym_RBRACK] = ACTIONS(5907), + [anon_sym_LPAREN] = ACTIONS(5907), + [anon_sym_RPAREN] = ACTIONS(5907), + [anon_sym_RBRACE] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5909), + [anon_sym_GT] = ACTIONS(5909), + [anon_sym_in] = ACTIONS(5907), + [anon_sym_QMARK] = ACTIONS(5909), + [anon_sym_DOT] = ACTIONS(5909), + [anon_sym_EQ_GT] = ACTIONS(5907), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_switch] = ACTIONS(5907), + [anon_sym_when] = ACTIONS(5907), + [anon_sym_DOT_DOT] = ACTIONS(5907), + [anon_sym_LT_EQ] = ACTIONS(5907), + [anon_sym_GT_EQ] = ACTIONS(5907), + [anon_sym_and] = ACTIONS(5907), + [anon_sym_or] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5907), + [anon_sym_BANG_EQ] = ACTIONS(5907), + [anon_sym_AMP_AMP] = ACTIONS(5907), + [anon_sym_PIPE_PIPE] = ACTIONS(5907), + [anon_sym_AMP] = ACTIONS(5909), + [sym_op_bitwise_or] = ACTIONS(5909), + [anon_sym_CARET] = ACTIONS(5907), + [sym_op_left_shift] = ACTIONS(5907), + [sym_op_right_shift] = ACTIONS(5909), + [sym_op_unsigned_right_shift] = ACTIONS(5907), + [anon_sym_PLUS] = ACTIONS(5909), + [anon_sym_DASH] = ACTIONS(5909), + [sym_op_divide] = ACTIONS(5909), + [sym_op_modulo] = ACTIONS(5907), + [sym_op_coalescing] = ACTIONS(5907), + [anon_sym_BANG] = ACTIONS(5909), + [anon_sym_PLUS_PLUS] = ACTIONS(5907), + [anon_sym_DASH_DASH] = ACTIONS(5907), + [anon_sym_on] = ACTIONS(5907), + [anon_sym_equals] = ACTIONS(5907), + [anon_sym_by] = ACTIONS(5907), + [anon_sym_as] = ACTIONS(5907), + [anon_sym_is] = ACTIONS(5907), + [anon_sym_DASH_GT] = ACTIONS(5907), + [anon_sym_with] = ACTIONS(5907), + [aux_sym_preproc_if_token3] = ACTIONS(5907), + [aux_sym_preproc_else_token1] = ACTIONS(5907), + [aux_sym_preproc_elif_token1] = ACTIONS(5907), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -615862,6 +607997,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4680] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4680), [sym_preproc_endregion] = STATE(4680), [sym_preproc_line] = STATE(4680), @@ -615871,58 +608021,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4680), [sym_preproc_define] = STATE(4680), [sym_preproc_undef] = STATE(4680), - [anon_sym_SEMI] = ACTIONS(3997), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_COLON] = ACTIONS(3997), - [anon_sym_COMMA] = ACTIONS(3997), - [anon_sym_RBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_RPAREN] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_RBRACE] = ACTIONS(3997), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_in] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3986), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3986), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_EQ_GT] = ACTIONS(3997), - [anon_sym_switch] = ACTIONS(3997), - [anon_sym_when] = ACTIONS(3997), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3997), - [anon_sym_or] = ACTIONS(3997), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [sym_op_coalescing] = ACTIONS(3997), - [anon_sym_into] = ACTIONS(3997), - [anon_sym_on] = ACTIONS(3997), - [anon_sym_equals] = ACTIONS(3997), - [anon_sym_by] = ACTIONS(3997), - [anon_sym_as] = ACTIONS(3997), - [anon_sym_is] = ACTIONS(3997), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3997), - [aux_sym_preproc_if_token3] = ACTIONS(3997), - [aux_sym_preproc_else_token1] = ACTIONS(3997), - [aux_sym_preproc_elif_token1] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7143), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7145), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(7147), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_by] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(7135), + [anon_sym_is] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -615944,58 +608077,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4681), [sym_preproc_define] = STATE(4681), [sym_preproc_undef] = STATE(4681), - [anon_sym_SEMI] = ACTIONS(5945), - [anon_sym_LBRACK] = ACTIONS(5945), - [anon_sym_COLON] = ACTIONS(5945), - [anon_sym_COMMA] = ACTIONS(5945), - [anon_sym_RBRACK] = ACTIONS(5945), - [anon_sym_LPAREN] = ACTIONS(5945), - [anon_sym_RPAREN] = ACTIONS(5945), - [anon_sym_LBRACE] = ACTIONS(5945), - [anon_sym_RBRACE] = ACTIONS(5945), - [anon_sym_LT] = ACTIONS(5947), - [anon_sym_GT] = ACTIONS(5947), - [anon_sym_in] = ACTIONS(5945), - [anon_sym_where] = ACTIONS(5945), - [anon_sym_QMARK] = ACTIONS(5947), - [anon_sym_BANG] = ACTIONS(5947), - [anon_sym_PLUS_PLUS] = ACTIONS(5945), - [anon_sym_DASH_DASH] = ACTIONS(5945), - [anon_sym_PLUS] = ACTIONS(5947), - [anon_sym_DASH] = ACTIONS(5947), - [anon_sym_STAR] = ACTIONS(5945), - [anon_sym_SLASH] = ACTIONS(5947), - [anon_sym_PERCENT] = ACTIONS(5945), - [anon_sym_CARET] = ACTIONS(5945), - [anon_sym_PIPE] = ACTIONS(5947), - [anon_sym_AMP] = ACTIONS(5947), - [anon_sym_LT_LT] = ACTIONS(5945), - [anon_sym_GT_GT] = ACTIONS(5947), - [anon_sym_GT_GT_GT] = ACTIONS(5945), - [anon_sym_EQ_EQ] = ACTIONS(5945), - [anon_sym_BANG_EQ] = ACTIONS(5945), - [anon_sym_GT_EQ] = ACTIONS(5945), - [anon_sym_LT_EQ] = ACTIONS(5945), - [anon_sym_DOT] = ACTIONS(5947), - [anon_sym_EQ_GT] = ACTIONS(5945), - [anon_sym_switch] = ACTIONS(5945), - [anon_sym_when] = ACTIONS(5945), - [anon_sym_DOT_DOT] = ACTIONS(5945), - [anon_sym_and] = ACTIONS(5945), - [anon_sym_or] = ACTIONS(5945), - [anon_sym_AMP_AMP] = ACTIONS(5945), - [anon_sym_PIPE_PIPE] = ACTIONS(5945), - [sym_op_coalescing] = ACTIONS(5945), - [anon_sym_on] = ACTIONS(5945), - [anon_sym_equals] = ACTIONS(5945), - [anon_sym_by] = ACTIONS(5945), - [anon_sym_as] = ACTIONS(5945), - [anon_sym_is] = ACTIONS(5945), - [anon_sym_DASH_GT] = ACTIONS(5945), - [anon_sym_with] = ACTIONS(5945), - [aux_sym_preproc_if_token3] = ACTIONS(5945), - [aux_sym_preproc_else_token1] = ACTIONS(5945), - [aux_sym_preproc_elif_token1] = ACTIONS(5945), + [anon_sym_SEMI] = ACTIONS(5911), + [anon_sym_LBRACK] = ACTIONS(5911), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_COMMA] = ACTIONS(5911), + [anon_sym_RBRACK] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5911), + [anon_sym_RPAREN] = ACTIONS(5911), + [anon_sym_RBRACE] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5913), + [anon_sym_GT] = ACTIONS(5913), + [anon_sym_in] = ACTIONS(5911), + [anon_sym_QMARK] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_EQ_GT] = ACTIONS(5911), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_switch] = ACTIONS(5911), + [anon_sym_when] = ACTIONS(5911), + [anon_sym_DOT_DOT] = ACTIONS(5911), + [anon_sym_LT_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5911), + [anon_sym_and] = ACTIONS(5911), + [anon_sym_or] = ACTIONS(5911), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_AMP_AMP] = ACTIONS(5911), + [anon_sym_PIPE_PIPE] = ACTIONS(5911), + [anon_sym_AMP] = ACTIONS(5913), + [sym_op_bitwise_or] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(5911), + [sym_op_left_shift] = ACTIONS(5911), + [sym_op_right_shift] = ACTIONS(5913), + [sym_op_unsigned_right_shift] = ACTIONS(5911), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_DASH] = ACTIONS(5913), + [sym_op_divide] = ACTIONS(5913), + [sym_op_modulo] = ACTIONS(5911), + [sym_op_coalescing] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(5913), + [anon_sym_PLUS_PLUS] = ACTIONS(5911), + [anon_sym_DASH_DASH] = ACTIONS(5911), + [anon_sym_on] = ACTIONS(5911), + [anon_sym_equals] = ACTIONS(5911), + [anon_sym_by] = ACTIONS(5911), + [anon_sym_as] = ACTIONS(5911), + [anon_sym_is] = ACTIONS(5911), + [anon_sym_DASH_GT] = ACTIONS(5911), + [anon_sym_with] = ACTIONS(5911), + [aux_sym_preproc_if_token3] = ACTIONS(5911), + [aux_sym_preproc_else_token1] = ACTIONS(5911), + [aux_sym_preproc_elif_token1] = ACTIONS(5911), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -616008,6 +608139,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4682] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4682), [sym_preproc_endregion] = STATE(4682), [sym_preproc_line] = STATE(4682), @@ -616017,58 +608163,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4682), [sym_preproc_define] = STATE(4682), [sym_preproc_undef] = STATE(4682), - [anon_sym_SEMI] = ACTIONS(5945), - [anon_sym_LBRACK] = ACTIONS(5945), - [anon_sym_COLON] = ACTIONS(5945), - [anon_sym_COMMA] = ACTIONS(5945), - [anon_sym_RBRACK] = ACTIONS(5945), - [anon_sym_LPAREN] = ACTIONS(5945), - [anon_sym_RPAREN] = ACTIONS(5945), - [anon_sym_LBRACE] = ACTIONS(5945), - [anon_sym_RBRACE] = ACTIONS(5945), - [anon_sym_LT] = ACTIONS(5947), - [anon_sym_GT] = ACTIONS(5947), - [anon_sym_in] = ACTIONS(5947), - [anon_sym_QMARK] = ACTIONS(5947), - [anon_sym_BANG] = ACTIONS(5947), - [anon_sym_PLUS_PLUS] = ACTIONS(5945), - [anon_sym_DASH_DASH] = ACTIONS(5945), - [anon_sym_PLUS] = ACTIONS(5947), - [anon_sym_DASH] = ACTIONS(5947), - [anon_sym_STAR] = ACTIONS(5945), - [anon_sym_SLASH] = ACTIONS(5947), - [anon_sym_PERCENT] = ACTIONS(5945), - [anon_sym_CARET] = ACTIONS(5945), - [anon_sym_PIPE] = ACTIONS(5947), - [anon_sym_AMP] = ACTIONS(5947), - [anon_sym_LT_LT] = ACTIONS(5945), - [anon_sym_GT_GT] = ACTIONS(5947), - [anon_sym_GT_GT_GT] = ACTIONS(5945), - [anon_sym_EQ_EQ] = ACTIONS(5945), - [anon_sym_BANG_EQ] = ACTIONS(5945), - [anon_sym_GT_EQ] = ACTIONS(5945), - [anon_sym_LT_EQ] = ACTIONS(5945), - [anon_sym_DOT] = ACTIONS(5947), - [anon_sym_EQ_GT] = ACTIONS(5945), - [anon_sym_switch] = ACTIONS(5945), - [anon_sym_when] = ACTIONS(5945), - [anon_sym_DOT_DOT] = ACTIONS(5945), - [anon_sym_and] = ACTIONS(5945), - [anon_sym_or] = ACTIONS(5945), - [anon_sym_AMP_AMP] = ACTIONS(5945), - [anon_sym_PIPE_PIPE] = ACTIONS(5945), - [sym_op_coalescing] = ACTIONS(5945), - [anon_sym_into] = ACTIONS(5945), - [anon_sym_on] = ACTIONS(5945), - [anon_sym_equals] = ACTIONS(5945), - [anon_sym_by] = ACTIONS(5945), - [anon_sym_as] = ACTIONS(5945), - [anon_sym_is] = ACTIONS(5945), - [anon_sym_DASH_GT] = ACTIONS(5945), - [anon_sym_with] = ACTIONS(5945), - [aux_sym_preproc_if_token3] = ACTIONS(5945), - [aux_sym_preproc_else_token1] = ACTIONS(5945), - [aux_sym_preproc_elif_token1] = ACTIONS(5945), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7218), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(7228), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7230), + [anon_sym_is] = ACTIONS(7232), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -616090,58 +608219,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4683), [sym_preproc_define] = STATE(4683), [sym_preproc_undef] = STATE(4683), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_COLON] = ACTIONS(3972), - [anon_sym_COMMA] = ACTIONS(3972), - [anon_sym_RBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3972), - [anon_sym_RPAREN] = ACTIONS(3972), - [anon_sym_LBRACE] = ACTIONS(3972), - [anon_sym_RBRACE] = ACTIONS(3972), - [anon_sym_LT] = ACTIONS(3970), - [anon_sym_GT] = ACTIONS(3970), - [anon_sym_in] = ACTIONS(3970), - [anon_sym_QMARK] = ACTIONS(3970), - [anon_sym_BANG] = ACTIONS(3970), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(3970), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_CARET] = ACTIONS(3972), - [anon_sym_PIPE] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_LT_LT] = ACTIONS(3972), - [anon_sym_GT_GT] = ACTIONS(3970), - [anon_sym_GT_GT_GT] = ACTIONS(3972), - [anon_sym_EQ_EQ] = ACTIONS(3972), - [anon_sym_BANG_EQ] = ACTIONS(3972), - [anon_sym_GT_EQ] = ACTIONS(3972), - [anon_sym_LT_EQ] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(3970), - [anon_sym_EQ_GT] = ACTIONS(3972), - [anon_sym_switch] = ACTIONS(3972), - [anon_sym_when] = ACTIONS(3972), - [anon_sym_DOT_DOT] = ACTIONS(3972), - [anon_sym_and] = ACTIONS(3972), - [anon_sym_or] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_PIPE_PIPE] = ACTIONS(3972), - [sym_op_coalescing] = ACTIONS(3972), - [anon_sym_into] = ACTIONS(3972), - [anon_sym_on] = ACTIONS(3972), - [anon_sym_equals] = ACTIONS(3972), - [anon_sym_by] = ACTIONS(3972), - [anon_sym_as] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3972), - [anon_sym_DASH_GT] = ACTIONS(3972), - [anon_sym_with] = ACTIONS(3972), - [aux_sym_preproc_if_token3] = ACTIONS(3972), - [aux_sym_preproc_else_token1] = ACTIONS(3972), - [aux_sym_preproc_elif_token1] = ACTIONS(3972), + [sym__identifier_token] = ACTIONS(5672), + [anon_sym_extern] = ACTIONS(5672), + [anon_sym_alias] = ACTIONS(5672), + [anon_sym_global] = ACTIONS(5672), + [anon_sym_unsafe] = ACTIONS(5672), + [anon_sym_static] = ACTIONS(5672), + [anon_sym_LBRACK] = ACTIONS(5674), + [anon_sym_public] = ACTIONS(5672), + [anon_sym_private] = ACTIONS(5672), + [anon_sym_readonly] = ACTIONS(5672), + [anon_sym_abstract] = ACTIONS(5672), + [anon_sym_async] = ACTIONS(5672), + [anon_sym_const] = ACTIONS(5672), + [anon_sym_file] = ACTIONS(5672), + [anon_sym_fixed] = ACTIONS(5672), + [anon_sym_internal] = ACTIONS(5672), + [anon_sym_new] = ACTIONS(5672), + [anon_sym_override] = ACTIONS(5672), + [anon_sym_partial] = ACTIONS(5672), + [anon_sym_protected] = ACTIONS(5672), + [anon_sym_required] = ACTIONS(5672), + [anon_sym_sealed] = ACTIONS(5672), + [anon_sym_virtual] = ACTIONS(5672), + [anon_sym_volatile] = ACTIONS(5672), + [anon_sym_where] = ACTIONS(5672), + [anon_sym_notnull] = ACTIONS(5672), + [anon_sym_unmanaged] = ACTIONS(5672), + [sym_accessor_get] = ACTIONS(5672), + [sym_accessor_set] = ACTIONS(5672), + [sym_accessor_add] = ACTIONS(5672), + [sym_accessor_remove] = ACTIONS(5672), + [sym_accessor_init] = ACTIONS(5672), + [anon_sym_scoped] = ACTIONS(5672), + [anon_sym_var] = ACTIONS(5672), + [anon_sym_yield] = ACTIONS(5672), + [anon_sym_when] = ACTIONS(5672), + [anon_sym_from] = ACTIONS(5672), + [anon_sym_into] = ACTIONS(5672), + [anon_sym_join] = ACTIONS(5672), + [anon_sym_on] = ACTIONS(5672), + [anon_sym_equals] = ACTIONS(5672), + [anon_sym_let] = ACTIONS(5672), + [anon_sym_orderby] = ACTIONS(5672), + [anon_sym_ascending] = ACTIONS(5672), + [anon_sym_descending] = ACTIONS(5672), + [anon_sym_group] = ACTIONS(5672), + [anon_sym_by] = ACTIONS(5672), + [anon_sym_select] = ACTIONS(5672), + [sym_grit_metavariable] = ACTIONS(5674), + [aux_sym_preproc_if_token1] = ACTIONS(5674), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -616154,7 +608281,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4684] = { - [sym_type_argument_list] = STATE(4782), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4684), [sym_preproc_endregion] = STATE(4684), [sym_preproc_line] = STATE(4684), @@ -616164,57 +608305,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4684), [sym_preproc_define] = STATE(4684), [sym_preproc_undef] = STATE(4684), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(6940), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_when] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -616227,6 +608352,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4685] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4685), [sym_preproc_endregion] = STATE(4685), [sym_preproc_line] = STATE(4685), @@ -616236,57 +608376,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4685), [sym_preproc_define] = STATE(4685), [sym_preproc_undef] = STATE(4685), - [anon_sym_EQ] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3953), - [anon_sym_PLUS_EQ] = ACTIONS(3953), - [anon_sym_DASH_EQ] = ACTIONS(3953), - [anon_sym_STAR_EQ] = ACTIONS(3953), - [anon_sym_SLASH_EQ] = ACTIONS(3953), - [anon_sym_PERCENT_EQ] = ACTIONS(3953), - [anon_sym_AMP_EQ] = ACTIONS(3953), - [anon_sym_CARET_EQ] = ACTIONS(3953), - [anon_sym_PIPE_EQ] = ACTIONS(3953), - [anon_sym_LT_LT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3953), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3951), - [anon_sym_into] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -616297,9 +608421,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3953), }, [4686] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4686), [sym_preproc_endregion] = STATE(4686), [sym_preproc_line] = STATE(4686), @@ -616309,58 +608447,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4686), [sym_preproc_define] = STATE(4686), [sym_preproc_undef] = STATE(4686), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_when] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4331), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_into] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5300), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7230), + [anon_sym_is] = ACTIONS(7232), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -616373,6 +608494,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4687] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4687), [sym_preproc_endregion] = STATE(4687), [sym_preproc_line] = STATE(4687), @@ -616382,58 +608518,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4687), [sym_preproc_define] = STATE(4687), [sym_preproc_undef] = STATE(4687), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(6953), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_when] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4331), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_into] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6867), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RBRACE] = ACTIONS(6867), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -616455,58 +608574,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4688), [sym_preproc_define] = STATE(4688), [sym_preproc_undef] = STATE(4688), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_when] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4331), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_into] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(5951), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_COLON] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_RBRACK] = ACTIONS(5951), + [anon_sym_LPAREN] = ACTIONS(5951), + [anon_sym_RPAREN] = ACTIONS(5951), + [anon_sym_RBRACE] = ACTIONS(5951), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_in] = ACTIONS(5951), + [anon_sym_QMARK] = ACTIONS(5953), + [anon_sym_DOT] = ACTIONS(5953), + [anon_sym_EQ_GT] = ACTIONS(5951), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_switch] = ACTIONS(5951), + [anon_sym_when] = ACTIONS(5951), + [anon_sym_DOT_DOT] = ACTIONS(5951), + [anon_sym_LT_EQ] = ACTIONS(5951), + [anon_sym_GT_EQ] = ACTIONS(5951), + [anon_sym_and] = ACTIONS(5951), + [anon_sym_or] = ACTIONS(5951), + [anon_sym_EQ_EQ] = ACTIONS(5951), + [anon_sym_BANG_EQ] = ACTIONS(5951), + [anon_sym_AMP_AMP] = ACTIONS(5951), + [anon_sym_PIPE_PIPE] = ACTIONS(5951), + [anon_sym_AMP] = ACTIONS(5953), + [sym_op_bitwise_or] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5951), + [sym_op_left_shift] = ACTIONS(5951), + [sym_op_right_shift] = ACTIONS(5953), + [sym_op_unsigned_right_shift] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [sym_op_divide] = ACTIONS(5953), + [sym_op_modulo] = ACTIONS(5951), + [sym_op_coalescing] = ACTIONS(5951), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PLUS_PLUS] = ACTIONS(5951), + [anon_sym_DASH_DASH] = ACTIONS(5951), + [anon_sym_on] = ACTIONS(5951), + [anon_sym_equals] = ACTIONS(5951), + [anon_sym_by] = ACTIONS(5951), + [anon_sym_as] = ACTIONS(5951), + [anon_sym_is] = ACTIONS(5951), + [anon_sym_DASH_GT] = ACTIONS(5951), + [anon_sym_with] = ACTIONS(5951), + [aux_sym_preproc_if_token3] = ACTIONS(5951), + [aux_sym_preproc_else_token1] = ACTIONS(5951), + [aux_sym_preproc_elif_token1] = ACTIONS(5951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -616528,58 +608645,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4689), [sym_preproc_define] = STATE(4689), [sym_preproc_undef] = STATE(4689), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_RBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_LBRACE] = ACTIONS(3957), - [anon_sym_RBRACE] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3955), - [anon_sym_GT] = ACTIONS(3955), - [anon_sym_in] = ACTIONS(3955), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3955), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3955), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_EQ_GT] = ACTIONS(3957), - [anon_sym_switch] = ACTIONS(3957), - [anon_sym_when] = ACTIONS(3957), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3957), - [anon_sym_or] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [sym_op_coalescing] = ACTIONS(3957), - [anon_sym_into] = ACTIONS(3957), - [anon_sym_on] = ACTIONS(3957), - [anon_sym_equals] = ACTIONS(3957), - [anon_sym_by] = ACTIONS(3957), - [anon_sym_as] = ACTIONS(3957), - [anon_sym_is] = ACTIONS(3957), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3957), - [aux_sym_preproc_if_token3] = ACTIONS(3957), - [aux_sym_preproc_else_token1] = ACTIONS(3957), - [aux_sym_preproc_elif_token1] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(5975), + [anon_sym_LBRACK] = ACTIONS(5975), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_COMMA] = ACTIONS(5975), + [anon_sym_RBRACK] = ACTIONS(5975), + [anon_sym_LPAREN] = ACTIONS(5975), + [anon_sym_RPAREN] = ACTIONS(5975), + [anon_sym_RBRACE] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5977), + [anon_sym_GT] = ACTIONS(5977), + [anon_sym_in] = ACTIONS(5975), + [anon_sym_QMARK] = ACTIONS(5977), + [anon_sym_DOT] = ACTIONS(5977), + [anon_sym_EQ_GT] = ACTIONS(5975), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_switch] = ACTIONS(5975), + [anon_sym_when] = ACTIONS(5975), + [anon_sym_DOT_DOT] = ACTIONS(5975), + [anon_sym_LT_EQ] = ACTIONS(5975), + [anon_sym_GT_EQ] = ACTIONS(5975), + [anon_sym_and] = ACTIONS(5975), + [anon_sym_or] = ACTIONS(5975), + [anon_sym_EQ_EQ] = ACTIONS(5975), + [anon_sym_BANG_EQ] = ACTIONS(5975), + [anon_sym_AMP_AMP] = ACTIONS(5975), + [anon_sym_PIPE_PIPE] = ACTIONS(5975), + [anon_sym_AMP] = ACTIONS(5977), + [sym_op_bitwise_or] = ACTIONS(5977), + [anon_sym_CARET] = ACTIONS(5975), + [sym_op_left_shift] = ACTIONS(5975), + [sym_op_right_shift] = ACTIONS(5977), + [sym_op_unsigned_right_shift] = ACTIONS(5975), + [anon_sym_PLUS] = ACTIONS(5977), + [anon_sym_DASH] = ACTIONS(5977), + [sym_op_divide] = ACTIONS(5977), + [sym_op_modulo] = ACTIONS(5975), + [sym_op_coalescing] = ACTIONS(5975), + [anon_sym_BANG] = ACTIONS(5977), + [anon_sym_PLUS_PLUS] = ACTIONS(5975), + [anon_sym_DASH_DASH] = ACTIONS(5975), + [anon_sym_on] = ACTIONS(5975), + [anon_sym_equals] = ACTIONS(5975), + [anon_sym_by] = ACTIONS(5975), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5975), + [anon_sym_DASH_GT] = ACTIONS(5975), + [anon_sym_with] = ACTIONS(5975), + [aux_sym_preproc_if_token3] = ACTIONS(5975), + [aux_sym_preproc_else_token1] = ACTIONS(5975), + [aux_sym_preproc_elif_token1] = ACTIONS(5975), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -616592,6 +608707,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4690] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4690), [sym_preproc_endregion] = STATE(4690), [sym_preproc_line] = STATE(4690), @@ -616601,58 +608731,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4690), [sym_preproc_define] = STATE(4690), [sym_preproc_undef] = STATE(4690), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_when] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_into] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(7192), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7186), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(7190), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7184), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -616665,6 +608778,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4691] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4691), [sym_preproc_endregion] = STATE(4691), [sym_preproc_line] = STATE(4691), @@ -616674,70 +608802,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4691), [sym_preproc_define] = STATE(4691), [sym_preproc_undef] = STATE(4691), - [anon_sym_EQ] = ACTIONS(6956), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(6958), - [anon_sym_DASH_EQ] = ACTIONS(6958), - [anon_sym_STAR_EQ] = ACTIONS(6958), - [anon_sym_SLASH_EQ] = ACTIONS(6958), - [anon_sym_PERCENT_EQ] = ACTIONS(6958), - [anon_sym_AMP_EQ] = ACTIONS(6958), - [anon_sym_CARET_EQ] = ACTIONS(6958), - [anon_sym_PIPE_EQ] = ACTIONS(6958), - [anon_sym_LT_LT_EQ] = ACTIONS(6958), - [anon_sym_GT_GT_EQ] = ACTIONS(6958), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6958), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6958), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7216), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7218), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(7228), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5296), + [anon_sym_equals] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(7230), + [anon_sym_is] = ACTIONS(7232), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [4692] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4692), [sym_preproc_endregion] = STATE(4692), [sym_preproc_line] = STATE(4692), @@ -616747,58 +608873,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4692), [sym_preproc_define] = STATE(4692), [sym_preproc_undef] = STATE(4692), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(6953), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_when] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4331), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_into] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7216), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7218), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(7228), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5336), + [anon_sym_equals] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(7230), + [anon_sym_is] = ACTIONS(7232), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -616811,6 +608920,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4693] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4693), [sym_preproc_endregion] = STATE(4693), [sym_preproc_line] = STATE(4693), @@ -616820,58 +608944,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4693), [sym_preproc_define] = STATE(4693), [sym_preproc_undef] = STATE(4693), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(6953), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(6960), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_when] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4331), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_into] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7216), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7218), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(7228), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5356), + [anon_sym_equals] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(7230), + [anon_sym_is] = ACTIONS(7232), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -616884,6 +608991,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4694] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1129), + [sym_op_lte] = STATE(1129), + [sym_op_eq] = STATE(1128), + [sym_op_neq] = STATE(1128), + [sym_op_gt] = STATE(1129), + [sym_op_gte] = STATE(1129), + [sym_op_and] = STATE(1127), + [sym_op_or] = STATE(1126), + [sym_op_bitwise_and] = STATE(1124), + [sym_op_bitwise_xor] = STATE(1123), + [sym_op_plus] = STATE(1122), + [sym_op_minus] = STATE(1122), + [sym_op_multiply] = STATE(1131), [sym_preproc_region] = STATE(4694), [sym_preproc_endregion] = STATE(4694), [sym_preproc_line] = STATE(4694), @@ -616893,58 +609015,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4694), [sym_preproc_define] = STATE(4694), [sym_preproc_undef] = STATE(4694), - [anon_sym_SEMI] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(4357), - [anon_sym_COLON] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4357), - [anon_sym_RBRACK] = ACTIONS(4357), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_RPAREN] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4357), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_PLUS_PLUS] = ACTIONS(4357), - [anon_sym_DASH_DASH] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4357), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4357), - [anon_sym_CARET] = ACTIONS(4357), - [anon_sym_PIPE] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_LT] = ACTIONS(4357), - [anon_sym_GT_GT] = ACTIONS(4355), - [anon_sym_GT_GT_GT] = ACTIONS(4357), - [anon_sym_EQ_EQ] = ACTIONS(4357), - [anon_sym_BANG_EQ] = ACTIONS(4357), - [anon_sym_GT_EQ] = ACTIONS(4357), - [anon_sym_LT_EQ] = ACTIONS(4357), - [anon_sym_DOT] = ACTIONS(6960), - [anon_sym_EQ_GT] = ACTIONS(4357), - [anon_sym_switch] = ACTIONS(4357), - [anon_sym_when] = ACTIONS(4357), - [anon_sym_DOT_DOT] = ACTIONS(4357), - [anon_sym_and] = ACTIONS(4357), - [anon_sym_or] = ACTIONS(4357), - [anon_sym_AMP_AMP] = ACTIONS(4357), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [sym_op_coalescing] = ACTIONS(4357), - [anon_sym_into] = ACTIONS(4357), - [anon_sym_on] = ACTIONS(4357), - [anon_sym_equals] = ACTIONS(4357), - [anon_sym_by] = ACTIONS(4357), - [anon_sym_as] = ACTIONS(4357), - [anon_sym_is] = ACTIONS(4357), - [anon_sym_DASH_GT] = ACTIONS(4357), - [anon_sym_with] = ACTIONS(4357), - [aux_sym_preproc_if_token3] = ACTIONS(4357), - [aux_sym_preproc_else_token1] = ACTIONS(4357), - [aux_sym_preproc_elif_token1] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7052), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_EQ_GT] = ACTIONS(5304), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7054), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7056), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7058), + [sym_op_right_shift] = ACTIONS(7060), + [sym_op_unsigned_right_shift] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7062), + [sym_op_modulo] = ACTIONS(7064), + [sym_op_coalescing] = ACTIONS(7066), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7068), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -616966,58 +609071,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4695), [sym_preproc_define] = STATE(4695), [sym_preproc_undef] = STATE(4695), - [anon_sym_SEMI] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(4357), - [anon_sym_COLON] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4357), - [anon_sym_RBRACK] = ACTIONS(4357), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_RPAREN] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4357), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_PLUS_PLUS] = ACTIONS(4357), - [anon_sym_DASH_DASH] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4357), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4357), - [anon_sym_CARET] = ACTIONS(4357), - [anon_sym_PIPE] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_LT] = ACTIONS(4357), - [anon_sym_GT_GT] = ACTIONS(4355), - [anon_sym_GT_GT_GT] = ACTIONS(4357), - [anon_sym_EQ_EQ] = ACTIONS(4357), - [anon_sym_BANG_EQ] = ACTIONS(4357), - [anon_sym_GT_EQ] = ACTIONS(4357), - [anon_sym_LT_EQ] = ACTIONS(4357), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_EQ_GT] = ACTIONS(4357), - [anon_sym_switch] = ACTIONS(4357), - [anon_sym_when] = ACTIONS(4357), - [anon_sym_DOT_DOT] = ACTIONS(4357), - [anon_sym_and] = ACTIONS(4357), - [anon_sym_or] = ACTIONS(4357), - [anon_sym_AMP_AMP] = ACTIONS(4357), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [sym_op_coalescing] = ACTIONS(4357), - [anon_sym_into] = ACTIONS(4357), - [anon_sym_on] = ACTIONS(4357), - [anon_sym_equals] = ACTIONS(4357), - [anon_sym_by] = ACTIONS(4357), - [anon_sym_as] = ACTIONS(4357), - [anon_sym_is] = ACTIONS(4357), - [anon_sym_DASH_GT] = ACTIONS(4357), - [anon_sym_with] = ACTIONS(4357), - [aux_sym_preproc_if_token3] = ACTIONS(4357), - [aux_sym_preproc_else_token1] = ACTIONS(4357), - [aux_sym_preproc_elif_token1] = ACTIONS(4357), + [sym__identifier_token] = ACTIONS(5444), + [anon_sym_extern] = ACTIONS(5444), + [anon_sym_alias] = ACTIONS(5444), + [anon_sym_global] = ACTIONS(5444), + [anon_sym_unsafe] = ACTIONS(5444), + [anon_sym_static] = ACTIONS(5444), + [anon_sym_LBRACK] = ACTIONS(5446), + [anon_sym_public] = ACTIONS(5444), + [anon_sym_private] = ACTIONS(5444), + [anon_sym_readonly] = ACTIONS(5444), + [anon_sym_abstract] = ACTIONS(5444), + [anon_sym_async] = ACTIONS(5444), + [anon_sym_const] = ACTIONS(5444), + [anon_sym_file] = ACTIONS(5444), + [anon_sym_fixed] = ACTIONS(5444), + [anon_sym_internal] = ACTIONS(5444), + [anon_sym_new] = ACTIONS(5444), + [anon_sym_override] = ACTIONS(5444), + [anon_sym_partial] = ACTIONS(5444), + [anon_sym_protected] = ACTIONS(5444), + [anon_sym_required] = ACTIONS(5444), + [anon_sym_sealed] = ACTIONS(5444), + [anon_sym_virtual] = ACTIONS(5444), + [anon_sym_volatile] = ACTIONS(5444), + [anon_sym_where] = ACTIONS(5444), + [anon_sym_notnull] = ACTIONS(5444), + [anon_sym_unmanaged] = ACTIONS(5444), + [sym_accessor_get] = ACTIONS(5444), + [sym_accessor_set] = ACTIONS(5444), + [sym_accessor_add] = ACTIONS(5444), + [sym_accessor_remove] = ACTIONS(5444), + [sym_accessor_init] = ACTIONS(5444), + [anon_sym_scoped] = ACTIONS(5444), + [anon_sym_var] = ACTIONS(5444), + [anon_sym_yield] = ACTIONS(5444), + [anon_sym_when] = ACTIONS(5444), + [anon_sym_from] = ACTIONS(5444), + [anon_sym_into] = ACTIONS(5444), + [anon_sym_join] = ACTIONS(5444), + [anon_sym_on] = ACTIONS(5444), + [anon_sym_equals] = ACTIONS(5444), + [anon_sym_let] = ACTIONS(5444), + [anon_sym_orderby] = ACTIONS(5444), + [anon_sym_ascending] = ACTIONS(5444), + [anon_sym_descending] = ACTIONS(5444), + [anon_sym_group] = ACTIONS(5444), + [anon_sym_by] = ACTIONS(5444), + [anon_sym_select] = ACTIONS(5444), + [sym_grit_metavariable] = ACTIONS(5446), + [aux_sym_preproc_if_token1] = ACTIONS(5446), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -617030,6 +609133,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4696] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4696), [sym_preproc_endregion] = STATE(4696), [sym_preproc_line] = STATE(4696), @@ -617039,58 +609157,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4696), [sym_preproc_define] = STATE(4696), [sym_preproc_undef] = STATE(4696), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_RBRACK] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_RPAREN] = ACTIONS(4341), - [anon_sym_LBRACE] = ACTIONS(4341), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4339), - [anon_sym_QMARK] = ACTIONS(4339), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_CARET] = ACTIONS(4341), - [anon_sym_PIPE] = ACTIONS(4339), - [anon_sym_AMP] = ACTIONS(4339), - [anon_sym_LT_LT] = ACTIONS(4341), - [anon_sym_GT_GT] = ACTIONS(4339), - [anon_sym_GT_GT_GT] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_EQ_GT] = ACTIONS(4341), - [anon_sym_switch] = ACTIONS(4341), - [anon_sym_when] = ACTIONS(4341), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_and] = ACTIONS(4341), - [anon_sym_or] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [sym_op_coalescing] = ACTIONS(4341), - [anon_sym_into] = ACTIONS(4341), - [anon_sym_on] = ACTIONS(4341), - [anon_sym_equals] = ACTIONS(4341), - [anon_sym_by] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4341), - [anon_sym_DASH_GT] = ACTIONS(4341), - [anon_sym_with] = ACTIONS(4341), - [aux_sym_preproc_if_token3] = ACTIONS(4341), - [aux_sym_preproc_else_token1] = ACTIONS(4341), - [aux_sym_preproc_elif_token1] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5360), + [anon_sym_equals] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -617103,6 +609204,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4697] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1405), + [sym_op_lte] = STATE(1405), + [sym_op_eq] = STATE(1404), + [sym_op_neq] = STATE(1404), + [sym_op_gt] = STATE(1405), + [sym_op_gte] = STATE(1405), + [sym_op_and] = STATE(1401), + [sym_op_or] = STATE(1400), + [sym_op_bitwise_and] = STATE(1399), + [sym_op_bitwise_xor] = STATE(1398), + [sym_op_plus] = STATE(1397), + [sym_op_minus] = STATE(1397), + [sym_op_multiply] = STATE(1407), [sym_preproc_region] = STATE(4697), [sym_preproc_endregion] = STATE(4697), [sym_preproc_line] = STATE(4697), @@ -617112,58 +609228,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4697), [sym_preproc_define] = STATE(4697), [sym_preproc_undef] = STATE(4697), - [anon_sym_SEMI] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_COLON] = ACTIONS(4316), - [anon_sym_COMMA] = ACTIONS(4316), - [anon_sym_RBRACK] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4316), - [anon_sym_RPAREN] = ACTIONS(4316), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_RBRACE] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4314), - [anon_sym_GT] = ACTIONS(4314), - [anon_sym_in] = ACTIONS(4314), - [anon_sym_QMARK] = ACTIONS(4314), - [anon_sym_BANG] = ACTIONS(4314), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_STAR] = ACTIONS(4316), - [anon_sym_SLASH] = ACTIONS(4314), - [anon_sym_PERCENT] = ACTIONS(4316), - [anon_sym_CARET] = ACTIONS(4316), - [anon_sym_PIPE] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4314), - [anon_sym_LT_LT] = ACTIONS(4316), - [anon_sym_GT_GT] = ACTIONS(4314), - [anon_sym_GT_GT_GT] = ACTIONS(4316), - [anon_sym_EQ_EQ] = ACTIONS(4316), - [anon_sym_BANG_EQ] = ACTIONS(4316), - [anon_sym_GT_EQ] = ACTIONS(4316), - [anon_sym_LT_EQ] = ACTIONS(4316), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_EQ_GT] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4316), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4316), - [anon_sym_PIPE_PIPE] = ACTIONS(4316), - [sym_op_coalescing] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4316), - [anon_sym_with] = ACTIONS(4316), - [aux_sym_preproc_if_token3] = ACTIONS(4316), - [aux_sym_preproc_else_token1] = ACTIONS(4316), - [aux_sym_preproc_elif_token1] = ACTIONS(4316), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7216), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7218), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7220), + [sym_op_right_shift] = ACTIONS(7222), + [sym_op_unsigned_right_shift] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7224), + [sym_op_modulo] = ACTIONS(7226), + [sym_op_coalescing] = ACTIONS(7228), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5364), + [anon_sym_equals] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(7230), + [anon_sym_is] = ACTIONS(7232), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -617185,58 +609284,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4698), [sym_preproc_define] = STATE(4698), [sym_preproc_undef] = STATE(4698), - [anon_sym_SEMI] = ACTIONS(4424), - [anon_sym_LBRACK] = ACTIONS(4424), - [anon_sym_COLON] = ACTIONS(4424), - [anon_sym_COMMA] = ACTIONS(4424), - [anon_sym_RBRACK] = ACTIONS(4424), - [anon_sym_LPAREN] = ACTIONS(4424), - [anon_sym_RPAREN] = ACTIONS(4424), - [anon_sym_LBRACE] = ACTIONS(4424), - [anon_sym_RBRACE] = ACTIONS(4424), - [anon_sym_LT] = ACTIONS(4422), - [anon_sym_GT] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4422), - [anon_sym_QMARK] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4424), - [anon_sym_DASH_DASH] = ACTIONS(4424), - [anon_sym_PLUS] = ACTIONS(4422), - [anon_sym_DASH] = ACTIONS(4422), - [anon_sym_STAR] = ACTIONS(4424), - [anon_sym_SLASH] = ACTIONS(4422), - [anon_sym_PERCENT] = ACTIONS(4424), - [anon_sym_CARET] = ACTIONS(4424), - [anon_sym_PIPE] = ACTIONS(4422), - [anon_sym_AMP] = ACTIONS(4422), - [anon_sym_LT_LT] = ACTIONS(4424), - [anon_sym_GT_GT] = ACTIONS(4422), - [anon_sym_GT_GT_GT] = ACTIONS(4424), - [anon_sym_EQ_EQ] = ACTIONS(4424), - [anon_sym_BANG_EQ] = ACTIONS(4424), - [anon_sym_GT_EQ] = ACTIONS(4424), - [anon_sym_LT_EQ] = ACTIONS(4424), - [anon_sym_DOT] = ACTIONS(4422), - [anon_sym_EQ_GT] = ACTIONS(4424), - [anon_sym_switch] = ACTIONS(4424), - [anon_sym_when] = ACTIONS(4424), - [anon_sym_DOT_DOT] = ACTIONS(4424), - [anon_sym_and] = ACTIONS(4424), - [anon_sym_or] = ACTIONS(4424), - [anon_sym_AMP_AMP] = ACTIONS(4424), - [anon_sym_PIPE_PIPE] = ACTIONS(4424), - [sym_op_coalescing] = ACTIONS(4424), - [anon_sym_into] = ACTIONS(4424), - [anon_sym_on] = ACTIONS(4424), - [anon_sym_equals] = ACTIONS(4424), - [anon_sym_by] = ACTIONS(4424), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_is] = ACTIONS(4424), - [anon_sym_DASH_GT] = ACTIONS(4424), - [anon_sym_with] = ACTIONS(4424), - [aux_sym_preproc_if_token3] = ACTIONS(4424), - [aux_sym_preproc_else_token1] = ACTIONS(4424), - [aux_sym_preproc_elif_token1] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(7240), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7242), + [anon_sym_DASH_EQ] = ACTIONS(7242), + [anon_sym_STAR_EQ] = ACTIONS(7242), + [anon_sym_SLASH_EQ] = ACTIONS(7242), + [anon_sym_PERCENT_EQ] = ACTIONS(7242), + [anon_sym_AMP_EQ] = ACTIONS(7242), + [anon_sym_CARET_EQ] = ACTIONS(7242), + [anon_sym_PIPE_EQ] = ACTIONS(7242), + [anon_sym_LT_LT_EQ] = ACTIONS(7242), + [anon_sym_GT_GT_EQ] = ACTIONS(7242), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7242), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7242), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_by] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -617249,6 +609346,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4699] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4699), [sym_preproc_endregion] = STATE(4699), [sym_preproc_line] = STATE(4699), @@ -617258,58 +609370,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4699), [sym_preproc_define] = STATE(4699), [sym_preproc_undef] = STATE(4699), - [anon_sym_SEMI] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_COLON] = ACTIONS(4337), - [anon_sym_COMMA] = ACTIONS(4337), - [anon_sym_RBRACK] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_RPAREN] = ACTIONS(4337), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_RBRACE] = ACTIONS(4337), - [anon_sym_LT] = ACTIONS(4335), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_in] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_PLUS_PLUS] = ACTIONS(4337), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4335), - [anon_sym_LT_LT] = ACTIONS(4337), - [anon_sym_GT_GT] = ACTIONS(4335), - [anon_sym_GT_GT_GT] = ACTIONS(4337), - [anon_sym_EQ_EQ] = ACTIONS(4337), - [anon_sym_BANG_EQ] = ACTIONS(4337), - [anon_sym_GT_EQ] = ACTIONS(4337), - [anon_sym_LT_EQ] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_EQ_GT] = ACTIONS(4337), - [anon_sym_switch] = ACTIONS(4337), - [anon_sym_when] = ACTIONS(4337), - [anon_sym_DOT_DOT] = ACTIONS(4337), - [anon_sym_and] = ACTIONS(4337), - [anon_sym_or] = ACTIONS(4337), - [anon_sym_AMP_AMP] = ACTIONS(4337), - [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [sym_op_coalescing] = ACTIONS(4337), - [anon_sym_into] = ACTIONS(4337), - [anon_sym_on] = ACTIONS(4337), - [anon_sym_equals] = ACTIONS(4337), - [anon_sym_by] = ACTIONS(4337), - [anon_sym_as] = ACTIONS(4337), - [anon_sym_is] = ACTIONS(4337), - [anon_sym_DASH_GT] = ACTIONS(4337), - [anon_sym_with] = ACTIONS(4337), - [aux_sym_preproc_if_token3] = ACTIONS(4337), - [aux_sym_preproc_else_token1] = ACTIONS(4337), - [aux_sym_preproc_elif_token1] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5314), + [anon_sym_by] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -617322,6 +609417,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4700] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4700), [sym_preproc_endregion] = STATE(4700), [sym_preproc_line] = STATE(4700), @@ -617331,57 +609441,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4700), [sym_preproc_define] = STATE(4700), [sym_preproc_undef] = STATE(4700), - [anon_sym_EQ] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(4554), - [anon_sym_COMMA] = ACTIONS(4554), - [anon_sym_LPAREN] = ACTIONS(4554), - [anon_sym_LT] = ACTIONS(4556), - [anon_sym_GT] = ACTIONS(4556), - [anon_sym_QMARK] = ACTIONS(4556), - [anon_sym_BANG] = ACTIONS(4556), - [anon_sym_PLUS_PLUS] = ACTIONS(4554), - [anon_sym_DASH_DASH] = ACTIONS(4554), - [anon_sym_PLUS] = ACTIONS(4556), - [anon_sym_DASH] = ACTIONS(4556), - [anon_sym_STAR] = ACTIONS(4556), - [anon_sym_SLASH] = ACTIONS(4556), - [anon_sym_PERCENT] = ACTIONS(4556), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_PIPE] = ACTIONS(4556), - [anon_sym_AMP] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4556), - [anon_sym_GT_GT] = ACTIONS(4556), - [anon_sym_GT_GT_GT] = ACTIONS(4556), - [anon_sym_EQ_EQ] = ACTIONS(4554), - [anon_sym_BANG_EQ] = ACTIONS(4554), - [anon_sym_GT_EQ] = ACTIONS(4554), - [anon_sym_LT_EQ] = ACTIONS(4554), - [anon_sym_DOT] = ACTIONS(4556), - [anon_sym_switch] = ACTIONS(4554), - [anon_sym_DOT_DOT] = ACTIONS(4554), - [anon_sym_and] = ACTIONS(4554), - [anon_sym_or] = ACTIONS(4554), - [anon_sym_PLUS_EQ] = ACTIONS(4554), - [anon_sym_DASH_EQ] = ACTIONS(4554), - [anon_sym_STAR_EQ] = ACTIONS(4554), - [anon_sym_SLASH_EQ] = ACTIONS(4554), - [anon_sym_PERCENT_EQ] = ACTIONS(4554), - [anon_sym_AMP_EQ] = ACTIONS(4554), - [anon_sym_CARET_EQ] = ACTIONS(4554), - [anon_sym_PIPE_EQ] = ACTIONS(4554), - [anon_sym_LT_LT_EQ] = ACTIONS(4554), - [anon_sym_GT_GT_EQ] = ACTIONS(4554), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4554), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4554), - [anon_sym_AMP_AMP] = ACTIONS(4554), - [anon_sym_PIPE_PIPE] = ACTIONS(4554), - [sym_op_coalescing] = ACTIONS(4556), - [anon_sym_into] = ACTIONS(4554), - [anon_sym_as] = ACTIONS(4554), - [anon_sym_is] = ACTIONS(4554), - [anon_sym_DASH_GT] = ACTIONS(4554), - [anon_sym_with] = ACTIONS(4554), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5334), + [anon_sym_QMARK] = ACTIONS(7192), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7186), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7180), + [sym_op_right_shift] = ACTIONS(7182), + [sym_op_unsigned_right_shift] = ACTIONS(7180), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7176), + [sym_op_modulo] = ACTIONS(7178), + [sym_op_coalescing] = ACTIONS(7190), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(7184), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -617392,9 +609486,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4554), }, [4701] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4701), [sym_preproc_endregion] = STATE(4701), [sym_preproc_line] = STATE(4701), @@ -617404,57 +609512,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4701), [sym_preproc_define] = STATE(4701), [sym_preproc_undef] = STATE(4701), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4972), - [anon_sym_COLON] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4972), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_PLUS_PLUS] = ACTIONS(4972), - [anon_sym_DASH_DASH] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4975), - [anon_sym_LT_LT] = ACTIONS(4975), - [anon_sym_GT_GT] = ACTIONS(4975), - [anon_sym_GT_GT_GT] = ACTIONS(4975), - [anon_sym_EQ_EQ] = ACTIONS(4972), - [anon_sym_BANG_EQ] = ACTIONS(4972), - [anon_sym_GT_EQ] = ACTIONS(4972), - [anon_sym_LT_EQ] = ACTIONS(4972), - [anon_sym_DOT] = ACTIONS(4975), - [anon_sym_switch] = ACTIONS(4972), - [anon_sym_DOT_DOT] = ACTIONS(4972), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4972), - [anon_sym_PIPE_PIPE] = ACTIONS(4972), - [sym_op_coalescing] = ACTIONS(4975), - [anon_sym_into] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(4972), - [anon_sym_is] = ACTIONS(4972), - [anon_sym_DASH_GT] = ACTIONS(4972), - [anon_sym_with] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_in] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -617465,9 +609557,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4970), }, [4702] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4702), [sym_preproc_endregion] = STATE(4702), [sym_preproc_line] = STATE(4702), @@ -617477,57 +609583,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4702), [sym_preproc_define] = STATE(4702), [sym_preproc_undef] = STATE(4702), - [anon_sym_EQ] = ACTIONS(4560), - [anon_sym_LBRACK] = ACTIONS(4558), - [anon_sym_COLON] = ACTIONS(4558), - [anon_sym_COMMA] = ACTIONS(4558), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_LT] = ACTIONS(4560), - [anon_sym_GT] = ACTIONS(4560), - [anon_sym_QMARK] = ACTIONS(4560), - [anon_sym_BANG] = ACTIONS(4560), - [anon_sym_PLUS_PLUS] = ACTIONS(4558), - [anon_sym_DASH_DASH] = ACTIONS(4558), - [anon_sym_PLUS] = ACTIONS(4560), - [anon_sym_DASH] = ACTIONS(4560), - [anon_sym_STAR] = ACTIONS(4560), - [anon_sym_SLASH] = ACTIONS(4560), - [anon_sym_PERCENT] = ACTIONS(4560), - [anon_sym_CARET] = ACTIONS(4560), - [anon_sym_PIPE] = ACTIONS(4560), - [anon_sym_AMP] = ACTIONS(4560), - [anon_sym_LT_LT] = ACTIONS(4560), - [anon_sym_GT_GT] = ACTIONS(4560), - [anon_sym_GT_GT_GT] = ACTIONS(4560), - [anon_sym_EQ_EQ] = ACTIONS(4558), - [anon_sym_BANG_EQ] = ACTIONS(4558), - [anon_sym_GT_EQ] = ACTIONS(4558), - [anon_sym_LT_EQ] = ACTIONS(4558), - [anon_sym_DOT] = ACTIONS(4560), - [anon_sym_switch] = ACTIONS(4558), - [anon_sym_DOT_DOT] = ACTIONS(4558), - [anon_sym_and] = ACTIONS(4558), - [anon_sym_or] = ACTIONS(4558), - [anon_sym_PLUS_EQ] = ACTIONS(4558), - [anon_sym_DASH_EQ] = ACTIONS(4558), - [anon_sym_STAR_EQ] = ACTIONS(4558), - [anon_sym_SLASH_EQ] = ACTIONS(4558), - [anon_sym_PERCENT_EQ] = ACTIONS(4558), - [anon_sym_AMP_EQ] = ACTIONS(4558), - [anon_sym_CARET_EQ] = ACTIONS(4558), - [anon_sym_PIPE_EQ] = ACTIONS(4558), - [anon_sym_LT_LT_EQ] = ACTIONS(4558), - [anon_sym_GT_GT_EQ] = ACTIONS(4558), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4558), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4558), - [anon_sym_AMP_AMP] = ACTIONS(4558), - [anon_sym_PIPE_PIPE] = ACTIONS(4558), - [sym_op_coalescing] = ACTIONS(4560), - [anon_sym_into] = ACTIONS(4558), - [anon_sym_as] = ACTIONS(4558), - [anon_sym_is] = ACTIONS(4558), - [anon_sym_DASH_GT] = ACTIONS(4558), - [anon_sym_with] = ACTIONS(4558), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_by] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -617538,9 +609628,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4558), }, [4703] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4703), [sym_preproc_endregion] = STATE(4703), [sym_preproc_line] = STATE(4703), @@ -617550,57 +609654,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4703), [sym_preproc_define] = STATE(4703), [sym_preproc_undef] = STATE(4703), - [anon_sym_EQ] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3955), - [anon_sym_GT] = ACTIONS(3955), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3955), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_CARET] = ACTIONS(3955), - [anon_sym_PIPE] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_LT_LT] = ACTIONS(3955), - [anon_sym_GT_GT] = ACTIONS(3955), - [anon_sym_GT_GT_GT] = ACTIONS(3955), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_switch] = ACTIONS(3957), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3957), - [anon_sym_or] = ACTIONS(3957), - [anon_sym_PLUS_EQ] = ACTIONS(3957), - [anon_sym_DASH_EQ] = ACTIONS(3957), - [anon_sym_STAR_EQ] = ACTIONS(3957), - [anon_sym_SLASH_EQ] = ACTIONS(3957), - [anon_sym_PERCENT_EQ] = ACTIONS(3957), - [anon_sym_AMP_EQ] = ACTIONS(3957), - [anon_sym_CARET_EQ] = ACTIONS(3957), - [anon_sym_PIPE_EQ] = ACTIONS(3957), - [anon_sym_LT_LT_EQ] = ACTIONS(3957), - [anon_sym_GT_GT_EQ] = ACTIONS(3957), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3957), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [sym_op_coalescing] = ACTIONS(3955), - [anon_sym_into] = ACTIONS(3957), - [anon_sym_as] = ACTIONS(3957), - [anon_sym_is] = ACTIONS(3957), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_by] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -617611,10 +609699,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3957), }, [4704] = { - [sym_initializer_expression] = STATE(4982), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4704), [sym_preproc_endregion] = STATE(4704), [sym_preproc_line] = STATE(4704), @@ -617624,57 +609725,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4704), [sym_preproc_define] = STATE(4704), [sym_preproc_undef] = STATE(4704), - [anon_sym_SEMI] = ACTIONS(5776), - [anon_sym_LBRACK] = ACTIONS(5776), - [anon_sym_COLON] = ACTIONS(5776), - [anon_sym_COMMA] = ACTIONS(5776), - [anon_sym_RBRACK] = ACTIONS(5776), - [anon_sym_LPAREN] = ACTIONS(5776), - [anon_sym_RPAREN] = ACTIONS(5776), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(5776), - [anon_sym_LT] = ACTIONS(5778), - [anon_sym_GT] = ACTIONS(5778), - [anon_sym_in] = ACTIONS(5776), - [anon_sym_QMARK] = ACTIONS(5778), - [anon_sym_BANG] = ACTIONS(5778), - [anon_sym_PLUS_PLUS] = ACTIONS(5776), - [anon_sym_DASH_DASH] = ACTIONS(5776), - [anon_sym_PLUS] = ACTIONS(5778), - [anon_sym_DASH] = ACTIONS(5778), - [anon_sym_STAR] = ACTIONS(5776), - [anon_sym_SLASH] = ACTIONS(5778), - [anon_sym_PERCENT] = ACTIONS(5776), - [anon_sym_CARET] = ACTIONS(5776), - [anon_sym_PIPE] = ACTIONS(5778), - [anon_sym_AMP] = ACTIONS(5778), - [anon_sym_LT_LT] = ACTIONS(5776), - [anon_sym_GT_GT] = ACTIONS(5778), - [anon_sym_GT_GT_GT] = ACTIONS(5776), - [anon_sym_EQ_EQ] = ACTIONS(5776), - [anon_sym_BANG_EQ] = ACTIONS(5776), - [anon_sym_GT_EQ] = ACTIONS(5776), - [anon_sym_LT_EQ] = ACTIONS(5776), - [anon_sym_DOT] = ACTIONS(5778), - [anon_sym_EQ_GT] = ACTIONS(5776), - [anon_sym_switch] = ACTIONS(5776), - [anon_sym_when] = ACTIONS(5776), - [anon_sym_DOT_DOT] = ACTIONS(5776), - [anon_sym_and] = ACTIONS(5776), - [anon_sym_or] = ACTIONS(5776), - [anon_sym_AMP_AMP] = ACTIONS(5776), - [anon_sym_PIPE_PIPE] = ACTIONS(5776), - [sym_op_coalescing] = ACTIONS(5776), - [anon_sym_on] = ACTIONS(5776), - [anon_sym_equals] = ACTIONS(5776), - [anon_sym_by] = ACTIONS(5776), - [anon_sym_as] = ACTIONS(5776), - [anon_sym_is] = ACTIONS(5776), - [anon_sym_DASH_GT] = ACTIONS(5776), - [anon_sym_with] = ACTIONS(5776), - [aux_sym_preproc_if_token3] = ACTIONS(5776), - [aux_sym_preproc_else_token1] = ACTIONS(5776), - [aux_sym_preproc_elif_token1] = ACTIONS(5776), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5308), + [anon_sym_by] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -617687,6 +609772,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4705] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4705), [sym_preproc_endregion] = STATE(4705), [sym_preproc_line] = STATE(4705), @@ -617696,58 +609796,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4705), [sym_preproc_define] = STATE(4705), [sym_preproc_undef] = STATE(4705), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_COLON] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_RBRACK] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4262), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_QMARK] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_CARET] = ACTIONS(4262), - [anon_sym_PIPE] = ACTIONS(4260), - [anon_sym_AMP] = ACTIONS(4260), - [anon_sym_LT_LT] = ACTIONS(4262), - [anon_sym_GT_GT] = ACTIONS(4260), - [anon_sym_GT_GT_GT] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_EQ_GT] = ACTIONS(4262), - [anon_sym_switch] = ACTIONS(4262), - [anon_sym_when] = ACTIONS(4262), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_and] = ACTIONS(4262), - [anon_sym_or] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [sym_op_coalescing] = ACTIONS(4262), - [anon_sym_into] = ACTIONS(4262), - [anon_sym_on] = ACTIONS(4262), - [anon_sym_equals] = ACTIONS(4262), - [anon_sym_by] = ACTIONS(4262), - [anon_sym_as] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4262), - [anon_sym_DASH_GT] = ACTIONS(4262), - [anon_sym_with] = ACTIONS(4262), - [aux_sym_preproc_if_token3] = ACTIONS(4262), - [aux_sym_preproc_else_token1] = ACTIONS(4262), - [aux_sym_preproc_elif_token1] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_in] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -617760,6 +609843,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4706] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1857), + [sym_op_lte] = STATE(1857), + [sym_op_eq] = STATE(1722), + [sym_op_neq] = STATE(1722), + [sym_op_gt] = STATE(1857), + [sym_op_gte] = STATE(1857), + [sym_op_and] = STATE(1717), + [sym_op_or] = STATE(1710), + [sym_op_bitwise_and] = STATE(1684), + [sym_op_bitwise_xor] = STATE(1666), + [sym_op_plus] = STATE(1652), + [sym_op_minus] = STATE(1652), + [sym_op_multiply] = STATE(1775), [sym_preproc_region] = STATE(4706), [sym_preproc_endregion] = STATE(4706), [sym_preproc_line] = STATE(4706), @@ -617769,58 +609867,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4706), [sym_preproc_define] = STATE(4706), [sym_preproc_undef] = STATE(4706), - [anon_sym_SEMI] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_COLON] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_RBRACK] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_RPAREN] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [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(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4017), - [anon_sym_SLASH] = ACTIONS(4008), - [anon_sym_PERCENT] = ACTIONS(4017), - [anon_sym_CARET] = ACTIONS(4017), - [anon_sym_PIPE] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(4017), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_GT_GT_GT] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4017), - [anon_sym_switch] = ACTIONS(4017), - [anon_sym_when] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(4017), - [anon_sym_and] = ACTIONS(4017), - [anon_sym_or] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [sym_op_coalescing] = ACTIONS(4017), - [anon_sym_into] = ACTIONS(4017), - [anon_sym_on] = ACTIONS(4017), - [anon_sym_equals] = ACTIONS(4017), - [anon_sym_by] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4017), - [anon_sym_DASH_GT] = ACTIONS(4017), - [anon_sym_with] = ACTIONS(4017), - [aux_sym_preproc_if_token3] = ACTIONS(4017), - [aux_sym_preproc_else_token1] = ACTIONS(4017), - [aux_sym_preproc_elif_token1] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_in] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(7174), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -617842,58 +609923,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4707), [sym_preproc_define] = STATE(4707), [sym_preproc_undef] = STATE(4707), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(6962), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_record] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_SEMI] = ACTIONS(5771), + [anon_sym_LBRACK] = ACTIONS(5771), + [anon_sym_COLON] = ACTIONS(5771), + [anon_sym_COMMA] = ACTIONS(5771), + [anon_sym_RBRACK] = ACTIONS(5771), + [anon_sym_LPAREN] = ACTIONS(5771), + [anon_sym_RPAREN] = ACTIONS(5771), + [anon_sym_RBRACE] = ACTIONS(5771), + [anon_sym_LT] = ACTIONS(5773), + [anon_sym_GT] = ACTIONS(5773), + [anon_sym_in] = ACTIONS(5771), + [anon_sym_QMARK] = ACTIONS(5773), + [anon_sym_DOT] = ACTIONS(5773), + [anon_sym_EQ_GT] = ACTIONS(5771), + [anon_sym_STAR] = ACTIONS(5771), + [anon_sym_switch] = ACTIONS(5771), + [anon_sym_when] = ACTIONS(5771), + [anon_sym_DOT_DOT] = ACTIONS(5771), + [anon_sym_LT_EQ] = ACTIONS(5771), + [anon_sym_GT_EQ] = ACTIONS(5771), + [anon_sym_and] = ACTIONS(5771), + [anon_sym_or] = ACTIONS(5771), + [anon_sym_EQ_EQ] = ACTIONS(5771), + [anon_sym_BANG_EQ] = ACTIONS(5771), + [anon_sym_AMP_AMP] = ACTIONS(5771), + [anon_sym_PIPE_PIPE] = ACTIONS(5771), + [anon_sym_AMP] = ACTIONS(5773), + [sym_op_bitwise_or] = ACTIONS(5773), + [anon_sym_CARET] = ACTIONS(5771), + [sym_op_left_shift] = ACTIONS(5771), + [sym_op_right_shift] = ACTIONS(5773), + [sym_op_unsigned_right_shift] = ACTIONS(5771), + [anon_sym_PLUS] = ACTIONS(5773), + [anon_sym_DASH] = ACTIONS(5773), + [sym_op_divide] = ACTIONS(5773), + [sym_op_modulo] = ACTIONS(5771), + [sym_op_coalescing] = ACTIONS(5771), + [anon_sym_BANG] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5771), + [anon_sym_DASH_DASH] = ACTIONS(5771), + [anon_sym_on] = ACTIONS(5771), + [anon_sym_equals] = ACTIONS(5771), + [anon_sym_by] = ACTIONS(5771), + [anon_sym_as] = ACTIONS(5771), + [anon_sym_is] = ACTIONS(5771), + [anon_sym_DASH_GT] = ACTIONS(5771), + [anon_sym_with] = ACTIONS(5771), + [aux_sym_preproc_if_token3] = ACTIONS(5771), + [aux_sym_preproc_else_token1] = ACTIONS(5771), + [aux_sym_preproc_elif_token1] = ACTIONS(5771), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -617906,6 +609985,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4708] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4708), [sym_preproc_endregion] = STATE(4708), [sym_preproc_line] = STATE(4708), @@ -617915,58 +610009,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4708), [sym_preproc_define] = STATE(4708), [sym_preproc_undef] = STATE(4708), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_RBRACE] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_in] = ACTIONS(4391), - [anon_sym_QMARK] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PLUS_PLUS] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_CARET] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_AMP] = ACTIONS(4391), - [anon_sym_LT_LT] = ACTIONS(4393), - [anon_sym_GT_GT] = ACTIONS(4391), - [anon_sym_GT_GT_GT] = ACTIONS(4393), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_GT_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(4393), - [anon_sym_DOT] = ACTIONS(4391), - [anon_sym_EQ_GT] = ACTIONS(4393), - [anon_sym_switch] = ACTIONS(4393), - [anon_sym_when] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4393), - [anon_sym_and] = ACTIONS(4393), - [anon_sym_or] = ACTIONS(4393), - [anon_sym_AMP_AMP] = ACTIONS(4393), - [anon_sym_PIPE_PIPE] = ACTIONS(4393), - [sym_op_coalescing] = ACTIONS(4393), - [anon_sym_into] = ACTIONS(4393), - [anon_sym_on] = ACTIONS(4393), - [anon_sym_equals] = ACTIONS(4393), - [anon_sym_by] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_DASH_GT] = ACTIONS(4393), - [anon_sym_with] = ACTIONS(4393), - [aux_sym_preproc_if_token3] = ACTIONS(4393), - [aux_sym_preproc_else_token1] = ACTIONS(4393), - [aux_sym_preproc_elif_token1] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7244), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -617979,6 +610056,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4709] = { + [sym_explicit_interface_specifier] = STATE(6211), + [sym__name] = STATE(6907), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7602), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4709), [sym_preproc_endregion] = STATE(4709), [sym_preproc_line] = STATE(4709), @@ -617988,58 +610084,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4709), [sym_preproc_define] = STATE(4709), [sym_preproc_undef] = STATE(4709), - [anon_sym_SEMI] = ACTIONS(5913), - [anon_sym_LBRACK] = ACTIONS(5913), - [anon_sym_COLON] = ACTIONS(5913), - [anon_sym_COMMA] = ACTIONS(5913), - [anon_sym_RBRACK] = ACTIONS(5913), - [anon_sym_LPAREN] = ACTIONS(5913), - [anon_sym_RPAREN] = ACTIONS(5913), - [anon_sym_LBRACE] = ACTIONS(5913), - [anon_sym_RBRACE] = ACTIONS(5913), - [anon_sym_LT] = ACTIONS(5915), - [anon_sym_GT] = ACTIONS(5915), - [anon_sym_in] = ACTIONS(5913), - [anon_sym_where] = ACTIONS(5913), - [anon_sym_QMARK] = ACTIONS(5915), - [anon_sym_BANG] = ACTIONS(5915), - [anon_sym_PLUS_PLUS] = ACTIONS(5913), - [anon_sym_DASH_DASH] = ACTIONS(5913), - [anon_sym_PLUS] = ACTIONS(5915), - [anon_sym_DASH] = ACTIONS(5915), - [anon_sym_STAR] = ACTIONS(5913), - [anon_sym_SLASH] = ACTIONS(5915), - [anon_sym_PERCENT] = ACTIONS(5913), - [anon_sym_CARET] = ACTIONS(5913), - [anon_sym_PIPE] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5915), - [anon_sym_LT_LT] = ACTIONS(5913), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5913), - [anon_sym_EQ_EQ] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5913), - [anon_sym_LT_EQ] = ACTIONS(5913), - [anon_sym_DOT] = ACTIONS(5915), - [anon_sym_EQ_GT] = ACTIONS(5913), - [anon_sym_switch] = ACTIONS(5913), - [anon_sym_when] = ACTIONS(5913), - [anon_sym_DOT_DOT] = ACTIONS(5913), - [anon_sym_and] = ACTIONS(5913), - [anon_sym_or] = ACTIONS(5913), - [anon_sym_AMP_AMP] = ACTIONS(5913), - [anon_sym_PIPE_PIPE] = ACTIONS(5913), - [sym_op_coalescing] = ACTIONS(5913), - [anon_sym_on] = ACTIONS(5913), - [anon_sym_equals] = ACTIONS(5913), - [anon_sym_by] = ACTIONS(5913), - [anon_sym_as] = ACTIONS(5913), - [anon_sym_is] = ACTIONS(5913), - [anon_sym_DASH_GT] = ACTIONS(5913), - [anon_sym_with] = ACTIONS(5913), - [aux_sym_preproc_if_token3] = ACTIONS(5913), - [aux_sym_preproc_else_token1] = ACTIONS(5913), - [aux_sym_preproc_elif_token1] = ACTIONS(5913), + [aux_sym_conversion_operator_declaration_repeat1] = STATE(5789), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(7074), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_operator] = ACTIONS(7076), + [anon_sym_checked] = ACTIONS(7076), + [anon_sym_scoped] = ACTIONS(7078), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -618061,58 +610136,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4710), [sym_preproc_define] = STATE(4710), [sym_preproc_undef] = STATE(4710), - [anon_sym_SEMI] = ACTIONS(4349), - [anon_sym_LBRACK] = ACTIONS(4349), - [anon_sym_COLON] = ACTIONS(4349), - [anon_sym_COMMA] = ACTIONS(4349), - [anon_sym_RBRACK] = ACTIONS(4349), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym_RPAREN] = ACTIONS(4349), - [anon_sym_LBRACE] = ACTIONS(4349), - [anon_sym_RBRACE] = ACTIONS(4349), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4347), - [anon_sym_QMARK] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_PLUS_PLUS] = ACTIONS(4349), - [anon_sym_DASH_DASH] = ACTIONS(4349), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4349), - [anon_sym_CARET] = ACTIONS(4349), - [anon_sym_PIPE] = ACTIONS(4347), - [anon_sym_AMP] = ACTIONS(4347), - [anon_sym_LT_LT] = ACTIONS(4349), - [anon_sym_GT_GT] = ACTIONS(4347), - [anon_sym_GT_GT_GT] = ACTIONS(4349), - [anon_sym_EQ_EQ] = ACTIONS(4349), - [anon_sym_BANG_EQ] = ACTIONS(4349), - [anon_sym_GT_EQ] = ACTIONS(4349), - [anon_sym_LT_EQ] = ACTIONS(4349), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_EQ_GT] = ACTIONS(4349), - [anon_sym_switch] = ACTIONS(4349), - [anon_sym_when] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4349), - [anon_sym_and] = ACTIONS(4349), - [anon_sym_or] = ACTIONS(4349), - [anon_sym_AMP_AMP] = ACTIONS(4349), - [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [sym_op_coalescing] = ACTIONS(4349), - [anon_sym_into] = ACTIONS(4349), - [anon_sym_on] = ACTIONS(4349), - [anon_sym_equals] = ACTIONS(4349), - [anon_sym_by] = ACTIONS(4349), - [anon_sym_as] = ACTIONS(4349), - [anon_sym_is] = ACTIONS(4349), - [anon_sym_DASH_GT] = ACTIONS(4349), - [anon_sym_with] = ACTIONS(4349), - [aux_sym_preproc_if_token3] = ACTIONS(4349), - [aux_sym_preproc_else_token1] = ACTIONS(4349), - [aux_sym_preproc_elif_token1] = ACTIONS(4349), + [sym__identifier_token] = ACTIONS(5438), + [anon_sym_extern] = ACTIONS(5438), + [anon_sym_alias] = ACTIONS(5438), + [anon_sym_global] = ACTIONS(5438), + [anon_sym_unsafe] = ACTIONS(5438), + [anon_sym_static] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5440), + [anon_sym_public] = ACTIONS(5438), + [anon_sym_private] = ACTIONS(5438), + [anon_sym_readonly] = ACTIONS(5438), + [anon_sym_abstract] = ACTIONS(5438), + [anon_sym_async] = ACTIONS(5438), + [anon_sym_const] = ACTIONS(5438), + [anon_sym_file] = ACTIONS(5438), + [anon_sym_fixed] = ACTIONS(5438), + [anon_sym_internal] = ACTIONS(5438), + [anon_sym_new] = ACTIONS(5438), + [anon_sym_override] = ACTIONS(5438), + [anon_sym_partial] = ACTIONS(5438), + [anon_sym_protected] = ACTIONS(5438), + [anon_sym_required] = ACTIONS(5438), + [anon_sym_sealed] = ACTIONS(5438), + [anon_sym_virtual] = ACTIONS(5438), + [anon_sym_volatile] = ACTIONS(5438), + [anon_sym_where] = ACTIONS(5438), + [anon_sym_notnull] = ACTIONS(5438), + [anon_sym_unmanaged] = ACTIONS(5438), + [sym_accessor_get] = ACTIONS(5438), + [sym_accessor_set] = ACTIONS(5438), + [sym_accessor_add] = ACTIONS(5438), + [sym_accessor_remove] = ACTIONS(5438), + [sym_accessor_init] = ACTIONS(5438), + [anon_sym_scoped] = ACTIONS(5438), + [anon_sym_var] = ACTIONS(5438), + [anon_sym_yield] = ACTIONS(5438), + [anon_sym_when] = ACTIONS(5438), + [anon_sym_from] = ACTIONS(5438), + [anon_sym_into] = ACTIONS(5438), + [anon_sym_join] = ACTIONS(5438), + [anon_sym_on] = ACTIONS(5438), + [anon_sym_equals] = ACTIONS(5438), + [anon_sym_let] = ACTIONS(5438), + [anon_sym_orderby] = ACTIONS(5438), + [anon_sym_ascending] = ACTIONS(5438), + [anon_sym_descending] = ACTIONS(5438), + [anon_sym_group] = ACTIONS(5438), + [anon_sym_by] = ACTIONS(5438), + [anon_sym_select] = ACTIONS(5438), + [sym_grit_metavariable] = ACTIONS(5440), + [aux_sym_preproc_if_token1] = ACTIONS(5440), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -618125,6 +610198,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4711] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4711), [sym_preproc_endregion] = STATE(4711), [sym_preproc_line] = STATE(4711), @@ -618134,58 +610222,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4711), [sym_preproc_define] = STATE(4711), [sym_preproc_undef] = STATE(4711), - [anon_sym_SEMI] = ACTIONS(4436), - [anon_sym_LBRACK] = ACTIONS(4436), - [anon_sym_COLON] = ACTIONS(4436), - [anon_sym_COMMA] = ACTIONS(4436), - [anon_sym_RBRACK] = ACTIONS(4436), - [anon_sym_LPAREN] = ACTIONS(4436), - [anon_sym_RPAREN] = ACTIONS(4436), - [anon_sym_LBRACE] = ACTIONS(4436), - [anon_sym_RBRACE] = ACTIONS(4436), - [anon_sym_LT] = ACTIONS(4434), - [anon_sym_GT] = ACTIONS(4434), - [anon_sym_in] = ACTIONS(4434), - [anon_sym_QMARK] = ACTIONS(4434), - [anon_sym_BANG] = ACTIONS(4434), - [anon_sym_PLUS_PLUS] = ACTIONS(4436), - [anon_sym_DASH_DASH] = ACTIONS(4436), - [anon_sym_PLUS] = ACTIONS(4434), - [anon_sym_DASH] = ACTIONS(4434), - [anon_sym_STAR] = ACTIONS(4436), - [anon_sym_SLASH] = ACTIONS(4434), - [anon_sym_PERCENT] = ACTIONS(4436), - [anon_sym_CARET] = ACTIONS(4436), - [anon_sym_PIPE] = ACTIONS(4434), - [anon_sym_AMP] = ACTIONS(4434), - [anon_sym_LT_LT] = ACTIONS(4436), - [anon_sym_GT_GT] = ACTIONS(4434), - [anon_sym_GT_GT_GT] = ACTIONS(4436), - [anon_sym_EQ_EQ] = ACTIONS(4436), - [anon_sym_BANG_EQ] = ACTIONS(4436), - [anon_sym_GT_EQ] = ACTIONS(4436), - [anon_sym_LT_EQ] = ACTIONS(4436), - [anon_sym_DOT] = ACTIONS(4434), - [anon_sym_EQ_GT] = ACTIONS(4436), - [anon_sym_switch] = ACTIONS(4436), - [anon_sym_when] = ACTIONS(4436), - [anon_sym_DOT_DOT] = ACTIONS(4436), - [anon_sym_and] = ACTIONS(4436), - [anon_sym_or] = ACTIONS(4436), - [anon_sym_AMP_AMP] = ACTIONS(4436), - [anon_sym_PIPE_PIPE] = ACTIONS(4436), - [sym_op_coalescing] = ACTIONS(4436), - [anon_sym_into] = ACTIONS(4436), - [anon_sym_on] = ACTIONS(4436), - [anon_sym_equals] = ACTIONS(4436), - [anon_sym_by] = ACTIONS(4436), - [anon_sym_as] = ACTIONS(4436), - [anon_sym_is] = ACTIONS(4436), - [anon_sym_DASH_GT] = ACTIONS(4436), - [anon_sym_with] = ACTIONS(4436), - [aux_sym_preproc_if_token3] = ACTIONS(4436), - [aux_sym_preproc_else_token1] = ACTIONS(4436), - [aux_sym_preproc_elif_token1] = ACTIONS(4436), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7143), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7145), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(7147), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5304), + [anon_sym_by] = ACTIONS(5304), + [anon_sym_as] = ACTIONS(7135), + [anon_sym_is] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -618207,57 +610278,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4712), [sym_preproc_define] = STATE(4712), [sym_preproc_undef] = STATE(4712), - [anon_sym_EQ] = ACTIONS(4564), - [anon_sym_LBRACK] = ACTIONS(4562), - [anon_sym_COLON] = ACTIONS(4562), - [anon_sym_COMMA] = ACTIONS(4562), - [anon_sym_LPAREN] = ACTIONS(4562), - [anon_sym_LT] = ACTIONS(4564), - [anon_sym_GT] = ACTIONS(4564), - [anon_sym_QMARK] = ACTIONS(4564), - [anon_sym_BANG] = ACTIONS(4564), - [anon_sym_PLUS_PLUS] = ACTIONS(4562), - [anon_sym_DASH_DASH] = ACTIONS(4562), - [anon_sym_PLUS] = ACTIONS(4564), - [anon_sym_DASH] = ACTIONS(4564), - [anon_sym_STAR] = ACTIONS(4564), - [anon_sym_SLASH] = ACTIONS(4564), - [anon_sym_PERCENT] = ACTIONS(4564), - [anon_sym_CARET] = ACTIONS(4564), - [anon_sym_PIPE] = ACTIONS(4564), - [anon_sym_AMP] = ACTIONS(4564), - [anon_sym_LT_LT] = ACTIONS(4564), - [anon_sym_GT_GT] = ACTIONS(4564), - [anon_sym_GT_GT_GT] = ACTIONS(4564), - [anon_sym_EQ_EQ] = ACTIONS(4562), - [anon_sym_BANG_EQ] = ACTIONS(4562), - [anon_sym_GT_EQ] = ACTIONS(4562), - [anon_sym_LT_EQ] = ACTIONS(4562), - [anon_sym_DOT] = ACTIONS(4564), - [anon_sym_switch] = ACTIONS(4562), - [anon_sym_DOT_DOT] = ACTIONS(4562), - [anon_sym_and] = ACTIONS(4562), - [anon_sym_or] = ACTIONS(4562), - [anon_sym_PLUS_EQ] = ACTIONS(4562), - [anon_sym_DASH_EQ] = ACTIONS(4562), - [anon_sym_STAR_EQ] = ACTIONS(4562), - [anon_sym_SLASH_EQ] = ACTIONS(4562), - [anon_sym_PERCENT_EQ] = ACTIONS(4562), - [anon_sym_AMP_EQ] = ACTIONS(4562), - [anon_sym_CARET_EQ] = ACTIONS(4562), - [anon_sym_PIPE_EQ] = ACTIONS(4562), - [anon_sym_LT_LT_EQ] = ACTIONS(4562), - [anon_sym_GT_GT_EQ] = ACTIONS(4562), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4562), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4562), - [anon_sym_AMP_AMP] = ACTIONS(4562), - [anon_sym_PIPE_PIPE] = ACTIONS(4562), - [sym_op_coalescing] = ACTIONS(4564), - [anon_sym_into] = ACTIONS(4562), - [anon_sym_as] = ACTIONS(4562), - [anon_sym_is] = ACTIONS(4562), - [anon_sym_DASH_GT] = ACTIONS(4562), - [anon_sym_with] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(6011), + [anon_sym_LBRACK] = ACTIONS(6011), + [anon_sym_COLON] = ACTIONS(6011), + [anon_sym_COMMA] = ACTIONS(6011), + [anon_sym_RBRACK] = ACTIONS(6011), + [anon_sym_LPAREN] = ACTIONS(6011), + [anon_sym_RPAREN] = ACTIONS(6011), + [anon_sym_RBRACE] = ACTIONS(6011), + [anon_sym_LT] = ACTIONS(6013), + [anon_sym_GT] = ACTIONS(6013), + [anon_sym_in] = ACTIONS(6011), + [anon_sym_QMARK] = ACTIONS(6013), + [anon_sym_DOT] = ACTIONS(6013), + [anon_sym_EQ_GT] = ACTIONS(6011), + [anon_sym_STAR] = ACTIONS(6011), + [anon_sym_switch] = ACTIONS(6011), + [anon_sym_when] = ACTIONS(6011), + [anon_sym_DOT_DOT] = ACTIONS(6011), + [anon_sym_LT_EQ] = ACTIONS(6011), + [anon_sym_GT_EQ] = ACTIONS(6011), + [anon_sym_and] = ACTIONS(6011), + [anon_sym_or] = ACTIONS(6011), + [anon_sym_EQ_EQ] = ACTIONS(6011), + [anon_sym_BANG_EQ] = ACTIONS(6011), + [anon_sym_AMP_AMP] = ACTIONS(6011), + [anon_sym_PIPE_PIPE] = ACTIONS(6011), + [anon_sym_AMP] = ACTIONS(6013), + [sym_op_bitwise_or] = ACTIONS(6013), + [anon_sym_CARET] = ACTIONS(6011), + [sym_op_left_shift] = ACTIONS(6011), + [sym_op_right_shift] = ACTIONS(6013), + [sym_op_unsigned_right_shift] = ACTIONS(6011), + [anon_sym_PLUS] = ACTIONS(6013), + [anon_sym_DASH] = ACTIONS(6013), + [sym_op_divide] = ACTIONS(6013), + [sym_op_modulo] = ACTIONS(6011), + [sym_op_coalescing] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6013), + [anon_sym_PLUS_PLUS] = ACTIONS(6011), + [anon_sym_DASH_DASH] = ACTIONS(6011), + [anon_sym_on] = ACTIONS(6011), + [anon_sym_equals] = ACTIONS(6011), + [anon_sym_by] = ACTIONS(6011), + [anon_sym_as] = ACTIONS(6011), + [anon_sym_is] = ACTIONS(6011), + [anon_sym_DASH_GT] = ACTIONS(6011), + [anon_sym_with] = ACTIONS(6011), + [aux_sym_preproc_if_token3] = ACTIONS(6011), + [aux_sym_preproc_else_token1] = ACTIONS(6011), + [aux_sym_preproc_elif_token1] = ACTIONS(6011), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -618268,7 +610338,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(4562), }, [4713] = { [sym_preproc_region] = STATE(4713), @@ -618280,58 +610349,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4713), [sym_preproc_define] = STATE(4713), [sym_preproc_undef] = STATE(4713), - [anon_sym_SEMI] = ACTIONS(5913), - [anon_sym_LBRACK] = ACTIONS(5913), - [anon_sym_COLON] = ACTIONS(5913), - [anon_sym_COMMA] = ACTIONS(5913), - [anon_sym_RBRACK] = ACTIONS(5913), - [anon_sym_LPAREN] = ACTIONS(5913), - [anon_sym_RPAREN] = ACTIONS(5913), - [anon_sym_LBRACE] = ACTIONS(5913), - [anon_sym_RBRACE] = ACTIONS(5913), - [anon_sym_LT] = ACTIONS(5915), - [anon_sym_GT] = ACTIONS(5915), - [anon_sym_in] = ACTIONS(5915), - [anon_sym_QMARK] = ACTIONS(5915), - [anon_sym_BANG] = ACTIONS(5915), - [anon_sym_PLUS_PLUS] = ACTIONS(5913), - [anon_sym_DASH_DASH] = ACTIONS(5913), - [anon_sym_PLUS] = ACTIONS(5915), - [anon_sym_DASH] = ACTIONS(5915), - [anon_sym_STAR] = ACTIONS(5913), - [anon_sym_SLASH] = ACTIONS(5915), - [anon_sym_PERCENT] = ACTIONS(5913), - [anon_sym_CARET] = ACTIONS(5913), - [anon_sym_PIPE] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5915), - [anon_sym_LT_LT] = ACTIONS(5913), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5913), - [anon_sym_EQ_EQ] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5913), - [anon_sym_LT_EQ] = ACTIONS(5913), - [anon_sym_DOT] = ACTIONS(5915), - [anon_sym_EQ_GT] = ACTIONS(5913), - [anon_sym_switch] = ACTIONS(5913), - [anon_sym_when] = ACTIONS(5913), - [anon_sym_DOT_DOT] = ACTIONS(5913), - [anon_sym_and] = ACTIONS(5913), - [anon_sym_or] = ACTIONS(5913), - [anon_sym_AMP_AMP] = ACTIONS(5913), - [anon_sym_PIPE_PIPE] = ACTIONS(5913), - [sym_op_coalescing] = ACTIONS(5913), - [anon_sym_into] = ACTIONS(5913), - [anon_sym_on] = ACTIONS(5913), - [anon_sym_equals] = ACTIONS(5913), - [anon_sym_by] = ACTIONS(5913), - [anon_sym_as] = ACTIONS(5913), - [anon_sym_is] = ACTIONS(5913), - [anon_sym_DASH_GT] = ACTIONS(5913), - [anon_sym_with] = ACTIONS(5913), - [aux_sym_preproc_if_token3] = ACTIONS(5913), - [aux_sym_preproc_else_token1] = ACTIONS(5913), - [aux_sym_preproc_elif_token1] = ACTIONS(5913), + [anon_sym_SEMI] = ACTIONS(5887), + [anon_sym_LBRACK] = ACTIONS(5887), + [anon_sym_COLON] = ACTIONS(5887), + [anon_sym_COMMA] = ACTIONS(5887), + [anon_sym_RBRACK] = ACTIONS(5887), + [anon_sym_LPAREN] = ACTIONS(5887), + [anon_sym_RPAREN] = ACTIONS(5887), + [anon_sym_RBRACE] = ACTIONS(5887), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_in] = ACTIONS(5887), + [anon_sym_QMARK] = ACTIONS(5889), + [anon_sym_DOT] = ACTIONS(5889), + [anon_sym_EQ_GT] = ACTIONS(5887), + [anon_sym_STAR] = ACTIONS(5887), + [anon_sym_switch] = ACTIONS(5887), + [anon_sym_when] = ACTIONS(5887), + [anon_sym_DOT_DOT] = ACTIONS(5887), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_and] = ACTIONS(5887), + [anon_sym_or] = ACTIONS(5887), + [anon_sym_EQ_EQ] = ACTIONS(5887), + [anon_sym_BANG_EQ] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5889), + [sym_op_bitwise_or] = ACTIONS(5889), + [anon_sym_CARET] = ACTIONS(5887), + [sym_op_left_shift] = ACTIONS(5887), + [sym_op_right_shift] = ACTIONS(5889), + [sym_op_unsigned_right_shift] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5889), + [anon_sym_DASH] = ACTIONS(5889), + [sym_op_divide] = ACTIONS(5889), + [sym_op_modulo] = ACTIONS(5887), + [sym_op_coalescing] = ACTIONS(5887), + [anon_sym_BANG] = ACTIONS(5889), + [anon_sym_PLUS_PLUS] = ACTIONS(5887), + [anon_sym_DASH_DASH] = ACTIONS(5887), + [anon_sym_on] = ACTIONS(5887), + [anon_sym_equals] = ACTIONS(5887), + [anon_sym_by] = ACTIONS(5887), + [anon_sym_as] = ACTIONS(5887), + [anon_sym_is] = ACTIONS(5887), + [anon_sym_DASH_GT] = ACTIONS(5887), + [anon_sym_with] = ACTIONS(5887), + [aux_sym_preproc_if_token3] = ACTIONS(5887), + [aux_sym_preproc_else_token1] = ACTIONS(5887), + [aux_sym_preproc_elif_token1] = ACTIONS(5887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -618353,58 +610420,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4714), [sym_preproc_define] = STATE(4714), [sym_preproc_undef] = STATE(4714), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(6964), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_record] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_SEMI] = ACTIONS(5767), + [anon_sym_LBRACK] = ACTIONS(5767), + [anon_sym_COLON] = ACTIONS(5767), + [anon_sym_COMMA] = ACTIONS(5767), + [anon_sym_RBRACK] = ACTIONS(5767), + [anon_sym_LPAREN] = ACTIONS(5767), + [anon_sym_RPAREN] = ACTIONS(5767), + [anon_sym_RBRACE] = ACTIONS(5767), + [anon_sym_LT] = ACTIONS(5769), + [anon_sym_GT] = ACTIONS(5769), + [anon_sym_in] = ACTIONS(5767), + [anon_sym_QMARK] = ACTIONS(5769), + [anon_sym_DOT] = ACTIONS(5769), + [anon_sym_EQ_GT] = ACTIONS(5767), + [anon_sym_STAR] = ACTIONS(5767), + [anon_sym_switch] = ACTIONS(5767), + [anon_sym_when] = ACTIONS(5767), + [anon_sym_DOT_DOT] = ACTIONS(5767), + [anon_sym_LT_EQ] = ACTIONS(5767), + [anon_sym_GT_EQ] = ACTIONS(5767), + [anon_sym_and] = ACTIONS(5767), + [anon_sym_or] = ACTIONS(5767), + [anon_sym_EQ_EQ] = ACTIONS(5767), + [anon_sym_BANG_EQ] = ACTIONS(5767), + [anon_sym_AMP_AMP] = ACTIONS(5767), + [anon_sym_PIPE_PIPE] = ACTIONS(5767), + [anon_sym_AMP] = ACTIONS(5769), + [sym_op_bitwise_or] = ACTIONS(5769), + [anon_sym_CARET] = ACTIONS(5767), + [sym_op_left_shift] = ACTIONS(5767), + [sym_op_right_shift] = ACTIONS(5769), + [sym_op_unsigned_right_shift] = ACTIONS(5767), + [anon_sym_PLUS] = ACTIONS(5769), + [anon_sym_DASH] = ACTIONS(5769), + [sym_op_divide] = ACTIONS(5769), + [sym_op_modulo] = ACTIONS(5767), + [sym_op_coalescing] = ACTIONS(5767), + [anon_sym_BANG] = ACTIONS(5769), + [anon_sym_PLUS_PLUS] = ACTIONS(5767), + [anon_sym_DASH_DASH] = ACTIONS(5767), + [anon_sym_on] = ACTIONS(5767), + [anon_sym_equals] = ACTIONS(5767), + [anon_sym_by] = ACTIONS(5767), + [anon_sym_as] = ACTIONS(5767), + [anon_sym_is] = ACTIONS(5767), + [anon_sym_DASH_GT] = ACTIONS(5767), + [anon_sym_with] = ACTIONS(5767), + [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), @@ -618417,6 +610482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4715] = { + [sym_argument_list] = STATE(3171), + [sym_initializer_expression] = STATE(3346), [sym_preproc_region] = STATE(4715), [sym_preproc_endregion] = STATE(4715), [sym_preproc_line] = STATE(4715), @@ -618426,58 +610493,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4715), [sym_preproc_define] = STATE(4715), [sym_preproc_undef] = STATE(4715), - [anon_sym_SEMI] = ACTIONS(5925), - [anon_sym_LBRACK] = ACTIONS(5925), - [anon_sym_COLON] = ACTIONS(5925), - [anon_sym_COMMA] = ACTIONS(5925), - [anon_sym_RBRACK] = ACTIONS(5925), - [anon_sym_LPAREN] = ACTIONS(5925), - [anon_sym_RPAREN] = ACTIONS(5925), - [anon_sym_RBRACE] = ACTIONS(5925), - [anon_sym_LT] = ACTIONS(5927), - [anon_sym_GT] = ACTIONS(5927), - [anon_sym_in] = ACTIONS(5925), - [anon_sym_QMARK] = ACTIONS(5927), - [anon_sym_BANG] = ACTIONS(5927), - [anon_sym_PLUS_PLUS] = ACTIONS(5925), - [anon_sym_DASH_DASH] = ACTIONS(5925), - [anon_sym_PLUS] = ACTIONS(5927), - [anon_sym_DASH] = ACTIONS(5927), - [anon_sym_STAR] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5927), - [anon_sym_PERCENT] = ACTIONS(5925), - [anon_sym_CARET] = ACTIONS(5925), - [anon_sym_PIPE] = ACTIONS(5927), - [anon_sym_AMP] = ACTIONS(5927), - [anon_sym_LT_LT] = ACTIONS(5925), - [anon_sym_GT_GT] = ACTIONS(5927), - [anon_sym_GT_GT_GT] = ACTIONS(5925), - [anon_sym_EQ_EQ] = ACTIONS(5925), - [anon_sym_BANG_EQ] = ACTIONS(5925), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(5927), - [anon_sym_EQ_GT] = ACTIONS(5925), - [anon_sym_switch] = ACTIONS(5925), - [anon_sym_when] = ACTIONS(5925), - [anon_sym_DOT_DOT] = ACTIONS(5925), - [anon_sym_and] = ACTIONS(5925), - [anon_sym_or] = ACTIONS(5925), - [anon_sym_AMP_AMP] = ACTIONS(5925), - [anon_sym_PIPE_PIPE] = ACTIONS(5925), - [sym_op_coalescing] = ACTIONS(5925), - [anon_sym_on] = ACTIONS(5925), - [anon_sym_equals] = ACTIONS(5925), - [anon_sym_by] = ACTIONS(5925), - [anon_sym_as] = ACTIONS(5925), - [anon_sym_is] = ACTIONS(5925), - [anon_sym_DASH_GT] = ACTIONS(5925), - [anon_sym_with] = ACTIONS(5925), - [anon_sym_DQUOTE] = ACTIONS(5925), - [sym_string_literal_encoding] = ACTIONS(6966), - [aux_sym_preproc_if_token3] = ACTIONS(5925), - [aux_sym_preproc_else_token1] = ACTIONS(5925), - [aux_sym_preproc_elif_token1] = ACTIONS(5925), + [anon_sym_SEMI] = ACTIONS(5500), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_COLON] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(5500), + [anon_sym_RBRACK] = ACTIONS(5500), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(5500), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(5500), + [anon_sym_LT] = ACTIONS(5504), + [anon_sym_GT] = ACTIONS(5504), + [anon_sym_in] = ACTIONS(5500), + [anon_sym_QMARK] = ACTIONS(5504), + [anon_sym_DOT] = ACTIONS(5504), + [anon_sym_EQ_GT] = ACTIONS(5500), + [anon_sym_STAR] = ACTIONS(5500), + [anon_sym_switch] = ACTIONS(5500), + [anon_sym_DOT_DOT] = ACTIONS(5500), + [anon_sym_LT_EQ] = ACTIONS(5500), + [anon_sym_GT_EQ] = ACTIONS(5500), + [anon_sym_EQ_EQ] = ACTIONS(5500), + [anon_sym_BANG_EQ] = ACTIONS(5500), + [anon_sym_AMP_AMP] = ACTIONS(5500), + [anon_sym_PIPE_PIPE] = ACTIONS(5500), + [anon_sym_AMP] = ACTIONS(5504), + [sym_op_bitwise_or] = ACTIONS(5504), + [anon_sym_CARET] = ACTIONS(5500), + [sym_op_left_shift] = ACTIONS(5500), + [sym_op_right_shift] = ACTIONS(5504), + [sym_op_unsigned_right_shift] = ACTIONS(5500), + [anon_sym_PLUS] = ACTIONS(5504), + [anon_sym_DASH] = ACTIONS(5504), + [sym_op_divide] = ACTIONS(5504), + [sym_op_modulo] = ACTIONS(5500), + [sym_op_coalescing] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5504), + [anon_sym_PLUS_PLUS] = ACTIONS(5500), + [anon_sym_DASH_DASH] = ACTIONS(5500), + [anon_sym_on] = ACTIONS(5500), + [anon_sym_equals] = ACTIONS(5500), + [anon_sym_by] = ACTIONS(5500), + [anon_sym_as] = ACTIONS(5500), + [anon_sym_is] = ACTIONS(5500), + [anon_sym_DASH_GT] = ACTIONS(5500), + [anon_sym_with] = ACTIONS(5500), + [aux_sym_preproc_if_token3] = ACTIONS(5500), + [aux_sym_preproc_else_token1] = ACTIONS(5500), + [aux_sym_preproc_elif_token1] = ACTIONS(5500), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -618499,68 +610562,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4716), [sym_preproc_define] = STATE(4716), [sym_preproc_undef] = STATE(4716), - [anon_sym_EQ] = ACTIONS(3966), - [anon_sym_LBRACK] = ACTIONS(3968), - [anon_sym_COLON] = ACTIONS(3968), - [anon_sym_COMMA] = ACTIONS(3968), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_LT] = ACTIONS(3966), - [anon_sym_GT] = ACTIONS(3966), - [anon_sym_QMARK] = ACTIONS(3966), - [anon_sym_BANG] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3966), - [anon_sym_SLASH] = ACTIONS(3966), - [anon_sym_PERCENT] = ACTIONS(3966), - [anon_sym_CARET] = ACTIONS(3966), - [anon_sym_PIPE] = ACTIONS(3966), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_LT_LT] = ACTIONS(3966), - [anon_sym_GT_GT] = ACTIONS(3966), - [anon_sym_GT_GT_GT] = ACTIONS(3966), - [anon_sym_EQ_EQ] = ACTIONS(3968), - [anon_sym_BANG_EQ] = ACTIONS(3968), - [anon_sym_GT_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3968), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_switch] = ACTIONS(3968), - [anon_sym_DOT_DOT] = ACTIONS(3968), - [anon_sym_and] = ACTIONS(3968), - [anon_sym_or] = ACTIONS(3968), - [anon_sym_PLUS_EQ] = ACTIONS(3968), - [anon_sym_DASH_EQ] = ACTIONS(3968), - [anon_sym_STAR_EQ] = ACTIONS(3968), - [anon_sym_SLASH_EQ] = ACTIONS(3968), - [anon_sym_PERCENT_EQ] = ACTIONS(3968), - [anon_sym_AMP_EQ] = ACTIONS(3968), - [anon_sym_CARET_EQ] = ACTIONS(3968), - [anon_sym_PIPE_EQ] = ACTIONS(3968), - [anon_sym_LT_LT_EQ] = ACTIONS(3968), - [anon_sym_GT_GT_EQ] = ACTIONS(3968), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3968), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_PIPE_PIPE] = ACTIONS(3968), - [sym_op_coalescing] = ACTIONS(3966), - [anon_sym_into] = ACTIONS(3968), - [anon_sym_as] = ACTIONS(3968), - [anon_sym_is] = ACTIONS(3968), - [anon_sym_DASH_GT] = ACTIONS(3968), - [anon_sym_with] = ACTIONS(3968), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3968), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_COLON] = ACTIONS(2267), + [anon_sym_COMMA] = ACTIONS(2267), + [anon_sym_RBRACK] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_RPAREN] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_GT] = ACTIONS(2269), + [anon_sym_in] = ACTIONS(2267), + [anon_sym_QMARK] = ACTIONS(2269), + [anon_sym_DOT] = ACTIONS(2269), + [anon_sym_EQ_GT] = ACTIONS(2267), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_switch] = ACTIONS(2267), + [anon_sym_when] = ACTIONS(2267), + [anon_sym_DOT_DOT] = ACTIONS(2267), + [anon_sym_LT_EQ] = ACTIONS(2267), + [anon_sym_GT_EQ] = ACTIONS(2267), + [anon_sym_and] = ACTIONS(2267), + [anon_sym_or] = ACTIONS(2267), + [anon_sym_EQ_EQ] = ACTIONS(2267), + [anon_sym_BANG_EQ] = ACTIONS(2267), + [anon_sym_AMP_AMP] = ACTIONS(2267), + [anon_sym_PIPE_PIPE] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2269), + [sym_op_bitwise_or] = ACTIONS(2269), + [anon_sym_CARET] = ACTIONS(2267), + [sym_op_left_shift] = ACTIONS(2267), + [sym_op_right_shift] = ACTIONS(2269), + [sym_op_unsigned_right_shift] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [sym_op_divide] = ACTIONS(2269), + [sym_op_modulo] = ACTIONS(2267), + [sym_op_coalescing] = ACTIONS(2267), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_on] = ACTIONS(2267), + [anon_sym_equals] = ACTIONS(2267), + [anon_sym_by] = ACTIONS(2267), + [anon_sym_as] = ACTIONS(2267), + [anon_sym_is] = ACTIONS(2267), + [anon_sym_DASH_GT] = ACTIONS(2267), + [anon_sym_with] = ACTIONS(2267), + [aux_sym_preproc_if_token3] = ACTIONS(2267), + [aux_sym_preproc_else_token1] = ACTIONS(2267), + [aux_sym_preproc_elif_token1] = ACTIONS(2267), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [4717] = { [sym_preproc_region] = STATE(4717), @@ -618572,57 +610633,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4717), [sym_preproc_define] = STATE(4717), [sym_preproc_undef] = STATE(4717), - [anon_sym_EQ] = ACTIONS(3978), - [anon_sym_LBRACK] = ACTIONS(3980), - [anon_sym_COLON] = ACTIONS(3980), - [anon_sym_COMMA] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym_LT] = ACTIONS(3978), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_QMARK] = ACTIONS(3978), - [anon_sym_BANG] = ACTIONS(3978), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3978), - [anon_sym_SLASH] = ACTIONS(3978), - [anon_sym_PERCENT] = ACTIONS(3978), - [anon_sym_CARET] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(3978), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_LT_LT] = ACTIONS(3978), - [anon_sym_GT_GT] = ACTIONS(3978), - [anon_sym_GT_GT_GT] = ACTIONS(3978), - [anon_sym_EQ_EQ] = ACTIONS(3980), - [anon_sym_BANG_EQ] = ACTIONS(3980), - [anon_sym_GT_EQ] = ACTIONS(3980), - [anon_sym_LT_EQ] = ACTIONS(3980), - [anon_sym_DOT] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3980), - [anon_sym_DOT_DOT] = ACTIONS(3980), - [anon_sym_and] = ACTIONS(3980), - [anon_sym_or] = ACTIONS(3980), - [anon_sym_PLUS_EQ] = ACTIONS(3980), - [anon_sym_DASH_EQ] = ACTIONS(3980), - [anon_sym_STAR_EQ] = ACTIONS(3980), - [anon_sym_SLASH_EQ] = ACTIONS(3980), - [anon_sym_PERCENT_EQ] = ACTIONS(3980), - [anon_sym_AMP_EQ] = ACTIONS(3980), - [anon_sym_CARET_EQ] = ACTIONS(3980), - [anon_sym_PIPE_EQ] = ACTIONS(3980), - [anon_sym_LT_LT_EQ] = ACTIONS(3980), - [anon_sym_GT_GT_EQ] = ACTIONS(3980), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3980), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_PIPE_PIPE] = ACTIONS(3980), - [sym_op_coalescing] = ACTIONS(3978), - [anon_sym_into] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(3980), - [anon_sym_is] = ACTIONS(3980), - [anon_sym_DASH_GT] = ACTIONS(3980), - [anon_sym_with] = ACTIONS(3980), + [sym__identifier_token] = ACTIONS(5448), + [anon_sym_extern] = ACTIONS(5448), + [anon_sym_alias] = ACTIONS(5448), + [anon_sym_global] = ACTIONS(5448), + [anon_sym_unsafe] = ACTIONS(5448), + [anon_sym_static] = ACTIONS(5448), + [anon_sym_LBRACK] = ACTIONS(5450), + [anon_sym_public] = ACTIONS(5448), + [anon_sym_private] = ACTIONS(5448), + [anon_sym_readonly] = ACTIONS(5448), + [anon_sym_abstract] = ACTIONS(5448), + [anon_sym_async] = ACTIONS(5448), + [anon_sym_const] = ACTIONS(5448), + [anon_sym_file] = ACTIONS(5448), + [anon_sym_fixed] = ACTIONS(5448), + [anon_sym_internal] = ACTIONS(5448), + [anon_sym_new] = ACTIONS(5448), + [anon_sym_override] = ACTIONS(5448), + [anon_sym_partial] = ACTIONS(5448), + [anon_sym_protected] = ACTIONS(5448), + [anon_sym_required] = ACTIONS(5448), + [anon_sym_sealed] = ACTIONS(5448), + [anon_sym_virtual] = ACTIONS(5448), + [anon_sym_volatile] = ACTIONS(5448), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_notnull] = ACTIONS(5448), + [anon_sym_unmanaged] = ACTIONS(5448), + [sym_accessor_get] = ACTIONS(5448), + [sym_accessor_set] = ACTIONS(5448), + [sym_accessor_add] = ACTIONS(5448), + [sym_accessor_remove] = ACTIONS(5448), + [sym_accessor_init] = ACTIONS(5448), + [anon_sym_scoped] = ACTIONS(5448), + [anon_sym_var] = ACTIONS(5448), + [anon_sym_yield] = ACTIONS(5448), + [anon_sym_when] = ACTIONS(5448), + [anon_sym_from] = ACTIONS(5448), + [anon_sym_into] = ACTIONS(5448), + [anon_sym_join] = ACTIONS(5448), + [anon_sym_on] = ACTIONS(5448), + [anon_sym_equals] = ACTIONS(5448), + [anon_sym_let] = ACTIONS(5448), + [anon_sym_orderby] = ACTIONS(5448), + [anon_sym_ascending] = ACTIONS(5448), + [anon_sym_descending] = ACTIONS(5448), + [anon_sym_group] = ACTIONS(5448), + [anon_sym_by] = ACTIONS(5448), + [anon_sym_select] = ACTIONS(5448), + [sym_grit_metavariable] = ACTIONS(5450), + [aux_sym_preproc_if_token1] = ACTIONS(5450), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -618633,7 +610693,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(3980), }, [4718] = { [sym_preproc_region] = STATE(4718), @@ -618645,58 +610704,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4718), [sym_preproc_define] = STATE(4718), [sym_preproc_undef] = STATE(4718), - [anon_sym_SEMI] = ACTIONS(4312), - [anon_sym_LBRACK] = ACTIONS(4312), - [anon_sym_COLON] = ACTIONS(4312), - [anon_sym_COMMA] = ACTIONS(4312), - [anon_sym_RBRACK] = ACTIONS(4312), - [anon_sym_LPAREN] = ACTIONS(4312), - [anon_sym_RPAREN] = ACTIONS(4312), - [anon_sym_LBRACE] = ACTIONS(4312), - [anon_sym_RBRACE] = ACTIONS(4312), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym_GT] = ACTIONS(4310), - [anon_sym_in] = ACTIONS(4310), - [anon_sym_QMARK] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(4310), - [anon_sym_PLUS_PLUS] = ACTIONS(4312), - [anon_sym_DASH_DASH] = ACTIONS(4312), - [anon_sym_PLUS] = ACTIONS(4310), - [anon_sym_DASH] = ACTIONS(4310), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_SLASH] = ACTIONS(4310), - [anon_sym_PERCENT] = ACTIONS(4312), - [anon_sym_CARET] = ACTIONS(4312), - [anon_sym_PIPE] = ACTIONS(4310), - [anon_sym_AMP] = ACTIONS(4310), - [anon_sym_LT_LT] = ACTIONS(4312), - [anon_sym_GT_GT] = ACTIONS(4310), - [anon_sym_GT_GT_GT] = ACTIONS(4312), - [anon_sym_EQ_EQ] = ACTIONS(4312), - [anon_sym_BANG_EQ] = ACTIONS(4312), - [anon_sym_GT_EQ] = ACTIONS(4312), - [anon_sym_LT_EQ] = ACTIONS(4312), - [anon_sym_DOT] = ACTIONS(4310), - [anon_sym_EQ_GT] = ACTIONS(4312), - [anon_sym_switch] = ACTIONS(4312), - [anon_sym_when] = ACTIONS(4312), - [anon_sym_DOT_DOT] = ACTIONS(4312), - [anon_sym_and] = ACTIONS(4312), - [anon_sym_or] = ACTIONS(4312), - [anon_sym_AMP_AMP] = ACTIONS(4312), - [anon_sym_PIPE_PIPE] = ACTIONS(4312), - [sym_op_coalescing] = ACTIONS(4312), - [anon_sym_into] = ACTIONS(4312), - [anon_sym_on] = ACTIONS(4312), - [anon_sym_equals] = ACTIONS(4312), - [anon_sym_by] = ACTIONS(4312), - [anon_sym_as] = ACTIONS(4312), - [anon_sym_is] = ACTIONS(4312), - [anon_sym_DASH_GT] = ACTIONS(4312), - [anon_sym_with] = ACTIONS(4312), - [aux_sym_preproc_if_token3] = ACTIONS(4312), - [aux_sym_preproc_else_token1] = ACTIONS(4312), - [aux_sym_preproc_elif_token1] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_in] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -618718,58 +610775,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4719), [sym_preproc_define] = STATE(4719), [sym_preproc_undef] = STATE(4719), - [anon_sym_SEMI] = ACTIONS(5879), - [anon_sym_LBRACK] = ACTIONS(5879), - [anon_sym_COLON] = ACTIONS(5879), - [anon_sym_COMMA] = ACTIONS(5879), - [anon_sym_RBRACK] = ACTIONS(5879), - [anon_sym_LPAREN] = ACTIONS(5879), - [anon_sym_RPAREN] = ACTIONS(5879), - [anon_sym_RBRACE] = ACTIONS(5879), - [anon_sym_LT] = ACTIONS(5881), - [anon_sym_GT] = ACTIONS(5881), - [anon_sym_in] = ACTIONS(5881), - [anon_sym_QMARK] = ACTIONS(5881), - [anon_sym_BANG] = ACTIONS(5881), - [anon_sym_PLUS_PLUS] = ACTIONS(5879), - [anon_sym_DASH_DASH] = ACTIONS(5879), - [anon_sym_PLUS] = ACTIONS(5881), - [anon_sym_DASH] = ACTIONS(5881), - [anon_sym_STAR] = ACTIONS(5879), - [anon_sym_SLASH] = ACTIONS(5881), - [anon_sym_PERCENT] = ACTIONS(5879), - [anon_sym_CARET] = ACTIONS(5879), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_AMP] = ACTIONS(5881), - [anon_sym_LT_LT] = ACTIONS(5879), - [anon_sym_GT_GT] = ACTIONS(5881), - [anon_sym_GT_GT_GT] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5879), - [anon_sym_BANG_EQ] = ACTIONS(5879), - [anon_sym_GT_EQ] = ACTIONS(5879), - [anon_sym_LT_EQ] = ACTIONS(5879), - [anon_sym_DOT] = ACTIONS(5881), - [anon_sym_EQ_GT] = ACTIONS(5879), - [anon_sym_switch] = ACTIONS(5879), - [anon_sym_when] = ACTIONS(5879), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_and] = ACTIONS(5879), - [anon_sym_or] = ACTIONS(5879), - [anon_sym_AMP_AMP] = ACTIONS(5879), - [anon_sym_PIPE_PIPE] = ACTIONS(5879), - [sym_op_coalescing] = ACTIONS(5879), - [anon_sym_into] = ACTIONS(5879), - [anon_sym_on] = ACTIONS(5879), - [anon_sym_equals] = ACTIONS(5879), - [anon_sym_by] = ACTIONS(5879), - [anon_sym_as] = ACTIONS(5879), - [anon_sym_is] = ACTIONS(5879), - [anon_sym_DASH_GT] = ACTIONS(5879), - [anon_sym_with] = ACTIONS(5879), - [aux_sym_raw_string_literal_token1] = ACTIONS(6968), - [aux_sym_preproc_if_token3] = ACTIONS(5879), - [aux_sym_preproc_else_token1] = ACTIONS(5879), - [aux_sym_preproc_elif_token1] = ACTIONS(5879), + [anon_sym_SEMI] = ACTIONS(5903), + [anon_sym_LBRACK] = ACTIONS(5903), + [anon_sym_COLON] = ACTIONS(5903), + [anon_sym_COMMA] = ACTIONS(5903), + [anon_sym_RBRACK] = ACTIONS(5903), + [anon_sym_LPAREN] = ACTIONS(5903), + [anon_sym_RPAREN] = ACTIONS(5903), + [anon_sym_RBRACE] = ACTIONS(5903), + [anon_sym_LT] = ACTIONS(5905), + [anon_sym_GT] = ACTIONS(5905), + [anon_sym_in] = ACTIONS(5903), + [anon_sym_QMARK] = ACTIONS(5905), + [anon_sym_DOT] = ACTIONS(5905), + [anon_sym_EQ_GT] = ACTIONS(5903), + [anon_sym_STAR] = ACTIONS(5903), + [anon_sym_switch] = ACTIONS(5903), + [anon_sym_when] = ACTIONS(5903), + [anon_sym_DOT_DOT] = ACTIONS(5903), + [anon_sym_LT_EQ] = ACTIONS(5903), + [anon_sym_GT_EQ] = ACTIONS(5903), + [anon_sym_and] = ACTIONS(5903), + [anon_sym_or] = ACTIONS(5903), + [anon_sym_EQ_EQ] = ACTIONS(5903), + [anon_sym_BANG_EQ] = ACTIONS(5903), + [anon_sym_AMP_AMP] = ACTIONS(5903), + [anon_sym_PIPE_PIPE] = ACTIONS(5903), + [anon_sym_AMP] = ACTIONS(5905), + [sym_op_bitwise_or] = ACTIONS(5905), + [anon_sym_CARET] = ACTIONS(5903), + [sym_op_left_shift] = ACTIONS(5903), + [sym_op_right_shift] = ACTIONS(5905), + [sym_op_unsigned_right_shift] = ACTIONS(5903), + [anon_sym_PLUS] = ACTIONS(5905), + [anon_sym_DASH] = ACTIONS(5905), + [sym_op_divide] = ACTIONS(5905), + [sym_op_modulo] = ACTIONS(5903), + [sym_op_coalescing] = ACTIONS(5903), + [anon_sym_BANG] = ACTIONS(5905), + [anon_sym_PLUS_PLUS] = ACTIONS(5903), + [anon_sym_DASH_DASH] = ACTIONS(5903), + [anon_sym_on] = ACTIONS(5903), + [anon_sym_equals] = ACTIONS(5903), + [anon_sym_by] = ACTIONS(5903), + [anon_sym_as] = ACTIONS(5903), + [anon_sym_is] = ACTIONS(5903), + [anon_sym_DASH_GT] = ACTIONS(5903), + [anon_sym_with] = ACTIONS(5903), + [aux_sym_preproc_if_token3] = ACTIONS(5903), + [aux_sym_preproc_else_token1] = ACTIONS(5903), + [aux_sym_preproc_elif_token1] = ACTIONS(5903), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -618782,6 +610837,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4720] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1577), + [sym_op_lte] = STATE(1577), + [sym_op_eq] = STATE(1575), + [sym_op_neq] = STATE(1575), + [sym_op_gt] = STATE(1577), + [sym_op_gte] = STATE(1577), + [sym_op_and] = STATE(1574), + [sym_op_or] = STATE(1573), + [sym_op_bitwise_and] = STATE(1572), + [sym_op_bitwise_xor] = STATE(1571), + [sym_op_plus] = STATE(1570), + [sym_op_minus] = STATE(1570), + [sym_op_multiply] = STATE(1579), [sym_preproc_region] = STATE(4720), [sym_preproc_endregion] = STATE(4720), [sym_preproc_line] = STATE(4720), @@ -618791,58 +610861,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4720), [sym_preproc_define] = STATE(4720), [sym_preproc_undef] = STATE(4720), - [anon_sym_SEMI] = ACTIONS(4440), - [anon_sym_LBRACK] = ACTIONS(4440), - [anon_sym_COLON] = ACTIONS(4440), - [anon_sym_COMMA] = ACTIONS(4440), - [anon_sym_RBRACK] = ACTIONS(4440), - [anon_sym_LPAREN] = ACTIONS(4440), - [anon_sym_RPAREN] = ACTIONS(4440), - [anon_sym_LBRACE] = ACTIONS(4440), - [anon_sym_RBRACE] = ACTIONS(4440), - [anon_sym_LT] = ACTIONS(4438), - [anon_sym_GT] = ACTIONS(4438), - [anon_sym_in] = ACTIONS(4438), - [anon_sym_QMARK] = ACTIONS(4438), - [anon_sym_BANG] = ACTIONS(4438), - [anon_sym_PLUS_PLUS] = ACTIONS(4440), - [anon_sym_DASH_DASH] = ACTIONS(4440), - [anon_sym_PLUS] = ACTIONS(4438), - [anon_sym_DASH] = ACTIONS(4438), - [anon_sym_STAR] = ACTIONS(4440), - [anon_sym_SLASH] = ACTIONS(4438), - [anon_sym_PERCENT] = ACTIONS(4440), - [anon_sym_CARET] = ACTIONS(4440), - [anon_sym_PIPE] = ACTIONS(4438), - [anon_sym_AMP] = ACTIONS(4438), - [anon_sym_LT_LT] = ACTIONS(4440), - [anon_sym_GT_GT] = ACTIONS(4438), - [anon_sym_GT_GT_GT] = ACTIONS(4440), - [anon_sym_EQ_EQ] = ACTIONS(4440), - [anon_sym_BANG_EQ] = ACTIONS(4440), - [anon_sym_GT_EQ] = ACTIONS(4440), - [anon_sym_LT_EQ] = ACTIONS(4440), - [anon_sym_DOT] = ACTIONS(4438), - [anon_sym_EQ_GT] = ACTIONS(4440), - [anon_sym_switch] = ACTIONS(4440), - [anon_sym_when] = ACTIONS(4440), - [anon_sym_DOT_DOT] = ACTIONS(4440), - [anon_sym_and] = ACTIONS(4440), - [anon_sym_or] = ACTIONS(4440), - [anon_sym_AMP_AMP] = ACTIONS(4440), - [anon_sym_PIPE_PIPE] = ACTIONS(4440), - [sym_op_coalescing] = ACTIONS(4440), - [anon_sym_into] = ACTIONS(4440), - [anon_sym_on] = ACTIONS(4440), - [anon_sym_equals] = ACTIONS(4440), - [anon_sym_by] = ACTIONS(4440), - [anon_sym_as] = ACTIONS(4440), - [anon_sym_is] = ACTIONS(4440), - [anon_sym_DASH_GT] = ACTIONS(4440), - [anon_sym_with] = ACTIONS(4440), - [aux_sym_preproc_if_token3] = ACTIONS(4440), - [aux_sym_preproc_else_token1] = ACTIONS(4440), - [aux_sym_preproc_elif_token1] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7143), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5600), + [anon_sym_DOT_DOT] = ACTIONS(7046), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7145), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7131), + [sym_op_right_shift] = ACTIONS(7133), + [sym_op_unsigned_right_shift] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7048), + [sym_op_modulo] = ACTIONS(7050), + [sym_op_coalescing] = ACTIONS(7147), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_into] = ACTIONS(5232), + [anon_sym_by] = ACTIONS(5232), + [anon_sym_as] = ACTIONS(7135), + [anon_sym_is] = ACTIONS(7137), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5622), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -618864,58 +610917,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4721), [sym_preproc_define] = STATE(4721), [sym_preproc_undef] = STATE(4721), - [anon_sym_SEMI] = ACTIONS(4466), - [anon_sym_LBRACK] = ACTIONS(4466), - [anon_sym_COLON] = ACTIONS(4466), - [anon_sym_COMMA] = ACTIONS(4466), - [anon_sym_RBRACK] = ACTIONS(4466), - [anon_sym_LPAREN] = ACTIONS(4466), - [anon_sym_RPAREN] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4466), - [anon_sym_RBRACE] = ACTIONS(4466), - [anon_sym_LT] = ACTIONS(4464), - [anon_sym_GT] = ACTIONS(4464), - [anon_sym_in] = ACTIONS(4464), - [anon_sym_QMARK] = ACTIONS(4464), - [anon_sym_BANG] = ACTIONS(4464), - [anon_sym_PLUS_PLUS] = ACTIONS(4466), - [anon_sym_DASH_DASH] = ACTIONS(4466), - [anon_sym_PLUS] = ACTIONS(4464), - [anon_sym_DASH] = ACTIONS(4464), - [anon_sym_STAR] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4464), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_PIPE] = ACTIONS(4464), - [anon_sym_AMP] = ACTIONS(4464), - [anon_sym_LT_LT] = ACTIONS(4466), - [anon_sym_GT_GT] = ACTIONS(4464), - [anon_sym_GT_GT_GT] = ACTIONS(4466), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_GT_EQ] = ACTIONS(4466), - [anon_sym_LT_EQ] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4464), - [anon_sym_EQ_GT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4466), - [anon_sym_when] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4466), - [anon_sym_and] = ACTIONS(4466), - [anon_sym_or] = ACTIONS(4466), - [anon_sym_AMP_AMP] = ACTIONS(4466), - [anon_sym_PIPE_PIPE] = ACTIONS(4466), - [sym_op_coalescing] = ACTIONS(4466), - [anon_sym_into] = ACTIONS(4466), - [anon_sym_on] = ACTIONS(4466), - [anon_sym_equals] = ACTIONS(4466), - [anon_sym_by] = ACTIONS(4466), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_DASH_GT] = ACTIONS(4466), - [anon_sym_with] = ACTIONS(4466), - [aux_sym_preproc_if_token3] = ACTIONS(4466), - [aux_sym_preproc_else_token1] = ACTIONS(4466), - [aux_sym_preproc_elif_token1] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(5971), + [anon_sym_LBRACK] = ACTIONS(5971), + [anon_sym_COLON] = ACTIONS(5971), + [anon_sym_COMMA] = ACTIONS(5971), + [anon_sym_RBRACK] = ACTIONS(5971), + [anon_sym_LPAREN] = ACTIONS(5971), + [anon_sym_RPAREN] = ACTIONS(5971), + [anon_sym_RBRACE] = ACTIONS(5971), + [anon_sym_LT] = ACTIONS(5973), + [anon_sym_GT] = ACTIONS(5973), + [anon_sym_in] = ACTIONS(5971), + [anon_sym_QMARK] = ACTIONS(5973), + [anon_sym_DOT] = ACTIONS(5973), + [anon_sym_EQ_GT] = ACTIONS(5971), + [anon_sym_STAR] = ACTIONS(5971), + [anon_sym_switch] = ACTIONS(5971), + [anon_sym_when] = ACTIONS(5971), + [anon_sym_DOT_DOT] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_and] = ACTIONS(5971), + [anon_sym_or] = ACTIONS(5971), + [anon_sym_EQ_EQ] = ACTIONS(5971), + [anon_sym_BANG_EQ] = ACTIONS(5971), + [anon_sym_AMP_AMP] = ACTIONS(5971), + [anon_sym_PIPE_PIPE] = ACTIONS(5971), + [anon_sym_AMP] = ACTIONS(5973), + [sym_op_bitwise_or] = ACTIONS(5973), + [anon_sym_CARET] = ACTIONS(5971), + [sym_op_left_shift] = ACTIONS(5971), + [sym_op_right_shift] = ACTIONS(5973), + [sym_op_unsigned_right_shift] = ACTIONS(5971), + [anon_sym_PLUS] = ACTIONS(5973), + [anon_sym_DASH] = ACTIONS(5973), + [sym_op_divide] = ACTIONS(5973), + [sym_op_modulo] = ACTIONS(5971), + [sym_op_coalescing] = ACTIONS(5971), + [anon_sym_BANG] = ACTIONS(5973), + [anon_sym_PLUS_PLUS] = ACTIONS(5971), + [anon_sym_DASH_DASH] = ACTIONS(5971), + [anon_sym_on] = ACTIONS(5971), + [anon_sym_equals] = ACTIONS(5971), + [anon_sym_by] = ACTIONS(5971), + [anon_sym_as] = ACTIONS(5971), + [anon_sym_is] = ACTIONS(5971), + [anon_sym_DASH_GT] = ACTIONS(5971), + [anon_sym_with] = ACTIONS(5971), + [aux_sym_preproc_if_token3] = ACTIONS(5971), + [aux_sym_preproc_else_token1] = ACTIONS(5971), + [aux_sym_preproc_elif_token1] = ACTIONS(5971), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -618937,57 +610988,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4722), [sym_preproc_define] = STATE(4722), [sym_preproc_undef] = STATE(4722), - [anon_sym_EQ] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3976), - [anon_sym_COLON] = ACTIONS(3976), - [anon_sym_COMMA] = ACTIONS(3976), - [anon_sym_LPAREN] = ACTIONS(3976), - [anon_sym_LT] = ACTIONS(3974), - [anon_sym_GT] = ACTIONS(3974), - [anon_sym_QMARK] = ACTIONS(3974), - [anon_sym_BANG] = ACTIONS(3974), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3974), - [anon_sym_PERCENT] = ACTIONS(3974), - [anon_sym_CARET] = ACTIONS(3974), - [anon_sym_PIPE] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_LT_LT] = ACTIONS(3974), - [anon_sym_GT_GT] = ACTIONS(3974), - [anon_sym_GT_GT_GT] = ACTIONS(3974), - [anon_sym_EQ_EQ] = ACTIONS(3976), - [anon_sym_BANG_EQ] = ACTIONS(3976), - [anon_sym_GT_EQ] = ACTIONS(3976), - [anon_sym_LT_EQ] = ACTIONS(3976), - [anon_sym_DOT] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3976), - [anon_sym_DOT_DOT] = ACTIONS(3976), - [anon_sym_and] = ACTIONS(3976), - [anon_sym_or] = ACTIONS(3976), - [anon_sym_PLUS_EQ] = ACTIONS(3976), - [anon_sym_DASH_EQ] = ACTIONS(3976), - [anon_sym_STAR_EQ] = ACTIONS(3976), - [anon_sym_SLASH_EQ] = ACTIONS(3976), - [anon_sym_PERCENT_EQ] = ACTIONS(3976), - [anon_sym_AMP_EQ] = ACTIONS(3976), - [anon_sym_CARET_EQ] = ACTIONS(3976), - [anon_sym_PIPE_EQ] = ACTIONS(3976), - [anon_sym_LT_LT_EQ] = ACTIONS(3976), - [anon_sym_GT_GT_EQ] = ACTIONS(3976), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3976), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_PIPE_PIPE] = ACTIONS(3976), - [sym_op_coalescing] = ACTIONS(3974), - [anon_sym_into] = ACTIONS(3976), - [anon_sym_as] = ACTIONS(3976), - [anon_sym_is] = ACTIONS(3976), - [anon_sym_DASH_GT] = ACTIONS(3976), - [anon_sym_with] = ACTIONS(3976), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LBRACK] = ACTIONS(5943), + [anon_sym_COLON] = ACTIONS(5943), + [anon_sym_COMMA] = ACTIONS(5943), + [anon_sym_RBRACK] = ACTIONS(5943), + [anon_sym_LPAREN] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_RBRACE] = ACTIONS(5943), + [anon_sym_LT] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5945), + [anon_sym_in] = ACTIONS(5943), + [anon_sym_QMARK] = ACTIONS(5945), + [anon_sym_DOT] = ACTIONS(5945), + [anon_sym_EQ_GT] = ACTIONS(5943), + [anon_sym_STAR] = ACTIONS(5943), + [anon_sym_switch] = ACTIONS(5943), + [anon_sym_when] = ACTIONS(5943), + [anon_sym_DOT_DOT] = ACTIONS(5943), + [anon_sym_LT_EQ] = ACTIONS(5943), + [anon_sym_GT_EQ] = ACTIONS(5943), + [anon_sym_and] = ACTIONS(5943), + [anon_sym_or] = ACTIONS(5943), + [anon_sym_EQ_EQ] = ACTIONS(5943), + [anon_sym_BANG_EQ] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5945), + [sym_op_bitwise_or] = ACTIONS(5945), + [anon_sym_CARET] = ACTIONS(5943), + [sym_op_left_shift] = ACTIONS(5943), + [sym_op_right_shift] = ACTIONS(5945), + [sym_op_unsigned_right_shift] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5945), + [anon_sym_DASH] = ACTIONS(5945), + [sym_op_divide] = ACTIONS(5945), + [sym_op_modulo] = ACTIONS(5943), + [sym_op_coalescing] = ACTIONS(5943), + [anon_sym_BANG] = ACTIONS(5945), + [anon_sym_PLUS_PLUS] = ACTIONS(5943), + [anon_sym_DASH_DASH] = ACTIONS(5943), + [anon_sym_on] = ACTIONS(5943), + [anon_sym_equals] = ACTIONS(5943), + [anon_sym_by] = ACTIONS(5943), + [anon_sym_as] = ACTIONS(5943), + [anon_sym_is] = ACTIONS(5943), + [anon_sym_DASH_GT] = ACTIONS(5943), + [anon_sym_with] = ACTIONS(5943), + [aux_sym_preproc_if_token3] = ACTIONS(5943), + [aux_sym_preproc_else_token1] = ACTIONS(5943), + [aux_sym_preproc_elif_token1] = ACTIONS(5943), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -618998,9 +611048,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3976), }, [4723] = { + [sym_argument_list] = STATE(4981), + [sym__name] = STATE(2458), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_type] = STATE(4510), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5066), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_identifier] = STATE(2392), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(4723), [sym_preproc_endregion] = STATE(4723), [sym_preproc_line] = STATE(4723), @@ -619010,57 +611078,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4723), [sym_preproc_define] = STATE(4723), [sym_preproc_undef] = STATE(4723), - [anon_sym_EQ] = ACTIONS(4540), - [anon_sym_LBRACK] = ACTIONS(4538), - [anon_sym_COLON] = ACTIONS(4538), - [anon_sym_COMMA] = ACTIONS(4538), - [anon_sym_LPAREN] = ACTIONS(4538), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_QMARK] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4540), - [anon_sym_PLUS_PLUS] = ACTIONS(4538), - [anon_sym_DASH_DASH] = ACTIONS(4538), - [anon_sym_PLUS] = ACTIONS(4540), - [anon_sym_DASH] = ACTIONS(4540), - [anon_sym_STAR] = ACTIONS(4540), - [anon_sym_SLASH] = ACTIONS(4540), - [anon_sym_PERCENT] = ACTIONS(4540), - [anon_sym_CARET] = ACTIONS(4540), - [anon_sym_PIPE] = ACTIONS(4540), - [anon_sym_AMP] = ACTIONS(4540), - [anon_sym_LT_LT] = ACTIONS(4540), - [anon_sym_GT_GT] = ACTIONS(4540), - [anon_sym_GT_GT_GT] = ACTIONS(4540), - [anon_sym_EQ_EQ] = ACTIONS(4538), - [anon_sym_BANG_EQ] = ACTIONS(4538), - [anon_sym_GT_EQ] = ACTIONS(4538), - [anon_sym_LT_EQ] = ACTIONS(4538), - [anon_sym_DOT] = ACTIONS(4540), - [anon_sym_switch] = ACTIONS(4538), - [anon_sym_DOT_DOT] = ACTIONS(4538), - [anon_sym_and] = ACTIONS(4538), - [anon_sym_or] = ACTIONS(4538), - [anon_sym_PLUS_EQ] = ACTIONS(4538), - [anon_sym_DASH_EQ] = ACTIONS(4538), - [anon_sym_STAR_EQ] = ACTIONS(4538), - [anon_sym_SLASH_EQ] = ACTIONS(4538), - [anon_sym_PERCENT_EQ] = ACTIONS(4538), - [anon_sym_AMP_EQ] = ACTIONS(4538), - [anon_sym_CARET_EQ] = ACTIONS(4538), - [anon_sym_PIPE_EQ] = ACTIONS(4538), - [anon_sym_LT_LT_EQ] = ACTIONS(4538), - [anon_sym_GT_GT_EQ] = ACTIONS(4538), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4538), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4538), - [anon_sym_AMP_AMP] = ACTIONS(4538), - [anon_sym_PIPE_PIPE] = ACTIONS(4538), - [sym_op_coalescing] = ACTIONS(4540), - [anon_sym_into] = ACTIONS(4538), - [anon_sym_as] = ACTIONS(4538), - [anon_sym_is] = ACTIONS(4538), - [anon_sym_DASH_GT] = ACTIONS(4538), - [anon_sym_with] = ACTIONS(4538), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(7250), + [anon_sym_LPAREN] = ACTIONS(7252), + [anon_sym_ref] = ACTIONS(4460), + [anon_sym_LBRACE] = ACTIONS(7254), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_where] = ACTIONS(4425), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_scoped] = ACTIONS(7256), + [anon_sym_var] = ACTIONS(7258), + [sym_predefined_type] = ACTIONS(7260), + [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), + [sym_grit_metavariable] = ACTIONS(7262), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -619071,9 +611118,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4538), }, [4724] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4724), [sym_preproc_endregion] = STATE(4724), [sym_preproc_line] = STATE(4724), @@ -619083,58 +611144,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4724), [sym_preproc_define] = STATE(4724), [sym_preproc_undef] = STATE(4724), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(6970), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_record] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -619147,6 +611190,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4725] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4725), [sym_preproc_endregion] = STATE(4725), [sym_preproc_line] = STATE(4725), @@ -619156,58 +611214,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4725), [sym_preproc_define] = STATE(4725), [sym_preproc_undef] = STATE(4725), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COLON] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(4353), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_in] = ACTIONS(4351), - [anon_sym_QMARK] = ACTIONS(4351), - [anon_sym_BANG] = ACTIONS(4351), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_SLASH] = ACTIONS(4351), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_AMP] = ACTIONS(4351), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4351), - [anon_sym_GT_GT_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ_GT] = ACTIONS(4353), - [anon_sym_switch] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_and] = ACTIONS(4353), - [anon_sym_or] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [sym_op_coalescing] = ACTIONS(4353), - [anon_sym_into] = ACTIONS(4353), - [anon_sym_on] = ACTIONS(4353), - [anon_sym_equals] = ACTIONS(4353), - [anon_sym_by] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(4353), - [anon_sym_with] = ACTIONS(4353), - [aux_sym_preproc_if_token3] = ACTIONS(4353), - [aux_sym_preproc_else_token1] = ACTIONS(4353), - [aux_sym_preproc_elif_token1] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(7266), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -619220,6 +611260,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4726] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4726), [sym_preproc_endregion] = STATE(4726), [sym_preproc_line] = STATE(4726), @@ -619229,58 +611284,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4726), [sym_preproc_define] = STATE(4726), [sym_preproc_undef] = STATE(4726), - [anon_sym_SEMI] = ACTIONS(4363), - [anon_sym_LBRACK] = ACTIONS(4363), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_COMMA] = ACTIONS(4363), - [anon_sym_RBRACK] = ACTIONS(4363), - [anon_sym_LPAREN] = ACTIONS(4363), - [anon_sym_RPAREN] = ACTIONS(4363), - [anon_sym_LBRACE] = ACTIONS(4363), - [anon_sym_RBRACE] = ACTIONS(4363), - [anon_sym_LT] = ACTIONS(4361), - [anon_sym_GT] = ACTIONS(4361), - [anon_sym_in] = ACTIONS(4361), - [anon_sym_QMARK] = ACTIONS(4361), - [anon_sym_BANG] = ACTIONS(4361), - [anon_sym_PLUS_PLUS] = ACTIONS(4363), - [anon_sym_DASH_DASH] = ACTIONS(4363), - [anon_sym_PLUS] = ACTIONS(4361), - [anon_sym_DASH] = ACTIONS(4361), - [anon_sym_STAR] = ACTIONS(4363), - [anon_sym_SLASH] = ACTIONS(4361), - [anon_sym_PERCENT] = ACTIONS(4363), - [anon_sym_CARET] = ACTIONS(4363), - [anon_sym_PIPE] = ACTIONS(4361), - [anon_sym_AMP] = ACTIONS(4361), - [anon_sym_LT_LT] = ACTIONS(4363), - [anon_sym_GT_GT] = ACTIONS(4361), - [anon_sym_GT_GT_GT] = ACTIONS(4363), - [anon_sym_EQ_EQ] = ACTIONS(4363), - [anon_sym_BANG_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_DOT] = ACTIONS(4361), - [anon_sym_EQ_GT] = ACTIONS(4363), - [anon_sym_switch] = ACTIONS(4363), - [anon_sym_when] = ACTIONS(4363), - [anon_sym_DOT_DOT] = ACTIONS(4363), - [anon_sym_and] = ACTIONS(4363), - [anon_sym_or] = ACTIONS(4363), - [anon_sym_AMP_AMP] = ACTIONS(4363), - [anon_sym_PIPE_PIPE] = ACTIONS(4363), - [sym_op_coalescing] = ACTIONS(4363), - [anon_sym_into] = ACTIONS(4363), - [anon_sym_on] = ACTIONS(4363), - [anon_sym_equals] = ACTIONS(4363), - [anon_sym_by] = ACTIONS(4363), - [anon_sym_as] = ACTIONS(4363), - [anon_sym_is] = ACTIONS(4363), - [anon_sym_DASH_GT] = ACTIONS(4363), - [anon_sym_with] = ACTIONS(4363), - [aux_sym_preproc_if_token3] = ACTIONS(4363), - [aux_sym_preproc_else_token1] = ACTIONS(4363), - [aux_sym_preproc_elif_token1] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(7268), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -619293,7 +611330,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4727] = { - [sym_initializer_expression] = STATE(5028), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4727), [sym_preproc_endregion] = STATE(4727), [sym_preproc_line] = STATE(4727), @@ -619303,57 +611354,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4727), [sym_preproc_define] = STATE(4727), [sym_preproc_undef] = STATE(4727), - [anon_sym_SEMI] = ACTIONS(5755), - [anon_sym_LBRACK] = ACTIONS(5755), - [anon_sym_COLON] = ACTIONS(5755), - [anon_sym_COMMA] = ACTIONS(5755), - [anon_sym_RBRACK] = ACTIONS(5755), - [anon_sym_LPAREN] = ACTIONS(5755), - [anon_sym_RPAREN] = ACTIONS(5755), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(5755), - [anon_sym_LT] = ACTIONS(5757), - [anon_sym_GT] = ACTIONS(5757), - [anon_sym_in] = ACTIONS(5755), - [anon_sym_QMARK] = ACTIONS(5757), - [anon_sym_BANG] = ACTIONS(5757), - [anon_sym_PLUS_PLUS] = ACTIONS(5755), - [anon_sym_DASH_DASH] = ACTIONS(5755), - [anon_sym_PLUS] = ACTIONS(5757), - [anon_sym_DASH] = ACTIONS(5757), - [anon_sym_STAR] = ACTIONS(5755), - [anon_sym_SLASH] = ACTIONS(5757), - [anon_sym_PERCENT] = ACTIONS(5755), - [anon_sym_CARET] = ACTIONS(5755), - [anon_sym_PIPE] = ACTIONS(5757), - [anon_sym_AMP] = ACTIONS(5757), - [anon_sym_LT_LT] = ACTIONS(5755), - [anon_sym_GT_GT] = ACTIONS(5757), - [anon_sym_GT_GT_GT] = ACTIONS(5755), - [anon_sym_EQ_EQ] = ACTIONS(5755), - [anon_sym_BANG_EQ] = ACTIONS(5755), - [anon_sym_GT_EQ] = ACTIONS(5755), - [anon_sym_LT_EQ] = ACTIONS(5755), - [anon_sym_DOT] = ACTIONS(5757), - [anon_sym_EQ_GT] = ACTIONS(5755), - [anon_sym_switch] = ACTIONS(5755), - [anon_sym_when] = ACTIONS(5755), - [anon_sym_DOT_DOT] = ACTIONS(5755), - [anon_sym_and] = ACTIONS(5755), - [anon_sym_or] = ACTIONS(5755), - [anon_sym_AMP_AMP] = ACTIONS(5755), - [anon_sym_PIPE_PIPE] = ACTIONS(5755), - [sym_op_coalescing] = ACTIONS(5755), - [anon_sym_on] = ACTIONS(5755), - [anon_sym_equals] = ACTIONS(5755), - [anon_sym_by] = ACTIONS(5755), - [anon_sym_as] = ACTIONS(5755), - [anon_sym_is] = ACTIONS(5755), - [anon_sym_DASH_GT] = ACTIONS(5755), - [anon_sym_with] = ACTIONS(5755), - [aux_sym_preproc_if_token3] = ACTIONS(5755), - [aux_sym_preproc_else_token1] = ACTIONS(5755), - [aux_sym_preproc_elif_token1] = ACTIONS(5755), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7270), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5296), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7272), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7274), + [sym_op_right_shift] = ACTIONS(7276), + [sym_op_unsigned_right_shift] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(7282), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7284), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -619366,6 +611400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4728] = { + [sym_block] = STATE(2068), [sym_preproc_region] = STATE(4728), [sym_preproc_endregion] = STATE(4728), [sym_preproc_line] = STATE(4728), @@ -619375,57 +611410,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4728), [sym_preproc_define] = STATE(4728), [sym_preproc_undef] = STATE(4728), - [anon_sym_EQ] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4534), - [anon_sym_COLON] = ACTIONS(4534), - [anon_sym_COMMA] = ACTIONS(4534), - [anon_sym_LPAREN] = ACTIONS(4534), - [anon_sym_LT] = ACTIONS(4536), - [anon_sym_GT] = ACTIONS(4536), - [anon_sym_QMARK] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4534), - [anon_sym_DASH_DASH] = ACTIONS(4534), - [anon_sym_PLUS] = ACTIONS(4536), - [anon_sym_DASH] = ACTIONS(4536), - [anon_sym_STAR] = ACTIONS(4536), - [anon_sym_SLASH] = ACTIONS(4536), - [anon_sym_PERCENT] = ACTIONS(4536), - [anon_sym_CARET] = ACTIONS(4536), - [anon_sym_PIPE] = ACTIONS(4536), - [anon_sym_AMP] = ACTIONS(4536), - [anon_sym_LT_LT] = ACTIONS(4536), - [anon_sym_GT_GT] = ACTIONS(4536), - [anon_sym_GT_GT_GT] = ACTIONS(4536), - [anon_sym_EQ_EQ] = ACTIONS(4534), - [anon_sym_BANG_EQ] = ACTIONS(4534), - [anon_sym_GT_EQ] = ACTIONS(4534), - [anon_sym_LT_EQ] = ACTIONS(4534), - [anon_sym_DOT] = ACTIONS(4536), - [anon_sym_switch] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4534), - [anon_sym_and] = ACTIONS(4534), - [anon_sym_or] = ACTIONS(4534), - [anon_sym_PLUS_EQ] = ACTIONS(4534), - [anon_sym_DASH_EQ] = ACTIONS(4534), - [anon_sym_STAR_EQ] = ACTIONS(4534), - [anon_sym_SLASH_EQ] = ACTIONS(4534), - [anon_sym_PERCENT_EQ] = ACTIONS(4534), - [anon_sym_AMP_EQ] = ACTIONS(4534), - [anon_sym_CARET_EQ] = ACTIONS(4534), - [anon_sym_PIPE_EQ] = ACTIONS(4534), - [anon_sym_LT_LT_EQ] = ACTIONS(4534), - [anon_sym_GT_GT_EQ] = ACTIONS(4534), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4534), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4534), - [anon_sym_AMP_AMP] = ACTIONS(4534), - [anon_sym_PIPE_PIPE] = ACTIONS(4534), - [sym_op_coalescing] = ACTIONS(4536), - [anon_sym_into] = ACTIONS(4534), - [anon_sym_as] = ACTIONS(4534), - [anon_sym_is] = ACTIONS(4534), - [anon_sym_DASH_GT] = ACTIONS(4534), - [anon_sym_with] = ACTIONS(4534), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(6227), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -619436,9 +611468,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4534), }, [4729] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4729), [sym_preproc_endregion] = STATE(4729), [sym_preproc_line] = STATE(4729), @@ -619448,58 +611494,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4729), [sym_preproc_define] = STATE(4729), [sym_preproc_undef] = STATE(4729), - [anon_sym_EQ] = ACTIONS(6972), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(5684), - [anon_sym_RBRACE] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(6974), - [anon_sym_DASH_EQ] = ACTIONS(6974), - [anon_sym_STAR_EQ] = ACTIONS(6974), - [anon_sym_SLASH_EQ] = ACTIONS(6974), - [anon_sym_PERCENT_EQ] = ACTIONS(6974), - [anon_sym_AMP_EQ] = ACTIONS(6974), - [anon_sym_CARET_EQ] = ACTIONS(6974), - [anon_sym_PIPE_EQ] = ACTIONS(6974), - [anon_sym_LT_LT_EQ] = ACTIONS(6974), - [anon_sym_GT_GT_EQ] = ACTIONS(6974), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6974), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6974), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -619512,7 +611540,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4730] = { - [sym_initializer_expression] = STATE(5053), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4730), [sym_preproc_endregion] = STATE(4730), [sym_preproc_line] = STATE(4730), @@ -619522,57 +611564,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4730), [sym_preproc_define] = STATE(4730), [sym_preproc_undef] = STATE(4730), - [anon_sym_SEMI] = ACTIONS(5734), - [anon_sym_LBRACK] = ACTIONS(5736), - [anon_sym_COLON] = ACTIONS(5734), - [anon_sym_COMMA] = ACTIONS(5734), - [anon_sym_RBRACK] = ACTIONS(5734), - [anon_sym_LPAREN] = ACTIONS(5734), - [anon_sym_RPAREN] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(5734), - [anon_sym_LT] = ACTIONS(5739), - [anon_sym_GT] = ACTIONS(5739), - [anon_sym_in] = ACTIONS(5734), - [anon_sym_QMARK] = ACTIONS(5739), - [anon_sym_BANG] = ACTIONS(5739), - [anon_sym_PLUS_PLUS] = ACTIONS(5734), - [anon_sym_DASH_DASH] = ACTIONS(5734), - [anon_sym_PLUS] = ACTIONS(5739), - [anon_sym_DASH] = ACTIONS(5739), - [anon_sym_STAR] = ACTIONS(5734), - [anon_sym_SLASH] = ACTIONS(5739), - [anon_sym_PERCENT] = ACTIONS(5734), - [anon_sym_CARET] = ACTIONS(5734), - [anon_sym_PIPE] = ACTIONS(5739), - [anon_sym_AMP] = ACTIONS(5739), - [anon_sym_LT_LT] = ACTIONS(5734), - [anon_sym_GT_GT] = ACTIONS(5739), - [anon_sym_GT_GT_GT] = ACTIONS(5734), - [anon_sym_EQ_EQ] = ACTIONS(5734), - [anon_sym_BANG_EQ] = ACTIONS(5734), - [anon_sym_GT_EQ] = ACTIONS(5734), - [anon_sym_LT_EQ] = ACTIONS(5734), - [anon_sym_DOT] = ACTIONS(5739), - [anon_sym_EQ_GT] = ACTIONS(5734), - [anon_sym_switch] = ACTIONS(5734), - [anon_sym_when] = ACTIONS(5734), - [anon_sym_DOT_DOT] = ACTIONS(5734), - [anon_sym_and] = ACTIONS(5734), - [anon_sym_or] = ACTIONS(5734), - [anon_sym_AMP_AMP] = ACTIONS(5734), - [anon_sym_PIPE_PIPE] = ACTIONS(5734), - [sym_op_coalescing] = ACTIONS(5734), - [anon_sym_on] = ACTIONS(5734), - [anon_sym_equals] = ACTIONS(5734), - [anon_sym_by] = ACTIONS(5734), - [anon_sym_as] = ACTIONS(5734), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(5734), - [anon_sym_with] = ACTIONS(5734), - [aux_sym_preproc_if_token3] = ACTIONS(5734), - [aux_sym_preproc_else_token1] = ACTIONS(5734), - [aux_sym_preproc_elif_token1] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -619585,6 +611610,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4731] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4731), [sym_preproc_endregion] = STATE(4731), [sym_preproc_line] = STATE(4731), @@ -619594,57 +611634,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4731), [sym_preproc_define] = STATE(4731), [sym_preproc_undef] = STATE(4731), - [anon_sym_EQ] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_COLON] = ACTIONS(3972), - [anon_sym_COMMA] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3972), - [anon_sym_LT] = ACTIONS(3970), - [anon_sym_GT] = ACTIONS(3970), - [anon_sym_QMARK] = ACTIONS(3970), - [anon_sym_BANG] = ACTIONS(3970), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3970), - [anon_sym_SLASH] = ACTIONS(3970), - [anon_sym_PERCENT] = ACTIONS(3970), - [anon_sym_CARET] = ACTIONS(3970), - [anon_sym_PIPE] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_LT_LT] = ACTIONS(3970), - [anon_sym_GT_GT] = ACTIONS(3970), - [anon_sym_GT_GT_GT] = ACTIONS(3970), - [anon_sym_EQ_EQ] = ACTIONS(3972), - [anon_sym_BANG_EQ] = ACTIONS(3972), - [anon_sym_GT_EQ] = ACTIONS(3972), - [anon_sym_LT_EQ] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3972), - [anon_sym_DOT_DOT] = ACTIONS(3972), - [anon_sym_and] = ACTIONS(3972), - [anon_sym_or] = ACTIONS(3972), - [anon_sym_PLUS_EQ] = ACTIONS(3972), - [anon_sym_DASH_EQ] = ACTIONS(3972), - [anon_sym_STAR_EQ] = ACTIONS(3972), - [anon_sym_SLASH_EQ] = ACTIONS(3972), - [anon_sym_PERCENT_EQ] = ACTIONS(3972), - [anon_sym_AMP_EQ] = ACTIONS(3972), - [anon_sym_CARET_EQ] = ACTIONS(3972), - [anon_sym_PIPE_EQ] = ACTIONS(3972), - [anon_sym_LT_LT_EQ] = ACTIONS(3972), - [anon_sym_GT_GT_EQ] = ACTIONS(3972), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3972), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_PIPE_PIPE] = ACTIONS(3972), - [sym_op_coalescing] = ACTIONS(3970), - [anon_sym_into] = ACTIONS(3972), - [anon_sym_as] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3972), - [anon_sym_DASH_GT] = ACTIONS(3972), - [anon_sym_with] = ACTIONS(3972), + [anon_sym_SEMI] = ACTIONS(7298), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -619655,9 +611678,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3972), }, [4732] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4732), [sym_preproc_endregion] = STATE(4732), [sym_preproc_line] = STATE(4732), @@ -619667,57 +611704,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4732), [sym_preproc_define] = STATE(4732), [sym_preproc_undef] = STATE(4732), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_PERCENT] = ACTIONS(3698), - [anon_sym_CARET] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_LT_LT] = ACTIONS(3698), - [anon_sym_GT_GT] = ACTIONS(3698), - [anon_sym_GT_GT_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3696), - [anon_sym_GT_EQ] = ACTIONS(3696), - [anon_sym_LT_EQ] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_and] = ACTIONS(3696), - [anon_sym_or] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3696), - [anon_sym_DASH_EQ] = ACTIONS(3696), - [anon_sym_STAR_EQ] = ACTIONS(3696), - [anon_sym_SLASH_EQ] = ACTIONS(3696), - [anon_sym_PERCENT_EQ] = ACTIONS(3696), - [anon_sym_AMP_EQ] = ACTIONS(3696), - [anon_sym_CARET_EQ] = ACTIONS(3696), - [anon_sym_PIPE_EQ] = ACTIONS(3696), - [anon_sym_LT_LT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3696), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3696), - [anon_sym_PIPE_PIPE] = ACTIONS(3696), - [sym_op_coalescing] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_DASH_GT] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7300), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7306), + [sym_op_right_shift] = ACTIONS(7308), + [sym_op_unsigned_right_shift] = ACTIONS(7306), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(7314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(7316), + [anon_sym_is] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -619728,9 +611748,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3696), }, [4733] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4733), [sym_preproc_endregion] = STATE(4733), [sym_preproc_line] = STATE(4733), @@ -619740,58 +611774,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4733), [sym_preproc_define] = STATE(4733), [sym_preproc_undef] = STATE(4733), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_record] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7320), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -619804,6 +611820,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4734] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4734), [sym_preproc_endregion] = STATE(4734), [sym_preproc_line] = STATE(4734), @@ -619813,57 +611844,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4734), [sym_preproc_define] = STATE(4734), [sym_preproc_undef] = STATE(4734), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_PLUS_EQ] = ACTIONS(3189), - [anon_sym_DASH_EQ] = ACTIONS(3189), - [anon_sym_STAR_EQ] = ACTIONS(3189), - [anon_sym_SLASH_EQ] = ACTIONS(3189), - [anon_sym_PERCENT_EQ] = ACTIONS(3189), - [anon_sym_AMP_EQ] = ACTIONS(3189), - [anon_sym_CARET_EQ] = ACTIONS(3189), - [anon_sym_PIPE_EQ] = ACTIONS(3189), - [anon_sym_LT_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_op_coalescing] = ACTIONS(3187), - [anon_sym_into] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7270), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5336), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7272), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7274), + [sym_op_right_shift] = ACTIONS(7276), + [sym_op_unsigned_right_shift] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(7282), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7284), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -619874,9 +611888,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3189), }, [4735] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4735), [sym_preproc_endregion] = STATE(4735), [sym_preproc_line] = STATE(4735), @@ -619886,58 +611914,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4735), [sym_preproc_define] = STATE(4735), [sym_preproc_undef] = STATE(4735), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(6976), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_record] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -619950,6 +611960,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4736] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4736), [sym_preproc_endregion] = STATE(4736), [sym_preproc_line] = STATE(4736), @@ -619959,58 +611984,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4736), [sym_preproc_define] = STATE(4736), [sym_preproc_undef] = STATE(4736), - [anon_sym_SEMI] = ACTIONS(5899), - [anon_sym_LBRACK] = ACTIONS(5899), - [anon_sym_COLON] = ACTIONS(5899), - [anon_sym_COMMA] = ACTIONS(5899), - [anon_sym_RBRACK] = ACTIONS(5899), - [anon_sym_LPAREN] = ACTIONS(5899), - [anon_sym_RPAREN] = ACTIONS(5899), - [anon_sym_RBRACE] = ACTIONS(5899), - [anon_sym_LT] = ACTIONS(5901), - [anon_sym_GT] = ACTIONS(5901), - [anon_sym_in] = ACTIONS(5899), - [anon_sym_QMARK] = ACTIONS(5901), - [anon_sym_BANG] = ACTIONS(5901), - [anon_sym_PLUS_PLUS] = ACTIONS(5899), - [anon_sym_DASH_DASH] = ACTIONS(5899), - [anon_sym_PLUS] = ACTIONS(5901), - [anon_sym_DASH] = ACTIONS(5901), - [anon_sym_STAR] = ACTIONS(5899), - [anon_sym_SLASH] = ACTIONS(5901), - [anon_sym_PERCENT] = ACTIONS(5899), - [anon_sym_CARET] = ACTIONS(5899), - [anon_sym_PIPE] = ACTIONS(5901), - [anon_sym_AMP] = ACTIONS(5901), - [anon_sym_LT_LT] = ACTIONS(5899), - [anon_sym_GT_GT] = ACTIONS(5901), - [anon_sym_GT_GT_GT] = ACTIONS(5899), - [anon_sym_EQ_EQ] = ACTIONS(5899), - [anon_sym_BANG_EQ] = ACTIONS(5899), - [anon_sym_GT_EQ] = ACTIONS(5899), - [anon_sym_LT_EQ] = ACTIONS(5899), - [anon_sym_DOT] = ACTIONS(5901), - [anon_sym_EQ_GT] = ACTIONS(5899), - [anon_sym_switch] = ACTIONS(5899), - [anon_sym_when] = ACTIONS(5899), - [anon_sym_DOT_DOT] = ACTIONS(5899), - [anon_sym_and] = ACTIONS(5899), - [anon_sym_or] = ACTIONS(5899), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(5899), - [sym_op_coalescing] = ACTIONS(5899), - [anon_sym_on] = ACTIONS(5899), - [anon_sym_equals] = ACTIONS(5899), - [anon_sym_by] = ACTIONS(5899), - [anon_sym_as] = ACTIONS(5899), - [anon_sym_is] = ACTIONS(5899), - [anon_sym_DASH_GT] = ACTIONS(5899), - [anon_sym_with] = ACTIONS(5899), - [anon_sym_DQUOTE] = ACTIONS(5899), - [sym_string_literal_encoding] = ACTIONS(6978), - [aux_sym_preproc_if_token3] = ACTIONS(5899), - [aux_sym_preproc_else_token1] = ACTIONS(5899), - [aux_sym_preproc_elif_token1] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -620023,6 +612030,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4737] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4737), [sym_preproc_endregion] = STATE(4737), [sym_preproc_line] = STATE(4737), @@ -620032,57 +612054,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4737), [sym_preproc_define] = STATE(4737), [sym_preproc_undef] = STATE(4737), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym_LBRACK] = ACTIONS(3980), - [anon_sym_COLON] = ACTIONS(3980), - [anon_sym_COMMA] = ACTIONS(3980), - [anon_sym_RBRACK] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym_RPAREN] = ACTIONS(3980), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_RBRACE] = ACTIONS(3980), - [anon_sym_LT] = ACTIONS(3978), - [anon_sym_GT] = ACTIONS(3978), - [anon_sym_in] = ACTIONS(3980), - [anon_sym_QMARK] = ACTIONS(3978), - [anon_sym_BANG] = ACTIONS(3978), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_SLASH] = ACTIONS(3978), - [anon_sym_PERCENT] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3978), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_LT_LT] = ACTIONS(3980), - [anon_sym_GT_GT] = ACTIONS(3978), - [anon_sym_GT_GT_GT] = ACTIONS(3980), - [anon_sym_EQ_EQ] = ACTIONS(3980), - [anon_sym_BANG_EQ] = ACTIONS(3980), - [anon_sym_GT_EQ] = ACTIONS(3980), - [anon_sym_LT_EQ] = ACTIONS(3980), - [anon_sym_DOT] = ACTIONS(3978), - [anon_sym_EQ_GT] = ACTIONS(3980), - [anon_sym_switch] = ACTIONS(3980), - [anon_sym_when] = ACTIONS(3980), - [anon_sym_DOT_DOT] = ACTIONS(3980), - [anon_sym_and] = ACTIONS(3980), - [anon_sym_or] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_PIPE_PIPE] = ACTIONS(3980), - [sym_op_coalescing] = ACTIONS(3980), - [anon_sym_on] = ACTIONS(3980), - [anon_sym_equals] = ACTIONS(3980), - [anon_sym_by] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(3980), - [anon_sym_is] = ACTIONS(3980), - [anon_sym_DASH_GT] = ACTIONS(3980), - [anon_sym_with] = ACTIONS(3980), - [aux_sym_preproc_if_token3] = ACTIONS(3980), - [aux_sym_preproc_else_token1] = ACTIONS(3980), - [aux_sym_preproc_elif_token1] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7274), + [sym_op_right_shift] = ACTIONS(7276), + [sym_op_unsigned_right_shift] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7284), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -620095,6 +612100,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4738] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4738), [sym_preproc_endregion] = STATE(4738), [sym_preproc_line] = STATE(4738), @@ -620104,57 +612124,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4738), [sym_preproc_define] = STATE(4738), [sym_preproc_undef] = STATE(4738), - [anon_sym_SEMI] = ACTIONS(6170), - [anon_sym_LBRACK] = ACTIONS(6170), - [anon_sym_COLON] = ACTIONS(6170), - [anon_sym_COMMA] = ACTIONS(6170), - [anon_sym_RBRACK] = ACTIONS(6170), - [anon_sym_LPAREN] = ACTIONS(6170), - [anon_sym_RPAREN] = ACTIONS(6170), - [anon_sym_RBRACE] = ACTIONS(6170), - [anon_sym_LT] = ACTIONS(6172), - [anon_sym_GT] = ACTIONS(6172), - [anon_sym_in] = ACTIONS(6172), - [anon_sym_QMARK] = ACTIONS(6172), - [anon_sym_BANG] = ACTIONS(6172), - [anon_sym_PLUS_PLUS] = ACTIONS(6170), - [anon_sym_DASH_DASH] = ACTIONS(6170), - [anon_sym_PLUS] = ACTIONS(6172), - [anon_sym_DASH] = ACTIONS(6172), - [anon_sym_STAR] = ACTIONS(6170), - [anon_sym_SLASH] = ACTIONS(6172), - [anon_sym_PERCENT] = ACTIONS(6170), - [anon_sym_CARET] = ACTIONS(6170), - [anon_sym_PIPE] = ACTIONS(6172), - [anon_sym_AMP] = ACTIONS(6172), - [anon_sym_LT_LT] = ACTIONS(6170), - [anon_sym_GT_GT] = ACTIONS(6172), - [anon_sym_GT_GT_GT] = ACTIONS(6170), - [anon_sym_EQ_EQ] = ACTIONS(6170), - [anon_sym_BANG_EQ] = ACTIONS(6170), - [anon_sym_GT_EQ] = ACTIONS(6170), - [anon_sym_LT_EQ] = ACTIONS(6170), - [anon_sym_DOT] = ACTIONS(6172), - [anon_sym_EQ_GT] = ACTIONS(6170), - [anon_sym_switch] = ACTIONS(6170), - [anon_sym_when] = ACTIONS(6170), - [anon_sym_DOT_DOT] = ACTIONS(6170), - [anon_sym_and] = ACTIONS(6170), - [anon_sym_or] = ACTIONS(6170), - [anon_sym_AMP_AMP] = ACTIONS(6170), - [anon_sym_PIPE_PIPE] = ACTIONS(6170), - [sym_op_coalescing] = ACTIONS(6170), - [anon_sym_into] = ACTIONS(6170), - [anon_sym_on] = ACTIONS(6170), - [anon_sym_equals] = ACTIONS(6170), - [anon_sym_by] = ACTIONS(6170), - [anon_sym_as] = ACTIONS(6170), - [anon_sym_is] = ACTIONS(6170), - [anon_sym_DASH_GT] = ACTIONS(6170), - [anon_sym_with] = ACTIONS(6170), - [aux_sym_preproc_if_token3] = ACTIONS(6170), - [aux_sym_preproc_else_token1] = ACTIONS(6170), - [aux_sym_preproc_elif_token1] = ACTIONS(6170), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7274), + [sym_op_right_shift] = ACTIONS(7276), + [sym_op_unsigned_right_shift] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7284), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -620167,6 +612170,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4739] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4739), [sym_preproc_endregion] = STATE(4739), [sym_preproc_line] = STATE(4739), @@ -620176,57 +612194,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4739), [sym_preproc_define] = STATE(4739), [sym_preproc_undef] = STATE(4739), - [anon_sym_SEMI] = ACTIONS(6118), - [anon_sym_LBRACK] = ACTIONS(6118), - [anon_sym_COLON] = ACTIONS(6118), - [anon_sym_COMMA] = ACTIONS(6118), - [anon_sym_RBRACK] = ACTIONS(6118), - [anon_sym_LPAREN] = ACTIONS(6118), - [anon_sym_RPAREN] = ACTIONS(6118), - [anon_sym_RBRACE] = ACTIONS(6118), - [anon_sym_LT] = ACTIONS(6120), - [anon_sym_GT] = ACTIONS(6120), - [anon_sym_in] = ACTIONS(6120), - [anon_sym_QMARK] = ACTIONS(6120), - [anon_sym_BANG] = ACTIONS(6120), - [anon_sym_PLUS_PLUS] = ACTIONS(6118), - [anon_sym_DASH_DASH] = ACTIONS(6118), - [anon_sym_PLUS] = ACTIONS(6120), - [anon_sym_DASH] = ACTIONS(6120), - [anon_sym_STAR] = ACTIONS(6118), - [anon_sym_SLASH] = ACTIONS(6120), - [anon_sym_PERCENT] = ACTIONS(6118), - [anon_sym_CARET] = ACTIONS(6118), - [anon_sym_PIPE] = ACTIONS(6120), - [anon_sym_AMP] = ACTIONS(6120), - [anon_sym_LT_LT] = ACTIONS(6118), - [anon_sym_GT_GT] = ACTIONS(6120), - [anon_sym_GT_GT_GT] = ACTIONS(6118), - [anon_sym_EQ_EQ] = ACTIONS(6118), - [anon_sym_BANG_EQ] = ACTIONS(6118), - [anon_sym_GT_EQ] = ACTIONS(6118), - [anon_sym_LT_EQ] = ACTIONS(6118), - [anon_sym_DOT] = ACTIONS(6120), - [anon_sym_EQ_GT] = ACTIONS(6118), - [anon_sym_switch] = ACTIONS(6118), - [anon_sym_when] = ACTIONS(6118), - [anon_sym_DOT_DOT] = ACTIONS(6118), - [anon_sym_and] = ACTIONS(6118), - [anon_sym_or] = ACTIONS(6118), - [anon_sym_AMP_AMP] = ACTIONS(6118), - [anon_sym_PIPE_PIPE] = ACTIONS(6118), - [sym_op_coalescing] = ACTIONS(6118), - [anon_sym_into] = ACTIONS(6118), - [anon_sym_on] = ACTIONS(6118), - [anon_sym_equals] = ACTIONS(6118), - [anon_sym_by] = ACTIONS(6118), - [anon_sym_as] = ACTIONS(6118), - [anon_sym_is] = ACTIONS(6118), - [anon_sym_DASH_GT] = ACTIONS(6118), - [anon_sym_with] = ACTIONS(6118), - [aux_sym_preproc_if_token3] = ACTIONS(6118), - [aux_sym_preproc_else_token1] = ACTIONS(6118), - [aux_sym_preproc_elif_token1] = ACTIONS(6118), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7272), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7274), + [sym_op_right_shift] = ACTIONS(7276), + [sym_op_unsigned_right_shift] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7284), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -620239,6 +612240,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4740] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4740), [sym_preproc_endregion] = STATE(4740), [sym_preproc_line] = STATE(4740), @@ -620248,57 +612264,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4740), [sym_preproc_define] = STATE(4740), [sym_preproc_undef] = STATE(4740), - [sym__identifier_token] = ACTIONS(3199), - [anon_sym_extern] = ACTIONS(3199), - [anon_sym_alias] = ACTIONS(3199), - [anon_sym_global] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_static] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_public] = ACTIONS(3199), - [anon_sym_private] = ACTIONS(3199), - [anon_sym_readonly] = ACTIONS(3199), - [anon_sym_abstract] = ACTIONS(3199), - [anon_sym_async] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_file] = ACTIONS(3199), - [anon_sym_fixed] = ACTIONS(3199), - [anon_sym_internal] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3199), - [anon_sym_override] = ACTIONS(3199), - [anon_sym_partial] = ACTIONS(3199), - [anon_sym_protected] = ACTIONS(3199), - [anon_sym_required] = ACTIONS(3199), - [anon_sym_sealed] = ACTIONS(3199), - [anon_sym_virtual] = ACTIONS(3199), - [anon_sym_volatile] = ACTIONS(3199), - [anon_sym_where] = ACTIONS(3199), - [anon_sym_notnull] = ACTIONS(3199), - [anon_sym_unmanaged] = ACTIONS(3199), - [sym_accessor_get] = ACTIONS(3199), - [sym_accessor_set] = ACTIONS(3199), - [sym_accessor_add] = ACTIONS(3199), - [sym_accessor_remove] = ACTIONS(3199), - [sym_accessor_init] = ACTIONS(3199), - [anon_sym_scoped] = ACTIONS(3199), - [anon_sym_var] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3199), - [anon_sym_when] = ACTIONS(3199), - [anon_sym_from] = ACTIONS(3199), - [anon_sym_into] = ACTIONS(3199), - [anon_sym_join] = ACTIONS(3199), - [anon_sym_on] = ACTIONS(3199), - [anon_sym_equals] = ACTIONS(3199), - [anon_sym_let] = ACTIONS(3199), - [anon_sym_orderby] = ACTIONS(3199), - [anon_sym_ascending] = ACTIONS(3199), - [anon_sym_descending] = ACTIONS(3199), - [anon_sym_group] = ACTIONS(3199), - [anon_sym_by] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [sym_grit_metavariable] = ACTIONS(3201), - [aux_sym_preproc_if_token1] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7272), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7274), + [sym_op_right_shift] = ACTIONS(7276), + [sym_op_unsigned_right_shift] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7284), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -620311,26 +612310,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4741] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7719), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4741), [sym_preproc_endregion] = STATE(4741), [sym_preproc_line] = STATE(4741), @@ -620340,37 +612334,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4741), [sym_preproc_define] = STATE(4741), [sym_preproc_undef] = STATE(4741), - [aux_sym_function_pointer_type_repeat1] = STATE(4806), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7274), + [sym_op_right_shift] = ACTIONS(7276), + [sym_op_unsigned_right_shift] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7284), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -620383,6 +612380,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4742] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4742), [sym_preproc_endregion] = STATE(4742), [sym_preproc_line] = STATE(4742), @@ -620392,57 +612404,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4742), [sym_preproc_define] = STATE(4742), [sym_preproc_undef] = STATE(4742), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LBRACK] = ACTIONS(6073), - [anon_sym_COLON] = ACTIONS(6073), - [anon_sym_COMMA] = ACTIONS(6073), - [anon_sym_RBRACK] = ACTIONS(6073), - [anon_sym_LPAREN] = ACTIONS(6073), - [anon_sym_RPAREN] = ACTIONS(6073), - [anon_sym_RBRACE] = ACTIONS(6073), - [anon_sym_LT] = ACTIONS(6075), - [anon_sym_GT] = ACTIONS(6075), - [anon_sym_in] = ACTIONS(6075), - [anon_sym_QMARK] = ACTIONS(6075), - [anon_sym_BANG] = ACTIONS(6075), - [anon_sym_PLUS_PLUS] = ACTIONS(6073), - [anon_sym_DASH_DASH] = ACTIONS(6073), - [anon_sym_PLUS] = ACTIONS(6075), - [anon_sym_DASH] = ACTIONS(6075), - [anon_sym_STAR] = ACTIONS(6073), - [anon_sym_SLASH] = ACTIONS(6075), - [anon_sym_PERCENT] = ACTIONS(6073), - [anon_sym_CARET] = ACTIONS(6073), - [anon_sym_PIPE] = ACTIONS(6075), - [anon_sym_AMP] = ACTIONS(6075), - [anon_sym_LT_LT] = ACTIONS(6073), - [anon_sym_GT_GT] = ACTIONS(6075), - [anon_sym_GT_GT_GT] = ACTIONS(6073), - [anon_sym_EQ_EQ] = ACTIONS(6073), - [anon_sym_BANG_EQ] = ACTIONS(6073), - [anon_sym_GT_EQ] = ACTIONS(6073), - [anon_sym_LT_EQ] = ACTIONS(6073), - [anon_sym_DOT] = ACTIONS(6075), - [anon_sym_EQ_GT] = ACTIONS(6073), - [anon_sym_switch] = ACTIONS(6073), - [anon_sym_when] = ACTIONS(6073), - [anon_sym_DOT_DOT] = ACTIONS(6073), - [anon_sym_and] = ACTIONS(6073), - [anon_sym_or] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [sym_op_coalescing] = ACTIONS(6073), - [anon_sym_into] = ACTIONS(6073), - [anon_sym_on] = ACTIONS(6073), - [anon_sym_equals] = ACTIONS(6073), - [anon_sym_by] = ACTIONS(6073), - [anon_sym_as] = ACTIONS(6073), - [anon_sym_is] = ACTIONS(6073), - [anon_sym_DASH_GT] = ACTIONS(6073), - [anon_sym_with] = ACTIONS(6073), - [aux_sym_preproc_if_token3] = ACTIONS(6073), - [aux_sym_preproc_else_token1] = ACTIONS(6073), - [aux_sym_preproc_elif_token1] = ACTIONS(6073), + [anon_sym_SEMI] = ACTIONS(7328), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -620455,6 +612450,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4743] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4743), [sym_preproc_endregion] = STATE(4743), [sym_preproc_line] = STATE(4743), @@ -620464,57 +612474,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4743), [sym_preproc_define] = STATE(4743), [sym_preproc_undef] = STATE(4743), - [anon_sym_SEMI] = ACTIONS(6200), - [anon_sym_LBRACK] = ACTIONS(6200), - [anon_sym_COLON] = ACTIONS(6200), - [anon_sym_COMMA] = ACTIONS(6200), - [anon_sym_RBRACK] = ACTIONS(6200), - [anon_sym_LPAREN] = ACTIONS(6200), - [anon_sym_RPAREN] = ACTIONS(6200), - [anon_sym_RBRACE] = ACTIONS(6200), - [anon_sym_LT] = ACTIONS(6202), - [anon_sym_GT] = ACTIONS(6202), - [anon_sym_in] = ACTIONS(6200), - [anon_sym_QMARK] = ACTIONS(6202), - [anon_sym_BANG] = ACTIONS(6202), - [anon_sym_PLUS_PLUS] = ACTIONS(6200), - [anon_sym_DASH_DASH] = ACTIONS(6200), - [anon_sym_PLUS] = ACTIONS(6202), - [anon_sym_DASH] = ACTIONS(6202), - [anon_sym_STAR] = ACTIONS(6200), - [anon_sym_SLASH] = ACTIONS(6202), - [anon_sym_PERCENT] = ACTIONS(6200), - [anon_sym_CARET] = ACTIONS(6200), - [anon_sym_PIPE] = ACTIONS(6202), - [anon_sym_AMP] = ACTIONS(6202), - [anon_sym_LT_LT] = ACTIONS(6200), - [anon_sym_GT_GT] = ACTIONS(6202), - [anon_sym_GT_GT_GT] = ACTIONS(6200), - [anon_sym_EQ_EQ] = ACTIONS(6200), - [anon_sym_BANG_EQ] = ACTIONS(6200), - [anon_sym_GT_EQ] = ACTIONS(6200), - [anon_sym_LT_EQ] = ACTIONS(6200), - [anon_sym_DOT] = ACTIONS(6202), - [anon_sym_EQ_GT] = ACTIONS(6200), - [anon_sym_switch] = ACTIONS(6200), - [anon_sym_when] = ACTIONS(6200), - [anon_sym_DOT_DOT] = ACTIONS(6200), - [anon_sym_and] = ACTIONS(6200), - [anon_sym_or] = ACTIONS(6200), - [anon_sym_AMP_AMP] = ACTIONS(6200), - [anon_sym_PIPE_PIPE] = ACTIONS(6200), - [sym_op_coalescing] = ACTIONS(6200), - [anon_sym_on] = ACTIONS(6200), - [anon_sym_equals] = ACTIONS(6200), - [anon_sym_by] = ACTIONS(6200), - [anon_sym_as] = ACTIONS(6200), - [anon_sym_is] = ACTIONS(6200), - [anon_sym_DASH_GT] = ACTIONS(6200), - [anon_sym_with] = ACTIONS(6200), - [anon_sym_DQUOTE] = ACTIONS(6200), - [aux_sym_preproc_if_token3] = ACTIONS(6200), - [aux_sym_preproc_else_token1] = ACTIONS(6200), - [aux_sym_preproc_elif_token1] = ACTIONS(6200), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7274), + [sym_op_right_shift] = ACTIONS(7276), + [sym_op_unsigned_right_shift] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -620527,6 +612520,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4744] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4744), [sym_preproc_endregion] = STATE(4744), [sym_preproc_line] = STATE(4744), @@ -620536,57 +612544,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4744), [sym_preproc_define] = STATE(4744), [sym_preproc_undef] = STATE(4744), - [sym__identifier_token] = ACTIONS(3371), - [anon_sym_extern] = ACTIONS(3371), - [anon_sym_alias] = ACTIONS(3371), - [anon_sym_global] = ACTIONS(3371), - [anon_sym_unsafe] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_readonly] = 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_protected] = 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), - [sym_accessor_get] = ACTIONS(3371), - [sym_accessor_set] = ACTIONS(3371), - [sym_accessor_add] = ACTIONS(3371), - [sym_accessor_remove] = ACTIONS(3371), - [sym_accessor_init] = ACTIONS(3371), - [anon_sym_scoped] = ACTIONS(3371), - [anon_sym_var] = 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), - [sym_grit_metavariable] = ACTIONS(3373), - [aux_sym_preproc_if_token1] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7272), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7274), + [sym_op_right_shift] = ACTIONS(7276), + [sym_op_unsigned_right_shift] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(7282), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7284), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -620599,6 +612590,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4745] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4745), [sym_preproc_endregion] = STATE(4745), [sym_preproc_line] = STATE(4745), @@ -620608,57 +612614,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4745), [sym_preproc_define] = STATE(4745), [sym_preproc_undef] = STATE(4745), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_COLON] = ACTIONS(2173), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(6988), - [anon_sym_RPAREN] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_in] = ACTIONS(2171), - [anon_sym_QMARK] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_PERCENT] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2173), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2173), - [anon_sym_BANG_EQ] = ACTIONS(2173), - [anon_sym_GT_EQ] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2173), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_EQ_GT] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_when] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2173), - [anon_sym_and] = ACTIONS(2173), - [anon_sym_or] = ACTIONS(2173), - [anon_sym_AMP_AMP] = ACTIONS(2173), - [anon_sym_PIPE_PIPE] = ACTIONS(2173), - [sym_op_coalescing] = ACTIONS(2173), - [anon_sym_into] = ACTIONS(2173), - [anon_sym_on] = ACTIONS(2173), - [anon_sym_equals] = ACTIONS(2173), - [anon_sym_by] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_is] = ACTIONS(2173), - [anon_sym_DASH_GT] = ACTIONS(2173), - [anon_sym_with] = ACTIONS(2173), - [aux_sym_preproc_if_token3] = ACTIONS(2173), - [aux_sym_preproc_else_token1] = ACTIONS(2173), - [aux_sym_preproc_elif_token1] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7300), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7306), + [sym_op_right_shift] = ACTIONS(7308), + [sym_op_unsigned_right_shift] = ACTIONS(7306), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(7314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(7316), + [anon_sym_is] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -620671,26 +612660,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4746] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7911), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4746), [sym_preproc_endregion] = STATE(4746), [sym_preproc_line] = STATE(4746), @@ -620700,37 +612684,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4746), [sym_preproc_define] = STATE(4746), [sym_preproc_undef] = STATE(4746), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -620743,26 +612730,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4747] = { - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6220), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym__lambda_parameters] = STATE(7967), - [sym_identifier] = STATE(6072), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4747), [sym_preproc_endregion] = STATE(4747), [sym_preproc_line] = STATE(4747), @@ -620772,37 +612754,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4747), [sym_preproc_define] = STATE(4747), [sym_preproc_undef] = STATE(4747), - [aux_sym__lambda_expression_init_repeat1] = STATE(6161), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(6990), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -620815,6 +612800,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4748] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4748), [sym_preproc_endregion] = STATE(4748), [sym_preproc_line] = STATE(4748), @@ -620824,57 +612824,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4748), [sym_preproc_define] = STATE(4748), [sym_preproc_undef] = STATE(4748), - [anon_sym_SEMI] = ACTIONS(6237), - [anon_sym_LBRACK] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_COMMA] = ACTIONS(6237), - [anon_sym_RBRACK] = ACTIONS(6237), - [anon_sym_LPAREN] = ACTIONS(6237), - [anon_sym_RPAREN] = ACTIONS(6237), - [anon_sym_RBRACE] = ACTIONS(6237), - [anon_sym_LT] = ACTIONS(6239), - [anon_sym_GT] = ACTIONS(6239), - [anon_sym_in] = ACTIONS(6239), - [anon_sym_QMARK] = ACTIONS(6239), - [anon_sym_BANG] = ACTIONS(6239), - [anon_sym_PLUS_PLUS] = ACTIONS(6237), - [anon_sym_DASH_DASH] = ACTIONS(6237), - [anon_sym_PLUS] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_PERCENT] = ACTIONS(6237), - [anon_sym_CARET] = ACTIONS(6237), - [anon_sym_PIPE] = ACTIONS(6239), - [anon_sym_AMP] = ACTIONS(6239), - [anon_sym_LT_LT] = ACTIONS(6237), - [anon_sym_GT_GT] = ACTIONS(6239), - [anon_sym_GT_GT_GT] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6237), - [anon_sym_BANG_EQ] = ACTIONS(6237), - [anon_sym_GT_EQ] = ACTIONS(6237), - [anon_sym_LT_EQ] = ACTIONS(6237), - [anon_sym_DOT] = ACTIONS(6239), - [anon_sym_EQ_GT] = ACTIONS(6237), - [anon_sym_switch] = ACTIONS(6237), - [anon_sym_when] = ACTIONS(6237), - [anon_sym_DOT_DOT] = ACTIONS(6237), - [anon_sym_and] = ACTIONS(6237), - [anon_sym_or] = ACTIONS(6237), - [anon_sym_AMP_AMP] = ACTIONS(6237), - [anon_sym_PIPE_PIPE] = ACTIONS(6237), - [sym_op_coalescing] = ACTIONS(6237), - [anon_sym_into] = ACTIONS(6237), - [anon_sym_on] = ACTIONS(6237), - [anon_sym_equals] = ACTIONS(6237), - [anon_sym_by] = ACTIONS(6237), - [anon_sym_as] = ACTIONS(6237), - [anon_sym_is] = ACTIONS(6237), - [anon_sym_DASH_GT] = ACTIONS(6237), - [anon_sym_with] = ACTIONS(6237), - [aux_sym_preproc_if_token3] = ACTIONS(6237), - [aux_sym_preproc_else_token1] = ACTIONS(6237), - [aux_sym_preproc_elif_token1] = ACTIONS(6237), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5300), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7274), + [sym_op_right_shift] = ACTIONS(7276), + [sym_op_unsigned_right_shift] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7284), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -620887,26 +612870,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4749] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7815), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4749), [sym_preproc_endregion] = STATE(4749), [sym_preproc_line] = STATE(4749), @@ -620916,37 +612894,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4749), [sym_preproc_define] = STATE(4749), [sym_preproc_undef] = STATE(4749), - [aux_sym_function_pointer_type_repeat1] = STATE(4768), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -620959,7 +612940,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4750] = { - [sym_initializer_expression] = STATE(5055), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4750), [sym_preproc_endregion] = STATE(4750), [sym_preproc_line] = STATE(4750), @@ -620969,56 +612964,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4750), [sym_preproc_define] = STATE(4750), [sym_preproc_undef] = STATE(4750), - [anon_sym_SEMI] = ACTIONS(5958), - [anon_sym_LBRACK] = ACTIONS(5954), - [anon_sym_COLON] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_RBRACK] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_RPAREN] = ACTIONS(5958), - [anon_sym_LBRACE] = ACTIONS(6992), - [anon_sym_RBRACE] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PLUS_PLUS] = ACTIONS(5958), - [anon_sym_DASH_DASH] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5964), - [anon_sym_DASH] = ACTIONS(5964), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5964), - [anon_sym_PERCENT] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_AMP] = ACTIONS(5964), - [anon_sym_LT_LT] = ACTIONS(5958), - [anon_sym_GT_GT] = ACTIONS(5964), - [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(5964), - [anon_sym_EQ_GT] = ACTIONS(5958), - [anon_sym_switch] = ACTIONS(5958), - [anon_sym_when] = ACTIONS(5958), - [anon_sym_DOT_DOT] = ACTIONS(5958), - [anon_sym_and] = ACTIONS(5958), - [anon_sym_or] = ACTIONS(5958), - [anon_sym_AMP_AMP] = ACTIONS(5958), - [anon_sym_PIPE_PIPE] = ACTIONS(5958), - [sym_op_coalescing] = ACTIONS(5958), - [anon_sym_on] = ACTIONS(5958), - [anon_sym_equals] = ACTIONS(5958), - [anon_sym_by] = ACTIONS(5958), - [anon_sym_as] = ACTIONS(5958), - [anon_sym_is] = ACTIONS(5958), - [anon_sym_DASH_GT] = ACTIONS(5958), - [anon_sym_with] = ACTIONS(5958), - [aux_sym_preproc_if_token3] = ACTIONS(5958), - [aux_sym_preproc_else_token1] = ACTIONS(5958), - [aux_sym_preproc_elif_token1] = ACTIONS(5958), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -621031,6 +613010,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4751] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4751), [sym_preproc_endregion] = STATE(4751), [sym_preproc_line] = STATE(4751), @@ -621040,57 +613034,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4751), [sym_preproc_define] = STATE(4751), [sym_preproc_undef] = STATE(4751), - [anon_sym_SEMI] = ACTIONS(4466), - [anon_sym_LBRACK] = ACTIONS(4466), - [anon_sym_COLON] = ACTIONS(4466), - [anon_sym_COMMA] = ACTIONS(4466), - [anon_sym_RBRACK] = ACTIONS(4466), - [anon_sym_LPAREN] = ACTIONS(4466), - [anon_sym_RPAREN] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4466), - [anon_sym_RBRACE] = ACTIONS(4466), - [anon_sym_LT] = ACTIONS(4464), - [anon_sym_GT] = ACTIONS(4464), - [anon_sym_in] = ACTIONS(4466), - [anon_sym_QMARK] = ACTIONS(4464), - [anon_sym_BANG] = ACTIONS(4464), - [anon_sym_PLUS_PLUS] = ACTIONS(4466), - [anon_sym_DASH_DASH] = ACTIONS(4466), - [anon_sym_PLUS] = ACTIONS(4464), - [anon_sym_DASH] = ACTIONS(4464), - [anon_sym_STAR] = ACTIONS(4466), - [anon_sym_SLASH] = ACTIONS(4464), - [anon_sym_PERCENT] = ACTIONS(4466), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_PIPE] = ACTIONS(4464), - [anon_sym_AMP] = ACTIONS(4464), - [anon_sym_LT_LT] = ACTIONS(4466), - [anon_sym_GT_GT] = ACTIONS(4464), - [anon_sym_GT_GT_GT] = ACTIONS(4466), - [anon_sym_EQ_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_GT_EQ] = ACTIONS(4466), - [anon_sym_LT_EQ] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4464), - [anon_sym_EQ_GT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4466), - [anon_sym_when] = ACTIONS(4466), - [anon_sym_DOT_DOT] = ACTIONS(4466), - [anon_sym_and] = ACTIONS(4466), - [anon_sym_or] = ACTIONS(4466), - [anon_sym_AMP_AMP] = ACTIONS(4466), - [anon_sym_PIPE_PIPE] = ACTIONS(4466), - [sym_op_coalescing] = ACTIONS(4466), - [anon_sym_on] = ACTIONS(4466), - [anon_sym_equals] = ACTIONS(4466), - [anon_sym_by] = ACTIONS(4466), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_is] = ACTIONS(4466), - [anon_sym_DASH_GT] = ACTIONS(4466), - [anon_sym_with] = ACTIONS(4466), - [aux_sym_preproc_if_token3] = ACTIONS(4466), - [aux_sym_preproc_else_token1] = ACTIONS(4466), - [aux_sym_preproc_elif_token1] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7330), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -621103,6 +613080,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4752] = { + [sym_argument_list] = STATE(3125), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(4715), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3130), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(4752), [sym_preproc_endregion] = STATE(4752), [sym_preproc_line] = STATE(4752), @@ -621112,57 +613108,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4752), [sym_preproc_define] = STATE(4752), [sym_preproc_undef] = STATE(4752), - [anon_sym_SEMI] = ACTIONS(4349), - [anon_sym_LBRACK] = ACTIONS(4349), - [anon_sym_COLON] = ACTIONS(4349), - [anon_sym_COMMA] = ACTIONS(4349), - [anon_sym_RBRACK] = ACTIONS(4349), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym_RPAREN] = ACTIONS(4349), - [anon_sym_LBRACE] = ACTIONS(4349), - [anon_sym_RBRACE] = ACTIONS(4349), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym_GT] = ACTIONS(4347), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_QMARK] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_PLUS_PLUS] = ACTIONS(4349), - [anon_sym_DASH_DASH] = ACTIONS(4349), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_SLASH] = ACTIONS(4347), - [anon_sym_PERCENT] = ACTIONS(4349), - [anon_sym_CARET] = ACTIONS(4349), - [anon_sym_PIPE] = ACTIONS(4347), - [anon_sym_AMP] = ACTIONS(4347), - [anon_sym_LT_LT] = ACTIONS(4349), - [anon_sym_GT_GT] = ACTIONS(4347), - [anon_sym_GT_GT_GT] = ACTIONS(4349), - [anon_sym_EQ_EQ] = ACTIONS(4349), - [anon_sym_BANG_EQ] = ACTIONS(4349), - [anon_sym_GT_EQ] = ACTIONS(4349), - [anon_sym_LT_EQ] = ACTIONS(4349), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_EQ_GT] = ACTIONS(4349), - [anon_sym_switch] = ACTIONS(4349), - [anon_sym_when] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4349), - [anon_sym_and] = ACTIONS(4349), - [anon_sym_or] = ACTIONS(4349), - [anon_sym_AMP_AMP] = ACTIONS(4349), - [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [sym_op_coalescing] = ACTIONS(4349), - [anon_sym_on] = ACTIONS(4349), - [anon_sym_equals] = ACTIONS(4349), - [anon_sym_by] = ACTIONS(4349), - [anon_sym_as] = ACTIONS(4349), - [anon_sym_is] = ACTIONS(4349), - [anon_sym_DASH_GT] = ACTIONS(4349), - [anon_sym_with] = ACTIONS(4349), - [aux_sym_preproc_if_token3] = ACTIONS(4349), - [aux_sym_preproc_else_token1] = ACTIONS(4349), - [aux_sym_preproc_elif_token1] = ACTIONS(4349), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_ref] = ACTIONS(4616), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7332), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -621175,6 +613150,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4753] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4753), [sym_preproc_endregion] = STATE(4753), [sym_preproc_line] = STATE(4753), @@ -621184,57 +613174,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4753), [sym_preproc_define] = STATE(4753), [sym_preproc_undef] = STATE(4753), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_COLON] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_RBRACK] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4262), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4262), - [anon_sym_QMARK] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_CARET] = ACTIONS(4262), - [anon_sym_PIPE] = ACTIONS(4260), - [anon_sym_AMP] = ACTIONS(4260), - [anon_sym_LT_LT] = ACTIONS(4262), - [anon_sym_GT_GT] = ACTIONS(4260), - [anon_sym_GT_GT_GT] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_EQ_GT] = ACTIONS(4262), - [anon_sym_switch] = ACTIONS(4262), - [anon_sym_when] = ACTIONS(4262), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_and] = ACTIONS(4262), - [anon_sym_or] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [sym_op_coalescing] = ACTIONS(4262), - [anon_sym_on] = ACTIONS(4262), - [anon_sym_equals] = ACTIONS(4262), - [anon_sym_by] = ACTIONS(4262), - [anon_sym_as] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4262), - [anon_sym_DASH_GT] = ACTIONS(4262), - [anon_sym_with] = ACTIONS(4262), - [aux_sym_preproc_if_token3] = ACTIONS(4262), - [aux_sym_preproc_else_token1] = ACTIONS(4262), - [aux_sym_preproc_elif_token1] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -621247,6 +613220,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4754] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4754), [sym_preproc_endregion] = STATE(4754), [sym_preproc_line] = STATE(4754), @@ -621256,57 +613244,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4754), [sym_preproc_define] = STATE(4754), [sym_preproc_undef] = STATE(4754), - [anon_sym_EQ] = ACTIONS(6999), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_when] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7001), - [anon_sym_DASH_EQ] = ACTIONS(7001), - [anon_sym_STAR_EQ] = ACTIONS(7001), - [anon_sym_SLASH_EQ] = ACTIONS(7001), - [anon_sym_PERCENT_EQ] = ACTIONS(7001), - [anon_sym_AMP_EQ] = ACTIONS(7001), - [anon_sym_CARET_EQ] = ACTIONS(7001), - [anon_sym_PIPE_EQ] = ACTIONS(7001), - [anon_sym_LT_LT_EQ] = ACTIONS(7001), - [anon_sym_GT_GT_EQ] = ACTIONS(7001), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7001), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7001), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7334), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -621319,26 +613290,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4755] = { - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6220), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym__lambda_parameters] = STATE(7967), - [sym_identifier] = STATE(6072), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4755), [sym_preproc_endregion] = STATE(4755), [sym_preproc_line] = STATE(4755), @@ -621348,37 +613314,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4755), [sym_preproc_define] = STATE(4755), [sym_preproc_undef] = STATE(4755), - [aux_sym__lambda_expression_init_repeat1] = STATE(6161), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(7003), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7336), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -621391,6 +613360,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4756] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4756), [sym_preproc_endregion] = STATE(4756), [sym_preproc_line] = STATE(4756), @@ -621400,57 +613384,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4756), [sym_preproc_define] = STATE(4756), [sym_preproc_undef] = STATE(4756), - [sym__identifier_token] = ACTIONS(3544), - [anon_sym_extern] = ACTIONS(3544), - [anon_sym_alias] = ACTIONS(3544), - [anon_sym_global] = ACTIONS(3544), - [anon_sym_unsafe] = ACTIONS(3544), - [anon_sym_static] = ACTIONS(3544), - [anon_sym_LBRACK] = ACTIONS(3546), - [anon_sym_RBRACE] = ACTIONS(3546), - [anon_sym_public] = ACTIONS(3544), - [anon_sym_private] = ACTIONS(3544), - [anon_sym_readonly] = ACTIONS(3544), - [anon_sym_abstract] = ACTIONS(3544), - [anon_sym_async] = ACTIONS(3544), - [anon_sym_const] = ACTIONS(3544), - [anon_sym_file] = ACTIONS(3544), - [anon_sym_fixed] = ACTIONS(3544), - [anon_sym_internal] = ACTIONS(3544), - [anon_sym_new] = ACTIONS(3544), - [anon_sym_override] = ACTIONS(3544), - [anon_sym_partial] = ACTIONS(3544), - [anon_sym_protected] = ACTIONS(3544), - [anon_sym_required] = ACTIONS(3544), - [anon_sym_sealed] = ACTIONS(3544), - [anon_sym_virtual] = ACTIONS(3544), - [anon_sym_volatile] = ACTIONS(3544), - [anon_sym_where] = ACTIONS(3544), - [anon_sym_notnull] = ACTIONS(3544), - [anon_sym_unmanaged] = ACTIONS(3544), - [sym_accessor_get] = ACTIONS(3544), - [sym_accessor_set] = ACTIONS(3544), - [sym_accessor_add] = ACTIONS(3544), - [sym_accessor_remove] = ACTIONS(3544), - [sym_accessor_init] = ACTIONS(3544), - [anon_sym_scoped] = ACTIONS(3544), - [anon_sym_var] = ACTIONS(3544), - [anon_sym_yield] = ACTIONS(3544), - [anon_sym_when] = ACTIONS(3544), - [anon_sym_from] = ACTIONS(3544), - [anon_sym_into] = ACTIONS(3544), - [anon_sym_join] = ACTIONS(3544), - [anon_sym_on] = ACTIONS(3544), - [anon_sym_equals] = ACTIONS(3544), - [anon_sym_let] = ACTIONS(3544), - [anon_sym_orderby] = ACTIONS(3544), - [anon_sym_ascending] = ACTIONS(3544), - [anon_sym_descending] = ACTIONS(3544), - [anon_sym_group] = ACTIONS(3544), - [anon_sym_by] = ACTIONS(3544), - [anon_sym_select] = ACTIONS(3544), - [sym_grit_metavariable] = ACTIONS(3546), - [aux_sym_preproc_if_token1] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -621463,6 +613430,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4757] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4757), [sym_preproc_endregion] = STATE(4757), [sym_preproc_line] = STATE(4757), @@ -621472,57 +613454,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4757), [sym_preproc_define] = STATE(4757), [sym_preproc_undef] = STATE(4757), - [sym__identifier_token] = ACTIONS(3536), - [anon_sym_extern] = ACTIONS(3536), - [anon_sym_alias] = ACTIONS(3536), - [anon_sym_global] = ACTIONS(3536), - [anon_sym_unsafe] = ACTIONS(3536), - [anon_sym_static] = ACTIONS(3536), - [anon_sym_LBRACK] = ACTIONS(3538), - [anon_sym_RBRACE] = ACTIONS(3538), - [anon_sym_public] = ACTIONS(3536), - [anon_sym_private] = ACTIONS(3536), - [anon_sym_readonly] = ACTIONS(3536), - [anon_sym_abstract] = ACTIONS(3536), - [anon_sym_async] = ACTIONS(3536), - [anon_sym_const] = ACTIONS(3536), - [anon_sym_file] = ACTIONS(3536), - [anon_sym_fixed] = ACTIONS(3536), - [anon_sym_internal] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3536), - [anon_sym_override] = ACTIONS(3536), - [anon_sym_partial] = ACTIONS(3536), - [anon_sym_protected] = ACTIONS(3536), - [anon_sym_required] = ACTIONS(3536), - [anon_sym_sealed] = ACTIONS(3536), - [anon_sym_virtual] = ACTIONS(3536), - [anon_sym_volatile] = ACTIONS(3536), - [anon_sym_where] = ACTIONS(3536), - [anon_sym_notnull] = ACTIONS(3536), - [anon_sym_unmanaged] = ACTIONS(3536), - [sym_accessor_get] = ACTIONS(3536), - [sym_accessor_set] = ACTIONS(3536), - [sym_accessor_add] = ACTIONS(3536), - [sym_accessor_remove] = ACTIONS(3536), - [sym_accessor_init] = ACTIONS(3536), - [anon_sym_scoped] = ACTIONS(3536), - [anon_sym_var] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3536), - [anon_sym_when] = ACTIONS(3536), - [anon_sym_from] = ACTIONS(3536), - [anon_sym_into] = ACTIONS(3536), - [anon_sym_join] = ACTIONS(3536), - [anon_sym_on] = ACTIONS(3536), - [anon_sym_equals] = ACTIONS(3536), - [anon_sym_let] = ACTIONS(3536), - [anon_sym_orderby] = ACTIONS(3536), - [anon_sym_ascending] = ACTIONS(3536), - [anon_sym_descending] = ACTIONS(3536), - [anon_sym_group] = ACTIONS(3536), - [anon_sym_by] = ACTIONS(3536), - [anon_sym_select] = ACTIONS(3536), - [sym_grit_metavariable] = ACTIONS(3538), - [aux_sym_preproc_if_token1] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -621535,6 +613500,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4758] = { + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7062), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4758), [sym_preproc_endregion] = STATE(4758), [sym_preproc_line] = STATE(4758), @@ -621544,57 +613527,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4758), [sym_preproc_define] = STATE(4758), [sym_preproc_undef] = STATE(4758), - [anon_sym_SEMI] = ACTIONS(6309), - [anon_sym_LBRACK] = ACTIONS(6309), - [anon_sym_COLON] = ACTIONS(6309), - [anon_sym_COMMA] = ACTIONS(6309), - [anon_sym_RBRACK] = ACTIONS(6309), - [anon_sym_LPAREN] = ACTIONS(6309), - [anon_sym_RPAREN] = ACTIONS(6309), - [anon_sym_RBRACE] = ACTIONS(6309), - [anon_sym_LT] = ACTIONS(6311), - [anon_sym_GT] = ACTIONS(6311), - [anon_sym_in] = ACTIONS(6311), - [anon_sym_QMARK] = ACTIONS(6311), - [anon_sym_BANG] = ACTIONS(6311), - [anon_sym_PLUS_PLUS] = ACTIONS(6309), - [anon_sym_DASH_DASH] = ACTIONS(6309), - [anon_sym_PLUS] = ACTIONS(6311), - [anon_sym_DASH] = ACTIONS(6311), - [anon_sym_STAR] = ACTIONS(6309), - [anon_sym_SLASH] = ACTIONS(6311), - [anon_sym_PERCENT] = ACTIONS(6309), - [anon_sym_CARET] = ACTIONS(6309), - [anon_sym_PIPE] = ACTIONS(6311), - [anon_sym_AMP] = ACTIONS(6311), - [anon_sym_LT_LT] = ACTIONS(6309), - [anon_sym_GT_GT] = ACTIONS(6311), - [anon_sym_GT_GT_GT] = ACTIONS(6309), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_GT_EQ] = ACTIONS(6309), - [anon_sym_LT_EQ] = ACTIONS(6309), - [anon_sym_DOT] = ACTIONS(6311), - [anon_sym_EQ_GT] = ACTIONS(6309), - [anon_sym_switch] = ACTIONS(6309), - [anon_sym_when] = ACTIONS(6309), - [anon_sym_DOT_DOT] = ACTIONS(6309), - [anon_sym_and] = ACTIONS(6309), - [anon_sym_or] = ACTIONS(6309), - [anon_sym_AMP_AMP] = ACTIONS(6309), - [anon_sym_PIPE_PIPE] = ACTIONS(6309), - [sym_op_coalescing] = ACTIONS(6309), - [anon_sym_into] = ACTIONS(6309), - [anon_sym_on] = ACTIONS(6309), - [anon_sym_equals] = ACTIONS(6309), - [anon_sym_by] = ACTIONS(6309), - [anon_sym_as] = ACTIONS(6309), - [anon_sym_is] = ACTIONS(6309), - [anon_sym_DASH_GT] = ACTIONS(6309), - [anon_sym_with] = ACTIONS(6309), - [aux_sym_preproc_if_token3] = ACTIONS(6309), - [aux_sym_preproc_else_token1] = ACTIONS(6309), - [aux_sym_preproc_elif_token1] = ACTIONS(6309), + [aux_sym_type_argument_list_repeat1] = STATE(7063), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_GT] = ACTIONS(7338), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -621607,6 +613570,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4759] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4759), [sym_preproc_endregion] = STATE(4759), [sym_preproc_line] = STATE(4759), @@ -621616,57 +613594,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4759), [sym_preproc_define] = STATE(4759), [sym_preproc_undef] = STATE(4759), - [sym__identifier_token] = ACTIONS(7005), - [anon_sym_extern] = ACTIONS(7005), - [anon_sym_alias] = ACTIONS(7005), - [anon_sym_global] = ACTIONS(7005), - [anon_sym_unsafe] = ACTIONS(7005), - [anon_sym_static] = ACTIONS(7005), - [anon_sym_LBRACK] = ACTIONS(7007), - [anon_sym_RBRACE] = ACTIONS(7007), - [anon_sym_public] = ACTIONS(7005), - [anon_sym_private] = ACTIONS(7005), - [anon_sym_readonly] = ACTIONS(7005), - [anon_sym_abstract] = ACTIONS(7005), - [anon_sym_async] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(7005), - [anon_sym_file] = ACTIONS(7005), - [anon_sym_fixed] = ACTIONS(7005), - [anon_sym_internal] = ACTIONS(7005), - [anon_sym_new] = ACTIONS(7005), - [anon_sym_override] = ACTIONS(7005), - [anon_sym_partial] = ACTIONS(7005), - [anon_sym_protected] = ACTIONS(7005), - [anon_sym_required] = ACTIONS(7005), - [anon_sym_sealed] = ACTIONS(7005), - [anon_sym_virtual] = ACTIONS(7005), - [anon_sym_volatile] = ACTIONS(7005), - [anon_sym_where] = ACTIONS(7005), - [anon_sym_notnull] = ACTIONS(7005), - [anon_sym_unmanaged] = ACTIONS(7005), - [sym_accessor_get] = ACTIONS(7005), - [sym_accessor_set] = ACTIONS(7005), - [sym_accessor_add] = ACTIONS(7005), - [sym_accessor_remove] = ACTIONS(7005), - [sym_accessor_init] = ACTIONS(7005), - [anon_sym_scoped] = ACTIONS(7005), - [anon_sym_var] = ACTIONS(7005), - [anon_sym_yield] = ACTIONS(7005), - [anon_sym_when] = ACTIONS(7005), - [anon_sym_from] = ACTIONS(7005), - [anon_sym_into] = ACTIONS(7005), - [anon_sym_join] = ACTIONS(7005), - [anon_sym_on] = ACTIONS(7005), - [anon_sym_equals] = ACTIONS(7005), - [anon_sym_let] = ACTIONS(7005), - [anon_sym_orderby] = ACTIONS(7005), - [anon_sym_ascending] = ACTIONS(7005), - [anon_sym_descending] = ACTIONS(7005), - [anon_sym_group] = ACTIONS(7005), - [anon_sym_by] = ACTIONS(7005), - [anon_sym_select] = ACTIONS(7005), - [sym_grit_metavariable] = ACTIONS(7007), - [aux_sym_preproc_if_token1] = ACTIONS(7007), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -621679,6 +613640,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4760] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4760), [sym_preproc_endregion] = STATE(4760), [sym_preproc_line] = STATE(4760), @@ -621688,57 +613664,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4760), [sym_preproc_define] = STATE(4760), [sym_preproc_undef] = STATE(4760), - [anon_sym_SEMI] = ACTIONS(5995), - [anon_sym_LBRACK] = ACTIONS(5995), - [anon_sym_COLON] = ACTIONS(5995), - [anon_sym_COMMA] = ACTIONS(5995), - [anon_sym_RBRACK] = ACTIONS(5995), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_RBRACE] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_in] = ACTIONS(5997), - [anon_sym_QMARK] = ACTIONS(5997), - [anon_sym_BANG] = ACTIONS(5997), - [anon_sym_PLUS_PLUS] = ACTIONS(5995), - [anon_sym_DASH_DASH] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(5997), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5997), - [anon_sym_PERCENT] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), - [anon_sym_LT_LT] = ACTIONS(5995), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_GT_GT_GT] = ACTIONS(5995), - [anon_sym_EQ_EQ] = ACTIONS(5995), - [anon_sym_BANG_EQ] = ACTIONS(5995), - [anon_sym_GT_EQ] = ACTIONS(5995), - [anon_sym_LT_EQ] = ACTIONS(5995), - [anon_sym_DOT] = ACTIONS(5997), - [anon_sym_EQ_GT] = ACTIONS(5995), - [anon_sym_switch] = ACTIONS(5995), - [anon_sym_when] = ACTIONS(5995), - [anon_sym_DOT_DOT] = ACTIONS(5995), - [anon_sym_and] = ACTIONS(5995), - [anon_sym_or] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), - [sym_op_coalescing] = ACTIONS(5995), - [anon_sym_into] = ACTIONS(5995), - [anon_sym_on] = ACTIONS(5995), - [anon_sym_equals] = ACTIONS(5995), - [anon_sym_by] = ACTIONS(5995), - [anon_sym_as] = ACTIONS(5995), - [anon_sym_is] = ACTIONS(5995), - [anon_sym_DASH_GT] = ACTIONS(5995), - [anon_sym_with] = ACTIONS(5995), - [aux_sym_preproc_if_token3] = ACTIONS(5995), - [aux_sym_preproc_else_token1] = ACTIONS(5995), - [aux_sym_preproc_elif_token1] = ACTIONS(5995), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -621751,26 +613710,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4761] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8092), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4761), [sym_preproc_endregion] = STATE(4761), [sym_preproc_line] = STATE(4761), @@ -621780,37 +613734,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4761), [sym_preproc_define] = STATE(4761), [sym_preproc_undef] = STATE(4761), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -621823,26 +613780,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4762] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8136), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4762), [sym_preproc_endregion] = STATE(4762), [sym_preproc_line] = STATE(4762), @@ -621852,37 +613804,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4762), [sym_preproc_define] = STATE(4762), [sym_preproc_undef] = STATE(4762), - [aux_sym_function_pointer_type_repeat1] = STATE(4761), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7342), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -621895,26 +613850,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4763] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8136), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4763), [sym_preproc_endregion] = STATE(4763), [sym_preproc_line] = STATE(4763), @@ -621924,37 +613874,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4763), [sym_preproc_define] = STATE(4763), [sym_preproc_undef] = STATE(4763), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5314), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -621967,26 +613920,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4764] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8117), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7305), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4764), [sym_preproc_endregion] = STATE(4764), [sym_preproc_line] = STATE(4764), @@ -621996,22 +613947,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4764), [sym_preproc_define] = STATE(4764), [sym_preproc_undef] = STATE(4764), - [aux_sym_function_pointer_type_repeat1] = STATE(4763), + [aux_sym_type_argument_list_repeat1] = STATE(7306), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(5678), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), + [anon_sym_GT] = ACTIONS(7344), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -622026,7 +613977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -622039,26 +613990,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4765] = { - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6220), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym__lambda_parameters] = STATE(7967), - [sym_identifier] = STATE(6072), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4765), [sym_preproc_endregion] = STATE(4765), [sym_preproc_line] = STATE(4765), @@ -622068,37 +614014,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4765), [sym_preproc_define] = STATE(4765), [sym_preproc_undef] = STATE(4765), - [aux_sym__lambda_expression_init_repeat1] = STATE(6161), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(7009), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7346), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -622111,26 +614060,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4766] = { - [sym_type_parameter_constraint] = STATE(6895), - [sym_constructor_constraint] = STATE(6907), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6919), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4766), [sym_preproc_endregion] = STATE(4766), [sym_preproc_line] = STATE(4766), @@ -622140,37 +614084,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4766), [sym_preproc_define] = STATE(4766), [sym_preproc_undef] = STATE(4766), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(7011), - [anon_sym_ref] = ACTIONS(7013), - [anon_sym_struct] = ACTIONS(7015), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(7017), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(7019), - [anon_sym_unmanaged] = ACTIONS(7019), - [anon_sym_scoped] = ACTIONS(7021), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(7348), + [anon_sym_QMARK] = ACTIONS(7350), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7354), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(7364), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7366), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -622183,6 +614130,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4767] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4767), [sym_preproc_endregion] = STATE(4767), [sym_preproc_line] = STATE(4767), @@ -622192,57 +614154,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4767), [sym_preproc_define] = STATE(4767), [sym_preproc_undef] = STATE(4767), - [anon_sym_SEMI] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(6373), - [anon_sym_COLON] = ACTIONS(6373), - [anon_sym_COMMA] = ACTIONS(6373), - [anon_sym_RBRACK] = ACTIONS(6373), - [anon_sym_LPAREN] = ACTIONS(6373), - [anon_sym_RPAREN] = ACTIONS(6373), - [anon_sym_RBRACE] = ACTIONS(6373), - [anon_sym_LT] = ACTIONS(6375), - [anon_sym_GT] = ACTIONS(6375), - [anon_sym_in] = ACTIONS(6373), - [anon_sym_QMARK] = ACTIONS(6375), - [anon_sym_BANG] = ACTIONS(6375), - [anon_sym_PLUS_PLUS] = ACTIONS(6373), - [anon_sym_DASH_DASH] = ACTIONS(6373), - [anon_sym_PLUS] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_STAR] = ACTIONS(6373), - [anon_sym_SLASH] = ACTIONS(6375), - [anon_sym_PERCENT] = ACTIONS(6373), - [anon_sym_CARET] = ACTIONS(6373), - [anon_sym_PIPE] = ACTIONS(6375), - [anon_sym_AMP] = ACTIONS(6375), - [anon_sym_LT_LT] = ACTIONS(6373), - [anon_sym_GT_GT] = ACTIONS(6375), - [anon_sym_GT_GT_GT] = ACTIONS(6373), - [anon_sym_EQ_EQ] = ACTIONS(6373), - [anon_sym_BANG_EQ] = ACTIONS(6373), - [anon_sym_GT_EQ] = ACTIONS(6373), - [anon_sym_LT_EQ] = ACTIONS(6373), - [anon_sym_DOT] = ACTIONS(6375), - [anon_sym_EQ_GT] = ACTIONS(6373), - [anon_sym_switch] = ACTIONS(6373), - [anon_sym_when] = ACTIONS(6373), - [anon_sym_DOT_DOT] = ACTIONS(6373), - [anon_sym_and] = ACTIONS(6373), - [anon_sym_or] = ACTIONS(6373), - [anon_sym_AMP_AMP] = ACTIONS(6373), - [anon_sym_PIPE_PIPE] = ACTIONS(6373), - [sym_op_coalescing] = ACTIONS(6373), - [anon_sym_on] = ACTIONS(6373), - [anon_sym_equals] = ACTIONS(6373), - [anon_sym_by] = ACTIONS(6373), - [anon_sym_as] = ACTIONS(6373), - [anon_sym_is] = ACTIONS(6373), - [anon_sym_DASH_GT] = ACTIONS(6373), - [anon_sym_with] = ACTIONS(6373), - [anon_sym_DQUOTE] = ACTIONS(6373), - [aux_sym_preproc_if_token3] = ACTIONS(6373), - [aux_sym_preproc_else_token1] = ACTIONS(6373), - [aux_sym_preproc_elif_token1] = ACTIONS(6373), + [anon_sym_SEMI] = ACTIONS(7368), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -622255,26 +614200,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4768] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7840), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4768), [sym_preproc_endregion] = STATE(4768), [sym_preproc_line] = STATE(4768), @@ -622284,37 +614224,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4768), [sym_preproc_define] = STATE(4768), [sym_preproc_undef] = STATE(4768), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -622327,6 +614270,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4769] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4769), [sym_preproc_endregion] = STATE(4769), [sym_preproc_line] = STATE(4769), @@ -622336,57 +614294,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4769), [sym_preproc_define] = STATE(4769), [sym_preproc_undef] = STATE(4769), - [anon_sym_SEMI] = ACTIONS(6393), - [anon_sym_LBRACK] = ACTIONS(6393), - [anon_sym_COLON] = ACTIONS(6393), - [anon_sym_COMMA] = ACTIONS(6393), - [anon_sym_RBRACK] = ACTIONS(6393), - [anon_sym_LPAREN] = ACTIONS(6393), - [anon_sym_RPAREN] = ACTIONS(6393), - [anon_sym_RBRACE] = ACTIONS(6393), - [anon_sym_LT] = ACTIONS(6395), - [anon_sym_GT] = ACTIONS(6395), - [anon_sym_in] = ACTIONS(6395), - [anon_sym_QMARK] = ACTIONS(6395), - [anon_sym_BANG] = ACTIONS(6395), - [anon_sym_PLUS_PLUS] = ACTIONS(6393), - [anon_sym_DASH_DASH] = ACTIONS(6393), - [anon_sym_PLUS] = ACTIONS(6395), - [anon_sym_DASH] = ACTIONS(6395), - [anon_sym_STAR] = ACTIONS(6393), - [anon_sym_SLASH] = ACTIONS(6395), - [anon_sym_PERCENT] = ACTIONS(6393), - [anon_sym_CARET] = ACTIONS(6393), - [anon_sym_PIPE] = ACTIONS(6395), - [anon_sym_AMP] = ACTIONS(6395), - [anon_sym_LT_LT] = ACTIONS(6393), - [anon_sym_GT_GT] = ACTIONS(6395), - [anon_sym_GT_GT_GT] = ACTIONS(6393), - [anon_sym_EQ_EQ] = ACTIONS(6393), - [anon_sym_BANG_EQ] = ACTIONS(6393), - [anon_sym_GT_EQ] = ACTIONS(6393), - [anon_sym_LT_EQ] = ACTIONS(6393), - [anon_sym_DOT] = ACTIONS(6395), - [anon_sym_EQ_GT] = ACTIONS(6393), - [anon_sym_switch] = ACTIONS(6393), - [anon_sym_when] = ACTIONS(6393), - [anon_sym_DOT_DOT] = ACTIONS(6393), - [anon_sym_and] = ACTIONS(6393), - [anon_sym_or] = ACTIONS(6393), - [anon_sym_AMP_AMP] = ACTIONS(6393), - [anon_sym_PIPE_PIPE] = ACTIONS(6393), - [sym_op_coalescing] = ACTIONS(6393), - [anon_sym_into] = ACTIONS(6393), - [anon_sym_on] = ACTIONS(6393), - [anon_sym_equals] = ACTIONS(6393), - [anon_sym_by] = ACTIONS(6393), - [anon_sym_as] = ACTIONS(6393), - [anon_sym_is] = ACTIONS(6393), - [anon_sym_DASH_GT] = ACTIONS(6393), - [anon_sym_with] = ACTIONS(6393), - [aux_sym_preproc_if_token3] = ACTIONS(6393), - [aux_sym_preproc_else_token1] = ACTIONS(6393), - [aux_sym_preproc_elif_token1] = ACTIONS(6393), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7370), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -622399,6 +614340,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4770] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4770), [sym_preproc_endregion] = STATE(4770), [sym_preproc_line] = STATE(4770), @@ -622408,57 +614364,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4770), [sym_preproc_define] = STATE(4770), [sym_preproc_undef] = STATE(4770), - [anon_sym_SEMI] = ACTIONS(6397), - [anon_sym_LBRACK] = ACTIONS(6397), - [anon_sym_COLON] = ACTIONS(6397), - [anon_sym_COMMA] = ACTIONS(6397), - [anon_sym_RBRACK] = ACTIONS(6397), - [anon_sym_LPAREN] = ACTIONS(6397), - [anon_sym_RPAREN] = ACTIONS(6397), - [anon_sym_RBRACE] = ACTIONS(6397), - [anon_sym_LT] = ACTIONS(6399), - [anon_sym_GT] = ACTIONS(6399), - [anon_sym_in] = ACTIONS(6399), - [anon_sym_QMARK] = ACTIONS(6399), - [anon_sym_BANG] = ACTIONS(6399), - [anon_sym_PLUS_PLUS] = ACTIONS(6397), - [anon_sym_DASH_DASH] = ACTIONS(6397), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_STAR] = ACTIONS(6397), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_PERCENT] = ACTIONS(6397), - [anon_sym_CARET] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(6399), - [anon_sym_AMP] = ACTIONS(6399), - [anon_sym_LT_LT] = ACTIONS(6397), - [anon_sym_GT_GT] = ACTIONS(6399), - [anon_sym_GT_GT_GT] = ACTIONS(6397), - [anon_sym_EQ_EQ] = ACTIONS(6397), - [anon_sym_BANG_EQ] = ACTIONS(6397), - [anon_sym_GT_EQ] = ACTIONS(6397), - [anon_sym_LT_EQ] = ACTIONS(6397), - [anon_sym_DOT] = ACTIONS(6399), - [anon_sym_EQ_GT] = ACTIONS(6397), - [anon_sym_switch] = ACTIONS(6397), - [anon_sym_when] = ACTIONS(6397), - [anon_sym_DOT_DOT] = ACTIONS(6397), - [anon_sym_and] = ACTIONS(6397), - [anon_sym_or] = ACTIONS(6397), - [anon_sym_AMP_AMP] = ACTIONS(6397), - [anon_sym_PIPE_PIPE] = ACTIONS(6397), - [sym_op_coalescing] = ACTIONS(6397), - [anon_sym_into] = ACTIONS(6397), - [anon_sym_on] = ACTIONS(6397), - [anon_sym_equals] = ACTIONS(6397), - [anon_sym_by] = ACTIONS(6397), - [anon_sym_as] = ACTIONS(6397), - [anon_sym_is] = ACTIONS(6397), - [anon_sym_DASH_GT] = ACTIONS(6397), - [anon_sym_with] = ACTIONS(6397), - [aux_sym_preproc_if_token3] = ACTIONS(6397), - [aux_sym_preproc_else_token1] = ACTIONS(6397), - [aux_sym_preproc_elif_token1] = ACTIONS(6397), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7372), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -622471,26 +614410,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4771] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7840), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4771), [sym_preproc_endregion] = STATE(4771), [sym_preproc_line] = STATE(4771), @@ -622500,37 +614434,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4771), [sym_preproc_define] = STATE(4771), [sym_preproc_undef] = STATE(4771), - [aux_sym_function_pointer_type_repeat1] = STATE(4773), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7374), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -622543,6 +614480,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4772] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4772), [sym_preproc_endregion] = STATE(4772), [sym_preproc_line] = STATE(4772), @@ -622552,57 +614504,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4772), [sym_preproc_define] = STATE(4772), [sym_preproc_undef] = STATE(4772), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LBRACK] = ACTIONS(6077), - [anon_sym_COLON] = ACTIONS(6077), - [anon_sym_COMMA] = ACTIONS(6077), - [anon_sym_RBRACK] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_RPAREN] = ACTIONS(6077), - [anon_sym_RBRACE] = ACTIONS(6077), - [anon_sym_LT] = ACTIONS(6079), - [anon_sym_GT] = ACTIONS(6079), - [anon_sym_in] = ACTIONS(6079), - [anon_sym_QMARK] = ACTIONS(6079), - [anon_sym_BANG] = ACTIONS(6079), - [anon_sym_PLUS_PLUS] = ACTIONS(6077), - [anon_sym_DASH_DASH] = ACTIONS(6077), - [anon_sym_PLUS] = ACTIONS(6079), - [anon_sym_DASH] = ACTIONS(6079), - [anon_sym_STAR] = ACTIONS(6077), - [anon_sym_SLASH] = ACTIONS(6079), - [anon_sym_PERCENT] = ACTIONS(6077), - [anon_sym_CARET] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6079), - [anon_sym_AMP] = ACTIONS(6079), - [anon_sym_LT_LT] = ACTIONS(6077), - [anon_sym_GT_GT] = ACTIONS(6079), - [anon_sym_GT_GT_GT] = ACTIONS(6077), - [anon_sym_EQ_EQ] = ACTIONS(6077), - [anon_sym_BANG_EQ] = ACTIONS(6077), - [anon_sym_GT_EQ] = ACTIONS(6077), - [anon_sym_LT_EQ] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6079), - [anon_sym_EQ_GT] = ACTIONS(6077), - [anon_sym_switch] = ACTIONS(6077), - [anon_sym_when] = ACTIONS(6077), - [anon_sym_DOT_DOT] = ACTIONS(6077), - [anon_sym_and] = ACTIONS(6077), - [anon_sym_or] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [sym_op_coalescing] = ACTIONS(6077), - [anon_sym_into] = ACTIONS(6077), - [anon_sym_on] = ACTIONS(6077), - [anon_sym_equals] = ACTIONS(6077), - [anon_sym_by] = ACTIONS(6077), - [anon_sym_as] = ACTIONS(6077), - [anon_sym_is] = ACTIONS(6077), - [anon_sym_DASH_GT] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [aux_sym_preproc_if_token3] = ACTIONS(6077), - [aux_sym_preproc_else_token1] = ACTIONS(6077), - [aux_sym_preproc_elif_token1] = ACTIONS(6077), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7376), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -622615,26 +614550,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4773] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7862), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4773), [sym_preproc_endregion] = STATE(4773), [sym_preproc_line] = STATE(4773), @@ -622644,37 +614574,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4773), [sym_preproc_define] = STATE(4773), [sym_preproc_undef] = STATE(4773), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -622687,6 +614620,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4774] = { + [sym_argument_list] = STATE(3125), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(4715), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3130), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(4774), [sym_preproc_endregion] = STATE(4774), [sym_preproc_line] = STATE(4774), @@ -622696,57 +614648,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4774), [sym_preproc_define] = STATE(4774), [sym_preproc_undef] = STATE(4774), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_COLON] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_RPAREN] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3201), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_GT_EQ] = ACTIONS(3201), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_when] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_op_coalescing] = ACTIONS(3201), - [anon_sym_into] = ACTIONS(3201), - [anon_sym_on] = ACTIONS(3201), - [anon_sym_equals] = ACTIONS(3201), - [anon_sym_by] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3201), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_with] = ACTIONS(3201), - [aux_sym_preproc_if_token3] = ACTIONS(3201), - [aux_sym_preproc_else_token1] = ACTIONS(3201), - [aux_sym_preproc_elif_token1] = ACTIONS(3201), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_ref] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7378), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -622759,6 +614690,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4775] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4775), [sym_preproc_endregion] = STATE(4775), [sym_preproc_line] = STATE(4775), @@ -622768,57 +614714,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4775), [sym_preproc_define] = STATE(4775), [sym_preproc_undef] = STATE(4775), - [anon_sym_SEMI] = ACTIONS(4424), - [anon_sym_LBRACK] = ACTIONS(4424), - [anon_sym_COLON] = ACTIONS(4424), - [anon_sym_COMMA] = ACTIONS(4424), - [anon_sym_RBRACK] = ACTIONS(4424), - [anon_sym_LPAREN] = ACTIONS(4424), - [anon_sym_RPAREN] = ACTIONS(4424), - [anon_sym_LBRACE] = ACTIONS(4424), - [anon_sym_RBRACE] = ACTIONS(4424), - [anon_sym_LT] = ACTIONS(4422), - [anon_sym_GT] = ACTIONS(4422), - [anon_sym_in] = ACTIONS(4424), - [anon_sym_QMARK] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4422), - [anon_sym_PLUS_PLUS] = ACTIONS(4424), - [anon_sym_DASH_DASH] = ACTIONS(4424), - [anon_sym_PLUS] = ACTIONS(4422), - [anon_sym_DASH] = ACTIONS(4422), - [anon_sym_STAR] = ACTIONS(4424), - [anon_sym_SLASH] = ACTIONS(4422), - [anon_sym_PERCENT] = ACTIONS(4424), - [anon_sym_CARET] = ACTIONS(4424), - [anon_sym_PIPE] = ACTIONS(4422), - [anon_sym_AMP] = ACTIONS(4422), - [anon_sym_LT_LT] = ACTIONS(4424), - [anon_sym_GT_GT] = ACTIONS(4422), - [anon_sym_GT_GT_GT] = ACTIONS(4424), - [anon_sym_EQ_EQ] = ACTIONS(4424), - [anon_sym_BANG_EQ] = ACTIONS(4424), - [anon_sym_GT_EQ] = ACTIONS(4424), - [anon_sym_LT_EQ] = ACTIONS(4424), - [anon_sym_DOT] = ACTIONS(4422), - [anon_sym_EQ_GT] = ACTIONS(4424), - [anon_sym_switch] = ACTIONS(4424), - [anon_sym_when] = ACTIONS(4424), - [anon_sym_DOT_DOT] = ACTIONS(4424), - [anon_sym_and] = ACTIONS(4424), - [anon_sym_or] = ACTIONS(4424), - [anon_sym_AMP_AMP] = ACTIONS(4424), - [anon_sym_PIPE_PIPE] = ACTIONS(4424), - [sym_op_coalescing] = ACTIONS(4424), - [anon_sym_on] = ACTIONS(4424), - [anon_sym_equals] = ACTIONS(4424), - [anon_sym_by] = ACTIONS(4424), - [anon_sym_as] = ACTIONS(4424), - [anon_sym_is] = ACTIONS(4424), - [anon_sym_DASH_GT] = ACTIONS(4424), - [anon_sym_with] = ACTIONS(4424), - [aux_sym_preproc_if_token3] = ACTIONS(4424), - [aux_sym_preproc_else_token1] = ACTIONS(4424), - [aux_sym_preproc_elif_token1] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(7380), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -622831,6 +614760,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4776] = { + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7339), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4776), [sym_preproc_endregion] = STATE(4776), [sym_preproc_line] = STATE(4776), @@ -622840,57 +614787,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4776), [sym_preproc_define] = STATE(4776), [sym_preproc_undef] = STATE(4776), - [anon_sym_SEMI] = ACTIONS(6377), - [anon_sym_LBRACK] = ACTIONS(6377), - [anon_sym_COLON] = ACTIONS(6377), - [anon_sym_COMMA] = ACTIONS(6377), - [anon_sym_RBRACK] = ACTIONS(6377), - [anon_sym_LPAREN] = ACTIONS(6377), - [anon_sym_RPAREN] = ACTIONS(6377), - [anon_sym_RBRACE] = ACTIONS(6377), - [anon_sym_LT] = ACTIONS(6379), - [anon_sym_GT] = ACTIONS(6379), - [anon_sym_in] = ACTIONS(6379), - [anon_sym_QMARK] = ACTIONS(6379), - [anon_sym_BANG] = ACTIONS(6379), - [anon_sym_PLUS_PLUS] = ACTIONS(6377), - [anon_sym_DASH_DASH] = ACTIONS(6377), - [anon_sym_PLUS] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [anon_sym_STAR] = ACTIONS(6377), - [anon_sym_SLASH] = ACTIONS(6379), - [anon_sym_PERCENT] = ACTIONS(6377), - [anon_sym_CARET] = ACTIONS(6377), - [anon_sym_PIPE] = ACTIONS(6379), - [anon_sym_AMP] = ACTIONS(6379), - [anon_sym_LT_LT] = ACTIONS(6377), - [anon_sym_GT_GT] = ACTIONS(6379), - [anon_sym_GT_GT_GT] = ACTIONS(6377), - [anon_sym_EQ_EQ] = ACTIONS(6377), - [anon_sym_BANG_EQ] = ACTIONS(6377), - [anon_sym_GT_EQ] = ACTIONS(6377), - [anon_sym_LT_EQ] = ACTIONS(6377), - [anon_sym_DOT] = ACTIONS(6379), - [anon_sym_EQ_GT] = ACTIONS(6377), - [anon_sym_switch] = ACTIONS(6377), - [anon_sym_when] = ACTIONS(6377), - [anon_sym_DOT_DOT] = ACTIONS(6377), - [anon_sym_and] = ACTIONS(6377), - [anon_sym_or] = ACTIONS(6377), - [anon_sym_AMP_AMP] = ACTIONS(6377), - [anon_sym_PIPE_PIPE] = ACTIONS(6377), - [sym_op_coalescing] = ACTIONS(6377), - [anon_sym_into] = ACTIONS(6377), - [anon_sym_on] = ACTIONS(6377), - [anon_sym_equals] = ACTIONS(6377), - [anon_sym_by] = ACTIONS(6377), - [anon_sym_as] = ACTIONS(6377), - [anon_sym_is] = ACTIONS(6377), - [anon_sym_DASH_GT] = ACTIONS(6377), - [anon_sym_with] = ACTIONS(6377), - [aux_sym_preproc_if_token3] = ACTIONS(6377), - [aux_sym_preproc_else_token1] = ACTIONS(6377), - [aux_sym_preproc_elif_token1] = ACTIONS(6377), + [aux_sym_type_argument_list_repeat1] = STATE(7341), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_GT] = ACTIONS(7382), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -622903,6 +614830,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4777] = { + [sym_argument_list] = STATE(3118), + [sym__name] = STATE(5481), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3051), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(5460), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(5429), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(4777), [sym_preproc_endregion] = STATE(4777), [sym_preproc_line] = STATE(4777), @@ -622912,57 +614858,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4777), [sym_preproc_define] = STATE(4777), [sym_preproc_undef] = STATE(4777), - [anon_sym_SEMI] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_COLON] = ACTIONS(4316), - [anon_sym_COMMA] = ACTIONS(4316), - [anon_sym_RBRACK] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4316), - [anon_sym_RPAREN] = ACTIONS(4316), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_RBRACE] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4314), - [anon_sym_GT] = ACTIONS(4314), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4314), - [anon_sym_BANG] = ACTIONS(4314), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_STAR] = ACTIONS(4316), - [anon_sym_SLASH] = ACTIONS(4314), - [anon_sym_PERCENT] = ACTIONS(4316), - [anon_sym_CARET] = ACTIONS(4316), - [anon_sym_PIPE] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4314), - [anon_sym_LT_LT] = ACTIONS(4316), - [anon_sym_GT_GT] = ACTIONS(4314), - [anon_sym_GT_GT_GT] = ACTIONS(4316), - [anon_sym_EQ_EQ] = ACTIONS(4316), - [anon_sym_BANG_EQ] = ACTIONS(4316), - [anon_sym_GT_EQ] = ACTIONS(4316), - [anon_sym_LT_EQ] = ACTIONS(4316), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_EQ_GT] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4316), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4316), - [anon_sym_PIPE_PIPE] = ACTIONS(4316), - [sym_op_coalescing] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4316), - [anon_sym_with] = ACTIONS(4316), - [aux_sym_preproc_if_token3] = ACTIONS(4316), - [aux_sym_preproc_else_token1] = ACTIONS(4316), - [aux_sym_preproc_elif_token1] = ACTIONS(4316), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(7384), + [anon_sym_LPAREN] = ACTIONS(7386), + [anon_sym_ref] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(7388), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7392), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -622975,6 +614900,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4778] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4778), [sym_preproc_endregion] = STATE(4778), [sym_preproc_line] = STATE(4778), @@ -622984,57 +614924,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4778), [sym_preproc_define] = STATE(4778), [sym_preproc_undef] = STATE(4778), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4341), - [anon_sym_COLON] = ACTIONS(4341), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_RBRACK] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym_RPAREN] = ACTIONS(4341), - [anon_sym_LBRACE] = ACTIONS(4341), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_in] = ACTIONS(4341), - [anon_sym_QMARK] = ACTIONS(4339), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_PLUS_PLUS] = ACTIONS(4341), - [anon_sym_DASH_DASH] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4341), - [anon_sym_SLASH] = ACTIONS(4339), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_CARET] = ACTIONS(4341), - [anon_sym_PIPE] = ACTIONS(4339), - [anon_sym_AMP] = ACTIONS(4339), - [anon_sym_LT_LT] = ACTIONS(4341), - [anon_sym_GT_GT] = ACTIONS(4339), - [anon_sym_GT_GT_GT] = ACTIONS(4341), - [anon_sym_EQ_EQ] = ACTIONS(4341), - [anon_sym_BANG_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_EQ_GT] = ACTIONS(4341), - [anon_sym_switch] = ACTIONS(4341), - [anon_sym_when] = ACTIONS(4341), - [anon_sym_DOT_DOT] = ACTIONS(4341), - [anon_sym_and] = ACTIONS(4341), - [anon_sym_or] = ACTIONS(4341), - [anon_sym_AMP_AMP] = ACTIONS(4341), - [anon_sym_PIPE_PIPE] = ACTIONS(4341), - [sym_op_coalescing] = ACTIONS(4341), - [anon_sym_on] = ACTIONS(4341), - [anon_sym_equals] = ACTIONS(4341), - [anon_sym_by] = ACTIONS(4341), - [anon_sym_as] = ACTIONS(4341), - [anon_sym_is] = ACTIONS(4341), - [anon_sym_DASH_GT] = ACTIONS(4341), - [anon_sym_with] = ACTIONS(4341), - [aux_sym_preproc_if_token3] = ACTIONS(4341), - [aux_sym_preproc_else_token1] = ACTIONS(4341), - [aux_sym_preproc_elif_token1] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -623047,6 +614970,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4779] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4779), [sym_preproc_endregion] = STATE(4779), [sym_preproc_line] = STATE(4779), @@ -623056,57 +614994,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4779), [sym_preproc_define] = STATE(4779), [sym_preproc_undef] = STATE(4779), - [anon_sym_SEMI] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(4357), - [anon_sym_COLON] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4357), - [anon_sym_RBRACK] = ACTIONS(4357), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_RPAREN] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4357), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4357), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_PLUS_PLUS] = ACTIONS(4357), - [anon_sym_DASH_DASH] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4357), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4357), - [anon_sym_CARET] = ACTIONS(4357), - [anon_sym_PIPE] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_LT] = ACTIONS(4357), - [anon_sym_GT_GT] = ACTIONS(4355), - [anon_sym_GT_GT_GT] = ACTIONS(4357), - [anon_sym_EQ_EQ] = ACTIONS(4357), - [anon_sym_BANG_EQ] = ACTIONS(4357), - [anon_sym_GT_EQ] = ACTIONS(4357), - [anon_sym_LT_EQ] = ACTIONS(4357), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_EQ_GT] = ACTIONS(4357), - [anon_sym_switch] = ACTIONS(4357), - [anon_sym_when] = ACTIONS(4357), - [anon_sym_DOT_DOT] = ACTIONS(4357), - [anon_sym_and] = ACTIONS(4357), - [anon_sym_or] = ACTIONS(4357), - [anon_sym_AMP_AMP] = ACTIONS(4357), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [sym_op_coalescing] = ACTIONS(4357), - [anon_sym_on] = ACTIONS(4357), - [anon_sym_equals] = ACTIONS(4357), - [anon_sym_by] = ACTIONS(4357), - [anon_sym_as] = ACTIONS(4357), - [anon_sym_is] = ACTIONS(4357), - [anon_sym_DASH_GT] = ACTIONS(4357), - [anon_sym_with] = ACTIONS(4357), - [aux_sym_preproc_if_token3] = ACTIONS(4357), - [aux_sym_preproc_else_token1] = ACTIONS(4357), - [aux_sym_preproc_elif_token1] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -623119,7 +615040,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4780] = { - [sym_type_argument_list] = STATE(3621), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4780), [sym_preproc_endregion] = STATE(4780), [sym_preproc_line] = STATE(4780), @@ -623129,56 +615064,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4780), [sym_preproc_define] = STATE(4780), [sym_preproc_undef] = STATE(4780), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(5761), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_COLON_COLON] = ACTIONS(7023), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_into] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_SEMI] = ACTIONS(7398), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -623191,6 +615110,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4781] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4781), [sym_preproc_endregion] = STATE(4781), [sym_preproc_line] = STATE(4781), @@ -623200,57 +615134,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4781), [sym_preproc_define] = STATE(4781), [sym_preproc_undef] = STATE(4781), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_when] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3953), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_on] = ACTIONS(3953), - [anon_sym_equals] = ACTIONS(3953), - [anon_sym_by] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), - [aux_sym_preproc_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7400), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -623263,6 +615180,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4782] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4782), [sym_preproc_endregion] = STATE(4782), [sym_preproc_line] = STATE(4782), @@ -623272,57 +615204,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4782), [sym_preproc_define] = STATE(4782), [sym_preproc_undef] = STATE(4782), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_RBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_LBRACE] = ACTIONS(3957), - [anon_sym_RBRACE] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3955), - [anon_sym_GT] = ACTIONS(3955), - [anon_sym_in] = ACTIONS(3957), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3955), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3955), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_EQ_GT] = ACTIONS(3957), - [anon_sym_switch] = ACTIONS(3957), - [anon_sym_when] = ACTIONS(3957), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3957), - [anon_sym_or] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [sym_op_coalescing] = ACTIONS(3957), - [anon_sym_on] = ACTIONS(3957), - [anon_sym_equals] = ACTIONS(3957), - [anon_sym_by] = ACTIONS(3957), - [anon_sym_as] = ACTIONS(3957), - [anon_sym_is] = ACTIONS(3957), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3957), - [aux_sym_preproc_if_token3] = ACTIONS(3957), - [aux_sym_preproc_else_token1] = ACTIONS(3957), - [aux_sym_preproc_elif_token1] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(7402), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -623335,6 +615250,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4783] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4783), [sym_preproc_endregion] = STATE(4783), [sym_preproc_line] = STATE(4783), @@ -623344,57 +615274,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4783), [sym_preproc_define] = STATE(4783), [sym_preproc_undef] = STATE(4783), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_COLON] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_RPAREN] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3201), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_GT_EQ] = ACTIONS(3201), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_when] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_op_coalescing] = ACTIONS(3201), - [anon_sym_into] = ACTIONS(3201), - [anon_sym_on] = ACTIONS(3201), - [anon_sym_equals] = ACTIONS(3201), - [anon_sym_by] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3201), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_with] = ACTIONS(3201), - [aux_sym_preproc_if_token3] = ACTIONS(3201), - [aux_sym_preproc_else_token1] = ACTIONS(3201), - [aux_sym_preproc_elif_token1] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7404), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -623407,6 +615320,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4784] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4784), [sym_preproc_endregion] = STATE(4784), [sym_preproc_line] = STATE(4784), @@ -623416,57 +615344,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4784), [sym_preproc_define] = STATE(4784), [sym_preproc_undef] = STATE(4784), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_RBRACK] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_RPAREN] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_in] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3373), - [anon_sym_CARET] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3373), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3373), - [anon_sym_EQ_EQ] = ACTIONS(3373), - [anon_sym_BANG_EQ] = ACTIONS(3373), - [anon_sym_GT_EQ] = ACTIONS(3373), - [anon_sym_LT_EQ] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_EQ_GT] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_when] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3373), - [anon_sym_and] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_PIPE_PIPE] = ACTIONS(3373), - [sym_op_coalescing] = ACTIONS(3373), - [anon_sym_into] = ACTIONS(3373), - [anon_sym_on] = ACTIONS(3373), - [anon_sym_equals] = ACTIONS(3373), - [anon_sym_by] = ACTIONS(3373), - [anon_sym_as] = ACTIONS(3373), - [anon_sym_is] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [aux_sym_preproc_if_token3] = ACTIONS(3373), - [aux_sym_preproc_else_token1] = ACTIONS(3373), - [aux_sym_preproc_elif_token1] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7406), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -623479,6 +615390,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4785] = { + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7351), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4785), [sym_preproc_endregion] = STATE(4785), [sym_preproc_line] = STATE(4785), @@ -623488,57 +615417,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4785), [sym_preproc_define] = STATE(4785), [sym_preproc_undef] = STATE(4785), - [anon_sym_SEMI] = ACTIONS(7025), - [anon_sym_LBRACK] = ACTIONS(7025), - [anon_sym_COLON] = ACTIONS(7025), - [anon_sym_COMMA] = ACTIONS(7025), - [anon_sym_RBRACK] = ACTIONS(7025), - [anon_sym_LPAREN] = ACTIONS(7025), - [anon_sym_RPAREN] = ACTIONS(7025), - [anon_sym_RBRACE] = ACTIONS(7025), - [anon_sym_LT] = ACTIONS(7027), - [anon_sym_GT] = ACTIONS(7027), - [anon_sym_in] = ACTIONS(7027), - [anon_sym_QMARK] = ACTIONS(7027), - [anon_sym_BANG] = ACTIONS(7027), - [anon_sym_PLUS_PLUS] = ACTIONS(7025), - [anon_sym_DASH_DASH] = ACTIONS(7025), - [anon_sym_PLUS] = ACTIONS(7027), - [anon_sym_DASH] = ACTIONS(7027), - [anon_sym_STAR] = ACTIONS(7025), - [anon_sym_SLASH] = ACTIONS(7027), - [anon_sym_PERCENT] = ACTIONS(7025), - [anon_sym_CARET] = ACTIONS(7025), - [anon_sym_PIPE] = ACTIONS(7027), - [anon_sym_AMP] = ACTIONS(7027), - [anon_sym_LT_LT] = ACTIONS(7025), - [anon_sym_GT_GT] = ACTIONS(7027), - [anon_sym_GT_GT_GT] = ACTIONS(7025), - [anon_sym_EQ_EQ] = ACTIONS(7025), - [anon_sym_BANG_EQ] = ACTIONS(7025), - [anon_sym_GT_EQ] = ACTIONS(7025), - [anon_sym_LT_EQ] = ACTIONS(7025), - [anon_sym_DOT] = ACTIONS(7027), - [anon_sym_EQ_GT] = ACTIONS(7025), - [anon_sym_switch] = ACTIONS(7025), - [anon_sym_when] = ACTIONS(7025), - [anon_sym_DOT_DOT] = ACTIONS(7025), - [anon_sym_and] = ACTIONS(7025), - [anon_sym_or] = ACTIONS(7025), - [anon_sym_AMP_AMP] = ACTIONS(7025), - [anon_sym_PIPE_PIPE] = ACTIONS(7025), - [sym_op_coalescing] = ACTIONS(7025), - [anon_sym_into] = ACTIONS(7025), - [anon_sym_on] = ACTIONS(7025), - [anon_sym_equals] = ACTIONS(7025), - [anon_sym_by] = ACTIONS(7025), - [anon_sym_as] = ACTIONS(7025), - [anon_sym_is] = ACTIONS(7025), - [anon_sym_DASH_GT] = ACTIONS(7025), - [anon_sym_with] = ACTIONS(7025), - [aux_sym_preproc_if_token3] = ACTIONS(7025), - [aux_sym_preproc_else_token1] = ACTIONS(7025), - [aux_sym_preproc_elif_token1] = ACTIONS(7025), + [aux_sym_type_argument_list_repeat1] = STATE(7353), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_GT] = ACTIONS(7408), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -623551,6 +615460,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4786] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4786), [sym_preproc_endregion] = STATE(4786), [sym_preproc_line] = STATE(4786), @@ -623560,57 +615484,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4786), [sym_preproc_define] = STATE(4786), [sym_preproc_undef] = STATE(4786), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_COLON] = ACTIONS(3972), - [anon_sym_COMMA] = ACTIONS(3972), - [anon_sym_RBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3972), - [anon_sym_RPAREN] = ACTIONS(3972), - [anon_sym_LBRACE] = ACTIONS(3972), - [anon_sym_RBRACE] = ACTIONS(3972), - [anon_sym_LT] = ACTIONS(3970), - [anon_sym_GT] = ACTIONS(3970), - [anon_sym_in] = ACTIONS(3972), - [anon_sym_QMARK] = ACTIONS(3970), - [anon_sym_BANG] = ACTIONS(3970), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(3970), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_CARET] = ACTIONS(3972), - [anon_sym_PIPE] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_LT_LT] = ACTIONS(3972), - [anon_sym_GT_GT] = ACTIONS(3970), - [anon_sym_GT_GT_GT] = ACTIONS(3972), - [anon_sym_EQ_EQ] = ACTIONS(3972), - [anon_sym_BANG_EQ] = ACTIONS(3972), - [anon_sym_GT_EQ] = ACTIONS(3972), - [anon_sym_LT_EQ] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(3970), - [anon_sym_EQ_GT] = ACTIONS(3972), - [anon_sym_switch] = ACTIONS(3972), - [anon_sym_when] = ACTIONS(3972), - [anon_sym_DOT_DOT] = ACTIONS(3972), - [anon_sym_and] = ACTIONS(3972), - [anon_sym_or] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_PIPE_PIPE] = ACTIONS(3972), - [sym_op_coalescing] = ACTIONS(3972), - [anon_sym_on] = ACTIONS(3972), - [anon_sym_equals] = ACTIONS(3972), - [anon_sym_by] = ACTIONS(3972), - [anon_sym_as] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3972), - [anon_sym_DASH_GT] = ACTIONS(3972), - [anon_sym_with] = ACTIONS(3972), - [aux_sym_preproc_if_token3] = ACTIONS(3972), - [aux_sym_preproc_else_token1] = ACTIONS(3972), - [aux_sym_preproc_elif_token1] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7410), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -623623,6 +615530,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4787] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4787), [sym_preproc_endregion] = STATE(4787), [sym_preproc_line] = STATE(4787), @@ -623632,57 +615554,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4787), [sym_preproc_define] = STATE(4787), [sym_preproc_undef] = STATE(4787), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(7029), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_when] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4331), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7412), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -623695,6 +615600,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4788] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4788), [sym_preproc_endregion] = STATE(4788), [sym_preproc_line] = STATE(4788), @@ -623704,57 +615624,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4788), [sym_preproc_define] = STATE(4788), [sym_preproc_undef] = STATE(4788), - [sym__identifier_token] = ACTIONS(3394), - [anon_sym_extern] = ACTIONS(3394), - [anon_sym_alias] = ACTIONS(3394), - [anon_sym_global] = ACTIONS(3394), - [anon_sym_unsafe] = ACTIONS(3394), - [anon_sym_static] = ACTIONS(3394), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_RBRACE] = ACTIONS(3396), - [anon_sym_public] = ACTIONS(3394), - [anon_sym_private] = ACTIONS(3394), - [anon_sym_readonly] = ACTIONS(3394), - [anon_sym_abstract] = ACTIONS(3394), - [anon_sym_async] = ACTIONS(3394), - [anon_sym_const] = ACTIONS(3394), - [anon_sym_file] = ACTIONS(3394), - [anon_sym_fixed] = ACTIONS(3394), - [anon_sym_internal] = ACTIONS(3394), - [anon_sym_new] = ACTIONS(3394), - [anon_sym_override] = ACTIONS(3394), - [anon_sym_partial] = ACTIONS(3394), - [anon_sym_protected] = ACTIONS(3394), - [anon_sym_required] = ACTIONS(3394), - [anon_sym_sealed] = ACTIONS(3394), - [anon_sym_virtual] = ACTIONS(3394), - [anon_sym_volatile] = ACTIONS(3394), - [anon_sym_where] = ACTIONS(3394), - [anon_sym_notnull] = ACTIONS(3394), - [anon_sym_unmanaged] = ACTIONS(3394), - [sym_accessor_get] = ACTIONS(3394), - [sym_accessor_set] = ACTIONS(3394), - [sym_accessor_add] = ACTIONS(3394), - [sym_accessor_remove] = ACTIONS(3394), - [sym_accessor_init] = ACTIONS(3394), - [anon_sym_scoped] = ACTIONS(3394), - [anon_sym_var] = ACTIONS(3394), - [anon_sym_yield] = ACTIONS(3394), - [anon_sym_when] = ACTIONS(3394), - [anon_sym_from] = ACTIONS(3394), - [anon_sym_into] = ACTIONS(3394), - [anon_sym_join] = ACTIONS(3394), - [anon_sym_on] = ACTIONS(3394), - [anon_sym_equals] = ACTIONS(3394), - [anon_sym_let] = ACTIONS(3394), - [anon_sym_orderby] = ACTIONS(3394), - [anon_sym_ascending] = ACTIONS(3394), - [anon_sym_descending] = ACTIONS(3394), - [anon_sym_group] = ACTIONS(3394), - [anon_sym_by] = ACTIONS(3394), - [anon_sym_select] = ACTIONS(3394), - [sym_grit_metavariable] = ACTIONS(3396), - [aux_sym_preproc_if_token1] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7414), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -623767,6 +615670,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4789] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4789), [sym_preproc_endregion] = STATE(4789), [sym_preproc_line] = STATE(4789), @@ -623776,57 +615694,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4789), [sym_preproc_define] = STATE(4789), [sym_preproc_undef] = STATE(4789), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_when] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4331), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7432), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -623839,6 +615740,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4790] = { + [sym_argument_list] = STATE(3118), + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3051), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(4582), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(4790), [sym_preproc_endregion] = STATE(4790), [sym_preproc_line] = STATE(4790), @@ -623848,57 +615768,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4790), [sym_preproc_define] = STATE(4790), [sym_preproc_undef] = STATE(4790), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym_LBRACK] = ACTIONS(3968), - [anon_sym_COLON] = ACTIONS(3968), - [anon_sym_COMMA] = ACTIONS(3968), - [anon_sym_RBRACK] = ACTIONS(3968), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_RPAREN] = ACTIONS(3968), - [anon_sym_LBRACE] = ACTIONS(3968), - [anon_sym_RBRACE] = ACTIONS(3968), - [anon_sym_LT] = ACTIONS(3966), - [anon_sym_GT] = ACTIONS(3966), - [anon_sym_in] = ACTIONS(3968), - [anon_sym_QMARK] = ACTIONS(3966), - [anon_sym_BANG] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_SLASH] = ACTIONS(3966), - [anon_sym_PERCENT] = ACTIONS(3968), - [anon_sym_CARET] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(3966), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_LT_LT] = ACTIONS(3968), - [anon_sym_GT_GT] = ACTIONS(3966), - [anon_sym_GT_GT_GT] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3968), - [anon_sym_BANG_EQ] = ACTIONS(3968), - [anon_sym_GT_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3968), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_EQ_GT] = ACTIONS(3968), - [anon_sym_switch] = ACTIONS(3968), - [anon_sym_when] = ACTIONS(3968), - [anon_sym_DOT_DOT] = ACTIONS(3968), - [anon_sym_and] = ACTIONS(3968), - [anon_sym_or] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_PIPE_PIPE] = ACTIONS(3968), - [sym_op_coalescing] = ACTIONS(3968), - [anon_sym_on] = ACTIONS(3968), - [anon_sym_equals] = ACTIONS(3968), - [anon_sym_by] = ACTIONS(3968), - [anon_sym_as] = ACTIONS(3968), - [anon_sym_is] = ACTIONS(3968), - [anon_sym_DASH_GT] = ACTIONS(3968), - [anon_sym_with] = ACTIONS(3968), - [aux_sym_preproc_if_token3] = ACTIONS(3968), - [aux_sym_preproc_else_token1] = ACTIONS(3968), - [aux_sym_preproc_elif_token1] = ACTIONS(3968), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(7384), + [anon_sym_LPAREN] = ACTIONS(7386), + [anon_sym_ref] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(7388), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7438), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -623911,6 +615810,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4791] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4791), [sym_preproc_endregion] = STATE(4791), [sym_preproc_line] = STATE(4791), @@ -623920,57 +615834,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4791), [sym_preproc_define] = STATE(4791), [sym_preproc_undef] = STATE(4791), - [anon_sym_SEMI] = ACTIONS(6148), - [anon_sym_LBRACK] = ACTIONS(6148), - [anon_sym_COLON] = ACTIONS(6148), - [anon_sym_COMMA] = ACTIONS(6148), - [anon_sym_RBRACK] = ACTIONS(6148), - [anon_sym_LPAREN] = ACTIONS(6148), - [anon_sym_RPAREN] = ACTIONS(6148), - [anon_sym_RBRACE] = ACTIONS(6148), - [anon_sym_LT] = ACTIONS(6150), - [anon_sym_GT] = ACTIONS(6150), - [anon_sym_in] = ACTIONS(6150), - [anon_sym_QMARK] = ACTIONS(6150), - [anon_sym_BANG] = ACTIONS(6150), - [anon_sym_PLUS_PLUS] = ACTIONS(6148), - [anon_sym_DASH_DASH] = ACTIONS(6148), - [anon_sym_PLUS] = ACTIONS(6150), - [anon_sym_DASH] = ACTIONS(6150), - [anon_sym_STAR] = ACTIONS(6148), - [anon_sym_SLASH] = ACTIONS(6150), - [anon_sym_PERCENT] = ACTIONS(6148), - [anon_sym_CARET] = ACTIONS(6148), - [anon_sym_PIPE] = ACTIONS(6150), - [anon_sym_AMP] = ACTIONS(6150), - [anon_sym_LT_LT] = ACTIONS(6148), - [anon_sym_GT_GT] = ACTIONS(6150), - [anon_sym_GT_GT_GT] = ACTIONS(6148), - [anon_sym_EQ_EQ] = ACTIONS(6148), - [anon_sym_BANG_EQ] = ACTIONS(6148), - [anon_sym_GT_EQ] = ACTIONS(6148), - [anon_sym_LT_EQ] = ACTIONS(6148), - [anon_sym_DOT] = ACTIONS(6150), - [anon_sym_EQ_GT] = ACTIONS(6148), - [anon_sym_switch] = ACTIONS(6148), - [anon_sym_when] = ACTIONS(6148), - [anon_sym_DOT_DOT] = ACTIONS(6148), - [anon_sym_and] = ACTIONS(6148), - [anon_sym_or] = ACTIONS(6148), - [anon_sym_AMP_AMP] = ACTIONS(6148), - [anon_sym_PIPE_PIPE] = ACTIONS(6148), - [sym_op_coalescing] = ACTIONS(6148), - [anon_sym_into] = ACTIONS(6148), - [anon_sym_on] = ACTIONS(6148), - [anon_sym_equals] = ACTIONS(6148), - [anon_sym_by] = ACTIONS(6148), - [anon_sym_as] = ACTIONS(6148), - [anon_sym_is] = ACTIONS(6148), - [anon_sym_DASH_GT] = ACTIONS(6148), - [anon_sym_with] = ACTIONS(6148), - [aux_sym_preproc_if_token3] = ACTIONS(6148), - [aux_sym_preproc_else_token1] = ACTIONS(6148), - [aux_sym_preproc_elif_token1] = ACTIONS(6148), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -623983,6 +615880,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4792] = { + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7358), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4792), [sym_preproc_endregion] = STATE(4792), [sym_preproc_line] = STATE(4792), @@ -623992,57 +615907,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4792), [sym_preproc_define] = STATE(4792), [sym_preproc_undef] = STATE(4792), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(7029), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_when] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4331), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [aux_sym_type_argument_list_repeat1] = STATE(7359), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_GT] = ACTIONS(7440), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -624055,6 +615950,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4793] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4793), [sym_preproc_endregion] = STATE(4793), [sym_preproc_line] = STATE(4793), @@ -624064,57 +615974,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4793), [sym_preproc_define] = STATE(4793), [sym_preproc_undef] = STATE(4793), - [anon_sym_SEMI] = ACTIONS(7032), - [anon_sym_LBRACK] = ACTIONS(7032), - [anon_sym_COLON] = ACTIONS(7032), - [anon_sym_COMMA] = ACTIONS(7032), - [anon_sym_RBRACK] = ACTIONS(7032), - [anon_sym_LPAREN] = ACTIONS(7032), - [anon_sym_RPAREN] = ACTIONS(7032), - [anon_sym_RBRACE] = ACTIONS(7032), - [anon_sym_LT] = ACTIONS(7034), - [anon_sym_GT] = ACTIONS(7034), - [anon_sym_in] = ACTIONS(7034), - [anon_sym_QMARK] = ACTIONS(7034), - [anon_sym_BANG] = ACTIONS(7034), - [anon_sym_PLUS_PLUS] = ACTIONS(7032), - [anon_sym_DASH_DASH] = ACTIONS(7032), - [anon_sym_PLUS] = ACTIONS(7034), - [anon_sym_DASH] = ACTIONS(7034), - [anon_sym_STAR] = ACTIONS(7032), - [anon_sym_SLASH] = ACTIONS(7034), - [anon_sym_PERCENT] = ACTIONS(7032), - [anon_sym_CARET] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - [anon_sym_LT_LT] = ACTIONS(7032), - [anon_sym_GT_GT] = ACTIONS(7034), - [anon_sym_GT_GT_GT] = ACTIONS(7032), - [anon_sym_EQ_EQ] = ACTIONS(7032), - [anon_sym_BANG_EQ] = ACTIONS(7032), - [anon_sym_GT_EQ] = ACTIONS(7032), - [anon_sym_LT_EQ] = ACTIONS(7032), - [anon_sym_DOT] = ACTIONS(7034), - [anon_sym_EQ_GT] = ACTIONS(7032), - [anon_sym_switch] = ACTIONS(7032), - [anon_sym_when] = ACTIONS(7032), - [anon_sym_DOT_DOT] = ACTIONS(7032), - [anon_sym_and] = ACTIONS(7032), - [anon_sym_or] = ACTIONS(7032), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [sym_op_coalescing] = ACTIONS(7032), - [anon_sym_into] = ACTIONS(7032), - [anon_sym_on] = ACTIONS(7032), - [anon_sym_equals] = ACTIONS(7032), - [anon_sym_by] = ACTIONS(7032), - [anon_sym_as] = ACTIONS(7032), - [anon_sym_is] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [anon_sym_with] = ACTIONS(7032), - [aux_sym_preproc_if_token3] = ACTIONS(7032), - [aux_sym_preproc_else_token1] = ACTIONS(7032), - [aux_sym_preproc_elif_token1] = ACTIONS(7032), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -624127,6 +616020,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4794] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4794), [sym_preproc_endregion] = STATE(4794), [sym_preproc_line] = STATE(4794), @@ -624136,57 +616044,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4794), [sym_preproc_define] = STATE(4794), [sym_preproc_undef] = STATE(4794), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_LBRACK] = ACTIONS(3976), - [anon_sym_COLON] = ACTIONS(3976), - [anon_sym_COMMA] = ACTIONS(3976), - [anon_sym_RBRACK] = ACTIONS(3976), - [anon_sym_LPAREN] = ACTIONS(3976), - [anon_sym_RPAREN] = ACTIONS(3976), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_RBRACE] = ACTIONS(3976), - [anon_sym_LT] = ACTIONS(3974), - [anon_sym_GT] = ACTIONS(3974), - [anon_sym_in] = ACTIONS(3976), - [anon_sym_QMARK] = ACTIONS(3974), - [anon_sym_BANG] = ACTIONS(3974), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_SLASH] = ACTIONS(3974), - [anon_sym_PERCENT] = ACTIONS(3976), - [anon_sym_CARET] = ACTIONS(3976), - [anon_sym_PIPE] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_LT_LT] = ACTIONS(3976), - [anon_sym_GT_GT] = ACTIONS(3974), - [anon_sym_GT_GT_GT] = ACTIONS(3976), - [anon_sym_EQ_EQ] = ACTIONS(3976), - [anon_sym_BANG_EQ] = ACTIONS(3976), - [anon_sym_GT_EQ] = ACTIONS(3976), - [anon_sym_LT_EQ] = ACTIONS(3976), - [anon_sym_DOT] = ACTIONS(3974), - [anon_sym_EQ_GT] = ACTIONS(3976), - [anon_sym_switch] = ACTIONS(3976), - [anon_sym_when] = ACTIONS(3976), - [anon_sym_DOT_DOT] = ACTIONS(3976), - [anon_sym_and] = ACTIONS(3976), - [anon_sym_or] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_PIPE_PIPE] = ACTIONS(3976), - [sym_op_coalescing] = ACTIONS(3976), - [anon_sym_on] = ACTIONS(3976), - [anon_sym_equals] = ACTIONS(3976), - [anon_sym_by] = ACTIONS(3976), - [anon_sym_as] = ACTIONS(3976), - [anon_sym_is] = ACTIONS(3976), - [anon_sym_DASH_GT] = ACTIONS(3976), - [anon_sym_with] = ACTIONS(3976), - [aux_sym_preproc_if_token3] = ACTIONS(3976), - [aux_sym_preproc_else_token1] = ACTIONS(3976), - [aux_sym_preproc_elif_token1] = ACTIONS(3976), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7444), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -624199,6 +616090,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4795] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4795), [sym_preproc_endregion] = STATE(4795), [sym_preproc_line] = STATE(4795), @@ -624208,57 +616114,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4795), [sym_preproc_define] = STATE(4795), [sym_preproc_undef] = STATE(4795), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_when] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4331), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7446), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -624271,6 +616160,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4796] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4796), [sym_preproc_endregion] = STATE(4796), [sym_preproc_line] = STATE(4796), @@ -624280,57 +616184,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4796), [sym_preproc_define] = STATE(4796), [sym_preproc_undef] = STATE(4796), - [anon_sym_SEMI] = ACTIONS(3997), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_COLON] = ACTIONS(3997), - [anon_sym_COMMA] = ACTIONS(3997), - [anon_sym_RBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_RPAREN] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_RBRACE] = ACTIONS(3997), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_in] = ACTIONS(3997), - [anon_sym_QMARK] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3986), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3986), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_EQ_GT] = ACTIONS(3997), - [anon_sym_switch] = ACTIONS(3997), - [anon_sym_when] = ACTIONS(3997), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3997), - [anon_sym_or] = ACTIONS(3997), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [sym_op_coalescing] = ACTIONS(3997), - [anon_sym_on] = ACTIONS(3997), - [anon_sym_equals] = ACTIONS(3997), - [anon_sym_by] = ACTIONS(3997), - [anon_sym_as] = ACTIONS(3997), - [anon_sym_is] = ACTIONS(3997), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3997), - [aux_sym_preproc_if_token3] = ACTIONS(3997), - [aux_sym_preproc_else_token1] = ACTIONS(3997), - [aux_sym_preproc_elif_token1] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7448), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -624343,26 +616230,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4797] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8052), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4797), [sym_preproc_endregion] = STATE(4797), [sym_preproc_line] = STATE(4797), @@ -624372,37 +616254,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4797), [sym_preproc_define] = STATE(4797), [sym_preproc_undef] = STATE(4797), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -624415,26 +616300,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4798] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7746), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4798), [sym_preproc_endregion] = STATE(4798), [sym_preproc_line] = STATE(4798), @@ -624444,37 +616324,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4798), [sym_preproc_define] = STATE(4798), [sym_preproc_undef] = STATE(4798), - [aux_sym_function_pointer_type_repeat1] = STATE(4849), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7450), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -624487,26 +616370,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4799] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8052), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4799), [sym_preproc_endregion] = STATE(4799), [sym_preproc_line] = STATE(4799), @@ -624516,37 +616394,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4799), [sym_preproc_define] = STATE(4799), [sym_preproc_undef] = STATE(4799), - [aux_sym_function_pointer_type_repeat1] = STATE(4800), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7452), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -624559,26 +616440,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4800] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8046), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4800), [sym_preproc_endregion] = STATE(4800), [sym_preproc_line] = STATE(4800), @@ -624588,22 +616464,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4800), [sym_preproc_define] = STATE(4800), [sym_preproc_undef] = STATE(4800), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), + [anon_sym_SEMI] = ACTIONS(7454), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [4801] = { + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7203), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(4801), + [sym_preproc_endregion] = STATE(4801), + [sym_preproc_line] = STATE(4801), + [sym_preproc_pragma] = STATE(4801), + [sym_preproc_nullable] = STATE(4801), + [sym_preproc_error] = STATE(4801), + [sym_preproc_warning] = STATE(4801), + [sym_preproc_define] = STATE(4801), + [sym_preproc_undef] = STATE(4801), + [aux_sym_type_argument_list_repeat1] = STATE(7204), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(5678), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), + [anon_sym_GT] = ACTIONS(7456), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -624618,79 +616567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [4801] = { - [sym_preproc_region] = STATE(4801), - [sym_preproc_endregion] = STATE(4801), - [sym_preproc_line] = STATE(4801), - [sym_preproc_pragma] = STATE(4801), - [sym_preproc_nullable] = STATE(4801), - [sym_preproc_error] = STATE(4801), - [sym_preproc_warning] = STATE(4801), - [sym_preproc_define] = STATE(4801), - [sym_preproc_undef] = STATE(4801), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [sym_accessor_get] = ACTIONS(3738), - [sym_accessor_set] = ACTIONS(3738), - [sym_accessor_add] = ACTIONS(3738), - [sym_accessor_remove] = ACTIONS(3738), - [sym_accessor_init] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -624703,26 +616580,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4802] = { - [sym_type_parameter_constraint] = STATE(6774), - [sym_constructor_constraint] = STATE(6907), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6919), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4802), [sym_preproc_endregion] = STATE(4802), [sym_preproc_line] = STATE(4802), @@ -624732,37 +616604,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4802), [sym_preproc_define] = STATE(4802), [sym_preproc_undef] = STATE(4802), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(7011), - [anon_sym_ref] = ACTIONS(7013), - [anon_sym_struct] = ACTIONS(7015), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(7017), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(7019), - [anon_sym_unmanaged] = ACTIONS(7019), - [anon_sym_scoped] = ACTIONS(7021), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7458), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -624775,26 +616650,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4803] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7996), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(5571), + [sym__name] = STATE(5640), + [sym_alias_qualified_name] = STATE(5591), + [sym__simple_name] = STATE(5591), + [sym_qualified_name] = STATE(5591), + [sym_generic_name] = STATE(5632), + [sym_type] = STATE(5535), + [sym_implicit_type] = STATE(5601), + [sym_array_type] = STATE(5570), + [sym__array_base_type] = STATE(7416), + [sym_nullable_type] = STATE(5629), + [sym_pointer_type] = STATE(5629), + [sym__pointer_base_type] = STATE(8041), + [sym_function_pointer_type] = STATE(5629), + [sym_ref_type] = STATE(5601), + [sym_scoped_type] = STATE(5601), + [sym_tuple_type] = STATE(5626), + [sym_identifier] = STATE(5537), + [sym__reserved_identifier] = STATE(5554), [sym_preproc_region] = STATE(4803), [sym_preproc_endregion] = STATE(4803), [sym_preproc_line] = STATE(4803), @@ -624804,37 +616678,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4803), [sym_preproc_define] = STATE(4803), [sym_preproc_undef] = STATE(4803), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4318), + [anon_sym_alias] = ACTIONS(4320), + [anon_sym_global] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(7460), + [anon_sym_LPAREN] = ACTIONS(7462), + [anon_sym_ref] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(7464), + [anon_sym_delegate] = ACTIONS(7466), + [anon_sym_file] = ACTIONS(4320), + [anon_sym_where] = ACTIONS(4320), + [anon_sym_notnull] = ACTIONS(4320), + [anon_sym_unmanaged] = ACTIONS(4320), + [anon_sym_scoped] = ACTIONS(7468), + [anon_sym_var] = ACTIONS(7470), + [sym_predefined_type] = ACTIONS(7472), + [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), + [sym_grit_metavariable] = ACTIONS(4327), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -624847,26 +616720,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4804] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7983), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4804), [sym_preproc_endregion] = STATE(4804), [sym_preproc_line] = STATE(4804), @@ -624876,37 +616744,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4804), [sym_preproc_define] = STATE(4804), [sym_preproc_undef] = STATE(4804), - [aux_sym_function_pointer_type_repeat1] = STATE(4803), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7474), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -624919,26 +616790,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4805] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7983), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4805), [sym_preproc_endregion] = STATE(4805), [sym_preproc_line] = STATE(4805), @@ -624948,37 +616814,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4805), [sym_preproc_define] = STATE(4805), [sym_preproc_undef] = STATE(4805), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -624991,26 +616860,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4806] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7746), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(4806), [sym_preproc_endregion] = STATE(4806), [sym_preproc_line] = STATE(4806), @@ -625020,37 +616869,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4806), [sym_preproc_define] = STATE(4806), [sym_preproc_undef] = STATE(4806), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_SEMI] = ACTIONS(5508), + [anon_sym_EQ] = ACTIONS(7476), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7478), + [anon_sym_DASH_EQ] = ACTIONS(7478), + [anon_sym_STAR_EQ] = ACTIONS(7478), + [anon_sym_SLASH_EQ] = ACTIONS(7478), + [anon_sym_PERCENT_EQ] = ACTIONS(7478), + [anon_sym_AMP_EQ] = ACTIONS(7478), + [anon_sym_CARET_EQ] = ACTIONS(7478), + [anon_sym_PIPE_EQ] = ACTIONS(7478), + [anon_sym_LT_LT_EQ] = ACTIONS(7478), + [anon_sym_GT_GT_EQ] = ACTIONS(7478), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7478), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7478), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -625063,6 +616930,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4807] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4807), [sym_preproc_endregion] = STATE(4807), [sym_preproc_line] = STATE(4807), @@ -625072,57 +616954,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4807), [sym_preproc_define] = STATE(4807), [sym_preproc_undef] = STATE(4807), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LBRACK] = ACTIONS(6067), - [anon_sym_COLON] = ACTIONS(6067), - [anon_sym_COMMA] = ACTIONS(6067), - [anon_sym_RBRACK] = ACTIONS(6067), - [anon_sym_LPAREN] = ACTIONS(6067), - [anon_sym_RPAREN] = ACTIONS(6067), - [anon_sym_RBRACE] = ACTIONS(6067), - [anon_sym_LT] = ACTIONS(6069), - [anon_sym_GT] = ACTIONS(6069), - [anon_sym_in] = ACTIONS(6069), - [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_EQ_GT] = ACTIONS(6067), - [anon_sym_switch] = ACTIONS(6067), - [anon_sym_when] = ACTIONS(6067), - [anon_sym_DOT_DOT] = ACTIONS(6067), - [anon_sym_and] = ACTIONS(6067), - [anon_sym_or] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [sym_op_coalescing] = ACTIONS(6067), - [anon_sym_into] = ACTIONS(6067), - [anon_sym_on] = ACTIONS(6067), - [anon_sym_equals] = ACTIONS(6067), - [anon_sym_by] = ACTIONS(6067), - [anon_sym_as] = ACTIONS(6067), - [anon_sym_is] = ACTIONS(6067), - [anon_sym_DASH_GT] = ACTIONS(6067), - [anon_sym_with] = ACTIONS(6067), - [aux_sym_preproc_if_token3] = ACTIONS(6067), - [aux_sym_preproc_else_token1] = ACTIONS(6067), - [aux_sym_preproc_elif_token1] = ACTIONS(6067), + [anon_sym_SEMI] = ACTIONS(7480), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -625135,6 +617000,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4808] = { + [sym_argument_list] = STATE(3748), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(3690), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(5843), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(5662), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(4808), [sym_preproc_endregion] = STATE(4808), [sym_preproc_line] = STATE(4808), @@ -625144,57 +617028,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4808), [sym_preproc_define] = STATE(4808), [sym_preproc_undef] = STATE(4808), - [anon_sym_SEMI] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6385), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_COMMA] = ACTIONS(6385), - [anon_sym_RBRACK] = ACTIONS(6385), - [anon_sym_LPAREN] = ACTIONS(6385), - [anon_sym_RPAREN] = ACTIONS(6385), - [anon_sym_RBRACE] = ACTIONS(6385), - [anon_sym_LT] = ACTIONS(6387), - [anon_sym_GT] = ACTIONS(6387), - [anon_sym_in] = ACTIONS(6387), - [anon_sym_QMARK] = ACTIONS(6387), - [anon_sym_BANG] = ACTIONS(6387), - [anon_sym_PLUS_PLUS] = ACTIONS(6385), - [anon_sym_DASH_DASH] = ACTIONS(6385), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6385), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_PERCENT] = ACTIONS(6385), - [anon_sym_CARET] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6387), - [anon_sym_AMP] = ACTIONS(6387), - [anon_sym_LT_LT] = ACTIONS(6385), - [anon_sym_GT_GT] = ACTIONS(6387), - [anon_sym_GT_GT_GT] = ACTIONS(6385), - [anon_sym_EQ_EQ] = ACTIONS(6385), - [anon_sym_BANG_EQ] = ACTIONS(6385), - [anon_sym_GT_EQ] = ACTIONS(6385), - [anon_sym_LT_EQ] = ACTIONS(6385), - [anon_sym_DOT] = ACTIONS(6387), - [anon_sym_EQ_GT] = ACTIONS(6385), - [anon_sym_switch] = ACTIONS(6385), - [anon_sym_when] = ACTIONS(6385), - [anon_sym_DOT_DOT] = ACTIONS(6385), - [anon_sym_and] = ACTIONS(6385), - [anon_sym_or] = ACTIONS(6385), - [anon_sym_AMP_AMP] = ACTIONS(6385), - [anon_sym_PIPE_PIPE] = ACTIONS(6385), - [sym_op_coalescing] = ACTIONS(6385), - [anon_sym_into] = ACTIONS(6385), - [anon_sym_on] = ACTIONS(6385), - [anon_sym_equals] = ACTIONS(6385), - [anon_sym_by] = ACTIONS(6385), - [anon_sym_as] = ACTIONS(6385), - [anon_sym_is] = ACTIONS(6385), - [anon_sym_DASH_GT] = ACTIONS(6385), - [anon_sym_with] = ACTIONS(6385), - [aux_sym_preproc_if_token3] = ACTIONS(6385), - [aux_sym_preproc_else_token1] = ACTIONS(6385), - [aux_sym_preproc_elif_token1] = ACTIONS(6385), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(7482), + [anon_sym_LPAREN] = ACTIONS(7484), + [anon_sym_ref] = ACTIONS(4437), + [anon_sym_LBRACE] = ACTIONS(7486), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7490), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -625207,6 +617070,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4809] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4809), [sym_preproc_endregion] = STATE(4809), [sym_preproc_line] = STATE(4809), @@ -625216,57 +617094,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4809), [sym_preproc_define] = STATE(4809), [sym_preproc_undef] = STATE(4809), - [anon_sym_SEMI] = ACTIONS(6081), - [anon_sym_LBRACK] = ACTIONS(6081), - [anon_sym_COLON] = ACTIONS(6081), - [anon_sym_COMMA] = ACTIONS(6081), - [anon_sym_RBRACK] = ACTIONS(6081), - [anon_sym_LPAREN] = ACTIONS(6081), - [anon_sym_RPAREN] = ACTIONS(6081), - [anon_sym_RBRACE] = ACTIONS(6081), - [anon_sym_LT] = ACTIONS(6083), - [anon_sym_GT] = ACTIONS(6083), - [anon_sym_in] = ACTIONS(6083), - [anon_sym_QMARK] = ACTIONS(6083), - [anon_sym_BANG] = ACTIONS(6083), - [anon_sym_PLUS_PLUS] = ACTIONS(6081), - [anon_sym_DASH_DASH] = ACTIONS(6081), - [anon_sym_PLUS] = ACTIONS(6083), - [anon_sym_DASH] = ACTIONS(6083), - [anon_sym_STAR] = ACTIONS(6081), - [anon_sym_SLASH] = ACTIONS(6083), - [anon_sym_PERCENT] = ACTIONS(6081), - [anon_sym_CARET] = ACTIONS(6081), - [anon_sym_PIPE] = ACTIONS(6083), - [anon_sym_AMP] = ACTIONS(6083), - [anon_sym_LT_LT] = ACTIONS(6081), - [anon_sym_GT_GT] = ACTIONS(6083), - [anon_sym_GT_GT_GT] = ACTIONS(6081), - [anon_sym_EQ_EQ] = ACTIONS(6081), - [anon_sym_BANG_EQ] = ACTIONS(6081), - [anon_sym_GT_EQ] = ACTIONS(6081), - [anon_sym_LT_EQ] = ACTIONS(6081), - [anon_sym_DOT] = ACTIONS(6083), - [anon_sym_EQ_GT] = ACTIONS(6081), - [anon_sym_switch] = ACTIONS(6081), - [anon_sym_when] = ACTIONS(6081), - [anon_sym_DOT_DOT] = ACTIONS(6081), - [anon_sym_and] = ACTIONS(6081), - [anon_sym_or] = ACTIONS(6081), - [anon_sym_AMP_AMP] = ACTIONS(6081), - [anon_sym_PIPE_PIPE] = ACTIONS(6081), - [sym_op_coalescing] = ACTIONS(6081), - [anon_sym_into] = ACTIONS(6081), - [anon_sym_on] = ACTIONS(6081), - [anon_sym_equals] = ACTIONS(6081), - [anon_sym_by] = ACTIONS(6081), - [anon_sym_as] = ACTIONS(6081), - [anon_sym_is] = ACTIONS(6081), - [anon_sym_DASH_GT] = ACTIONS(6081), - [anon_sym_with] = ACTIONS(6081), - [aux_sym_preproc_if_token3] = ACTIONS(6081), - [aux_sym_preproc_else_token1] = ACTIONS(6081), - [aux_sym_preproc_elif_token1] = ACTIONS(6081), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7496), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -625279,6 +617140,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4810] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4810), [sym_preproc_endregion] = STATE(4810), [sym_preproc_line] = STATE(4810), @@ -625288,57 +617164,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4810), [sym_preproc_define] = STATE(4810), [sym_preproc_undef] = STATE(4810), - [anon_sym_SEMI] = ACTIONS(6289), - [anon_sym_LBRACK] = ACTIONS(6289), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_COMMA] = ACTIONS(6289), - [anon_sym_RBRACK] = ACTIONS(6289), - [anon_sym_LPAREN] = ACTIONS(6289), - [anon_sym_RPAREN] = ACTIONS(6289), - [anon_sym_RBRACE] = ACTIONS(6289), - [anon_sym_LT] = ACTIONS(6291), - [anon_sym_GT] = ACTIONS(6291), - [anon_sym_in] = ACTIONS(6291), - [anon_sym_QMARK] = ACTIONS(6291), - [anon_sym_BANG] = ACTIONS(6291), - [anon_sym_PLUS_PLUS] = ACTIONS(6289), - [anon_sym_DASH_DASH] = ACTIONS(6289), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6289), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_PERCENT] = ACTIONS(6289), - [anon_sym_CARET] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6291), - [anon_sym_AMP] = ACTIONS(6291), - [anon_sym_LT_LT] = ACTIONS(6289), - [anon_sym_GT_GT] = ACTIONS(6291), - [anon_sym_GT_GT_GT] = ACTIONS(6289), - [anon_sym_EQ_EQ] = ACTIONS(6289), - [anon_sym_BANG_EQ] = ACTIONS(6289), - [anon_sym_GT_EQ] = ACTIONS(6289), - [anon_sym_LT_EQ] = ACTIONS(6289), - [anon_sym_DOT] = ACTIONS(6291), - [anon_sym_EQ_GT] = ACTIONS(6289), - [anon_sym_switch] = ACTIONS(6289), - [anon_sym_when] = ACTIONS(6289), - [anon_sym_DOT_DOT] = ACTIONS(6289), - [anon_sym_and] = ACTIONS(6289), - [anon_sym_or] = ACTIONS(6289), - [anon_sym_AMP_AMP] = ACTIONS(6289), - [anon_sym_PIPE_PIPE] = ACTIONS(6289), - [sym_op_coalescing] = ACTIONS(6289), - [anon_sym_into] = ACTIONS(6289), - [anon_sym_on] = ACTIONS(6289), - [anon_sym_equals] = ACTIONS(6289), - [anon_sym_by] = ACTIONS(6289), - [anon_sym_as] = ACTIONS(6289), - [anon_sym_is] = ACTIONS(6289), - [anon_sym_DASH_GT] = ACTIONS(6289), - [anon_sym_with] = ACTIONS(6289), - [aux_sym_preproc_if_token3] = ACTIONS(6289), - [aux_sym_preproc_else_token1] = ACTIONS(6289), - [aux_sym_preproc_elif_token1] = ACTIONS(6289), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -625351,6 +617210,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4811] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4811), [sym_preproc_endregion] = STATE(4811), [sym_preproc_line] = STATE(4811), @@ -625360,57 +617234,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4811), [sym_preproc_define] = STATE(4811), [sym_preproc_undef] = STATE(4811), - [anon_sym_SEMI] = ACTIONS(6227), - [anon_sym_LBRACK] = ACTIONS(6227), - [anon_sym_COLON] = ACTIONS(6227), - [anon_sym_COMMA] = ACTIONS(6227), - [anon_sym_RBRACK] = ACTIONS(6227), - [anon_sym_LPAREN] = ACTIONS(6227), - [anon_sym_RPAREN] = ACTIONS(6227), - [anon_sym_RBRACE] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(6229), - [anon_sym_GT] = ACTIONS(6229), - [anon_sym_in] = ACTIONS(6229), - [anon_sym_QMARK] = ACTIONS(6229), - [anon_sym_BANG] = ACTIONS(6229), - [anon_sym_PLUS_PLUS] = ACTIONS(6227), - [anon_sym_DASH_DASH] = ACTIONS(6227), - [anon_sym_PLUS] = ACTIONS(6229), - [anon_sym_DASH] = ACTIONS(6229), - [anon_sym_STAR] = ACTIONS(6227), - [anon_sym_SLASH] = ACTIONS(6229), - [anon_sym_PERCENT] = ACTIONS(6227), - [anon_sym_CARET] = ACTIONS(6227), - [anon_sym_PIPE] = ACTIONS(6229), - [anon_sym_AMP] = ACTIONS(6229), - [anon_sym_LT_LT] = ACTIONS(6227), - [anon_sym_GT_GT] = ACTIONS(6229), - [anon_sym_GT_GT_GT] = ACTIONS(6227), - [anon_sym_EQ_EQ] = ACTIONS(6227), - [anon_sym_BANG_EQ] = ACTIONS(6227), - [anon_sym_GT_EQ] = ACTIONS(6227), - [anon_sym_LT_EQ] = ACTIONS(6227), - [anon_sym_DOT] = ACTIONS(6229), - [anon_sym_EQ_GT] = ACTIONS(6227), - [anon_sym_switch] = ACTIONS(6227), - [anon_sym_when] = ACTIONS(6227), - [anon_sym_DOT_DOT] = ACTIONS(6227), - [anon_sym_and] = ACTIONS(6227), - [anon_sym_or] = ACTIONS(6227), - [anon_sym_AMP_AMP] = ACTIONS(6227), - [anon_sym_PIPE_PIPE] = ACTIONS(6227), - [sym_op_coalescing] = ACTIONS(6227), - [anon_sym_into] = ACTIONS(6227), - [anon_sym_on] = ACTIONS(6227), - [anon_sym_equals] = ACTIONS(6227), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_as] = ACTIONS(6227), - [anon_sym_is] = ACTIONS(6227), - [anon_sym_DASH_GT] = ACTIONS(6227), - [anon_sym_with] = ACTIONS(6227), - [aux_sym_preproc_if_token3] = ACTIONS(6227), - [aux_sym_preproc_else_token1] = ACTIONS(6227), - [aux_sym_preproc_elif_token1] = ACTIONS(6227), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7498), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -625423,26 +617280,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4812] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7946), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4812), [sym_preproc_endregion] = STATE(4812), [sym_preproc_line] = STATE(4812), @@ -625452,37 +617304,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4812), [sym_preproc_define] = STATE(4812), [sym_preproc_undef] = STATE(4812), - [aux_sym_function_pointer_type_repeat1] = STATE(4805), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7500), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -625495,6 +617350,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4813] = { + [sym_argument_list] = STATE(3659), + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3507), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3624), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(4813), [sym_preproc_endregion] = STATE(4813), [sym_preproc_line] = STATE(4813), @@ -625504,57 +617378,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4813), [sym_preproc_define] = STATE(4813), [sym_preproc_undef] = STATE(4813), - [anon_sym_SEMI] = ACTIONS(6098), - [anon_sym_LBRACK] = ACTIONS(6098), - [anon_sym_COLON] = ACTIONS(6098), - [anon_sym_COMMA] = ACTIONS(6098), - [anon_sym_RBRACK] = ACTIONS(6098), - [anon_sym_LPAREN] = ACTIONS(6098), - [anon_sym_RPAREN] = ACTIONS(6098), - [anon_sym_RBRACE] = ACTIONS(6098), - [anon_sym_LT] = ACTIONS(6100), - [anon_sym_GT] = ACTIONS(6100), - [anon_sym_in] = ACTIONS(6100), - [anon_sym_QMARK] = ACTIONS(6100), - [anon_sym_BANG] = ACTIONS(6100), - [anon_sym_PLUS_PLUS] = ACTIONS(6098), - [anon_sym_DASH_DASH] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(6098), - [anon_sym_SLASH] = ACTIONS(6100), - [anon_sym_PERCENT] = ACTIONS(6098), - [anon_sym_CARET] = ACTIONS(6098), - [anon_sym_PIPE] = ACTIONS(6100), - [anon_sym_AMP] = ACTIONS(6100), - [anon_sym_LT_LT] = ACTIONS(6098), - [anon_sym_GT_GT] = ACTIONS(6100), - [anon_sym_GT_GT_GT] = ACTIONS(6098), - [anon_sym_EQ_EQ] = ACTIONS(6098), - [anon_sym_BANG_EQ] = ACTIONS(6098), - [anon_sym_GT_EQ] = ACTIONS(6098), - [anon_sym_LT_EQ] = ACTIONS(6098), - [anon_sym_DOT] = ACTIONS(6100), - [anon_sym_EQ_GT] = ACTIONS(6098), - [anon_sym_switch] = ACTIONS(6098), - [anon_sym_when] = ACTIONS(6098), - [anon_sym_DOT_DOT] = ACTIONS(6098), - [anon_sym_and] = ACTIONS(6098), - [anon_sym_or] = ACTIONS(6098), - [anon_sym_AMP_AMP] = ACTIONS(6098), - [anon_sym_PIPE_PIPE] = ACTIONS(6098), - [sym_op_coalescing] = ACTIONS(6098), - [anon_sym_into] = ACTIONS(6098), - [anon_sym_on] = ACTIONS(6098), - [anon_sym_equals] = ACTIONS(6098), - [anon_sym_by] = ACTIONS(6098), - [anon_sym_as] = ACTIONS(6098), - [anon_sym_is] = ACTIONS(6098), - [anon_sym_DASH_GT] = ACTIONS(6098), - [anon_sym_with] = ACTIONS(6098), - [aux_sym_preproc_if_token3] = ACTIONS(6098), - [aux_sym_preproc_else_token1] = ACTIONS(6098), - [aux_sym_preproc_elif_token1] = ACTIONS(6098), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(7502), + [anon_sym_LPAREN] = ACTIONS(7504), + [anon_sym_ref] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(7506), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7510), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -625567,26 +617420,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4814] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7923), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4814), [sym_preproc_endregion] = STATE(4814), [sym_preproc_line] = STATE(4814), @@ -625596,37 +617444,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4814), [sym_preproc_define] = STATE(4814), [sym_preproc_undef] = STATE(4814), - [aux_sym_function_pointer_type_repeat1] = STATE(4815), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7516), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -625639,26 +617490,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4815] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7917), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4815), [sym_preproc_endregion] = STATE(4815), [sym_preproc_line] = STATE(4815), @@ -625668,37 +617514,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4815), [sym_preproc_define] = STATE(4815), [sym_preproc_undef] = STATE(4815), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5314), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -625711,26 +617560,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4816] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7917), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7254), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4816), [sym_preproc_endregion] = STATE(4816), [sym_preproc_line] = STATE(4816), @@ -625740,22 +617587,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4816), [sym_preproc_define] = STATE(4816), [sym_preproc_undef] = STATE(4816), - [aux_sym_function_pointer_type_repeat1] = STATE(4746), + [aux_sym_type_argument_list_repeat1] = STATE(7253), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(5678), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), + [anon_sym_GT] = ACTIONS(7518), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -625770,7 +617617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -625783,6 +617630,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4817] = { + [sym_argument_list] = STATE(3748), + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(3690), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4032), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(4817), [sym_preproc_endregion] = STATE(4817), [sym_preproc_line] = STATE(4817), @@ -625792,57 +617658,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4817), [sym_preproc_define] = STATE(4817), [sym_preproc_undef] = STATE(4817), - [anon_sym_SEMI] = ACTIONS(6188), - [anon_sym_LBRACK] = ACTIONS(6188), - [anon_sym_COLON] = ACTIONS(6188), - [anon_sym_COMMA] = ACTIONS(6188), - [anon_sym_RBRACK] = ACTIONS(6188), - [anon_sym_LPAREN] = ACTIONS(6188), - [anon_sym_RPAREN] = ACTIONS(6188), - [anon_sym_RBRACE] = ACTIONS(6188), - [anon_sym_LT] = ACTIONS(6190), - [anon_sym_GT] = ACTIONS(6190), - [anon_sym_in] = ACTIONS(6190), - [anon_sym_QMARK] = ACTIONS(6190), - [anon_sym_BANG] = ACTIONS(6190), - [anon_sym_PLUS_PLUS] = ACTIONS(6188), - [anon_sym_DASH_DASH] = ACTIONS(6188), - [anon_sym_PLUS] = ACTIONS(6190), - [anon_sym_DASH] = ACTIONS(6190), - [anon_sym_STAR] = ACTIONS(6188), - [anon_sym_SLASH] = ACTIONS(6190), - [anon_sym_PERCENT] = ACTIONS(6188), - [anon_sym_CARET] = ACTIONS(6188), - [anon_sym_PIPE] = ACTIONS(6190), - [anon_sym_AMP] = ACTIONS(6190), - [anon_sym_LT_LT] = ACTIONS(6188), - [anon_sym_GT_GT] = ACTIONS(6190), - [anon_sym_GT_GT_GT] = ACTIONS(6188), - [anon_sym_EQ_EQ] = ACTIONS(6188), - [anon_sym_BANG_EQ] = ACTIONS(6188), - [anon_sym_GT_EQ] = ACTIONS(6188), - [anon_sym_LT_EQ] = ACTIONS(6188), - [anon_sym_DOT] = ACTIONS(6190), - [anon_sym_EQ_GT] = ACTIONS(6188), - [anon_sym_switch] = ACTIONS(6188), - [anon_sym_when] = ACTIONS(6188), - [anon_sym_DOT_DOT] = ACTIONS(6188), - [anon_sym_and] = ACTIONS(6188), - [anon_sym_or] = ACTIONS(6188), - [anon_sym_AMP_AMP] = ACTIONS(6188), - [anon_sym_PIPE_PIPE] = ACTIONS(6188), - [sym_op_coalescing] = ACTIONS(6188), - [anon_sym_into] = ACTIONS(6188), - [anon_sym_on] = ACTIONS(6188), - [anon_sym_equals] = ACTIONS(6188), - [anon_sym_by] = ACTIONS(6188), - [anon_sym_as] = ACTIONS(6188), - [anon_sym_is] = ACTIONS(6188), - [anon_sym_DASH_GT] = ACTIONS(6188), - [anon_sym_with] = ACTIONS(6188), - [aux_sym_preproc_if_token3] = ACTIONS(6188), - [aux_sym_preproc_else_token1] = ACTIONS(6188), - [aux_sym_preproc_elif_token1] = ACTIONS(6188), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(7482), + [anon_sym_LPAREN] = ACTIONS(7484), + [anon_sym_ref] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(7486), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7520), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -625855,26 +617700,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4818] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7839), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4818), [sym_preproc_endregion] = STATE(4818), [sym_preproc_line] = STATE(4818), @@ -625884,37 +617724,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4818), [sym_preproc_define] = STATE(4818), [sym_preproc_undef] = STATE(4818), - [aux_sym_function_pointer_type_repeat1] = STATE(4836), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7354), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(7364), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7366), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -625927,6 +617770,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4819] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4819), [sym_preproc_endregion] = STATE(4819), [sym_preproc_line] = STATE(4819), @@ -625936,57 +617794,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4819), [sym_preproc_define] = STATE(4819), [sym_preproc_undef] = STATE(4819), - [anon_sym_SEMI] = ACTIONS(6102), - [anon_sym_LBRACK] = ACTIONS(6102), - [anon_sym_COLON] = ACTIONS(6102), - [anon_sym_COMMA] = ACTIONS(6102), - [anon_sym_RBRACK] = ACTIONS(6102), - [anon_sym_LPAREN] = ACTIONS(6102), - [anon_sym_RPAREN] = ACTIONS(6102), - [anon_sym_RBRACE] = ACTIONS(6102), - [anon_sym_LT] = ACTIONS(6104), - [anon_sym_GT] = ACTIONS(6104), - [anon_sym_in] = ACTIONS(6104), - [anon_sym_QMARK] = ACTIONS(6104), - [anon_sym_BANG] = ACTIONS(6104), - [anon_sym_PLUS_PLUS] = ACTIONS(6102), - [anon_sym_DASH_DASH] = ACTIONS(6102), - [anon_sym_PLUS] = ACTIONS(6104), - [anon_sym_DASH] = ACTIONS(6104), - [anon_sym_STAR] = ACTIONS(6102), - [anon_sym_SLASH] = ACTIONS(6104), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_CARET] = ACTIONS(6102), - [anon_sym_PIPE] = ACTIONS(6104), - [anon_sym_AMP] = ACTIONS(6104), - [anon_sym_LT_LT] = ACTIONS(6102), - [anon_sym_GT_GT] = ACTIONS(6104), - [anon_sym_GT_GT_GT] = ACTIONS(6102), - [anon_sym_EQ_EQ] = ACTIONS(6102), - [anon_sym_BANG_EQ] = ACTIONS(6102), - [anon_sym_GT_EQ] = ACTIONS(6102), - [anon_sym_LT_EQ] = ACTIONS(6102), - [anon_sym_DOT] = ACTIONS(6104), - [anon_sym_EQ_GT] = ACTIONS(6102), - [anon_sym_switch] = ACTIONS(6102), - [anon_sym_when] = ACTIONS(6102), - [anon_sym_DOT_DOT] = ACTIONS(6102), - [anon_sym_and] = ACTIONS(6102), - [anon_sym_or] = ACTIONS(6102), - [anon_sym_AMP_AMP] = ACTIONS(6102), - [anon_sym_PIPE_PIPE] = ACTIONS(6102), - [sym_op_coalescing] = ACTIONS(6102), - [anon_sym_into] = ACTIONS(6102), - [anon_sym_on] = ACTIONS(6102), - [anon_sym_equals] = ACTIONS(6102), - [anon_sym_by] = ACTIONS(6102), - [anon_sym_as] = ACTIONS(6102), - [anon_sym_is] = ACTIONS(6102), - [anon_sym_DASH_GT] = ACTIONS(6102), - [anon_sym_with] = ACTIONS(6102), - [aux_sym_preproc_if_token3] = ACTIONS(6102), - [aux_sym_preproc_else_token1] = ACTIONS(6102), - [aux_sym_preproc_elif_token1] = ACTIONS(6102), + [anon_sym_SEMI] = ACTIONS(7522), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -625999,6 +617840,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4820] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4820), [sym_preproc_endregion] = STATE(4820), [sym_preproc_line] = STATE(4820), @@ -626008,57 +617864,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4820), [sym_preproc_define] = STATE(4820), [sym_preproc_undef] = STATE(4820), - [anon_sym_SEMI] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_COLON] = ACTIONS(4337), - [anon_sym_COMMA] = ACTIONS(4337), - [anon_sym_RBRACK] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_RPAREN] = ACTIONS(4337), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_RBRACE] = ACTIONS(4337), - [anon_sym_LT] = ACTIONS(4335), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_in] = ACTIONS(4337), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_PLUS_PLUS] = ACTIONS(4337), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4335), - [anon_sym_LT_LT] = ACTIONS(4337), - [anon_sym_GT_GT] = ACTIONS(4335), - [anon_sym_GT_GT_GT] = ACTIONS(4337), - [anon_sym_EQ_EQ] = ACTIONS(4337), - [anon_sym_BANG_EQ] = ACTIONS(4337), - [anon_sym_GT_EQ] = ACTIONS(4337), - [anon_sym_LT_EQ] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_EQ_GT] = ACTIONS(4337), - [anon_sym_switch] = ACTIONS(4337), - [anon_sym_when] = ACTIONS(4337), - [anon_sym_DOT_DOT] = ACTIONS(4337), - [anon_sym_and] = ACTIONS(4337), - [anon_sym_or] = ACTIONS(4337), - [anon_sym_AMP_AMP] = ACTIONS(4337), - [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [sym_op_coalescing] = ACTIONS(4337), - [anon_sym_on] = ACTIONS(4337), - [anon_sym_equals] = ACTIONS(4337), - [anon_sym_by] = ACTIONS(4337), - [anon_sym_as] = ACTIONS(4337), - [anon_sym_is] = ACTIONS(4337), - [anon_sym_DASH_GT] = ACTIONS(4337), - [anon_sym_with] = ACTIONS(4337), - [aux_sym_preproc_if_token3] = ACTIONS(4337), - [aux_sym_preproc_else_token1] = ACTIONS(4337), - [aux_sym_preproc_elif_token1] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -626071,6 +617910,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4821] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4821), [sym_preproc_endregion] = STATE(4821), [sym_preproc_line] = STATE(4821), @@ -626080,57 +617934,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4821), [sym_preproc_define] = STATE(4821), [sym_preproc_undef] = STATE(4821), - [anon_sym_SEMI] = ACTIONS(6063), - [anon_sym_LBRACK] = ACTIONS(6063), - [anon_sym_COLON] = ACTIONS(6063), - [anon_sym_COMMA] = ACTIONS(6063), - [anon_sym_RBRACK] = ACTIONS(6063), + [anon_sym_LBRACK] = ACTIONS(5765), [anon_sym_LPAREN] = ACTIONS(6063), - [anon_sym_RPAREN] = ACTIONS(6063), - [anon_sym_RBRACE] = ACTIONS(6063), - [anon_sym_LT] = ACTIONS(6065), - [anon_sym_GT] = ACTIONS(6065), - [anon_sym_in] = ACTIONS(6065), - [anon_sym_QMARK] = ACTIONS(6065), - [anon_sym_BANG] = ACTIONS(6065), - [anon_sym_PLUS_PLUS] = ACTIONS(6063), - [anon_sym_DASH_DASH] = ACTIONS(6063), - [anon_sym_PLUS] = ACTIONS(6065), - [anon_sym_DASH] = ACTIONS(6065), - [anon_sym_STAR] = ACTIONS(6063), - [anon_sym_SLASH] = ACTIONS(6065), - [anon_sym_PERCENT] = ACTIONS(6063), - [anon_sym_CARET] = ACTIONS(6063), - [anon_sym_PIPE] = ACTIONS(6065), - [anon_sym_AMP] = ACTIONS(6065), - [anon_sym_LT_LT] = ACTIONS(6063), - [anon_sym_GT_GT] = ACTIONS(6065), - [anon_sym_GT_GT_GT] = ACTIONS(6063), - [anon_sym_EQ_EQ] = ACTIONS(6063), - [anon_sym_BANG_EQ] = ACTIONS(6063), - [anon_sym_GT_EQ] = ACTIONS(6063), - [anon_sym_LT_EQ] = ACTIONS(6063), - [anon_sym_DOT] = ACTIONS(6065), - [anon_sym_EQ_GT] = ACTIONS(6063), - [anon_sym_switch] = ACTIONS(6063), - [anon_sym_when] = ACTIONS(6063), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_and] = ACTIONS(6063), - [anon_sym_or] = ACTIONS(6063), - [anon_sym_AMP_AMP] = ACTIONS(6063), - [anon_sym_PIPE_PIPE] = ACTIONS(6063), - [sym_op_coalescing] = ACTIONS(6063), - [anon_sym_into] = ACTIONS(6063), - [anon_sym_on] = ACTIONS(6063), - [anon_sym_equals] = ACTIONS(6063), - [anon_sym_by] = ACTIONS(6063), - [anon_sym_as] = ACTIONS(6063), - [anon_sym_is] = ACTIONS(6063), - [anon_sym_DASH_GT] = ACTIONS(6063), - [anon_sym_with] = ACTIONS(6063), - [aux_sym_preproc_if_token3] = ACTIONS(6063), - [aux_sym_preproc_else_token1] = ACTIONS(6063), - [aux_sym_preproc_elif_token1] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_in] = ACTIONS(5314), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -626143,26 +617980,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4822] = { - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym__lambda_parameters] = STATE(7724), - [sym_identifier] = STATE(6072), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4822), [sym_preproc_endregion] = STATE(4822), [sym_preproc_line] = STATE(4822), @@ -626172,37 +618004,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4822), [sym_preproc_define] = STATE(4822), [sym_preproc_undef] = STATE(4822), - [aux_sym__lambda_expression_init_repeat1] = STATE(6161), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -626215,6 +618050,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4823] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4823), [sym_preproc_endregion] = STATE(4823), [sym_preproc_line] = STATE(4823), @@ -626224,57 +618074,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4823), [sym_preproc_define] = STATE(4823), [sym_preproc_undef] = STATE(4823), - [anon_sym_SEMI] = ACTIONS(4363), - [anon_sym_LBRACK] = ACTIONS(4363), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_COMMA] = ACTIONS(4363), - [anon_sym_RBRACK] = ACTIONS(4363), - [anon_sym_LPAREN] = ACTIONS(4363), - [anon_sym_RPAREN] = ACTIONS(4363), - [anon_sym_LBRACE] = ACTIONS(4363), - [anon_sym_RBRACE] = ACTIONS(4363), - [anon_sym_LT] = ACTIONS(4361), - [anon_sym_GT] = ACTIONS(4361), - [anon_sym_in] = ACTIONS(4363), - [anon_sym_QMARK] = ACTIONS(4361), - [anon_sym_BANG] = ACTIONS(4361), - [anon_sym_PLUS_PLUS] = ACTIONS(4363), - [anon_sym_DASH_DASH] = ACTIONS(4363), - [anon_sym_PLUS] = ACTIONS(4361), - [anon_sym_DASH] = ACTIONS(4361), - [anon_sym_STAR] = ACTIONS(4363), - [anon_sym_SLASH] = ACTIONS(4361), - [anon_sym_PERCENT] = ACTIONS(4363), - [anon_sym_CARET] = ACTIONS(4363), - [anon_sym_PIPE] = ACTIONS(4361), - [anon_sym_AMP] = ACTIONS(4361), - [anon_sym_LT_LT] = ACTIONS(4363), - [anon_sym_GT_GT] = ACTIONS(4361), - [anon_sym_GT_GT_GT] = ACTIONS(4363), - [anon_sym_EQ_EQ] = ACTIONS(4363), - [anon_sym_BANG_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_DOT] = ACTIONS(4361), - [anon_sym_EQ_GT] = ACTIONS(4363), - [anon_sym_switch] = ACTIONS(4363), - [anon_sym_when] = ACTIONS(4363), - [anon_sym_DOT_DOT] = ACTIONS(4363), - [anon_sym_and] = ACTIONS(4363), - [anon_sym_or] = ACTIONS(4363), - [anon_sym_AMP_AMP] = ACTIONS(4363), - [anon_sym_PIPE_PIPE] = ACTIONS(4363), - [sym_op_coalescing] = ACTIONS(4363), - [anon_sym_on] = ACTIONS(4363), - [anon_sym_equals] = ACTIONS(4363), - [anon_sym_by] = ACTIONS(4363), - [anon_sym_as] = ACTIONS(4363), - [anon_sym_is] = ACTIONS(4363), - [anon_sym_DASH_GT] = ACTIONS(4363), - [anon_sym_with] = ACTIONS(4363), - [aux_sym_preproc_if_token3] = ACTIONS(4363), - [aux_sym_preproc_else_token1] = ACTIONS(4363), - [aux_sym_preproc_elif_token1] = ACTIONS(4363), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_in] = ACTIONS(5360), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -626287,26 +618120,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4824] = { - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6220), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym__lambda_parameters] = STATE(7967), - [sym_identifier] = STATE(6072), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4824), [sym_preproc_endregion] = STATE(4824), [sym_preproc_line] = STATE(4824), @@ -626316,37 +618144,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4824), [sym_preproc_define] = STATE(4824), [sym_preproc_undef] = STATE(4824), - [aux_sym__lambda_expression_init_repeat1] = STATE(6161), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(7036), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7524), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -626359,6 +618190,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4825] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4825), [sym_preproc_endregion] = STATE(4825), [sym_preproc_line] = STATE(4825), @@ -626368,57 +618214,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4825), [sym_preproc_define] = STATE(4825), [sym_preproc_undef] = STATE(4825), - [anon_sym_SEMI] = ACTIONS(6317), - [anon_sym_LBRACK] = ACTIONS(6317), - [anon_sym_COLON] = ACTIONS(6317), - [anon_sym_COMMA] = ACTIONS(6317), - [anon_sym_RBRACK] = ACTIONS(6317), - [anon_sym_LPAREN] = ACTIONS(6317), - [anon_sym_RPAREN] = ACTIONS(6317), - [anon_sym_RBRACE] = ACTIONS(6317), - [anon_sym_LT] = ACTIONS(6319), - [anon_sym_GT] = ACTIONS(6319), - [anon_sym_in] = ACTIONS(6319), - [anon_sym_QMARK] = ACTIONS(6319), - [anon_sym_BANG] = ACTIONS(6319), - [anon_sym_PLUS_PLUS] = ACTIONS(6317), - [anon_sym_DASH_DASH] = ACTIONS(6317), - [anon_sym_PLUS] = ACTIONS(6319), - [anon_sym_DASH] = ACTIONS(6319), - [anon_sym_STAR] = ACTIONS(6317), - [anon_sym_SLASH] = ACTIONS(6319), - [anon_sym_PERCENT] = ACTIONS(6317), - [anon_sym_CARET] = ACTIONS(6317), - [anon_sym_PIPE] = ACTIONS(6319), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_GT_GT] = ACTIONS(6319), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_EQ_EQ] = ACTIONS(6317), - [anon_sym_BANG_EQ] = ACTIONS(6317), - [anon_sym_GT_EQ] = ACTIONS(6317), - [anon_sym_LT_EQ] = ACTIONS(6317), - [anon_sym_DOT] = ACTIONS(6319), - [anon_sym_EQ_GT] = ACTIONS(6317), - [anon_sym_switch] = ACTIONS(6317), - [anon_sym_when] = ACTIONS(6317), - [anon_sym_DOT_DOT] = ACTIONS(6317), - [anon_sym_and] = ACTIONS(6317), - [anon_sym_or] = ACTIONS(6317), - [anon_sym_AMP_AMP] = ACTIONS(6317), - [anon_sym_PIPE_PIPE] = ACTIONS(6317), - [sym_op_coalescing] = ACTIONS(6317), - [anon_sym_into] = ACTIONS(6317), - [anon_sym_on] = ACTIONS(6317), - [anon_sym_equals] = ACTIONS(6317), - [anon_sym_by] = ACTIONS(6317), - [anon_sym_as] = ACTIONS(6317), - [anon_sym_is] = ACTIONS(6317), - [anon_sym_DASH_GT] = ACTIONS(6317), - [anon_sym_with] = ACTIONS(6317), - [aux_sym_preproc_if_token3] = ACTIONS(6317), - [aux_sym_preproc_else_token1] = ACTIONS(6317), - [aux_sym_preproc_elif_token1] = ACTIONS(6317), + [anon_sym_SEMI] = ACTIONS(7526), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -626431,26 +618260,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4826] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7751), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4826), [sym_preproc_endregion] = STATE(4826), [sym_preproc_line] = STATE(4826), @@ -626460,37 +618284,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4826), [sym_preproc_define] = STATE(4826), [sym_preproc_undef] = STATE(4826), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_SEMI] = ACTIONS(7528), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -626503,6 +618330,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4827] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4827), [sym_preproc_endregion] = STATE(4827), [sym_preproc_line] = STATE(4827), @@ -626512,57 +618354,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4827), [sym_preproc_define] = STATE(4827), [sym_preproc_undef] = STATE(4827), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_COLON] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACK] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_in] = ACTIONS(2177), - [anon_sym_QMARK] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_EQ_GT] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_when] = ACTIONS(2175), - [anon_sym_DOT_DOT] = ACTIONS(2175), - [anon_sym_and] = ACTIONS(2175), - [anon_sym_or] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [sym_op_coalescing] = ACTIONS(2175), - [anon_sym_into] = ACTIONS(2175), - [anon_sym_on] = ACTIONS(2175), - [anon_sym_equals] = ACTIONS(2175), - [anon_sym_by] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_is] = ACTIONS(2175), - [anon_sym_DASH_GT] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [aux_sym_preproc_if_token3] = ACTIONS(2175), - [aux_sym_preproc_else_token1] = ACTIONS(2175), - [aux_sym_preproc_elif_token1] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -626575,6 +618400,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4828] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4828), [sym_preproc_endregion] = STATE(4828), [sym_preproc_line] = STATE(4828), @@ -626584,57 +618424,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4828), [sym_preproc_define] = STATE(4828), [sym_preproc_undef] = STATE(4828), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LBRACK] = ACTIONS(6051), - [anon_sym_COLON] = ACTIONS(6051), - [anon_sym_COMMA] = ACTIONS(6051), - [anon_sym_RBRACK] = ACTIONS(6051), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_RBRACE] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_in] = ACTIONS(6053), - [anon_sym_QMARK] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PLUS_PLUS] = ACTIONS(6051), - [anon_sym_DASH_DASH] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6053), - [anon_sym_DASH] = ACTIONS(6053), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6053), - [anon_sym_PERCENT] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_AMP] = ACTIONS(6053), - [anon_sym_LT_LT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6053), - [anon_sym_GT_GT_GT] = ACTIONS(6051), - [anon_sym_EQ_EQ] = ACTIONS(6051), - [anon_sym_BANG_EQ] = ACTIONS(6051), - [anon_sym_GT_EQ] = ACTIONS(6051), - [anon_sym_LT_EQ] = ACTIONS(6051), - [anon_sym_DOT] = ACTIONS(6053), - [anon_sym_EQ_GT] = ACTIONS(6051), - [anon_sym_switch] = ACTIONS(6051), - [anon_sym_when] = ACTIONS(6051), - [anon_sym_DOT_DOT] = ACTIONS(6051), - [anon_sym_and] = ACTIONS(6051), - [anon_sym_or] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym_op_coalescing] = ACTIONS(6051), - [anon_sym_into] = ACTIONS(6051), - [anon_sym_on] = ACTIONS(6051), - [anon_sym_equals] = ACTIONS(6051), - [anon_sym_by] = ACTIONS(6051), - [anon_sym_as] = ACTIONS(6051), - [anon_sym_is] = ACTIONS(6051), - [anon_sym_DASH_GT] = ACTIONS(6051), - [anon_sym_with] = ACTIONS(6051), - [aux_sym_preproc_if_token3] = ACTIONS(6051), - [aux_sym_preproc_else_token1] = ACTIONS(6051), - [aux_sym_preproc_elif_token1] = ACTIONS(6051), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7530), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -626647,6 +618470,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4829] = { + [sym_argument_list] = STATE(3659), + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3507), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3624), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(4829), [sym_preproc_endregion] = STATE(4829), [sym_preproc_line] = STATE(4829), @@ -626656,57 +618498,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4829), [sym_preproc_define] = STATE(4829), [sym_preproc_undef] = STATE(4829), - [anon_sym_SEMI] = ACTIONS(6152), - [anon_sym_LBRACK] = ACTIONS(6152), - [anon_sym_COLON] = ACTIONS(6152), - [anon_sym_COMMA] = ACTIONS(6152), - [anon_sym_RBRACK] = ACTIONS(6152), - [anon_sym_LPAREN] = ACTIONS(6152), - [anon_sym_RPAREN] = ACTIONS(6152), - [anon_sym_RBRACE] = ACTIONS(6152), - [anon_sym_LT] = ACTIONS(6154), - [anon_sym_GT] = ACTIONS(6154), - [anon_sym_in] = ACTIONS(6154), - [anon_sym_QMARK] = ACTIONS(6154), - [anon_sym_BANG] = ACTIONS(6154), - [anon_sym_PLUS_PLUS] = ACTIONS(6152), - [anon_sym_DASH_DASH] = ACTIONS(6152), - [anon_sym_PLUS] = ACTIONS(6154), - [anon_sym_DASH] = ACTIONS(6154), - [anon_sym_STAR] = ACTIONS(6152), - [anon_sym_SLASH] = ACTIONS(6154), - [anon_sym_PERCENT] = ACTIONS(6152), - [anon_sym_CARET] = ACTIONS(6152), - [anon_sym_PIPE] = ACTIONS(6154), - [anon_sym_AMP] = ACTIONS(6154), - [anon_sym_LT_LT] = ACTIONS(6152), - [anon_sym_GT_GT] = ACTIONS(6154), - [anon_sym_GT_GT_GT] = ACTIONS(6152), - [anon_sym_EQ_EQ] = ACTIONS(6152), - [anon_sym_BANG_EQ] = ACTIONS(6152), - [anon_sym_GT_EQ] = ACTIONS(6152), - [anon_sym_LT_EQ] = ACTIONS(6152), - [anon_sym_DOT] = ACTIONS(6154), - [anon_sym_EQ_GT] = ACTIONS(6152), - [anon_sym_switch] = ACTIONS(6152), - [anon_sym_when] = ACTIONS(6152), - [anon_sym_DOT_DOT] = ACTIONS(6152), - [anon_sym_and] = ACTIONS(6152), - [anon_sym_or] = ACTIONS(6152), - [anon_sym_AMP_AMP] = ACTIONS(6152), - [anon_sym_PIPE_PIPE] = ACTIONS(6152), - [sym_op_coalescing] = ACTIONS(6152), - [anon_sym_into] = ACTIONS(6152), - [anon_sym_on] = ACTIONS(6152), - [anon_sym_equals] = ACTIONS(6152), - [anon_sym_by] = ACTIONS(6152), - [anon_sym_as] = ACTIONS(6152), - [anon_sym_is] = ACTIONS(6152), - [anon_sym_DASH_GT] = ACTIONS(6152), - [anon_sym_with] = ACTIONS(6152), - [aux_sym_preproc_if_token3] = ACTIONS(6152), - [aux_sym_preproc_else_token1] = ACTIONS(6152), - [aux_sym_preproc_elif_token1] = ACTIONS(6152), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(7502), + [anon_sym_LPAREN] = ACTIONS(7504), + [anon_sym_ref] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(7506), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7532), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -626719,6 +618540,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4830] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4830), [sym_preproc_endregion] = STATE(4830), [sym_preproc_line] = STATE(4830), @@ -626728,57 +618564,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4830), [sym_preproc_define] = STATE(4830), [sym_preproc_undef] = STATE(4830), - [sym__identifier_token] = ACTIONS(7038), - [anon_sym_extern] = ACTIONS(7038), - [anon_sym_alias] = ACTIONS(7038), - [anon_sym_global] = ACTIONS(7038), - [anon_sym_unsafe] = ACTIONS(7038), - [anon_sym_static] = ACTIONS(7038), - [anon_sym_LBRACK] = ACTIONS(7040), - [anon_sym_RBRACE] = ACTIONS(7040), - [anon_sym_public] = ACTIONS(7038), - [anon_sym_private] = ACTIONS(7038), - [anon_sym_readonly] = ACTIONS(7038), - [anon_sym_abstract] = ACTIONS(7038), - [anon_sym_async] = ACTIONS(7038), - [anon_sym_const] = ACTIONS(7038), - [anon_sym_file] = ACTIONS(7038), - [anon_sym_fixed] = ACTIONS(7038), - [anon_sym_internal] = ACTIONS(7038), - [anon_sym_new] = ACTIONS(7038), - [anon_sym_override] = ACTIONS(7038), - [anon_sym_partial] = ACTIONS(7038), - [anon_sym_protected] = ACTIONS(7038), - [anon_sym_required] = ACTIONS(7038), - [anon_sym_sealed] = ACTIONS(7038), - [anon_sym_virtual] = ACTIONS(7038), - [anon_sym_volatile] = ACTIONS(7038), - [anon_sym_where] = ACTIONS(7038), - [anon_sym_notnull] = ACTIONS(7038), - [anon_sym_unmanaged] = ACTIONS(7038), - [sym_accessor_get] = ACTIONS(7038), - [sym_accessor_set] = ACTIONS(7038), - [sym_accessor_add] = ACTIONS(7038), - [sym_accessor_remove] = ACTIONS(7038), - [sym_accessor_init] = ACTIONS(7038), - [anon_sym_scoped] = ACTIONS(7038), - [anon_sym_var] = ACTIONS(7038), - [anon_sym_yield] = ACTIONS(7038), - [anon_sym_when] = ACTIONS(7038), - [anon_sym_from] = ACTIONS(7038), - [anon_sym_into] = ACTIONS(7038), - [anon_sym_join] = ACTIONS(7038), - [anon_sym_on] = ACTIONS(7038), - [anon_sym_equals] = ACTIONS(7038), - [anon_sym_let] = ACTIONS(7038), - [anon_sym_orderby] = ACTIONS(7038), - [anon_sym_ascending] = ACTIONS(7038), - [anon_sym_descending] = ACTIONS(7038), - [anon_sym_group] = ACTIONS(7038), - [anon_sym_by] = ACTIONS(7038), - [anon_sym_select] = ACTIONS(7038), - [sym_grit_metavariable] = ACTIONS(7040), - [aux_sym_preproc_if_token1] = ACTIONS(7040), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -626791,6 +618610,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4831] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4831), [sym_preproc_endregion] = STATE(4831), [sym_preproc_line] = STATE(4831), @@ -626800,57 +618634,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4831), [sym_preproc_define] = STATE(4831), [sym_preproc_undef] = STATE(4831), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COLON] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(4353), - [anon_sym_RPAREN] = ACTIONS(4353), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_in] = ACTIONS(4353), - [anon_sym_QMARK] = ACTIONS(4351), - [anon_sym_BANG] = ACTIONS(4351), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_SLASH] = ACTIONS(4351), - [anon_sym_PERCENT] = ACTIONS(4353), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_AMP] = ACTIONS(4351), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4351), - [anon_sym_GT_GT_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ_GT] = ACTIONS(4353), - [anon_sym_switch] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4353), - [anon_sym_and] = ACTIONS(4353), - [anon_sym_or] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [sym_op_coalescing] = ACTIONS(4353), - [anon_sym_on] = ACTIONS(4353), - [anon_sym_equals] = ACTIONS(4353), - [anon_sym_by] = ACTIONS(4353), - [anon_sym_as] = ACTIONS(4353), - [anon_sym_is] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(4353), - [anon_sym_with] = ACTIONS(4353), - [aux_sym_preproc_if_token3] = ACTIONS(4353), - [aux_sym_preproc_else_token1] = ACTIONS(4353), - [aux_sym_preproc_elif_token1] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7534), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -626863,26 +618680,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4832] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8061), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4832), [sym_preproc_endregion] = STATE(4832), [sym_preproc_line] = STATE(4832), @@ -626892,37 +618704,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4832), [sym_preproc_define] = STATE(4832), [sym_preproc_undef] = STATE(4832), - [aux_sym_function_pointer_type_repeat1] = STATE(4797), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -626935,6 +618750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4833] = { + [sym_block] = STATE(2163), [sym_preproc_region] = STATE(4833), [sym_preproc_endregion] = STATE(4833), [sym_preproc_line] = STATE(4833), @@ -626944,57 +618760,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4833), [sym_preproc_define] = STATE(4833), [sym_preproc_undef] = STATE(4833), - [anon_sym_SEMI] = ACTIONS(6003), - [anon_sym_LBRACK] = ACTIONS(6003), - [anon_sym_COLON] = ACTIONS(6003), - [anon_sym_COMMA] = ACTIONS(6003), - [anon_sym_RBRACK] = ACTIONS(6003), - [anon_sym_LPAREN] = ACTIONS(6003), - [anon_sym_RPAREN] = ACTIONS(6003), - [anon_sym_RBRACE] = ACTIONS(6003), - [anon_sym_LT] = ACTIONS(6005), - [anon_sym_GT] = ACTIONS(6005), - [anon_sym_in] = ACTIONS(6005), - [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_EQ_GT] = ACTIONS(6003), - [anon_sym_switch] = ACTIONS(6003), - [anon_sym_when] = ACTIONS(6003), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(6003), - [anon_sym_or] = ACTIONS(6003), - [anon_sym_AMP_AMP] = ACTIONS(6003), - [anon_sym_PIPE_PIPE] = ACTIONS(6003), - [sym_op_coalescing] = ACTIONS(6003), - [anon_sym_into] = ACTIONS(6003), - [anon_sym_on] = ACTIONS(6003), - [anon_sym_equals] = ACTIONS(6003), - [anon_sym_by] = ACTIONS(6003), - [anon_sym_as] = ACTIONS(6003), - [anon_sym_is] = ACTIONS(6003), - [anon_sym_DASH_GT] = ACTIONS(6003), - [anon_sym_with] = ACTIONS(6003), - [aux_sym_preproc_if_token3] = ACTIONS(6003), - [aux_sym_preproc_else_token1] = ACTIONS(6003), - [aux_sym_preproc_elif_token1] = ACTIONS(6003), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(7536), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -627007,6 +618820,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4834] = { + [sym_argument_list] = STATE(3125), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(4715), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3130), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(4834), [sym_preproc_endregion] = STATE(4834), [sym_preproc_line] = STATE(4834), @@ -627016,57 +618848,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4834), [sym_preproc_define] = STATE(4834), [sym_preproc_undef] = STATE(4834), - [anon_sym_SEMI] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6365), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_COMMA] = ACTIONS(6365), - [anon_sym_RBRACK] = ACTIONS(6365), - [anon_sym_LPAREN] = ACTIONS(6365), - [anon_sym_RPAREN] = ACTIONS(6365), - [anon_sym_RBRACE] = ACTIONS(6365), - [anon_sym_LT] = ACTIONS(6367), - [anon_sym_GT] = ACTIONS(6367), - [anon_sym_in] = ACTIONS(6367), - [anon_sym_QMARK] = ACTIONS(6367), - [anon_sym_BANG] = ACTIONS(6367), - [anon_sym_PLUS_PLUS] = ACTIONS(6365), - [anon_sym_DASH_DASH] = ACTIONS(6365), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6365), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_PERCENT] = ACTIONS(6365), - [anon_sym_CARET] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6367), - [anon_sym_AMP] = ACTIONS(6367), - [anon_sym_LT_LT] = ACTIONS(6365), - [anon_sym_GT_GT] = ACTIONS(6367), - [anon_sym_GT_GT_GT] = ACTIONS(6365), - [anon_sym_EQ_EQ] = ACTIONS(6365), - [anon_sym_BANG_EQ] = ACTIONS(6365), - [anon_sym_GT_EQ] = ACTIONS(6365), - [anon_sym_LT_EQ] = ACTIONS(6365), - [anon_sym_DOT] = ACTIONS(6367), - [anon_sym_EQ_GT] = ACTIONS(6365), - [anon_sym_switch] = ACTIONS(6365), - [anon_sym_when] = ACTIONS(6365), - [anon_sym_DOT_DOT] = ACTIONS(6365), - [anon_sym_and] = ACTIONS(6365), - [anon_sym_or] = ACTIONS(6365), - [anon_sym_AMP_AMP] = ACTIONS(6365), - [anon_sym_PIPE_PIPE] = ACTIONS(6365), - [sym_op_coalescing] = ACTIONS(6365), - [anon_sym_into] = ACTIONS(6365), - [anon_sym_on] = ACTIONS(6365), - [anon_sym_equals] = ACTIONS(6365), - [anon_sym_by] = ACTIONS(6365), - [anon_sym_as] = ACTIONS(6365), - [anon_sym_is] = ACTIONS(6365), - [anon_sym_DASH_GT] = ACTIONS(6365), - [anon_sym_with] = ACTIONS(6365), - [aux_sym_preproc_if_token3] = ACTIONS(6365), - [aux_sym_preproc_else_token1] = ACTIONS(6365), - [aux_sym_preproc_elif_token1] = ACTIONS(6365), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_ref] = ACTIONS(4590), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7538), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -627088,57 +618899,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4835), [sym_preproc_define] = STATE(4835), [sym_preproc_undef] = STATE(4835), - [anon_sym_SEMI] = ACTIONS(6231), - [anon_sym_LBRACK] = ACTIONS(6231), - [anon_sym_COLON] = ACTIONS(6231), - [anon_sym_COMMA] = ACTIONS(6231), - [anon_sym_RBRACK] = ACTIONS(6231), - [anon_sym_LPAREN] = ACTIONS(6231), - [anon_sym_RPAREN] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(6231), - [anon_sym_LT] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6233), - [anon_sym_in] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6233), - [anon_sym_BANG] = ACTIONS(6233), - [anon_sym_PLUS_PLUS] = ACTIONS(6231), - [anon_sym_DASH_DASH] = ACTIONS(6231), - [anon_sym_PLUS] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6233), - [anon_sym_STAR] = ACTIONS(6231), - [anon_sym_SLASH] = ACTIONS(6233), - [anon_sym_PERCENT] = ACTIONS(6231), - [anon_sym_CARET] = ACTIONS(6231), - [anon_sym_PIPE] = ACTIONS(6233), - [anon_sym_AMP] = ACTIONS(6233), - [anon_sym_LT_LT] = ACTIONS(6231), - [anon_sym_GT_GT] = ACTIONS(6233), - [anon_sym_GT_GT_GT] = ACTIONS(6231), - [anon_sym_EQ_EQ] = ACTIONS(6231), - [anon_sym_BANG_EQ] = ACTIONS(6231), - [anon_sym_GT_EQ] = ACTIONS(6231), - [anon_sym_LT_EQ] = ACTIONS(6231), - [anon_sym_DOT] = ACTIONS(6233), - [anon_sym_EQ_GT] = ACTIONS(6231), - [anon_sym_switch] = ACTIONS(6231), - [anon_sym_when] = ACTIONS(6231), - [anon_sym_DOT_DOT] = ACTIONS(6231), - [anon_sym_and] = ACTIONS(6231), - [anon_sym_or] = ACTIONS(6231), - [anon_sym_AMP_AMP] = ACTIONS(6231), - [anon_sym_PIPE_PIPE] = ACTIONS(6231), - [sym_op_coalescing] = ACTIONS(6231), - [anon_sym_into] = ACTIONS(6231), - [anon_sym_on] = ACTIONS(6231), - [anon_sym_equals] = ACTIONS(6231), - [anon_sym_by] = ACTIONS(6231), - [anon_sym_as] = ACTIONS(6231), - [anon_sym_is] = ACTIONS(6231), - [anon_sym_DASH_GT] = ACTIONS(6231), - [anon_sym_with] = ACTIONS(6231), - [aux_sym_preproc_if_token3] = ACTIONS(6231), - [aux_sym_preproc_else_token1] = ACTIONS(6231), - [aux_sym_preproc_elif_token1] = ACTIONS(6231), + [sym__identifier_token] = ACTIONS(5448), + [anon_sym_extern] = ACTIONS(5448), + [anon_sym_alias] = ACTIONS(5448), + [anon_sym_global] = ACTIONS(5448), + [anon_sym_unsafe] = ACTIONS(5448), + [anon_sym_static] = ACTIONS(5448), + [anon_sym_LBRACK] = ACTIONS(5450), + [anon_sym_LPAREN] = ACTIONS(5450), + [anon_sym_ref] = ACTIONS(5448), + [anon_sym_delegate] = ACTIONS(5448), + [anon_sym_public] = ACTIONS(5448), + [anon_sym_private] = ACTIONS(5448), + [anon_sym_readonly] = ACTIONS(5448), + [anon_sym_abstract] = ACTIONS(5448), + [anon_sym_async] = ACTIONS(5448), + [anon_sym_const] = ACTIONS(5448), + [anon_sym_file] = ACTIONS(5448), + [anon_sym_fixed] = ACTIONS(5448), + [anon_sym_internal] = ACTIONS(5448), + [anon_sym_new] = ACTIONS(5448), + [anon_sym_override] = ACTIONS(5448), + [anon_sym_partial] = ACTIONS(5448), + [anon_sym_protected] = ACTIONS(5448), + [anon_sym_required] = ACTIONS(5448), + [anon_sym_sealed] = ACTIONS(5448), + [anon_sym_virtual] = ACTIONS(5448), + [anon_sym_volatile] = ACTIONS(5448), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_notnull] = ACTIONS(5448), + [anon_sym_unmanaged] = ACTIONS(5448), + [anon_sym_scoped] = ACTIONS(5448), + [anon_sym_var] = ACTIONS(5448), + [sym_predefined_type] = ACTIONS(5448), + [anon_sym_yield] = ACTIONS(5448), + [anon_sym_when] = ACTIONS(5448), + [anon_sym_from] = ACTIONS(5448), + [anon_sym_into] = ACTIONS(5448), + [anon_sym_join] = ACTIONS(5448), + [anon_sym_on] = ACTIONS(5448), + [anon_sym_equals] = ACTIONS(5448), + [anon_sym_let] = ACTIONS(5448), + [anon_sym_orderby] = ACTIONS(5448), + [anon_sym_ascending] = ACTIONS(5448), + [anon_sym_descending] = ACTIONS(5448), + [anon_sym_group] = ACTIONS(5448), + [anon_sym_by] = ACTIONS(5448), + [anon_sym_select] = ACTIONS(5448), + [sym_grit_metavariable] = ACTIONS(5450), + [aux_sym_preproc_if_token1] = ACTIONS(5450), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -627151,26 +618960,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4836] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7834), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(4836), [sym_preproc_endregion] = STATE(4836), [sym_preproc_line] = STATE(4836), @@ -627180,37 +618969,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4836), [sym_preproc_define] = STATE(4836), [sym_preproc_undef] = STATE(4836), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(5444), + [anon_sym_extern] = ACTIONS(5444), + [anon_sym_alias] = ACTIONS(5444), + [anon_sym_global] = ACTIONS(5444), + [anon_sym_unsafe] = ACTIONS(5444), + [anon_sym_static] = ACTIONS(5444), + [anon_sym_LBRACK] = ACTIONS(5446), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_ref] = ACTIONS(5444), + [anon_sym_delegate] = ACTIONS(5444), + [anon_sym_public] = ACTIONS(5444), + [anon_sym_private] = ACTIONS(5444), + [anon_sym_readonly] = ACTIONS(5444), + [anon_sym_abstract] = ACTIONS(5444), + [anon_sym_async] = ACTIONS(5444), + [anon_sym_const] = ACTIONS(5444), + [anon_sym_file] = ACTIONS(5444), + [anon_sym_fixed] = ACTIONS(5444), + [anon_sym_internal] = ACTIONS(5444), + [anon_sym_new] = ACTIONS(5444), + [anon_sym_override] = ACTIONS(5444), + [anon_sym_partial] = ACTIONS(5444), + [anon_sym_protected] = ACTIONS(5444), + [anon_sym_required] = ACTIONS(5444), + [anon_sym_sealed] = ACTIONS(5444), + [anon_sym_virtual] = ACTIONS(5444), + [anon_sym_volatile] = ACTIONS(5444), + [anon_sym_where] = ACTIONS(5444), + [anon_sym_notnull] = ACTIONS(5444), + [anon_sym_unmanaged] = ACTIONS(5444), + [anon_sym_scoped] = ACTIONS(5444), + [anon_sym_var] = ACTIONS(5444), + [sym_predefined_type] = ACTIONS(5444), + [anon_sym_yield] = ACTIONS(5444), + [anon_sym_when] = ACTIONS(5444), + [anon_sym_from] = ACTIONS(5444), + [anon_sym_into] = ACTIONS(5444), + [anon_sym_join] = ACTIONS(5444), + [anon_sym_on] = ACTIONS(5444), + [anon_sym_equals] = ACTIONS(5444), + [anon_sym_let] = ACTIONS(5444), + [anon_sym_orderby] = ACTIONS(5444), + [anon_sym_ascending] = ACTIONS(5444), + [anon_sym_descending] = ACTIONS(5444), + [anon_sym_group] = ACTIONS(5444), + [anon_sym_by] = ACTIONS(5444), + [anon_sym_select] = ACTIONS(5444), + [sym_grit_metavariable] = ACTIONS(5446), + [aux_sym_preproc_if_token1] = ACTIONS(5446), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -627232,57 +619039,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4837), [sym_preproc_define] = STATE(4837), [sym_preproc_undef] = STATE(4837), - [anon_sym_SEMI] = ACTIONS(6249), - [anon_sym_LBRACK] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6249), - [anon_sym_COMMA] = ACTIONS(6249), - [anon_sym_RBRACK] = ACTIONS(6249), - [anon_sym_LPAREN] = ACTIONS(6249), - [anon_sym_RPAREN] = ACTIONS(6249), - [anon_sym_RBRACE] = ACTIONS(6249), - [anon_sym_LT] = ACTIONS(6251), - [anon_sym_GT] = ACTIONS(6251), - [anon_sym_in] = ACTIONS(6251), - [anon_sym_QMARK] = ACTIONS(6251), - [anon_sym_BANG] = ACTIONS(6251), - [anon_sym_PLUS_PLUS] = ACTIONS(6249), - [anon_sym_DASH_DASH] = ACTIONS(6249), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6249), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_PERCENT] = ACTIONS(6249), - [anon_sym_CARET] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6251), - [anon_sym_AMP] = ACTIONS(6251), - [anon_sym_LT_LT] = ACTIONS(6249), - [anon_sym_GT_GT] = ACTIONS(6251), - [anon_sym_GT_GT_GT] = ACTIONS(6249), - [anon_sym_EQ_EQ] = ACTIONS(6249), - [anon_sym_BANG_EQ] = ACTIONS(6249), - [anon_sym_GT_EQ] = ACTIONS(6249), - [anon_sym_LT_EQ] = ACTIONS(6249), - [anon_sym_DOT] = ACTIONS(6251), - [anon_sym_EQ_GT] = ACTIONS(6249), - [anon_sym_switch] = ACTIONS(6249), - [anon_sym_when] = ACTIONS(6249), - [anon_sym_DOT_DOT] = ACTIONS(6249), - [anon_sym_and] = ACTIONS(6249), - [anon_sym_or] = ACTIONS(6249), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6249), - [sym_op_coalescing] = ACTIONS(6249), - [anon_sym_into] = ACTIONS(6249), - [anon_sym_on] = ACTIONS(6249), - [anon_sym_equals] = ACTIONS(6249), - [anon_sym_by] = ACTIONS(6249), - [anon_sym_as] = ACTIONS(6249), - [anon_sym_is] = ACTIONS(6249), - [anon_sym_DASH_GT] = ACTIONS(6249), - [anon_sym_with] = ACTIONS(6249), - [aux_sym_preproc_if_token3] = ACTIONS(6249), - [aux_sym_preproc_else_token1] = ACTIONS(6249), - [aux_sym_preproc_elif_token1] = ACTIONS(6249), + [sym__identifier_token] = ACTIONS(5438), + [anon_sym_extern] = ACTIONS(5438), + [anon_sym_alias] = ACTIONS(5438), + [anon_sym_global] = ACTIONS(5438), + [anon_sym_unsafe] = ACTIONS(5438), + [anon_sym_static] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5440), + [anon_sym_LPAREN] = ACTIONS(5440), + [anon_sym_ref] = ACTIONS(5438), + [anon_sym_delegate] = ACTIONS(5438), + [anon_sym_public] = ACTIONS(5438), + [anon_sym_private] = ACTIONS(5438), + [anon_sym_readonly] = ACTIONS(5438), + [anon_sym_abstract] = ACTIONS(5438), + [anon_sym_async] = ACTIONS(5438), + [anon_sym_const] = ACTIONS(5438), + [anon_sym_file] = ACTIONS(5438), + [anon_sym_fixed] = ACTIONS(5438), + [anon_sym_internal] = ACTIONS(5438), + [anon_sym_new] = ACTIONS(5438), + [anon_sym_override] = ACTIONS(5438), + [anon_sym_partial] = ACTIONS(5438), + [anon_sym_protected] = ACTIONS(5438), + [anon_sym_required] = ACTIONS(5438), + [anon_sym_sealed] = ACTIONS(5438), + [anon_sym_virtual] = ACTIONS(5438), + [anon_sym_volatile] = ACTIONS(5438), + [anon_sym_where] = ACTIONS(5438), + [anon_sym_notnull] = ACTIONS(5438), + [anon_sym_unmanaged] = ACTIONS(5438), + [anon_sym_scoped] = ACTIONS(5438), + [anon_sym_var] = ACTIONS(5438), + [sym_predefined_type] = ACTIONS(5438), + [anon_sym_yield] = ACTIONS(5438), + [anon_sym_when] = ACTIONS(5438), + [anon_sym_from] = ACTIONS(5438), + [anon_sym_into] = ACTIONS(5438), + [anon_sym_join] = ACTIONS(5438), + [anon_sym_on] = ACTIONS(5438), + [anon_sym_equals] = ACTIONS(5438), + [anon_sym_let] = ACTIONS(5438), + [anon_sym_orderby] = ACTIONS(5438), + [anon_sym_ascending] = ACTIONS(5438), + [anon_sym_descending] = ACTIONS(5438), + [anon_sym_group] = ACTIONS(5438), + [anon_sym_by] = ACTIONS(5438), + [anon_sym_select] = ACTIONS(5438), + [sym_grit_metavariable] = ACTIONS(5440), + [aux_sym_preproc_if_token1] = ACTIONS(5440), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -627295,6 +619100,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4838] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4838), [sym_preproc_endregion] = STATE(4838), [sym_preproc_line] = STATE(4838), @@ -627304,57 +619124,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4838), [sym_preproc_define] = STATE(4838), [sym_preproc_undef] = STATE(4838), - [anon_sym_SEMI] = ACTIONS(6255), - [anon_sym_LBRACK] = ACTIONS(6255), - [anon_sym_COLON] = ACTIONS(6255), - [anon_sym_COMMA] = ACTIONS(6255), - [anon_sym_RBRACK] = ACTIONS(6255), - [anon_sym_LPAREN] = ACTIONS(6255), - [anon_sym_RPAREN] = ACTIONS(6255), - [anon_sym_RBRACE] = ACTIONS(6255), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_GT] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_QMARK] = ACTIONS(6257), - [anon_sym_BANG] = ACTIONS(6257), - [anon_sym_PLUS_PLUS] = ACTIONS(6255), - [anon_sym_DASH_DASH] = ACTIONS(6255), - [anon_sym_PLUS] = ACTIONS(6257), - [anon_sym_DASH] = ACTIONS(6257), - [anon_sym_STAR] = ACTIONS(6255), - [anon_sym_SLASH] = ACTIONS(6257), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_CARET] = ACTIONS(6255), - [anon_sym_PIPE] = ACTIONS(6257), - [anon_sym_AMP] = ACTIONS(6257), - [anon_sym_LT_LT] = ACTIONS(6255), - [anon_sym_GT_GT] = ACTIONS(6257), - [anon_sym_GT_GT_GT] = ACTIONS(6255), - [anon_sym_EQ_EQ] = ACTIONS(6255), - [anon_sym_BANG_EQ] = ACTIONS(6255), - [anon_sym_GT_EQ] = ACTIONS(6255), - [anon_sym_LT_EQ] = ACTIONS(6255), - [anon_sym_DOT] = ACTIONS(6257), - [anon_sym_EQ_GT] = ACTIONS(6255), - [anon_sym_switch] = ACTIONS(6255), - [anon_sym_when] = ACTIONS(6255), - [anon_sym_DOT_DOT] = ACTIONS(6255), - [anon_sym_and] = ACTIONS(6255), - [anon_sym_or] = ACTIONS(6255), - [anon_sym_AMP_AMP] = ACTIONS(6255), - [anon_sym_PIPE_PIPE] = ACTIONS(6255), - [sym_op_coalescing] = ACTIONS(6255), - [anon_sym_into] = ACTIONS(6255), - [anon_sym_on] = ACTIONS(6255), - [anon_sym_equals] = ACTIONS(6255), - [anon_sym_by] = ACTIONS(6255), - [anon_sym_as] = ACTIONS(6255), - [anon_sym_is] = ACTIONS(6255), - [anon_sym_DASH_GT] = ACTIONS(6255), - [anon_sym_with] = ACTIONS(6255), - [aux_sym_preproc_if_token3] = ACTIONS(6255), - [aux_sym_preproc_else_token1] = ACTIONS(6255), - [aux_sym_preproc_elif_token1] = ACTIONS(6255), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -627367,6 +619170,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4839] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4839), [sym_preproc_endregion] = STATE(4839), [sym_preproc_line] = STATE(4839), @@ -627376,57 +619194,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4839), [sym_preproc_define] = STATE(4839), [sym_preproc_undef] = STATE(4839), - [anon_sym_SEMI] = ACTIONS(6267), - [anon_sym_LBRACK] = ACTIONS(6267), - [anon_sym_COLON] = ACTIONS(6267), - [anon_sym_COMMA] = ACTIONS(6267), - [anon_sym_RBRACK] = ACTIONS(6267), - [anon_sym_LPAREN] = ACTIONS(6267), - [anon_sym_RPAREN] = ACTIONS(6267), - [anon_sym_RBRACE] = ACTIONS(6267), - [anon_sym_LT] = ACTIONS(6269), - [anon_sym_GT] = ACTIONS(6269), - [anon_sym_in] = ACTIONS(6269), - [anon_sym_QMARK] = ACTIONS(6269), - [anon_sym_BANG] = ACTIONS(6269), - [anon_sym_PLUS_PLUS] = ACTIONS(6267), - [anon_sym_DASH_DASH] = ACTIONS(6267), - [anon_sym_PLUS] = ACTIONS(6269), - [anon_sym_DASH] = ACTIONS(6269), - [anon_sym_STAR] = ACTIONS(6267), - [anon_sym_SLASH] = ACTIONS(6269), - [anon_sym_PERCENT] = ACTIONS(6267), - [anon_sym_CARET] = ACTIONS(6267), - [anon_sym_PIPE] = ACTIONS(6269), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_GT_GT] = ACTIONS(6269), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_EQ_EQ] = ACTIONS(6267), - [anon_sym_BANG_EQ] = ACTIONS(6267), - [anon_sym_GT_EQ] = ACTIONS(6267), - [anon_sym_LT_EQ] = ACTIONS(6267), - [anon_sym_DOT] = ACTIONS(6269), - [anon_sym_EQ_GT] = ACTIONS(6267), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_when] = ACTIONS(6267), - [anon_sym_DOT_DOT] = ACTIONS(6267), - [anon_sym_and] = ACTIONS(6267), - [anon_sym_or] = ACTIONS(6267), - [anon_sym_AMP_AMP] = ACTIONS(6267), - [anon_sym_PIPE_PIPE] = ACTIONS(6267), - [sym_op_coalescing] = ACTIONS(6267), - [anon_sym_into] = ACTIONS(6267), - [anon_sym_on] = ACTIONS(6267), - [anon_sym_equals] = ACTIONS(6267), - [anon_sym_by] = ACTIONS(6267), - [anon_sym_as] = ACTIONS(6267), - [anon_sym_is] = ACTIONS(6267), - [anon_sym_DASH_GT] = ACTIONS(6267), - [anon_sym_with] = ACTIONS(6267), - [aux_sym_preproc_if_token3] = ACTIONS(6267), - [aux_sym_preproc_else_token1] = ACTIONS(6267), - [aux_sym_preproc_elif_token1] = ACTIONS(6267), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -627448,57 +619249,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4840), [sym_preproc_define] = STATE(4840), [sym_preproc_undef] = STATE(4840), - [anon_sym_SEMI] = ACTIONS(6271), - [anon_sym_LBRACK] = ACTIONS(6271), - [anon_sym_COLON] = ACTIONS(6271), - [anon_sym_COMMA] = ACTIONS(6271), - [anon_sym_RBRACK] = ACTIONS(6271), - [anon_sym_LPAREN] = ACTIONS(6271), - [anon_sym_RPAREN] = ACTIONS(6271), - [anon_sym_RBRACE] = ACTIONS(6271), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_in] = ACTIONS(6273), - [anon_sym_QMARK] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PLUS_PLUS] = ACTIONS(6271), - [anon_sym_DASH_DASH] = ACTIONS(6271), - [anon_sym_PLUS] = ACTIONS(6273), - [anon_sym_DASH] = ACTIONS(6273), - [anon_sym_STAR] = ACTIONS(6271), - [anon_sym_SLASH] = ACTIONS(6273), - [anon_sym_PERCENT] = ACTIONS(6271), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_AMP] = ACTIONS(6273), - [anon_sym_LT_LT] = ACTIONS(6271), - [anon_sym_GT_GT] = ACTIONS(6273), - [anon_sym_GT_GT_GT] = ACTIONS(6271), - [anon_sym_EQ_EQ] = ACTIONS(6271), - [anon_sym_BANG_EQ] = ACTIONS(6271), - [anon_sym_GT_EQ] = ACTIONS(6271), - [anon_sym_LT_EQ] = ACTIONS(6271), - [anon_sym_DOT] = ACTIONS(6273), - [anon_sym_EQ_GT] = ACTIONS(6271), - [anon_sym_switch] = ACTIONS(6271), - [anon_sym_when] = ACTIONS(6271), - [anon_sym_DOT_DOT] = ACTIONS(6271), - [anon_sym_and] = ACTIONS(6271), - [anon_sym_or] = ACTIONS(6271), - [anon_sym_AMP_AMP] = ACTIONS(6271), - [anon_sym_PIPE_PIPE] = ACTIONS(6271), - [sym_op_coalescing] = ACTIONS(6271), - [anon_sym_into] = ACTIONS(6271), - [anon_sym_on] = ACTIONS(6271), - [anon_sym_equals] = ACTIONS(6271), - [anon_sym_by] = ACTIONS(6271), - [anon_sym_as] = ACTIONS(6271), - [anon_sym_is] = ACTIONS(6271), - [anon_sym_DASH_GT] = ACTIONS(6271), - [anon_sym_with] = ACTIONS(6271), - [aux_sym_preproc_if_token3] = ACTIONS(6271), - [aux_sym_preproc_else_token1] = ACTIONS(6271), - [aux_sym_preproc_elif_token1] = ACTIONS(6271), + [sym__identifier_token] = ACTIONS(5432), + [anon_sym_extern] = ACTIONS(5432), + [anon_sym_alias] = ACTIONS(5432), + [anon_sym_global] = ACTIONS(5432), + [anon_sym_unsafe] = ACTIONS(5432), + [anon_sym_static] = ACTIONS(5432), + [anon_sym_LBRACK] = ACTIONS(5434), + [anon_sym_LPAREN] = ACTIONS(5434), + [anon_sym_ref] = ACTIONS(5432), + [anon_sym_delegate] = ACTIONS(5432), + [anon_sym_public] = ACTIONS(5432), + [anon_sym_private] = ACTIONS(5432), + [anon_sym_readonly] = ACTIONS(5432), + [anon_sym_abstract] = ACTIONS(5432), + [anon_sym_async] = ACTIONS(5432), + [anon_sym_const] = ACTIONS(5432), + [anon_sym_file] = ACTIONS(5432), + [anon_sym_fixed] = ACTIONS(5432), + [anon_sym_internal] = ACTIONS(5432), + [anon_sym_new] = ACTIONS(5432), + [anon_sym_override] = ACTIONS(5432), + [anon_sym_partial] = ACTIONS(5432), + [anon_sym_protected] = ACTIONS(5432), + [anon_sym_required] = ACTIONS(5432), + [anon_sym_sealed] = ACTIONS(5432), + [anon_sym_virtual] = ACTIONS(5432), + [anon_sym_volatile] = ACTIONS(5432), + [anon_sym_where] = ACTIONS(5432), + [anon_sym_notnull] = ACTIONS(5432), + [anon_sym_unmanaged] = ACTIONS(5432), + [anon_sym_scoped] = ACTIONS(5432), + [anon_sym_var] = ACTIONS(5432), + [sym_predefined_type] = ACTIONS(5432), + [anon_sym_yield] = ACTIONS(5432), + [anon_sym_when] = ACTIONS(5432), + [anon_sym_from] = ACTIONS(5432), + [anon_sym_into] = ACTIONS(5432), + [anon_sym_join] = ACTIONS(5432), + [anon_sym_on] = ACTIONS(5432), + [anon_sym_equals] = ACTIONS(5432), + [anon_sym_let] = ACTIONS(5432), + [anon_sym_orderby] = ACTIONS(5432), + [anon_sym_ascending] = ACTIONS(5432), + [anon_sym_descending] = ACTIONS(5432), + [anon_sym_group] = ACTIONS(5432), + [anon_sym_by] = ACTIONS(5432), + [anon_sym_select] = ACTIONS(5432), + [sym_grit_metavariable] = ACTIONS(5434), + [aux_sym_preproc_if_token1] = ACTIONS(5434), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -627520,57 +619319,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4841), [sym_preproc_define] = STATE(4841), [sym_preproc_undef] = STATE(4841), - [anon_sym_SEMI] = ACTIONS(4206), - [anon_sym_LBRACK] = ACTIONS(4206), - [anon_sym_COLON] = ACTIONS(4206), - [anon_sym_COMMA] = ACTIONS(4206), - [anon_sym_RBRACK] = ACTIONS(4206), - [anon_sym_LPAREN] = ACTIONS(4206), - [anon_sym_RPAREN] = ACTIONS(4206), - [anon_sym_RBRACE] = ACTIONS(4206), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_in] = ACTIONS(7042), - [anon_sym_QMARK] = ACTIONS(7042), - [anon_sym_BANG] = ACTIONS(7042), - [anon_sym_PLUS_PLUS] = ACTIONS(4206), - [anon_sym_DASH_DASH] = ACTIONS(4206), - [anon_sym_PLUS] = ACTIONS(7042), - [anon_sym_DASH] = ACTIONS(7042), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(7042), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_CARET] = ACTIONS(4206), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - [anon_sym_LT_LT] = ACTIONS(4206), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_GT_GT_GT] = ACTIONS(4206), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_GT_EQ] = ACTIONS(4206), - [anon_sym_LT_EQ] = ACTIONS(4206), - [anon_sym_DOT] = ACTIONS(7042), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_switch] = ACTIONS(4206), - [anon_sym_when] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4206), - [anon_sym_and] = ACTIONS(4206), - [anon_sym_or] = ACTIONS(4206), - [anon_sym_AMP_AMP] = ACTIONS(4206), - [anon_sym_PIPE_PIPE] = ACTIONS(4206), - [sym_op_coalescing] = ACTIONS(4206), - [anon_sym_into] = ACTIONS(4206), - [anon_sym_on] = ACTIONS(4206), - [anon_sym_equals] = ACTIONS(4206), - [anon_sym_by] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_DASH_GT] = ACTIONS(4206), - [anon_sym_with] = ACTIONS(4206), - [aux_sym_preproc_if_token3] = ACTIONS(4206), - [aux_sym_preproc_else_token1] = ACTIONS(4206), - [aux_sym_preproc_elif_token1] = ACTIONS(4206), + [sym__identifier_token] = ACTIONS(5420), + [anon_sym_extern] = ACTIONS(5420), + [anon_sym_alias] = ACTIONS(5420), + [anon_sym_global] = ACTIONS(5420), + [anon_sym_unsafe] = ACTIONS(5420), + [anon_sym_static] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5422), + [anon_sym_LPAREN] = ACTIONS(5422), + [anon_sym_ref] = ACTIONS(5420), + [anon_sym_delegate] = ACTIONS(5420), + [anon_sym_public] = ACTIONS(5420), + [anon_sym_private] = ACTIONS(5420), + [anon_sym_readonly] = ACTIONS(5420), + [anon_sym_abstract] = ACTIONS(5420), + [anon_sym_async] = ACTIONS(5420), + [anon_sym_const] = ACTIONS(5420), + [anon_sym_file] = ACTIONS(5420), + [anon_sym_fixed] = ACTIONS(5420), + [anon_sym_internal] = ACTIONS(5420), + [anon_sym_new] = ACTIONS(5420), + [anon_sym_override] = ACTIONS(5420), + [anon_sym_partial] = ACTIONS(5420), + [anon_sym_protected] = ACTIONS(5420), + [anon_sym_required] = ACTIONS(5420), + [anon_sym_sealed] = ACTIONS(5420), + [anon_sym_virtual] = ACTIONS(5420), + [anon_sym_volatile] = ACTIONS(5420), + [anon_sym_where] = ACTIONS(5420), + [anon_sym_notnull] = ACTIONS(5420), + [anon_sym_unmanaged] = ACTIONS(5420), + [anon_sym_scoped] = ACTIONS(5420), + [anon_sym_var] = ACTIONS(5420), + [sym_predefined_type] = ACTIONS(5420), + [anon_sym_yield] = ACTIONS(5420), + [anon_sym_when] = ACTIONS(5420), + [anon_sym_from] = ACTIONS(5420), + [anon_sym_into] = ACTIONS(5420), + [anon_sym_join] = ACTIONS(5420), + [anon_sym_on] = ACTIONS(5420), + [anon_sym_equals] = ACTIONS(5420), + [anon_sym_let] = ACTIONS(5420), + [anon_sym_orderby] = ACTIONS(5420), + [anon_sym_ascending] = ACTIONS(5420), + [anon_sym_descending] = ACTIONS(5420), + [anon_sym_group] = ACTIONS(5420), + [anon_sym_by] = ACTIONS(5420), + [anon_sym_select] = ACTIONS(5420), + [sym_grit_metavariable] = ACTIONS(5422), + [aux_sym_preproc_if_token1] = ACTIONS(5422), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -627583,26 +619380,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4842] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7834), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(4842), [sym_preproc_endregion] = STATE(4842), [sym_preproc_line] = STATE(4842), @@ -627612,37 +619389,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4842), [sym_preproc_define] = STATE(4842), [sym_preproc_undef] = STATE(4842), - [aux_sym_function_pointer_type_repeat1] = STATE(4865), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(5478), + [anon_sym_extern] = ACTIONS(5478), + [anon_sym_alias] = ACTIONS(5478), + [anon_sym_global] = ACTIONS(5478), + [anon_sym_unsafe] = ACTIONS(5478), + [anon_sym_static] = ACTIONS(5478), + [anon_sym_LBRACK] = ACTIONS(5480), + [anon_sym_LPAREN] = ACTIONS(5480), + [anon_sym_ref] = ACTIONS(5478), + [anon_sym_delegate] = ACTIONS(5478), + [anon_sym_public] = ACTIONS(5478), + [anon_sym_private] = ACTIONS(5478), + [anon_sym_readonly] = ACTIONS(5478), + [anon_sym_abstract] = ACTIONS(5478), + [anon_sym_async] = ACTIONS(5478), + [anon_sym_const] = ACTIONS(5478), + [anon_sym_file] = ACTIONS(5478), + [anon_sym_fixed] = ACTIONS(5478), + [anon_sym_internal] = ACTIONS(5478), + [anon_sym_new] = ACTIONS(5478), + [anon_sym_override] = ACTIONS(5478), + [anon_sym_partial] = ACTIONS(5478), + [anon_sym_protected] = ACTIONS(5478), + [anon_sym_required] = ACTIONS(5478), + [anon_sym_sealed] = ACTIONS(5478), + [anon_sym_virtual] = ACTIONS(5478), + [anon_sym_volatile] = ACTIONS(5478), + [anon_sym_where] = ACTIONS(5478), + [anon_sym_notnull] = ACTIONS(5478), + [anon_sym_unmanaged] = ACTIONS(5478), + [anon_sym_scoped] = ACTIONS(5478), + [anon_sym_var] = ACTIONS(5478), + [sym_predefined_type] = ACTIONS(5478), + [anon_sym_yield] = ACTIONS(5478), + [anon_sym_when] = ACTIONS(5478), + [anon_sym_from] = ACTIONS(5478), + [anon_sym_into] = ACTIONS(5478), + [anon_sym_join] = ACTIONS(5478), + [anon_sym_on] = ACTIONS(5478), + [anon_sym_equals] = ACTIONS(5478), + [anon_sym_let] = ACTIONS(5478), + [anon_sym_orderby] = ACTIONS(5478), + [anon_sym_ascending] = ACTIONS(5478), + [anon_sym_descending] = ACTIONS(5478), + [anon_sym_group] = ACTIONS(5478), + [anon_sym_by] = ACTIONS(5478), + [anon_sym_select] = ACTIONS(5478), + [sym_grit_metavariable] = ACTIONS(5480), + [aux_sym_preproc_if_token1] = ACTIONS(5480), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -627655,24 +619450,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4843] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6376), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(4843), [sym_preproc_endregion] = STATE(4843), [sym_preproc_line] = STATE(4843), @@ -627682,39 +619474,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4843), [sym_preproc_define] = STATE(4843), [sym_preproc_undef] = STATE(4843), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(6062), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5448), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(1271), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(1271), - [anon_sym_out] = ACTIONS(1271), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_this] = ACTIONS(1271), - [anon_sym_scoped] = ACTIONS(5468), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_if_token3] = ACTIONS(7540), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -627727,6 +619520,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4844] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4844), [sym_preproc_endregion] = STATE(4844), [sym_preproc_line] = STATE(4844), @@ -627736,57 +619544,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4844), [sym_preproc_define] = STATE(4844), [sym_preproc_undef] = STATE(4844), - [anon_sym_SEMI] = ACTIONS(6335), - [anon_sym_LBRACK] = ACTIONS(6335), - [anon_sym_COLON] = ACTIONS(6335), - [anon_sym_COMMA] = ACTIONS(6335), - [anon_sym_RBRACK] = ACTIONS(6335), - [anon_sym_LPAREN] = ACTIONS(6335), - [anon_sym_RPAREN] = ACTIONS(6335), - [anon_sym_RBRACE] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_in] = ACTIONS(6337), - [anon_sym_QMARK] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PLUS_PLUS] = ACTIONS(6335), - [anon_sym_DASH_DASH] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6337), - [anon_sym_DASH] = ACTIONS(6337), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6337), - [anon_sym_PERCENT] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_AMP] = ACTIONS(6337), - [anon_sym_LT_LT] = ACTIONS(6335), - [anon_sym_GT_GT] = ACTIONS(6337), - [anon_sym_GT_GT_GT] = ACTIONS(6335), - [anon_sym_EQ_EQ] = ACTIONS(6335), - [anon_sym_BANG_EQ] = ACTIONS(6335), - [anon_sym_GT_EQ] = ACTIONS(6335), - [anon_sym_LT_EQ] = ACTIONS(6335), - [anon_sym_DOT] = ACTIONS(6337), - [anon_sym_EQ_GT] = ACTIONS(6335), - [anon_sym_switch] = ACTIONS(6335), - [anon_sym_when] = ACTIONS(6335), - [anon_sym_DOT_DOT] = ACTIONS(6335), - [anon_sym_and] = ACTIONS(6335), - [anon_sym_or] = ACTIONS(6335), - [anon_sym_AMP_AMP] = ACTIONS(6335), - [anon_sym_PIPE_PIPE] = ACTIONS(6335), - [sym_op_coalescing] = ACTIONS(6335), - [anon_sym_into] = ACTIONS(6335), - [anon_sym_on] = ACTIONS(6335), - [anon_sym_equals] = ACTIONS(6335), - [anon_sym_by] = ACTIONS(6335), - [anon_sym_as] = ACTIONS(6335), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(6335), - [anon_sym_with] = ACTIONS(6335), - [aux_sym_preproc_if_token3] = ACTIONS(6335), - [aux_sym_preproc_else_token1] = ACTIONS(6335), - [aux_sym_preproc_elif_token1] = ACTIONS(6335), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7542), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(7556), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(7558), + [anon_sym_is] = ACTIONS(7560), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -627799,6 +619590,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4845] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4845), [sym_preproc_endregion] = STATE(4845), [sym_preproc_line] = STATE(4845), @@ -627808,67 +619614,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4845), [sym_preproc_define] = STATE(4845), [sym_preproc_undef] = STATE(4845), - [anon_sym_EQ] = ACTIONS(7044), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7046), - [anon_sym_DASH_EQ] = ACTIONS(7046), - [anon_sym_STAR_EQ] = ACTIONS(7046), - [anon_sym_SLASH_EQ] = ACTIONS(7046), - [anon_sym_PERCENT_EQ] = ACTIONS(7046), - [anon_sym_AMP_EQ] = ACTIONS(7046), - [anon_sym_CARET_EQ] = ACTIONS(7046), - [anon_sym_PIPE_EQ] = ACTIONS(7046), - [anon_sym_LT_LT_EQ] = ACTIONS(7046), - [anon_sym_GT_GT_EQ] = ACTIONS(7046), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7046), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7046), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7562), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [4846] = { [sym_preproc_region] = STATE(4846), @@ -627880,57 +619669,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4846), [sym_preproc_define] = STATE(4846), [sym_preproc_undef] = STATE(4846), - [anon_sym_SEMI] = ACTIONS(7048), - [anon_sym_LBRACK] = ACTIONS(7048), - [anon_sym_COLON] = ACTIONS(7048), - [anon_sym_COMMA] = ACTIONS(7048), - [anon_sym_RBRACK] = ACTIONS(7048), - [anon_sym_LPAREN] = ACTIONS(7048), - [anon_sym_RPAREN] = ACTIONS(7048), - [anon_sym_RBRACE] = ACTIONS(7048), - [anon_sym_LT] = ACTIONS(7050), - [anon_sym_GT] = ACTIONS(7050), - [anon_sym_in] = ACTIONS(7050), - [anon_sym_QMARK] = ACTIONS(7050), - [anon_sym_BANG] = ACTIONS(7050), - [anon_sym_PLUS_PLUS] = ACTIONS(7048), - [anon_sym_DASH_DASH] = ACTIONS(7048), - [anon_sym_PLUS] = ACTIONS(7050), - [anon_sym_DASH] = ACTIONS(7050), - [anon_sym_STAR] = ACTIONS(7048), - [anon_sym_SLASH] = ACTIONS(7050), - [anon_sym_PERCENT] = ACTIONS(7048), - [anon_sym_CARET] = ACTIONS(7048), - [anon_sym_PIPE] = ACTIONS(7050), - [anon_sym_AMP] = ACTIONS(7050), - [anon_sym_LT_LT] = ACTIONS(7048), - [anon_sym_GT_GT] = ACTIONS(7050), - [anon_sym_GT_GT_GT] = ACTIONS(7048), - [anon_sym_EQ_EQ] = ACTIONS(7048), - [anon_sym_BANG_EQ] = ACTIONS(7048), - [anon_sym_GT_EQ] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7048), - [anon_sym_DOT] = ACTIONS(7050), - [anon_sym_EQ_GT] = ACTIONS(7048), - [anon_sym_switch] = ACTIONS(7048), - [anon_sym_when] = ACTIONS(7048), - [anon_sym_DOT_DOT] = ACTIONS(7048), - [anon_sym_and] = ACTIONS(7048), - [anon_sym_or] = ACTIONS(7048), - [anon_sym_AMP_AMP] = ACTIONS(7048), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [sym_op_coalescing] = ACTIONS(7048), - [anon_sym_into] = ACTIONS(7048), - [anon_sym_on] = ACTIONS(7048), - [anon_sym_equals] = ACTIONS(7048), - [anon_sym_by] = ACTIONS(7048), - [anon_sym_as] = ACTIONS(7048), - [anon_sym_is] = ACTIONS(7048), - [anon_sym_DASH_GT] = ACTIONS(7048), - [anon_sym_with] = ACTIONS(7048), - [aux_sym_preproc_if_token3] = ACTIONS(7048), - [aux_sym_preproc_else_token1] = ACTIONS(7048), - [aux_sym_preproc_elif_token1] = ACTIONS(7048), + [sym__identifier_token] = ACTIONS(5202), + [anon_sym_extern] = ACTIONS(5202), + [anon_sym_alias] = ACTIONS(5202), + [anon_sym_global] = ACTIONS(5202), + [anon_sym_unsafe] = ACTIONS(5202), + [anon_sym_static] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_LPAREN] = ACTIONS(5204), + [anon_sym_ref] = ACTIONS(5202), + [anon_sym_delegate] = ACTIONS(5202), + [anon_sym_public] = ACTIONS(5202), + [anon_sym_private] = ACTIONS(5202), + [anon_sym_readonly] = ACTIONS(5202), + [anon_sym_abstract] = ACTIONS(5202), + [anon_sym_async] = ACTIONS(5202), + [anon_sym_const] = ACTIONS(5202), + [anon_sym_file] = ACTIONS(5202), + [anon_sym_fixed] = ACTIONS(5202), + [anon_sym_internal] = ACTIONS(5202), + [anon_sym_new] = ACTIONS(5202), + [anon_sym_override] = ACTIONS(5202), + [anon_sym_partial] = ACTIONS(5202), + [anon_sym_protected] = ACTIONS(5202), + [anon_sym_required] = ACTIONS(5202), + [anon_sym_sealed] = ACTIONS(5202), + [anon_sym_virtual] = ACTIONS(5202), + [anon_sym_volatile] = ACTIONS(5202), + [anon_sym_where] = ACTIONS(5202), + [anon_sym_notnull] = ACTIONS(5202), + [anon_sym_unmanaged] = ACTIONS(5202), + [anon_sym_scoped] = ACTIONS(5202), + [anon_sym_var] = ACTIONS(5202), + [sym_predefined_type] = ACTIONS(5202), + [anon_sym_yield] = ACTIONS(5202), + [anon_sym_when] = ACTIONS(5202), + [anon_sym_from] = ACTIONS(5202), + [anon_sym_into] = ACTIONS(5202), + [anon_sym_join] = ACTIONS(5202), + [anon_sym_on] = ACTIONS(5202), + [anon_sym_equals] = ACTIONS(5202), + [anon_sym_let] = ACTIONS(5202), + [anon_sym_orderby] = ACTIONS(5202), + [anon_sym_ascending] = ACTIONS(5202), + [anon_sym_descending] = ACTIONS(5202), + [anon_sym_group] = ACTIONS(5202), + [anon_sym_by] = ACTIONS(5202), + [anon_sym_select] = ACTIONS(5202), + [sym_grit_metavariable] = ACTIONS(5204), + [aux_sym_preproc_if_token1] = ACTIONS(5204), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -627943,6 +619730,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4847] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4847), [sym_preproc_endregion] = STATE(4847), [sym_preproc_line] = STATE(4847), @@ -627952,57 +619754,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4847), [sym_preproc_define] = STATE(4847), [sym_preproc_undef] = STATE(4847), - [anon_sym_SEMI] = ACTIONS(7052), - [anon_sym_LBRACK] = ACTIONS(7052), - [anon_sym_COLON] = ACTIONS(7052), - [anon_sym_COMMA] = ACTIONS(7052), - [anon_sym_RBRACK] = ACTIONS(7052), - [anon_sym_LPAREN] = ACTIONS(7052), - [anon_sym_RPAREN] = ACTIONS(7052), - [anon_sym_RBRACE] = ACTIONS(7052), - [anon_sym_LT] = ACTIONS(7054), - [anon_sym_GT] = ACTIONS(7054), - [anon_sym_in] = ACTIONS(7054), - [anon_sym_QMARK] = ACTIONS(7054), - [anon_sym_BANG] = ACTIONS(7054), - [anon_sym_PLUS_PLUS] = ACTIONS(7052), - [anon_sym_DASH_DASH] = ACTIONS(7052), - [anon_sym_PLUS] = ACTIONS(7054), - [anon_sym_DASH] = ACTIONS(7054), - [anon_sym_STAR] = ACTIONS(7052), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_PERCENT] = ACTIONS(7052), - [anon_sym_CARET] = ACTIONS(7052), - [anon_sym_PIPE] = ACTIONS(7054), - [anon_sym_AMP] = ACTIONS(7054), - [anon_sym_LT_LT] = ACTIONS(7052), - [anon_sym_GT_GT] = ACTIONS(7054), - [anon_sym_GT_GT_GT] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7052), - [anon_sym_BANG_EQ] = ACTIONS(7052), - [anon_sym_GT_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7052), - [anon_sym_DOT] = ACTIONS(7054), - [anon_sym_EQ_GT] = ACTIONS(7052), - [anon_sym_switch] = ACTIONS(7052), - [anon_sym_when] = ACTIONS(7052), - [anon_sym_DOT_DOT] = ACTIONS(7052), - [anon_sym_and] = ACTIONS(7052), - [anon_sym_or] = ACTIONS(7052), - [anon_sym_AMP_AMP] = ACTIONS(7052), - [anon_sym_PIPE_PIPE] = ACTIONS(7052), - [sym_op_coalescing] = ACTIONS(7052), - [anon_sym_into] = ACTIONS(7052), - [anon_sym_on] = ACTIONS(7052), - [anon_sym_equals] = ACTIONS(7052), - [anon_sym_by] = ACTIONS(7052), - [anon_sym_as] = ACTIONS(7052), - [anon_sym_is] = ACTIONS(7052), - [anon_sym_DASH_GT] = ACTIONS(7052), - [anon_sym_with] = ACTIONS(7052), - [aux_sym_preproc_if_token3] = ACTIONS(7052), - [aux_sym_preproc_else_token1] = ACTIONS(7052), - [aux_sym_preproc_elif_token1] = ACTIONS(7052), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7542), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(7556), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(7558), + [anon_sym_is] = ACTIONS(7560), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -628015,6 +619800,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4848] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4848), [sym_preproc_endregion] = STATE(4848), [sym_preproc_line] = STATE(4848), @@ -628024,57 +619824,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4848), [sym_preproc_define] = STATE(4848), [sym_preproc_undef] = STATE(4848), - [anon_sym_SEMI] = ACTIONS(6313), - [anon_sym_LBRACK] = ACTIONS(6313), - [anon_sym_COLON] = ACTIONS(6313), - [anon_sym_COMMA] = ACTIONS(6313), - [anon_sym_RBRACK] = ACTIONS(6313), - [anon_sym_LPAREN] = ACTIONS(6313), - [anon_sym_RPAREN] = ACTIONS(6313), - [anon_sym_RBRACE] = ACTIONS(6313), - [anon_sym_LT] = ACTIONS(6315), - [anon_sym_GT] = ACTIONS(6315), - [anon_sym_in] = ACTIONS(6315), - [anon_sym_QMARK] = ACTIONS(6315), - [anon_sym_BANG] = ACTIONS(6315), - [anon_sym_PLUS_PLUS] = ACTIONS(6313), - [anon_sym_DASH_DASH] = ACTIONS(6313), - [anon_sym_PLUS] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6315), - [anon_sym_STAR] = ACTIONS(6313), - [anon_sym_SLASH] = ACTIONS(6315), - [anon_sym_PERCENT] = ACTIONS(6313), - [anon_sym_CARET] = ACTIONS(6313), - [anon_sym_PIPE] = ACTIONS(6315), - [anon_sym_AMP] = ACTIONS(6315), - [anon_sym_LT_LT] = ACTIONS(6313), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6313), - [anon_sym_EQ_EQ] = ACTIONS(6313), - [anon_sym_BANG_EQ] = ACTIONS(6313), - [anon_sym_GT_EQ] = ACTIONS(6313), - [anon_sym_LT_EQ] = ACTIONS(6313), - [anon_sym_DOT] = ACTIONS(6315), - [anon_sym_EQ_GT] = ACTIONS(6313), - [anon_sym_switch] = ACTIONS(6313), - [anon_sym_when] = ACTIONS(6313), - [anon_sym_DOT_DOT] = ACTIONS(6313), - [anon_sym_and] = ACTIONS(6313), - [anon_sym_or] = ACTIONS(6313), - [anon_sym_AMP_AMP] = ACTIONS(6313), - [anon_sym_PIPE_PIPE] = ACTIONS(6313), - [sym_op_coalescing] = ACTIONS(6313), - [anon_sym_into] = ACTIONS(6313), - [anon_sym_on] = ACTIONS(6313), - [anon_sym_equals] = ACTIONS(6313), - [anon_sym_by] = ACTIONS(6313), - [anon_sym_as] = ACTIONS(6313), - [anon_sym_is] = ACTIONS(6313), - [anon_sym_DASH_GT] = ACTIONS(6313), - [anon_sym_with] = ACTIONS(6313), - [aux_sym_preproc_if_token3] = ACTIONS(6313), - [aux_sym_preproc_else_token1] = ACTIONS(6313), - [aux_sym_preproc_elif_token1] = ACTIONS(6313), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -628087,26 +619870,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4849] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8095), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(4849), [sym_preproc_endregion] = STATE(4849), [sym_preproc_line] = STATE(4849), @@ -628116,37 +619879,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4849), [sym_preproc_define] = STATE(4849), [sym_preproc_undef] = STATE(4849), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(5696), + [anon_sym_extern] = ACTIONS(5696), + [anon_sym_alias] = ACTIONS(5696), + [anon_sym_global] = ACTIONS(5696), + [anon_sym_unsafe] = ACTIONS(5696), + [anon_sym_static] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5698), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_ref] = ACTIONS(5696), + [anon_sym_delegate] = ACTIONS(5696), + [anon_sym_public] = ACTIONS(5696), + [anon_sym_private] = ACTIONS(5696), + [anon_sym_readonly] = ACTIONS(5696), + [anon_sym_abstract] = ACTIONS(5696), + [anon_sym_async] = ACTIONS(5696), + [anon_sym_const] = ACTIONS(5696), + [anon_sym_file] = ACTIONS(5696), + [anon_sym_fixed] = ACTIONS(5696), + [anon_sym_internal] = ACTIONS(5696), + [anon_sym_new] = ACTIONS(5696), + [anon_sym_override] = ACTIONS(5696), + [anon_sym_partial] = ACTIONS(5696), + [anon_sym_protected] = ACTIONS(5696), + [anon_sym_required] = ACTIONS(5696), + [anon_sym_sealed] = ACTIONS(5696), + [anon_sym_virtual] = ACTIONS(5696), + [anon_sym_volatile] = ACTIONS(5696), + [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(5696), + [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), + [sym_grit_metavariable] = ACTIONS(5698), + [aux_sym_preproc_if_token1] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -628159,6 +619940,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4850] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4850), [sym_preproc_endregion] = STATE(4850), [sym_preproc_line] = STATE(4850), @@ -628168,57 +619964,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4850), [sym_preproc_define] = STATE(4850), [sym_preproc_undef] = STATE(4850), - [anon_sym_SEMI] = ACTIONS(7056), - [anon_sym_LBRACK] = ACTIONS(7056), - [anon_sym_COLON] = ACTIONS(7056), - [anon_sym_COMMA] = ACTIONS(7056), - [anon_sym_RBRACK] = ACTIONS(7056), - [anon_sym_LPAREN] = ACTIONS(7056), - [anon_sym_RPAREN] = ACTIONS(7056), - [anon_sym_RBRACE] = ACTIONS(7056), - [anon_sym_LT] = ACTIONS(7058), - [anon_sym_GT] = ACTIONS(7058), - [anon_sym_in] = ACTIONS(7058), - [anon_sym_QMARK] = ACTIONS(7058), - [anon_sym_BANG] = ACTIONS(7058), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_DASH_DASH] = ACTIONS(7056), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_STAR] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7058), - [anon_sym_PERCENT] = ACTIONS(7056), - [anon_sym_CARET] = ACTIONS(7056), - [anon_sym_PIPE] = ACTIONS(7058), - [anon_sym_AMP] = ACTIONS(7058), - [anon_sym_LT_LT] = ACTIONS(7056), - [anon_sym_GT_GT] = ACTIONS(7058), - [anon_sym_GT_GT_GT] = ACTIONS(7056), - [anon_sym_EQ_EQ] = ACTIONS(7056), - [anon_sym_BANG_EQ] = ACTIONS(7056), - [anon_sym_GT_EQ] = ACTIONS(7056), - [anon_sym_LT_EQ] = ACTIONS(7056), - [anon_sym_DOT] = ACTIONS(7058), - [anon_sym_EQ_GT] = ACTIONS(7056), - [anon_sym_switch] = ACTIONS(7056), - [anon_sym_when] = ACTIONS(7056), - [anon_sym_DOT_DOT] = ACTIONS(7056), - [anon_sym_and] = ACTIONS(7056), - [anon_sym_or] = ACTIONS(7056), - [anon_sym_AMP_AMP] = ACTIONS(7056), - [anon_sym_PIPE_PIPE] = ACTIONS(7056), - [sym_op_coalescing] = ACTIONS(7056), - [anon_sym_into] = ACTIONS(7056), - [anon_sym_on] = ACTIONS(7056), - [anon_sym_equals] = ACTIONS(7056), - [anon_sym_by] = ACTIONS(7056), - [anon_sym_as] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(7056), - [anon_sym_DASH_GT] = ACTIONS(7056), - [anon_sym_with] = ACTIONS(7056), - [aux_sym_preproc_if_token3] = ACTIONS(7056), - [aux_sym_preproc_else_token1] = ACTIONS(7056), - [aux_sym_preproc_elif_token1] = ACTIONS(7056), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7558), + [anon_sym_is] = ACTIONS(7560), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -628231,6 +620010,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4851] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4851), [sym_preproc_endregion] = STATE(4851), [sym_preproc_line] = STATE(4851), @@ -628240,57 +620034,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4851), [sym_preproc_define] = STATE(4851), [sym_preproc_undef] = STATE(4851), - [anon_sym_SEMI] = ACTIONS(4206), - [anon_sym_LBRACK] = ACTIONS(4206), - [anon_sym_COLON] = ACTIONS(4206), - [anon_sym_COMMA] = ACTIONS(4206), - [anon_sym_RBRACK] = ACTIONS(4206), - [anon_sym_LPAREN] = ACTIONS(4206), - [anon_sym_RPAREN] = ACTIONS(4206), - [anon_sym_RBRACE] = ACTIONS(4206), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_in] = ACTIONS(7042), - [anon_sym_QMARK] = ACTIONS(7042), - [anon_sym_BANG] = ACTIONS(7042), - [anon_sym_PLUS_PLUS] = ACTIONS(4206), - [anon_sym_DASH_DASH] = ACTIONS(4206), - [anon_sym_PLUS] = ACTIONS(7042), - [anon_sym_DASH] = ACTIONS(7042), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(7042), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_CARET] = ACTIONS(4206), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - [anon_sym_LT_LT] = ACTIONS(4206), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_GT_GT_GT] = ACTIONS(4206), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_GT_EQ] = ACTIONS(4206), - [anon_sym_LT_EQ] = ACTIONS(4206), - [anon_sym_DOT] = ACTIONS(7042), - [anon_sym_EQ_GT] = ACTIONS(4206), - [anon_sym_switch] = ACTIONS(4206), - [anon_sym_when] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4206), - [anon_sym_and] = ACTIONS(4206), - [anon_sym_or] = ACTIONS(4206), - [anon_sym_AMP_AMP] = ACTIONS(4206), - [anon_sym_PIPE_PIPE] = ACTIONS(4206), - [sym_op_coalescing] = ACTIONS(4206), - [anon_sym_into] = ACTIONS(4206), - [anon_sym_on] = ACTIONS(4206), - [anon_sym_equals] = ACTIONS(4206), - [anon_sym_by] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_DASH_GT] = ACTIONS(4206), - [anon_sym_with] = ACTIONS(4206), - [aux_sym_preproc_if_token3] = ACTIONS(4206), - [aux_sym_preproc_else_token1] = ACTIONS(4206), - [aux_sym_preproc_elif_token1] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7558), + [anon_sym_is] = ACTIONS(7560), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -628303,6 +620080,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4852] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4852), [sym_preproc_endregion] = STATE(4852), [sym_preproc_line] = STATE(4852), @@ -628312,57 +620104,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4852), [sym_preproc_define] = STATE(4852), [sym_preproc_undef] = STATE(4852), - [anon_sym_SEMI] = ACTIONS(7060), - [anon_sym_LBRACK] = ACTIONS(7060), - [anon_sym_COLON] = ACTIONS(7060), - [anon_sym_COMMA] = ACTIONS(7060), - [anon_sym_RBRACK] = ACTIONS(7060), - [anon_sym_LPAREN] = ACTIONS(7060), - [anon_sym_RPAREN] = ACTIONS(7060), - [anon_sym_RBRACE] = ACTIONS(7060), - [anon_sym_LT] = ACTIONS(7062), - [anon_sym_GT] = ACTIONS(7062), - [anon_sym_in] = ACTIONS(7062), - [anon_sym_QMARK] = ACTIONS(7062), - [anon_sym_BANG] = ACTIONS(7062), - [anon_sym_PLUS_PLUS] = ACTIONS(7060), - [anon_sym_DASH_DASH] = ACTIONS(7060), - [anon_sym_PLUS] = ACTIONS(7062), - [anon_sym_DASH] = ACTIONS(7062), - [anon_sym_STAR] = ACTIONS(7060), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7060), - [anon_sym_CARET] = ACTIONS(7060), - [anon_sym_PIPE] = ACTIONS(7062), - [anon_sym_AMP] = ACTIONS(7062), - [anon_sym_LT_LT] = ACTIONS(7060), - [anon_sym_GT_GT] = ACTIONS(7062), - [anon_sym_GT_GT_GT] = ACTIONS(7060), - [anon_sym_EQ_EQ] = ACTIONS(7060), - [anon_sym_BANG_EQ] = ACTIONS(7060), - [anon_sym_GT_EQ] = ACTIONS(7060), - [anon_sym_LT_EQ] = ACTIONS(7060), - [anon_sym_DOT] = ACTIONS(7062), - [anon_sym_EQ_GT] = ACTIONS(7060), - [anon_sym_switch] = ACTIONS(7060), - [anon_sym_when] = ACTIONS(7060), - [anon_sym_DOT_DOT] = ACTIONS(7060), - [anon_sym_and] = ACTIONS(7060), - [anon_sym_or] = ACTIONS(7060), - [anon_sym_AMP_AMP] = ACTIONS(7060), - [anon_sym_PIPE_PIPE] = ACTIONS(7060), - [sym_op_coalescing] = ACTIONS(7060), - [anon_sym_into] = ACTIONS(7060), - [anon_sym_on] = ACTIONS(7060), - [anon_sym_equals] = ACTIONS(7060), - [anon_sym_by] = ACTIONS(7060), - [anon_sym_as] = ACTIONS(7060), - [anon_sym_is] = ACTIONS(7060), - [anon_sym_DASH_GT] = ACTIONS(7060), - [anon_sym_with] = ACTIONS(7060), - [aux_sym_preproc_if_token3] = ACTIONS(7060), - [aux_sym_preproc_else_token1] = ACTIONS(7060), - [aux_sym_preproc_elif_token1] = ACTIONS(7060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7564), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -628375,6 +620150,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4853] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4853), [sym_preproc_endregion] = STATE(4853), [sym_preproc_line] = STATE(4853), @@ -628384,57 +620174,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4853), [sym_preproc_define] = STATE(4853), [sym_preproc_undef] = STATE(4853), - [anon_sym_SEMI] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(6373), - [anon_sym_COLON] = ACTIONS(6373), - [anon_sym_COMMA] = ACTIONS(6373), - [anon_sym_RBRACK] = ACTIONS(6373), - [anon_sym_LPAREN] = ACTIONS(6373), - [anon_sym_RPAREN] = ACTIONS(6373), - [anon_sym_RBRACE] = ACTIONS(6373), - [anon_sym_LT] = ACTIONS(6375), - [anon_sym_GT] = ACTIONS(6375), - [anon_sym_in] = ACTIONS(6375), - [anon_sym_QMARK] = ACTIONS(6375), - [anon_sym_BANG] = ACTIONS(6375), - [anon_sym_PLUS_PLUS] = ACTIONS(6373), - [anon_sym_DASH_DASH] = ACTIONS(6373), - [anon_sym_PLUS] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_STAR] = ACTIONS(6373), - [anon_sym_SLASH] = ACTIONS(6375), - [anon_sym_PERCENT] = ACTIONS(6373), - [anon_sym_CARET] = ACTIONS(6373), - [anon_sym_PIPE] = ACTIONS(6375), - [anon_sym_AMP] = ACTIONS(6375), - [anon_sym_LT_LT] = ACTIONS(6373), - [anon_sym_GT_GT] = ACTIONS(6375), - [anon_sym_GT_GT_GT] = ACTIONS(6373), - [anon_sym_EQ_EQ] = ACTIONS(6373), - [anon_sym_BANG_EQ] = ACTIONS(6373), - [anon_sym_GT_EQ] = ACTIONS(6373), - [anon_sym_LT_EQ] = ACTIONS(6373), - [anon_sym_DOT] = ACTIONS(6375), - [anon_sym_EQ_GT] = ACTIONS(6373), - [anon_sym_switch] = ACTIONS(6373), - [anon_sym_when] = ACTIONS(6373), - [anon_sym_DOT_DOT] = ACTIONS(6373), - [anon_sym_and] = ACTIONS(6373), - [anon_sym_or] = ACTIONS(6373), - [anon_sym_AMP_AMP] = ACTIONS(6373), - [anon_sym_PIPE_PIPE] = ACTIONS(6373), - [sym_op_coalescing] = ACTIONS(6373), - [anon_sym_into] = ACTIONS(6373), - [anon_sym_on] = ACTIONS(6373), - [anon_sym_equals] = ACTIONS(6373), - [anon_sym_by] = ACTIONS(6373), - [anon_sym_as] = ACTIONS(6373), - [anon_sym_is] = ACTIONS(6373), - [anon_sym_DASH_GT] = ACTIONS(6373), - [anon_sym_with] = ACTIONS(6373), - [aux_sym_preproc_if_token3] = ACTIONS(6373), - [aux_sym_preproc_else_token1] = ACTIONS(6373), - [aux_sym_preproc_elif_token1] = ACTIONS(6373), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7558), + [anon_sym_is] = ACTIONS(7560), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -628447,6 +620220,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4854] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4854), [sym_preproc_endregion] = STATE(4854), [sym_preproc_line] = STATE(4854), @@ -628456,57 +620244,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4854), [sym_preproc_define] = STATE(4854), [sym_preproc_undef] = STATE(4854), - [anon_sym_SEMI] = ACTIONS(6293), - [anon_sym_LBRACK] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6293), - [anon_sym_COMMA] = ACTIONS(6293), - [anon_sym_RBRACK] = ACTIONS(6293), - [anon_sym_LPAREN] = ACTIONS(6293), - [anon_sym_RPAREN] = ACTIONS(6293), - [anon_sym_RBRACE] = ACTIONS(6293), - [anon_sym_LT] = ACTIONS(6295), - [anon_sym_GT] = ACTIONS(6295), - [anon_sym_in] = ACTIONS(6295), - [anon_sym_QMARK] = ACTIONS(6295), - [anon_sym_BANG] = ACTIONS(6295), - [anon_sym_PLUS_PLUS] = ACTIONS(6293), - [anon_sym_DASH_DASH] = ACTIONS(6293), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6293), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_PERCENT] = ACTIONS(6293), - [anon_sym_CARET] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6295), - [anon_sym_AMP] = ACTIONS(6295), - [anon_sym_LT_LT] = ACTIONS(6293), - [anon_sym_GT_GT] = ACTIONS(6295), - [anon_sym_GT_GT_GT] = ACTIONS(6293), - [anon_sym_EQ_EQ] = ACTIONS(6293), - [anon_sym_BANG_EQ] = ACTIONS(6293), - [anon_sym_GT_EQ] = ACTIONS(6293), - [anon_sym_LT_EQ] = ACTIONS(6293), - [anon_sym_DOT] = ACTIONS(6295), - [anon_sym_EQ_GT] = ACTIONS(6293), - [anon_sym_switch] = ACTIONS(6293), - [anon_sym_when] = ACTIONS(6293), - [anon_sym_DOT_DOT] = ACTIONS(6293), - [anon_sym_and] = ACTIONS(6293), - [anon_sym_or] = ACTIONS(6293), - [anon_sym_AMP_AMP] = ACTIONS(6293), - [anon_sym_PIPE_PIPE] = ACTIONS(6293), - [sym_op_coalescing] = ACTIONS(6293), - [anon_sym_into] = ACTIONS(6293), - [anon_sym_on] = ACTIONS(6293), - [anon_sym_equals] = ACTIONS(6293), - [anon_sym_by] = ACTIONS(6293), - [anon_sym_as] = ACTIONS(6293), - [anon_sym_is] = ACTIONS(6293), - [anon_sym_DASH_GT] = ACTIONS(6293), - [anon_sym_with] = ACTIONS(6293), - [aux_sym_preproc_if_token3] = ACTIONS(6293), - [aux_sym_preproc_else_token1] = ACTIONS(6293), - [aux_sym_preproc_elif_token1] = ACTIONS(6293), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7558), + [anon_sym_is] = ACTIONS(7560), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -628519,6 +620290,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4855] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4855), [sym_preproc_endregion] = STATE(4855), [sym_preproc_line] = STATE(4855), @@ -628528,57 +620314,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4855), [sym_preproc_define] = STATE(4855), [sym_preproc_undef] = STATE(4855), - [anon_sym_SEMI] = ACTIONS(6281), - [anon_sym_LBRACK] = ACTIONS(6281), - [anon_sym_COLON] = ACTIONS(6281), - [anon_sym_COMMA] = ACTIONS(6281), - [anon_sym_RBRACK] = ACTIONS(6281), - [anon_sym_LPAREN] = ACTIONS(6281), - [anon_sym_RPAREN] = ACTIONS(6281), - [anon_sym_RBRACE] = ACTIONS(6281), - [anon_sym_LT] = ACTIONS(6283), - [anon_sym_GT] = ACTIONS(6283), - [anon_sym_in] = ACTIONS(6283), - [anon_sym_QMARK] = ACTIONS(6283), - [anon_sym_BANG] = ACTIONS(6283), - [anon_sym_PLUS_PLUS] = ACTIONS(6281), - [anon_sym_DASH_DASH] = ACTIONS(6281), - [anon_sym_PLUS] = ACTIONS(6283), - [anon_sym_DASH] = ACTIONS(6283), - [anon_sym_STAR] = ACTIONS(6281), - [anon_sym_SLASH] = ACTIONS(6283), - [anon_sym_PERCENT] = ACTIONS(6281), - [anon_sym_CARET] = ACTIONS(6281), - [anon_sym_PIPE] = ACTIONS(6283), - [anon_sym_AMP] = ACTIONS(6283), - [anon_sym_LT_LT] = ACTIONS(6281), - [anon_sym_GT_GT] = ACTIONS(6283), - [anon_sym_GT_GT_GT] = ACTIONS(6281), - [anon_sym_EQ_EQ] = ACTIONS(6281), - [anon_sym_BANG_EQ] = ACTIONS(6281), - [anon_sym_GT_EQ] = ACTIONS(6281), - [anon_sym_LT_EQ] = ACTIONS(6281), - [anon_sym_DOT] = ACTIONS(6283), - [anon_sym_EQ_GT] = ACTIONS(6281), - [anon_sym_switch] = ACTIONS(6281), - [anon_sym_when] = ACTIONS(6281), - [anon_sym_DOT_DOT] = ACTIONS(6281), - [anon_sym_and] = ACTIONS(6281), - [anon_sym_or] = ACTIONS(6281), - [anon_sym_AMP_AMP] = ACTIONS(6281), - [anon_sym_PIPE_PIPE] = ACTIONS(6281), - [sym_op_coalescing] = ACTIONS(6281), - [anon_sym_into] = ACTIONS(6281), - [anon_sym_on] = ACTIONS(6281), - [anon_sym_equals] = ACTIONS(6281), - [anon_sym_by] = ACTIONS(6281), - [anon_sym_as] = ACTIONS(6281), - [anon_sym_is] = ACTIONS(6281), - [anon_sym_DASH_GT] = ACTIONS(6281), - [anon_sym_with] = ACTIONS(6281), - [aux_sym_preproc_if_token3] = ACTIONS(6281), - [aux_sym_preproc_else_token1] = ACTIONS(6281), - [aux_sym_preproc_elif_token1] = ACTIONS(6281), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7558), + [anon_sym_is] = ACTIONS(7560), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -628591,6 +620360,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4856] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4856), [sym_preproc_endregion] = STATE(4856), [sym_preproc_line] = STATE(4856), @@ -628600,57 +620384,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4856), [sym_preproc_define] = STATE(4856), [sym_preproc_undef] = STATE(4856), - [anon_sym_SEMI] = ACTIONS(7064), - [anon_sym_LBRACK] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7064), - [anon_sym_RBRACK] = ACTIONS(7064), - [anon_sym_LPAREN] = ACTIONS(7064), - [anon_sym_RPAREN] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7064), - [anon_sym_LT] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7066), - [anon_sym_in] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_BANG] = ACTIONS(7066), - [anon_sym_PLUS_PLUS] = ACTIONS(7064), - [anon_sym_DASH_DASH] = ACTIONS(7064), - [anon_sym_PLUS] = ACTIONS(7066), - [anon_sym_DASH] = ACTIONS(7066), - [anon_sym_STAR] = ACTIONS(7064), - [anon_sym_SLASH] = ACTIONS(7066), - [anon_sym_PERCENT] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7064), - [anon_sym_PIPE] = ACTIONS(7066), - [anon_sym_AMP] = ACTIONS(7066), - [anon_sym_LT_LT] = ACTIONS(7064), - [anon_sym_GT_GT] = ACTIONS(7066), - [anon_sym_GT_GT_GT] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7064), - [anon_sym_BANG_EQ] = ACTIONS(7064), - [anon_sym_GT_EQ] = ACTIONS(7064), - [anon_sym_LT_EQ] = ACTIONS(7064), - [anon_sym_DOT] = ACTIONS(7066), - [anon_sym_EQ_GT] = ACTIONS(7064), - [anon_sym_switch] = ACTIONS(7064), - [anon_sym_when] = ACTIONS(7064), - [anon_sym_DOT_DOT] = ACTIONS(7064), - [anon_sym_and] = ACTIONS(7064), - [anon_sym_or] = ACTIONS(7064), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7064), - [sym_op_coalescing] = ACTIONS(7064), - [anon_sym_into] = ACTIONS(7064), - [anon_sym_on] = ACTIONS(7064), - [anon_sym_equals] = ACTIONS(7064), - [anon_sym_by] = ACTIONS(7064), - [anon_sym_as] = ACTIONS(7064), - [anon_sym_is] = ACTIONS(7064), - [anon_sym_DASH_GT] = ACTIONS(7064), - [anon_sym_with] = ACTIONS(7064), - [aux_sym_preproc_if_token3] = ACTIONS(7064), - [aux_sym_preproc_else_token1] = ACTIONS(7064), - [aux_sym_preproc_elif_token1] = ACTIONS(7064), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -628663,6 +620430,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4857] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4857), [sym_preproc_endregion] = STATE(4857), [sym_preproc_line] = STATE(4857), @@ -628672,57 +620454,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4857), [sym_preproc_define] = STATE(4857), [sym_preproc_undef] = STATE(4857), - [anon_sym_SEMI] = ACTIONS(7064), - [anon_sym_LBRACK] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7064), - [anon_sym_RBRACK] = ACTIONS(7064), - [anon_sym_LPAREN] = ACTIONS(7064), - [anon_sym_RPAREN] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7064), - [anon_sym_LT] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7066), - [anon_sym_in] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_BANG] = ACTIONS(7066), - [anon_sym_PLUS_PLUS] = ACTIONS(7064), - [anon_sym_DASH_DASH] = ACTIONS(7064), - [anon_sym_PLUS] = ACTIONS(7066), - [anon_sym_DASH] = ACTIONS(7066), - [anon_sym_STAR] = ACTIONS(7064), - [anon_sym_SLASH] = ACTIONS(7066), - [anon_sym_PERCENT] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7064), - [anon_sym_PIPE] = ACTIONS(7066), - [anon_sym_AMP] = ACTIONS(7066), - [anon_sym_LT_LT] = ACTIONS(7064), - [anon_sym_GT_GT] = ACTIONS(7066), - [anon_sym_GT_GT_GT] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7064), - [anon_sym_BANG_EQ] = ACTIONS(7064), - [anon_sym_GT_EQ] = ACTIONS(7064), - [anon_sym_LT_EQ] = ACTIONS(7064), - [anon_sym_DOT] = ACTIONS(7066), - [anon_sym_EQ_GT] = ACTIONS(7064), - [anon_sym_switch] = ACTIONS(7064), - [anon_sym_when] = ACTIONS(7064), - [anon_sym_DOT_DOT] = ACTIONS(7064), - [anon_sym_and] = ACTIONS(7064), - [anon_sym_or] = ACTIONS(7064), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7064), - [sym_op_coalescing] = ACTIONS(7064), - [anon_sym_into] = ACTIONS(7064), - [anon_sym_on] = ACTIONS(7064), - [anon_sym_equals] = ACTIONS(7064), - [anon_sym_by] = ACTIONS(7064), - [anon_sym_as] = ACTIONS(7064), - [anon_sym_is] = ACTIONS(7064), - [anon_sym_DASH_GT] = ACTIONS(7064), - [anon_sym_with] = ACTIONS(7064), - [aux_sym_preproc_if_token3] = ACTIONS(7064), - [aux_sym_preproc_else_token1] = ACTIONS(7064), - [aux_sym_preproc_elif_token1] = ACTIONS(7064), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7566), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -628735,6 +620500,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4858] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4858), [sym_preproc_endregion] = STATE(4858), [sym_preproc_line] = STATE(4858), @@ -628744,57 +620524,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4858), [sym_preproc_define] = STATE(4858), [sym_preproc_undef] = STATE(4858), - [anon_sym_SEMI] = ACTIONS(6094), - [anon_sym_LBRACK] = ACTIONS(6094), - [anon_sym_COLON] = ACTIONS(6094), - [anon_sym_COMMA] = ACTIONS(6094), - [anon_sym_RBRACK] = ACTIONS(6094), - [anon_sym_LPAREN] = ACTIONS(6094), - [anon_sym_RPAREN] = ACTIONS(6094), - [anon_sym_RBRACE] = ACTIONS(6094), - [anon_sym_LT] = ACTIONS(6096), - [anon_sym_GT] = ACTIONS(6096), - [anon_sym_in] = ACTIONS(6096), - [anon_sym_QMARK] = ACTIONS(6096), - [anon_sym_BANG] = ACTIONS(6096), - [anon_sym_PLUS_PLUS] = ACTIONS(6094), - [anon_sym_DASH_DASH] = ACTIONS(6094), - [anon_sym_PLUS] = ACTIONS(6096), - [anon_sym_DASH] = ACTIONS(6096), - [anon_sym_STAR] = ACTIONS(6094), - [anon_sym_SLASH] = ACTIONS(6096), - [anon_sym_PERCENT] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6094), - [anon_sym_PIPE] = ACTIONS(6096), - [anon_sym_AMP] = ACTIONS(6096), - [anon_sym_LT_LT] = ACTIONS(6094), - [anon_sym_GT_GT] = ACTIONS(6096), - [anon_sym_GT_GT_GT] = ACTIONS(6094), - [anon_sym_EQ_EQ] = ACTIONS(6094), - [anon_sym_BANG_EQ] = ACTIONS(6094), - [anon_sym_GT_EQ] = ACTIONS(6094), - [anon_sym_LT_EQ] = ACTIONS(6094), - [anon_sym_DOT] = ACTIONS(6096), - [anon_sym_EQ_GT] = ACTIONS(6094), - [anon_sym_switch] = ACTIONS(6094), - [anon_sym_when] = ACTIONS(6094), - [anon_sym_DOT_DOT] = ACTIONS(6094), - [anon_sym_and] = ACTIONS(6094), - [anon_sym_or] = ACTIONS(6094), - [anon_sym_AMP_AMP] = ACTIONS(6094), - [anon_sym_PIPE_PIPE] = ACTIONS(6094), - [sym_op_coalescing] = ACTIONS(6094), - [anon_sym_into] = ACTIONS(6094), - [anon_sym_on] = ACTIONS(6094), - [anon_sym_equals] = ACTIONS(6094), - [anon_sym_by] = ACTIONS(6094), - [anon_sym_as] = ACTIONS(6094), - [anon_sym_is] = ACTIONS(6094), - [anon_sym_DASH_GT] = ACTIONS(6094), - [anon_sym_with] = ACTIONS(6094), - [aux_sym_preproc_if_token3] = ACTIONS(6094), - [aux_sym_preproc_else_token1] = ACTIONS(6094), - [aux_sym_preproc_elif_token1] = ACTIONS(6094), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(7556), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7558), + [anon_sym_is] = ACTIONS(7560), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -628807,6 +620570,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4859] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4859), [sym_preproc_endregion] = STATE(4859), [sym_preproc_line] = STATE(4859), @@ -628816,57 +620594,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4859), [sym_preproc_define] = STATE(4859), [sym_preproc_undef] = STATE(4859), - [anon_sym_SEMI] = ACTIONS(6025), - [anon_sym_LBRACK] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6025), - [anon_sym_COMMA] = ACTIONS(6025), - [anon_sym_RBRACK] = ACTIONS(6025), - [anon_sym_LPAREN] = ACTIONS(6025), - [anon_sym_RPAREN] = ACTIONS(6025), - [anon_sym_RBRACE] = ACTIONS(6025), - [anon_sym_LT] = ACTIONS(6027), - [anon_sym_GT] = ACTIONS(6027), - [anon_sym_in] = ACTIONS(6027), - [anon_sym_QMARK] = ACTIONS(6027), - [anon_sym_BANG] = ACTIONS(6027), - [anon_sym_PLUS_PLUS] = ACTIONS(6025), - [anon_sym_DASH_DASH] = ACTIONS(6025), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6025), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_PERCENT] = ACTIONS(6025), - [anon_sym_CARET] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), - [anon_sym_LT_LT] = ACTIONS(6025), - [anon_sym_GT_GT] = ACTIONS(6027), - [anon_sym_GT_GT_GT] = ACTIONS(6025), - [anon_sym_EQ_EQ] = ACTIONS(6025), - [anon_sym_BANG_EQ] = ACTIONS(6025), - [anon_sym_GT_EQ] = ACTIONS(6025), - [anon_sym_LT_EQ] = ACTIONS(6025), - [anon_sym_DOT] = ACTIONS(6027), - [anon_sym_EQ_GT] = ACTIONS(6025), - [anon_sym_switch] = ACTIONS(6025), - [anon_sym_when] = ACTIONS(6025), - [anon_sym_DOT_DOT] = ACTIONS(6025), - [anon_sym_and] = ACTIONS(6025), - [anon_sym_or] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [sym_op_coalescing] = ACTIONS(6025), - [anon_sym_into] = ACTIONS(6025), - [anon_sym_on] = ACTIONS(6025), - [anon_sym_equals] = ACTIONS(6025), - [anon_sym_by] = ACTIONS(6025), - [anon_sym_as] = ACTIONS(6025), - [anon_sym_is] = ACTIONS(6025), - [anon_sym_DASH_GT] = ACTIONS(6025), - [anon_sym_with] = ACTIONS(6025), - [aux_sym_preproc_if_token3] = ACTIONS(6025), - [aux_sym_preproc_else_token1] = ACTIONS(6025), - [aux_sym_preproc_elif_token1] = ACTIONS(6025), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -628879,6 +620640,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4860] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4860), [sym_preproc_endregion] = STATE(4860), [sym_preproc_line] = STATE(4860), @@ -628888,57 +620664,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4860), [sym_preproc_define] = STATE(4860), [sym_preproc_undef] = STATE(4860), - [anon_sym_SEMI] = ACTIONS(6156), - [anon_sym_LBRACK] = ACTIONS(6156), - [anon_sym_COLON] = ACTIONS(6156), - [anon_sym_COMMA] = ACTIONS(6156), - [anon_sym_RBRACK] = ACTIONS(6156), - [anon_sym_LPAREN] = ACTIONS(6156), - [anon_sym_RPAREN] = ACTIONS(6156), - [anon_sym_RBRACE] = ACTIONS(6156), - [anon_sym_LT] = ACTIONS(6158), - [anon_sym_GT] = ACTIONS(6158), - [anon_sym_in] = ACTIONS(6158), - [anon_sym_QMARK] = ACTIONS(6158), - [anon_sym_BANG] = ACTIONS(6158), - [anon_sym_PLUS_PLUS] = ACTIONS(6156), - [anon_sym_DASH_DASH] = ACTIONS(6156), - [anon_sym_PLUS] = ACTIONS(6158), - [anon_sym_DASH] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(6156), - [anon_sym_SLASH] = ACTIONS(6158), - [anon_sym_PERCENT] = ACTIONS(6156), - [anon_sym_CARET] = ACTIONS(6156), - [anon_sym_PIPE] = ACTIONS(6158), - [anon_sym_AMP] = ACTIONS(6158), - [anon_sym_LT_LT] = ACTIONS(6156), - [anon_sym_GT_GT] = ACTIONS(6158), - [anon_sym_GT_GT_GT] = ACTIONS(6156), - [anon_sym_EQ_EQ] = ACTIONS(6156), - [anon_sym_BANG_EQ] = ACTIONS(6156), - [anon_sym_GT_EQ] = ACTIONS(6156), - [anon_sym_LT_EQ] = ACTIONS(6156), - [anon_sym_DOT] = ACTIONS(6158), - [anon_sym_EQ_GT] = ACTIONS(6156), - [anon_sym_switch] = ACTIONS(6156), - [anon_sym_when] = ACTIONS(6156), - [anon_sym_DOT_DOT] = ACTIONS(6156), - [anon_sym_and] = ACTIONS(6156), - [anon_sym_or] = ACTIONS(6156), - [anon_sym_AMP_AMP] = ACTIONS(6156), - [anon_sym_PIPE_PIPE] = ACTIONS(6156), - [sym_op_coalescing] = ACTIONS(6156), - [anon_sym_into] = ACTIONS(6156), - [anon_sym_on] = ACTIONS(6156), - [anon_sym_equals] = ACTIONS(6156), - [anon_sym_by] = ACTIONS(6156), - [anon_sym_as] = ACTIONS(6156), - [anon_sym_is] = ACTIONS(6156), - [anon_sym_DASH_GT] = ACTIONS(6156), - [anon_sym_with] = ACTIONS(6156), - [aux_sym_preproc_if_token3] = ACTIONS(6156), - [aux_sym_preproc_else_token1] = ACTIONS(6156), - [aux_sym_preproc_elif_token1] = ACTIONS(6156), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -628951,6 +620710,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4861] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4861), [sym_preproc_endregion] = STATE(4861), [sym_preproc_line] = STATE(4861), @@ -628960,57 +620734,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4861), [sym_preproc_define] = STATE(4861), [sym_preproc_undef] = STATE(4861), - [anon_sym_SEMI] = ACTIONS(6217), - [anon_sym_LBRACK] = ACTIONS(6217), - [anon_sym_COLON] = ACTIONS(6217), - [anon_sym_COMMA] = ACTIONS(6217), - [anon_sym_RBRACK] = ACTIONS(6217), - [anon_sym_LPAREN] = ACTIONS(6217), - [anon_sym_RPAREN] = ACTIONS(6217), - [anon_sym_RBRACE] = ACTIONS(6217), - [anon_sym_LT] = ACTIONS(6219), - [anon_sym_GT] = ACTIONS(6219), - [anon_sym_in] = ACTIONS(6219), - [anon_sym_QMARK] = ACTIONS(6219), - [anon_sym_BANG] = ACTIONS(6219), - [anon_sym_PLUS_PLUS] = ACTIONS(6217), - [anon_sym_DASH_DASH] = ACTIONS(6217), - [anon_sym_PLUS] = ACTIONS(6219), - [anon_sym_DASH] = ACTIONS(6219), - [anon_sym_STAR] = ACTIONS(6217), - [anon_sym_SLASH] = ACTIONS(6219), - [anon_sym_PERCENT] = ACTIONS(6217), - [anon_sym_CARET] = ACTIONS(6217), - [anon_sym_PIPE] = ACTIONS(6219), - [anon_sym_AMP] = ACTIONS(6219), - [anon_sym_LT_LT] = ACTIONS(6217), - [anon_sym_GT_GT] = ACTIONS(6219), - [anon_sym_GT_GT_GT] = ACTIONS(6217), - [anon_sym_EQ_EQ] = ACTIONS(6217), - [anon_sym_BANG_EQ] = ACTIONS(6217), - [anon_sym_GT_EQ] = ACTIONS(6217), - [anon_sym_LT_EQ] = ACTIONS(6217), - [anon_sym_DOT] = ACTIONS(6219), - [anon_sym_EQ_GT] = ACTIONS(6217), - [anon_sym_switch] = ACTIONS(6217), - [anon_sym_when] = ACTIONS(6217), - [anon_sym_DOT_DOT] = ACTIONS(6217), - [anon_sym_and] = ACTIONS(6217), - [anon_sym_or] = ACTIONS(6217), - [anon_sym_AMP_AMP] = ACTIONS(6217), - [anon_sym_PIPE_PIPE] = ACTIONS(6217), - [sym_op_coalescing] = ACTIONS(6217), - [anon_sym_into] = ACTIONS(6217), - [anon_sym_on] = ACTIONS(6217), - [anon_sym_equals] = ACTIONS(6217), - [anon_sym_by] = ACTIONS(6217), - [anon_sym_as] = ACTIONS(6217), - [anon_sym_is] = ACTIONS(6217), - [anon_sym_DASH_GT] = ACTIONS(6217), - [anon_sym_with] = ACTIONS(6217), - [aux_sym_preproc_if_token3] = ACTIONS(6217), - [aux_sym_preproc_else_token1] = ACTIONS(6217), - [aux_sym_preproc_elif_token1] = ACTIONS(6217), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7558), + [anon_sym_is] = ACTIONS(7560), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -629023,6 +620780,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4862] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4862), [sym_preproc_endregion] = STATE(4862), [sym_preproc_line] = STATE(4862), @@ -629032,57 +620804,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4862), [sym_preproc_define] = STATE(4862), [sym_preproc_undef] = STATE(4862), - [anon_sym_SEMI] = ACTIONS(6263), - [anon_sym_LBRACK] = ACTIONS(6263), - [anon_sym_COLON] = ACTIONS(6263), - [anon_sym_COMMA] = ACTIONS(6263), - [anon_sym_RBRACK] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6263), - [anon_sym_RPAREN] = ACTIONS(6263), - [anon_sym_RBRACE] = ACTIONS(6263), - [anon_sym_LT] = ACTIONS(6265), - [anon_sym_GT] = ACTIONS(6265), - [anon_sym_in] = ACTIONS(6265), - [anon_sym_QMARK] = ACTIONS(6265), - [anon_sym_BANG] = ACTIONS(6265), - [anon_sym_PLUS_PLUS] = ACTIONS(6263), - [anon_sym_DASH_DASH] = ACTIONS(6263), - [anon_sym_PLUS] = ACTIONS(6265), - [anon_sym_DASH] = ACTIONS(6265), - [anon_sym_STAR] = ACTIONS(6263), - [anon_sym_SLASH] = ACTIONS(6265), - [anon_sym_PERCENT] = ACTIONS(6263), - [anon_sym_CARET] = ACTIONS(6263), - [anon_sym_PIPE] = ACTIONS(6265), - [anon_sym_AMP] = ACTIONS(6265), - [anon_sym_LT_LT] = ACTIONS(6263), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6263), - [anon_sym_EQ_EQ] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6263), - [anon_sym_LT_EQ] = ACTIONS(6263), - [anon_sym_DOT] = ACTIONS(6265), - [anon_sym_EQ_GT] = ACTIONS(6263), - [anon_sym_switch] = ACTIONS(6263), - [anon_sym_when] = ACTIONS(6263), - [anon_sym_DOT_DOT] = ACTIONS(6263), - [anon_sym_and] = ACTIONS(6263), - [anon_sym_or] = ACTIONS(6263), - [anon_sym_AMP_AMP] = ACTIONS(6263), - [anon_sym_PIPE_PIPE] = ACTIONS(6263), - [sym_op_coalescing] = ACTIONS(6263), - [anon_sym_into] = ACTIONS(6263), - [anon_sym_on] = ACTIONS(6263), - [anon_sym_equals] = ACTIONS(6263), - [anon_sym_by] = ACTIONS(6263), - [anon_sym_as] = ACTIONS(6263), - [anon_sym_is] = ACTIONS(6263), - [anon_sym_DASH_GT] = ACTIONS(6263), - [anon_sym_with] = ACTIONS(6263), - [aux_sym_preproc_if_token3] = ACTIONS(6263), - [aux_sym_preproc_else_token1] = ACTIONS(6263), - [aux_sym_preproc_elif_token1] = ACTIONS(6263), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -629095,6 +620850,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4863] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4863), [sym_preproc_endregion] = STATE(4863), [sym_preproc_line] = STATE(4863), @@ -629104,57 +620874,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4863), [sym_preproc_define] = STATE(4863), [sym_preproc_undef] = STATE(4863), - [anon_sym_SEMI] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6361), - [anon_sym_COLON] = ACTIONS(6361), - [anon_sym_COMMA] = ACTIONS(6361), - [anon_sym_RBRACK] = ACTIONS(6361), - [anon_sym_LPAREN] = ACTIONS(6361), - [anon_sym_RPAREN] = ACTIONS(6361), - [anon_sym_RBRACE] = ACTIONS(6361), - [anon_sym_LT] = ACTIONS(6363), - [anon_sym_GT] = ACTIONS(6363), - [anon_sym_in] = ACTIONS(6363), - [anon_sym_QMARK] = ACTIONS(6363), - [anon_sym_BANG] = ACTIONS(6363), - [anon_sym_PLUS_PLUS] = ACTIONS(6361), - [anon_sym_DASH_DASH] = ACTIONS(6361), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6361), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_PERCENT] = ACTIONS(6361), - [anon_sym_CARET] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6363), - [anon_sym_AMP] = ACTIONS(6363), - [anon_sym_LT_LT] = ACTIONS(6361), - [anon_sym_GT_GT] = ACTIONS(6363), - [anon_sym_GT_GT_GT] = ACTIONS(6361), - [anon_sym_EQ_EQ] = ACTIONS(6361), - [anon_sym_BANG_EQ] = ACTIONS(6361), - [anon_sym_GT_EQ] = ACTIONS(6361), - [anon_sym_LT_EQ] = ACTIONS(6361), - [anon_sym_DOT] = ACTIONS(6363), - [anon_sym_EQ_GT] = ACTIONS(6361), - [anon_sym_switch] = ACTIONS(6361), - [anon_sym_when] = ACTIONS(6361), - [anon_sym_DOT_DOT] = ACTIONS(6361), - [anon_sym_and] = ACTIONS(6361), - [anon_sym_or] = ACTIONS(6361), - [anon_sym_AMP_AMP] = ACTIONS(6361), - [anon_sym_PIPE_PIPE] = ACTIONS(6361), - [sym_op_coalescing] = ACTIONS(6361), - [anon_sym_into] = ACTIONS(6361), - [anon_sym_on] = ACTIONS(6361), - [anon_sym_equals] = ACTIONS(6361), - [anon_sym_by] = ACTIONS(6361), - [anon_sym_as] = ACTIONS(6361), - [anon_sym_is] = ACTIONS(6361), - [anon_sym_DASH_GT] = ACTIONS(6361), - [anon_sym_with] = ACTIONS(6361), - [aux_sym_preproc_if_token3] = ACTIONS(6361), - [aux_sym_preproc_else_token1] = ACTIONS(6361), - [aux_sym_preproc_elif_token1] = ACTIONS(6361), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7568), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -629167,6 +620920,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4864] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4864), [sym_preproc_endregion] = STATE(4864), [sym_preproc_line] = STATE(4864), @@ -629176,57 +620944,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4864), [sym_preproc_define] = STATE(4864), [sym_preproc_undef] = STATE(4864), - [anon_sym_SEMI] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(6369), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_COMMA] = ACTIONS(6369), - [anon_sym_RBRACK] = ACTIONS(6369), - [anon_sym_LPAREN] = ACTIONS(6369), - [anon_sym_RPAREN] = ACTIONS(6369), - [anon_sym_RBRACE] = ACTIONS(6369), - [anon_sym_LT] = ACTIONS(6371), - [anon_sym_GT] = ACTIONS(6371), - [anon_sym_in] = ACTIONS(6371), - [anon_sym_QMARK] = ACTIONS(6371), - [anon_sym_BANG] = ACTIONS(6371), - [anon_sym_PLUS_PLUS] = ACTIONS(6369), - [anon_sym_DASH_DASH] = ACTIONS(6369), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6369), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_PERCENT] = ACTIONS(6369), - [anon_sym_CARET] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6371), - [anon_sym_AMP] = ACTIONS(6371), - [anon_sym_LT_LT] = ACTIONS(6369), - [anon_sym_GT_GT] = ACTIONS(6371), - [anon_sym_GT_GT_GT] = ACTIONS(6369), - [anon_sym_EQ_EQ] = ACTIONS(6369), - [anon_sym_BANG_EQ] = ACTIONS(6369), - [anon_sym_GT_EQ] = ACTIONS(6369), - [anon_sym_LT_EQ] = ACTIONS(6369), - [anon_sym_DOT] = ACTIONS(6371), - [anon_sym_EQ_GT] = ACTIONS(6369), - [anon_sym_switch] = ACTIONS(6369), - [anon_sym_when] = ACTIONS(6369), - [anon_sym_DOT_DOT] = ACTIONS(6369), - [anon_sym_and] = ACTIONS(6369), - [anon_sym_or] = ACTIONS(6369), - [anon_sym_AMP_AMP] = ACTIONS(6369), - [anon_sym_PIPE_PIPE] = ACTIONS(6369), - [sym_op_coalescing] = ACTIONS(6369), - [anon_sym_into] = ACTIONS(6369), - [anon_sym_on] = ACTIONS(6369), - [anon_sym_equals] = ACTIONS(6369), - [anon_sym_by] = ACTIONS(6369), - [anon_sym_as] = ACTIONS(6369), - [anon_sym_is] = ACTIONS(6369), - [anon_sym_DASH_GT] = ACTIONS(6369), - [anon_sym_with] = ACTIONS(6369), - [aux_sym_preproc_if_token3] = ACTIONS(6369), - [aux_sym_preproc_else_token1] = ACTIONS(6369), - [aux_sym_preproc_elif_token1] = ACTIONS(6369), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7570), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -629239,26 +620990,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4865] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7832), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7291), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4865), [sym_preproc_endregion] = STATE(4865), [sym_preproc_line] = STATE(4865), @@ -629268,22 +621017,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4865), [sym_preproc_define] = STATE(4865), [sym_preproc_undef] = STATE(4865), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), + [aux_sym_type_argument_list_repeat1] = STATE(7293), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(5678), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), + [anon_sym_GT] = ACTIONS(7572), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -629298,7 +621047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -629311,6 +621060,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4866] = { + [sym_argument_list] = STATE(3118), + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3051), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(4582), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(4866), [sym_preproc_endregion] = STATE(4866), [sym_preproc_line] = STATE(4866), @@ -629320,57 +621088,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4866), [sym_preproc_define] = STATE(4866), [sym_preproc_undef] = STATE(4866), - [anon_sym_EQ] = ACTIONS(7068), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(5684), - [anon_sym_RBRACE] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7070), - [anon_sym_DASH_EQ] = ACTIONS(7070), - [anon_sym_STAR_EQ] = ACTIONS(7070), - [anon_sym_SLASH_EQ] = ACTIONS(7070), - [anon_sym_PERCENT_EQ] = ACTIONS(7070), - [anon_sym_AMP_EQ] = ACTIONS(7070), - [anon_sym_CARET_EQ] = ACTIONS(7070), - [anon_sym_PIPE_EQ] = ACTIONS(7070), - [anon_sym_LT_LT_EQ] = ACTIONS(7070), - [anon_sym_GT_GT_EQ] = ACTIONS(7070), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7070), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7070), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(7384), + [anon_sym_LPAREN] = ACTIONS(7386), + [anon_sym_ref] = ACTIONS(4602), + [anon_sym_LBRACE] = ACTIONS(7388), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7574), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -629383,6 +621130,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4867] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4867), [sym_preproc_endregion] = STATE(4867), [sym_preproc_line] = STATE(4867), @@ -629392,57 +621154,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4867), [sym_preproc_define] = STATE(4867), [sym_preproc_undef] = STATE(4867), - [anon_sym_SEMI] = ACTIONS(4440), - [anon_sym_LBRACK] = ACTIONS(4440), - [anon_sym_COLON] = ACTIONS(4440), - [anon_sym_COMMA] = ACTIONS(4440), - [anon_sym_RBRACK] = ACTIONS(4440), - [anon_sym_LPAREN] = ACTIONS(4440), - [anon_sym_RPAREN] = ACTIONS(4440), - [anon_sym_LBRACE] = ACTIONS(4440), - [anon_sym_RBRACE] = ACTIONS(4440), - [anon_sym_LT] = ACTIONS(4438), - [anon_sym_GT] = ACTIONS(4438), - [anon_sym_in] = ACTIONS(4440), - [anon_sym_QMARK] = ACTIONS(4438), - [anon_sym_BANG] = ACTIONS(4438), - [anon_sym_PLUS_PLUS] = ACTIONS(4440), - [anon_sym_DASH_DASH] = ACTIONS(4440), - [anon_sym_PLUS] = ACTIONS(4438), - [anon_sym_DASH] = ACTIONS(4438), - [anon_sym_STAR] = ACTIONS(4440), - [anon_sym_SLASH] = ACTIONS(4438), - [anon_sym_PERCENT] = ACTIONS(4440), - [anon_sym_CARET] = ACTIONS(4440), - [anon_sym_PIPE] = ACTIONS(4438), - [anon_sym_AMP] = ACTIONS(4438), - [anon_sym_LT_LT] = ACTIONS(4440), - [anon_sym_GT_GT] = ACTIONS(4438), - [anon_sym_GT_GT_GT] = ACTIONS(4440), - [anon_sym_EQ_EQ] = ACTIONS(4440), - [anon_sym_BANG_EQ] = ACTIONS(4440), - [anon_sym_GT_EQ] = ACTIONS(4440), - [anon_sym_LT_EQ] = ACTIONS(4440), - [anon_sym_DOT] = ACTIONS(4438), - [anon_sym_EQ_GT] = ACTIONS(4440), - [anon_sym_switch] = ACTIONS(4440), - [anon_sym_when] = ACTIONS(4440), - [anon_sym_DOT_DOT] = ACTIONS(4440), - [anon_sym_and] = ACTIONS(4440), - [anon_sym_or] = ACTIONS(4440), - [anon_sym_AMP_AMP] = ACTIONS(4440), - [anon_sym_PIPE_PIPE] = ACTIONS(4440), - [sym_op_coalescing] = ACTIONS(4440), - [anon_sym_on] = ACTIONS(4440), - [anon_sym_equals] = ACTIONS(4440), - [anon_sym_by] = ACTIONS(4440), - [anon_sym_as] = ACTIONS(4440), - [anon_sym_is] = ACTIONS(4440), - [anon_sym_DASH_GT] = ACTIONS(4440), - [anon_sym_with] = ACTIONS(4440), - [aux_sym_preproc_if_token3] = ACTIONS(4440), - [aux_sym_preproc_else_token1] = ACTIONS(4440), - [aux_sym_preproc_elif_token1] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7576), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -629455,6 +621200,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4868] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4868), [sym_preproc_endregion] = STATE(4868), [sym_preproc_line] = STATE(4868), @@ -629464,57 +621224,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4868), [sym_preproc_define] = STATE(4868), [sym_preproc_undef] = STATE(4868), - [anon_sym_SEMI] = ACTIONS(6114), - [anon_sym_LBRACK] = ACTIONS(6114), - [anon_sym_COLON] = ACTIONS(6114), - [anon_sym_COMMA] = ACTIONS(6114), - [anon_sym_RBRACK] = ACTIONS(6114), - [anon_sym_LPAREN] = ACTIONS(6114), - [anon_sym_RPAREN] = ACTIONS(6114), - [anon_sym_RBRACE] = ACTIONS(6114), - [anon_sym_LT] = ACTIONS(6116), - [anon_sym_GT] = ACTIONS(6116), - [anon_sym_in] = ACTIONS(6116), - [anon_sym_QMARK] = ACTIONS(6116), - [anon_sym_BANG] = ACTIONS(6116), - [anon_sym_PLUS_PLUS] = ACTIONS(6114), - [anon_sym_DASH_DASH] = ACTIONS(6114), - [anon_sym_PLUS] = ACTIONS(6116), - [anon_sym_DASH] = ACTIONS(6116), - [anon_sym_STAR] = ACTIONS(6114), - [anon_sym_SLASH] = ACTIONS(6116), - [anon_sym_PERCENT] = ACTIONS(6114), - [anon_sym_CARET] = ACTIONS(6114), - [anon_sym_PIPE] = ACTIONS(6116), - [anon_sym_AMP] = ACTIONS(6116), - [anon_sym_LT_LT] = ACTIONS(6114), - [anon_sym_GT_GT] = ACTIONS(6116), - [anon_sym_GT_GT_GT] = ACTIONS(6114), - [anon_sym_EQ_EQ] = ACTIONS(6114), - [anon_sym_BANG_EQ] = ACTIONS(6114), - [anon_sym_GT_EQ] = ACTIONS(6114), - [anon_sym_LT_EQ] = ACTIONS(6114), - [anon_sym_DOT] = ACTIONS(6116), - [anon_sym_EQ_GT] = ACTIONS(6114), - [anon_sym_switch] = ACTIONS(6114), - [anon_sym_when] = ACTIONS(6114), - [anon_sym_DOT_DOT] = ACTIONS(6114), - [anon_sym_and] = ACTIONS(6114), - [anon_sym_or] = ACTIONS(6114), - [anon_sym_AMP_AMP] = ACTIONS(6114), - [anon_sym_PIPE_PIPE] = ACTIONS(6114), - [sym_op_coalescing] = ACTIONS(6114), - [anon_sym_into] = ACTIONS(6114), - [anon_sym_on] = ACTIONS(6114), - [anon_sym_equals] = ACTIONS(6114), - [anon_sym_by] = ACTIONS(6114), - [anon_sym_as] = ACTIONS(6114), - [anon_sym_is] = ACTIONS(6114), - [anon_sym_DASH_GT] = ACTIONS(6114), - [anon_sym_with] = ACTIONS(6114), - [aux_sym_preproc_if_token3] = ACTIONS(6114), - [aux_sym_preproc_else_token1] = ACTIONS(6114), - [aux_sym_preproc_elif_token1] = ACTIONS(6114), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7578), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -629527,6 +621270,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4869] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4869), [sym_preproc_endregion] = STATE(4869), [sym_preproc_line] = STATE(4869), @@ -629536,57 +621294,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4869), [sym_preproc_define] = STATE(4869), [sym_preproc_undef] = STATE(4869), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(7072), - [anon_sym_COLON] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(7072), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(7075), - [anon_sym_GT] = ACTIONS(7075), - [anon_sym_in] = ACTIONS(4978), - [anon_sym_QMARK] = ACTIONS(7075), - [anon_sym_BANG] = ACTIONS(7075), - [anon_sym_PLUS_PLUS] = ACTIONS(7072), - [anon_sym_DASH_DASH] = ACTIONS(7072), - [anon_sym_PLUS] = ACTIONS(7075), - [anon_sym_DASH] = ACTIONS(7075), - [anon_sym_STAR] = ACTIONS(7072), - [anon_sym_SLASH] = ACTIONS(7075), - [anon_sym_PERCENT] = ACTIONS(7072), - [anon_sym_CARET] = ACTIONS(7072), - [anon_sym_PIPE] = ACTIONS(7075), - [anon_sym_AMP] = ACTIONS(7075), - [anon_sym_LT_LT] = ACTIONS(7072), - [anon_sym_GT_GT] = ACTIONS(7075), - [anon_sym_GT_GT_GT] = ACTIONS(7072), - [anon_sym_EQ_EQ] = ACTIONS(7072), - [anon_sym_BANG_EQ] = ACTIONS(7072), - [anon_sym_GT_EQ] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7072), - [anon_sym_DOT] = ACTIONS(7075), - [anon_sym_EQ_GT] = ACTIONS(4970), - [anon_sym_switch] = ACTIONS(7072), - [anon_sym_when] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(7072), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(7072), - [anon_sym_PIPE_PIPE] = ACTIONS(7072), - [sym_op_coalescing] = ACTIONS(7072), - [anon_sym_into] = ACTIONS(4970), - [anon_sym_on] = ACTIONS(4970), - [anon_sym_equals] = ACTIONS(4970), - [anon_sym_by] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(7072), - [anon_sym_is] = ACTIONS(7072), - [anon_sym_DASH_GT] = ACTIONS(7072), - [anon_sym_with] = ACTIONS(7072), - [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(7580), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -629599,6 +621340,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4870] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4870), [sym_preproc_endregion] = STATE(4870), [sym_preproc_line] = STATE(4870), @@ -629608,57 +621364,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4870), [sym_preproc_define] = STATE(4870), [sym_preproc_undef] = STATE(4870), - [anon_sym_SEMI] = ACTIONS(6059), - [anon_sym_LBRACK] = ACTIONS(6059), - [anon_sym_COLON] = ACTIONS(6059), - [anon_sym_COMMA] = ACTIONS(6059), - [anon_sym_RBRACK] = ACTIONS(6059), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_RBRACE] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_in] = ACTIONS(6061), - [anon_sym_QMARK] = ACTIONS(6061), - [anon_sym_BANG] = ACTIONS(6061), - [anon_sym_PLUS_PLUS] = ACTIONS(6059), - [anon_sym_DASH_DASH] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6061), - [anon_sym_DASH] = ACTIONS(6061), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6061), - [anon_sym_PERCENT] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - [anon_sym_LT_LT] = ACTIONS(6059), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_GT_GT_GT] = ACTIONS(6059), - [anon_sym_EQ_EQ] = ACTIONS(6059), - [anon_sym_BANG_EQ] = ACTIONS(6059), - [anon_sym_GT_EQ] = ACTIONS(6059), - [anon_sym_LT_EQ] = ACTIONS(6059), - [anon_sym_DOT] = ACTIONS(6061), - [anon_sym_EQ_GT] = ACTIONS(6059), - [anon_sym_switch] = ACTIONS(6059), - [anon_sym_when] = ACTIONS(6059), - [anon_sym_DOT_DOT] = ACTIONS(6059), - [anon_sym_and] = ACTIONS(6059), - [anon_sym_or] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [sym_op_coalescing] = ACTIONS(6059), - [anon_sym_into] = ACTIONS(6059), - [anon_sym_on] = ACTIONS(6059), - [anon_sym_equals] = ACTIONS(6059), - [anon_sym_by] = ACTIONS(6059), - [anon_sym_as] = ACTIONS(6059), - [anon_sym_is] = ACTIONS(6059), - [anon_sym_DASH_GT] = ACTIONS(6059), - [anon_sym_with] = ACTIONS(6059), - [aux_sym_preproc_if_token3] = ACTIONS(6059), - [aux_sym_preproc_else_token1] = ACTIONS(6059), - [aux_sym_preproc_elif_token1] = ACTIONS(6059), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7582), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -629671,26 +621410,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4871] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7752), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(3118), + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3051), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(4582), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(4871), [sym_preproc_endregion] = STATE(4871), [sym_preproc_line] = STATE(4871), @@ -629700,37 +621438,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4871), [sym_preproc_define] = STATE(4871), [sym_preproc_undef] = STATE(4871), - [aux_sym_function_pointer_type_repeat1] = STATE(4826), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(7384), + [anon_sym_LPAREN] = ACTIONS(7386), + [anon_sym_ref] = ACTIONS(4596), + [anon_sym_LBRACE] = ACTIONS(7388), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7584), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -629743,6 +621480,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4872] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4872), [sym_preproc_endregion] = STATE(4872), [sym_preproc_line] = STATE(4872), @@ -629752,57 +621504,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4872), [sym_preproc_define] = STATE(4872), [sym_preproc_undef] = STATE(4872), - [anon_sym_SEMI] = ACTIONS(4748), - [anon_sym_LBRACK] = ACTIONS(4748), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_RBRACK] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4748), - [anon_sym_RPAREN] = ACTIONS(4748), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4750), - [anon_sym_GT] = ACTIONS(4750), - [anon_sym_in] = ACTIONS(4750), - [anon_sym_QMARK] = ACTIONS(4750), - [anon_sym_BANG] = ACTIONS(4750), - [anon_sym_PLUS_PLUS] = ACTIONS(4748), - [anon_sym_DASH_DASH] = ACTIONS(4748), - [anon_sym_PLUS] = ACTIONS(4750), - [anon_sym_DASH] = ACTIONS(4750), - [anon_sym_STAR] = ACTIONS(4748), - [anon_sym_SLASH] = ACTIONS(4750), - [anon_sym_PERCENT] = ACTIONS(4748), - [anon_sym_CARET] = ACTIONS(4748), - [anon_sym_PIPE] = ACTIONS(4750), - [anon_sym_AMP] = ACTIONS(4750), - [anon_sym_LT_LT] = ACTIONS(4748), - [anon_sym_GT_GT] = ACTIONS(4750), - [anon_sym_GT_GT_GT] = ACTIONS(4748), - [anon_sym_EQ_EQ] = ACTIONS(4748), - [anon_sym_BANG_EQ] = ACTIONS(4748), - [anon_sym_GT_EQ] = ACTIONS(4748), - [anon_sym_LT_EQ] = ACTIONS(4748), - [anon_sym_DOT] = ACTIONS(4750), - [anon_sym_EQ_GT] = ACTIONS(4748), - [anon_sym_switch] = ACTIONS(4748), - [anon_sym_when] = ACTIONS(4748), - [anon_sym_DOT_DOT] = ACTIONS(4748), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4748), - [anon_sym_PIPE_PIPE] = ACTIONS(4748), - [sym_op_coalescing] = ACTIONS(4748), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_on] = ACTIONS(4748), - [anon_sym_equals] = ACTIONS(4748), - [anon_sym_by] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4748), - [anon_sym_is] = ACTIONS(4748), - [anon_sym_DASH_GT] = ACTIONS(4748), - [anon_sym_with] = ACTIONS(4748), - [aux_sym_preproc_if_token3] = ACTIONS(4748), - [aux_sym_preproc_else_token1] = ACTIONS(4748), - [aux_sym_preproc_elif_token1] = ACTIONS(4748), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7586), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -629815,6 +621550,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4873] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4873), [sym_preproc_endregion] = STATE(4873), [sym_preproc_line] = STATE(4873), @@ -629824,57 +621574,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4873), [sym_preproc_define] = STATE(4873), [sym_preproc_undef] = STATE(4873), - [anon_sym_SEMI] = ACTIONS(6347), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_COLON] = ACTIONS(6347), - [anon_sym_COMMA] = ACTIONS(6347), - [anon_sym_RBRACK] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_RBRACE] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_in] = ACTIONS(6349), - [anon_sym_QMARK] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PLUS_PLUS] = ACTIONS(6347), - [anon_sym_DASH_DASH] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6349), - [anon_sym_DASH] = ACTIONS(6349), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6349), - [anon_sym_PERCENT] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_AMP] = ACTIONS(6349), - [anon_sym_LT_LT] = ACTIONS(6347), - [anon_sym_GT_GT] = ACTIONS(6349), - [anon_sym_GT_GT_GT] = ACTIONS(6347), - [anon_sym_EQ_EQ] = ACTIONS(6347), - [anon_sym_BANG_EQ] = ACTIONS(6347), - [anon_sym_GT_EQ] = ACTIONS(6347), - [anon_sym_LT_EQ] = ACTIONS(6347), - [anon_sym_DOT] = ACTIONS(6349), - [anon_sym_EQ_GT] = ACTIONS(6347), - [anon_sym_switch] = ACTIONS(6347), - [anon_sym_when] = ACTIONS(6347), - [anon_sym_DOT_DOT] = ACTIONS(6347), - [anon_sym_and] = ACTIONS(6347), - [anon_sym_or] = ACTIONS(6347), - [anon_sym_AMP_AMP] = ACTIONS(6347), - [anon_sym_PIPE_PIPE] = ACTIONS(6347), - [sym_op_coalescing] = ACTIONS(6347), - [anon_sym_into] = ACTIONS(6347), - [anon_sym_on] = ACTIONS(6347), - [anon_sym_equals] = ACTIONS(6347), - [anon_sym_by] = ACTIONS(6347), - [anon_sym_as] = ACTIONS(6347), - [anon_sym_is] = ACTIONS(6347), - [anon_sym_DASH_GT] = ACTIONS(6347), - [anon_sym_with] = ACTIONS(6347), - [aux_sym_preproc_if_token3] = ACTIONS(6347), - [aux_sym_preproc_else_token1] = ACTIONS(6347), - [aux_sym_preproc_elif_token1] = ACTIONS(6347), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7588), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -629896,57 +621629,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4874), [sym_preproc_define] = STATE(4874), [sym_preproc_undef] = STATE(4874), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(7078), - [anon_sym_COLON] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(7078), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7081), - [anon_sym_in] = ACTIONS(4978), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_BANG] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7078), - [anon_sym_DASH_DASH] = ACTIONS(7078), - [anon_sym_PLUS] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7081), - [anon_sym_STAR] = ACTIONS(7078), - [anon_sym_SLASH] = ACTIONS(7081), - [anon_sym_PERCENT] = ACTIONS(7078), - [anon_sym_CARET] = ACTIONS(7078), - [anon_sym_PIPE] = ACTIONS(7081), - [anon_sym_AMP] = ACTIONS(7081), - [anon_sym_LT_LT] = ACTIONS(7078), - [anon_sym_GT_GT] = ACTIONS(7081), - [anon_sym_GT_GT_GT] = ACTIONS(7078), - [anon_sym_EQ_EQ] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7078), - [anon_sym_LT_EQ] = ACTIONS(7078), - [anon_sym_DOT] = ACTIONS(7081), - [anon_sym_EQ_GT] = ACTIONS(4970), - [anon_sym_switch] = ACTIONS(7078), - [anon_sym_when] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(7078), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(7078), - [anon_sym_PIPE_PIPE] = ACTIONS(7078), - [sym_op_coalescing] = ACTIONS(7078), - [anon_sym_into] = ACTIONS(4970), - [anon_sym_on] = ACTIONS(4970), - [anon_sym_equals] = ACTIONS(4970), - [anon_sym_by] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(7078), - [anon_sym_is] = ACTIONS(7078), - [anon_sym_DASH_GT] = ACTIONS(7078), - [anon_sym_with] = ACTIONS(7078), - [aux_sym_preproc_if_token3] = ACTIONS(4970), - [aux_sym_preproc_else_token1] = ACTIONS(4970), - [aux_sym_preproc_elif_token1] = ACTIONS(4970), + [sym__identifier_token] = ACTIONS(5668), + [anon_sym_extern] = ACTIONS(5668), + [anon_sym_alias] = ACTIONS(5668), + [anon_sym_global] = ACTIONS(5668), + [anon_sym_unsafe] = ACTIONS(5668), + [anon_sym_static] = ACTIONS(5668), + [anon_sym_LBRACK] = ACTIONS(5670), + [anon_sym_LPAREN] = ACTIONS(5670), + [anon_sym_ref] = ACTIONS(5668), + [anon_sym_delegate] = ACTIONS(5668), + [anon_sym_public] = ACTIONS(5668), + [anon_sym_private] = ACTIONS(5668), + [anon_sym_readonly] = ACTIONS(5668), + [anon_sym_abstract] = ACTIONS(5668), + [anon_sym_async] = ACTIONS(5668), + [anon_sym_const] = ACTIONS(5668), + [anon_sym_file] = ACTIONS(5668), + [anon_sym_fixed] = ACTIONS(5668), + [anon_sym_internal] = ACTIONS(5668), + [anon_sym_new] = ACTIONS(5668), + [anon_sym_override] = ACTIONS(5668), + [anon_sym_partial] = ACTIONS(5668), + [anon_sym_protected] = ACTIONS(5668), + [anon_sym_required] = ACTIONS(5668), + [anon_sym_sealed] = ACTIONS(5668), + [anon_sym_virtual] = ACTIONS(5668), + [anon_sym_volatile] = ACTIONS(5668), + [anon_sym_where] = ACTIONS(5668), + [anon_sym_notnull] = ACTIONS(5668), + [anon_sym_unmanaged] = ACTIONS(5668), + [anon_sym_scoped] = ACTIONS(5668), + [anon_sym_var] = ACTIONS(5668), + [sym_predefined_type] = ACTIONS(5668), + [anon_sym_yield] = ACTIONS(5668), + [anon_sym_when] = ACTIONS(5668), + [anon_sym_from] = ACTIONS(5668), + [anon_sym_into] = ACTIONS(5668), + [anon_sym_join] = ACTIONS(5668), + [anon_sym_on] = ACTIONS(5668), + [anon_sym_equals] = ACTIONS(5668), + [anon_sym_let] = ACTIONS(5668), + [anon_sym_orderby] = ACTIONS(5668), + [anon_sym_ascending] = ACTIONS(5668), + [anon_sym_descending] = ACTIONS(5668), + [anon_sym_group] = ACTIONS(5668), + [anon_sym_by] = ACTIONS(5668), + [anon_sym_select] = ACTIONS(5668), + [sym_grit_metavariable] = ACTIONS(5670), + [aux_sym_preproc_if_token1] = ACTIONS(5670), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -629959,26 +621690,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4875] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7752), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4875), [sym_preproc_endregion] = STATE(4875), [sym_preproc_line] = STATE(4875), @@ -629988,37 +621714,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4875), [sym_preproc_define] = STATE(4875), [sym_preproc_undef] = STATE(4875), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7590), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -630040,57 +621769,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4876), [sym_preproc_define] = STATE(4876), [sym_preproc_undef] = STATE(4876), - [anon_sym_SEMI] = ACTIONS(6166), - [anon_sym_LBRACK] = ACTIONS(6166), - [anon_sym_COLON] = ACTIONS(6166), - [anon_sym_COMMA] = ACTIONS(6166), - [anon_sym_RBRACK] = ACTIONS(6166), - [anon_sym_LPAREN] = ACTIONS(6166), - [anon_sym_RPAREN] = ACTIONS(6166), - [anon_sym_RBRACE] = ACTIONS(6166), - [anon_sym_LT] = ACTIONS(6168), - [anon_sym_GT] = ACTIONS(6168), - [anon_sym_in] = ACTIONS(6168), - [anon_sym_QMARK] = ACTIONS(6168), - [anon_sym_BANG] = ACTIONS(6168), - [anon_sym_PLUS_PLUS] = ACTIONS(6166), - [anon_sym_DASH_DASH] = ACTIONS(6166), - [anon_sym_PLUS] = ACTIONS(6168), - [anon_sym_DASH] = ACTIONS(6168), - [anon_sym_STAR] = ACTIONS(6166), - [anon_sym_SLASH] = ACTIONS(6168), - [anon_sym_PERCENT] = ACTIONS(6166), - [anon_sym_CARET] = ACTIONS(6166), - [anon_sym_PIPE] = ACTIONS(6168), - [anon_sym_AMP] = ACTIONS(6168), - [anon_sym_LT_LT] = ACTIONS(6166), - [anon_sym_GT_GT] = ACTIONS(6168), - [anon_sym_GT_GT_GT] = ACTIONS(6166), - [anon_sym_EQ_EQ] = ACTIONS(6166), - [anon_sym_BANG_EQ] = ACTIONS(6166), - [anon_sym_GT_EQ] = ACTIONS(6166), - [anon_sym_LT_EQ] = ACTIONS(6166), - [anon_sym_DOT] = ACTIONS(6168), - [anon_sym_EQ_GT] = ACTIONS(6166), - [anon_sym_switch] = ACTIONS(6166), - [anon_sym_when] = ACTIONS(6166), - [anon_sym_DOT_DOT] = ACTIONS(6166), - [anon_sym_and] = ACTIONS(6166), - [anon_sym_or] = ACTIONS(6166), - [anon_sym_AMP_AMP] = ACTIONS(6166), - [anon_sym_PIPE_PIPE] = ACTIONS(6166), - [sym_op_coalescing] = ACTIONS(6166), - [anon_sym_into] = ACTIONS(6166), - [anon_sym_on] = ACTIONS(6166), - [anon_sym_equals] = ACTIONS(6166), - [anon_sym_by] = ACTIONS(6166), - [anon_sym_as] = ACTIONS(6166), - [anon_sym_is] = ACTIONS(6166), - [anon_sym_DASH_GT] = ACTIONS(6166), - [anon_sym_with] = ACTIONS(6166), - [aux_sym_preproc_if_token3] = ACTIONS(6166), - [aux_sym_preproc_else_token1] = ACTIONS(6166), - [aux_sym_preproc_elif_token1] = ACTIONS(6166), + [sym__identifier_token] = ACTIONS(5672), + [anon_sym_extern] = ACTIONS(5672), + [anon_sym_alias] = ACTIONS(5672), + [anon_sym_global] = ACTIONS(5672), + [anon_sym_unsafe] = ACTIONS(5672), + [anon_sym_static] = ACTIONS(5672), + [anon_sym_LBRACK] = ACTIONS(5674), + [anon_sym_LPAREN] = ACTIONS(5674), + [anon_sym_ref] = ACTIONS(5672), + [anon_sym_delegate] = ACTIONS(5672), + [anon_sym_public] = ACTIONS(5672), + [anon_sym_private] = ACTIONS(5672), + [anon_sym_readonly] = ACTIONS(5672), + [anon_sym_abstract] = ACTIONS(5672), + [anon_sym_async] = ACTIONS(5672), + [anon_sym_const] = ACTIONS(5672), + [anon_sym_file] = ACTIONS(5672), + [anon_sym_fixed] = ACTIONS(5672), + [anon_sym_internal] = ACTIONS(5672), + [anon_sym_new] = ACTIONS(5672), + [anon_sym_override] = ACTIONS(5672), + [anon_sym_partial] = ACTIONS(5672), + [anon_sym_protected] = ACTIONS(5672), + [anon_sym_required] = ACTIONS(5672), + [anon_sym_sealed] = ACTIONS(5672), + [anon_sym_virtual] = ACTIONS(5672), + [anon_sym_volatile] = ACTIONS(5672), + [anon_sym_where] = ACTIONS(5672), + [anon_sym_notnull] = ACTIONS(5672), + [anon_sym_unmanaged] = ACTIONS(5672), + [anon_sym_scoped] = ACTIONS(5672), + [anon_sym_var] = ACTIONS(5672), + [sym_predefined_type] = ACTIONS(5672), + [anon_sym_yield] = ACTIONS(5672), + [anon_sym_when] = ACTIONS(5672), + [anon_sym_from] = ACTIONS(5672), + [anon_sym_into] = ACTIONS(5672), + [anon_sym_join] = ACTIONS(5672), + [anon_sym_on] = ACTIONS(5672), + [anon_sym_equals] = ACTIONS(5672), + [anon_sym_let] = ACTIONS(5672), + [anon_sym_orderby] = ACTIONS(5672), + [anon_sym_ascending] = ACTIONS(5672), + [anon_sym_descending] = ACTIONS(5672), + [anon_sym_group] = ACTIONS(5672), + [anon_sym_by] = ACTIONS(5672), + [anon_sym_select] = ACTIONS(5672), + [sym_grit_metavariable] = ACTIONS(5674), + [aux_sym_preproc_if_token1] = ACTIONS(5674), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -630103,26 +621830,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4877] = { - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6220), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym__lambda_parameters] = STATE(7967), - [sym_identifier] = STATE(6072), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4877), [sym_preproc_endregion] = STATE(4877), [sym_preproc_line] = STATE(4877), @@ -630132,37 +621854,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4877), [sym_preproc_define] = STATE(4877), [sym_preproc_undef] = STATE(4877), - [aux_sym__lambda_expression_init_repeat1] = STATE(6161), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(7084), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_SEMI] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -630175,6 +621900,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4878] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4878), [sym_preproc_endregion] = STATE(4878), [sym_preproc_line] = STATE(4878), @@ -630184,57 +621924,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4878), [sym_preproc_define] = STATE(4878), [sym_preproc_undef] = STATE(4878), - [anon_sym_SEMI] = ACTIONS(5999), - [anon_sym_LBRACK] = ACTIONS(5999), - [anon_sym_COLON] = ACTIONS(5999), - [anon_sym_COMMA] = ACTIONS(5999), - [anon_sym_RBRACK] = ACTIONS(5999), - [anon_sym_LPAREN] = ACTIONS(5999), - [anon_sym_RPAREN] = ACTIONS(5999), - [anon_sym_RBRACE] = ACTIONS(5999), - [anon_sym_LT] = ACTIONS(6001), - [anon_sym_GT] = ACTIONS(6001), - [anon_sym_in] = ACTIONS(6001), - [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_EQ_GT] = ACTIONS(5999), - [anon_sym_switch] = ACTIONS(5999), - [anon_sym_when] = ACTIONS(5999), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_and] = ACTIONS(5999), - [anon_sym_or] = ACTIONS(5999), - [anon_sym_AMP_AMP] = ACTIONS(5999), - [anon_sym_PIPE_PIPE] = ACTIONS(5999), - [sym_op_coalescing] = ACTIONS(5999), - [anon_sym_into] = ACTIONS(5999), - [anon_sym_on] = ACTIONS(5999), - [anon_sym_equals] = ACTIONS(5999), - [anon_sym_by] = ACTIONS(5999), - [anon_sym_as] = ACTIONS(5999), - [anon_sym_is] = ACTIONS(5999), - [anon_sym_DASH_GT] = ACTIONS(5999), - [anon_sym_with] = ACTIONS(5999), - [aux_sym_preproc_if_token3] = ACTIONS(5999), - [aux_sym_preproc_else_token1] = ACTIONS(5999), - [aux_sym_preproc_elif_token1] = ACTIONS(5999), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7594), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -630247,6 +621970,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4879] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4879), [sym_preproc_endregion] = STATE(4879), [sym_preproc_line] = STATE(4879), @@ -630256,57 +621994,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4879), [sym_preproc_define] = STATE(4879), [sym_preproc_undef] = STATE(4879), - [anon_sym_SEMI] = ACTIONS(6357), - [anon_sym_LBRACK] = ACTIONS(6357), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_COMMA] = ACTIONS(6357), - [anon_sym_RBRACK] = ACTIONS(6357), - [anon_sym_LPAREN] = ACTIONS(6357), - [anon_sym_RPAREN] = ACTIONS(6357), - [anon_sym_RBRACE] = ACTIONS(6357), - [anon_sym_LT] = ACTIONS(6359), - [anon_sym_GT] = ACTIONS(6359), - [anon_sym_in] = ACTIONS(6359), - [anon_sym_QMARK] = ACTIONS(6359), - [anon_sym_BANG] = ACTIONS(6359), - [anon_sym_PLUS_PLUS] = ACTIONS(6357), - [anon_sym_DASH_DASH] = ACTIONS(6357), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6357), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_PERCENT] = ACTIONS(6357), - [anon_sym_CARET] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6359), - [anon_sym_AMP] = ACTIONS(6359), - [anon_sym_LT_LT] = ACTIONS(6357), - [anon_sym_GT_GT] = ACTIONS(6359), - [anon_sym_GT_GT_GT] = ACTIONS(6357), - [anon_sym_EQ_EQ] = ACTIONS(6357), - [anon_sym_BANG_EQ] = ACTIONS(6357), - [anon_sym_GT_EQ] = ACTIONS(6357), - [anon_sym_LT_EQ] = ACTIONS(6357), - [anon_sym_DOT] = ACTIONS(6359), - [anon_sym_EQ_GT] = ACTIONS(6357), - [anon_sym_switch] = ACTIONS(6357), - [anon_sym_when] = ACTIONS(6357), - [anon_sym_DOT_DOT] = ACTIONS(6357), - [anon_sym_and] = ACTIONS(6357), - [anon_sym_or] = ACTIONS(6357), - [anon_sym_AMP_AMP] = ACTIONS(6357), - [anon_sym_PIPE_PIPE] = ACTIONS(6357), - [sym_op_coalescing] = ACTIONS(6357), - [anon_sym_into] = ACTIONS(6357), - [anon_sym_on] = ACTIONS(6357), - [anon_sym_equals] = ACTIONS(6357), - [anon_sym_by] = ACTIONS(6357), - [anon_sym_as] = ACTIONS(6357), - [anon_sym_is] = ACTIONS(6357), - [anon_sym_DASH_GT] = ACTIONS(6357), - [anon_sym_with] = ACTIONS(6357), - [aux_sym_preproc_if_token3] = ACTIONS(6357), - [aux_sym_preproc_else_token1] = ACTIONS(6357), - [aux_sym_preproc_elif_token1] = ACTIONS(6357), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7596), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -630319,24 +622040,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4880] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6389), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4880), [sym_preproc_endregion] = STATE(4880), [sym_preproc_line] = STATE(4880), @@ -630346,39 +622064,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4880), [sym_preproc_define] = STATE(4880), [sym_preproc_undef] = STATE(4880), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(6062), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5448), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(1271), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(1271), - [anon_sym_out] = ACTIONS(1271), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_this] = ACTIONS(1271), - [anon_sym_scoped] = ACTIONS(5468), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7598), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -630391,6 +622110,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4881] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4881), [sym_preproc_endregion] = STATE(4881), [sym_preproc_line] = STATE(4881), @@ -630400,57 +622134,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4881), [sym_preproc_define] = STATE(4881), [sym_preproc_undef] = STATE(4881), - [anon_sym_SEMI] = ACTIONS(5879), - [anon_sym_LBRACK] = ACTIONS(5879), - [anon_sym_COLON] = ACTIONS(5879), - [anon_sym_COMMA] = ACTIONS(5879), - [anon_sym_RBRACK] = ACTIONS(5879), - [anon_sym_LPAREN] = ACTIONS(5879), - [anon_sym_RPAREN] = ACTIONS(5879), - [anon_sym_RBRACE] = ACTIONS(5879), - [anon_sym_LT] = ACTIONS(5881), - [anon_sym_GT] = ACTIONS(5881), - [anon_sym_in] = ACTIONS(5879), - [anon_sym_QMARK] = ACTIONS(5881), - [anon_sym_BANG] = ACTIONS(5881), - [anon_sym_PLUS_PLUS] = ACTIONS(5879), - [anon_sym_DASH_DASH] = ACTIONS(5879), - [anon_sym_PLUS] = ACTIONS(5881), - [anon_sym_DASH] = ACTIONS(5881), - [anon_sym_STAR] = ACTIONS(5879), - [anon_sym_SLASH] = ACTIONS(5881), - [anon_sym_PERCENT] = ACTIONS(5879), - [anon_sym_CARET] = ACTIONS(5879), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_AMP] = ACTIONS(5881), - [anon_sym_LT_LT] = ACTIONS(5879), - [anon_sym_GT_GT] = ACTIONS(5881), - [anon_sym_GT_GT_GT] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5879), - [anon_sym_BANG_EQ] = ACTIONS(5879), - [anon_sym_GT_EQ] = ACTIONS(5879), - [anon_sym_LT_EQ] = ACTIONS(5879), - [anon_sym_DOT] = ACTIONS(5881), - [anon_sym_EQ_GT] = ACTIONS(5879), - [anon_sym_switch] = ACTIONS(5879), - [anon_sym_when] = ACTIONS(5879), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_and] = ACTIONS(5879), - [anon_sym_or] = ACTIONS(5879), - [anon_sym_AMP_AMP] = ACTIONS(5879), - [anon_sym_PIPE_PIPE] = ACTIONS(5879), - [sym_op_coalescing] = ACTIONS(5879), - [anon_sym_on] = ACTIONS(5879), - [anon_sym_equals] = ACTIONS(5879), - [anon_sym_by] = ACTIONS(5879), - [anon_sym_as] = ACTIONS(5879), - [anon_sym_is] = ACTIONS(5879), - [anon_sym_DASH_GT] = ACTIONS(5879), - [anon_sym_with] = ACTIONS(5879), - [aux_sym_raw_string_literal_token1] = ACTIONS(7086), - [aux_sym_preproc_if_token3] = ACTIONS(5879), - [aux_sym_preproc_else_token1] = ACTIONS(5879), - [aux_sym_preproc_elif_token1] = ACTIONS(5879), + [anon_sym_SEMI] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -630463,6 +622180,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4882] = { + [sym_argument_list] = STATE(3748), + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(3690), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4032), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(4882), [sym_preproc_endregion] = STATE(4882), [sym_preproc_line] = STATE(4882), @@ -630472,57 +622208,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4882), [sym_preproc_define] = STATE(4882), [sym_preproc_undef] = STATE(4882), - [anon_sym_SEMI] = ACTIONS(7088), - [anon_sym_LBRACK] = ACTIONS(7088), - [anon_sym_COLON] = ACTIONS(7088), - [anon_sym_COMMA] = ACTIONS(7088), - [anon_sym_RBRACK] = ACTIONS(7088), - [anon_sym_LPAREN] = ACTIONS(7088), - [anon_sym_RPAREN] = ACTIONS(7088), - [anon_sym_RBRACE] = ACTIONS(7088), - [anon_sym_LT] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7090), - [anon_sym_in] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_BANG] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7088), - [anon_sym_DASH_DASH] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_STAR] = ACTIONS(7088), - [anon_sym_SLASH] = ACTIONS(7090), - [anon_sym_PERCENT] = ACTIONS(7088), - [anon_sym_CARET] = ACTIONS(7088), - [anon_sym_PIPE] = ACTIONS(7090), - [anon_sym_AMP] = ACTIONS(7090), - [anon_sym_LT_LT] = ACTIONS(7088), - [anon_sym_GT_GT] = ACTIONS(7090), - [anon_sym_GT_GT_GT] = ACTIONS(7088), - [anon_sym_EQ_EQ] = ACTIONS(7088), - [anon_sym_BANG_EQ] = ACTIONS(7088), - [anon_sym_GT_EQ] = ACTIONS(7088), - [anon_sym_LT_EQ] = ACTIONS(7088), - [anon_sym_DOT] = ACTIONS(7090), - [anon_sym_EQ_GT] = ACTIONS(7088), - [anon_sym_switch] = ACTIONS(7088), - [anon_sym_when] = ACTIONS(7088), - [anon_sym_DOT_DOT] = ACTIONS(7088), - [anon_sym_and] = ACTIONS(7088), - [anon_sym_or] = ACTIONS(7088), - [anon_sym_AMP_AMP] = ACTIONS(7088), - [anon_sym_PIPE_PIPE] = ACTIONS(7088), - [sym_op_coalescing] = ACTIONS(7088), - [anon_sym_into] = ACTIONS(7088), - [anon_sym_on] = ACTIONS(7088), - [anon_sym_equals] = ACTIONS(7088), - [anon_sym_by] = ACTIONS(7088), - [anon_sym_as] = ACTIONS(7088), - [anon_sym_is] = ACTIONS(7088), - [anon_sym_DASH_GT] = ACTIONS(7088), - [anon_sym_with] = ACTIONS(7088), - [aux_sym_preproc_if_token3] = ACTIONS(7088), - [aux_sym_preproc_else_token1] = ACTIONS(7088), - [aux_sym_preproc_elif_token1] = ACTIONS(7088), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(7482), + [anon_sym_LPAREN] = ACTIONS(7484), + [anon_sym_ref] = ACTIONS(4516), + [anon_sym_LBRACE] = ACTIONS(7486), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7600), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -630535,6 +622250,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4883] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4883), [sym_preproc_endregion] = STATE(4883), [sym_preproc_line] = STATE(4883), @@ -630544,57 +622274,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4883), [sym_preproc_define] = STATE(4883), [sym_preproc_undef] = STATE(4883), - [anon_sym_SEMI] = ACTIONS(7092), - [anon_sym_LBRACK] = ACTIONS(7092), - [anon_sym_COLON] = ACTIONS(7092), - [anon_sym_COMMA] = ACTIONS(7092), - [anon_sym_RBRACK] = ACTIONS(7092), - [anon_sym_LPAREN] = ACTIONS(7092), - [anon_sym_RPAREN] = ACTIONS(7092), - [anon_sym_RBRACE] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7094), - [anon_sym_GT] = ACTIONS(7094), - [anon_sym_in] = ACTIONS(7094), - [anon_sym_QMARK] = ACTIONS(7094), - [anon_sym_BANG] = ACTIONS(7094), - [anon_sym_PLUS_PLUS] = ACTIONS(7092), - [anon_sym_DASH_DASH] = ACTIONS(7092), - [anon_sym_PLUS] = ACTIONS(7094), - [anon_sym_DASH] = ACTIONS(7094), - [anon_sym_STAR] = ACTIONS(7092), - [anon_sym_SLASH] = ACTIONS(7094), - [anon_sym_PERCENT] = ACTIONS(7092), - [anon_sym_CARET] = ACTIONS(7092), - [anon_sym_PIPE] = ACTIONS(7094), - [anon_sym_AMP] = ACTIONS(7094), - [anon_sym_LT_LT] = ACTIONS(7092), - [anon_sym_GT_GT] = ACTIONS(7094), - [anon_sym_GT_GT_GT] = ACTIONS(7092), - [anon_sym_EQ_EQ] = ACTIONS(7092), - [anon_sym_BANG_EQ] = ACTIONS(7092), - [anon_sym_GT_EQ] = ACTIONS(7092), - [anon_sym_LT_EQ] = ACTIONS(7092), - [anon_sym_DOT] = ACTIONS(7094), - [anon_sym_EQ_GT] = ACTIONS(7092), - [anon_sym_switch] = ACTIONS(7092), - [anon_sym_when] = ACTIONS(7092), - [anon_sym_DOT_DOT] = ACTIONS(7092), - [anon_sym_and] = ACTIONS(7092), - [anon_sym_or] = ACTIONS(7092), - [anon_sym_AMP_AMP] = ACTIONS(7092), - [anon_sym_PIPE_PIPE] = ACTIONS(7092), - [sym_op_coalescing] = ACTIONS(7092), - [anon_sym_into] = ACTIONS(7092), - [anon_sym_on] = ACTIONS(7092), - [anon_sym_equals] = ACTIONS(7092), - [anon_sym_by] = ACTIONS(7092), - [anon_sym_as] = ACTIONS(7092), - [anon_sym_is] = ACTIONS(7092), - [anon_sym_DASH_GT] = ACTIONS(7092), - [anon_sym_with] = ACTIONS(7092), - [aux_sym_preproc_if_token3] = ACTIONS(7092), - [aux_sym_preproc_else_token1] = ACTIONS(7092), - [aux_sym_preproc_elif_token1] = ACTIONS(7092), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7602), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -630607,6 +622320,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4884] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4884), [sym_preproc_endregion] = STATE(4884), [sym_preproc_line] = STATE(4884), @@ -630616,57 +622344,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4884), [sym_preproc_define] = STATE(4884), [sym_preproc_undef] = STATE(4884), - [anon_sym_SEMI] = ACTIONS(4312), - [anon_sym_LBRACK] = ACTIONS(4312), - [anon_sym_COLON] = ACTIONS(4312), - [anon_sym_COMMA] = ACTIONS(4312), - [anon_sym_RBRACK] = ACTIONS(4312), - [anon_sym_LPAREN] = ACTIONS(4312), - [anon_sym_RPAREN] = ACTIONS(4312), - [anon_sym_LBRACE] = ACTIONS(4312), - [anon_sym_RBRACE] = ACTIONS(4312), - [anon_sym_LT] = ACTIONS(4310), - [anon_sym_GT] = ACTIONS(4310), - [anon_sym_in] = ACTIONS(4312), - [anon_sym_QMARK] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(4310), - [anon_sym_PLUS_PLUS] = ACTIONS(4312), - [anon_sym_DASH_DASH] = ACTIONS(4312), - [anon_sym_PLUS] = ACTIONS(4310), - [anon_sym_DASH] = ACTIONS(4310), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_SLASH] = ACTIONS(4310), - [anon_sym_PERCENT] = ACTIONS(4312), - [anon_sym_CARET] = ACTIONS(4312), - [anon_sym_PIPE] = ACTIONS(4310), - [anon_sym_AMP] = ACTIONS(4310), - [anon_sym_LT_LT] = ACTIONS(4312), - [anon_sym_GT_GT] = ACTIONS(4310), - [anon_sym_GT_GT_GT] = ACTIONS(4312), - [anon_sym_EQ_EQ] = ACTIONS(4312), - [anon_sym_BANG_EQ] = ACTIONS(4312), - [anon_sym_GT_EQ] = ACTIONS(4312), - [anon_sym_LT_EQ] = ACTIONS(4312), - [anon_sym_DOT] = ACTIONS(4310), - [anon_sym_EQ_GT] = ACTIONS(4312), - [anon_sym_switch] = ACTIONS(4312), - [anon_sym_when] = ACTIONS(4312), - [anon_sym_DOT_DOT] = ACTIONS(4312), - [anon_sym_and] = ACTIONS(4312), - [anon_sym_or] = ACTIONS(4312), - [anon_sym_AMP_AMP] = ACTIONS(4312), - [anon_sym_PIPE_PIPE] = ACTIONS(4312), - [sym_op_coalescing] = ACTIONS(4312), - [anon_sym_on] = ACTIONS(4312), - [anon_sym_equals] = ACTIONS(4312), - [anon_sym_by] = ACTIONS(4312), - [anon_sym_as] = ACTIONS(4312), - [anon_sym_is] = ACTIONS(4312), - [anon_sym_DASH_GT] = ACTIONS(4312), - [anon_sym_with] = ACTIONS(4312), - [aux_sym_preproc_if_token3] = ACTIONS(4312), - [aux_sym_preproc_else_token1] = ACTIONS(4312), - [aux_sym_preproc_elif_token1] = ACTIONS(4312), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7604), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -630679,6 +622390,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4885] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4885), [sym_preproc_endregion] = STATE(4885), [sym_preproc_line] = STATE(4885), @@ -630688,57 +622414,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4885), [sym_preproc_define] = STATE(4885), [sym_preproc_undef] = STATE(4885), - [anon_sym_SEMI] = ACTIONS(7096), - [anon_sym_LBRACK] = ACTIONS(7096), - [anon_sym_COLON] = ACTIONS(7096), - [anon_sym_COMMA] = ACTIONS(7096), - [anon_sym_RBRACK] = ACTIONS(7096), - [anon_sym_LPAREN] = ACTIONS(7096), - [anon_sym_RPAREN] = ACTIONS(7096), - [anon_sym_RBRACE] = ACTIONS(7096), - [anon_sym_LT] = ACTIONS(7098), - [anon_sym_GT] = ACTIONS(7098), - [anon_sym_in] = ACTIONS(7098), - [anon_sym_QMARK] = ACTIONS(7098), - [anon_sym_BANG] = ACTIONS(7098), - [anon_sym_PLUS_PLUS] = ACTIONS(7096), - [anon_sym_DASH_DASH] = ACTIONS(7096), - [anon_sym_PLUS] = ACTIONS(7098), - [anon_sym_DASH] = ACTIONS(7098), - [anon_sym_STAR] = ACTIONS(7096), - [anon_sym_SLASH] = ACTIONS(7098), - [anon_sym_PERCENT] = ACTIONS(7096), - [anon_sym_CARET] = ACTIONS(7096), - [anon_sym_PIPE] = ACTIONS(7098), - [anon_sym_AMP] = ACTIONS(7098), - [anon_sym_LT_LT] = ACTIONS(7096), - [anon_sym_GT_GT] = ACTIONS(7098), - [anon_sym_GT_GT_GT] = ACTIONS(7096), - [anon_sym_EQ_EQ] = ACTIONS(7096), - [anon_sym_BANG_EQ] = ACTIONS(7096), - [anon_sym_GT_EQ] = ACTIONS(7096), - [anon_sym_LT_EQ] = ACTIONS(7096), - [anon_sym_DOT] = ACTIONS(7098), - [anon_sym_EQ_GT] = ACTIONS(7096), - [anon_sym_switch] = ACTIONS(7096), - [anon_sym_when] = ACTIONS(7096), - [anon_sym_DOT_DOT] = ACTIONS(7096), - [anon_sym_and] = ACTIONS(7096), - [anon_sym_or] = ACTIONS(7096), - [anon_sym_AMP_AMP] = ACTIONS(7096), - [anon_sym_PIPE_PIPE] = ACTIONS(7096), - [sym_op_coalescing] = ACTIONS(7096), - [anon_sym_into] = ACTIONS(7096), - [anon_sym_on] = ACTIONS(7096), - [anon_sym_equals] = ACTIONS(7096), - [anon_sym_by] = ACTIONS(7096), - [anon_sym_as] = ACTIONS(7096), - [anon_sym_is] = ACTIONS(7096), - [anon_sym_DASH_GT] = ACTIONS(7096), - [anon_sym_with] = ACTIONS(7096), - [aux_sym_preproc_if_token3] = ACTIONS(7096), - [aux_sym_preproc_else_token1] = ACTIONS(7096), - [aux_sym_preproc_elif_token1] = ACTIONS(7096), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7606), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -630751,6 +622460,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4886] = { + [sym_argument_list] = STATE(3748), + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(3690), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4032), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(4886), [sym_preproc_endregion] = STATE(4886), [sym_preproc_line] = STATE(4886), @@ -630760,57 +622488,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4886), [sym_preproc_define] = STATE(4886), [sym_preproc_undef] = STATE(4886), - [anon_sym_SEMI] = ACTIONS(7096), - [anon_sym_LBRACK] = ACTIONS(7096), - [anon_sym_COLON] = ACTIONS(7096), - [anon_sym_COMMA] = ACTIONS(7096), - [anon_sym_RBRACK] = ACTIONS(7096), - [anon_sym_LPAREN] = ACTIONS(7096), - [anon_sym_RPAREN] = ACTIONS(7096), - [anon_sym_RBRACE] = ACTIONS(7096), - [anon_sym_LT] = ACTIONS(7098), - [anon_sym_GT] = ACTIONS(7098), - [anon_sym_in] = ACTIONS(7098), - [anon_sym_QMARK] = ACTIONS(7098), - [anon_sym_BANG] = ACTIONS(7098), - [anon_sym_PLUS_PLUS] = ACTIONS(7096), - [anon_sym_DASH_DASH] = ACTIONS(7096), - [anon_sym_PLUS] = ACTIONS(7098), - [anon_sym_DASH] = ACTIONS(7098), - [anon_sym_STAR] = ACTIONS(7096), - [anon_sym_SLASH] = ACTIONS(7098), - [anon_sym_PERCENT] = ACTIONS(7096), - [anon_sym_CARET] = ACTIONS(7096), - [anon_sym_PIPE] = ACTIONS(7098), - [anon_sym_AMP] = ACTIONS(7098), - [anon_sym_LT_LT] = ACTIONS(7096), - [anon_sym_GT_GT] = ACTIONS(7098), - [anon_sym_GT_GT_GT] = ACTIONS(7096), - [anon_sym_EQ_EQ] = ACTIONS(7096), - [anon_sym_BANG_EQ] = ACTIONS(7096), - [anon_sym_GT_EQ] = ACTIONS(7096), - [anon_sym_LT_EQ] = ACTIONS(7096), - [anon_sym_DOT] = ACTIONS(7098), - [anon_sym_EQ_GT] = ACTIONS(7096), - [anon_sym_switch] = ACTIONS(7096), - [anon_sym_when] = ACTIONS(7096), - [anon_sym_DOT_DOT] = ACTIONS(7096), - [anon_sym_and] = ACTIONS(7096), - [anon_sym_or] = ACTIONS(7096), - [anon_sym_AMP_AMP] = ACTIONS(7096), - [anon_sym_PIPE_PIPE] = ACTIONS(7096), - [sym_op_coalescing] = ACTIONS(7096), - [anon_sym_into] = ACTIONS(7096), - [anon_sym_on] = ACTIONS(7096), - [anon_sym_equals] = ACTIONS(7096), - [anon_sym_by] = ACTIONS(7096), - [anon_sym_as] = ACTIONS(7096), - [anon_sym_is] = ACTIONS(7096), - [anon_sym_DASH_GT] = ACTIONS(7096), - [anon_sym_with] = ACTIONS(7096), - [aux_sym_preproc_if_token3] = ACTIONS(7096), - [aux_sym_preproc_else_token1] = ACTIONS(7096), - [aux_sym_preproc_elif_token1] = ACTIONS(7096), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(7482), + [anon_sym_LPAREN] = ACTIONS(7484), + [anon_sym_ref] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(7486), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7608), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -630823,6 +622530,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4887] = { + [sym_argument_list] = STATE(3748), + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(3690), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4032), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(4887), [sym_preproc_endregion] = STATE(4887), [sym_preproc_line] = STATE(4887), @@ -630832,57 +622558,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4887), [sym_preproc_define] = STATE(4887), [sym_preproc_undef] = STATE(4887), - [anon_sym_SEMI] = ACTIONS(7100), - [anon_sym_LBRACK] = ACTIONS(7100), - [anon_sym_COLON] = ACTIONS(7100), - [anon_sym_COMMA] = ACTIONS(7100), - [anon_sym_RBRACK] = ACTIONS(7100), - [anon_sym_LPAREN] = ACTIONS(7100), - [anon_sym_RPAREN] = ACTIONS(7100), - [anon_sym_RBRACE] = ACTIONS(7100), - [anon_sym_LT] = ACTIONS(7102), - [anon_sym_GT] = ACTIONS(7102), - [anon_sym_in] = ACTIONS(7102), - [anon_sym_QMARK] = ACTIONS(7102), - [anon_sym_BANG] = ACTIONS(7102), - [anon_sym_PLUS_PLUS] = ACTIONS(7100), - [anon_sym_DASH_DASH] = ACTIONS(7100), - [anon_sym_PLUS] = ACTIONS(7102), - [anon_sym_DASH] = ACTIONS(7102), - [anon_sym_STAR] = ACTIONS(7100), - [anon_sym_SLASH] = ACTIONS(7102), - [anon_sym_PERCENT] = ACTIONS(7100), - [anon_sym_CARET] = ACTIONS(7100), - [anon_sym_PIPE] = ACTIONS(7102), - [anon_sym_AMP] = ACTIONS(7102), - [anon_sym_LT_LT] = ACTIONS(7100), - [anon_sym_GT_GT] = ACTIONS(7102), - [anon_sym_GT_GT_GT] = ACTIONS(7100), - [anon_sym_EQ_EQ] = ACTIONS(7100), - [anon_sym_BANG_EQ] = ACTIONS(7100), - [anon_sym_GT_EQ] = ACTIONS(7100), - [anon_sym_LT_EQ] = ACTIONS(7100), - [anon_sym_DOT] = ACTIONS(7102), - [anon_sym_EQ_GT] = ACTIONS(7100), - [anon_sym_switch] = ACTIONS(7100), - [anon_sym_when] = ACTIONS(7100), - [anon_sym_DOT_DOT] = ACTIONS(7100), - [anon_sym_and] = ACTIONS(7100), - [anon_sym_or] = ACTIONS(7100), - [anon_sym_AMP_AMP] = ACTIONS(7100), - [anon_sym_PIPE_PIPE] = ACTIONS(7100), - [sym_op_coalescing] = ACTIONS(7100), - [anon_sym_into] = ACTIONS(7100), - [anon_sym_on] = ACTIONS(7100), - [anon_sym_equals] = ACTIONS(7100), - [anon_sym_by] = ACTIONS(7100), - [anon_sym_as] = ACTIONS(7100), - [anon_sym_is] = ACTIONS(7100), - [anon_sym_DASH_GT] = ACTIONS(7100), - [anon_sym_with] = ACTIONS(7100), - [aux_sym_preproc_if_token3] = ACTIONS(7100), - [aux_sym_preproc_else_token1] = ACTIONS(7100), - [aux_sym_preproc_elif_token1] = ACTIONS(7100), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(7482), + [anon_sym_LPAREN] = ACTIONS(7484), + [anon_sym_ref] = ACTIONS(4365), + [anon_sym_LBRACE] = ACTIONS(7486), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7610), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -630895,6 +622600,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4888] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4888), [sym_preproc_endregion] = STATE(4888), [sym_preproc_line] = STATE(4888), @@ -630904,57 +622624,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4888), [sym_preproc_define] = STATE(4888), [sym_preproc_undef] = STATE(4888), - [sym__identifier_token] = ACTIONS(7104), - [anon_sym_extern] = ACTIONS(7104), - [anon_sym_alias] = ACTIONS(7104), - [anon_sym_global] = ACTIONS(7104), - [anon_sym_unsafe] = ACTIONS(7104), - [anon_sym_static] = ACTIONS(7104), - [anon_sym_LBRACK] = ACTIONS(7106), - [anon_sym_RBRACE] = ACTIONS(7106), - [anon_sym_public] = ACTIONS(7104), - [anon_sym_private] = ACTIONS(7104), - [anon_sym_readonly] = ACTIONS(7104), - [anon_sym_abstract] = ACTIONS(7104), - [anon_sym_async] = ACTIONS(7104), - [anon_sym_const] = ACTIONS(7104), - [anon_sym_file] = ACTIONS(7104), - [anon_sym_fixed] = ACTIONS(7104), - [anon_sym_internal] = ACTIONS(7104), - [anon_sym_new] = ACTIONS(7104), - [anon_sym_override] = ACTIONS(7104), - [anon_sym_partial] = ACTIONS(7104), - [anon_sym_protected] = ACTIONS(7104), - [anon_sym_required] = ACTIONS(7104), - [anon_sym_sealed] = ACTIONS(7104), - [anon_sym_virtual] = ACTIONS(7104), - [anon_sym_volatile] = ACTIONS(7104), - [anon_sym_where] = ACTIONS(7104), - [anon_sym_notnull] = ACTIONS(7104), - [anon_sym_unmanaged] = ACTIONS(7104), - [sym_accessor_get] = ACTIONS(7104), - [sym_accessor_set] = ACTIONS(7104), - [sym_accessor_add] = ACTIONS(7104), - [sym_accessor_remove] = ACTIONS(7104), - [sym_accessor_init] = ACTIONS(7104), - [anon_sym_scoped] = ACTIONS(7104), - [anon_sym_var] = ACTIONS(7104), - [anon_sym_yield] = ACTIONS(7104), - [anon_sym_when] = ACTIONS(7104), - [anon_sym_from] = ACTIONS(7104), - [anon_sym_into] = ACTIONS(7104), - [anon_sym_join] = ACTIONS(7104), - [anon_sym_on] = ACTIONS(7104), - [anon_sym_equals] = ACTIONS(7104), - [anon_sym_let] = ACTIONS(7104), - [anon_sym_orderby] = ACTIONS(7104), - [anon_sym_ascending] = ACTIONS(7104), - [anon_sym_descending] = ACTIONS(7104), - [anon_sym_group] = ACTIONS(7104), - [anon_sym_by] = ACTIONS(7104), - [anon_sym_select] = ACTIONS(7104), - [sym_grit_metavariable] = ACTIONS(7106), - [aux_sym_preproc_if_token1] = ACTIONS(7106), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7612), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -630967,6 +622670,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4889] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4889), [sym_preproc_endregion] = STATE(4889), [sym_preproc_line] = STATE(4889), @@ -630976,57 +622694,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4889), [sym_preproc_define] = STATE(4889), [sym_preproc_undef] = STATE(4889), - [sym__identifier_token] = ACTIONS(7108), - [anon_sym_extern] = ACTIONS(7108), - [anon_sym_alias] = ACTIONS(7108), - [anon_sym_global] = ACTIONS(7108), - [anon_sym_unsafe] = ACTIONS(7108), - [anon_sym_static] = ACTIONS(7108), - [anon_sym_LBRACK] = ACTIONS(7110), - [anon_sym_RBRACE] = ACTIONS(7110), - [anon_sym_public] = ACTIONS(7108), - [anon_sym_private] = ACTIONS(7108), - [anon_sym_readonly] = ACTIONS(7108), - [anon_sym_abstract] = ACTIONS(7108), - [anon_sym_async] = ACTIONS(7108), - [anon_sym_const] = ACTIONS(7108), - [anon_sym_file] = ACTIONS(7108), - [anon_sym_fixed] = ACTIONS(7108), - [anon_sym_internal] = ACTIONS(7108), - [anon_sym_new] = ACTIONS(7108), - [anon_sym_override] = ACTIONS(7108), - [anon_sym_partial] = ACTIONS(7108), - [anon_sym_protected] = ACTIONS(7108), - [anon_sym_required] = ACTIONS(7108), - [anon_sym_sealed] = ACTIONS(7108), - [anon_sym_virtual] = ACTIONS(7108), - [anon_sym_volatile] = ACTIONS(7108), - [anon_sym_where] = ACTIONS(7108), - [anon_sym_notnull] = ACTIONS(7108), - [anon_sym_unmanaged] = ACTIONS(7108), - [sym_accessor_get] = ACTIONS(7108), - [sym_accessor_set] = ACTIONS(7108), - [sym_accessor_add] = ACTIONS(7108), - [sym_accessor_remove] = ACTIONS(7108), - [sym_accessor_init] = ACTIONS(7108), - [anon_sym_scoped] = ACTIONS(7108), - [anon_sym_var] = ACTIONS(7108), - [anon_sym_yield] = ACTIONS(7108), - [anon_sym_when] = ACTIONS(7108), - [anon_sym_from] = ACTIONS(7108), - [anon_sym_into] = ACTIONS(7108), - [anon_sym_join] = ACTIONS(7108), - [anon_sym_on] = ACTIONS(7108), - [anon_sym_equals] = ACTIONS(7108), - [anon_sym_let] = ACTIONS(7108), - [anon_sym_orderby] = ACTIONS(7108), - [anon_sym_ascending] = ACTIONS(7108), - [anon_sym_descending] = ACTIONS(7108), - [anon_sym_group] = ACTIONS(7108), - [anon_sym_by] = ACTIONS(7108), - [anon_sym_select] = ACTIONS(7108), - [sym_grit_metavariable] = ACTIONS(7110), - [aux_sym_preproc_if_token1] = ACTIONS(7110), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7270), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(7614), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7272), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7274), + [sym_op_right_shift] = ACTIONS(7276), + [sym_op_unsigned_right_shift] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(7282), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7284), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -631039,26 +622740,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4890] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7756), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(4890), [sym_preproc_endregion] = STATE(4890), [sym_preproc_line] = STATE(4890), @@ -631068,58 +622749,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4890), [sym_preproc_define] = STATE(4890), [sym_preproc_undef] = STATE(4890), - [aux_sym_function_pointer_type_repeat1] = STATE(4875), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6980), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6982), - [anon_sym_out] = ACTIONS(6982), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), + [anon_sym_EQ] = ACTIONS(7616), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7618), + [anon_sym_DASH_EQ] = ACTIONS(7618), + [anon_sym_STAR_EQ] = ACTIONS(7618), + [anon_sym_SLASH_EQ] = ACTIONS(7618), + [anon_sym_PERCENT_EQ] = ACTIONS(7618), + [anon_sym_AMP_EQ] = ACTIONS(7618), + [anon_sym_CARET_EQ] = ACTIONS(7618), + [anon_sym_PIPE_EQ] = ACTIONS(7618), + [anon_sym_LT_LT_EQ] = ACTIONS(7618), + [anon_sym_GT_GT_EQ] = ACTIONS(7618), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7618), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7618), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5508), }, [4891] = { - [sym__name] = STATE(5884), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(5567), - [sym__reserved_identifier] = STATE(2206), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4891), [sym_preproc_endregion] = STATE(4891), [sym_preproc_line] = STATE(4891), @@ -631129,48 +622834,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4891), [sym_preproc_define] = STATE(4891), [sym_preproc_undef] = STATE(4891), - [sym__identifier_token] = ACTIONS(3865), - [anon_sym_alias] = ACTIONS(3869), - [anon_sym_global] = ACTIONS(3869), - [anon_sym_EQ] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(2969), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(2919), - [anon_sym_delegate] = ACTIONS(2919), - [anon_sym_readonly] = ACTIONS(2919), - [anon_sym_file] = ACTIONS(3869), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_out] = ACTIONS(2919), - [anon_sym_where] = ACTIONS(3869), - [anon_sym_QMARK] = ACTIONS(3696), - [anon_sym_notnull] = ACTIONS(3869), - [anon_sym_unmanaged] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_this] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_scoped] = ACTIONS(3869), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3869), - [sym_predefined_type] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(3869), - [anon_sym_when] = ACTIONS(3869), - [anon_sym_from] = ACTIONS(3869), - [anon_sym_into] = ACTIONS(3869), - [anon_sym_join] = ACTIONS(3869), - [anon_sym_on] = ACTIONS(3869), - [anon_sym_equals] = ACTIONS(3869), - [anon_sym_let] = ACTIONS(3869), - [anon_sym_orderby] = ACTIONS(3869), - [anon_sym_ascending] = ACTIONS(3869), - [anon_sym_descending] = ACTIONS(3869), - [anon_sym_group] = ACTIONS(3869), - [anon_sym_by] = ACTIONS(3869), - [anon_sym_select] = ACTIONS(3869), - [sym_grit_metavariable] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7620), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -631192,57 +622889,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4892), [sym_preproc_define] = STATE(4892), [sym_preproc_undef] = STATE(4892), - [anon_sym_SEMI] = ACTIONS(4436), - [anon_sym_LBRACK] = ACTIONS(4436), - [anon_sym_COLON] = ACTIONS(4436), - [anon_sym_COMMA] = ACTIONS(4436), - [anon_sym_RBRACK] = ACTIONS(4436), - [anon_sym_LPAREN] = ACTIONS(4436), - [anon_sym_RPAREN] = ACTIONS(4436), - [anon_sym_LBRACE] = ACTIONS(4436), - [anon_sym_RBRACE] = ACTIONS(4436), - [anon_sym_LT] = ACTIONS(4434), - [anon_sym_GT] = ACTIONS(4434), - [anon_sym_in] = ACTIONS(4436), - [anon_sym_QMARK] = ACTIONS(4434), - [anon_sym_BANG] = ACTIONS(4434), - [anon_sym_PLUS_PLUS] = ACTIONS(4436), - [anon_sym_DASH_DASH] = ACTIONS(4436), - [anon_sym_PLUS] = ACTIONS(4434), - [anon_sym_DASH] = ACTIONS(4434), - [anon_sym_STAR] = ACTIONS(4436), - [anon_sym_SLASH] = ACTIONS(4434), - [anon_sym_PERCENT] = ACTIONS(4436), - [anon_sym_CARET] = ACTIONS(4436), - [anon_sym_PIPE] = ACTIONS(4434), - [anon_sym_AMP] = ACTIONS(4434), - [anon_sym_LT_LT] = ACTIONS(4436), - [anon_sym_GT_GT] = ACTIONS(4434), - [anon_sym_GT_GT_GT] = ACTIONS(4436), - [anon_sym_EQ_EQ] = ACTIONS(4436), - [anon_sym_BANG_EQ] = ACTIONS(4436), - [anon_sym_GT_EQ] = ACTIONS(4436), - [anon_sym_LT_EQ] = ACTIONS(4436), - [anon_sym_DOT] = ACTIONS(4434), - [anon_sym_EQ_GT] = ACTIONS(4436), - [anon_sym_switch] = ACTIONS(4436), - [anon_sym_when] = ACTIONS(4436), - [anon_sym_DOT_DOT] = ACTIONS(4436), - [anon_sym_and] = ACTIONS(4436), - [anon_sym_or] = ACTIONS(4436), - [anon_sym_AMP_AMP] = ACTIONS(4436), - [anon_sym_PIPE_PIPE] = ACTIONS(4436), - [sym_op_coalescing] = ACTIONS(4436), - [anon_sym_on] = ACTIONS(4436), - [anon_sym_equals] = ACTIONS(4436), - [anon_sym_by] = ACTIONS(4436), - [anon_sym_as] = ACTIONS(4436), - [anon_sym_is] = ACTIONS(4436), - [anon_sym_DASH_GT] = ACTIONS(4436), - [anon_sym_with] = ACTIONS(4436), - [aux_sym_preproc_if_token3] = ACTIONS(4436), - [aux_sym_preproc_else_token1] = ACTIONS(4436), - [aux_sym_preproc_elif_token1] = ACTIONS(4436), + [anon_sym_EQ] = ACTIONS(7622), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7624), + [anon_sym_DASH_EQ] = ACTIONS(7624), + [anon_sym_STAR_EQ] = ACTIONS(7624), + [anon_sym_SLASH_EQ] = ACTIONS(7624), + [anon_sym_PERCENT_EQ] = ACTIONS(7624), + [anon_sym_AMP_EQ] = ACTIONS(7624), + [anon_sym_CARET_EQ] = ACTIONS(7624), + [anon_sym_PIPE_EQ] = ACTIONS(7624), + [anon_sym_LT_LT_EQ] = ACTIONS(7624), + [anon_sym_GT_GT_EQ] = ACTIONS(7624), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7624), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7624), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [aux_sym_preproc_if_token3] = ACTIONS(5508), + [aux_sym_preproc_else_token1] = ACTIONS(5508), + [aux_sym_preproc_elif_token1] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -631255,6 +622950,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4893] = { + [sym_argument_list] = STATE(3659), + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3507), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3624), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(4893), [sym_preproc_endregion] = STATE(4893), [sym_preproc_line] = STATE(4893), @@ -631264,57 +622978,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4893), [sym_preproc_define] = STATE(4893), [sym_preproc_undef] = STATE(4893), - [anon_sym_SEMI] = ACTIONS(7112), - [anon_sym_LBRACK] = ACTIONS(7112), - [anon_sym_COLON] = ACTIONS(7112), - [anon_sym_COMMA] = ACTIONS(7112), - [anon_sym_RBRACK] = ACTIONS(7112), - [anon_sym_LPAREN] = ACTIONS(7112), - [anon_sym_RPAREN] = ACTIONS(7112), - [anon_sym_RBRACE] = ACTIONS(7112), - [anon_sym_LT] = ACTIONS(7114), - [anon_sym_GT] = ACTIONS(7114), - [anon_sym_in] = ACTIONS(7114), - [anon_sym_QMARK] = ACTIONS(7114), - [anon_sym_BANG] = ACTIONS(7114), - [anon_sym_PLUS_PLUS] = ACTIONS(7112), - [anon_sym_DASH_DASH] = ACTIONS(7112), - [anon_sym_PLUS] = ACTIONS(7114), - [anon_sym_DASH] = ACTIONS(7114), - [anon_sym_STAR] = ACTIONS(7112), - [anon_sym_SLASH] = ACTIONS(7114), - [anon_sym_PERCENT] = ACTIONS(7112), - [anon_sym_CARET] = ACTIONS(7112), - [anon_sym_PIPE] = ACTIONS(7114), - [anon_sym_AMP] = ACTIONS(7114), - [anon_sym_LT_LT] = ACTIONS(7112), - [anon_sym_GT_GT] = ACTIONS(7114), - [anon_sym_GT_GT_GT] = ACTIONS(7112), - [anon_sym_EQ_EQ] = ACTIONS(7112), - [anon_sym_BANG_EQ] = ACTIONS(7112), - [anon_sym_GT_EQ] = ACTIONS(7112), - [anon_sym_LT_EQ] = ACTIONS(7112), - [anon_sym_DOT] = ACTIONS(7114), - [anon_sym_EQ_GT] = ACTIONS(7112), - [anon_sym_switch] = ACTIONS(7112), - [anon_sym_when] = ACTIONS(7112), - [anon_sym_DOT_DOT] = ACTIONS(7112), - [anon_sym_and] = ACTIONS(7112), - [anon_sym_or] = ACTIONS(7112), - [anon_sym_AMP_AMP] = ACTIONS(7112), - [anon_sym_PIPE_PIPE] = ACTIONS(7112), - [sym_op_coalescing] = ACTIONS(7112), - [anon_sym_into] = ACTIONS(7112), - [anon_sym_on] = ACTIONS(7112), - [anon_sym_equals] = ACTIONS(7112), - [anon_sym_by] = ACTIONS(7112), - [anon_sym_as] = ACTIONS(7112), - [anon_sym_is] = ACTIONS(7112), - [anon_sym_DASH_GT] = ACTIONS(7112), - [anon_sym_with] = ACTIONS(7112), - [aux_sym_preproc_if_token3] = ACTIONS(7112), - [aux_sym_preproc_else_token1] = ACTIONS(7112), - [aux_sym_preproc_elif_token1] = ACTIONS(7112), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(7502), + [anon_sym_LPAREN] = ACTIONS(7504), + [anon_sym_ref] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(7506), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7626), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -631327,15 +623020,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4894] = { - [sym__name] = STATE(5884), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(5567), - [sym__reserved_identifier] = STATE(2206), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4894), [sym_preproc_endregion] = STATE(4894), [sym_preproc_line] = STATE(4894), @@ -631345,48 +623044,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4894), [sym_preproc_define] = STATE(4894), [sym_preproc_undef] = STATE(4894), - [sym__identifier_token] = ACTIONS(3865), - [anon_sym_alias] = ACTIONS(3869), - [anon_sym_global] = ACTIONS(3869), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3873), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(2919), - [anon_sym_delegate] = ACTIONS(2919), - [anon_sym_readonly] = ACTIONS(2919), - [anon_sym_file] = ACTIONS(3869), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_out] = ACTIONS(2919), - [anon_sym_where] = ACTIONS(3869), - [anon_sym_QMARK] = ACTIONS(3696), - [anon_sym_notnull] = ACTIONS(3869), - [anon_sym_unmanaged] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_this] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_scoped] = ACTIONS(3869), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3869), - [sym_predefined_type] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(3869), - [anon_sym_when] = ACTIONS(3869), - [anon_sym_from] = ACTIONS(3869), - [anon_sym_into] = ACTIONS(3869), - [anon_sym_join] = ACTIONS(3869), - [anon_sym_on] = ACTIONS(3869), - [anon_sym_equals] = ACTIONS(3869), - [anon_sym_let] = ACTIONS(3869), - [anon_sym_orderby] = ACTIONS(3869), - [anon_sym_ascending] = ACTIONS(3869), - [anon_sym_descending] = ACTIONS(3869), - [anon_sym_group] = ACTIONS(3869), - [anon_sym_by] = ACTIONS(3869), - [anon_sym_select] = ACTIONS(3869), - [sym_grit_metavariable] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7628), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -631399,6 +623090,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4895] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4895), [sym_preproc_endregion] = STATE(4895), [sym_preproc_line] = STATE(4895), @@ -631408,57 +623114,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4895), [sym_preproc_define] = STATE(4895), [sym_preproc_undef] = STATE(4895), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_RBRACE] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PLUS_PLUS] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_CARET] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_AMP] = ACTIONS(4391), - [anon_sym_LT_LT] = ACTIONS(4393), - [anon_sym_GT_GT] = ACTIONS(4391), - [anon_sym_GT_GT_GT] = ACTIONS(4393), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_GT_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(4393), - [anon_sym_DOT] = ACTIONS(4391), - [anon_sym_EQ_GT] = ACTIONS(4393), - [anon_sym_switch] = ACTIONS(4393), - [anon_sym_when] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4393), - [anon_sym_and] = ACTIONS(4393), - [anon_sym_or] = ACTIONS(4393), - [anon_sym_AMP_AMP] = ACTIONS(4393), - [anon_sym_PIPE_PIPE] = ACTIONS(4393), - [sym_op_coalescing] = ACTIONS(4393), - [anon_sym_on] = ACTIONS(4393), - [anon_sym_equals] = ACTIONS(4393), - [anon_sym_by] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_DASH_GT] = ACTIONS(4393), - [anon_sym_with] = ACTIONS(4393), - [aux_sym_preproc_if_token3] = ACTIONS(4393), - [aux_sym_preproc_else_token1] = ACTIONS(4393), - [aux_sym_preproc_elif_token1] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7630), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -631471,6 +623160,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4896] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4896), [sym_preproc_endregion] = STATE(4896), [sym_preproc_line] = STATE(4896), @@ -631480,57 +623184,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4896), [sym_preproc_define] = STATE(4896), [sym_preproc_undef] = STATE(4896), - [anon_sym_SEMI] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4017), - [anon_sym_COLON] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_RBRACK] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym_RPAREN] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4008), - [anon_sym_GT] = ACTIONS(4008), - [anon_sym_in] = ACTIONS(4017), - [anon_sym_QMARK] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4017), - [anon_sym_DASH_DASH] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4017), - [anon_sym_SLASH] = ACTIONS(4008), - [anon_sym_PERCENT] = ACTIONS(4017), - [anon_sym_CARET] = ACTIONS(4017), - [anon_sym_PIPE] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(4017), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_GT_GT_GT] = ACTIONS(4017), - [anon_sym_EQ_EQ] = ACTIONS(4017), - [anon_sym_BANG_EQ] = ACTIONS(4017), - [anon_sym_GT_EQ] = ACTIONS(4017), - [anon_sym_LT_EQ] = ACTIONS(4017), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4017), - [anon_sym_switch] = ACTIONS(4017), - [anon_sym_when] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(4017), - [anon_sym_and] = ACTIONS(4017), - [anon_sym_or] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4017), - [anon_sym_PIPE_PIPE] = ACTIONS(4017), - [sym_op_coalescing] = ACTIONS(4017), - [anon_sym_on] = ACTIONS(4017), - [anon_sym_equals] = ACTIONS(4017), - [anon_sym_by] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4017), - [anon_sym_DASH_GT] = ACTIONS(4017), - [anon_sym_with] = ACTIONS(4017), - [aux_sym_preproc_if_token3] = ACTIONS(4017), - [aux_sym_preproc_else_token1] = ACTIONS(4017), - [aux_sym_preproc_elif_token1] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7632), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -631543,6 +623230,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4897] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4897), [sym_preproc_endregion] = STATE(4897), [sym_preproc_line] = STATE(4897), @@ -631552,57 +623254,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4897), [sym_preproc_define] = STATE(4897), [sym_preproc_undef] = STATE(4897), - [anon_sym_SEMI] = ACTIONS(6200), - [anon_sym_LBRACK] = ACTIONS(6200), - [anon_sym_COLON] = ACTIONS(6200), - [anon_sym_COMMA] = ACTIONS(6200), - [anon_sym_RBRACK] = ACTIONS(6200), - [anon_sym_LPAREN] = ACTIONS(6200), - [anon_sym_RPAREN] = ACTIONS(6200), - [anon_sym_RBRACE] = ACTIONS(6200), - [anon_sym_LT] = ACTIONS(6202), - [anon_sym_GT] = ACTIONS(6202), - [anon_sym_in] = ACTIONS(6202), - [anon_sym_QMARK] = ACTIONS(6202), - [anon_sym_BANG] = ACTIONS(6202), - [anon_sym_PLUS_PLUS] = ACTIONS(6200), - [anon_sym_DASH_DASH] = ACTIONS(6200), - [anon_sym_PLUS] = ACTIONS(6202), - [anon_sym_DASH] = ACTIONS(6202), - [anon_sym_STAR] = ACTIONS(6200), - [anon_sym_SLASH] = ACTIONS(6202), - [anon_sym_PERCENT] = ACTIONS(6200), - [anon_sym_CARET] = ACTIONS(6200), - [anon_sym_PIPE] = ACTIONS(6202), - [anon_sym_AMP] = ACTIONS(6202), - [anon_sym_LT_LT] = ACTIONS(6200), - [anon_sym_GT_GT] = ACTIONS(6202), - [anon_sym_GT_GT_GT] = ACTIONS(6200), - [anon_sym_EQ_EQ] = ACTIONS(6200), - [anon_sym_BANG_EQ] = ACTIONS(6200), - [anon_sym_GT_EQ] = ACTIONS(6200), - [anon_sym_LT_EQ] = ACTIONS(6200), - [anon_sym_DOT] = ACTIONS(6202), - [anon_sym_EQ_GT] = ACTIONS(6200), - [anon_sym_switch] = ACTIONS(6200), - [anon_sym_when] = ACTIONS(6200), - [anon_sym_DOT_DOT] = ACTIONS(6200), - [anon_sym_and] = ACTIONS(6200), - [anon_sym_or] = ACTIONS(6200), - [anon_sym_AMP_AMP] = ACTIONS(6200), - [anon_sym_PIPE_PIPE] = ACTIONS(6200), - [sym_op_coalescing] = ACTIONS(6200), - [anon_sym_into] = ACTIONS(6200), - [anon_sym_on] = ACTIONS(6200), - [anon_sym_equals] = ACTIONS(6200), - [anon_sym_by] = ACTIONS(6200), - [anon_sym_as] = ACTIONS(6200), - [anon_sym_is] = ACTIONS(6200), - [anon_sym_DASH_GT] = ACTIONS(6200), - [anon_sym_with] = ACTIONS(6200), - [aux_sym_preproc_if_token3] = ACTIONS(6200), - [aux_sym_preproc_else_token1] = ACTIONS(6200), - [aux_sym_preproc_elif_token1] = ACTIONS(6200), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_in] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -631615,6 +623300,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4898] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4898), [sym_preproc_endregion] = STATE(4898), [sym_preproc_line] = STATE(4898), @@ -631624,57 +623324,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4898), [sym_preproc_define] = STATE(4898), [sym_preproc_undef] = STATE(4898), - [anon_sym_SEMI] = ACTIONS(6196), - [anon_sym_LBRACK] = ACTIONS(6196), - [anon_sym_COLON] = ACTIONS(6196), - [anon_sym_COMMA] = ACTIONS(6196), - [anon_sym_RBRACK] = ACTIONS(6196), - [anon_sym_LPAREN] = ACTIONS(6196), - [anon_sym_RPAREN] = ACTIONS(6196), - [anon_sym_RBRACE] = ACTIONS(6196), - [anon_sym_LT] = ACTIONS(6198), - [anon_sym_GT] = ACTIONS(6198), - [anon_sym_in] = ACTIONS(6198), - [anon_sym_QMARK] = ACTIONS(6198), - [anon_sym_BANG] = ACTIONS(6198), - [anon_sym_PLUS_PLUS] = ACTIONS(6196), - [anon_sym_DASH_DASH] = ACTIONS(6196), - [anon_sym_PLUS] = ACTIONS(6198), - [anon_sym_DASH] = ACTIONS(6198), - [anon_sym_STAR] = ACTIONS(6196), - [anon_sym_SLASH] = ACTIONS(6198), - [anon_sym_PERCENT] = ACTIONS(6196), - [anon_sym_CARET] = ACTIONS(6196), - [anon_sym_PIPE] = ACTIONS(6198), - [anon_sym_AMP] = ACTIONS(6198), - [anon_sym_LT_LT] = ACTIONS(6196), - [anon_sym_GT_GT] = ACTIONS(6198), - [anon_sym_GT_GT_GT] = ACTIONS(6196), - [anon_sym_EQ_EQ] = ACTIONS(6196), - [anon_sym_BANG_EQ] = ACTIONS(6196), - [anon_sym_GT_EQ] = ACTIONS(6196), - [anon_sym_LT_EQ] = ACTIONS(6196), - [anon_sym_DOT] = ACTIONS(6198), - [anon_sym_EQ_GT] = ACTIONS(6196), - [anon_sym_switch] = ACTIONS(6196), - [anon_sym_when] = ACTIONS(6196), - [anon_sym_DOT_DOT] = ACTIONS(6196), - [anon_sym_and] = ACTIONS(6196), - [anon_sym_or] = ACTIONS(6196), - [anon_sym_AMP_AMP] = ACTIONS(6196), - [anon_sym_PIPE_PIPE] = ACTIONS(6196), - [sym_op_coalescing] = ACTIONS(6196), - [anon_sym_into] = ACTIONS(6196), - [anon_sym_on] = ACTIONS(6196), - [anon_sym_equals] = ACTIONS(6196), - [anon_sym_by] = ACTIONS(6196), - [anon_sym_as] = ACTIONS(6196), - [anon_sym_is] = ACTIONS(6196), - [anon_sym_DASH_GT] = ACTIONS(6196), - [anon_sym_with] = ACTIONS(6196), - [aux_sym_preproc_if_token3] = ACTIONS(6196), - [aux_sym_preproc_else_token1] = ACTIONS(6196), - [aux_sym_preproc_elif_token1] = ACTIONS(6196), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7634), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -631687,6 +623370,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4899] = { + [sym_argument_list] = STATE(3659), + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3507), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3624), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(4899), [sym_preproc_endregion] = STATE(4899), [sym_preproc_line] = STATE(4899), @@ -631696,57 +623398,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4899), [sym_preproc_define] = STATE(4899), [sym_preproc_undef] = STATE(4899), - [anon_sym_SEMI] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(6389), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_COMMA] = ACTIONS(6389), - [anon_sym_RBRACK] = ACTIONS(6389), - [anon_sym_LPAREN] = ACTIONS(6389), - [anon_sym_RPAREN] = ACTIONS(6389), - [anon_sym_RBRACE] = ACTIONS(6389), - [anon_sym_LT] = ACTIONS(6391), - [anon_sym_GT] = ACTIONS(6391), - [anon_sym_in] = ACTIONS(6391), - [anon_sym_QMARK] = ACTIONS(6391), - [anon_sym_BANG] = ACTIONS(6391), - [anon_sym_PLUS_PLUS] = ACTIONS(6389), - [anon_sym_DASH_DASH] = ACTIONS(6389), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6389), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_PERCENT] = ACTIONS(6389), - [anon_sym_CARET] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6391), - [anon_sym_AMP] = ACTIONS(6391), - [anon_sym_LT_LT] = ACTIONS(6389), - [anon_sym_GT_GT] = ACTIONS(6391), - [anon_sym_GT_GT_GT] = ACTIONS(6389), - [anon_sym_EQ_EQ] = ACTIONS(6389), - [anon_sym_BANG_EQ] = ACTIONS(6389), - [anon_sym_GT_EQ] = ACTIONS(6389), - [anon_sym_LT_EQ] = ACTIONS(6389), - [anon_sym_DOT] = ACTIONS(6391), - [anon_sym_EQ_GT] = ACTIONS(6389), - [anon_sym_switch] = ACTIONS(6389), - [anon_sym_when] = ACTIONS(6389), - [anon_sym_DOT_DOT] = ACTIONS(6389), - [anon_sym_and] = ACTIONS(6389), - [anon_sym_or] = ACTIONS(6389), - [anon_sym_AMP_AMP] = ACTIONS(6389), - [anon_sym_PIPE_PIPE] = ACTIONS(6389), - [sym_op_coalescing] = ACTIONS(6389), - [anon_sym_into] = ACTIONS(6389), - [anon_sym_on] = ACTIONS(6389), - [anon_sym_equals] = ACTIONS(6389), - [anon_sym_by] = ACTIONS(6389), - [anon_sym_as] = ACTIONS(6389), - [anon_sym_is] = ACTIONS(6389), - [anon_sym_DASH_GT] = ACTIONS(6389), - [anon_sym_with] = ACTIONS(6389), - [aux_sym_preproc_if_token3] = ACTIONS(6389), - [aux_sym_preproc_else_token1] = ACTIONS(6389), - [aux_sym_preproc_elif_token1] = ACTIONS(6389), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(7502), + [anon_sym_LPAREN] = ACTIONS(7504), + [anon_sym_ref] = ACTIONS(4501), + [anon_sym_LBRACE] = ACTIONS(7506), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7636), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -631759,6 +623440,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4900] = { + [sym_identifier] = STATE(7959), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(4900), [sym_preproc_endregion] = STATE(4900), [sym_preproc_line] = STATE(4900), @@ -631768,57 +623451,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4900), [sym_preproc_define] = STATE(4900), [sym_preproc_undef] = STATE(4900), - [anon_sym_EQ] = ACTIONS(7116), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_EQ_GT] = ACTIONS(5684), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_when] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7118), - [anon_sym_DASH_EQ] = ACTIONS(7118), - [anon_sym_STAR_EQ] = ACTIONS(7118), - [anon_sym_SLASH_EQ] = ACTIONS(7118), - [anon_sym_PERCENT_EQ] = ACTIONS(7118), - [anon_sym_AMP_EQ] = ACTIONS(7118), - [anon_sym_CARET_EQ] = ACTIONS(7118), - [anon_sym_PIPE_EQ] = ACTIONS(7118), - [anon_sym_LT_LT_EQ] = ACTIONS(7118), - [anon_sym_GT_GT_EQ] = ACTIONS(7118), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7118), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7118), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [sym__identifier_token] = ACTIONS(7638), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(7642), + [anon_sym_global] = ACTIONS(7642), + [anon_sym_unsafe] = ACTIONS(7646), + [anon_sym_static] = ACTIONS(7646), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(7642), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(7642), + [anon_sym_notnull] = ACTIONS(7642), + [anon_sym_unmanaged] = ACTIONS(7642), + [anon_sym_scoped] = ACTIONS(7642), + [anon_sym_var] = ACTIONS(7642), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(7642), + [anon_sym_when] = ACTIONS(7642), + [anon_sym_from] = ACTIONS(7642), + [anon_sym_into] = ACTIONS(7642), + [anon_sym_join] = ACTIONS(7642), + [anon_sym_on] = ACTIONS(7642), + [anon_sym_equals] = ACTIONS(7642), + [anon_sym_let] = ACTIONS(7642), + [anon_sym_orderby] = ACTIONS(7642), + [anon_sym_ascending] = ACTIONS(7642), + [anon_sym_descending] = ACTIONS(7642), + [anon_sym_group] = ACTIONS(7642), + [anon_sym_by] = ACTIONS(7642), + [anon_sym_select] = ACTIONS(7642), + [sym_grit_metavariable] = ACTIONS(7649), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -631831,6 +623510,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4901] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4901), [sym_preproc_endregion] = STATE(4901), [sym_preproc_line] = STATE(4901), @@ -631840,57 +623534,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4901), [sym_preproc_define] = STATE(4901), [sym_preproc_undef] = STATE(4901), - [anon_sym_SEMI] = ACTIONS(6321), - [anon_sym_LBRACK] = ACTIONS(6321), - [anon_sym_COLON] = ACTIONS(6321), - [anon_sym_COMMA] = ACTIONS(6321), - [anon_sym_RBRACK] = ACTIONS(6321), - [anon_sym_LPAREN] = ACTIONS(6321), - [anon_sym_RPAREN] = ACTIONS(6321), - [anon_sym_RBRACE] = ACTIONS(6321), - [anon_sym_LT] = ACTIONS(6323), - [anon_sym_GT] = ACTIONS(6323), - [anon_sym_in] = ACTIONS(6323), - [anon_sym_QMARK] = ACTIONS(6323), - [anon_sym_BANG] = ACTIONS(6323), - [anon_sym_PLUS_PLUS] = ACTIONS(6321), - [anon_sym_DASH_DASH] = ACTIONS(6321), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6321), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_PERCENT] = ACTIONS(6321), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_AMP] = ACTIONS(6323), - [anon_sym_LT_LT] = ACTIONS(6321), - [anon_sym_GT_GT] = ACTIONS(6323), - [anon_sym_GT_GT_GT] = ACTIONS(6321), - [anon_sym_EQ_EQ] = ACTIONS(6321), - [anon_sym_BANG_EQ] = ACTIONS(6321), - [anon_sym_GT_EQ] = ACTIONS(6321), - [anon_sym_LT_EQ] = ACTIONS(6321), - [anon_sym_DOT] = ACTIONS(6323), - [anon_sym_EQ_GT] = ACTIONS(6321), - [anon_sym_switch] = ACTIONS(6321), - [anon_sym_when] = ACTIONS(6321), - [anon_sym_DOT_DOT] = ACTIONS(6321), - [anon_sym_and] = ACTIONS(6321), - [anon_sym_or] = ACTIONS(6321), - [anon_sym_AMP_AMP] = ACTIONS(6321), - [anon_sym_PIPE_PIPE] = ACTIONS(6321), - [sym_op_coalescing] = ACTIONS(6321), - [anon_sym_into] = ACTIONS(6321), - [anon_sym_on] = ACTIONS(6321), - [anon_sym_equals] = ACTIONS(6321), - [anon_sym_by] = ACTIONS(6321), - [anon_sym_as] = ACTIONS(6321), - [anon_sym_is] = ACTIONS(6321), - [anon_sym_DASH_GT] = ACTIONS(6321), - [anon_sym_with] = ACTIONS(6321), - [aux_sym_preproc_if_token3] = ACTIONS(6321), - [aux_sym_preproc_else_token1] = ACTIONS(6321), - [aux_sym_preproc_elif_token1] = ACTIONS(6321), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7653), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -631903,6 +623580,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4902] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4902), [sym_preproc_endregion] = STATE(4902), [sym_preproc_line] = STATE(4902), @@ -631912,57 +623604,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4902), [sym_preproc_define] = STATE(4902), [sym_preproc_undef] = STATE(4902), - [anon_sym_SEMI] = ACTIONS(6178), - [anon_sym_LBRACK] = ACTIONS(6178), - [anon_sym_COLON] = ACTIONS(6178), - [anon_sym_COMMA] = ACTIONS(6178), - [anon_sym_RBRACK] = ACTIONS(6178), - [anon_sym_LPAREN] = ACTIONS(6178), - [anon_sym_RPAREN] = ACTIONS(6178), - [anon_sym_RBRACE] = ACTIONS(6178), - [anon_sym_LT] = ACTIONS(6180), - [anon_sym_GT] = ACTIONS(6180), - [anon_sym_in] = ACTIONS(6180), - [anon_sym_QMARK] = ACTIONS(6180), - [anon_sym_BANG] = ACTIONS(6180), - [anon_sym_PLUS_PLUS] = ACTIONS(6178), - [anon_sym_DASH_DASH] = ACTIONS(6178), - [anon_sym_PLUS] = ACTIONS(6180), - [anon_sym_DASH] = ACTIONS(6180), - [anon_sym_STAR] = ACTIONS(6178), - [anon_sym_SLASH] = ACTIONS(6180), - [anon_sym_PERCENT] = ACTIONS(6178), - [anon_sym_CARET] = ACTIONS(6178), - [anon_sym_PIPE] = ACTIONS(6180), - [anon_sym_AMP] = ACTIONS(6180), - [anon_sym_LT_LT] = ACTIONS(6178), - [anon_sym_GT_GT] = ACTIONS(6180), - [anon_sym_GT_GT_GT] = ACTIONS(6178), - [anon_sym_EQ_EQ] = ACTIONS(6178), - [anon_sym_BANG_EQ] = ACTIONS(6178), - [anon_sym_GT_EQ] = ACTIONS(6178), - [anon_sym_LT_EQ] = ACTIONS(6178), - [anon_sym_DOT] = ACTIONS(6180), - [anon_sym_EQ_GT] = ACTIONS(6178), - [anon_sym_switch] = ACTIONS(6178), - [anon_sym_when] = ACTIONS(6178), - [anon_sym_DOT_DOT] = ACTIONS(6178), - [anon_sym_and] = ACTIONS(6178), - [anon_sym_or] = ACTIONS(6178), - [anon_sym_AMP_AMP] = ACTIONS(6178), - [anon_sym_PIPE_PIPE] = ACTIONS(6178), - [sym_op_coalescing] = ACTIONS(6178), - [anon_sym_into] = ACTIONS(6178), - [anon_sym_on] = ACTIONS(6178), - [anon_sym_equals] = ACTIONS(6178), - [anon_sym_by] = ACTIONS(6178), - [anon_sym_as] = ACTIONS(6178), - [anon_sym_is] = ACTIONS(6178), - [anon_sym_DASH_GT] = ACTIONS(6178), - [anon_sym_with] = ACTIONS(6178), - [aux_sym_preproc_if_token3] = ACTIONS(6178), - [aux_sym_preproc_else_token1] = ACTIONS(6178), - [aux_sym_preproc_elif_token1] = ACTIONS(6178), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7655), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -631975,6 +623650,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4903] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4903), [sym_preproc_endregion] = STATE(4903), [sym_preproc_line] = STATE(4903), @@ -631984,57 +623674,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4903), [sym_preproc_define] = STATE(4903), [sym_preproc_undef] = STATE(4903), - [anon_sym_SEMI] = ACTIONS(6174), - [anon_sym_LBRACK] = ACTIONS(6174), - [anon_sym_COLON] = ACTIONS(6174), - [anon_sym_COMMA] = ACTIONS(6174), - [anon_sym_RBRACK] = ACTIONS(6174), - [anon_sym_LPAREN] = ACTIONS(6174), - [anon_sym_RPAREN] = ACTIONS(6174), - [anon_sym_RBRACE] = ACTIONS(6174), - [anon_sym_LT] = ACTIONS(6176), - [anon_sym_GT] = ACTIONS(6176), - [anon_sym_in] = ACTIONS(6176), - [anon_sym_QMARK] = ACTIONS(6176), - [anon_sym_BANG] = ACTIONS(6176), - [anon_sym_PLUS_PLUS] = ACTIONS(6174), - [anon_sym_DASH_DASH] = ACTIONS(6174), - [anon_sym_PLUS] = ACTIONS(6176), - [anon_sym_DASH] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(6174), - [anon_sym_SLASH] = ACTIONS(6176), - [anon_sym_PERCENT] = ACTIONS(6174), - [anon_sym_CARET] = ACTIONS(6174), - [anon_sym_PIPE] = ACTIONS(6176), - [anon_sym_AMP] = ACTIONS(6176), - [anon_sym_LT_LT] = ACTIONS(6174), - [anon_sym_GT_GT] = ACTIONS(6176), - [anon_sym_GT_GT_GT] = ACTIONS(6174), - [anon_sym_EQ_EQ] = ACTIONS(6174), - [anon_sym_BANG_EQ] = ACTIONS(6174), - [anon_sym_GT_EQ] = ACTIONS(6174), - [anon_sym_LT_EQ] = ACTIONS(6174), - [anon_sym_DOT] = ACTIONS(6176), - [anon_sym_EQ_GT] = ACTIONS(6174), - [anon_sym_switch] = ACTIONS(6174), - [anon_sym_when] = ACTIONS(6174), - [anon_sym_DOT_DOT] = ACTIONS(6174), - [anon_sym_and] = ACTIONS(6174), - [anon_sym_or] = ACTIONS(6174), - [anon_sym_AMP_AMP] = ACTIONS(6174), - [anon_sym_PIPE_PIPE] = ACTIONS(6174), - [sym_op_coalescing] = ACTIONS(6174), - [anon_sym_into] = ACTIONS(6174), - [anon_sym_on] = ACTIONS(6174), - [anon_sym_equals] = ACTIONS(6174), - [anon_sym_by] = ACTIONS(6174), - [anon_sym_as] = ACTIONS(6174), - [anon_sym_is] = ACTIONS(6174), - [anon_sym_DASH_GT] = ACTIONS(6174), - [anon_sym_with] = ACTIONS(6174), - [aux_sym_preproc_if_token3] = ACTIONS(6174), - [aux_sym_preproc_else_token1] = ACTIONS(6174), - [aux_sym_preproc_elif_token1] = ACTIONS(6174), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7542), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(7556), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(7558), + [anon_sym_is] = ACTIONS(7560), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -632047,6 +623720,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4904] = { + [sym_argument_list] = STATE(3659), + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3507), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3624), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(4904), [sym_preproc_endregion] = STATE(4904), [sym_preproc_line] = STATE(4904), @@ -632056,57 +623748,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4904), [sym_preproc_define] = STATE(4904), [sym_preproc_undef] = STATE(4904), - [anon_sym_SEMI] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7120), - [anon_sym_COLON] = ACTIONS(7120), - [anon_sym_COMMA] = ACTIONS(7120), - [anon_sym_RBRACK] = ACTIONS(7120), - [anon_sym_LPAREN] = ACTIONS(7120), - [anon_sym_RPAREN] = ACTIONS(7120), - [anon_sym_RBRACE] = ACTIONS(7120), - [anon_sym_LT] = ACTIONS(7122), - [anon_sym_GT] = ACTIONS(7122), - [anon_sym_in] = ACTIONS(7122), - [anon_sym_QMARK] = ACTIONS(7122), - [anon_sym_BANG] = ACTIONS(7122), - [anon_sym_PLUS_PLUS] = ACTIONS(7120), - [anon_sym_DASH_DASH] = ACTIONS(7120), - [anon_sym_PLUS] = ACTIONS(7122), - [anon_sym_DASH] = ACTIONS(7122), - [anon_sym_STAR] = ACTIONS(7120), - [anon_sym_SLASH] = ACTIONS(7122), - [anon_sym_PERCENT] = ACTIONS(7120), - [anon_sym_CARET] = ACTIONS(7120), - [anon_sym_PIPE] = ACTIONS(7122), - [anon_sym_AMP] = ACTIONS(7122), - [anon_sym_LT_LT] = ACTIONS(7120), - [anon_sym_GT_GT] = ACTIONS(7122), - [anon_sym_GT_GT_GT] = ACTIONS(7120), - [anon_sym_EQ_EQ] = ACTIONS(7120), - [anon_sym_BANG_EQ] = ACTIONS(7120), - [anon_sym_GT_EQ] = ACTIONS(7120), - [anon_sym_LT_EQ] = ACTIONS(7120), - [anon_sym_DOT] = ACTIONS(7122), - [anon_sym_EQ_GT] = ACTIONS(7120), - [anon_sym_switch] = ACTIONS(7120), - [anon_sym_when] = ACTIONS(7120), - [anon_sym_DOT_DOT] = ACTIONS(7120), - [anon_sym_and] = ACTIONS(7120), - [anon_sym_or] = ACTIONS(7120), - [anon_sym_AMP_AMP] = ACTIONS(7120), - [anon_sym_PIPE_PIPE] = ACTIONS(7120), - [sym_op_coalescing] = ACTIONS(7120), - [anon_sym_into] = ACTIONS(7120), - [anon_sym_on] = ACTIONS(7120), - [anon_sym_equals] = ACTIONS(7120), - [anon_sym_by] = ACTIONS(7120), - [anon_sym_as] = ACTIONS(7120), - [anon_sym_is] = ACTIONS(7120), - [anon_sym_DASH_GT] = ACTIONS(7120), - [anon_sym_with] = ACTIONS(7120), - [aux_sym_preproc_if_token3] = ACTIONS(7120), - [aux_sym_preproc_else_token1] = ACTIONS(7120), - [aux_sym_preproc_elif_token1] = ACTIONS(7120), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(7502), + [anon_sym_LPAREN] = ACTIONS(7504), + [anon_sym_ref] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(7506), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7657), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -632119,6 +623790,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4905] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4905), [sym_preproc_endregion] = STATE(4905), [sym_preproc_line] = STATE(4905), @@ -632128,57 +623814,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4905), [sym_preproc_define] = STATE(4905), [sym_preproc_undef] = STATE(4905), - [anon_sym_SEMI] = ACTIONS(7124), - [anon_sym_LBRACK] = ACTIONS(7124), - [anon_sym_COLON] = ACTIONS(7124), - [anon_sym_COMMA] = ACTIONS(7124), - [anon_sym_RBRACK] = ACTIONS(7124), - [anon_sym_LPAREN] = ACTIONS(7124), - [anon_sym_RPAREN] = ACTIONS(7124), - [anon_sym_RBRACE] = ACTIONS(7124), - [anon_sym_LT] = ACTIONS(7126), - [anon_sym_GT] = ACTIONS(7126), - [anon_sym_in] = ACTIONS(7126), - [anon_sym_QMARK] = ACTIONS(7126), - [anon_sym_BANG] = ACTIONS(7126), - [anon_sym_PLUS_PLUS] = ACTIONS(7124), - [anon_sym_DASH_DASH] = ACTIONS(7124), - [anon_sym_PLUS] = ACTIONS(7126), - [anon_sym_DASH] = ACTIONS(7126), - [anon_sym_STAR] = ACTIONS(7124), - [anon_sym_SLASH] = ACTIONS(7126), - [anon_sym_PERCENT] = ACTIONS(7124), - [anon_sym_CARET] = ACTIONS(7124), - [anon_sym_PIPE] = ACTIONS(7126), - [anon_sym_AMP] = ACTIONS(7126), - [anon_sym_LT_LT] = ACTIONS(7124), - [anon_sym_GT_GT] = ACTIONS(7126), - [anon_sym_GT_GT_GT] = ACTIONS(7124), - [anon_sym_EQ_EQ] = ACTIONS(7124), - [anon_sym_BANG_EQ] = ACTIONS(7124), - [anon_sym_GT_EQ] = ACTIONS(7124), - [anon_sym_LT_EQ] = ACTIONS(7124), - [anon_sym_DOT] = ACTIONS(7126), - [anon_sym_EQ_GT] = ACTIONS(7124), - [anon_sym_switch] = ACTIONS(7124), - [anon_sym_when] = ACTIONS(7124), - [anon_sym_DOT_DOT] = ACTIONS(7124), - [anon_sym_and] = ACTIONS(7124), - [anon_sym_or] = ACTIONS(7124), - [anon_sym_AMP_AMP] = ACTIONS(7124), - [anon_sym_PIPE_PIPE] = ACTIONS(7124), - [sym_op_coalescing] = ACTIONS(7124), - [anon_sym_into] = ACTIONS(7124), - [anon_sym_on] = ACTIONS(7124), - [anon_sym_equals] = ACTIONS(7124), - [anon_sym_by] = ACTIONS(7124), - [anon_sym_as] = ACTIONS(7124), - [anon_sym_is] = ACTIONS(7124), - [anon_sym_DASH_GT] = ACTIONS(7124), - [anon_sym_with] = ACTIONS(7124), - [aux_sym_preproc_if_token3] = ACTIONS(7124), - [aux_sym_preproc_else_token1] = ACTIONS(7124), - [aux_sym_preproc_elif_token1] = ACTIONS(7124), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7659), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -632191,6 +623860,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4906] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4906), [sym_preproc_endregion] = STATE(4906), [sym_preproc_line] = STATE(4906), @@ -632200,57 +623884,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4906), [sym_preproc_define] = STATE(4906), [sym_preproc_undef] = STATE(4906), - [anon_sym_SEMI] = ACTIONS(7124), - [anon_sym_LBRACK] = ACTIONS(7124), - [anon_sym_COLON] = ACTIONS(7124), - [anon_sym_COMMA] = ACTIONS(7124), - [anon_sym_RBRACK] = ACTIONS(7124), - [anon_sym_LPAREN] = ACTIONS(7124), - [anon_sym_RPAREN] = ACTIONS(7124), - [anon_sym_RBRACE] = ACTIONS(7124), - [anon_sym_LT] = ACTIONS(7126), - [anon_sym_GT] = ACTIONS(7126), - [anon_sym_in] = ACTIONS(7126), - [anon_sym_QMARK] = ACTIONS(7126), - [anon_sym_BANG] = ACTIONS(7126), - [anon_sym_PLUS_PLUS] = ACTIONS(7124), - [anon_sym_DASH_DASH] = ACTIONS(7124), - [anon_sym_PLUS] = ACTIONS(7126), - [anon_sym_DASH] = ACTIONS(7126), - [anon_sym_STAR] = ACTIONS(7124), - [anon_sym_SLASH] = ACTIONS(7126), - [anon_sym_PERCENT] = ACTIONS(7124), - [anon_sym_CARET] = ACTIONS(7124), - [anon_sym_PIPE] = ACTIONS(7126), - [anon_sym_AMP] = ACTIONS(7126), - [anon_sym_LT_LT] = ACTIONS(7124), - [anon_sym_GT_GT] = ACTIONS(7126), - [anon_sym_GT_GT_GT] = ACTIONS(7124), - [anon_sym_EQ_EQ] = ACTIONS(7124), - [anon_sym_BANG_EQ] = ACTIONS(7124), - [anon_sym_GT_EQ] = ACTIONS(7124), - [anon_sym_LT_EQ] = ACTIONS(7124), - [anon_sym_DOT] = ACTIONS(7126), - [anon_sym_EQ_GT] = ACTIONS(7124), - [anon_sym_switch] = ACTIONS(7124), - [anon_sym_when] = ACTIONS(7124), - [anon_sym_DOT_DOT] = ACTIONS(7124), - [anon_sym_and] = ACTIONS(7124), - [anon_sym_or] = ACTIONS(7124), - [anon_sym_AMP_AMP] = ACTIONS(7124), - [anon_sym_PIPE_PIPE] = ACTIONS(7124), - [sym_op_coalescing] = ACTIONS(7124), - [anon_sym_into] = ACTIONS(7124), - [anon_sym_on] = ACTIONS(7124), - [anon_sym_equals] = ACTIONS(7124), - [anon_sym_by] = ACTIONS(7124), - [anon_sym_as] = ACTIONS(7124), - [anon_sym_is] = ACTIONS(7124), - [anon_sym_DASH_GT] = ACTIONS(7124), - [anon_sym_with] = ACTIONS(7124), - [aux_sym_preproc_if_token3] = ACTIONS(7124), - [aux_sym_preproc_else_token1] = ACTIONS(7124), - [aux_sym_preproc_elif_token1] = ACTIONS(7124), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -632263,6 +623930,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4907] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4907), [sym_preproc_endregion] = STATE(4907), [sym_preproc_line] = STATE(4907), @@ -632272,57 +623954,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4907), [sym_preproc_define] = STATE(4907), [sym_preproc_undef] = STATE(4907), - [anon_sym_SEMI] = ACTIONS(7128), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_COLON] = ACTIONS(7128), - [anon_sym_COMMA] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(7128), - [anon_sym_LPAREN] = ACTIONS(7128), - [anon_sym_RPAREN] = ACTIONS(7128), - [anon_sym_RBRACE] = ACTIONS(7128), - [anon_sym_LT] = ACTIONS(7130), - [anon_sym_GT] = ACTIONS(7130), - [anon_sym_in] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(7130), - [anon_sym_BANG] = ACTIONS(7130), - [anon_sym_PLUS_PLUS] = ACTIONS(7128), - [anon_sym_DASH_DASH] = ACTIONS(7128), - [anon_sym_PLUS] = ACTIONS(7130), - [anon_sym_DASH] = ACTIONS(7130), - [anon_sym_STAR] = ACTIONS(7128), - [anon_sym_SLASH] = ACTIONS(7130), - [anon_sym_PERCENT] = ACTIONS(7128), - [anon_sym_CARET] = ACTIONS(7128), - [anon_sym_PIPE] = ACTIONS(7130), - [anon_sym_AMP] = ACTIONS(7130), - [anon_sym_LT_LT] = ACTIONS(7128), - [anon_sym_GT_GT] = ACTIONS(7130), - [anon_sym_GT_GT_GT] = ACTIONS(7128), - [anon_sym_EQ_EQ] = ACTIONS(7128), - [anon_sym_BANG_EQ] = ACTIONS(7128), - [anon_sym_GT_EQ] = ACTIONS(7128), - [anon_sym_LT_EQ] = ACTIONS(7128), - [anon_sym_DOT] = ACTIONS(7130), - [anon_sym_EQ_GT] = ACTIONS(7128), - [anon_sym_switch] = ACTIONS(7128), - [anon_sym_when] = ACTIONS(7128), - [anon_sym_DOT_DOT] = ACTIONS(7128), - [anon_sym_and] = ACTIONS(7128), - [anon_sym_or] = ACTIONS(7128), - [anon_sym_AMP_AMP] = ACTIONS(7128), - [anon_sym_PIPE_PIPE] = ACTIONS(7128), - [sym_op_coalescing] = ACTIONS(7128), - [anon_sym_into] = ACTIONS(7128), - [anon_sym_on] = ACTIONS(7128), - [anon_sym_equals] = ACTIONS(7128), - [anon_sym_by] = ACTIONS(7128), - [anon_sym_as] = ACTIONS(7128), - [anon_sym_is] = ACTIONS(7128), - [anon_sym_DASH_GT] = ACTIONS(7128), - [anon_sym_with] = ACTIONS(7128), - [aux_sym_preproc_if_token3] = ACTIONS(7128), - [aux_sym_preproc_else_token1] = ACTIONS(7128), - [aux_sym_preproc_elif_token1] = ACTIONS(7128), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7661), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -632335,6 +624000,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4908] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4908), [sym_preproc_endregion] = STATE(4908), [sym_preproc_line] = STATE(4908), @@ -632344,57 +624024,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4908), [sym_preproc_define] = STATE(4908), [sym_preproc_undef] = STATE(4908), - [anon_sym_SEMI] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(6007), - [anon_sym_COLON] = ACTIONS(6007), - [anon_sym_COMMA] = ACTIONS(6007), - [anon_sym_RBRACK] = ACTIONS(6007), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_RPAREN] = ACTIONS(6007), - [anon_sym_RBRACE] = ACTIONS(6007), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_in] = ACTIONS(6009), - [anon_sym_QMARK] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PLUS_PLUS] = ACTIONS(6007), - [anon_sym_DASH_DASH] = ACTIONS(6007), - [anon_sym_PLUS] = ACTIONS(6009), - [anon_sym_DASH] = ACTIONS(6009), - [anon_sym_STAR] = ACTIONS(6007), - [anon_sym_SLASH] = ACTIONS(6009), - [anon_sym_PERCENT] = ACTIONS(6007), - [anon_sym_CARET] = ACTIONS(6007), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_AMP] = ACTIONS(6009), - [anon_sym_LT_LT] = ACTIONS(6007), - [anon_sym_GT_GT] = ACTIONS(6009), - [anon_sym_GT_GT_GT] = ACTIONS(6007), - [anon_sym_EQ_EQ] = ACTIONS(6007), - [anon_sym_BANG_EQ] = ACTIONS(6007), - [anon_sym_GT_EQ] = ACTIONS(6007), - [anon_sym_LT_EQ] = ACTIONS(6007), - [anon_sym_DOT] = ACTIONS(6009), - [anon_sym_EQ_GT] = ACTIONS(6007), - [anon_sym_switch] = ACTIONS(6007), - [anon_sym_when] = ACTIONS(6007), - [anon_sym_DOT_DOT] = ACTIONS(6007), - [anon_sym_and] = ACTIONS(6007), - [anon_sym_or] = ACTIONS(6007), - [anon_sym_AMP_AMP] = ACTIONS(6007), - [anon_sym_PIPE_PIPE] = ACTIONS(6007), - [sym_op_coalescing] = ACTIONS(6007), - [anon_sym_into] = ACTIONS(6007), - [anon_sym_on] = ACTIONS(6007), - [anon_sym_equals] = ACTIONS(6007), - [anon_sym_by] = ACTIONS(6007), - [anon_sym_as] = ACTIONS(6007), - [anon_sym_is] = ACTIONS(6007), - [anon_sym_DASH_GT] = ACTIONS(6007), - [anon_sym_with] = ACTIONS(6007), - [aux_sym_preproc_if_token3] = ACTIONS(6007), - [aux_sym_preproc_else_token1] = ACTIONS(6007), - [aux_sym_preproc_elif_token1] = ACTIONS(6007), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7663), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -632407,6 +624070,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4909] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4909), [sym_preproc_endregion] = STATE(4909), [sym_preproc_line] = STATE(4909), @@ -632416,57 +624094,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4909), [sym_preproc_define] = STATE(4909), [sym_preproc_undef] = STATE(4909), - [anon_sym_SEMI] = ACTIONS(7132), - [anon_sym_LBRACK] = ACTIONS(7132), - [anon_sym_COLON] = ACTIONS(7132), - [anon_sym_COMMA] = ACTIONS(7132), - [anon_sym_RBRACK] = ACTIONS(7132), - [anon_sym_LPAREN] = ACTIONS(7132), - [anon_sym_RPAREN] = ACTIONS(7132), - [anon_sym_RBRACE] = ACTIONS(7132), - [anon_sym_LT] = ACTIONS(7134), - [anon_sym_GT] = ACTIONS(7134), - [anon_sym_in] = ACTIONS(7134), - [anon_sym_QMARK] = ACTIONS(7134), - [anon_sym_BANG] = ACTIONS(7134), - [anon_sym_PLUS_PLUS] = ACTIONS(7132), - [anon_sym_DASH_DASH] = ACTIONS(7132), - [anon_sym_PLUS] = ACTIONS(7134), - [anon_sym_DASH] = ACTIONS(7134), - [anon_sym_STAR] = ACTIONS(7132), - [anon_sym_SLASH] = ACTIONS(7134), - [anon_sym_PERCENT] = ACTIONS(7132), - [anon_sym_CARET] = ACTIONS(7132), - [anon_sym_PIPE] = ACTIONS(7134), - [anon_sym_AMP] = ACTIONS(7134), - [anon_sym_LT_LT] = ACTIONS(7132), - [anon_sym_GT_GT] = ACTIONS(7134), - [anon_sym_GT_GT_GT] = ACTIONS(7132), - [anon_sym_EQ_EQ] = ACTIONS(7132), - [anon_sym_BANG_EQ] = ACTIONS(7132), - [anon_sym_GT_EQ] = ACTIONS(7132), - [anon_sym_LT_EQ] = ACTIONS(7132), - [anon_sym_DOT] = ACTIONS(7134), - [anon_sym_EQ_GT] = ACTIONS(7132), - [anon_sym_switch] = ACTIONS(7132), - [anon_sym_when] = ACTIONS(7132), - [anon_sym_DOT_DOT] = ACTIONS(7132), - [anon_sym_and] = ACTIONS(7132), - [anon_sym_or] = ACTIONS(7132), - [anon_sym_AMP_AMP] = ACTIONS(7132), - [anon_sym_PIPE_PIPE] = ACTIONS(7132), - [sym_op_coalescing] = ACTIONS(7132), - [anon_sym_into] = ACTIONS(7132), - [anon_sym_on] = ACTIONS(7132), - [anon_sym_equals] = ACTIONS(7132), - [anon_sym_by] = ACTIONS(7132), - [anon_sym_as] = ACTIONS(7132), - [anon_sym_is] = ACTIONS(7132), - [anon_sym_DASH_GT] = ACTIONS(7132), - [anon_sym_with] = ACTIONS(7132), - [aux_sym_preproc_if_token3] = ACTIONS(7132), - [aux_sym_preproc_else_token1] = ACTIONS(7132), - [aux_sym_preproc_elif_token1] = ACTIONS(7132), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7665), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -632479,6 +624140,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4910] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4910), [sym_preproc_endregion] = STATE(4910), [sym_preproc_line] = STATE(4910), @@ -632488,57 +624164,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4910), [sym_preproc_define] = STATE(4910), [sym_preproc_undef] = STATE(4910), - [anon_sym_SEMI] = ACTIONS(6184), - [anon_sym_LBRACK] = ACTIONS(6184), - [anon_sym_COLON] = ACTIONS(6184), - [anon_sym_COMMA] = ACTIONS(6184), - [anon_sym_RBRACK] = ACTIONS(6184), - [anon_sym_LPAREN] = ACTIONS(6184), - [anon_sym_RPAREN] = ACTIONS(6184), - [anon_sym_RBRACE] = ACTIONS(6184), - [anon_sym_LT] = ACTIONS(6186), - [anon_sym_GT] = ACTIONS(6186), - [anon_sym_in] = ACTIONS(6186), - [anon_sym_QMARK] = ACTIONS(6186), - [anon_sym_BANG] = ACTIONS(6186), - [anon_sym_PLUS_PLUS] = ACTIONS(6184), - [anon_sym_DASH_DASH] = ACTIONS(6184), - [anon_sym_PLUS] = ACTIONS(6186), - [anon_sym_DASH] = ACTIONS(6186), - [anon_sym_STAR] = ACTIONS(6184), - [anon_sym_SLASH] = ACTIONS(6186), - [anon_sym_PERCENT] = ACTIONS(6184), - [anon_sym_CARET] = ACTIONS(6184), - [anon_sym_PIPE] = ACTIONS(6186), - [anon_sym_AMP] = ACTIONS(6186), - [anon_sym_LT_LT] = ACTIONS(6184), - [anon_sym_GT_GT] = ACTIONS(6186), - [anon_sym_GT_GT_GT] = ACTIONS(6184), - [anon_sym_EQ_EQ] = ACTIONS(6184), - [anon_sym_BANG_EQ] = ACTIONS(6184), - [anon_sym_GT_EQ] = ACTIONS(6184), - [anon_sym_LT_EQ] = ACTIONS(6184), - [anon_sym_DOT] = ACTIONS(6186), - [anon_sym_EQ_GT] = ACTIONS(6184), - [anon_sym_switch] = ACTIONS(6184), - [anon_sym_when] = ACTIONS(6184), - [anon_sym_DOT_DOT] = ACTIONS(6184), - [anon_sym_and] = ACTIONS(6184), - [anon_sym_or] = ACTIONS(6184), - [anon_sym_AMP_AMP] = ACTIONS(6184), - [anon_sym_PIPE_PIPE] = ACTIONS(6184), - [sym_op_coalescing] = ACTIONS(6184), - [anon_sym_into] = ACTIONS(6184), - [anon_sym_on] = ACTIONS(6184), - [anon_sym_equals] = ACTIONS(6184), - [anon_sym_by] = ACTIONS(6184), - [anon_sym_as] = ACTIONS(6184), - [anon_sym_is] = ACTIONS(6184), - [anon_sym_DASH_GT] = ACTIONS(6184), - [anon_sym_with] = ACTIONS(6184), - [aux_sym_preproc_if_token3] = ACTIONS(6184), - [aux_sym_preproc_else_token1] = ACTIONS(6184), - [aux_sym_preproc_elif_token1] = ACTIONS(6184), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7667), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -632551,6 +624210,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4911] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4911), [sym_preproc_endregion] = STATE(4911), [sym_preproc_line] = STATE(4911), @@ -632560,57 +624234,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4911), [sym_preproc_define] = STATE(4911), [sym_preproc_undef] = STATE(4911), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_COLON] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_RBRACK] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_RPAREN] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3205), - [anon_sym_EQ_EQ] = ACTIONS(3205), - [anon_sym_BANG_EQ] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3205), - [anon_sym_LT_EQ] = ACTIONS(3205), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_EQ_GT] = ACTIONS(3205), - [anon_sym_switch] = ACTIONS(3205), - [anon_sym_when] = ACTIONS(3205), - [anon_sym_DOT_DOT] = ACTIONS(3205), - [anon_sym_and] = ACTIONS(3205), - [anon_sym_or] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [sym_op_coalescing] = ACTIONS(3205), - [anon_sym_into] = ACTIONS(3205), - [anon_sym_on] = ACTIONS(3205), - [anon_sym_equals] = ACTIONS(3205), - [anon_sym_by] = ACTIONS(3205), - [anon_sym_as] = ACTIONS(3205), - [anon_sym_is] = ACTIONS(3205), - [anon_sym_DASH_GT] = ACTIONS(3205), - [anon_sym_with] = ACTIONS(3205), - [aux_sym_preproc_if_token3] = ACTIONS(3205), - [aux_sym_preproc_else_token1] = ACTIONS(3205), - [aux_sym_preproc_elif_token1] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(7669), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -632623,6 +624280,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4912] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4912), [sym_preproc_endregion] = STATE(4912), [sym_preproc_line] = STATE(4912), @@ -632632,57 +624304,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4912), [sym_preproc_define] = STATE(4912), [sym_preproc_undef] = STATE(4912), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LBRACK] = ACTIONS(4810), - [anon_sym_COLON] = ACTIONS(4810), - [anon_sym_COMMA] = ACTIONS(4810), - [anon_sym_RBRACK] = ACTIONS(4810), - [anon_sym_LPAREN] = ACTIONS(4810), - [anon_sym_RPAREN] = ACTIONS(4810), - [anon_sym_RBRACE] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4812), - [anon_sym_GT] = ACTIONS(4812), - [anon_sym_in] = ACTIONS(4812), - [anon_sym_QMARK] = ACTIONS(4812), - [anon_sym_BANG] = ACTIONS(4812), - [anon_sym_PLUS_PLUS] = ACTIONS(4810), - [anon_sym_DASH_DASH] = ACTIONS(4810), - [anon_sym_PLUS] = ACTIONS(4812), - [anon_sym_DASH] = ACTIONS(4812), - [anon_sym_STAR] = ACTIONS(4810), - [anon_sym_SLASH] = ACTIONS(4812), - [anon_sym_PERCENT] = ACTIONS(4810), - [anon_sym_CARET] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4812), - [anon_sym_AMP] = ACTIONS(4812), - [anon_sym_LT_LT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4812), - [anon_sym_GT_GT_GT] = ACTIONS(4810), - [anon_sym_EQ_EQ] = ACTIONS(4810), - [anon_sym_BANG_EQ] = ACTIONS(4810), - [anon_sym_GT_EQ] = ACTIONS(4810), - [anon_sym_LT_EQ] = ACTIONS(4810), - [anon_sym_DOT] = ACTIONS(4812), - [anon_sym_EQ_GT] = ACTIONS(4810), - [anon_sym_switch] = ACTIONS(4810), - [anon_sym_when] = ACTIONS(4810), - [anon_sym_DOT_DOT] = ACTIONS(4810), - [anon_sym_and] = ACTIONS(4810), - [anon_sym_or] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym_op_coalescing] = ACTIONS(4810), - [anon_sym_into] = ACTIONS(4810), - [anon_sym_on] = ACTIONS(4810), - [anon_sym_equals] = ACTIONS(4810), - [anon_sym_by] = ACTIONS(4810), - [anon_sym_as] = ACTIONS(4810), - [anon_sym_is] = ACTIONS(4810), - [anon_sym_DASH_GT] = ACTIONS(4810), - [anon_sym_with] = ACTIONS(4810), - [aux_sym_preproc_if_token3] = ACTIONS(4810), - [aux_sym_preproc_else_token1] = ACTIONS(4810), - [aux_sym_preproc_elif_token1] = ACTIONS(4810), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7671), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -632695,6 +624350,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4913] = { + [sym_argument_list] = STATE(3118), + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3051), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(4582), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(4913), [sym_preproc_endregion] = STATE(4913), [sym_preproc_line] = STATE(4913), @@ -632704,57 +624378,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4913), [sym_preproc_define] = STATE(4913), [sym_preproc_undef] = STATE(4913), - [anon_sym_SEMI] = ACTIONS(6192), - [anon_sym_LBRACK] = ACTIONS(6192), - [anon_sym_COLON] = ACTIONS(6192), - [anon_sym_COMMA] = ACTIONS(6192), - [anon_sym_RBRACK] = ACTIONS(6192), - [anon_sym_LPAREN] = ACTIONS(6192), - [anon_sym_RPAREN] = ACTIONS(6192), - [anon_sym_RBRACE] = ACTIONS(6192), - [anon_sym_LT] = ACTIONS(6194), - [anon_sym_GT] = ACTIONS(6194), - [anon_sym_in] = ACTIONS(6194), - [anon_sym_QMARK] = ACTIONS(6194), - [anon_sym_BANG] = ACTIONS(6194), - [anon_sym_PLUS_PLUS] = ACTIONS(6192), - [anon_sym_DASH_DASH] = ACTIONS(6192), - [anon_sym_PLUS] = ACTIONS(6194), - [anon_sym_DASH] = ACTIONS(6194), - [anon_sym_STAR] = ACTIONS(6192), - [anon_sym_SLASH] = ACTIONS(6194), - [anon_sym_PERCENT] = ACTIONS(6192), - [anon_sym_CARET] = ACTIONS(6192), - [anon_sym_PIPE] = ACTIONS(6194), - [anon_sym_AMP] = ACTIONS(6194), - [anon_sym_LT_LT] = ACTIONS(6192), - [anon_sym_GT_GT] = ACTIONS(6194), - [anon_sym_GT_GT_GT] = ACTIONS(6192), - [anon_sym_EQ_EQ] = ACTIONS(6192), - [anon_sym_BANG_EQ] = ACTIONS(6192), - [anon_sym_GT_EQ] = ACTIONS(6192), - [anon_sym_LT_EQ] = ACTIONS(6192), - [anon_sym_DOT] = ACTIONS(6194), - [anon_sym_EQ_GT] = ACTIONS(6192), - [anon_sym_switch] = ACTIONS(6192), - [anon_sym_when] = ACTIONS(6192), - [anon_sym_DOT_DOT] = ACTIONS(6192), - [anon_sym_and] = ACTIONS(6192), - [anon_sym_or] = ACTIONS(6192), - [anon_sym_AMP_AMP] = ACTIONS(6192), - [anon_sym_PIPE_PIPE] = ACTIONS(6192), - [sym_op_coalescing] = ACTIONS(6192), - [anon_sym_into] = ACTIONS(6192), - [anon_sym_on] = ACTIONS(6192), - [anon_sym_equals] = ACTIONS(6192), - [anon_sym_by] = ACTIONS(6192), - [anon_sym_as] = ACTIONS(6192), - [anon_sym_is] = ACTIONS(6192), - [anon_sym_DASH_GT] = ACTIONS(6192), - [anon_sym_with] = ACTIONS(6192), - [aux_sym_preproc_if_token3] = ACTIONS(6192), - [aux_sym_preproc_else_token1] = ACTIONS(6192), - [aux_sym_preproc_elif_token1] = ACTIONS(6192), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(7384), + [anon_sym_LPAREN] = ACTIONS(7386), + [anon_sym_ref] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(7388), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7673), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -632767,6 +624420,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4914] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4914), [sym_preproc_endregion] = STATE(4914), [sym_preproc_line] = STATE(4914), @@ -632776,57 +624444,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4914), [sym_preproc_define] = STATE(4914), [sym_preproc_undef] = STATE(4914), - [anon_sym_SEMI] = ACTIONS(7136), - [anon_sym_LBRACK] = ACTIONS(7136), - [anon_sym_COLON] = ACTIONS(7136), - [anon_sym_COMMA] = ACTIONS(7136), - [anon_sym_RBRACK] = ACTIONS(7136), - [anon_sym_LPAREN] = ACTIONS(7136), - [anon_sym_RPAREN] = ACTIONS(7136), - [anon_sym_RBRACE] = ACTIONS(7136), - [anon_sym_LT] = ACTIONS(7138), - [anon_sym_GT] = ACTIONS(7138), - [anon_sym_in] = ACTIONS(7138), - [anon_sym_QMARK] = ACTIONS(7138), - [anon_sym_BANG] = ACTIONS(7138), - [anon_sym_PLUS_PLUS] = ACTIONS(7136), - [anon_sym_DASH_DASH] = ACTIONS(7136), - [anon_sym_PLUS] = ACTIONS(7138), - [anon_sym_DASH] = ACTIONS(7138), - [anon_sym_STAR] = ACTIONS(7136), - [anon_sym_SLASH] = ACTIONS(7138), - [anon_sym_PERCENT] = ACTIONS(7136), - [anon_sym_CARET] = ACTIONS(7136), - [anon_sym_PIPE] = ACTIONS(7138), - [anon_sym_AMP] = ACTIONS(7138), - [anon_sym_LT_LT] = ACTIONS(7136), - [anon_sym_GT_GT] = ACTIONS(7138), - [anon_sym_GT_GT_GT] = ACTIONS(7136), - [anon_sym_EQ_EQ] = ACTIONS(7136), - [anon_sym_BANG_EQ] = ACTIONS(7136), - [anon_sym_GT_EQ] = ACTIONS(7136), - [anon_sym_LT_EQ] = ACTIONS(7136), - [anon_sym_DOT] = ACTIONS(7138), - [anon_sym_EQ_GT] = ACTIONS(7136), - [anon_sym_switch] = ACTIONS(7136), - [anon_sym_when] = ACTIONS(7136), - [anon_sym_DOT_DOT] = ACTIONS(7136), - [anon_sym_and] = ACTIONS(7136), - [anon_sym_or] = ACTIONS(7136), - [anon_sym_AMP_AMP] = ACTIONS(7136), - [anon_sym_PIPE_PIPE] = ACTIONS(7136), - [sym_op_coalescing] = ACTIONS(7136), - [anon_sym_into] = ACTIONS(7136), - [anon_sym_on] = ACTIONS(7136), - [anon_sym_equals] = ACTIONS(7136), - [anon_sym_by] = ACTIONS(7136), - [anon_sym_as] = ACTIONS(7136), - [anon_sym_is] = ACTIONS(7136), - [anon_sym_DASH_GT] = ACTIONS(7136), - [anon_sym_with] = ACTIONS(7136), - [aux_sym_preproc_if_token3] = ACTIONS(7136), - [aux_sym_preproc_else_token1] = ACTIONS(7136), - [aux_sym_preproc_elif_token1] = ACTIONS(7136), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7675), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -632839,6 +624490,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4915] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4915), [sym_preproc_endregion] = STATE(4915), [sym_preproc_line] = STATE(4915), @@ -632848,57 +624514,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4915), [sym_preproc_define] = STATE(4915), [sym_preproc_undef] = STATE(4915), - [anon_sym_SEMI] = ACTIONS(7136), - [anon_sym_LBRACK] = ACTIONS(7136), - [anon_sym_COLON] = ACTIONS(7136), - [anon_sym_COMMA] = ACTIONS(7136), - [anon_sym_RBRACK] = ACTIONS(7136), - [anon_sym_LPAREN] = ACTIONS(7136), - [anon_sym_RPAREN] = ACTIONS(7136), - [anon_sym_RBRACE] = ACTIONS(7136), - [anon_sym_LT] = ACTIONS(7138), - [anon_sym_GT] = ACTIONS(7138), - [anon_sym_in] = ACTIONS(7138), - [anon_sym_QMARK] = ACTIONS(7138), - [anon_sym_BANG] = ACTIONS(7138), - [anon_sym_PLUS_PLUS] = ACTIONS(7136), - [anon_sym_DASH_DASH] = ACTIONS(7136), - [anon_sym_PLUS] = ACTIONS(7138), - [anon_sym_DASH] = ACTIONS(7138), - [anon_sym_STAR] = ACTIONS(7136), - [anon_sym_SLASH] = ACTIONS(7138), - [anon_sym_PERCENT] = ACTIONS(7136), - [anon_sym_CARET] = ACTIONS(7136), - [anon_sym_PIPE] = ACTIONS(7138), - [anon_sym_AMP] = ACTIONS(7138), - [anon_sym_LT_LT] = ACTIONS(7136), - [anon_sym_GT_GT] = ACTIONS(7138), - [anon_sym_GT_GT_GT] = ACTIONS(7136), - [anon_sym_EQ_EQ] = ACTIONS(7136), - [anon_sym_BANG_EQ] = ACTIONS(7136), - [anon_sym_GT_EQ] = ACTIONS(7136), - [anon_sym_LT_EQ] = ACTIONS(7136), - [anon_sym_DOT] = ACTIONS(7138), - [anon_sym_EQ_GT] = ACTIONS(7136), - [anon_sym_switch] = ACTIONS(7136), - [anon_sym_when] = ACTIONS(7136), - [anon_sym_DOT_DOT] = ACTIONS(7136), - [anon_sym_and] = ACTIONS(7136), - [anon_sym_or] = ACTIONS(7136), - [anon_sym_AMP_AMP] = ACTIONS(7136), - [anon_sym_PIPE_PIPE] = ACTIONS(7136), - [sym_op_coalescing] = ACTIONS(7136), - [anon_sym_into] = ACTIONS(7136), - [anon_sym_on] = ACTIONS(7136), - [anon_sym_equals] = ACTIONS(7136), - [anon_sym_by] = ACTIONS(7136), - [anon_sym_as] = ACTIONS(7136), - [anon_sym_is] = ACTIONS(7136), - [anon_sym_DASH_GT] = ACTIONS(7136), - [anon_sym_with] = ACTIONS(7136), - [aux_sym_preproc_if_token3] = ACTIONS(7136), - [aux_sym_preproc_else_token1] = ACTIONS(7136), - [aux_sym_preproc_elif_token1] = ACTIONS(7136), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -632911,6 +624560,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4916] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4916), [sym_preproc_endregion] = STATE(4916), [sym_preproc_line] = STATE(4916), @@ -632920,57 +624584,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4916), [sym_preproc_define] = STATE(4916), [sym_preproc_undef] = STATE(4916), - [anon_sym_SEMI] = ACTIONS(7140), - [anon_sym_LBRACK] = ACTIONS(7140), - [anon_sym_COLON] = ACTIONS(7140), - [anon_sym_COMMA] = ACTIONS(7140), - [anon_sym_RBRACK] = ACTIONS(7140), - [anon_sym_LPAREN] = ACTIONS(7140), - [anon_sym_RPAREN] = ACTIONS(7140), - [anon_sym_RBRACE] = ACTIONS(7140), - [anon_sym_LT] = ACTIONS(7142), - [anon_sym_GT] = ACTIONS(7142), - [anon_sym_in] = ACTIONS(7142), - [anon_sym_QMARK] = ACTIONS(7142), - [anon_sym_BANG] = ACTIONS(7142), - [anon_sym_PLUS_PLUS] = ACTIONS(7140), - [anon_sym_DASH_DASH] = ACTIONS(7140), - [anon_sym_PLUS] = ACTIONS(7142), - [anon_sym_DASH] = ACTIONS(7142), - [anon_sym_STAR] = ACTIONS(7140), - [anon_sym_SLASH] = ACTIONS(7142), - [anon_sym_PERCENT] = ACTIONS(7140), - [anon_sym_CARET] = ACTIONS(7140), - [anon_sym_PIPE] = ACTIONS(7142), - [anon_sym_AMP] = ACTIONS(7142), - [anon_sym_LT_LT] = ACTIONS(7140), - [anon_sym_GT_GT] = ACTIONS(7142), - [anon_sym_GT_GT_GT] = ACTIONS(7140), - [anon_sym_EQ_EQ] = ACTIONS(7140), - [anon_sym_BANG_EQ] = ACTIONS(7140), - [anon_sym_GT_EQ] = ACTIONS(7140), - [anon_sym_LT_EQ] = ACTIONS(7140), - [anon_sym_DOT] = ACTIONS(7142), - [anon_sym_EQ_GT] = ACTIONS(7140), - [anon_sym_switch] = ACTIONS(7140), - [anon_sym_when] = ACTIONS(7140), - [anon_sym_DOT_DOT] = ACTIONS(7140), - [anon_sym_and] = ACTIONS(7140), - [anon_sym_or] = ACTIONS(7140), - [anon_sym_AMP_AMP] = ACTIONS(7140), - [anon_sym_PIPE_PIPE] = ACTIONS(7140), - [sym_op_coalescing] = ACTIONS(7140), - [anon_sym_into] = ACTIONS(7140), - [anon_sym_on] = ACTIONS(7140), - [anon_sym_equals] = ACTIONS(7140), - [anon_sym_by] = ACTIONS(7140), - [anon_sym_as] = ACTIONS(7140), - [anon_sym_is] = ACTIONS(7140), - [anon_sym_DASH_GT] = ACTIONS(7140), - [anon_sym_with] = ACTIONS(7140), - [aux_sym_preproc_if_token3] = ACTIONS(7140), - [aux_sym_preproc_else_token1] = ACTIONS(7140), - [aux_sym_preproc_elif_token1] = ACTIONS(7140), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7677), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -632983,6 +624630,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4917] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4917), [sym_preproc_endregion] = STATE(4917), [sym_preproc_line] = STATE(4917), @@ -632992,57 +624654,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4917), [sym_preproc_define] = STATE(4917), [sym_preproc_undef] = STATE(4917), - [anon_sym_SEMI] = ACTIONS(6341), - [anon_sym_LBRACK] = ACTIONS(6341), - [anon_sym_COLON] = ACTIONS(6341), - [anon_sym_COMMA] = ACTIONS(6341), - [anon_sym_RBRACK] = ACTIONS(6341), - [anon_sym_LPAREN] = ACTIONS(6341), - [anon_sym_RPAREN] = ACTIONS(6341), - [anon_sym_RBRACE] = ACTIONS(6341), - [anon_sym_LT] = ACTIONS(6343), - [anon_sym_GT] = ACTIONS(6343), - [anon_sym_in] = ACTIONS(6343), - [anon_sym_QMARK] = ACTIONS(6343), - [anon_sym_BANG] = ACTIONS(6343), - [anon_sym_PLUS_PLUS] = ACTIONS(6341), - [anon_sym_DASH_DASH] = ACTIONS(6341), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6341), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_PERCENT] = ACTIONS(6341), - [anon_sym_CARET] = ACTIONS(6341), - [anon_sym_PIPE] = ACTIONS(6343), - [anon_sym_AMP] = ACTIONS(6343), - [anon_sym_LT_LT] = ACTIONS(6341), - [anon_sym_GT_GT] = ACTIONS(6343), - [anon_sym_GT_GT_GT] = ACTIONS(6341), - [anon_sym_EQ_EQ] = ACTIONS(6341), - [anon_sym_BANG_EQ] = ACTIONS(6341), - [anon_sym_GT_EQ] = ACTIONS(6341), - [anon_sym_LT_EQ] = ACTIONS(6341), - [anon_sym_DOT] = ACTIONS(6343), - [anon_sym_EQ_GT] = ACTIONS(6341), - [anon_sym_switch] = ACTIONS(6341), - [anon_sym_when] = ACTIONS(6341), - [anon_sym_DOT_DOT] = ACTIONS(6341), - [anon_sym_and] = ACTIONS(6341), - [anon_sym_or] = ACTIONS(6341), - [anon_sym_AMP_AMP] = ACTIONS(6341), - [anon_sym_PIPE_PIPE] = ACTIONS(6341), - [sym_op_coalescing] = ACTIONS(6341), - [anon_sym_into] = ACTIONS(6341), - [anon_sym_on] = ACTIONS(6341), - [anon_sym_equals] = ACTIONS(6341), - [anon_sym_by] = ACTIONS(6341), - [anon_sym_as] = ACTIONS(6341), - [anon_sym_is] = ACTIONS(6341), - [anon_sym_DASH_GT] = ACTIONS(6341), - [anon_sym_with] = ACTIONS(6341), - [aux_sym_preproc_if_token3] = ACTIONS(6341), - [aux_sym_preproc_else_token1] = ACTIONS(6341), - [aux_sym_preproc_elif_token1] = ACTIONS(6341), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7679), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -633055,6 +624700,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4918] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4918), [sym_preproc_endregion] = STATE(4918), [sym_preproc_line] = STATE(4918), @@ -633064,57 +624724,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4918), [sym_preproc_define] = STATE(4918), [sym_preproc_undef] = STATE(4918), - [anon_sym_SEMI] = ACTIONS(6136), - [anon_sym_LBRACK] = ACTIONS(6136), - [anon_sym_COLON] = ACTIONS(6136), - [anon_sym_COMMA] = ACTIONS(6136), - [anon_sym_RBRACK] = ACTIONS(6136), - [anon_sym_LPAREN] = ACTIONS(6136), - [anon_sym_RPAREN] = ACTIONS(6136), - [anon_sym_RBRACE] = ACTIONS(6136), - [anon_sym_LT] = ACTIONS(6138), - [anon_sym_GT] = ACTIONS(6138), - [anon_sym_in] = ACTIONS(6138), - [anon_sym_QMARK] = ACTIONS(6138), - [anon_sym_BANG] = ACTIONS(6138), - [anon_sym_PLUS_PLUS] = ACTIONS(6136), - [anon_sym_DASH_DASH] = ACTIONS(6136), - [anon_sym_PLUS] = ACTIONS(6138), - [anon_sym_DASH] = ACTIONS(6138), - [anon_sym_STAR] = ACTIONS(6136), - [anon_sym_SLASH] = ACTIONS(6138), - [anon_sym_PERCENT] = ACTIONS(6136), - [anon_sym_CARET] = ACTIONS(6136), - [anon_sym_PIPE] = ACTIONS(6138), - [anon_sym_AMP] = ACTIONS(6138), - [anon_sym_LT_LT] = ACTIONS(6136), - [anon_sym_GT_GT] = ACTIONS(6138), - [anon_sym_GT_GT_GT] = ACTIONS(6136), - [anon_sym_EQ_EQ] = ACTIONS(6136), - [anon_sym_BANG_EQ] = ACTIONS(6136), - [anon_sym_GT_EQ] = ACTIONS(6136), - [anon_sym_LT_EQ] = ACTIONS(6136), - [anon_sym_DOT] = ACTIONS(6138), - [anon_sym_EQ_GT] = ACTIONS(6136), - [anon_sym_switch] = ACTIONS(6136), - [anon_sym_when] = ACTIONS(6136), - [anon_sym_DOT_DOT] = ACTIONS(6136), - [anon_sym_and] = ACTIONS(6136), - [anon_sym_or] = ACTIONS(6136), - [anon_sym_AMP_AMP] = ACTIONS(6136), - [anon_sym_PIPE_PIPE] = ACTIONS(6136), - [sym_op_coalescing] = ACTIONS(6136), - [anon_sym_into] = ACTIONS(6136), - [anon_sym_on] = ACTIONS(6136), - [anon_sym_equals] = ACTIONS(6136), - [anon_sym_by] = ACTIONS(6136), - [anon_sym_as] = ACTIONS(6136), - [anon_sym_is] = ACTIONS(6136), - [anon_sym_DASH_GT] = ACTIONS(6136), - [anon_sym_with] = ACTIONS(6136), - [aux_sym_preproc_if_token3] = ACTIONS(6136), - [aux_sym_preproc_else_token1] = ACTIONS(6136), - [aux_sym_preproc_elif_token1] = ACTIONS(6136), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7542), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(7556), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(7681), + [anon_sym_as] = ACTIONS(7558), + [anon_sym_is] = ACTIONS(7560), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -633127,6 +624770,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4919] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4919), [sym_preproc_endregion] = STATE(4919), [sym_preproc_line] = STATE(4919), @@ -633136,57 +624794,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4919), [sym_preproc_define] = STATE(4919), [sym_preproc_undef] = STATE(4919), - [sym__identifier_token] = ACTIONS(7144), - [anon_sym_extern] = ACTIONS(7144), - [anon_sym_alias] = ACTIONS(7144), - [anon_sym_global] = ACTIONS(7144), - [anon_sym_unsafe] = ACTIONS(7144), - [anon_sym_static] = ACTIONS(7144), - [anon_sym_LBRACK] = ACTIONS(7146), - [anon_sym_RBRACE] = ACTIONS(7146), - [anon_sym_public] = ACTIONS(7144), - [anon_sym_private] = ACTIONS(7144), - [anon_sym_readonly] = ACTIONS(7144), - [anon_sym_abstract] = ACTIONS(7144), - [anon_sym_async] = ACTIONS(7144), - [anon_sym_const] = ACTIONS(7144), - [anon_sym_file] = ACTIONS(7144), - [anon_sym_fixed] = ACTIONS(7144), - [anon_sym_internal] = ACTIONS(7144), - [anon_sym_new] = ACTIONS(7144), - [anon_sym_override] = ACTIONS(7144), - [anon_sym_partial] = ACTIONS(7144), - [anon_sym_protected] = ACTIONS(7144), - [anon_sym_required] = ACTIONS(7144), - [anon_sym_sealed] = ACTIONS(7144), - [anon_sym_virtual] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_where] = ACTIONS(7144), - [anon_sym_notnull] = ACTIONS(7144), - [anon_sym_unmanaged] = ACTIONS(7144), - [sym_accessor_get] = ACTIONS(7144), - [sym_accessor_set] = ACTIONS(7144), - [sym_accessor_add] = ACTIONS(7144), - [sym_accessor_remove] = ACTIONS(7144), - [sym_accessor_init] = ACTIONS(7144), - [anon_sym_scoped] = ACTIONS(7144), - [anon_sym_var] = ACTIONS(7144), - [anon_sym_yield] = ACTIONS(7144), - [anon_sym_when] = ACTIONS(7144), - [anon_sym_from] = ACTIONS(7144), - [anon_sym_into] = ACTIONS(7144), - [anon_sym_join] = ACTIONS(7144), - [anon_sym_on] = ACTIONS(7144), - [anon_sym_equals] = ACTIONS(7144), - [anon_sym_let] = ACTIONS(7144), - [anon_sym_orderby] = ACTIONS(7144), - [anon_sym_ascending] = ACTIONS(7144), - [anon_sym_descending] = ACTIONS(7144), - [anon_sym_group] = ACTIONS(7144), - [anon_sym_by] = ACTIONS(7144), - [anon_sym_select] = ACTIONS(7144), - [sym_grit_metavariable] = ACTIONS(7146), - [aux_sym_preproc_if_token1] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -633199,6 +624840,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4920] = { + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7345), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4920), [sym_preproc_endregion] = STATE(4920), [sym_preproc_line] = STATE(4920), @@ -633208,57 +624867,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4920), [sym_preproc_define] = STATE(4920), [sym_preproc_undef] = STATE(4920), - [anon_sym_SEMI] = ACTIONS(5684), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_RBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [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(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [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(5686), - [anon_sym_EQ_GT] = ACTIONS(5684), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_when] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5684), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_on] = ACTIONS(5684), - [anon_sym_equals] = ACTIONS(5684), - [anon_sym_by] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [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), + [aux_sym_type_argument_list_repeat1] = STATE(7349), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_GT] = ACTIONS(7683), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -633271,6 +624910,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4921] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4921), [sym_preproc_endregion] = STATE(4921), [sym_preproc_line] = STATE(4921), @@ -633280,57 +624934,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4921), [sym_preproc_define] = STATE(4921), [sym_preproc_undef] = STATE(4921), - [anon_sym_SEMI] = ACTIONS(6401), - [anon_sym_LBRACK] = ACTIONS(6401), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_COMMA] = ACTIONS(6401), - [anon_sym_RBRACK] = ACTIONS(6401), - [anon_sym_LPAREN] = ACTIONS(6401), - [anon_sym_RPAREN] = ACTIONS(6401), - [anon_sym_RBRACE] = ACTIONS(6401), - [anon_sym_LT] = ACTIONS(6403), - [anon_sym_GT] = ACTIONS(6403), - [anon_sym_in] = ACTIONS(6403), - [anon_sym_QMARK] = ACTIONS(6403), - [anon_sym_BANG] = ACTIONS(6403), - [anon_sym_PLUS_PLUS] = ACTIONS(6401), - [anon_sym_DASH_DASH] = ACTIONS(6401), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6401), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_PERCENT] = ACTIONS(6401), - [anon_sym_CARET] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6403), - [anon_sym_AMP] = ACTIONS(6403), - [anon_sym_LT_LT] = ACTIONS(6401), - [anon_sym_GT_GT] = ACTIONS(6403), - [anon_sym_GT_GT_GT] = ACTIONS(6401), - [anon_sym_EQ_EQ] = ACTIONS(6401), - [anon_sym_BANG_EQ] = ACTIONS(6401), - [anon_sym_GT_EQ] = ACTIONS(6401), - [anon_sym_LT_EQ] = ACTIONS(6401), - [anon_sym_DOT] = ACTIONS(6403), - [anon_sym_EQ_GT] = ACTIONS(6401), - [anon_sym_switch] = ACTIONS(6401), - [anon_sym_when] = ACTIONS(6401), - [anon_sym_DOT_DOT] = ACTIONS(6401), - [anon_sym_and] = ACTIONS(6401), - [anon_sym_or] = ACTIONS(6401), - [anon_sym_AMP_AMP] = ACTIONS(6401), - [anon_sym_PIPE_PIPE] = ACTIONS(6401), - [sym_op_coalescing] = ACTIONS(6401), - [anon_sym_into] = ACTIONS(6401), - [anon_sym_on] = ACTIONS(6401), - [anon_sym_equals] = ACTIONS(6401), - [anon_sym_by] = ACTIONS(6401), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_is] = ACTIONS(6401), - [anon_sym_DASH_GT] = ACTIONS(6401), - [anon_sym_with] = ACTIONS(6401), - [aux_sym_preproc_if_token3] = ACTIONS(6401), - [aux_sym_preproc_else_token1] = ACTIONS(6401), - [aux_sym_preproc_elif_token1] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7685), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -633343,6 +624980,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4922] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4922), [sym_preproc_endregion] = STATE(4922), [sym_preproc_line] = STATE(4922), @@ -633352,57 +625004,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4922), [sym_preproc_define] = STATE(4922), [sym_preproc_undef] = STATE(4922), - [anon_sym_SEMI] = ACTIONS(6351), - [anon_sym_LBRACK] = ACTIONS(6351), - [anon_sym_COLON] = ACTIONS(6351), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_RBRACK] = ACTIONS(6351), - [anon_sym_LPAREN] = ACTIONS(6351), - [anon_sym_RPAREN] = ACTIONS(6351), - [anon_sym_RBRACE] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_in] = ACTIONS(6353), - [anon_sym_QMARK] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PLUS_PLUS] = ACTIONS(6351), - [anon_sym_DASH_DASH] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6353), - [anon_sym_DASH] = ACTIONS(6353), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6353), - [anon_sym_PERCENT] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_AMP] = ACTIONS(6353), - [anon_sym_LT_LT] = ACTIONS(6351), - [anon_sym_GT_GT] = ACTIONS(6353), - [anon_sym_GT_GT_GT] = ACTIONS(6351), - [anon_sym_EQ_EQ] = ACTIONS(6351), - [anon_sym_BANG_EQ] = ACTIONS(6351), - [anon_sym_GT_EQ] = ACTIONS(6351), - [anon_sym_LT_EQ] = ACTIONS(6351), - [anon_sym_DOT] = ACTIONS(6353), - [anon_sym_EQ_GT] = ACTIONS(6351), - [anon_sym_switch] = ACTIONS(6351), - [anon_sym_when] = ACTIONS(6351), - [anon_sym_DOT_DOT] = ACTIONS(6351), - [anon_sym_and] = ACTIONS(6351), - [anon_sym_or] = ACTIONS(6351), - [anon_sym_AMP_AMP] = ACTIONS(6351), - [anon_sym_PIPE_PIPE] = ACTIONS(6351), - [sym_op_coalescing] = ACTIONS(6351), - [anon_sym_into] = ACTIONS(6351), - [anon_sym_on] = ACTIONS(6351), - [anon_sym_equals] = ACTIONS(6351), - [anon_sym_by] = ACTIONS(6351), - [anon_sym_as] = ACTIONS(6351), - [anon_sym_is] = ACTIONS(6351), - [anon_sym_DASH_GT] = ACTIONS(6351), - [anon_sym_with] = ACTIONS(6351), - [aux_sym_preproc_if_token3] = ACTIONS(6351), - [aux_sym_preproc_else_token1] = ACTIONS(6351), - [aux_sym_preproc_elif_token1] = ACTIONS(6351), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7687), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -633415,6 +625050,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4923] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4923), [sym_preproc_endregion] = STATE(4923), [sym_preproc_line] = STATE(4923), @@ -633424,57 +625074,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4923), [sym_preproc_define] = STATE(4923), [sym_preproc_undef] = STATE(4923), - [anon_sym_SEMI] = ACTIONS(7148), - [anon_sym_LBRACK] = ACTIONS(7148), - [anon_sym_COLON] = ACTIONS(7148), - [anon_sym_COMMA] = ACTIONS(7148), - [anon_sym_RBRACK] = ACTIONS(7148), - [anon_sym_LPAREN] = ACTIONS(7148), - [anon_sym_RPAREN] = ACTIONS(7148), - [anon_sym_RBRACE] = ACTIONS(7148), - [anon_sym_LT] = ACTIONS(7150), - [anon_sym_GT] = ACTIONS(7150), - [anon_sym_in] = ACTIONS(7150), - [anon_sym_QMARK] = ACTIONS(7150), - [anon_sym_BANG] = ACTIONS(7150), - [anon_sym_PLUS_PLUS] = ACTIONS(7148), - [anon_sym_DASH_DASH] = ACTIONS(7148), - [anon_sym_PLUS] = ACTIONS(7150), - [anon_sym_DASH] = ACTIONS(7150), - [anon_sym_STAR] = ACTIONS(7148), - [anon_sym_SLASH] = ACTIONS(7150), - [anon_sym_PERCENT] = ACTIONS(7148), - [anon_sym_CARET] = ACTIONS(7148), - [anon_sym_PIPE] = ACTIONS(7150), - [anon_sym_AMP] = ACTIONS(7150), - [anon_sym_LT_LT] = ACTIONS(7148), - [anon_sym_GT_GT] = ACTIONS(7150), - [anon_sym_GT_GT_GT] = ACTIONS(7148), - [anon_sym_EQ_EQ] = ACTIONS(7148), - [anon_sym_BANG_EQ] = ACTIONS(7148), - [anon_sym_GT_EQ] = ACTIONS(7148), - [anon_sym_LT_EQ] = ACTIONS(7148), - [anon_sym_DOT] = ACTIONS(7150), - [anon_sym_EQ_GT] = ACTIONS(7148), - [anon_sym_switch] = ACTIONS(7148), - [anon_sym_when] = ACTIONS(7148), - [anon_sym_DOT_DOT] = ACTIONS(7148), - [anon_sym_and] = ACTIONS(7148), - [anon_sym_or] = ACTIONS(7148), - [anon_sym_AMP_AMP] = ACTIONS(7148), - [anon_sym_PIPE_PIPE] = ACTIONS(7148), - [sym_op_coalescing] = ACTIONS(7148), - [anon_sym_into] = ACTIONS(7148), - [anon_sym_on] = ACTIONS(7148), - [anon_sym_equals] = ACTIONS(7148), - [anon_sym_by] = ACTIONS(7148), - [anon_sym_as] = ACTIONS(7148), - [anon_sym_is] = ACTIONS(7148), - [anon_sym_DASH_GT] = ACTIONS(7148), - [anon_sym_with] = ACTIONS(7148), - [aux_sym_preproc_if_token3] = ACTIONS(7148), - [aux_sym_preproc_else_token1] = ACTIONS(7148), - [aux_sym_preproc_elif_token1] = ACTIONS(7148), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7689), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -633487,6 +625120,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4924] = { + [sym_argument_list] = STATE(4981), + [sym__name] = STATE(2458), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_type] = STATE(4510), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5066), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_identifier] = STATE(2392), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(4924), [sym_preproc_endregion] = STATE(4924), [sym_preproc_line] = STATE(4924), @@ -633496,57 +625148,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4924), [sym_preproc_define] = STATE(4924), [sym_preproc_undef] = STATE(4924), - [anon_sym_SEMI] = ACTIONS(4446), - [anon_sym_LBRACK] = ACTIONS(4446), - [anon_sym_COLON] = ACTIONS(4446), - [anon_sym_COMMA] = ACTIONS(4446), - [anon_sym_RBRACK] = ACTIONS(4446), - [anon_sym_LPAREN] = ACTIONS(4446), - [anon_sym_RPAREN] = ACTIONS(4446), - [anon_sym_LBRACE] = ACTIONS(4446), - [anon_sym_RBRACE] = ACTIONS(4446), - [anon_sym_LT] = ACTIONS(4444), - [anon_sym_GT] = ACTIONS(4444), - [anon_sym_in] = ACTIONS(4446), - [anon_sym_QMARK] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4444), - [anon_sym_PLUS_PLUS] = ACTIONS(4446), - [anon_sym_DASH_DASH] = ACTIONS(4446), - [anon_sym_PLUS] = ACTIONS(4444), - [anon_sym_DASH] = ACTIONS(4444), - [anon_sym_STAR] = ACTIONS(4446), - [anon_sym_SLASH] = ACTIONS(4444), - [anon_sym_PERCENT] = ACTIONS(4446), - [anon_sym_CARET] = ACTIONS(4446), - [anon_sym_PIPE] = ACTIONS(4444), - [anon_sym_AMP] = ACTIONS(4444), - [anon_sym_LT_LT] = ACTIONS(4446), - [anon_sym_GT_GT] = ACTIONS(4444), - [anon_sym_GT_GT_GT] = ACTIONS(4446), - [anon_sym_EQ_EQ] = ACTIONS(4446), - [anon_sym_BANG_EQ] = ACTIONS(4446), - [anon_sym_GT_EQ] = ACTIONS(4446), - [anon_sym_LT_EQ] = ACTIONS(4446), - [anon_sym_DOT] = ACTIONS(4444), - [anon_sym_EQ_GT] = ACTIONS(4446), - [anon_sym_switch] = ACTIONS(4446), - [anon_sym_when] = ACTIONS(4446), - [anon_sym_DOT_DOT] = ACTIONS(4446), - [anon_sym_and] = ACTIONS(4446), - [anon_sym_or] = ACTIONS(4446), - [anon_sym_AMP_AMP] = ACTIONS(4446), - [anon_sym_PIPE_PIPE] = ACTIONS(4446), - [sym_op_coalescing] = ACTIONS(4446), - [anon_sym_on] = ACTIONS(4446), - [anon_sym_equals] = ACTIONS(4446), - [anon_sym_by] = ACTIONS(4446), - [anon_sym_as] = ACTIONS(4446), - [anon_sym_is] = ACTIONS(4446), - [anon_sym_DASH_GT] = ACTIONS(4446), - [anon_sym_with] = ACTIONS(4446), - [aux_sym_preproc_if_token3] = ACTIONS(4446), - [aux_sym_preproc_else_token1] = ACTIONS(4446), - [aux_sym_preproc_elif_token1] = ACTIONS(4446), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(7250), + [anon_sym_LPAREN] = ACTIONS(7252), + [anon_sym_ref] = ACTIONS(4427), + [anon_sym_LBRACE] = ACTIONS(7254), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_where] = ACTIONS(4425), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_scoped] = ACTIONS(7691), + [anon_sym_var] = ACTIONS(7258), + [sym_predefined_type] = ACTIONS(7260), + [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), + [sym_grit_metavariable] = ACTIONS(7262), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -633559,26 +625190,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4925] = { - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6220), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym__lambda_parameters] = STATE(7967), - [sym_identifier] = STATE(6072), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4925), [sym_preproc_endregion] = STATE(4925), [sym_preproc_line] = STATE(4925), @@ -633588,37 +625214,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4925), [sym_preproc_define] = STATE(4925), [sym_preproc_undef] = STATE(4925), - [aux_sym__lambda_expression_init_repeat1] = STATE(6161), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(7152), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -633631,6 +625260,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4926] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4926), [sym_preproc_endregion] = STATE(4926), [sym_preproc_line] = STATE(4926), @@ -633640,56 +625284,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4926), [sym_preproc_define] = STATE(4926), [sym_preproc_undef] = STATE(4926), - [anon_sym_SEMI] = ACTIONS(6178), - [anon_sym_LBRACK] = ACTIONS(6178), - [anon_sym_COLON] = ACTIONS(6178), - [anon_sym_COMMA] = ACTIONS(6178), - [anon_sym_RBRACK] = ACTIONS(6178), - [anon_sym_LPAREN] = ACTIONS(6178), - [anon_sym_RPAREN] = ACTIONS(6178), - [anon_sym_RBRACE] = ACTIONS(6178), - [anon_sym_LT] = ACTIONS(6180), - [anon_sym_GT] = ACTIONS(6180), - [anon_sym_in] = ACTIONS(6178), - [anon_sym_QMARK] = ACTIONS(6180), - [anon_sym_BANG] = ACTIONS(6180), - [anon_sym_PLUS_PLUS] = ACTIONS(6178), - [anon_sym_DASH_DASH] = ACTIONS(6178), - [anon_sym_PLUS] = ACTIONS(6180), - [anon_sym_DASH] = ACTIONS(6180), - [anon_sym_STAR] = ACTIONS(6178), - [anon_sym_SLASH] = ACTIONS(6180), - [anon_sym_PERCENT] = ACTIONS(6178), - [anon_sym_CARET] = ACTIONS(6178), - [anon_sym_PIPE] = ACTIONS(6180), - [anon_sym_AMP] = ACTIONS(6180), - [anon_sym_LT_LT] = ACTIONS(6178), - [anon_sym_GT_GT] = ACTIONS(6180), - [anon_sym_GT_GT_GT] = ACTIONS(6178), - [anon_sym_EQ_EQ] = ACTIONS(6178), - [anon_sym_BANG_EQ] = ACTIONS(6178), - [anon_sym_GT_EQ] = ACTIONS(6178), - [anon_sym_LT_EQ] = ACTIONS(6178), - [anon_sym_DOT] = ACTIONS(6180), - [anon_sym_EQ_GT] = ACTIONS(6178), - [anon_sym_switch] = ACTIONS(6178), - [anon_sym_when] = ACTIONS(6178), - [anon_sym_DOT_DOT] = ACTIONS(6178), - [anon_sym_and] = ACTIONS(6178), - [anon_sym_or] = ACTIONS(6178), - [anon_sym_AMP_AMP] = ACTIONS(6178), - [anon_sym_PIPE_PIPE] = ACTIONS(6178), - [sym_op_coalescing] = ACTIONS(6178), - [anon_sym_on] = ACTIONS(6178), - [anon_sym_equals] = ACTIONS(6178), - [anon_sym_by] = ACTIONS(6178), - [anon_sym_as] = ACTIONS(6178), - [anon_sym_is] = ACTIONS(6178), - [anon_sym_DASH_GT] = ACTIONS(6178), - [anon_sym_with] = ACTIONS(6178), - [aux_sym_preproc_if_token3] = ACTIONS(6178), - [aux_sym_preproc_else_token1] = ACTIONS(6178), - [aux_sym_preproc_elif_token1] = ACTIONS(6178), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7614), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -633711,56 +625339,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4927), [sym_preproc_define] = STATE(4927), [sym_preproc_undef] = STATE(4927), - [anon_sym_SEMI] = ACTIONS(7136), - [anon_sym_LBRACK] = ACTIONS(7136), - [anon_sym_COLON] = ACTIONS(7136), - [anon_sym_COMMA] = ACTIONS(7136), - [anon_sym_RBRACK] = ACTIONS(7136), - [anon_sym_LPAREN] = ACTIONS(7136), - [anon_sym_RPAREN] = ACTIONS(7136), - [anon_sym_RBRACE] = ACTIONS(7136), - [anon_sym_LT] = ACTIONS(7138), - [anon_sym_GT] = ACTIONS(7138), - [anon_sym_in] = ACTIONS(7136), - [anon_sym_QMARK] = ACTIONS(7138), - [anon_sym_BANG] = ACTIONS(7138), - [anon_sym_PLUS_PLUS] = ACTIONS(7136), - [anon_sym_DASH_DASH] = ACTIONS(7136), - [anon_sym_PLUS] = ACTIONS(7138), - [anon_sym_DASH] = ACTIONS(7138), - [anon_sym_STAR] = ACTIONS(7136), - [anon_sym_SLASH] = ACTIONS(7138), - [anon_sym_PERCENT] = ACTIONS(7136), - [anon_sym_CARET] = ACTIONS(7136), - [anon_sym_PIPE] = ACTIONS(7138), - [anon_sym_AMP] = ACTIONS(7138), - [anon_sym_LT_LT] = ACTIONS(7136), - [anon_sym_GT_GT] = ACTIONS(7138), - [anon_sym_GT_GT_GT] = ACTIONS(7136), - [anon_sym_EQ_EQ] = ACTIONS(7136), - [anon_sym_BANG_EQ] = ACTIONS(7136), - [anon_sym_GT_EQ] = ACTIONS(7136), - [anon_sym_LT_EQ] = ACTIONS(7136), - [anon_sym_DOT] = ACTIONS(7138), - [anon_sym_EQ_GT] = ACTIONS(7136), - [anon_sym_switch] = ACTIONS(7136), - [anon_sym_when] = ACTIONS(7136), - [anon_sym_DOT_DOT] = ACTIONS(7136), - [anon_sym_and] = ACTIONS(7136), - [anon_sym_or] = ACTIONS(7136), - [anon_sym_AMP_AMP] = ACTIONS(7136), - [anon_sym_PIPE_PIPE] = ACTIONS(7136), - [sym_op_coalescing] = ACTIONS(7136), - [anon_sym_on] = ACTIONS(7136), - [anon_sym_equals] = ACTIONS(7136), - [anon_sym_by] = ACTIONS(7136), - [anon_sym_as] = ACTIONS(7136), - [anon_sym_is] = ACTIONS(7136), - [anon_sym_DASH_GT] = ACTIONS(7136), - [anon_sym_with] = ACTIONS(7136), - [aux_sym_preproc_if_token3] = ACTIONS(7136), - [aux_sym_preproc_else_token1] = ACTIONS(7136), - [aux_sym_preproc_elif_token1] = ACTIONS(7136), + [anon_sym_EQ] = ACTIONS(7109), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(7693), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7111), + [anon_sym_DASH_EQ] = ACTIONS(7111), + [anon_sym_STAR_EQ] = ACTIONS(7111), + [anon_sym_SLASH_EQ] = ACTIONS(7111), + [anon_sym_PERCENT_EQ] = ACTIONS(7111), + [anon_sym_AMP_EQ] = ACTIONS(7111), + [anon_sym_CARET_EQ] = ACTIONS(7111), + [anon_sym_PIPE_EQ] = ACTIONS(7111), + [anon_sym_LT_LT_EQ] = ACTIONS(7111), + [anon_sym_GT_GT_EQ] = ACTIONS(7111), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7111), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7111), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -633773,8 +625400,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4928] = { - [sym_argument_list] = STATE(3472), - [sym_initializer_expression] = STATE(4295), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4928), [sym_preproc_endregion] = STATE(4928), [sym_preproc_line] = STATE(4928), @@ -633784,54 +625424,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4928), [sym_preproc_define] = STATE(4928), [sym_preproc_undef] = STATE(4928), - [anon_sym_SEMI] = ACTIONS(5690), - [anon_sym_LBRACK] = ACTIONS(5690), - [anon_sym_COLON] = ACTIONS(5690), - [anon_sym_COMMA] = ACTIONS(5690), - [anon_sym_RBRACK] = ACTIONS(5690), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(5690), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(5690), - [anon_sym_LT] = ACTIONS(5692), - [anon_sym_GT] = ACTIONS(5692), - [anon_sym_in] = ACTIONS(5690), - [anon_sym_QMARK] = ACTIONS(5692), - [anon_sym_BANG] = ACTIONS(5692), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5692), - [anon_sym_DASH] = ACTIONS(5692), - [anon_sym_STAR] = ACTIONS(5690), - [anon_sym_SLASH] = ACTIONS(5692), - [anon_sym_PERCENT] = ACTIONS(5690), - [anon_sym_CARET] = ACTIONS(5690), - [anon_sym_PIPE] = ACTIONS(5692), - [anon_sym_AMP] = ACTIONS(5692), - [anon_sym_LT_LT] = ACTIONS(5690), - [anon_sym_GT_GT] = ACTIONS(5692), - [anon_sym_GT_GT_GT] = ACTIONS(5690), - [anon_sym_EQ_EQ] = ACTIONS(5690), - [anon_sym_BANG_EQ] = ACTIONS(5690), - [anon_sym_GT_EQ] = ACTIONS(5690), - [anon_sym_LT_EQ] = ACTIONS(5690), - [anon_sym_DOT] = ACTIONS(5692), - [anon_sym_EQ_GT] = ACTIONS(5690), - [anon_sym_switch] = ACTIONS(5690), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_AMP_AMP] = ACTIONS(5690), - [anon_sym_PIPE_PIPE] = ACTIONS(5690), - [sym_op_coalescing] = ACTIONS(5690), - [anon_sym_on] = ACTIONS(5690), - [anon_sym_equals] = ACTIONS(5690), - [anon_sym_by] = ACTIONS(5690), - [anon_sym_as] = ACTIONS(5690), - [anon_sym_is] = ACTIONS(5690), - [anon_sym_DASH_GT] = ACTIONS(5690), - [anon_sym_with] = ACTIONS(5690), - [aux_sym_preproc_if_token3] = ACTIONS(5690), - [aux_sym_preproc_else_token1] = ACTIONS(5690), - [aux_sym_preproc_elif_token1] = ACTIONS(5690), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7695), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -633844,6 +625470,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4929] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4929), [sym_preproc_endregion] = STATE(4929), [sym_preproc_line] = STATE(4929), @@ -633853,56 +625494,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4929), [sym_preproc_define] = STATE(4929), [sym_preproc_undef] = STATE(4929), - [anon_sym_SEMI] = ACTIONS(6393), - [anon_sym_LBRACK] = ACTIONS(6393), - [anon_sym_COLON] = ACTIONS(6393), - [anon_sym_COMMA] = ACTIONS(6393), - [anon_sym_RBRACK] = ACTIONS(6393), - [anon_sym_LPAREN] = ACTIONS(6393), - [anon_sym_RPAREN] = ACTIONS(6393), - [anon_sym_RBRACE] = ACTIONS(6393), - [anon_sym_LT] = ACTIONS(6395), - [anon_sym_GT] = ACTIONS(6395), - [anon_sym_in] = ACTIONS(6393), - [anon_sym_QMARK] = ACTIONS(6395), - [anon_sym_BANG] = ACTIONS(6395), - [anon_sym_PLUS_PLUS] = ACTIONS(6393), - [anon_sym_DASH_DASH] = ACTIONS(6393), - [anon_sym_PLUS] = ACTIONS(6395), - [anon_sym_DASH] = ACTIONS(6395), - [anon_sym_STAR] = ACTIONS(6393), - [anon_sym_SLASH] = ACTIONS(6395), - [anon_sym_PERCENT] = ACTIONS(6393), - [anon_sym_CARET] = ACTIONS(6393), - [anon_sym_PIPE] = ACTIONS(6395), - [anon_sym_AMP] = ACTIONS(6395), - [anon_sym_LT_LT] = ACTIONS(6393), - [anon_sym_GT_GT] = ACTIONS(6395), - [anon_sym_GT_GT_GT] = ACTIONS(6393), - [anon_sym_EQ_EQ] = ACTIONS(6393), - [anon_sym_BANG_EQ] = ACTIONS(6393), - [anon_sym_GT_EQ] = ACTIONS(6393), - [anon_sym_LT_EQ] = ACTIONS(6393), - [anon_sym_DOT] = ACTIONS(6395), - [anon_sym_EQ_GT] = ACTIONS(6393), - [anon_sym_switch] = ACTIONS(6393), - [anon_sym_when] = ACTIONS(6393), - [anon_sym_DOT_DOT] = ACTIONS(6393), - [anon_sym_and] = ACTIONS(6393), - [anon_sym_or] = ACTIONS(6393), - [anon_sym_AMP_AMP] = ACTIONS(6393), - [anon_sym_PIPE_PIPE] = ACTIONS(6393), - [sym_op_coalescing] = ACTIONS(6393), - [anon_sym_on] = ACTIONS(6393), - [anon_sym_equals] = ACTIONS(6393), - [anon_sym_by] = ACTIONS(6393), - [anon_sym_as] = ACTIONS(6393), - [anon_sym_is] = ACTIONS(6393), - [anon_sym_DASH_GT] = ACTIONS(6393), - [anon_sym_with] = ACTIONS(6393), - [aux_sym_preproc_if_token3] = ACTIONS(6393), - [aux_sym_preproc_else_token1] = ACTIONS(6393), - [aux_sym_preproc_elif_token1] = ACTIONS(6393), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(7350), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7354), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(7364), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7366), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -633915,6 +625540,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4930] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4930), [sym_preproc_endregion] = STATE(4930), [sym_preproc_line] = STATE(4930), @@ -633924,56 +625564,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4930), [sym_preproc_define] = STATE(4930), [sym_preproc_undef] = STATE(4930), - [anon_sym_SEMI] = ACTIONS(7092), - [anon_sym_LBRACK] = ACTIONS(7092), - [anon_sym_COLON] = ACTIONS(7092), - [anon_sym_COMMA] = ACTIONS(7092), - [anon_sym_RBRACK] = ACTIONS(7092), - [anon_sym_LPAREN] = ACTIONS(7092), - [anon_sym_RPAREN] = ACTIONS(7092), - [anon_sym_RBRACE] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7094), - [anon_sym_GT] = ACTIONS(7094), - [anon_sym_in] = ACTIONS(7092), - [anon_sym_QMARK] = ACTIONS(7094), - [anon_sym_BANG] = ACTIONS(7094), - [anon_sym_PLUS_PLUS] = ACTIONS(7092), - [anon_sym_DASH_DASH] = ACTIONS(7092), - [anon_sym_PLUS] = ACTIONS(7094), - [anon_sym_DASH] = ACTIONS(7094), - [anon_sym_STAR] = ACTIONS(7092), - [anon_sym_SLASH] = ACTIONS(7094), - [anon_sym_PERCENT] = ACTIONS(7092), - [anon_sym_CARET] = ACTIONS(7092), - [anon_sym_PIPE] = ACTIONS(7094), - [anon_sym_AMP] = ACTIONS(7094), - [anon_sym_LT_LT] = ACTIONS(7092), - [anon_sym_GT_GT] = ACTIONS(7094), - [anon_sym_GT_GT_GT] = ACTIONS(7092), - [anon_sym_EQ_EQ] = ACTIONS(7092), - [anon_sym_BANG_EQ] = ACTIONS(7092), - [anon_sym_GT_EQ] = ACTIONS(7092), - [anon_sym_LT_EQ] = ACTIONS(7092), - [anon_sym_DOT] = ACTIONS(7094), - [anon_sym_EQ_GT] = ACTIONS(7092), - [anon_sym_switch] = ACTIONS(7092), - [anon_sym_when] = ACTIONS(7092), - [anon_sym_DOT_DOT] = ACTIONS(7092), - [anon_sym_and] = ACTIONS(7092), - [anon_sym_or] = ACTIONS(7092), - [anon_sym_AMP_AMP] = ACTIONS(7092), - [anon_sym_PIPE_PIPE] = ACTIONS(7092), - [sym_op_coalescing] = ACTIONS(7092), - [anon_sym_on] = ACTIONS(7092), - [anon_sym_equals] = ACTIONS(7092), - [anon_sym_by] = ACTIONS(7092), - [anon_sym_as] = ACTIONS(7092), - [anon_sym_is] = ACTIONS(7092), - [anon_sym_DASH_GT] = ACTIONS(7092), - [anon_sym_with] = ACTIONS(7092), - [aux_sym_preproc_if_token3] = ACTIONS(7092), - [aux_sym_preproc_else_token1] = ACTIONS(7092), - [aux_sym_preproc_elif_token1] = ACTIONS(7092), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7697), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -633986,6 +625610,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4931] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4931), [sym_preproc_endregion] = STATE(4931), [sym_preproc_line] = STATE(4931), @@ -633995,56 +625634,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4931), [sym_preproc_define] = STATE(4931), [sym_preproc_undef] = STATE(4931), - [anon_sym_EQ] = ACTIONS(7154), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = 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(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7156), - [anon_sym_DASH_EQ] = ACTIONS(7156), - [anon_sym_STAR_EQ] = ACTIONS(7156), - [anon_sym_SLASH_EQ] = ACTIONS(7156), - [anon_sym_PERCENT_EQ] = ACTIONS(7156), - [anon_sym_AMP_EQ] = ACTIONS(7156), - [anon_sym_CARET_EQ] = ACTIONS(7156), - [anon_sym_PIPE_EQ] = ACTIONS(7156), - [anon_sym_LT_LT_EQ] = ACTIONS(7156), - [anon_sym_GT_GT_EQ] = ACTIONS(7156), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7156), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7156), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -634057,6 +625680,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4932] = { + [sym_argument_list] = STATE(3125), + [sym__name] = STATE(5857), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(4715), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3130), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(5614), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(4932), [sym_preproc_endregion] = STATE(4932), [sym_preproc_line] = STATE(4932), @@ -634066,56 +625708,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4932), [sym_preproc_define] = STATE(4932), [sym_preproc_undef] = STATE(4932), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_RBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(5684), - [anon_sym_RBRACE] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_ref] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7699), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -634128,6 +625750,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4933] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4933), [sym_preproc_endregion] = STATE(4933), [sym_preproc_line] = STATE(4933), @@ -634137,56 +625774,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4933), [sym_preproc_define] = STATE(4933), [sym_preproc_undef] = STATE(4933), - [anon_sym_EQ] = ACTIONS(7162), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(5684), - [anon_sym_RBRACE] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7164), - [anon_sym_DASH_EQ] = ACTIONS(7164), - [anon_sym_STAR_EQ] = ACTIONS(7164), - [anon_sym_SLASH_EQ] = ACTIONS(7164), - [anon_sym_PERCENT_EQ] = ACTIONS(7164), - [anon_sym_AMP_EQ] = ACTIONS(7164), - [anon_sym_CARET_EQ] = ACTIONS(7164), - [anon_sym_PIPE_EQ] = ACTIONS(7164), - [anon_sym_LT_LT_EQ] = ACTIONS(7164), - [anon_sym_GT_GT_EQ] = ACTIONS(7164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7164), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_SEMI] = ACTIONS(7701), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -634199,6 +625820,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4934] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4934), [sym_preproc_endregion] = STATE(4934), [sym_preproc_line] = STATE(4934), @@ -634208,56 +625844,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4934), [sym_preproc_define] = STATE(4934), [sym_preproc_undef] = STATE(4934), - [anon_sym_SEMI] = ACTIONS(7096), - [anon_sym_LBRACK] = ACTIONS(7096), - [anon_sym_COLON] = ACTIONS(7096), - [anon_sym_COMMA] = ACTIONS(7096), - [anon_sym_RBRACK] = ACTIONS(7096), - [anon_sym_LPAREN] = ACTIONS(7096), - [anon_sym_RPAREN] = ACTIONS(7096), - [anon_sym_RBRACE] = ACTIONS(7096), - [anon_sym_LT] = ACTIONS(7098), - [anon_sym_GT] = ACTIONS(7098), - [anon_sym_in] = ACTIONS(7096), - [anon_sym_QMARK] = ACTIONS(7098), - [anon_sym_BANG] = ACTIONS(7098), - [anon_sym_PLUS_PLUS] = ACTIONS(7096), - [anon_sym_DASH_DASH] = ACTIONS(7096), - [anon_sym_PLUS] = ACTIONS(7098), - [anon_sym_DASH] = ACTIONS(7098), - [anon_sym_STAR] = ACTIONS(7096), - [anon_sym_SLASH] = ACTIONS(7098), - [anon_sym_PERCENT] = ACTIONS(7096), - [anon_sym_CARET] = ACTIONS(7096), - [anon_sym_PIPE] = ACTIONS(7098), - [anon_sym_AMP] = ACTIONS(7098), - [anon_sym_LT_LT] = ACTIONS(7096), - [anon_sym_GT_GT] = ACTIONS(7098), - [anon_sym_GT_GT_GT] = ACTIONS(7096), - [anon_sym_EQ_EQ] = ACTIONS(7096), - [anon_sym_BANG_EQ] = ACTIONS(7096), - [anon_sym_GT_EQ] = ACTIONS(7096), - [anon_sym_LT_EQ] = ACTIONS(7096), - [anon_sym_DOT] = ACTIONS(7098), - [anon_sym_EQ_GT] = ACTIONS(7096), - [anon_sym_switch] = ACTIONS(7096), - [anon_sym_when] = ACTIONS(7096), - [anon_sym_DOT_DOT] = ACTIONS(7096), - [anon_sym_and] = ACTIONS(7096), - [anon_sym_or] = ACTIONS(7096), - [anon_sym_AMP_AMP] = ACTIONS(7096), - [anon_sym_PIPE_PIPE] = ACTIONS(7096), - [sym_op_coalescing] = ACTIONS(7096), - [anon_sym_on] = ACTIONS(7096), - [anon_sym_equals] = ACTIONS(7096), - [anon_sym_by] = ACTIONS(7096), - [anon_sym_as] = ACTIONS(7096), - [anon_sym_is] = ACTIONS(7096), - [anon_sym_DASH_GT] = ACTIONS(7096), - [anon_sym_with] = ACTIONS(7096), - [aux_sym_preproc_if_token3] = ACTIONS(7096), - [aux_sym_preproc_else_token1] = ACTIONS(7096), - [aux_sym_preproc_elif_token1] = ACTIONS(7096), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7703), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -634270,6 +625890,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4935] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4935), [sym_preproc_endregion] = STATE(4935), [sym_preproc_line] = STATE(4935), @@ -634279,56 +625914,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4935), [sym_preproc_define] = STATE(4935), [sym_preproc_undef] = STATE(4935), - [anon_sym_SEMI] = ACTIONS(7096), - [anon_sym_LBRACK] = ACTIONS(7096), - [anon_sym_COLON] = ACTIONS(7096), - [anon_sym_COMMA] = ACTIONS(7096), - [anon_sym_RBRACK] = ACTIONS(7096), - [anon_sym_LPAREN] = ACTIONS(7096), - [anon_sym_RPAREN] = ACTIONS(7096), - [anon_sym_RBRACE] = ACTIONS(7096), - [anon_sym_LT] = ACTIONS(7098), - [anon_sym_GT] = ACTIONS(7098), - [anon_sym_in] = ACTIONS(7096), - [anon_sym_QMARK] = ACTIONS(7098), - [anon_sym_BANG] = ACTIONS(7098), - [anon_sym_PLUS_PLUS] = ACTIONS(7096), - [anon_sym_DASH_DASH] = ACTIONS(7096), - [anon_sym_PLUS] = ACTIONS(7098), - [anon_sym_DASH] = ACTIONS(7098), - [anon_sym_STAR] = ACTIONS(7096), - [anon_sym_SLASH] = ACTIONS(7098), - [anon_sym_PERCENT] = ACTIONS(7096), - [anon_sym_CARET] = ACTIONS(7096), - [anon_sym_PIPE] = ACTIONS(7098), - [anon_sym_AMP] = ACTIONS(7098), - [anon_sym_LT_LT] = ACTIONS(7096), - [anon_sym_GT_GT] = ACTIONS(7098), - [anon_sym_GT_GT_GT] = ACTIONS(7096), - [anon_sym_EQ_EQ] = ACTIONS(7096), - [anon_sym_BANG_EQ] = ACTIONS(7096), - [anon_sym_GT_EQ] = ACTIONS(7096), - [anon_sym_LT_EQ] = ACTIONS(7096), - [anon_sym_DOT] = ACTIONS(7098), - [anon_sym_EQ_GT] = ACTIONS(7096), - [anon_sym_switch] = ACTIONS(7096), - [anon_sym_when] = ACTIONS(7096), - [anon_sym_DOT_DOT] = ACTIONS(7096), - [anon_sym_and] = ACTIONS(7096), - [anon_sym_or] = ACTIONS(7096), - [anon_sym_AMP_AMP] = ACTIONS(7096), - [anon_sym_PIPE_PIPE] = ACTIONS(7096), - [sym_op_coalescing] = ACTIONS(7096), - [anon_sym_on] = ACTIONS(7096), - [anon_sym_equals] = ACTIONS(7096), - [anon_sym_by] = ACTIONS(7096), - [anon_sym_as] = ACTIONS(7096), - [anon_sym_is] = ACTIONS(7096), - [anon_sym_DASH_GT] = ACTIONS(7096), - [anon_sym_with] = ACTIONS(7096), - [aux_sym_preproc_if_token3] = ACTIONS(7096), - [aux_sym_preproc_else_token1] = ACTIONS(7096), - [aux_sym_preproc_elif_token1] = ACTIONS(7096), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -634341,6 +625960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4936] = { + [sym_block] = STATE(7548), [sym_preproc_region] = STATE(4936), [sym_preproc_endregion] = STATE(4936), [sym_preproc_line] = STATE(4936), @@ -634350,56 +625970,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4936), [sym_preproc_define] = STATE(4936), [sym_preproc_undef] = STATE(4936), - [anon_sym_SEMI] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(4357), - [anon_sym_COLON] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4357), - [anon_sym_RBRACK] = ACTIONS(4357), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_RPAREN] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4357), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_PLUS_PLUS] = ACTIONS(4357), - [anon_sym_DASH_DASH] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4357), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4357), - [anon_sym_CARET] = ACTIONS(4357), - [anon_sym_PIPE] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_LT] = ACTIONS(4357), - [anon_sym_GT_GT] = ACTIONS(4355), - [anon_sym_GT_GT_GT] = ACTIONS(4357), - [anon_sym_EQ_EQ] = ACTIONS(4357), - [anon_sym_BANG_EQ] = ACTIONS(4357), - [anon_sym_GT_EQ] = ACTIONS(4357), - [anon_sym_LT_EQ] = ACTIONS(4357), - [anon_sym_DOT] = ACTIONS(7166), - [anon_sym_EQ_GT] = ACTIONS(4357), - [anon_sym_switch] = ACTIONS(4357), - [anon_sym_when] = ACTIONS(4357), - [anon_sym_DOT_DOT] = ACTIONS(4357), - [anon_sym_and] = ACTIONS(4357), - [anon_sym_or] = ACTIONS(4357), - [anon_sym_AMP_AMP] = ACTIONS(4357), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [sym_op_coalescing] = ACTIONS(4357), - [anon_sym_on] = ACTIONS(4357), - [anon_sym_equals] = ACTIONS(4357), - [anon_sym_by] = ACTIONS(4357), - [anon_sym_as] = ACTIONS(4357), - [anon_sym_is] = ACTIONS(4357), - [anon_sym_DASH_GT] = ACTIONS(4357), - [anon_sym_with] = ACTIONS(4357), - [aux_sym_preproc_if_token3] = ACTIONS(4357), - [aux_sym_preproc_else_token1] = ACTIONS(4357), - [aux_sym_preproc_elif_token1] = ACTIONS(4357), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(7206), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -634412,6 +626030,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4937] = { + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7127), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4937), [sym_preproc_endregion] = STATE(4937), [sym_preproc_line] = STATE(4937), @@ -634421,56 +626057,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4937), [sym_preproc_define] = STATE(4937), [sym_preproc_undef] = STATE(4937), - [anon_sym_SEMI] = ACTIONS(6397), - [anon_sym_LBRACK] = ACTIONS(6397), - [anon_sym_COLON] = ACTIONS(6397), - [anon_sym_COMMA] = ACTIONS(6397), - [anon_sym_RBRACK] = ACTIONS(6397), - [anon_sym_LPAREN] = ACTIONS(6397), - [anon_sym_RPAREN] = ACTIONS(6397), - [anon_sym_RBRACE] = ACTIONS(6397), - [anon_sym_LT] = ACTIONS(6399), - [anon_sym_GT] = ACTIONS(6399), - [anon_sym_in] = ACTIONS(6397), - [anon_sym_QMARK] = ACTIONS(6399), - [anon_sym_BANG] = ACTIONS(6399), - [anon_sym_PLUS_PLUS] = ACTIONS(6397), - [anon_sym_DASH_DASH] = ACTIONS(6397), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_STAR] = ACTIONS(6397), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_PERCENT] = ACTIONS(6397), - [anon_sym_CARET] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(6399), - [anon_sym_AMP] = ACTIONS(6399), - [anon_sym_LT_LT] = ACTIONS(6397), - [anon_sym_GT_GT] = ACTIONS(6399), - [anon_sym_GT_GT_GT] = ACTIONS(6397), - [anon_sym_EQ_EQ] = ACTIONS(6397), - [anon_sym_BANG_EQ] = ACTIONS(6397), - [anon_sym_GT_EQ] = ACTIONS(6397), - [anon_sym_LT_EQ] = ACTIONS(6397), - [anon_sym_DOT] = ACTIONS(6399), - [anon_sym_EQ_GT] = ACTIONS(6397), - [anon_sym_switch] = ACTIONS(6397), - [anon_sym_when] = ACTIONS(6397), - [anon_sym_DOT_DOT] = ACTIONS(6397), - [anon_sym_and] = ACTIONS(6397), - [anon_sym_or] = ACTIONS(6397), - [anon_sym_AMP_AMP] = ACTIONS(6397), - [anon_sym_PIPE_PIPE] = ACTIONS(6397), - [sym_op_coalescing] = ACTIONS(6397), - [anon_sym_on] = ACTIONS(6397), - [anon_sym_equals] = ACTIONS(6397), - [anon_sym_by] = ACTIONS(6397), - [anon_sym_as] = ACTIONS(6397), - [anon_sym_is] = ACTIONS(6397), - [anon_sym_DASH_GT] = ACTIONS(6397), - [anon_sym_with] = ACTIONS(6397), - [aux_sym_preproc_if_token3] = ACTIONS(6397), - [aux_sym_preproc_else_token1] = ACTIONS(6397), - [aux_sym_preproc_elif_token1] = ACTIONS(6397), + [aux_sym_type_argument_list_repeat1] = STATE(7128), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_GT] = ACTIONS(7705), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -634483,6 +626100,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4938] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(4938), [sym_preproc_endregion] = STATE(4938), [sym_preproc_line] = STATE(4938), @@ -634492,56 +626124,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4938), [sym_preproc_define] = STATE(4938), [sym_preproc_undef] = STATE(4938), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(7029), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(7166), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_when] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_and] = ACTIONS(4331), - [anon_sym_or] = ACTIONS(4331), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7270), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7272), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7274), + [sym_op_right_shift] = ACTIONS(7276), + [sym_op_unsigned_right_shift] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(7282), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7284), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -634554,6 +626170,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4939] = { + [sym_argument_list] = STATE(3125), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(4715), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(5568), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(4939), [sym_preproc_endregion] = STATE(4939), [sym_preproc_line] = STATE(4939), @@ -634563,56 +626198,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4939), [sym_preproc_define] = STATE(4939), [sym_preproc_undef] = STATE(4939), - [anon_sym_SEMI] = ACTIONS(7032), - [anon_sym_LBRACK] = ACTIONS(7032), - [anon_sym_COLON] = ACTIONS(7032), - [anon_sym_COMMA] = ACTIONS(7032), - [anon_sym_RBRACK] = ACTIONS(7032), - [anon_sym_LPAREN] = ACTIONS(7032), - [anon_sym_RPAREN] = ACTIONS(7032), - [anon_sym_RBRACE] = ACTIONS(7032), - [anon_sym_LT] = ACTIONS(7034), - [anon_sym_GT] = ACTIONS(7034), - [anon_sym_in] = ACTIONS(7032), - [anon_sym_QMARK] = ACTIONS(7034), - [anon_sym_BANG] = ACTIONS(7034), - [anon_sym_PLUS_PLUS] = ACTIONS(7032), - [anon_sym_DASH_DASH] = ACTIONS(7032), - [anon_sym_PLUS] = ACTIONS(7034), - [anon_sym_DASH] = ACTIONS(7034), - [anon_sym_STAR] = ACTIONS(7032), - [anon_sym_SLASH] = ACTIONS(7034), - [anon_sym_PERCENT] = ACTIONS(7032), - [anon_sym_CARET] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - [anon_sym_LT_LT] = ACTIONS(7032), - [anon_sym_GT_GT] = ACTIONS(7034), - [anon_sym_GT_GT_GT] = ACTIONS(7032), - [anon_sym_EQ_EQ] = ACTIONS(7032), - [anon_sym_BANG_EQ] = ACTIONS(7032), - [anon_sym_GT_EQ] = ACTIONS(7032), - [anon_sym_LT_EQ] = ACTIONS(7032), - [anon_sym_DOT] = ACTIONS(7034), - [anon_sym_EQ_GT] = ACTIONS(7032), - [anon_sym_switch] = ACTIONS(7032), - [anon_sym_when] = ACTIONS(7032), - [anon_sym_DOT_DOT] = ACTIONS(7032), - [anon_sym_and] = ACTIONS(7032), - [anon_sym_or] = ACTIONS(7032), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [sym_op_coalescing] = ACTIONS(7032), - [anon_sym_on] = ACTIONS(7032), - [anon_sym_equals] = ACTIONS(7032), - [anon_sym_by] = ACTIONS(7032), - [anon_sym_as] = ACTIONS(7032), - [anon_sym_is] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [anon_sym_with] = ACTIONS(7032), - [aux_sym_preproc_if_token3] = ACTIONS(7032), - [aux_sym_preproc_else_token1] = ACTIONS(7032), - [aux_sym_preproc_elif_token1] = ACTIONS(7032), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_ref] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4385), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -634625,6 +626240,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4940] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4940), [sym_preproc_endregion] = STATE(4940), [sym_preproc_line] = STATE(4940), @@ -634634,56 +626264,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4940), [sym_preproc_define] = STATE(4940), [sym_preproc_undef] = STATE(4940), - [anon_sym_SEMI] = ACTIONS(7088), - [anon_sym_LBRACK] = ACTIONS(7088), - [anon_sym_COLON] = ACTIONS(7088), - [anon_sym_COMMA] = ACTIONS(7088), - [anon_sym_RBRACK] = ACTIONS(7088), - [anon_sym_LPAREN] = ACTIONS(7088), - [anon_sym_RPAREN] = ACTIONS(7088), - [anon_sym_RBRACE] = ACTIONS(7088), - [anon_sym_LT] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7090), - [anon_sym_in] = ACTIONS(7088), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_BANG] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7088), - [anon_sym_DASH_DASH] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_STAR] = ACTIONS(7088), - [anon_sym_SLASH] = ACTIONS(7090), - [anon_sym_PERCENT] = ACTIONS(7088), - [anon_sym_CARET] = ACTIONS(7088), - [anon_sym_PIPE] = ACTIONS(7090), - [anon_sym_AMP] = ACTIONS(7090), - [anon_sym_LT_LT] = ACTIONS(7088), - [anon_sym_GT_GT] = ACTIONS(7090), - [anon_sym_GT_GT_GT] = ACTIONS(7088), - [anon_sym_EQ_EQ] = ACTIONS(7088), - [anon_sym_BANG_EQ] = ACTIONS(7088), - [anon_sym_GT_EQ] = ACTIONS(7088), - [anon_sym_LT_EQ] = ACTIONS(7088), - [anon_sym_DOT] = ACTIONS(7090), - [anon_sym_EQ_GT] = ACTIONS(7088), - [anon_sym_switch] = ACTIONS(7088), - [anon_sym_when] = ACTIONS(7088), - [anon_sym_DOT_DOT] = ACTIONS(7088), - [anon_sym_and] = ACTIONS(7088), - [anon_sym_or] = ACTIONS(7088), - [anon_sym_AMP_AMP] = ACTIONS(7088), - [anon_sym_PIPE_PIPE] = ACTIONS(7088), - [sym_op_coalescing] = ACTIONS(7088), - [anon_sym_on] = ACTIONS(7088), - [anon_sym_equals] = ACTIONS(7088), - [anon_sym_by] = ACTIONS(7088), - [anon_sym_as] = ACTIONS(7088), - [anon_sym_is] = ACTIONS(7088), - [anon_sym_DASH_GT] = ACTIONS(7088), - [anon_sym_with] = ACTIONS(7088), - [aux_sym_preproc_if_token3] = ACTIONS(7088), - [aux_sym_preproc_else_token1] = ACTIONS(7088), - [aux_sym_preproc_elif_token1] = ACTIONS(7088), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7707), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -634696,6 +626310,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4941] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4941), [sym_preproc_endregion] = STATE(4941), [sym_preproc_line] = STATE(4941), @@ -634705,56 +626334,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4941), [sym_preproc_define] = STATE(4941), [sym_preproc_undef] = STATE(4941), - [anon_sym_SEMI] = ACTIONS(7100), - [anon_sym_LBRACK] = ACTIONS(7100), - [anon_sym_COLON] = ACTIONS(7100), - [anon_sym_COMMA] = ACTIONS(7100), - [anon_sym_RBRACK] = ACTIONS(7100), - [anon_sym_LPAREN] = ACTIONS(7100), - [anon_sym_RPAREN] = ACTIONS(7100), - [anon_sym_RBRACE] = ACTIONS(7100), - [anon_sym_LT] = ACTIONS(7102), - [anon_sym_GT] = ACTIONS(7102), - [anon_sym_in] = ACTIONS(7100), - [anon_sym_QMARK] = ACTIONS(7102), - [anon_sym_BANG] = ACTIONS(7102), - [anon_sym_PLUS_PLUS] = ACTIONS(7100), - [anon_sym_DASH_DASH] = ACTIONS(7100), - [anon_sym_PLUS] = ACTIONS(7102), - [anon_sym_DASH] = ACTIONS(7102), - [anon_sym_STAR] = ACTIONS(7100), - [anon_sym_SLASH] = ACTIONS(7102), - [anon_sym_PERCENT] = ACTIONS(7100), - [anon_sym_CARET] = ACTIONS(7100), - [anon_sym_PIPE] = ACTIONS(7102), - [anon_sym_AMP] = ACTIONS(7102), - [anon_sym_LT_LT] = ACTIONS(7100), - [anon_sym_GT_GT] = ACTIONS(7102), - [anon_sym_GT_GT_GT] = ACTIONS(7100), - [anon_sym_EQ_EQ] = ACTIONS(7100), - [anon_sym_BANG_EQ] = ACTIONS(7100), - [anon_sym_GT_EQ] = ACTIONS(7100), - [anon_sym_LT_EQ] = ACTIONS(7100), - [anon_sym_DOT] = ACTIONS(7102), - [anon_sym_EQ_GT] = ACTIONS(7100), - [anon_sym_switch] = ACTIONS(7100), - [anon_sym_when] = ACTIONS(7100), - [anon_sym_DOT_DOT] = ACTIONS(7100), - [anon_sym_and] = ACTIONS(7100), - [anon_sym_or] = ACTIONS(7100), - [anon_sym_AMP_AMP] = ACTIONS(7100), - [anon_sym_PIPE_PIPE] = ACTIONS(7100), - [sym_op_coalescing] = ACTIONS(7100), - [anon_sym_on] = ACTIONS(7100), - [anon_sym_equals] = ACTIONS(7100), - [anon_sym_by] = ACTIONS(7100), - [anon_sym_as] = ACTIONS(7100), - [anon_sym_is] = ACTIONS(7100), - [anon_sym_DASH_GT] = ACTIONS(7100), - [anon_sym_with] = ACTIONS(7100), - [aux_sym_preproc_if_token3] = ACTIONS(7100), - [aux_sym_preproc_else_token1] = ACTIONS(7100), - [aux_sym_preproc_elif_token1] = ACTIONS(7100), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7366), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -634767,6 +626380,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4942] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(4942), [sym_preproc_endregion] = STATE(4942), [sym_preproc_line] = STATE(4942), @@ -634776,56 +626404,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4942), [sym_preproc_define] = STATE(4942), [sym_preproc_undef] = STATE(4942), - [anon_sym_EQ] = ACTIONS(7168), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7170), - [anon_sym_DASH_EQ] = ACTIONS(7170), - [anon_sym_STAR_EQ] = ACTIONS(7170), - [anon_sym_SLASH_EQ] = ACTIONS(7170), - [anon_sym_PERCENT_EQ] = ACTIONS(7170), - [anon_sym_AMP_EQ] = ACTIONS(7170), - [anon_sym_CARET_EQ] = ACTIONS(7170), - [anon_sym_PIPE_EQ] = ACTIONS(7170), - [anon_sym_LT_LT_EQ] = ACTIONS(7170), - [anon_sym_GT_GT_EQ] = ACTIONS(7170), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7170), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7170), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_equals] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7542), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(7556), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(7558), + [anon_sym_is] = ACTIONS(7560), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -634838,6 +626450,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4943] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4943), [sym_preproc_endregion] = STATE(4943), [sym_preproc_line] = STATE(4943), @@ -634847,56 +626474,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4943), [sym_preproc_define] = STATE(4943), [sym_preproc_undef] = STATE(4943), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(7072), - [anon_sym_COLON] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(7072), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(7075), - [anon_sym_GT] = ACTIONS(7075), - [anon_sym_in] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(7075), - [anon_sym_BANG] = ACTIONS(7075), - [anon_sym_PLUS_PLUS] = ACTIONS(7072), - [anon_sym_DASH_DASH] = ACTIONS(7072), - [anon_sym_PLUS] = ACTIONS(7075), - [anon_sym_DASH] = ACTIONS(7075), - [anon_sym_STAR] = ACTIONS(7072), - [anon_sym_SLASH] = ACTIONS(7075), - [anon_sym_PERCENT] = ACTIONS(7072), - [anon_sym_CARET] = ACTIONS(7072), - [anon_sym_PIPE] = ACTIONS(7075), - [anon_sym_AMP] = ACTIONS(7075), - [anon_sym_LT_LT] = ACTIONS(7072), - [anon_sym_GT_GT] = ACTIONS(7075), - [anon_sym_GT_GT_GT] = ACTIONS(7072), - [anon_sym_EQ_EQ] = ACTIONS(7072), - [anon_sym_BANG_EQ] = ACTIONS(7072), - [anon_sym_GT_EQ] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7072), - [anon_sym_DOT] = ACTIONS(7075), - [anon_sym_EQ_GT] = ACTIONS(4970), - [anon_sym_switch] = ACTIONS(7072), - [anon_sym_when] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(7072), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(7072), - [anon_sym_PIPE_PIPE] = ACTIONS(7072), - [sym_op_coalescing] = ACTIONS(7072), - [anon_sym_on] = ACTIONS(4970), - [anon_sym_equals] = ACTIONS(4970), - [anon_sym_by] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(7072), - [anon_sym_is] = ACTIONS(7072), - [anon_sym_DASH_GT] = ACTIONS(7072), - [anon_sym_with] = ACTIONS(7072), - [aux_sym_preproc_if_token3] = ACTIONS(4970), - [aux_sym_preproc_else_token1] = ACTIONS(4970), - [aux_sym_preproc_elif_token1] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7300), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7306), + [sym_op_right_shift] = ACTIONS(7308), + [sym_op_unsigned_right_shift] = ACTIONS(7306), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(7314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(7316), + [anon_sym_is] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -634909,6 +626520,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4944] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4944), [sym_preproc_endregion] = STATE(4944), [sym_preproc_line] = STATE(4944), @@ -634918,56 +626544,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4944), [sym_preproc_define] = STATE(4944), [sym_preproc_undef] = STATE(4944), - [anon_sym_EQ] = ACTIONS(7172), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7174), - [anon_sym_DASH_EQ] = ACTIONS(7174), - [anon_sym_STAR_EQ] = ACTIONS(7174), - [anon_sym_SLASH_EQ] = ACTIONS(7174), - [anon_sym_PERCENT_EQ] = ACTIONS(7174), - [anon_sym_AMP_EQ] = ACTIONS(7174), - [anon_sym_CARET_EQ] = ACTIONS(7174), - [anon_sym_PIPE_EQ] = ACTIONS(7174), - [anon_sym_LT_LT_EQ] = ACTIONS(7174), - [anon_sym_GT_GT_EQ] = ACTIONS(7174), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7174), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7174), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_on] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -634980,6 +626590,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4945] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4945), [sym_preproc_endregion] = STATE(4945), [sym_preproc_line] = STATE(4945), @@ -634989,56 +626614,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4945), [sym_preproc_define] = STATE(4945), [sym_preproc_undef] = STATE(4945), - [anon_sym_SEMI] = ACTIONS(7148), - [anon_sym_LBRACK] = ACTIONS(7148), - [anon_sym_COLON] = ACTIONS(7148), - [anon_sym_COMMA] = ACTIONS(7148), - [anon_sym_RBRACK] = ACTIONS(7148), - [anon_sym_LPAREN] = ACTIONS(7148), - [anon_sym_RPAREN] = ACTIONS(7148), - [anon_sym_RBRACE] = ACTIONS(7148), - [anon_sym_LT] = ACTIONS(7150), - [anon_sym_GT] = ACTIONS(7150), - [anon_sym_in] = ACTIONS(7148), - [anon_sym_QMARK] = ACTIONS(7150), - [anon_sym_BANG] = ACTIONS(7150), - [anon_sym_PLUS_PLUS] = ACTIONS(7148), - [anon_sym_DASH_DASH] = ACTIONS(7148), - [anon_sym_PLUS] = ACTIONS(7150), - [anon_sym_DASH] = ACTIONS(7150), - [anon_sym_STAR] = ACTIONS(7148), - [anon_sym_SLASH] = ACTIONS(7150), - [anon_sym_PERCENT] = ACTIONS(7148), - [anon_sym_CARET] = ACTIONS(7148), - [anon_sym_PIPE] = ACTIONS(7150), - [anon_sym_AMP] = ACTIONS(7150), - [anon_sym_LT_LT] = ACTIONS(7148), - [anon_sym_GT_GT] = ACTIONS(7150), - [anon_sym_GT_GT_GT] = ACTIONS(7148), - [anon_sym_EQ_EQ] = ACTIONS(7148), - [anon_sym_BANG_EQ] = ACTIONS(7148), - [anon_sym_GT_EQ] = ACTIONS(7148), - [anon_sym_LT_EQ] = ACTIONS(7148), - [anon_sym_DOT] = ACTIONS(7150), - [anon_sym_EQ_GT] = ACTIONS(7148), - [anon_sym_switch] = ACTIONS(7148), - [anon_sym_when] = ACTIONS(7148), - [anon_sym_DOT_DOT] = ACTIONS(7148), - [anon_sym_and] = ACTIONS(7148), - [anon_sym_or] = ACTIONS(7148), - [anon_sym_AMP_AMP] = ACTIONS(7148), - [anon_sym_PIPE_PIPE] = ACTIONS(7148), - [sym_op_coalescing] = ACTIONS(7148), - [anon_sym_on] = ACTIONS(7148), - [anon_sym_equals] = ACTIONS(7148), - [anon_sym_by] = ACTIONS(7148), - [anon_sym_as] = ACTIONS(7148), - [anon_sym_is] = ACTIONS(7148), - [anon_sym_DASH_GT] = ACTIONS(7148), - [anon_sym_with] = ACTIONS(7148), - [aux_sym_preproc_if_token3] = ACTIONS(7148), - [aux_sym_preproc_else_token1] = ACTIONS(7148), - [aux_sym_preproc_elif_token1] = ACTIONS(7148), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7300), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7306), + [sym_op_right_shift] = ACTIONS(7308), + [sym_op_unsigned_right_shift] = ACTIONS(7306), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(7314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(7316), + [anon_sym_is] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -635051,6 +626660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4946] = { + [sym_modifier] = STATE(5161), [sym_preproc_region] = STATE(4946), [sym_preproc_endregion] = STATE(4946), [sym_preproc_line] = STATE(4946), @@ -635060,56 +626670,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4946), [sym_preproc_define] = STATE(4946), [sym_preproc_undef] = STATE(4946), - [anon_sym_SEMI] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6365), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_COMMA] = ACTIONS(6365), - [anon_sym_RBRACK] = ACTIONS(6365), - [anon_sym_LPAREN] = ACTIONS(6365), - [anon_sym_RPAREN] = ACTIONS(6365), - [anon_sym_RBRACE] = ACTIONS(6365), - [anon_sym_LT] = ACTIONS(6367), - [anon_sym_GT] = ACTIONS(6367), - [anon_sym_in] = ACTIONS(6365), - [anon_sym_QMARK] = ACTIONS(6367), - [anon_sym_BANG] = ACTIONS(6367), - [anon_sym_PLUS_PLUS] = ACTIONS(6365), - [anon_sym_DASH_DASH] = ACTIONS(6365), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6365), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_PERCENT] = ACTIONS(6365), - [anon_sym_CARET] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6367), - [anon_sym_AMP] = ACTIONS(6367), - [anon_sym_LT_LT] = ACTIONS(6365), - [anon_sym_GT_GT] = ACTIONS(6367), - [anon_sym_GT_GT_GT] = ACTIONS(6365), - [anon_sym_EQ_EQ] = ACTIONS(6365), - [anon_sym_BANG_EQ] = ACTIONS(6365), - [anon_sym_GT_EQ] = ACTIONS(6365), - [anon_sym_LT_EQ] = ACTIONS(6365), - [anon_sym_DOT] = ACTIONS(6367), - [anon_sym_EQ_GT] = ACTIONS(6365), - [anon_sym_switch] = ACTIONS(6365), - [anon_sym_when] = ACTIONS(6365), - [anon_sym_DOT_DOT] = ACTIONS(6365), - [anon_sym_and] = ACTIONS(6365), - [anon_sym_or] = ACTIONS(6365), - [anon_sym_AMP_AMP] = ACTIONS(6365), - [anon_sym_PIPE_PIPE] = ACTIONS(6365), - [sym_op_coalescing] = ACTIONS(6365), - [anon_sym_on] = ACTIONS(6365), - [anon_sym_equals] = ACTIONS(6365), - [anon_sym_by] = ACTIONS(6365), - [anon_sym_as] = ACTIONS(6365), - [anon_sym_is] = ACTIONS(6365), - [anon_sym_DASH_GT] = ACTIONS(6365), - [anon_sym_with] = ACTIONS(6365), - [aux_sym_preproc_if_token3] = ACTIONS(6365), - [aux_sym_preproc_else_token1] = ACTIONS(6365), - [aux_sym_preproc_elif_token1] = ACTIONS(6365), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), + [sym__identifier_token] = ACTIONS(5821), + [anon_sym_extern] = ACTIONS(7709), + [anon_sym_alias] = ACTIONS(5821), + [anon_sym_global] = ACTIONS(5821), + [anon_sym_unsafe] = ACTIONS(7709), + [anon_sym_static] = ACTIONS(7709), + [anon_sym_LPAREN] = ACTIONS(5826), + [anon_sym_ref] = ACTIONS(5821), + [anon_sym_delegate] = ACTIONS(5821), + [anon_sym_public] = ACTIONS(7709), + [anon_sym_private] = ACTIONS(7709), + [anon_sym_readonly] = ACTIONS(7709), + [anon_sym_abstract] = ACTIONS(7709), + [anon_sym_async] = ACTIONS(7709), + [anon_sym_const] = ACTIONS(7709), + [anon_sym_file] = ACTIONS(7709), + [anon_sym_fixed] = ACTIONS(7709), + [anon_sym_internal] = ACTIONS(7709), + [anon_sym_new] = ACTIONS(7709), + [anon_sym_override] = ACTIONS(7709), + [anon_sym_partial] = ACTIONS(7709), + [anon_sym_protected] = ACTIONS(7709), + [anon_sym_required] = ACTIONS(7709), + [anon_sym_sealed] = ACTIONS(7709), + [anon_sym_virtual] = ACTIONS(7709), + [anon_sym_volatile] = ACTIONS(7709), + [anon_sym_where] = ACTIONS(5821), + [anon_sym_notnull] = ACTIONS(5821), + [anon_sym_unmanaged] = ACTIONS(5821), + [anon_sym_scoped] = ACTIONS(5821), + [anon_sym_var] = ACTIONS(5821), + [sym_predefined_type] = ACTIONS(5821), + [anon_sym_yield] = ACTIONS(5821), + [anon_sym_when] = ACTIONS(5821), + [anon_sym_from] = ACTIONS(5821), + [anon_sym_into] = ACTIONS(5821), + [anon_sym_join] = ACTIONS(5821), + [anon_sym_on] = ACTIONS(5821), + [anon_sym_equals] = ACTIONS(5821), + [anon_sym_let] = ACTIONS(5821), + [anon_sym_orderby] = ACTIONS(5821), + [anon_sym_ascending] = ACTIONS(5821), + [anon_sym_descending] = ACTIONS(5821), + [anon_sym_group] = ACTIONS(5821), + [anon_sym_by] = ACTIONS(5821), + [anon_sym_select] = ACTIONS(5821), + [sym_grit_metavariable] = ACTIONS(5826), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -635122,6 +626730,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4947] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4947), [sym_preproc_endregion] = STATE(4947), [sym_preproc_line] = STATE(4947), @@ -635131,56 +626754,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4947), [sym_preproc_define] = STATE(4947), [sym_preproc_undef] = STATE(4947), - [anon_sym_SEMI] = ACTIONS(6401), - [anon_sym_LBRACK] = ACTIONS(6401), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_COMMA] = ACTIONS(6401), - [anon_sym_RBRACK] = ACTIONS(6401), - [anon_sym_LPAREN] = ACTIONS(6401), - [anon_sym_RPAREN] = ACTIONS(6401), - [anon_sym_RBRACE] = ACTIONS(6401), - [anon_sym_LT] = ACTIONS(6403), - [anon_sym_GT] = ACTIONS(6403), - [anon_sym_in] = ACTIONS(6401), - [anon_sym_QMARK] = ACTIONS(6403), - [anon_sym_BANG] = ACTIONS(6403), - [anon_sym_PLUS_PLUS] = ACTIONS(6401), - [anon_sym_DASH_DASH] = ACTIONS(6401), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6401), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_PERCENT] = ACTIONS(6401), - [anon_sym_CARET] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6403), - [anon_sym_AMP] = ACTIONS(6403), - [anon_sym_LT_LT] = ACTIONS(6401), - [anon_sym_GT_GT] = ACTIONS(6403), - [anon_sym_GT_GT_GT] = ACTIONS(6401), - [anon_sym_EQ_EQ] = ACTIONS(6401), - [anon_sym_BANG_EQ] = ACTIONS(6401), - [anon_sym_GT_EQ] = ACTIONS(6401), - [anon_sym_LT_EQ] = ACTIONS(6401), - [anon_sym_DOT] = ACTIONS(6403), - [anon_sym_EQ_GT] = ACTIONS(6401), - [anon_sym_switch] = ACTIONS(6401), - [anon_sym_when] = ACTIONS(6401), - [anon_sym_DOT_DOT] = ACTIONS(6401), - [anon_sym_and] = ACTIONS(6401), - [anon_sym_or] = ACTIONS(6401), - [anon_sym_AMP_AMP] = ACTIONS(6401), - [anon_sym_PIPE_PIPE] = ACTIONS(6401), - [sym_op_coalescing] = ACTIONS(6401), - [anon_sym_on] = ACTIONS(6401), - [anon_sym_equals] = ACTIONS(6401), - [anon_sym_by] = ACTIONS(6401), - [anon_sym_as] = ACTIONS(6401), - [anon_sym_is] = ACTIONS(6401), - [anon_sym_DASH_GT] = ACTIONS(6401), - [anon_sym_with] = ACTIONS(6401), - [aux_sym_preproc_if_token3] = ACTIONS(6401), - [aux_sym_preproc_else_token1] = ACTIONS(6401), - [aux_sym_preproc_elif_token1] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -635193,6 +626800,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4948] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4948), [sym_preproc_endregion] = STATE(4948), [sym_preproc_line] = STATE(4948), @@ -635202,56 +626824,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4948), [sym_preproc_define] = STATE(4948), [sym_preproc_undef] = STATE(4948), - [anon_sym_SEMI] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6385), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_COMMA] = ACTIONS(6385), - [anon_sym_RBRACK] = ACTIONS(6385), - [anon_sym_LPAREN] = ACTIONS(6385), - [anon_sym_RPAREN] = ACTIONS(6385), - [anon_sym_RBRACE] = ACTIONS(6385), - [anon_sym_LT] = ACTIONS(6387), - [anon_sym_GT] = ACTIONS(6387), - [anon_sym_in] = ACTIONS(6385), - [anon_sym_QMARK] = ACTIONS(6387), - [anon_sym_BANG] = ACTIONS(6387), - [anon_sym_PLUS_PLUS] = ACTIONS(6385), - [anon_sym_DASH_DASH] = ACTIONS(6385), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6385), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_PERCENT] = ACTIONS(6385), - [anon_sym_CARET] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6387), - [anon_sym_AMP] = ACTIONS(6387), - [anon_sym_LT_LT] = ACTIONS(6385), - [anon_sym_GT_GT] = ACTIONS(6387), - [anon_sym_GT_GT_GT] = ACTIONS(6385), - [anon_sym_EQ_EQ] = ACTIONS(6385), - [anon_sym_BANG_EQ] = ACTIONS(6385), - [anon_sym_GT_EQ] = ACTIONS(6385), - [anon_sym_LT_EQ] = ACTIONS(6385), - [anon_sym_DOT] = ACTIONS(6387), - [anon_sym_EQ_GT] = ACTIONS(6385), - [anon_sym_switch] = ACTIONS(6385), - [anon_sym_when] = ACTIONS(6385), - [anon_sym_DOT_DOT] = ACTIONS(6385), - [anon_sym_and] = ACTIONS(6385), - [anon_sym_or] = ACTIONS(6385), - [anon_sym_AMP_AMP] = ACTIONS(6385), - [anon_sym_PIPE_PIPE] = ACTIONS(6385), - [sym_op_coalescing] = ACTIONS(6385), - [anon_sym_on] = ACTIONS(6385), - [anon_sym_equals] = ACTIONS(6385), - [anon_sym_by] = ACTIONS(6385), - [anon_sym_as] = ACTIONS(6385), - [anon_sym_is] = ACTIONS(6385), - [anon_sym_DASH_GT] = ACTIONS(6385), - [anon_sym_with] = ACTIONS(6385), - [aux_sym_preproc_if_token3] = ACTIONS(6385), - [aux_sym_preproc_else_token1] = ACTIONS(6385), - [aux_sym_preproc_elif_token1] = ACTIONS(6385), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7306), + [sym_op_right_shift] = ACTIONS(7308), + [sym_op_unsigned_right_shift] = ACTIONS(7306), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7316), + [anon_sym_is] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -635264,6 +626870,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4949] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4949), [sym_preproc_endregion] = STATE(4949), [sym_preproc_line] = STATE(4949), @@ -635273,56 +626894,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4949), [sym_preproc_define] = STATE(4949), [sym_preproc_undef] = STATE(4949), - [anon_sym_EQ] = ACTIONS(7176), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7178), - [anon_sym_DASH_EQ] = ACTIONS(7178), - [anon_sym_STAR_EQ] = ACTIONS(7178), - [anon_sym_SLASH_EQ] = ACTIONS(7178), - [anon_sym_PERCENT_EQ] = ACTIONS(7178), - [anon_sym_AMP_EQ] = ACTIONS(7178), - [anon_sym_CARET_EQ] = ACTIONS(7178), - [anon_sym_PIPE_EQ] = ACTIONS(7178), - [anon_sym_LT_LT_EQ] = ACTIONS(7178), - [anon_sym_GT_GT_EQ] = ACTIONS(7178), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7178), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7178), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_by] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -635335,6 +626940,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4950] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4950), [sym_preproc_endregion] = STATE(4950), [sym_preproc_line] = STATE(4950), @@ -635344,56 +626964,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4950), [sym_preproc_define] = STATE(4950), [sym_preproc_undef] = STATE(4950), - [anon_sym_EQ] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_EQ_GT] = ACTIONS(5684), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7182), - [anon_sym_DASH_EQ] = ACTIONS(7182), - [anon_sym_STAR_EQ] = ACTIONS(7182), - [anon_sym_SLASH_EQ] = ACTIONS(7182), - [anon_sym_PERCENT_EQ] = ACTIONS(7182), - [anon_sym_AMP_EQ] = ACTIONS(7182), - [anon_sym_CARET_EQ] = ACTIONS(7182), - [anon_sym_PIPE_EQ] = ACTIONS(7182), - [anon_sym_LT_LT_EQ] = ACTIONS(7182), - [anon_sym_GT_GT_EQ] = ACTIONS(7182), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7182), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7182), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7306), + [sym_op_right_shift] = ACTIONS(7308), + [sym_op_unsigned_right_shift] = ACTIONS(7306), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7316), + [anon_sym_is] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -635406,6 +627010,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4951] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4951), [sym_preproc_endregion] = STATE(4951), [sym_preproc_line] = STATE(4951), @@ -635415,56 +627034,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4951), [sym_preproc_define] = STATE(4951), [sym_preproc_undef] = STATE(4951), - [anon_sym_EQ] = ACTIONS(7184), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_when] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7186), - [anon_sym_DASH_EQ] = ACTIONS(7186), - [anon_sym_STAR_EQ] = ACTIONS(7186), - [anon_sym_SLASH_EQ] = ACTIONS(7186), - [anon_sym_PERCENT_EQ] = ACTIONS(7186), - [anon_sym_AMP_EQ] = ACTIONS(7186), - [anon_sym_CARET_EQ] = ACTIONS(7186), - [anon_sym_PIPE_EQ] = ACTIONS(7186), - [anon_sym_LT_LT_EQ] = ACTIONS(7186), - [anon_sym_GT_GT_EQ] = ACTIONS(7186), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7186), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7186), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7306), + [sym_op_right_shift] = ACTIONS(7308), + [sym_op_unsigned_right_shift] = ACTIONS(7306), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7316), + [anon_sym_is] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -635477,6 +627080,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4952] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4952), [sym_preproc_endregion] = STATE(4952), [sym_preproc_line] = STATE(4952), @@ -635486,56 +627104,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4952), [sym_preproc_define] = STATE(4952), [sym_preproc_undef] = STATE(4952), - [anon_sym_SEMI] = ACTIONS(6237), - [anon_sym_LBRACK] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_COMMA] = ACTIONS(6237), - [anon_sym_RBRACK] = ACTIONS(6237), - [anon_sym_LPAREN] = ACTIONS(6237), - [anon_sym_RPAREN] = ACTIONS(6237), - [anon_sym_RBRACE] = ACTIONS(6237), - [anon_sym_LT] = ACTIONS(6239), - [anon_sym_GT] = ACTIONS(6239), - [anon_sym_in] = ACTIONS(6237), - [anon_sym_QMARK] = ACTIONS(6239), - [anon_sym_BANG] = ACTIONS(6239), - [anon_sym_PLUS_PLUS] = ACTIONS(6237), - [anon_sym_DASH_DASH] = ACTIONS(6237), - [anon_sym_PLUS] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_PERCENT] = ACTIONS(6237), - [anon_sym_CARET] = ACTIONS(6237), - [anon_sym_PIPE] = ACTIONS(6239), - [anon_sym_AMP] = ACTIONS(6239), - [anon_sym_LT_LT] = ACTIONS(6237), - [anon_sym_GT_GT] = ACTIONS(6239), - [anon_sym_GT_GT_GT] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6237), - [anon_sym_BANG_EQ] = ACTIONS(6237), - [anon_sym_GT_EQ] = ACTIONS(6237), - [anon_sym_LT_EQ] = ACTIONS(6237), - [anon_sym_DOT] = ACTIONS(6239), - [anon_sym_EQ_GT] = ACTIONS(6237), - [anon_sym_switch] = ACTIONS(6237), - [anon_sym_when] = ACTIONS(6237), - [anon_sym_DOT_DOT] = ACTIONS(6237), - [anon_sym_and] = ACTIONS(6237), - [anon_sym_or] = ACTIONS(6237), - [anon_sym_AMP_AMP] = ACTIONS(6237), - [anon_sym_PIPE_PIPE] = ACTIONS(6237), - [sym_op_coalescing] = ACTIONS(6237), - [anon_sym_on] = ACTIONS(6237), - [anon_sym_equals] = ACTIONS(6237), - [anon_sym_by] = ACTIONS(6237), - [anon_sym_as] = ACTIONS(6237), - [anon_sym_is] = ACTIONS(6237), - [anon_sym_DASH_GT] = ACTIONS(6237), - [anon_sym_with] = ACTIONS(6237), - [aux_sym_preproc_if_token3] = ACTIONS(6237), - [aux_sym_preproc_else_token1] = ACTIONS(6237), - [aux_sym_preproc_elif_token1] = ACTIONS(6237), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7306), + [sym_op_right_shift] = ACTIONS(7308), + [sym_op_unsigned_right_shift] = ACTIONS(7306), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7316), + [anon_sym_is] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -635548,6 +627150,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4953] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4953), [sym_preproc_endregion] = STATE(4953), [sym_preproc_line] = STATE(4953), @@ -635557,56 +627174,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4953), [sym_preproc_define] = STATE(4953), [sym_preproc_undef] = STATE(4953), - [anon_sym_SEMI] = ACTIONS(6289), - [anon_sym_LBRACK] = ACTIONS(6289), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_COMMA] = ACTIONS(6289), - [anon_sym_RBRACK] = ACTIONS(6289), - [anon_sym_LPAREN] = ACTIONS(6289), - [anon_sym_RPAREN] = ACTIONS(6289), - [anon_sym_RBRACE] = ACTIONS(6289), - [anon_sym_LT] = ACTIONS(6291), - [anon_sym_GT] = ACTIONS(6291), - [anon_sym_in] = ACTIONS(6289), - [anon_sym_QMARK] = ACTIONS(6291), - [anon_sym_BANG] = ACTIONS(6291), - [anon_sym_PLUS_PLUS] = ACTIONS(6289), - [anon_sym_DASH_DASH] = ACTIONS(6289), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6289), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_PERCENT] = ACTIONS(6289), - [anon_sym_CARET] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6291), - [anon_sym_AMP] = ACTIONS(6291), - [anon_sym_LT_LT] = ACTIONS(6289), - [anon_sym_GT_GT] = ACTIONS(6291), - [anon_sym_GT_GT_GT] = ACTIONS(6289), - [anon_sym_EQ_EQ] = ACTIONS(6289), - [anon_sym_BANG_EQ] = ACTIONS(6289), - [anon_sym_GT_EQ] = ACTIONS(6289), - [anon_sym_LT_EQ] = ACTIONS(6289), - [anon_sym_DOT] = ACTIONS(6291), - [anon_sym_EQ_GT] = ACTIONS(6289), - [anon_sym_switch] = ACTIONS(6289), - [anon_sym_when] = ACTIONS(6289), - [anon_sym_DOT_DOT] = ACTIONS(6289), - [anon_sym_and] = ACTIONS(6289), - [anon_sym_or] = ACTIONS(6289), - [anon_sym_AMP_AMP] = ACTIONS(6289), - [anon_sym_PIPE_PIPE] = ACTIONS(6289), - [sym_op_coalescing] = ACTIONS(6289), - [anon_sym_on] = ACTIONS(6289), - [anon_sym_equals] = ACTIONS(6289), - [anon_sym_by] = ACTIONS(6289), - [anon_sym_as] = ACTIONS(6289), - [anon_sym_is] = ACTIONS(6289), - [anon_sym_DASH_GT] = ACTIONS(6289), - [anon_sym_with] = ACTIONS(6289), - [aux_sym_preproc_if_token3] = ACTIONS(6289), - [aux_sym_preproc_else_token1] = ACTIONS(6289), - [aux_sym_preproc_elif_token1] = ACTIONS(6289), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7306), + [sym_op_right_shift] = ACTIONS(7308), + [sym_op_unsigned_right_shift] = ACTIONS(7306), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7316), + [anon_sym_is] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -635619,6 +627220,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4954] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4954), [sym_preproc_endregion] = STATE(4954), [sym_preproc_line] = STATE(4954), @@ -635628,56 +627244,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4954), [sym_preproc_define] = STATE(4954), [sym_preproc_undef] = STATE(4954), - [anon_sym_SEMI] = ACTIONS(6227), - [anon_sym_LBRACK] = ACTIONS(6227), - [anon_sym_COLON] = ACTIONS(6227), - [anon_sym_COMMA] = ACTIONS(6227), - [anon_sym_RBRACK] = ACTIONS(6227), - [anon_sym_LPAREN] = ACTIONS(6227), - [anon_sym_RPAREN] = ACTIONS(6227), - [anon_sym_RBRACE] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(6229), - [anon_sym_GT] = ACTIONS(6229), - [anon_sym_in] = ACTIONS(6227), - [anon_sym_QMARK] = ACTIONS(6229), - [anon_sym_BANG] = ACTIONS(6229), - [anon_sym_PLUS_PLUS] = ACTIONS(6227), - [anon_sym_DASH_DASH] = ACTIONS(6227), - [anon_sym_PLUS] = ACTIONS(6229), - [anon_sym_DASH] = ACTIONS(6229), - [anon_sym_STAR] = ACTIONS(6227), - [anon_sym_SLASH] = ACTIONS(6229), - [anon_sym_PERCENT] = ACTIONS(6227), - [anon_sym_CARET] = ACTIONS(6227), - [anon_sym_PIPE] = ACTIONS(6229), - [anon_sym_AMP] = ACTIONS(6229), - [anon_sym_LT_LT] = ACTIONS(6227), - [anon_sym_GT_GT] = ACTIONS(6229), - [anon_sym_GT_GT_GT] = ACTIONS(6227), - [anon_sym_EQ_EQ] = ACTIONS(6227), - [anon_sym_BANG_EQ] = ACTIONS(6227), - [anon_sym_GT_EQ] = ACTIONS(6227), - [anon_sym_LT_EQ] = ACTIONS(6227), - [anon_sym_DOT] = ACTIONS(6229), - [anon_sym_EQ_GT] = ACTIONS(6227), - [anon_sym_switch] = ACTIONS(6227), - [anon_sym_when] = ACTIONS(6227), - [anon_sym_DOT_DOT] = ACTIONS(6227), - [anon_sym_and] = ACTIONS(6227), - [anon_sym_or] = ACTIONS(6227), - [anon_sym_AMP_AMP] = ACTIONS(6227), - [anon_sym_PIPE_PIPE] = ACTIONS(6227), - [sym_op_coalescing] = ACTIONS(6227), - [anon_sym_on] = ACTIONS(6227), - [anon_sym_equals] = ACTIONS(6227), - [anon_sym_by] = ACTIONS(6227), - [anon_sym_as] = ACTIONS(6227), - [anon_sym_is] = ACTIONS(6227), - [anon_sym_DASH_GT] = ACTIONS(6227), - [anon_sym_with] = ACTIONS(6227), - [aux_sym_preproc_if_token3] = ACTIONS(6227), - [aux_sym_preproc_else_token1] = ACTIONS(6227), - [aux_sym_preproc_elif_token1] = ACTIONS(6227), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7306), + [sym_op_right_shift] = ACTIONS(7308), + [sym_op_unsigned_right_shift] = ACTIONS(7306), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -635690,6 +627290,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4955] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4955), [sym_preproc_endregion] = STATE(4955), [sym_preproc_line] = STATE(4955), @@ -635699,56 +627314,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4955), [sym_preproc_define] = STATE(4955), [sym_preproc_undef] = STATE(4955), - [sym__identifier_token] = ACTIONS(5875), - [anon_sym_extern] = ACTIONS(5875), - [anon_sym_alias] = ACTIONS(5875), - [anon_sym_global] = ACTIONS(5875), - [anon_sym_unsafe] = ACTIONS(5875), - [anon_sym_static] = ACTIONS(5875), - [anon_sym_LBRACK] = ACTIONS(5877), - [anon_sym_public] = ACTIONS(5875), - [anon_sym_private] = ACTIONS(5875), - [anon_sym_readonly] = ACTIONS(5875), - [anon_sym_abstract] = ACTIONS(5875), - [anon_sym_async] = ACTIONS(5875), - [anon_sym_const] = ACTIONS(5875), - [anon_sym_file] = ACTIONS(5875), - [anon_sym_fixed] = ACTIONS(5875), - [anon_sym_internal] = ACTIONS(5875), - [anon_sym_new] = ACTIONS(5875), - [anon_sym_override] = ACTIONS(5875), - [anon_sym_partial] = ACTIONS(5875), - [anon_sym_protected] = ACTIONS(5875), - [anon_sym_required] = ACTIONS(5875), - [anon_sym_sealed] = ACTIONS(5875), - [anon_sym_virtual] = ACTIONS(5875), - [anon_sym_volatile] = ACTIONS(5875), - [anon_sym_where] = ACTIONS(5875), - [anon_sym_notnull] = ACTIONS(5875), - [anon_sym_unmanaged] = ACTIONS(5875), - [sym_accessor_get] = ACTIONS(5875), - [sym_accessor_set] = ACTIONS(5875), - [sym_accessor_add] = ACTIONS(5875), - [sym_accessor_remove] = ACTIONS(5875), - [sym_accessor_init] = ACTIONS(5875), - [anon_sym_scoped] = ACTIONS(5875), - [anon_sym_var] = ACTIONS(5875), - [anon_sym_yield] = ACTIONS(5875), - [anon_sym_when] = ACTIONS(5875), - [anon_sym_from] = ACTIONS(5875), - [anon_sym_into] = ACTIONS(5875), - [anon_sym_join] = ACTIONS(5875), - [anon_sym_on] = ACTIONS(5875), - [anon_sym_equals] = ACTIONS(5875), - [anon_sym_let] = ACTIONS(5875), - [anon_sym_orderby] = ACTIONS(5875), - [anon_sym_ascending] = ACTIONS(5875), - [anon_sym_descending] = ACTIONS(5875), - [anon_sym_group] = ACTIONS(5875), - [anon_sym_by] = ACTIONS(5875), - [anon_sym_select] = ACTIONS(5875), - [sym_grit_metavariable] = ACTIONS(5877), - [aux_sym_preproc_if_token1] = ACTIONS(5877), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7306), + [sym_op_right_shift] = ACTIONS(7308), + [sym_op_unsigned_right_shift] = ACTIONS(7306), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(7314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7316), + [anon_sym_is] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -635761,6 +627360,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4956] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4956), [sym_preproc_endregion] = STATE(4956), [sym_preproc_line] = STATE(4956), @@ -635770,56 +627384,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4956), [sym_preproc_define] = STATE(4956), [sym_preproc_undef] = STATE(4956), - [anon_sym_SEMI] = ACTIONS(6196), - [anon_sym_LBRACK] = ACTIONS(6196), - [anon_sym_COLON] = ACTIONS(6196), - [anon_sym_COMMA] = ACTIONS(6196), - [anon_sym_RBRACK] = ACTIONS(6196), - [anon_sym_LPAREN] = ACTIONS(6196), - [anon_sym_RPAREN] = ACTIONS(6196), - [anon_sym_RBRACE] = ACTIONS(6196), - [anon_sym_LT] = ACTIONS(6198), - [anon_sym_GT] = ACTIONS(6198), - [anon_sym_in] = ACTIONS(6196), - [anon_sym_QMARK] = ACTIONS(6198), - [anon_sym_BANG] = ACTIONS(6198), - [anon_sym_PLUS_PLUS] = ACTIONS(6196), - [anon_sym_DASH_DASH] = ACTIONS(6196), - [anon_sym_PLUS] = ACTIONS(6198), - [anon_sym_DASH] = ACTIONS(6198), - [anon_sym_STAR] = ACTIONS(6196), - [anon_sym_SLASH] = ACTIONS(6198), - [anon_sym_PERCENT] = ACTIONS(6196), - [anon_sym_CARET] = ACTIONS(6196), - [anon_sym_PIPE] = ACTIONS(6198), - [anon_sym_AMP] = ACTIONS(6198), - [anon_sym_LT_LT] = ACTIONS(6196), - [anon_sym_GT_GT] = ACTIONS(6198), - [anon_sym_GT_GT_GT] = ACTIONS(6196), - [anon_sym_EQ_EQ] = ACTIONS(6196), - [anon_sym_BANG_EQ] = ACTIONS(6196), - [anon_sym_GT_EQ] = ACTIONS(6196), - [anon_sym_LT_EQ] = ACTIONS(6196), - [anon_sym_DOT] = ACTIONS(6198), - [anon_sym_EQ_GT] = ACTIONS(6196), - [anon_sym_switch] = ACTIONS(6196), - [anon_sym_when] = ACTIONS(6196), - [anon_sym_DOT_DOT] = ACTIONS(6196), - [anon_sym_and] = ACTIONS(6196), - [anon_sym_or] = ACTIONS(6196), - [anon_sym_AMP_AMP] = ACTIONS(6196), - [anon_sym_PIPE_PIPE] = ACTIONS(6196), - [sym_op_coalescing] = ACTIONS(6196), - [anon_sym_on] = ACTIONS(6196), - [anon_sym_equals] = ACTIONS(6196), - [anon_sym_by] = ACTIONS(6196), - [anon_sym_as] = ACTIONS(6196), - [anon_sym_is] = ACTIONS(6196), - [anon_sym_DASH_GT] = ACTIONS(6196), - [anon_sym_with] = ACTIONS(6196), - [aux_sym_preproc_if_token3] = ACTIONS(6196), - [aux_sym_preproc_else_token1] = ACTIONS(6196), - [aux_sym_preproc_elif_token1] = ACTIONS(6196), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -635832,6 +627430,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4957] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4957), [sym_preproc_endregion] = STATE(4957), [sym_preproc_line] = STATE(4957), @@ -635841,56 +627454,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4957), [sym_preproc_define] = STATE(4957), [sym_preproc_undef] = STATE(4957), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_COLON] = ACTIONS(2173), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(7188), - [anon_sym_RPAREN] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_in] = ACTIONS(2173), - [anon_sym_QMARK] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_PERCENT] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2173), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2173), - [anon_sym_BANG_EQ] = ACTIONS(2173), - [anon_sym_GT_EQ] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2173), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_EQ_GT] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_when] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2173), - [anon_sym_and] = ACTIONS(2173), - [anon_sym_or] = ACTIONS(2173), - [anon_sym_AMP_AMP] = ACTIONS(2173), - [anon_sym_PIPE_PIPE] = ACTIONS(2173), - [sym_op_coalescing] = ACTIONS(2173), - [anon_sym_on] = ACTIONS(2173), - [anon_sym_equals] = ACTIONS(2173), - [anon_sym_by] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_is] = ACTIONS(2173), - [anon_sym_DASH_GT] = ACTIONS(2173), - [anon_sym_with] = ACTIONS(2173), - [aux_sym_preproc_if_token3] = ACTIONS(2173), - [aux_sym_preproc_else_token1] = ACTIONS(2173), - [aux_sym_preproc_elif_token1] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -635903,6 +627500,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4958] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4958), [sym_preproc_endregion] = STATE(4958), [sym_preproc_line] = STATE(4958), @@ -635912,56 +627524,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4958), [sym_preproc_define] = STATE(4958), [sym_preproc_undef] = STATE(4958), - [anon_sym_SEMI] = ACTIONS(6188), - [anon_sym_LBRACK] = ACTIONS(6188), - [anon_sym_COLON] = ACTIONS(6188), - [anon_sym_COMMA] = ACTIONS(6188), - [anon_sym_RBRACK] = ACTIONS(6188), - [anon_sym_LPAREN] = ACTIONS(6188), - [anon_sym_RPAREN] = ACTIONS(6188), - [anon_sym_RBRACE] = ACTIONS(6188), - [anon_sym_LT] = ACTIONS(6190), - [anon_sym_GT] = ACTIONS(6190), - [anon_sym_in] = ACTIONS(6188), - [anon_sym_QMARK] = ACTIONS(6190), - [anon_sym_BANG] = ACTIONS(6190), - [anon_sym_PLUS_PLUS] = ACTIONS(6188), - [anon_sym_DASH_DASH] = ACTIONS(6188), - [anon_sym_PLUS] = ACTIONS(6190), - [anon_sym_DASH] = ACTIONS(6190), - [anon_sym_STAR] = ACTIONS(6188), - [anon_sym_SLASH] = ACTIONS(6190), - [anon_sym_PERCENT] = ACTIONS(6188), - [anon_sym_CARET] = ACTIONS(6188), - [anon_sym_PIPE] = ACTIONS(6190), - [anon_sym_AMP] = ACTIONS(6190), - [anon_sym_LT_LT] = ACTIONS(6188), - [anon_sym_GT_GT] = ACTIONS(6190), - [anon_sym_GT_GT_GT] = ACTIONS(6188), - [anon_sym_EQ_EQ] = ACTIONS(6188), - [anon_sym_BANG_EQ] = ACTIONS(6188), - [anon_sym_GT_EQ] = ACTIONS(6188), - [anon_sym_LT_EQ] = ACTIONS(6188), - [anon_sym_DOT] = ACTIONS(6190), - [anon_sym_EQ_GT] = ACTIONS(6188), - [anon_sym_switch] = ACTIONS(6188), - [anon_sym_when] = ACTIONS(6188), - [anon_sym_DOT_DOT] = ACTIONS(6188), - [anon_sym_and] = ACTIONS(6188), - [anon_sym_or] = ACTIONS(6188), - [anon_sym_AMP_AMP] = ACTIONS(6188), - [anon_sym_PIPE_PIPE] = ACTIONS(6188), - [sym_op_coalescing] = ACTIONS(6188), - [anon_sym_on] = ACTIONS(6188), - [anon_sym_equals] = ACTIONS(6188), - [anon_sym_by] = ACTIONS(6188), - [anon_sym_as] = ACTIONS(6188), - [anon_sym_is] = ACTIONS(6188), - [anon_sym_DASH_GT] = ACTIONS(6188), - [anon_sym_with] = ACTIONS(6188), - [aux_sym_preproc_if_token3] = ACTIONS(6188), - [aux_sym_preproc_else_token1] = ACTIONS(6188), - [aux_sym_preproc_elif_token1] = ACTIONS(6188), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7306), + [sym_op_right_shift] = ACTIONS(7308), + [sym_op_unsigned_right_shift] = ACTIONS(7306), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7316), + [anon_sym_is] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -635974,6 +627570,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4959] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(4959), [sym_preproc_endregion] = STATE(4959), [sym_preproc_line] = STATE(4959), @@ -635983,56 +627594,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4959), [sym_preproc_define] = STATE(4959), [sym_preproc_undef] = STATE(4959), - [anon_sym_SEMI] = ACTIONS(6102), - [anon_sym_LBRACK] = ACTIONS(6102), - [anon_sym_COLON] = ACTIONS(6102), - [anon_sym_COMMA] = ACTIONS(6102), - [anon_sym_RBRACK] = ACTIONS(6102), - [anon_sym_LPAREN] = ACTIONS(6102), - [anon_sym_RPAREN] = ACTIONS(6102), - [anon_sym_RBRACE] = ACTIONS(6102), - [anon_sym_LT] = ACTIONS(6104), - [anon_sym_GT] = ACTIONS(6104), - [anon_sym_in] = ACTIONS(6102), - [anon_sym_QMARK] = ACTIONS(6104), - [anon_sym_BANG] = ACTIONS(6104), - [anon_sym_PLUS_PLUS] = ACTIONS(6102), - [anon_sym_DASH_DASH] = ACTIONS(6102), - [anon_sym_PLUS] = ACTIONS(6104), - [anon_sym_DASH] = ACTIONS(6104), - [anon_sym_STAR] = ACTIONS(6102), - [anon_sym_SLASH] = ACTIONS(6104), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_CARET] = ACTIONS(6102), - [anon_sym_PIPE] = ACTIONS(6104), - [anon_sym_AMP] = ACTIONS(6104), - [anon_sym_LT_LT] = ACTIONS(6102), - [anon_sym_GT_GT] = ACTIONS(6104), - [anon_sym_GT_GT_GT] = ACTIONS(6102), - [anon_sym_EQ_EQ] = ACTIONS(6102), - [anon_sym_BANG_EQ] = ACTIONS(6102), - [anon_sym_GT_EQ] = ACTIONS(6102), - [anon_sym_LT_EQ] = ACTIONS(6102), - [anon_sym_DOT] = ACTIONS(6104), - [anon_sym_EQ_GT] = ACTIONS(6102), - [anon_sym_switch] = ACTIONS(6102), - [anon_sym_when] = ACTIONS(6102), - [anon_sym_DOT_DOT] = ACTIONS(6102), - [anon_sym_and] = ACTIONS(6102), - [anon_sym_or] = ACTIONS(6102), - [anon_sym_AMP_AMP] = ACTIONS(6102), - [anon_sym_PIPE_PIPE] = ACTIONS(6102), - [sym_op_coalescing] = ACTIONS(6102), - [anon_sym_on] = ACTIONS(6102), - [anon_sym_equals] = ACTIONS(6102), - [anon_sym_by] = ACTIONS(6102), - [anon_sym_as] = ACTIONS(6102), - [anon_sym_is] = ACTIONS(6102), - [anon_sym_DASH_GT] = ACTIONS(6102), - [anon_sym_with] = ACTIONS(6102), - [aux_sym_preproc_if_token3] = ACTIONS(6102), - [aux_sym_preproc_else_token1] = ACTIONS(6102), - [aux_sym_preproc_elif_token1] = ACTIONS(6102), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -636045,6 +627640,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4960] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4960), [sym_preproc_endregion] = STATE(4960), [sym_preproc_line] = STATE(4960), @@ -636054,56 +627664,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4960), [sym_preproc_define] = STATE(4960), [sym_preproc_undef] = STATE(4960), - [anon_sym_SEMI] = ACTIONS(6136), - [anon_sym_LBRACK] = ACTIONS(6136), - [anon_sym_COLON] = ACTIONS(6136), - [anon_sym_COMMA] = ACTIONS(6136), - [anon_sym_RBRACK] = ACTIONS(6136), - [anon_sym_LPAREN] = ACTIONS(6136), - [anon_sym_RPAREN] = ACTIONS(6136), - [anon_sym_RBRACE] = ACTIONS(6136), - [anon_sym_LT] = ACTIONS(6138), - [anon_sym_GT] = ACTIONS(6138), - [anon_sym_in] = ACTIONS(6136), - [anon_sym_QMARK] = ACTIONS(6138), - [anon_sym_BANG] = ACTIONS(6138), - [anon_sym_PLUS_PLUS] = ACTIONS(6136), - [anon_sym_DASH_DASH] = ACTIONS(6136), - [anon_sym_PLUS] = ACTIONS(6138), - [anon_sym_DASH] = ACTIONS(6138), - [anon_sym_STAR] = ACTIONS(6136), - [anon_sym_SLASH] = ACTIONS(6138), - [anon_sym_PERCENT] = ACTIONS(6136), - [anon_sym_CARET] = ACTIONS(6136), - [anon_sym_PIPE] = ACTIONS(6138), - [anon_sym_AMP] = ACTIONS(6138), - [anon_sym_LT_LT] = ACTIONS(6136), - [anon_sym_GT_GT] = ACTIONS(6138), - [anon_sym_GT_GT_GT] = ACTIONS(6136), - [anon_sym_EQ_EQ] = ACTIONS(6136), - [anon_sym_BANG_EQ] = ACTIONS(6136), - [anon_sym_GT_EQ] = ACTIONS(6136), - [anon_sym_LT_EQ] = ACTIONS(6136), - [anon_sym_DOT] = ACTIONS(6138), - [anon_sym_EQ_GT] = ACTIONS(6136), - [anon_sym_switch] = ACTIONS(6136), - [anon_sym_when] = ACTIONS(6136), - [anon_sym_DOT_DOT] = ACTIONS(6136), - [anon_sym_and] = ACTIONS(6136), - [anon_sym_or] = ACTIONS(6136), - [anon_sym_AMP_AMP] = ACTIONS(6136), - [anon_sym_PIPE_PIPE] = ACTIONS(6136), - [sym_op_coalescing] = ACTIONS(6136), - [anon_sym_on] = ACTIONS(6136), - [anon_sym_equals] = ACTIONS(6136), - [anon_sym_by] = ACTIONS(6136), - [anon_sym_as] = ACTIONS(6136), - [anon_sym_is] = ACTIONS(6136), - [anon_sym_DASH_GT] = ACTIONS(6136), - [anon_sym_with] = ACTIONS(6136), - [aux_sym_preproc_if_token3] = ACTIONS(6136), - [aux_sym_preproc_else_token1] = ACTIONS(6136), - [aux_sym_preproc_elif_token1] = ACTIONS(6136), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7712), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -636116,6 +627710,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4961] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4961), [sym_preproc_endregion] = STATE(4961), [sym_preproc_line] = STATE(4961), @@ -636125,56 +627734,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4961), [sym_preproc_define] = STATE(4961), [sym_preproc_undef] = STATE(4961), - [sym__identifier_token] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym_alias] = ACTIONS(5456), - [anon_sym_global] = ACTIONS(5456), - [anon_sym_unsafe] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5458), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_readonly] = ACTIONS(5456), - [anon_sym_abstract] = ACTIONS(5456), - [anon_sym_async] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_file] = ACTIONS(5456), - [anon_sym_fixed] = ACTIONS(5456), - [anon_sym_internal] = ACTIONS(5456), - [anon_sym_new] = ACTIONS(5456), - [anon_sym_override] = ACTIONS(5456), - [anon_sym_partial] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_required] = ACTIONS(5456), - [anon_sym_sealed] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_where] = ACTIONS(5456), - [anon_sym_notnull] = ACTIONS(5456), - [anon_sym_unmanaged] = ACTIONS(5456), - [sym_accessor_get] = ACTIONS(5456), - [sym_accessor_set] = ACTIONS(5456), - [sym_accessor_add] = ACTIONS(5456), - [sym_accessor_remove] = ACTIONS(5456), - [sym_accessor_init] = ACTIONS(5456), - [anon_sym_scoped] = ACTIONS(5456), - [anon_sym_var] = ACTIONS(5456), - [anon_sym_yield] = ACTIONS(5456), - [anon_sym_when] = ACTIONS(5456), - [anon_sym_from] = ACTIONS(5456), - [anon_sym_into] = ACTIONS(5456), - [anon_sym_join] = ACTIONS(5456), - [anon_sym_on] = ACTIONS(5456), - [anon_sym_equals] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(5456), - [anon_sym_orderby] = ACTIONS(5456), - [anon_sym_ascending] = ACTIONS(5456), - [anon_sym_descending] = ACTIONS(5456), - [anon_sym_group] = ACTIONS(5456), - [anon_sym_by] = ACTIONS(5456), - [anon_sym_select] = ACTIONS(5456), - [sym_grit_metavariable] = ACTIONS(5458), - [aux_sym_preproc_if_token1] = ACTIONS(5458), + [anon_sym_SEMI] = ACTIONS(7714), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -636187,6 +627780,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4962] = { + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7261), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4962), [sym_preproc_endregion] = STATE(4962), [sym_preproc_line] = STATE(4962), @@ -636196,56 +627807,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4962), [sym_preproc_define] = STATE(4962), [sym_preproc_undef] = STATE(4962), - [sym__identifier_token] = ACTIONS(5941), - [anon_sym_extern] = ACTIONS(5941), - [anon_sym_alias] = ACTIONS(5941), - [anon_sym_global] = ACTIONS(5941), - [anon_sym_unsafe] = ACTIONS(5941), - [anon_sym_static] = ACTIONS(5941), - [anon_sym_LBRACK] = ACTIONS(5943), - [anon_sym_public] = ACTIONS(5941), - [anon_sym_private] = ACTIONS(5941), - [anon_sym_readonly] = ACTIONS(5941), - [anon_sym_abstract] = ACTIONS(5941), - [anon_sym_async] = ACTIONS(5941), - [anon_sym_const] = ACTIONS(5941), - [anon_sym_file] = ACTIONS(5941), - [anon_sym_fixed] = ACTIONS(5941), - [anon_sym_internal] = ACTIONS(5941), - [anon_sym_new] = ACTIONS(5941), - [anon_sym_override] = ACTIONS(5941), - [anon_sym_partial] = ACTIONS(5941), - [anon_sym_protected] = ACTIONS(5941), - [anon_sym_required] = ACTIONS(5941), - [anon_sym_sealed] = ACTIONS(5941), - [anon_sym_virtual] = ACTIONS(5941), - [anon_sym_volatile] = ACTIONS(5941), - [anon_sym_where] = ACTIONS(5941), - [anon_sym_notnull] = ACTIONS(5941), - [anon_sym_unmanaged] = ACTIONS(5941), - [sym_accessor_get] = ACTIONS(5941), - [sym_accessor_set] = ACTIONS(5941), - [sym_accessor_add] = ACTIONS(5941), - [sym_accessor_remove] = ACTIONS(5941), - [sym_accessor_init] = ACTIONS(5941), - [anon_sym_scoped] = ACTIONS(5941), - [anon_sym_var] = ACTIONS(5941), - [anon_sym_yield] = ACTIONS(5941), - [anon_sym_when] = ACTIONS(5941), - [anon_sym_from] = ACTIONS(5941), - [anon_sym_into] = ACTIONS(5941), - [anon_sym_join] = ACTIONS(5941), - [anon_sym_on] = ACTIONS(5941), - [anon_sym_equals] = 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_by] = ACTIONS(5941), - [anon_sym_select] = ACTIONS(5941), - [sym_grit_metavariable] = ACTIONS(5943), - [aux_sym_preproc_if_token1] = ACTIONS(5943), + [aux_sym_type_argument_list_repeat1] = STATE(7264), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_GT] = ACTIONS(7716), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -636258,6 +627850,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4963] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4963), [sym_preproc_endregion] = STATE(4963), [sym_preproc_line] = STATE(4963), @@ -636267,56 +627874,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4963), [sym_preproc_define] = STATE(4963), [sym_preproc_undef] = STATE(4963), - [sym__identifier_token] = ACTIONS(4084), - [anon_sym_extern] = ACTIONS(4084), - [anon_sym_alias] = ACTIONS(4084), - [anon_sym_global] = ACTIONS(4084), - [anon_sym_unsafe] = ACTIONS(4084), - [anon_sym_static] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4086), - [anon_sym_public] = ACTIONS(4084), - [anon_sym_private] = ACTIONS(4084), - [anon_sym_readonly] = ACTIONS(4084), - [anon_sym_abstract] = ACTIONS(4084), - [anon_sym_async] = ACTIONS(4084), - [anon_sym_const] = ACTIONS(4084), - [anon_sym_file] = ACTIONS(4084), - [anon_sym_fixed] = ACTIONS(4084), - [anon_sym_internal] = ACTIONS(4084), - [anon_sym_new] = ACTIONS(4084), - [anon_sym_override] = ACTIONS(4084), - [anon_sym_partial] = ACTIONS(4084), - [anon_sym_protected] = ACTIONS(4084), - [anon_sym_required] = ACTIONS(4084), - [anon_sym_sealed] = ACTIONS(4084), - [anon_sym_virtual] = ACTIONS(4084), - [anon_sym_volatile] = ACTIONS(4084), - [anon_sym_where] = ACTIONS(4084), - [anon_sym_notnull] = ACTIONS(4084), - [anon_sym_unmanaged] = ACTIONS(4084), - [sym_accessor_get] = ACTIONS(4084), - [sym_accessor_set] = ACTIONS(4084), - [sym_accessor_add] = ACTIONS(4084), - [sym_accessor_remove] = ACTIONS(4084), - [sym_accessor_init] = ACTIONS(4084), - [anon_sym_scoped] = ACTIONS(4084), - [anon_sym_var] = ACTIONS(4084), - [anon_sym_yield] = ACTIONS(4084), - [anon_sym_when] = 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_ascending] = ACTIONS(4084), - [anon_sym_descending] = ACTIONS(4084), - [anon_sym_group] = ACTIONS(4084), - [anon_sym_by] = ACTIONS(4084), - [anon_sym_select] = ACTIONS(4084), - [sym_grit_metavariable] = ACTIONS(4086), - [aux_sym_preproc_if_token1] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7366), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -636329,6 +627920,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4964] = { + [sym_argument_list] = STATE(3748), + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(3690), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4032), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(4964), [sym_preproc_endregion] = STATE(4964), [sym_preproc_line] = STATE(4964), @@ -636338,56 +627948,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4964), [sym_preproc_define] = STATE(4964), [sym_preproc_undef] = STATE(4964), - [anon_sym_SEMI] = ACTIONS(5684), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_RBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(5684), - [anon_sym_RBRACE] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_in] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [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(5686), - [anon_sym_EQ_GT] = ACTIONS(5684), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_when] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5684), - [anon_sym_on] = ACTIONS(5684), - [anon_sym_equals] = ACTIONS(5684), - [anon_sym_by] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [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(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(7482), + [anon_sym_LPAREN] = ACTIONS(7484), + [anon_sym_ref] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(7486), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7718), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -636400,6 +627990,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4965] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4965), [sym_preproc_endregion] = STATE(4965), [sym_preproc_line] = STATE(4965), @@ -636409,56 +628014,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4965), [sym_preproc_define] = STATE(4965), [sym_preproc_undef] = STATE(4965), - [anon_sym_SEMI] = ACTIONS(6063), - [anon_sym_LBRACK] = ACTIONS(6063), - [anon_sym_COLON] = ACTIONS(6063), - [anon_sym_COMMA] = ACTIONS(6063), - [anon_sym_RBRACK] = ACTIONS(6063), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7720), [anon_sym_LPAREN] = ACTIONS(6063), - [anon_sym_RPAREN] = ACTIONS(6063), - [anon_sym_RBRACE] = ACTIONS(6063), - [anon_sym_LT] = ACTIONS(6065), - [anon_sym_GT] = ACTIONS(6065), - [anon_sym_in] = ACTIONS(6063), - [anon_sym_QMARK] = ACTIONS(6065), - [anon_sym_BANG] = ACTIONS(6065), - [anon_sym_PLUS_PLUS] = ACTIONS(6063), - [anon_sym_DASH_DASH] = ACTIONS(6063), - [anon_sym_PLUS] = ACTIONS(6065), - [anon_sym_DASH] = ACTIONS(6065), - [anon_sym_STAR] = ACTIONS(6063), - [anon_sym_SLASH] = ACTIONS(6065), - [anon_sym_PERCENT] = ACTIONS(6063), - [anon_sym_CARET] = ACTIONS(6063), - [anon_sym_PIPE] = ACTIONS(6065), - [anon_sym_AMP] = ACTIONS(6065), - [anon_sym_LT_LT] = ACTIONS(6063), - [anon_sym_GT_GT] = ACTIONS(6065), - [anon_sym_GT_GT_GT] = ACTIONS(6063), - [anon_sym_EQ_EQ] = ACTIONS(6063), - [anon_sym_BANG_EQ] = ACTIONS(6063), - [anon_sym_GT_EQ] = ACTIONS(6063), - [anon_sym_LT_EQ] = ACTIONS(6063), - [anon_sym_DOT] = ACTIONS(6065), - [anon_sym_EQ_GT] = ACTIONS(6063), - [anon_sym_switch] = ACTIONS(6063), - [anon_sym_when] = ACTIONS(6063), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_and] = ACTIONS(6063), - [anon_sym_or] = ACTIONS(6063), - [anon_sym_AMP_AMP] = ACTIONS(6063), - [anon_sym_PIPE_PIPE] = ACTIONS(6063), - [sym_op_coalescing] = ACTIONS(6063), - [anon_sym_on] = ACTIONS(6063), - [anon_sym_equals] = ACTIONS(6063), - [anon_sym_by] = ACTIONS(6063), - [anon_sym_as] = ACTIONS(6063), - [anon_sym_is] = ACTIONS(6063), - [anon_sym_DASH_GT] = ACTIONS(6063), - [anon_sym_with] = ACTIONS(6063), - [aux_sym_preproc_if_token3] = ACTIONS(6063), - [aux_sym_preproc_else_token1] = ACTIONS(6063), - [aux_sym_preproc_elif_token1] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -636471,6 +628060,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4966] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4966), [sym_preproc_endregion] = STATE(4966), [sym_preproc_line] = STATE(4966), @@ -636480,56 +628084,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4966), [sym_preproc_define] = STATE(4966), [sym_preproc_undef] = STATE(4966), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_COLON] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACK] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_in] = ACTIONS(2175), - [anon_sym_QMARK] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_EQ_GT] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_when] = ACTIONS(2175), - [anon_sym_DOT_DOT] = ACTIONS(2175), - [anon_sym_and] = ACTIONS(2175), - [anon_sym_or] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [sym_op_coalescing] = ACTIONS(2175), - [anon_sym_on] = ACTIONS(2175), - [anon_sym_equals] = ACTIONS(2175), - [anon_sym_by] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_is] = ACTIONS(2175), - [anon_sym_DASH_GT] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [aux_sym_preproc_if_token3] = ACTIONS(2175), - [aux_sym_preproc_else_token1] = ACTIONS(2175), - [aux_sym_preproc_elif_token1] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7722), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -636542,6 +628130,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4967] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4967), [sym_preproc_endregion] = STATE(4967), [sym_preproc_line] = STATE(4967), @@ -636551,56 +628154,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4967), [sym_preproc_define] = STATE(4967), [sym_preproc_undef] = STATE(4967), - [anon_sym_SEMI] = ACTIONS(7064), - [anon_sym_LBRACK] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7064), - [anon_sym_RBRACK] = ACTIONS(7064), - [anon_sym_LPAREN] = ACTIONS(7064), - [anon_sym_RPAREN] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7064), - [anon_sym_LT] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7066), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_BANG] = ACTIONS(7066), - [anon_sym_PLUS_PLUS] = ACTIONS(7064), - [anon_sym_DASH_DASH] = ACTIONS(7064), - [anon_sym_PLUS] = ACTIONS(7066), - [anon_sym_DASH] = ACTIONS(7066), - [anon_sym_STAR] = ACTIONS(7064), - [anon_sym_SLASH] = ACTIONS(7066), - [anon_sym_PERCENT] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7064), - [anon_sym_PIPE] = ACTIONS(7066), - [anon_sym_AMP] = ACTIONS(7066), - [anon_sym_LT_LT] = ACTIONS(7064), - [anon_sym_GT_GT] = ACTIONS(7066), - [anon_sym_GT_GT_GT] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7064), - [anon_sym_BANG_EQ] = ACTIONS(7064), - [anon_sym_GT_EQ] = ACTIONS(7064), - [anon_sym_LT_EQ] = ACTIONS(7064), - [anon_sym_DOT] = ACTIONS(7066), - [anon_sym_EQ_GT] = ACTIONS(7064), - [anon_sym_switch] = ACTIONS(7064), - [anon_sym_when] = ACTIONS(7064), - [anon_sym_DOT_DOT] = ACTIONS(7064), - [anon_sym_and] = ACTIONS(7064), - [anon_sym_or] = ACTIONS(7064), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7064), - [sym_op_coalescing] = ACTIONS(7064), - [anon_sym_on] = ACTIONS(7064), - [anon_sym_equals] = ACTIONS(7064), - [anon_sym_by] = ACTIONS(7064), - [anon_sym_as] = ACTIONS(7064), - [anon_sym_is] = ACTIONS(7064), - [anon_sym_DASH_GT] = ACTIONS(7064), - [anon_sym_with] = ACTIONS(7064), - [aux_sym_preproc_if_token3] = ACTIONS(7064), - [aux_sym_preproc_else_token1] = ACTIONS(7064), - [aux_sym_preproc_elif_token1] = ACTIONS(7064), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7354), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7366), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -636613,6 +628200,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4968] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4968), [sym_preproc_endregion] = STATE(4968), [sym_preproc_line] = STATE(4968), @@ -636622,56 +628224,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4968), [sym_preproc_define] = STATE(4968), [sym_preproc_undef] = STATE(4968), - [anon_sym_SEMI] = ACTIONS(7064), - [anon_sym_LBRACK] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7064), - [anon_sym_RBRACK] = ACTIONS(7064), - [anon_sym_LPAREN] = ACTIONS(7064), - [anon_sym_RPAREN] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7064), - [anon_sym_LT] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7066), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_BANG] = ACTIONS(7066), - [anon_sym_PLUS_PLUS] = ACTIONS(7064), - [anon_sym_DASH_DASH] = ACTIONS(7064), - [anon_sym_PLUS] = ACTIONS(7066), - [anon_sym_DASH] = ACTIONS(7066), - [anon_sym_STAR] = ACTIONS(7064), - [anon_sym_SLASH] = ACTIONS(7066), - [anon_sym_PERCENT] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7064), - [anon_sym_PIPE] = ACTIONS(7066), - [anon_sym_AMP] = ACTIONS(7066), - [anon_sym_LT_LT] = ACTIONS(7064), - [anon_sym_GT_GT] = ACTIONS(7066), - [anon_sym_GT_GT_GT] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7064), - [anon_sym_BANG_EQ] = ACTIONS(7064), - [anon_sym_GT_EQ] = ACTIONS(7064), - [anon_sym_LT_EQ] = ACTIONS(7064), - [anon_sym_DOT] = ACTIONS(7066), - [anon_sym_EQ_GT] = ACTIONS(7064), - [anon_sym_switch] = ACTIONS(7064), - [anon_sym_when] = ACTIONS(7064), - [anon_sym_DOT_DOT] = ACTIONS(7064), - [anon_sym_and] = ACTIONS(7064), - [anon_sym_or] = ACTIONS(7064), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7064), - [sym_op_coalescing] = ACTIONS(7064), - [anon_sym_on] = ACTIONS(7064), - [anon_sym_equals] = ACTIONS(7064), - [anon_sym_by] = ACTIONS(7064), - [anon_sym_as] = ACTIONS(7064), - [anon_sym_is] = ACTIONS(7064), - [anon_sym_DASH_GT] = ACTIONS(7064), - [anon_sym_with] = ACTIONS(7064), - [aux_sym_preproc_if_token3] = ACTIONS(7064), - [aux_sym_preproc_else_token1] = ACTIONS(7064), - [aux_sym_preproc_elif_token1] = ACTIONS(7064), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7354), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7366), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -636684,6 +628270,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4969] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4969), [sym_preproc_endregion] = STATE(4969), [sym_preproc_line] = STATE(4969), @@ -636693,56 +628294,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4969), [sym_preproc_define] = STATE(4969), [sym_preproc_undef] = STATE(4969), - [anon_sym_SEMI] = ACTIONS(6003), - [anon_sym_LBRACK] = ACTIONS(6003), - [anon_sym_COLON] = ACTIONS(6003), - [anon_sym_COMMA] = ACTIONS(6003), - [anon_sym_RBRACK] = ACTIONS(6003), - [anon_sym_LPAREN] = ACTIONS(6003), - [anon_sym_RPAREN] = ACTIONS(6003), - [anon_sym_RBRACE] = ACTIONS(6003), - [anon_sym_LT] = ACTIONS(6005), - [anon_sym_GT] = ACTIONS(6005), - [anon_sym_in] = 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_EQ_GT] = ACTIONS(6003), - [anon_sym_switch] = ACTIONS(6003), - [anon_sym_when] = ACTIONS(6003), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(6003), - [anon_sym_or] = ACTIONS(6003), - [anon_sym_AMP_AMP] = ACTIONS(6003), - [anon_sym_PIPE_PIPE] = ACTIONS(6003), - [sym_op_coalescing] = ACTIONS(6003), - [anon_sym_on] = ACTIONS(6003), - [anon_sym_equals] = ACTIONS(6003), - [anon_sym_by] = ACTIONS(6003), - [anon_sym_as] = ACTIONS(6003), - [anon_sym_is] = ACTIONS(6003), - [anon_sym_DASH_GT] = ACTIONS(6003), - [anon_sym_with] = ACTIONS(6003), - [aux_sym_preproc_if_token3] = ACTIONS(6003), - [aux_sym_preproc_else_token1] = ACTIONS(6003), - [aux_sym_preproc_elif_token1] = ACTIONS(6003), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7366), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -636764,56 +628349,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4970), [sym_preproc_define] = STATE(4970), [sym_preproc_undef] = STATE(4970), - [anon_sym_SEMI] = ACTIONS(6317), - [anon_sym_LBRACK] = ACTIONS(6317), - [anon_sym_COLON] = ACTIONS(6317), - [anon_sym_COMMA] = ACTIONS(6317), - [anon_sym_RBRACK] = ACTIONS(6317), - [anon_sym_LPAREN] = ACTIONS(6317), - [anon_sym_RPAREN] = ACTIONS(6317), - [anon_sym_RBRACE] = ACTIONS(6317), - [anon_sym_LT] = ACTIONS(6319), - [anon_sym_GT] = ACTIONS(6319), - [anon_sym_in] = ACTIONS(6317), - [anon_sym_QMARK] = ACTIONS(6319), - [anon_sym_BANG] = ACTIONS(6319), - [anon_sym_PLUS_PLUS] = ACTIONS(6317), - [anon_sym_DASH_DASH] = ACTIONS(6317), - [anon_sym_PLUS] = ACTIONS(6319), - [anon_sym_DASH] = ACTIONS(6319), - [anon_sym_STAR] = ACTIONS(6317), - [anon_sym_SLASH] = ACTIONS(6319), - [anon_sym_PERCENT] = ACTIONS(6317), - [anon_sym_CARET] = ACTIONS(6317), - [anon_sym_PIPE] = ACTIONS(6319), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_GT_GT] = ACTIONS(6319), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_EQ_EQ] = ACTIONS(6317), - [anon_sym_BANG_EQ] = ACTIONS(6317), - [anon_sym_GT_EQ] = ACTIONS(6317), - [anon_sym_LT_EQ] = ACTIONS(6317), - [anon_sym_DOT] = ACTIONS(6319), - [anon_sym_EQ_GT] = ACTIONS(6317), - [anon_sym_switch] = ACTIONS(6317), - [anon_sym_when] = ACTIONS(6317), - [anon_sym_DOT_DOT] = ACTIONS(6317), - [anon_sym_and] = ACTIONS(6317), - [anon_sym_or] = ACTIONS(6317), - [anon_sym_AMP_AMP] = ACTIONS(6317), - [anon_sym_PIPE_PIPE] = ACTIONS(6317), - [sym_op_coalescing] = ACTIONS(6317), - [anon_sym_on] = ACTIONS(6317), - [anon_sym_equals] = ACTIONS(6317), - [anon_sym_by] = ACTIONS(6317), - [anon_sym_as] = ACTIONS(6317), - [anon_sym_is] = ACTIONS(6317), - [anon_sym_DASH_GT] = ACTIONS(6317), - [anon_sym_with] = ACTIONS(6317), - [aux_sym_preproc_if_token3] = ACTIONS(6317), - [aux_sym_preproc_else_token1] = ACTIONS(6317), - [aux_sym_preproc_elif_token1] = ACTIONS(6317), + [sym__identifier_token] = ACTIONS(4084), + [anon_sym_extern] = ACTIONS(4084), + [anon_sym_alias] = ACTIONS(4084), + [anon_sym_global] = ACTIONS(4084), + [anon_sym_unsafe] = ACTIONS(4084), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_LPAREN] = ACTIONS(4086), + [anon_sym_ref] = ACTIONS(4084), + [anon_sym_delegate] = ACTIONS(4084), + [anon_sym_public] = ACTIONS(4084), + [anon_sym_private] = ACTIONS(4084), + [anon_sym_readonly] = ACTIONS(4084), + [anon_sym_abstract] = ACTIONS(4084), + [anon_sym_async] = ACTIONS(4084), + [anon_sym_const] = ACTIONS(4084), + [anon_sym_file] = ACTIONS(4084), + [anon_sym_fixed] = ACTIONS(4084), + [anon_sym_internal] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(4084), + [anon_sym_override] = ACTIONS(4084), + [anon_sym_partial] = ACTIONS(4084), + [anon_sym_protected] = ACTIONS(4084), + [anon_sym_required] = ACTIONS(4084), + [anon_sym_sealed] = ACTIONS(4084), + [anon_sym_virtual] = ACTIONS(4084), + [anon_sym_volatile] = ACTIONS(4084), + [anon_sym_where] = ACTIONS(4084), + [anon_sym_notnull] = ACTIONS(4084), + [anon_sym_unmanaged] = ACTIONS(4084), + [anon_sym_scoped] = ACTIONS(4084), + [anon_sym_var] = ACTIONS(4084), + [sym_predefined_type] = ACTIONS(4084), + [anon_sym_yield] = ACTIONS(4084), + [anon_sym_when] = 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_ascending] = ACTIONS(4084), + [anon_sym_descending] = ACTIONS(4084), + [anon_sym_group] = ACTIONS(4084), + [anon_sym_by] = ACTIONS(4084), + [anon_sym_select] = ACTIONS(4084), + [sym_grit_metavariable] = ACTIONS(4086), + [aux_sym_preproc_if_token1] = ACTIONS(4086), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -636826,6 +628410,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4971] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4971), [sym_preproc_endregion] = STATE(4971), [sym_preproc_line] = STATE(4971), @@ -636835,56 +628434,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4971), [sym_preproc_define] = STATE(4971), [sym_preproc_undef] = STATE(4971), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COLON] = ACTIONS(4972), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(3991), - [anon_sym_switch] = ACTIONS(4006), - [anon_sym_when] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_as] = ACTIONS(4006), - [anon_sym_is] = ACTIONS(4006), - [anon_sym_DASH_GT] = ACTIONS(4006), - [anon_sym_with] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7724), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -636897,6 +628480,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4972] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4972), [sym_preproc_endregion] = STATE(4972), [sym_preproc_line] = STATE(4972), @@ -636906,56 +628504,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4972), [sym_preproc_define] = STATE(4972), [sym_preproc_undef] = STATE(4972), - [sym__identifier_token] = ACTIONS(5917), - [anon_sym_extern] = ACTIONS(5917), - [anon_sym_alias] = ACTIONS(5917), - [anon_sym_global] = ACTIONS(5917), - [anon_sym_unsafe] = ACTIONS(5917), - [anon_sym_static] = ACTIONS(5917), - [anon_sym_LBRACK] = ACTIONS(5919), - [anon_sym_public] = ACTIONS(5917), - [anon_sym_private] = ACTIONS(5917), - [anon_sym_readonly] = ACTIONS(5917), - [anon_sym_abstract] = ACTIONS(5917), - [anon_sym_async] = ACTIONS(5917), - [anon_sym_const] = ACTIONS(5917), - [anon_sym_file] = ACTIONS(5917), - [anon_sym_fixed] = ACTIONS(5917), - [anon_sym_internal] = ACTIONS(5917), - [anon_sym_new] = ACTIONS(5917), - [anon_sym_override] = ACTIONS(5917), - [anon_sym_partial] = ACTIONS(5917), - [anon_sym_protected] = ACTIONS(5917), - [anon_sym_required] = ACTIONS(5917), - [anon_sym_sealed] = ACTIONS(5917), - [anon_sym_virtual] = ACTIONS(5917), - [anon_sym_volatile] = ACTIONS(5917), - [anon_sym_where] = ACTIONS(5917), - [anon_sym_notnull] = ACTIONS(5917), - [anon_sym_unmanaged] = ACTIONS(5917), - [sym_accessor_get] = ACTIONS(5917), - [sym_accessor_set] = ACTIONS(5917), - [sym_accessor_add] = ACTIONS(5917), - [sym_accessor_remove] = ACTIONS(5917), - [sym_accessor_init] = ACTIONS(5917), - [anon_sym_scoped] = ACTIONS(5917), - [anon_sym_var] = ACTIONS(5917), - [anon_sym_yield] = ACTIONS(5917), - [anon_sym_when] = ACTIONS(5917), - [anon_sym_from] = ACTIONS(5917), - [anon_sym_into] = ACTIONS(5917), - [anon_sym_join] = ACTIONS(5917), - [anon_sym_on] = ACTIONS(5917), - [anon_sym_equals] = ACTIONS(5917), - [anon_sym_let] = ACTIONS(5917), - [anon_sym_orderby] = ACTIONS(5917), - [anon_sym_ascending] = ACTIONS(5917), - [anon_sym_descending] = ACTIONS(5917), - [anon_sym_group] = ACTIONS(5917), - [anon_sym_by] = ACTIONS(5917), - [anon_sym_select] = ACTIONS(5917), - [sym_grit_metavariable] = ACTIONS(5919), - [aux_sym_preproc_if_token1] = ACTIONS(5919), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7366), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -636968,6 +628550,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4973] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4973), [sym_preproc_endregion] = STATE(4973), [sym_preproc_line] = STATE(4973), @@ -636977,56 +628574,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4973), [sym_preproc_define] = STATE(4973), [sym_preproc_undef] = STATE(4973), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LBRACK] = ACTIONS(6051), - [anon_sym_COLON] = ACTIONS(6051), - [anon_sym_COMMA] = ACTIONS(6051), - [anon_sym_RBRACK] = ACTIONS(6051), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_RBRACE] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_in] = ACTIONS(6051), - [anon_sym_QMARK] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PLUS_PLUS] = ACTIONS(6051), - [anon_sym_DASH_DASH] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6053), - [anon_sym_DASH] = ACTIONS(6053), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6053), - [anon_sym_PERCENT] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_AMP] = ACTIONS(6053), - [anon_sym_LT_LT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6053), - [anon_sym_GT_GT_GT] = ACTIONS(6051), - [anon_sym_EQ_EQ] = ACTIONS(6051), - [anon_sym_BANG_EQ] = ACTIONS(6051), - [anon_sym_GT_EQ] = ACTIONS(6051), - [anon_sym_LT_EQ] = ACTIONS(6051), - [anon_sym_DOT] = ACTIONS(6053), - [anon_sym_EQ_GT] = ACTIONS(6051), - [anon_sym_switch] = ACTIONS(6051), - [anon_sym_when] = ACTIONS(6051), - [anon_sym_DOT_DOT] = ACTIONS(6051), - [anon_sym_and] = ACTIONS(6051), - [anon_sym_or] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym_op_coalescing] = ACTIONS(6051), - [anon_sym_on] = ACTIONS(6051), - [anon_sym_equals] = ACTIONS(6051), - [anon_sym_by] = ACTIONS(6051), - [anon_sym_as] = ACTIONS(6051), - [anon_sym_is] = ACTIONS(6051), - [anon_sym_DASH_GT] = ACTIONS(6051), - [anon_sym_with] = ACTIONS(6051), - [aux_sym_preproc_if_token3] = ACTIONS(6051), - [aux_sym_preproc_else_token1] = ACTIONS(6051), - [aux_sym_preproc_elif_token1] = ACTIONS(6051), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7726), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -637039,6 +628620,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4974] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4974), [sym_preproc_endregion] = STATE(4974), [sym_preproc_line] = STATE(4974), @@ -637048,56 +628644,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4974), [sym_preproc_define] = STATE(4974), [sym_preproc_undef] = STATE(4974), - [anon_sym_SEMI] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(6007), - [anon_sym_COLON] = ACTIONS(6007), - [anon_sym_COMMA] = ACTIONS(6007), - [anon_sym_RBRACK] = ACTIONS(6007), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_RPAREN] = ACTIONS(6007), - [anon_sym_RBRACE] = ACTIONS(6007), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_in] = ACTIONS(6007), - [anon_sym_QMARK] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PLUS_PLUS] = ACTIONS(6007), - [anon_sym_DASH_DASH] = ACTIONS(6007), - [anon_sym_PLUS] = ACTIONS(6009), - [anon_sym_DASH] = ACTIONS(6009), - [anon_sym_STAR] = ACTIONS(6007), - [anon_sym_SLASH] = ACTIONS(6009), - [anon_sym_PERCENT] = ACTIONS(6007), - [anon_sym_CARET] = ACTIONS(6007), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_AMP] = ACTIONS(6009), - [anon_sym_LT_LT] = ACTIONS(6007), - [anon_sym_GT_GT] = ACTIONS(6009), - [anon_sym_GT_GT_GT] = ACTIONS(6007), - [anon_sym_EQ_EQ] = ACTIONS(6007), - [anon_sym_BANG_EQ] = ACTIONS(6007), - [anon_sym_GT_EQ] = ACTIONS(6007), - [anon_sym_LT_EQ] = ACTIONS(6007), - [anon_sym_DOT] = ACTIONS(6009), - [anon_sym_EQ_GT] = ACTIONS(6007), - [anon_sym_switch] = ACTIONS(6007), - [anon_sym_when] = ACTIONS(6007), - [anon_sym_DOT_DOT] = ACTIONS(6007), - [anon_sym_and] = ACTIONS(6007), - [anon_sym_or] = ACTIONS(6007), - [anon_sym_AMP_AMP] = ACTIONS(6007), - [anon_sym_PIPE_PIPE] = ACTIONS(6007), - [sym_op_coalescing] = ACTIONS(6007), - [anon_sym_on] = ACTIONS(6007), - [anon_sym_equals] = ACTIONS(6007), - [anon_sym_by] = ACTIONS(6007), - [anon_sym_as] = ACTIONS(6007), - [anon_sym_is] = ACTIONS(6007), - [anon_sym_DASH_GT] = ACTIONS(6007), - [anon_sym_with] = ACTIONS(6007), - [aux_sym_preproc_if_token3] = ACTIONS(6007), - [aux_sym_preproc_else_token1] = ACTIONS(6007), - [aux_sym_preproc_elif_token1] = ACTIONS(6007), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5336), + [anon_sym_QMARK] = ACTIONS(7350), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7354), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(7364), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7366), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -637110,8 +628690,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4975] = { - [sym_argument_list] = STATE(5097), - [sym_initializer_expression] = STATE(5325), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(4975), [sym_preproc_endregion] = STATE(4975), [sym_preproc_line] = STATE(4975), @@ -637121,54 +628714,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4975), [sym_preproc_define] = STATE(4975), [sym_preproc_undef] = STATE(4975), - [anon_sym_LBRACK] = ACTIONS(5690), - [anon_sym_COMMA] = ACTIONS(5690), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(5692), - [anon_sym_GT] = ACTIONS(5692), - [anon_sym_where] = ACTIONS(5690), - [anon_sym_QMARK] = ACTIONS(5692), - [anon_sym_BANG] = ACTIONS(5692), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5692), - [anon_sym_DASH] = ACTIONS(5692), - [anon_sym_STAR] = ACTIONS(5690), - [anon_sym_SLASH] = ACTIONS(5692), - [anon_sym_PERCENT] = ACTIONS(5690), - [anon_sym_CARET] = ACTIONS(5690), - [anon_sym_PIPE] = ACTIONS(5692), - [anon_sym_AMP] = ACTIONS(5692), - [anon_sym_LT_LT] = ACTIONS(5690), - [anon_sym_GT_GT] = ACTIONS(5692), - [anon_sym_GT_GT_GT] = ACTIONS(5690), - [anon_sym_EQ_EQ] = ACTIONS(5690), - [anon_sym_BANG_EQ] = ACTIONS(5690), - [anon_sym_GT_EQ] = ACTIONS(5690), - [anon_sym_LT_EQ] = ACTIONS(5690), - [anon_sym_DOT] = ACTIONS(5692), - [anon_sym_switch] = ACTIONS(5690), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5690), - [anon_sym_or] = ACTIONS(5692), - [anon_sym_AMP_AMP] = ACTIONS(5690), - [anon_sym_PIPE_PIPE] = ACTIONS(5690), - [sym_op_coalescing] = ACTIONS(5690), - [anon_sym_from] = ACTIONS(5690), - [anon_sym_into] = ACTIONS(5690), - [anon_sym_join] = ACTIONS(5690), - [anon_sym_let] = ACTIONS(5690), - [anon_sym_orderby] = ACTIONS(5690), - [anon_sym_ascending] = ACTIONS(5690), - [anon_sym_descending] = ACTIONS(5690), - [anon_sym_group] = ACTIONS(5690), - [anon_sym_select] = ACTIONS(5690), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5690), - [anon_sym_DASH_GT] = ACTIONS(5690), - [anon_sym_with] = ACTIONS(5690), - [sym_grit_metavariable] = ACTIONS(5690), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7728), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -637181,6 +628760,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4976] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4976), [sym_preproc_endregion] = STATE(4976), [sym_preproc_line] = STATE(4976), @@ -637190,56 +628784,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4976), [sym_preproc_define] = STATE(4976), [sym_preproc_undef] = STATE(4976), - [anon_sym_SEMI] = ACTIONS(6351), - [anon_sym_LBRACK] = ACTIONS(6351), - [anon_sym_COLON] = ACTIONS(6351), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_RBRACK] = ACTIONS(6351), - [anon_sym_LPAREN] = ACTIONS(6351), - [anon_sym_RPAREN] = ACTIONS(6351), - [anon_sym_RBRACE] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_in] = ACTIONS(6351), - [anon_sym_QMARK] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PLUS_PLUS] = ACTIONS(6351), - [anon_sym_DASH_DASH] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6353), - [anon_sym_DASH] = ACTIONS(6353), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6353), - [anon_sym_PERCENT] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_AMP] = ACTIONS(6353), - [anon_sym_LT_LT] = ACTIONS(6351), - [anon_sym_GT_GT] = ACTIONS(6353), - [anon_sym_GT_GT_GT] = ACTIONS(6351), - [anon_sym_EQ_EQ] = ACTIONS(6351), - [anon_sym_BANG_EQ] = ACTIONS(6351), - [anon_sym_GT_EQ] = ACTIONS(6351), - [anon_sym_LT_EQ] = ACTIONS(6351), - [anon_sym_DOT] = ACTIONS(6353), - [anon_sym_EQ_GT] = ACTIONS(6351), - [anon_sym_switch] = ACTIONS(6351), - [anon_sym_when] = ACTIONS(6351), - [anon_sym_DOT_DOT] = ACTIONS(6351), - [anon_sym_and] = ACTIONS(6351), - [anon_sym_or] = ACTIONS(6351), - [anon_sym_AMP_AMP] = ACTIONS(6351), - [anon_sym_PIPE_PIPE] = ACTIONS(6351), - [sym_op_coalescing] = ACTIONS(6351), - [anon_sym_on] = ACTIONS(6351), - [anon_sym_equals] = ACTIONS(6351), - [anon_sym_by] = ACTIONS(6351), - [anon_sym_as] = ACTIONS(6351), - [anon_sym_is] = ACTIONS(6351), - [anon_sym_DASH_GT] = ACTIONS(6351), - [anon_sym_with] = ACTIONS(6351), - [aux_sym_preproc_if_token3] = ACTIONS(6351), - [aux_sym_preproc_else_token1] = ACTIONS(6351), - [aux_sym_preproc_elif_token1] = ACTIONS(6351), + [anon_sym_SEMI] = ACTIONS(7730), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -637252,6 +628830,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4977] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4977), [sym_preproc_endregion] = STATE(4977), [sym_preproc_line] = STATE(4977), @@ -637261,56 +628854,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4977), [sym_preproc_define] = STATE(4977), [sym_preproc_undef] = STATE(4977), - [anon_sym_SEMI] = ACTIONS(6152), - [anon_sym_LBRACK] = ACTIONS(6152), - [anon_sym_COLON] = ACTIONS(6152), - [anon_sym_COMMA] = ACTIONS(6152), - [anon_sym_RBRACK] = ACTIONS(6152), - [anon_sym_LPAREN] = ACTIONS(6152), - [anon_sym_RPAREN] = ACTIONS(6152), - [anon_sym_RBRACE] = ACTIONS(6152), - [anon_sym_LT] = ACTIONS(6154), - [anon_sym_GT] = ACTIONS(6154), - [anon_sym_in] = ACTIONS(6152), - [anon_sym_QMARK] = ACTIONS(6154), - [anon_sym_BANG] = ACTIONS(6154), - [anon_sym_PLUS_PLUS] = ACTIONS(6152), - [anon_sym_DASH_DASH] = ACTIONS(6152), - [anon_sym_PLUS] = ACTIONS(6154), - [anon_sym_DASH] = ACTIONS(6154), - [anon_sym_STAR] = ACTIONS(6152), - [anon_sym_SLASH] = ACTIONS(6154), - [anon_sym_PERCENT] = ACTIONS(6152), - [anon_sym_CARET] = ACTIONS(6152), - [anon_sym_PIPE] = ACTIONS(6154), - [anon_sym_AMP] = ACTIONS(6154), - [anon_sym_LT_LT] = ACTIONS(6152), - [anon_sym_GT_GT] = ACTIONS(6154), - [anon_sym_GT_GT_GT] = ACTIONS(6152), - [anon_sym_EQ_EQ] = ACTIONS(6152), - [anon_sym_BANG_EQ] = ACTIONS(6152), - [anon_sym_GT_EQ] = ACTIONS(6152), - [anon_sym_LT_EQ] = ACTIONS(6152), - [anon_sym_DOT] = ACTIONS(6154), - [anon_sym_EQ_GT] = ACTIONS(6152), - [anon_sym_switch] = ACTIONS(6152), - [anon_sym_when] = ACTIONS(6152), - [anon_sym_DOT_DOT] = ACTIONS(6152), - [anon_sym_and] = ACTIONS(6152), - [anon_sym_or] = ACTIONS(6152), - [anon_sym_AMP_AMP] = ACTIONS(6152), - [anon_sym_PIPE_PIPE] = ACTIONS(6152), - [sym_op_coalescing] = ACTIONS(6152), - [anon_sym_on] = ACTIONS(6152), - [anon_sym_equals] = ACTIONS(6152), - [anon_sym_by] = ACTIONS(6152), - [anon_sym_as] = ACTIONS(6152), - [anon_sym_is] = ACTIONS(6152), - [anon_sym_DASH_GT] = ACTIONS(6152), - [anon_sym_with] = ACTIONS(6152), - [aux_sym_preproc_if_token3] = ACTIONS(6152), - [aux_sym_preproc_else_token1] = ACTIONS(6152), - [aux_sym_preproc_elif_token1] = ACTIONS(6152), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7732), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -637323,6 +628900,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4978] = { + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7202), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(4978), [sym_preproc_endregion] = STATE(4978), [sym_preproc_line] = STATE(4978), @@ -637332,56 +628927,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4978), [sym_preproc_define] = STATE(4978), [sym_preproc_undef] = STATE(4978), - [anon_sym_SEMI] = ACTIONS(4206), - [anon_sym_LBRACK] = ACTIONS(4206), - [anon_sym_COLON] = ACTIONS(4206), - [anon_sym_COMMA] = ACTIONS(4206), - [anon_sym_RBRACK] = ACTIONS(4206), - [anon_sym_LPAREN] = ACTIONS(4206), - [anon_sym_RPAREN] = ACTIONS(4206), - [anon_sym_RBRACE] = ACTIONS(4206), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_QMARK] = ACTIONS(7042), - [anon_sym_BANG] = ACTIONS(7042), - [anon_sym_PLUS_PLUS] = ACTIONS(4206), - [anon_sym_DASH_DASH] = ACTIONS(4206), - [anon_sym_PLUS] = ACTIONS(7042), - [anon_sym_DASH] = ACTIONS(7042), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(7042), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_CARET] = ACTIONS(4206), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - [anon_sym_LT_LT] = ACTIONS(4206), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_GT_GT_GT] = ACTIONS(4206), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_GT_EQ] = ACTIONS(4206), - [anon_sym_LT_EQ] = ACTIONS(4206), - [anon_sym_DOT] = ACTIONS(7042), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_switch] = ACTIONS(4206), - [anon_sym_when] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4206), - [anon_sym_and] = ACTIONS(4206), - [anon_sym_or] = ACTIONS(4206), - [anon_sym_AMP_AMP] = ACTIONS(4206), - [anon_sym_PIPE_PIPE] = ACTIONS(4206), - [sym_op_coalescing] = ACTIONS(4206), - [anon_sym_on] = ACTIONS(4206), - [anon_sym_equals] = ACTIONS(4206), - [anon_sym_by] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_DASH_GT] = ACTIONS(4206), - [anon_sym_with] = ACTIONS(4206), - [aux_sym_preproc_if_token3] = ACTIONS(4206), - [aux_sym_preproc_else_token1] = ACTIONS(4206), - [aux_sym_preproc_elif_token1] = ACTIONS(4206), + [aux_sym_type_argument_list_repeat1] = STATE(7200), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_GT] = ACTIONS(7734), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -637394,6 +628970,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4979] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4979), [sym_preproc_endregion] = STATE(4979), [sym_preproc_line] = STATE(4979), @@ -637403,56 +628994,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4979), [sym_preproc_define] = STATE(4979), [sym_preproc_undef] = STATE(4979), - [anon_sym_SEMI] = ACTIONS(6170), - [anon_sym_LBRACK] = ACTIONS(6170), - [anon_sym_COLON] = ACTIONS(6170), - [anon_sym_COMMA] = ACTIONS(6170), - [anon_sym_RBRACK] = ACTIONS(6170), - [anon_sym_LPAREN] = ACTIONS(6170), - [anon_sym_RPAREN] = ACTIONS(6170), - [anon_sym_RBRACE] = ACTIONS(6170), - [anon_sym_LT] = ACTIONS(6172), - [anon_sym_GT] = ACTIONS(6172), - [anon_sym_in] = ACTIONS(6170), - [anon_sym_QMARK] = ACTIONS(6172), - [anon_sym_BANG] = ACTIONS(6172), - [anon_sym_PLUS_PLUS] = ACTIONS(6170), - [anon_sym_DASH_DASH] = ACTIONS(6170), - [anon_sym_PLUS] = ACTIONS(6172), - [anon_sym_DASH] = ACTIONS(6172), - [anon_sym_STAR] = ACTIONS(6170), - [anon_sym_SLASH] = ACTIONS(6172), - [anon_sym_PERCENT] = ACTIONS(6170), - [anon_sym_CARET] = ACTIONS(6170), - [anon_sym_PIPE] = ACTIONS(6172), - [anon_sym_AMP] = ACTIONS(6172), - [anon_sym_LT_LT] = ACTIONS(6170), - [anon_sym_GT_GT] = ACTIONS(6172), - [anon_sym_GT_GT_GT] = ACTIONS(6170), - [anon_sym_EQ_EQ] = ACTIONS(6170), - [anon_sym_BANG_EQ] = ACTIONS(6170), - [anon_sym_GT_EQ] = ACTIONS(6170), - [anon_sym_LT_EQ] = ACTIONS(6170), - [anon_sym_DOT] = ACTIONS(6172), - [anon_sym_EQ_GT] = ACTIONS(6170), - [anon_sym_switch] = ACTIONS(6170), - [anon_sym_when] = ACTIONS(6170), - [anon_sym_DOT_DOT] = ACTIONS(6170), - [anon_sym_and] = ACTIONS(6170), - [anon_sym_or] = ACTIONS(6170), - [anon_sym_AMP_AMP] = ACTIONS(6170), - [anon_sym_PIPE_PIPE] = ACTIONS(6170), - [sym_op_coalescing] = ACTIONS(6170), - [anon_sym_on] = ACTIONS(6170), - [anon_sym_equals] = ACTIONS(6170), - [anon_sym_by] = ACTIONS(6170), - [anon_sym_as] = ACTIONS(6170), - [anon_sym_is] = ACTIONS(6170), - [anon_sym_DASH_GT] = ACTIONS(6170), - [anon_sym_with] = ACTIONS(6170), - [aux_sym_preproc_if_token3] = ACTIONS(6170), - [aux_sym_preproc_else_token1] = ACTIONS(6170), - [aux_sym_preproc_elif_token1] = ACTIONS(6170), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7736), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -637465,25 +629040,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4980] = { - [sym_explicit_interface_specifier] = STATE(6184), - [sym__name] = STATE(6914), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7400), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4980), [sym_preproc_endregion] = STATE(4980), [sym_preproc_line] = STATE(4980), @@ -637493,37 +629064,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4980), [sym_preproc_define] = STATE(4980), [sym_preproc_undef] = STATE(4980), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(5720), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7190), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(7192), - [anon_sym_checked] = ACTIONS(7192), - [anon_sym_scoped] = ACTIONS(7194), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7738), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -637536,6 +629110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4981] = { + [sym_initializer_expression] = STATE(5315), [sym_preproc_region] = STATE(4981), [sym_preproc_endregion] = STATE(4981), [sym_preproc_line] = STATE(4981), @@ -637545,56 +629120,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4981), [sym_preproc_define] = STATE(4981), [sym_preproc_undef] = STATE(4981), - [anon_sym_SEMI] = ACTIONS(7060), - [anon_sym_LBRACK] = ACTIONS(7060), - [anon_sym_COLON] = ACTIONS(7060), - [anon_sym_COMMA] = ACTIONS(7060), - [anon_sym_RBRACK] = ACTIONS(7060), - [anon_sym_LPAREN] = ACTIONS(7060), - [anon_sym_RPAREN] = ACTIONS(7060), - [anon_sym_RBRACE] = ACTIONS(7060), - [anon_sym_LT] = ACTIONS(7062), - [anon_sym_GT] = ACTIONS(7062), - [anon_sym_in] = ACTIONS(7060), - [anon_sym_QMARK] = ACTIONS(7062), - [anon_sym_BANG] = ACTIONS(7062), - [anon_sym_PLUS_PLUS] = ACTIONS(7060), - [anon_sym_DASH_DASH] = ACTIONS(7060), - [anon_sym_PLUS] = ACTIONS(7062), - [anon_sym_DASH] = ACTIONS(7062), - [anon_sym_STAR] = ACTIONS(7060), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7060), - [anon_sym_CARET] = ACTIONS(7060), - [anon_sym_PIPE] = ACTIONS(7062), - [anon_sym_AMP] = ACTIONS(7062), - [anon_sym_LT_LT] = ACTIONS(7060), - [anon_sym_GT_GT] = ACTIONS(7062), - [anon_sym_GT_GT_GT] = ACTIONS(7060), - [anon_sym_EQ_EQ] = ACTIONS(7060), - [anon_sym_BANG_EQ] = ACTIONS(7060), - [anon_sym_GT_EQ] = ACTIONS(7060), - [anon_sym_LT_EQ] = ACTIONS(7060), - [anon_sym_DOT] = ACTIONS(7062), - [anon_sym_EQ_GT] = ACTIONS(7060), - [anon_sym_switch] = ACTIONS(7060), - [anon_sym_when] = ACTIONS(7060), - [anon_sym_DOT_DOT] = ACTIONS(7060), - [anon_sym_and] = ACTIONS(7060), - [anon_sym_or] = ACTIONS(7060), - [anon_sym_AMP_AMP] = ACTIONS(7060), - [anon_sym_PIPE_PIPE] = ACTIONS(7060), - [sym_op_coalescing] = ACTIONS(7060), - [anon_sym_on] = ACTIONS(7060), - [anon_sym_equals] = ACTIONS(7060), - [anon_sym_by] = ACTIONS(7060), - [anon_sym_as] = ACTIONS(7060), - [anon_sym_is] = ACTIONS(7060), - [anon_sym_DASH_GT] = ACTIONS(7060), - [anon_sym_with] = ACTIONS(7060), - [aux_sym_preproc_if_token3] = ACTIONS(7060), - [aux_sym_preproc_else_token1] = ACTIONS(7060), - [aux_sym_preproc_elif_token1] = ACTIONS(7060), + [anon_sym_LBRACK] = ACTIONS(5590), + [anon_sym_COMMA] = ACTIONS(5590), + [anon_sym_LPAREN] = ACTIONS(5590), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(5592), + [anon_sym_GT] = ACTIONS(5592), + [anon_sym_where] = ACTIONS(5590), + [anon_sym_QMARK] = ACTIONS(5592), + [anon_sym_DOT] = ACTIONS(5592), + [anon_sym_STAR] = ACTIONS(5590), + [anon_sym_switch] = ACTIONS(5590), + [anon_sym_DOT_DOT] = ACTIONS(5590), + [anon_sym_LT_EQ] = ACTIONS(5590), + [anon_sym_GT_EQ] = ACTIONS(5590), + [anon_sym_and] = ACTIONS(5590), + [anon_sym_or] = ACTIONS(5592), + [anon_sym_EQ_EQ] = ACTIONS(5590), + [anon_sym_BANG_EQ] = ACTIONS(5590), + [anon_sym_AMP_AMP] = ACTIONS(5590), + [anon_sym_PIPE_PIPE] = ACTIONS(5590), + [anon_sym_AMP] = ACTIONS(5592), + [sym_op_bitwise_or] = ACTIONS(5592), + [anon_sym_CARET] = ACTIONS(5590), + [sym_op_left_shift] = ACTIONS(5590), + [sym_op_right_shift] = ACTIONS(5592), + [sym_op_unsigned_right_shift] = ACTIONS(5590), + [anon_sym_PLUS] = ACTIONS(5592), + [anon_sym_DASH] = ACTIONS(5592), + [sym_op_divide] = ACTIONS(5592), + [sym_op_modulo] = ACTIONS(5590), + [sym_op_coalescing] = ACTIONS(5590), + [anon_sym_BANG] = ACTIONS(5592), + [anon_sym_PLUS_PLUS] = ACTIONS(5590), + [anon_sym_DASH_DASH] = ACTIONS(5590), + [anon_sym_from] = ACTIONS(5590), + [anon_sym_into] = ACTIONS(5590), + [anon_sym_join] = ACTIONS(5590), + [anon_sym_let] = ACTIONS(5590), + [anon_sym_orderby] = ACTIONS(5590), + [anon_sym_ascending] = ACTIONS(5590), + [anon_sym_descending] = ACTIONS(5590), + [anon_sym_group] = ACTIONS(5590), + [anon_sym_select] = ACTIONS(5590), + [anon_sym_as] = ACTIONS(5592), + [anon_sym_is] = ACTIONS(5590), + [anon_sym_DASH_GT] = ACTIONS(5590), + [anon_sym_with] = ACTIONS(5590), + [sym_grit_metavariable] = ACTIONS(5590), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -637607,6 +629180,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4982] = { + [sym_argument_list] = STATE(3125), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(5465), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3130), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(4982), [sym_preproc_endregion] = STATE(4982), [sym_preproc_line] = STATE(4982), @@ -637616,56 +629208,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4982), [sym_preproc_define] = STATE(4982), [sym_preproc_undef] = STATE(4982), - [anon_sym_SEMI] = ACTIONS(6156), - [anon_sym_LBRACK] = ACTIONS(6156), - [anon_sym_COLON] = ACTIONS(6156), - [anon_sym_COMMA] = ACTIONS(6156), - [anon_sym_RBRACK] = ACTIONS(6156), - [anon_sym_LPAREN] = ACTIONS(6156), - [anon_sym_RPAREN] = ACTIONS(6156), - [anon_sym_RBRACE] = ACTIONS(6156), - [anon_sym_LT] = ACTIONS(6158), - [anon_sym_GT] = ACTIONS(6158), - [anon_sym_in] = ACTIONS(6156), - [anon_sym_QMARK] = ACTIONS(6158), - [anon_sym_BANG] = ACTIONS(6158), - [anon_sym_PLUS_PLUS] = ACTIONS(6156), - [anon_sym_DASH_DASH] = ACTIONS(6156), - [anon_sym_PLUS] = ACTIONS(6158), - [anon_sym_DASH] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(6156), - [anon_sym_SLASH] = ACTIONS(6158), - [anon_sym_PERCENT] = ACTIONS(6156), - [anon_sym_CARET] = ACTIONS(6156), - [anon_sym_PIPE] = ACTIONS(6158), - [anon_sym_AMP] = ACTIONS(6158), - [anon_sym_LT_LT] = ACTIONS(6156), - [anon_sym_GT_GT] = ACTIONS(6158), - [anon_sym_GT_GT_GT] = ACTIONS(6156), - [anon_sym_EQ_EQ] = ACTIONS(6156), - [anon_sym_BANG_EQ] = ACTIONS(6156), - [anon_sym_GT_EQ] = ACTIONS(6156), - [anon_sym_LT_EQ] = ACTIONS(6156), - [anon_sym_DOT] = ACTIONS(6158), - [anon_sym_EQ_GT] = ACTIONS(6156), - [anon_sym_switch] = ACTIONS(6156), - [anon_sym_when] = ACTIONS(6156), - [anon_sym_DOT_DOT] = ACTIONS(6156), - [anon_sym_and] = ACTIONS(6156), - [anon_sym_or] = ACTIONS(6156), - [anon_sym_AMP_AMP] = ACTIONS(6156), - [anon_sym_PIPE_PIPE] = ACTIONS(6156), - [sym_op_coalescing] = ACTIONS(6156), - [anon_sym_on] = ACTIONS(6156), - [anon_sym_equals] = ACTIONS(6156), - [anon_sym_by] = ACTIONS(6156), - [anon_sym_as] = ACTIONS(6156), - [anon_sym_is] = ACTIONS(6156), - [anon_sym_DASH_GT] = ACTIONS(6156), - [anon_sym_with] = ACTIONS(6156), - [aux_sym_preproc_if_token3] = ACTIONS(6156), - [aux_sym_preproc_else_token1] = ACTIONS(6156), - [aux_sym_preproc_elif_token1] = ACTIONS(6156), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(7740), + [anon_sym_ref] = ACTIONS(4496), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7742), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -637678,6 +629250,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4983] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4983), [sym_preproc_endregion] = STATE(4983), [sym_preproc_line] = STATE(4983), @@ -637687,56 +629274,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4983), [sym_preproc_define] = STATE(4983), [sym_preproc_undef] = STATE(4983), - [anon_sym_SEMI] = ACTIONS(4206), - [anon_sym_LBRACK] = ACTIONS(4206), - [anon_sym_COLON] = ACTIONS(4206), - [anon_sym_COMMA] = ACTIONS(4206), - [anon_sym_RBRACK] = ACTIONS(4206), - [anon_sym_LPAREN] = ACTIONS(4206), - [anon_sym_RPAREN] = ACTIONS(4206), - [anon_sym_RBRACE] = ACTIONS(4206), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_QMARK] = ACTIONS(7042), - [anon_sym_BANG] = ACTIONS(7042), - [anon_sym_PLUS_PLUS] = ACTIONS(4206), - [anon_sym_DASH_DASH] = ACTIONS(4206), - [anon_sym_PLUS] = ACTIONS(7042), - [anon_sym_DASH] = ACTIONS(7042), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(7042), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_CARET] = ACTIONS(4206), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - [anon_sym_LT_LT] = ACTIONS(4206), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_GT_GT_GT] = ACTIONS(4206), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_GT_EQ] = ACTIONS(4206), - [anon_sym_LT_EQ] = ACTIONS(4206), - [anon_sym_DOT] = ACTIONS(7042), - [anon_sym_EQ_GT] = ACTIONS(4206), - [anon_sym_switch] = ACTIONS(4206), - [anon_sym_when] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4206), - [anon_sym_and] = ACTIONS(4206), - [anon_sym_or] = ACTIONS(4206), - [anon_sym_AMP_AMP] = ACTIONS(4206), - [anon_sym_PIPE_PIPE] = ACTIONS(4206), - [sym_op_coalescing] = ACTIONS(4206), - [anon_sym_on] = ACTIONS(4206), - [anon_sym_equals] = ACTIONS(4206), - [anon_sym_by] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_DASH_GT] = ACTIONS(4206), - [anon_sym_with] = ACTIONS(4206), - [aux_sym_preproc_if_token3] = ACTIONS(4206), - [aux_sym_preproc_else_token1] = ACTIONS(4206), - [aux_sym_preproc_elif_token1] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7744), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -637749,6 +629320,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4984] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4984), [sym_preproc_endregion] = STATE(4984), [sym_preproc_line] = STATE(4984), @@ -637758,56 +629344,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4984), [sym_preproc_define] = STATE(4984), [sym_preproc_undef] = STATE(4984), - [anon_sym_SEMI] = ACTIONS(7056), - [anon_sym_LBRACK] = ACTIONS(7056), - [anon_sym_COLON] = ACTIONS(7056), - [anon_sym_COMMA] = ACTIONS(7056), - [anon_sym_RBRACK] = ACTIONS(7056), - [anon_sym_LPAREN] = ACTIONS(7056), - [anon_sym_RPAREN] = ACTIONS(7056), - [anon_sym_RBRACE] = ACTIONS(7056), - [anon_sym_LT] = ACTIONS(7058), - [anon_sym_GT] = ACTIONS(7058), - [anon_sym_in] = ACTIONS(7056), - [anon_sym_QMARK] = ACTIONS(7058), - [anon_sym_BANG] = ACTIONS(7058), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_DASH_DASH] = ACTIONS(7056), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_STAR] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7058), - [anon_sym_PERCENT] = ACTIONS(7056), - [anon_sym_CARET] = ACTIONS(7056), - [anon_sym_PIPE] = ACTIONS(7058), - [anon_sym_AMP] = ACTIONS(7058), - [anon_sym_LT_LT] = ACTIONS(7056), - [anon_sym_GT_GT] = ACTIONS(7058), - [anon_sym_GT_GT_GT] = ACTIONS(7056), - [anon_sym_EQ_EQ] = ACTIONS(7056), - [anon_sym_BANG_EQ] = ACTIONS(7056), - [anon_sym_GT_EQ] = ACTIONS(7056), - [anon_sym_LT_EQ] = ACTIONS(7056), - [anon_sym_DOT] = ACTIONS(7058), - [anon_sym_EQ_GT] = ACTIONS(7056), - [anon_sym_switch] = ACTIONS(7056), - [anon_sym_when] = ACTIONS(7056), - [anon_sym_DOT_DOT] = ACTIONS(7056), - [anon_sym_and] = ACTIONS(7056), - [anon_sym_or] = ACTIONS(7056), - [anon_sym_AMP_AMP] = ACTIONS(7056), - [anon_sym_PIPE_PIPE] = ACTIONS(7056), - [sym_op_coalescing] = ACTIONS(7056), - [anon_sym_on] = ACTIONS(7056), - [anon_sym_equals] = ACTIONS(7056), - [anon_sym_by] = ACTIONS(7056), - [anon_sym_as] = ACTIONS(7056), - [anon_sym_is] = ACTIONS(7056), - [anon_sym_DASH_GT] = ACTIONS(7056), - [anon_sym_with] = ACTIONS(7056), - [aux_sym_preproc_if_token3] = ACTIONS(7056), - [aux_sym_preproc_else_token1] = ACTIONS(7056), - [aux_sym_preproc_elif_token1] = ACTIONS(7056), + [anon_sym_SEMI] = ACTIONS(7746), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -637820,6 +629390,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4985] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4985), [sym_preproc_endregion] = STATE(4985), [sym_preproc_line] = STATE(4985), @@ -637829,56 +629414,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4985), [sym_preproc_define] = STATE(4985), [sym_preproc_undef] = STATE(4985), - [anon_sym_SEMI] = ACTIONS(7052), - [anon_sym_LBRACK] = ACTIONS(7052), - [anon_sym_COLON] = ACTIONS(7052), - [anon_sym_COMMA] = ACTIONS(7052), - [anon_sym_RBRACK] = ACTIONS(7052), - [anon_sym_LPAREN] = ACTIONS(7052), - [anon_sym_RPAREN] = ACTIONS(7052), - [anon_sym_RBRACE] = ACTIONS(7052), - [anon_sym_LT] = ACTIONS(7054), - [anon_sym_GT] = ACTIONS(7054), - [anon_sym_in] = ACTIONS(7052), - [anon_sym_QMARK] = ACTIONS(7054), - [anon_sym_BANG] = ACTIONS(7054), - [anon_sym_PLUS_PLUS] = ACTIONS(7052), - [anon_sym_DASH_DASH] = ACTIONS(7052), - [anon_sym_PLUS] = ACTIONS(7054), - [anon_sym_DASH] = ACTIONS(7054), - [anon_sym_STAR] = ACTIONS(7052), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_PERCENT] = ACTIONS(7052), - [anon_sym_CARET] = ACTIONS(7052), - [anon_sym_PIPE] = ACTIONS(7054), - [anon_sym_AMP] = ACTIONS(7054), - [anon_sym_LT_LT] = ACTIONS(7052), - [anon_sym_GT_GT] = ACTIONS(7054), - [anon_sym_GT_GT_GT] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7052), - [anon_sym_BANG_EQ] = ACTIONS(7052), - [anon_sym_GT_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7052), - [anon_sym_DOT] = ACTIONS(7054), - [anon_sym_EQ_GT] = ACTIONS(7052), - [anon_sym_switch] = ACTIONS(7052), - [anon_sym_when] = ACTIONS(7052), - [anon_sym_DOT_DOT] = ACTIONS(7052), - [anon_sym_and] = ACTIONS(7052), - [anon_sym_or] = ACTIONS(7052), - [anon_sym_AMP_AMP] = ACTIONS(7052), - [anon_sym_PIPE_PIPE] = ACTIONS(7052), - [sym_op_coalescing] = ACTIONS(7052), - [anon_sym_on] = ACTIONS(7052), - [anon_sym_equals] = ACTIONS(7052), - [anon_sym_by] = ACTIONS(7052), - [anon_sym_as] = ACTIONS(7052), - [anon_sym_is] = ACTIONS(7052), - [anon_sym_DASH_GT] = ACTIONS(7052), - [anon_sym_with] = ACTIONS(7052), - [aux_sym_preproc_if_token3] = ACTIONS(7052), - [aux_sym_preproc_else_token1] = ACTIONS(7052), - [aux_sym_preproc_elif_token1] = ACTIONS(7052), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5296), + [anon_sym_QMARK] = ACTIONS(7350), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7354), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(7364), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7366), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -637891,6 +629460,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4986] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(4986), [sym_preproc_endregion] = STATE(4986), [sym_preproc_line] = STATE(4986), @@ -637900,56 +629484,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4986), [sym_preproc_define] = STATE(4986), [sym_preproc_undef] = STATE(4986), - [anon_sym_SEMI] = ACTIONS(7140), - [anon_sym_LBRACK] = ACTIONS(7140), - [anon_sym_COLON] = ACTIONS(7140), - [anon_sym_COMMA] = ACTIONS(7140), - [anon_sym_RBRACK] = ACTIONS(7140), - [anon_sym_LPAREN] = ACTIONS(7140), - [anon_sym_RPAREN] = ACTIONS(7140), - [anon_sym_RBRACE] = ACTIONS(7140), - [anon_sym_LT] = ACTIONS(7142), - [anon_sym_GT] = ACTIONS(7142), - [anon_sym_in] = ACTIONS(7140), - [anon_sym_QMARK] = ACTIONS(7142), - [anon_sym_BANG] = ACTIONS(7142), - [anon_sym_PLUS_PLUS] = ACTIONS(7140), - [anon_sym_DASH_DASH] = ACTIONS(7140), - [anon_sym_PLUS] = ACTIONS(7142), - [anon_sym_DASH] = ACTIONS(7142), - [anon_sym_STAR] = ACTIONS(7140), - [anon_sym_SLASH] = ACTIONS(7142), - [anon_sym_PERCENT] = ACTIONS(7140), - [anon_sym_CARET] = ACTIONS(7140), - [anon_sym_PIPE] = ACTIONS(7142), - [anon_sym_AMP] = ACTIONS(7142), - [anon_sym_LT_LT] = ACTIONS(7140), - [anon_sym_GT_GT] = ACTIONS(7142), - [anon_sym_GT_GT_GT] = ACTIONS(7140), - [anon_sym_EQ_EQ] = ACTIONS(7140), - [anon_sym_BANG_EQ] = ACTIONS(7140), - [anon_sym_GT_EQ] = ACTIONS(7140), - [anon_sym_LT_EQ] = ACTIONS(7140), - [anon_sym_DOT] = ACTIONS(7142), - [anon_sym_EQ_GT] = ACTIONS(7140), - [anon_sym_switch] = ACTIONS(7140), - [anon_sym_when] = ACTIONS(7140), - [anon_sym_DOT_DOT] = ACTIONS(7140), - [anon_sym_and] = ACTIONS(7140), - [anon_sym_or] = ACTIONS(7140), - [anon_sym_AMP_AMP] = ACTIONS(7140), - [anon_sym_PIPE_PIPE] = ACTIONS(7140), - [sym_op_coalescing] = ACTIONS(7140), - [anon_sym_on] = ACTIONS(7140), - [anon_sym_equals] = ACTIONS(7140), - [anon_sym_by] = ACTIONS(7140), - [anon_sym_as] = ACTIONS(7140), - [anon_sym_is] = ACTIONS(7140), - [anon_sym_DASH_GT] = ACTIONS(7140), - [anon_sym_with] = ACTIONS(7140), - [aux_sym_preproc_if_token3] = ACTIONS(7140), - [aux_sym_preproc_else_token1] = ACTIONS(7140), - [aux_sym_preproc_elif_token1] = ACTIONS(7140), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7748), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6203), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(6213), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -637962,25 +629530,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4987] = { - [sym_explicit_interface_specifier] = STATE(6184), - [sym__name] = STATE(6914), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7508), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4987), [sym_preproc_endregion] = STATE(4987), [sym_preproc_line] = STATE(4987), @@ -637990,37 +629554,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4987), [sym_preproc_define] = STATE(4987), [sym_preproc_undef] = STATE(4987), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(5720), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7190), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(7192), - [anon_sym_checked] = ACTIONS(7192), - [anon_sym_scoped] = ACTIONS(7194), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7750), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -638033,6 +629600,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4988] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4988), [sym_preproc_endregion] = STATE(4988), [sym_preproc_line] = STATE(4988), @@ -638042,56 +629624,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4988), [sym_preproc_define] = STATE(4988), [sym_preproc_undef] = STATE(4988), - [anon_sym_SEMI] = ACTIONS(6148), - [anon_sym_LBRACK] = ACTIONS(6148), - [anon_sym_COLON] = ACTIONS(6148), - [anon_sym_COMMA] = ACTIONS(6148), - [anon_sym_RBRACK] = ACTIONS(6148), - [anon_sym_LPAREN] = ACTIONS(6148), - [anon_sym_RPAREN] = ACTIONS(6148), - [anon_sym_RBRACE] = ACTIONS(6148), - [anon_sym_LT] = ACTIONS(6150), - [anon_sym_GT] = ACTIONS(6150), - [anon_sym_in] = ACTIONS(6148), - [anon_sym_QMARK] = ACTIONS(6150), - [anon_sym_BANG] = ACTIONS(6150), - [anon_sym_PLUS_PLUS] = ACTIONS(6148), - [anon_sym_DASH_DASH] = ACTIONS(6148), - [anon_sym_PLUS] = ACTIONS(6150), - [anon_sym_DASH] = ACTIONS(6150), - [anon_sym_STAR] = ACTIONS(6148), - [anon_sym_SLASH] = ACTIONS(6150), - [anon_sym_PERCENT] = ACTIONS(6148), - [anon_sym_CARET] = ACTIONS(6148), - [anon_sym_PIPE] = ACTIONS(6150), - [anon_sym_AMP] = ACTIONS(6150), - [anon_sym_LT_LT] = ACTIONS(6148), - [anon_sym_GT_GT] = ACTIONS(6150), - [anon_sym_GT_GT_GT] = ACTIONS(6148), - [anon_sym_EQ_EQ] = ACTIONS(6148), - [anon_sym_BANG_EQ] = ACTIONS(6148), - [anon_sym_GT_EQ] = ACTIONS(6148), - [anon_sym_LT_EQ] = ACTIONS(6148), - [anon_sym_DOT] = ACTIONS(6150), - [anon_sym_EQ_GT] = ACTIONS(6148), - [anon_sym_switch] = ACTIONS(6148), - [anon_sym_when] = ACTIONS(6148), - [anon_sym_DOT_DOT] = ACTIONS(6148), - [anon_sym_and] = ACTIONS(6148), - [anon_sym_or] = ACTIONS(6148), - [anon_sym_AMP_AMP] = ACTIONS(6148), - [anon_sym_PIPE_PIPE] = ACTIONS(6148), - [sym_op_coalescing] = ACTIONS(6148), - [anon_sym_on] = ACTIONS(6148), - [anon_sym_equals] = ACTIONS(6148), - [anon_sym_by] = ACTIONS(6148), - [anon_sym_as] = ACTIONS(6148), - [anon_sym_is] = ACTIONS(6148), - [anon_sym_DASH_GT] = ACTIONS(6148), - [anon_sym_with] = ACTIONS(6148), - [aux_sym_preproc_if_token3] = ACTIONS(6148), - [aux_sym_preproc_else_token1] = ACTIONS(6148), - [aux_sym_preproc_elif_token1] = ACTIONS(6148), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(7752), + [anon_sym_QMARK] = ACTIONS(7350), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7354), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(7364), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7366), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -638104,6 +629670,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4989] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(4989), [sym_preproc_endregion] = STATE(4989), [sym_preproc_line] = STATE(4989), @@ -638113,56 +629694,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4989), [sym_preproc_define] = STATE(4989), [sym_preproc_undef] = STATE(4989), - [anon_sym_SEMI] = ACTIONS(6309), - [anon_sym_LBRACK] = ACTIONS(6309), - [anon_sym_COLON] = ACTIONS(6309), - [anon_sym_COMMA] = ACTIONS(6309), - [anon_sym_RBRACK] = ACTIONS(6309), - [anon_sym_LPAREN] = ACTIONS(6309), - [anon_sym_RPAREN] = ACTIONS(6309), - [anon_sym_RBRACE] = ACTIONS(6309), - [anon_sym_LT] = ACTIONS(6311), - [anon_sym_GT] = ACTIONS(6311), - [anon_sym_in] = ACTIONS(6309), - [anon_sym_QMARK] = ACTIONS(6311), - [anon_sym_BANG] = ACTIONS(6311), - [anon_sym_PLUS_PLUS] = ACTIONS(6309), - [anon_sym_DASH_DASH] = ACTIONS(6309), - [anon_sym_PLUS] = ACTIONS(6311), - [anon_sym_DASH] = ACTIONS(6311), - [anon_sym_STAR] = ACTIONS(6309), - [anon_sym_SLASH] = ACTIONS(6311), - [anon_sym_PERCENT] = ACTIONS(6309), - [anon_sym_CARET] = ACTIONS(6309), - [anon_sym_PIPE] = ACTIONS(6311), - [anon_sym_AMP] = ACTIONS(6311), - [anon_sym_LT_LT] = ACTIONS(6309), - [anon_sym_GT_GT] = ACTIONS(6311), - [anon_sym_GT_GT_GT] = ACTIONS(6309), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_GT_EQ] = ACTIONS(6309), - [anon_sym_LT_EQ] = ACTIONS(6309), - [anon_sym_DOT] = ACTIONS(6311), - [anon_sym_EQ_GT] = ACTIONS(6309), - [anon_sym_switch] = ACTIONS(6309), - [anon_sym_when] = ACTIONS(6309), - [anon_sym_DOT_DOT] = ACTIONS(6309), - [anon_sym_and] = ACTIONS(6309), - [anon_sym_or] = ACTIONS(6309), - [anon_sym_AMP_AMP] = ACTIONS(6309), - [anon_sym_PIPE_PIPE] = ACTIONS(6309), - [sym_op_coalescing] = ACTIONS(6309), - [anon_sym_on] = ACTIONS(6309), - [anon_sym_equals] = ACTIONS(6309), - [anon_sym_by] = ACTIONS(6309), - [anon_sym_as] = ACTIONS(6309), - [anon_sym_is] = ACTIONS(6309), - [anon_sym_DASH_GT] = ACTIONS(6309), - [anon_sym_with] = ACTIONS(6309), - [aux_sym_preproc_if_token3] = ACTIONS(6309), - [aux_sym_preproc_else_token1] = ACTIONS(6309), - [aux_sym_preproc_elif_token1] = ACTIONS(6309), + [anon_sym_SEMI] = ACTIONS(7754), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -638175,6 +629740,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4990] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4990), [sym_preproc_endregion] = STATE(4990), [sym_preproc_line] = STATE(4990), @@ -638184,56 +629764,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4990), [sym_preproc_define] = STATE(4990), [sym_preproc_undef] = STATE(4990), - [anon_sym_SEMI] = ACTIONS(7136), - [anon_sym_LBRACK] = ACTIONS(7136), - [anon_sym_COLON] = ACTIONS(7136), - [anon_sym_COMMA] = ACTIONS(7136), - [anon_sym_RBRACK] = ACTIONS(7136), - [anon_sym_LPAREN] = ACTIONS(7136), - [anon_sym_RPAREN] = ACTIONS(7136), - [anon_sym_RBRACE] = ACTIONS(7136), - [anon_sym_LT] = ACTIONS(7138), - [anon_sym_GT] = ACTIONS(7138), - [anon_sym_in] = ACTIONS(7136), - [anon_sym_QMARK] = ACTIONS(7138), - [anon_sym_BANG] = ACTIONS(7138), - [anon_sym_PLUS_PLUS] = ACTIONS(7136), - [anon_sym_DASH_DASH] = ACTIONS(7136), - [anon_sym_PLUS] = ACTIONS(7138), - [anon_sym_DASH] = ACTIONS(7138), - [anon_sym_STAR] = ACTIONS(7136), - [anon_sym_SLASH] = ACTIONS(7138), - [anon_sym_PERCENT] = ACTIONS(7136), - [anon_sym_CARET] = ACTIONS(7136), - [anon_sym_PIPE] = ACTIONS(7138), - [anon_sym_AMP] = ACTIONS(7138), - [anon_sym_LT_LT] = ACTIONS(7136), - [anon_sym_GT_GT] = ACTIONS(7138), - [anon_sym_GT_GT_GT] = ACTIONS(7136), - [anon_sym_EQ_EQ] = ACTIONS(7136), - [anon_sym_BANG_EQ] = ACTIONS(7136), - [anon_sym_GT_EQ] = ACTIONS(7136), - [anon_sym_LT_EQ] = ACTIONS(7136), - [anon_sym_DOT] = ACTIONS(7138), - [anon_sym_EQ_GT] = ACTIONS(7136), - [anon_sym_switch] = ACTIONS(7136), - [anon_sym_when] = ACTIONS(7136), - [anon_sym_DOT_DOT] = ACTIONS(7136), - [anon_sym_and] = ACTIONS(7136), - [anon_sym_or] = ACTIONS(7136), - [anon_sym_AMP_AMP] = ACTIONS(7136), - [anon_sym_PIPE_PIPE] = ACTIONS(7136), - [sym_op_coalescing] = ACTIONS(7136), - [anon_sym_on] = ACTIONS(7136), - [anon_sym_equals] = ACTIONS(7136), - [anon_sym_by] = ACTIONS(7136), - [anon_sym_as] = ACTIONS(7136), - [anon_sym_is] = ACTIONS(7136), - [anon_sym_DASH_GT] = ACTIONS(7136), - [anon_sym_with] = ACTIONS(7136), - [aux_sym_preproc_if_token3] = ACTIONS(7136), - [aux_sym_preproc_else_token1] = ACTIONS(7136), - [aux_sym_preproc_elif_token1] = ACTIONS(7136), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5364), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -638246,25 +629810,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4991] = { - [sym_explicit_interface_specifier] = STATE(6184), - [sym__name] = STATE(6914), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7625), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4991), [sym_preproc_endregion] = STATE(4991), [sym_preproc_line] = STATE(4991), @@ -638274,37 +629834,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4991), [sym_preproc_define] = STATE(4991), [sym_preproc_undef] = STATE(4991), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(5720), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7190), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(7192), - [anon_sym_checked] = ACTIONS(7192), - [anon_sym_scoped] = ACTIONS(7194), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7756), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -638317,6 +629880,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4992] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4992), [sym_preproc_endregion] = STATE(4992), [sym_preproc_line] = STATE(4992), @@ -638326,56 +629904,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4992), [sym_preproc_define] = STATE(4992), [sym_preproc_undef] = STATE(4992), - [sym__identifier_token] = ACTIONS(5921), - [anon_sym_extern] = ACTIONS(5921), - [anon_sym_alias] = ACTIONS(5921), - [anon_sym_global] = ACTIONS(5921), - [anon_sym_unsafe] = ACTIONS(5921), - [anon_sym_static] = ACTIONS(5921), - [anon_sym_LBRACK] = ACTIONS(5923), - [anon_sym_public] = ACTIONS(5921), - [anon_sym_private] = ACTIONS(5921), - [anon_sym_readonly] = ACTIONS(5921), - [anon_sym_abstract] = ACTIONS(5921), - [anon_sym_async] = ACTIONS(5921), - [anon_sym_const] = ACTIONS(5921), - [anon_sym_file] = ACTIONS(5921), - [anon_sym_fixed] = ACTIONS(5921), - [anon_sym_internal] = ACTIONS(5921), - [anon_sym_new] = ACTIONS(5921), - [anon_sym_override] = ACTIONS(5921), - [anon_sym_partial] = ACTIONS(5921), - [anon_sym_protected] = ACTIONS(5921), - [anon_sym_required] = ACTIONS(5921), - [anon_sym_sealed] = ACTIONS(5921), - [anon_sym_virtual] = ACTIONS(5921), - [anon_sym_volatile] = ACTIONS(5921), - [anon_sym_where] = ACTIONS(5921), - [anon_sym_notnull] = ACTIONS(5921), - [anon_sym_unmanaged] = ACTIONS(5921), - [sym_accessor_get] = ACTIONS(5921), - [sym_accessor_set] = ACTIONS(5921), - [sym_accessor_add] = ACTIONS(5921), - [sym_accessor_remove] = ACTIONS(5921), - [sym_accessor_init] = ACTIONS(5921), - [anon_sym_scoped] = ACTIONS(5921), - [anon_sym_var] = ACTIONS(5921), - [anon_sym_yield] = ACTIONS(5921), - [anon_sym_when] = ACTIONS(5921), - [anon_sym_from] = ACTIONS(5921), - [anon_sym_into] = ACTIONS(5921), - [anon_sym_join] = ACTIONS(5921), - [anon_sym_on] = ACTIONS(5921), - [anon_sym_equals] = ACTIONS(5921), - [anon_sym_let] = ACTIONS(5921), - [anon_sym_orderby] = ACTIONS(5921), - [anon_sym_ascending] = ACTIONS(5921), - [anon_sym_descending] = ACTIONS(5921), - [anon_sym_group] = ACTIONS(5921), - [anon_sym_by] = ACTIONS(5921), - [anon_sym_select] = ACTIONS(5921), - [sym_grit_metavariable] = ACTIONS(5923), - [aux_sym_preproc_if_token1] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7758), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -638388,6 +629950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4993] = { + [sym_initializer_expression] = STATE(5328), [sym_preproc_region] = STATE(4993), [sym_preproc_endregion] = STATE(4993), [sym_preproc_line] = STATE(4993), @@ -638397,56 +629960,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4993), [sym_preproc_define] = STATE(4993), [sym_preproc_undef] = STATE(4993), - [anon_sym_SEMI] = ACTIONS(6192), - [anon_sym_LBRACK] = ACTIONS(6192), - [anon_sym_COLON] = ACTIONS(6192), - [anon_sym_COMMA] = ACTIONS(6192), - [anon_sym_RBRACK] = ACTIONS(6192), - [anon_sym_LPAREN] = ACTIONS(6192), - [anon_sym_RPAREN] = ACTIONS(6192), - [anon_sym_RBRACE] = ACTIONS(6192), - [anon_sym_LT] = ACTIONS(6194), - [anon_sym_GT] = ACTIONS(6194), - [anon_sym_in] = ACTIONS(6192), - [anon_sym_QMARK] = ACTIONS(6194), - [anon_sym_BANG] = ACTIONS(6194), - [anon_sym_PLUS_PLUS] = ACTIONS(6192), - [anon_sym_DASH_DASH] = ACTIONS(6192), - [anon_sym_PLUS] = ACTIONS(6194), - [anon_sym_DASH] = ACTIONS(6194), - [anon_sym_STAR] = ACTIONS(6192), - [anon_sym_SLASH] = ACTIONS(6194), - [anon_sym_PERCENT] = ACTIONS(6192), - [anon_sym_CARET] = ACTIONS(6192), - [anon_sym_PIPE] = ACTIONS(6194), - [anon_sym_AMP] = ACTIONS(6194), - [anon_sym_LT_LT] = ACTIONS(6192), - [anon_sym_GT_GT] = ACTIONS(6194), - [anon_sym_GT_GT_GT] = ACTIONS(6192), - [anon_sym_EQ_EQ] = ACTIONS(6192), - [anon_sym_BANG_EQ] = ACTIONS(6192), - [anon_sym_GT_EQ] = ACTIONS(6192), - [anon_sym_LT_EQ] = ACTIONS(6192), - [anon_sym_DOT] = ACTIONS(6194), - [anon_sym_EQ_GT] = ACTIONS(6192), - [anon_sym_switch] = ACTIONS(6192), - [anon_sym_when] = ACTIONS(6192), - [anon_sym_DOT_DOT] = ACTIONS(6192), - [anon_sym_and] = ACTIONS(6192), - [anon_sym_or] = ACTIONS(6192), - [anon_sym_AMP_AMP] = ACTIONS(6192), - [anon_sym_PIPE_PIPE] = ACTIONS(6192), - [sym_op_coalescing] = ACTIONS(6192), - [anon_sym_on] = ACTIONS(6192), - [anon_sym_equals] = ACTIONS(6192), - [anon_sym_by] = ACTIONS(6192), - [anon_sym_as] = ACTIONS(6192), - [anon_sym_is] = ACTIONS(6192), - [anon_sym_DASH_GT] = ACTIONS(6192), - [anon_sym_with] = ACTIONS(6192), - [aux_sym_preproc_if_token3] = ACTIONS(6192), - [aux_sym_preproc_else_token1] = ACTIONS(6192), - [aux_sym_preproc_elif_token1] = ACTIONS(6192), + [anon_sym_LBRACK] = ACTIONS(5540), + [anon_sym_COMMA] = ACTIONS(5538), + [anon_sym_LPAREN] = ACTIONS(5538), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(5543), + [anon_sym_GT] = ACTIONS(5543), + [anon_sym_where] = ACTIONS(5538), + [anon_sym_QMARK] = ACTIONS(5543), + [anon_sym_DOT] = ACTIONS(5543), + [anon_sym_STAR] = ACTIONS(5538), + [anon_sym_switch] = ACTIONS(5538), + [anon_sym_DOT_DOT] = ACTIONS(5538), + [anon_sym_LT_EQ] = ACTIONS(5538), + [anon_sym_GT_EQ] = ACTIONS(5538), + [anon_sym_and] = ACTIONS(5538), + [anon_sym_or] = ACTIONS(5543), + [anon_sym_EQ_EQ] = ACTIONS(5538), + [anon_sym_BANG_EQ] = ACTIONS(5538), + [anon_sym_AMP_AMP] = ACTIONS(5538), + [anon_sym_PIPE_PIPE] = ACTIONS(5538), + [anon_sym_AMP] = ACTIONS(5543), + [sym_op_bitwise_or] = ACTIONS(5543), + [anon_sym_CARET] = ACTIONS(5538), + [sym_op_left_shift] = ACTIONS(5538), + [sym_op_right_shift] = ACTIONS(5543), + [sym_op_unsigned_right_shift] = ACTIONS(5538), + [anon_sym_PLUS] = ACTIONS(5543), + [anon_sym_DASH] = ACTIONS(5543), + [sym_op_divide] = ACTIONS(5543), + [sym_op_modulo] = ACTIONS(5538), + [sym_op_coalescing] = ACTIONS(5538), + [anon_sym_BANG] = ACTIONS(5543), + [anon_sym_PLUS_PLUS] = ACTIONS(5538), + [anon_sym_DASH_DASH] = ACTIONS(5538), + [anon_sym_from] = ACTIONS(5538), + [anon_sym_into] = ACTIONS(5538), + [anon_sym_join] = ACTIONS(5538), + [anon_sym_let] = ACTIONS(5538), + [anon_sym_orderby] = ACTIONS(5538), + [anon_sym_ascending] = ACTIONS(5538), + [anon_sym_descending] = ACTIONS(5538), + [anon_sym_group] = ACTIONS(5538), + [anon_sym_select] = ACTIONS(5538), + [anon_sym_as] = ACTIONS(5543), + [anon_sym_is] = ACTIONS(5538), + [anon_sym_DASH_GT] = ACTIONS(5538), + [anon_sym_with] = ACTIONS(5538), + [sym_grit_metavariable] = ACTIONS(5538), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -638459,6 +630020,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4994] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4994), [sym_preproc_endregion] = STATE(4994), [sym_preproc_line] = STATE(4994), @@ -638468,56 +630044,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4994), [sym_preproc_define] = STATE(4994), [sym_preproc_undef] = STATE(4994), - [anon_sym_SEMI] = ACTIONS(7048), - [anon_sym_LBRACK] = ACTIONS(7048), - [anon_sym_COLON] = ACTIONS(7048), - [anon_sym_COMMA] = ACTIONS(7048), - [anon_sym_RBRACK] = ACTIONS(7048), - [anon_sym_LPAREN] = ACTIONS(7048), - [anon_sym_RPAREN] = ACTIONS(7048), - [anon_sym_RBRACE] = ACTIONS(7048), - [anon_sym_LT] = ACTIONS(7050), - [anon_sym_GT] = ACTIONS(7050), - [anon_sym_in] = ACTIONS(7048), - [anon_sym_QMARK] = ACTIONS(7050), - [anon_sym_BANG] = ACTIONS(7050), - [anon_sym_PLUS_PLUS] = ACTIONS(7048), - [anon_sym_DASH_DASH] = ACTIONS(7048), - [anon_sym_PLUS] = ACTIONS(7050), - [anon_sym_DASH] = ACTIONS(7050), - [anon_sym_STAR] = ACTIONS(7048), - [anon_sym_SLASH] = ACTIONS(7050), - [anon_sym_PERCENT] = ACTIONS(7048), - [anon_sym_CARET] = ACTIONS(7048), - [anon_sym_PIPE] = ACTIONS(7050), - [anon_sym_AMP] = ACTIONS(7050), - [anon_sym_LT_LT] = ACTIONS(7048), - [anon_sym_GT_GT] = ACTIONS(7050), - [anon_sym_GT_GT_GT] = ACTIONS(7048), - [anon_sym_EQ_EQ] = ACTIONS(7048), - [anon_sym_BANG_EQ] = ACTIONS(7048), - [anon_sym_GT_EQ] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7048), - [anon_sym_DOT] = ACTIONS(7050), - [anon_sym_EQ_GT] = ACTIONS(7048), - [anon_sym_switch] = ACTIONS(7048), - [anon_sym_when] = ACTIONS(7048), - [anon_sym_DOT_DOT] = ACTIONS(7048), - [anon_sym_and] = ACTIONS(7048), - [anon_sym_or] = ACTIONS(7048), - [anon_sym_AMP_AMP] = ACTIONS(7048), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [sym_op_coalescing] = ACTIONS(7048), - [anon_sym_on] = ACTIONS(7048), - [anon_sym_equals] = ACTIONS(7048), - [anon_sym_by] = ACTIONS(7048), - [anon_sym_as] = ACTIONS(7048), - [anon_sym_is] = ACTIONS(7048), - [anon_sym_DASH_GT] = ACTIONS(7048), - [anon_sym_with] = ACTIONS(7048), - [aux_sym_preproc_if_token3] = ACTIONS(7048), - [aux_sym_preproc_else_token1] = ACTIONS(7048), - [aux_sym_preproc_elif_token1] = ACTIONS(7048), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7760), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -638530,6 +630090,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4995] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(4995), [sym_preproc_endregion] = STATE(4995), [sym_preproc_line] = STATE(4995), @@ -638539,56 +630114,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4995), [sym_preproc_define] = STATE(4995), [sym_preproc_undef] = STATE(4995), - [anon_sym_SEMI] = ACTIONS(5684), - [anon_sym_EQ] = ACTIONS(7196), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7198), - [anon_sym_DASH_EQ] = ACTIONS(7198), - [anon_sym_STAR_EQ] = ACTIONS(7198), - [anon_sym_SLASH_EQ] = ACTIONS(7198), - [anon_sym_PERCENT_EQ] = ACTIONS(7198), - [anon_sym_AMP_EQ] = ACTIONS(7198), - [anon_sym_CARET_EQ] = ACTIONS(7198), - [anon_sym_PIPE_EQ] = ACTIONS(7198), - [anon_sym_LT_LT_EQ] = ACTIONS(7198), - [anon_sym_GT_GT_EQ] = ACTIONS(7198), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7198), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7198), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_if_token3] = ACTIONS(5684), - [aux_sym_preproc_else_token1] = ACTIONS(5684), - [aux_sym_preproc_elif_token1] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7762), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -638601,6 +630160,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4996] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(4996), [sym_preproc_endregion] = STATE(4996), [sym_preproc_line] = STATE(4996), @@ -638610,56 +630184,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4996), [sym_preproc_define] = STATE(4996), [sym_preproc_undef] = STATE(4996), - [anon_sym_SEMI] = ACTIONS(6231), - [anon_sym_LBRACK] = ACTIONS(6231), - [anon_sym_COLON] = ACTIONS(6231), - [anon_sym_COMMA] = ACTIONS(6231), - [anon_sym_RBRACK] = ACTIONS(6231), - [anon_sym_LPAREN] = ACTIONS(6231), - [anon_sym_RPAREN] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(6231), - [anon_sym_LT] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6233), - [anon_sym_in] = ACTIONS(6231), - [anon_sym_QMARK] = ACTIONS(6233), - [anon_sym_BANG] = ACTIONS(6233), - [anon_sym_PLUS_PLUS] = ACTIONS(6231), - [anon_sym_DASH_DASH] = ACTIONS(6231), - [anon_sym_PLUS] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6233), - [anon_sym_STAR] = ACTIONS(6231), - [anon_sym_SLASH] = ACTIONS(6233), - [anon_sym_PERCENT] = ACTIONS(6231), - [anon_sym_CARET] = ACTIONS(6231), - [anon_sym_PIPE] = ACTIONS(6233), - [anon_sym_AMP] = ACTIONS(6233), - [anon_sym_LT_LT] = ACTIONS(6231), - [anon_sym_GT_GT] = ACTIONS(6233), - [anon_sym_GT_GT_GT] = ACTIONS(6231), - [anon_sym_EQ_EQ] = ACTIONS(6231), - [anon_sym_BANG_EQ] = ACTIONS(6231), - [anon_sym_GT_EQ] = ACTIONS(6231), - [anon_sym_LT_EQ] = ACTIONS(6231), - [anon_sym_DOT] = ACTIONS(6233), - [anon_sym_EQ_GT] = ACTIONS(6231), - [anon_sym_switch] = ACTIONS(6231), - [anon_sym_when] = ACTIONS(6231), - [anon_sym_DOT_DOT] = ACTIONS(6231), - [anon_sym_and] = ACTIONS(6231), - [anon_sym_or] = ACTIONS(6231), - [anon_sym_AMP_AMP] = ACTIONS(6231), - [anon_sym_PIPE_PIPE] = ACTIONS(6231), - [sym_op_coalescing] = ACTIONS(6231), - [anon_sym_on] = ACTIONS(6231), - [anon_sym_equals] = ACTIONS(6231), - [anon_sym_by] = ACTIONS(6231), - [anon_sym_as] = ACTIONS(6231), - [anon_sym_is] = ACTIONS(6231), - [anon_sym_DASH_GT] = ACTIONS(6231), - [anon_sym_with] = ACTIONS(6231), - [aux_sym_preproc_if_token3] = ACTIONS(6231), - [aux_sym_preproc_else_token1] = ACTIONS(6231), - [aux_sym_preproc_elif_token1] = ACTIONS(6231), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5356), + [anon_sym_QMARK] = ACTIONS(7350), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7354), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(7364), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7366), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -638681,56 +630239,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4997), [sym_preproc_define] = STATE(4997), [sym_preproc_undef] = STATE(4997), - [anon_sym_SEMI] = ACTIONS(7124), - [anon_sym_LBRACK] = ACTIONS(7124), - [anon_sym_COLON] = ACTIONS(7124), - [anon_sym_COMMA] = ACTIONS(7124), - [anon_sym_RBRACK] = ACTIONS(7124), - [anon_sym_LPAREN] = ACTIONS(7124), - [anon_sym_RPAREN] = ACTIONS(7124), - [anon_sym_RBRACE] = ACTIONS(7124), - [anon_sym_LT] = ACTIONS(7126), - [anon_sym_GT] = ACTIONS(7126), - [anon_sym_in] = ACTIONS(7124), - [anon_sym_QMARK] = ACTIONS(7126), - [anon_sym_BANG] = ACTIONS(7126), - [anon_sym_PLUS_PLUS] = ACTIONS(7124), - [anon_sym_DASH_DASH] = ACTIONS(7124), - [anon_sym_PLUS] = ACTIONS(7126), - [anon_sym_DASH] = ACTIONS(7126), - [anon_sym_STAR] = ACTIONS(7124), - [anon_sym_SLASH] = ACTIONS(7126), - [anon_sym_PERCENT] = ACTIONS(7124), - [anon_sym_CARET] = ACTIONS(7124), - [anon_sym_PIPE] = ACTIONS(7126), - [anon_sym_AMP] = ACTIONS(7126), - [anon_sym_LT_LT] = ACTIONS(7124), - [anon_sym_GT_GT] = ACTIONS(7126), - [anon_sym_GT_GT_GT] = ACTIONS(7124), - [anon_sym_EQ_EQ] = ACTIONS(7124), - [anon_sym_BANG_EQ] = ACTIONS(7124), - [anon_sym_GT_EQ] = ACTIONS(7124), - [anon_sym_LT_EQ] = ACTIONS(7124), - [anon_sym_DOT] = ACTIONS(7126), - [anon_sym_EQ_GT] = ACTIONS(7124), - [anon_sym_switch] = ACTIONS(7124), - [anon_sym_when] = ACTIONS(7124), - [anon_sym_DOT_DOT] = ACTIONS(7124), - [anon_sym_and] = ACTIONS(7124), - [anon_sym_or] = ACTIONS(7124), - [anon_sym_AMP_AMP] = ACTIONS(7124), - [anon_sym_PIPE_PIPE] = ACTIONS(7124), - [sym_op_coalescing] = ACTIONS(7124), - [anon_sym_on] = ACTIONS(7124), - [anon_sym_equals] = ACTIONS(7124), - [anon_sym_by] = ACTIONS(7124), - [anon_sym_as] = ACTIONS(7124), - [anon_sym_is] = ACTIONS(7124), - [anon_sym_DASH_GT] = ACTIONS(7124), - [anon_sym_with] = ACTIONS(7124), - [aux_sym_preproc_if_token3] = ACTIONS(7124), - [aux_sym_preproc_else_token1] = ACTIONS(7124), - [aux_sym_preproc_elif_token1] = ACTIONS(7124), + [sym__identifier_token] = ACTIONS(5428), + [anon_sym_extern] = ACTIONS(5428), + [anon_sym_alias] = ACTIONS(5428), + [anon_sym_global] = ACTIONS(5428), + [anon_sym_unsafe] = ACTIONS(5428), + [anon_sym_static] = ACTIONS(5428), + [anon_sym_LBRACK] = ACTIONS(5430), + [anon_sym_LPAREN] = ACTIONS(5430), + [anon_sym_ref] = ACTIONS(5428), + [anon_sym_delegate] = ACTIONS(5428), + [anon_sym_public] = ACTIONS(5428), + [anon_sym_private] = ACTIONS(5428), + [anon_sym_readonly] = ACTIONS(5428), + [anon_sym_abstract] = ACTIONS(5428), + [anon_sym_async] = ACTIONS(5428), + [anon_sym_const] = ACTIONS(5428), + [anon_sym_file] = ACTIONS(5428), + [anon_sym_fixed] = ACTIONS(5428), + [anon_sym_internal] = ACTIONS(5428), + [anon_sym_new] = ACTIONS(5428), + [anon_sym_override] = ACTIONS(5428), + [anon_sym_partial] = ACTIONS(5428), + [anon_sym_protected] = ACTIONS(5428), + [anon_sym_required] = ACTIONS(5428), + [anon_sym_sealed] = ACTIONS(5428), + [anon_sym_virtual] = ACTIONS(5428), + [anon_sym_volatile] = ACTIONS(5428), + [anon_sym_where] = ACTIONS(5428), + [anon_sym_notnull] = ACTIONS(5428), + [anon_sym_unmanaged] = ACTIONS(5428), + [anon_sym_scoped] = ACTIONS(5428), + [anon_sym_var] = ACTIONS(5428), + [sym_predefined_type] = ACTIONS(5428), + [anon_sym_yield] = ACTIONS(5428), + [anon_sym_when] = ACTIONS(5428), + [anon_sym_from] = ACTIONS(5428), + [anon_sym_into] = ACTIONS(5428), + [anon_sym_join] = ACTIONS(5428), + [anon_sym_on] = ACTIONS(5428), + [anon_sym_equals] = ACTIONS(5428), + [anon_sym_let] = ACTIONS(5428), + [anon_sym_orderby] = ACTIONS(5428), + [anon_sym_ascending] = ACTIONS(5428), + [anon_sym_descending] = ACTIONS(5428), + [anon_sym_group] = ACTIONS(5428), + [anon_sym_by] = ACTIONS(5428), + [anon_sym_select] = ACTIONS(5428), + [sym_grit_metavariable] = ACTIONS(5430), + [aux_sym_preproc_if_token1] = ACTIONS(5430), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -638743,6 +630300,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4998] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4998), [sym_preproc_endregion] = STATE(4998), [sym_preproc_line] = STATE(4998), @@ -638752,56 +630324,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4998), [sym_preproc_define] = STATE(4998), [sym_preproc_undef] = STATE(4998), - [anon_sym_SEMI] = ACTIONS(6249), - [anon_sym_LBRACK] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6249), - [anon_sym_COMMA] = ACTIONS(6249), - [anon_sym_RBRACK] = ACTIONS(6249), - [anon_sym_LPAREN] = ACTIONS(6249), - [anon_sym_RPAREN] = ACTIONS(6249), - [anon_sym_RBRACE] = ACTIONS(6249), - [anon_sym_LT] = ACTIONS(6251), - [anon_sym_GT] = ACTIONS(6251), - [anon_sym_in] = ACTIONS(6249), - [anon_sym_QMARK] = ACTIONS(6251), - [anon_sym_BANG] = ACTIONS(6251), - [anon_sym_PLUS_PLUS] = ACTIONS(6249), - [anon_sym_DASH_DASH] = ACTIONS(6249), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6249), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_PERCENT] = ACTIONS(6249), - [anon_sym_CARET] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6251), - [anon_sym_AMP] = ACTIONS(6251), - [anon_sym_LT_LT] = ACTIONS(6249), - [anon_sym_GT_GT] = ACTIONS(6251), - [anon_sym_GT_GT_GT] = ACTIONS(6249), - [anon_sym_EQ_EQ] = ACTIONS(6249), - [anon_sym_BANG_EQ] = ACTIONS(6249), - [anon_sym_GT_EQ] = ACTIONS(6249), - [anon_sym_LT_EQ] = ACTIONS(6249), - [anon_sym_DOT] = ACTIONS(6251), - [anon_sym_EQ_GT] = ACTIONS(6249), - [anon_sym_switch] = ACTIONS(6249), - [anon_sym_when] = ACTIONS(6249), - [anon_sym_DOT_DOT] = ACTIONS(6249), - [anon_sym_and] = ACTIONS(6249), - [anon_sym_or] = ACTIONS(6249), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6249), - [sym_op_coalescing] = ACTIONS(6249), - [anon_sym_on] = ACTIONS(6249), - [anon_sym_equals] = ACTIONS(6249), - [anon_sym_by] = ACTIONS(6249), - [anon_sym_as] = ACTIONS(6249), - [anon_sym_is] = ACTIONS(6249), - [anon_sym_DASH_GT] = ACTIONS(6249), - [anon_sym_with] = ACTIONS(6249), - [aux_sym_preproc_if_token3] = ACTIONS(6249), - [aux_sym_preproc_else_token1] = ACTIONS(6249), - [aux_sym_preproc_elif_token1] = ACTIONS(6249), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7764), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -638814,6 +630370,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4999] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(4999), [sym_preproc_endregion] = STATE(4999), [sym_preproc_line] = STATE(4999), @@ -638823,56 +630394,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4999), [sym_preproc_define] = STATE(4999), [sym_preproc_undef] = STATE(4999), - [anon_sym_SEMI] = ACTIONS(6255), - [anon_sym_LBRACK] = ACTIONS(6255), - [anon_sym_COLON] = ACTIONS(6255), - [anon_sym_COMMA] = ACTIONS(6255), - [anon_sym_RBRACK] = ACTIONS(6255), - [anon_sym_LPAREN] = ACTIONS(6255), - [anon_sym_RPAREN] = ACTIONS(6255), - [anon_sym_RBRACE] = ACTIONS(6255), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_GT] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6255), - [anon_sym_QMARK] = ACTIONS(6257), - [anon_sym_BANG] = ACTIONS(6257), - [anon_sym_PLUS_PLUS] = ACTIONS(6255), - [anon_sym_DASH_DASH] = ACTIONS(6255), - [anon_sym_PLUS] = ACTIONS(6257), - [anon_sym_DASH] = ACTIONS(6257), - [anon_sym_STAR] = ACTIONS(6255), - [anon_sym_SLASH] = ACTIONS(6257), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_CARET] = ACTIONS(6255), - [anon_sym_PIPE] = ACTIONS(6257), - [anon_sym_AMP] = ACTIONS(6257), - [anon_sym_LT_LT] = ACTIONS(6255), - [anon_sym_GT_GT] = ACTIONS(6257), - [anon_sym_GT_GT_GT] = ACTIONS(6255), - [anon_sym_EQ_EQ] = ACTIONS(6255), - [anon_sym_BANG_EQ] = ACTIONS(6255), - [anon_sym_GT_EQ] = ACTIONS(6255), - [anon_sym_LT_EQ] = ACTIONS(6255), - [anon_sym_DOT] = ACTIONS(6257), - [anon_sym_EQ_GT] = ACTIONS(6255), - [anon_sym_switch] = ACTIONS(6255), - [anon_sym_when] = ACTIONS(6255), - [anon_sym_DOT_DOT] = ACTIONS(6255), - [anon_sym_and] = ACTIONS(6255), - [anon_sym_or] = ACTIONS(6255), - [anon_sym_AMP_AMP] = ACTIONS(6255), - [anon_sym_PIPE_PIPE] = ACTIONS(6255), - [sym_op_coalescing] = ACTIONS(6255), - [anon_sym_on] = ACTIONS(6255), - [anon_sym_equals] = ACTIONS(6255), - [anon_sym_by] = ACTIONS(6255), - [anon_sym_as] = ACTIONS(6255), - [anon_sym_is] = ACTIONS(6255), - [anon_sym_DASH_GT] = ACTIONS(6255), - [anon_sym_with] = ACTIONS(6255), - [aux_sym_preproc_if_token3] = ACTIONS(6255), - [aux_sym_preproc_else_token1] = ACTIONS(6255), - [aux_sym_preproc_elif_token1] = ACTIONS(6255), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7766), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -638885,6 +630440,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5000] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5000), [sym_preproc_endregion] = STATE(5000), [sym_preproc_line] = STATE(5000), @@ -638894,56 +630464,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5000), [sym_preproc_define] = STATE(5000), [sym_preproc_undef] = STATE(5000), - [sym__identifier_token] = ACTIONS(5538), - [anon_sym_extern] = ACTIONS(5538), - [anon_sym_alias] = ACTIONS(5538), - [anon_sym_global] = ACTIONS(5538), - [anon_sym_unsafe] = ACTIONS(5538), - [anon_sym_static] = ACTIONS(5538), - [anon_sym_LBRACK] = ACTIONS(5540), - [anon_sym_public] = ACTIONS(5538), - [anon_sym_private] = ACTIONS(5538), - [anon_sym_readonly] = ACTIONS(5538), - [anon_sym_abstract] = ACTIONS(5538), - [anon_sym_async] = ACTIONS(5538), - [anon_sym_const] = ACTIONS(5538), - [anon_sym_file] = ACTIONS(5538), - [anon_sym_fixed] = ACTIONS(5538), - [anon_sym_internal] = ACTIONS(5538), - [anon_sym_new] = ACTIONS(5538), - [anon_sym_override] = ACTIONS(5538), - [anon_sym_partial] = ACTIONS(5538), - [anon_sym_protected] = ACTIONS(5538), - [anon_sym_required] = ACTIONS(5538), - [anon_sym_sealed] = ACTIONS(5538), - [anon_sym_virtual] = ACTIONS(5538), - [anon_sym_volatile] = ACTIONS(5538), - [anon_sym_where] = ACTIONS(5538), - [anon_sym_notnull] = ACTIONS(5538), - [anon_sym_unmanaged] = ACTIONS(5538), - [sym_accessor_get] = ACTIONS(5538), - [sym_accessor_set] = ACTIONS(5538), - [sym_accessor_add] = ACTIONS(5538), - [sym_accessor_remove] = ACTIONS(5538), - [sym_accessor_init] = ACTIONS(5538), - [anon_sym_scoped] = ACTIONS(5538), - [anon_sym_var] = ACTIONS(5538), - [anon_sym_yield] = ACTIONS(5538), - [anon_sym_when] = ACTIONS(5538), - [anon_sym_from] = ACTIONS(5538), - [anon_sym_into] = ACTIONS(5538), - [anon_sym_join] = ACTIONS(5538), - [anon_sym_on] = ACTIONS(5538), - [anon_sym_equals] = ACTIONS(5538), - [anon_sym_let] = ACTIONS(5538), - [anon_sym_orderby] = ACTIONS(5538), - [anon_sym_ascending] = ACTIONS(5538), - [anon_sym_descending] = ACTIONS(5538), - [anon_sym_group] = ACTIONS(5538), - [anon_sym_by] = ACTIONS(5538), - [anon_sym_select] = ACTIONS(5538), - [sym_grit_metavariable] = ACTIONS(5540), - [aux_sym_preproc_if_token1] = ACTIONS(5540), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7768), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -638956,6 +630510,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5001] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(5001), [sym_preproc_endregion] = STATE(5001), [sym_preproc_line] = STATE(5001), @@ -638965,56 +630534,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5001), [sym_preproc_define] = STATE(5001), [sym_preproc_undef] = STATE(5001), - [sym__identifier_token] = ACTIONS(5554), - [anon_sym_extern] = ACTIONS(5554), - [anon_sym_alias] = ACTIONS(5554), - [anon_sym_global] = ACTIONS(5554), - [anon_sym_unsafe] = ACTIONS(5554), - [anon_sym_static] = ACTIONS(5554), - [anon_sym_LBRACK] = ACTIONS(5556), - [anon_sym_public] = ACTIONS(5554), - [anon_sym_private] = ACTIONS(5554), - [anon_sym_readonly] = ACTIONS(5554), - [anon_sym_abstract] = ACTIONS(5554), - [anon_sym_async] = ACTIONS(5554), - [anon_sym_const] = ACTIONS(5554), - [anon_sym_file] = ACTIONS(5554), - [anon_sym_fixed] = ACTIONS(5554), - [anon_sym_internal] = ACTIONS(5554), - [anon_sym_new] = ACTIONS(5554), - [anon_sym_override] = ACTIONS(5554), - [anon_sym_partial] = ACTIONS(5554), - [anon_sym_protected] = ACTIONS(5554), - [anon_sym_required] = ACTIONS(5554), - [anon_sym_sealed] = ACTIONS(5554), - [anon_sym_virtual] = ACTIONS(5554), - [anon_sym_volatile] = ACTIONS(5554), - [anon_sym_where] = ACTIONS(5554), - [anon_sym_notnull] = ACTIONS(5554), - [anon_sym_unmanaged] = ACTIONS(5554), - [sym_accessor_get] = ACTIONS(5554), - [sym_accessor_set] = ACTIONS(5554), - [sym_accessor_add] = ACTIONS(5554), - [sym_accessor_remove] = ACTIONS(5554), - [sym_accessor_init] = ACTIONS(5554), - [anon_sym_scoped] = ACTIONS(5554), - [anon_sym_var] = ACTIONS(5554), - [anon_sym_yield] = ACTIONS(5554), - [anon_sym_when] = ACTIONS(5554), - [anon_sym_from] = ACTIONS(5554), - [anon_sym_into] = ACTIONS(5554), - [anon_sym_join] = ACTIONS(5554), - [anon_sym_on] = ACTIONS(5554), - [anon_sym_equals] = ACTIONS(5554), - [anon_sym_let] = ACTIONS(5554), - [anon_sym_orderby] = ACTIONS(5554), - [anon_sym_ascending] = ACTIONS(5554), - [anon_sym_descending] = ACTIONS(5554), - [anon_sym_group] = ACTIONS(5554), - [anon_sym_by] = ACTIONS(5554), - [anon_sym_select] = ACTIONS(5554), - [sym_grit_metavariable] = ACTIONS(5556), - [aux_sym_preproc_if_token1] = ACTIONS(5556), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7770), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -639027,6 +630580,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5002] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5002), [sym_preproc_endregion] = STATE(5002), [sym_preproc_line] = STATE(5002), @@ -639036,56 +630604,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5002), [sym_preproc_define] = STATE(5002), [sym_preproc_undef] = STATE(5002), - [sym__identifier_token] = ACTIONS(5558), - [anon_sym_extern] = ACTIONS(5558), - [anon_sym_alias] = ACTIONS(5558), - [anon_sym_global] = ACTIONS(5558), - [anon_sym_unsafe] = ACTIONS(5558), - [anon_sym_static] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5560), - [anon_sym_public] = ACTIONS(5558), - [anon_sym_private] = ACTIONS(5558), - [anon_sym_readonly] = ACTIONS(5558), - [anon_sym_abstract] = ACTIONS(5558), - [anon_sym_async] = ACTIONS(5558), - [anon_sym_const] = ACTIONS(5558), - [anon_sym_file] = ACTIONS(5558), - [anon_sym_fixed] = ACTIONS(5558), - [anon_sym_internal] = ACTIONS(5558), - [anon_sym_new] = ACTIONS(5558), - [anon_sym_override] = ACTIONS(5558), - [anon_sym_partial] = ACTIONS(5558), - [anon_sym_protected] = ACTIONS(5558), - [anon_sym_required] = ACTIONS(5558), - [anon_sym_sealed] = ACTIONS(5558), - [anon_sym_virtual] = ACTIONS(5558), - [anon_sym_volatile] = ACTIONS(5558), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_notnull] = ACTIONS(5558), - [anon_sym_unmanaged] = ACTIONS(5558), - [sym_accessor_get] = ACTIONS(5558), - [sym_accessor_set] = ACTIONS(5558), - [sym_accessor_add] = ACTIONS(5558), - [sym_accessor_remove] = ACTIONS(5558), - [sym_accessor_init] = ACTIONS(5558), - [anon_sym_scoped] = ACTIONS(5558), - [anon_sym_var] = ACTIONS(5558), - [anon_sym_yield] = ACTIONS(5558), - [anon_sym_when] = ACTIONS(5558), - [anon_sym_from] = ACTIONS(5558), - [anon_sym_into] = ACTIONS(5558), - [anon_sym_join] = ACTIONS(5558), - [anon_sym_on] = ACTIONS(5558), - [anon_sym_equals] = ACTIONS(5558), - [anon_sym_let] = ACTIONS(5558), - [anon_sym_orderby] = ACTIONS(5558), - [anon_sym_ascending] = ACTIONS(5558), - [anon_sym_descending] = ACTIONS(5558), - [anon_sym_group] = ACTIONS(5558), - [anon_sym_by] = ACTIONS(5558), - [anon_sym_select] = ACTIONS(5558), - [sym_grit_metavariable] = ACTIONS(5560), - [aux_sym_preproc_if_token1] = ACTIONS(5560), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7772), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -639098,6 +630650,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5003] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5003), [sym_preproc_endregion] = STATE(5003), [sym_preproc_line] = STATE(5003), @@ -639107,56 +630674,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5003), [sym_preproc_define] = STATE(5003), [sym_preproc_undef] = STATE(5003), - [anon_sym_SEMI] = ACTIONS(6267), - [anon_sym_LBRACK] = ACTIONS(6267), - [anon_sym_COLON] = ACTIONS(6267), - [anon_sym_COMMA] = ACTIONS(6267), - [anon_sym_RBRACK] = ACTIONS(6267), - [anon_sym_LPAREN] = ACTIONS(6267), - [anon_sym_RPAREN] = ACTIONS(6267), - [anon_sym_RBRACE] = ACTIONS(6267), - [anon_sym_LT] = ACTIONS(6269), - [anon_sym_GT] = ACTIONS(6269), - [anon_sym_in] = ACTIONS(6267), - [anon_sym_QMARK] = ACTIONS(6269), - [anon_sym_BANG] = ACTIONS(6269), - [anon_sym_PLUS_PLUS] = ACTIONS(6267), - [anon_sym_DASH_DASH] = ACTIONS(6267), - [anon_sym_PLUS] = ACTIONS(6269), - [anon_sym_DASH] = ACTIONS(6269), - [anon_sym_STAR] = ACTIONS(6267), - [anon_sym_SLASH] = ACTIONS(6269), - [anon_sym_PERCENT] = ACTIONS(6267), - [anon_sym_CARET] = ACTIONS(6267), - [anon_sym_PIPE] = ACTIONS(6269), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_GT_GT] = ACTIONS(6269), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_EQ_EQ] = ACTIONS(6267), - [anon_sym_BANG_EQ] = ACTIONS(6267), - [anon_sym_GT_EQ] = ACTIONS(6267), - [anon_sym_LT_EQ] = ACTIONS(6267), - [anon_sym_DOT] = ACTIONS(6269), - [anon_sym_EQ_GT] = ACTIONS(6267), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_when] = ACTIONS(6267), - [anon_sym_DOT_DOT] = ACTIONS(6267), - [anon_sym_and] = ACTIONS(6267), - [anon_sym_or] = ACTIONS(6267), - [anon_sym_AMP_AMP] = ACTIONS(6267), - [anon_sym_PIPE_PIPE] = ACTIONS(6267), - [sym_op_coalescing] = ACTIONS(6267), - [anon_sym_on] = ACTIONS(6267), - [anon_sym_equals] = ACTIONS(6267), - [anon_sym_by] = ACTIONS(6267), - [anon_sym_as] = ACTIONS(6267), - [anon_sym_is] = ACTIONS(6267), - [anon_sym_DASH_GT] = ACTIONS(6267), - [anon_sym_with] = ACTIONS(6267), - [aux_sym_preproc_if_token3] = ACTIONS(6267), - [aux_sym_preproc_else_token1] = ACTIONS(6267), - [aux_sym_preproc_elif_token1] = ACTIONS(6267), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7774), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -639169,6 +630720,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5004] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5004), [sym_preproc_endregion] = STATE(5004), [sym_preproc_line] = STATE(5004), @@ -639178,56 +630744,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5004), [sym_preproc_define] = STATE(5004), [sym_preproc_undef] = STATE(5004), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_COLON] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_RPAREN] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3201), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_GT_EQ] = ACTIONS(3201), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_when] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_op_coalescing] = ACTIONS(3201), - [anon_sym_on] = ACTIONS(3201), - [anon_sym_equals] = ACTIONS(3201), - [anon_sym_by] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3201), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_with] = ACTIONS(3201), - [aux_sym_preproc_if_token3] = ACTIONS(3201), - [aux_sym_preproc_else_token1] = ACTIONS(3201), - [aux_sym_preproc_elif_token1] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7776), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -639240,6 +630790,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5005] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(5005), [sym_preproc_endregion] = STATE(5005), [sym_preproc_line] = STATE(5005), @@ -639249,56 +630814,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5005), [sym_preproc_define] = STATE(5005), [sym_preproc_undef] = STATE(5005), - [anon_sym_SEMI] = ACTIONS(6271), - [anon_sym_LBRACK] = ACTIONS(6271), - [anon_sym_COLON] = ACTIONS(6271), - [anon_sym_COMMA] = ACTIONS(6271), - [anon_sym_RBRACK] = ACTIONS(6271), - [anon_sym_LPAREN] = ACTIONS(6271), - [anon_sym_RPAREN] = ACTIONS(6271), - [anon_sym_RBRACE] = ACTIONS(6271), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_in] = ACTIONS(6271), - [anon_sym_QMARK] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PLUS_PLUS] = ACTIONS(6271), - [anon_sym_DASH_DASH] = ACTIONS(6271), - [anon_sym_PLUS] = ACTIONS(6273), - [anon_sym_DASH] = ACTIONS(6273), - [anon_sym_STAR] = ACTIONS(6271), - [anon_sym_SLASH] = ACTIONS(6273), - [anon_sym_PERCENT] = ACTIONS(6271), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_AMP] = ACTIONS(6273), - [anon_sym_LT_LT] = ACTIONS(6271), - [anon_sym_GT_GT] = ACTIONS(6273), - [anon_sym_GT_GT_GT] = ACTIONS(6271), - [anon_sym_EQ_EQ] = ACTIONS(6271), - [anon_sym_BANG_EQ] = ACTIONS(6271), - [anon_sym_GT_EQ] = ACTIONS(6271), - [anon_sym_LT_EQ] = ACTIONS(6271), - [anon_sym_DOT] = ACTIONS(6273), - [anon_sym_EQ_GT] = ACTIONS(6271), - [anon_sym_switch] = ACTIONS(6271), - [anon_sym_when] = ACTIONS(6271), - [anon_sym_DOT_DOT] = ACTIONS(6271), - [anon_sym_and] = ACTIONS(6271), - [anon_sym_or] = ACTIONS(6271), - [anon_sym_AMP_AMP] = ACTIONS(6271), - [anon_sym_PIPE_PIPE] = ACTIONS(6271), - [sym_op_coalescing] = ACTIONS(6271), - [anon_sym_on] = ACTIONS(6271), - [anon_sym_equals] = ACTIONS(6271), - [anon_sym_by] = ACTIONS(6271), - [anon_sym_as] = ACTIONS(6271), - [anon_sym_is] = ACTIONS(6271), - [anon_sym_DASH_GT] = ACTIONS(6271), - [anon_sym_with] = ACTIONS(6271), - [aux_sym_preproc_if_token3] = ACTIONS(6271), - [aux_sym_preproc_else_token1] = ACTIONS(6271), - [aux_sym_preproc_elif_token1] = ACTIONS(6271), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7778), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -639311,6 +630860,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5006] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(5006), [sym_preproc_endregion] = STATE(5006), [sym_preproc_line] = STATE(5006), @@ -639320,56 +630884,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5006), [sym_preproc_define] = STATE(5006), [sym_preproc_undef] = STATE(5006), - [anon_sym_SEMI] = ACTIONS(6081), - [anon_sym_LBRACK] = ACTIONS(6081), - [anon_sym_COLON] = ACTIONS(6081), - [anon_sym_COMMA] = ACTIONS(6081), - [anon_sym_RBRACK] = ACTIONS(6081), - [anon_sym_LPAREN] = ACTIONS(6081), - [anon_sym_RPAREN] = ACTIONS(6081), - [anon_sym_RBRACE] = ACTIONS(6081), - [anon_sym_LT] = ACTIONS(6083), - [anon_sym_GT] = ACTIONS(6083), - [anon_sym_in] = ACTIONS(6081), - [anon_sym_QMARK] = ACTIONS(6083), - [anon_sym_BANG] = ACTIONS(6083), - [anon_sym_PLUS_PLUS] = ACTIONS(6081), - [anon_sym_DASH_DASH] = ACTIONS(6081), - [anon_sym_PLUS] = ACTIONS(6083), - [anon_sym_DASH] = ACTIONS(6083), - [anon_sym_STAR] = ACTIONS(6081), - [anon_sym_SLASH] = ACTIONS(6083), - [anon_sym_PERCENT] = ACTIONS(6081), - [anon_sym_CARET] = ACTIONS(6081), - [anon_sym_PIPE] = ACTIONS(6083), - [anon_sym_AMP] = ACTIONS(6083), - [anon_sym_LT_LT] = ACTIONS(6081), - [anon_sym_GT_GT] = ACTIONS(6083), - [anon_sym_GT_GT_GT] = ACTIONS(6081), - [anon_sym_EQ_EQ] = ACTIONS(6081), - [anon_sym_BANG_EQ] = ACTIONS(6081), - [anon_sym_GT_EQ] = ACTIONS(6081), - [anon_sym_LT_EQ] = ACTIONS(6081), - [anon_sym_DOT] = ACTIONS(6083), - [anon_sym_EQ_GT] = ACTIONS(6081), - [anon_sym_switch] = ACTIONS(6081), - [anon_sym_when] = ACTIONS(6081), - [anon_sym_DOT_DOT] = ACTIONS(6081), - [anon_sym_and] = ACTIONS(6081), - [anon_sym_or] = ACTIONS(6081), - [anon_sym_AMP_AMP] = ACTIONS(6081), - [anon_sym_PIPE_PIPE] = ACTIONS(6081), - [sym_op_coalescing] = ACTIONS(6081), - [anon_sym_on] = ACTIONS(6081), - [anon_sym_equals] = ACTIONS(6081), - [anon_sym_by] = ACTIONS(6081), - [anon_sym_as] = ACTIONS(6081), - [anon_sym_is] = ACTIONS(6081), - [anon_sym_DASH_GT] = ACTIONS(6081), - [anon_sym_with] = ACTIONS(6081), - [aux_sym_preproc_if_token3] = ACTIONS(6081), - [aux_sym_preproc_else_token1] = ACTIONS(6081), - [aux_sym_preproc_elif_token1] = ACTIONS(6081), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7780), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -639382,6 +630930,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5007] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(5007), [sym_preproc_endregion] = STATE(5007), [sym_preproc_line] = STATE(5007), @@ -639391,56 +630954,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5007), [sym_preproc_define] = STATE(5007), [sym_preproc_undef] = STATE(5007), - [anon_sym_SEMI] = ACTIONS(7124), - [anon_sym_LBRACK] = ACTIONS(7124), - [anon_sym_COLON] = ACTIONS(7124), - [anon_sym_COMMA] = ACTIONS(7124), - [anon_sym_RBRACK] = ACTIONS(7124), - [anon_sym_LPAREN] = ACTIONS(7124), - [anon_sym_RPAREN] = ACTIONS(7124), - [anon_sym_RBRACE] = ACTIONS(7124), - [anon_sym_LT] = ACTIONS(7126), - [anon_sym_GT] = ACTIONS(7126), - [anon_sym_in] = ACTIONS(7124), - [anon_sym_QMARK] = ACTIONS(7126), - [anon_sym_BANG] = ACTIONS(7126), - [anon_sym_PLUS_PLUS] = ACTIONS(7124), - [anon_sym_DASH_DASH] = ACTIONS(7124), - [anon_sym_PLUS] = ACTIONS(7126), - [anon_sym_DASH] = ACTIONS(7126), - [anon_sym_STAR] = ACTIONS(7124), - [anon_sym_SLASH] = ACTIONS(7126), - [anon_sym_PERCENT] = ACTIONS(7124), - [anon_sym_CARET] = ACTIONS(7124), - [anon_sym_PIPE] = ACTIONS(7126), - [anon_sym_AMP] = ACTIONS(7126), - [anon_sym_LT_LT] = ACTIONS(7124), - [anon_sym_GT_GT] = ACTIONS(7126), - [anon_sym_GT_GT_GT] = ACTIONS(7124), - [anon_sym_EQ_EQ] = ACTIONS(7124), - [anon_sym_BANG_EQ] = ACTIONS(7124), - [anon_sym_GT_EQ] = ACTIONS(7124), - [anon_sym_LT_EQ] = ACTIONS(7124), - [anon_sym_DOT] = ACTIONS(7126), - [anon_sym_EQ_GT] = ACTIONS(7124), - [anon_sym_switch] = ACTIONS(7124), - [anon_sym_when] = ACTIONS(7124), - [anon_sym_DOT_DOT] = ACTIONS(7124), - [anon_sym_and] = ACTIONS(7124), - [anon_sym_or] = ACTIONS(7124), - [anon_sym_AMP_AMP] = ACTIONS(7124), - [anon_sym_PIPE_PIPE] = ACTIONS(7124), - [sym_op_coalescing] = ACTIONS(7124), - [anon_sym_on] = ACTIONS(7124), - [anon_sym_equals] = ACTIONS(7124), - [anon_sym_by] = ACTIONS(7124), - [anon_sym_as] = ACTIONS(7124), - [anon_sym_is] = ACTIONS(7124), - [anon_sym_DASH_GT] = ACTIONS(7124), - [anon_sym_with] = ACTIONS(7124), - [aux_sym_preproc_if_token3] = ACTIONS(7124), - [aux_sym_preproc_else_token1] = ACTIONS(7124), - [aux_sym_preproc_elif_token1] = ACTIONS(7124), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7782), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -639453,6 +631000,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5008] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(5008), [sym_preproc_endregion] = STATE(5008), [sym_preproc_line] = STATE(5008), @@ -639462,56 +631024,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5008), [sym_preproc_define] = STATE(5008), [sym_preproc_undef] = STATE(5008), - [anon_sym_SEMI] = ACTIONS(7128), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_COLON] = ACTIONS(7128), - [anon_sym_COMMA] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(7128), - [anon_sym_LPAREN] = ACTIONS(7128), - [anon_sym_RPAREN] = ACTIONS(7128), - [anon_sym_RBRACE] = ACTIONS(7128), - [anon_sym_LT] = ACTIONS(7130), - [anon_sym_GT] = ACTIONS(7130), - [anon_sym_in] = ACTIONS(7128), - [anon_sym_QMARK] = ACTIONS(7130), - [anon_sym_BANG] = ACTIONS(7130), - [anon_sym_PLUS_PLUS] = ACTIONS(7128), - [anon_sym_DASH_DASH] = ACTIONS(7128), - [anon_sym_PLUS] = ACTIONS(7130), - [anon_sym_DASH] = ACTIONS(7130), - [anon_sym_STAR] = ACTIONS(7128), - [anon_sym_SLASH] = ACTIONS(7130), - [anon_sym_PERCENT] = ACTIONS(7128), - [anon_sym_CARET] = ACTIONS(7128), - [anon_sym_PIPE] = ACTIONS(7130), - [anon_sym_AMP] = ACTIONS(7130), - [anon_sym_LT_LT] = ACTIONS(7128), - [anon_sym_GT_GT] = ACTIONS(7130), - [anon_sym_GT_GT_GT] = ACTIONS(7128), - [anon_sym_EQ_EQ] = ACTIONS(7128), - [anon_sym_BANG_EQ] = ACTIONS(7128), - [anon_sym_GT_EQ] = ACTIONS(7128), - [anon_sym_LT_EQ] = ACTIONS(7128), - [anon_sym_DOT] = ACTIONS(7130), - [anon_sym_EQ_GT] = ACTIONS(7128), - [anon_sym_switch] = ACTIONS(7128), - [anon_sym_when] = ACTIONS(7128), - [anon_sym_DOT_DOT] = ACTIONS(7128), - [anon_sym_and] = ACTIONS(7128), - [anon_sym_or] = ACTIONS(7128), - [anon_sym_AMP_AMP] = ACTIONS(7128), - [anon_sym_PIPE_PIPE] = ACTIONS(7128), - [sym_op_coalescing] = ACTIONS(7128), - [anon_sym_on] = ACTIONS(7128), - [anon_sym_equals] = ACTIONS(7128), - [anon_sym_by] = ACTIONS(7128), - [anon_sym_as] = ACTIONS(7128), - [anon_sym_is] = ACTIONS(7128), - [anon_sym_DASH_GT] = ACTIONS(7128), - [anon_sym_with] = ACTIONS(7128), - [aux_sym_preproc_if_token3] = ACTIONS(7128), - [aux_sym_preproc_else_token1] = ACTIONS(7128), - [aux_sym_preproc_elif_token1] = ACTIONS(7128), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7784), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -639524,6 +631070,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5009] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(5009), [sym_preproc_endregion] = STATE(5009), [sym_preproc_line] = STATE(5009), @@ -639533,56 +631094,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5009), [sym_preproc_define] = STATE(5009), [sym_preproc_undef] = STATE(5009), - [anon_sym_SEMI] = ACTIONS(7132), - [anon_sym_LBRACK] = ACTIONS(7132), - [anon_sym_COLON] = ACTIONS(7132), - [anon_sym_COMMA] = ACTIONS(7132), - [anon_sym_RBRACK] = ACTIONS(7132), - [anon_sym_LPAREN] = ACTIONS(7132), - [anon_sym_RPAREN] = ACTIONS(7132), - [anon_sym_RBRACE] = ACTIONS(7132), - [anon_sym_LT] = ACTIONS(7134), - [anon_sym_GT] = ACTIONS(7134), - [anon_sym_in] = ACTIONS(7132), - [anon_sym_QMARK] = ACTIONS(7134), - [anon_sym_BANG] = ACTIONS(7134), - [anon_sym_PLUS_PLUS] = ACTIONS(7132), - [anon_sym_DASH_DASH] = ACTIONS(7132), - [anon_sym_PLUS] = ACTIONS(7134), - [anon_sym_DASH] = ACTIONS(7134), - [anon_sym_STAR] = ACTIONS(7132), - [anon_sym_SLASH] = ACTIONS(7134), - [anon_sym_PERCENT] = ACTIONS(7132), - [anon_sym_CARET] = ACTIONS(7132), - [anon_sym_PIPE] = ACTIONS(7134), - [anon_sym_AMP] = ACTIONS(7134), - [anon_sym_LT_LT] = ACTIONS(7132), - [anon_sym_GT_GT] = ACTIONS(7134), - [anon_sym_GT_GT_GT] = ACTIONS(7132), - [anon_sym_EQ_EQ] = ACTIONS(7132), - [anon_sym_BANG_EQ] = ACTIONS(7132), - [anon_sym_GT_EQ] = ACTIONS(7132), - [anon_sym_LT_EQ] = ACTIONS(7132), - [anon_sym_DOT] = ACTIONS(7134), - [anon_sym_EQ_GT] = ACTIONS(7132), - [anon_sym_switch] = ACTIONS(7132), - [anon_sym_when] = ACTIONS(7132), - [anon_sym_DOT_DOT] = ACTIONS(7132), - [anon_sym_and] = ACTIONS(7132), - [anon_sym_or] = ACTIONS(7132), - [anon_sym_AMP_AMP] = ACTIONS(7132), - [anon_sym_PIPE_PIPE] = ACTIONS(7132), - [sym_op_coalescing] = ACTIONS(7132), - [anon_sym_on] = ACTIONS(7132), - [anon_sym_equals] = ACTIONS(7132), - [anon_sym_by] = ACTIONS(7132), - [anon_sym_as] = ACTIONS(7132), - [anon_sym_is] = ACTIONS(7132), - [anon_sym_DASH_GT] = ACTIONS(7132), - [anon_sym_with] = ACTIONS(7132), - [aux_sym_preproc_if_token3] = ACTIONS(7132), - [aux_sym_preproc_else_token1] = ACTIONS(7132), - [aux_sym_preproc_elif_token1] = ACTIONS(7132), + [anon_sym_SEMI] = ACTIONS(7786), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -639595,6 +631140,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5010] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(5010), [sym_preproc_endregion] = STATE(5010), [sym_preproc_line] = STATE(5010), @@ -639604,56 +631164,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5010), [sym_preproc_define] = STATE(5010), [sym_preproc_undef] = STATE(5010), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COLON] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_SLASH] = ACTIONS(3991), - [anon_sym_PERCENT] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_LT] = ACTIONS(3991), - [anon_sym_GT_GT] = ACTIONS(3991), - [anon_sym_GT_GT_GT] = ACTIONS(3991), - [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(3991), - [anon_sym_switch] = ACTIONS(4006), - [anon_sym_when] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4006), - [anon_sym_DASH_EQ] = ACTIONS(4006), - [anon_sym_STAR_EQ] = ACTIONS(4006), - [anon_sym_SLASH_EQ] = ACTIONS(4006), - [anon_sym_PERCENT_EQ] = ACTIONS(4006), - [anon_sym_AMP_EQ] = ACTIONS(4006), - [anon_sym_CARET_EQ] = ACTIONS(4006), - [anon_sym_PIPE_EQ] = ACTIONS(4006), - [anon_sym_LT_LT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4006), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_as] = ACTIONS(4006), - [anon_sym_is] = ACTIONS(4006), - [anon_sym_DASH_GT] = ACTIONS(4006), - [anon_sym_with] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7788), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -639675,56 +631219,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5011), [sym_preproc_define] = STATE(5011), [sym_preproc_undef] = STATE(5011), - [anon_sym_SEMI] = ACTIONS(6098), - [anon_sym_LBRACK] = ACTIONS(6098), - [anon_sym_COLON] = ACTIONS(6098), - [anon_sym_COMMA] = ACTIONS(6098), - [anon_sym_RBRACK] = ACTIONS(6098), - [anon_sym_LPAREN] = ACTIONS(6098), - [anon_sym_RPAREN] = ACTIONS(6098), - [anon_sym_RBRACE] = ACTIONS(6098), - [anon_sym_LT] = ACTIONS(6100), - [anon_sym_GT] = ACTIONS(6100), - [anon_sym_in] = ACTIONS(6098), - [anon_sym_QMARK] = ACTIONS(6100), - [anon_sym_BANG] = ACTIONS(6100), - [anon_sym_PLUS_PLUS] = ACTIONS(6098), - [anon_sym_DASH_DASH] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(6098), - [anon_sym_SLASH] = ACTIONS(6100), - [anon_sym_PERCENT] = ACTIONS(6098), - [anon_sym_CARET] = ACTIONS(6098), - [anon_sym_PIPE] = ACTIONS(6100), - [anon_sym_AMP] = ACTIONS(6100), - [anon_sym_LT_LT] = ACTIONS(6098), - [anon_sym_GT_GT] = ACTIONS(6100), - [anon_sym_GT_GT_GT] = ACTIONS(6098), - [anon_sym_EQ_EQ] = ACTIONS(6098), - [anon_sym_BANG_EQ] = ACTIONS(6098), - [anon_sym_GT_EQ] = ACTIONS(6098), - [anon_sym_LT_EQ] = ACTIONS(6098), - [anon_sym_DOT] = ACTIONS(6100), - [anon_sym_EQ_GT] = ACTIONS(6098), - [anon_sym_switch] = ACTIONS(6098), - [anon_sym_when] = ACTIONS(6098), - [anon_sym_DOT_DOT] = ACTIONS(6098), - [anon_sym_and] = ACTIONS(6098), - [anon_sym_or] = ACTIONS(6098), - [anon_sym_AMP_AMP] = ACTIONS(6098), - [anon_sym_PIPE_PIPE] = ACTIONS(6098), - [sym_op_coalescing] = ACTIONS(6098), - [anon_sym_on] = ACTIONS(6098), - [anon_sym_equals] = ACTIONS(6098), - [anon_sym_by] = ACTIONS(6098), - [anon_sym_as] = ACTIONS(6098), - [anon_sym_is] = ACTIONS(6098), - [anon_sym_DASH_GT] = ACTIONS(6098), - [anon_sym_with] = ACTIONS(6098), - [aux_sym_preproc_if_token3] = ACTIONS(6098), - [aux_sym_preproc_else_token1] = ACTIONS(6098), - [aux_sym_preproc_elif_token1] = ACTIONS(6098), + [anon_sym_EQ] = ACTIONS(7790), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_EQ_GT] = ACTIONS(5508), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7792), + [anon_sym_DASH_EQ] = ACTIONS(7792), + [anon_sym_STAR_EQ] = ACTIONS(7792), + [anon_sym_SLASH_EQ] = ACTIONS(7792), + [anon_sym_PERCENT_EQ] = ACTIONS(7792), + [anon_sym_AMP_EQ] = ACTIONS(7792), + [anon_sym_CARET_EQ] = ACTIONS(7792), + [anon_sym_PIPE_EQ] = ACTIONS(7792), + [anon_sym_LT_LT_EQ] = ACTIONS(7792), + [anon_sym_GT_GT_EQ] = ACTIONS(7792), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7792), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7792), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -639737,6 +631280,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5012] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5012), [sym_preproc_endregion] = STATE(5012), [sym_preproc_line] = STATE(5012), @@ -639746,56 +631304,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5012), [sym_preproc_define] = STATE(5012), [sym_preproc_undef] = STATE(5012), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_COLON] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_RBRACK] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_RPAREN] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3205), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3205), - [anon_sym_EQ_EQ] = ACTIONS(3205), - [anon_sym_BANG_EQ] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3205), - [anon_sym_LT_EQ] = ACTIONS(3205), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_EQ_GT] = ACTIONS(3205), - [anon_sym_switch] = ACTIONS(3205), - [anon_sym_when] = ACTIONS(3205), - [anon_sym_DOT_DOT] = ACTIONS(3205), - [anon_sym_and] = ACTIONS(3205), - [anon_sym_or] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [sym_op_coalescing] = ACTIONS(3205), - [anon_sym_on] = ACTIONS(3205), - [anon_sym_equals] = ACTIONS(3205), - [anon_sym_by] = ACTIONS(3205), - [anon_sym_as] = ACTIONS(3205), - [anon_sym_is] = ACTIONS(3205), - [anon_sym_DASH_GT] = ACTIONS(3205), - [anon_sym_with] = ACTIONS(3205), - [aux_sym_preproc_if_token3] = ACTIONS(3205), - [aux_sym_preproc_else_token1] = ACTIONS(3205), - [aux_sym_preproc_elif_token1] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5362), + [anon_sym_GT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5360), + [anon_sym_GT_EQ] = ACTIONS(5360), + [anon_sym_EQ_EQ] = ACTIONS(5360), + [anon_sym_BANG_EQ] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5360), + [anon_sym_PIPE_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5362), + [sym_op_bitwise_or] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5360), + [sym_op_left_shift] = ACTIONS(5360), + [sym_op_right_shift] = ACTIONS(5362), + [sym_op_unsigned_right_shift] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym_op_divide] = ACTIONS(5362), + [sym_op_modulo] = ACTIONS(5360), + [sym_op_coalescing] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5360), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5360), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5360), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -639808,6 +631350,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5013] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5013), [sym_preproc_endregion] = STATE(5013), [sym_preproc_line] = STATE(5013), @@ -639817,56 +631374,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5013), [sym_preproc_define] = STATE(5013), [sym_preproc_undef] = STATE(5013), - [sym__identifier_token] = ACTIONS(5602), - [anon_sym_extern] = ACTIONS(5602), - [anon_sym_alias] = ACTIONS(5602), - [anon_sym_global] = ACTIONS(5602), - [anon_sym_unsafe] = ACTIONS(5602), - [anon_sym_static] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(5604), - [anon_sym_public] = ACTIONS(5602), - [anon_sym_private] = ACTIONS(5602), - [anon_sym_readonly] = ACTIONS(5602), - [anon_sym_abstract] = ACTIONS(5602), - [anon_sym_async] = ACTIONS(5602), - [anon_sym_const] = ACTIONS(5602), - [anon_sym_file] = ACTIONS(5602), - [anon_sym_fixed] = ACTIONS(5602), - [anon_sym_internal] = ACTIONS(5602), - [anon_sym_new] = ACTIONS(5602), - [anon_sym_override] = ACTIONS(5602), - [anon_sym_partial] = ACTIONS(5602), - [anon_sym_protected] = ACTIONS(5602), - [anon_sym_required] = ACTIONS(5602), - [anon_sym_sealed] = ACTIONS(5602), - [anon_sym_virtual] = ACTIONS(5602), - [anon_sym_volatile] = ACTIONS(5602), - [anon_sym_where] = ACTIONS(5602), - [anon_sym_notnull] = ACTIONS(5602), - [anon_sym_unmanaged] = ACTIONS(5602), - [sym_accessor_get] = ACTIONS(5602), - [sym_accessor_set] = ACTIONS(5602), - [sym_accessor_add] = ACTIONS(5602), - [sym_accessor_remove] = ACTIONS(5602), - [sym_accessor_init] = ACTIONS(5602), - [anon_sym_scoped] = ACTIONS(5602), - [anon_sym_var] = ACTIONS(5602), - [anon_sym_yield] = ACTIONS(5602), - [anon_sym_when] = ACTIONS(5602), - [anon_sym_from] = ACTIONS(5602), - [anon_sym_into] = ACTIONS(5602), - [anon_sym_join] = ACTIONS(5602), - [anon_sym_on] = ACTIONS(5602), - [anon_sym_equals] = ACTIONS(5602), - [anon_sym_let] = ACTIONS(5602), - [anon_sym_orderby] = ACTIONS(5602), - [anon_sym_ascending] = ACTIONS(5602), - [anon_sym_descending] = ACTIONS(5602), - [anon_sym_group] = ACTIONS(5602), - [anon_sym_by] = ACTIONS(5602), - [anon_sym_select] = ACTIONS(5602), - [sym_grit_metavariable] = ACTIONS(5604), - [aux_sym_preproc_if_token1] = ACTIONS(5604), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -639879,6 +631420,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5014] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5014), [sym_preproc_endregion] = STATE(5014), [sym_preproc_line] = STATE(5014), @@ -639888,56 +631444,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5014), [sym_preproc_define] = STATE(5014), [sym_preproc_undef] = STATE(5014), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_COLON] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_RPAREN] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3201), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_GT_EQ] = ACTIONS(3201), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_when] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_op_coalescing] = ACTIONS(3201), - [anon_sym_on] = ACTIONS(3201), - [anon_sym_equals] = ACTIONS(3201), - [anon_sym_by] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3201), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_with] = ACTIONS(3201), - [aux_sym_preproc_if_token3] = ACTIONS(3201), - [aux_sym_preproc_else_token1] = ACTIONS(3201), - [aux_sym_preproc_elif_token1] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -639950,6 +631490,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5015] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(5015), [sym_preproc_endregion] = STATE(5015), [sym_preproc_line] = STATE(5015), @@ -639959,56 +631514,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5015), [sym_preproc_define] = STATE(5015), [sym_preproc_undef] = STATE(5015), - [sym__identifier_token] = ACTIONS(5594), - [anon_sym_extern] = ACTIONS(5594), - [anon_sym_alias] = ACTIONS(5594), - [anon_sym_global] = ACTIONS(5594), - [anon_sym_unsafe] = ACTIONS(5594), - [anon_sym_static] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(5596), - [anon_sym_public] = ACTIONS(5594), - [anon_sym_private] = ACTIONS(5594), - [anon_sym_readonly] = ACTIONS(5594), - [anon_sym_abstract] = ACTIONS(5594), - [anon_sym_async] = ACTIONS(5594), - [anon_sym_const] = ACTIONS(5594), - [anon_sym_file] = ACTIONS(5594), - [anon_sym_fixed] = ACTIONS(5594), - [anon_sym_internal] = ACTIONS(5594), - [anon_sym_new] = ACTIONS(5594), - [anon_sym_override] = ACTIONS(5594), - [anon_sym_partial] = ACTIONS(5594), - [anon_sym_protected] = ACTIONS(5594), - [anon_sym_required] = ACTIONS(5594), - [anon_sym_sealed] = ACTIONS(5594), - [anon_sym_virtual] = ACTIONS(5594), - [anon_sym_volatile] = ACTIONS(5594), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_notnull] = ACTIONS(5594), - [anon_sym_unmanaged] = ACTIONS(5594), - [sym_accessor_get] = ACTIONS(5594), - [sym_accessor_set] = ACTIONS(5594), - [sym_accessor_add] = ACTIONS(5594), - [sym_accessor_remove] = ACTIONS(5594), - [sym_accessor_init] = ACTIONS(5594), - [anon_sym_scoped] = ACTIONS(5594), - [anon_sym_var] = ACTIONS(5594), - [anon_sym_yield] = ACTIONS(5594), - [anon_sym_when] = ACTIONS(5594), - [anon_sym_from] = ACTIONS(5594), - [anon_sym_into] = ACTIONS(5594), - [anon_sym_join] = ACTIONS(5594), - [anon_sym_on] = ACTIONS(5594), - [anon_sym_equals] = ACTIONS(5594), - [anon_sym_let] = ACTIONS(5594), - [anon_sym_orderby] = ACTIONS(5594), - [anon_sym_ascending] = ACTIONS(5594), - [anon_sym_descending] = ACTIONS(5594), - [anon_sym_group] = ACTIONS(5594), - [anon_sym_by] = ACTIONS(5594), - [anon_sym_select] = ACTIONS(5594), - [sym_grit_metavariable] = ACTIONS(5596), - [aux_sym_preproc_if_token1] = ACTIONS(5596), + [anon_sym_SEMI] = ACTIONS(7794), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -640021,6 +631560,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5016] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(5016), [sym_preproc_endregion] = STATE(5016), [sym_preproc_line] = STATE(5016), @@ -640030,56 +631584,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5016), [sym_preproc_define] = STATE(5016), [sym_preproc_undef] = STATE(5016), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_RBRACK] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_RPAREN] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_in] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3373), - [anon_sym_CARET] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3373), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3373), - [anon_sym_EQ_EQ] = ACTIONS(3373), - [anon_sym_BANG_EQ] = ACTIONS(3373), - [anon_sym_GT_EQ] = ACTIONS(3373), - [anon_sym_LT_EQ] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_EQ_GT] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_when] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3373), - [anon_sym_and] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_PIPE_PIPE] = ACTIONS(3373), - [sym_op_coalescing] = ACTIONS(3373), - [anon_sym_on] = ACTIONS(3373), - [anon_sym_equals] = ACTIONS(3373), - [anon_sym_by] = ACTIONS(3373), - [anon_sym_as] = ACTIONS(3373), - [anon_sym_is] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [aux_sym_preproc_if_token3] = ACTIONS(3373), - [aux_sym_preproc_else_token1] = ACTIONS(3373), - [aux_sym_preproc_elif_token1] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7796), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -640092,6 +631630,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5017] = { + [sym_argument_list] = STATE(3125), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(4715), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3130), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5017), [sym_preproc_endregion] = STATE(5017), [sym_preproc_line] = STATE(5017), @@ -640101,56 +631658,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5017), [sym_preproc_define] = STATE(5017), [sym_preproc_undef] = STATE(5017), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LBRACK] = ACTIONS(4810), - [anon_sym_COLON] = ACTIONS(4810), - [anon_sym_COMMA] = ACTIONS(4810), - [anon_sym_RBRACK] = ACTIONS(4810), - [anon_sym_LPAREN] = ACTIONS(4810), - [anon_sym_RPAREN] = ACTIONS(4810), - [anon_sym_RBRACE] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4812), - [anon_sym_GT] = ACTIONS(4812), - [anon_sym_in] = ACTIONS(4810), - [anon_sym_QMARK] = ACTIONS(4812), - [anon_sym_BANG] = ACTIONS(4812), - [anon_sym_PLUS_PLUS] = ACTIONS(4810), - [anon_sym_DASH_DASH] = ACTIONS(4810), - [anon_sym_PLUS] = ACTIONS(4812), - [anon_sym_DASH] = ACTIONS(4812), - [anon_sym_STAR] = ACTIONS(4810), - [anon_sym_SLASH] = ACTIONS(4812), - [anon_sym_PERCENT] = ACTIONS(4810), - [anon_sym_CARET] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4812), - [anon_sym_AMP] = ACTIONS(4812), - [anon_sym_LT_LT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4812), - [anon_sym_GT_GT_GT] = ACTIONS(4810), - [anon_sym_EQ_EQ] = ACTIONS(4810), - [anon_sym_BANG_EQ] = ACTIONS(4810), - [anon_sym_GT_EQ] = ACTIONS(4810), - [anon_sym_LT_EQ] = ACTIONS(4810), - [anon_sym_DOT] = ACTIONS(4812), - [anon_sym_EQ_GT] = ACTIONS(4810), - [anon_sym_switch] = ACTIONS(4810), - [anon_sym_when] = ACTIONS(4810), - [anon_sym_DOT_DOT] = ACTIONS(4810), - [anon_sym_and] = ACTIONS(4810), - [anon_sym_or] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym_op_coalescing] = ACTIONS(4810), - [anon_sym_on] = ACTIONS(4810), - [anon_sym_equals] = ACTIONS(4810), - [anon_sym_by] = ACTIONS(4810), - [anon_sym_as] = ACTIONS(4810), - [anon_sym_is] = ACTIONS(4810), - [anon_sym_DASH_GT] = ACTIONS(4810), - [anon_sym_with] = ACTIONS(4810), - [aux_sym_preproc_if_token3] = ACTIONS(4810), - [aux_sym_preproc_else_token1] = ACTIONS(4810), - [aux_sym_preproc_elif_token1] = ACTIONS(4810), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_ref] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4385), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -640172,56 +631709,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5018), [sym_preproc_define] = STATE(5018), [sym_preproc_undef] = STATE(5018), - [anon_sym_SEMI] = ACTIONS(6184), - [anon_sym_LBRACK] = ACTIONS(6184), - [anon_sym_COLON] = ACTIONS(6184), - [anon_sym_COMMA] = ACTIONS(6184), - [anon_sym_RBRACK] = ACTIONS(6184), - [anon_sym_LPAREN] = ACTIONS(6184), - [anon_sym_RPAREN] = ACTIONS(6184), - [anon_sym_RBRACE] = ACTIONS(6184), - [anon_sym_LT] = ACTIONS(6186), - [anon_sym_GT] = ACTIONS(6186), - [anon_sym_in] = ACTIONS(6184), - [anon_sym_QMARK] = ACTIONS(6186), - [anon_sym_BANG] = ACTIONS(6186), - [anon_sym_PLUS_PLUS] = ACTIONS(6184), - [anon_sym_DASH_DASH] = ACTIONS(6184), - [anon_sym_PLUS] = ACTIONS(6186), - [anon_sym_DASH] = ACTIONS(6186), - [anon_sym_STAR] = ACTIONS(6184), - [anon_sym_SLASH] = ACTIONS(6186), - [anon_sym_PERCENT] = ACTIONS(6184), - [anon_sym_CARET] = ACTIONS(6184), - [anon_sym_PIPE] = ACTIONS(6186), - [anon_sym_AMP] = ACTIONS(6186), - [anon_sym_LT_LT] = ACTIONS(6184), - [anon_sym_GT_GT] = ACTIONS(6186), - [anon_sym_GT_GT_GT] = ACTIONS(6184), - [anon_sym_EQ_EQ] = ACTIONS(6184), - [anon_sym_BANG_EQ] = ACTIONS(6184), - [anon_sym_GT_EQ] = ACTIONS(6184), - [anon_sym_LT_EQ] = ACTIONS(6184), - [anon_sym_DOT] = ACTIONS(6186), - [anon_sym_EQ_GT] = ACTIONS(6184), - [anon_sym_switch] = ACTIONS(6184), - [anon_sym_when] = ACTIONS(6184), - [anon_sym_DOT_DOT] = ACTIONS(6184), - [anon_sym_and] = ACTIONS(6184), - [anon_sym_or] = ACTIONS(6184), - [anon_sym_AMP_AMP] = ACTIONS(6184), - [anon_sym_PIPE_PIPE] = ACTIONS(6184), - [sym_op_coalescing] = ACTIONS(6184), - [anon_sym_on] = ACTIONS(6184), - [anon_sym_equals] = ACTIONS(6184), - [anon_sym_by] = ACTIONS(6184), - [anon_sym_as] = ACTIONS(6184), - [anon_sym_is] = ACTIONS(6184), - [anon_sym_DASH_GT] = ACTIONS(6184), - [anon_sym_with] = ACTIONS(6184), - [aux_sym_preproc_if_token3] = ACTIONS(6184), - [aux_sym_preproc_else_token1] = ACTIONS(6184), - [aux_sym_preproc_elif_token1] = ACTIONS(6184), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(5700), + [anon_sym_DOT] = ACTIONS(7798), + [anon_sym_EQ_GT] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4329), + [sym_op_bitwise_or] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [sym_op_left_shift] = ACTIONS(4331), + [sym_op_right_shift] = ACTIONS(4329), + [sym_op_unsigned_right_shift] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym_op_divide] = ACTIONS(4329), + [sym_op_modulo] = ACTIONS(4331), + [sym_op_coalescing] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_into] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [anon_sym_with] = ACTIONS(4331), + [aux_sym_preproc_if_token3] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -640234,24 +631770,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5019] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(5019), [sym_preproc_endregion] = STATE(5019), [sym_preproc_line] = STATE(5019), @@ -640261,38 +631794,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5019), [sym_preproc_define] = STATE(5019), [sym_preproc_undef] = STATE(5019), - [sym__identifier_token] = ACTIONS(2919), - [anon_sym_alias] = ACTIONS(2919), - [anon_sym_global] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2969), - [anon_sym_ref] = ACTIONS(2919), - [anon_sym_delegate] = ACTIONS(2919), - [anon_sym_readonly] = ACTIONS(2919), - [anon_sym_file] = ACTIONS(2919), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_out] = ACTIONS(2919), - [anon_sym_where] = ACTIONS(2919), - [anon_sym_notnull] = ACTIONS(2919), - [anon_sym_unmanaged] = ACTIONS(2919), - [anon_sym_this] = ACTIONS(2919), - [anon_sym_scoped] = ACTIONS(2919), - [anon_sym_var] = ACTIONS(2919), - [sym_predefined_type] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2919), - [anon_sym_when] = ACTIONS(2919), - [anon_sym_from] = ACTIONS(2919), - [anon_sym_into] = ACTIONS(2919), - [anon_sym_join] = ACTIONS(2919), - [anon_sym_on] = ACTIONS(2919), - [anon_sym_equals] = ACTIONS(2919), - [anon_sym_let] = ACTIONS(2919), - [anon_sym_orderby] = ACTIONS(2919), - [anon_sym_ascending] = ACTIONS(2919), - [anon_sym_descending] = ACTIONS(2919), - [anon_sym_group] = ACTIONS(2919), - [anon_sym_by] = ACTIONS(2919), - [anon_sym_select] = ACTIONS(2919), - [sym_grit_metavariable] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7800), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -640305,26 +631840,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5020] = { - [sym_parameter_list] = STATE(7603), - [sym_block] = STATE(4104), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6379), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(5020), [sym_preproc_endregion] = STATE(5020), [sym_preproc_line] = STATE(5020), @@ -640334,36 +631864,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5020), [sym_preproc_define] = STATE(5020), [sym_preproc_undef] = STATE(5020), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(4101), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(7200), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(7202), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7802), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -640376,6 +631910,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5021] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(5021), [sym_preproc_endregion] = STATE(5021), [sym_preproc_line] = STATE(5021), @@ -640385,56 +631934,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5021), [sym_preproc_define] = STATE(5021), [sym_preproc_undef] = STATE(5021), - [anon_sym_SEMI] = ACTIONS(5995), - [anon_sym_LBRACK] = ACTIONS(5995), - [anon_sym_COLON] = ACTIONS(5995), - [anon_sym_COMMA] = ACTIONS(5995), - [anon_sym_RBRACK] = ACTIONS(5995), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_RBRACE] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_in] = ACTIONS(5995), - [anon_sym_QMARK] = ACTIONS(5997), - [anon_sym_BANG] = ACTIONS(5997), - [anon_sym_PLUS_PLUS] = ACTIONS(5995), - [anon_sym_DASH_DASH] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(5997), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5997), - [anon_sym_PERCENT] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), - [anon_sym_LT_LT] = ACTIONS(5995), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_GT_GT_GT] = ACTIONS(5995), - [anon_sym_EQ_EQ] = ACTIONS(5995), - [anon_sym_BANG_EQ] = ACTIONS(5995), - [anon_sym_GT_EQ] = ACTIONS(5995), - [anon_sym_LT_EQ] = ACTIONS(5995), - [anon_sym_DOT] = ACTIONS(5997), - [anon_sym_EQ_GT] = ACTIONS(5995), - [anon_sym_switch] = ACTIONS(5995), - [anon_sym_when] = ACTIONS(5995), - [anon_sym_DOT_DOT] = ACTIONS(5995), - [anon_sym_and] = ACTIONS(5995), - [anon_sym_or] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5995), - [sym_op_coalescing] = ACTIONS(5995), - [anon_sym_on] = ACTIONS(5995), - [anon_sym_equals] = ACTIONS(5995), - [anon_sym_by] = ACTIONS(5995), - [anon_sym_as] = ACTIONS(5995), - [anon_sym_is] = ACTIONS(5995), - [anon_sym_DASH_GT] = ACTIONS(5995), - [anon_sym_with] = ACTIONS(5995), - [aux_sym_preproc_if_token3] = ACTIONS(5995), - [aux_sym_preproc_else_token1] = ACTIONS(5995), - [aux_sym_preproc_elif_token1] = ACTIONS(5995), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7804), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -640447,6 +631980,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5022] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(5022), [sym_preproc_endregion] = STATE(5022), [sym_preproc_line] = STATE(5022), @@ -640456,56 +632004,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5022), [sym_preproc_define] = STATE(5022), [sym_preproc_undef] = STATE(5022), - [anon_sym_SEMI] = ACTIONS(6313), - [anon_sym_LBRACK] = ACTIONS(6313), - [anon_sym_COLON] = ACTIONS(6313), - [anon_sym_COMMA] = ACTIONS(6313), - [anon_sym_RBRACK] = ACTIONS(6313), - [anon_sym_LPAREN] = ACTIONS(6313), - [anon_sym_RPAREN] = ACTIONS(6313), - [anon_sym_RBRACE] = ACTIONS(6313), - [anon_sym_LT] = ACTIONS(6315), - [anon_sym_GT] = ACTIONS(6315), - [anon_sym_in] = ACTIONS(6313), - [anon_sym_QMARK] = ACTIONS(6315), - [anon_sym_BANG] = ACTIONS(6315), - [anon_sym_PLUS_PLUS] = ACTIONS(6313), - [anon_sym_DASH_DASH] = ACTIONS(6313), - [anon_sym_PLUS] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6315), - [anon_sym_STAR] = ACTIONS(6313), - [anon_sym_SLASH] = ACTIONS(6315), - [anon_sym_PERCENT] = ACTIONS(6313), - [anon_sym_CARET] = ACTIONS(6313), - [anon_sym_PIPE] = ACTIONS(6315), - [anon_sym_AMP] = ACTIONS(6315), - [anon_sym_LT_LT] = ACTIONS(6313), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6313), - [anon_sym_EQ_EQ] = ACTIONS(6313), - [anon_sym_BANG_EQ] = ACTIONS(6313), - [anon_sym_GT_EQ] = ACTIONS(6313), - [anon_sym_LT_EQ] = ACTIONS(6313), - [anon_sym_DOT] = ACTIONS(6315), - [anon_sym_EQ_GT] = ACTIONS(6313), - [anon_sym_switch] = ACTIONS(6313), - [anon_sym_when] = ACTIONS(6313), - [anon_sym_DOT_DOT] = ACTIONS(6313), - [anon_sym_and] = ACTIONS(6313), - [anon_sym_or] = ACTIONS(6313), - [anon_sym_AMP_AMP] = ACTIONS(6313), - [anon_sym_PIPE_PIPE] = ACTIONS(6313), - [sym_op_coalescing] = ACTIONS(6313), - [anon_sym_on] = ACTIONS(6313), - [anon_sym_equals] = ACTIONS(6313), - [anon_sym_by] = ACTIONS(6313), - [anon_sym_as] = ACTIONS(6313), - [anon_sym_is] = ACTIONS(6313), - [anon_sym_DASH_GT] = ACTIONS(6313), - [anon_sym_with] = ACTIONS(6313), - [aux_sym_preproc_if_token3] = ACTIONS(6313), - [aux_sym_preproc_else_token1] = ACTIONS(6313), - [aux_sym_preproc_elif_token1] = ACTIONS(6313), + [anon_sym_SEMI] = ACTIONS(7806), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -640527,56 +632059,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5023), [sym_preproc_define] = STATE(5023), [sym_preproc_undef] = STATE(5023), - [anon_sym_SEMI] = ACTIONS(6293), - [anon_sym_LBRACK] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6293), - [anon_sym_COMMA] = ACTIONS(6293), - [anon_sym_RBRACK] = ACTIONS(6293), - [anon_sym_LPAREN] = ACTIONS(6293), - [anon_sym_RPAREN] = ACTIONS(6293), - [anon_sym_RBRACE] = ACTIONS(6293), - [anon_sym_LT] = ACTIONS(6295), - [anon_sym_GT] = ACTIONS(6295), - [anon_sym_in] = ACTIONS(6293), - [anon_sym_QMARK] = ACTIONS(6295), - [anon_sym_BANG] = ACTIONS(6295), - [anon_sym_PLUS_PLUS] = ACTIONS(6293), - [anon_sym_DASH_DASH] = ACTIONS(6293), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6293), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_PERCENT] = ACTIONS(6293), - [anon_sym_CARET] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6295), - [anon_sym_AMP] = ACTIONS(6295), - [anon_sym_LT_LT] = ACTIONS(6293), - [anon_sym_GT_GT] = ACTIONS(6295), - [anon_sym_GT_GT_GT] = ACTIONS(6293), - [anon_sym_EQ_EQ] = ACTIONS(6293), - [anon_sym_BANG_EQ] = ACTIONS(6293), - [anon_sym_GT_EQ] = ACTIONS(6293), - [anon_sym_LT_EQ] = ACTIONS(6293), - [anon_sym_DOT] = ACTIONS(6295), - [anon_sym_EQ_GT] = ACTIONS(6293), - [anon_sym_switch] = ACTIONS(6293), - [anon_sym_when] = ACTIONS(6293), - [anon_sym_DOT_DOT] = ACTIONS(6293), - [anon_sym_and] = ACTIONS(6293), - [anon_sym_or] = ACTIONS(6293), - [anon_sym_AMP_AMP] = ACTIONS(6293), - [anon_sym_PIPE_PIPE] = ACTIONS(6293), - [sym_op_coalescing] = ACTIONS(6293), - [anon_sym_on] = ACTIONS(6293), - [anon_sym_equals] = ACTIONS(6293), - [anon_sym_by] = ACTIONS(6293), - [anon_sym_as] = ACTIONS(6293), - [anon_sym_is] = ACTIONS(6293), - [anon_sym_DASH_GT] = ACTIONS(6293), - [anon_sym_with] = ACTIONS(6293), - [aux_sym_preproc_if_token3] = ACTIONS(6293), - [aux_sym_preproc_else_token1] = ACTIONS(6293), - [aux_sym_preproc_elif_token1] = ACTIONS(6293), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_QMARK] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(7798), + [anon_sym_EQ_GT] = ACTIONS(4361), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_switch] = ACTIONS(4361), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4359), + [sym_op_bitwise_or] = ACTIONS(4359), + [anon_sym_CARET] = ACTIONS(4361), + [sym_op_left_shift] = ACTIONS(4361), + [sym_op_right_shift] = ACTIONS(4359), + [sym_op_unsigned_right_shift] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [sym_op_divide] = ACTIONS(4359), + [sym_op_modulo] = ACTIONS(4361), + [sym_op_coalescing] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_into] = ACTIONS(4361), + [anon_sym_on] = ACTIONS(4361), + [anon_sym_equals] = ACTIONS(4361), + [anon_sym_by] = ACTIONS(4361), + [anon_sym_as] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4361), + [anon_sym_DASH_GT] = ACTIONS(4361), + [anon_sym_with] = ACTIONS(4361), + [aux_sym_preproc_if_token3] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -640589,6 +632120,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5024] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(5024), [sym_preproc_endregion] = STATE(5024), [sym_preproc_line] = STATE(5024), @@ -640598,56 +632144,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5024), [sym_preproc_define] = STATE(5024), [sym_preproc_undef] = STATE(5024), - [anon_sym_SEMI] = ACTIONS(6281), - [anon_sym_LBRACK] = ACTIONS(6281), - [anon_sym_COLON] = ACTIONS(6281), - [anon_sym_COMMA] = ACTIONS(6281), - [anon_sym_RBRACK] = ACTIONS(6281), - [anon_sym_LPAREN] = ACTIONS(6281), - [anon_sym_RPAREN] = ACTIONS(6281), - [anon_sym_RBRACE] = ACTIONS(6281), - [anon_sym_LT] = ACTIONS(6283), - [anon_sym_GT] = ACTIONS(6283), - [anon_sym_in] = ACTIONS(6281), - [anon_sym_QMARK] = ACTIONS(6283), - [anon_sym_BANG] = ACTIONS(6283), - [anon_sym_PLUS_PLUS] = ACTIONS(6281), - [anon_sym_DASH_DASH] = ACTIONS(6281), - [anon_sym_PLUS] = ACTIONS(6283), - [anon_sym_DASH] = ACTIONS(6283), - [anon_sym_STAR] = ACTIONS(6281), - [anon_sym_SLASH] = ACTIONS(6283), - [anon_sym_PERCENT] = ACTIONS(6281), - [anon_sym_CARET] = ACTIONS(6281), - [anon_sym_PIPE] = ACTIONS(6283), - [anon_sym_AMP] = ACTIONS(6283), - [anon_sym_LT_LT] = ACTIONS(6281), - [anon_sym_GT_GT] = ACTIONS(6283), - [anon_sym_GT_GT_GT] = ACTIONS(6281), - [anon_sym_EQ_EQ] = ACTIONS(6281), - [anon_sym_BANG_EQ] = ACTIONS(6281), - [anon_sym_GT_EQ] = ACTIONS(6281), - [anon_sym_LT_EQ] = ACTIONS(6281), - [anon_sym_DOT] = ACTIONS(6283), - [anon_sym_EQ_GT] = ACTIONS(6281), - [anon_sym_switch] = ACTIONS(6281), - [anon_sym_when] = ACTIONS(6281), - [anon_sym_DOT_DOT] = ACTIONS(6281), - [anon_sym_and] = ACTIONS(6281), - [anon_sym_or] = ACTIONS(6281), - [anon_sym_AMP_AMP] = ACTIONS(6281), - [anon_sym_PIPE_PIPE] = ACTIONS(6281), - [sym_op_coalescing] = ACTIONS(6281), - [anon_sym_on] = ACTIONS(6281), - [anon_sym_equals] = ACTIONS(6281), - [anon_sym_by] = ACTIONS(6281), - [anon_sym_as] = ACTIONS(6281), - [anon_sym_is] = ACTIONS(6281), - [anon_sym_DASH_GT] = ACTIONS(6281), - [anon_sym_with] = ACTIONS(6281), - [aux_sym_preproc_if_token3] = ACTIONS(6281), - [aux_sym_preproc_else_token1] = ACTIONS(6281), - [aux_sym_preproc_elif_token1] = ACTIONS(6281), + [anon_sym_SEMI] = ACTIONS(7808), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -640660,6 +632190,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5025] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5025), [sym_preproc_endregion] = STATE(5025), [sym_preproc_line] = STATE(5025), @@ -640669,56 +632214,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5025), [sym_preproc_define] = STATE(5025), [sym_preproc_undef] = STATE(5025), - [anon_sym_SEMI] = ACTIONS(6094), - [anon_sym_LBRACK] = ACTIONS(6094), - [anon_sym_COLON] = ACTIONS(6094), - [anon_sym_COMMA] = ACTIONS(6094), - [anon_sym_RBRACK] = ACTIONS(6094), - [anon_sym_LPAREN] = ACTIONS(6094), - [anon_sym_RPAREN] = ACTIONS(6094), - [anon_sym_RBRACE] = ACTIONS(6094), - [anon_sym_LT] = ACTIONS(6096), - [anon_sym_GT] = ACTIONS(6096), - [anon_sym_in] = ACTIONS(6094), - [anon_sym_QMARK] = ACTIONS(6096), - [anon_sym_BANG] = ACTIONS(6096), - [anon_sym_PLUS_PLUS] = ACTIONS(6094), - [anon_sym_DASH_DASH] = ACTIONS(6094), - [anon_sym_PLUS] = ACTIONS(6096), - [anon_sym_DASH] = ACTIONS(6096), - [anon_sym_STAR] = ACTIONS(6094), - [anon_sym_SLASH] = ACTIONS(6096), - [anon_sym_PERCENT] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6094), - [anon_sym_PIPE] = ACTIONS(6096), - [anon_sym_AMP] = ACTIONS(6096), - [anon_sym_LT_LT] = ACTIONS(6094), - [anon_sym_GT_GT] = ACTIONS(6096), - [anon_sym_GT_GT_GT] = ACTIONS(6094), - [anon_sym_EQ_EQ] = ACTIONS(6094), - [anon_sym_BANG_EQ] = ACTIONS(6094), - [anon_sym_GT_EQ] = ACTIONS(6094), - [anon_sym_LT_EQ] = ACTIONS(6094), - [anon_sym_DOT] = ACTIONS(6096), - [anon_sym_EQ_GT] = ACTIONS(6094), - [anon_sym_switch] = ACTIONS(6094), - [anon_sym_when] = ACTIONS(6094), - [anon_sym_DOT_DOT] = ACTIONS(6094), - [anon_sym_and] = ACTIONS(6094), - [anon_sym_or] = ACTIONS(6094), - [anon_sym_AMP_AMP] = ACTIONS(6094), - [anon_sym_PIPE_PIPE] = ACTIONS(6094), - [sym_op_coalescing] = ACTIONS(6094), - [anon_sym_on] = ACTIONS(6094), - [anon_sym_equals] = ACTIONS(6094), - [anon_sym_by] = ACTIONS(6094), - [anon_sym_as] = ACTIONS(6094), - [anon_sym_is] = ACTIONS(6094), - [anon_sym_DASH_GT] = ACTIONS(6094), - [anon_sym_with] = ACTIONS(6094), - [aux_sym_preproc_if_token3] = ACTIONS(6094), - [aux_sym_preproc_else_token1] = ACTIONS(6094), - [aux_sym_preproc_elif_token1] = ACTIONS(6094), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7810), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -640731,7 +632260,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5026] = { - [sym_modifier] = STATE(5152), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(5026), [sym_preproc_endregion] = STATE(5026), [sym_preproc_line] = STATE(5026), @@ -640741,55 +632284,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5026), [sym_preproc_define] = STATE(5026), [sym_preproc_undef] = STATE(5026), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5026), - [sym__identifier_token] = ACTIONS(6204), - [anon_sym_extern] = ACTIONS(7204), - [anon_sym_alias] = ACTIONS(6204), - [anon_sym_global] = ACTIONS(6204), - [anon_sym_unsafe] = ACTIONS(7204), - [anon_sym_static] = ACTIONS(7204), - [anon_sym_public] = ACTIONS(7204), - [anon_sym_private] = ACTIONS(7204), - [anon_sym_readonly] = ACTIONS(7204), - [anon_sym_abstract] = ACTIONS(7204), - [anon_sym_async] = ACTIONS(7204), - [anon_sym_const] = ACTIONS(7204), - [anon_sym_file] = ACTIONS(7204), - [anon_sym_fixed] = ACTIONS(7204), - [anon_sym_internal] = ACTIONS(7204), - [anon_sym_new] = ACTIONS(7204), - [anon_sym_override] = ACTIONS(7204), - [anon_sym_partial] = ACTIONS(7204), - [anon_sym_protected] = ACTIONS(7204), - [anon_sym_required] = ACTIONS(7204), - [anon_sym_sealed] = ACTIONS(7204), - [anon_sym_virtual] = ACTIONS(7204), - [anon_sym_volatile] = ACTIONS(7204), - [anon_sym_where] = ACTIONS(6204), - [anon_sym_notnull] = ACTIONS(6204), - [anon_sym_unmanaged] = ACTIONS(6204), - [sym_accessor_get] = ACTIONS(6204), - [sym_accessor_set] = ACTIONS(6204), - [sym_accessor_add] = ACTIONS(6204), - [sym_accessor_remove] = ACTIONS(6204), - [sym_accessor_init] = ACTIONS(6204), - [anon_sym_scoped] = ACTIONS(6204), - [anon_sym_var] = ACTIONS(6204), - [anon_sym_yield] = ACTIONS(6204), - [anon_sym_when] = ACTIONS(6204), - [anon_sym_from] = ACTIONS(6204), - [anon_sym_into] = ACTIONS(6204), - [anon_sym_join] = ACTIONS(6204), - [anon_sym_on] = ACTIONS(6204), - [anon_sym_equals] = ACTIONS(6204), - [anon_sym_let] = ACTIONS(6204), - [anon_sym_orderby] = ACTIONS(6204), - [anon_sym_ascending] = ACTIONS(6204), - [anon_sym_descending] = ACTIONS(6204), - [anon_sym_group] = ACTIONS(6204), - [anon_sym_by] = ACTIONS(6204), - [anon_sym_select] = ACTIONS(6204), - [sym_grit_metavariable] = ACTIONS(6209), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7812), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -640802,6 +632330,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5027] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(5027), [sym_preproc_endregion] = STATE(5027), [sym_preproc_line] = STATE(5027), @@ -640811,56 +632354,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5027), [sym_preproc_define] = STATE(5027), [sym_preproc_undef] = STATE(5027), - [anon_sym_SEMI] = ACTIONS(6025), - [anon_sym_LBRACK] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6025), - [anon_sym_COMMA] = ACTIONS(6025), - [anon_sym_RBRACK] = ACTIONS(6025), - [anon_sym_LPAREN] = ACTIONS(6025), - [anon_sym_RPAREN] = ACTIONS(6025), - [anon_sym_RBRACE] = ACTIONS(6025), - [anon_sym_LT] = ACTIONS(6027), - [anon_sym_GT] = ACTIONS(6027), - [anon_sym_in] = ACTIONS(6025), - [anon_sym_QMARK] = ACTIONS(6027), - [anon_sym_BANG] = ACTIONS(6027), - [anon_sym_PLUS_PLUS] = ACTIONS(6025), - [anon_sym_DASH_DASH] = ACTIONS(6025), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6025), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_PERCENT] = ACTIONS(6025), - [anon_sym_CARET] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), - [anon_sym_LT_LT] = ACTIONS(6025), - [anon_sym_GT_GT] = ACTIONS(6027), - [anon_sym_GT_GT_GT] = ACTIONS(6025), - [anon_sym_EQ_EQ] = ACTIONS(6025), - [anon_sym_BANG_EQ] = ACTIONS(6025), - [anon_sym_GT_EQ] = ACTIONS(6025), - [anon_sym_LT_EQ] = ACTIONS(6025), - [anon_sym_DOT] = ACTIONS(6027), - [anon_sym_EQ_GT] = ACTIONS(6025), - [anon_sym_switch] = ACTIONS(6025), - [anon_sym_when] = ACTIONS(6025), - [anon_sym_DOT_DOT] = ACTIONS(6025), - [anon_sym_and] = ACTIONS(6025), - [anon_sym_or] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [sym_op_coalescing] = ACTIONS(6025), - [anon_sym_on] = ACTIONS(6025), - [anon_sym_equals] = ACTIONS(6025), - [anon_sym_by] = ACTIONS(6025), - [anon_sym_as] = ACTIONS(6025), - [anon_sym_is] = ACTIONS(6025), - [anon_sym_DASH_GT] = ACTIONS(6025), - [anon_sym_with] = ACTIONS(6025), - [aux_sym_preproc_if_token3] = ACTIONS(6025), - [aux_sym_preproc_else_token1] = ACTIONS(6025), - [aux_sym_preproc_elif_token1] = ACTIONS(6025), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7814), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6595), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(6605), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -640873,6 +632400,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5028] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5028), [sym_preproc_endregion] = STATE(5028), [sym_preproc_line] = STATE(5028), @@ -640882,56 +632424,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5028), [sym_preproc_define] = STATE(5028), [sym_preproc_undef] = STATE(5028), - [anon_sym_SEMI] = ACTIONS(6174), - [anon_sym_LBRACK] = ACTIONS(6174), - [anon_sym_COLON] = ACTIONS(6174), - [anon_sym_COMMA] = ACTIONS(6174), - [anon_sym_RBRACK] = ACTIONS(6174), - [anon_sym_LPAREN] = ACTIONS(6174), - [anon_sym_RPAREN] = ACTIONS(6174), - [anon_sym_RBRACE] = ACTIONS(6174), - [anon_sym_LT] = ACTIONS(6176), - [anon_sym_GT] = ACTIONS(6176), - [anon_sym_in] = ACTIONS(6174), - [anon_sym_QMARK] = ACTIONS(6176), - [anon_sym_BANG] = ACTIONS(6176), - [anon_sym_PLUS_PLUS] = ACTIONS(6174), - [anon_sym_DASH_DASH] = ACTIONS(6174), - [anon_sym_PLUS] = ACTIONS(6176), - [anon_sym_DASH] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(6174), - [anon_sym_SLASH] = ACTIONS(6176), - [anon_sym_PERCENT] = ACTIONS(6174), - [anon_sym_CARET] = ACTIONS(6174), - [anon_sym_PIPE] = ACTIONS(6176), - [anon_sym_AMP] = ACTIONS(6176), - [anon_sym_LT_LT] = ACTIONS(6174), - [anon_sym_GT_GT] = ACTIONS(6176), - [anon_sym_GT_GT_GT] = ACTIONS(6174), - [anon_sym_EQ_EQ] = ACTIONS(6174), - [anon_sym_BANG_EQ] = ACTIONS(6174), - [anon_sym_GT_EQ] = ACTIONS(6174), - [anon_sym_LT_EQ] = ACTIONS(6174), - [anon_sym_DOT] = ACTIONS(6176), - [anon_sym_EQ_GT] = ACTIONS(6174), - [anon_sym_switch] = ACTIONS(6174), - [anon_sym_when] = ACTIONS(6174), - [anon_sym_DOT_DOT] = ACTIONS(6174), - [anon_sym_and] = ACTIONS(6174), - [anon_sym_or] = ACTIONS(6174), - [anon_sym_AMP_AMP] = ACTIONS(6174), - [anon_sym_PIPE_PIPE] = ACTIONS(6174), - [sym_op_coalescing] = ACTIONS(6174), - [anon_sym_on] = ACTIONS(6174), - [anon_sym_equals] = ACTIONS(6174), - [anon_sym_by] = ACTIONS(6174), - [anon_sym_as] = ACTIONS(6174), - [anon_sym_is] = ACTIONS(6174), - [anon_sym_DASH_GT] = ACTIONS(6174), - [anon_sym_with] = ACTIONS(6174), - [aux_sym_preproc_if_token3] = ACTIONS(6174), - [aux_sym_preproc_else_token1] = ACTIONS(6174), - [aux_sym_preproc_elif_token1] = ACTIONS(6174), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(5302), + [sym_op_modulo] = ACTIONS(5300), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -640944,6 +632470,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5029] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(5029), [sym_preproc_endregion] = STATE(5029), [sym_preproc_line] = STATE(5029), @@ -640953,56 +632494,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5029), [sym_preproc_define] = STATE(5029), [sym_preproc_undef] = STATE(5029), - [anon_sym_SEMI] = ACTIONS(6217), - [anon_sym_LBRACK] = ACTIONS(6217), - [anon_sym_COLON] = ACTIONS(6217), - [anon_sym_COMMA] = ACTIONS(6217), - [anon_sym_RBRACK] = ACTIONS(6217), - [anon_sym_LPAREN] = ACTIONS(6217), - [anon_sym_RPAREN] = ACTIONS(6217), - [anon_sym_RBRACE] = ACTIONS(6217), - [anon_sym_LT] = ACTIONS(6219), - [anon_sym_GT] = ACTIONS(6219), - [anon_sym_in] = ACTIONS(6217), - [anon_sym_QMARK] = ACTIONS(6219), - [anon_sym_BANG] = ACTIONS(6219), - [anon_sym_PLUS_PLUS] = ACTIONS(6217), - [anon_sym_DASH_DASH] = ACTIONS(6217), - [anon_sym_PLUS] = ACTIONS(6219), - [anon_sym_DASH] = ACTIONS(6219), - [anon_sym_STAR] = ACTIONS(6217), - [anon_sym_SLASH] = ACTIONS(6219), - [anon_sym_PERCENT] = ACTIONS(6217), - [anon_sym_CARET] = ACTIONS(6217), - [anon_sym_PIPE] = ACTIONS(6219), - [anon_sym_AMP] = ACTIONS(6219), - [anon_sym_LT_LT] = ACTIONS(6217), - [anon_sym_GT_GT] = ACTIONS(6219), - [anon_sym_GT_GT_GT] = ACTIONS(6217), - [anon_sym_EQ_EQ] = ACTIONS(6217), - [anon_sym_BANG_EQ] = ACTIONS(6217), - [anon_sym_GT_EQ] = ACTIONS(6217), - [anon_sym_LT_EQ] = ACTIONS(6217), - [anon_sym_DOT] = ACTIONS(6219), - [anon_sym_EQ_GT] = ACTIONS(6217), - [anon_sym_switch] = ACTIONS(6217), - [anon_sym_when] = ACTIONS(6217), - [anon_sym_DOT_DOT] = ACTIONS(6217), - [anon_sym_and] = ACTIONS(6217), - [anon_sym_or] = ACTIONS(6217), - [anon_sym_AMP_AMP] = ACTIONS(6217), - [anon_sym_PIPE_PIPE] = ACTIONS(6217), - [sym_op_coalescing] = ACTIONS(6217), - [anon_sym_on] = ACTIONS(6217), - [anon_sym_equals] = ACTIONS(6217), - [anon_sym_by] = ACTIONS(6217), - [anon_sym_as] = ACTIONS(6217), - [anon_sym_is] = ACTIONS(6217), - [anon_sym_DASH_GT] = ACTIONS(6217), - [anon_sym_with] = ACTIONS(6217), - [aux_sym_preproc_if_token3] = ACTIONS(6217), - [aux_sym_preproc_else_token1] = ACTIONS(6217), - [aux_sym_preproc_elif_token1] = ACTIONS(6217), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7816), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -641015,6 +632540,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5030] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5030), [sym_preproc_endregion] = STATE(5030), [sym_preproc_line] = STATE(5030), @@ -641024,56 +632564,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5030), [sym_preproc_define] = STATE(5030), [sym_preproc_undef] = STATE(5030), - [anon_sym_SEMI] = ACTIONS(6263), - [anon_sym_LBRACK] = ACTIONS(6263), - [anon_sym_COLON] = ACTIONS(6263), - [anon_sym_COMMA] = ACTIONS(6263), - [anon_sym_RBRACK] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6263), - [anon_sym_RPAREN] = ACTIONS(6263), - [anon_sym_RBRACE] = ACTIONS(6263), - [anon_sym_LT] = ACTIONS(6265), - [anon_sym_GT] = ACTIONS(6265), - [anon_sym_in] = ACTIONS(6263), - [anon_sym_QMARK] = ACTIONS(6265), - [anon_sym_BANG] = ACTIONS(6265), - [anon_sym_PLUS_PLUS] = ACTIONS(6263), - [anon_sym_DASH_DASH] = ACTIONS(6263), - [anon_sym_PLUS] = ACTIONS(6265), - [anon_sym_DASH] = ACTIONS(6265), - [anon_sym_STAR] = ACTIONS(6263), - [anon_sym_SLASH] = ACTIONS(6265), - [anon_sym_PERCENT] = ACTIONS(6263), - [anon_sym_CARET] = ACTIONS(6263), - [anon_sym_PIPE] = ACTIONS(6265), - [anon_sym_AMP] = ACTIONS(6265), - [anon_sym_LT_LT] = ACTIONS(6263), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6263), - [anon_sym_EQ_EQ] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6263), - [anon_sym_LT_EQ] = ACTIONS(6263), - [anon_sym_DOT] = ACTIONS(6265), - [anon_sym_EQ_GT] = ACTIONS(6263), - [anon_sym_switch] = ACTIONS(6263), - [anon_sym_when] = ACTIONS(6263), - [anon_sym_DOT_DOT] = ACTIONS(6263), - [anon_sym_and] = ACTIONS(6263), - [anon_sym_or] = ACTIONS(6263), - [anon_sym_AMP_AMP] = ACTIONS(6263), - [anon_sym_PIPE_PIPE] = ACTIONS(6263), - [sym_op_coalescing] = ACTIONS(6263), - [anon_sym_on] = ACTIONS(6263), - [anon_sym_equals] = ACTIONS(6263), - [anon_sym_by] = ACTIONS(6263), - [anon_sym_as] = ACTIONS(6263), - [anon_sym_is] = ACTIONS(6263), - [anon_sym_DASH_GT] = ACTIONS(6263), - [anon_sym_with] = ACTIONS(6263), - [aux_sym_preproc_if_token3] = ACTIONS(6263), - [aux_sym_preproc_else_token1] = ACTIONS(6263), - [aux_sym_preproc_elif_token1] = ACTIONS(6263), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -641086,6 +632610,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5031] = { + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7328), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5031), [sym_preproc_endregion] = STATE(5031), [sym_preproc_line] = STATE(5031), @@ -641095,56 +632637,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5031), [sym_preproc_define] = STATE(5031), [sym_preproc_undef] = STATE(5031), - [anon_sym_SEMI] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6361), - [anon_sym_COLON] = ACTIONS(6361), - [anon_sym_COMMA] = ACTIONS(6361), - [anon_sym_RBRACK] = ACTIONS(6361), - [anon_sym_LPAREN] = ACTIONS(6361), - [anon_sym_RPAREN] = ACTIONS(6361), - [anon_sym_RBRACE] = ACTIONS(6361), - [anon_sym_LT] = ACTIONS(6363), - [anon_sym_GT] = ACTIONS(6363), - [anon_sym_in] = ACTIONS(6361), - [anon_sym_QMARK] = ACTIONS(6363), - [anon_sym_BANG] = ACTIONS(6363), - [anon_sym_PLUS_PLUS] = ACTIONS(6361), - [anon_sym_DASH_DASH] = ACTIONS(6361), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6361), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_PERCENT] = ACTIONS(6361), - [anon_sym_CARET] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6363), - [anon_sym_AMP] = ACTIONS(6363), - [anon_sym_LT_LT] = ACTIONS(6361), - [anon_sym_GT_GT] = ACTIONS(6363), - [anon_sym_GT_GT_GT] = ACTIONS(6361), - [anon_sym_EQ_EQ] = ACTIONS(6361), - [anon_sym_BANG_EQ] = ACTIONS(6361), - [anon_sym_GT_EQ] = ACTIONS(6361), - [anon_sym_LT_EQ] = ACTIONS(6361), - [anon_sym_DOT] = ACTIONS(6363), - [anon_sym_EQ_GT] = ACTIONS(6361), - [anon_sym_switch] = ACTIONS(6361), - [anon_sym_when] = ACTIONS(6361), - [anon_sym_DOT_DOT] = ACTIONS(6361), - [anon_sym_and] = ACTIONS(6361), - [anon_sym_or] = ACTIONS(6361), - [anon_sym_AMP_AMP] = ACTIONS(6361), - [anon_sym_PIPE_PIPE] = ACTIONS(6361), - [sym_op_coalescing] = ACTIONS(6361), - [anon_sym_on] = ACTIONS(6361), - [anon_sym_equals] = ACTIONS(6361), - [anon_sym_by] = ACTIONS(6361), - [anon_sym_as] = ACTIONS(6361), - [anon_sym_is] = ACTIONS(6361), - [anon_sym_DASH_GT] = ACTIONS(6361), - [anon_sym_with] = ACTIONS(6361), - [aux_sym_preproc_if_token3] = ACTIONS(6361), - [aux_sym_preproc_else_token1] = ACTIONS(6361), - [aux_sym_preproc_elif_token1] = ACTIONS(6361), + [aux_sym_type_argument_list_repeat1] = STATE(7329), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_GT] = ACTIONS(7818), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -641157,6 +632680,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5032] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(5032), [sym_preproc_endregion] = STATE(5032), [sym_preproc_line] = STATE(5032), @@ -641166,56 +632704,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5032), [sym_preproc_define] = STATE(5032), [sym_preproc_undef] = STATE(5032), - [anon_sym_SEMI] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(6369), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_COMMA] = ACTIONS(6369), - [anon_sym_RBRACK] = ACTIONS(6369), - [anon_sym_LPAREN] = ACTIONS(6369), - [anon_sym_RPAREN] = ACTIONS(6369), - [anon_sym_RBRACE] = ACTIONS(6369), - [anon_sym_LT] = ACTIONS(6371), - [anon_sym_GT] = ACTIONS(6371), - [anon_sym_in] = ACTIONS(6369), - [anon_sym_QMARK] = ACTIONS(6371), - [anon_sym_BANG] = ACTIONS(6371), - [anon_sym_PLUS_PLUS] = ACTIONS(6369), - [anon_sym_DASH_DASH] = ACTIONS(6369), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6369), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_PERCENT] = ACTIONS(6369), - [anon_sym_CARET] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6371), - [anon_sym_AMP] = ACTIONS(6371), - [anon_sym_LT_LT] = ACTIONS(6369), - [anon_sym_GT_GT] = ACTIONS(6371), - [anon_sym_GT_GT_GT] = ACTIONS(6369), - [anon_sym_EQ_EQ] = ACTIONS(6369), - [anon_sym_BANG_EQ] = ACTIONS(6369), - [anon_sym_GT_EQ] = ACTIONS(6369), - [anon_sym_LT_EQ] = ACTIONS(6369), - [anon_sym_DOT] = ACTIONS(6371), - [anon_sym_EQ_GT] = ACTIONS(6369), - [anon_sym_switch] = ACTIONS(6369), - [anon_sym_when] = ACTIONS(6369), - [anon_sym_DOT_DOT] = ACTIONS(6369), - [anon_sym_and] = ACTIONS(6369), - [anon_sym_or] = ACTIONS(6369), - [anon_sym_AMP_AMP] = ACTIONS(6369), - [anon_sym_PIPE_PIPE] = ACTIONS(6369), - [sym_op_coalescing] = ACTIONS(6369), - [anon_sym_on] = ACTIONS(6369), - [anon_sym_equals] = ACTIONS(6369), - [anon_sym_by] = ACTIONS(6369), - [anon_sym_as] = ACTIONS(6369), - [anon_sym_is] = ACTIONS(6369), - [anon_sym_DASH_GT] = ACTIONS(6369), - [anon_sym_with] = ACTIONS(6369), - [aux_sym_preproc_if_token3] = ACTIONS(6369), - [aux_sym_preproc_else_token1] = ACTIONS(6369), - [aux_sym_preproc_elif_token1] = ACTIONS(6369), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -641228,6 +632750,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5033] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5033), [sym_preproc_endregion] = STATE(5033), [sym_preproc_line] = STATE(5033), @@ -641237,56 +632774,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5033), [sym_preproc_define] = STATE(5033), [sym_preproc_undef] = STATE(5033), - [sym__identifier_token] = ACTIONS(5542), - [anon_sym_extern] = ACTIONS(5542), - [anon_sym_alias] = ACTIONS(5542), - [anon_sym_global] = ACTIONS(5542), - [anon_sym_unsafe] = ACTIONS(5542), - [anon_sym_static] = ACTIONS(5542), - [anon_sym_LBRACK] = ACTIONS(5544), - [anon_sym_public] = ACTIONS(5542), - [anon_sym_private] = ACTIONS(5542), - [anon_sym_readonly] = ACTIONS(5542), - [anon_sym_abstract] = ACTIONS(5542), - [anon_sym_async] = ACTIONS(5542), - [anon_sym_const] = ACTIONS(5542), - [anon_sym_file] = ACTIONS(5542), - [anon_sym_fixed] = ACTIONS(5542), - [anon_sym_internal] = ACTIONS(5542), - [anon_sym_new] = ACTIONS(5542), - [anon_sym_override] = ACTIONS(5542), - [anon_sym_partial] = ACTIONS(5542), - [anon_sym_protected] = ACTIONS(5542), - [anon_sym_required] = ACTIONS(5542), - [anon_sym_sealed] = ACTIONS(5542), - [anon_sym_virtual] = ACTIONS(5542), - [anon_sym_volatile] = ACTIONS(5542), - [anon_sym_where] = ACTIONS(5542), - [anon_sym_notnull] = ACTIONS(5542), - [anon_sym_unmanaged] = ACTIONS(5542), - [sym_accessor_get] = ACTIONS(5542), - [sym_accessor_set] = ACTIONS(5542), - [sym_accessor_add] = ACTIONS(5542), - [sym_accessor_remove] = ACTIONS(5542), - [sym_accessor_init] = ACTIONS(5542), - [anon_sym_scoped] = ACTIONS(5542), - [anon_sym_var] = ACTIONS(5542), - [anon_sym_yield] = ACTIONS(5542), - [anon_sym_when] = ACTIONS(5542), - [anon_sym_from] = ACTIONS(5542), - [anon_sym_into] = ACTIONS(5542), - [anon_sym_join] = ACTIONS(5542), - [anon_sym_on] = ACTIONS(5542), - [anon_sym_equals] = ACTIONS(5542), - [anon_sym_let] = ACTIONS(5542), - [anon_sym_orderby] = ACTIONS(5542), - [anon_sym_ascending] = ACTIONS(5542), - [anon_sym_descending] = ACTIONS(5542), - [anon_sym_group] = ACTIONS(5542), - [anon_sym_by] = ACTIONS(5542), - [anon_sym_select] = ACTIONS(5542), - [sym_grit_metavariable] = ACTIONS(5544), - [aux_sym_preproc_if_token1] = ACTIONS(5544), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7820), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -641299,6 +632820,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5034] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(5034), [sym_preproc_endregion] = STATE(5034), [sym_preproc_line] = STATE(5034), @@ -641308,56 +632844,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5034), [sym_preproc_define] = STATE(5034), [sym_preproc_undef] = STATE(5034), - [anon_sym_EQ] = ACTIONS(7207), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_EQ_GT] = ACTIONS(5684), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_when] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7209), - [anon_sym_DASH_EQ] = ACTIONS(7209), - [anon_sym_STAR_EQ] = ACTIONS(7209), - [anon_sym_SLASH_EQ] = ACTIONS(7209), - [anon_sym_PERCENT_EQ] = ACTIONS(7209), - [anon_sym_AMP_EQ] = ACTIONS(7209), - [anon_sym_CARET_EQ] = ACTIONS(7209), - [anon_sym_PIPE_EQ] = ACTIONS(7209), - [anon_sym_LT_LT_EQ] = ACTIONS(7209), - [anon_sym_GT_GT_EQ] = ACTIONS(7209), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7209), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7209), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_in] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(7350), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7352), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7354), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7356), + [sym_op_right_shift] = ACTIONS(7358), + [sym_op_unsigned_right_shift] = ACTIONS(7356), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7360), + [sym_op_modulo] = ACTIONS(7362), + [sym_op_coalescing] = ACTIONS(7364), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7366), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -641370,6 +632890,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5035] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5035), [sym_preproc_endregion] = STATE(5035), [sym_preproc_line] = STATE(5035), @@ -641379,56 +632914,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5035), [sym_preproc_define] = STATE(5035), [sym_preproc_undef] = STATE(5035), - [sym__identifier_token] = ACTIONS(5608), - [anon_sym_extern] = ACTIONS(5608), - [anon_sym_alias] = ACTIONS(5608), - [anon_sym_global] = ACTIONS(5608), - [anon_sym_unsafe] = ACTIONS(5608), - [anon_sym_static] = ACTIONS(5608), - [anon_sym_LBRACK] = ACTIONS(5610), - [anon_sym_public] = ACTIONS(5608), - [anon_sym_private] = ACTIONS(5608), - [anon_sym_readonly] = ACTIONS(5608), - [anon_sym_abstract] = ACTIONS(5608), - [anon_sym_async] = ACTIONS(5608), - [anon_sym_const] = ACTIONS(5608), - [anon_sym_file] = ACTIONS(5608), - [anon_sym_fixed] = ACTIONS(5608), - [anon_sym_internal] = ACTIONS(5608), - [anon_sym_new] = ACTIONS(5608), - [anon_sym_override] = ACTIONS(5608), - [anon_sym_partial] = ACTIONS(5608), - [anon_sym_protected] = ACTIONS(5608), - [anon_sym_required] = ACTIONS(5608), - [anon_sym_sealed] = ACTIONS(5608), - [anon_sym_virtual] = ACTIONS(5608), - [anon_sym_volatile] = ACTIONS(5608), - [anon_sym_where] = ACTIONS(5608), - [anon_sym_notnull] = ACTIONS(5608), - [anon_sym_unmanaged] = ACTIONS(5608), - [sym_accessor_get] = ACTIONS(5608), - [sym_accessor_set] = ACTIONS(5608), - [sym_accessor_add] = ACTIONS(5608), - [sym_accessor_remove] = ACTIONS(5608), - [sym_accessor_init] = ACTIONS(5608), - [anon_sym_scoped] = ACTIONS(5608), - [anon_sym_var] = ACTIONS(5608), - [anon_sym_yield] = ACTIONS(5608), - [anon_sym_when] = ACTIONS(5608), - [anon_sym_from] = ACTIONS(5608), - [anon_sym_into] = ACTIONS(5608), - [anon_sym_join] = ACTIONS(5608), - [anon_sym_on] = ACTIONS(5608), - [anon_sym_equals] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(5608), - [anon_sym_orderby] = ACTIONS(5608), - [anon_sym_ascending] = ACTIONS(5608), - [anon_sym_descending] = ACTIONS(5608), - [anon_sym_group] = ACTIONS(5608), - [anon_sym_by] = ACTIONS(5608), - [anon_sym_select] = ACTIONS(5608), - [sym_grit_metavariable] = ACTIONS(5610), - [aux_sym_preproc_if_token1] = ACTIONS(5610), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_QMARK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_switch] = ACTIONS(5314), + [anon_sym_DOT_DOT] = ACTIONS(5314), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + [sym_op_bitwise_or] = ACTIONS(5316), + [anon_sym_CARET] = ACTIONS(5314), + [sym_op_left_shift] = ACTIONS(5314), + [sym_op_right_shift] = ACTIONS(5316), + [sym_op_unsigned_right_shift] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym_op_divide] = ACTIONS(5316), + [sym_op_modulo] = ACTIONS(5314), + [sym_op_coalescing] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5314), + [anon_sym_as] = ACTIONS(5314), + [anon_sym_is] = ACTIONS(5314), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5314), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -641441,6 +632960,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5036] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(5036), [sym_preproc_endregion] = STATE(5036), [sym_preproc_line] = STATE(5036), @@ -641450,56 +632984,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5036), [sym_preproc_define] = STATE(5036), [sym_preproc_undef] = STATE(5036), - [sym__identifier_token] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym_alias] = ACTIONS(5636), - [anon_sym_global] = ACTIONS(5636), - [anon_sym_unsafe] = ACTIONS(5636), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_public] = ACTIONS(5636), - [anon_sym_private] = ACTIONS(5636), - [anon_sym_readonly] = ACTIONS(5636), - [anon_sym_abstract] = ACTIONS(5636), - [anon_sym_async] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_file] = ACTIONS(5636), - [anon_sym_fixed] = ACTIONS(5636), - [anon_sym_internal] = ACTIONS(5636), - [anon_sym_new] = ACTIONS(5636), - [anon_sym_override] = ACTIONS(5636), - [anon_sym_partial] = ACTIONS(5636), - [anon_sym_protected] = ACTIONS(5636), - [anon_sym_required] = ACTIONS(5636), - [anon_sym_sealed] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_where] = ACTIONS(5636), - [anon_sym_notnull] = ACTIONS(5636), - [anon_sym_unmanaged] = ACTIONS(5636), - [sym_accessor_get] = ACTIONS(5636), - [sym_accessor_set] = ACTIONS(5636), - [sym_accessor_add] = ACTIONS(5636), - [sym_accessor_remove] = ACTIONS(5636), - [sym_accessor_init] = ACTIONS(5636), - [anon_sym_scoped] = ACTIONS(5636), - [anon_sym_var] = ACTIONS(5636), - [anon_sym_yield] = ACTIONS(5636), - [anon_sym_when] = ACTIONS(5636), - [anon_sym_from] = ACTIONS(5636), - [anon_sym_into] = ACTIONS(5636), - [anon_sym_join] = ACTIONS(5636), - [anon_sym_on] = ACTIONS(5636), - [anon_sym_equals] = ACTIONS(5636), - [anon_sym_let] = ACTIONS(5636), - [anon_sym_orderby] = ACTIONS(5636), - [anon_sym_ascending] = ACTIONS(5636), - [anon_sym_descending] = ACTIONS(5636), - [anon_sym_group] = ACTIONS(5636), - [anon_sym_by] = ACTIONS(5636), - [anon_sym_select] = ACTIONS(5636), - [sym_grit_metavariable] = ACTIONS(5638), - [aux_sym_preproc_if_token1] = ACTIONS(5638), + [anon_sym_SEMI] = ACTIONS(7822), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -641521,56 +633039,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5037), [sym_preproc_define] = STATE(5037), [sym_preproc_undef] = STATE(5037), - [anon_sym_SEMI] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7120), - [anon_sym_COLON] = ACTIONS(7120), - [anon_sym_COMMA] = ACTIONS(7120), - [anon_sym_RBRACK] = ACTIONS(7120), - [anon_sym_LPAREN] = ACTIONS(7120), - [anon_sym_RPAREN] = ACTIONS(7120), - [anon_sym_RBRACE] = ACTIONS(7120), - [anon_sym_LT] = ACTIONS(7122), - [anon_sym_GT] = ACTIONS(7122), - [anon_sym_in] = ACTIONS(7120), - [anon_sym_QMARK] = ACTIONS(7122), - [anon_sym_BANG] = ACTIONS(7122), - [anon_sym_PLUS_PLUS] = ACTIONS(7120), - [anon_sym_DASH_DASH] = ACTIONS(7120), - [anon_sym_PLUS] = ACTIONS(7122), - [anon_sym_DASH] = ACTIONS(7122), - [anon_sym_STAR] = ACTIONS(7120), - [anon_sym_SLASH] = ACTIONS(7122), - [anon_sym_PERCENT] = ACTIONS(7120), - [anon_sym_CARET] = ACTIONS(7120), - [anon_sym_PIPE] = ACTIONS(7122), - [anon_sym_AMP] = ACTIONS(7122), - [anon_sym_LT_LT] = ACTIONS(7120), - [anon_sym_GT_GT] = ACTIONS(7122), - [anon_sym_GT_GT_GT] = ACTIONS(7120), - [anon_sym_EQ_EQ] = ACTIONS(7120), - [anon_sym_BANG_EQ] = ACTIONS(7120), - [anon_sym_GT_EQ] = ACTIONS(7120), - [anon_sym_LT_EQ] = ACTIONS(7120), - [anon_sym_DOT] = ACTIONS(7122), - [anon_sym_EQ_GT] = ACTIONS(7120), - [anon_sym_switch] = ACTIONS(7120), - [anon_sym_when] = ACTIONS(7120), - [anon_sym_DOT_DOT] = ACTIONS(7120), - [anon_sym_and] = ACTIONS(7120), - [anon_sym_or] = ACTIONS(7120), - [anon_sym_AMP_AMP] = ACTIONS(7120), - [anon_sym_PIPE_PIPE] = ACTIONS(7120), - [sym_op_coalescing] = ACTIONS(7120), - [anon_sym_on] = ACTIONS(7120), - [anon_sym_equals] = ACTIONS(7120), - [anon_sym_by] = ACTIONS(7120), - [anon_sym_as] = ACTIONS(7120), - [anon_sym_is] = ACTIONS(7120), - [anon_sym_DASH_GT] = ACTIONS(7120), - [anon_sym_with] = ACTIONS(7120), - [aux_sym_preproc_if_token3] = ACTIONS(7120), - [aux_sym_preproc_else_token1] = ACTIONS(7120), - [aux_sym_preproc_elif_token1] = ACTIONS(7120), + [sym__identifier_token] = ACTIONS(5709), + [anon_sym_extern] = ACTIONS(5709), + [anon_sym_alias] = ACTIONS(5709), + [anon_sym_global] = ACTIONS(5709), + [anon_sym_unsafe] = ACTIONS(5709), + [anon_sym_static] = ACTIONS(5709), + [anon_sym_LBRACK] = ACTIONS(5711), + [anon_sym_LPAREN] = ACTIONS(5711), + [anon_sym_ref] = ACTIONS(5709), + [anon_sym_delegate] = ACTIONS(5709), + [anon_sym_public] = ACTIONS(5709), + [anon_sym_private] = ACTIONS(5709), + [anon_sym_readonly] = ACTIONS(5709), + [anon_sym_abstract] = ACTIONS(5709), + [anon_sym_async] = ACTIONS(5709), + [anon_sym_const] = ACTIONS(5709), + [anon_sym_file] = ACTIONS(5709), + [anon_sym_fixed] = ACTIONS(5709), + [anon_sym_internal] = ACTIONS(5709), + [anon_sym_new] = ACTIONS(5709), + [anon_sym_override] = ACTIONS(5709), + [anon_sym_partial] = ACTIONS(5709), + [anon_sym_protected] = ACTIONS(5709), + [anon_sym_required] = ACTIONS(5709), + [anon_sym_sealed] = ACTIONS(5709), + [anon_sym_virtual] = ACTIONS(5709), + [anon_sym_volatile] = ACTIONS(5709), + [anon_sym_where] = ACTIONS(5709), + [anon_sym_notnull] = ACTIONS(5709), + [anon_sym_unmanaged] = ACTIONS(5709), + [anon_sym_scoped] = ACTIONS(5709), + [anon_sym_var] = ACTIONS(5709), + [sym_predefined_type] = ACTIONS(5709), + [anon_sym_yield] = ACTIONS(5709), + [anon_sym_when] = ACTIONS(5709), + [anon_sym_from] = ACTIONS(5709), + [anon_sym_into] = ACTIONS(5709), + [anon_sym_join] = ACTIONS(5709), + [anon_sym_on] = ACTIONS(5709), + [anon_sym_equals] = ACTIONS(5709), + [anon_sym_let] = ACTIONS(5709), + [anon_sym_orderby] = ACTIONS(5709), + [anon_sym_ascending] = ACTIONS(5709), + [anon_sym_descending] = ACTIONS(5709), + [anon_sym_group] = ACTIONS(5709), + [anon_sym_by] = ACTIONS(5709), + [anon_sym_select] = ACTIONS(5709), + [sym_grit_metavariable] = ACTIONS(5711), + [aux_sym_preproc_if_token1] = ACTIONS(5711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -641583,6 +633100,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5038] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(5038), [sym_preproc_endregion] = STATE(5038), [sym_preproc_line] = STATE(5038), @@ -641592,56 +633124,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5038), [sym_preproc_define] = STATE(5038), [sym_preproc_undef] = STATE(5038), - [anon_sym_SEMI] = ACTIONS(6335), - [anon_sym_LBRACK] = ACTIONS(6335), - [anon_sym_COLON] = ACTIONS(6335), - [anon_sym_COMMA] = ACTIONS(6335), - [anon_sym_RBRACK] = ACTIONS(6335), - [anon_sym_LPAREN] = ACTIONS(6335), - [anon_sym_RPAREN] = ACTIONS(6335), - [anon_sym_RBRACE] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_in] = ACTIONS(6335), - [anon_sym_QMARK] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PLUS_PLUS] = ACTIONS(6335), - [anon_sym_DASH_DASH] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6337), - [anon_sym_DASH] = ACTIONS(6337), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6337), - [anon_sym_PERCENT] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_AMP] = ACTIONS(6337), - [anon_sym_LT_LT] = ACTIONS(6335), - [anon_sym_GT_GT] = ACTIONS(6337), - [anon_sym_GT_GT_GT] = ACTIONS(6335), - [anon_sym_EQ_EQ] = ACTIONS(6335), - [anon_sym_BANG_EQ] = ACTIONS(6335), - [anon_sym_GT_EQ] = ACTIONS(6335), - [anon_sym_LT_EQ] = ACTIONS(6335), - [anon_sym_DOT] = ACTIONS(6337), - [anon_sym_EQ_GT] = ACTIONS(6335), - [anon_sym_switch] = ACTIONS(6335), - [anon_sym_when] = ACTIONS(6335), - [anon_sym_DOT_DOT] = ACTIONS(6335), - [anon_sym_and] = ACTIONS(6335), - [anon_sym_or] = ACTIONS(6335), - [anon_sym_AMP_AMP] = ACTIONS(6335), - [anon_sym_PIPE_PIPE] = ACTIONS(6335), - [sym_op_coalescing] = ACTIONS(6335), - [anon_sym_on] = ACTIONS(6335), - [anon_sym_equals] = ACTIONS(6335), - [anon_sym_by] = ACTIONS(6335), - [anon_sym_as] = ACTIONS(6335), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(6335), - [anon_sym_with] = ACTIONS(6335), - [aux_sym_preproc_if_token3] = ACTIONS(6335), - [aux_sym_preproc_else_token1] = ACTIONS(6335), - [aux_sym_preproc_elif_token1] = ACTIONS(6335), + [anon_sym_SEMI] = ACTIONS(6849), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -641654,15 +633170,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5039] = { - [sym__name] = STATE(5884), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(5567), - [sym__reserved_identifier] = STATE(2206), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5039), [sym_preproc_endregion] = STATE(5039), [sym_preproc_line] = STATE(5039), @@ -641672,47 +633194,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5039), [sym_preproc_define] = STATE(5039), [sym_preproc_undef] = STATE(5039), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3894), - [anon_sym_global] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3900), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3696), - [anon_sym_notnull] = ACTIONS(3894), - [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3894), - [anon_sym_yield] = ACTIONS(3894), - [anon_sym_when] = ACTIONS(3894), - [sym_discard] = ACTIONS(3698), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3894), - [anon_sym_into] = ACTIONS(3894), - [anon_sym_join] = ACTIONS(3894), - [anon_sym_on] = ACTIONS(3894), - [anon_sym_equals] = ACTIONS(3894), - [anon_sym_let] = ACTIONS(3894), - [anon_sym_orderby] = ACTIONS(3894), - [anon_sym_ascending] = ACTIONS(3894), - [anon_sym_descending] = ACTIONS(3894), - [anon_sym_group] = ACTIONS(3894), - [anon_sym_by] = ACTIONS(3894), - [anon_sym_select] = ACTIONS(3894), - [sym_grit_metavariable] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -641725,6 +633240,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5040] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5040), [sym_preproc_endregion] = STATE(5040), [sym_preproc_line] = STATE(5040), @@ -641734,56 +633264,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5040), [sym_preproc_define] = STATE(5040), [sym_preproc_undef] = STATE(5040), - [anon_sym_SEMI] = ACTIONS(6059), - [anon_sym_LBRACK] = ACTIONS(6059), - [anon_sym_COLON] = ACTIONS(6059), - [anon_sym_COMMA] = ACTIONS(6059), - [anon_sym_RBRACK] = ACTIONS(6059), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_RBRACE] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_in] = ACTIONS(6059), - [anon_sym_QMARK] = ACTIONS(6061), - [anon_sym_BANG] = ACTIONS(6061), - [anon_sym_PLUS_PLUS] = ACTIONS(6059), - [anon_sym_DASH_DASH] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6061), - [anon_sym_DASH] = ACTIONS(6061), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6061), - [anon_sym_PERCENT] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - [anon_sym_LT_LT] = ACTIONS(6059), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_GT_GT_GT] = ACTIONS(6059), - [anon_sym_EQ_EQ] = ACTIONS(6059), - [anon_sym_BANG_EQ] = ACTIONS(6059), - [anon_sym_GT_EQ] = ACTIONS(6059), - [anon_sym_LT_EQ] = ACTIONS(6059), - [anon_sym_DOT] = ACTIONS(6061), - [anon_sym_EQ_GT] = ACTIONS(6059), - [anon_sym_switch] = ACTIONS(6059), - [anon_sym_when] = ACTIONS(6059), - [anon_sym_DOT_DOT] = ACTIONS(6059), - [anon_sym_and] = ACTIONS(6059), - [anon_sym_or] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [sym_op_coalescing] = ACTIONS(6059), - [anon_sym_on] = ACTIONS(6059), - [anon_sym_equals] = ACTIONS(6059), - [anon_sym_by] = ACTIONS(6059), - [anon_sym_as] = ACTIONS(6059), - [anon_sym_is] = ACTIONS(6059), - [anon_sym_DASH_GT] = ACTIONS(6059), - [anon_sym_with] = ACTIONS(6059), - [aux_sym_preproc_if_token3] = ACTIONS(6059), - [aux_sym_preproc_else_token1] = ACTIONS(6059), - [aux_sym_preproc_elif_token1] = ACTIONS(6059), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -641796,6 +633310,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5041] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5041), [sym_preproc_endregion] = STATE(5041), [sym_preproc_line] = STATE(5041), @@ -641805,56 +633334,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5041), [sym_preproc_define] = STATE(5041), [sym_preproc_undef] = STATE(5041), - [anon_sym_SEMI] = ACTIONS(7112), - [anon_sym_LBRACK] = ACTIONS(7112), - [anon_sym_COLON] = ACTIONS(7112), - [anon_sym_COMMA] = ACTIONS(7112), - [anon_sym_RBRACK] = ACTIONS(7112), - [anon_sym_LPAREN] = ACTIONS(7112), - [anon_sym_RPAREN] = ACTIONS(7112), - [anon_sym_RBRACE] = ACTIONS(7112), - [anon_sym_LT] = ACTIONS(7114), - [anon_sym_GT] = ACTIONS(7114), - [anon_sym_in] = ACTIONS(7112), - [anon_sym_QMARK] = ACTIONS(7114), - [anon_sym_BANG] = ACTIONS(7114), - [anon_sym_PLUS_PLUS] = ACTIONS(7112), - [anon_sym_DASH_DASH] = ACTIONS(7112), - [anon_sym_PLUS] = ACTIONS(7114), - [anon_sym_DASH] = ACTIONS(7114), - [anon_sym_STAR] = ACTIONS(7112), - [anon_sym_SLASH] = ACTIONS(7114), - [anon_sym_PERCENT] = ACTIONS(7112), - [anon_sym_CARET] = ACTIONS(7112), - [anon_sym_PIPE] = ACTIONS(7114), - [anon_sym_AMP] = ACTIONS(7114), - [anon_sym_LT_LT] = ACTIONS(7112), - [anon_sym_GT_GT] = ACTIONS(7114), - [anon_sym_GT_GT_GT] = ACTIONS(7112), - [anon_sym_EQ_EQ] = ACTIONS(7112), - [anon_sym_BANG_EQ] = ACTIONS(7112), - [anon_sym_GT_EQ] = ACTIONS(7112), - [anon_sym_LT_EQ] = ACTIONS(7112), - [anon_sym_DOT] = ACTIONS(7114), - [anon_sym_EQ_GT] = ACTIONS(7112), - [anon_sym_switch] = ACTIONS(7112), - [anon_sym_when] = ACTIONS(7112), - [anon_sym_DOT_DOT] = ACTIONS(7112), - [anon_sym_and] = ACTIONS(7112), - [anon_sym_or] = ACTIONS(7112), - [anon_sym_AMP_AMP] = ACTIONS(7112), - [anon_sym_PIPE_PIPE] = ACTIONS(7112), - [sym_op_coalescing] = ACTIONS(7112), - [anon_sym_on] = ACTIONS(7112), - [anon_sym_equals] = ACTIONS(7112), - [anon_sym_by] = ACTIONS(7112), - [anon_sym_as] = ACTIONS(7112), - [anon_sym_is] = ACTIONS(7112), - [anon_sym_DASH_GT] = ACTIONS(7112), - [anon_sym_with] = ACTIONS(7112), - [aux_sym_preproc_if_token3] = ACTIONS(7112), - [aux_sym_preproc_else_token1] = ACTIONS(7112), - [aux_sym_preproc_elif_token1] = ACTIONS(7112), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -641867,6 +633380,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5042] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(5042), [sym_preproc_endregion] = STATE(5042), [sym_preproc_line] = STATE(5042), @@ -641876,56 +633404,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5042), [sym_preproc_define] = STATE(5042), [sym_preproc_undef] = STATE(5042), - [anon_sym_SEMI] = ACTIONS(6377), - [anon_sym_LBRACK] = ACTIONS(6377), - [anon_sym_COLON] = ACTIONS(6377), - [anon_sym_COMMA] = ACTIONS(6377), - [anon_sym_RBRACK] = ACTIONS(6377), - [anon_sym_LPAREN] = ACTIONS(6377), - [anon_sym_RPAREN] = ACTIONS(6377), - [anon_sym_RBRACE] = ACTIONS(6377), - [anon_sym_LT] = ACTIONS(6379), - [anon_sym_GT] = ACTIONS(6379), - [anon_sym_in] = ACTIONS(6377), - [anon_sym_QMARK] = ACTIONS(6379), - [anon_sym_BANG] = ACTIONS(6379), - [anon_sym_PLUS_PLUS] = ACTIONS(6377), - [anon_sym_DASH_DASH] = ACTIONS(6377), - [anon_sym_PLUS] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [anon_sym_STAR] = ACTIONS(6377), - [anon_sym_SLASH] = ACTIONS(6379), - [anon_sym_PERCENT] = ACTIONS(6377), - [anon_sym_CARET] = ACTIONS(6377), - [anon_sym_PIPE] = ACTIONS(6379), - [anon_sym_AMP] = ACTIONS(6379), - [anon_sym_LT_LT] = ACTIONS(6377), - [anon_sym_GT_GT] = ACTIONS(6379), - [anon_sym_GT_GT_GT] = ACTIONS(6377), - [anon_sym_EQ_EQ] = ACTIONS(6377), - [anon_sym_BANG_EQ] = ACTIONS(6377), - [anon_sym_GT_EQ] = ACTIONS(6377), - [anon_sym_LT_EQ] = ACTIONS(6377), - [anon_sym_DOT] = ACTIONS(6379), - [anon_sym_EQ_GT] = ACTIONS(6377), - [anon_sym_switch] = ACTIONS(6377), - [anon_sym_when] = ACTIONS(6377), - [anon_sym_DOT_DOT] = ACTIONS(6377), - [anon_sym_and] = ACTIONS(6377), - [anon_sym_or] = ACTIONS(6377), - [anon_sym_AMP_AMP] = ACTIONS(6377), - [anon_sym_PIPE_PIPE] = ACTIONS(6377), - [sym_op_coalescing] = ACTIONS(6377), - [anon_sym_on] = ACTIONS(6377), - [anon_sym_equals] = ACTIONS(6377), - [anon_sym_by] = ACTIONS(6377), - [anon_sym_as] = ACTIONS(6377), - [anon_sym_is] = ACTIONS(6377), - [anon_sym_DASH_GT] = ACTIONS(6377), - [anon_sym_with] = ACTIONS(6377), - [aux_sym_preproc_if_token3] = ACTIONS(6377), - [aux_sym_preproc_else_token1] = ACTIONS(6377), - [aux_sym_preproc_elif_token1] = ACTIONS(6377), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -641938,7 +633450,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5043] = { - [sym_initializer_expression] = STATE(4020), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(5043), [sym_preproc_endregion] = STATE(5043), [sym_preproc_line] = STATE(5043), @@ -641948,55 +633474,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5043), [sym_preproc_define] = STATE(5043), [sym_preproc_undef] = STATE(5043), - [anon_sym_SEMI] = ACTIONS(5958), - [anon_sym_LBRACK] = ACTIONS(5954), - [anon_sym_COLON] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_RBRACK] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_RPAREN] = ACTIONS(5958), - [anon_sym_LBRACE] = ACTIONS(7211), - [anon_sym_RBRACE] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_in] = ACTIONS(5964), - [anon_sym_QMARK] = ACTIONS(7214), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PLUS_PLUS] = ACTIONS(5958), - [anon_sym_DASH_DASH] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5964), - [anon_sym_DASH] = ACTIONS(5964), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5964), - [anon_sym_PERCENT] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_AMP] = ACTIONS(5964), - [anon_sym_LT_LT] = ACTIONS(5958), - [anon_sym_GT_GT] = ACTIONS(5964), - [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(5964), - [anon_sym_EQ_GT] = ACTIONS(5958), - [anon_sym_switch] = ACTIONS(5958), - [anon_sym_DOT_DOT] = ACTIONS(5958), - [anon_sym_AMP_AMP] = ACTIONS(5958), - [anon_sym_PIPE_PIPE] = ACTIONS(5958), - [sym_op_coalescing] = ACTIONS(5958), - [anon_sym_into] = ACTIONS(5958), - [anon_sym_on] = ACTIONS(5958), - [anon_sym_equals] = ACTIONS(5958), - [anon_sym_by] = ACTIONS(5958), - [anon_sym_as] = ACTIONS(5958), - [anon_sym_is] = ACTIONS(5958), - [anon_sym_DASH_GT] = ACTIONS(5958), - [anon_sym_with] = ACTIONS(5958), - [aux_sym_preproc_if_token3] = ACTIONS(5958), - [aux_sym_preproc_else_token1] = ACTIONS(5958), - [aux_sym_preproc_elif_token1] = ACTIONS(5958), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7824), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -642009,6 +633520,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5044] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5044), [sym_preproc_endregion] = STATE(5044), [sym_preproc_line] = STATE(5044), @@ -642018,56 +633544,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5044), [sym_preproc_define] = STATE(5044), [sym_preproc_undef] = STATE(5044), - [anon_sym_SEMI] = ACTIONS(4748), - [anon_sym_LBRACK] = ACTIONS(4748), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_RBRACK] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4748), - [anon_sym_RPAREN] = ACTIONS(4748), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4750), - [anon_sym_GT] = ACTIONS(4750), - [anon_sym_in] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(4750), - [anon_sym_BANG] = ACTIONS(4750), - [anon_sym_PLUS_PLUS] = ACTIONS(4748), - [anon_sym_DASH_DASH] = ACTIONS(4748), - [anon_sym_PLUS] = ACTIONS(4750), - [anon_sym_DASH] = ACTIONS(4750), - [anon_sym_STAR] = ACTIONS(4748), - [anon_sym_SLASH] = ACTIONS(4750), - [anon_sym_PERCENT] = ACTIONS(4748), - [anon_sym_CARET] = ACTIONS(4748), - [anon_sym_PIPE] = ACTIONS(4750), - [anon_sym_AMP] = ACTIONS(4750), - [anon_sym_LT_LT] = ACTIONS(4748), - [anon_sym_GT_GT] = ACTIONS(4750), - [anon_sym_GT_GT_GT] = ACTIONS(4748), - [anon_sym_EQ_EQ] = ACTIONS(4748), - [anon_sym_BANG_EQ] = ACTIONS(4748), - [anon_sym_GT_EQ] = ACTIONS(4748), - [anon_sym_LT_EQ] = ACTIONS(4748), - [anon_sym_DOT] = ACTIONS(4750), - [anon_sym_EQ_GT] = ACTIONS(4748), - [anon_sym_switch] = ACTIONS(4748), - [anon_sym_when] = ACTIONS(4748), - [anon_sym_DOT_DOT] = ACTIONS(4748), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4748), - [anon_sym_PIPE_PIPE] = ACTIONS(4748), - [sym_op_coalescing] = ACTIONS(4748), - [anon_sym_on] = ACTIONS(4748), - [anon_sym_equals] = ACTIONS(4748), - [anon_sym_by] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4748), - [anon_sym_is] = ACTIONS(4748), - [anon_sym_DASH_GT] = ACTIONS(4748), - [anon_sym_with] = ACTIONS(4748), - [aux_sym_preproc_if_token3] = ACTIONS(4748), - [aux_sym_preproc_else_token1] = ACTIONS(4748), - [aux_sym_preproc_elif_token1] = ACTIONS(4748), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -642080,6 +633590,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5045] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5045), [sym_preproc_endregion] = STATE(5045), [sym_preproc_line] = STATE(5045), @@ -642089,56 +633614,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5045), [sym_preproc_define] = STATE(5045), [sym_preproc_undef] = STATE(5045), - [anon_sym_SEMI] = ACTIONS(6347), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_COLON] = ACTIONS(6347), - [anon_sym_COMMA] = ACTIONS(6347), - [anon_sym_RBRACK] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_RBRACE] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_in] = ACTIONS(6347), - [anon_sym_QMARK] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PLUS_PLUS] = ACTIONS(6347), - [anon_sym_DASH_DASH] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6349), - [anon_sym_DASH] = ACTIONS(6349), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6349), - [anon_sym_PERCENT] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_AMP] = ACTIONS(6349), - [anon_sym_LT_LT] = ACTIONS(6347), - [anon_sym_GT_GT] = ACTIONS(6349), - [anon_sym_GT_GT_GT] = ACTIONS(6347), - [anon_sym_EQ_EQ] = ACTIONS(6347), - [anon_sym_BANG_EQ] = ACTIONS(6347), - [anon_sym_GT_EQ] = ACTIONS(6347), - [anon_sym_LT_EQ] = ACTIONS(6347), - [anon_sym_DOT] = ACTIONS(6349), - [anon_sym_EQ_GT] = ACTIONS(6347), - [anon_sym_switch] = ACTIONS(6347), - [anon_sym_when] = ACTIONS(6347), - [anon_sym_DOT_DOT] = ACTIONS(6347), - [anon_sym_and] = ACTIONS(6347), - [anon_sym_or] = ACTIONS(6347), - [anon_sym_AMP_AMP] = ACTIONS(6347), - [anon_sym_PIPE_PIPE] = ACTIONS(6347), - [sym_op_coalescing] = ACTIONS(6347), - [anon_sym_on] = ACTIONS(6347), - [anon_sym_equals] = ACTIONS(6347), - [anon_sym_by] = ACTIONS(6347), - [anon_sym_as] = ACTIONS(6347), - [anon_sym_is] = ACTIONS(6347), - [anon_sym_DASH_GT] = ACTIONS(6347), - [anon_sym_with] = ACTIONS(6347), - [aux_sym_preproc_if_token3] = ACTIONS(6347), - [aux_sym_preproc_else_token1] = ACTIONS(6347), - [aux_sym_preproc_elif_token1] = ACTIONS(6347), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -642151,6 +633660,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5046] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5046), [sym_preproc_endregion] = STATE(5046), [sym_preproc_line] = STATE(5046), @@ -642160,56 +633684,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5046), [sym_preproc_define] = STATE(5046), [sym_preproc_undef] = STATE(5046), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(7078), - [anon_sym_COLON] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(7078), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7081), - [anon_sym_in] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_BANG] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7078), - [anon_sym_DASH_DASH] = ACTIONS(7078), - [anon_sym_PLUS] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7081), - [anon_sym_STAR] = ACTIONS(7078), - [anon_sym_SLASH] = ACTIONS(7081), - [anon_sym_PERCENT] = ACTIONS(7078), - [anon_sym_CARET] = ACTIONS(7078), - [anon_sym_PIPE] = ACTIONS(7081), - [anon_sym_AMP] = ACTIONS(7081), - [anon_sym_LT_LT] = ACTIONS(7078), - [anon_sym_GT_GT] = ACTIONS(7081), - [anon_sym_GT_GT_GT] = ACTIONS(7078), - [anon_sym_EQ_EQ] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7078), - [anon_sym_LT_EQ] = ACTIONS(7078), - [anon_sym_DOT] = ACTIONS(7081), - [anon_sym_EQ_GT] = ACTIONS(4970), - [anon_sym_switch] = ACTIONS(7078), - [anon_sym_when] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(7078), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(7078), - [anon_sym_PIPE_PIPE] = ACTIONS(7078), - [sym_op_coalescing] = ACTIONS(7078), - [anon_sym_on] = ACTIONS(4970), - [anon_sym_equals] = ACTIONS(4970), - [anon_sym_by] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(7078), - [anon_sym_is] = ACTIONS(7078), - [anon_sym_DASH_GT] = ACTIONS(7078), - [anon_sym_with] = ACTIONS(7078), - [aux_sym_preproc_if_token3] = ACTIONS(4970), - [aux_sym_preproc_else_token1] = ACTIONS(4970), - [aux_sym_preproc_elif_token1] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -642222,6 +633730,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5047] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5047), [sym_preproc_endregion] = STATE(5047), [sym_preproc_line] = STATE(5047), @@ -642231,68 +633754,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5047), [sym_preproc_define] = STATE(5047), [sym_preproc_undef] = STATE(5047), - [anon_sym_EQ] = ACTIONS(7218), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7220), - [anon_sym_DASH_EQ] = ACTIONS(7220), - [anon_sym_STAR_EQ] = ACTIONS(7220), - [anon_sym_SLASH_EQ] = ACTIONS(7220), - [anon_sym_PERCENT_EQ] = ACTIONS(7220), - [anon_sym_AMP_EQ] = ACTIONS(7220), - [anon_sym_CARET_EQ] = ACTIONS(7220), - [anon_sym_PIPE_EQ] = ACTIONS(7220), - [anon_sym_LT_LT_EQ] = ACTIONS(7220), - [anon_sym_GT_GT_EQ] = ACTIONS(7220), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7220), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7220), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5356), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [5048] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(5048), [sym_preproc_endregion] = STATE(5048), [sym_preproc_line] = STATE(5048), @@ -642302,56 +633824,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5048), [sym_preproc_define] = STATE(5048), [sym_preproc_undef] = STATE(5048), - [anon_sym_SEMI] = ACTIONS(7025), - [anon_sym_LBRACK] = ACTIONS(7025), - [anon_sym_COLON] = ACTIONS(7025), - [anon_sym_COMMA] = ACTIONS(7025), - [anon_sym_RBRACK] = ACTIONS(7025), - [anon_sym_LPAREN] = ACTIONS(7025), - [anon_sym_RPAREN] = ACTIONS(7025), - [anon_sym_RBRACE] = ACTIONS(7025), - [anon_sym_LT] = ACTIONS(7027), - [anon_sym_GT] = ACTIONS(7027), - [anon_sym_in] = ACTIONS(7025), - [anon_sym_QMARK] = ACTIONS(7027), - [anon_sym_BANG] = ACTIONS(7027), - [anon_sym_PLUS_PLUS] = ACTIONS(7025), - [anon_sym_DASH_DASH] = ACTIONS(7025), - [anon_sym_PLUS] = ACTIONS(7027), - [anon_sym_DASH] = ACTIONS(7027), - [anon_sym_STAR] = ACTIONS(7025), - [anon_sym_SLASH] = ACTIONS(7027), - [anon_sym_PERCENT] = ACTIONS(7025), - [anon_sym_CARET] = ACTIONS(7025), - [anon_sym_PIPE] = ACTIONS(7027), - [anon_sym_AMP] = ACTIONS(7027), - [anon_sym_LT_LT] = ACTIONS(7025), - [anon_sym_GT_GT] = ACTIONS(7027), - [anon_sym_GT_GT_GT] = ACTIONS(7025), - [anon_sym_EQ_EQ] = ACTIONS(7025), - [anon_sym_BANG_EQ] = ACTIONS(7025), - [anon_sym_GT_EQ] = ACTIONS(7025), - [anon_sym_LT_EQ] = ACTIONS(7025), - [anon_sym_DOT] = ACTIONS(7027), - [anon_sym_EQ_GT] = ACTIONS(7025), - [anon_sym_switch] = ACTIONS(7025), - [anon_sym_when] = ACTIONS(7025), - [anon_sym_DOT_DOT] = ACTIONS(7025), - [anon_sym_and] = ACTIONS(7025), - [anon_sym_or] = ACTIONS(7025), - [anon_sym_AMP_AMP] = ACTIONS(7025), - [anon_sym_PIPE_PIPE] = ACTIONS(7025), - [sym_op_coalescing] = ACTIONS(7025), - [anon_sym_on] = ACTIONS(7025), - [anon_sym_equals] = ACTIONS(7025), - [anon_sym_by] = ACTIONS(7025), - [anon_sym_as] = ACTIONS(7025), - [anon_sym_is] = ACTIONS(7025), - [anon_sym_DASH_GT] = ACTIONS(7025), - [anon_sym_with] = ACTIONS(7025), - [aux_sym_preproc_if_token3] = ACTIONS(7025), - [aux_sym_preproc_else_token1] = ACTIONS(7025), - [aux_sym_preproc_elif_token1] = ACTIONS(7025), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5308), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -642364,6 +633870,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5049] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5049), [sym_preproc_endregion] = STATE(5049), [sym_preproc_line] = STATE(5049), @@ -642373,56 +633894,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5049), [sym_preproc_define] = STATE(5049), [sym_preproc_undef] = STATE(5049), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LBRACK] = ACTIONS(6067), - [anon_sym_COLON] = ACTIONS(6067), - [anon_sym_COMMA] = ACTIONS(6067), - [anon_sym_RBRACK] = ACTIONS(6067), - [anon_sym_LPAREN] = ACTIONS(6067), - [anon_sym_RPAREN] = ACTIONS(6067), - [anon_sym_RBRACE] = ACTIONS(6067), - [anon_sym_LT] = ACTIONS(6069), - [anon_sym_GT] = ACTIONS(6069), - [anon_sym_in] = 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_EQ_GT] = ACTIONS(6067), - [anon_sym_switch] = ACTIONS(6067), - [anon_sym_when] = ACTIONS(6067), - [anon_sym_DOT_DOT] = ACTIONS(6067), - [anon_sym_and] = ACTIONS(6067), - [anon_sym_or] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [sym_op_coalescing] = ACTIONS(6067), - [anon_sym_on] = ACTIONS(6067), - [anon_sym_equals] = ACTIONS(6067), - [anon_sym_by] = ACTIONS(6067), - [anon_sym_as] = ACTIONS(6067), - [anon_sym_is] = ACTIONS(6067), - [anon_sym_DASH_GT] = ACTIONS(6067), - [anon_sym_with] = ACTIONS(6067), - [aux_sym_preproc_if_token3] = ACTIONS(6067), - [aux_sym_preproc_else_token1] = ACTIONS(6067), - [aux_sym_preproc_elif_token1] = ACTIONS(6067), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_QMARK] = ACTIONS(5302), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5300), + [anon_sym_GT_EQ] = ACTIONS(5300), + [anon_sym_EQ_EQ] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5300), + [anon_sym_AMP_AMP] = ACTIONS(5300), + [anon_sym_PIPE_PIPE] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(5302), + [sym_op_bitwise_or] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5300), + [sym_op_left_shift] = ACTIONS(5300), + [sym_op_right_shift] = ACTIONS(5302), + [sym_op_unsigned_right_shift] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5300), + [anon_sym_as] = ACTIONS(5300), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -642435,6 +633940,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5050] = { + [sym_identifier] = STATE(7900), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(5050), [sym_preproc_endregion] = STATE(5050), [sym_preproc_line] = STATE(5050), @@ -642444,56 +633951,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5050), [sym_preproc_define] = STATE(5050), [sym_preproc_undef] = STATE(5050), - [anon_sym_SEMI] = ACTIONS(6166), - [anon_sym_LBRACK] = ACTIONS(6166), - [anon_sym_COLON] = ACTIONS(6166), - [anon_sym_COMMA] = ACTIONS(6166), - [anon_sym_RBRACK] = ACTIONS(6166), - [anon_sym_LPAREN] = ACTIONS(6166), - [anon_sym_RPAREN] = ACTIONS(6166), - [anon_sym_RBRACE] = ACTIONS(6166), - [anon_sym_LT] = ACTIONS(6168), - [anon_sym_GT] = ACTIONS(6168), - [anon_sym_in] = ACTIONS(6166), - [anon_sym_QMARK] = ACTIONS(6168), - [anon_sym_BANG] = ACTIONS(6168), - [anon_sym_PLUS_PLUS] = ACTIONS(6166), - [anon_sym_DASH_DASH] = ACTIONS(6166), - [anon_sym_PLUS] = ACTIONS(6168), - [anon_sym_DASH] = ACTIONS(6168), - [anon_sym_STAR] = ACTIONS(6166), - [anon_sym_SLASH] = ACTIONS(6168), - [anon_sym_PERCENT] = ACTIONS(6166), - [anon_sym_CARET] = ACTIONS(6166), - [anon_sym_PIPE] = ACTIONS(6168), - [anon_sym_AMP] = ACTIONS(6168), - [anon_sym_LT_LT] = ACTIONS(6166), - [anon_sym_GT_GT] = ACTIONS(6168), - [anon_sym_GT_GT_GT] = ACTIONS(6166), - [anon_sym_EQ_EQ] = ACTIONS(6166), - [anon_sym_BANG_EQ] = ACTIONS(6166), - [anon_sym_GT_EQ] = ACTIONS(6166), - [anon_sym_LT_EQ] = ACTIONS(6166), - [anon_sym_DOT] = ACTIONS(6168), - [anon_sym_EQ_GT] = ACTIONS(6166), - [anon_sym_switch] = ACTIONS(6166), - [anon_sym_when] = ACTIONS(6166), - [anon_sym_DOT_DOT] = ACTIONS(6166), - [anon_sym_and] = ACTIONS(6166), - [anon_sym_or] = ACTIONS(6166), - [anon_sym_AMP_AMP] = ACTIONS(6166), - [anon_sym_PIPE_PIPE] = ACTIONS(6166), - [sym_op_coalescing] = ACTIONS(6166), - [anon_sym_on] = ACTIONS(6166), - [anon_sym_equals] = ACTIONS(6166), - [anon_sym_by] = ACTIONS(6166), - [anon_sym_as] = ACTIONS(6166), - [anon_sym_is] = ACTIONS(6166), - [anon_sym_DASH_GT] = ACTIONS(6166), - [anon_sym_with] = ACTIONS(6166), - [aux_sym_preproc_if_token3] = ACTIONS(6166), - [aux_sym_preproc_else_token1] = ACTIONS(6166), - [aux_sym_preproc_elif_token1] = ACTIONS(6166), + [sym__identifier_token] = ACTIONS(7638), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(7642), + [anon_sym_global] = ACTIONS(7642), + [anon_sym_unsafe] = ACTIONS(7646), + [anon_sym_static] = ACTIONS(7646), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(7642), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(7642), + [anon_sym_notnull] = ACTIONS(7642), + [anon_sym_unmanaged] = ACTIONS(7642), + [anon_sym_scoped] = ACTIONS(7642), + [anon_sym_var] = ACTIONS(7642), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(7642), + [anon_sym_when] = ACTIONS(7642), + [anon_sym_from] = ACTIONS(7642), + [anon_sym_into] = ACTIONS(7642), + [anon_sym_join] = ACTIONS(7642), + [anon_sym_on] = ACTIONS(7642), + [anon_sym_equals] = ACTIONS(7642), + [anon_sym_let] = ACTIONS(7642), + [anon_sym_orderby] = ACTIONS(7642), + [anon_sym_ascending] = ACTIONS(7642), + [anon_sym_descending] = ACTIONS(7642), + [anon_sym_group] = ACTIONS(7642), + [anon_sym_by] = ACTIONS(7642), + [anon_sym_select] = ACTIONS(7642), + [sym_grit_metavariable] = ACTIONS(7649), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -642506,6 +634010,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5051] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(5051), [sym_preproc_endregion] = STATE(5051), [sym_preproc_line] = STATE(5051), @@ -642515,56 +634034,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5051), [sym_preproc_define] = STATE(5051), [sym_preproc_undef] = STATE(5051), - [anon_sym_SEMI] = ACTIONS(5999), - [anon_sym_LBRACK] = ACTIONS(5999), - [anon_sym_COLON] = ACTIONS(5999), - [anon_sym_COMMA] = ACTIONS(5999), - [anon_sym_RBRACK] = ACTIONS(5999), - [anon_sym_LPAREN] = ACTIONS(5999), - [anon_sym_RPAREN] = ACTIONS(5999), - [anon_sym_RBRACE] = ACTIONS(5999), - [anon_sym_LT] = ACTIONS(6001), - [anon_sym_GT] = ACTIONS(6001), - [anon_sym_in] = 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_EQ_GT] = ACTIONS(5999), - [anon_sym_switch] = ACTIONS(5999), - [anon_sym_when] = ACTIONS(5999), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_and] = ACTIONS(5999), - [anon_sym_or] = ACTIONS(5999), - [anon_sym_AMP_AMP] = ACTIONS(5999), - [anon_sym_PIPE_PIPE] = ACTIONS(5999), - [sym_op_coalescing] = ACTIONS(5999), - [anon_sym_on] = ACTIONS(5999), - [anon_sym_equals] = ACTIONS(5999), - [anon_sym_by] = ACTIONS(5999), - [anon_sym_as] = ACTIONS(5999), - [anon_sym_is] = ACTIONS(5999), - [anon_sym_DASH_GT] = ACTIONS(5999), - [anon_sym_with] = ACTIONS(5999), - [aux_sym_preproc_if_token3] = ACTIONS(5999), - [aux_sym_preproc_else_token1] = ACTIONS(5999), - [aux_sym_preproc_elif_token1] = ACTIONS(5999), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7270), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7272), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7274), + [sym_op_right_shift] = ACTIONS(7276), + [sym_op_unsigned_right_shift] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(7282), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7284), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -642577,6 +634080,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5052] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5052), [sym_preproc_endregion] = STATE(5052), [sym_preproc_line] = STATE(5052), @@ -642586,56 +634104,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5052), [sym_preproc_define] = STATE(5052), [sym_preproc_undef] = STATE(5052), - [anon_sym_SEMI] = ACTIONS(6357), - [anon_sym_LBRACK] = ACTIONS(6357), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_COMMA] = ACTIONS(6357), - [anon_sym_RBRACK] = ACTIONS(6357), - [anon_sym_LPAREN] = ACTIONS(6357), - [anon_sym_RPAREN] = ACTIONS(6357), - [anon_sym_RBRACE] = ACTIONS(6357), - [anon_sym_LT] = ACTIONS(6359), - [anon_sym_GT] = ACTIONS(6359), - [anon_sym_in] = ACTIONS(6357), - [anon_sym_QMARK] = ACTIONS(6359), - [anon_sym_BANG] = ACTIONS(6359), - [anon_sym_PLUS_PLUS] = ACTIONS(6357), - [anon_sym_DASH_DASH] = ACTIONS(6357), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6357), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_PERCENT] = ACTIONS(6357), - [anon_sym_CARET] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6359), - [anon_sym_AMP] = ACTIONS(6359), - [anon_sym_LT_LT] = ACTIONS(6357), - [anon_sym_GT_GT] = ACTIONS(6359), - [anon_sym_GT_GT_GT] = ACTIONS(6357), - [anon_sym_EQ_EQ] = ACTIONS(6357), - [anon_sym_BANG_EQ] = ACTIONS(6357), - [anon_sym_GT_EQ] = ACTIONS(6357), - [anon_sym_LT_EQ] = ACTIONS(6357), - [anon_sym_DOT] = ACTIONS(6359), - [anon_sym_EQ_GT] = ACTIONS(6357), - [anon_sym_switch] = ACTIONS(6357), - [anon_sym_when] = ACTIONS(6357), - [anon_sym_DOT_DOT] = ACTIONS(6357), - [anon_sym_and] = ACTIONS(6357), - [anon_sym_or] = ACTIONS(6357), - [anon_sym_AMP_AMP] = ACTIONS(6357), - [anon_sym_PIPE_PIPE] = ACTIONS(6357), - [sym_op_coalescing] = ACTIONS(6357), - [anon_sym_on] = ACTIONS(6357), - [anon_sym_equals] = ACTIONS(6357), - [anon_sym_by] = ACTIONS(6357), - [anon_sym_as] = ACTIONS(6357), - [anon_sym_is] = ACTIONS(6357), - [anon_sym_DASH_GT] = ACTIONS(6357), - [anon_sym_with] = ACTIONS(6357), - [aux_sym_preproc_if_token3] = ACTIONS(6357), - [aux_sym_preproc_else_token1] = ACTIONS(6357), - [aux_sym_preproc_elif_token1] = ACTIONS(6357), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5336), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -642648,6 +634150,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5053] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(5053), [sym_preproc_endregion] = STATE(5053), [sym_preproc_line] = STATE(5053), @@ -642657,56 +634174,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5053), [sym_preproc_define] = STATE(5053), [sym_preproc_undef] = STATE(5053), - [anon_sym_SEMI] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(6389), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_COMMA] = ACTIONS(6389), - [anon_sym_RBRACK] = ACTIONS(6389), - [anon_sym_LPAREN] = ACTIONS(6389), - [anon_sym_RPAREN] = ACTIONS(6389), - [anon_sym_RBRACE] = ACTIONS(6389), - [anon_sym_LT] = ACTIONS(6391), - [anon_sym_GT] = ACTIONS(6391), - [anon_sym_in] = ACTIONS(6389), - [anon_sym_QMARK] = ACTIONS(6391), - [anon_sym_BANG] = ACTIONS(6391), - [anon_sym_PLUS_PLUS] = ACTIONS(6389), - [anon_sym_DASH_DASH] = ACTIONS(6389), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6389), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_PERCENT] = ACTIONS(6389), - [anon_sym_CARET] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6391), - [anon_sym_AMP] = ACTIONS(6391), - [anon_sym_LT_LT] = ACTIONS(6389), - [anon_sym_GT_GT] = ACTIONS(6391), - [anon_sym_GT_GT_GT] = ACTIONS(6389), - [anon_sym_EQ_EQ] = ACTIONS(6389), - [anon_sym_BANG_EQ] = ACTIONS(6389), - [anon_sym_GT_EQ] = ACTIONS(6389), - [anon_sym_LT_EQ] = ACTIONS(6389), - [anon_sym_DOT] = ACTIONS(6391), - [anon_sym_EQ_GT] = ACTIONS(6389), - [anon_sym_switch] = ACTIONS(6389), - [anon_sym_when] = ACTIONS(6389), - [anon_sym_DOT_DOT] = ACTIONS(6389), - [anon_sym_and] = ACTIONS(6389), - [anon_sym_or] = ACTIONS(6389), - [anon_sym_AMP_AMP] = ACTIONS(6389), - [anon_sym_PIPE_PIPE] = ACTIONS(6389), - [sym_op_coalescing] = ACTIONS(6389), - [anon_sym_on] = ACTIONS(6389), - [anon_sym_equals] = ACTIONS(6389), - [anon_sym_by] = ACTIONS(6389), - [anon_sym_as] = ACTIONS(6389), - [anon_sym_is] = ACTIONS(6389), - [anon_sym_DASH_GT] = ACTIONS(6389), - [anon_sym_with] = ACTIONS(6389), - [aux_sym_preproc_if_token3] = ACTIONS(6389), - [aux_sym_preproc_else_token1] = ACTIONS(6389), - [aux_sym_preproc_elif_token1] = ACTIONS(6389), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7542), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(7556), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(7826), + [anon_sym_as] = ACTIONS(7558), + [anon_sym_is] = ACTIONS(7560), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -642719,6 +634220,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5054] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(5054), [sym_preproc_endregion] = STATE(5054), [sym_preproc_line] = STATE(5054), @@ -642728,56 +634244,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5054), [sym_preproc_define] = STATE(5054), [sym_preproc_undef] = STATE(5054), - [anon_sym_SEMI] = ACTIONS(6341), - [anon_sym_LBRACK] = ACTIONS(6341), - [anon_sym_COLON] = ACTIONS(6341), - [anon_sym_COMMA] = ACTIONS(6341), - [anon_sym_RBRACK] = ACTIONS(6341), - [anon_sym_LPAREN] = ACTIONS(6341), - [anon_sym_RPAREN] = ACTIONS(6341), - [anon_sym_RBRACE] = ACTIONS(6341), - [anon_sym_LT] = ACTIONS(6343), - [anon_sym_GT] = ACTIONS(6343), - [anon_sym_in] = ACTIONS(6341), - [anon_sym_QMARK] = ACTIONS(6343), - [anon_sym_BANG] = ACTIONS(6343), - [anon_sym_PLUS_PLUS] = ACTIONS(6341), - [anon_sym_DASH_DASH] = ACTIONS(6341), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6341), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_PERCENT] = ACTIONS(6341), - [anon_sym_CARET] = ACTIONS(6341), - [anon_sym_PIPE] = ACTIONS(6343), - [anon_sym_AMP] = ACTIONS(6343), - [anon_sym_LT_LT] = ACTIONS(6341), - [anon_sym_GT_GT] = ACTIONS(6343), - [anon_sym_GT_GT_GT] = ACTIONS(6341), - [anon_sym_EQ_EQ] = ACTIONS(6341), - [anon_sym_BANG_EQ] = ACTIONS(6341), - [anon_sym_GT_EQ] = ACTIONS(6341), - [anon_sym_LT_EQ] = ACTIONS(6341), - [anon_sym_DOT] = ACTIONS(6343), - [anon_sym_EQ_GT] = ACTIONS(6341), - [anon_sym_switch] = ACTIONS(6341), - [anon_sym_when] = ACTIONS(6341), - [anon_sym_DOT_DOT] = ACTIONS(6341), - [anon_sym_and] = ACTIONS(6341), - [anon_sym_or] = ACTIONS(6341), - [anon_sym_AMP_AMP] = ACTIONS(6341), - [anon_sym_PIPE_PIPE] = ACTIONS(6341), - [sym_op_coalescing] = ACTIONS(6341), - [anon_sym_on] = ACTIONS(6341), - [anon_sym_equals] = ACTIONS(6341), - [anon_sym_by] = ACTIONS(6341), - [anon_sym_as] = ACTIONS(6341), - [anon_sym_is] = ACTIONS(6341), - [anon_sym_DASH_GT] = ACTIONS(6341), - [anon_sym_with] = ACTIONS(6341), - [aux_sym_preproc_if_token3] = ACTIONS(6341), - [aux_sym_preproc_else_token1] = ACTIONS(6341), - [aux_sym_preproc_elif_token1] = ACTIONS(6341), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7300), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7306), + [sym_op_right_shift] = ACTIONS(7308), + [sym_op_unsigned_right_shift] = ACTIONS(7306), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(7314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(7828), + [anon_sym_as] = ACTIONS(7316), + [anon_sym_is] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -642790,6 +634290,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5055] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(5055), [sym_preproc_endregion] = STATE(5055), [sym_preproc_line] = STATE(5055), @@ -642799,56 +634314,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5055), [sym_preproc_define] = STATE(5055), [sym_preproc_undef] = STATE(5055), - [anon_sym_SEMI] = ACTIONS(6321), - [anon_sym_LBRACK] = ACTIONS(6321), - [anon_sym_COLON] = ACTIONS(6321), - [anon_sym_COMMA] = ACTIONS(6321), - [anon_sym_RBRACK] = ACTIONS(6321), - [anon_sym_LPAREN] = ACTIONS(6321), - [anon_sym_RPAREN] = ACTIONS(6321), - [anon_sym_RBRACE] = ACTIONS(6321), - [anon_sym_LT] = ACTIONS(6323), - [anon_sym_GT] = ACTIONS(6323), - [anon_sym_in] = ACTIONS(6321), - [anon_sym_QMARK] = ACTIONS(6323), - [anon_sym_BANG] = ACTIONS(6323), - [anon_sym_PLUS_PLUS] = ACTIONS(6321), - [anon_sym_DASH_DASH] = ACTIONS(6321), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6321), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_PERCENT] = ACTIONS(6321), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_AMP] = ACTIONS(6323), - [anon_sym_LT_LT] = ACTIONS(6321), - [anon_sym_GT_GT] = ACTIONS(6323), - [anon_sym_GT_GT_GT] = ACTIONS(6321), - [anon_sym_EQ_EQ] = ACTIONS(6321), - [anon_sym_BANG_EQ] = ACTIONS(6321), - [anon_sym_GT_EQ] = ACTIONS(6321), - [anon_sym_LT_EQ] = ACTIONS(6321), - [anon_sym_DOT] = ACTIONS(6323), - [anon_sym_EQ_GT] = ACTIONS(6321), - [anon_sym_switch] = ACTIONS(6321), - [anon_sym_when] = ACTIONS(6321), - [anon_sym_DOT_DOT] = ACTIONS(6321), - [anon_sym_and] = ACTIONS(6321), - [anon_sym_or] = ACTIONS(6321), - [anon_sym_AMP_AMP] = ACTIONS(6321), - [anon_sym_PIPE_PIPE] = ACTIONS(6321), - [sym_op_coalescing] = ACTIONS(6321), - [anon_sym_on] = ACTIONS(6321), - [anon_sym_equals] = ACTIONS(6321), - [anon_sym_by] = ACTIONS(6321), - [anon_sym_as] = ACTIONS(6321), - [anon_sym_is] = ACTIONS(6321), - [anon_sym_DASH_GT] = ACTIONS(6321), - [anon_sym_with] = ACTIONS(6321), - [aux_sym_preproc_if_token3] = ACTIONS(6321), - [aux_sym_preproc_else_token1] = ACTIONS(6321), - [aux_sym_preproc_elif_token1] = ACTIONS(6321), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7830), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -642861,24 +634360,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5056] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7137), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1879), + [sym_op_lte] = STATE(1879), + [sym_op_eq] = STATE(1881), + [sym_op_neq] = STATE(1881), + [sym_op_gt] = STATE(1879), + [sym_op_gte] = STATE(1879), + [sym_op_and] = STATE(1882), + [sym_op_or] = STATE(1884), + [sym_op_bitwise_and] = STATE(1888), + [sym_op_bitwise_xor] = STATE(1890), + [sym_op_plus] = STATE(1891), + [sym_op_minus] = STATE(1891), + [sym_op_multiply] = STATE(1876), [sym_preproc_region] = STATE(5056), [sym_preproc_endregion] = STATE(5056), [sym_preproc_line] = STATE(5056), @@ -642888,37 +634384,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5056), [sym_preproc_define] = STATE(5056), [sym_preproc_undef] = STATE(5056), - [aux_sym_type_argument_list_repeat1] = STATE(7142), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5979), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7222), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_SEMI] = ACTIONS(7832), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6513), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6400), + [sym_op_right_shift] = ACTIONS(6402), + [sym_op_unsigned_right_shift] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6404), + [sym_op_modulo] = ACTIONS(6406), + [sym_op_coalescing] = ACTIONS(6515), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -642931,6 +634430,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5057] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5057), [sym_preproc_endregion] = STATE(5057), [sym_preproc_line] = STATE(5057), @@ -642940,55 +634454,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5057), [sym_preproc_define] = STATE(5057), [sym_preproc_undef] = STATE(5057), - [anon_sym_EQ] = ACTIONS(7224), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_EQ_GT] = ACTIONS(5684), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7226), - [anon_sym_DASH_EQ] = ACTIONS(7226), - [anon_sym_STAR_EQ] = ACTIONS(7226), - [anon_sym_SLASH_EQ] = ACTIONS(7226), - [anon_sym_PERCENT_EQ] = ACTIONS(7226), - [anon_sym_AMP_EQ] = ACTIONS(7226), - [anon_sym_CARET_EQ] = ACTIONS(7226), - [anon_sym_PIPE_EQ] = ACTIONS(7226), - [anon_sym_LT_LT_EQ] = ACTIONS(7226), - [anon_sym_GT_GT_EQ] = ACTIONS(7226), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7226), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7226), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(5296), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -643001,25 +634500,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5058] = { - [sym_argument_list] = STATE(4727), - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4643), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4750), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym_tuple_pattern] = STATE(7102), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6335), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_identifier] = STATE(6044), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5058), [sym_preproc_endregion] = STATE(5058), [sym_preproc_line] = STATE(5058), @@ -643029,93 +634529,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5058), [sym_preproc_define] = STATE(5058), [sym_preproc_undef] = STATE(5058), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(7228), - [anon_sym_LPAREN] = ACTIONS(7230), - [anon_sym_ref] = ACTIONS(4472), - [anon_sym_LBRACE] = ACTIONS(7232), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7236), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5059] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7312), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5059), - [sym_preproc_endregion] = STATE(5059), - [sym_preproc_line] = STATE(5059), - [sym_preproc_pragma] = STATE(5059), - [sym_preproc_nullable] = STATE(5059), - [sym_preproc_error] = STATE(5059), - [sym_preproc_warning] = STATE(5059), - [sym_preproc_define] = STATE(5059), - [sym_preproc_undef] = STATE(5059), - [aux_sym_type_argument_list_repeat1] = STATE(7308), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5979), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), + [anon_sym_LPAREN] = ACTIONS(5224), + [anon_sym_ref] = ACTIONS(3900), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7242), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), + [anon_sym_scoped] = ACTIONS(7834), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), + [sym_discard] = ACTIONS(5228), [anon_sym_from] = ACTIONS(3211), [anon_sym_into] = ACTIONS(3211), [anon_sym_join] = ACTIONS(3211), @@ -643128,7 +634557,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = 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), + }, + [5059] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), + [sym_preproc_region] = STATE(5059), + [sym_preproc_endregion] = STATE(5059), + [sym_preproc_line] = STATE(5059), + [sym_preproc_pragma] = STATE(5059), + [sym_preproc_nullable] = STATE(5059), + [sym_preproc_error] = STATE(5059), + [sym_preproc_warning] = STATE(5059), + [sym_preproc_define] = STATE(5059), + [sym_preproc_undef] = STATE(5059), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(6527), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6203), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(6213), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -643141,24 +634640,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5060] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7229), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(5060), [sym_preproc_endregion] = STATE(5060), [sym_preproc_line] = STATE(5060), @@ -643168,37 +634664,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5060), [sym_preproc_define] = STATE(5060), [sym_preproc_undef] = STATE(5060), - [aux_sym_type_argument_list_repeat1] = STATE(7077), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5979), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7244), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_in] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -643211,25 +634710,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5061] = { - [sym_argument_list] = STATE(4648), - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4604), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4640), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1904), + [sym_op_lte] = STATE(1904), + [sym_op_eq] = STATE(1905), + [sym_op_neq] = STATE(1905), + [sym_op_gt] = STATE(1904), + [sym_op_gte] = STATE(1904), + [sym_op_and] = STATE(1912), + [sym_op_or] = STATE(1915), + [sym_op_bitwise_and] = STATE(1914), + [sym_op_bitwise_xor] = STATE(1913), + [sym_op_plus] = STATE(1910), + [sym_op_minus] = STATE(1910), + [sym_op_multiply] = STATE(1902), [sym_preproc_region] = STATE(5061), [sym_preproc_endregion] = STATE(5061), [sym_preproc_line] = STATE(5061), @@ -643239,36 +634734,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5061), [sym_preproc_define] = STATE(5061), [sym_preproc_undef] = STATE(5061), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(7246), - [anon_sym_LPAREN] = ACTIONS(7248), - [anon_sym_ref] = ACTIONS(4522), - [anon_sym_LBRACE] = ACTIONS(7250), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7254), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_in] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -643281,25 +634780,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5062] = { - [sym_argument_list] = STATE(4727), - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4643), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4750), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(897), + [sym_op_lte] = STATE(897), + [sym_op_eq] = STATE(894), + [sym_op_neq] = STATE(894), + [sym_op_gt] = STATE(897), + [sym_op_gte] = STATE(897), + [sym_op_and] = STATE(893), + [sym_op_or] = STATE(892), + [sym_op_bitwise_and] = STATE(891), + [sym_op_bitwise_xor] = STATE(890), + [sym_op_plus] = STATE(888), + [sym_op_minus] = STATE(888), + [sym_op_multiply] = STATE(902), [sym_preproc_region] = STATE(5062), [sym_preproc_endregion] = STATE(5062), [sym_preproc_line] = STATE(5062), @@ -643309,36 +634804,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5062), [sym_preproc_define] = STATE(5062), [sym_preproc_undef] = STATE(5062), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(7228), - [anon_sym_LPAREN] = ACTIONS(7230), - [anon_sym_ref] = ACTIONS(4485), - [anon_sym_LBRACE] = ACTIONS(7232), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7260), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7270), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_EQ_GT] = ACTIONS(5332), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7272), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7274), + [sym_op_right_shift] = ACTIONS(7276), + [sym_op_unsigned_right_shift] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7278), + [sym_op_modulo] = ACTIONS(7280), + [sym_op_coalescing] = ACTIONS(7282), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(7284), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -643351,25 +634850,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5063] = { - [sym_argument_list] = STATE(5116), - [sym__name] = STATE(2457), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_type] = STATE(4975), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5119), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_identifier] = STATE(2392), - [sym__reserved_identifier] = STATE(2395), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(5063), [sym_preproc_endregion] = STATE(5063), [sym_preproc_line] = STATE(5063), @@ -643379,36 +634874,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5063), [sym_preproc_define] = STATE(5063), [sym_preproc_undef] = STATE(5063), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(7262), - [anon_sym_LPAREN] = ACTIONS(7264), - [anon_sym_ref] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(7266), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_where] = ACTIONS(4450), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_scoped] = ACTIONS(7268), - [anon_sym_var] = ACTIONS(7270), - [sym_predefined_type] = ACTIONS(7272), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_from] = ACTIONS(4450), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4450), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4450), - [anon_sym_orderby] = ACTIONS(4450), - [anon_sym_ascending] = ACTIONS(4450), - [anon_sym_descending] = ACTIONS(4450), - [anon_sym_group] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [sym_grit_metavariable] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -643421,25 +634920,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5064] = { - [sym_argument_list] = STATE(4727), - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4643), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4750), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(5064), [sym_preproc_endregion] = STATE(5064), [sym_preproc_line] = STATE(5064), @@ -643449,36 +634944,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5064), [sym_preproc_define] = STATE(5064), [sym_preproc_undef] = STATE(5064), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(7228), - [anon_sym_LPAREN] = ACTIONS(7230), - [anon_sym_ref] = ACTIONS(4386), - [anon_sym_LBRACE] = ACTIONS(7232), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7276), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7838), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -643491,25 +634990,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5065] = { - [sym_argument_list] = STATE(4648), - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4604), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4640), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(5065), [sym_preproc_endregion] = STATE(5065), [sym_preproc_line] = STATE(5065), @@ -643519,36 +635014,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5065), [sym_preproc_define] = STATE(5065), [sym_preproc_undef] = STATE(5065), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(7246), - [anon_sym_LPAREN] = ACTIONS(7248), - [anon_sym_ref] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(7250), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7278), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7840), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -643561,25 +635060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5066] = { - [sym_argument_list] = STATE(3468), - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4928), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3742), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym_initializer_expression] = STATE(5326), [sym_preproc_region] = STATE(5066), [sym_preproc_endregion] = STATE(5066), [sym_preproc_line] = STATE(5066), @@ -643589,36 +635070,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5066), [sym_preproc_define] = STATE(5066), [sym_preproc_undef] = STATE(5066), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_ref] = ACTIONS(4590), - [anon_sym_LBRACE] = ACTIONS(4369), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7280), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5628), + [anon_sym_LPAREN] = ACTIONS(5628), + [anon_sym_LBRACE] = ACTIONS(7842), + [anon_sym_LT] = ACTIONS(5634), + [anon_sym_GT] = ACTIONS(5634), + [anon_sym_where] = ACTIONS(5628), + [anon_sym_QMARK] = ACTIONS(7845), + [anon_sym_DOT] = ACTIONS(5634), + [anon_sym_STAR] = ACTIONS(5628), + [anon_sym_switch] = ACTIONS(5628), + [anon_sym_DOT_DOT] = ACTIONS(5628), + [anon_sym_LT_EQ] = ACTIONS(5628), + [anon_sym_GT_EQ] = ACTIONS(5628), + [anon_sym_and] = ACTIONS(5628), + [anon_sym_or] = ACTIONS(5634), + [anon_sym_EQ_EQ] = ACTIONS(5628), + [anon_sym_BANG_EQ] = ACTIONS(5628), + [anon_sym_AMP_AMP] = ACTIONS(5628), + [anon_sym_PIPE_PIPE] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(5634), + [sym_op_bitwise_or] = ACTIONS(5634), + [anon_sym_CARET] = ACTIONS(5628), + [sym_op_left_shift] = ACTIONS(5628), + [sym_op_right_shift] = ACTIONS(5634), + [sym_op_unsigned_right_shift] = ACTIONS(5628), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [sym_op_divide] = ACTIONS(5634), + [sym_op_modulo] = ACTIONS(5628), + [sym_op_coalescing] = ACTIONS(5628), + [anon_sym_BANG] = ACTIONS(5634), + [anon_sym_PLUS_PLUS] = ACTIONS(5628), + [anon_sym_DASH_DASH] = ACTIONS(5628), + [anon_sym_from] = ACTIONS(5628), + [anon_sym_into] = ACTIONS(5628), + [anon_sym_join] = ACTIONS(5628), + [anon_sym_let] = ACTIONS(5628), + [anon_sym_orderby] = ACTIONS(5628), + [anon_sym_ascending] = ACTIONS(5628), + [anon_sym_descending] = ACTIONS(5628), + [anon_sym_group] = ACTIONS(5628), + [anon_sym_select] = ACTIONS(5628), + [anon_sym_as] = ACTIONS(5634), + [anon_sym_is] = ACTIONS(5628), + [anon_sym_DASH_GT] = ACTIONS(5628), + [anon_sym_with] = ACTIONS(5628), + [sym_grit_metavariable] = ACTIONS(5628), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -643631,24 +635130,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5067] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7114), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5067), [sym_preproc_endregion] = STATE(5067), [sym_preproc_line] = STATE(5067), @@ -643658,37 +635154,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5067), [sym_preproc_define] = STATE(5067), [sym_preproc_undef] = STATE(5067), - [aux_sym_type_argument_list_repeat1] = STATE(7116), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5979), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7282), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7849), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -643701,25 +635200,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5068] = { - [sym_argument_list] = STATE(5571), - [sym__name] = STATE(5593), - [sym_alias_qualified_name] = STATE(5609), - [sym__simple_name] = STATE(5609), - [sym_qualified_name] = STATE(5609), - [sym_generic_name] = STATE(5595), - [sym_type] = STATE(5537), - [sym_implicit_type] = STATE(5606), - [sym_array_type] = STATE(5578), - [sym__array_base_type] = STATE(7386), - [sym_nullable_type] = STATE(5586), - [sym_pointer_type] = STATE(5586), - [sym__pointer_base_type] = STATE(8114), - [sym_function_pointer_type] = STATE(5586), - [sym_ref_type] = STATE(5606), - [sym_scoped_type] = STATE(5606), - [sym_tuple_type] = STATE(5591), - [sym_identifier] = STATE(5549), - [sym__reserved_identifier] = STATE(5566), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(5068), [sym_preproc_endregion] = STATE(5068), [sym_preproc_line] = STATE(5068), @@ -643729,36 +635224,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5068), [sym_preproc_define] = STATE(5068), [sym_preproc_undef] = STATE(5068), - [sym__identifier_token] = ACTIONS(4318), - [anon_sym_alias] = ACTIONS(4320), - [anon_sym_global] = ACTIONS(4320), - [anon_sym_LBRACK] = ACTIONS(7284), - [anon_sym_LPAREN] = ACTIONS(7286), - [anon_sym_ref] = ACTIONS(4359), - [anon_sym_LBRACE] = ACTIONS(7288), - [anon_sym_delegate] = ACTIONS(7290), - [anon_sym_file] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_notnull] = ACTIONS(4320), - [anon_sym_unmanaged] = ACTIONS(4320), - [anon_sym_scoped] = ACTIONS(7292), - [anon_sym_var] = ACTIONS(7294), - [sym_predefined_type] = ACTIONS(7296), - [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), - [sym_grit_metavariable] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7851), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -643771,26 +635270,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5069] = { - [sym_tuple_pattern] = STATE(7110), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6355), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_identifier] = STATE(6019), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5069), [sym_preproc_endregion] = STATE(5069), [sym_preproc_line] = STATE(5069), @@ -643800,35 +635279,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5069), [sym_preproc_define] = STATE(5069), [sym_preproc_undef] = STATE(5069), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(5466), - [anon_sym_ref] = ACTIONS(3900), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7298), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [sym_discard] = ACTIONS(5470), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_EQ] = ACTIONS(7853), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7855), + [anon_sym_DASH_EQ] = ACTIONS(7855), + [anon_sym_STAR_EQ] = ACTIONS(7855), + [anon_sym_SLASH_EQ] = ACTIONS(7855), + [anon_sym_PERCENT_EQ] = ACTIONS(7855), + [anon_sym_AMP_EQ] = ACTIONS(7855), + [anon_sym_CARET_EQ] = ACTIONS(7855), + [anon_sym_PIPE_EQ] = ACTIONS(7855), + [anon_sym_LT_LT_EQ] = ACTIONS(7855), + [anon_sym_GT_GT_EQ] = ACTIONS(7855), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7855), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7855), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_on] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -643841,6 +635340,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5070] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5070), [sym_preproc_endregion] = STATE(5070), [sym_preproc_line] = STATE(5070), @@ -643850,55 +635364,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5070), [sym_preproc_define] = STATE(5070), [sym_preproc_undef] = STATE(5070), - [anon_sym_EQ] = ACTIONS(7300), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7302), - [anon_sym_DASH_EQ] = ACTIONS(7302), - [anon_sym_STAR_EQ] = ACTIONS(7302), - [anon_sym_SLASH_EQ] = ACTIONS(7302), - [anon_sym_PERCENT_EQ] = ACTIONS(7302), - [anon_sym_AMP_EQ] = ACTIONS(7302), - [anon_sym_CARET_EQ] = ACTIONS(7302), - [anon_sym_PIPE_EQ] = ACTIONS(7302), - [anon_sym_LT_LT_EQ] = ACTIONS(7302), - [anon_sym_GT_GT_EQ] = ACTIONS(7302), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7302), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7302), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_if_token3] = ACTIONS(5684), - [aux_sym_preproc_else_token1] = ACTIONS(5684), - [aux_sym_preproc_elif_token1] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7857), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -643911,6 +635410,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5071] = { + [sym_argument_list] = STATE(5571), + [sym__name] = STATE(5640), + [sym_alias_qualified_name] = STATE(5591), + [sym__simple_name] = STATE(5591), + [sym_qualified_name] = STATE(5591), + [sym_generic_name] = STATE(5632), + [sym_type] = STATE(5535), + [sym_implicit_type] = STATE(5601), + [sym_array_type] = STATE(5570), + [sym__array_base_type] = STATE(7416), + [sym_nullable_type] = STATE(5629), + [sym_pointer_type] = STATE(5629), + [sym__pointer_base_type] = STATE(8041), + [sym_function_pointer_type] = STATE(5629), + [sym_ref_type] = STATE(5601), + [sym_scoped_type] = STATE(5601), + [sym_tuple_type] = STATE(5626), + [sym_identifier] = STATE(5537), + [sym__reserved_identifier] = STATE(5554), [sym_preproc_region] = STATE(5071), [sym_preproc_endregion] = STATE(5071), [sym_preproc_line] = STATE(5071), @@ -643920,55 +635438,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5071), [sym_preproc_define] = STATE(5071), [sym_preproc_undef] = STATE(5071), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_COMMA] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4329), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(5949), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4331), - [anon_sym_GT_GT] = ACTIONS(4329), - [anon_sym_GT_GT_GT] = ACTIONS(4331), - [anon_sym_EQ_EQ] = ACTIONS(4331), - [anon_sym_BANG_EQ] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4331), - [anon_sym_LT_EQ] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(7304), - [anon_sym_EQ_GT] = ACTIONS(4331), - [anon_sym_switch] = ACTIONS(4331), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_AMP_AMP] = ACTIONS(4331), - [anon_sym_PIPE_PIPE] = ACTIONS(4331), - [sym_op_coalescing] = ACTIONS(4331), - [anon_sym_into] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_equals] = ACTIONS(4331), - [anon_sym_by] = ACTIONS(4331), - [anon_sym_as] = ACTIONS(4331), - [anon_sym_is] = ACTIONS(4331), - [anon_sym_DASH_GT] = ACTIONS(4331), - [anon_sym_with] = ACTIONS(4331), - [aux_sym_preproc_if_token3] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [sym__identifier_token] = ACTIONS(4318), + [anon_sym_alias] = ACTIONS(4320), + [anon_sym_global] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(7460), + [anon_sym_LPAREN] = ACTIONS(7462), + [anon_sym_ref] = ACTIONS(4333), + [anon_sym_LBRACE] = ACTIONS(7464), + [anon_sym_delegate] = ACTIONS(7466), + [anon_sym_file] = ACTIONS(4320), + [anon_sym_where] = ACTIONS(4320), + [anon_sym_notnull] = ACTIONS(4320), + [anon_sym_unmanaged] = ACTIONS(4320), + [anon_sym_scoped] = ACTIONS(7859), + [anon_sym_var] = ACTIONS(7470), + [sym_predefined_type] = ACTIONS(7472), + [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), + [sym_grit_metavariable] = ACTIONS(4327), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -643981,25 +635480,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5072] = { - [sym_argument_list] = STATE(3379), - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3328), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(5043), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(5072), [sym_preproc_endregion] = STATE(5072), [sym_preproc_line] = STATE(5072), @@ -644009,36 +635504,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5072), [sym_preproc_define] = STATE(5072), [sym_preproc_undef] = STATE(5072), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(7306), - [anon_sym_LPAREN] = ACTIONS(7308), - [anon_sym_ref] = ACTIONS(4572), - [anon_sym_LBRACE] = ACTIONS(7310), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7314), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7861), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -644051,25 +635550,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5073] = { - [sym_argument_list] = STATE(3379), - [sym__name] = STATE(5487), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3328), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(5462), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(5383), - [sym__reserved_identifier] = STATE(3398), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(5073), [sym_preproc_endregion] = STATE(5073), [sym_preproc_line] = STATE(5073), @@ -644079,36 +635574,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5073), [sym_preproc_define] = STATE(5073), [sym_preproc_undef] = STATE(5073), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(7306), - [anon_sym_LPAREN] = ACTIONS(7308), - [anon_sym_ref] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(7310), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7320), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7863), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -644121,6 +635620,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5074] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(5074), [sym_preproc_endregion] = STATE(5074), [sym_preproc_line] = STATE(5074), @@ -644130,55 +635644,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5074), [sym_preproc_define] = STATE(5074), [sym_preproc_undef] = STATE(5074), - [anon_sym_SEMI] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(4357), - [anon_sym_COLON] = ACTIONS(4357), - [anon_sym_COMMA] = ACTIONS(4357), - [anon_sym_RBRACK] = ACTIONS(4357), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym_RPAREN] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4357), - [anon_sym_LT] = ACTIONS(4355), - [anon_sym_GT] = ACTIONS(4355), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_PLUS_PLUS] = ACTIONS(4357), - [anon_sym_DASH_DASH] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4357), - [anon_sym_SLASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4357), - [anon_sym_CARET] = ACTIONS(4357), - [anon_sym_PIPE] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_LT] = ACTIONS(4357), - [anon_sym_GT_GT] = ACTIONS(4355), - [anon_sym_GT_GT_GT] = ACTIONS(4357), - [anon_sym_EQ_EQ] = ACTIONS(4357), - [anon_sym_BANG_EQ] = ACTIONS(4357), - [anon_sym_GT_EQ] = ACTIONS(4357), - [anon_sym_LT_EQ] = ACTIONS(4357), - [anon_sym_DOT] = ACTIONS(7304), - [anon_sym_EQ_GT] = ACTIONS(4357), - [anon_sym_switch] = ACTIONS(4357), - [anon_sym_DOT_DOT] = ACTIONS(4357), - [anon_sym_AMP_AMP] = ACTIONS(4357), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [sym_op_coalescing] = ACTIONS(4357), - [anon_sym_into] = ACTIONS(4357), - [anon_sym_on] = ACTIONS(4357), - [anon_sym_equals] = ACTIONS(4357), - [anon_sym_by] = ACTIONS(4357), - [anon_sym_as] = ACTIONS(4357), - [anon_sym_is] = ACTIONS(4357), - [anon_sym_DASH_GT] = ACTIONS(4357), - [anon_sym_with] = ACTIONS(4357), - [aux_sym_preproc_if_token3] = ACTIONS(4357), - [aux_sym_preproc_else_token1] = ACTIONS(4357), - [aux_sym_preproc_elif_token1] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_RPAREN] = ACTIONS(7865), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -644200,55 +635699,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5075), [sym_preproc_define] = STATE(5075), [sym_preproc_undef] = STATE(5075), - [sym__identifier_token] = ACTIONS(5558), - [anon_sym_extern] = ACTIONS(5558), - [anon_sym_alias] = ACTIONS(5558), - [anon_sym_global] = ACTIONS(5558), - [anon_sym_unsafe] = ACTIONS(5558), - [anon_sym_static] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5560), - [anon_sym_LPAREN] = ACTIONS(5560), - [anon_sym_ref] = ACTIONS(5558), - [anon_sym_delegate] = ACTIONS(5558), - [anon_sym_public] = ACTIONS(5558), - [anon_sym_private] = ACTIONS(5558), - [anon_sym_readonly] = ACTIONS(5558), - [anon_sym_abstract] = ACTIONS(5558), - [anon_sym_async] = ACTIONS(5558), - [anon_sym_const] = ACTIONS(5558), - [anon_sym_file] = ACTIONS(5558), - [anon_sym_fixed] = ACTIONS(5558), - [anon_sym_internal] = ACTIONS(5558), - [anon_sym_new] = ACTIONS(5558), - [anon_sym_override] = ACTIONS(5558), - [anon_sym_partial] = ACTIONS(5558), - [anon_sym_protected] = ACTIONS(5558), - [anon_sym_required] = ACTIONS(5558), - [anon_sym_sealed] = ACTIONS(5558), - [anon_sym_virtual] = ACTIONS(5558), - [anon_sym_volatile] = ACTIONS(5558), - [anon_sym_where] = ACTIONS(5558), - [anon_sym_notnull] = ACTIONS(5558), - [anon_sym_unmanaged] = ACTIONS(5558), - [anon_sym_scoped] = ACTIONS(5558), - [anon_sym_var] = ACTIONS(5558), - [sym_predefined_type] = ACTIONS(5558), - [anon_sym_yield] = ACTIONS(5558), - [anon_sym_when] = ACTIONS(5558), - [anon_sym_from] = ACTIONS(5558), - [anon_sym_into] = ACTIONS(5558), - [anon_sym_join] = ACTIONS(5558), - [anon_sym_on] = ACTIONS(5558), - [anon_sym_equals] = ACTIONS(5558), - [anon_sym_let] = ACTIONS(5558), - [anon_sym_orderby] = ACTIONS(5558), - [anon_sym_ascending] = ACTIONS(5558), - [anon_sym_descending] = ACTIONS(5558), - [anon_sym_group] = ACTIONS(5558), - [anon_sym_by] = ACTIONS(5558), - [anon_sym_select] = ACTIONS(5558), - [sym_grit_metavariable] = ACTIONS(5560), - [aux_sym_preproc_if_token1] = ACTIONS(5560), + [anon_sym_EQ] = ACTIONS(7867), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_in] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7869), + [anon_sym_DASH_EQ] = ACTIONS(7869), + [anon_sym_STAR_EQ] = ACTIONS(7869), + [anon_sym_SLASH_EQ] = ACTIONS(7869), + [anon_sym_PERCENT_EQ] = ACTIONS(7869), + [anon_sym_AMP_EQ] = ACTIONS(7869), + [anon_sym_CARET_EQ] = ACTIONS(7869), + [anon_sym_PIPE_EQ] = ACTIONS(7869), + [anon_sym_LT_LT_EQ] = ACTIONS(7869), + [anon_sym_GT_GT_EQ] = ACTIONS(7869), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7869), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7869), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -644261,24 +635760,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5076] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7355), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(5076), [sym_preproc_endregion] = STATE(5076), [sym_preproc_line] = STATE(5076), @@ -644288,37 +635784,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5076), [sym_preproc_define] = STATE(5076), [sym_preproc_undef] = STATE(5076), - [aux_sym_type_argument_list_repeat1] = STATE(7352), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5979), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7322), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -644331,25 +635830,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5077] = { - [sym_argument_list] = STATE(3468), - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4928), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3742), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(5077), [sym_preproc_endregion] = STATE(5077), [sym_preproc_line] = STATE(5077), @@ -644359,36 +635854,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5077), [sym_preproc_define] = STATE(5077), [sym_preproc_undef] = STATE(5077), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_ref] = ACTIONS(4580), - [anon_sym_LBRACE] = ACTIONS(4369), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7324), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7871), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -644401,6 +635900,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5078] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(5078), [sym_preproc_endregion] = STATE(5078), [sym_preproc_line] = STATE(5078), @@ -644410,55 +635924,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5078), [sym_preproc_define] = STATE(5078), [sym_preproc_undef] = STATE(5078), - [sym__identifier_token] = ACTIONS(5554), - [anon_sym_extern] = ACTIONS(5554), - [anon_sym_alias] = ACTIONS(5554), - [anon_sym_global] = ACTIONS(5554), - [anon_sym_unsafe] = ACTIONS(5554), - [anon_sym_static] = ACTIONS(5554), - [anon_sym_LBRACK] = ACTIONS(5556), - [anon_sym_LPAREN] = ACTIONS(5556), - [anon_sym_ref] = ACTIONS(5554), - [anon_sym_delegate] = ACTIONS(5554), - [anon_sym_public] = ACTIONS(5554), - [anon_sym_private] = ACTIONS(5554), - [anon_sym_readonly] = ACTIONS(5554), - [anon_sym_abstract] = ACTIONS(5554), - [anon_sym_async] = ACTIONS(5554), - [anon_sym_const] = ACTIONS(5554), - [anon_sym_file] = ACTIONS(5554), - [anon_sym_fixed] = ACTIONS(5554), - [anon_sym_internal] = ACTIONS(5554), - [anon_sym_new] = ACTIONS(5554), - [anon_sym_override] = ACTIONS(5554), - [anon_sym_partial] = ACTIONS(5554), - [anon_sym_protected] = ACTIONS(5554), - [anon_sym_required] = ACTIONS(5554), - [anon_sym_sealed] = ACTIONS(5554), - [anon_sym_virtual] = ACTIONS(5554), - [anon_sym_volatile] = ACTIONS(5554), - [anon_sym_where] = ACTIONS(5554), - [anon_sym_notnull] = ACTIONS(5554), - [anon_sym_unmanaged] = ACTIONS(5554), - [anon_sym_scoped] = ACTIONS(5554), - [anon_sym_var] = ACTIONS(5554), - [sym_predefined_type] = ACTIONS(5554), - [anon_sym_yield] = ACTIONS(5554), - [anon_sym_when] = ACTIONS(5554), - [anon_sym_from] = ACTIONS(5554), - [anon_sym_into] = ACTIONS(5554), - [anon_sym_join] = ACTIONS(5554), - [anon_sym_on] = ACTIONS(5554), - [anon_sym_equals] = ACTIONS(5554), - [anon_sym_let] = ACTIONS(5554), - [anon_sym_orderby] = ACTIONS(5554), - [anon_sym_ascending] = ACTIONS(5554), - [anon_sym_descending] = ACTIONS(5554), - [anon_sym_group] = ACTIONS(5554), - [anon_sym_by] = ACTIONS(5554), - [anon_sym_select] = ACTIONS(5554), - [sym_grit_metavariable] = ACTIONS(5556), - [aux_sym_preproc_if_token1] = ACTIONS(5556), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -644471,6 +635970,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5079] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(5079), [sym_preproc_endregion] = STATE(5079), [sym_preproc_line] = STATE(5079), @@ -644480,55 +635994,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5079), [sym_preproc_define] = STATE(5079), [sym_preproc_undef] = STATE(5079), - [anon_sym_EQ] = ACTIONS(7162), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(7326), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7164), - [anon_sym_DASH_EQ] = ACTIONS(7164), - [anon_sym_STAR_EQ] = ACTIONS(7164), - [anon_sym_SLASH_EQ] = ACTIONS(7164), - [anon_sym_PERCENT_EQ] = ACTIONS(7164), - [anon_sym_AMP_EQ] = ACTIONS(7164), - [anon_sym_CARET_EQ] = ACTIONS(7164), - [anon_sym_PIPE_EQ] = ACTIONS(7164), - [anon_sym_LT_LT_EQ] = ACTIONS(7164), - [anon_sym_GT_GT_EQ] = ACTIONS(7164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7164), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -644541,25 +636040,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5080] = { - [sym_argument_list] = STATE(4648), - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4604), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4640), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(958), + [sym_op_lte] = STATE(958), + [sym_op_eq] = STATE(957), + [sym_op_neq] = STATE(957), + [sym_op_gt] = STATE(958), + [sym_op_gte] = STATE(958), + [sym_op_and] = STATE(956), + [sym_op_or] = STATE(955), + [sym_op_bitwise_and] = STATE(954), + [sym_op_bitwise_xor] = STATE(953), + [sym_op_plus] = STATE(951), + [sym_op_minus] = STATE(951), + [sym_op_multiply] = STATE(961), [sym_preproc_region] = STATE(5080), [sym_preproc_endregion] = STATE(5080), [sym_preproc_line] = STATE(5080), @@ -644569,36 +636064,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5080), [sym_preproc_define] = STATE(5080), [sym_preproc_undef] = STATE(5080), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(7246), - [anon_sym_LPAREN] = ACTIONS(7248), - [anon_sym_ref] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(7250), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7328), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7542), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7548), + [sym_op_right_shift] = ACTIONS(7550), + [sym_op_unsigned_right_shift] = ACTIONS(7548), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7552), + [sym_op_modulo] = ACTIONS(7554), + [sym_op_coalescing] = ACTIONS(7556), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_on] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(7558), + [anon_sym_is] = ACTIONS(7560), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -644611,25 +636110,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5081] = { - [sym_argument_list] = STATE(3379), - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3328), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(5043), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1483), + [sym_op_lte] = STATE(1483), + [sym_op_eq] = STATE(1484), + [sym_op_neq] = STATE(1484), + [sym_op_gt] = STATE(1483), + [sym_op_gte] = STATE(1483), + [sym_op_and] = STATE(1485), + [sym_op_or] = STATE(1487), + [sym_op_bitwise_and] = STATE(1488), + [sym_op_bitwise_xor] = STATE(1499), + [sym_op_plus] = STATE(1500), + [sym_op_minus] = STATE(1500), + [sym_op_multiply] = STATE(1475), [sym_preproc_region] = STATE(5081), [sym_preproc_endregion] = STATE(5081), [sym_preproc_line] = STATE(5081), @@ -644639,36 +636134,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5081), [sym_preproc_define] = STATE(5081), [sym_preproc_undef] = STATE(5081), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(7306), - [anon_sym_LPAREN] = ACTIONS(7308), - [anon_sym_ref] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(7310), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7330), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(7873), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6535), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6537), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6539), + [sym_op_right_shift] = ACTIONS(6541), + [sym_op_unsigned_right_shift] = ACTIONS(6539), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6543), + [sym_op_modulo] = ACTIONS(6545), + [sym_op_coalescing] = ACTIONS(6547), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6549), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -644681,25 +636180,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5082] = { - [sym_argument_list] = STATE(3468), - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4928), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(5558), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(5082), [sym_preproc_endregion] = STATE(5082), [sym_preproc_line] = STATE(5082), @@ -644709,36 +636189,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5082), [sym_preproc_define] = STATE(5082), [sym_preproc_undef] = STATE(5082), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_LBRACE] = ACTIONS(4369), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(4373), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(7875), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7877), + [anon_sym_DASH_EQ] = ACTIONS(7877), + [anon_sym_STAR_EQ] = ACTIONS(7877), + [anon_sym_SLASH_EQ] = ACTIONS(7877), + [anon_sym_PERCENT_EQ] = ACTIONS(7877), + [anon_sym_AMP_EQ] = ACTIONS(7877), + [anon_sym_CARET_EQ] = ACTIONS(7877), + [anon_sym_PIPE_EQ] = ACTIONS(7877), + [anon_sym_LT_LT_EQ] = ACTIONS(7877), + [anon_sym_GT_GT_EQ] = ACTIONS(7877), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7877), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7877), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -644751,24 +636250,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5083] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7277), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7161), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5083), [sym_preproc_endregion] = STATE(5083), [sym_preproc_line] = STATE(5083), @@ -644778,22 +636277,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5083), [sym_preproc_define] = STATE(5083), [sym_preproc_undef] = STATE(5083), - [aux_sym_type_argument_list_repeat1] = STATE(7273), + [aux_sym_type_argument_list_repeat1] = STATE(7162), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5979), + [anon_sym_COMMA] = ACTIONS(5678), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(5985), + [anon_sym_GT] = ACTIONS(5684), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -644808,7 +636307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -644821,6 +636320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5084] = { + [sym_block] = STATE(1980), [sym_preproc_region] = STATE(5084), [sym_preproc_endregion] = STATE(5084), [sym_preproc_line] = STATE(5084), @@ -644830,55 +636330,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5084), [sym_preproc_define] = STATE(5084), [sym_preproc_undef] = STATE(5084), - [sym__identifier_token] = ACTIONS(5538), - [anon_sym_extern] = ACTIONS(5538), - [anon_sym_alias] = ACTIONS(5538), - [anon_sym_global] = ACTIONS(5538), - [anon_sym_unsafe] = ACTIONS(5538), - [anon_sym_static] = ACTIONS(5538), - [anon_sym_LBRACK] = ACTIONS(5540), - [anon_sym_LPAREN] = ACTIONS(5540), - [anon_sym_ref] = ACTIONS(5538), - [anon_sym_delegate] = ACTIONS(5538), - [anon_sym_public] = ACTIONS(5538), - [anon_sym_private] = ACTIONS(5538), - [anon_sym_readonly] = ACTIONS(5538), - [anon_sym_abstract] = ACTIONS(5538), - [anon_sym_async] = ACTIONS(5538), - [anon_sym_const] = ACTIONS(5538), - [anon_sym_file] = ACTIONS(5538), - [anon_sym_fixed] = ACTIONS(5538), - [anon_sym_internal] = ACTIONS(5538), - [anon_sym_new] = ACTIONS(5538), - [anon_sym_override] = ACTIONS(5538), - [anon_sym_partial] = ACTIONS(5538), - [anon_sym_protected] = ACTIONS(5538), - [anon_sym_required] = ACTIONS(5538), - [anon_sym_sealed] = ACTIONS(5538), - [anon_sym_virtual] = ACTIONS(5538), - [anon_sym_volatile] = ACTIONS(5538), - [anon_sym_where] = ACTIONS(5538), - [anon_sym_notnull] = ACTIONS(5538), - [anon_sym_unmanaged] = ACTIONS(5538), - [anon_sym_scoped] = ACTIONS(5538), - [anon_sym_var] = ACTIONS(5538), - [sym_predefined_type] = ACTIONS(5538), - [anon_sym_yield] = ACTIONS(5538), - [anon_sym_when] = ACTIONS(5538), - [anon_sym_from] = ACTIONS(5538), - [anon_sym_into] = ACTIONS(5538), - [anon_sym_join] = ACTIONS(5538), - [anon_sym_on] = ACTIONS(5538), - [anon_sym_equals] = ACTIONS(5538), - [anon_sym_let] = ACTIONS(5538), - [anon_sym_orderby] = ACTIONS(5538), - [anon_sym_ascending] = ACTIONS(5538), - [anon_sym_descending] = ACTIONS(5538), - [anon_sym_group] = ACTIONS(5538), - [anon_sym_by] = ACTIONS(5538), - [anon_sym_select] = ACTIONS(5538), - [sym_grit_metavariable] = ACTIONS(5540), - [aux_sym_preproc_if_token1] = ACTIONS(5540), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(6234), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -644891,25 +636390,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5085] = { - [sym_argument_list] = STATE(3468), - [sym__name] = STATE(5853), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4928), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3742), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(5620), - [sym__reserved_identifier] = STATE(3510), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(5085), [sym_preproc_endregion] = STATE(5085), [sym_preproc_line] = STATE(5085), @@ -644919,36 +636414,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5085), [sym_preproc_define] = STATE(5085), [sym_preproc_undef] = STATE(5085), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_ref] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(4369), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7332), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7879), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -644970,55 +636469,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5086), [sym_preproc_define] = STATE(5086), [sym_preproc_undef] = STATE(5086), - [sym__identifier_token] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym_alias] = ACTIONS(5456), - [anon_sym_global] = ACTIONS(5456), - [anon_sym_unsafe] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5458), - [anon_sym_LPAREN] = ACTIONS(5458), - [anon_sym_ref] = ACTIONS(5456), - [anon_sym_delegate] = ACTIONS(5456), - [anon_sym_public] = ACTIONS(5456), - [anon_sym_private] = ACTIONS(5456), - [anon_sym_readonly] = ACTIONS(5456), - [anon_sym_abstract] = ACTIONS(5456), - [anon_sym_async] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_file] = ACTIONS(5456), - [anon_sym_fixed] = ACTIONS(5456), - [anon_sym_internal] = ACTIONS(5456), - [anon_sym_new] = ACTIONS(5456), - [anon_sym_override] = ACTIONS(5456), - [anon_sym_partial] = ACTIONS(5456), - [anon_sym_protected] = ACTIONS(5456), - [anon_sym_required] = ACTIONS(5456), - [anon_sym_sealed] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_where] = ACTIONS(5456), - [anon_sym_notnull] = ACTIONS(5456), - [anon_sym_unmanaged] = ACTIONS(5456), - [anon_sym_scoped] = ACTIONS(5456), - [anon_sym_var] = ACTIONS(5456), - [sym_predefined_type] = ACTIONS(5456), - [anon_sym_yield] = ACTIONS(5456), - [anon_sym_when] = ACTIONS(5456), - [anon_sym_from] = ACTIONS(5456), - [anon_sym_into] = ACTIONS(5456), - [anon_sym_join] = ACTIONS(5456), - [anon_sym_on] = ACTIONS(5456), - [anon_sym_equals] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(5456), - [anon_sym_orderby] = ACTIONS(5456), - [anon_sym_ascending] = ACTIONS(5456), - [anon_sym_descending] = ACTIONS(5456), - [anon_sym_group] = ACTIONS(5456), - [anon_sym_by] = ACTIONS(5456), - [anon_sym_select] = ACTIONS(5456), - [sym_grit_metavariable] = ACTIONS(5458), - [aux_sym_preproc_if_token1] = ACTIONS(5458), + [anon_sym_EQ] = ACTIONS(7881), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7883), + [anon_sym_DASH_EQ] = ACTIONS(7883), + [anon_sym_STAR_EQ] = ACTIONS(7883), + [anon_sym_SLASH_EQ] = ACTIONS(7883), + [anon_sym_PERCENT_EQ] = ACTIONS(7883), + [anon_sym_AMP_EQ] = ACTIONS(7883), + [anon_sym_CARET_EQ] = ACTIONS(7883), + [anon_sym_PIPE_EQ] = ACTIONS(7883), + [anon_sym_LT_LT_EQ] = ACTIONS(7883), + [anon_sym_GT_GT_EQ] = ACTIONS(7883), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7883), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7883), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_by] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -645031,24 +636530,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5087] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7205), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(5087), [sym_preproc_endregion] = STATE(5087), [sym_preproc_line] = STATE(5087), @@ -645058,37 +636554,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5087), [sym_preproc_define] = STATE(5087), [sym_preproc_undef] = STATE(5087), - [aux_sym_type_argument_list_repeat1] = STATE(7207), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5979), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7334), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7300), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7306), + [sym_op_right_shift] = ACTIONS(7308), + [sym_op_unsigned_right_shift] = ACTIONS(7306), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7310), + [sym_op_modulo] = ACTIONS(7312), + [sym_op_coalescing] = ACTIONS(7314), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5332), + [anon_sym_as] = ACTIONS(7316), + [anon_sym_is] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -645101,25 +636600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5088] = { - [sym_argument_list] = STATE(4648), - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4604), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4640), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), + [sym_initializer_expression] = STATE(5248), [sym_preproc_region] = STATE(5088), [sym_preproc_endregion] = STATE(5088), [sym_preproc_line] = STATE(5088), @@ -645129,36 +636610,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5088), [sym_preproc_define] = STATE(5088), [sym_preproc_undef] = STATE(5088), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(7246), - [anon_sym_LPAREN] = ACTIONS(7248), - [anon_sym_ref] = ACTIONS(4092), - [anon_sym_LBRACE] = ACTIONS(7250), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7336), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym_COMMA] = ACTIONS(5516), + [anon_sym_LPAREN] = ACTIONS(5516), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(5518), + [anon_sym_GT] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(5516), + [anon_sym_QMARK] = ACTIONS(5518), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5516), + [anon_sym_switch] = ACTIONS(5516), + [anon_sym_DOT_DOT] = ACTIONS(5516), + [anon_sym_LT_EQ] = ACTIONS(5516), + [anon_sym_GT_EQ] = ACTIONS(5516), + [anon_sym_and] = ACTIONS(5516), + [anon_sym_or] = ACTIONS(5518), + [anon_sym_EQ_EQ] = ACTIONS(5516), + [anon_sym_BANG_EQ] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5516), + [anon_sym_PIPE_PIPE] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [sym_op_bitwise_or] = ACTIONS(5518), + [anon_sym_CARET] = ACTIONS(5516), + [sym_op_left_shift] = ACTIONS(5516), + [sym_op_right_shift] = ACTIONS(5518), + [sym_op_unsigned_right_shift] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5518), + [sym_op_divide] = ACTIONS(5518), + [sym_op_modulo] = ACTIONS(5516), + [sym_op_coalescing] = ACTIONS(5516), + [anon_sym_BANG] = ACTIONS(5518), + [anon_sym_PLUS_PLUS] = ACTIONS(5516), + [anon_sym_DASH_DASH] = ACTIONS(5516), + [anon_sym_from] = ACTIONS(5516), + [anon_sym_into] = ACTIONS(5516), + [anon_sym_join] = ACTIONS(5516), + [anon_sym_let] = ACTIONS(5516), + [anon_sym_orderby] = ACTIONS(5516), + [anon_sym_ascending] = ACTIONS(5516), + [anon_sym_descending] = ACTIONS(5516), + [anon_sym_group] = ACTIONS(5516), + [anon_sym_select] = ACTIONS(5516), + [anon_sym_as] = ACTIONS(5518), + [anon_sym_is] = ACTIONS(5516), + [anon_sym_DASH_GT] = ACTIONS(5516), + [anon_sym_with] = ACTIONS(5516), + [sym_grit_metavariable] = ACTIONS(5516), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -645171,25 +636670,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5089] = { - [sym_argument_list] = STATE(4727), - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4643), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4750), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(5089), [sym_preproc_endregion] = STATE(5089), [sym_preproc_line] = STATE(5089), @@ -645199,36 +636694,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5089), [sym_preproc_define] = STATE(5089), [sym_preproc_undef] = STATE(5089), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(7228), - [anon_sym_LPAREN] = ACTIONS(7230), - [anon_sym_ref] = ACTIONS(4516), - [anon_sym_LBRACE] = ACTIONS(7232), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7338), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5310), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_switch] = ACTIONS(5308), + [anon_sym_DOT_DOT] = ACTIONS(5308), + [anon_sym_LT_EQ] = ACTIONS(5308), + [anon_sym_GT_EQ] = ACTIONS(5308), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_AMP_AMP] = ACTIONS(5308), + [anon_sym_PIPE_PIPE] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(5310), + [sym_op_bitwise_or] = ACTIONS(5310), + [anon_sym_CARET] = ACTIONS(5308), + [sym_op_left_shift] = ACTIONS(5308), + [sym_op_right_shift] = ACTIONS(5310), + [sym_op_unsigned_right_shift] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym_op_divide] = ACTIONS(5310), + [sym_op_modulo] = ACTIONS(5308), + [sym_op_coalescing] = ACTIONS(5308), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5308), + [anon_sym_as] = ACTIONS(5308), + [anon_sym_is] = ACTIONS(5308), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5308), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -645241,6 +636740,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5090] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(5090), [sym_preproc_endregion] = STATE(5090), [sym_preproc_line] = STATE(5090), @@ -645250,55 +636764,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5090), [sym_preproc_define] = STATE(5090), [sym_preproc_undef] = STATE(5090), - [sym__identifier_token] = ACTIONS(5941), - [anon_sym_extern] = ACTIONS(5941), - [anon_sym_alias] = ACTIONS(5941), - [anon_sym_global] = ACTIONS(5941), - [anon_sym_unsafe] = ACTIONS(5941), - [anon_sym_static] = ACTIONS(5941), - [anon_sym_LBRACK] = ACTIONS(5943), - [anon_sym_LPAREN] = ACTIONS(5943), - [anon_sym_ref] = ACTIONS(5941), - [anon_sym_delegate] = ACTIONS(5941), - [anon_sym_public] = ACTIONS(5941), - [anon_sym_private] = ACTIONS(5941), - [anon_sym_readonly] = ACTIONS(5941), - [anon_sym_abstract] = ACTIONS(5941), - [anon_sym_async] = ACTIONS(5941), - [anon_sym_const] = ACTIONS(5941), - [anon_sym_file] = ACTIONS(5941), - [anon_sym_fixed] = ACTIONS(5941), - [anon_sym_internal] = ACTIONS(5941), - [anon_sym_new] = ACTIONS(5941), - [anon_sym_override] = ACTIONS(5941), - [anon_sym_partial] = ACTIONS(5941), - [anon_sym_protected] = ACTIONS(5941), - [anon_sym_required] = ACTIONS(5941), - [anon_sym_sealed] = ACTIONS(5941), - [anon_sym_virtual] = ACTIONS(5941), - [anon_sym_volatile] = ACTIONS(5941), - [anon_sym_where] = ACTIONS(5941), - [anon_sym_notnull] = ACTIONS(5941), - [anon_sym_unmanaged] = ACTIONS(5941), - [anon_sym_scoped] = ACTIONS(5941), - [anon_sym_var] = ACTIONS(5941), - [sym_predefined_type] = ACTIONS(5941), - [anon_sym_yield] = ACTIONS(5941), - [anon_sym_when] = ACTIONS(5941), - [anon_sym_from] = ACTIONS(5941), - [anon_sym_into] = ACTIONS(5941), - [anon_sym_join] = ACTIONS(5941), - [anon_sym_on] = ACTIONS(5941), - [anon_sym_equals] = 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_by] = ACTIONS(5941), - [anon_sym_select] = ACTIONS(5941), - [sym_grit_metavariable] = ACTIONS(5943), - [aux_sym_preproc_if_token1] = ACTIONS(5943), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5354), + [anon_sym_GT] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5352), + [anon_sym_DOT_DOT] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5354), + [sym_op_bitwise_or] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5352), + [sym_op_left_shift] = ACTIONS(5352), + [sym_op_right_shift] = ACTIONS(5354), + [sym_op_unsigned_right_shift] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5354), + [sym_op_divide] = ACTIONS(5354), + [sym_op_modulo] = ACTIONS(5352), + [sym_op_coalescing] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(5352), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -645311,25 +636810,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5091] = { - [sym_argument_list] = STATE(5571), - [sym__name] = STATE(5593), - [sym_alias_qualified_name] = STATE(5609), - [sym__simple_name] = STATE(5609), - [sym_qualified_name] = STATE(5609), - [sym_generic_name] = STATE(5595), - [sym_type] = STATE(5537), - [sym_implicit_type] = STATE(5606), - [sym_array_type] = STATE(5578), - [sym__array_base_type] = STATE(7386), - [sym_nullable_type] = STATE(5586), - [sym_pointer_type] = STATE(5586), - [sym__pointer_base_type] = STATE(8114), - [sym_function_pointer_type] = STATE(5586), - [sym_ref_type] = STATE(5606), - [sym_scoped_type] = STATE(5606), - [sym_tuple_type] = STATE(5591), - [sym_identifier] = STATE(5549), - [sym__reserved_identifier] = STATE(5566), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1054), + [sym_op_lte] = STATE(1054), + [sym_op_eq] = STATE(1053), + [sym_op_neq] = STATE(1053), + [sym_op_gt] = STATE(1054), + [sym_op_gte] = STATE(1054), + [sym_op_and] = STATE(1052), + [sym_op_or] = STATE(1051), + [sym_op_bitwise_and] = STATE(1050), + [sym_op_bitwise_xor] = STATE(1049), + [sym_op_plus] = STATE(1048), + [sym_op_minus] = STATE(1048), + [sym_op_multiply] = STATE(1057), [sym_preproc_region] = STATE(5091), [sym_preproc_endregion] = STATE(5091), [sym_preproc_line] = STATE(5091), @@ -645339,36 +636834,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5091), [sym_preproc_define] = STATE(5091), [sym_preproc_undef] = STATE(5091), - [sym__identifier_token] = ACTIONS(4318), - [anon_sym_alias] = ACTIONS(4320), - [anon_sym_global] = ACTIONS(4320), - [anon_sym_LBRACK] = ACTIONS(7284), - [anon_sym_LPAREN] = ACTIONS(7286), - [anon_sym_ref] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(7288), - [anon_sym_delegate] = ACTIONS(7290), - [anon_sym_file] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_notnull] = ACTIONS(4320), - [anon_sym_unmanaged] = ACTIONS(4320), - [anon_sym_scoped] = ACTIONS(7340), - [anon_sym_var] = ACTIONS(7294), - [sym_predefined_type] = ACTIONS(7296), - [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), - [sym_grit_metavariable] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1379), + [sym_op_bitwise_or] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1365), + [sym_op_left_shift] = ACTIONS(1365), + [sym_op_right_shift] = ACTIONS(1379), + [sym_op_unsigned_right_shift] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [sym_op_divide] = ACTIONS(1379), + [sym_op_modulo] = ACTIONS(1365), + [sym_op_coalescing] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_equals] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_is] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(1365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -645390,55 +636889,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5092), [sym_preproc_define] = STATE(5092), [sym_preproc_undef] = STATE(5092), - [anon_sym_EQ] = ACTIONS(7342), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7344), - [anon_sym_DASH_EQ] = ACTIONS(7344), - [anon_sym_STAR_EQ] = ACTIONS(7344), - [anon_sym_SLASH_EQ] = ACTIONS(7344), - [anon_sym_PERCENT_EQ] = ACTIONS(7344), - [anon_sym_AMP_EQ] = ACTIONS(7344), - [anon_sym_CARET_EQ] = ACTIONS(7344), - [anon_sym_PIPE_EQ] = ACTIONS(7344), - [anon_sym_LT_LT_EQ] = ACTIONS(7344), - [anon_sym_GT_GT_EQ] = ACTIONS(7344), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7344), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7344), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_by] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_EQ] = ACTIONS(7885), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7887), + [anon_sym_DASH_EQ] = ACTIONS(7887), + [anon_sym_STAR_EQ] = ACTIONS(7887), + [anon_sym_SLASH_EQ] = ACTIONS(7887), + [anon_sym_PERCENT_EQ] = ACTIONS(7887), + [anon_sym_AMP_EQ] = ACTIONS(7887), + [anon_sym_CARET_EQ] = ACTIONS(7887), + [anon_sym_PIPE_EQ] = ACTIONS(7887), + [anon_sym_LT_LT_EQ] = ACTIONS(7887), + [anon_sym_GT_GT_EQ] = ACTIONS(7887), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7887), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7887), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_equals] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -645451,25 +636950,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5093] = { - [sym_argument_list] = STATE(4727), - [sym__name] = STATE(5929), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4643), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(5859), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(5740), - [sym__reserved_identifier] = STATE(4662), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1498), + [sym_op_lte] = STATE(1498), + [sym_op_eq] = STATE(1497), + [sym_op_neq] = STATE(1497), + [sym_op_gt] = STATE(1498), + [sym_op_gte] = STATE(1498), + [sym_op_and] = STATE(1496), + [sym_op_or] = STATE(1495), + [sym_op_bitwise_and] = STATE(1494), + [sym_op_bitwise_xor] = STATE(1493), + [sym_op_plus] = STATE(1492), + [sym_op_minus] = STATE(1492), + [sym_op_multiply] = STATE(1502), [sym_preproc_region] = STATE(5093), [sym_preproc_endregion] = STATE(5093), [sym_preproc_line] = STATE(5093), @@ -645479,36 +636974,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5093), [sym_preproc_define] = STATE(5093), [sym_preproc_undef] = STATE(5093), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(7228), - [anon_sym_LPAREN] = ACTIONS(7230), - [anon_sym_ref] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(7232), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7346), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7889), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7322), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7286), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7324), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7288), + [sym_op_right_shift] = ACTIONS(7290), + [sym_op_unsigned_right_shift] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7292), + [sym_op_modulo] = ACTIONS(7294), + [sym_op_coalescing] = ACTIONS(7326), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6418), + [anon_sym_is] = ACTIONS(7296), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -645521,25 +637020,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5094] = { - [sym_argument_list] = STATE(3468), - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4928), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3742), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(5094), [sym_preproc_endregion] = STATE(5094), [sym_preproc_line] = STATE(5094), @@ -645549,36 +637029,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5094), [sym_preproc_define] = STATE(5094), [sym_preproc_undef] = STATE(5094), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_LBRACE] = ACTIONS(4369), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(4373), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(5384), + [anon_sym_extern] = ACTIONS(5384), + [anon_sym_alias] = ACTIONS(5384), + [anon_sym_global] = ACTIONS(5384), + [anon_sym_unsafe] = ACTIONS(5384), + [anon_sym_static] = ACTIONS(5384), + [anon_sym_LBRACK] = ACTIONS(5386), + [anon_sym_LPAREN] = ACTIONS(5386), + [anon_sym_ref] = ACTIONS(5384), + [anon_sym_delegate] = ACTIONS(5384), + [anon_sym_public] = ACTIONS(5384), + [anon_sym_private] = ACTIONS(5384), + [anon_sym_readonly] = ACTIONS(5384), + [anon_sym_abstract] = ACTIONS(5384), + [anon_sym_async] = ACTIONS(5384), + [anon_sym_const] = ACTIONS(5384), + [anon_sym_file] = ACTIONS(5384), + [anon_sym_fixed] = ACTIONS(5384), + [anon_sym_internal] = ACTIONS(5384), + [anon_sym_new] = ACTIONS(5384), + [anon_sym_override] = ACTIONS(5384), + [anon_sym_partial] = ACTIONS(5384), + [anon_sym_protected] = ACTIONS(5384), + [anon_sym_required] = ACTIONS(5384), + [anon_sym_sealed] = ACTIONS(5384), + [anon_sym_virtual] = ACTIONS(5384), + [anon_sym_volatile] = ACTIONS(5384), + [anon_sym_where] = ACTIONS(5384), + [anon_sym_notnull] = ACTIONS(5384), + [anon_sym_unmanaged] = ACTIONS(5384), + [anon_sym_scoped] = ACTIONS(5384), + [anon_sym_var] = ACTIONS(5384), + [sym_predefined_type] = ACTIONS(5384), + [anon_sym_yield] = ACTIONS(5384), + [anon_sym_when] = ACTIONS(5384), + [anon_sym_from] = ACTIONS(5384), + [anon_sym_into] = ACTIONS(5384), + [anon_sym_join] = ACTIONS(5384), + [anon_sym_on] = ACTIONS(5384), + [anon_sym_equals] = ACTIONS(5384), + [anon_sym_let] = ACTIONS(5384), + [anon_sym_orderby] = ACTIONS(5384), + [anon_sym_ascending] = ACTIONS(5384), + [anon_sym_descending] = ACTIONS(5384), + [anon_sym_group] = ACTIONS(5384), + [anon_sym_by] = ACTIONS(5384), + [anon_sym_select] = ACTIONS(5384), + [sym_grit_metavariable] = ACTIONS(5386), + [aux_sym_preproc_if_token1] = ACTIONS(5386), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -645591,6 +637090,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5095] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1339), + [sym_op_lte] = STATE(1339), + [sym_op_eq] = STATE(1338), + [sym_op_neq] = STATE(1338), + [sym_op_gt] = STATE(1339), + [sym_op_gte] = STATE(1339), + [sym_op_and] = STATE(1337), + [sym_op_or] = STATE(1336), + [sym_op_bitwise_and] = STATE(1334), + [sym_op_bitwise_xor] = STATE(1333), + [sym_op_plus] = STATE(1332), + [sym_op_minus] = STATE(1332), + [sym_op_multiply] = STATE(1342), [sym_preproc_region] = STATE(5095), [sym_preproc_endregion] = STATE(5095), [sym_preproc_line] = STATE(5095), @@ -645600,55 +637114,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5095), [sym_preproc_define] = STATE(5095), [sym_preproc_undef] = STATE(5095), - [anon_sym_SEMI] = ACTIONS(5684), - [anon_sym_EQ] = ACTIONS(7348), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RBRACE] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7350), - [anon_sym_DASH_EQ] = ACTIONS(7350), - [anon_sym_STAR_EQ] = ACTIONS(7350), - [anon_sym_SLASH_EQ] = ACTIONS(7350), - [anon_sym_PERCENT_EQ] = ACTIONS(7350), - [anon_sym_AMP_EQ] = ACTIONS(7350), - [anon_sym_CARET_EQ] = ACTIONS(7350), - [anon_sym_PIPE_EQ] = ACTIONS(7350), - [anon_sym_LT_LT_EQ] = ACTIONS(7350), - [anon_sym_GT_GT_EQ] = ACTIONS(7350), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7350), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7350), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(7418), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(7420), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(7422), + [sym_op_right_shift] = ACTIONS(7424), + [sym_op_unsigned_right_shift] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(7426), + [sym_op_modulo] = ACTIONS(7428), + [sym_op_coalescing] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_by] = ACTIONS(7891), + [anon_sym_as] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7436), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -645661,8 +637160,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5096] = { - [sym_identifier] = STATE(8035), - [sym__reserved_identifier] = STATE(2206), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1478), + [sym_op_lte] = STATE(1478), + [sym_op_eq] = STATE(1456), + [sym_op_neq] = STATE(1456), + [sym_op_gt] = STATE(1478), + [sym_op_gte] = STATE(1478), + [sym_op_and] = STATE(1429), + [sym_op_or] = STATE(1427), + [sym_op_bitwise_and] = STATE(1417), + [sym_op_bitwise_xor] = STATE(1321), + [sym_op_plus] = STATE(1444), + [sym_op_minus] = STATE(1444), + [sym_op_multiply] = STATE(1510), [sym_preproc_region] = STATE(5096), [sym_preproc_endregion] = STATE(5096), [sym_preproc_line] = STATE(5096), @@ -645672,53 +637184,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5096), [sym_preproc_define] = STATE(5096), [sym_preproc_undef] = STATE(5096), - [sym__identifier_token] = ACTIONS(7352), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(7356), - [anon_sym_global] = ACTIONS(7356), - [anon_sym_unsafe] = ACTIONS(7360), - [anon_sym_static] = ACTIONS(7360), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(7356), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(7356), - [anon_sym_notnull] = ACTIONS(7356), - [anon_sym_unmanaged] = ACTIONS(7356), - [anon_sym_scoped] = ACTIONS(7356), - [anon_sym_var] = ACTIONS(7356), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(7356), - [anon_sym_when] = ACTIONS(7356), - [anon_sym_from] = ACTIONS(7356), - [anon_sym_into] = ACTIONS(7356), - [anon_sym_join] = ACTIONS(7356), - [anon_sym_on] = ACTIONS(7356), - [anon_sym_equals] = ACTIONS(7356), - [anon_sym_let] = ACTIONS(7356), - [anon_sym_orderby] = ACTIONS(7356), - [anon_sym_ascending] = ACTIONS(7356), - [anon_sym_descending] = ACTIONS(7356), - [anon_sym_group] = ACTIONS(7356), - [anon_sym_by] = ACTIONS(7356), - [anon_sym_select] = ACTIONS(7356), - [sym_grit_metavariable] = ACTIONS(7363), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6787), + [sym_op_right_shift] = ACTIONS(6789), + [sym_op_unsigned_right_shift] = ACTIONS(6787), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6791), + [sym_op_modulo] = ACTIONS(6793), + [sym_op_coalescing] = ACTIONS(6795), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -645731,7 +637229,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5097] = { - [sym_initializer_expression] = STATE(5270), [sym_preproc_region] = STATE(5097), [sym_preproc_endregion] = STATE(5097), [sym_preproc_line] = STATE(5097), @@ -645741,54 +637238,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5097), [sym_preproc_define] = STATE(5097), [sym_preproc_undef] = STATE(5097), - [anon_sym_LBRACK] = ACTIONS(5776), - [anon_sym_COMMA] = ACTIONS(5776), - [anon_sym_LPAREN] = ACTIONS(5776), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(5778), - [anon_sym_GT] = ACTIONS(5778), - [anon_sym_where] = ACTIONS(5776), - [anon_sym_QMARK] = ACTIONS(5778), - [anon_sym_BANG] = ACTIONS(5778), - [anon_sym_PLUS_PLUS] = ACTIONS(5776), - [anon_sym_DASH_DASH] = ACTIONS(5776), - [anon_sym_PLUS] = ACTIONS(5778), - [anon_sym_DASH] = ACTIONS(5778), - [anon_sym_STAR] = ACTIONS(5776), - [anon_sym_SLASH] = ACTIONS(5778), - [anon_sym_PERCENT] = ACTIONS(5776), - [anon_sym_CARET] = ACTIONS(5776), - [anon_sym_PIPE] = ACTIONS(5778), - [anon_sym_AMP] = ACTIONS(5778), - [anon_sym_LT_LT] = ACTIONS(5776), - [anon_sym_GT_GT] = ACTIONS(5778), - [anon_sym_GT_GT_GT] = ACTIONS(5776), - [anon_sym_EQ_EQ] = ACTIONS(5776), - [anon_sym_BANG_EQ] = ACTIONS(5776), - [anon_sym_GT_EQ] = ACTIONS(5776), - [anon_sym_LT_EQ] = ACTIONS(5776), - [anon_sym_DOT] = ACTIONS(5778), - [anon_sym_switch] = ACTIONS(5776), - [anon_sym_DOT_DOT] = ACTIONS(5776), - [anon_sym_and] = ACTIONS(5776), - [anon_sym_or] = ACTIONS(5778), - [anon_sym_AMP_AMP] = ACTIONS(5776), - [anon_sym_PIPE_PIPE] = ACTIONS(5776), - [sym_op_coalescing] = ACTIONS(5776), - [anon_sym_from] = ACTIONS(5776), - [anon_sym_into] = ACTIONS(5776), - [anon_sym_join] = ACTIONS(5776), - [anon_sym_let] = ACTIONS(5776), - [anon_sym_orderby] = ACTIONS(5776), - [anon_sym_ascending] = ACTIONS(5776), - [anon_sym_descending] = ACTIONS(5776), - [anon_sym_group] = ACTIONS(5776), - [anon_sym_select] = ACTIONS(5776), - [anon_sym_as] = ACTIONS(5778), - [anon_sym_is] = ACTIONS(5776), - [anon_sym_DASH_GT] = ACTIONS(5776), - [anon_sym_with] = ACTIONS(5776), - [sym_grit_metavariable] = ACTIONS(5776), + [anon_sym_EQ] = ACTIONS(7893), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_EQ_GT] = ACTIONS(5508), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7895), + [anon_sym_DASH_EQ] = ACTIONS(7895), + [anon_sym_STAR_EQ] = ACTIONS(7895), + [anon_sym_SLASH_EQ] = ACTIONS(7895), + [anon_sym_PERCENT_EQ] = ACTIONS(7895), + [anon_sym_AMP_EQ] = ACTIONS(7895), + [anon_sym_CARET_EQ] = ACTIONS(7895), + [anon_sym_PIPE_EQ] = ACTIONS(7895), + [anon_sym_LT_LT_EQ] = ACTIONS(7895), + [anon_sym_GT_GT_EQ] = ACTIONS(7895), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7895), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7895), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -645801,6 +637298,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5098] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5098), [sym_preproc_endregion] = STATE(5098), [sym_preproc_line] = STATE(5098), @@ -645810,68 +637325,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5098), [sym_preproc_define] = STATE(5098), [sym_preproc_undef] = STATE(5098), - [anon_sym_EQ] = ACTIONS(7367), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7369), - [anon_sym_DASH_EQ] = ACTIONS(7369), - [anon_sym_STAR_EQ] = ACTIONS(7369), - [anon_sym_SLASH_EQ] = ACTIONS(7369), - [anon_sym_PERCENT_EQ] = ACTIONS(7369), - [anon_sym_AMP_EQ] = ACTIONS(7369), - [anon_sym_CARET_EQ] = ACTIONS(7369), - [anon_sym_PIPE_EQ] = ACTIONS(7369), - [anon_sym_LT_LT_EQ] = ACTIONS(7369), - [anon_sym_GT_GT_EQ] = ACTIONS(7369), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7369), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7369), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(5684), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = 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), }, [5099] = { - [sym_block] = STATE(1986), [sym_preproc_region] = STATE(5099), [sym_preproc_endregion] = STATE(5099), [sym_preproc_line] = STATE(5099), @@ -645881,54 +637376,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5099), [sym_preproc_define] = STATE(5099), [sym_preproc_undef] = STATE(5099), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(6889), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5654), + [anon_sym_COMMA] = ACTIONS(5654), + [anon_sym_LPAREN] = ACTIONS(5654), + [anon_sym_LBRACE] = ACTIONS(5654), + [anon_sym_LT] = ACTIONS(5656), + [anon_sym_GT] = ACTIONS(5656), + [anon_sym_where] = ACTIONS(5654), + [anon_sym_QMARK] = ACTIONS(5656), + [anon_sym_DOT] = ACTIONS(5656), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_switch] = ACTIONS(5654), + [anon_sym_DOT_DOT] = ACTIONS(5654), + [anon_sym_LT_EQ] = ACTIONS(5654), + [anon_sym_GT_EQ] = ACTIONS(5654), + [anon_sym_and] = ACTIONS(5654), + [anon_sym_or] = ACTIONS(5656), + [anon_sym_EQ_EQ] = ACTIONS(5654), + [anon_sym_BANG_EQ] = ACTIONS(5654), + [anon_sym_AMP_AMP] = ACTIONS(5654), + [anon_sym_PIPE_PIPE] = ACTIONS(5654), + [anon_sym_AMP] = ACTIONS(5656), + [sym_op_bitwise_or] = ACTIONS(5656), + [anon_sym_CARET] = ACTIONS(5654), + [sym_op_left_shift] = ACTIONS(5654), + [sym_op_right_shift] = ACTIONS(5656), + [sym_op_unsigned_right_shift] = ACTIONS(5654), + [anon_sym_PLUS] = ACTIONS(5656), + [anon_sym_DASH] = ACTIONS(5656), + [sym_op_divide] = ACTIONS(5656), + [sym_op_modulo] = ACTIONS(5654), + [sym_op_coalescing] = ACTIONS(5654), + [anon_sym_BANG] = ACTIONS(5656), + [anon_sym_PLUS_PLUS] = ACTIONS(5654), + [anon_sym_DASH_DASH] = ACTIONS(5654), + [anon_sym_from] = ACTIONS(5654), + [anon_sym_into] = ACTIONS(5654), + [anon_sym_join] = ACTIONS(5654), + [anon_sym_let] = ACTIONS(5654), + [anon_sym_orderby] = ACTIONS(5654), + [anon_sym_ascending] = ACTIONS(5654), + [anon_sym_descending] = ACTIONS(5654), + [anon_sym_group] = ACTIONS(5654), + [anon_sym_select] = ACTIONS(5654), + [anon_sym_as] = ACTIONS(5656), + [anon_sym_is] = ACTIONS(5654), + [anon_sym_DASH_GT] = ACTIONS(5654), + [anon_sym_with] = ACTIONS(5654), + [sym_grit_metavariable] = ACTIONS(5654), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -645941,6 +637436,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5100] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5100), [sym_preproc_endregion] = STATE(5100), [sym_preproc_line] = STATE(5100), @@ -645950,110 +637463,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5100), [sym_preproc_define] = STATE(5100), [sym_preproc_undef] = STATE(5100), - [anon_sym_EQ] = ACTIONS(7371), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7373), - [anon_sym_DASH_EQ] = ACTIONS(7373), - [anon_sym_STAR_EQ] = ACTIONS(7373), - [anon_sym_SLASH_EQ] = ACTIONS(7373), - [anon_sym_PERCENT_EQ] = ACTIONS(7373), - [anon_sym_AMP_EQ] = ACTIONS(7373), - [anon_sym_CARET_EQ] = ACTIONS(7373), - [anon_sym_PIPE_EQ] = ACTIONS(7373), - [anon_sym_LT_LT_EQ] = ACTIONS(7373), - [anon_sym_GT_GT_EQ] = ACTIONS(7373), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7373), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7373), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_equals] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5101] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7064), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5101), - [sym_preproc_endregion] = STATE(5101), - [sym_preproc_line] = STATE(5101), - [sym_preproc_pragma] = STATE(5101), - [sym_preproc_nullable] = STATE(5101), - [sym_preproc_error] = STATE(5101), - [sym_preproc_warning] = STATE(5101), - [sym_preproc_define] = STATE(5101), - [sym_preproc_undef] = STATE(5101), - [aux_sym_type_argument_list_repeat1] = STATE(7062), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5979), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_struct] = ACTIONS(4268), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7375), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -646068,7 +637492,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = 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), + }, + [5101] = { + [sym_preproc_region] = STATE(5101), + [sym_preproc_endregion] = STATE(5101), + [sym_preproc_line] = STATE(5101), + [sym_preproc_pragma] = STATE(5101), + [sym_preproc_nullable] = STATE(5101), + [sym_preproc_error] = STATE(5101), + [sym_preproc_warning] = STATE(5101), + [sym_preproc_define] = STATE(5101), + [sym_preproc_undef] = STATE(5101), + [aux_sym_query_body_repeat2] = STATE(5102), + [anon_sym_LBRACK] = ACTIONS(7897), + [anon_sym_COMMA] = ACTIONS(7897), + [anon_sym_LPAREN] = ACTIONS(7897), + [anon_sym_LT] = ACTIONS(7899), + [anon_sym_GT] = ACTIONS(7899), + [anon_sym_where] = ACTIONS(7897), + [anon_sym_QMARK] = ACTIONS(7899), + [anon_sym_DOT] = ACTIONS(7899), + [anon_sym_STAR] = ACTIONS(7897), + [anon_sym_switch] = ACTIONS(7897), + [anon_sym_DOT_DOT] = ACTIONS(7897), + [anon_sym_LT_EQ] = ACTIONS(7897), + [anon_sym_GT_EQ] = ACTIONS(7897), + [anon_sym_and] = ACTIONS(7897), + [anon_sym_or] = ACTIONS(7899), + [anon_sym_EQ_EQ] = ACTIONS(7897), + [anon_sym_BANG_EQ] = ACTIONS(7897), + [anon_sym_AMP_AMP] = ACTIONS(7897), + [anon_sym_PIPE_PIPE] = ACTIONS(7897), + [anon_sym_AMP] = ACTIONS(7899), + [sym_op_bitwise_or] = ACTIONS(7899), + [anon_sym_CARET] = ACTIONS(7897), + [sym_op_left_shift] = ACTIONS(7897), + [sym_op_right_shift] = ACTIONS(7899), + [sym_op_unsigned_right_shift] = ACTIONS(7897), + [anon_sym_PLUS] = ACTIONS(7899), + [anon_sym_DASH] = ACTIONS(7899), + [sym_op_divide] = ACTIONS(7899), + [sym_op_modulo] = ACTIONS(7897), + [sym_op_coalescing] = ACTIONS(7897), + [anon_sym_BANG] = ACTIONS(7899), + [anon_sym_PLUS_PLUS] = ACTIONS(7897), + [anon_sym_DASH_DASH] = ACTIONS(7897), + [anon_sym_from] = ACTIONS(7897), + [anon_sym_into] = ACTIONS(7901), + [anon_sym_join] = ACTIONS(7897), + [anon_sym_let] = ACTIONS(7897), + [anon_sym_orderby] = ACTIONS(7897), + [anon_sym_ascending] = ACTIONS(7897), + [anon_sym_descending] = ACTIONS(7897), + [anon_sym_group] = ACTIONS(7897), + [anon_sym_select] = ACTIONS(7897), + [anon_sym_as] = ACTIONS(7899), + [anon_sym_is] = ACTIONS(7897), + [anon_sym_DASH_GT] = ACTIONS(7897), + [anon_sym_with] = ACTIONS(7897), + [sym_grit_metavariable] = ACTIONS(7897), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -646081,7 +637574,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5102] = { - [sym_modifier] = STATE(5303), [sym_preproc_region] = STATE(5102), [sym_preproc_endregion] = STATE(5102), [sym_preproc_line] = STATE(5102), @@ -646091,54 +637583,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5102), [sym_preproc_define] = STATE(5102), [sym_preproc_undef] = STATE(5102), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), - [sym__identifier_token] = ACTIONS(6204), - [anon_sym_extern] = ACTIONS(7377), - [anon_sym_alias] = ACTIONS(6204), - [anon_sym_global] = ACTIONS(6204), - [anon_sym_unsafe] = ACTIONS(7377), - [anon_sym_static] = ACTIONS(7377), - [anon_sym_LPAREN] = ACTIONS(6209), - [anon_sym_ref] = ACTIONS(6204), - [anon_sym_delegate] = ACTIONS(6204), - [anon_sym_public] = ACTIONS(7377), - [anon_sym_private] = ACTIONS(7377), - [anon_sym_readonly] = ACTIONS(7377), - [anon_sym_abstract] = ACTIONS(7377), - [anon_sym_async] = ACTIONS(7377), - [anon_sym_const] = ACTIONS(7377), - [anon_sym_file] = ACTIONS(7377), - [anon_sym_fixed] = ACTIONS(7377), - [anon_sym_internal] = ACTIONS(7377), - [anon_sym_new] = ACTIONS(7377), - [anon_sym_override] = ACTIONS(7377), - [anon_sym_partial] = ACTIONS(7377), - [anon_sym_protected] = ACTIONS(7377), - [anon_sym_required] = ACTIONS(7377), - [anon_sym_sealed] = ACTIONS(7377), - [anon_sym_virtual] = ACTIONS(7377), - [anon_sym_volatile] = ACTIONS(7377), - [anon_sym_where] = ACTIONS(6204), - [anon_sym_notnull] = ACTIONS(6204), - [anon_sym_unmanaged] = ACTIONS(6204), - [anon_sym_scoped] = ACTIONS(6204), - [anon_sym_var] = ACTIONS(6204), - [sym_predefined_type] = ACTIONS(6204), - [anon_sym_yield] = ACTIONS(6204), - [anon_sym_when] = ACTIONS(6204), - [anon_sym_from] = ACTIONS(6204), - [anon_sym_into] = ACTIONS(6204), - [anon_sym_join] = ACTIONS(6204), - [anon_sym_on] = ACTIONS(6204), - [anon_sym_equals] = ACTIONS(6204), - [anon_sym_let] = ACTIONS(6204), - [anon_sym_orderby] = ACTIONS(6204), - [anon_sym_ascending] = ACTIONS(6204), - [anon_sym_descending] = ACTIONS(6204), - [anon_sym_group] = ACTIONS(6204), - [anon_sym_by] = ACTIONS(6204), - [anon_sym_select] = ACTIONS(6204), - [sym_grit_metavariable] = ACTIONS(6209), + [aux_sym_query_body_repeat2] = STATE(5104), + [anon_sym_LBRACK] = ACTIONS(7903), + [anon_sym_COMMA] = ACTIONS(7903), + [anon_sym_LPAREN] = ACTIONS(7903), + [anon_sym_LT] = ACTIONS(7905), + [anon_sym_GT] = ACTIONS(7905), + [anon_sym_where] = ACTIONS(7903), + [anon_sym_QMARK] = ACTIONS(7905), + [anon_sym_DOT] = ACTIONS(7905), + [anon_sym_STAR] = ACTIONS(7903), + [anon_sym_switch] = ACTIONS(7903), + [anon_sym_DOT_DOT] = ACTIONS(7903), + [anon_sym_LT_EQ] = ACTIONS(7903), + [anon_sym_GT_EQ] = ACTIONS(7903), + [anon_sym_and] = ACTIONS(7903), + [anon_sym_or] = ACTIONS(7905), + [anon_sym_EQ_EQ] = ACTIONS(7903), + [anon_sym_BANG_EQ] = ACTIONS(7903), + [anon_sym_AMP_AMP] = ACTIONS(7903), + [anon_sym_PIPE_PIPE] = ACTIONS(7903), + [anon_sym_AMP] = ACTIONS(7905), + [sym_op_bitwise_or] = ACTIONS(7905), + [anon_sym_CARET] = ACTIONS(7903), + [sym_op_left_shift] = ACTIONS(7903), + [sym_op_right_shift] = ACTIONS(7905), + [sym_op_unsigned_right_shift] = ACTIONS(7903), + [anon_sym_PLUS] = ACTIONS(7905), + [anon_sym_DASH] = ACTIONS(7905), + [sym_op_divide] = ACTIONS(7905), + [sym_op_modulo] = ACTIONS(7903), + [sym_op_coalescing] = ACTIONS(7903), + [anon_sym_BANG] = ACTIONS(7905), + [anon_sym_PLUS_PLUS] = ACTIONS(7903), + [anon_sym_DASH_DASH] = ACTIONS(7903), + [anon_sym_from] = ACTIONS(7903), + [anon_sym_into] = ACTIONS(7901), + [anon_sym_join] = ACTIONS(7903), + [anon_sym_let] = ACTIONS(7903), + [anon_sym_orderby] = ACTIONS(7903), + [anon_sym_ascending] = ACTIONS(7903), + [anon_sym_descending] = ACTIONS(7903), + [anon_sym_group] = ACTIONS(7903), + [anon_sym_select] = ACTIONS(7903), + [anon_sym_as] = ACTIONS(7905), + [anon_sym_is] = ACTIONS(7903), + [anon_sym_DASH_GT] = ACTIONS(7903), + [anon_sym_with] = ACTIONS(7903), + [sym_grit_metavariable] = ACTIONS(7903), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -646151,25 +637643,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5103] = { - [sym_argument_list] = STATE(3468), - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4928), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3742), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(5103), [sym_preproc_endregion] = STATE(5103), [sym_preproc_line] = STATE(5103), @@ -646179,36 +637652,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5103), [sym_preproc_define] = STATE(5103), [sym_preproc_undef] = STATE(5103), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_ref] = ACTIONS(4604), - [anon_sym_LBRACE] = ACTIONS(4369), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7380), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [aux_sym_query_body_repeat2] = STATE(5105), + [anon_sym_LBRACK] = ACTIONS(7907), + [anon_sym_COMMA] = ACTIONS(7907), + [anon_sym_LPAREN] = ACTIONS(7907), + [anon_sym_LT] = ACTIONS(7909), + [anon_sym_GT] = ACTIONS(7909), + [anon_sym_where] = ACTIONS(7907), + [anon_sym_QMARK] = ACTIONS(7909), + [anon_sym_DOT] = ACTIONS(7909), + [anon_sym_STAR] = ACTIONS(7907), + [anon_sym_switch] = ACTIONS(7907), + [anon_sym_DOT_DOT] = ACTIONS(7907), + [anon_sym_LT_EQ] = ACTIONS(7907), + [anon_sym_GT_EQ] = ACTIONS(7907), + [anon_sym_and] = ACTIONS(7907), + [anon_sym_or] = ACTIONS(7909), + [anon_sym_EQ_EQ] = ACTIONS(7907), + [anon_sym_BANG_EQ] = ACTIONS(7907), + [anon_sym_AMP_AMP] = ACTIONS(7907), + [anon_sym_PIPE_PIPE] = ACTIONS(7907), + [anon_sym_AMP] = ACTIONS(7909), + [sym_op_bitwise_or] = ACTIONS(7909), + [anon_sym_CARET] = ACTIONS(7907), + [sym_op_left_shift] = ACTIONS(7907), + [sym_op_right_shift] = ACTIONS(7909), + [sym_op_unsigned_right_shift] = ACTIONS(7907), + [anon_sym_PLUS] = ACTIONS(7909), + [anon_sym_DASH] = ACTIONS(7909), + [sym_op_divide] = ACTIONS(7909), + [sym_op_modulo] = ACTIONS(7907), + [sym_op_coalescing] = ACTIONS(7907), + [anon_sym_BANG] = ACTIONS(7909), + [anon_sym_PLUS_PLUS] = ACTIONS(7907), + [anon_sym_DASH_DASH] = ACTIONS(7907), + [anon_sym_from] = ACTIONS(7907), + [anon_sym_into] = ACTIONS(7901), + [anon_sym_join] = ACTIONS(7907), + [anon_sym_let] = ACTIONS(7907), + [anon_sym_orderby] = ACTIONS(7907), + [anon_sym_ascending] = ACTIONS(7907), + [anon_sym_descending] = ACTIONS(7907), + [anon_sym_group] = ACTIONS(7907), + [anon_sym_select] = ACTIONS(7907), + [anon_sym_as] = ACTIONS(7909), + [anon_sym_is] = ACTIONS(7907), + [anon_sym_DASH_GT] = ACTIONS(7907), + [anon_sym_with] = ACTIONS(7907), + [sym_grit_metavariable] = ACTIONS(7907), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -646230,55 +637721,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5104), [sym_preproc_define] = STATE(5104), [sym_preproc_undef] = STATE(5104), - [sym__identifier_token] = ACTIONS(5921), - [anon_sym_extern] = ACTIONS(5921), - [anon_sym_alias] = ACTIONS(5921), - [anon_sym_global] = ACTIONS(5921), - [anon_sym_unsafe] = ACTIONS(5921), - [anon_sym_static] = ACTIONS(5921), - [anon_sym_LBRACK] = ACTIONS(5923), - [anon_sym_LPAREN] = ACTIONS(5923), - [anon_sym_ref] = ACTIONS(5921), - [anon_sym_delegate] = ACTIONS(5921), - [anon_sym_public] = ACTIONS(5921), - [anon_sym_private] = ACTIONS(5921), - [anon_sym_readonly] = ACTIONS(5921), - [anon_sym_abstract] = ACTIONS(5921), - [anon_sym_async] = ACTIONS(5921), - [anon_sym_const] = ACTIONS(5921), - [anon_sym_file] = ACTIONS(5921), - [anon_sym_fixed] = ACTIONS(5921), - [anon_sym_internal] = ACTIONS(5921), - [anon_sym_new] = ACTIONS(5921), - [anon_sym_override] = ACTIONS(5921), - [anon_sym_partial] = ACTIONS(5921), - [anon_sym_protected] = ACTIONS(5921), - [anon_sym_required] = ACTIONS(5921), - [anon_sym_sealed] = ACTIONS(5921), - [anon_sym_virtual] = ACTIONS(5921), - [anon_sym_volatile] = ACTIONS(5921), - [anon_sym_where] = ACTIONS(5921), - [anon_sym_notnull] = ACTIONS(5921), - [anon_sym_unmanaged] = ACTIONS(5921), - [anon_sym_scoped] = ACTIONS(5921), - [anon_sym_var] = ACTIONS(5921), - [sym_predefined_type] = ACTIONS(5921), - [anon_sym_yield] = ACTIONS(5921), - [anon_sym_when] = ACTIONS(5921), - [anon_sym_from] = ACTIONS(5921), - [anon_sym_into] = ACTIONS(5921), - [anon_sym_join] = ACTIONS(5921), - [anon_sym_on] = ACTIONS(5921), - [anon_sym_equals] = ACTIONS(5921), - [anon_sym_let] = ACTIONS(5921), - [anon_sym_orderby] = ACTIONS(5921), - [anon_sym_ascending] = ACTIONS(5921), - [anon_sym_descending] = ACTIONS(5921), - [anon_sym_group] = ACTIONS(5921), - [anon_sym_by] = ACTIONS(5921), - [anon_sym_select] = ACTIONS(5921), - [sym_grit_metavariable] = ACTIONS(5923), - [aux_sym_preproc_if_token1] = ACTIONS(5923), + [aux_sym_query_body_repeat2] = STATE(5104), + [anon_sym_LBRACK] = ACTIONS(7911), + [anon_sym_COMMA] = ACTIONS(7911), + [anon_sym_LPAREN] = ACTIONS(7911), + [anon_sym_LT] = ACTIONS(7913), + [anon_sym_GT] = ACTIONS(7913), + [anon_sym_where] = ACTIONS(7911), + [anon_sym_QMARK] = ACTIONS(7913), + [anon_sym_DOT] = ACTIONS(7913), + [anon_sym_STAR] = ACTIONS(7911), + [anon_sym_switch] = ACTIONS(7911), + [anon_sym_DOT_DOT] = ACTIONS(7911), + [anon_sym_LT_EQ] = ACTIONS(7911), + [anon_sym_GT_EQ] = ACTIONS(7911), + [anon_sym_and] = ACTIONS(7911), + [anon_sym_or] = ACTIONS(7913), + [anon_sym_EQ_EQ] = ACTIONS(7911), + [anon_sym_BANG_EQ] = ACTIONS(7911), + [anon_sym_AMP_AMP] = ACTIONS(7911), + [anon_sym_PIPE_PIPE] = ACTIONS(7911), + [anon_sym_AMP] = ACTIONS(7913), + [sym_op_bitwise_or] = ACTIONS(7913), + [anon_sym_CARET] = ACTIONS(7911), + [sym_op_left_shift] = ACTIONS(7911), + [sym_op_right_shift] = ACTIONS(7913), + [sym_op_unsigned_right_shift] = ACTIONS(7911), + [anon_sym_PLUS] = ACTIONS(7913), + [anon_sym_DASH] = ACTIONS(7913), + [sym_op_divide] = ACTIONS(7913), + [sym_op_modulo] = ACTIONS(7911), + [sym_op_coalescing] = ACTIONS(7911), + [anon_sym_BANG] = ACTIONS(7913), + [anon_sym_PLUS_PLUS] = ACTIONS(7911), + [anon_sym_DASH_DASH] = ACTIONS(7911), + [anon_sym_from] = ACTIONS(7911), + [anon_sym_into] = ACTIONS(7915), + [anon_sym_join] = ACTIONS(7911), + [anon_sym_let] = ACTIONS(7911), + [anon_sym_orderby] = ACTIONS(7911), + [anon_sym_ascending] = ACTIONS(7911), + [anon_sym_descending] = ACTIONS(7911), + [anon_sym_group] = ACTIONS(7911), + [anon_sym_select] = ACTIONS(7911), + [anon_sym_as] = ACTIONS(7913), + [anon_sym_is] = ACTIONS(7911), + [anon_sym_DASH_GT] = ACTIONS(7911), + [anon_sym_with] = ACTIONS(7911), + [sym_grit_metavariable] = ACTIONS(7911), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -646300,55 +637790,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5105), [sym_preproc_define] = STATE(5105), [sym_preproc_undef] = STATE(5105), - [sym__identifier_token] = ACTIONS(5917), - [anon_sym_extern] = ACTIONS(5917), - [anon_sym_alias] = ACTIONS(5917), - [anon_sym_global] = ACTIONS(5917), - [anon_sym_unsafe] = ACTIONS(5917), - [anon_sym_static] = ACTIONS(5917), - [anon_sym_LBRACK] = ACTIONS(5919), - [anon_sym_LPAREN] = ACTIONS(5919), - [anon_sym_ref] = ACTIONS(5917), - [anon_sym_delegate] = ACTIONS(5917), - [anon_sym_public] = ACTIONS(5917), - [anon_sym_private] = ACTIONS(5917), - [anon_sym_readonly] = ACTIONS(5917), - [anon_sym_abstract] = ACTIONS(5917), - [anon_sym_async] = ACTIONS(5917), - [anon_sym_const] = ACTIONS(5917), - [anon_sym_file] = ACTIONS(5917), - [anon_sym_fixed] = ACTIONS(5917), - [anon_sym_internal] = ACTIONS(5917), - [anon_sym_new] = ACTIONS(5917), - [anon_sym_override] = ACTIONS(5917), - [anon_sym_partial] = ACTIONS(5917), - [anon_sym_protected] = ACTIONS(5917), - [anon_sym_required] = ACTIONS(5917), - [anon_sym_sealed] = ACTIONS(5917), - [anon_sym_virtual] = ACTIONS(5917), - [anon_sym_volatile] = ACTIONS(5917), - [anon_sym_where] = ACTIONS(5917), - [anon_sym_notnull] = ACTIONS(5917), - [anon_sym_unmanaged] = ACTIONS(5917), - [anon_sym_scoped] = ACTIONS(5917), - [anon_sym_var] = ACTIONS(5917), - [sym_predefined_type] = ACTIONS(5917), - [anon_sym_yield] = ACTIONS(5917), - [anon_sym_when] = ACTIONS(5917), - [anon_sym_from] = ACTIONS(5917), - [anon_sym_into] = ACTIONS(5917), - [anon_sym_join] = ACTIONS(5917), - [anon_sym_on] = ACTIONS(5917), - [anon_sym_equals] = ACTIONS(5917), - [anon_sym_let] = ACTIONS(5917), - [anon_sym_orderby] = ACTIONS(5917), - [anon_sym_ascending] = ACTIONS(5917), - [anon_sym_descending] = ACTIONS(5917), - [anon_sym_group] = ACTIONS(5917), - [anon_sym_by] = ACTIONS(5917), - [anon_sym_select] = ACTIONS(5917), - [sym_grit_metavariable] = ACTIONS(5919), - [aux_sym_preproc_if_token1] = ACTIONS(5919), + [aux_sym_query_body_repeat2] = STATE(5104), + [anon_sym_LBRACK] = ACTIONS(7918), + [anon_sym_COMMA] = ACTIONS(7918), + [anon_sym_LPAREN] = ACTIONS(7918), + [anon_sym_LT] = ACTIONS(7920), + [anon_sym_GT] = ACTIONS(7920), + [anon_sym_where] = ACTIONS(7918), + [anon_sym_QMARK] = ACTIONS(7920), + [anon_sym_DOT] = ACTIONS(7920), + [anon_sym_STAR] = ACTIONS(7918), + [anon_sym_switch] = ACTIONS(7918), + [anon_sym_DOT_DOT] = ACTIONS(7918), + [anon_sym_LT_EQ] = ACTIONS(7918), + [anon_sym_GT_EQ] = ACTIONS(7918), + [anon_sym_and] = ACTIONS(7918), + [anon_sym_or] = ACTIONS(7920), + [anon_sym_EQ_EQ] = ACTIONS(7918), + [anon_sym_BANG_EQ] = ACTIONS(7918), + [anon_sym_AMP_AMP] = ACTIONS(7918), + [anon_sym_PIPE_PIPE] = ACTIONS(7918), + [anon_sym_AMP] = ACTIONS(7920), + [sym_op_bitwise_or] = ACTIONS(7920), + [anon_sym_CARET] = ACTIONS(7918), + [sym_op_left_shift] = ACTIONS(7918), + [sym_op_right_shift] = ACTIONS(7920), + [sym_op_unsigned_right_shift] = ACTIONS(7918), + [anon_sym_PLUS] = ACTIONS(7920), + [anon_sym_DASH] = ACTIONS(7920), + [sym_op_divide] = ACTIONS(7920), + [sym_op_modulo] = ACTIONS(7918), + [sym_op_coalescing] = ACTIONS(7918), + [anon_sym_BANG] = ACTIONS(7920), + [anon_sym_PLUS_PLUS] = ACTIONS(7918), + [anon_sym_DASH_DASH] = ACTIONS(7918), + [anon_sym_from] = ACTIONS(7918), + [anon_sym_into] = ACTIONS(7901), + [anon_sym_join] = ACTIONS(7918), + [anon_sym_let] = ACTIONS(7918), + [anon_sym_orderby] = ACTIONS(7918), + [anon_sym_ascending] = ACTIONS(7918), + [anon_sym_descending] = ACTIONS(7918), + [anon_sym_group] = ACTIONS(7918), + [anon_sym_select] = ACTIONS(7918), + [anon_sym_as] = ACTIONS(7920), + [anon_sym_is] = ACTIONS(7918), + [anon_sym_DASH_GT] = ACTIONS(7918), + [anon_sym_with] = ACTIONS(7918), + [sym_grit_metavariable] = ACTIONS(7918), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -646361,25 +637850,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5106] = { - [sym_argument_list] = STATE(3379), - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3328), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(5043), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(840), + [sym_op_lte] = STATE(840), + [sym_op_eq] = STATE(842), + [sym_op_neq] = STATE(842), + [sym_op_gt] = STATE(840), + [sym_op_gte] = STATE(840), + [sym_op_and] = STATE(843), + [sym_op_or] = STATE(1156), + [sym_op_bitwise_and] = STATE(851), + [sym_op_bitwise_xor] = STATE(852), + [sym_op_plus] = STATE(861), + [sym_op_minus] = STATE(861), + [sym_op_multiply] = STATE(975), [sym_preproc_region] = STATE(5106), [sym_preproc_endregion] = STATE(5106), [sym_preproc_line] = STATE(5106), @@ -646389,36 +637874,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5106), [sym_preproc_define] = STATE(5106), [sym_preproc_undef] = STATE(5106), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(7306), - [anon_sym_LPAREN] = ACTIONS(7308), - [anon_sym_ref] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(7310), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7382), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5390), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5372), + [sym_op_right_shift] = ACTIONS(5374), + [sym_op_unsigned_right_shift] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5376), + [sym_op_modulo] = ACTIONS(5378), + [sym_op_coalescing] = ACTIONS(5392), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -646431,6 +637919,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5107] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1154), + [sym_op_lte] = STATE(1154), + [sym_op_eq] = STATE(1151), + [sym_op_neq] = STATE(1151), + [sym_op_gt] = STATE(1154), + [sym_op_gte] = STATE(1154), + [sym_op_and] = STATE(1150), + [sym_op_or] = STATE(1149), + [sym_op_bitwise_and] = STATE(1148), + [sym_op_bitwise_xor] = STATE(1146), + [sym_op_plus] = STATE(1145), + [sym_op_minus] = STATE(1145), + [sym_op_multiply] = STATE(1160), [sym_preproc_region] = STATE(5107), [sym_preproc_endregion] = STATE(5107), [sym_preproc_line] = STATE(5107), @@ -646440,55 +637943,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5107), [sym_preproc_define] = STATE(5107), [sym_preproc_undef] = STATE(5107), - [sym__identifier_token] = ACTIONS(5875), - [anon_sym_extern] = ACTIONS(5875), - [anon_sym_alias] = ACTIONS(5875), - [anon_sym_global] = ACTIONS(5875), - [anon_sym_unsafe] = ACTIONS(5875), - [anon_sym_static] = ACTIONS(5875), - [anon_sym_LBRACK] = ACTIONS(5877), - [anon_sym_LPAREN] = ACTIONS(5877), - [anon_sym_ref] = ACTIONS(5875), - [anon_sym_delegate] = ACTIONS(5875), - [anon_sym_public] = ACTIONS(5875), - [anon_sym_private] = ACTIONS(5875), - [anon_sym_readonly] = ACTIONS(5875), - [anon_sym_abstract] = ACTIONS(5875), - [anon_sym_async] = ACTIONS(5875), - [anon_sym_const] = ACTIONS(5875), - [anon_sym_file] = ACTIONS(5875), - [anon_sym_fixed] = ACTIONS(5875), - [anon_sym_internal] = ACTIONS(5875), - [anon_sym_new] = ACTIONS(5875), - [anon_sym_override] = ACTIONS(5875), - [anon_sym_partial] = ACTIONS(5875), - [anon_sym_protected] = ACTIONS(5875), - [anon_sym_required] = ACTIONS(5875), - [anon_sym_sealed] = ACTIONS(5875), - [anon_sym_virtual] = ACTIONS(5875), - [anon_sym_volatile] = ACTIONS(5875), - [anon_sym_where] = ACTIONS(5875), - [anon_sym_notnull] = ACTIONS(5875), - [anon_sym_unmanaged] = ACTIONS(5875), - [anon_sym_scoped] = ACTIONS(5875), - [anon_sym_var] = ACTIONS(5875), - [sym_predefined_type] = ACTIONS(5875), - [anon_sym_yield] = ACTIONS(5875), - [anon_sym_when] = ACTIONS(5875), - [anon_sym_from] = ACTIONS(5875), - [anon_sym_into] = ACTIONS(5875), - [anon_sym_join] = ACTIONS(5875), - [anon_sym_on] = ACTIONS(5875), - [anon_sym_equals] = ACTIONS(5875), - [anon_sym_let] = ACTIONS(5875), - [anon_sym_orderby] = ACTIONS(5875), - [anon_sym_ascending] = ACTIONS(5875), - [anon_sym_descending] = ACTIONS(5875), - [anon_sym_group] = ACTIONS(5875), - [anon_sym_by] = ACTIONS(5875), - [anon_sym_select] = ACTIONS(5875), - [sym_grit_metavariable] = ACTIONS(5877), - [aux_sym_preproc_if_token1] = ACTIONS(5877), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6990), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6992), + [sym_op_right_shift] = ACTIONS(6994), + [sym_op_unsigned_right_shift] = ACTIONS(6992), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6996), + [sym_op_modulo] = ACTIONS(6998), + [sym_op_coalescing] = ACTIONS(7000), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -646501,24 +637988,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5108] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7166), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1643), + [sym_op_lte] = STATE(1643), + [sym_op_eq] = STATE(1663), + [sym_op_neq] = STATE(1663), + [sym_op_gt] = STATE(1643), + [sym_op_gte] = STATE(1643), + [sym_op_and] = STATE(1701), + [sym_op_or] = STATE(1740), + [sym_op_bitwise_and] = STATE(1899), + [sym_op_bitwise_xor] = STATE(1889), + [sym_op_plus] = STATE(1744), + [sym_op_minus] = STATE(1744), + [sym_op_multiply] = STATE(920), [sym_preproc_region] = STATE(5108), [sym_preproc_endregion] = STATE(5108), [sym_preproc_line] = STATE(5108), @@ -646528,22 +638012,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5108), [sym_preproc_define] = STATE(5108), [sym_preproc_undef] = STATE(5108), - [aux_sym_type_argument_list_repeat1] = STATE(7180), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5845), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5809), + [sym_op_right_shift] = ACTIONS(5811), + [sym_op_unsigned_right_shift] = ACTIONS(5809), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5799), + [sym_op_modulo] = ACTIONS(5801), + [sym_op_coalescing] = ACTIONS(5847), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5109] = { + [sym__name] = STATE(6736), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(7449), + [sym_array_type] = STATE(6975), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(6936), + [sym_pointer_type] = STATE(6936), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(6936), + [sym_ref_type] = STATE(7470), + [sym__ref_base_type] = STATE(7717), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6885), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(5109), + [sym_preproc_endregion] = STATE(5109), + [sym_preproc_line] = STATE(5109), + [sym_preproc_pragma] = STATE(5109), + [sym_preproc_nullable] = STATE(5109), + [sym_preproc_error] = STATE(5109), + [sym_preproc_warning] = STATE(5109), + [sym_preproc_define] = STATE(5109), + [sym_preproc_undef] = STATE(5109), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5979), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), + [anon_sym_ref] = ACTIONS(7922), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_readonly] = ACTIONS(7924), [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7384), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(6705), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -646558,77 +638113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [5109] = { - [sym_argument_list] = STATE(3379), - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3328), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(5043), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), - [sym_preproc_region] = STATE(5109), - [sym_preproc_endregion] = STATE(5109), - [sym_preproc_line] = STATE(5109), - [sym_preproc_pragma] = STATE(5109), - [sym_preproc_nullable] = STATE(5109), - [sym_preproc_error] = STATE(5109), - [sym_preproc_warning] = STATE(5109), - [sym_preproc_define] = STATE(5109), - [sym_preproc_undef] = STATE(5109), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(7306), - [anon_sym_LPAREN] = ACTIONS(7308), - [anon_sym_ref] = ACTIONS(4660), - [anon_sym_LBRACE] = ACTIONS(7310), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7386), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -646641,24 +638126,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5110] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7208), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1106), + [sym_op_lte] = STATE(1106), + [sym_op_eq] = STATE(1109), + [sym_op_neq] = STATE(1109), + [sym_op_gt] = STATE(1106), + [sym_op_gte] = STATE(1106), + [sym_op_and] = STATE(1114), + [sym_op_or] = STATE(1115), + [sym_op_bitwise_and] = STATE(1117), + [sym_op_bitwise_xor] = STATE(1125), + [sym_op_plus] = STATE(1140), + [sym_op_minus] = STATE(1140), + [sym_op_multiply] = STATE(1084), [sym_preproc_region] = STATE(5110), [sym_preproc_endregion] = STATE(5110), [sym_preproc_line] = STATE(5110), @@ -646668,37 +638150,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5110), [sym_preproc_define] = STATE(5110), [sym_preproc_undef] = STATE(5110), - [aux_sym_type_argument_list_repeat1] = STATE(7204), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5979), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7388), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5557), + [sym_op_right_shift] = ACTIONS(5559), + [sym_op_unsigned_right_shift] = ACTIONS(5557), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5561), + [sym_op_modulo] = ACTIONS(5563), + [sym_op_coalescing] = ACTIONS(5565), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -646711,6 +638195,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5111] = { + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1010), + [sym_op_lte] = STATE(1010), + [sym_op_eq] = STATE(1013), + [sym_op_neq] = STATE(1013), + [sym_op_gt] = STATE(1010), + [sym_op_gte] = STATE(1010), + [sym_op_and] = STATE(1031), + [sym_op_or] = STATE(1038), + [sym_op_bitwise_and] = STATE(1039), + [sym_op_bitwise_xor] = STATE(1041), + [sym_op_plus] = STATE(1043), + [sym_op_minus] = STATE(1043), + [sym_op_multiply] = STATE(1005), [sym_preproc_region] = STATE(5111), [sym_preproc_endregion] = STATE(5111), [sym_preproc_line] = STATE(5111), @@ -646720,55 +638219,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5111), [sym_preproc_define] = STATE(5111), [sym_preproc_undef] = STATE(5111), - [sym__identifier_token] = ACTIONS(5602), - [anon_sym_extern] = ACTIONS(5602), - [anon_sym_alias] = ACTIONS(5602), - [anon_sym_global] = ACTIONS(5602), - [anon_sym_unsafe] = ACTIONS(5602), - [anon_sym_static] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(5604), - [anon_sym_LPAREN] = ACTIONS(5604), - [anon_sym_ref] = ACTIONS(5602), - [anon_sym_delegate] = ACTIONS(5602), - [anon_sym_public] = ACTIONS(5602), - [anon_sym_private] = ACTIONS(5602), - [anon_sym_readonly] = ACTIONS(5602), - [anon_sym_abstract] = ACTIONS(5602), - [anon_sym_async] = ACTIONS(5602), - [anon_sym_const] = ACTIONS(5602), - [anon_sym_file] = ACTIONS(5602), - [anon_sym_fixed] = ACTIONS(5602), - [anon_sym_internal] = ACTIONS(5602), - [anon_sym_new] = ACTIONS(5602), - [anon_sym_override] = ACTIONS(5602), - [anon_sym_partial] = ACTIONS(5602), - [anon_sym_protected] = ACTIONS(5602), - [anon_sym_required] = ACTIONS(5602), - [anon_sym_sealed] = ACTIONS(5602), - [anon_sym_virtual] = ACTIONS(5602), - [anon_sym_volatile] = ACTIONS(5602), - [anon_sym_where] = ACTIONS(5602), - [anon_sym_notnull] = ACTIONS(5602), - [anon_sym_unmanaged] = ACTIONS(5602), - [anon_sym_scoped] = ACTIONS(5602), - [anon_sym_var] = ACTIONS(5602), - [sym_predefined_type] = ACTIONS(5602), - [anon_sym_yield] = ACTIONS(5602), - [anon_sym_when] = ACTIONS(5602), - [anon_sym_from] = ACTIONS(5602), - [anon_sym_into] = ACTIONS(5602), - [anon_sym_join] = ACTIONS(5602), - [anon_sym_on] = ACTIONS(5602), - [anon_sym_equals] = ACTIONS(5602), - [anon_sym_let] = ACTIONS(5602), - [anon_sym_orderby] = ACTIONS(5602), - [anon_sym_ascending] = ACTIONS(5602), - [anon_sym_descending] = ACTIONS(5602), - [anon_sym_group] = ACTIONS(5602), - [anon_sym_by] = ACTIONS(5602), - [anon_sym_select] = ACTIONS(5602), - [sym_grit_metavariable] = ACTIONS(5604), - [aux_sym_preproc_if_token1] = ACTIONS(5604), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6335), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6327), + [sym_op_right_shift] = ACTIONS(6329), + [sym_op_unsigned_right_shift] = ACTIONS(6327), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6323), + [sym_op_modulo] = ACTIONS(6325), + [sym_op_coalescing] = ACTIONS(6337), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -646781,24 +638264,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5112] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7318), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1443), + [sym_op_lte] = STATE(1443), + [sym_op_eq] = STATE(1441), + [sym_op_neq] = STATE(1441), + [sym_op_gt] = STATE(1443), + [sym_op_gte] = STATE(1443), + [sym_op_and] = STATE(1438), + [sym_op_or] = STATE(1437), + [sym_op_bitwise_and] = STATE(1434), + [sym_op_bitwise_xor] = STATE(1433), + [sym_op_plus] = STATE(1432), + [sym_op_minus] = STATE(1432), + [sym_op_multiply] = STATE(1446), [sym_preproc_region] = STATE(5112), [sym_preproc_endregion] = STATE(5112), [sym_preproc_line] = STATE(5112), @@ -646808,37 +638288,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5112), [sym_preproc_define] = STATE(5112), [sym_preproc_undef] = STATE(5112), - [aux_sym_type_argument_list_repeat1] = STATE(7321), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5979), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7390), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6595), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6597), + [sym_op_right_shift] = ACTIONS(6599), + [sym_op_unsigned_right_shift] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6601), + [sym_op_modulo] = ACTIONS(6603), + [sym_op_coalescing] = ACTIONS(6605), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -646851,7 +638333,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5113] = { - [sym_initializer_expression] = STATE(5327), [sym_preproc_region] = STATE(5113), [sym_preproc_endregion] = STATE(5113), [sym_preproc_line] = STATE(5113), @@ -646861,54 +638342,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5113), [sym_preproc_define] = STATE(5113), [sym_preproc_undef] = STATE(5113), - [anon_sym_LBRACK] = ACTIONS(5736), - [anon_sym_COMMA] = ACTIONS(5734), - [anon_sym_LPAREN] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(5739), - [anon_sym_GT] = ACTIONS(5739), - [anon_sym_where] = ACTIONS(5734), - [anon_sym_QMARK] = ACTIONS(5739), - [anon_sym_BANG] = ACTIONS(5739), - [anon_sym_PLUS_PLUS] = ACTIONS(5734), - [anon_sym_DASH_DASH] = ACTIONS(5734), - [anon_sym_PLUS] = ACTIONS(5739), - [anon_sym_DASH] = ACTIONS(5739), - [anon_sym_STAR] = ACTIONS(5734), - [anon_sym_SLASH] = ACTIONS(5739), - [anon_sym_PERCENT] = ACTIONS(5734), - [anon_sym_CARET] = ACTIONS(5734), - [anon_sym_PIPE] = ACTIONS(5739), - [anon_sym_AMP] = ACTIONS(5739), - [anon_sym_LT_LT] = ACTIONS(5734), - [anon_sym_GT_GT] = ACTIONS(5739), - [anon_sym_GT_GT_GT] = ACTIONS(5734), - [anon_sym_EQ_EQ] = ACTIONS(5734), - [anon_sym_BANG_EQ] = ACTIONS(5734), - [anon_sym_GT_EQ] = ACTIONS(5734), - [anon_sym_LT_EQ] = ACTIONS(5734), - [anon_sym_DOT] = ACTIONS(5739), - [anon_sym_switch] = ACTIONS(5734), - [anon_sym_DOT_DOT] = ACTIONS(5734), - [anon_sym_and] = ACTIONS(5734), - [anon_sym_or] = ACTIONS(5739), - [anon_sym_AMP_AMP] = ACTIONS(5734), - [anon_sym_PIPE_PIPE] = ACTIONS(5734), - [sym_op_coalescing] = ACTIONS(5734), - [anon_sym_from] = ACTIONS(5734), - [anon_sym_into] = ACTIONS(5734), - [anon_sym_join] = ACTIONS(5734), - [anon_sym_let] = ACTIONS(5734), - [anon_sym_orderby] = ACTIONS(5734), - [anon_sym_ascending] = ACTIONS(5734), - [anon_sym_descending] = ACTIONS(5734), - [anon_sym_group] = ACTIONS(5734), - [anon_sym_select] = ACTIONS(5734), - [anon_sym_as] = ACTIONS(5739), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(5734), - [anon_sym_with] = ACTIONS(5734), - [sym_grit_metavariable] = ACTIONS(5734), + [anon_sym_EQ] = ACTIONS(7926), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_in] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7928), + [anon_sym_DASH_EQ] = ACTIONS(7928), + [anon_sym_STAR_EQ] = ACTIONS(7928), + [anon_sym_SLASH_EQ] = ACTIONS(7928), + [anon_sym_PERCENT_EQ] = ACTIONS(7928), + [anon_sym_AMP_EQ] = ACTIONS(7928), + [anon_sym_CARET_EQ] = ACTIONS(7928), + [anon_sym_PIPE_EQ] = ACTIONS(7928), + [anon_sym_LT_LT_EQ] = ACTIONS(7928), + [anon_sym_GT_GT_EQ] = ACTIONS(7928), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7928), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7928), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -646921,7 +638402,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5114] = { - [sym_block] = STATE(7609), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1628), + [sym_op_lte] = STATE(1628), + [sym_op_eq] = STATE(1627), + [sym_op_neq] = STATE(1627), + [sym_op_gt] = STATE(1628), + [sym_op_gte] = STATE(1628), + [sym_op_and] = STATE(1621), + [sym_op_or] = STATE(1619), + [sym_op_bitwise_and] = STATE(1617), + [sym_op_bitwise_xor] = STATE(1615), + [sym_op_plus] = STATE(1613), + [sym_op_minus] = STATE(1613), + [sym_op_multiply] = STATE(1635), [sym_preproc_region] = STATE(5114), [sym_preproc_endregion] = STATE(5114), [sym_preproc_line] = STATE(5114), @@ -646931,54 +638426,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5114), [sym_preproc_define] = STATE(5114), [sym_preproc_undef] = STATE(5114), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(7200), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6203), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6205), + [sym_op_right_shift] = ACTIONS(6207), + [sym_op_unsigned_right_shift] = ACTIONS(6205), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6209), + [sym_op_modulo] = ACTIONS(6211), + [sym_op_coalescing] = ACTIONS(6213), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -646991,25 +638471,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5115] = { - [sym_argument_list] = STATE(4648), - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4604), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4640), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1797), + [sym_op_lte] = STATE(1797), + [sym_op_eq] = STATE(1798), + [sym_op_neq] = STATE(1798), + [sym_op_gt] = STATE(1797), + [sym_op_gte] = STATE(1797), + [sym_op_and] = STATE(1799), + [sym_op_or] = STATE(1800), + [sym_op_bitwise_and] = STATE(1801), + [sym_op_bitwise_xor] = STATE(1804), + [sym_op_plus] = STATE(1805), + [sym_op_minus] = STATE(1805), + [sym_op_multiply] = STATE(1791), [sym_preproc_region] = STATE(5115), [sym_preproc_endregion] = STATE(5115), [sym_preproc_line] = STATE(5115), @@ -647019,36 +638495,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5115), [sym_preproc_define] = STATE(5115), [sym_preproc_undef] = STATE(5115), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(7246), - [anon_sym_LPAREN] = ACTIONS(7248), - [anon_sym_ref] = ACTIONS(4382), - [anon_sym_LBRACE] = ACTIONS(7250), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7392), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6093), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6095), + [sym_op_right_shift] = ACTIONS(6097), + [sym_op_unsigned_right_shift] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6099), + [sym_op_modulo] = ACTIONS(6101), + [sym_op_coalescing] = ACTIONS(6103), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -647061,7 +638540,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5116] = { - [sym_initializer_expression] = STATE(5324), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2906), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(5116), [sym_preproc_endregion] = STATE(5116), [sym_preproc_line] = STATE(5116), @@ -647071,54 +638564,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5116), [sym_preproc_define] = STATE(5116), [sym_preproc_undef] = STATE(5116), - [anon_sym_LBRACK] = ACTIONS(5755), - [anon_sym_COMMA] = ACTIONS(5755), - [anon_sym_LPAREN] = ACTIONS(5755), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(5757), - [anon_sym_GT] = ACTIONS(5757), - [anon_sym_where] = ACTIONS(5755), - [anon_sym_QMARK] = ACTIONS(5757), - [anon_sym_BANG] = ACTIONS(5757), - [anon_sym_PLUS_PLUS] = ACTIONS(5755), - [anon_sym_DASH_DASH] = ACTIONS(5755), - [anon_sym_PLUS] = ACTIONS(5757), - [anon_sym_DASH] = ACTIONS(5757), - [anon_sym_STAR] = ACTIONS(5755), - [anon_sym_SLASH] = ACTIONS(5757), - [anon_sym_PERCENT] = ACTIONS(5755), - [anon_sym_CARET] = ACTIONS(5755), - [anon_sym_PIPE] = ACTIONS(5757), - [anon_sym_AMP] = ACTIONS(5757), - [anon_sym_LT_LT] = ACTIONS(5755), - [anon_sym_GT_GT] = ACTIONS(5757), - [anon_sym_GT_GT_GT] = ACTIONS(5755), - [anon_sym_EQ_EQ] = ACTIONS(5755), - [anon_sym_BANG_EQ] = ACTIONS(5755), - [anon_sym_GT_EQ] = ACTIONS(5755), - [anon_sym_LT_EQ] = ACTIONS(5755), - [anon_sym_DOT] = ACTIONS(5757), - [anon_sym_switch] = ACTIONS(5755), - [anon_sym_DOT_DOT] = ACTIONS(5755), - [anon_sym_and] = ACTIONS(5755), - [anon_sym_or] = ACTIONS(5757), - [anon_sym_AMP_AMP] = ACTIONS(5755), - [anon_sym_PIPE_PIPE] = ACTIONS(5755), - [sym_op_coalescing] = ACTIONS(5755), - [anon_sym_from] = ACTIONS(5755), - [anon_sym_into] = ACTIONS(5755), - [anon_sym_join] = ACTIONS(5755), - [anon_sym_let] = ACTIONS(5755), - [anon_sym_orderby] = ACTIONS(5755), - [anon_sym_ascending] = ACTIONS(5755), - [anon_sym_descending] = ACTIONS(5755), - [anon_sym_group] = ACTIONS(5755), - [anon_sym_select] = ACTIONS(5755), - [anon_sym_as] = ACTIONS(5757), - [anon_sym_is] = ACTIONS(5755), - [anon_sym_DASH_GT] = ACTIONS(5755), - [anon_sym_with] = ACTIONS(5755), - [sym_grit_metavariable] = ACTIONS(5755), + [anon_sym_LBRACK] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -647131,8 +638609,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5117] = { - [sym_identifier] = STATE(7948), - [sym__reserved_identifier] = STATE(2206), [sym_preproc_region] = STATE(5117), [sym_preproc_endregion] = STATE(5117), [sym_preproc_line] = STATE(5117), @@ -647142,53 +638618,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5117), [sym_preproc_define] = STATE(5117), [sym_preproc_undef] = STATE(5117), - [sym__identifier_token] = ACTIONS(7352), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(7356), - [anon_sym_global] = ACTIONS(7356), - [anon_sym_unsafe] = ACTIONS(7360), - [anon_sym_static] = ACTIONS(7360), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(7356), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(7356), - [anon_sym_notnull] = ACTIONS(7356), - [anon_sym_unmanaged] = ACTIONS(7356), - [anon_sym_scoped] = ACTIONS(7356), - [anon_sym_var] = ACTIONS(7356), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(7356), - [anon_sym_when] = ACTIONS(7356), - [anon_sym_from] = ACTIONS(7356), - [anon_sym_into] = ACTIONS(7356), - [anon_sym_join] = ACTIONS(7356), - [anon_sym_on] = ACTIONS(7356), - [anon_sym_equals] = ACTIONS(7356), - [anon_sym_let] = ACTIONS(7356), - [anon_sym_orderby] = ACTIONS(7356), - [anon_sym_ascending] = ACTIONS(7356), - [anon_sym_descending] = ACTIONS(7356), - [anon_sym_group] = ACTIONS(7356), - [anon_sym_by] = ACTIONS(7356), - [anon_sym_select] = ACTIONS(7356), - [sym_grit_metavariable] = ACTIONS(7363), + [anon_sym_EQ] = ACTIONS(7155), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(7930), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7157), + [anon_sym_DASH_EQ] = ACTIONS(7157), + [anon_sym_STAR_EQ] = ACTIONS(7157), + [anon_sym_SLASH_EQ] = ACTIONS(7157), + [anon_sym_PERCENT_EQ] = ACTIONS(7157), + [anon_sym_AMP_EQ] = ACTIONS(7157), + [anon_sym_CARET_EQ] = ACTIONS(7157), + [anon_sym_PIPE_EQ] = ACTIONS(7157), + [anon_sym_LT_LT_EQ] = ACTIONS(7157), + [anon_sym_GT_GT_EQ] = ACTIONS(7157), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7157), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7157), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -647201,6 +638678,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5118] = { + [sym_argument_list] = STATE(3205), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1458), + [sym_op_lte] = STATE(1458), + [sym_op_eq] = STATE(1457), + [sym_op_neq] = STATE(1457), + [sym_op_gt] = STATE(1458), + [sym_op_gte] = STATE(1458), + [sym_op_and] = STATE(1455), + [sym_op_or] = STATE(1454), + [sym_op_bitwise_and] = STATE(1453), + [sym_op_bitwise_xor] = STATE(1469), + [sym_op_plus] = STATE(1435), + [sym_op_minus] = STATE(1435), + [sym_op_multiply] = STATE(1465), [sym_preproc_region] = STATE(5118), [sym_preproc_endregion] = STATE(5118), [sym_preproc_line] = STATE(5118), @@ -647210,55 +638702,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5118), [sym_preproc_define] = STATE(5118), [sym_preproc_undef] = STATE(5118), - [anon_sym_EQ] = ACTIONS(7394), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_in] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7396), - [anon_sym_DASH_EQ] = ACTIONS(7396), - [anon_sym_STAR_EQ] = ACTIONS(7396), - [anon_sym_SLASH_EQ] = ACTIONS(7396), - [anon_sym_PERCENT_EQ] = ACTIONS(7396), - [anon_sym_AMP_EQ] = ACTIONS(7396), - [anon_sym_CARET_EQ] = ACTIONS(7396), - [anon_sym_PIPE_EQ] = ACTIONS(7396), - [anon_sym_LT_LT_EQ] = ACTIONS(7396), - [anon_sym_GT_GT_EQ] = ACTIONS(7396), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7396), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7396), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5604), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5606), + [sym_op_right_shift] = ACTIONS(5608), + [sym_op_unsigned_right_shift] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5610), + [sym_op_modulo] = ACTIONS(5612), + [sym_op_coalescing] = ACTIONS(5643), + [anon_sym_BANG] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -647271,7 +638747,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5119] = { - [sym_initializer_expression] = STATE(5326), [sym_preproc_region] = STATE(5119), [sym_preproc_endregion] = STATE(5119), [sym_preproc_line] = STATE(5119), @@ -647281,54 +638756,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5119), [sym_preproc_define] = STATE(5119), [sym_preproc_undef] = STATE(5119), - [anon_sym_LBRACK] = ACTIONS(5954), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_LBRACE] = ACTIONS(7398), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_where] = ACTIONS(5958), - [anon_sym_QMARK] = ACTIONS(7401), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PLUS_PLUS] = ACTIONS(5958), - [anon_sym_DASH_DASH] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5964), - [anon_sym_DASH] = ACTIONS(5964), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5964), - [anon_sym_PERCENT] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_AMP] = ACTIONS(5964), - [anon_sym_LT_LT] = ACTIONS(5958), - [anon_sym_GT_GT] = ACTIONS(5964), - [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(5964), - [anon_sym_switch] = ACTIONS(5958), - [anon_sym_DOT_DOT] = ACTIONS(5958), - [anon_sym_and] = ACTIONS(5958), - [anon_sym_or] = ACTIONS(5964), - [anon_sym_AMP_AMP] = ACTIONS(5958), - [anon_sym_PIPE_PIPE] = ACTIONS(5958), - [sym_op_coalescing] = ACTIONS(5958), - [anon_sym_from] = ACTIONS(5958), - [anon_sym_into] = ACTIONS(5958), - [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(5964), - [anon_sym_is] = ACTIONS(5958), - [anon_sym_DASH_GT] = ACTIONS(5958), - [anon_sym_with] = ACTIONS(5958), - [sym_grit_metavariable] = ACTIONS(5958), + [sym__identifier_token] = ACTIONS(3696), + [anon_sym_alias] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_GT] = ACTIONS(3694), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3694), + [anon_sym_notnull] = ACTIONS(3696), + [anon_sym_unmanaged] = ACTIONS(3696), + [anon_sym_operator] = ACTIONS(3696), + [anon_sym_this] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3694), + [anon_sym_scoped] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3696), + [sym_discard] = ACTIONS(3696), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3696), + [anon_sym_join] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_equals] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_orderby] = ACTIONS(3696), + [anon_sym_ascending] = ACTIONS(3696), + [anon_sym_descending] = ACTIONS(3696), + [anon_sym_group] = ACTIONS(3696), + [anon_sym_by] = ACTIONS(3696), + [anon_sym_select] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3694), + [sym_grit_metavariable] = ACTIONS(3694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -647341,24 +638816,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5120] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7220), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5120), [sym_preproc_endregion] = STATE(5120), [sym_preproc_line] = STATE(5120), @@ -647368,37 +638825,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5120), [sym_preproc_define] = STATE(5120), [sym_preproc_undef] = STATE(5120), - [aux_sym_type_argument_list_repeat1] = STATE(7219), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5979), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7405), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [sym_accessor_get] = ACTIONS(3738), + [sym_accessor_set] = ACTIONS(3738), + [sym_accessor_add] = ACTIONS(3738), + [sym_accessor_remove] = ACTIONS(3738), + [sym_accessor_init] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -647411,6 +638885,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5121] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1030), + [sym_op_lte] = STATE(1030), + [sym_op_eq] = STATE(1029), + [sym_op_neq] = STATE(1029), + [sym_op_gt] = STATE(1030), + [sym_op_gte] = STATE(1030), + [sym_op_and] = STATE(1027), + [sym_op_or] = STATE(1025), + [sym_op_bitwise_and] = STATE(1024), + [sym_op_bitwise_xor] = STATE(1023), + [sym_op_plus] = STATE(1022), + [sym_op_minus] = STATE(1022), + [sym_op_multiply] = STATE(1033), [sym_preproc_region] = STATE(5121), [sym_preproc_endregion] = STATE(5121), [sym_preproc_line] = STATE(5121), @@ -647420,55 +638909,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5121), [sym_preproc_define] = STATE(5121), [sym_preproc_undef] = STATE(5121), - [sym__identifier_token] = ACTIONS(5542), - [anon_sym_extern] = ACTIONS(5542), - [anon_sym_alias] = ACTIONS(5542), - [anon_sym_global] = ACTIONS(5542), - [anon_sym_unsafe] = ACTIONS(5542), - [anon_sym_static] = ACTIONS(5542), - [anon_sym_LBRACK] = ACTIONS(5544), - [anon_sym_LPAREN] = ACTIONS(5544), - [anon_sym_ref] = ACTIONS(5542), - [anon_sym_delegate] = ACTIONS(5542), - [anon_sym_public] = ACTIONS(5542), - [anon_sym_private] = ACTIONS(5542), - [anon_sym_readonly] = ACTIONS(5542), - [anon_sym_abstract] = ACTIONS(5542), - [anon_sym_async] = ACTIONS(5542), - [anon_sym_const] = ACTIONS(5542), - [anon_sym_file] = ACTIONS(5542), - [anon_sym_fixed] = ACTIONS(5542), - [anon_sym_internal] = ACTIONS(5542), - [anon_sym_new] = ACTIONS(5542), - [anon_sym_override] = ACTIONS(5542), - [anon_sym_partial] = ACTIONS(5542), - [anon_sym_protected] = ACTIONS(5542), - [anon_sym_required] = ACTIONS(5542), - [anon_sym_sealed] = ACTIONS(5542), - [anon_sym_virtual] = ACTIONS(5542), - [anon_sym_volatile] = ACTIONS(5542), - [anon_sym_where] = ACTIONS(5542), - [anon_sym_notnull] = ACTIONS(5542), - [anon_sym_unmanaged] = ACTIONS(5542), - [anon_sym_scoped] = ACTIONS(5542), - [anon_sym_var] = ACTIONS(5542), - [sym_predefined_type] = ACTIONS(5542), - [anon_sym_yield] = ACTIONS(5542), - [anon_sym_when] = ACTIONS(5542), - [anon_sym_from] = ACTIONS(5542), - [anon_sym_into] = ACTIONS(5542), - [anon_sym_join] = ACTIONS(5542), - [anon_sym_on] = ACTIONS(5542), - [anon_sym_equals] = ACTIONS(5542), - [anon_sym_let] = ACTIONS(5542), - [anon_sym_orderby] = ACTIONS(5542), - [anon_sym_ascending] = ACTIONS(5542), - [anon_sym_descending] = ACTIONS(5542), - [anon_sym_group] = ACTIONS(5542), - [anon_sym_by] = ACTIONS(5542), - [anon_sym_select] = ACTIONS(5542), - [sym_grit_metavariable] = ACTIONS(5544), - [aux_sym_preproc_if_token1] = ACTIONS(5544), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6895), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6897), + [sym_op_right_shift] = ACTIONS(6899), + [sym_op_unsigned_right_shift] = ACTIONS(6897), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6901), + [sym_op_modulo] = ACTIONS(6903), + [sym_op_coalescing] = ACTIONS(6905), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -647481,24 +638954,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5122] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7109), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1827), + [sym_op_lte] = STATE(1827), + [sym_op_eq] = STATE(1825), + [sym_op_neq] = STATE(1825), + [sym_op_gt] = STATE(1827), + [sym_op_gte] = STATE(1827), + [sym_op_and] = STATE(1824), + [sym_op_or] = STATE(1820), + [sym_op_bitwise_and] = STATE(1819), + [sym_op_bitwise_xor] = STATE(1817), + [sym_op_plus] = STATE(1814), + [sym_op_minus] = STATE(1814), + [sym_op_multiply] = STATE(1834), [sym_preproc_region] = STATE(5122), [sym_preproc_endregion] = STATE(5122), [sym_preproc_line] = STATE(5122), @@ -647508,37 +638978,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5122), [sym_preproc_define] = STATE(5122), [sym_preproc_undef] = STATE(5122), - [aux_sym_type_argument_list_repeat1] = STATE(7146), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5979), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7407), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6187), + [sym_op_right_shift] = ACTIONS(6189), + [sym_op_unsigned_right_shift] = ACTIONS(6187), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6191), + [sym_op_modulo] = ACTIONS(6193), + [sym_op_coalescing] = ACTIONS(6195), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -647551,7 +639023,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5123] = { - [sym_block] = STATE(2072), [sym_preproc_region] = STATE(5123), [sym_preproc_endregion] = STATE(5123), [sym_preproc_line] = STATE(5123), @@ -647561,54 +639032,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5123), [sym_preproc_define] = STATE(5123), [sym_preproc_undef] = STATE(5123), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(6902), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [sym__identifier_token] = ACTIONS(6133), + [anon_sym_extern] = ACTIONS(6133), + [anon_sym_alias] = ACTIONS(6133), + [anon_sym_global] = ACTIONS(6133), + [anon_sym_unsafe] = ACTIONS(6133), + [anon_sym_static] = ACTIONS(6133), + [anon_sym_public] = ACTIONS(6133), + [anon_sym_private] = ACTIONS(6133), + [anon_sym_readonly] = ACTIONS(6133), + [anon_sym_abstract] = ACTIONS(6133), + [anon_sym_async] = ACTIONS(6133), + [anon_sym_const] = ACTIONS(6133), + [anon_sym_file] = ACTIONS(6133), + [anon_sym_fixed] = ACTIONS(6133), + [anon_sym_internal] = ACTIONS(6133), + [anon_sym_new] = ACTIONS(6133), + [anon_sym_override] = ACTIONS(6133), + [anon_sym_partial] = ACTIONS(6133), + [anon_sym_protected] = ACTIONS(6133), + [anon_sym_required] = ACTIONS(6133), + [anon_sym_sealed] = ACTIONS(6133), + [anon_sym_virtual] = ACTIONS(6133), + [anon_sym_volatile] = ACTIONS(6133), + [anon_sym_where] = ACTIONS(6133), + [anon_sym_notnull] = ACTIONS(6133), + [anon_sym_unmanaged] = ACTIONS(6133), + [sym_accessor_get] = ACTIONS(6133), + [sym_accessor_set] = ACTIONS(6133), + [sym_accessor_add] = ACTIONS(6133), + [sym_accessor_remove] = ACTIONS(6133), + [sym_accessor_init] = ACTIONS(6133), + [anon_sym_scoped] = ACTIONS(6133), + [anon_sym_var] = ACTIONS(6133), + [anon_sym_yield] = ACTIONS(6133), + [anon_sym_when] = ACTIONS(6133), + [anon_sym_from] = ACTIONS(6133), + [anon_sym_into] = ACTIONS(6133), + [anon_sym_join] = ACTIONS(6133), + [anon_sym_on] = ACTIONS(6133), + [anon_sym_equals] = ACTIONS(6133), + [anon_sym_let] = ACTIONS(6133), + [anon_sym_orderby] = ACTIONS(6133), + [anon_sym_ascending] = ACTIONS(6133), + [anon_sym_descending] = ACTIONS(6133), + [anon_sym_group] = ACTIONS(6133), + [anon_sym_by] = ACTIONS(6133), + [anon_sym_select] = ACTIONS(6133), + [sym_grit_metavariable] = ACTIONS(6135), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -647621,6 +639092,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5124] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(3030), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(5124), [sym_preproc_endregion] = STATE(5124), [sym_preproc_line] = STATE(5124), @@ -647630,55 +639116,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5124), [sym_preproc_define] = STATE(5124), [sym_preproc_undef] = STATE(5124), - [sym__identifier_token] = ACTIONS(5608), - [anon_sym_extern] = ACTIONS(5608), - [anon_sym_alias] = ACTIONS(5608), - [anon_sym_global] = ACTIONS(5608), - [anon_sym_unsafe] = ACTIONS(5608), - [anon_sym_static] = ACTIONS(5608), - [anon_sym_LBRACK] = ACTIONS(5610), - [anon_sym_LPAREN] = ACTIONS(5610), - [anon_sym_ref] = ACTIONS(5608), - [anon_sym_delegate] = ACTIONS(5608), - [anon_sym_public] = ACTIONS(5608), - [anon_sym_private] = ACTIONS(5608), - [anon_sym_readonly] = ACTIONS(5608), - [anon_sym_abstract] = ACTIONS(5608), - [anon_sym_async] = ACTIONS(5608), - [anon_sym_const] = ACTIONS(5608), - [anon_sym_file] = ACTIONS(5608), - [anon_sym_fixed] = ACTIONS(5608), - [anon_sym_internal] = ACTIONS(5608), - [anon_sym_new] = ACTIONS(5608), - [anon_sym_override] = ACTIONS(5608), - [anon_sym_partial] = ACTIONS(5608), - [anon_sym_protected] = ACTIONS(5608), - [anon_sym_required] = ACTIONS(5608), - [anon_sym_sealed] = ACTIONS(5608), - [anon_sym_virtual] = ACTIONS(5608), - [anon_sym_volatile] = ACTIONS(5608), - [anon_sym_where] = ACTIONS(5608), - [anon_sym_notnull] = ACTIONS(5608), - [anon_sym_unmanaged] = ACTIONS(5608), - [anon_sym_scoped] = ACTIONS(5608), - [anon_sym_var] = ACTIONS(5608), - [sym_predefined_type] = ACTIONS(5608), - [anon_sym_yield] = ACTIONS(5608), - [anon_sym_when] = ACTIONS(5608), - [anon_sym_from] = ACTIONS(5608), - [anon_sym_into] = ACTIONS(5608), - [anon_sym_join] = ACTIONS(5608), - [anon_sym_on] = ACTIONS(5608), - [anon_sym_equals] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(5608), - [anon_sym_orderby] = ACTIONS(5608), - [anon_sym_ascending] = ACTIONS(5608), - [anon_sym_descending] = ACTIONS(5608), - [anon_sym_group] = ACTIONS(5608), - [anon_sym_by] = ACTIONS(5608), - [anon_sym_select] = ACTIONS(5608), - [sym_grit_metavariable] = ACTIONS(5610), - [aux_sym_preproc_if_token1] = ACTIONS(5610), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -647691,6 +639161,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5125] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(935), + [sym_op_lte] = STATE(935), + [sym_op_eq] = STATE(934), + [sym_op_neq] = STATE(934), + [sym_op_gt] = STATE(935), + [sym_op_gte] = STATE(935), + [sym_op_and] = STATE(931), + [sym_op_or] = STATE(930), + [sym_op_bitwise_and] = STATE(929), + [sym_op_bitwise_xor] = STATE(928), + [sym_op_plus] = STATE(927), + [sym_op_minus] = STATE(927), + [sym_op_multiply] = STATE(938), [sym_preproc_region] = STATE(5125), [sym_preproc_endregion] = STATE(5125), [sym_preproc_line] = STATE(5125), @@ -647700,55 +639185,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5125), [sym_preproc_define] = STATE(5125), [sym_preproc_undef] = STATE(5125), - [sym__identifier_token] = ACTIONS(4084), - [anon_sym_extern] = ACTIONS(4084), - [anon_sym_alias] = ACTIONS(4084), - [anon_sym_global] = ACTIONS(4084), - [anon_sym_unsafe] = ACTIONS(4084), - [anon_sym_static] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4086), - [anon_sym_LPAREN] = ACTIONS(4086), - [anon_sym_ref] = ACTIONS(4084), - [anon_sym_delegate] = ACTIONS(4084), - [anon_sym_public] = ACTIONS(4084), - [anon_sym_private] = ACTIONS(4084), - [anon_sym_readonly] = ACTIONS(4084), - [anon_sym_abstract] = ACTIONS(4084), - [anon_sym_async] = ACTIONS(4084), - [anon_sym_const] = ACTIONS(4084), - [anon_sym_file] = ACTIONS(4084), - [anon_sym_fixed] = ACTIONS(4084), - [anon_sym_internal] = ACTIONS(4084), - [anon_sym_new] = ACTIONS(4084), - [anon_sym_override] = ACTIONS(4084), - [anon_sym_partial] = ACTIONS(4084), - [anon_sym_protected] = ACTIONS(4084), - [anon_sym_required] = ACTIONS(4084), - [anon_sym_sealed] = ACTIONS(4084), - [anon_sym_virtual] = ACTIONS(4084), - [anon_sym_volatile] = ACTIONS(4084), - [anon_sym_where] = ACTIONS(4084), - [anon_sym_notnull] = ACTIONS(4084), - [anon_sym_unmanaged] = ACTIONS(4084), - [anon_sym_scoped] = ACTIONS(4084), - [anon_sym_var] = ACTIONS(4084), - [sym_predefined_type] = ACTIONS(4084), - [anon_sym_yield] = ACTIONS(4084), - [anon_sym_when] = 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_ascending] = ACTIONS(4084), - [anon_sym_descending] = ACTIONS(4084), - [anon_sym_group] = ACTIONS(4084), - [anon_sym_by] = ACTIONS(4084), - [anon_sym_select] = ACTIONS(4084), - [sym_grit_metavariable] = ACTIONS(4086), - [aux_sym_preproc_if_token1] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6765), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6767), + [sym_op_right_shift] = ACTIONS(6769), + [sym_op_unsigned_right_shift] = ACTIONS(6767), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6771), + [sym_op_modulo] = ACTIONS(6773), + [sym_op_coalescing] = ACTIONS(6775), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -647761,6 +639230,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5126] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(3867), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(5126), [sym_preproc_endregion] = STATE(5126), [sym_preproc_line] = STATE(5126), @@ -647770,55 +639254,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5126), [sym_preproc_define] = STATE(5126), [sym_preproc_undef] = STATE(5126), - [anon_sym_EQ] = ACTIONS(7409), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7411), - [anon_sym_DASH_EQ] = ACTIONS(7411), - [anon_sym_STAR_EQ] = ACTIONS(7411), - [anon_sym_SLASH_EQ] = ACTIONS(7411), - [anon_sym_PERCENT_EQ] = ACTIONS(7411), - [anon_sym_AMP_EQ] = ACTIONS(7411), - [anon_sym_CARET_EQ] = ACTIONS(7411), - [anon_sym_PIPE_EQ] = ACTIONS(7411), - [anon_sym_LT_LT_EQ] = ACTIONS(7411), - [anon_sym_GT_GT_EQ] = ACTIONS(7411), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7411), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7411), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_on] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(6149), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -647831,24 +639299,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5127] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7094), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5127), [sym_preproc_endregion] = STATE(5127), [sym_preproc_line] = STATE(5127), @@ -647858,37 +639308,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5127), [sym_preproc_define] = STATE(5127), [sym_preproc_undef] = STATE(5127), - [aux_sym_type_argument_list_repeat1] = STATE(7093), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5979), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7413), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_EQ] = ACTIONS(7155), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(7693), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7157), + [anon_sym_DASH_EQ] = ACTIONS(7157), + [anon_sym_STAR_EQ] = ACTIONS(7157), + [anon_sym_SLASH_EQ] = ACTIONS(7157), + [anon_sym_PERCENT_EQ] = ACTIONS(7157), + [anon_sym_AMP_EQ] = ACTIONS(7157), + [anon_sym_CARET_EQ] = ACTIONS(7157), + [anon_sym_PIPE_EQ] = ACTIONS(7157), + [anon_sym_LT_LT_EQ] = ACTIONS(7157), + [anon_sym_GT_GT_EQ] = ACTIONS(7157), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7157), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7157), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -647901,25 +639368,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5128] = { - [sym_argument_list] = STATE(4727), - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4643), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4750), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(5128), [sym_preproc_endregion] = STATE(5128), [sym_preproc_line] = STATE(5128), @@ -647929,36 +639377,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5128), [sym_preproc_define] = STATE(5128), [sym_preproc_undef] = STATE(5128), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(7228), - [anon_sym_LPAREN] = ACTIONS(7230), - [anon_sym_ref] = ACTIONS(4143), - [anon_sym_LBRACE] = ACTIONS(7232), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7415), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [anon_sym_EQ] = ACTIONS(7932), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7934), + [anon_sym_DASH_EQ] = ACTIONS(7934), + [anon_sym_STAR_EQ] = ACTIONS(7934), + [anon_sym_SLASH_EQ] = ACTIONS(7934), + [anon_sym_PERCENT_EQ] = ACTIONS(7934), + [anon_sym_AMP_EQ] = ACTIONS(7934), + [anon_sym_CARET_EQ] = ACTIONS(7934), + [anon_sym_PIPE_EQ] = ACTIONS(7934), + [anon_sym_LT_LT_EQ] = ACTIONS(7934), + [anon_sym_GT_GT_EQ] = ACTIONS(7934), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7934), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7934), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_equals] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -647971,6 +639437,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5129] = { + [sym_argument_list] = STATE(5189), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1215), + [sym_op_lte] = STATE(1215), + [sym_op_eq] = STATE(1216), + [sym_op_neq] = STATE(1216), + [sym_op_gt] = STATE(1215), + [sym_op_gte] = STATE(1215), + [sym_op_and] = STATE(1224), + [sym_op_or] = STATE(1226), + [sym_op_bitwise_and] = STATE(1244), + [sym_op_bitwise_xor] = STATE(1247), + [sym_op_plus] = STATE(1251), + [sym_op_minus] = STATE(1251), + [sym_op_multiply] = STATE(1208), [sym_preproc_region] = STATE(5129), [sym_preproc_endregion] = STATE(5129), [sym_preproc_line] = STATE(5129), @@ -647980,55 +639461,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5129), [sym_preproc_define] = STATE(5129), [sym_preproc_undef] = STATE(5129), - [sym__identifier_token] = ACTIONS(5594), - [anon_sym_extern] = ACTIONS(5594), - [anon_sym_alias] = ACTIONS(5594), - [anon_sym_global] = ACTIONS(5594), - [anon_sym_unsafe] = ACTIONS(5594), - [anon_sym_static] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(5596), - [anon_sym_LPAREN] = ACTIONS(5596), - [anon_sym_ref] = ACTIONS(5594), - [anon_sym_delegate] = ACTIONS(5594), - [anon_sym_public] = ACTIONS(5594), - [anon_sym_private] = ACTIONS(5594), - [anon_sym_readonly] = ACTIONS(5594), - [anon_sym_abstract] = ACTIONS(5594), - [anon_sym_async] = ACTIONS(5594), - [anon_sym_const] = ACTIONS(5594), - [anon_sym_file] = ACTIONS(5594), - [anon_sym_fixed] = ACTIONS(5594), - [anon_sym_internal] = ACTIONS(5594), - [anon_sym_new] = ACTIONS(5594), - [anon_sym_override] = ACTIONS(5594), - [anon_sym_partial] = ACTIONS(5594), - [anon_sym_protected] = ACTIONS(5594), - [anon_sym_required] = ACTIONS(5594), - [anon_sym_sealed] = ACTIONS(5594), - [anon_sym_virtual] = ACTIONS(5594), - [anon_sym_volatile] = ACTIONS(5594), - [anon_sym_where] = ACTIONS(5594), - [anon_sym_notnull] = ACTIONS(5594), - [anon_sym_unmanaged] = ACTIONS(5594), - [anon_sym_scoped] = ACTIONS(5594), - [anon_sym_var] = ACTIONS(5594), - [sym_predefined_type] = ACTIONS(5594), - [anon_sym_yield] = ACTIONS(5594), - [anon_sym_when] = ACTIONS(5594), - [anon_sym_from] = ACTIONS(5594), - [anon_sym_into] = ACTIONS(5594), - [anon_sym_join] = ACTIONS(5594), - [anon_sym_on] = ACTIONS(5594), - [anon_sym_equals] = ACTIONS(5594), - [anon_sym_let] = ACTIONS(5594), - [anon_sym_orderby] = ACTIONS(5594), - [anon_sym_ascending] = ACTIONS(5594), - [anon_sym_descending] = ACTIONS(5594), - [anon_sym_group] = ACTIONS(5594), - [anon_sym_by] = ACTIONS(5594), - [anon_sym_select] = ACTIONS(5594), - [sym_grit_metavariable] = ACTIONS(5596), - [aux_sym_preproc_if_token1] = ACTIONS(5596), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(5270), + [sym_op_right_shift] = ACTIONS(5272), + [sym_op_unsigned_right_shift] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(5278), + [sym_op_modulo] = ACTIONS(5280), + [sym_op_coalescing] = ACTIONS(5282), + [anon_sym_BANG] = ACTIONS(5284), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -648041,6 +639506,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5130] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1549), + [sym_op_lte] = STATE(1549), + [sym_op_eq] = STATE(1546), + [sym_op_neq] = STATE(1546), + [sym_op_gt] = STATE(1549), + [sym_op_gte] = STATE(1549), + [sym_op_and] = STATE(1545), + [sym_op_or] = STATE(1543), + [sym_op_bitwise_and] = STATE(1542), + [sym_op_bitwise_xor] = STATE(1540), + [sym_op_plus] = STATE(1539), + [sym_op_minus] = STATE(1539), + [sym_op_multiply] = STATE(1551), [sym_preproc_region] = STATE(5130), [sym_preproc_endregion] = STATE(5130), [sym_preproc_line] = STATE(5130), @@ -648050,55 +639530,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5130), [sym_preproc_define] = STATE(5130), [sym_preproc_undef] = STATE(5130), - [anon_sym_EQ] = ACTIONS(7417), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7419), - [anon_sym_DASH_EQ] = ACTIONS(7419), - [anon_sym_STAR_EQ] = ACTIONS(7419), - [anon_sym_SLASH_EQ] = ACTIONS(7419), - [anon_sym_PERCENT_EQ] = ACTIONS(7419), - [anon_sym_AMP_EQ] = ACTIONS(7419), - [anon_sym_CARET_EQ] = ACTIONS(7419), - [anon_sym_PIPE_EQ] = ACTIONS(7419), - [anon_sym_LT_LT_EQ] = ACTIONS(7419), - [anon_sym_GT_GT_EQ] = ACTIONS(7419), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7419), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7419), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6462), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6450), + [sym_op_right_shift] = ACTIONS(6452), + [sym_op_unsigned_right_shift] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6454), + [sym_op_modulo] = ACTIONS(6456), + [sym_op_coalescing] = ACTIONS(6466), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -648111,6 +639575,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5131] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2942), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(5131), [sym_preproc_endregion] = STATE(5131), [sym_preproc_line] = STATE(5131), @@ -648120,55 +639599,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5131), [sym_preproc_define] = STATE(5131), [sym_preproc_undef] = STATE(5131), - [sym__identifier_token] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym_alias] = ACTIONS(5636), - [anon_sym_global] = ACTIONS(5636), - [anon_sym_unsafe] = ACTIONS(5636), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_LPAREN] = ACTIONS(5638), - [anon_sym_ref] = ACTIONS(5636), - [anon_sym_delegate] = ACTIONS(5636), - [anon_sym_public] = ACTIONS(5636), - [anon_sym_private] = ACTIONS(5636), - [anon_sym_readonly] = ACTIONS(5636), - [anon_sym_abstract] = ACTIONS(5636), - [anon_sym_async] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_file] = ACTIONS(5636), - [anon_sym_fixed] = ACTIONS(5636), - [anon_sym_internal] = ACTIONS(5636), - [anon_sym_new] = ACTIONS(5636), - [anon_sym_override] = ACTIONS(5636), - [anon_sym_partial] = ACTIONS(5636), - [anon_sym_protected] = ACTIONS(5636), - [anon_sym_required] = ACTIONS(5636), - [anon_sym_sealed] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_where] = ACTIONS(5636), - [anon_sym_notnull] = ACTIONS(5636), - [anon_sym_unmanaged] = ACTIONS(5636), - [anon_sym_scoped] = ACTIONS(5636), - [anon_sym_var] = ACTIONS(5636), - [sym_predefined_type] = ACTIONS(5636), - [anon_sym_yield] = ACTIONS(5636), - [anon_sym_when] = ACTIONS(5636), - [anon_sym_from] = ACTIONS(5636), - [anon_sym_into] = ACTIONS(5636), - [anon_sym_join] = ACTIONS(5636), - [anon_sym_on] = ACTIONS(5636), - [anon_sym_equals] = ACTIONS(5636), - [anon_sym_let] = ACTIONS(5636), - [anon_sym_orderby] = ACTIONS(5636), - [anon_sym_ascending] = ACTIONS(5636), - [anon_sym_descending] = ACTIONS(5636), - [anon_sym_group] = ACTIONS(5636), - [anon_sym_by] = ACTIONS(5636), - [anon_sym_select] = ACTIONS(5636), - [sym_grit_metavariable] = ACTIONS(5638), - [aux_sym_preproc_if_token1] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -648181,25 +639644,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5132] = { - [sym_argument_list] = STATE(3468), - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(5476), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3742), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym_argument_list] = STATE(5761), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1317), + [sym_op_lte] = STATE(1317), + [sym_op_eq] = STATE(1319), + [sym_op_neq] = STATE(1319), + [sym_op_gt] = STATE(1317), + [sym_op_gte] = STATE(1317), + [sym_op_and] = STATE(1222), + [sym_op_or] = STATE(1323), + [sym_op_bitwise_and] = STATE(1324), + [sym_op_bitwise_xor] = STATE(1327), + [sym_op_plus] = STATE(1340), + [sym_op_minus] = STATE(1340), + [sym_op_multiply] = STATE(1312), [sym_preproc_region] = STATE(5132), [sym_preproc_endregion] = STATE(5132), [sym_preproc_line] = STATE(5132), @@ -648209,36 +639668,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5132), [sym_preproc_define] = STATE(5132), [sym_preproc_undef] = STATE(5132), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(7421), - [anon_sym_ref] = ACTIONS(4511), - [anon_sym_LBRACE] = ACTIONS(4369), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7423), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6151), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6161), + [sym_op_right_shift] = ACTIONS(6163), + [sym_op_unsigned_right_shift] = ACTIONS(6161), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6165), + [sym_op_modulo] = ACTIONS(6167), + [sym_op_coalescing] = ACTIONS(6169), + [anon_sym_BANG] = ACTIONS(6171), + [anon_sym_PLUS_PLUS] = ACTIONS(6173), + [anon_sym_DASH_DASH] = ACTIONS(6173), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4743), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -648251,7 +639713,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5133] = { - [sym_block] = STATE(2142), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(863), + [sym_op_lte] = STATE(863), + [sym_op_eq] = STATE(862), + [sym_op_neq] = STATE(862), + [sym_op_gt] = STATE(863), + [sym_op_gte] = STATE(863), + [sym_op_and] = STATE(860), + [sym_op_or] = STATE(859), + [sym_op_bitwise_and] = STATE(858), + [sym_op_bitwise_xor] = STATE(857), + [sym_op_plus] = STATE(855), + [sym_op_minus] = STATE(855), + [sym_op_multiply] = STATE(869), [sym_preproc_region] = STATE(5133), [sym_preproc_endregion] = STATE(5133), [sym_preproc_line] = STATE(5133), @@ -648261,54 +639737,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5133), [sym_preproc_define] = STATE(5133), [sym_preproc_undef] = STATE(5133), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(7425), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6707), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6689), + [sym_op_right_shift] = ACTIONS(6691), + [sym_op_unsigned_right_shift] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6693), + [sym_op_modulo] = ACTIONS(6695), + [sym_op_coalescing] = ACTIONS(6709), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -648321,25 +639782,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5134] = { - [sym_argument_list] = STATE(5116), - [sym__name] = STATE(2457), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_type] = STATE(4975), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5119), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_identifier] = STATE(2392), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(5134), [sym_preproc_endregion] = STATE(5134), [sym_preproc_line] = STATE(5134), @@ -648349,36 +639791,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5134), [sym_preproc_define] = STATE(5134), [sym_preproc_undef] = STATE(5134), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(7262), - [anon_sym_LPAREN] = ACTIONS(7264), - [anon_sym_ref] = ACTIONS(4462), - [anon_sym_LBRACE] = ACTIONS(7266), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_where] = ACTIONS(4450), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_scoped] = ACTIONS(7427), - [anon_sym_var] = ACTIONS(7270), - [sym_predefined_type] = ACTIONS(7272), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_from] = ACTIONS(4450), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4450), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4450), - [anon_sym_orderby] = ACTIONS(4450), - [anon_sym_ascending] = ACTIONS(4450), - [anon_sym_descending] = ACTIONS(4450), - [anon_sym_group] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [sym_grit_metavariable] = ACTIONS(7274), + [anon_sym_EQ] = ACTIONS(7936), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7938), + [anon_sym_DASH_EQ] = ACTIONS(7938), + [anon_sym_STAR_EQ] = ACTIONS(7938), + [anon_sym_SLASH_EQ] = ACTIONS(7938), + [anon_sym_PERCENT_EQ] = ACTIONS(7938), + [anon_sym_AMP_EQ] = ACTIONS(7938), + [anon_sym_CARET_EQ] = ACTIONS(7938), + [anon_sym_PIPE_EQ] = ACTIONS(7938), + [anon_sym_LT_LT_EQ] = ACTIONS(7938), + [anon_sym_GT_GT_EQ] = ACTIONS(7938), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7938), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7938), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_on] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -648391,6 +639851,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5135] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1593), + [sym_op_lte] = STATE(1593), + [sym_op_eq] = STATE(1591), + [sym_op_neq] = STATE(1591), + [sym_op_gt] = STATE(1593), + [sym_op_gte] = STATE(1593), + [sym_op_and] = STATE(1590), + [sym_op_or] = STATE(1589), + [sym_op_bitwise_and] = STATE(1587), + [sym_op_bitwise_xor] = STATE(1586), + [sym_op_plus] = STATE(1584), + [sym_op_minus] = STATE(1584), + [sym_op_multiply] = STATE(1736), [sym_preproc_region] = STATE(5135), [sym_preproc_endregion] = STATE(5135), [sym_preproc_line] = STATE(5135), @@ -648400,54 +639875,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5135), [sym_preproc_define] = STATE(5135), [sym_preproc_undef] = STATE(5135), - [sym__identifier_token] = ACTIONS(3698), - [anon_sym_alias] = ACTIONS(3698), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(3698), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_GT] = ACTIONS(3696), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3698), - [anon_sym_QMARK] = ACTIONS(3696), - [anon_sym_notnull] = ACTIONS(3698), - [anon_sym_unmanaged] = ACTIONS(3698), - [anon_sym_operator] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_this] = ACTIONS(3698), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_scoped] = ACTIONS(3698), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_when] = ACTIONS(3698), - [sym_discard] = ACTIONS(3698), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_into] = ACTIONS(3698), - [anon_sym_join] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_equals] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_orderby] = ACTIONS(3698), - [anon_sym_ascending] = ACTIONS(3698), - [anon_sym_descending] = ACTIONS(3698), - [anon_sym_group] = ACTIONS(3698), - [anon_sym_by] = ACTIONS(3698), - [anon_sym_select] = ACTIONS(3698), - [anon_sym_DASH_GT] = ACTIONS(3696), - [sym_grit_metavariable] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6444), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6424), + [sym_op_right_shift] = ACTIONS(6426), + [sym_op_unsigned_right_shift] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6428), + [sym_op_modulo] = ACTIONS(6430), + [sym_op_coalescing] = ACTIONS(6446), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -648460,6 +639920,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5136] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1761), + [sym_op_lte] = STATE(1761), + [sym_op_eq] = STATE(1760), + [sym_op_neq] = STATE(1760), + [sym_op_gt] = STATE(1761), + [sym_op_gte] = STATE(1761), + [sym_op_and] = STATE(1759), + [sym_op_or] = STATE(1758), + [sym_op_bitwise_and] = STATE(1757), + [sym_op_bitwise_xor] = STATE(1756), + [sym_op_plus] = STATE(1755), + [sym_op_minus] = STATE(1755), + [sym_op_multiply] = STATE(1768), [sym_preproc_region] = STATE(5136), [sym_preproc_endregion] = STATE(5136), [sym_preproc_line] = STATE(5136), @@ -648469,54 +639944,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5136), [sym_preproc_define] = STATE(5136), [sym_preproc_undef] = STATE(5136), - [sym__identifier_token] = ACTIONS(3187), - [anon_sym_alias] = ACTIONS(3187), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_global] = ACTIONS(3187), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_file] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_where] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_notnull] = ACTIONS(3187), - [anon_sym_unmanaged] = ACTIONS(3187), - [anon_sym_operator] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_this] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_scoped] = ACTIONS(3187), - [anon_sym_EQ_GT] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3189), - [anon_sym_var] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_when] = ACTIONS(3187), - [sym_discard] = ACTIONS(3187), - [anon_sym_and] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [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_DASH_GT] = ACTIONS(3189), - [sym_grit_metavariable] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6264), + [sym_op_right_shift] = ACTIONS(6266), + [sym_op_unsigned_right_shift] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6268), + [sym_op_modulo] = ACTIONS(6270), + [sym_op_coalescing] = ACTIONS(6272), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -648529,6 +639989,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5137] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1238), + [sym_op_lte] = STATE(1238), + [sym_op_eq] = STATE(1237), + [sym_op_neq] = STATE(1237), + [sym_op_gt] = STATE(1238), + [sym_op_gte] = STATE(1238), + [sym_op_and] = STATE(1236), + [sym_op_or] = STATE(1235), + [sym_op_bitwise_and] = STATE(1234), + [sym_op_bitwise_xor] = STATE(1233), + [sym_op_plus] = STATE(1232), + [sym_op_minus] = STATE(1232), + [sym_op_multiply] = STATE(1240), [sym_preproc_region] = STATE(5137), [sym_preproc_endregion] = STATE(5137), [sym_preproc_line] = STATE(5137), @@ -648538,54 +640013,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5137), [sym_preproc_define] = STATE(5137), [sym_preproc_undef] = STATE(5137), - [anon_sym_EQ] = ACTIONS(7429), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7431), - [anon_sym_DASH_EQ] = ACTIONS(7431), - [anon_sym_STAR_EQ] = ACTIONS(7431), - [anon_sym_SLASH_EQ] = ACTIONS(7431), - [anon_sym_PERCENT_EQ] = ACTIONS(7431), - [anon_sym_AMP_EQ] = ACTIONS(7431), - [anon_sym_CARET_EQ] = ACTIONS(7431), - [anon_sym_PIPE_EQ] = ACTIONS(7431), - [anon_sym_LT_LT_EQ] = ACTIONS(7431), - [anon_sym_GT_GT_EQ] = ACTIONS(7431), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7431), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7431), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_equals] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6636), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6585), + [sym_op_right_shift] = ACTIONS(6587), + [sym_op_unsigned_right_shift] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6581), + [sym_op_modulo] = ACTIONS(6583), + [sym_op_coalescing] = ACTIONS(6638), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -648607,54 +640067,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5138), [sym_preproc_define] = STATE(5138), [sym_preproc_undef] = STATE(5138), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(7433), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_EQ] = ACTIONS(7940), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7942), + [anon_sym_DASH_EQ] = ACTIONS(7942), + [anon_sym_STAR_EQ] = ACTIONS(7942), + [anon_sym_SLASH_EQ] = ACTIONS(7942), + [anon_sym_PERCENT_EQ] = ACTIONS(7942), + [anon_sym_AMP_EQ] = ACTIONS(7942), + [anon_sym_CARET_EQ] = ACTIONS(7942), + [anon_sym_PIPE_EQ] = ACTIONS(7942), + [anon_sym_LT_LT_EQ] = ACTIONS(7942), + [anon_sym_GT_GT_EQ] = ACTIONS(7942), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7942), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7942), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_by] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -648667,6 +640127,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5139] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1872), + [sym_op_lte] = STATE(1872), + [sym_op_eq] = STATE(1869), + [sym_op_neq] = STATE(1869), + [sym_op_gt] = STATE(1872), + [sym_op_gte] = STATE(1872), + [sym_op_and] = STATE(1867), + [sym_op_or] = STATE(1861), + [sym_op_bitwise_and] = STATE(1860), + [sym_op_bitwise_xor] = STATE(1855), + [sym_op_plus] = STATE(838), + [sym_op_minus] = STATE(838), + [sym_op_multiply] = STATE(1883), [sym_preproc_region] = STATE(5139), [sym_preproc_endregion] = STATE(5139), [sym_preproc_line] = STATE(5139), @@ -648676,54 +640151,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5139), [sym_preproc_define] = STATE(5139), [sym_preproc_undef] = STATE(5139), - [anon_sym_EQ] = ACTIONS(7435), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7437), - [anon_sym_DASH_EQ] = ACTIONS(7437), - [anon_sym_STAR_EQ] = ACTIONS(7437), - [anon_sym_SLASH_EQ] = ACTIONS(7437), - [anon_sym_PERCENT_EQ] = ACTIONS(7437), - [anon_sym_AMP_EQ] = ACTIONS(7437), - [anon_sym_CARET_EQ] = ACTIONS(7437), - [anon_sym_PIPE_EQ] = ACTIONS(7437), - [anon_sym_LT_LT_EQ] = ACTIONS(7437), - [anon_sym_GT_GT_EQ] = ACTIONS(7437), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7437), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_on] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6472), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6474), + [sym_op_right_shift] = ACTIONS(6476), + [sym_op_unsigned_right_shift] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6478), + [sym_op_modulo] = ACTIONS(6480), + [sym_op_coalescing] = ACTIONS(6482), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -648736,6 +640196,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5140] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1101), + [sym_op_lte] = STATE(1101), + [sym_op_eq] = STATE(1100), + [sym_op_neq] = STATE(1100), + [sym_op_gt] = STATE(1101), + [sym_op_gte] = STATE(1101), + [sym_op_and] = STATE(1099), + [sym_op_or] = STATE(1098), + [sym_op_bitwise_and] = STATE(1096), + [sym_op_bitwise_xor] = STATE(1095), + [sym_op_plus] = STATE(1093), + [sym_op_minus] = STATE(1093), + [sym_op_multiply] = STATE(1103), [sym_preproc_region] = STATE(5140), [sym_preproc_endregion] = STATE(5140), [sym_preproc_line] = STATE(5140), @@ -648745,54 +640220,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5140), [sym_preproc_define] = STATE(5140), [sym_preproc_undef] = STATE(5140), - [anon_sym_LBRACK] = ACTIONS(5925), - [anon_sym_COMMA] = ACTIONS(5925), - [anon_sym_LPAREN] = ACTIONS(5925), - [anon_sym_LT] = ACTIONS(5927), - [anon_sym_GT] = ACTIONS(5927), - [anon_sym_where] = ACTIONS(5925), - [anon_sym_QMARK] = ACTIONS(5927), - [anon_sym_BANG] = ACTIONS(5927), - [anon_sym_PLUS_PLUS] = ACTIONS(5925), - [anon_sym_DASH_DASH] = ACTIONS(5925), - [anon_sym_PLUS] = ACTIONS(5927), - [anon_sym_DASH] = ACTIONS(5927), - [anon_sym_STAR] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5927), - [anon_sym_PERCENT] = ACTIONS(5925), - [anon_sym_CARET] = ACTIONS(5925), - [anon_sym_PIPE] = ACTIONS(5927), - [anon_sym_AMP] = ACTIONS(5927), - [anon_sym_LT_LT] = ACTIONS(5925), - [anon_sym_GT_GT] = ACTIONS(5927), - [anon_sym_GT_GT_GT] = ACTIONS(5925), - [anon_sym_EQ_EQ] = ACTIONS(5925), - [anon_sym_BANG_EQ] = ACTIONS(5925), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(5927), - [anon_sym_switch] = ACTIONS(5925), - [anon_sym_DOT_DOT] = ACTIONS(5925), - [anon_sym_and] = ACTIONS(5925), - [anon_sym_or] = ACTIONS(5927), - [anon_sym_AMP_AMP] = ACTIONS(5925), - [anon_sym_PIPE_PIPE] = ACTIONS(5925), - [sym_op_coalescing] = ACTIONS(5925), - [anon_sym_from] = ACTIONS(5925), - [anon_sym_into] = ACTIONS(5925), - [anon_sym_join] = ACTIONS(5925), - [anon_sym_let] = ACTIONS(5925), - [anon_sym_orderby] = ACTIONS(5925), - [anon_sym_ascending] = ACTIONS(5925), - [anon_sym_descending] = ACTIONS(5925), - [anon_sym_group] = ACTIONS(5925), - [anon_sym_select] = ACTIONS(5925), - [anon_sym_as] = ACTIONS(5927), - [anon_sym_is] = ACTIONS(5925), - [anon_sym_DASH_GT] = ACTIONS(5925), - [anon_sym_with] = ACTIONS(5925), - [sym_string_literal_encoding] = ACTIONS(7439), - [sym_grit_metavariable] = ACTIONS(5925), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6615), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6567), + [sym_op_right_shift] = ACTIONS(6569), + [sym_op_unsigned_right_shift] = ACTIONS(6567), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6563), + [sym_op_modulo] = ACTIONS(6565), + [sym_op_coalescing] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -648805,24 +640265,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5141] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2482), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(5141), [sym_preproc_endregion] = STATE(5141), [sym_preproc_line] = STATE(5141), @@ -648832,36 +640289,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5141), [sym_preproc_define] = STATE(5141), [sym_preproc_undef] = STATE(5141), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_struct] = ACTIONS(7441), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(2997), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -648883,54 +640343,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5142), [sym_preproc_define] = STATE(5142), [sym_preproc_undef] = STATE(5142), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(7326), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_EQ] = ACTIONS(7155), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(7944), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7157), + [anon_sym_DASH_EQ] = ACTIONS(7157), + [anon_sym_STAR_EQ] = ACTIONS(7157), + [anon_sym_SLASH_EQ] = ACTIONS(7157), + [anon_sym_PERCENT_EQ] = ACTIONS(7157), + [anon_sym_AMP_EQ] = ACTIONS(7157), + [anon_sym_CARET_EQ] = ACTIONS(7157), + [anon_sym_PIPE_EQ] = ACTIONS(7157), + [anon_sym_LT_LT_EQ] = ACTIONS(7157), + [anon_sym_GT_GT_EQ] = ACTIONS(7157), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7157), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7157), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -648943,25 +640403,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5143] = { - [sym__name] = STATE(6721), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(7429), - [sym_array_type] = STATE(6946), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6966), - [sym_pointer_type] = STATE(6966), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(6966), - [sym_ref_type] = STATE(7562), - [sym__ref_base_type] = STATE(7754), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6831), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(5143), [sym_preproc_endregion] = STATE(5143), [sym_preproc_line] = STATE(5143), @@ -648971,35 +640427,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5143), [sym_preproc_define] = STATE(5143), [sym_preproc_undef] = STATE(5143), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7443), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_readonly] = ACTIONS(7445), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(6986), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649012,24 +640472,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5144] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1377), + [sym_op_lte] = STATE(1377), + [sym_op_eq] = STATE(1375), + [sym_op_neq] = STATE(1375), + [sym_op_gt] = STATE(1377), + [sym_op_gte] = STATE(1377), + [sym_op_and] = STATE(1374), + [sym_op_or] = STATE(1373), + [sym_op_bitwise_and] = STATE(1372), + [sym_op_bitwise_xor] = STATE(1370), + [sym_op_plus] = STATE(1369), + [sym_op_minus] = STATE(1369), + [sym_op_multiply] = STATE(1379), [sym_preproc_region] = STATE(5144), [sym_preproc_endregion] = STATE(5144), [sym_preproc_line] = STATE(5144), @@ -649039,36 +640496,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5144), [sym_preproc_define] = STATE(5144), [sym_preproc_undef] = STATE(5144), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(2997), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6244), + [sym_op_right_shift] = ACTIONS(6246), + [sym_op_unsigned_right_shift] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6248), + [sym_op_modulo] = ACTIONS(6250), + [sym_op_coalescing] = ACTIONS(6252), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649081,6 +640541,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5145] = { + [sym_argument_list] = STATE(4105), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(991), + [sym_op_lte] = STATE(991), + [sym_op_eq] = STATE(990), + [sym_op_neq] = STATE(990), + [sym_op_gt] = STATE(991), + [sym_op_gte] = STATE(991), + [sym_op_and] = STATE(988), + [sym_op_or] = STATE(987), + [sym_op_bitwise_and] = STATE(986), + [sym_op_bitwise_xor] = STATE(985), + [sym_op_plus] = STATE(984), + [sym_op_minus] = STATE(984), + [sym_op_multiply] = STATE(993), [sym_preproc_region] = STATE(5145), [sym_preproc_endregion] = STATE(5145), [sym_preproc_line] = STATE(5145), @@ -649090,54 +640565,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5145), [sym_preproc_define] = STATE(5145), [sym_preproc_undef] = STATE(5145), - [anon_sym_EQ] = ACTIONS(7447), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7449), - [anon_sym_DASH_EQ] = ACTIONS(7449), - [anon_sym_STAR_EQ] = ACTIONS(7449), - [anon_sym_SLASH_EQ] = ACTIONS(7449), - [anon_sym_PERCENT_EQ] = ACTIONS(7449), - [anon_sym_AMP_EQ] = ACTIONS(7449), - [anon_sym_CARET_EQ] = ACTIONS(7449), - [anon_sym_PIPE_EQ] = ACTIONS(7449), - [anon_sym_LT_LT_EQ] = ACTIONS(7449), - [anon_sym_GT_GT_EQ] = ACTIONS(7449), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7449), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7449), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_by] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6555), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6440), + [sym_op_right_shift] = ACTIONS(6442), + [sym_op_unsigned_right_shift] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6436), + [sym_op_modulo] = ACTIONS(6438), + [sym_op_coalescing] = ACTIONS(6557), + [anon_sym_BANG] = ACTIONS(5567), + [anon_sym_PLUS_PLUS] = ACTIONS(5569), + [anon_sym_DASH_DASH] = ACTIONS(5569), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4454), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649159,54 +640619,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5146), [sym_preproc_define] = STATE(5146), [sym_preproc_undef] = STATE(5146), - [anon_sym_LBRACK] = ACTIONS(5879), - [anon_sym_COMMA] = ACTIONS(5879), - [anon_sym_LPAREN] = ACTIONS(5879), - [anon_sym_LT] = ACTIONS(5881), - [anon_sym_GT] = ACTIONS(5881), - [anon_sym_where] = ACTIONS(5879), - [anon_sym_QMARK] = ACTIONS(5881), - [anon_sym_BANG] = ACTIONS(5881), - [anon_sym_PLUS_PLUS] = ACTIONS(5879), - [anon_sym_DASH_DASH] = ACTIONS(5879), - [anon_sym_PLUS] = ACTIONS(5881), - [anon_sym_DASH] = ACTIONS(5881), - [anon_sym_STAR] = ACTIONS(5879), - [anon_sym_SLASH] = ACTIONS(5881), - [anon_sym_PERCENT] = ACTIONS(5879), - [anon_sym_CARET] = ACTIONS(5879), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_AMP] = ACTIONS(5881), - [anon_sym_LT_LT] = ACTIONS(5879), - [anon_sym_GT_GT] = ACTIONS(5881), - [anon_sym_GT_GT_GT] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5879), - [anon_sym_BANG_EQ] = ACTIONS(5879), - [anon_sym_GT_EQ] = ACTIONS(5879), - [anon_sym_LT_EQ] = ACTIONS(5879), - [anon_sym_DOT] = ACTIONS(5881), - [anon_sym_switch] = ACTIONS(5879), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_and] = ACTIONS(5879), - [anon_sym_or] = ACTIONS(5881), - [anon_sym_AMP_AMP] = ACTIONS(5879), - [anon_sym_PIPE_PIPE] = ACTIONS(5879), - [sym_op_coalescing] = ACTIONS(5879), - [anon_sym_from] = ACTIONS(5879), - [anon_sym_into] = ACTIONS(5879), - [anon_sym_join] = ACTIONS(5879), - [anon_sym_let] = ACTIONS(5879), - [anon_sym_orderby] = ACTIONS(5879), - [anon_sym_ascending] = ACTIONS(5879), - [anon_sym_descending] = ACTIONS(5879), - [anon_sym_group] = ACTIONS(5879), - [anon_sym_select] = ACTIONS(5879), - [anon_sym_as] = ACTIONS(5881), - [anon_sym_is] = ACTIONS(5879), - [anon_sym_DASH_GT] = ACTIONS(5879), - [anon_sym_with] = ACTIONS(5879), - [aux_sym_raw_string_literal_token1] = ACTIONS(7451), - [sym_grit_metavariable] = ACTIONS(5879), + [anon_sym_LBRACK] = ACTIONS(5658), + [anon_sym_COMMA] = ACTIONS(5658), + [anon_sym_LPAREN] = ACTIONS(5658), + [anon_sym_LBRACE] = ACTIONS(5658), + [anon_sym_LT] = ACTIONS(5660), + [anon_sym_GT] = ACTIONS(5660), + [anon_sym_where] = ACTIONS(5658), + [anon_sym_QMARK] = ACTIONS(5660), + [anon_sym_DOT] = ACTIONS(5660), + [anon_sym_STAR] = ACTIONS(5658), + [anon_sym_switch] = ACTIONS(5658), + [anon_sym_DOT_DOT] = ACTIONS(5658), + [anon_sym_LT_EQ] = ACTIONS(5658), + [anon_sym_GT_EQ] = ACTIONS(5658), + [anon_sym_and] = ACTIONS(5658), + [anon_sym_or] = ACTIONS(5660), + [anon_sym_EQ_EQ] = ACTIONS(5658), + [anon_sym_BANG_EQ] = ACTIONS(5658), + [anon_sym_AMP_AMP] = ACTIONS(5658), + [anon_sym_PIPE_PIPE] = ACTIONS(5658), + [anon_sym_AMP] = ACTIONS(5660), + [sym_op_bitwise_or] = ACTIONS(5660), + [anon_sym_CARET] = ACTIONS(5658), + [sym_op_left_shift] = ACTIONS(5658), + [sym_op_right_shift] = ACTIONS(5660), + [sym_op_unsigned_right_shift] = ACTIONS(5658), + [anon_sym_PLUS] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5660), + [sym_op_divide] = ACTIONS(5660), + [sym_op_modulo] = ACTIONS(5658), + [sym_op_coalescing] = ACTIONS(5658), + [anon_sym_BANG] = ACTIONS(5660), + [anon_sym_PLUS_PLUS] = ACTIONS(5658), + [anon_sym_DASH_DASH] = ACTIONS(5658), + [anon_sym_from] = ACTIONS(5658), + [anon_sym_into] = ACTIONS(5658), + [anon_sym_join] = ACTIONS(5658), + [anon_sym_let] = ACTIONS(5658), + [anon_sym_orderby] = ACTIONS(5658), + [anon_sym_ascending] = ACTIONS(5658), + [anon_sym_descending] = ACTIONS(5658), + [anon_sym_group] = ACTIONS(5658), + [anon_sym_select] = ACTIONS(5658), + [anon_sym_as] = ACTIONS(5660), + [anon_sym_is] = ACTIONS(5658), + [anon_sym_DASH_GT] = ACTIONS(5658), + [anon_sym_with] = ACTIONS(5658), + [sym_grit_metavariable] = ACTIONS(5658), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649219,6 +640679,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5147] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1681), + [sym_op_lte] = STATE(1681), + [sym_op_eq] = STATE(1680), + [sym_op_neq] = STATE(1680), + [sym_op_gt] = STATE(1681), + [sym_op_gte] = STATE(1681), + [sym_op_and] = STATE(839), + [sym_op_or] = STATE(1677), + [sym_op_bitwise_and] = STATE(1671), + [sym_op_bitwise_xor] = STATE(1670), + [sym_op_plus] = STATE(1669), + [sym_op_minus] = STATE(1669), + [sym_op_multiply] = STATE(1705), [sym_preproc_region] = STATE(5147), [sym_preproc_endregion] = STATE(5147), [sym_preproc_line] = STATE(5147), @@ -649228,54 +640703,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5147), [sym_preproc_define] = STATE(5147), [sym_preproc_undef] = STATE(5147), - [anon_sym_EQ] = ACTIONS(7453), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = 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(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7455), - [anon_sym_DASH_EQ] = ACTIONS(7455), - [anon_sym_STAR_EQ] = ACTIONS(7455), - [anon_sym_SLASH_EQ] = ACTIONS(7455), - [anon_sym_PERCENT_EQ] = ACTIONS(7455), - [anon_sym_AMP_EQ] = ACTIONS(7455), - [anon_sym_CARET_EQ] = ACTIONS(7455), - [anon_sym_PIPE_EQ] = ACTIONS(7455), - [anon_sym_LT_LT_EQ] = ACTIONS(7455), - [anon_sym_GT_GT_EQ] = ACTIONS(7455), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7455), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7455), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6298), + [sym_op_right_shift] = ACTIONS(6300), + [sym_op_unsigned_right_shift] = ACTIONS(6298), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6302), + [sym_op_modulo] = ACTIONS(6304), + [sym_op_coalescing] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649297,54 +640757,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5148), [sym_preproc_define] = STATE(5148), [sym_preproc_undef] = STATE(5148), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(7457), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_EQ] = ACTIONS(7155), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(7946), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7157), + [anon_sym_DASH_EQ] = ACTIONS(7157), + [anon_sym_STAR_EQ] = ACTIONS(7157), + [anon_sym_SLASH_EQ] = ACTIONS(7157), + [anon_sym_PERCENT_EQ] = ACTIONS(7157), + [anon_sym_AMP_EQ] = ACTIONS(7157), + [anon_sym_CARET_EQ] = ACTIONS(7157), + [anon_sym_PIPE_EQ] = ACTIONS(7157), + [anon_sym_LT_LT_EQ] = ACTIONS(7157), + [anon_sym_GT_GT_EQ] = ACTIONS(7157), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7157), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7157), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649366,54 +640826,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5149), [sym_preproc_define] = STATE(5149), [sym_preproc_undef] = STATE(5149), - [anon_sym_EQ] = ACTIONS(7459), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_EQ_GT] = ACTIONS(5684), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7461), - [anon_sym_DASH_EQ] = ACTIONS(7461), - [anon_sym_STAR_EQ] = ACTIONS(7461), - [anon_sym_SLASH_EQ] = ACTIONS(7461), - [anon_sym_PERCENT_EQ] = ACTIONS(7461), - [anon_sym_AMP_EQ] = ACTIONS(7461), - [anon_sym_CARET_EQ] = ACTIONS(7461), - [anon_sym_PIPE_EQ] = ACTIONS(7461), - [anon_sym_LT_LT_EQ] = ACTIONS(7461), - [anon_sym_GT_GT_EQ] = ACTIONS(7461), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7461), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7461), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [sym__identifier_token] = ACTIONS(3187), + [anon_sym_alias] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_global] = ACTIONS(3187), + [anon_sym_EQ] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACK] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_file] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_GT] = ACTIONS(3189), + [anon_sym_in] = ACTIONS(3187), + [anon_sym_where] = ACTIONS(3187), + [anon_sym_QMARK] = ACTIONS(3189), + [anon_sym_notnull] = ACTIONS(3187), + [anon_sym_unmanaged] = ACTIONS(3187), + [anon_sym_operator] = ACTIONS(3187), + [anon_sym_this] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3189), + [anon_sym_scoped] = ACTIONS(3187), + [anon_sym_EQ_GT] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_when] = ACTIONS(3187), + [sym_discard] = ACTIONS(3187), + [anon_sym_and] = ACTIONS(3187), + [anon_sym_or] = ACTIONS(3187), + [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_DASH_GT] = ACTIONS(3189), + [sym_grit_metavariable] = ACTIONS(3189), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649435,54 +640895,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5150), [sym_preproc_define] = STATE(5150), [sym_preproc_undef] = STATE(5150), - [anon_sym_LBRACK] = ACTIONS(5913), - [anon_sym_COMMA] = ACTIONS(5913), - [anon_sym_LPAREN] = ACTIONS(5913), - [anon_sym_LBRACE] = ACTIONS(5913), - [anon_sym_LT] = ACTIONS(5915), - [anon_sym_GT] = ACTIONS(5915), - [anon_sym_where] = ACTIONS(5913), - [anon_sym_QMARK] = ACTIONS(5915), - [anon_sym_BANG] = ACTIONS(5915), - [anon_sym_PLUS_PLUS] = ACTIONS(5913), - [anon_sym_DASH_DASH] = ACTIONS(5913), - [anon_sym_PLUS] = ACTIONS(5915), - [anon_sym_DASH] = ACTIONS(5915), - [anon_sym_STAR] = ACTIONS(5913), - [anon_sym_SLASH] = ACTIONS(5915), - [anon_sym_PERCENT] = ACTIONS(5913), - [anon_sym_CARET] = ACTIONS(5913), - [anon_sym_PIPE] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5915), - [anon_sym_LT_LT] = ACTIONS(5913), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5913), - [anon_sym_EQ_EQ] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5913), - [anon_sym_LT_EQ] = ACTIONS(5913), - [anon_sym_DOT] = ACTIONS(5915), - [anon_sym_switch] = ACTIONS(5913), - [anon_sym_DOT_DOT] = ACTIONS(5913), - [anon_sym_and] = ACTIONS(5913), - [anon_sym_or] = ACTIONS(5915), - [anon_sym_AMP_AMP] = ACTIONS(5913), - [anon_sym_PIPE_PIPE] = ACTIONS(5913), - [sym_op_coalescing] = ACTIONS(5913), - [anon_sym_from] = ACTIONS(5913), - [anon_sym_into] = ACTIONS(5913), - [anon_sym_join] = ACTIONS(5913), - [anon_sym_let] = ACTIONS(5913), - [anon_sym_orderby] = ACTIONS(5913), - [anon_sym_ascending] = ACTIONS(5913), - [anon_sym_descending] = ACTIONS(5913), - [anon_sym_group] = ACTIONS(5913), - [anon_sym_select] = ACTIONS(5913), - [anon_sym_as] = ACTIONS(5915), - [anon_sym_is] = ACTIONS(5913), - [anon_sym_DASH_GT] = ACTIONS(5913), - [anon_sym_with] = ACTIONS(5913), - [sym_grit_metavariable] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5645), + [anon_sym_COMMA] = ACTIONS(5645), + [anon_sym_LPAREN] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5647), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_where] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5647), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_switch] = ACTIONS(5645), + [anon_sym_DOT_DOT] = ACTIONS(5645), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5645), + [anon_sym_BANG_EQ] = ACTIONS(5645), + [anon_sym_AMP_AMP] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [sym_op_bitwise_or] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5645), + [sym_op_left_shift] = ACTIONS(5645), + [sym_op_right_shift] = ACTIONS(5647), + [sym_op_unsigned_right_shift] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_DASH] = ACTIONS(5647), + [sym_op_divide] = ACTIONS(5647), + [sym_op_modulo] = ACTIONS(5645), + [sym_op_coalescing] = ACTIONS(5645), + [anon_sym_BANG] = ACTIONS(5647), + [anon_sym_PLUS_PLUS] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5645), + [anon_sym_from] = ACTIONS(5645), + [anon_sym_into] = ACTIONS(5645), + [anon_sym_join] = ACTIONS(5645), + [anon_sym_let] = ACTIONS(5645), + [anon_sym_orderby] = ACTIONS(5645), + [anon_sym_ascending] = ACTIONS(5645), + [anon_sym_descending] = ACTIONS(5645), + [anon_sym_group] = ACTIONS(5645), + [anon_sym_select] = ACTIONS(5645), + [anon_sym_as] = ACTIONS(5647), + [anon_sym_is] = ACTIONS(5645), + [anon_sym_DASH_GT] = ACTIONS(5645), + [anon_sym_with] = ACTIONS(5645), + [sym_string_literal_encoding] = ACTIONS(7948), + [sym_grit_metavariable] = ACTIONS(5645), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649495,6 +640955,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5151] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1295), + [sym_op_lte] = STATE(1295), + [sym_op_eq] = STATE(1294), + [sym_op_neq] = STATE(1294), + [sym_op_gt] = STATE(1295), + [sym_op_gte] = STATE(1295), + [sym_op_and] = STATE(1289), + [sym_op_or] = STATE(1287), + [sym_op_bitwise_and] = STATE(1286), + [sym_op_bitwise_xor] = STATE(1285), + [sym_op_plus] = STATE(1284), + [sym_op_minus] = STATE(1284), + [sym_op_multiply] = STATE(1301), [sym_preproc_region] = STATE(5151), [sym_preproc_endregion] = STATE(5151), [sym_preproc_line] = STATE(5151), @@ -649504,54 +640979,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5151), [sym_preproc_define] = STATE(5151), [sym_preproc_undef] = STATE(5151), - [anon_sym_LBRACK] = ACTIONS(5899), - [anon_sym_COMMA] = ACTIONS(5899), - [anon_sym_LPAREN] = ACTIONS(5899), - [anon_sym_LT] = ACTIONS(5901), - [anon_sym_GT] = ACTIONS(5901), - [anon_sym_where] = ACTIONS(5899), - [anon_sym_QMARK] = ACTIONS(5901), - [anon_sym_BANG] = ACTIONS(5901), - [anon_sym_PLUS_PLUS] = ACTIONS(5899), - [anon_sym_DASH_DASH] = ACTIONS(5899), - [anon_sym_PLUS] = ACTIONS(5901), - [anon_sym_DASH] = ACTIONS(5901), - [anon_sym_STAR] = ACTIONS(5899), - [anon_sym_SLASH] = ACTIONS(5901), - [anon_sym_PERCENT] = ACTIONS(5899), - [anon_sym_CARET] = ACTIONS(5899), - [anon_sym_PIPE] = ACTIONS(5901), - [anon_sym_AMP] = ACTIONS(5901), - [anon_sym_LT_LT] = ACTIONS(5899), - [anon_sym_GT_GT] = ACTIONS(5901), - [anon_sym_GT_GT_GT] = ACTIONS(5899), - [anon_sym_EQ_EQ] = ACTIONS(5899), - [anon_sym_BANG_EQ] = ACTIONS(5899), - [anon_sym_GT_EQ] = ACTIONS(5899), - [anon_sym_LT_EQ] = ACTIONS(5899), - [anon_sym_DOT] = ACTIONS(5901), - [anon_sym_switch] = ACTIONS(5899), - [anon_sym_DOT_DOT] = ACTIONS(5899), - [anon_sym_and] = ACTIONS(5899), - [anon_sym_or] = ACTIONS(5901), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(5899), - [sym_op_coalescing] = ACTIONS(5899), - [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(5901), - [anon_sym_is] = ACTIONS(5899), - [anon_sym_DASH_GT] = ACTIONS(5899), - [anon_sym_with] = ACTIONS(5899), - [sym_string_literal_encoding] = ACTIONS(7463), - [sym_grit_metavariable] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6937), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6939), + [sym_op_right_shift] = ACTIONS(6941), + [sym_op_unsigned_right_shift] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6943), + [sym_op_modulo] = ACTIONS(6945), + [sym_op_coalescing] = ACTIONS(6947), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649573,54 +641033,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5152), [sym_preproc_define] = STATE(5152), [sym_preproc_undef] = STATE(5152), - [sym__identifier_token] = ACTIONS(6573), - [anon_sym_extern] = ACTIONS(6573), - [anon_sym_alias] = ACTIONS(6573), - [anon_sym_global] = ACTIONS(6573), - [anon_sym_unsafe] = ACTIONS(6573), - [anon_sym_static] = ACTIONS(6573), - [anon_sym_public] = ACTIONS(6573), - [anon_sym_private] = ACTIONS(6573), - [anon_sym_readonly] = ACTIONS(6573), - [anon_sym_abstract] = ACTIONS(6573), - [anon_sym_async] = ACTIONS(6573), - [anon_sym_const] = ACTIONS(6573), - [anon_sym_file] = ACTIONS(6573), - [anon_sym_fixed] = ACTIONS(6573), - [anon_sym_internal] = ACTIONS(6573), - [anon_sym_new] = ACTIONS(6573), - [anon_sym_override] = ACTIONS(6573), - [anon_sym_partial] = ACTIONS(6573), - [anon_sym_protected] = ACTIONS(6573), - [anon_sym_required] = ACTIONS(6573), - [anon_sym_sealed] = ACTIONS(6573), - [anon_sym_virtual] = ACTIONS(6573), - [anon_sym_volatile] = ACTIONS(6573), - [anon_sym_where] = ACTIONS(6573), - [anon_sym_notnull] = ACTIONS(6573), - [anon_sym_unmanaged] = ACTIONS(6573), - [sym_accessor_get] = ACTIONS(6573), - [sym_accessor_set] = ACTIONS(6573), - [sym_accessor_add] = ACTIONS(6573), - [sym_accessor_remove] = ACTIONS(6573), - [sym_accessor_init] = ACTIONS(6573), - [anon_sym_scoped] = ACTIONS(6573), - [anon_sym_var] = ACTIONS(6573), - [anon_sym_yield] = ACTIONS(6573), - [anon_sym_when] = ACTIONS(6573), - [anon_sym_from] = ACTIONS(6573), - [anon_sym_into] = ACTIONS(6573), - [anon_sym_join] = ACTIONS(6573), - [anon_sym_on] = ACTIONS(6573), - [anon_sym_equals] = ACTIONS(6573), - [anon_sym_let] = ACTIONS(6573), - [anon_sym_orderby] = ACTIONS(6573), - [anon_sym_ascending] = ACTIONS(6573), - [anon_sym_descending] = ACTIONS(6573), - [anon_sym_group] = ACTIONS(6573), - [anon_sym_by] = ACTIONS(6573), - [anon_sym_select] = ACTIONS(6573), - [sym_grit_metavariable] = ACTIONS(6575), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_COMMA] = ACTIONS(5713), + [anon_sym_LPAREN] = ACTIONS(5713), + [anon_sym_LBRACE] = ACTIONS(5713), + [anon_sym_LT] = ACTIONS(5715), + [anon_sym_GT] = ACTIONS(5715), + [anon_sym_where] = ACTIONS(5713), + [anon_sym_QMARK] = ACTIONS(5715), + [anon_sym_DOT] = ACTIONS(5715), + [anon_sym_STAR] = ACTIONS(5713), + [anon_sym_switch] = ACTIONS(5713), + [anon_sym_DOT_DOT] = ACTIONS(5713), + [anon_sym_LT_EQ] = ACTIONS(5713), + [anon_sym_GT_EQ] = ACTIONS(5713), + [anon_sym_and] = ACTIONS(5713), + [anon_sym_or] = ACTIONS(5715), + [anon_sym_EQ_EQ] = ACTIONS(5713), + [anon_sym_BANG_EQ] = ACTIONS(5713), + [anon_sym_AMP_AMP] = ACTIONS(5713), + [anon_sym_PIPE_PIPE] = ACTIONS(5713), + [anon_sym_AMP] = ACTIONS(5715), + [sym_op_bitwise_or] = ACTIONS(5715), + [anon_sym_CARET] = ACTIONS(5713), + [sym_op_left_shift] = ACTIONS(5713), + [sym_op_right_shift] = ACTIONS(5715), + [sym_op_unsigned_right_shift] = ACTIONS(5713), + [anon_sym_PLUS] = ACTIONS(5715), + [anon_sym_DASH] = ACTIONS(5715), + [sym_op_divide] = ACTIONS(5715), + [sym_op_modulo] = ACTIONS(5713), + [sym_op_coalescing] = ACTIONS(5713), + [anon_sym_BANG] = ACTIONS(5715), + [anon_sym_PLUS_PLUS] = ACTIONS(5713), + [anon_sym_DASH_DASH] = ACTIONS(5713), + [anon_sym_from] = ACTIONS(5713), + [anon_sym_into] = ACTIONS(5713), + [anon_sym_join] = ACTIONS(5713), + [anon_sym_let] = ACTIONS(5713), + [anon_sym_orderby] = ACTIONS(5713), + [anon_sym_ascending] = ACTIONS(5713), + [anon_sym_descending] = ACTIONS(5713), + [anon_sym_group] = ACTIONS(5713), + [anon_sym_select] = ACTIONS(5713), + [anon_sym_as] = ACTIONS(5715), + [anon_sym_is] = ACTIONS(5713), + [anon_sym_DASH_GT] = ACTIONS(5713), + [anon_sym_with] = ACTIONS(5713), + [sym_grit_metavariable] = ACTIONS(5713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649633,23 +641093,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5153] = { - [sym__name] = STATE(6794), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_implicit_type] = STATE(7750), - [sym_array_type] = STATE(7331), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(7329), - [sym_pointer_type] = STATE(7329), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(7329), - [sym_function_pointer_parameter] = STATE(8141), - [sym__ref_base_type] = STATE(8137), - [sym_tuple_type] = STATE(6938), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5153), [sym_preproc_endregion] = STATE(5153), [sym_preproc_line] = STATE(5153), @@ -649659,37 +641120,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5153), [sym_preproc_define] = STATE(5153), [sym_preproc_undef] = STATE(5153), - [aux_sym_function_pointer_type_repeat1] = STATE(5153), - [sym__identifier_token] = ACTIONS(7465), - [anon_sym_alias] = ACTIONS(7468), - [anon_sym_global] = ACTIONS(7468), - [anon_sym_LPAREN] = ACTIONS(7471), - [anon_sym_ref] = ACTIONS(7474), - [anon_sym_delegate] = ACTIONS(7477), - [anon_sym_file] = ACTIONS(7468), - [anon_sym_in] = ACTIONS(7474), - [anon_sym_out] = ACTIONS(7474), - [anon_sym_where] = ACTIONS(7468), - [anon_sym_notnull] = ACTIONS(7468), - [anon_sym_unmanaged] = ACTIONS(7468), - [anon_sym_scoped] = ACTIONS(7468), - [anon_sym_var] = ACTIONS(7480), - [sym_predefined_type] = ACTIONS(7483), - [anon_sym_yield] = ACTIONS(7468), - [anon_sym_when] = ACTIONS(7468), - [anon_sym_from] = ACTIONS(7468), - [anon_sym_into] = ACTIONS(7468), - [anon_sym_join] = ACTIONS(7468), - [anon_sym_on] = ACTIONS(7468), - [anon_sym_equals] = ACTIONS(7468), - [anon_sym_let] = ACTIONS(7468), - [anon_sym_orderby] = ACTIONS(7468), - [anon_sym_ascending] = ACTIONS(7468), - [anon_sym_descending] = ACTIONS(7468), - [anon_sym_group] = ACTIONS(7468), - [anon_sym_by] = ACTIONS(7468), - [anon_sym_select] = ACTIONS(7468), - [sym_grit_metavariable] = ACTIONS(7486), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_struct] = ACTIONS(7950), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649711,54 +641171,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5154), [sym_preproc_define] = STATE(5154), [sym_preproc_undef] = STATE(5154), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(7489), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5662), + [anon_sym_COMMA] = ACTIONS(5662), + [anon_sym_LPAREN] = ACTIONS(5662), + [anon_sym_LT] = ACTIONS(5664), + [anon_sym_GT] = ACTIONS(5664), + [anon_sym_where] = ACTIONS(5662), + [anon_sym_QMARK] = ACTIONS(5664), + [anon_sym_DOT] = ACTIONS(5664), + [anon_sym_STAR] = ACTIONS(5662), + [anon_sym_switch] = ACTIONS(5662), + [anon_sym_DOT_DOT] = ACTIONS(5662), + [anon_sym_LT_EQ] = ACTIONS(5662), + [anon_sym_GT_EQ] = ACTIONS(5662), + [anon_sym_and] = ACTIONS(5662), + [anon_sym_or] = ACTIONS(5664), + [anon_sym_EQ_EQ] = ACTIONS(5662), + [anon_sym_BANG_EQ] = ACTIONS(5662), + [anon_sym_AMP_AMP] = ACTIONS(5662), + [anon_sym_PIPE_PIPE] = ACTIONS(5662), + [anon_sym_AMP] = ACTIONS(5664), + [sym_op_bitwise_or] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5662), + [sym_op_left_shift] = ACTIONS(5662), + [sym_op_right_shift] = ACTIONS(5664), + [sym_op_unsigned_right_shift] = ACTIONS(5662), + [anon_sym_PLUS] = ACTIONS(5664), + [anon_sym_DASH] = ACTIONS(5664), + [sym_op_divide] = ACTIONS(5664), + [sym_op_modulo] = ACTIONS(5662), + [sym_op_coalescing] = ACTIONS(5662), + [anon_sym_BANG] = ACTIONS(5664), + [anon_sym_PLUS_PLUS] = ACTIONS(5662), + [anon_sym_DASH_DASH] = ACTIONS(5662), + [anon_sym_from] = ACTIONS(5662), + [anon_sym_into] = ACTIONS(5662), + [anon_sym_join] = ACTIONS(5662), + [anon_sym_let] = ACTIONS(5662), + [anon_sym_orderby] = ACTIONS(5662), + [anon_sym_ascending] = ACTIONS(5662), + [anon_sym_descending] = ACTIONS(5662), + [anon_sym_group] = ACTIONS(5662), + [anon_sym_select] = ACTIONS(5662), + [anon_sym_as] = ACTIONS(5664), + [anon_sym_is] = ACTIONS(5662), + [anon_sym_DASH_GT] = ACTIONS(5662), + [anon_sym_with] = ACTIONS(5662), + [aux_sym_raw_string_literal_token1] = ACTIONS(7952), + [sym_grit_metavariable] = ACTIONS(5662), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649780,54 +641240,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5155), [sym_preproc_define] = STATE(5155), [sym_preproc_undef] = STATE(5155), - [anon_sym_LBRACK] = ACTIONS(4206), - [anon_sym_COMMA] = ACTIONS(4206), - [anon_sym_LPAREN] = ACTIONS(4206), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_where] = ACTIONS(4206), - [anon_sym_QMARK] = ACTIONS(7042), - [anon_sym_BANG] = ACTIONS(7042), - [anon_sym_PLUS_PLUS] = ACTIONS(4206), - [anon_sym_DASH_DASH] = ACTIONS(4206), - [anon_sym_PLUS] = ACTIONS(7042), - [anon_sym_DASH] = ACTIONS(7042), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(7042), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_CARET] = ACTIONS(4206), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - [anon_sym_LT_LT] = ACTIONS(4206), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_GT_GT_GT] = ACTIONS(4206), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_GT_EQ] = ACTIONS(4206), - [anon_sym_LT_EQ] = ACTIONS(4206), - [anon_sym_DOT] = ACTIONS(7042), - [anon_sym_EQ_GT] = ACTIONS(3962), - [anon_sym_switch] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4206), - [anon_sym_and] = ACTIONS(4206), - [anon_sym_or] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(4206), - [anon_sym_PIPE_PIPE] = ACTIONS(4206), - [sym_op_coalescing] = ACTIONS(4206), - [anon_sym_from] = ACTIONS(4206), - [anon_sym_into] = ACTIONS(4206), - [anon_sym_join] = ACTIONS(4206), - [anon_sym_let] = ACTIONS(4206), - [anon_sym_orderby] = ACTIONS(4206), - [anon_sym_ascending] = ACTIONS(4206), - [anon_sym_descending] = ACTIONS(4206), - [anon_sym_group] = ACTIONS(4206), - [anon_sym_select] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(7042), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_DASH_GT] = ACTIONS(4206), - [anon_sym_with] = ACTIONS(4206), - [sym_grit_metavariable] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(7155), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(7954), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7157), + [anon_sym_DASH_EQ] = ACTIONS(7157), + [anon_sym_STAR_EQ] = ACTIONS(7157), + [anon_sym_SLASH_EQ] = ACTIONS(7157), + [anon_sym_PERCENT_EQ] = ACTIONS(7157), + [anon_sym_AMP_EQ] = ACTIONS(7157), + [anon_sym_CARET_EQ] = ACTIONS(7157), + [anon_sym_PIPE_EQ] = ACTIONS(7157), + [anon_sym_LT_LT_EQ] = ACTIONS(7157), + [anon_sym_GT_GT_EQ] = ACTIONS(7157), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7157), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7157), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649849,54 +641309,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5156), [sym_preproc_define] = STATE(5156), [sym_preproc_undef] = STATE(5156), - [aux_sym_query_body_repeat2] = STATE(5157), - [anon_sym_LBRACK] = ACTIONS(7491), - [anon_sym_COMMA] = ACTIONS(7491), - [anon_sym_LPAREN] = ACTIONS(7491), - [anon_sym_LT] = ACTIONS(7493), - [anon_sym_GT] = ACTIONS(7493), - [anon_sym_where] = ACTIONS(7491), - [anon_sym_QMARK] = ACTIONS(7493), - [anon_sym_BANG] = ACTIONS(7493), - [anon_sym_PLUS_PLUS] = ACTIONS(7491), - [anon_sym_DASH_DASH] = ACTIONS(7491), - [anon_sym_PLUS] = ACTIONS(7493), - [anon_sym_DASH] = ACTIONS(7493), - [anon_sym_STAR] = ACTIONS(7491), - [anon_sym_SLASH] = ACTIONS(7493), - [anon_sym_PERCENT] = ACTIONS(7491), - [anon_sym_CARET] = ACTIONS(7491), - [anon_sym_PIPE] = ACTIONS(7493), - [anon_sym_AMP] = ACTIONS(7493), - [anon_sym_LT_LT] = ACTIONS(7491), - [anon_sym_GT_GT] = ACTIONS(7493), - [anon_sym_GT_GT_GT] = ACTIONS(7491), - [anon_sym_EQ_EQ] = ACTIONS(7491), - [anon_sym_BANG_EQ] = ACTIONS(7491), - [anon_sym_GT_EQ] = ACTIONS(7491), - [anon_sym_LT_EQ] = ACTIONS(7491), - [anon_sym_DOT] = ACTIONS(7493), - [anon_sym_switch] = ACTIONS(7491), - [anon_sym_DOT_DOT] = ACTIONS(7491), - [anon_sym_and] = ACTIONS(7491), - [anon_sym_or] = ACTIONS(7493), - [anon_sym_AMP_AMP] = ACTIONS(7491), - [anon_sym_PIPE_PIPE] = ACTIONS(7491), - [sym_op_coalescing] = ACTIONS(7491), - [anon_sym_from] = ACTIONS(7491), - [anon_sym_into] = ACTIONS(7495), - [anon_sym_join] = ACTIONS(7491), - [anon_sym_let] = ACTIONS(7491), - [anon_sym_orderby] = ACTIONS(7491), - [anon_sym_ascending] = ACTIONS(7491), - [anon_sym_descending] = ACTIONS(7491), - [anon_sym_group] = ACTIONS(7491), - [anon_sym_select] = ACTIONS(7491), - [anon_sym_as] = ACTIONS(7493), - [anon_sym_is] = ACTIONS(7491), - [anon_sym_DASH_GT] = ACTIONS(7491), - [anon_sym_with] = ACTIONS(7491), - [sym_grit_metavariable] = ACTIONS(7491), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(6743), + [anon_sym_GT] = ACTIONS(6743), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_QMARK] = ACTIONS(6743), + [anon_sym_DOT] = ACTIONS(6743), + [anon_sym_EQ_GT] = ACTIONS(3966), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_and] = ACTIONS(4152), + [anon_sym_or] = ACTIONS(6743), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(6743), + [sym_op_bitwise_or] = ACTIONS(6743), + [anon_sym_CARET] = ACTIONS(4152), + [sym_op_left_shift] = ACTIONS(4152), + [sym_op_right_shift] = ACTIONS(6743), + [sym_op_unsigned_right_shift] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(6743), + [anon_sym_DASH] = ACTIONS(6743), + [sym_op_divide] = ACTIONS(6743), + [sym_op_modulo] = ACTIONS(4152), + [sym_op_coalescing] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(6743), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_from] = ACTIONS(4152), + [anon_sym_into] = ACTIONS(4152), + [anon_sym_join] = ACTIONS(4152), + [anon_sym_let] = ACTIONS(4152), + [anon_sym_orderby] = ACTIONS(4152), + [anon_sym_ascending] = ACTIONS(4152), + [anon_sym_descending] = ACTIONS(4152), + [anon_sym_group] = ACTIONS(4152), + [anon_sym_select] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(6743), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [anon_sym_with] = ACTIONS(4152), + [sym_grit_metavariable] = ACTIONS(4152), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649918,54 +641378,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5157), [sym_preproc_define] = STATE(5157), [sym_preproc_undef] = STATE(5157), - [aux_sym_query_body_repeat2] = STATE(5157), - [anon_sym_LBRACK] = ACTIONS(7497), - [anon_sym_COMMA] = ACTIONS(7497), - [anon_sym_LPAREN] = ACTIONS(7497), - [anon_sym_LT] = ACTIONS(7499), - [anon_sym_GT] = ACTIONS(7499), - [anon_sym_where] = ACTIONS(7497), - [anon_sym_QMARK] = ACTIONS(7499), - [anon_sym_BANG] = ACTIONS(7499), - [anon_sym_PLUS_PLUS] = ACTIONS(7497), - [anon_sym_DASH_DASH] = ACTIONS(7497), - [anon_sym_PLUS] = ACTIONS(7499), - [anon_sym_DASH] = ACTIONS(7499), - [anon_sym_STAR] = ACTIONS(7497), - [anon_sym_SLASH] = ACTIONS(7499), - [anon_sym_PERCENT] = ACTIONS(7497), - [anon_sym_CARET] = ACTIONS(7497), - [anon_sym_PIPE] = ACTIONS(7499), - [anon_sym_AMP] = ACTIONS(7499), - [anon_sym_LT_LT] = ACTIONS(7497), - [anon_sym_GT_GT] = ACTIONS(7499), - [anon_sym_GT_GT_GT] = ACTIONS(7497), - [anon_sym_EQ_EQ] = ACTIONS(7497), - [anon_sym_BANG_EQ] = ACTIONS(7497), - [anon_sym_GT_EQ] = ACTIONS(7497), - [anon_sym_LT_EQ] = ACTIONS(7497), - [anon_sym_DOT] = ACTIONS(7499), - [anon_sym_switch] = ACTIONS(7497), - [anon_sym_DOT_DOT] = ACTIONS(7497), - [anon_sym_and] = ACTIONS(7497), - [anon_sym_or] = ACTIONS(7499), - [anon_sym_AMP_AMP] = ACTIONS(7497), - [anon_sym_PIPE_PIPE] = ACTIONS(7497), - [sym_op_coalescing] = ACTIONS(7497), - [anon_sym_from] = ACTIONS(7497), - [anon_sym_into] = ACTIONS(7501), - [anon_sym_join] = ACTIONS(7497), - [anon_sym_let] = ACTIONS(7497), - [anon_sym_orderby] = ACTIONS(7497), - [anon_sym_ascending] = ACTIONS(7497), - [anon_sym_descending] = ACTIONS(7497), - [anon_sym_group] = ACTIONS(7497), - [anon_sym_select] = ACTIONS(7497), - [anon_sym_as] = ACTIONS(7499), - [anon_sym_is] = ACTIONS(7497), - [anon_sym_DASH_GT] = ACTIONS(7497), - [anon_sym_with] = ACTIONS(7497), - [sym_grit_metavariable] = ACTIONS(7497), + [anon_sym_EQ] = ACTIONS(7155), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(7956), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(7157), + [anon_sym_DASH_EQ] = ACTIONS(7157), + [anon_sym_STAR_EQ] = ACTIONS(7157), + [anon_sym_SLASH_EQ] = ACTIONS(7157), + [anon_sym_PERCENT_EQ] = ACTIONS(7157), + [anon_sym_AMP_EQ] = ACTIONS(7157), + [anon_sym_CARET_EQ] = ACTIONS(7157), + [anon_sym_PIPE_EQ] = ACTIONS(7157), + [anon_sym_LT_LT_EQ] = ACTIONS(7157), + [anon_sym_GT_GT_EQ] = ACTIONS(7157), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(7157), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7157), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -649987,54 +641447,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5158), [sym_preproc_define] = STATE(5158), [sym_preproc_undef] = STATE(5158), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(7504), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5703), + [anon_sym_COMMA] = ACTIONS(5703), + [anon_sym_LPAREN] = ACTIONS(5703), + [anon_sym_LT] = ACTIONS(5705), + [anon_sym_GT] = ACTIONS(5705), + [anon_sym_where] = ACTIONS(5703), + [anon_sym_QMARK] = ACTIONS(5705), + [anon_sym_DOT] = ACTIONS(5705), + [anon_sym_STAR] = ACTIONS(5703), + [anon_sym_switch] = ACTIONS(5703), + [anon_sym_DOT_DOT] = ACTIONS(5703), + [anon_sym_LT_EQ] = ACTIONS(5703), + [anon_sym_GT_EQ] = ACTIONS(5703), + [anon_sym_and] = ACTIONS(5703), + [anon_sym_or] = ACTIONS(5705), + [anon_sym_EQ_EQ] = ACTIONS(5703), + [anon_sym_BANG_EQ] = ACTIONS(5703), + [anon_sym_AMP_AMP] = ACTIONS(5703), + [anon_sym_PIPE_PIPE] = ACTIONS(5703), + [anon_sym_AMP] = ACTIONS(5705), + [sym_op_bitwise_or] = ACTIONS(5705), + [anon_sym_CARET] = ACTIONS(5703), + [sym_op_left_shift] = ACTIONS(5703), + [sym_op_right_shift] = ACTIONS(5705), + [sym_op_unsigned_right_shift] = ACTIONS(5703), + [anon_sym_PLUS] = ACTIONS(5705), + [anon_sym_DASH] = ACTIONS(5705), + [sym_op_divide] = ACTIONS(5705), + [sym_op_modulo] = ACTIONS(5703), + [sym_op_coalescing] = ACTIONS(5703), + [anon_sym_BANG] = ACTIONS(5705), + [anon_sym_PLUS_PLUS] = ACTIONS(5703), + [anon_sym_DASH_DASH] = ACTIONS(5703), + [anon_sym_from] = ACTIONS(5703), + [anon_sym_into] = ACTIONS(5703), + [anon_sym_join] = ACTIONS(5703), + [anon_sym_let] = ACTIONS(5703), + [anon_sym_orderby] = ACTIONS(5703), + [anon_sym_ascending] = ACTIONS(5703), + [anon_sym_descending] = ACTIONS(5703), + [anon_sym_group] = ACTIONS(5703), + [anon_sym_select] = ACTIONS(5703), + [anon_sym_as] = ACTIONS(5705), + [anon_sym_is] = ACTIONS(5703), + [anon_sym_DASH_GT] = ACTIONS(5703), + [anon_sym_with] = ACTIONS(5703), + [sym_string_literal_encoding] = ACTIONS(7958), + [sym_grit_metavariable] = ACTIONS(5703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -650047,6 +641507,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5159] = { + [sym_argument_list] = STATE(4547), + [sym_bracketed_argument_list] = STATE(2557), + [sym_op_lt] = STATE(1609), + [sym_op_lte] = STATE(1609), + [sym_op_eq] = STATE(1610), + [sym_op_neq] = STATE(1610), + [sym_op_gt] = STATE(1609), + [sym_op_gte] = STATE(1609), + [sym_op_and] = STATE(1616), + [sym_op_or] = STATE(1618), + [sym_op_bitwise_and] = STATE(1620), + [sym_op_bitwise_xor] = STATE(1622), + [sym_op_plus] = STATE(1625), + [sym_op_minus] = STATE(1625), + [sym_op_multiply] = STATE(1605), [sym_preproc_region] = STATE(5159), [sym_preproc_endregion] = STATE(5159), [sym_preproc_line] = STATE(5159), @@ -650056,54 +641531,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5159), [sym_preproc_define] = STATE(5159), [sym_preproc_undef] = STATE(5159), - [anon_sym_LBRACK] = ACTIONS(5931), - [anon_sym_COMMA] = ACTIONS(5931), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_LBRACE] = ACTIONS(5931), - [anon_sym_LT] = ACTIONS(5933), - [anon_sym_GT] = ACTIONS(5933), - [anon_sym_where] = ACTIONS(5931), - [anon_sym_QMARK] = ACTIONS(5933), - [anon_sym_BANG] = ACTIONS(5933), - [anon_sym_PLUS_PLUS] = ACTIONS(5931), - [anon_sym_DASH_DASH] = ACTIONS(5931), - [anon_sym_PLUS] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5933), - [anon_sym_STAR] = ACTIONS(5931), - [anon_sym_SLASH] = ACTIONS(5933), - [anon_sym_PERCENT] = ACTIONS(5931), - [anon_sym_CARET] = ACTIONS(5931), - [anon_sym_PIPE] = ACTIONS(5933), - [anon_sym_AMP] = ACTIONS(5933), - [anon_sym_LT_LT] = ACTIONS(5931), - [anon_sym_GT_GT] = ACTIONS(5933), - [anon_sym_GT_GT_GT] = ACTIONS(5931), - [anon_sym_EQ_EQ] = ACTIONS(5931), - [anon_sym_BANG_EQ] = ACTIONS(5931), - [anon_sym_GT_EQ] = ACTIONS(5931), - [anon_sym_LT_EQ] = ACTIONS(5931), - [anon_sym_DOT] = ACTIONS(5933), - [anon_sym_switch] = ACTIONS(5931), - [anon_sym_DOT_DOT] = ACTIONS(5931), - [anon_sym_and] = ACTIONS(5931), - [anon_sym_or] = ACTIONS(5933), - [anon_sym_AMP_AMP] = ACTIONS(5931), - [anon_sym_PIPE_PIPE] = ACTIONS(5931), - [sym_op_coalescing] = ACTIONS(5931), - [anon_sym_from] = ACTIONS(5931), - [anon_sym_into] = ACTIONS(5931), - [anon_sym_join] = ACTIONS(5931), - [anon_sym_let] = ACTIONS(5931), - [anon_sym_orderby] = ACTIONS(5931), - [anon_sym_ascending] = ACTIONS(5931), - [anon_sym_descending] = ACTIONS(5931), - [anon_sym_group] = ACTIONS(5931), - [anon_sym_select] = ACTIONS(5931), - [anon_sym_as] = ACTIONS(5933), - [anon_sym_is] = ACTIONS(5931), - [anon_sym_DASH_GT] = ACTIONS(5931), - [anon_sym_with] = ACTIONS(5931), - [sym_grit_metavariable] = ACTIONS(5931), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6292), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5795), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + [sym_op_bitwise_or] = ACTIONS(6123), + [anon_sym_CARET] = ACTIONS(5268), + [sym_op_left_shift] = ACTIONS(6109), + [sym_op_right_shift] = ACTIONS(6111), + [sym_op_unsigned_right_shift] = ACTIONS(6109), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5276), + [sym_op_divide] = ACTIONS(6113), + [sym_op_modulo] = ACTIONS(6115), + [sym_op_coalescing] = ACTIONS(6125), + [anon_sym_BANG] = ACTIONS(6067), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_as] = ACTIONS(6308), + [anon_sym_is] = ACTIONS(6310), + [anon_sym_DASH_GT] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -650116,6 +641576,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5160] = { + [sym__name] = STATE(6876), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_implicit_type] = STATE(7722), + [sym_array_type] = STATE(7230), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(7229), + [sym_pointer_type] = STATE(7229), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(7229), + [sym_function_pointer_parameter] = STATE(7934), + [sym__ref_base_type] = STATE(7787), + [sym_tuple_type] = STATE(6954), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5160), [sym_preproc_endregion] = STATE(5160), [sym_preproc_line] = STATE(5160), @@ -650125,54 +641602,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5160), [sym_preproc_define] = STATE(5160), [sym_preproc_undef] = STATE(5160), - [aux_sym_query_body_repeat2] = STATE(5156), - [anon_sym_LBRACK] = ACTIONS(7506), - [anon_sym_COMMA] = ACTIONS(7506), - [anon_sym_LPAREN] = ACTIONS(7506), - [anon_sym_LT] = ACTIONS(7508), - [anon_sym_GT] = ACTIONS(7508), - [anon_sym_where] = ACTIONS(7506), - [anon_sym_QMARK] = ACTIONS(7508), - [anon_sym_BANG] = ACTIONS(7508), - [anon_sym_PLUS_PLUS] = ACTIONS(7506), - [anon_sym_DASH_DASH] = ACTIONS(7506), - [anon_sym_PLUS] = ACTIONS(7508), - [anon_sym_DASH] = ACTIONS(7508), - [anon_sym_STAR] = ACTIONS(7506), - [anon_sym_SLASH] = ACTIONS(7508), - [anon_sym_PERCENT] = ACTIONS(7506), - [anon_sym_CARET] = ACTIONS(7506), - [anon_sym_PIPE] = ACTIONS(7508), - [anon_sym_AMP] = ACTIONS(7508), - [anon_sym_LT_LT] = ACTIONS(7506), - [anon_sym_GT_GT] = ACTIONS(7508), - [anon_sym_GT_GT_GT] = ACTIONS(7506), - [anon_sym_EQ_EQ] = ACTIONS(7506), - [anon_sym_BANG_EQ] = ACTIONS(7506), - [anon_sym_GT_EQ] = ACTIONS(7506), - [anon_sym_LT_EQ] = ACTIONS(7506), - [anon_sym_DOT] = ACTIONS(7508), - [anon_sym_switch] = ACTIONS(7506), - [anon_sym_DOT_DOT] = ACTIONS(7506), - [anon_sym_and] = ACTIONS(7506), - [anon_sym_or] = ACTIONS(7508), - [anon_sym_AMP_AMP] = ACTIONS(7506), - [anon_sym_PIPE_PIPE] = ACTIONS(7506), - [sym_op_coalescing] = ACTIONS(7506), - [anon_sym_from] = ACTIONS(7506), - [anon_sym_into] = ACTIONS(7495), - [anon_sym_join] = ACTIONS(7506), - [anon_sym_let] = ACTIONS(7506), - [anon_sym_orderby] = ACTIONS(7506), - [anon_sym_ascending] = ACTIONS(7506), - [anon_sym_descending] = ACTIONS(7506), - [anon_sym_group] = ACTIONS(7506), - [anon_sym_select] = ACTIONS(7506), - [anon_sym_as] = ACTIONS(7508), - [anon_sym_is] = ACTIONS(7506), - [anon_sym_DASH_GT] = ACTIONS(7506), - [anon_sym_with] = ACTIONS(7506), - [sym_grit_metavariable] = ACTIONS(7506), + [aux_sym_function_pointer_type_repeat1] = STATE(5160), + [sym__identifier_token] = ACTIONS(7960), + [anon_sym_alias] = ACTIONS(7963), + [anon_sym_global] = ACTIONS(7963), + [anon_sym_LPAREN] = ACTIONS(7966), + [anon_sym_ref] = ACTIONS(7969), + [anon_sym_delegate] = ACTIONS(7972), + [anon_sym_file] = ACTIONS(7963), + [anon_sym_in] = ACTIONS(7969), + [anon_sym_out] = ACTIONS(7969), + [anon_sym_where] = ACTIONS(7963), + [anon_sym_notnull] = ACTIONS(7963), + [anon_sym_unmanaged] = ACTIONS(7963), + [anon_sym_scoped] = ACTIONS(7963), + [anon_sym_var] = ACTIONS(7975), + [sym_predefined_type] = ACTIONS(7978), + [anon_sym_yield] = ACTIONS(7963), + [anon_sym_when] = ACTIONS(7963), + [anon_sym_from] = ACTIONS(7963), + [anon_sym_into] = ACTIONS(7963), + [anon_sym_join] = ACTIONS(7963), + [anon_sym_on] = ACTIONS(7963), + [anon_sym_equals] = ACTIONS(7963), + [anon_sym_let] = ACTIONS(7963), + [anon_sym_orderby] = ACTIONS(7963), + [anon_sym_ascending] = ACTIONS(7963), + [anon_sym_descending] = ACTIONS(7963), + [anon_sym_group] = ACTIONS(7963), + [anon_sym_by] = ACTIONS(7963), + [anon_sym_select] = ACTIONS(7963), + [sym_grit_metavariable] = ACTIONS(7981), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -650194,54 +641654,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5161), [sym_preproc_define] = STATE(5161), [sym_preproc_undef] = STATE(5161), - [aux_sym_query_body_repeat2] = STATE(5157), - [anon_sym_LBRACK] = ACTIONS(7510), - [anon_sym_COMMA] = ACTIONS(7510), - [anon_sym_LPAREN] = ACTIONS(7510), - [anon_sym_LT] = ACTIONS(7512), - [anon_sym_GT] = ACTIONS(7512), - [anon_sym_where] = ACTIONS(7510), - [anon_sym_QMARK] = ACTIONS(7512), - [anon_sym_BANG] = ACTIONS(7512), - [anon_sym_PLUS_PLUS] = ACTIONS(7510), - [anon_sym_DASH_DASH] = ACTIONS(7510), - [anon_sym_PLUS] = ACTIONS(7512), - [anon_sym_DASH] = ACTIONS(7512), - [anon_sym_STAR] = ACTIONS(7510), - [anon_sym_SLASH] = ACTIONS(7512), - [anon_sym_PERCENT] = ACTIONS(7510), - [anon_sym_CARET] = ACTIONS(7510), - [anon_sym_PIPE] = ACTIONS(7512), - [anon_sym_AMP] = ACTIONS(7512), - [anon_sym_LT_LT] = ACTIONS(7510), - [anon_sym_GT_GT] = ACTIONS(7512), - [anon_sym_GT_GT_GT] = ACTIONS(7510), - [anon_sym_EQ_EQ] = ACTIONS(7510), - [anon_sym_BANG_EQ] = ACTIONS(7510), - [anon_sym_GT_EQ] = ACTIONS(7510), - [anon_sym_LT_EQ] = ACTIONS(7510), - [anon_sym_DOT] = ACTIONS(7512), - [anon_sym_switch] = ACTIONS(7510), - [anon_sym_DOT_DOT] = ACTIONS(7510), - [anon_sym_and] = ACTIONS(7510), - [anon_sym_or] = ACTIONS(7512), - [anon_sym_AMP_AMP] = ACTIONS(7510), - [anon_sym_PIPE_PIPE] = ACTIONS(7510), - [sym_op_coalescing] = ACTIONS(7510), - [anon_sym_from] = ACTIONS(7510), - [anon_sym_into] = ACTIONS(7495), - [anon_sym_join] = ACTIONS(7510), - [anon_sym_let] = ACTIONS(7510), - [anon_sym_orderby] = ACTIONS(7510), - [anon_sym_ascending] = ACTIONS(7510), - [anon_sym_descending] = ACTIONS(7510), - [anon_sym_group] = ACTIONS(7510), - [anon_sym_select] = ACTIONS(7510), - [anon_sym_as] = ACTIONS(7512), - [anon_sym_is] = ACTIONS(7510), - [anon_sym_DASH_GT] = ACTIONS(7510), - [anon_sym_with] = ACTIONS(7510), - [sym_grit_metavariable] = ACTIONS(7510), + [sym__identifier_token] = ACTIONS(6133), + [anon_sym_extern] = ACTIONS(6133), + [anon_sym_alias] = ACTIONS(6133), + [anon_sym_global] = ACTIONS(6133), + [anon_sym_unsafe] = ACTIONS(6133), + [anon_sym_static] = ACTIONS(6133), + [anon_sym_LPAREN] = ACTIONS(6135), + [anon_sym_ref] = ACTIONS(6133), + [anon_sym_delegate] = ACTIONS(6133), + [anon_sym_public] = ACTIONS(6133), + [anon_sym_private] = ACTIONS(6133), + [anon_sym_readonly] = ACTIONS(6133), + [anon_sym_abstract] = ACTIONS(6133), + [anon_sym_async] = ACTIONS(6133), + [anon_sym_const] = ACTIONS(6133), + [anon_sym_file] = ACTIONS(6133), + [anon_sym_fixed] = ACTIONS(6133), + [anon_sym_internal] = ACTIONS(6133), + [anon_sym_new] = ACTIONS(6133), + [anon_sym_override] = ACTIONS(6133), + [anon_sym_partial] = ACTIONS(6133), + [anon_sym_protected] = ACTIONS(6133), + [anon_sym_required] = ACTIONS(6133), + [anon_sym_sealed] = ACTIONS(6133), + [anon_sym_virtual] = ACTIONS(6133), + [anon_sym_volatile] = ACTIONS(6133), + [anon_sym_where] = ACTIONS(6133), + [anon_sym_notnull] = ACTIONS(6133), + [anon_sym_unmanaged] = ACTIONS(6133), + [anon_sym_scoped] = ACTIONS(6133), + [anon_sym_var] = ACTIONS(6133), + [sym_predefined_type] = ACTIONS(6133), + [anon_sym_yield] = ACTIONS(6133), + [anon_sym_when] = ACTIONS(6133), + [anon_sym_from] = ACTIONS(6133), + [anon_sym_into] = ACTIONS(6133), + [anon_sym_join] = ACTIONS(6133), + [anon_sym_on] = ACTIONS(6133), + [anon_sym_equals] = ACTIONS(6133), + [anon_sym_let] = ACTIONS(6133), + [anon_sym_orderby] = ACTIONS(6133), + [anon_sym_ascending] = ACTIONS(6133), + [anon_sym_descending] = ACTIONS(6133), + [anon_sym_group] = ACTIONS(6133), + [anon_sym_by] = ACTIONS(6133), + [anon_sym_select] = ACTIONS(6133), + [sym_grit_metavariable] = ACTIONS(6135), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -650263,54 +641722,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5162), [sym_preproc_define] = STATE(5162), [sym_preproc_undef] = STATE(5162), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [sym_accessor_get] = ACTIONS(3738), - [sym_accessor_set] = ACTIONS(3738), - [sym_accessor_add] = ACTIONS(3738), - [sym_accessor_remove] = ACTIONS(3738), - [sym_accessor_init] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5779), + [anon_sym_COMMA] = ACTIONS(5779), + [anon_sym_LPAREN] = ACTIONS(5779), + [anon_sym_LT] = ACTIONS(5781), + [anon_sym_GT] = ACTIONS(5781), + [anon_sym_where] = ACTIONS(5779), + [anon_sym_QMARK] = ACTIONS(5781), + [anon_sym_DOT] = ACTIONS(5781), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_switch] = ACTIONS(5779), + [anon_sym_DOT_DOT] = ACTIONS(5779), + [anon_sym_LT_EQ] = ACTIONS(5779), + [anon_sym_GT_EQ] = ACTIONS(5779), + [anon_sym_and] = ACTIONS(5779), + [anon_sym_or] = ACTIONS(5781), + [anon_sym_EQ_EQ] = ACTIONS(5779), + [anon_sym_BANG_EQ] = ACTIONS(5779), + [anon_sym_AMP_AMP] = ACTIONS(5779), + [anon_sym_PIPE_PIPE] = ACTIONS(5779), + [anon_sym_AMP] = ACTIONS(5781), + [sym_op_bitwise_or] = ACTIONS(5781), + [anon_sym_CARET] = ACTIONS(5779), + [sym_op_left_shift] = ACTIONS(5779), + [sym_op_right_shift] = ACTIONS(5781), + [sym_op_unsigned_right_shift] = ACTIONS(5779), + [anon_sym_PLUS] = ACTIONS(5781), + [anon_sym_DASH] = ACTIONS(5781), + [sym_op_divide] = ACTIONS(5781), + [sym_op_modulo] = ACTIONS(5779), + [sym_op_coalescing] = ACTIONS(5779), + [anon_sym_BANG] = ACTIONS(5781), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_from] = ACTIONS(5779), + [anon_sym_into] = ACTIONS(5779), + [anon_sym_join] = ACTIONS(5779), + [anon_sym_let] = ACTIONS(5779), + [anon_sym_orderby] = ACTIONS(5779), + [anon_sym_ascending] = ACTIONS(5779), + [anon_sym_descending] = ACTIONS(5779), + [anon_sym_group] = ACTIONS(5779), + [anon_sym_select] = ACTIONS(5779), + [anon_sym_as] = ACTIONS(5781), + [anon_sym_is] = ACTIONS(5779), + [anon_sym_DASH_GT] = ACTIONS(5779), + [anon_sym_with] = ACTIONS(5779), + [sym_grit_metavariable] = ACTIONS(5779), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -650332,54 +641790,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5163), [sym_preproc_define] = STATE(5163), [sym_preproc_undef] = STATE(5163), - [aux_sym_query_body_repeat2] = STATE(5161), - [anon_sym_LBRACK] = ACTIONS(7514), - [anon_sym_COMMA] = ACTIONS(7514), - [anon_sym_LPAREN] = ACTIONS(7514), - [anon_sym_LT] = ACTIONS(7516), - [anon_sym_GT] = ACTIONS(7516), - [anon_sym_where] = ACTIONS(7514), - [anon_sym_QMARK] = ACTIONS(7516), - [anon_sym_BANG] = ACTIONS(7516), - [anon_sym_PLUS_PLUS] = ACTIONS(7514), - [anon_sym_DASH_DASH] = ACTIONS(7514), - [anon_sym_PLUS] = ACTIONS(7516), - [anon_sym_DASH] = ACTIONS(7516), - [anon_sym_STAR] = ACTIONS(7514), - [anon_sym_SLASH] = ACTIONS(7516), - [anon_sym_PERCENT] = ACTIONS(7514), - [anon_sym_CARET] = ACTIONS(7514), - [anon_sym_PIPE] = ACTIONS(7516), - [anon_sym_AMP] = ACTIONS(7516), - [anon_sym_LT_LT] = ACTIONS(7514), - [anon_sym_GT_GT] = ACTIONS(7516), - [anon_sym_GT_GT_GT] = ACTIONS(7514), - [anon_sym_EQ_EQ] = ACTIONS(7514), - [anon_sym_BANG_EQ] = ACTIONS(7514), - [anon_sym_GT_EQ] = ACTIONS(7514), - [anon_sym_LT_EQ] = ACTIONS(7514), - [anon_sym_DOT] = ACTIONS(7516), - [anon_sym_switch] = ACTIONS(7514), - [anon_sym_DOT_DOT] = ACTIONS(7514), - [anon_sym_and] = ACTIONS(7514), - [anon_sym_or] = ACTIONS(7516), - [anon_sym_AMP_AMP] = ACTIONS(7514), - [anon_sym_PIPE_PIPE] = ACTIONS(7514), - [sym_op_coalescing] = ACTIONS(7514), - [anon_sym_from] = ACTIONS(7514), - [anon_sym_into] = ACTIONS(7495), - [anon_sym_join] = ACTIONS(7514), - [anon_sym_let] = ACTIONS(7514), - [anon_sym_orderby] = ACTIONS(7514), - [anon_sym_ascending] = ACTIONS(7514), - [anon_sym_descending] = ACTIONS(7514), - [anon_sym_group] = ACTIONS(7514), - [anon_sym_select] = ACTIONS(7514), - [anon_sym_as] = ACTIONS(7516), - [anon_sym_is] = ACTIONS(7514), - [anon_sym_DASH_GT] = ACTIONS(7514), - [anon_sym_with] = ACTIONS(7514), - [sym_grit_metavariable] = ACTIONS(7514), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_COMMA] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3195), + [anon_sym_where] = ACTIONS(3197), + [anon_sym_QMARK] = ACTIONS(3195), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_switch] = ACTIONS(3197), + [anon_sym_DOT_DOT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [sym_op_bitwise_or] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3197), + [sym_op_left_shift] = ACTIONS(3197), + [sym_op_right_shift] = ACTIONS(3195), + [sym_op_unsigned_right_shift] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [sym_op_divide] = ACTIONS(3195), + [sym_op_modulo] = ACTIONS(3197), + [sym_op_coalescing] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_from] = ACTIONS(3197), + [anon_sym_into] = ACTIONS(3197), + [anon_sym_join] = 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_select] = ACTIONS(3197), + [anon_sym_as] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3197), + [anon_sym_DASH_GT] = ACTIONS(3197), + [anon_sym_with] = ACTIONS(3197), + [sym_grit_metavariable] = ACTIONS(3197), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -650401,54 +641858,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5164), [sym_preproc_define] = STATE(5164), [sym_preproc_undef] = STATE(5164), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_RPAREN] = ACTIONS(7518), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_LPAREN] = ACTIONS(5951), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_where] = ACTIONS(5951), + [anon_sym_QMARK] = ACTIONS(5953), + [anon_sym_DOT] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_switch] = ACTIONS(5951), + [anon_sym_DOT_DOT] = ACTIONS(5951), + [anon_sym_LT_EQ] = ACTIONS(5951), + [anon_sym_GT_EQ] = ACTIONS(5951), + [anon_sym_and] = ACTIONS(5951), + [anon_sym_or] = ACTIONS(5953), + [anon_sym_EQ_EQ] = ACTIONS(5951), + [anon_sym_BANG_EQ] = ACTIONS(5951), + [anon_sym_AMP_AMP] = ACTIONS(5951), + [anon_sym_PIPE_PIPE] = ACTIONS(5951), + [anon_sym_AMP] = ACTIONS(5953), + [sym_op_bitwise_or] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5951), + [sym_op_left_shift] = ACTIONS(5951), + [sym_op_right_shift] = ACTIONS(5953), + [sym_op_unsigned_right_shift] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [sym_op_divide] = ACTIONS(5953), + [sym_op_modulo] = ACTIONS(5951), + [sym_op_coalescing] = ACTIONS(5951), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PLUS_PLUS] = ACTIONS(5951), + [anon_sym_DASH_DASH] = ACTIONS(5951), + [anon_sym_from] = ACTIONS(5951), + [anon_sym_into] = ACTIONS(5951), + [anon_sym_join] = ACTIONS(5951), + [anon_sym_let] = ACTIONS(5951), + [anon_sym_orderby] = ACTIONS(5951), + [anon_sym_ascending] = ACTIONS(5951), + [anon_sym_descending] = ACTIONS(5951), + [anon_sym_group] = ACTIONS(5951), + [anon_sym_select] = ACTIONS(5951), + [anon_sym_as] = ACTIONS(5953), + [anon_sym_is] = ACTIONS(5951), + [anon_sym_DASH_GT] = ACTIONS(5951), + [anon_sym_with] = ACTIONS(5951), + [sym_grit_metavariable] = ACTIONS(5951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -650461,24 +641917,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5165] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5165), [sym_preproc_endregion] = STATE(5165), [sym_preproc_line] = STATE(5165), @@ -650488,36 +641926,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5165), [sym_preproc_define] = STATE(5165), [sym_preproc_undef] = STATE(5165), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(2997), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_COMMA] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_GT] = ACTIONS(2269), + [anon_sym_where] = ACTIONS(2267), + [anon_sym_QMARK] = ACTIONS(2269), + [anon_sym_DOT] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_switch] = ACTIONS(2267), + [anon_sym_DOT_DOT] = ACTIONS(2267), + [anon_sym_LT_EQ] = ACTIONS(2267), + [anon_sym_GT_EQ] = ACTIONS(2267), + [anon_sym_and] = ACTIONS(2267), + [anon_sym_or] = ACTIONS(2269), + [anon_sym_EQ_EQ] = ACTIONS(2267), + [anon_sym_BANG_EQ] = ACTIONS(2267), + [anon_sym_AMP_AMP] = ACTIONS(2267), + [anon_sym_PIPE_PIPE] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2269), + [sym_op_bitwise_or] = ACTIONS(2269), + [anon_sym_CARET] = ACTIONS(2267), + [sym_op_left_shift] = ACTIONS(2267), + [sym_op_right_shift] = ACTIONS(2269), + [sym_op_unsigned_right_shift] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [sym_op_divide] = ACTIONS(2269), + [sym_op_modulo] = ACTIONS(2267), + [sym_op_coalescing] = ACTIONS(2267), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_from] = ACTIONS(2267), + [anon_sym_into] = ACTIONS(2267), + [anon_sym_join] = ACTIONS(2267), + [anon_sym_let] = ACTIONS(2267), + [anon_sym_orderby] = ACTIONS(2267), + [anon_sym_ascending] = ACTIONS(2267), + [anon_sym_descending] = ACTIONS(2267), + [anon_sym_group] = ACTIONS(2267), + [anon_sym_select] = ACTIONS(2267), + [anon_sym_as] = ACTIONS(2269), + [anon_sym_is] = ACTIONS(2267), + [anon_sym_DASH_GT] = ACTIONS(2267), + [anon_sym_with] = ACTIONS(2267), + [sym_grit_metavariable] = ACTIONS(2267), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -650530,6 +641985,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5166] = { + [sym__name] = STATE(5481), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3172), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(5429), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(5166), [sym_preproc_endregion] = STATE(5166), [sym_preproc_line] = STATE(5166), @@ -650539,54 +642012,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5166), [sym_preproc_define] = STATE(5166), [sym_preproc_undef] = STATE(5166), - [anon_sym_LBRACK] = ACTIONS(5945), - [anon_sym_COMMA] = ACTIONS(5945), - [anon_sym_LPAREN] = ACTIONS(5945), - [anon_sym_LBRACE] = ACTIONS(5945), - [anon_sym_LT] = ACTIONS(5947), - [anon_sym_GT] = ACTIONS(5947), - [anon_sym_where] = ACTIONS(5945), - [anon_sym_QMARK] = ACTIONS(5947), - [anon_sym_BANG] = ACTIONS(5947), - [anon_sym_PLUS_PLUS] = ACTIONS(5945), - [anon_sym_DASH_DASH] = ACTIONS(5945), - [anon_sym_PLUS] = ACTIONS(5947), - [anon_sym_DASH] = ACTIONS(5947), - [anon_sym_STAR] = ACTIONS(5945), - [anon_sym_SLASH] = ACTIONS(5947), - [anon_sym_PERCENT] = ACTIONS(5945), - [anon_sym_CARET] = ACTIONS(5945), - [anon_sym_PIPE] = ACTIONS(5947), - [anon_sym_AMP] = ACTIONS(5947), - [anon_sym_LT_LT] = ACTIONS(5945), - [anon_sym_GT_GT] = ACTIONS(5947), - [anon_sym_GT_GT_GT] = ACTIONS(5945), - [anon_sym_EQ_EQ] = ACTIONS(5945), - [anon_sym_BANG_EQ] = ACTIONS(5945), - [anon_sym_GT_EQ] = ACTIONS(5945), - [anon_sym_LT_EQ] = ACTIONS(5945), - [anon_sym_DOT] = ACTIONS(5947), - [anon_sym_switch] = ACTIONS(5945), - [anon_sym_DOT_DOT] = ACTIONS(5945), - [anon_sym_and] = ACTIONS(5945), - [anon_sym_or] = ACTIONS(5947), - [anon_sym_AMP_AMP] = ACTIONS(5945), - [anon_sym_PIPE_PIPE] = ACTIONS(5945), - [sym_op_coalescing] = ACTIONS(5945), - [anon_sym_from] = ACTIONS(5945), - [anon_sym_into] = ACTIONS(5945), - [anon_sym_join] = ACTIONS(5945), - [anon_sym_let] = ACTIONS(5945), - [anon_sym_orderby] = ACTIONS(5945), - [anon_sym_ascending] = ACTIONS(5945), - [anon_sym_descending] = ACTIONS(5945), - [anon_sym_group] = ACTIONS(5945), - [anon_sym_select] = ACTIONS(5945), - [anon_sym_as] = ACTIONS(5947), - [anon_sym_is] = ACTIONS(5945), - [anon_sym_DASH_GT] = ACTIONS(5945), - [anon_sym_with] = ACTIONS(5945), - [sym_grit_metavariable] = ACTIONS(5945), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4494), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_readonly] = ACTIONS(7986), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7392), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -650608,53 +642062,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5167), [sym_preproc_define] = STATE(5167), [sym_preproc_undef] = STATE(5167), - [anon_sym_LBRACK] = ACTIONS(7136), - [anon_sym_COMMA] = ACTIONS(7136), - [anon_sym_LPAREN] = ACTIONS(7136), - [anon_sym_LT] = ACTIONS(7138), - [anon_sym_GT] = ACTIONS(7138), - [anon_sym_where] = ACTIONS(7136), - [anon_sym_QMARK] = ACTIONS(7138), - [anon_sym_BANG] = ACTIONS(7138), - [anon_sym_PLUS_PLUS] = ACTIONS(7136), - [anon_sym_DASH_DASH] = ACTIONS(7136), - [anon_sym_PLUS] = ACTIONS(7138), - [anon_sym_DASH] = ACTIONS(7138), - [anon_sym_STAR] = ACTIONS(7136), - [anon_sym_SLASH] = ACTIONS(7138), - [anon_sym_PERCENT] = ACTIONS(7136), - [anon_sym_CARET] = ACTIONS(7136), - [anon_sym_PIPE] = ACTIONS(7138), - [anon_sym_AMP] = ACTIONS(7138), - [anon_sym_LT_LT] = ACTIONS(7136), - [anon_sym_GT_GT] = ACTIONS(7138), - [anon_sym_GT_GT_GT] = ACTIONS(7136), - [anon_sym_EQ_EQ] = ACTIONS(7136), - [anon_sym_BANG_EQ] = ACTIONS(7136), - [anon_sym_GT_EQ] = ACTIONS(7136), - [anon_sym_LT_EQ] = ACTIONS(7136), - [anon_sym_DOT] = ACTIONS(7138), - [anon_sym_switch] = ACTIONS(7136), - [anon_sym_DOT_DOT] = ACTIONS(7136), - [anon_sym_and] = ACTIONS(7136), - [anon_sym_or] = ACTIONS(7138), - [anon_sym_AMP_AMP] = ACTIONS(7136), - [anon_sym_PIPE_PIPE] = ACTIONS(7136), - [sym_op_coalescing] = ACTIONS(7136), - [anon_sym_from] = ACTIONS(7136), - [anon_sym_into] = ACTIONS(7136), - [anon_sym_join] = ACTIONS(7136), - [anon_sym_let] = ACTIONS(7136), - [anon_sym_orderby] = ACTIONS(7136), - [anon_sym_ascending] = ACTIONS(7136), - [anon_sym_descending] = ACTIONS(7136), - [anon_sym_group] = ACTIONS(7136), - [anon_sym_select] = ACTIONS(7136), - [anon_sym_as] = ACTIONS(7138), - [anon_sym_is] = ACTIONS(7136), - [anon_sym_DASH_GT] = ACTIONS(7136), - [anon_sym_with] = ACTIONS(7136), - [sym_grit_metavariable] = ACTIONS(7136), + [anon_sym_LBRACK] = ACTIONS(5947), + [anon_sym_COMMA] = ACTIONS(5947), + [anon_sym_LPAREN] = ACTIONS(5947), + [anon_sym_LT] = ACTIONS(5949), + [anon_sym_GT] = ACTIONS(5949), + [anon_sym_where] = ACTIONS(5947), + [anon_sym_QMARK] = ACTIONS(5949), + [anon_sym_DOT] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5947), + [anon_sym_switch] = ACTIONS(5947), + [anon_sym_DOT_DOT] = ACTIONS(5947), + [anon_sym_LT_EQ] = ACTIONS(5947), + [anon_sym_GT_EQ] = ACTIONS(5947), + [anon_sym_and] = ACTIONS(5947), + [anon_sym_or] = ACTIONS(5949), + [anon_sym_EQ_EQ] = ACTIONS(5947), + [anon_sym_BANG_EQ] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [anon_sym_AMP] = ACTIONS(5949), + [sym_op_bitwise_or] = ACTIONS(5949), + [anon_sym_CARET] = ACTIONS(5947), + [sym_op_left_shift] = ACTIONS(5947), + [sym_op_right_shift] = ACTIONS(5949), + [sym_op_unsigned_right_shift] = ACTIONS(5947), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [sym_op_divide] = ACTIONS(5949), + [sym_op_modulo] = ACTIONS(5947), + [sym_op_coalescing] = ACTIONS(5947), + [anon_sym_BANG] = ACTIONS(5949), + [anon_sym_PLUS_PLUS] = ACTIONS(5947), + [anon_sym_DASH_DASH] = ACTIONS(5947), + [anon_sym_from] = ACTIONS(5947), + [anon_sym_into] = ACTIONS(5947), + [anon_sym_join] = ACTIONS(5947), + [anon_sym_let] = ACTIONS(5947), + [anon_sym_orderby] = ACTIONS(5947), + [anon_sym_ascending] = ACTIONS(5947), + [anon_sym_descending] = ACTIONS(5947), + [anon_sym_group] = ACTIONS(5947), + [anon_sym_select] = ACTIONS(5947), + [anon_sym_as] = ACTIONS(5949), + [anon_sym_is] = ACTIONS(5947), + [anon_sym_DASH_GT] = ACTIONS(5947), + [anon_sym_with] = ACTIONS(5947), + [sym_grit_metavariable] = ACTIONS(5947), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -650676,53 +642130,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5168), [sym_preproc_define] = STATE(5168), [sym_preproc_undef] = STATE(5168), - [anon_sym_LBRACK] = ACTIONS(6081), - [anon_sym_COMMA] = ACTIONS(6081), - [anon_sym_LPAREN] = ACTIONS(6081), - [anon_sym_LT] = ACTIONS(6083), - [anon_sym_GT] = ACTIONS(6083), - [anon_sym_where] = ACTIONS(6081), - [anon_sym_QMARK] = ACTIONS(6083), - [anon_sym_BANG] = ACTIONS(6083), - [anon_sym_PLUS_PLUS] = ACTIONS(6081), - [anon_sym_DASH_DASH] = ACTIONS(6081), - [anon_sym_PLUS] = ACTIONS(6083), - [anon_sym_DASH] = ACTIONS(6083), - [anon_sym_STAR] = ACTIONS(6081), - [anon_sym_SLASH] = ACTIONS(6083), - [anon_sym_PERCENT] = ACTIONS(6081), - [anon_sym_CARET] = ACTIONS(6081), - [anon_sym_PIPE] = ACTIONS(6083), - [anon_sym_AMP] = ACTIONS(6083), - [anon_sym_LT_LT] = ACTIONS(6081), - [anon_sym_GT_GT] = ACTIONS(6083), - [anon_sym_GT_GT_GT] = ACTIONS(6081), - [anon_sym_EQ_EQ] = ACTIONS(6081), - [anon_sym_BANG_EQ] = ACTIONS(6081), - [anon_sym_GT_EQ] = ACTIONS(6081), - [anon_sym_LT_EQ] = ACTIONS(6081), - [anon_sym_DOT] = ACTIONS(6083), - [anon_sym_switch] = ACTIONS(6081), - [anon_sym_DOT_DOT] = ACTIONS(6081), - [anon_sym_and] = ACTIONS(6081), - [anon_sym_or] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(6081), - [anon_sym_PIPE_PIPE] = ACTIONS(6081), - [sym_op_coalescing] = ACTIONS(6081), - [anon_sym_from] = ACTIONS(6081), - [anon_sym_into] = ACTIONS(6081), - [anon_sym_join] = ACTIONS(6081), - [anon_sym_let] = ACTIONS(6081), - [anon_sym_orderby] = ACTIONS(6081), - [anon_sym_ascending] = ACTIONS(6081), - [anon_sym_descending] = ACTIONS(6081), - [anon_sym_group] = ACTIONS(6081), - [anon_sym_select] = ACTIONS(6081), - [anon_sym_as] = ACTIONS(6083), - [anon_sym_is] = ACTIONS(6081), - [anon_sym_DASH_GT] = ACTIONS(6081), - [anon_sym_with] = ACTIONS(6081), - [sym_grit_metavariable] = ACTIONS(6081), + [anon_sym_LBRACK] = ACTIONS(6881), + [anon_sym_COMMA] = ACTIONS(6881), + [anon_sym_LPAREN] = ACTIONS(6881), + [anon_sym_LT] = ACTIONS(6883), + [anon_sym_GT] = ACTIONS(6883), + [anon_sym_where] = ACTIONS(6881), + [anon_sym_QMARK] = ACTIONS(6883), + [anon_sym_DOT] = ACTIONS(6883), + [anon_sym_STAR] = ACTIONS(6881), + [anon_sym_switch] = ACTIONS(6881), + [anon_sym_DOT_DOT] = ACTIONS(6881), + [anon_sym_LT_EQ] = ACTIONS(6881), + [anon_sym_GT_EQ] = ACTIONS(6881), + [anon_sym_and] = ACTIONS(6881), + [anon_sym_or] = ACTIONS(6883), + [anon_sym_EQ_EQ] = ACTIONS(6881), + [anon_sym_BANG_EQ] = ACTIONS(6881), + [anon_sym_AMP_AMP] = ACTIONS(6881), + [anon_sym_PIPE_PIPE] = ACTIONS(6881), + [anon_sym_AMP] = ACTIONS(6883), + [sym_op_bitwise_or] = ACTIONS(6883), + [anon_sym_CARET] = ACTIONS(6881), + [sym_op_left_shift] = ACTIONS(6881), + [sym_op_right_shift] = ACTIONS(6883), + [sym_op_unsigned_right_shift] = ACTIONS(6881), + [anon_sym_PLUS] = ACTIONS(6883), + [anon_sym_DASH] = ACTIONS(6883), + [sym_op_divide] = ACTIONS(6883), + [sym_op_modulo] = ACTIONS(6881), + [sym_op_coalescing] = ACTIONS(6881), + [anon_sym_BANG] = ACTIONS(6883), + [anon_sym_PLUS_PLUS] = ACTIONS(6881), + [anon_sym_DASH_DASH] = ACTIONS(6881), + [anon_sym_from] = ACTIONS(6881), + [anon_sym_into] = ACTIONS(6881), + [anon_sym_join] = ACTIONS(6881), + [anon_sym_let] = ACTIONS(6881), + [anon_sym_orderby] = ACTIONS(6881), + [anon_sym_ascending] = ACTIONS(6881), + [anon_sym_descending] = ACTIONS(6881), + [anon_sym_group] = ACTIONS(6881), + [anon_sym_select] = ACTIONS(6881), + [anon_sym_as] = ACTIONS(6883), + [anon_sym_is] = ACTIONS(6881), + [anon_sym_DASH_GT] = ACTIONS(6881), + [anon_sym_with] = ACTIONS(6881), + [sym_grit_metavariable] = ACTIONS(6881), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -650735,24 +642189,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5169] = { - [sym__name] = STATE(2457), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_type] = STATE(2425), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_identifier] = STATE(2392), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(5169), [sym_preproc_endregion] = STATE(5169), [sym_preproc_line] = STATE(5169), @@ -650762,35 +642198,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5169), [sym_preproc_define] = STATE(5169), [sym_preproc_undef] = STATE(5169), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(7520), - [anon_sym_ref] = ACTIONS(3886), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(3119), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_where] = ACTIONS(4450), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_scoped] = ACTIONS(7522), - [anon_sym_var] = ACTIONS(7270), - [sym_predefined_type] = ACTIONS(7272), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_from] = ACTIONS(4450), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4450), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4450), - [anon_sym_orderby] = ACTIONS(4450), - [anon_sym_ascending] = ACTIONS(4450), - [anon_sym_descending] = ACTIONS(4450), - [anon_sym_group] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [sym_grit_metavariable] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5943), + [anon_sym_COMMA] = ACTIONS(5943), + [anon_sym_LPAREN] = ACTIONS(5943), + [anon_sym_LT] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5945), + [anon_sym_where] = ACTIONS(5943), + [anon_sym_QMARK] = ACTIONS(5945), + [anon_sym_DOT] = ACTIONS(5945), + [anon_sym_STAR] = ACTIONS(5943), + [anon_sym_switch] = ACTIONS(5943), + [anon_sym_DOT_DOT] = ACTIONS(5943), + [anon_sym_LT_EQ] = ACTIONS(5943), + [anon_sym_GT_EQ] = ACTIONS(5943), + [anon_sym_and] = ACTIONS(5943), + [anon_sym_or] = ACTIONS(5945), + [anon_sym_EQ_EQ] = ACTIONS(5943), + [anon_sym_BANG_EQ] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5945), + [sym_op_bitwise_or] = ACTIONS(5945), + [anon_sym_CARET] = ACTIONS(5943), + [sym_op_left_shift] = ACTIONS(5943), + [sym_op_right_shift] = ACTIONS(5945), + [sym_op_unsigned_right_shift] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5945), + [anon_sym_DASH] = ACTIONS(5945), + [sym_op_divide] = ACTIONS(5945), + [sym_op_modulo] = ACTIONS(5943), + [sym_op_coalescing] = ACTIONS(5943), + [anon_sym_BANG] = ACTIONS(5945), + [anon_sym_PLUS_PLUS] = ACTIONS(5943), + [anon_sym_DASH_DASH] = ACTIONS(5943), + [anon_sym_from] = ACTIONS(5943), + [anon_sym_into] = ACTIONS(5943), + [anon_sym_join] = ACTIONS(5943), + [anon_sym_let] = ACTIONS(5943), + [anon_sym_orderby] = ACTIONS(5943), + [anon_sym_ascending] = ACTIONS(5943), + [anon_sym_descending] = ACTIONS(5943), + [anon_sym_group] = ACTIONS(5943), + [anon_sym_select] = ACTIONS(5943), + [anon_sym_as] = ACTIONS(5945), + [anon_sym_is] = ACTIONS(5943), + [anon_sym_DASH_GT] = ACTIONS(5943), + [anon_sym_with] = ACTIONS(5943), + [sym_grit_metavariable] = ACTIONS(5943), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -650803,25 +642257,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5170] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6355), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7378), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4062), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5170), [sym_preproc_endregion] = STATE(5170), [sym_preproc_line] = STATE(5170), @@ -650831,34 +642284,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5170), [sym_preproc_define] = STATE(5170), [sym_preproc_undef] = STATE(5170), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3900), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7298), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4117), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_readonly] = ACTIONS(7990), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7718), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -650871,24 +642325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5171] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5171), [sym_preproc_endregion] = STATE(5171), [sym_preproc_line] = STATE(5171), @@ -650898,35 +642334,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5171), [sym_preproc_define] = STATE(5171), [sym_preproc_undef] = STATE(5171), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3938), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(3105), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7524), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(6855), + [anon_sym_COMMA] = ACTIONS(6855), + [anon_sym_LPAREN] = ACTIONS(6855), + [anon_sym_LT] = ACTIONS(6857), + [anon_sym_GT] = ACTIONS(6857), + [anon_sym_where] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(6857), + [anon_sym_DOT] = ACTIONS(6857), + [anon_sym_STAR] = ACTIONS(6855), + [anon_sym_switch] = ACTIONS(6855), + [anon_sym_DOT_DOT] = ACTIONS(6855), + [anon_sym_LT_EQ] = ACTIONS(6855), + [anon_sym_GT_EQ] = ACTIONS(6855), + [anon_sym_and] = ACTIONS(6855), + [anon_sym_or] = ACTIONS(6857), + [anon_sym_EQ_EQ] = ACTIONS(6855), + [anon_sym_BANG_EQ] = ACTIONS(6855), + [anon_sym_AMP_AMP] = ACTIONS(6855), + [anon_sym_PIPE_PIPE] = ACTIONS(6855), + [anon_sym_AMP] = ACTIONS(6857), + [sym_op_bitwise_or] = ACTIONS(6857), + [anon_sym_CARET] = ACTIONS(6855), + [sym_op_left_shift] = ACTIONS(6855), + [sym_op_right_shift] = ACTIONS(6857), + [sym_op_unsigned_right_shift] = ACTIONS(6855), + [anon_sym_PLUS] = ACTIONS(6857), + [anon_sym_DASH] = ACTIONS(6857), + [sym_op_divide] = ACTIONS(6857), + [sym_op_modulo] = ACTIONS(6855), + [sym_op_coalescing] = ACTIONS(6855), + [anon_sym_BANG] = ACTIONS(6857), + [anon_sym_PLUS_PLUS] = ACTIONS(6855), + [anon_sym_DASH_DASH] = ACTIONS(6855), + [anon_sym_from] = ACTIONS(6855), + [anon_sym_into] = ACTIONS(6855), + [anon_sym_join] = ACTIONS(6855), + [anon_sym_let] = ACTIONS(6855), + [anon_sym_orderby] = ACTIONS(6855), + [anon_sym_ascending] = ACTIONS(6855), + [anon_sym_descending] = ACTIONS(6855), + [anon_sym_group] = ACTIONS(6855), + [anon_sym_select] = ACTIONS(6855), + [anon_sym_as] = ACTIONS(6857), + [anon_sym_is] = ACTIONS(6855), + [anon_sym_DASH_GT] = ACTIONS(6855), + [anon_sym_with] = ACTIONS(6855), + [sym_grit_metavariable] = ACTIONS(6855), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -650939,24 +642393,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5172] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6433), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5172), [sym_preproc_endregion] = STATE(5172), [sym_preproc_line] = STATE(5172), @@ -650966,35 +642402,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5172), [sym_preproc_define] = STATE(5172), [sym_preproc_undef] = STATE(5172), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(7202), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(6855), + [anon_sym_COMMA] = ACTIONS(6855), + [anon_sym_LPAREN] = ACTIONS(6855), + [anon_sym_LT] = ACTIONS(6857), + [anon_sym_GT] = ACTIONS(6857), + [anon_sym_where] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(6857), + [anon_sym_DOT] = ACTIONS(6857), + [anon_sym_STAR] = ACTIONS(6855), + [anon_sym_switch] = ACTIONS(6855), + [anon_sym_DOT_DOT] = ACTIONS(6855), + [anon_sym_LT_EQ] = ACTIONS(6855), + [anon_sym_GT_EQ] = ACTIONS(6855), + [anon_sym_and] = ACTIONS(6855), + [anon_sym_or] = ACTIONS(6857), + [anon_sym_EQ_EQ] = ACTIONS(6855), + [anon_sym_BANG_EQ] = ACTIONS(6855), + [anon_sym_AMP_AMP] = ACTIONS(6855), + [anon_sym_PIPE_PIPE] = ACTIONS(6855), + [anon_sym_AMP] = ACTIONS(6857), + [sym_op_bitwise_or] = ACTIONS(6857), + [anon_sym_CARET] = ACTIONS(6855), + [sym_op_left_shift] = ACTIONS(6855), + [sym_op_right_shift] = ACTIONS(6857), + [sym_op_unsigned_right_shift] = ACTIONS(6855), + [anon_sym_PLUS] = ACTIONS(6857), + [anon_sym_DASH] = ACTIONS(6857), + [sym_op_divide] = ACTIONS(6857), + [sym_op_modulo] = ACTIONS(6855), + [sym_op_coalescing] = ACTIONS(6855), + [anon_sym_BANG] = ACTIONS(6857), + [anon_sym_PLUS_PLUS] = ACTIONS(6855), + [anon_sym_DASH_DASH] = ACTIONS(6855), + [anon_sym_from] = ACTIONS(6855), + [anon_sym_into] = ACTIONS(6855), + [anon_sym_join] = ACTIONS(6855), + [anon_sym_let] = ACTIONS(6855), + [anon_sym_orderby] = ACTIONS(6855), + [anon_sym_ascending] = ACTIONS(6855), + [anon_sym_descending] = ACTIONS(6855), + [anon_sym_group] = ACTIONS(6855), + [anon_sym_select] = ACTIONS(6855), + [anon_sym_as] = ACTIONS(6857), + [anon_sym_is] = ACTIONS(6855), + [anon_sym_DASH_GT] = ACTIONS(6855), + [anon_sym_with] = ACTIONS(6855), + [sym_grit_metavariable] = ACTIONS(6855), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651016,53 +642470,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5173), [sym_preproc_define] = STATE(5173), [sym_preproc_undef] = STATE(5173), - [sym__identifier_token] = ACTIONS(7360), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(7360), - [anon_sym_global] = ACTIONS(7360), - [anon_sym_unsafe] = ACTIONS(7360), - [anon_sym_static] = ACTIONS(7360), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(7360), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(7360), - [anon_sym_notnull] = ACTIONS(7360), - [anon_sym_unmanaged] = ACTIONS(7360), - [anon_sym_scoped] = ACTIONS(7360), - [anon_sym_var] = ACTIONS(7360), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(7360), - [anon_sym_when] = ACTIONS(7360), - [anon_sym_from] = ACTIONS(7360), - [anon_sym_into] = ACTIONS(7360), - [anon_sym_join] = ACTIONS(7360), - [anon_sym_on] = ACTIONS(7360), - [anon_sym_equals] = ACTIONS(7360), - [anon_sym_let] = ACTIONS(7360), - [anon_sym_orderby] = ACTIONS(7360), - [anon_sym_ascending] = ACTIONS(7360), - [anon_sym_descending] = ACTIONS(7360), - [anon_sym_group] = ACTIONS(7360), - [anon_sym_by] = ACTIONS(7360), - [anon_sym_select] = ACTIONS(7360), - [sym_grit_metavariable] = ACTIONS(7528), + [anon_sym_LBRACK] = ACTIONS(6757), + [anon_sym_COMMA] = ACTIONS(6757), + [anon_sym_LPAREN] = ACTIONS(6757), + [anon_sym_LT] = ACTIONS(6759), + [anon_sym_GT] = ACTIONS(6759), + [anon_sym_where] = ACTIONS(6757), + [anon_sym_QMARK] = ACTIONS(6759), + [anon_sym_DOT] = ACTIONS(6759), + [anon_sym_STAR] = ACTIONS(6757), + [anon_sym_switch] = ACTIONS(6757), + [anon_sym_DOT_DOT] = ACTIONS(6757), + [anon_sym_LT_EQ] = ACTIONS(6757), + [anon_sym_GT_EQ] = ACTIONS(6757), + [anon_sym_and] = ACTIONS(6757), + [anon_sym_or] = ACTIONS(6759), + [anon_sym_EQ_EQ] = ACTIONS(6757), + [anon_sym_BANG_EQ] = ACTIONS(6757), + [anon_sym_AMP_AMP] = ACTIONS(6757), + [anon_sym_PIPE_PIPE] = ACTIONS(6757), + [anon_sym_AMP] = ACTIONS(6759), + [sym_op_bitwise_or] = ACTIONS(6759), + [anon_sym_CARET] = ACTIONS(6757), + [sym_op_left_shift] = ACTIONS(6757), + [sym_op_right_shift] = ACTIONS(6759), + [sym_op_unsigned_right_shift] = ACTIONS(6757), + [anon_sym_PLUS] = ACTIONS(6759), + [anon_sym_DASH] = ACTIONS(6759), + [sym_op_divide] = ACTIONS(6759), + [sym_op_modulo] = ACTIONS(6757), + [sym_op_coalescing] = ACTIONS(6757), + [anon_sym_BANG] = ACTIONS(6759), + [anon_sym_PLUS_PLUS] = ACTIONS(6757), + [anon_sym_DASH_DASH] = ACTIONS(6757), + [anon_sym_from] = ACTIONS(6757), + [anon_sym_into] = ACTIONS(6757), + [anon_sym_join] = ACTIONS(6757), + [anon_sym_let] = ACTIONS(6757), + [anon_sym_orderby] = ACTIONS(6757), + [anon_sym_ascending] = ACTIONS(6757), + [anon_sym_descending] = ACTIONS(6757), + [anon_sym_group] = ACTIONS(6757), + [anon_sym_select] = ACTIONS(6757), + [anon_sym_as] = ACTIONS(6759), + [anon_sym_is] = ACTIONS(6757), + [anon_sym_DASH_GT] = ACTIONS(6757), + [anon_sym_with] = ACTIONS(6757), + [sym_grit_metavariable] = ACTIONS(6757), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651084,53 +642538,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5174), [sym_preproc_define] = STATE(5174), [sym_preproc_undef] = STATE(5174), - [anon_sym_EQ] = ACTIONS(7531), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_in] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7533), - [anon_sym_DASH_EQ] = ACTIONS(7533), - [anon_sym_STAR_EQ] = ACTIONS(7533), - [anon_sym_SLASH_EQ] = ACTIONS(7533), - [anon_sym_PERCENT_EQ] = ACTIONS(7533), - [anon_sym_AMP_EQ] = ACTIONS(7533), - [anon_sym_CARET_EQ] = ACTIONS(7533), - [anon_sym_PIPE_EQ] = ACTIONS(7533), - [anon_sym_LT_LT_EQ] = ACTIONS(7533), - [anon_sym_GT_GT_EQ] = ACTIONS(7533), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7533), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7533), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5939), + [anon_sym_COMMA] = ACTIONS(5939), + [anon_sym_LPAREN] = ACTIONS(5939), + [anon_sym_LT] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5941), + [anon_sym_where] = ACTIONS(5939), + [anon_sym_QMARK] = ACTIONS(5941), + [anon_sym_DOT] = ACTIONS(5941), + [anon_sym_STAR] = ACTIONS(5939), + [anon_sym_switch] = ACTIONS(5939), + [anon_sym_DOT_DOT] = ACTIONS(5939), + [anon_sym_LT_EQ] = ACTIONS(5939), + [anon_sym_GT_EQ] = ACTIONS(5939), + [anon_sym_and] = ACTIONS(5939), + [anon_sym_or] = ACTIONS(5941), + [anon_sym_EQ_EQ] = ACTIONS(5939), + [anon_sym_BANG_EQ] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5941), + [sym_op_bitwise_or] = ACTIONS(5941), + [anon_sym_CARET] = ACTIONS(5939), + [sym_op_left_shift] = ACTIONS(5939), + [sym_op_right_shift] = ACTIONS(5941), + [sym_op_unsigned_right_shift] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5941), + [sym_op_divide] = ACTIONS(5941), + [sym_op_modulo] = ACTIONS(5939), + [sym_op_coalescing] = ACTIONS(5939), + [anon_sym_BANG] = ACTIONS(5941), + [anon_sym_PLUS_PLUS] = ACTIONS(5939), + [anon_sym_DASH_DASH] = ACTIONS(5939), + [anon_sym_from] = ACTIONS(5939), + [anon_sym_into] = ACTIONS(5939), + [anon_sym_join] = ACTIONS(5939), + [anon_sym_let] = ACTIONS(5939), + [anon_sym_orderby] = ACTIONS(5939), + [anon_sym_ascending] = ACTIONS(5939), + [anon_sym_descending] = ACTIONS(5939), + [anon_sym_group] = ACTIONS(5939), + [anon_sym_select] = ACTIONS(5939), + [anon_sym_as] = ACTIONS(5941), + [anon_sym_is] = ACTIONS(5939), + [anon_sym_DASH_GT] = ACTIONS(5939), + [anon_sym_with] = ACTIONS(5939), + [sym_grit_metavariable] = ACTIONS(5939), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651143,25 +642597,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5175] = { - [sym_variable_declaration] = STATE(8079), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6012), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5175), [sym_preproc_endregion] = STATE(5175), [sym_preproc_line] = STATE(5175), @@ -651171,34 +642606,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5175), [sym_preproc_define] = STATE(5175), [sym_preproc_undef] = STATE(5175), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5935), + [anon_sym_COMMA] = ACTIONS(5935), + [anon_sym_LPAREN] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5937), + [anon_sym_GT] = ACTIONS(5937), + [anon_sym_where] = ACTIONS(5935), + [anon_sym_QMARK] = ACTIONS(5937), + [anon_sym_DOT] = ACTIONS(5937), + [anon_sym_STAR] = ACTIONS(5935), + [anon_sym_switch] = ACTIONS(5935), + [anon_sym_DOT_DOT] = ACTIONS(5935), + [anon_sym_LT_EQ] = ACTIONS(5935), + [anon_sym_GT_EQ] = ACTIONS(5935), + [anon_sym_and] = ACTIONS(5935), + [anon_sym_or] = ACTIONS(5937), + [anon_sym_EQ_EQ] = ACTIONS(5935), + [anon_sym_BANG_EQ] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5937), + [sym_op_bitwise_or] = ACTIONS(5937), + [anon_sym_CARET] = ACTIONS(5935), + [sym_op_left_shift] = ACTIONS(5935), + [sym_op_right_shift] = ACTIONS(5937), + [sym_op_unsigned_right_shift] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [sym_op_divide] = ACTIONS(5937), + [sym_op_modulo] = ACTIONS(5935), + [sym_op_coalescing] = ACTIONS(5935), + [anon_sym_BANG] = ACTIONS(5937), + [anon_sym_PLUS_PLUS] = ACTIONS(5935), + [anon_sym_DASH_DASH] = ACTIONS(5935), + [anon_sym_from] = ACTIONS(5935), + [anon_sym_into] = ACTIONS(5935), + [anon_sym_join] = ACTIONS(5935), + [anon_sym_let] = ACTIONS(5935), + [anon_sym_orderby] = ACTIONS(5935), + [anon_sym_ascending] = ACTIONS(5935), + [anon_sym_descending] = ACTIONS(5935), + [anon_sym_group] = ACTIONS(5935), + [anon_sym_select] = ACTIONS(5935), + [anon_sym_as] = ACTIONS(5937), + [anon_sym_is] = ACTIONS(5935), + [anon_sym_DASH_GT] = ACTIONS(5935), + [anon_sym_with] = ACTIONS(5935), + [sym_grit_metavariable] = ACTIONS(5935), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651211,24 +642665,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5176] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5176), [sym_preproc_endregion] = STATE(5176), [sym_preproc_line] = STATE(5176), @@ -651238,35 +642674,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5176), [sym_preproc_define] = STATE(5176), [sym_preproc_undef] = STATE(5176), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(2997), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(7646), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(7646), + [anon_sym_global] = ACTIONS(7646), + [anon_sym_unsafe] = ACTIONS(7646), + [anon_sym_static] = ACTIONS(7646), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(7646), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(7646), + [anon_sym_notnull] = ACTIONS(7646), + [anon_sym_unmanaged] = ACTIONS(7646), + [anon_sym_scoped] = ACTIONS(7646), + [anon_sym_var] = ACTIONS(7646), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(7646), + [anon_sym_when] = ACTIONS(7646), + [anon_sym_from] = ACTIONS(7646), + [anon_sym_into] = ACTIONS(7646), + [anon_sym_join] = ACTIONS(7646), + [anon_sym_on] = ACTIONS(7646), + [anon_sym_equals] = ACTIONS(7646), + [anon_sym_let] = ACTIONS(7646), + [anon_sym_orderby] = ACTIONS(7646), + [anon_sym_ascending] = ACTIONS(7646), + [anon_sym_descending] = ACTIONS(7646), + [anon_sym_group] = ACTIONS(7646), + [anon_sym_by] = ACTIONS(7646), + [anon_sym_select] = ACTIONS(7646), + [sym_grit_metavariable] = ACTIONS(7992), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651288,53 +642742,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5177), [sym_preproc_define] = STATE(5177), [sym_preproc_undef] = STATE(5177), - [anon_sym_LBRACK] = ACTIONS(6341), - [anon_sym_COMMA] = ACTIONS(6341), - [anon_sym_LPAREN] = ACTIONS(6341), - [anon_sym_LT] = ACTIONS(6343), - [anon_sym_GT] = ACTIONS(6343), - [anon_sym_where] = ACTIONS(6341), - [anon_sym_QMARK] = ACTIONS(6343), - [anon_sym_BANG] = ACTIONS(6343), - [anon_sym_PLUS_PLUS] = ACTIONS(6341), - [anon_sym_DASH_DASH] = ACTIONS(6341), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6341), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_PERCENT] = ACTIONS(6341), - [anon_sym_CARET] = ACTIONS(6341), - [anon_sym_PIPE] = ACTIONS(6343), - [anon_sym_AMP] = ACTIONS(6343), - [anon_sym_LT_LT] = ACTIONS(6341), - [anon_sym_GT_GT] = ACTIONS(6343), - [anon_sym_GT_GT_GT] = ACTIONS(6341), - [anon_sym_EQ_EQ] = ACTIONS(6341), - [anon_sym_BANG_EQ] = ACTIONS(6341), - [anon_sym_GT_EQ] = ACTIONS(6341), - [anon_sym_LT_EQ] = ACTIONS(6341), - [anon_sym_DOT] = ACTIONS(6343), - [anon_sym_switch] = ACTIONS(6341), - [anon_sym_DOT_DOT] = ACTIONS(6341), - [anon_sym_and] = ACTIONS(6341), - [anon_sym_or] = ACTIONS(6343), - [anon_sym_AMP_AMP] = ACTIONS(6341), - [anon_sym_PIPE_PIPE] = ACTIONS(6341), - [sym_op_coalescing] = ACTIONS(6341), - [anon_sym_from] = ACTIONS(6341), - [anon_sym_into] = ACTIONS(6341), - [anon_sym_join] = ACTIONS(6341), - [anon_sym_let] = ACTIONS(6341), - [anon_sym_orderby] = ACTIONS(6341), - [anon_sym_ascending] = ACTIONS(6341), - [anon_sym_descending] = ACTIONS(6341), - [anon_sym_group] = ACTIONS(6341), - [anon_sym_select] = ACTIONS(6341), - [anon_sym_as] = ACTIONS(6343), - [anon_sym_is] = ACTIONS(6341), - [anon_sym_DASH_GT] = ACTIONS(6341), - [anon_sym_with] = ACTIONS(6341), - [sym_grit_metavariable] = ACTIONS(6341), + [anon_sym_LBRACK] = ACTIONS(5931), + [anon_sym_COMMA] = ACTIONS(5931), + [anon_sym_LPAREN] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5933), + [anon_sym_where] = ACTIONS(5931), + [anon_sym_QMARK] = ACTIONS(5933), + [anon_sym_DOT] = ACTIONS(5933), + [anon_sym_STAR] = ACTIONS(5931), + [anon_sym_switch] = ACTIONS(5931), + [anon_sym_DOT_DOT] = ACTIONS(5931), + [anon_sym_LT_EQ] = ACTIONS(5931), + [anon_sym_GT_EQ] = ACTIONS(5931), + [anon_sym_and] = ACTIONS(5931), + [anon_sym_or] = ACTIONS(5933), + [anon_sym_EQ_EQ] = ACTIONS(5931), + [anon_sym_BANG_EQ] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5933), + [sym_op_bitwise_or] = ACTIONS(5933), + [anon_sym_CARET] = ACTIONS(5931), + [sym_op_left_shift] = ACTIONS(5931), + [sym_op_right_shift] = ACTIONS(5933), + [sym_op_unsigned_right_shift] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5933), + [sym_op_divide] = ACTIONS(5933), + [sym_op_modulo] = ACTIONS(5931), + [sym_op_coalescing] = ACTIONS(5931), + [anon_sym_BANG] = ACTIONS(5933), + [anon_sym_PLUS_PLUS] = ACTIONS(5931), + [anon_sym_DASH_DASH] = ACTIONS(5931), + [anon_sym_from] = ACTIONS(5931), + [anon_sym_into] = ACTIONS(5931), + [anon_sym_join] = ACTIONS(5931), + [anon_sym_let] = ACTIONS(5931), + [anon_sym_orderby] = ACTIONS(5931), + [anon_sym_ascending] = ACTIONS(5931), + [anon_sym_descending] = ACTIONS(5931), + [anon_sym_group] = ACTIONS(5931), + [anon_sym_select] = ACTIONS(5931), + [anon_sym_as] = ACTIONS(5933), + [anon_sym_is] = ACTIONS(5931), + [anon_sym_DASH_GT] = ACTIONS(5931), + [anon_sym_with] = ACTIONS(5931), + [sym_grit_metavariable] = ACTIONS(5931), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651356,53 +642810,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5178), [sym_preproc_define] = STATE(5178), [sym_preproc_undef] = STATE(5178), - [anon_sym_EQ] = ACTIONS(7535), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_EQ_GT] = ACTIONS(5684), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7537), - [anon_sym_DASH_EQ] = ACTIONS(7537), - [anon_sym_STAR_EQ] = ACTIONS(7537), - [anon_sym_SLASH_EQ] = ACTIONS(7537), - [anon_sym_PERCENT_EQ] = ACTIONS(7537), - [anon_sym_AMP_EQ] = ACTIONS(7537), - [anon_sym_CARET_EQ] = ACTIONS(7537), - [anon_sym_PIPE_EQ] = ACTIONS(7537), - [anon_sym_LT_LT_EQ] = ACTIONS(7537), - [anon_sym_GT_GT_EQ] = ACTIONS(7537), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7537), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7537), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5771), + [anon_sym_COMMA] = ACTIONS(5771), + [anon_sym_LPAREN] = ACTIONS(5771), + [anon_sym_LT] = ACTIONS(5773), + [anon_sym_GT] = ACTIONS(5773), + [anon_sym_where] = ACTIONS(5771), + [anon_sym_QMARK] = ACTIONS(5773), + [anon_sym_DOT] = ACTIONS(5773), + [anon_sym_STAR] = ACTIONS(5771), + [anon_sym_switch] = ACTIONS(5771), + [anon_sym_DOT_DOT] = ACTIONS(5771), + [anon_sym_LT_EQ] = ACTIONS(5771), + [anon_sym_GT_EQ] = ACTIONS(5771), + [anon_sym_and] = ACTIONS(5771), + [anon_sym_or] = ACTIONS(5773), + [anon_sym_EQ_EQ] = ACTIONS(5771), + [anon_sym_BANG_EQ] = ACTIONS(5771), + [anon_sym_AMP_AMP] = ACTIONS(5771), + [anon_sym_PIPE_PIPE] = ACTIONS(5771), + [anon_sym_AMP] = ACTIONS(5773), + [sym_op_bitwise_or] = ACTIONS(5773), + [anon_sym_CARET] = ACTIONS(5771), + [sym_op_left_shift] = ACTIONS(5771), + [sym_op_right_shift] = ACTIONS(5773), + [sym_op_unsigned_right_shift] = ACTIONS(5771), + [anon_sym_PLUS] = ACTIONS(5773), + [anon_sym_DASH] = ACTIONS(5773), + [sym_op_divide] = ACTIONS(5773), + [sym_op_modulo] = ACTIONS(5771), + [sym_op_coalescing] = ACTIONS(5771), + [anon_sym_BANG] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5771), + [anon_sym_DASH_DASH] = ACTIONS(5771), + [anon_sym_from] = ACTIONS(5771), + [anon_sym_into] = ACTIONS(5771), + [anon_sym_join] = ACTIONS(5771), + [anon_sym_let] = ACTIONS(5771), + [anon_sym_orderby] = ACTIONS(5771), + [anon_sym_ascending] = ACTIONS(5771), + [anon_sym_descending] = ACTIONS(5771), + [anon_sym_group] = ACTIONS(5771), + [anon_sym_select] = ACTIONS(5771), + [anon_sym_as] = ACTIONS(5773), + [anon_sym_is] = ACTIONS(5771), + [anon_sym_DASH_GT] = ACTIONS(5771), + [anon_sym_with] = ACTIONS(5771), + [sym_grit_metavariable] = ACTIONS(5771), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651415,24 +642869,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5179] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(3789), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(5179), [sym_preproc_endregion] = STATE(5179), [sym_preproc_line] = STATE(5179), @@ -651442,35 +642878,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5179), [sym_preproc_define] = STATE(5179), [sym_preproc_undef] = STATE(5179), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4604), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_readonly] = ACTIONS(7541), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7380), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(6007), + [anon_sym_COMMA] = ACTIONS(6007), + [anon_sym_LPAREN] = ACTIONS(6007), + [anon_sym_LT] = ACTIONS(6009), + [anon_sym_GT] = ACTIONS(6009), + [anon_sym_where] = ACTIONS(6007), + [anon_sym_QMARK] = ACTIONS(6009), + [anon_sym_DOT] = ACTIONS(6009), + [anon_sym_STAR] = ACTIONS(6007), + [anon_sym_switch] = ACTIONS(6007), + [anon_sym_DOT_DOT] = ACTIONS(6007), + [anon_sym_LT_EQ] = ACTIONS(6007), + [anon_sym_GT_EQ] = ACTIONS(6007), + [anon_sym_and] = ACTIONS(6007), + [anon_sym_or] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6007), + [anon_sym_BANG_EQ] = ACTIONS(6007), + [anon_sym_AMP_AMP] = ACTIONS(6007), + [anon_sym_PIPE_PIPE] = ACTIONS(6007), + [anon_sym_AMP] = ACTIONS(6009), + [sym_op_bitwise_or] = ACTIONS(6009), + [anon_sym_CARET] = ACTIONS(6007), + [sym_op_left_shift] = ACTIONS(6007), + [sym_op_right_shift] = ACTIONS(6009), + [sym_op_unsigned_right_shift] = ACTIONS(6007), + [anon_sym_PLUS] = ACTIONS(6009), + [anon_sym_DASH] = ACTIONS(6009), + [sym_op_divide] = ACTIONS(6009), + [sym_op_modulo] = ACTIONS(6007), + [sym_op_coalescing] = ACTIONS(6007), + [anon_sym_BANG] = ACTIONS(6009), + [anon_sym_PLUS_PLUS] = ACTIONS(6007), + [anon_sym_DASH_DASH] = ACTIONS(6007), + [anon_sym_from] = ACTIONS(6007), + [anon_sym_into] = ACTIONS(6007), + [anon_sym_join] = ACTIONS(6007), + [anon_sym_let] = ACTIONS(6007), + [anon_sym_orderby] = ACTIONS(6007), + [anon_sym_ascending] = ACTIONS(6007), + [anon_sym_descending] = ACTIONS(6007), + [anon_sym_group] = ACTIONS(6007), + [anon_sym_select] = ACTIONS(6007), + [anon_sym_as] = ACTIONS(6009), + [anon_sym_is] = ACTIONS(6007), + [anon_sym_DASH_GT] = ACTIONS(6007), + [anon_sym_with] = ACTIONS(6007), + [sym_grit_metavariable] = ACTIONS(6007), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651483,24 +642937,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5180] = { - [sym__name] = STATE(6041), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5903), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5180), [sym_preproc_endregion] = STATE(5180), [sym_preproc_line] = STATE(5180), @@ -651510,35 +642946,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5180), [sym_preproc_define] = STATE(5180), [sym_preproc_undef] = STATE(5180), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3982), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(3109), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7543), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5857), + [anon_sym_COMMA] = ACTIONS(5857), + [anon_sym_LPAREN] = ACTIONS(5857), + [anon_sym_LT] = ACTIONS(5859), + [anon_sym_GT] = ACTIONS(5859), + [anon_sym_where] = ACTIONS(5857), + [anon_sym_QMARK] = ACTIONS(5859), + [anon_sym_DOT] = ACTIONS(5859), + [anon_sym_STAR] = ACTIONS(5857), + [anon_sym_switch] = ACTIONS(5857), + [anon_sym_DOT_DOT] = ACTIONS(5857), + [anon_sym_LT_EQ] = ACTIONS(5857), + [anon_sym_GT_EQ] = ACTIONS(5857), + [anon_sym_and] = ACTIONS(5857), + [anon_sym_or] = ACTIONS(5859), + [anon_sym_EQ_EQ] = ACTIONS(5857), + [anon_sym_BANG_EQ] = ACTIONS(5857), + [anon_sym_AMP_AMP] = ACTIONS(5857), + [anon_sym_PIPE_PIPE] = ACTIONS(5857), + [anon_sym_AMP] = ACTIONS(5859), + [sym_op_bitwise_or] = ACTIONS(5859), + [anon_sym_CARET] = ACTIONS(5857), + [sym_op_left_shift] = ACTIONS(5857), + [sym_op_right_shift] = ACTIONS(5859), + [sym_op_unsigned_right_shift] = ACTIONS(5857), + [anon_sym_PLUS] = ACTIONS(5859), + [anon_sym_DASH] = ACTIONS(5859), + [sym_op_divide] = ACTIONS(5859), + [sym_op_modulo] = ACTIONS(5857), + [sym_op_coalescing] = ACTIONS(5857), + [anon_sym_BANG] = ACTIONS(5859), + [anon_sym_PLUS_PLUS] = ACTIONS(5857), + [anon_sym_DASH_DASH] = ACTIONS(5857), + [anon_sym_from] = ACTIONS(5857), + [anon_sym_into] = ACTIONS(5857), + [anon_sym_join] = ACTIONS(5857), + [anon_sym_let] = ACTIONS(5857), + [anon_sym_orderby] = ACTIONS(5857), + [anon_sym_ascending] = ACTIONS(5857), + [anon_sym_descending] = ACTIONS(5857), + [anon_sym_group] = ACTIONS(5857), + [anon_sym_select] = ACTIONS(5857), + [anon_sym_as] = ACTIONS(5859), + [anon_sym_is] = ACTIONS(5857), + [anon_sym_DASH_GT] = ACTIONS(5857), + [anon_sym_with] = ACTIONS(5857), + [sym_grit_metavariable] = ACTIONS(5857), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651552,23 +643006,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5181] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5181), [sym_preproc_endregion] = STATE(5181), [sym_preproc_line] = STATE(5181), @@ -651582,15 +643036,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7545), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(7547), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7549), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -651606,7 +643060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651619,25 +643073,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5182] = { - [sym_variable_declaration] = STATE(8009), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6216), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5182), [sym_preproc_endregion] = STATE(5182), [sym_preproc_line] = STATE(5182), @@ -651651,14 +643104,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(3930), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(3105), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), + [anon_sym_scoped] = ACTIONS(7995), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -651674,7 +643128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651696,53 +643150,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5183), [sym_preproc_define] = STATE(5183), [sym_preproc_undef] = STATE(5183), - [anon_sym_LBRACK] = ACTIONS(6365), - [anon_sym_COMMA] = ACTIONS(6365), - [anon_sym_LPAREN] = ACTIONS(6365), - [anon_sym_LT] = ACTIONS(6367), - [anon_sym_GT] = ACTIONS(6367), - [anon_sym_where] = ACTIONS(6365), - [anon_sym_QMARK] = ACTIONS(6367), - [anon_sym_BANG] = ACTIONS(6367), - [anon_sym_PLUS_PLUS] = ACTIONS(6365), - [anon_sym_DASH_DASH] = ACTIONS(6365), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6365), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_PERCENT] = ACTIONS(6365), - [anon_sym_CARET] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6367), - [anon_sym_AMP] = ACTIONS(6367), - [anon_sym_LT_LT] = ACTIONS(6365), - [anon_sym_GT_GT] = ACTIONS(6367), - [anon_sym_GT_GT_GT] = ACTIONS(6365), - [anon_sym_EQ_EQ] = ACTIONS(6365), - [anon_sym_BANG_EQ] = ACTIONS(6365), - [anon_sym_GT_EQ] = ACTIONS(6365), - [anon_sym_LT_EQ] = ACTIONS(6365), - [anon_sym_DOT] = ACTIONS(6367), - [anon_sym_switch] = ACTIONS(6365), - [anon_sym_DOT_DOT] = ACTIONS(6365), - [anon_sym_and] = ACTIONS(6365), - [anon_sym_or] = ACTIONS(6367), - [anon_sym_AMP_AMP] = ACTIONS(6365), - [anon_sym_PIPE_PIPE] = ACTIONS(6365), - [sym_op_coalescing] = ACTIONS(6365), - [anon_sym_from] = ACTIONS(6365), - [anon_sym_into] = ACTIONS(6365), - [anon_sym_join] = ACTIONS(6365), - [anon_sym_let] = ACTIONS(6365), - [anon_sym_orderby] = ACTIONS(6365), - [anon_sym_ascending] = ACTIONS(6365), - [anon_sym_descending] = ACTIONS(6365), - [anon_sym_group] = ACTIONS(6365), - [anon_sym_select] = ACTIONS(6365), - [anon_sym_as] = ACTIONS(6367), - [anon_sym_is] = ACTIONS(6365), - [anon_sym_DASH_GT] = ACTIONS(6365), - [anon_sym_with] = ACTIONS(6365), - [sym_grit_metavariable] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(5927), + [anon_sym_COMMA] = ACTIONS(5927), + [anon_sym_LPAREN] = ACTIONS(5927), + [anon_sym_LT] = ACTIONS(5929), + [anon_sym_GT] = ACTIONS(5929), + [anon_sym_where] = ACTIONS(5927), + [anon_sym_QMARK] = ACTIONS(5929), + [anon_sym_DOT] = ACTIONS(5929), + [anon_sym_STAR] = ACTIONS(5927), + [anon_sym_switch] = ACTIONS(5927), + [anon_sym_DOT_DOT] = ACTIONS(5927), + [anon_sym_LT_EQ] = ACTIONS(5927), + [anon_sym_GT_EQ] = ACTIONS(5927), + [anon_sym_and] = ACTIONS(5927), + [anon_sym_or] = ACTIONS(5929), + [anon_sym_EQ_EQ] = ACTIONS(5927), + [anon_sym_BANG_EQ] = ACTIONS(5927), + [anon_sym_AMP_AMP] = ACTIONS(5927), + [anon_sym_PIPE_PIPE] = ACTIONS(5927), + [anon_sym_AMP] = ACTIONS(5929), + [sym_op_bitwise_or] = ACTIONS(5929), + [anon_sym_CARET] = ACTIONS(5927), + [sym_op_left_shift] = ACTIONS(5927), + [sym_op_right_shift] = ACTIONS(5929), + [sym_op_unsigned_right_shift] = ACTIONS(5927), + [anon_sym_PLUS] = ACTIONS(5929), + [anon_sym_DASH] = ACTIONS(5929), + [sym_op_divide] = ACTIONS(5929), + [sym_op_modulo] = ACTIONS(5927), + [sym_op_coalescing] = ACTIONS(5927), + [anon_sym_BANG] = ACTIONS(5929), + [anon_sym_PLUS_PLUS] = ACTIONS(5927), + [anon_sym_DASH_DASH] = ACTIONS(5927), + [anon_sym_from] = ACTIONS(5927), + [anon_sym_into] = ACTIONS(5927), + [anon_sym_join] = ACTIONS(5927), + [anon_sym_let] = ACTIONS(5927), + [anon_sym_orderby] = ACTIONS(5927), + [anon_sym_ascending] = ACTIONS(5927), + [anon_sym_descending] = ACTIONS(5927), + [anon_sym_group] = ACTIONS(5927), + [anon_sym_select] = ACTIONS(5927), + [anon_sym_as] = ACTIONS(5929), + [anon_sym_is] = ACTIONS(5927), + [anon_sym_DASH_GT] = ACTIONS(5927), + [anon_sym_with] = ACTIONS(5927), + [sym_grit_metavariable] = ACTIONS(5927), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651755,24 +643209,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5184] = { - [sym__name] = STATE(2772), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_type] = STATE(2425), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_identifier] = STATE(2640), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(5184), [sym_preproc_endregion] = STATE(5184), [sym_preproc_line] = STATE(5184), @@ -651782,35 +643218,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5184), [sym_preproc_define] = STATE(5184), [sym_preproc_undef] = STATE(5184), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(7520), - [anon_sym_ref] = ACTIONS(3902), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(3133), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_where] = ACTIONS(4450), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_scoped] = ACTIONS(7551), - [anon_sym_var] = ACTIONS(7270), - [sym_predefined_type] = ACTIONS(7272), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_from] = ACTIONS(4450), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4450), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4450), - [anon_sym_orderby] = ACTIONS(4450), - [anon_sym_ascending] = ACTIONS(4450), - [anon_sym_descending] = ACTIONS(4450), - [anon_sym_group] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [sym_grit_metavariable] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5787), + [anon_sym_COMMA] = ACTIONS(5787), + [anon_sym_LPAREN] = ACTIONS(5787), + [anon_sym_LT] = ACTIONS(5789), + [anon_sym_GT] = ACTIONS(5789), + [anon_sym_where] = ACTIONS(5787), + [anon_sym_QMARK] = ACTIONS(5789), + [anon_sym_DOT] = ACTIONS(5789), + [anon_sym_STAR] = ACTIONS(5787), + [anon_sym_switch] = ACTIONS(5787), + [anon_sym_DOT_DOT] = ACTIONS(5787), + [anon_sym_LT_EQ] = ACTIONS(5787), + [anon_sym_GT_EQ] = ACTIONS(5787), + [anon_sym_and] = ACTIONS(5787), + [anon_sym_or] = ACTIONS(5789), + [anon_sym_EQ_EQ] = ACTIONS(5787), + [anon_sym_BANG_EQ] = ACTIONS(5787), + [anon_sym_AMP_AMP] = ACTIONS(5787), + [anon_sym_PIPE_PIPE] = ACTIONS(5787), + [anon_sym_AMP] = ACTIONS(5789), + [sym_op_bitwise_or] = ACTIONS(5789), + [anon_sym_CARET] = ACTIONS(5787), + [sym_op_left_shift] = ACTIONS(5787), + [sym_op_right_shift] = ACTIONS(5789), + [sym_op_unsigned_right_shift] = ACTIONS(5787), + [anon_sym_PLUS] = ACTIONS(5789), + [anon_sym_DASH] = ACTIONS(5789), + [sym_op_divide] = ACTIONS(5789), + [sym_op_modulo] = ACTIONS(5787), + [sym_op_coalescing] = ACTIONS(5787), + [anon_sym_BANG] = ACTIONS(5789), + [anon_sym_PLUS_PLUS] = ACTIONS(5787), + [anon_sym_DASH_DASH] = ACTIONS(5787), + [anon_sym_from] = ACTIONS(5787), + [anon_sym_into] = ACTIONS(5787), + [anon_sym_join] = ACTIONS(5787), + [anon_sym_let] = ACTIONS(5787), + [anon_sym_orderby] = ACTIONS(5787), + [anon_sym_ascending] = ACTIONS(5787), + [anon_sym_descending] = ACTIONS(5787), + [anon_sym_group] = ACTIONS(5787), + [anon_sym_select] = ACTIONS(5787), + [anon_sym_as] = ACTIONS(5789), + [anon_sym_is] = ACTIONS(5787), + [anon_sym_DASH_GT] = ACTIONS(5787), + [anon_sym_with] = ACTIONS(5787), + [sym_grit_metavariable] = ACTIONS(5787), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651832,53 +643286,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5185), [sym_preproc_define] = STATE(5185), [sym_preproc_undef] = STATE(5185), - [anon_sym_LBRACK] = ACTIONS(6118), - [anon_sym_COMMA] = ACTIONS(6118), - [anon_sym_LPAREN] = ACTIONS(6118), - [anon_sym_LT] = ACTIONS(6120), - [anon_sym_GT] = ACTIONS(6120), - [anon_sym_where] = ACTIONS(6118), - [anon_sym_QMARK] = ACTIONS(6120), - [anon_sym_BANG] = ACTIONS(6120), - [anon_sym_PLUS_PLUS] = ACTIONS(6118), - [anon_sym_DASH_DASH] = ACTIONS(6118), - [anon_sym_PLUS] = ACTIONS(6120), - [anon_sym_DASH] = ACTIONS(6120), - [anon_sym_STAR] = ACTIONS(6118), - [anon_sym_SLASH] = ACTIONS(6120), - [anon_sym_PERCENT] = ACTIONS(6118), - [anon_sym_CARET] = ACTIONS(6118), - [anon_sym_PIPE] = ACTIONS(6120), - [anon_sym_AMP] = ACTIONS(6120), - [anon_sym_LT_LT] = ACTIONS(6118), - [anon_sym_GT_GT] = ACTIONS(6120), - [anon_sym_GT_GT_GT] = ACTIONS(6118), - [anon_sym_EQ_EQ] = ACTIONS(6118), - [anon_sym_BANG_EQ] = ACTIONS(6118), - [anon_sym_GT_EQ] = ACTIONS(6118), - [anon_sym_LT_EQ] = ACTIONS(6118), - [anon_sym_DOT] = ACTIONS(6120), - [anon_sym_switch] = ACTIONS(6118), - [anon_sym_DOT_DOT] = ACTIONS(6118), - [anon_sym_and] = ACTIONS(6118), - [anon_sym_or] = ACTIONS(6120), - [anon_sym_AMP_AMP] = ACTIONS(6118), - [anon_sym_PIPE_PIPE] = ACTIONS(6118), - [sym_op_coalescing] = ACTIONS(6118), - [anon_sym_from] = ACTIONS(6118), - [anon_sym_into] = ACTIONS(6118), - [anon_sym_join] = ACTIONS(6118), - [anon_sym_let] = ACTIONS(6118), - [anon_sym_orderby] = ACTIONS(6118), - [anon_sym_ascending] = ACTIONS(6118), - [anon_sym_descending] = ACTIONS(6118), - [anon_sym_group] = ACTIONS(6118), - [anon_sym_select] = ACTIONS(6118), - [anon_sym_as] = ACTIONS(6120), - [anon_sym_is] = ACTIONS(6118), - [anon_sym_DASH_GT] = ACTIONS(6118), - [anon_sym_with] = ACTIONS(6118), - [sym_grit_metavariable] = ACTIONS(6118), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_COMMA] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(5923), + [anon_sym_LT] = ACTIONS(5925), + [anon_sym_GT] = ACTIONS(5925), + [anon_sym_where] = ACTIONS(5923), + [anon_sym_QMARK] = ACTIONS(5925), + [anon_sym_DOT] = ACTIONS(5925), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_switch] = ACTIONS(5923), + [anon_sym_DOT_DOT] = ACTIONS(5923), + [anon_sym_LT_EQ] = ACTIONS(5923), + [anon_sym_GT_EQ] = ACTIONS(5923), + [anon_sym_and] = ACTIONS(5923), + [anon_sym_or] = ACTIONS(5925), + [anon_sym_EQ_EQ] = ACTIONS(5923), + [anon_sym_BANG_EQ] = ACTIONS(5923), + [anon_sym_AMP_AMP] = ACTIONS(5923), + [anon_sym_PIPE_PIPE] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5925), + [sym_op_bitwise_or] = ACTIONS(5925), + [anon_sym_CARET] = ACTIONS(5923), + [sym_op_left_shift] = ACTIONS(5923), + [sym_op_right_shift] = ACTIONS(5925), + [sym_op_unsigned_right_shift] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5925), + [sym_op_divide] = ACTIONS(5925), + [sym_op_modulo] = ACTIONS(5923), + [sym_op_coalescing] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(5925), + [anon_sym_PLUS_PLUS] = ACTIONS(5923), + [anon_sym_DASH_DASH] = ACTIONS(5923), + [anon_sym_from] = ACTIONS(5923), + [anon_sym_into] = ACTIONS(5923), + [anon_sym_join] = ACTIONS(5923), + [anon_sym_let] = ACTIONS(5923), + [anon_sym_orderby] = ACTIONS(5923), + [anon_sym_ascending] = ACTIONS(5923), + [anon_sym_descending] = ACTIONS(5923), + [anon_sym_group] = ACTIONS(5923), + [anon_sym_select] = ACTIONS(5923), + [anon_sym_as] = ACTIONS(5925), + [anon_sym_is] = ACTIONS(5923), + [anon_sym_DASH_GT] = ACTIONS(5923), + [anon_sym_with] = ACTIONS(5923), + [sym_grit_metavariable] = ACTIONS(5923), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651891,24 +643345,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5186] = { - [sym__name] = STATE(5487), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3755), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(5383), - [sym__reserved_identifier] = STATE(3398), + [sym__name] = STATE(2458), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_type] = STATE(2425), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_identifier] = STATE(2392), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(5186), [sym_preproc_endregion] = STATE(5186), [sym_preproc_line] = STATE(5186), @@ -651918,35 +643372,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5186), [sym_preproc_define] = STATE(5186), [sym_preproc_undef] = STATE(5186), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4477), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_readonly] = ACTIONS(7555), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7320), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(7999), + [anon_sym_ref] = ACTIONS(4427), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(8001), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_where] = ACTIONS(4425), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_scoped] = ACTIONS(7691), + [anon_sym_var] = ACTIONS(7258), + [sym_predefined_type] = ACTIONS(7260), + [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), + [sym_grit_metavariable] = ACTIONS(7262), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -651968,53 +643422,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5187), [sym_preproc_define] = STATE(5187), [sym_preproc_undef] = STATE(5187), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(6976), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5783), + [anon_sym_COMMA] = ACTIONS(5783), + [anon_sym_LPAREN] = ACTIONS(5783), + [anon_sym_LT] = ACTIONS(5785), + [anon_sym_GT] = ACTIONS(5785), + [anon_sym_where] = ACTIONS(5783), + [anon_sym_QMARK] = ACTIONS(5785), + [anon_sym_DOT] = ACTIONS(5785), + [anon_sym_STAR] = ACTIONS(5783), + [anon_sym_switch] = ACTIONS(5783), + [anon_sym_DOT_DOT] = ACTIONS(5783), + [anon_sym_LT_EQ] = ACTIONS(5783), + [anon_sym_GT_EQ] = ACTIONS(5783), + [anon_sym_and] = ACTIONS(5783), + [anon_sym_or] = ACTIONS(5785), + [anon_sym_EQ_EQ] = ACTIONS(5783), + [anon_sym_BANG_EQ] = ACTIONS(5783), + [anon_sym_AMP_AMP] = ACTIONS(5783), + [anon_sym_PIPE_PIPE] = ACTIONS(5783), + [anon_sym_AMP] = ACTIONS(5785), + [sym_op_bitwise_or] = ACTIONS(5785), + [anon_sym_CARET] = ACTIONS(5783), + [sym_op_left_shift] = ACTIONS(5783), + [sym_op_right_shift] = ACTIONS(5785), + [sym_op_unsigned_right_shift] = ACTIONS(5783), + [anon_sym_PLUS] = ACTIONS(5785), + [anon_sym_DASH] = ACTIONS(5785), + [sym_op_divide] = ACTIONS(5785), + [sym_op_modulo] = ACTIONS(5783), + [sym_op_coalescing] = ACTIONS(5783), + [anon_sym_BANG] = ACTIONS(5785), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_from] = ACTIONS(5783), + [anon_sym_into] = ACTIONS(5783), + [anon_sym_join] = ACTIONS(5783), + [anon_sym_let] = ACTIONS(5783), + [anon_sym_orderby] = ACTIONS(5783), + [anon_sym_ascending] = ACTIONS(5783), + [anon_sym_descending] = ACTIONS(5783), + [anon_sym_group] = ACTIONS(5783), + [anon_sym_select] = ACTIONS(5783), + [anon_sym_as] = ACTIONS(5785), + [anon_sym_is] = ACTIONS(5783), + [anon_sym_DASH_GT] = ACTIONS(5783), + [anon_sym_with] = ACTIONS(5783), + [sym_grit_metavariable] = ACTIONS(5783), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652036,53 +643490,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5188), [sym_preproc_define] = STATE(5188), [sym_preproc_undef] = STATE(5188), - [anon_sym_LBRACK] = ACTIONS(6385), - [anon_sym_COMMA] = ACTIONS(6385), - [anon_sym_LPAREN] = ACTIONS(6385), - [anon_sym_LT] = ACTIONS(6387), - [anon_sym_GT] = ACTIONS(6387), - [anon_sym_where] = ACTIONS(6385), - [anon_sym_QMARK] = ACTIONS(6387), - [anon_sym_BANG] = ACTIONS(6387), - [anon_sym_PLUS_PLUS] = ACTIONS(6385), - [anon_sym_DASH_DASH] = ACTIONS(6385), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6385), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_PERCENT] = ACTIONS(6385), - [anon_sym_CARET] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6387), - [anon_sym_AMP] = ACTIONS(6387), - [anon_sym_LT_LT] = ACTIONS(6385), - [anon_sym_GT_GT] = ACTIONS(6387), - [anon_sym_GT_GT_GT] = ACTIONS(6385), - [anon_sym_EQ_EQ] = ACTIONS(6385), - [anon_sym_BANG_EQ] = ACTIONS(6385), - [anon_sym_GT_EQ] = ACTIONS(6385), - [anon_sym_LT_EQ] = ACTIONS(6385), - [anon_sym_DOT] = ACTIONS(6387), - [anon_sym_switch] = ACTIONS(6385), - [anon_sym_DOT_DOT] = ACTIONS(6385), - [anon_sym_and] = ACTIONS(6385), - [anon_sym_or] = ACTIONS(6387), - [anon_sym_AMP_AMP] = ACTIONS(6385), - [anon_sym_PIPE_PIPE] = ACTIONS(6385), - [sym_op_coalescing] = ACTIONS(6385), - [anon_sym_from] = ACTIONS(6385), - [anon_sym_into] = ACTIONS(6385), - [anon_sym_join] = ACTIONS(6385), - [anon_sym_let] = ACTIONS(6385), - [anon_sym_orderby] = ACTIONS(6385), - [anon_sym_ascending] = ACTIONS(6385), - [anon_sym_descending] = ACTIONS(6385), - [anon_sym_group] = ACTIONS(6385), - [anon_sym_select] = ACTIONS(6385), - [anon_sym_as] = ACTIONS(6387), - [anon_sym_is] = ACTIONS(6385), - [anon_sym_DASH_GT] = ACTIONS(6385), - [anon_sym_with] = ACTIONS(6385), - [sym_grit_metavariable] = ACTIONS(6385), + [anon_sym_LBRACK] = ACTIONS(8003), + [anon_sym_COMMA] = ACTIONS(8003), + [anon_sym_LPAREN] = ACTIONS(8003), + [anon_sym_LT] = ACTIONS(8005), + [anon_sym_GT] = ACTIONS(8005), + [anon_sym_where] = ACTIONS(8003), + [anon_sym_QMARK] = ACTIONS(8005), + [anon_sym_DOT] = ACTIONS(8005), + [anon_sym_STAR] = ACTIONS(8003), + [anon_sym_switch] = ACTIONS(8003), + [anon_sym_DOT_DOT] = ACTIONS(8003), + [anon_sym_LT_EQ] = ACTIONS(8003), + [anon_sym_GT_EQ] = ACTIONS(8003), + [anon_sym_and] = ACTIONS(8007), + [anon_sym_or] = ACTIONS(8009), + [anon_sym_EQ_EQ] = ACTIONS(8003), + [anon_sym_BANG_EQ] = ACTIONS(8003), + [anon_sym_AMP_AMP] = ACTIONS(8003), + [anon_sym_PIPE_PIPE] = ACTIONS(8003), + [anon_sym_AMP] = ACTIONS(8005), + [sym_op_bitwise_or] = ACTIONS(8005), + [anon_sym_CARET] = ACTIONS(8003), + [sym_op_left_shift] = ACTIONS(8003), + [sym_op_right_shift] = ACTIONS(8005), + [sym_op_unsigned_right_shift] = ACTIONS(8003), + [anon_sym_PLUS] = ACTIONS(8005), + [anon_sym_DASH] = ACTIONS(8005), + [sym_op_divide] = ACTIONS(8005), + [sym_op_modulo] = ACTIONS(8003), + [sym_op_coalescing] = ACTIONS(8003), + [anon_sym_BANG] = ACTIONS(8005), + [anon_sym_PLUS_PLUS] = ACTIONS(8003), + [anon_sym_DASH_DASH] = ACTIONS(8003), + [anon_sym_from] = ACTIONS(8003), + [anon_sym_into] = ACTIONS(8003), + [anon_sym_join] = ACTIONS(8003), + [anon_sym_let] = ACTIONS(8003), + [anon_sym_orderby] = ACTIONS(8003), + [anon_sym_ascending] = ACTIONS(8003), + [anon_sym_descending] = ACTIONS(8003), + [anon_sym_group] = ACTIONS(8003), + [anon_sym_select] = ACTIONS(8003), + [anon_sym_as] = ACTIONS(8005), + [anon_sym_is] = ACTIONS(8003), + [anon_sym_DASH_GT] = ACTIONS(8003), + [anon_sym_with] = ACTIONS(8003), + [sym_grit_metavariable] = ACTIONS(8003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652095,25 +643549,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5189] = { - [sym_variable_declaration] = STATE(7792), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6216), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5189), [sym_preproc_endregion] = STATE(5189), [sym_preproc_line] = STATE(5189), @@ -652123,34 +643558,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5189), [sym_preproc_define] = STATE(5189), [sym_preproc_undef] = STATE(5189), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5749), + [anon_sym_COMMA] = ACTIONS(5749), + [anon_sym_LPAREN] = ACTIONS(5749), + [anon_sym_LT] = ACTIONS(5751), + [anon_sym_GT] = ACTIONS(5751), + [anon_sym_where] = ACTIONS(5749), + [anon_sym_QMARK] = ACTIONS(5751), + [anon_sym_DOT] = ACTIONS(5751), + [anon_sym_STAR] = ACTIONS(5749), + [anon_sym_switch] = ACTIONS(5749), + [anon_sym_DOT_DOT] = ACTIONS(5749), + [anon_sym_LT_EQ] = ACTIONS(5749), + [anon_sym_GT_EQ] = ACTIONS(5749), + [anon_sym_and] = ACTIONS(5749), + [anon_sym_or] = ACTIONS(5751), + [anon_sym_EQ_EQ] = ACTIONS(5749), + [anon_sym_BANG_EQ] = ACTIONS(5749), + [anon_sym_AMP_AMP] = ACTIONS(5749), + [anon_sym_PIPE_PIPE] = ACTIONS(5749), + [anon_sym_AMP] = ACTIONS(5751), + [sym_op_bitwise_or] = ACTIONS(5751), + [anon_sym_CARET] = ACTIONS(5749), + [sym_op_left_shift] = ACTIONS(5749), + [sym_op_right_shift] = ACTIONS(5751), + [sym_op_unsigned_right_shift] = ACTIONS(5749), + [anon_sym_PLUS] = ACTIONS(5751), + [anon_sym_DASH] = ACTIONS(5751), + [sym_op_divide] = ACTIONS(5751), + [sym_op_modulo] = ACTIONS(5749), + [sym_op_coalescing] = ACTIONS(5749), + [anon_sym_BANG] = ACTIONS(5751), + [anon_sym_PLUS_PLUS] = ACTIONS(5749), + [anon_sym_DASH_DASH] = ACTIONS(5749), + [anon_sym_from] = ACTIONS(5749), + [anon_sym_into] = ACTIONS(5749), + [anon_sym_join] = ACTIONS(5749), + [anon_sym_let] = ACTIONS(5749), + [anon_sym_orderby] = ACTIONS(5749), + [anon_sym_ascending] = ACTIONS(5749), + [anon_sym_descending] = ACTIONS(5749), + [anon_sym_group] = ACTIONS(5749), + [anon_sym_select] = ACTIONS(5749), + [anon_sym_as] = ACTIONS(5751), + [anon_sym_is] = ACTIONS(5749), + [anon_sym_DASH_GT] = ACTIONS(5749), + [anon_sym_with] = ACTIONS(5749), + [sym_grit_metavariable] = ACTIONS(5749), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652172,53 +643626,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5190), [sym_preproc_define] = STATE(5190), [sym_preproc_undef] = STATE(5190), - [anon_sym_LBRACK] = ACTIONS(6289), - [anon_sym_COMMA] = ACTIONS(6289), - [anon_sym_LPAREN] = ACTIONS(6289), - [anon_sym_LT] = ACTIONS(6291), - [anon_sym_GT] = ACTIONS(6291), - [anon_sym_where] = ACTIONS(6289), - [anon_sym_QMARK] = ACTIONS(6291), - [anon_sym_BANG] = ACTIONS(6291), - [anon_sym_PLUS_PLUS] = ACTIONS(6289), - [anon_sym_DASH_DASH] = ACTIONS(6289), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6289), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_PERCENT] = ACTIONS(6289), - [anon_sym_CARET] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6291), - [anon_sym_AMP] = ACTIONS(6291), - [anon_sym_LT_LT] = ACTIONS(6289), - [anon_sym_GT_GT] = ACTIONS(6291), - [anon_sym_GT_GT_GT] = ACTIONS(6289), - [anon_sym_EQ_EQ] = ACTIONS(6289), - [anon_sym_BANG_EQ] = ACTIONS(6289), - [anon_sym_GT_EQ] = ACTIONS(6289), - [anon_sym_LT_EQ] = ACTIONS(6289), - [anon_sym_DOT] = ACTIONS(6291), - [anon_sym_switch] = ACTIONS(6289), - [anon_sym_DOT_DOT] = ACTIONS(6289), - [anon_sym_and] = ACTIONS(6289), - [anon_sym_or] = ACTIONS(6291), - [anon_sym_AMP_AMP] = ACTIONS(6289), - [anon_sym_PIPE_PIPE] = ACTIONS(6289), - [sym_op_coalescing] = ACTIONS(6289), - [anon_sym_from] = ACTIONS(6289), - [anon_sym_into] = ACTIONS(6289), - [anon_sym_join] = ACTIONS(6289), - [anon_sym_let] = ACTIONS(6289), - [anon_sym_orderby] = ACTIONS(6289), - [anon_sym_ascending] = ACTIONS(6289), - [anon_sym_descending] = ACTIONS(6289), - [anon_sym_group] = ACTIONS(6289), - [anon_sym_select] = ACTIONS(6289), - [anon_sym_as] = ACTIONS(6291), - [anon_sym_is] = ACTIONS(6289), - [anon_sym_DASH_GT] = ACTIONS(6289), - [anon_sym_with] = ACTIONS(6289), - [sym_grit_metavariable] = ACTIONS(6289), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_EQ] = ACTIONS(3193), + [anon_sym_and] = ACTIONS(3193), + [anon_sym_or] = ACTIONS(3191), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_PIPE_PIPE] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [sym_op_bitwise_or] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3193), + [sym_op_left_shift] = ACTIONS(3193), + [sym_op_right_shift] = ACTIONS(3191), + [sym_op_unsigned_right_shift] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [sym_op_divide] = ACTIONS(3191), + [sym_op_modulo] = ACTIONS(3193), + [sym_op_coalescing] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_from] = ACTIONS(3193), + [anon_sym_into] = ACTIONS(3193), + [anon_sym_join] = 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_select] = ACTIONS(3193), + [anon_sym_as] = ACTIONS(3191), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_DASH_GT] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [sym_grit_metavariable] = ACTIONS(3193), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652231,24 +643685,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5191] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5191), [sym_preproc_endregion] = STATE(5191), [sym_preproc_line] = STATE(5191), @@ -652258,35 +643694,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5191), [sym_preproc_define] = STATE(5191), [sym_preproc_undef] = STATE(5191), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7013), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(7557), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7021), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5963), + [anon_sym_COMMA] = ACTIONS(5963), + [anon_sym_LPAREN] = ACTIONS(5963), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_where] = ACTIONS(5963), + [anon_sym_QMARK] = ACTIONS(5965), + [anon_sym_DOT] = ACTIONS(5965), + [anon_sym_STAR] = ACTIONS(5963), + [anon_sym_switch] = ACTIONS(5963), + [anon_sym_DOT_DOT] = ACTIONS(5963), + [anon_sym_LT_EQ] = ACTIONS(5963), + [anon_sym_GT_EQ] = ACTIONS(5963), + [anon_sym_and] = ACTIONS(5963), + [anon_sym_or] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5963), + [anon_sym_BANG_EQ] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [anon_sym_AMP] = ACTIONS(5965), + [sym_op_bitwise_or] = ACTIONS(5965), + [anon_sym_CARET] = ACTIONS(5963), + [sym_op_left_shift] = ACTIONS(5963), + [sym_op_right_shift] = ACTIONS(5965), + [sym_op_unsigned_right_shift] = ACTIONS(5963), + [anon_sym_PLUS] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5965), + [sym_op_divide] = ACTIONS(5965), + [sym_op_modulo] = ACTIONS(5963), + [sym_op_coalescing] = ACTIONS(5963), + [anon_sym_BANG] = ACTIONS(5965), + [anon_sym_PLUS_PLUS] = ACTIONS(5963), + [anon_sym_DASH_DASH] = ACTIONS(5963), + [anon_sym_from] = ACTIONS(5963), + [anon_sym_into] = ACTIONS(5963), + [anon_sym_join] = ACTIONS(5963), + [anon_sym_let] = ACTIONS(5963), + [anon_sym_orderby] = ACTIONS(5963), + [anon_sym_ascending] = ACTIONS(5963), + [anon_sym_descending] = ACTIONS(5963), + [anon_sym_group] = ACTIONS(5963), + [anon_sym_select] = ACTIONS(5963), + [anon_sym_as] = ACTIONS(5965), + [anon_sym_is] = ACTIONS(5963), + [anon_sym_DASH_GT] = ACTIONS(5963), + [anon_sym_with] = ACTIONS(5963), + [sym_grit_metavariable] = ACTIONS(5963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652308,53 +643762,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5192), [sym_preproc_define] = STATE(5192), [sym_preproc_undef] = STATE(5192), - [anon_sym_LBRACK] = ACTIONS(6227), - [anon_sym_COMMA] = ACTIONS(6227), - [anon_sym_LPAREN] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(6229), - [anon_sym_GT] = ACTIONS(6229), - [anon_sym_where] = ACTIONS(6227), - [anon_sym_QMARK] = ACTIONS(6229), - [anon_sym_BANG] = ACTIONS(6229), - [anon_sym_PLUS_PLUS] = ACTIONS(6227), - [anon_sym_DASH_DASH] = ACTIONS(6227), - [anon_sym_PLUS] = ACTIONS(6229), - [anon_sym_DASH] = ACTIONS(6229), - [anon_sym_STAR] = ACTIONS(6227), - [anon_sym_SLASH] = ACTIONS(6229), - [anon_sym_PERCENT] = ACTIONS(6227), - [anon_sym_CARET] = ACTIONS(6227), - [anon_sym_PIPE] = ACTIONS(6229), - [anon_sym_AMP] = ACTIONS(6229), - [anon_sym_LT_LT] = ACTIONS(6227), - [anon_sym_GT_GT] = ACTIONS(6229), - [anon_sym_GT_GT_GT] = ACTIONS(6227), - [anon_sym_EQ_EQ] = ACTIONS(6227), - [anon_sym_BANG_EQ] = ACTIONS(6227), - [anon_sym_GT_EQ] = ACTIONS(6227), - [anon_sym_LT_EQ] = ACTIONS(6227), - [anon_sym_DOT] = ACTIONS(6229), - [anon_sym_switch] = ACTIONS(6227), - [anon_sym_DOT_DOT] = ACTIONS(6227), - [anon_sym_and] = ACTIONS(6227), - [anon_sym_or] = ACTIONS(6229), - [anon_sym_AMP_AMP] = ACTIONS(6227), - [anon_sym_PIPE_PIPE] = ACTIONS(6227), - [sym_op_coalescing] = ACTIONS(6227), - [anon_sym_from] = ACTIONS(6227), - [anon_sym_into] = ACTIONS(6227), - [anon_sym_join] = ACTIONS(6227), - [anon_sym_let] = ACTIONS(6227), - [anon_sym_orderby] = ACTIONS(6227), - [anon_sym_ascending] = ACTIONS(6227), - [anon_sym_descending] = ACTIONS(6227), - [anon_sym_group] = ACTIONS(6227), - [anon_sym_select] = ACTIONS(6227), - [anon_sym_as] = ACTIONS(6229), - [anon_sym_is] = ACTIONS(6227), - [anon_sym_DASH_GT] = ACTIONS(6227), - [anon_sym_with] = ACTIONS(6227), - [sym_grit_metavariable] = ACTIONS(6227), + [anon_sym_LBRACK] = ACTIONS(6885), + [anon_sym_COMMA] = ACTIONS(6885), + [anon_sym_LPAREN] = ACTIONS(6885), + [anon_sym_LT] = ACTIONS(6887), + [anon_sym_GT] = ACTIONS(6887), + [anon_sym_where] = ACTIONS(6885), + [anon_sym_QMARK] = ACTIONS(6887), + [anon_sym_DOT] = ACTIONS(6887), + [anon_sym_STAR] = ACTIONS(6885), + [anon_sym_switch] = ACTIONS(6885), + [anon_sym_DOT_DOT] = ACTIONS(6885), + [anon_sym_LT_EQ] = ACTIONS(6885), + [anon_sym_GT_EQ] = ACTIONS(6885), + [anon_sym_and] = ACTIONS(8007), + [anon_sym_or] = ACTIONS(8009), + [anon_sym_EQ_EQ] = ACTIONS(6885), + [anon_sym_BANG_EQ] = ACTIONS(6885), + [anon_sym_AMP_AMP] = ACTIONS(6885), + [anon_sym_PIPE_PIPE] = ACTIONS(6885), + [anon_sym_AMP] = ACTIONS(6887), + [sym_op_bitwise_or] = ACTIONS(6887), + [anon_sym_CARET] = ACTIONS(6885), + [sym_op_left_shift] = ACTIONS(6885), + [sym_op_right_shift] = ACTIONS(6887), + [sym_op_unsigned_right_shift] = ACTIONS(6885), + [anon_sym_PLUS] = ACTIONS(6887), + [anon_sym_DASH] = ACTIONS(6887), + [sym_op_divide] = ACTIONS(6887), + [sym_op_modulo] = ACTIONS(6885), + [sym_op_coalescing] = ACTIONS(6885), + [anon_sym_BANG] = ACTIONS(6887), + [anon_sym_PLUS_PLUS] = ACTIONS(6885), + [anon_sym_DASH_DASH] = ACTIONS(6885), + [anon_sym_from] = ACTIONS(6885), + [anon_sym_into] = ACTIONS(6885), + [anon_sym_join] = ACTIONS(6885), + [anon_sym_let] = ACTIONS(6885), + [anon_sym_orderby] = ACTIONS(6885), + [anon_sym_ascending] = ACTIONS(6885), + [anon_sym_descending] = ACTIONS(6885), + [anon_sym_group] = ACTIONS(6885), + [anon_sym_select] = ACTIONS(6885), + [anon_sym_as] = ACTIONS(6887), + [anon_sym_is] = ACTIONS(6885), + [anon_sym_DASH_GT] = ACTIONS(6885), + [anon_sym_with] = ACTIONS(6885), + [sym_grit_metavariable] = ACTIONS(6885), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652376,53 +643830,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5193), [sym_preproc_define] = STATE(5193), [sym_preproc_undef] = STATE(5193), - [anon_sym_LBRACK] = ACTIONS(6188), - [anon_sym_COMMA] = ACTIONS(6188), - [anon_sym_LPAREN] = ACTIONS(6188), - [anon_sym_LT] = ACTIONS(6190), - [anon_sym_GT] = ACTIONS(6190), - [anon_sym_where] = ACTIONS(6188), - [anon_sym_QMARK] = ACTIONS(6190), - [anon_sym_BANG] = ACTIONS(6190), - [anon_sym_PLUS_PLUS] = ACTIONS(6188), - [anon_sym_DASH_DASH] = ACTIONS(6188), - [anon_sym_PLUS] = ACTIONS(6190), - [anon_sym_DASH] = ACTIONS(6190), - [anon_sym_STAR] = ACTIONS(6188), - [anon_sym_SLASH] = ACTIONS(6190), - [anon_sym_PERCENT] = ACTIONS(6188), - [anon_sym_CARET] = ACTIONS(6188), - [anon_sym_PIPE] = ACTIONS(6190), - [anon_sym_AMP] = ACTIONS(6190), - [anon_sym_LT_LT] = ACTIONS(6188), - [anon_sym_GT_GT] = ACTIONS(6190), - [anon_sym_GT_GT_GT] = ACTIONS(6188), - [anon_sym_EQ_EQ] = ACTIONS(6188), - [anon_sym_BANG_EQ] = ACTIONS(6188), - [anon_sym_GT_EQ] = ACTIONS(6188), - [anon_sym_LT_EQ] = ACTIONS(6188), - [anon_sym_DOT] = ACTIONS(6190), - [anon_sym_switch] = ACTIONS(6188), - [anon_sym_DOT_DOT] = ACTIONS(6188), - [anon_sym_and] = ACTIONS(6188), - [anon_sym_or] = ACTIONS(6190), - [anon_sym_AMP_AMP] = ACTIONS(6188), - [anon_sym_PIPE_PIPE] = ACTIONS(6188), - [sym_op_coalescing] = ACTIONS(6188), - [anon_sym_from] = ACTIONS(6188), - [anon_sym_into] = ACTIONS(6188), - [anon_sym_join] = ACTIONS(6188), - [anon_sym_let] = ACTIONS(6188), - [anon_sym_orderby] = ACTIONS(6188), - [anon_sym_ascending] = ACTIONS(6188), - [anon_sym_descending] = ACTIONS(6188), - [anon_sym_group] = ACTIONS(6188), - [anon_sym_select] = ACTIONS(6188), - [anon_sym_as] = ACTIONS(6190), - [anon_sym_is] = ACTIONS(6188), - [anon_sym_DASH_GT] = ACTIONS(6188), - [anon_sym_with] = ACTIONS(6188), - [sym_grit_metavariable] = ACTIONS(6188), + [anon_sym_LBRACK] = ACTIONS(7014), + [anon_sym_COMMA] = ACTIONS(7014), + [anon_sym_LPAREN] = ACTIONS(7014), + [anon_sym_LT] = ACTIONS(7016), + [anon_sym_GT] = ACTIONS(7016), + [anon_sym_where] = ACTIONS(7014), + [anon_sym_QMARK] = ACTIONS(7016), + [anon_sym_DOT] = ACTIONS(7016), + [anon_sym_STAR] = ACTIONS(7014), + [anon_sym_switch] = ACTIONS(7014), + [anon_sym_DOT_DOT] = ACTIONS(7014), + [anon_sym_LT_EQ] = ACTIONS(7014), + [anon_sym_GT_EQ] = ACTIONS(7014), + [anon_sym_and] = ACTIONS(7014), + [anon_sym_or] = ACTIONS(7016), + [anon_sym_EQ_EQ] = ACTIONS(7014), + [anon_sym_BANG_EQ] = ACTIONS(7014), + [anon_sym_AMP_AMP] = ACTIONS(7014), + [anon_sym_PIPE_PIPE] = ACTIONS(7014), + [anon_sym_AMP] = ACTIONS(7016), + [sym_op_bitwise_or] = ACTIONS(7016), + [anon_sym_CARET] = ACTIONS(7014), + [sym_op_left_shift] = ACTIONS(7014), + [sym_op_right_shift] = ACTIONS(7016), + [sym_op_unsigned_right_shift] = ACTIONS(7014), + [anon_sym_PLUS] = ACTIONS(7016), + [anon_sym_DASH] = ACTIONS(7016), + [sym_op_divide] = ACTIONS(7016), + [sym_op_modulo] = ACTIONS(7014), + [sym_op_coalescing] = ACTIONS(7014), + [anon_sym_BANG] = ACTIONS(7016), + [anon_sym_PLUS_PLUS] = ACTIONS(7014), + [anon_sym_DASH_DASH] = ACTIONS(7014), + [anon_sym_from] = ACTIONS(7014), + [anon_sym_into] = ACTIONS(7014), + [anon_sym_join] = ACTIONS(7014), + [anon_sym_let] = ACTIONS(7014), + [anon_sym_orderby] = ACTIONS(7014), + [anon_sym_ascending] = ACTIONS(7014), + [anon_sym_descending] = ACTIONS(7014), + [anon_sym_group] = ACTIONS(7014), + [anon_sym_select] = ACTIONS(7014), + [anon_sym_as] = ACTIONS(7016), + [anon_sym_is] = ACTIONS(7014), + [anon_sym_DASH_GT] = ACTIONS(7014), + [anon_sym_with] = ACTIONS(7014), + [sym_grit_metavariable] = ACTIONS(7014), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652435,25 +643889,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5194] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6355), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7591), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5194), [sym_preproc_endregion] = STATE(5194), [sym_preproc_line] = STATE(5194), @@ -652463,34 +643898,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5194), [sym_preproc_define] = STATE(5194), [sym_preproc_undef] = STATE(5194), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3900), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7298), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_EQ] = ACTIONS(8011), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_EQ_GT] = ACTIONS(5508), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(8013), + [anon_sym_DASH_EQ] = ACTIONS(8013), + [anon_sym_STAR_EQ] = ACTIONS(8013), + [anon_sym_SLASH_EQ] = ACTIONS(8013), + [anon_sym_PERCENT_EQ] = ACTIONS(8013), + [anon_sym_AMP_EQ] = ACTIONS(8013), + [anon_sym_CARET_EQ] = ACTIONS(8013), + [anon_sym_PIPE_EQ] = ACTIONS(8013), + [anon_sym_LT_LT_EQ] = ACTIONS(8013), + [anon_sym_GT_GT_EQ] = ACTIONS(8013), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(8013), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(8013), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652503,25 +643957,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5195] = { - [sym_variable_declaration] = STATE(7671), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6016), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5195), [sym_preproc_endregion] = STATE(5195), [sym_preproc_line] = STATE(5195), @@ -652531,34 +643966,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5195), [sym_preproc_define] = STATE(5195), [sym_preproc_undef] = STATE(5195), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(6953), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(6953), + [anon_sym_LT] = ACTIONS(6956), + [anon_sym_GT] = ACTIONS(6956), + [anon_sym_where] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(6956), + [anon_sym_DOT] = ACTIONS(6956), + [anon_sym_STAR] = ACTIONS(6953), + [anon_sym_switch] = ACTIONS(6953), + [anon_sym_DOT_DOT] = ACTIONS(6953), + [anon_sym_LT_EQ] = ACTIONS(6953), + [anon_sym_GT_EQ] = ACTIONS(6953), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(6953), + [anon_sym_BANG_EQ] = ACTIONS(6953), + [anon_sym_AMP_AMP] = ACTIONS(6953), + [anon_sym_PIPE_PIPE] = ACTIONS(6953), + [anon_sym_AMP] = ACTIONS(6956), + [sym_op_bitwise_or] = ACTIONS(6956), + [anon_sym_CARET] = ACTIONS(6953), + [sym_op_left_shift] = ACTIONS(6953), + [sym_op_right_shift] = ACTIONS(6956), + [sym_op_unsigned_right_shift] = ACTIONS(6953), + [anon_sym_PLUS] = ACTIONS(6956), + [anon_sym_DASH] = ACTIONS(6956), + [sym_op_divide] = ACTIONS(6956), + [sym_op_modulo] = ACTIONS(6953), + [sym_op_coalescing] = ACTIONS(6953), + [anon_sym_BANG] = ACTIONS(6956), + [anon_sym_PLUS_PLUS] = ACTIONS(6953), + [anon_sym_DASH_DASH] = ACTIONS(6953), + [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(6956), + [anon_sym_is] = ACTIONS(6953), + [anon_sym_DASH_GT] = ACTIONS(6953), + [anon_sym_with] = ACTIONS(6953), + [sym_grit_metavariable] = ACTIONS(5068), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652571,25 +644025,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5196] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6355), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7410), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5196), [sym_preproc_endregion] = STATE(5196), [sym_preproc_line] = STATE(5196), @@ -652599,34 +644034,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5196), [sym_preproc_define] = STATE(5196), [sym_preproc_undef] = STATE(5196), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3900), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7298), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [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_DOT] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(5839), + [anon_sym_switch] = ACTIONS(5839), + [anon_sym_DOT_DOT] = ACTIONS(5839), + [anon_sym_LT_EQ] = ACTIONS(5839), + [anon_sym_GT_EQ] = ACTIONS(5839), + [anon_sym_and] = ACTIONS(5839), + [anon_sym_or] = ACTIONS(5841), + [anon_sym_EQ_EQ] = ACTIONS(5839), + [anon_sym_BANG_EQ] = ACTIONS(5839), + [anon_sym_AMP_AMP] = ACTIONS(5839), + [anon_sym_PIPE_PIPE] = ACTIONS(5839), + [anon_sym_AMP] = ACTIONS(5841), + [sym_op_bitwise_or] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5839), + [sym_op_left_shift] = ACTIONS(5839), + [sym_op_right_shift] = ACTIONS(5841), + [sym_op_unsigned_right_shift] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5841), + [sym_op_divide] = ACTIONS(5841), + [sym_op_modulo] = ACTIONS(5839), + [sym_op_coalescing] = ACTIONS(5839), + [anon_sym_BANG] = ACTIONS(5841), + [anon_sym_PLUS_PLUS] = ACTIONS(5839), + [anon_sym_DASH_DASH] = ACTIONS(5839), + [anon_sym_from] = ACTIONS(5839), + [anon_sym_into] = ACTIONS(5839), + [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_grit_metavariable] = ACTIONS(5839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652639,6 +644093,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5197] = { + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3926), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(5197), [sym_preproc_endregion] = STATE(5197), [sym_preproc_line] = STATE(5197), @@ -652648,53 +644120,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5197), [sym_preproc_define] = STATE(5197), [sym_preproc_undef] = STATE(5197), - [anon_sym_LBRACK] = ACTIONS(6102), - [anon_sym_COMMA] = ACTIONS(6102), - [anon_sym_LPAREN] = ACTIONS(6102), - [anon_sym_LT] = ACTIONS(6104), - [anon_sym_GT] = ACTIONS(6104), - [anon_sym_where] = ACTIONS(6102), - [anon_sym_QMARK] = ACTIONS(6104), - [anon_sym_BANG] = ACTIONS(6104), - [anon_sym_PLUS_PLUS] = ACTIONS(6102), - [anon_sym_DASH_DASH] = ACTIONS(6102), - [anon_sym_PLUS] = ACTIONS(6104), - [anon_sym_DASH] = ACTIONS(6104), - [anon_sym_STAR] = ACTIONS(6102), - [anon_sym_SLASH] = ACTIONS(6104), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_CARET] = ACTIONS(6102), - [anon_sym_PIPE] = ACTIONS(6104), - [anon_sym_AMP] = ACTIONS(6104), - [anon_sym_LT_LT] = ACTIONS(6102), - [anon_sym_GT_GT] = ACTIONS(6104), - [anon_sym_GT_GT_GT] = ACTIONS(6102), - [anon_sym_EQ_EQ] = ACTIONS(6102), - [anon_sym_BANG_EQ] = ACTIONS(6102), - [anon_sym_GT_EQ] = ACTIONS(6102), - [anon_sym_LT_EQ] = ACTIONS(6102), - [anon_sym_DOT] = ACTIONS(6104), - [anon_sym_switch] = ACTIONS(6102), - [anon_sym_DOT_DOT] = ACTIONS(6102), - [anon_sym_and] = ACTIONS(6102), - [anon_sym_or] = ACTIONS(6104), - [anon_sym_AMP_AMP] = ACTIONS(6102), - [anon_sym_PIPE_PIPE] = ACTIONS(6102), - [sym_op_coalescing] = ACTIONS(6102), - [anon_sym_from] = ACTIONS(6102), - [anon_sym_into] = ACTIONS(6102), - [anon_sym_join] = ACTIONS(6102), - [anon_sym_let] = ACTIONS(6102), - [anon_sym_orderby] = ACTIONS(6102), - [anon_sym_ascending] = ACTIONS(6102), - [anon_sym_descending] = ACTIONS(6102), - [anon_sym_group] = ACTIONS(6102), - [anon_sym_select] = ACTIONS(6102), - [anon_sym_as] = ACTIONS(6104), - [anon_sym_is] = ACTIONS(6102), - [anon_sym_DASH_GT] = ACTIONS(6102), - [anon_sym_with] = ACTIONS(6102), - [sym_grit_metavariable] = ACTIONS(6102), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(8015), + [anon_sym_ref] = ACTIONS(4092), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_readonly] = ACTIONS(8017), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7510), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652716,53 +644170,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5198), [sym_preproc_define] = STATE(5198), [sym_preproc_undef] = STATE(5198), - [anon_sym_LBRACK] = ACTIONS(6196), - [anon_sym_COMMA] = ACTIONS(6196), - [anon_sym_LPAREN] = ACTIONS(6196), - [anon_sym_LT] = ACTIONS(6198), - [anon_sym_GT] = ACTIONS(6198), - [anon_sym_where] = ACTIONS(6196), - [anon_sym_QMARK] = ACTIONS(6198), - [anon_sym_BANG] = ACTIONS(6198), - [anon_sym_PLUS_PLUS] = ACTIONS(6196), - [anon_sym_DASH_DASH] = ACTIONS(6196), - [anon_sym_PLUS] = ACTIONS(6198), - [anon_sym_DASH] = ACTIONS(6198), - [anon_sym_STAR] = ACTIONS(6196), - [anon_sym_SLASH] = ACTIONS(6198), - [anon_sym_PERCENT] = ACTIONS(6196), - [anon_sym_CARET] = ACTIONS(6196), - [anon_sym_PIPE] = ACTIONS(6198), - [anon_sym_AMP] = ACTIONS(6198), - [anon_sym_LT_LT] = ACTIONS(6196), - [anon_sym_GT_GT] = ACTIONS(6198), - [anon_sym_GT_GT_GT] = ACTIONS(6196), - [anon_sym_EQ_EQ] = ACTIONS(6196), - [anon_sym_BANG_EQ] = ACTIONS(6196), - [anon_sym_GT_EQ] = ACTIONS(6196), - [anon_sym_LT_EQ] = ACTIONS(6196), - [anon_sym_DOT] = ACTIONS(6198), - [anon_sym_switch] = ACTIONS(6196), - [anon_sym_DOT_DOT] = ACTIONS(6196), - [anon_sym_and] = ACTIONS(6196), - [anon_sym_or] = ACTIONS(6198), - [anon_sym_AMP_AMP] = ACTIONS(6196), - [anon_sym_PIPE_PIPE] = ACTIONS(6196), - [sym_op_coalescing] = ACTIONS(6196), - [anon_sym_from] = ACTIONS(6196), - [anon_sym_into] = ACTIONS(6196), - [anon_sym_join] = ACTIONS(6196), - [anon_sym_let] = ACTIONS(6196), - [anon_sym_orderby] = ACTIONS(6196), - [anon_sym_ascending] = ACTIONS(6196), - [anon_sym_descending] = ACTIONS(6196), - [anon_sym_group] = ACTIONS(6196), - [anon_sym_select] = ACTIONS(6196), - [anon_sym_as] = ACTIONS(6198), - [anon_sym_is] = ACTIONS(6196), - [anon_sym_DASH_GT] = ACTIONS(6196), - [anon_sym_with] = ACTIONS(6196), - [sym_grit_metavariable] = ACTIONS(6196), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(6589), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652775,24 +644229,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5199] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4753), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4062), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(5662), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5199), [sym_preproc_endregion] = STATE(5199), [sym_preproc_line] = STATE(5199), @@ -652802,35 +644256,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5199), [sym_preproc_define] = STATE(5199), [sym_preproc_undef] = STATE(5199), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4516), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_readonly] = ACTIONS(7561), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7338), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4437), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_readonly] = ACTIONS(8019), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7490), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652843,25 +644297,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5200] = { - [sym_variable_declaration] = STATE(7699), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6003), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5200), [sym_preproc_endregion] = STATE(5200), [sym_preproc_line] = STATE(5200), @@ -652875,14 +644328,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(8023), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -652898,7 +644352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652911,25 +644365,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5201] = { - [sym_variable_declaration] = STATE(8094), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6216), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5201), [sym_preproc_endregion] = STATE(5201), [sym_preproc_line] = STATE(5201), @@ -652939,34 +644374,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5201), [sym_preproc_define] = STATE(5201), [sym_preproc_undef] = STATE(5201), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5903), + [anon_sym_COMMA] = ACTIONS(5903), + [anon_sym_LPAREN] = ACTIONS(5903), + [anon_sym_LT] = ACTIONS(5905), + [anon_sym_GT] = ACTIONS(5905), + [anon_sym_where] = ACTIONS(5903), + [anon_sym_QMARK] = ACTIONS(5905), + [anon_sym_DOT] = ACTIONS(5905), + [anon_sym_STAR] = ACTIONS(5903), + [anon_sym_switch] = ACTIONS(5903), + [anon_sym_DOT_DOT] = ACTIONS(5903), + [anon_sym_LT_EQ] = ACTIONS(5903), + [anon_sym_GT_EQ] = ACTIONS(5903), + [anon_sym_and] = ACTIONS(5903), + [anon_sym_or] = ACTIONS(5905), + [anon_sym_EQ_EQ] = ACTIONS(5903), + [anon_sym_BANG_EQ] = ACTIONS(5903), + [anon_sym_AMP_AMP] = ACTIONS(5903), + [anon_sym_PIPE_PIPE] = ACTIONS(5903), + [anon_sym_AMP] = ACTIONS(5905), + [sym_op_bitwise_or] = ACTIONS(5905), + [anon_sym_CARET] = ACTIONS(5903), + [sym_op_left_shift] = ACTIONS(5903), + [sym_op_right_shift] = ACTIONS(5905), + [sym_op_unsigned_right_shift] = ACTIONS(5903), + [anon_sym_PLUS] = ACTIONS(5905), + [anon_sym_DASH] = ACTIONS(5905), + [sym_op_divide] = ACTIONS(5905), + [sym_op_modulo] = ACTIONS(5903), + [sym_op_coalescing] = ACTIONS(5903), + [anon_sym_BANG] = ACTIONS(5905), + [anon_sym_PLUS_PLUS] = ACTIONS(5903), + [anon_sym_DASH_DASH] = ACTIONS(5903), + [anon_sym_from] = ACTIONS(5903), + [anon_sym_into] = ACTIONS(5903), + [anon_sym_join] = ACTIONS(5903), + [anon_sym_let] = ACTIONS(5903), + [anon_sym_orderby] = ACTIONS(5903), + [anon_sym_ascending] = ACTIONS(5903), + [anon_sym_descending] = ACTIONS(5903), + [anon_sym_group] = ACTIONS(5903), + [anon_sym_select] = ACTIONS(5903), + [anon_sym_as] = ACTIONS(5905), + [anon_sym_is] = ACTIONS(5903), + [anon_sym_DASH_GT] = ACTIONS(5903), + [anon_sym_with] = ACTIONS(5903), + [sym_grit_metavariable] = ACTIONS(5903), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -652979,15 +644433,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5202] = { - [sym__name] = STATE(5884), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(5567), - [sym__reserved_identifier] = STATE(2206), [sym_preproc_region] = STATE(5202), [sym_preproc_endregion] = STATE(5202), [sym_preproc_line] = STATE(5202), @@ -652997,44 +644442,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5202), [sym_preproc_define] = STATE(5202), [sym_preproc_undef] = STATE(5202), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3894), - [anon_sym_global] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3938), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3696), - [anon_sym_notnull] = ACTIONS(3894), - [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3894), - [anon_sym_yield] = ACTIONS(3894), - [anon_sym_when] = ACTIONS(3894), - [sym_discard] = ACTIONS(3698), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3894), - [anon_sym_into] = ACTIONS(3894), - [anon_sym_join] = ACTIONS(3894), - [anon_sym_on] = ACTIONS(3894), - [anon_sym_equals] = ACTIONS(3894), - [anon_sym_let] = ACTIONS(3894), - [anon_sym_orderby] = ACTIONS(3894), - [anon_sym_ascending] = ACTIONS(3894), - [anon_sym_descending] = ACTIONS(3894), - [anon_sym_group] = ACTIONS(3894), - [anon_sym_by] = ACTIONS(3894), - [anon_sym_select] = ACTIONS(3894), - [sym_grit_metavariable] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(5861), + [anon_sym_COMMA] = ACTIONS(5861), + [anon_sym_LPAREN] = ACTIONS(5861), + [anon_sym_LT] = ACTIONS(5863), + [anon_sym_GT] = ACTIONS(5863), + [anon_sym_where] = ACTIONS(5861), + [anon_sym_QMARK] = ACTIONS(5863), + [anon_sym_DOT] = ACTIONS(5863), + [anon_sym_STAR] = ACTIONS(5861), + [anon_sym_switch] = ACTIONS(5861), + [anon_sym_DOT_DOT] = ACTIONS(5861), + [anon_sym_LT_EQ] = ACTIONS(5861), + [anon_sym_GT_EQ] = ACTIONS(5861), + [anon_sym_and] = ACTIONS(5861), + [anon_sym_or] = ACTIONS(5863), + [anon_sym_EQ_EQ] = ACTIONS(5861), + [anon_sym_BANG_EQ] = ACTIONS(5861), + [anon_sym_AMP_AMP] = ACTIONS(5861), + [anon_sym_PIPE_PIPE] = ACTIONS(5861), + [anon_sym_AMP] = ACTIONS(5863), + [sym_op_bitwise_or] = ACTIONS(5863), + [anon_sym_CARET] = ACTIONS(5861), + [sym_op_left_shift] = ACTIONS(5861), + [sym_op_right_shift] = ACTIONS(5863), + [sym_op_unsigned_right_shift] = ACTIONS(5861), + [anon_sym_PLUS] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5863), + [sym_op_divide] = ACTIONS(5863), + [sym_op_modulo] = ACTIONS(5861), + [sym_op_coalescing] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(5863), + [anon_sym_PLUS_PLUS] = ACTIONS(5861), + [anon_sym_DASH_DASH] = ACTIONS(5861), + [anon_sym_from] = ACTIONS(5861), + [anon_sym_into] = ACTIONS(5861), + [anon_sym_join] = ACTIONS(5861), + [anon_sym_let] = ACTIONS(5861), + [anon_sym_orderby] = ACTIONS(5861), + [anon_sym_ascending] = ACTIONS(5861), + [anon_sym_descending] = ACTIONS(5861), + [anon_sym_group] = ACTIONS(5861), + [anon_sym_select] = ACTIONS(5861), + [anon_sym_as] = ACTIONS(5863), + [anon_sym_is] = ACTIONS(5861), + [anon_sym_DASH_GT] = ACTIONS(5861), + [anon_sym_with] = ACTIONS(5861), + [sym_grit_metavariable] = ACTIONS(5861), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -653047,6 +644501,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5203] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5203), [sym_preproc_endregion] = STATE(5203), [sym_preproc_line] = STATE(5203), @@ -653056,53 +644528,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5203), [sym_preproc_define] = STATE(5203), [sym_preproc_undef] = STATE(5203), - [anon_sym_LBRACK] = ACTIONS(6200), - [anon_sym_COMMA] = ACTIONS(6200), - [anon_sym_LPAREN] = ACTIONS(6200), - [anon_sym_LT] = ACTIONS(6202), - [anon_sym_GT] = ACTIONS(6202), - [anon_sym_where] = ACTIONS(6200), - [anon_sym_QMARK] = ACTIONS(6202), - [anon_sym_BANG] = ACTIONS(6202), - [anon_sym_PLUS_PLUS] = ACTIONS(6200), - [anon_sym_DASH_DASH] = ACTIONS(6200), - [anon_sym_PLUS] = ACTIONS(6202), - [anon_sym_DASH] = ACTIONS(6202), - [anon_sym_STAR] = ACTIONS(6200), - [anon_sym_SLASH] = ACTIONS(6202), - [anon_sym_PERCENT] = ACTIONS(6200), - [anon_sym_CARET] = ACTIONS(6200), - [anon_sym_PIPE] = ACTIONS(6202), - [anon_sym_AMP] = ACTIONS(6202), - [anon_sym_LT_LT] = ACTIONS(6200), - [anon_sym_GT_GT] = ACTIONS(6202), - [anon_sym_GT_GT_GT] = ACTIONS(6200), - [anon_sym_EQ_EQ] = ACTIONS(6200), - [anon_sym_BANG_EQ] = ACTIONS(6200), - [anon_sym_GT_EQ] = ACTIONS(6200), - [anon_sym_LT_EQ] = ACTIONS(6200), - [anon_sym_DOT] = ACTIONS(6202), - [anon_sym_switch] = ACTIONS(6200), - [anon_sym_DOT_DOT] = ACTIONS(6200), - [anon_sym_and] = ACTIONS(6200), - [anon_sym_or] = ACTIONS(6202), - [anon_sym_AMP_AMP] = ACTIONS(6200), - [anon_sym_PIPE_PIPE] = ACTIONS(6200), - [sym_op_coalescing] = ACTIONS(6200), - [anon_sym_from] = ACTIONS(6200), - [anon_sym_into] = ACTIONS(6200), - [anon_sym_join] = ACTIONS(6200), - [anon_sym_let] = ACTIONS(6200), - [anon_sym_orderby] = ACTIONS(6200), - [anon_sym_ascending] = ACTIONS(6200), - [anon_sym_descending] = ACTIONS(6200), - [anon_sym_group] = ACTIONS(6200), - [anon_sym_select] = ACTIONS(6200), - [anon_sym_as] = ACTIONS(6202), - [anon_sym_is] = ACTIONS(6200), - [anon_sym_DASH_GT] = ACTIONS(6200), - [anon_sym_with] = ACTIONS(6200), - [sym_grit_metavariable] = ACTIONS(6200), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6807), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(8027), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6815), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -653115,24 +644569,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5204] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(3789), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(5204), [sym_preproc_endregion] = STATE(5204), [sym_preproc_line] = STATE(5204), @@ -653142,35 +644578,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5204), [sym_preproc_define] = STATE(5204), [sym_preproc_undef] = STATE(5204), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4580), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_readonly] = ACTIONS(7563), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7324), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(5853), + [anon_sym_COMMA] = ACTIONS(5853), + [anon_sym_LPAREN] = ACTIONS(5853), + [anon_sym_LT] = ACTIONS(5855), + [anon_sym_GT] = ACTIONS(5855), + [anon_sym_where] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5855), + [anon_sym_DOT] = ACTIONS(5855), + [anon_sym_STAR] = ACTIONS(5853), + [anon_sym_switch] = ACTIONS(5853), + [anon_sym_DOT_DOT] = ACTIONS(5853), + [anon_sym_LT_EQ] = ACTIONS(5853), + [anon_sym_GT_EQ] = ACTIONS(5853), + [anon_sym_and] = ACTIONS(5853), + [anon_sym_or] = ACTIONS(5855), + [anon_sym_EQ_EQ] = ACTIONS(5853), + [anon_sym_BANG_EQ] = ACTIONS(5853), + [anon_sym_AMP_AMP] = ACTIONS(5853), + [anon_sym_PIPE_PIPE] = ACTIONS(5853), + [anon_sym_AMP] = ACTIONS(5855), + [sym_op_bitwise_or] = ACTIONS(5855), + [anon_sym_CARET] = ACTIONS(5853), + [sym_op_left_shift] = ACTIONS(5853), + [sym_op_right_shift] = ACTIONS(5855), + [sym_op_unsigned_right_shift] = ACTIONS(5853), + [anon_sym_PLUS] = ACTIONS(5855), + [anon_sym_DASH] = ACTIONS(5855), + [sym_op_divide] = ACTIONS(5855), + [sym_op_modulo] = ACTIONS(5853), + [sym_op_coalescing] = ACTIONS(5853), + [anon_sym_BANG] = ACTIONS(5855), + [anon_sym_PLUS_PLUS] = ACTIONS(5853), + [anon_sym_DASH_DASH] = ACTIONS(5853), + [anon_sym_from] = ACTIONS(5853), + [anon_sym_into] = ACTIONS(5853), + [anon_sym_join] = ACTIONS(5853), + [anon_sym_let] = ACTIONS(5853), + [anon_sym_orderby] = ACTIONS(5853), + [anon_sym_ascending] = ACTIONS(5853), + [anon_sym_descending] = ACTIONS(5853), + [anon_sym_group] = ACTIONS(5853), + [anon_sym_select] = ACTIONS(5853), + [anon_sym_as] = ACTIONS(5855), + [anon_sym_is] = ACTIONS(5853), + [anon_sym_DASH_GT] = ACTIONS(5853), + [anon_sym_with] = ACTIONS(5853), + [sym_grit_metavariable] = ACTIONS(5853), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -653183,6 +644637,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5205] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6424), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5205), [sym_preproc_endregion] = STATE(5205), [sym_preproc_line] = STATE(5205), @@ -653192,53 +644664,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5205), [sym_preproc_define] = STATE(5205), [sym_preproc_undef] = STATE(5205), - [anon_sym_LBRACK] = ACTIONS(7025), - [anon_sym_COMMA] = ACTIONS(7025), - [anon_sym_LPAREN] = ACTIONS(7025), - [anon_sym_LT] = ACTIONS(7027), - [anon_sym_GT] = ACTIONS(7027), - [anon_sym_where] = ACTIONS(7025), - [anon_sym_QMARK] = ACTIONS(7027), - [anon_sym_BANG] = ACTIONS(7027), - [anon_sym_PLUS_PLUS] = ACTIONS(7025), - [anon_sym_DASH_DASH] = ACTIONS(7025), - [anon_sym_PLUS] = ACTIONS(7027), - [anon_sym_DASH] = ACTIONS(7027), - [anon_sym_STAR] = ACTIONS(7025), - [anon_sym_SLASH] = ACTIONS(7027), - [anon_sym_PERCENT] = ACTIONS(7025), - [anon_sym_CARET] = ACTIONS(7025), - [anon_sym_PIPE] = ACTIONS(7027), - [anon_sym_AMP] = ACTIONS(7027), - [anon_sym_LT_LT] = ACTIONS(7025), - [anon_sym_GT_GT] = ACTIONS(7027), - [anon_sym_GT_GT_GT] = ACTIONS(7025), - [anon_sym_EQ_EQ] = ACTIONS(7025), - [anon_sym_BANG_EQ] = ACTIONS(7025), - [anon_sym_GT_EQ] = ACTIONS(7025), - [anon_sym_LT_EQ] = ACTIONS(7025), - [anon_sym_DOT] = ACTIONS(7027), - [anon_sym_switch] = ACTIONS(7025), - [anon_sym_DOT_DOT] = ACTIONS(7025), - [anon_sym_and] = ACTIONS(7025), - [anon_sym_or] = ACTIONS(7027), - [anon_sym_AMP_AMP] = ACTIONS(7025), - [anon_sym_PIPE_PIPE] = ACTIONS(7025), - [sym_op_coalescing] = ACTIONS(7025), - [anon_sym_from] = ACTIONS(7025), - [anon_sym_into] = ACTIONS(7025), - [anon_sym_join] = ACTIONS(7025), - [anon_sym_let] = ACTIONS(7025), - [anon_sym_orderby] = ACTIONS(7025), - [anon_sym_ascending] = ACTIONS(7025), - [anon_sym_descending] = ACTIONS(7025), - [anon_sym_group] = ACTIONS(7025), - [anon_sym_select] = ACTIONS(7025), - [anon_sym_as] = ACTIONS(7027), - [anon_sym_is] = ACTIONS(7025), - [anon_sym_DASH_GT] = ACTIONS(7025), - [anon_sym_with] = ACTIONS(7025), - [sym_grit_metavariable] = ACTIONS(7025), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [anon_sym_STAR] = ACTIONS(7208), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -653251,6 +644705,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5206] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6435), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym__join_header] = STATE(7461), + [sym_identifier] = STATE(6084), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5206), [sym_preproc_endregion] = STATE(5206), [sym_preproc_line] = STATE(5206), @@ -653260,53 +644733,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5206), [sym_preproc_define] = STATE(5206), [sym_preproc_undef] = STATE(5206), - [anon_sym_LBRACK] = ACTIONS(7032), - [anon_sym_COMMA] = ACTIONS(7032), - [anon_sym_LPAREN] = ACTIONS(7032), - [anon_sym_LT] = ACTIONS(7034), - [anon_sym_GT] = ACTIONS(7034), - [anon_sym_where] = ACTIONS(7032), - [anon_sym_QMARK] = ACTIONS(7034), - [anon_sym_BANG] = ACTIONS(7034), - [anon_sym_PLUS_PLUS] = ACTIONS(7032), - [anon_sym_DASH_DASH] = ACTIONS(7032), - [anon_sym_PLUS] = ACTIONS(7034), - [anon_sym_DASH] = ACTIONS(7034), - [anon_sym_STAR] = ACTIONS(7032), - [anon_sym_SLASH] = ACTIONS(7034), - [anon_sym_PERCENT] = ACTIONS(7032), - [anon_sym_CARET] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - [anon_sym_LT_LT] = ACTIONS(7032), - [anon_sym_GT_GT] = ACTIONS(7034), - [anon_sym_GT_GT_GT] = ACTIONS(7032), - [anon_sym_EQ_EQ] = ACTIONS(7032), - [anon_sym_BANG_EQ] = ACTIONS(7032), - [anon_sym_GT_EQ] = ACTIONS(7032), - [anon_sym_LT_EQ] = ACTIONS(7032), - [anon_sym_DOT] = ACTIONS(7034), - [anon_sym_switch] = ACTIONS(7032), - [anon_sym_DOT_DOT] = ACTIONS(7032), - [anon_sym_and] = ACTIONS(7032), - [anon_sym_or] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [sym_op_coalescing] = ACTIONS(7032), - [anon_sym_from] = ACTIONS(7032), - [anon_sym_into] = ACTIONS(7032), - [anon_sym_join] = ACTIONS(7032), - [anon_sym_let] = ACTIONS(7032), - [anon_sym_orderby] = ACTIONS(7032), - [anon_sym_ascending] = ACTIONS(7032), - [anon_sym_descending] = ACTIONS(7032), - [anon_sym_group] = ACTIONS(7032), - [anon_sym_select] = ACTIONS(7032), - [anon_sym_as] = ACTIONS(7034), - [anon_sym_is] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [anon_sym_with] = ACTIONS(7032), - [sym_grit_metavariable] = ACTIONS(7032), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -653319,24 +644773,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5207] = { - [sym__name] = STATE(2457), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_type] = STATE(2425), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_identifier] = STATE(2392), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(5207), [sym_preproc_endregion] = STATE(5207), [sym_preproc_line] = STATE(5207), @@ -653346,35 +644782,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5207), [sym_preproc_define] = STATE(5207), [sym_preproc_undef] = STATE(5207), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(7520), - [anon_sym_ref] = ACTIONS(4452), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(7565), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_where] = ACTIONS(4450), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_scoped] = ACTIONS(7268), - [anon_sym_var] = ACTIONS(7270), - [sym_predefined_type] = ACTIONS(7272), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_from] = ACTIONS(4450), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4450), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4450), - [anon_sym_orderby] = ACTIONS(4450), - [anon_sym_ascending] = ACTIONS(4450), - [anon_sym_descending] = ACTIONS(4450), - [anon_sym_group] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [sym_grit_metavariable] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5767), + [anon_sym_COMMA] = ACTIONS(5767), + [anon_sym_LPAREN] = ACTIONS(5767), + [anon_sym_LT] = ACTIONS(5769), + [anon_sym_GT] = ACTIONS(5769), + [anon_sym_where] = ACTIONS(5767), + [anon_sym_QMARK] = ACTIONS(5769), + [anon_sym_DOT] = ACTIONS(5769), + [anon_sym_STAR] = ACTIONS(5767), + [anon_sym_switch] = ACTIONS(5767), + [anon_sym_DOT_DOT] = ACTIONS(5767), + [anon_sym_LT_EQ] = ACTIONS(5767), + [anon_sym_GT_EQ] = ACTIONS(5767), + [anon_sym_and] = ACTIONS(5767), + [anon_sym_or] = ACTIONS(5769), + [anon_sym_EQ_EQ] = ACTIONS(5767), + [anon_sym_BANG_EQ] = ACTIONS(5767), + [anon_sym_AMP_AMP] = ACTIONS(5767), + [anon_sym_PIPE_PIPE] = ACTIONS(5767), + [anon_sym_AMP] = ACTIONS(5769), + [sym_op_bitwise_or] = ACTIONS(5769), + [anon_sym_CARET] = ACTIONS(5767), + [sym_op_left_shift] = ACTIONS(5767), + [sym_op_right_shift] = ACTIONS(5769), + [sym_op_unsigned_right_shift] = ACTIONS(5767), + [anon_sym_PLUS] = ACTIONS(5769), + [anon_sym_DASH] = ACTIONS(5769), + [sym_op_divide] = ACTIONS(5769), + [sym_op_modulo] = ACTIONS(5767), + [sym_op_coalescing] = ACTIONS(5767), + [anon_sym_BANG] = ACTIONS(5769), + [anon_sym_PLUS_PLUS] = ACTIONS(5767), + [anon_sym_DASH_DASH] = ACTIONS(5767), + [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(5769), + [anon_sym_is] = ACTIONS(5767), + [anon_sym_DASH_GT] = ACTIONS(5767), + [anon_sym_with] = ACTIONS(5767), + [sym_grit_metavariable] = ACTIONS(5767), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -653387,6 +644841,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5208] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6335), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7454), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5208), [sym_preproc_endregion] = STATE(5208), [sym_preproc_line] = STATE(5208), @@ -653396,53 +644869,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5208), [sym_preproc_define] = STATE(5208), [sym_preproc_undef] = STATE(5208), - [anon_sym_LBRACK] = ACTIONS(6114), - [anon_sym_COMMA] = ACTIONS(6114), - [anon_sym_LPAREN] = ACTIONS(6114), - [anon_sym_LT] = ACTIONS(6116), - [anon_sym_GT] = ACTIONS(6116), - [anon_sym_where] = ACTIONS(6114), - [anon_sym_QMARK] = ACTIONS(6116), - [anon_sym_BANG] = ACTIONS(6116), - [anon_sym_PLUS_PLUS] = ACTIONS(6114), - [anon_sym_DASH_DASH] = ACTIONS(6114), - [anon_sym_PLUS] = ACTIONS(6116), - [anon_sym_DASH] = ACTIONS(6116), - [anon_sym_STAR] = ACTIONS(6114), - [anon_sym_SLASH] = ACTIONS(6116), - [anon_sym_PERCENT] = ACTIONS(6114), - [anon_sym_CARET] = ACTIONS(6114), - [anon_sym_PIPE] = ACTIONS(6116), - [anon_sym_AMP] = ACTIONS(6116), - [anon_sym_LT_LT] = ACTIONS(6114), - [anon_sym_GT_GT] = ACTIONS(6116), - [anon_sym_GT_GT_GT] = ACTIONS(6114), - [anon_sym_EQ_EQ] = ACTIONS(6114), - [anon_sym_BANG_EQ] = ACTIONS(6114), - [anon_sym_GT_EQ] = ACTIONS(6114), - [anon_sym_LT_EQ] = ACTIONS(6114), - [anon_sym_DOT] = ACTIONS(6116), - [anon_sym_switch] = ACTIONS(6114), - [anon_sym_DOT_DOT] = ACTIONS(6114), - [anon_sym_and] = ACTIONS(6114), - [anon_sym_or] = ACTIONS(6116), - [anon_sym_AMP_AMP] = ACTIONS(6114), - [anon_sym_PIPE_PIPE] = ACTIONS(6114), - [sym_op_coalescing] = ACTIONS(6114), - [anon_sym_from] = ACTIONS(6114), - [anon_sym_into] = ACTIONS(6114), - [anon_sym_join] = ACTIONS(6114), - [anon_sym_let] = ACTIONS(6114), - [anon_sym_orderby] = ACTIONS(6114), - [anon_sym_ascending] = ACTIONS(6114), - [anon_sym_descending] = ACTIONS(6114), - [anon_sym_group] = ACTIONS(6114), - [anon_sym_select] = ACTIONS(6114), - [anon_sym_as] = ACTIONS(6116), - [anon_sym_is] = ACTIONS(6114), - [anon_sym_DASH_GT] = ACTIONS(6114), - [anon_sym_with] = ACTIONS(6114), - [sym_grit_metavariable] = ACTIONS(6114), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3900), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(7834), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -653455,6 +644909,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5209] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6335), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7566), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5209), [sym_preproc_endregion] = STATE(5209), [sym_preproc_line] = STATE(5209), @@ -653464,53 +644937,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5209), [sym_preproc_define] = STATE(5209), [sym_preproc_undef] = STATE(5209), - [anon_sym_LBRACK] = ACTIONS(6063), - [anon_sym_COMMA] = ACTIONS(6063), - [anon_sym_LPAREN] = ACTIONS(6063), - [anon_sym_LT] = ACTIONS(6065), - [anon_sym_GT] = ACTIONS(6065), - [anon_sym_where] = ACTIONS(6063), - [anon_sym_QMARK] = ACTIONS(6065), - [anon_sym_BANG] = ACTIONS(6065), - [anon_sym_PLUS_PLUS] = ACTIONS(6063), - [anon_sym_DASH_DASH] = ACTIONS(6063), - [anon_sym_PLUS] = ACTIONS(6065), - [anon_sym_DASH] = ACTIONS(6065), - [anon_sym_STAR] = ACTIONS(6063), - [anon_sym_SLASH] = ACTIONS(6065), - [anon_sym_PERCENT] = ACTIONS(6063), - [anon_sym_CARET] = ACTIONS(6063), - [anon_sym_PIPE] = ACTIONS(6065), - [anon_sym_AMP] = ACTIONS(6065), - [anon_sym_LT_LT] = ACTIONS(6063), - [anon_sym_GT_GT] = ACTIONS(6065), - [anon_sym_GT_GT_GT] = ACTIONS(6063), - [anon_sym_EQ_EQ] = ACTIONS(6063), - [anon_sym_BANG_EQ] = ACTIONS(6063), - [anon_sym_GT_EQ] = ACTIONS(6063), - [anon_sym_LT_EQ] = ACTIONS(6063), - [anon_sym_DOT] = ACTIONS(6065), - [anon_sym_switch] = ACTIONS(6063), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_and] = ACTIONS(6063), - [anon_sym_or] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6063), - [anon_sym_PIPE_PIPE] = ACTIONS(6063), - [sym_op_coalescing] = ACTIONS(6063), - [anon_sym_from] = ACTIONS(6063), - [anon_sym_into] = ACTIONS(6063), - [anon_sym_join] = ACTIONS(6063), - [anon_sym_let] = ACTIONS(6063), - [anon_sym_orderby] = ACTIONS(6063), - [anon_sym_ascending] = ACTIONS(6063), - [anon_sym_descending] = ACTIONS(6063), - [anon_sym_group] = ACTIONS(6063), - [anon_sym_select] = ACTIONS(6063), - [anon_sym_as] = ACTIONS(6065), - [anon_sym_is] = ACTIONS(6063), - [anon_sym_DASH_GT] = ACTIONS(6063), - [anon_sym_with] = ACTIONS(6063), - [sym_grit_metavariable] = ACTIONS(6063), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3900), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(7834), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -653523,24 +644977,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5210] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4753), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3290), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5210), [sym_preproc_endregion] = STATE(5210), [sym_preproc_line] = STATE(5210), @@ -653550,35 +645004,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5210), [sym_preproc_define] = STATE(5210), [sym_preproc_undef] = STATE(5210), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4386), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_readonly] = ACTIONS(7567), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7276), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4212), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_readonly] = ACTIONS(8031), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4385), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -653600,53 +645054,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5211), [sym_preproc_define] = STATE(5211), [sym_preproc_undef] = STATE(5211), - [anon_sym_EQ] = ACTIONS(7569), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7571), - [anon_sym_DASH_EQ] = ACTIONS(7571), - [anon_sym_STAR_EQ] = ACTIONS(7571), - [anon_sym_SLASH_EQ] = ACTIONS(7571), - [anon_sym_PERCENT_EQ] = ACTIONS(7571), - [anon_sym_AMP_EQ] = ACTIONS(7571), - [anon_sym_CARET_EQ] = ACTIONS(7571), - [anon_sym_PIPE_EQ] = ACTIONS(7571), - [anon_sym_LT_LT_EQ] = ACTIONS(7571), - [anon_sym_GT_GT_EQ] = ACTIONS(7571), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7571), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7571), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5915), + [anon_sym_COMMA] = ACTIONS(5915), + [anon_sym_LPAREN] = ACTIONS(5915), + [anon_sym_LT] = ACTIONS(5917), + [anon_sym_GT] = ACTIONS(5917), + [anon_sym_where] = ACTIONS(5915), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5917), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_switch] = ACTIONS(5915), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_LT_EQ] = ACTIONS(5915), + [anon_sym_GT_EQ] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5915), + [anon_sym_or] = ACTIONS(5917), + [anon_sym_EQ_EQ] = ACTIONS(5915), + [anon_sym_BANG_EQ] = ACTIONS(5915), + [anon_sym_AMP_AMP] = ACTIONS(5915), + [anon_sym_PIPE_PIPE] = ACTIONS(5915), + [anon_sym_AMP] = ACTIONS(5917), + [sym_op_bitwise_or] = ACTIONS(5917), + [anon_sym_CARET] = ACTIONS(5915), + [sym_op_left_shift] = ACTIONS(5915), + [sym_op_right_shift] = ACTIONS(5917), + [sym_op_unsigned_right_shift] = ACTIONS(5915), + [anon_sym_PLUS] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5917), + [sym_op_divide] = ACTIONS(5917), + [sym_op_modulo] = ACTIONS(5915), + [sym_op_coalescing] = ACTIONS(5915), + [anon_sym_BANG] = ACTIONS(5917), + [anon_sym_PLUS_PLUS] = ACTIONS(5915), + [anon_sym_DASH_DASH] = ACTIONS(5915), + [anon_sym_from] = ACTIONS(5915), + [anon_sym_into] = ACTIONS(5915), + [anon_sym_join] = ACTIONS(5915), + [anon_sym_let] = ACTIONS(5915), + [anon_sym_orderby] = ACTIONS(5915), + [anon_sym_ascending] = ACTIONS(5915), + [anon_sym_descending] = ACTIONS(5915), + [anon_sym_group] = ACTIONS(5915), + [anon_sym_select] = ACTIONS(5915), + [anon_sym_as] = ACTIONS(5917), + [anon_sym_is] = ACTIONS(5915), + [anon_sym_DASH_GT] = ACTIONS(5915), + [anon_sym_with] = ACTIONS(5915), + [sym_grit_metavariable] = ACTIONS(5915), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -653668,53 +645122,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5212), [sym_preproc_define] = STATE(5212), [sym_preproc_undef] = STATE(5212), - [anon_sym_LBRACK] = ACTIONS(6192), - [anon_sym_COMMA] = ACTIONS(6192), - [anon_sym_LPAREN] = ACTIONS(6192), - [anon_sym_LT] = ACTIONS(6194), - [anon_sym_GT] = ACTIONS(6194), - [anon_sym_where] = ACTIONS(6192), - [anon_sym_QMARK] = ACTIONS(6194), - [anon_sym_BANG] = ACTIONS(6194), - [anon_sym_PLUS_PLUS] = ACTIONS(6192), - [anon_sym_DASH_DASH] = ACTIONS(6192), - [anon_sym_PLUS] = ACTIONS(6194), - [anon_sym_DASH] = ACTIONS(6194), - [anon_sym_STAR] = ACTIONS(6192), - [anon_sym_SLASH] = ACTIONS(6194), - [anon_sym_PERCENT] = ACTIONS(6192), - [anon_sym_CARET] = ACTIONS(6192), - [anon_sym_PIPE] = ACTIONS(6194), - [anon_sym_AMP] = ACTIONS(6194), - [anon_sym_LT_LT] = ACTIONS(6192), - [anon_sym_GT_GT] = ACTIONS(6194), - [anon_sym_GT_GT_GT] = ACTIONS(6192), - [anon_sym_EQ_EQ] = ACTIONS(6192), - [anon_sym_BANG_EQ] = ACTIONS(6192), - [anon_sym_GT_EQ] = ACTIONS(6192), - [anon_sym_LT_EQ] = ACTIONS(6192), - [anon_sym_DOT] = ACTIONS(6194), - [anon_sym_switch] = ACTIONS(6192), - [anon_sym_DOT_DOT] = ACTIONS(6192), - [anon_sym_and] = ACTIONS(6192), - [anon_sym_or] = ACTIONS(6194), - [anon_sym_AMP_AMP] = ACTIONS(6192), - [anon_sym_PIPE_PIPE] = ACTIONS(6192), - [sym_op_coalescing] = ACTIONS(6192), - [anon_sym_from] = ACTIONS(6192), - [anon_sym_into] = ACTIONS(6192), - [anon_sym_join] = ACTIONS(6192), - [anon_sym_let] = ACTIONS(6192), - [anon_sym_orderby] = ACTIONS(6192), - [anon_sym_ascending] = ACTIONS(6192), - [anon_sym_descending] = ACTIONS(6192), - [anon_sym_group] = ACTIONS(6192), - [anon_sym_select] = ACTIONS(6192), - [anon_sym_as] = ACTIONS(6194), - [anon_sym_is] = ACTIONS(6192), - [anon_sym_DASH_GT] = ACTIONS(6192), - [anon_sym_with] = ACTIONS(6192), - [sym_grit_metavariable] = ACTIONS(6192), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COMMA] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_where] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5508), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_or] = ACTIONS(5510), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5508), + [sym_op_left_shift] = ACTIONS(5508), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5508), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5508), + [sym_op_coalescing] = ACTIONS(5508), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_from] = ACTIONS(5508), + [anon_sym_into] = ACTIONS(5508), + [anon_sym_join] = ACTIONS(5508), + [anon_sym_let] = ACTIONS(5508), + [anon_sym_orderby] = ACTIONS(5508), + [anon_sym_ascending] = ACTIONS(5508), + [anon_sym_descending] = ACTIONS(5508), + [anon_sym_group] = ACTIONS(5508), + [anon_sym_select] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5510), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), + [sym_grit_metavariable] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -653736,53 +645190,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5213), [sym_preproc_define] = STATE(5213), [sym_preproc_undef] = STATE(5213), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_where] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3373), - [anon_sym_CARET] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3373), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3373), - [anon_sym_EQ_EQ] = ACTIONS(3373), - [anon_sym_BANG_EQ] = ACTIONS(3373), - [anon_sym_GT_EQ] = ACTIONS(3373), - [anon_sym_LT_EQ] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3373), - [anon_sym_and] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_PIPE_PIPE] = ACTIONS(3373), - [sym_op_coalescing] = ACTIONS(3373), - [anon_sym_from] = ACTIONS(3373), - [anon_sym_into] = ACTIONS(3373), - [anon_sym_join] = 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_select] = ACTIONS(3373), - [anon_sym_as] = ACTIONS(3371), - [anon_sym_is] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [sym_grit_metavariable] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(5753), + [anon_sym_COMMA] = ACTIONS(5753), + [anon_sym_LPAREN] = ACTIONS(5753), + [anon_sym_LT] = ACTIONS(5755), + [anon_sym_GT] = ACTIONS(5755), + [anon_sym_where] = ACTIONS(5753), + [anon_sym_QMARK] = ACTIONS(5755), + [anon_sym_DOT] = ACTIONS(5755), + [anon_sym_STAR] = ACTIONS(5753), + [anon_sym_switch] = ACTIONS(5753), + [anon_sym_DOT_DOT] = ACTIONS(5753), + [anon_sym_LT_EQ] = ACTIONS(5753), + [anon_sym_GT_EQ] = ACTIONS(5753), + [anon_sym_and] = ACTIONS(5753), + [anon_sym_or] = ACTIONS(5755), + [anon_sym_EQ_EQ] = ACTIONS(5753), + [anon_sym_BANG_EQ] = ACTIONS(5753), + [anon_sym_AMP_AMP] = ACTIONS(5753), + [anon_sym_PIPE_PIPE] = ACTIONS(5753), + [anon_sym_AMP] = ACTIONS(5755), + [sym_op_bitwise_or] = ACTIONS(5755), + [anon_sym_CARET] = ACTIONS(5753), + [sym_op_left_shift] = ACTIONS(5753), + [sym_op_right_shift] = ACTIONS(5755), + [sym_op_unsigned_right_shift] = ACTIONS(5753), + [anon_sym_PLUS] = ACTIONS(5755), + [anon_sym_DASH] = ACTIONS(5755), + [sym_op_divide] = ACTIONS(5755), + [sym_op_modulo] = ACTIONS(5753), + [sym_op_coalescing] = ACTIONS(5753), + [anon_sym_BANG] = ACTIONS(5755), + [anon_sym_PLUS_PLUS] = ACTIONS(5753), + [anon_sym_DASH_DASH] = ACTIONS(5753), + [anon_sym_from] = ACTIONS(5753), + [anon_sym_into] = ACTIONS(5753), + [anon_sym_join] = ACTIONS(5753), + [anon_sym_let] = ACTIONS(5753), + [anon_sym_orderby] = ACTIONS(5753), + [anon_sym_ascending] = ACTIONS(5753), + [anon_sym_descending] = ACTIONS(5753), + [anon_sym_group] = ACTIONS(5753), + [anon_sym_select] = ACTIONS(5753), + [anon_sym_as] = ACTIONS(5755), + [anon_sym_is] = ACTIONS(5753), + [anon_sym_DASH_GT] = ACTIONS(5753), + [anon_sym_with] = ACTIONS(5753), + [sym_grit_metavariable] = ACTIONS(5753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -653804,53 +645258,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5214), [sym_preproc_define] = STATE(5214), [sym_preproc_undef] = STATE(5214), - [anon_sym_LBRACK] = ACTIONS(6317), - [anon_sym_COMMA] = ACTIONS(6317), - [anon_sym_LPAREN] = ACTIONS(6317), - [anon_sym_LT] = ACTIONS(6319), - [anon_sym_GT] = ACTIONS(6319), - [anon_sym_where] = ACTIONS(6317), - [anon_sym_QMARK] = ACTIONS(6319), - [anon_sym_BANG] = ACTIONS(6319), - [anon_sym_PLUS_PLUS] = ACTIONS(6317), - [anon_sym_DASH_DASH] = ACTIONS(6317), - [anon_sym_PLUS] = ACTIONS(6319), - [anon_sym_DASH] = ACTIONS(6319), - [anon_sym_STAR] = ACTIONS(6317), - [anon_sym_SLASH] = ACTIONS(6319), - [anon_sym_PERCENT] = ACTIONS(6317), - [anon_sym_CARET] = ACTIONS(6317), - [anon_sym_PIPE] = ACTIONS(6319), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_GT_GT] = ACTIONS(6319), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_EQ_EQ] = ACTIONS(6317), - [anon_sym_BANG_EQ] = ACTIONS(6317), - [anon_sym_GT_EQ] = ACTIONS(6317), - [anon_sym_LT_EQ] = ACTIONS(6317), - [anon_sym_DOT] = ACTIONS(6319), - [anon_sym_switch] = ACTIONS(6317), - [anon_sym_DOT_DOT] = ACTIONS(6317), - [anon_sym_and] = ACTIONS(6317), - [anon_sym_or] = ACTIONS(6319), - [anon_sym_AMP_AMP] = ACTIONS(6317), - [anon_sym_PIPE_PIPE] = ACTIONS(6317), - [sym_op_coalescing] = ACTIONS(6317), - [anon_sym_from] = ACTIONS(6317), - [anon_sym_into] = ACTIONS(6317), - [anon_sym_join] = ACTIONS(6317), - [anon_sym_let] = ACTIONS(6317), - [anon_sym_orderby] = ACTIONS(6317), - [anon_sym_ascending] = ACTIONS(6317), - [anon_sym_descending] = ACTIONS(6317), - [anon_sym_group] = ACTIONS(6317), - [anon_sym_select] = ACTIONS(6317), - [anon_sym_as] = ACTIONS(6319), - [anon_sym_is] = ACTIONS(6317), - [anon_sym_DASH_GT] = ACTIONS(6317), - [anon_sym_with] = ACTIONS(6317), - [sym_grit_metavariable] = ACTIONS(6317), + [anon_sym_LBRACK] = ACTIONS(5865), + [anon_sym_COMMA] = ACTIONS(5865), + [anon_sym_LPAREN] = ACTIONS(5865), + [anon_sym_LT] = ACTIONS(5867), + [anon_sym_GT] = ACTIONS(5867), + [anon_sym_where] = ACTIONS(5865), + [anon_sym_QMARK] = ACTIONS(5867), + [anon_sym_DOT] = ACTIONS(5867), + [anon_sym_STAR] = ACTIONS(5865), + [anon_sym_switch] = ACTIONS(5865), + [anon_sym_DOT_DOT] = ACTIONS(5865), + [anon_sym_LT_EQ] = ACTIONS(5865), + [anon_sym_GT_EQ] = ACTIONS(5865), + [anon_sym_and] = ACTIONS(5865), + [anon_sym_or] = ACTIONS(5867), + [anon_sym_EQ_EQ] = ACTIONS(5865), + [anon_sym_BANG_EQ] = ACTIONS(5865), + [anon_sym_AMP_AMP] = ACTIONS(5865), + [anon_sym_PIPE_PIPE] = ACTIONS(5865), + [anon_sym_AMP] = ACTIONS(5867), + [sym_op_bitwise_or] = ACTIONS(5867), + [anon_sym_CARET] = ACTIONS(5865), + [sym_op_left_shift] = ACTIONS(5865), + [sym_op_right_shift] = ACTIONS(5867), + [sym_op_unsigned_right_shift] = ACTIONS(5865), + [anon_sym_PLUS] = ACTIONS(5867), + [anon_sym_DASH] = ACTIONS(5867), + [sym_op_divide] = ACTIONS(5867), + [sym_op_modulo] = ACTIONS(5865), + [sym_op_coalescing] = ACTIONS(5865), + [anon_sym_BANG] = ACTIONS(5867), + [anon_sym_PLUS_PLUS] = ACTIONS(5865), + [anon_sym_DASH_DASH] = ACTIONS(5865), + [anon_sym_from] = ACTIONS(5865), + [anon_sym_into] = ACTIONS(5865), + [anon_sym_join] = ACTIONS(5865), + [anon_sym_let] = ACTIONS(5865), + [anon_sym_orderby] = ACTIONS(5865), + [anon_sym_ascending] = ACTIONS(5865), + [anon_sym_descending] = ACTIONS(5865), + [anon_sym_group] = ACTIONS(5865), + [anon_sym_select] = ACTIONS(5865), + [anon_sym_as] = ACTIONS(5867), + [anon_sym_is] = ACTIONS(5865), + [anon_sym_DASH_GT] = ACTIONS(5865), + [anon_sym_with] = ACTIONS(5865), + [sym_grit_metavariable] = ACTIONS(5865), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -653863,25 +645317,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5215] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6355), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7443), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5215), [sym_preproc_endregion] = STATE(5215), [sym_preproc_line] = STATE(5215), @@ -653891,18 +645326,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5215), [sym_preproc_define] = STATE(5215), [sym_preproc_undef] = STATE(5215), + [anon_sym_LBRACK] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5869), + [anon_sym_LT] = ACTIONS(5871), + [anon_sym_GT] = ACTIONS(5871), + [anon_sym_where] = ACTIONS(5869), + [anon_sym_QMARK] = ACTIONS(5871), + [anon_sym_DOT] = ACTIONS(5871), + [anon_sym_STAR] = ACTIONS(5869), + [anon_sym_switch] = ACTIONS(5869), + [anon_sym_DOT_DOT] = ACTIONS(5869), + [anon_sym_LT_EQ] = ACTIONS(5869), + [anon_sym_GT_EQ] = ACTIONS(5869), + [anon_sym_and] = ACTIONS(5869), + [anon_sym_or] = ACTIONS(5871), + [anon_sym_EQ_EQ] = ACTIONS(5869), + [anon_sym_BANG_EQ] = ACTIONS(5869), + [anon_sym_AMP_AMP] = ACTIONS(5869), + [anon_sym_PIPE_PIPE] = ACTIONS(5869), + [anon_sym_AMP] = ACTIONS(5871), + [sym_op_bitwise_or] = ACTIONS(5871), + [anon_sym_CARET] = ACTIONS(5869), + [sym_op_left_shift] = ACTIONS(5869), + [sym_op_right_shift] = ACTIONS(5871), + [sym_op_unsigned_right_shift] = ACTIONS(5869), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5871), + [sym_op_divide] = ACTIONS(5871), + [sym_op_modulo] = ACTIONS(5869), + [sym_op_coalescing] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [anon_sym_PLUS_PLUS] = ACTIONS(5869), + [anon_sym_DASH_DASH] = ACTIONS(5869), + [anon_sym_from] = ACTIONS(5869), + [anon_sym_into] = ACTIONS(5869), + [anon_sym_join] = ACTIONS(5869), + [anon_sym_let] = ACTIONS(5869), + [anon_sym_orderby] = ACTIONS(5869), + [anon_sym_ascending] = ACTIONS(5869), + [anon_sym_descending] = ACTIONS(5869), + [anon_sym_group] = ACTIONS(5869), + [anon_sym_select] = ACTIONS(5869), + [anon_sym_as] = ACTIONS(5871), + [anon_sym_is] = ACTIONS(5869), + [anon_sym_DASH_GT] = ACTIONS(5869), + [anon_sym_with] = ACTIONS(5869), + [sym_grit_metavariable] = ACTIONS(5869), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5216] = { + [sym_variable_declaration] = STATE(7954), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6216), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(5216), + [sym_preproc_endregion] = STATE(5216), + [sym_preproc_line] = STATE(5216), + [sym_preproc_pragma] = STATE(5216), + [sym_preproc_nullable] = STATE(5216), + [sym_preproc_error] = STATE(5216), + [sym_preproc_warning] = STATE(5216), + [sym_preproc_define] = STATE(5216), + [sym_preproc_undef] = STATE(5216), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3900), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7298), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -653918,75 +645440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [5216] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4705), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), - [sym_preproc_region] = STATE(5216), - [sym_preproc_endregion] = STATE(5216), - [sym_preproc_line] = STATE(5216), - [sym_preproc_pragma] = STATE(5216), - [sym_preproc_nullable] = STATE(5216), - [sym_preproc_error] = STATE(5216), - [sym_preproc_warning] = STATE(5216), - [sym_preproc_define] = STATE(5216), - [sym_preproc_undef] = STATE(5216), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_ref] = ACTIONS(4493), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_readonly] = ACTIONS(7575), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7278), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -654008,53 +645462,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5217), [sym_preproc_define] = STATE(5217), [sym_preproc_undef] = STATE(5217), - [anon_sym_LBRACK] = ACTIONS(6051), - [anon_sym_COMMA] = ACTIONS(6051), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_where] = ACTIONS(6051), - [anon_sym_QMARK] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PLUS_PLUS] = ACTIONS(6051), - [anon_sym_DASH_DASH] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6053), - [anon_sym_DASH] = ACTIONS(6053), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6053), - [anon_sym_PERCENT] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_AMP] = ACTIONS(6053), - [anon_sym_LT_LT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6053), - [anon_sym_GT_GT_GT] = ACTIONS(6051), - [anon_sym_EQ_EQ] = ACTIONS(6051), - [anon_sym_BANG_EQ] = ACTIONS(6051), - [anon_sym_GT_EQ] = ACTIONS(6051), - [anon_sym_LT_EQ] = ACTIONS(6051), - [anon_sym_DOT] = ACTIONS(6053), - [anon_sym_switch] = ACTIONS(6051), - [anon_sym_DOT_DOT] = ACTIONS(6051), - [anon_sym_and] = ACTIONS(6051), - [anon_sym_or] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym_op_coalescing] = ACTIONS(6051), - [anon_sym_from] = ACTIONS(6051), - [anon_sym_into] = ACTIONS(6051), - [anon_sym_join] = ACTIONS(6051), - [anon_sym_let] = ACTIONS(6051), - [anon_sym_orderby] = ACTIONS(6051), - [anon_sym_ascending] = ACTIONS(6051), - [anon_sym_descending] = ACTIONS(6051), - [anon_sym_group] = ACTIONS(6051), - [anon_sym_select] = ACTIONS(6051), - [anon_sym_as] = ACTIONS(6053), - [anon_sym_is] = ACTIONS(6051), - [anon_sym_DASH_GT] = ACTIONS(6051), - [anon_sym_with] = ACTIONS(6051), - [sym_grit_metavariable] = ACTIONS(6051), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(6519), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -654067,24 +645521,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5218] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4705), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), [sym_preproc_region] = STATE(5218), [sym_preproc_endregion] = STATE(5218), [sym_preproc_line] = STATE(5218), @@ -654094,35 +645530,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5218), [sym_preproc_define] = STATE(5218), [sym_preproc_undef] = STATE(5218), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_ref] = ACTIONS(4518), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_readonly] = ACTIONS(7577), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7328), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(6019), + [anon_sym_COMMA] = ACTIONS(6019), + [anon_sym_LPAREN] = ACTIONS(6019), + [anon_sym_LT] = ACTIONS(6021), + [anon_sym_GT] = ACTIONS(6021), + [anon_sym_where] = ACTIONS(6019), + [anon_sym_QMARK] = ACTIONS(6021), + [anon_sym_DOT] = ACTIONS(6021), + [anon_sym_STAR] = ACTIONS(6019), + [anon_sym_switch] = ACTIONS(6019), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_LT_EQ] = ACTIONS(6019), + [anon_sym_GT_EQ] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(6019), + [anon_sym_or] = ACTIONS(6021), + [anon_sym_EQ_EQ] = ACTIONS(6019), + [anon_sym_BANG_EQ] = ACTIONS(6019), + [anon_sym_AMP_AMP] = ACTIONS(6019), + [anon_sym_PIPE_PIPE] = ACTIONS(6019), + [anon_sym_AMP] = ACTIONS(6021), + [sym_op_bitwise_or] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6019), + [sym_op_left_shift] = ACTIONS(6019), + [sym_op_right_shift] = ACTIONS(6021), + [sym_op_unsigned_right_shift] = ACTIONS(6019), + [anon_sym_PLUS] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [sym_op_divide] = ACTIONS(6021), + [sym_op_modulo] = ACTIONS(6019), + [sym_op_coalescing] = ACTIONS(6019), + [anon_sym_BANG] = ACTIONS(6021), + [anon_sym_PLUS_PLUS] = ACTIONS(6019), + [anon_sym_DASH_DASH] = ACTIONS(6019), + [anon_sym_from] = ACTIONS(6019), + [anon_sym_into] = ACTIONS(6019), + [anon_sym_join] = ACTIONS(6019), + [anon_sym_let] = ACTIONS(6019), + [anon_sym_orderby] = ACTIONS(6019), + [anon_sym_ascending] = ACTIONS(6019), + [anon_sym_descending] = ACTIONS(6019), + [anon_sym_group] = ACTIONS(6019), + [anon_sym_select] = ACTIONS(6019), + [anon_sym_as] = ACTIONS(6021), + [anon_sym_is] = ACTIONS(6019), + [anon_sym_DASH_GT] = ACTIONS(6019), + [anon_sym_with] = ACTIONS(6019), + [sym_grit_metavariable] = ACTIONS(6019), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -654135,25 +645589,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5219] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6355), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7432), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4062), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5219), [sym_preproc_endregion] = STATE(5219), [sym_preproc_line] = STATE(5219), @@ -654163,34 +645616,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5219), [sym_preproc_define] = STATE(5219), [sym_preproc_undef] = STATE(5219), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3938), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7524), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4476), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_readonly] = ACTIONS(8033), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7520), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -654212,53 +645666,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5220), [sym_preproc_define] = STATE(5220), [sym_preproc_undef] = STATE(5220), - [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), - [sym_op_coalescing] = ACTIONS(6003), - [anon_sym_from] = ACTIONS(6003), - [anon_sym_into] = ACTIONS(6003), - [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), - [sym_grit_metavariable] = ACTIONS(6003), + [anon_sym_LBRACK] = ACTIONS(5987), + [anon_sym_COMMA] = ACTIONS(5987), + [anon_sym_LPAREN] = ACTIONS(5987), + [anon_sym_LT] = ACTIONS(5989), + [anon_sym_GT] = ACTIONS(5989), + [anon_sym_where] = ACTIONS(5987), + [anon_sym_QMARK] = ACTIONS(5989), + [anon_sym_DOT] = ACTIONS(5989), + [anon_sym_STAR] = ACTIONS(5987), + [anon_sym_switch] = ACTIONS(5987), + [anon_sym_DOT_DOT] = ACTIONS(5987), + [anon_sym_LT_EQ] = ACTIONS(5987), + [anon_sym_GT_EQ] = ACTIONS(5987), + [anon_sym_and] = ACTIONS(5987), + [anon_sym_or] = ACTIONS(5989), + [anon_sym_EQ_EQ] = ACTIONS(5987), + [anon_sym_BANG_EQ] = ACTIONS(5987), + [anon_sym_AMP_AMP] = ACTIONS(5987), + [anon_sym_PIPE_PIPE] = ACTIONS(5987), + [anon_sym_AMP] = ACTIONS(5989), + [sym_op_bitwise_or] = ACTIONS(5989), + [anon_sym_CARET] = ACTIONS(5987), + [sym_op_left_shift] = ACTIONS(5987), + [sym_op_right_shift] = ACTIONS(5989), + [sym_op_unsigned_right_shift] = ACTIONS(5987), + [anon_sym_PLUS] = ACTIONS(5989), + [anon_sym_DASH] = ACTIONS(5989), + [sym_op_divide] = ACTIONS(5989), + [sym_op_modulo] = ACTIONS(5987), + [sym_op_coalescing] = ACTIONS(5987), + [anon_sym_BANG] = ACTIONS(5989), + [anon_sym_PLUS_PLUS] = ACTIONS(5987), + [anon_sym_DASH_DASH] = ACTIONS(5987), + [anon_sym_from] = ACTIONS(5987), + [anon_sym_into] = ACTIONS(5987), + [anon_sym_join] = ACTIONS(5987), + [anon_sym_let] = ACTIONS(5987), + [anon_sym_orderby] = ACTIONS(5987), + [anon_sym_ascending] = ACTIONS(5987), + [anon_sym_descending] = ACTIONS(5987), + [anon_sym_group] = ACTIONS(5987), + [anon_sym_select] = ACTIONS(5987), + [anon_sym_as] = ACTIONS(5989), + [anon_sym_is] = ACTIONS(5987), + [anon_sym_DASH_GT] = ACTIONS(5987), + [anon_sym_with] = ACTIONS(5987), + [sym_grit_metavariable] = ACTIONS(5987), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -654271,24 +645725,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5221] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4705), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), + [sym__name] = STATE(6035), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5924), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5221), [sym_preproc_endregion] = STATE(5221), [sym_preproc_line] = STATE(5221), @@ -654298,35 +645752,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5221), [sym_preproc_define] = STATE(5221), [sym_preproc_undef] = STATE(5221), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_ref] = ACTIONS(4522), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_readonly] = ACTIONS(7579), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7254), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3978), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(3147), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8035), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -654348,53 +645802,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5222), [sym_preproc_define] = STATE(5222), [sym_preproc_undef] = STATE(5222), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_where] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3201), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_GT_EQ] = ACTIONS(3201), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_op_coalescing] = ACTIONS(3201), - [anon_sym_from] = ACTIONS(3201), - [anon_sym_into] = ACTIONS(3201), - [anon_sym_join] = 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_select] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_with] = ACTIONS(3201), - [sym_grit_metavariable] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_COMMA] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(8037), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_GT] = ACTIONS(2281), + [anon_sym_where] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(2281), + [anon_sym_DOT] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(2283), + [anon_sym_switch] = ACTIONS(2283), + [anon_sym_DOT_DOT] = ACTIONS(2283), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_and] = ACTIONS(2283), + [anon_sym_or] = ACTIONS(2281), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_AMP_AMP] = ACTIONS(2283), + [anon_sym_PIPE_PIPE] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2281), + [sym_op_bitwise_or] = ACTIONS(2281), + [anon_sym_CARET] = ACTIONS(2283), + [sym_op_left_shift] = ACTIONS(2283), + [sym_op_right_shift] = ACTIONS(2281), + [sym_op_unsigned_right_shift] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [sym_op_divide] = ACTIONS(2281), + [sym_op_modulo] = ACTIONS(2283), + [sym_op_coalescing] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2283), + [anon_sym_from] = ACTIONS(2283), + [anon_sym_into] = ACTIONS(2283), + [anon_sym_join] = ACTIONS(2283), + [anon_sym_let] = ACTIONS(2283), + [anon_sym_orderby] = ACTIONS(2283), + [anon_sym_ascending] = ACTIONS(2283), + [anon_sym_descending] = ACTIONS(2283), + [anon_sym_group] = ACTIONS(2283), + [anon_sym_select] = ACTIONS(2283), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_is] = ACTIONS(2283), + [anon_sym_DASH_GT] = ACTIONS(2283), + [anon_sym_with] = ACTIONS(2283), + [sym_grit_metavariable] = ACTIONS(2283), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -654407,25 +645861,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5223] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6388), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym__join_header] = STATE(7557), - [sym_identifier] = STATE(6085), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5223), [sym_preproc_endregion] = STATE(5223), [sym_preproc_line] = STATE(5223), @@ -654435,18 +645870,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5223), [sym_preproc_define] = STATE(5223), [sym_preproc_undef] = STATE(5223), + [anon_sym_LBRACK] = ACTIONS(5971), + [anon_sym_COMMA] = ACTIONS(5971), + [anon_sym_LPAREN] = ACTIONS(5971), + [anon_sym_LT] = ACTIONS(5973), + [anon_sym_GT] = ACTIONS(5973), + [anon_sym_where] = ACTIONS(5971), + [anon_sym_QMARK] = ACTIONS(5973), + [anon_sym_DOT] = ACTIONS(5973), + [anon_sym_STAR] = ACTIONS(5971), + [anon_sym_switch] = ACTIONS(5971), + [anon_sym_DOT_DOT] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_and] = ACTIONS(5971), + [anon_sym_or] = ACTIONS(5973), + [anon_sym_EQ_EQ] = ACTIONS(5971), + [anon_sym_BANG_EQ] = ACTIONS(5971), + [anon_sym_AMP_AMP] = ACTIONS(5971), + [anon_sym_PIPE_PIPE] = ACTIONS(5971), + [anon_sym_AMP] = ACTIONS(5973), + [sym_op_bitwise_or] = ACTIONS(5973), + [anon_sym_CARET] = ACTIONS(5971), + [sym_op_left_shift] = ACTIONS(5971), + [sym_op_right_shift] = ACTIONS(5973), + [sym_op_unsigned_right_shift] = ACTIONS(5971), + [anon_sym_PLUS] = ACTIONS(5973), + [anon_sym_DASH] = ACTIONS(5973), + [sym_op_divide] = ACTIONS(5973), + [sym_op_modulo] = ACTIONS(5971), + [sym_op_coalescing] = ACTIONS(5971), + [anon_sym_BANG] = ACTIONS(5973), + [anon_sym_PLUS_PLUS] = ACTIONS(5971), + [anon_sym_DASH_DASH] = ACTIONS(5971), + [anon_sym_from] = ACTIONS(5971), + [anon_sym_into] = ACTIONS(5971), + [anon_sym_join] = ACTIONS(5971), + [anon_sym_let] = ACTIONS(5971), + [anon_sym_orderby] = ACTIONS(5971), + [anon_sym_ascending] = ACTIONS(5971), + [anon_sym_descending] = ACTIONS(5971), + [anon_sym_group] = ACTIONS(5971), + [anon_sym_select] = ACTIONS(5971), + [anon_sym_as] = ACTIONS(5973), + [anon_sym_is] = ACTIONS(5971), + [anon_sym_DASH_GT] = ACTIONS(5971), + [anon_sym_with] = ACTIONS(5971), + [sym_grit_metavariable] = ACTIONS(5971), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5224] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(5224), + [sym_preproc_endregion] = STATE(5224), + [sym_preproc_line] = STATE(5224), + [sym_preproc_pragma] = STATE(5224), + [sym_preproc_nullable] = STATE(5224), + [sym_preproc_error] = STATE(5224), + [sym_preproc_warning] = STATE(5224), + [sym_preproc_define] = STATE(5224), + [sym_preproc_undef] = STATE(5224), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(3900), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(3001), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), + [anon_sym_scoped] = ACTIONS(7834), + [anon_sym_var] = ACTIONS(5320), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -654462,75 +645984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [5224] = { - [sym__name] = STATE(3024), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(3005), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2821), - [sym_type] = STATE(2823), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7499), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7860), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(3011), - [sym_identifier] = STATE(2700), - [sym__reserved_identifier] = STATE(2781), - [sym_preproc_region] = STATE(5224), - [sym_preproc_endregion] = STATE(5224), - [sym_preproc_line] = STATE(5224), - [sym_preproc_pragma] = STATE(5224), - [sym_preproc_nullable] = STATE(5224), - [sym_preproc_error] = STATE(5224), - [sym_preproc_warning] = STATE(5224), - [sym_preproc_define] = STATE(5224), - [sym_preproc_undef] = STATE(5224), - [sym__identifier_token] = ACTIONS(7581), - [anon_sym_alias] = ACTIONS(7583), - [anon_sym_global] = ACTIONS(7583), - [anon_sym_LPAREN] = ACTIONS(7585), - [anon_sym_ref] = ACTIONS(3946), - [anon_sym_delegate] = ACTIONS(7587), - [anon_sym_readonly] = ACTIONS(3083), - [anon_sym_file] = ACTIONS(7583), - [anon_sym_where] = ACTIONS(7583), - [anon_sym_notnull] = ACTIONS(7583), - [anon_sym_unmanaged] = ACTIONS(7583), - [anon_sym_scoped] = ACTIONS(7589), - [anon_sym_var] = ACTIONS(7591), - [sym_predefined_type] = ACTIONS(7593), - [anon_sym_yield] = ACTIONS(7583), - [anon_sym_when] = ACTIONS(7583), - [anon_sym_from] = ACTIONS(7583), - [anon_sym_into] = ACTIONS(7583), - [anon_sym_join] = ACTIONS(7583), - [anon_sym_on] = ACTIONS(7583), - [anon_sym_equals] = ACTIONS(7583), - [anon_sym_let] = ACTIONS(7583), - [anon_sym_orderby] = ACTIONS(7583), - [anon_sym_ascending] = ACTIONS(7583), - [anon_sym_descending] = ACTIONS(7583), - [anon_sym_group] = ACTIONS(7583), - [anon_sym_by] = ACTIONS(7583), - [anon_sym_select] = ACTIONS(7583), - [sym_grit_metavariable] = ACTIONS(7595), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -654543,24 +645997,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5225] = { - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3755), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), [sym_preproc_region] = STATE(5225), [sym_preproc_endregion] = STATE(5225), [sym_preproc_line] = STATE(5225), @@ -654570,35 +646006,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5225), [sym_preproc_define] = STATE(5225), [sym_preproc_undef] = STATE(5225), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4572), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_readonly] = ACTIONS(7597), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7314), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(5975), + [anon_sym_COMMA] = ACTIONS(5975), + [anon_sym_LPAREN] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5977), + [anon_sym_GT] = ACTIONS(5977), + [anon_sym_where] = ACTIONS(5975), + [anon_sym_QMARK] = ACTIONS(5977), + [anon_sym_DOT] = ACTIONS(5977), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_switch] = ACTIONS(5975), + [anon_sym_DOT_DOT] = ACTIONS(5975), + [anon_sym_LT_EQ] = ACTIONS(5975), + [anon_sym_GT_EQ] = ACTIONS(5975), + [anon_sym_and] = ACTIONS(5975), + [anon_sym_or] = ACTIONS(5977), + [anon_sym_EQ_EQ] = ACTIONS(5975), + [anon_sym_BANG_EQ] = ACTIONS(5975), + [anon_sym_AMP_AMP] = ACTIONS(5975), + [anon_sym_PIPE_PIPE] = ACTIONS(5975), + [anon_sym_AMP] = ACTIONS(5977), + [sym_op_bitwise_or] = ACTIONS(5977), + [anon_sym_CARET] = ACTIONS(5975), + [sym_op_left_shift] = ACTIONS(5975), + [sym_op_right_shift] = ACTIONS(5977), + [sym_op_unsigned_right_shift] = ACTIONS(5975), + [anon_sym_PLUS] = ACTIONS(5977), + [anon_sym_DASH] = ACTIONS(5977), + [sym_op_divide] = ACTIONS(5977), + [sym_op_modulo] = ACTIONS(5975), + [sym_op_coalescing] = ACTIONS(5975), + [anon_sym_BANG] = ACTIONS(5977), + [anon_sym_PLUS_PLUS] = ACTIONS(5975), + [anon_sym_DASH_DASH] = ACTIONS(5975), + [anon_sym_from] = ACTIONS(5975), + [anon_sym_into] = ACTIONS(5975), + [anon_sym_join] = ACTIONS(5975), + [anon_sym_let] = ACTIONS(5975), + [anon_sym_orderby] = ACTIONS(5975), + [anon_sym_ascending] = ACTIONS(5975), + [anon_sym_descending] = ACTIONS(5975), + [anon_sym_group] = ACTIONS(5975), + [anon_sym_select] = ACTIONS(5975), + [anon_sym_as] = ACTIONS(5977), + [anon_sym_is] = ACTIONS(5975), + [anon_sym_DASH_GT] = ACTIONS(5975), + [anon_sym_with] = ACTIONS(5975), + [sym_grit_metavariable] = ACTIONS(5975), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -654620,53 +646074,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5226), [sym_preproc_define] = STATE(5226), [sym_preproc_undef] = STATE(5226), - [anon_sym_LBRACK] = ACTIONS(6231), - [anon_sym_COMMA] = ACTIONS(6231), - [anon_sym_LPAREN] = ACTIONS(6231), - [anon_sym_LT] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6233), - [anon_sym_where] = ACTIONS(6231), - [anon_sym_QMARK] = ACTIONS(6233), - [anon_sym_BANG] = ACTIONS(6233), - [anon_sym_PLUS_PLUS] = ACTIONS(6231), - [anon_sym_DASH_DASH] = ACTIONS(6231), - [anon_sym_PLUS] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6233), - [anon_sym_STAR] = ACTIONS(6231), - [anon_sym_SLASH] = ACTIONS(6233), - [anon_sym_PERCENT] = ACTIONS(6231), - [anon_sym_CARET] = ACTIONS(6231), - [anon_sym_PIPE] = ACTIONS(6233), - [anon_sym_AMP] = ACTIONS(6233), - [anon_sym_LT_LT] = ACTIONS(6231), - [anon_sym_GT_GT] = ACTIONS(6233), - [anon_sym_GT_GT_GT] = ACTIONS(6231), - [anon_sym_EQ_EQ] = ACTIONS(6231), - [anon_sym_BANG_EQ] = ACTIONS(6231), - [anon_sym_GT_EQ] = ACTIONS(6231), - [anon_sym_LT_EQ] = ACTIONS(6231), - [anon_sym_DOT] = ACTIONS(6233), - [anon_sym_switch] = ACTIONS(6231), - [anon_sym_DOT_DOT] = ACTIONS(6231), - [anon_sym_and] = ACTIONS(6231), - [anon_sym_or] = ACTIONS(6233), - [anon_sym_AMP_AMP] = ACTIONS(6231), - [anon_sym_PIPE_PIPE] = ACTIONS(6231), - [sym_op_coalescing] = ACTIONS(6231), - [anon_sym_from] = ACTIONS(6231), - [anon_sym_into] = ACTIONS(6231), - [anon_sym_join] = ACTIONS(6231), - [anon_sym_let] = ACTIONS(6231), - [anon_sym_orderby] = ACTIONS(6231), - [anon_sym_ascending] = ACTIONS(6231), - [anon_sym_descending] = ACTIONS(6231), - [anon_sym_group] = ACTIONS(6231), - [anon_sym_select] = ACTIONS(6231), - [anon_sym_as] = ACTIONS(6233), - [anon_sym_is] = ACTIONS(6231), - [anon_sym_DASH_GT] = ACTIONS(6231), - [anon_sym_with] = ACTIONS(6231), - [sym_grit_metavariable] = ACTIONS(6231), + [anon_sym_LBRACK] = ACTIONS(5919), + [anon_sym_COMMA] = ACTIONS(5919), + [anon_sym_LPAREN] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5921), + [anon_sym_GT] = ACTIONS(5921), + [anon_sym_where] = ACTIONS(5919), + [anon_sym_QMARK] = ACTIONS(5921), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_switch] = ACTIONS(5919), + [anon_sym_DOT_DOT] = ACTIONS(5919), + [anon_sym_LT_EQ] = ACTIONS(5919), + [anon_sym_GT_EQ] = ACTIONS(5919), + [anon_sym_and] = ACTIONS(5919), + [anon_sym_or] = ACTIONS(5921), + [anon_sym_EQ_EQ] = ACTIONS(5919), + [anon_sym_BANG_EQ] = ACTIONS(5919), + [anon_sym_AMP_AMP] = ACTIONS(5919), + [anon_sym_PIPE_PIPE] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5921), + [sym_op_bitwise_or] = ACTIONS(5921), + [anon_sym_CARET] = ACTIONS(5919), + [sym_op_left_shift] = ACTIONS(5919), + [sym_op_right_shift] = ACTIONS(5921), + [sym_op_unsigned_right_shift] = ACTIONS(5919), + [anon_sym_PLUS] = ACTIONS(5921), + [anon_sym_DASH] = ACTIONS(5921), + [sym_op_divide] = ACTIONS(5921), + [sym_op_modulo] = ACTIONS(5919), + [sym_op_coalescing] = ACTIONS(5919), + [anon_sym_BANG] = ACTIONS(5921), + [anon_sym_PLUS_PLUS] = ACTIONS(5919), + [anon_sym_DASH_DASH] = ACTIONS(5919), + [anon_sym_from] = ACTIONS(5919), + [anon_sym_into] = ACTIONS(5919), + [anon_sym_join] = ACTIONS(5919), + [anon_sym_let] = ACTIONS(5919), + [anon_sym_orderby] = ACTIONS(5919), + [anon_sym_ascending] = ACTIONS(5919), + [anon_sym_descending] = ACTIONS(5919), + [anon_sym_group] = ACTIONS(5919), + [anon_sym_select] = ACTIONS(5919), + [anon_sym_as] = ACTIONS(5921), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(5919), + [anon_sym_with] = ACTIONS(5919), + [sym_grit_metavariable] = ACTIONS(5919), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -654688,53 +646142,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5227), [sym_preproc_define] = STATE(5227), [sym_preproc_undef] = STATE(5227), - [anon_sym_LBRACK] = ACTIONS(6249), - [anon_sym_COMMA] = ACTIONS(6249), - [anon_sym_LPAREN] = ACTIONS(6249), - [anon_sym_LT] = ACTIONS(6251), - [anon_sym_GT] = ACTIONS(6251), - [anon_sym_where] = ACTIONS(6249), - [anon_sym_QMARK] = ACTIONS(6251), - [anon_sym_BANG] = ACTIONS(6251), - [anon_sym_PLUS_PLUS] = ACTIONS(6249), - [anon_sym_DASH_DASH] = ACTIONS(6249), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6249), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_PERCENT] = ACTIONS(6249), - [anon_sym_CARET] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6251), - [anon_sym_AMP] = ACTIONS(6251), - [anon_sym_LT_LT] = ACTIONS(6249), - [anon_sym_GT_GT] = ACTIONS(6251), - [anon_sym_GT_GT_GT] = ACTIONS(6249), - [anon_sym_EQ_EQ] = ACTIONS(6249), - [anon_sym_BANG_EQ] = ACTIONS(6249), - [anon_sym_GT_EQ] = ACTIONS(6249), - [anon_sym_LT_EQ] = ACTIONS(6249), - [anon_sym_DOT] = ACTIONS(6251), - [anon_sym_switch] = ACTIONS(6249), - [anon_sym_DOT_DOT] = ACTIONS(6249), - [anon_sym_and] = ACTIONS(6249), - [anon_sym_or] = ACTIONS(6251), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6249), - [sym_op_coalescing] = ACTIONS(6249), - [anon_sym_from] = ACTIONS(6249), - [anon_sym_into] = ACTIONS(6249), - [anon_sym_join] = ACTIONS(6249), - [anon_sym_let] = ACTIONS(6249), - [anon_sym_orderby] = ACTIONS(6249), - [anon_sym_ascending] = ACTIONS(6249), - [anon_sym_descending] = ACTIONS(6249), - [anon_sym_group] = ACTIONS(6249), - [anon_sym_select] = ACTIONS(6249), - [anon_sym_as] = ACTIONS(6251), - [anon_sym_is] = ACTIONS(6249), - [anon_sym_DASH_GT] = ACTIONS(6249), - [anon_sym_with] = ACTIONS(6249), - [sym_grit_metavariable] = ACTIONS(6249), + [anon_sym_LBRACK] = ACTIONS(8039), + [anon_sym_COMMA] = ACTIONS(8039), + [anon_sym_LPAREN] = ACTIONS(8039), + [anon_sym_LT] = ACTIONS(8041), + [anon_sym_GT] = ACTIONS(8041), + [anon_sym_where] = ACTIONS(8039), + [anon_sym_QMARK] = ACTIONS(8041), + [anon_sym_DOT] = ACTIONS(8041), + [anon_sym_STAR] = ACTIONS(8039), + [anon_sym_switch] = ACTIONS(8039), + [anon_sym_DOT_DOT] = ACTIONS(8039), + [anon_sym_LT_EQ] = ACTIONS(8039), + [anon_sym_GT_EQ] = ACTIONS(8039), + [anon_sym_and] = ACTIONS(8007), + [anon_sym_or] = ACTIONS(8041), + [anon_sym_EQ_EQ] = ACTIONS(8039), + [anon_sym_BANG_EQ] = ACTIONS(8039), + [anon_sym_AMP_AMP] = ACTIONS(8039), + [anon_sym_PIPE_PIPE] = ACTIONS(8039), + [anon_sym_AMP] = ACTIONS(8041), + [sym_op_bitwise_or] = ACTIONS(8041), + [anon_sym_CARET] = ACTIONS(8039), + [sym_op_left_shift] = ACTIONS(8039), + [sym_op_right_shift] = ACTIONS(8041), + [sym_op_unsigned_right_shift] = ACTIONS(8039), + [anon_sym_PLUS] = ACTIONS(8041), + [anon_sym_DASH] = ACTIONS(8041), + [sym_op_divide] = ACTIONS(8041), + [sym_op_modulo] = ACTIONS(8039), + [sym_op_coalescing] = ACTIONS(8039), + [anon_sym_BANG] = ACTIONS(8041), + [anon_sym_PLUS_PLUS] = ACTIONS(8039), + [anon_sym_DASH_DASH] = ACTIONS(8039), + [anon_sym_from] = ACTIONS(8039), + [anon_sym_into] = ACTIONS(8039), + [anon_sym_join] = ACTIONS(8039), + [anon_sym_let] = ACTIONS(8039), + [anon_sym_orderby] = ACTIONS(8039), + [anon_sym_ascending] = ACTIONS(8039), + [anon_sym_descending] = ACTIONS(8039), + [anon_sym_group] = ACTIONS(8039), + [anon_sym_select] = ACTIONS(8039), + [anon_sym_as] = ACTIONS(8041), + [anon_sym_is] = ACTIONS(8039), + [anon_sym_DASH_GT] = ACTIONS(8039), + [anon_sym_with] = ACTIONS(8039), + [sym_grit_metavariable] = ACTIONS(8039), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -654747,24 +646201,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5228] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(5640), + [sym_alias_qualified_name] = STATE(5591), + [sym__simple_name] = STATE(5591), + [sym_qualified_name] = STATE(5591), + [sym_generic_name] = STATE(5632), + [sym_type] = STATE(5602), + [sym_implicit_type] = STATE(5601), + [sym_array_type] = STATE(5638), + [sym__array_base_type] = STATE(7416), + [sym_nullable_type] = STATE(5629), + [sym_pointer_type] = STATE(5629), + [sym__pointer_base_type] = STATE(8041), + [sym_function_pointer_type] = STATE(5629), + [sym_ref_type] = STATE(5601), + [sym_scoped_type] = STATE(5601), + [sym_tuple_type] = STATE(5626), + [sym_identifier] = STATE(5537), + [sym__reserved_identifier] = STATE(5554), [sym_preproc_region] = STATE(5228), [sym_preproc_endregion] = STATE(5228), [sym_preproc_line] = STATE(5228), @@ -654774,35 +646228,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5228), [sym_preproc_define] = STATE(5228), [sym_preproc_undef] = STATE(5228), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7443), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_readonly] = ACTIONS(7445), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(5991), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4318), + [anon_sym_alias] = ACTIONS(4320), + [anon_sym_global] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(8043), + [anon_sym_ref] = ACTIONS(4333), + [anon_sym_delegate] = ACTIONS(7466), + [anon_sym_readonly] = ACTIONS(8045), + [anon_sym_file] = ACTIONS(4320), + [anon_sym_where] = ACTIONS(4320), + [anon_sym_notnull] = ACTIONS(4320), + [anon_sym_unmanaged] = ACTIONS(4320), + [anon_sym_scoped] = ACTIONS(7859), + [anon_sym_var] = ACTIONS(7470), + [sym_predefined_type] = ACTIONS(7472), + [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), + [sym_grit_metavariable] = ACTIONS(4327), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -654815,25 +646269,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5229] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6355), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7506), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5229), [sym_preproc_endregion] = STATE(5229), [sym_preproc_line] = STATE(5229), @@ -654843,18 +646278,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5229), [sym_preproc_define] = STATE(5229), [sym_preproc_undef] = STATE(5229), + [anon_sym_LBRACK] = ACTIONS(5891), + [anon_sym_COMMA] = ACTIONS(5891), + [anon_sym_LPAREN] = ACTIONS(5891), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_where] = ACTIONS(5891), + [anon_sym_QMARK] = ACTIONS(5893), + [anon_sym_DOT] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5891), + [anon_sym_switch] = ACTIONS(5891), + [anon_sym_DOT_DOT] = ACTIONS(5891), + [anon_sym_LT_EQ] = ACTIONS(5891), + [anon_sym_GT_EQ] = ACTIONS(5891), + [anon_sym_and] = ACTIONS(5891), + [anon_sym_or] = ACTIONS(5893), + [anon_sym_EQ_EQ] = ACTIONS(5891), + [anon_sym_BANG_EQ] = ACTIONS(5891), + [anon_sym_AMP_AMP] = ACTIONS(5891), + [anon_sym_PIPE_PIPE] = ACTIONS(5891), + [anon_sym_AMP] = ACTIONS(5893), + [sym_op_bitwise_or] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5891), + [sym_op_left_shift] = ACTIONS(5891), + [sym_op_right_shift] = ACTIONS(5893), + [sym_op_unsigned_right_shift] = ACTIONS(5891), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_DASH] = ACTIONS(5893), + [sym_op_divide] = ACTIONS(5893), + [sym_op_modulo] = ACTIONS(5891), + [sym_op_coalescing] = ACTIONS(5891), + [anon_sym_BANG] = ACTIONS(5893), + [anon_sym_PLUS_PLUS] = ACTIONS(5891), + [anon_sym_DASH_DASH] = ACTIONS(5891), + [anon_sym_from] = ACTIONS(5891), + [anon_sym_into] = ACTIONS(5891), + [anon_sym_join] = ACTIONS(5891), + [anon_sym_let] = ACTIONS(5891), + [anon_sym_orderby] = ACTIONS(5891), + [anon_sym_ascending] = ACTIONS(5891), + [anon_sym_descending] = ACTIONS(5891), + [anon_sym_group] = ACTIONS(5891), + [anon_sym_select] = ACTIONS(5891), + [anon_sym_as] = ACTIONS(5893), + [anon_sym_is] = ACTIONS(5891), + [anon_sym_DASH_GT] = ACTIONS(5891), + [anon_sym_with] = ACTIONS(5891), + [sym_grit_metavariable] = ACTIONS(5891), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5230] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(5230), + [sym_preproc_endregion] = STATE(5230), + [sym_preproc_line] = STATE(5230), + [sym_preproc_pragma] = STATE(5230), + [sym_preproc_nullable] = STATE(5230), + [sym_preproc_error] = STATE(5230), + [sym_preproc_warning] = STATE(5230), + [sym_preproc_define] = STATE(5230), + [sym_preproc_undef] = STATE(5230), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3900), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8047), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(8049), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7298), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(8051), + [anon_sym_var] = ACTIONS(5320), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -654870,75 +646392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [5230] = { - [sym_preproc_region] = STATE(5230), - [sym_preproc_endregion] = STATE(5230), - [sym_preproc_line] = STATE(5230), - [sym_preproc_pragma] = STATE(5230), - [sym_preproc_nullable] = STATE(5230), - [sym_preproc_error] = STATE(5230), - [sym_preproc_warning] = STATE(5230), - [sym_preproc_define] = STATE(5230), - [sym_preproc_undef] = STATE(5230), - [anon_sym_LBRACK] = ACTIONS(6255), - [anon_sym_COMMA] = ACTIONS(6255), - [anon_sym_LPAREN] = ACTIONS(6255), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_GT] = ACTIONS(6257), - [anon_sym_where] = ACTIONS(6255), - [anon_sym_QMARK] = ACTIONS(6257), - [anon_sym_BANG] = ACTIONS(6257), - [anon_sym_PLUS_PLUS] = ACTIONS(6255), - [anon_sym_DASH_DASH] = ACTIONS(6255), - [anon_sym_PLUS] = ACTIONS(6257), - [anon_sym_DASH] = ACTIONS(6257), - [anon_sym_STAR] = ACTIONS(6255), - [anon_sym_SLASH] = ACTIONS(6257), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_CARET] = ACTIONS(6255), - [anon_sym_PIPE] = ACTIONS(6257), - [anon_sym_AMP] = ACTIONS(6257), - [anon_sym_LT_LT] = ACTIONS(6255), - [anon_sym_GT_GT] = ACTIONS(6257), - [anon_sym_GT_GT_GT] = ACTIONS(6255), - [anon_sym_EQ_EQ] = ACTIONS(6255), - [anon_sym_BANG_EQ] = ACTIONS(6255), - [anon_sym_GT_EQ] = ACTIONS(6255), - [anon_sym_LT_EQ] = ACTIONS(6255), - [anon_sym_DOT] = ACTIONS(6257), - [anon_sym_switch] = ACTIONS(6255), - [anon_sym_DOT_DOT] = ACTIONS(6255), - [anon_sym_and] = ACTIONS(6255), - [anon_sym_or] = ACTIONS(6257), - [anon_sym_AMP_AMP] = ACTIONS(6255), - [anon_sym_PIPE_PIPE] = ACTIONS(6255), - [sym_op_coalescing] = ACTIONS(6255), - [anon_sym_from] = ACTIONS(6255), - [anon_sym_into] = ACTIONS(6255), - [anon_sym_join] = ACTIONS(6255), - [anon_sym_let] = ACTIONS(6255), - [anon_sym_orderby] = ACTIONS(6255), - [anon_sym_ascending] = ACTIONS(6255), - [anon_sym_descending] = ACTIONS(6255), - [anon_sym_group] = ACTIONS(6255), - [anon_sym_select] = ACTIONS(6255), - [anon_sym_as] = ACTIONS(6257), - [anon_sym_is] = ACTIONS(6255), - [anon_sym_DASH_GT] = ACTIONS(6255), - [anon_sym_with] = ACTIONS(6255), - [sym_grit_metavariable] = ACTIONS(6255), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -654960,53 +646414,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5231), [sym_preproc_define] = STATE(5231), [sym_preproc_undef] = STATE(5231), - [anon_sym_LBRACK] = ACTIONS(6373), - [anon_sym_COMMA] = ACTIONS(6373), - [anon_sym_LPAREN] = ACTIONS(6373), - [anon_sym_LT] = ACTIONS(6375), - [anon_sym_GT] = ACTIONS(6375), - [anon_sym_where] = ACTIONS(6373), - [anon_sym_QMARK] = ACTIONS(6375), - [anon_sym_BANG] = ACTIONS(6375), - [anon_sym_PLUS_PLUS] = ACTIONS(6373), - [anon_sym_DASH_DASH] = ACTIONS(6373), - [anon_sym_PLUS] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_STAR] = ACTIONS(6373), - [anon_sym_SLASH] = ACTIONS(6375), - [anon_sym_PERCENT] = ACTIONS(6373), - [anon_sym_CARET] = ACTIONS(6373), - [anon_sym_PIPE] = ACTIONS(6375), - [anon_sym_AMP] = ACTIONS(6375), - [anon_sym_LT_LT] = ACTIONS(6373), - [anon_sym_GT_GT] = ACTIONS(6375), - [anon_sym_GT_GT_GT] = ACTIONS(6373), - [anon_sym_EQ_EQ] = ACTIONS(6373), - [anon_sym_BANG_EQ] = ACTIONS(6373), - [anon_sym_GT_EQ] = ACTIONS(6373), - [anon_sym_LT_EQ] = ACTIONS(6373), - [anon_sym_DOT] = ACTIONS(6375), - [anon_sym_switch] = ACTIONS(6373), - [anon_sym_DOT_DOT] = ACTIONS(6373), - [anon_sym_and] = ACTIONS(6373), - [anon_sym_or] = ACTIONS(6375), - [anon_sym_AMP_AMP] = ACTIONS(6373), - [anon_sym_PIPE_PIPE] = ACTIONS(6373), - [sym_op_coalescing] = ACTIONS(6373), - [anon_sym_from] = ACTIONS(6373), - [anon_sym_into] = ACTIONS(6373), - [anon_sym_join] = ACTIONS(6373), - [anon_sym_let] = ACTIONS(6373), - [anon_sym_orderby] = ACTIONS(6373), - [anon_sym_ascending] = ACTIONS(6373), - [anon_sym_descending] = ACTIONS(6373), - [anon_sym_group] = ACTIONS(6373), - [anon_sym_select] = ACTIONS(6373), - [anon_sym_as] = ACTIONS(6375), - [anon_sym_is] = ACTIONS(6373), - [anon_sym_DASH_GT] = ACTIONS(6373), - [anon_sym_with] = ACTIONS(6373), - [sym_grit_metavariable] = ACTIONS(6373), + [anon_sym_EQ] = ACTIONS(8053), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(8055), + [anon_sym_DASH_EQ] = ACTIONS(8055), + [anon_sym_STAR_EQ] = ACTIONS(8055), + [anon_sym_SLASH_EQ] = ACTIONS(8055), + [anon_sym_PERCENT_EQ] = ACTIONS(8055), + [anon_sym_AMP_EQ] = ACTIONS(8055), + [anon_sym_CARET_EQ] = ACTIONS(8055), + [anon_sym_PIPE_EQ] = ACTIONS(8055), + [anon_sym_LT_LT_EQ] = ACTIONS(8055), + [anon_sym_GT_GT_EQ] = ACTIONS(8055), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(8055), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(8055), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655019,24 +646473,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5232] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5232), [sym_preproc_endregion] = STATE(5232), [sym_preproc_line] = STATE(5232), @@ -655046,35 +646482,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5232), [sym_preproc_define] = STATE(5232), [sym_preproc_undef] = STATE(5232), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3900), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(2979), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7298), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5887), + [anon_sym_COMMA] = ACTIONS(5887), + [anon_sym_LPAREN] = ACTIONS(5887), + [anon_sym_LT] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5889), + [anon_sym_where] = ACTIONS(5887), + [anon_sym_QMARK] = ACTIONS(5889), + [anon_sym_DOT] = ACTIONS(5889), + [anon_sym_STAR] = ACTIONS(5887), + [anon_sym_switch] = ACTIONS(5887), + [anon_sym_DOT_DOT] = ACTIONS(5887), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_and] = ACTIONS(5887), + [anon_sym_or] = ACTIONS(5889), + [anon_sym_EQ_EQ] = ACTIONS(5887), + [anon_sym_BANG_EQ] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5889), + [sym_op_bitwise_or] = ACTIONS(5889), + [anon_sym_CARET] = ACTIONS(5887), + [sym_op_left_shift] = ACTIONS(5887), + [sym_op_right_shift] = ACTIONS(5889), + [sym_op_unsigned_right_shift] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5889), + [anon_sym_DASH] = ACTIONS(5889), + [sym_op_divide] = ACTIONS(5889), + [sym_op_modulo] = ACTIONS(5887), + [sym_op_coalescing] = ACTIONS(5887), + [anon_sym_BANG] = ACTIONS(5889), + [anon_sym_PLUS_PLUS] = ACTIONS(5887), + [anon_sym_DASH_DASH] = ACTIONS(5887), + [anon_sym_from] = ACTIONS(5887), + [anon_sym_into] = ACTIONS(5887), + [anon_sym_join] = ACTIONS(5887), + [anon_sym_let] = ACTIONS(5887), + [anon_sym_orderby] = ACTIONS(5887), + [anon_sym_ascending] = ACTIONS(5887), + [anon_sym_descending] = ACTIONS(5887), + [anon_sym_group] = ACTIONS(5887), + [anon_sym_select] = ACTIONS(5887), + [anon_sym_as] = ACTIONS(5889), + [anon_sym_is] = ACTIONS(5887), + [anon_sym_DASH_GT] = ACTIONS(5887), + [anon_sym_with] = ACTIONS(5887), + [sym_grit_metavariable] = ACTIONS(5887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655087,24 +646541,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5233] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4753), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3290), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5233), [sym_preproc_endregion] = STATE(5233), [sym_preproc_line] = STATE(5233), @@ -655114,35 +646568,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5233), [sym_preproc_define] = STATE(5233), [sym_preproc_undef] = STATE(5233), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4485), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_readonly] = ACTIONS(7599), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7260), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4496), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_readonly] = ACTIONS(8057), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7742), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655164,53 +646618,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5234), [sym_preproc_define] = STATE(5234), [sym_preproc_undef] = STATE(5234), - [anon_sym_LBRACK] = ACTIONS(7048), - [anon_sym_COMMA] = ACTIONS(7048), - [anon_sym_LPAREN] = ACTIONS(7048), - [anon_sym_LT] = ACTIONS(7050), - [anon_sym_GT] = ACTIONS(7050), - [anon_sym_where] = ACTIONS(7048), - [anon_sym_QMARK] = ACTIONS(7050), - [anon_sym_BANG] = ACTIONS(7050), - [anon_sym_PLUS_PLUS] = ACTIONS(7048), - [anon_sym_DASH_DASH] = ACTIONS(7048), - [anon_sym_PLUS] = ACTIONS(7050), - [anon_sym_DASH] = ACTIONS(7050), - [anon_sym_STAR] = ACTIONS(7048), - [anon_sym_SLASH] = ACTIONS(7050), - [anon_sym_PERCENT] = ACTIONS(7048), - [anon_sym_CARET] = ACTIONS(7048), - [anon_sym_PIPE] = ACTIONS(7050), - [anon_sym_AMP] = ACTIONS(7050), - [anon_sym_LT_LT] = ACTIONS(7048), - [anon_sym_GT_GT] = ACTIONS(7050), - [anon_sym_GT_GT_GT] = ACTIONS(7048), - [anon_sym_EQ_EQ] = ACTIONS(7048), - [anon_sym_BANG_EQ] = ACTIONS(7048), - [anon_sym_GT_EQ] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7048), - [anon_sym_DOT] = ACTIONS(7050), - [anon_sym_switch] = ACTIONS(7048), - [anon_sym_DOT_DOT] = ACTIONS(7048), - [anon_sym_and] = ACTIONS(7048), - [anon_sym_or] = ACTIONS(7050), - [anon_sym_AMP_AMP] = ACTIONS(7048), - [anon_sym_PIPE_PIPE] = ACTIONS(7048), - [sym_op_coalescing] = ACTIONS(7048), - [anon_sym_from] = ACTIONS(7048), - [anon_sym_into] = ACTIONS(7048), - [anon_sym_join] = ACTIONS(7048), - [anon_sym_let] = ACTIONS(7048), - [anon_sym_orderby] = ACTIONS(7048), - [anon_sym_ascending] = ACTIONS(7048), - [anon_sym_descending] = ACTIONS(7048), - [anon_sym_group] = ACTIONS(7048), - [anon_sym_select] = ACTIONS(7048), - [anon_sym_as] = ACTIONS(7050), - [anon_sym_is] = ACTIONS(7048), - [anon_sym_DASH_GT] = ACTIONS(7048), - [anon_sym_with] = ACTIONS(7048), - [sym_grit_metavariable] = ACTIONS(7048), + [anon_sym_LBRACK] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_LPAREN] = ACTIONS(5895), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_where] = ACTIONS(5895), + [anon_sym_QMARK] = ACTIONS(5897), + [anon_sym_DOT] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5895), + [anon_sym_switch] = ACTIONS(5895), + [anon_sym_DOT_DOT] = ACTIONS(5895), + [anon_sym_LT_EQ] = ACTIONS(5895), + [anon_sym_GT_EQ] = ACTIONS(5895), + [anon_sym_and] = ACTIONS(5895), + [anon_sym_or] = ACTIONS(5897), + [anon_sym_EQ_EQ] = ACTIONS(5895), + [anon_sym_BANG_EQ] = ACTIONS(5895), + [anon_sym_AMP_AMP] = ACTIONS(5895), + [anon_sym_PIPE_PIPE] = ACTIONS(5895), + [anon_sym_AMP] = ACTIONS(5897), + [sym_op_bitwise_or] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5895), + [sym_op_left_shift] = ACTIONS(5895), + [sym_op_right_shift] = ACTIONS(5897), + [sym_op_unsigned_right_shift] = ACTIONS(5895), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [sym_op_divide] = ACTIONS(5897), + [sym_op_modulo] = ACTIONS(5895), + [sym_op_coalescing] = ACTIONS(5895), + [anon_sym_BANG] = ACTIONS(5897), + [anon_sym_PLUS_PLUS] = ACTIONS(5895), + [anon_sym_DASH_DASH] = ACTIONS(5895), + [anon_sym_from] = ACTIONS(5895), + [anon_sym_into] = ACTIONS(5895), + [anon_sym_join] = ACTIONS(5895), + [anon_sym_let] = ACTIONS(5895), + [anon_sym_orderby] = ACTIONS(5895), + [anon_sym_ascending] = ACTIONS(5895), + [anon_sym_descending] = ACTIONS(5895), + [anon_sym_group] = ACTIONS(5895), + [anon_sym_select] = ACTIONS(5895), + [anon_sym_as] = ACTIONS(5897), + [anon_sym_is] = ACTIONS(5895), + [anon_sym_DASH_GT] = ACTIONS(5895), + [anon_sym_with] = ACTIONS(5895), + [sym_grit_metavariable] = ACTIONS(5895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655223,25 +646677,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5235] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6355), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7471), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5235), [sym_preproc_endregion] = STATE(5235), [sym_preproc_line] = STATE(5235), @@ -655251,34 +646686,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5235), [sym_preproc_define] = STATE(5235), [sym_preproc_undef] = STATE(5235), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3900), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7298), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(6917), + [anon_sym_COMMA] = ACTIONS(6917), + [anon_sym_LPAREN] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6919), + [anon_sym_GT] = ACTIONS(6919), + [anon_sym_where] = ACTIONS(6917), + [anon_sym_QMARK] = ACTIONS(6919), + [anon_sym_DOT] = ACTIONS(6919), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_switch] = ACTIONS(6917), + [anon_sym_DOT_DOT] = ACTIONS(6917), + [anon_sym_LT_EQ] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6917), + [anon_sym_and] = ACTIONS(6917), + [anon_sym_or] = ACTIONS(6919), + [anon_sym_EQ_EQ] = ACTIONS(6917), + [anon_sym_BANG_EQ] = ACTIONS(6917), + [anon_sym_AMP_AMP] = ACTIONS(6917), + [anon_sym_PIPE_PIPE] = ACTIONS(6917), + [anon_sym_AMP] = ACTIONS(6919), + [sym_op_bitwise_or] = ACTIONS(6919), + [anon_sym_CARET] = ACTIONS(6917), + [sym_op_left_shift] = ACTIONS(6917), + [sym_op_right_shift] = ACTIONS(6919), + [sym_op_unsigned_right_shift] = ACTIONS(6917), + [anon_sym_PLUS] = ACTIONS(6919), + [anon_sym_DASH] = ACTIONS(6919), + [sym_op_divide] = ACTIONS(6919), + [sym_op_modulo] = ACTIONS(6917), + [sym_op_coalescing] = ACTIONS(6917), + [anon_sym_BANG] = ACTIONS(6919), + [anon_sym_PLUS_PLUS] = ACTIONS(6917), + [anon_sym_DASH_DASH] = ACTIONS(6917), + [anon_sym_from] = ACTIONS(6917), + [anon_sym_into] = ACTIONS(6917), + [anon_sym_join] = ACTIONS(6917), + [anon_sym_let] = ACTIONS(6917), + [anon_sym_orderby] = ACTIONS(6917), + [anon_sym_ascending] = ACTIONS(6917), + [anon_sym_descending] = ACTIONS(6917), + [anon_sym_group] = ACTIONS(6917), + [anon_sym_select] = ACTIONS(6917), + [anon_sym_as] = ACTIONS(6919), + [anon_sym_is] = ACTIONS(6917), + [anon_sym_DASH_GT] = ACTIONS(6917), + [anon_sym_with] = ACTIONS(6917), + [sym_grit_metavariable] = ACTIONS(6917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655300,53 +646754,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5236), [sym_preproc_define] = STATE(5236), [sym_preproc_undef] = STATE(5236), - [anon_sym_LBRACK] = ACTIONS(7052), - [anon_sym_COMMA] = ACTIONS(7052), - [anon_sym_LPAREN] = ACTIONS(7052), - [anon_sym_LT] = ACTIONS(7054), - [anon_sym_GT] = ACTIONS(7054), - [anon_sym_where] = ACTIONS(7052), - [anon_sym_QMARK] = ACTIONS(7054), - [anon_sym_BANG] = ACTIONS(7054), - [anon_sym_PLUS_PLUS] = ACTIONS(7052), - [anon_sym_DASH_DASH] = ACTIONS(7052), - [anon_sym_PLUS] = ACTIONS(7054), - [anon_sym_DASH] = ACTIONS(7054), - [anon_sym_STAR] = ACTIONS(7052), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_PERCENT] = ACTIONS(7052), - [anon_sym_CARET] = ACTIONS(7052), - [anon_sym_PIPE] = ACTIONS(7054), - [anon_sym_AMP] = ACTIONS(7054), - [anon_sym_LT_LT] = ACTIONS(7052), - [anon_sym_GT_GT] = ACTIONS(7054), - [anon_sym_GT_GT_GT] = ACTIONS(7052), - [anon_sym_EQ_EQ] = ACTIONS(7052), - [anon_sym_BANG_EQ] = ACTIONS(7052), - [anon_sym_GT_EQ] = ACTIONS(7052), - [anon_sym_LT_EQ] = ACTIONS(7052), - [anon_sym_DOT] = ACTIONS(7054), - [anon_sym_switch] = ACTIONS(7052), - [anon_sym_DOT_DOT] = ACTIONS(7052), - [anon_sym_and] = ACTIONS(7052), - [anon_sym_or] = ACTIONS(7054), - [anon_sym_AMP_AMP] = ACTIONS(7052), - [anon_sym_PIPE_PIPE] = ACTIONS(7052), - [sym_op_coalescing] = ACTIONS(7052), - [anon_sym_from] = ACTIONS(7052), - [anon_sym_into] = ACTIONS(7052), - [anon_sym_join] = ACTIONS(7052), - [anon_sym_let] = ACTIONS(7052), - [anon_sym_orderby] = ACTIONS(7052), - [anon_sym_ascending] = ACTIONS(7052), - [anon_sym_descending] = ACTIONS(7052), - [anon_sym_group] = ACTIONS(7052), - [anon_sym_select] = ACTIONS(7052), - [anon_sym_as] = ACTIONS(7054), - [anon_sym_is] = ACTIONS(7052), - [anon_sym_DASH_GT] = ACTIONS(7052), - [anon_sym_with] = ACTIONS(7052), - [sym_grit_metavariable] = ACTIONS(7052), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_LPAREN] = ACTIONS(5813), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_where] = ACTIONS(5813), + [anon_sym_QMARK] = ACTIONS(5815), + [anon_sym_DOT] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5813), + [anon_sym_switch] = ACTIONS(5813), + [anon_sym_DOT_DOT] = ACTIONS(5813), + [anon_sym_LT_EQ] = ACTIONS(5813), + [anon_sym_GT_EQ] = ACTIONS(5813), + [anon_sym_and] = ACTIONS(5813), + [anon_sym_or] = ACTIONS(5815), + [anon_sym_EQ_EQ] = ACTIONS(5813), + [anon_sym_BANG_EQ] = ACTIONS(5813), + [anon_sym_AMP_AMP] = ACTIONS(5813), + [anon_sym_PIPE_PIPE] = ACTIONS(5813), + [anon_sym_AMP] = ACTIONS(5815), + [sym_op_bitwise_or] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5813), + [sym_op_left_shift] = ACTIONS(5813), + [sym_op_right_shift] = ACTIONS(5815), + [sym_op_unsigned_right_shift] = ACTIONS(5813), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_DASH] = ACTIONS(5815), + [sym_op_divide] = ACTIONS(5815), + [sym_op_modulo] = ACTIONS(5813), + [sym_op_coalescing] = ACTIONS(5813), + [anon_sym_BANG] = ACTIONS(5815), + [anon_sym_PLUS_PLUS] = ACTIONS(5813), + [anon_sym_DASH_DASH] = ACTIONS(5813), + [anon_sym_from] = ACTIONS(5813), + [anon_sym_into] = ACTIONS(5813), + [anon_sym_join] = ACTIONS(5813), + [anon_sym_let] = ACTIONS(5813), + [anon_sym_orderby] = ACTIONS(5813), + [anon_sym_ascending] = ACTIONS(5813), + [anon_sym_descending] = ACTIONS(5813), + [anon_sym_group] = ACTIONS(5813), + [anon_sym_select] = ACTIONS(5813), + [anon_sym_as] = ACTIONS(5815), + [anon_sym_is] = ACTIONS(5813), + [anon_sym_DASH_GT] = ACTIONS(5813), + [anon_sym_with] = ACTIONS(5813), + [sym_grit_metavariable] = ACTIONS(5813), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655359,6 +646813,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5237] = { + [sym__name] = STATE(2458), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_type] = STATE(2425), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_identifier] = STATE(2392), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(5237), [sym_preproc_endregion] = STATE(5237), [sym_preproc_line] = STATE(5237), @@ -655368,53 +646840,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5237), [sym_preproc_define] = STATE(5237), [sym_preproc_undef] = STATE(5237), - [anon_sym_LBRACK] = ACTIONS(7056), - [anon_sym_COMMA] = ACTIONS(7056), - [anon_sym_LPAREN] = ACTIONS(7056), - [anon_sym_LT] = ACTIONS(7058), - [anon_sym_GT] = ACTIONS(7058), - [anon_sym_where] = ACTIONS(7056), - [anon_sym_QMARK] = ACTIONS(7058), - [anon_sym_BANG] = ACTIONS(7058), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_DASH_DASH] = ACTIONS(7056), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_STAR] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7058), - [anon_sym_PERCENT] = ACTIONS(7056), - [anon_sym_CARET] = ACTIONS(7056), - [anon_sym_PIPE] = ACTIONS(7058), - [anon_sym_AMP] = ACTIONS(7058), - [anon_sym_LT_LT] = ACTIONS(7056), - [anon_sym_GT_GT] = ACTIONS(7058), - [anon_sym_GT_GT_GT] = ACTIONS(7056), - [anon_sym_EQ_EQ] = ACTIONS(7056), - [anon_sym_BANG_EQ] = ACTIONS(7056), - [anon_sym_GT_EQ] = ACTIONS(7056), - [anon_sym_LT_EQ] = ACTIONS(7056), - [anon_sym_DOT] = ACTIONS(7058), - [anon_sym_switch] = ACTIONS(7056), - [anon_sym_DOT_DOT] = ACTIONS(7056), - [anon_sym_and] = ACTIONS(7056), - [anon_sym_or] = ACTIONS(7058), - [anon_sym_AMP_AMP] = ACTIONS(7056), - [anon_sym_PIPE_PIPE] = ACTIONS(7056), - [sym_op_coalescing] = ACTIONS(7056), - [anon_sym_from] = ACTIONS(7056), - [anon_sym_into] = ACTIONS(7056), - [anon_sym_join] = ACTIONS(7056), - [anon_sym_let] = ACTIONS(7056), - [anon_sym_orderby] = ACTIONS(7056), - [anon_sym_ascending] = ACTIONS(7056), - [anon_sym_descending] = ACTIONS(7056), - [anon_sym_group] = ACTIONS(7056), - [anon_sym_select] = ACTIONS(7056), - [anon_sym_as] = ACTIONS(7058), - [anon_sym_is] = ACTIONS(7056), - [anon_sym_DASH_GT] = ACTIONS(7056), - [anon_sym_with] = ACTIONS(7056), - [sym_grit_metavariable] = ACTIONS(7056), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(7999), + [anon_sym_ref] = ACTIONS(3871), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(3097), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_where] = ACTIONS(4425), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_scoped] = ACTIONS(8059), + [anon_sym_var] = ACTIONS(7258), + [sym_predefined_type] = ACTIONS(7260), + [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), + [sym_grit_metavariable] = ACTIONS(7262), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655436,53 +646890,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5238), [sym_preproc_define] = STATE(5238), [sym_preproc_undef] = STATE(5238), - [anon_sym_LBRACK] = ACTIONS(6267), - [anon_sym_COMMA] = ACTIONS(6267), - [anon_sym_LPAREN] = ACTIONS(6267), - [anon_sym_LT] = ACTIONS(6269), - [anon_sym_GT] = ACTIONS(6269), - [anon_sym_where] = ACTIONS(6267), - [anon_sym_QMARK] = ACTIONS(6269), - [anon_sym_BANG] = ACTIONS(6269), - [anon_sym_PLUS_PLUS] = ACTIONS(6267), - [anon_sym_DASH_DASH] = ACTIONS(6267), - [anon_sym_PLUS] = ACTIONS(6269), - [anon_sym_DASH] = ACTIONS(6269), - [anon_sym_STAR] = ACTIONS(6267), - [anon_sym_SLASH] = ACTIONS(6269), - [anon_sym_PERCENT] = ACTIONS(6267), - [anon_sym_CARET] = ACTIONS(6267), - [anon_sym_PIPE] = ACTIONS(6269), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_GT_GT] = ACTIONS(6269), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_EQ_EQ] = ACTIONS(6267), - [anon_sym_BANG_EQ] = ACTIONS(6267), - [anon_sym_GT_EQ] = ACTIONS(6267), - [anon_sym_LT_EQ] = ACTIONS(6267), - [anon_sym_DOT] = ACTIONS(6269), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_DOT_DOT] = ACTIONS(6267), - [anon_sym_and] = ACTIONS(6267), - [anon_sym_or] = ACTIONS(6269), - [anon_sym_AMP_AMP] = ACTIONS(6267), - [anon_sym_PIPE_PIPE] = ACTIONS(6267), - [sym_op_coalescing] = ACTIONS(6267), - [anon_sym_from] = ACTIONS(6267), - [anon_sym_into] = ACTIONS(6267), - [anon_sym_join] = ACTIONS(6267), - [anon_sym_let] = ACTIONS(6267), - [anon_sym_orderby] = ACTIONS(6267), - [anon_sym_ascending] = ACTIONS(6267), - [anon_sym_descending] = ACTIONS(6267), - [anon_sym_group] = ACTIONS(6267), - [anon_sym_select] = ACTIONS(6267), - [anon_sym_as] = ACTIONS(6269), - [anon_sym_is] = ACTIONS(6267), - [anon_sym_DASH_GT] = ACTIONS(6267), - [anon_sym_with] = ACTIONS(6267), - [sym_grit_metavariable] = ACTIONS(6267), + [anon_sym_LBRACK] = ACTIONS(6885), + [anon_sym_COMMA] = ACTIONS(6885), + [anon_sym_LPAREN] = ACTIONS(6885), + [anon_sym_LT] = ACTIONS(6887), + [anon_sym_GT] = ACTIONS(6887), + [anon_sym_where] = ACTIONS(6885), + [anon_sym_QMARK] = ACTIONS(6887), + [anon_sym_DOT] = ACTIONS(6887), + [anon_sym_STAR] = ACTIONS(6885), + [anon_sym_switch] = ACTIONS(6885), + [anon_sym_DOT_DOT] = ACTIONS(6885), + [anon_sym_LT_EQ] = ACTIONS(6885), + [anon_sym_GT_EQ] = ACTIONS(6885), + [anon_sym_and] = ACTIONS(6885), + [anon_sym_or] = ACTIONS(6887), + [anon_sym_EQ_EQ] = ACTIONS(6885), + [anon_sym_BANG_EQ] = ACTIONS(6885), + [anon_sym_AMP_AMP] = ACTIONS(6885), + [anon_sym_PIPE_PIPE] = ACTIONS(6885), + [anon_sym_AMP] = ACTIONS(6887), + [sym_op_bitwise_or] = ACTIONS(6887), + [anon_sym_CARET] = ACTIONS(6885), + [sym_op_left_shift] = ACTIONS(6885), + [sym_op_right_shift] = ACTIONS(6887), + [sym_op_unsigned_right_shift] = ACTIONS(6885), + [anon_sym_PLUS] = ACTIONS(6887), + [anon_sym_DASH] = ACTIONS(6887), + [sym_op_divide] = ACTIONS(6887), + [sym_op_modulo] = ACTIONS(6885), + [sym_op_coalescing] = ACTIONS(6885), + [anon_sym_BANG] = ACTIONS(6887), + [anon_sym_PLUS_PLUS] = ACTIONS(6885), + [anon_sym_DASH_DASH] = ACTIONS(6885), + [anon_sym_from] = ACTIONS(6885), + [anon_sym_into] = ACTIONS(6885), + [anon_sym_join] = ACTIONS(6885), + [anon_sym_let] = ACTIONS(6885), + [anon_sym_orderby] = ACTIONS(6885), + [anon_sym_ascending] = ACTIONS(6885), + [anon_sym_descending] = ACTIONS(6885), + [anon_sym_group] = ACTIONS(6885), + [anon_sym_select] = ACTIONS(6885), + [anon_sym_as] = ACTIONS(6887), + [anon_sym_is] = ACTIONS(6885), + [anon_sym_DASH_GT] = ACTIONS(6885), + [anon_sym_with] = ACTIONS(6885), + [sym_grit_metavariable] = ACTIONS(6885), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655504,53 +646958,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5239), [sym_preproc_define] = STATE(5239), [sym_preproc_undef] = STATE(5239), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(6962), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_EQ] = ACTIONS(3193), + [anon_sym_and] = ACTIONS(3193), + [anon_sym_or] = ACTIONS(3191), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_PIPE_PIPE] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [sym_op_bitwise_or] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3193), + [sym_op_left_shift] = ACTIONS(3193), + [sym_op_right_shift] = ACTIONS(3191), + [sym_op_unsigned_right_shift] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [sym_op_divide] = ACTIONS(3191), + [sym_op_modulo] = ACTIONS(3193), + [sym_op_coalescing] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_from] = ACTIONS(3193), + [anon_sym_into] = ACTIONS(3193), + [anon_sym_join] = 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_select] = ACTIONS(3193), + [anon_sym_as] = ACTIONS(3191), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_DASH_GT] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [sym_grit_metavariable] = ACTIONS(3193), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655572,53 +647026,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5240), [sym_preproc_define] = STATE(5240), [sym_preproc_undef] = STATE(5240), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_where] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3201), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_GT_EQ] = ACTIONS(3201), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_op_coalescing] = ACTIONS(3201), - [anon_sym_from] = ACTIONS(3201), - [anon_sym_into] = ACTIONS(3201), - [anon_sym_join] = 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_select] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_with] = ACTIONS(3201), - [sym_grit_metavariable] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(6925), + [anon_sym_COMMA] = ACTIONS(6925), + [anon_sym_LPAREN] = ACTIONS(6925), + [anon_sym_LT] = ACTIONS(6927), + [anon_sym_GT] = ACTIONS(6927), + [anon_sym_where] = ACTIONS(6925), + [anon_sym_QMARK] = ACTIONS(6927), + [anon_sym_DOT] = ACTIONS(6927), + [anon_sym_STAR] = ACTIONS(6925), + [anon_sym_switch] = ACTIONS(6925), + [anon_sym_DOT_DOT] = ACTIONS(6925), + [anon_sym_LT_EQ] = ACTIONS(6925), + [anon_sym_GT_EQ] = ACTIONS(6925), + [anon_sym_and] = ACTIONS(6925), + [anon_sym_or] = ACTIONS(6927), + [anon_sym_EQ_EQ] = ACTIONS(6925), + [anon_sym_BANG_EQ] = ACTIONS(6925), + [anon_sym_AMP_AMP] = ACTIONS(6925), + [anon_sym_PIPE_PIPE] = ACTIONS(6925), + [anon_sym_AMP] = ACTIONS(6927), + [sym_op_bitwise_or] = ACTIONS(6927), + [anon_sym_CARET] = ACTIONS(6925), + [sym_op_left_shift] = ACTIONS(6925), + [sym_op_right_shift] = ACTIONS(6927), + [sym_op_unsigned_right_shift] = ACTIONS(6925), + [anon_sym_PLUS] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6927), + [sym_op_divide] = ACTIONS(6927), + [sym_op_modulo] = ACTIONS(6925), + [sym_op_coalescing] = ACTIONS(6925), + [anon_sym_BANG] = ACTIONS(6927), + [anon_sym_PLUS_PLUS] = ACTIONS(6925), + [anon_sym_DASH_DASH] = ACTIONS(6925), + [anon_sym_from] = ACTIONS(6925), + [anon_sym_into] = ACTIONS(6925), + [anon_sym_join] = ACTIONS(6925), + [anon_sym_let] = ACTIONS(6925), + [anon_sym_orderby] = ACTIONS(6925), + [anon_sym_ascending] = ACTIONS(6925), + [anon_sym_descending] = ACTIONS(6925), + [anon_sym_group] = ACTIONS(6925), + [anon_sym_select] = ACTIONS(6925), + [anon_sym_as] = ACTIONS(6927), + [anon_sym_is] = ACTIONS(6925), + [anon_sym_DASH_GT] = ACTIONS(6925), + [anon_sym_with] = ACTIONS(6925), + [sym_grit_metavariable] = ACTIONS(6925), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655640,53 +647094,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5241), [sym_preproc_define] = STATE(5241), [sym_preproc_undef] = STATE(5241), - [anon_sym_LBRACK] = ACTIONS(4206), - [anon_sym_COMMA] = ACTIONS(4206), - [anon_sym_LPAREN] = ACTIONS(4206), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_where] = ACTIONS(4206), - [anon_sym_QMARK] = ACTIONS(7042), - [anon_sym_BANG] = ACTIONS(7042), - [anon_sym_PLUS_PLUS] = ACTIONS(4206), - [anon_sym_DASH_DASH] = ACTIONS(4206), - [anon_sym_PLUS] = ACTIONS(7042), - [anon_sym_DASH] = ACTIONS(7042), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(7042), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_CARET] = ACTIONS(4206), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - [anon_sym_LT_LT] = ACTIONS(4206), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_GT_GT_GT] = ACTIONS(4206), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_GT_EQ] = ACTIONS(4206), - [anon_sym_LT_EQ] = ACTIONS(4206), - [anon_sym_DOT] = ACTIONS(7042), - [anon_sym_switch] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4206), - [anon_sym_and] = ACTIONS(4206), - [anon_sym_or] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(4206), - [anon_sym_PIPE_PIPE] = ACTIONS(4206), - [sym_op_coalescing] = ACTIONS(4206), - [anon_sym_from] = ACTIONS(4206), - [anon_sym_into] = ACTIONS(4206), - [anon_sym_join] = ACTIONS(4206), - [anon_sym_let] = ACTIONS(4206), - [anon_sym_orderby] = ACTIONS(4206), - [anon_sym_ascending] = ACTIONS(4206), - [anon_sym_descending] = ACTIONS(4206), - [anon_sym_group] = ACTIONS(4206), - [anon_sym_select] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(7042), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_DASH_GT] = ACTIONS(4206), - [anon_sym_with] = ACTIONS(4206), - [sym_grit_metavariable] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(6921), + [anon_sym_COMMA] = ACTIONS(6921), + [anon_sym_LPAREN] = ACTIONS(6921), + [anon_sym_LT] = ACTIONS(6923), + [anon_sym_GT] = ACTIONS(6923), + [anon_sym_where] = ACTIONS(6921), + [anon_sym_QMARK] = ACTIONS(6923), + [anon_sym_DOT] = ACTIONS(6923), + [anon_sym_STAR] = ACTIONS(6921), + [anon_sym_switch] = ACTIONS(6921), + [anon_sym_DOT_DOT] = ACTIONS(6921), + [anon_sym_LT_EQ] = ACTIONS(6921), + [anon_sym_GT_EQ] = ACTIONS(6921), + [anon_sym_and] = ACTIONS(6921), + [anon_sym_or] = ACTIONS(6923), + [anon_sym_EQ_EQ] = ACTIONS(6921), + [anon_sym_BANG_EQ] = ACTIONS(6921), + [anon_sym_AMP_AMP] = ACTIONS(6921), + [anon_sym_PIPE_PIPE] = ACTIONS(6921), + [anon_sym_AMP] = ACTIONS(6923), + [sym_op_bitwise_or] = ACTIONS(6923), + [anon_sym_CARET] = ACTIONS(6921), + [sym_op_left_shift] = ACTIONS(6921), + [sym_op_right_shift] = ACTIONS(6923), + [sym_op_unsigned_right_shift] = ACTIONS(6921), + [anon_sym_PLUS] = ACTIONS(6923), + [anon_sym_DASH] = ACTIONS(6923), + [sym_op_divide] = ACTIONS(6923), + [sym_op_modulo] = ACTIONS(6921), + [sym_op_coalescing] = ACTIONS(6921), + [anon_sym_BANG] = ACTIONS(6923), + [anon_sym_PLUS_PLUS] = ACTIONS(6921), + [anon_sym_DASH_DASH] = ACTIONS(6921), + [anon_sym_from] = ACTIONS(6921), + [anon_sym_into] = ACTIONS(6921), + [anon_sym_join] = ACTIONS(6921), + [anon_sym_let] = ACTIONS(6921), + [anon_sym_orderby] = ACTIONS(6921), + [anon_sym_ascending] = ACTIONS(6921), + [anon_sym_descending] = ACTIONS(6921), + [anon_sym_group] = ACTIONS(6921), + [anon_sym_select] = ACTIONS(6921), + [anon_sym_as] = ACTIONS(6923), + [anon_sym_is] = ACTIONS(6921), + [anon_sym_DASH_GT] = ACTIONS(6921), + [anon_sym_with] = ACTIONS(6921), + [sym_grit_metavariable] = ACTIONS(6921), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655708,53 +647162,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5242), [sym_preproc_define] = STATE(5242), [sym_preproc_undef] = STATE(5242), - [anon_sym_LBRACK] = ACTIONS(7060), - [anon_sym_COMMA] = ACTIONS(7060), - [anon_sym_LPAREN] = ACTIONS(7060), - [anon_sym_LT] = ACTIONS(7062), - [anon_sym_GT] = ACTIONS(7062), - [anon_sym_where] = ACTIONS(7060), - [anon_sym_QMARK] = ACTIONS(7062), - [anon_sym_BANG] = ACTIONS(7062), - [anon_sym_PLUS_PLUS] = ACTIONS(7060), - [anon_sym_DASH_DASH] = ACTIONS(7060), - [anon_sym_PLUS] = ACTIONS(7062), - [anon_sym_DASH] = ACTIONS(7062), - [anon_sym_STAR] = ACTIONS(7060), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7060), - [anon_sym_CARET] = ACTIONS(7060), - [anon_sym_PIPE] = ACTIONS(7062), - [anon_sym_AMP] = ACTIONS(7062), - [anon_sym_LT_LT] = ACTIONS(7060), - [anon_sym_GT_GT] = ACTIONS(7062), - [anon_sym_GT_GT_GT] = ACTIONS(7060), - [anon_sym_EQ_EQ] = ACTIONS(7060), - [anon_sym_BANG_EQ] = ACTIONS(7060), - [anon_sym_GT_EQ] = ACTIONS(7060), - [anon_sym_LT_EQ] = ACTIONS(7060), - [anon_sym_DOT] = ACTIONS(7062), - [anon_sym_switch] = ACTIONS(7060), - [anon_sym_DOT_DOT] = ACTIONS(7060), - [anon_sym_and] = ACTIONS(7060), - [anon_sym_or] = ACTIONS(7062), - [anon_sym_AMP_AMP] = ACTIONS(7060), - [anon_sym_PIPE_PIPE] = ACTIONS(7060), - [sym_op_coalescing] = ACTIONS(7060), - [anon_sym_from] = ACTIONS(7060), - [anon_sym_into] = ACTIONS(7060), - [anon_sym_join] = ACTIONS(7060), - [anon_sym_let] = ACTIONS(7060), - [anon_sym_orderby] = ACTIONS(7060), - [anon_sym_ascending] = ACTIONS(7060), - [anon_sym_descending] = ACTIONS(7060), - [anon_sym_group] = ACTIONS(7060), - [anon_sym_select] = ACTIONS(7060), - [anon_sym_as] = ACTIONS(7062), - [anon_sym_is] = ACTIONS(7060), - [anon_sym_DASH_GT] = ACTIONS(7060), - [anon_sym_with] = ACTIONS(7060), - [sym_grit_metavariable] = ACTIONS(7060), + [anon_sym_LBRACK] = ACTIONS(6817), + [anon_sym_COMMA] = ACTIONS(6817), + [anon_sym_LPAREN] = ACTIONS(6817), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_where] = ACTIONS(6817), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(6817), + [anon_sym_switch] = ACTIONS(6817), + [anon_sym_DOT_DOT] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_and] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6817), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP] = ACTIONS(6819), + [sym_op_bitwise_or] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6817), + [sym_op_left_shift] = ACTIONS(6817), + [sym_op_right_shift] = ACTIONS(6819), + [sym_op_unsigned_right_shift] = ACTIONS(6817), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6819), + [sym_op_divide] = ACTIONS(6819), + [sym_op_modulo] = ACTIONS(6817), + [sym_op_coalescing] = ACTIONS(6817), + [anon_sym_BANG] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_from] = ACTIONS(6817), + [anon_sym_into] = ACTIONS(6817), + [anon_sym_join] = ACTIONS(6817), + [anon_sym_let] = ACTIONS(6817), + [anon_sym_orderby] = ACTIONS(6817), + [anon_sym_ascending] = ACTIONS(6817), + [anon_sym_descending] = ACTIONS(6817), + [anon_sym_group] = ACTIONS(6817), + [anon_sym_select] = ACTIONS(6817), + [anon_sym_as] = ACTIONS(6819), + [anon_sym_is] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6817), + [anon_sym_with] = ACTIONS(6817), + [sym_grit_metavariable] = ACTIONS(6817), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655776,53 +647230,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5243), [sym_preproc_define] = STATE(5243), [sym_preproc_undef] = STATE(5243), - [anon_sym_LBRACK] = ACTIONS(6271), - [anon_sym_COMMA] = ACTIONS(6271), - [anon_sym_LPAREN] = ACTIONS(6271), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_where] = ACTIONS(6271), - [anon_sym_QMARK] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PLUS_PLUS] = ACTIONS(6271), - [anon_sym_DASH_DASH] = ACTIONS(6271), - [anon_sym_PLUS] = ACTIONS(6273), - [anon_sym_DASH] = ACTIONS(6273), - [anon_sym_STAR] = ACTIONS(6271), - [anon_sym_SLASH] = ACTIONS(6273), - [anon_sym_PERCENT] = ACTIONS(6271), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_AMP] = ACTIONS(6273), - [anon_sym_LT_LT] = ACTIONS(6271), - [anon_sym_GT_GT] = ACTIONS(6273), - [anon_sym_GT_GT_GT] = ACTIONS(6271), - [anon_sym_EQ_EQ] = ACTIONS(6271), - [anon_sym_BANG_EQ] = ACTIONS(6271), - [anon_sym_GT_EQ] = ACTIONS(6271), - [anon_sym_LT_EQ] = ACTIONS(6271), - [anon_sym_DOT] = ACTIONS(6273), - [anon_sym_switch] = ACTIONS(6271), - [anon_sym_DOT_DOT] = ACTIONS(6271), - [anon_sym_and] = ACTIONS(6271), - [anon_sym_or] = ACTIONS(6273), - [anon_sym_AMP_AMP] = ACTIONS(6271), - [anon_sym_PIPE_PIPE] = ACTIONS(6271), - [sym_op_coalescing] = ACTIONS(6271), - [anon_sym_from] = ACTIONS(6271), - [anon_sym_into] = ACTIONS(6271), - [anon_sym_join] = ACTIONS(6271), - [anon_sym_let] = ACTIONS(6271), - [anon_sym_orderby] = ACTIONS(6271), - [anon_sym_ascending] = ACTIONS(6271), - [anon_sym_descending] = ACTIONS(6271), - [anon_sym_group] = ACTIONS(6271), - [anon_sym_select] = ACTIONS(6271), - [anon_sym_as] = ACTIONS(6273), - [anon_sym_is] = ACTIONS(6271), - [anon_sym_DASH_GT] = ACTIONS(6271), - [anon_sym_with] = ACTIONS(6271), - [sym_grit_metavariable] = ACTIONS(6271), + [anon_sym_LBRACK] = ACTIONS(6921), + [anon_sym_COMMA] = ACTIONS(6921), + [anon_sym_LPAREN] = ACTIONS(6921), + [anon_sym_LT] = ACTIONS(6923), + [anon_sym_GT] = ACTIONS(6923), + [anon_sym_where] = ACTIONS(6921), + [anon_sym_QMARK] = ACTIONS(6923), + [anon_sym_DOT] = ACTIONS(6923), + [anon_sym_STAR] = ACTIONS(6921), + [anon_sym_switch] = ACTIONS(6921), + [anon_sym_DOT_DOT] = ACTIONS(6921), + [anon_sym_LT_EQ] = ACTIONS(6921), + [anon_sym_GT_EQ] = ACTIONS(6921), + [anon_sym_and] = ACTIONS(6921), + [anon_sym_or] = ACTIONS(6923), + [anon_sym_EQ_EQ] = ACTIONS(6921), + [anon_sym_BANG_EQ] = ACTIONS(6921), + [anon_sym_AMP_AMP] = ACTIONS(6921), + [anon_sym_PIPE_PIPE] = ACTIONS(6921), + [anon_sym_AMP] = ACTIONS(6923), + [sym_op_bitwise_or] = ACTIONS(6923), + [anon_sym_CARET] = ACTIONS(6921), + [sym_op_left_shift] = ACTIONS(6921), + [sym_op_right_shift] = ACTIONS(6923), + [sym_op_unsigned_right_shift] = ACTIONS(6921), + [anon_sym_PLUS] = ACTIONS(6923), + [anon_sym_DASH] = ACTIONS(6923), + [sym_op_divide] = ACTIONS(6923), + [sym_op_modulo] = ACTIONS(6921), + [sym_op_coalescing] = ACTIONS(6921), + [anon_sym_BANG] = ACTIONS(6923), + [anon_sym_PLUS_PLUS] = ACTIONS(6921), + [anon_sym_DASH_DASH] = ACTIONS(6921), + [anon_sym_from] = ACTIONS(6921), + [anon_sym_into] = ACTIONS(6921), + [anon_sym_join] = ACTIONS(6921), + [anon_sym_let] = ACTIONS(6921), + [anon_sym_orderby] = ACTIONS(6921), + [anon_sym_ascending] = ACTIONS(6921), + [anon_sym_descending] = ACTIONS(6921), + [anon_sym_group] = ACTIONS(6921), + [anon_sym_select] = ACTIONS(6921), + [anon_sym_as] = ACTIONS(6923), + [anon_sym_is] = ACTIONS(6921), + [anon_sym_DASH_GT] = ACTIONS(6921), + [anon_sym_with] = ACTIONS(6921), + [sym_grit_metavariable] = ACTIONS(6921), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655835,24 +647289,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5244] = { - [sym__name] = STATE(5593), - [sym_alias_qualified_name] = STATE(5609), - [sym__simple_name] = STATE(5609), - [sym_qualified_name] = STATE(5609), - [sym_generic_name] = STATE(5595), - [sym_type] = STATE(5599), - [sym_implicit_type] = STATE(5606), - [sym_array_type] = STATE(5613), - [sym__array_base_type] = STATE(7386), - [sym_nullable_type] = STATE(5586), - [sym_pointer_type] = STATE(5586), - [sym__pointer_base_type] = STATE(8114), - [sym_function_pointer_type] = STATE(5586), - [sym_ref_type] = STATE(5606), - [sym_scoped_type] = STATE(5606), - [sym_tuple_type] = STATE(5591), - [sym_identifier] = STATE(5549), - [sym__reserved_identifier] = STATE(5566), + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3172), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(5244), [sym_preproc_endregion] = STATE(5244), [sym_preproc_line] = STATE(5244), @@ -655862,35 +647316,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5244), [sym_preproc_define] = STATE(5244), [sym_preproc_undef] = STATE(5244), - [sym__identifier_token] = ACTIONS(4318), - [anon_sym_alias] = ACTIONS(4320), - [anon_sym_global] = ACTIONS(4320), - [anon_sym_LPAREN] = ACTIONS(7601), - [anon_sym_ref] = ACTIONS(4359), - [anon_sym_delegate] = ACTIONS(7290), - [anon_sym_readonly] = ACTIONS(7603), - [anon_sym_file] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_notnull] = ACTIONS(4320), - [anon_sym_unmanaged] = ACTIONS(4320), - [anon_sym_scoped] = ACTIONS(7292), - [anon_sym_var] = ACTIONS(7294), - [sym_predefined_type] = ACTIONS(7296), - [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), - [sym_grit_metavariable] = ACTIONS(4327), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4190), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_readonly] = ACTIONS(8061), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7673), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655903,24 +647357,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5245] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(3789), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(5245), [sym_preproc_endregion] = STATE(5245), [sym_preproc_line] = STATE(5245), @@ -655930,35 +647366,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5245), [sym_preproc_define] = STATE(5245), [sym_preproc_undef] = STATE(5245), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4590), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_readonly] = ACTIONS(7605), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7280), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(5967), + [anon_sym_COMMA] = ACTIONS(5967), + [anon_sym_LPAREN] = ACTIONS(5967), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_where] = ACTIONS(5967), + [anon_sym_QMARK] = ACTIONS(5969), + [anon_sym_DOT] = ACTIONS(5969), + [anon_sym_STAR] = ACTIONS(5967), + [anon_sym_switch] = ACTIONS(5967), + [anon_sym_DOT_DOT] = ACTIONS(5967), + [anon_sym_LT_EQ] = ACTIONS(5967), + [anon_sym_GT_EQ] = ACTIONS(5967), + [anon_sym_and] = ACTIONS(5967), + [anon_sym_or] = ACTIONS(5969), + [anon_sym_EQ_EQ] = ACTIONS(5967), + [anon_sym_BANG_EQ] = ACTIONS(5967), + [anon_sym_AMP_AMP] = ACTIONS(5967), + [anon_sym_PIPE_PIPE] = ACTIONS(5967), + [anon_sym_AMP] = ACTIONS(5969), + [sym_op_bitwise_or] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5967), + [sym_op_left_shift] = ACTIONS(5967), + [sym_op_right_shift] = ACTIONS(5969), + [sym_op_unsigned_right_shift] = ACTIONS(5967), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_DASH] = ACTIONS(5969), + [sym_op_divide] = ACTIONS(5969), + [sym_op_modulo] = ACTIONS(5967), + [sym_op_coalescing] = ACTIONS(5967), + [anon_sym_BANG] = ACTIONS(5969), + [anon_sym_PLUS_PLUS] = ACTIONS(5967), + [anon_sym_DASH_DASH] = ACTIONS(5967), + [anon_sym_from] = ACTIONS(5967), + [anon_sym_into] = ACTIONS(5967), + [anon_sym_join] = ACTIONS(5967), + [anon_sym_let] = ACTIONS(5967), + [anon_sym_orderby] = ACTIONS(5967), + [anon_sym_ascending] = ACTIONS(5967), + [anon_sym_descending] = ACTIONS(5967), + [anon_sym_group] = ACTIONS(5967), + [anon_sym_select] = ACTIONS(5967), + [anon_sym_as] = ACTIONS(5969), + [anon_sym_is] = ACTIONS(5967), + [anon_sym_DASH_GT] = ACTIONS(5967), + [anon_sym_with] = ACTIONS(5967), + [sym_grit_metavariable] = ACTIONS(5967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -655971,25 +647425,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5246] = { - [sym_variable_declaration] = STATE(7912), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6216), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(5847), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(5576), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(5246), [sym_preproc_endregion] = STATE(5246), [sym_preproc_line] = STATE(5246), @@ -655999,34 +647443,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5246), [sym_preproc_define] = STATE(5246), [sym_preproc_undef] = STATE(5246), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(3894), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_file] = ACTIONS(3894), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3894), + [anon_sym_QMARK] = ACTIONS(3694), + [anon_sym_notnull] = ACTIONS(3894), + [anon_sym_unmanaged] = ACTIONS(3894), + [anon_sym_operator] = ACTIONS(3696), + [anon_sym_this] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3694), + [anon_sym_scoped] = ACTIONS(3894), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3894), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3894), + [anon_sym_when] = ACTIONS(3894), + [anon_sym_from] = ACTIONS(3894), + [anon_sym_into] = ACTIONS(3894), + [anon_sym_join] = ACTIONS(3894), + [anon_sym_on] = ACTIONS(3894), + [anon_sym_equals] = ACTIONS(3894), + [anon_sym_let] = ACTIONS(3894), + [anon_sym_orderby] = ACTIONS(3894), + [anon_sym_ascending] = ACTIONS(3894), + [anon_sym_descending] = ACTIONS(3894), + [anon_sym_group] = ACTIONS(3894), + [anon_sym_by] = ACTIONS(3894), + [anon_sym_select] = ACTIONS(3894), + [sym_grit_metavariable] = ACTIONS(3897), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -656039,24 +647493,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5247] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5247), [sym_preproc_endregion] = STATE(5247), [sym_preproc_line] = STATE(5247), @@ -656066,35 +647502,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5247), [sym_preproc_define] = STATE(5247), [sym_preproc_undef] = STATE(5247), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(7609), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN] = ACTIONS(6823), + [anon_sym_LT] = ACTIONS(6825), + [anon_sym_GT] = ACTIONS(6825), + [anon_sym_where] = ACTIONS(6823), + [anon_sym_QMARK] = ACTIONS(6825), + [anon_sym_DOT] = ACTIONS(6825), + [anon_sym_STAR] = ACTIONS(6823), + [anon_sym_switch] = ACTIONS(6823), + [anon_sym_DOT_DOT] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6825), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(6825), + [sym_op_bitwise_or] = ACTIONS(6825), + [anon_sym_CARET] = ACTIONS(6823), + [sym_op_left_shift] = ACTIONS(6823), + [sym_op_right_shift] = ACTIONS(6825), + [sym_op_unsigned_right_shift] = ACTIONS(6823), + [anon_sym_PLUS] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6825), + [sym_op_divide] = ACTIONS(6825), + [sym_op_modulo] = ACTIONS(6823), + [sym_op_coalescing] = ACTIONS(6823), + [anon_sym_BANG] = ACTIONS(6825), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_from] = ACTIONS(6823), + [anon_sym_into] = ACTIONS(6823), + [anon_sym_join] = ACTIONS(6823), + [anon_sym_let] = ACTIONS(6823), + [anon_sym_orderby] = ACTIONS(6823), + [anon_sym_ascending] = ACTIONS(6823), + [anon_sym_descending] = ACTIONS(6823), + [anon_sym_group] = ACTIONS(6823), + [anon_sym_select] = ACTIONS(6823), + [anon_sym_as] = ACTIONS(6825), + [anon_sym_is] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [anon_sym_with] = ACTIONS(6823), + [sym_grit_metavariable] = ACTIONS(6823), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -656107,24 +647561,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5248] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4753), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(5248), [sym_preproc_endregion] = STATE(5248), [sym_preproc_line] = STATE(5248), @@ -656134,35 +647570,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5248), [sym_preproc_define] = STATE(5248), [sym_preproc_undef] = STATE(5248), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4472), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_readonly] = ACTIONS(7613), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7236), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [anon_sym_LBRACK] = ACTIONS(5955), + [anon_sym_COMMA] = ACTIONS(5955), + [anon_sym_LPAREN] = ACTIONS(5955), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5955), + [anon_sym_QMARK] = ACTIONS(5957), + [anon_sym_DOT] = ACTIONS(5957), + [anon_sym_STAR] = ACTIONS(5955), + [anon_sym_switch] = ACTIONS(5955), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_LT_EQ] = ACTIONS(5955), + [anon_sym_GT_EQ] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5955), + [anon_sym_or] = ACTIONS(5957), + [anon_sym_EQ_EQ] = ACTIONS(5955), + [anon_sym_BANG_EQ] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5957), + [sym_op_bitwise_or] = ACTIONS(5957), + [anon_sym_CARET] = ACTIONS(5955), + [sym_op_left_shift] = ACTIONS(5955), + [sym_op_right_shift] = ACTIONS(5957), + [sym_op_unsigned_right_shift] = ACTIONS(5955), + [anon_sym_PLUS] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(5957), + [sym_op_divide] = ACTIONS(5957), + [sym_op_modulo] = ACTIONS(5955), + [sym_op_coalescing] = ACTIONS(5955), + [anon_sym_BANG] = ACTIONS(5957), + [anon_sym_PLUS_PLUS] = ACTIONS(5955), + [anon_sym_DASH_DASH] = ACTIONS(5955), + [anon_sym_from] = ACTIONS(5955), + [anon_sym_into] = ACTIONS(5955), + [anon_sym_join] = ACTIONS(5955), + [anon_sym_let] = ACTIONS(5955), + [anon_sym_orderby] = ACTIONS(5955), + [anon_sym_ascending] = ACTIONS(5955), + [anon_sym_descending] = ACTIONS(5955), + [anon_sym_group] = ACTIONS(5955), + [anon_sym_select] = ACTIONS(5955), + [anon_sym_as] = ACTIONS(5957), + [anon_sym_is] = ACTIONS(5955), + [anon_sym_DASH_GT] = ACTIONS(5955), + [anon_sym_with] = ACTIONS(5955), + [sym_grit_metavariable] = ACTIONS(5955), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -656175,24 +647629,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5249] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4705), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), [sym_preproc_region] = STATE(5249), [sym_preproc_endregion] = STATE(5249), [sym_preproc_line] = STATE(5249), @@ -656202,35 +647638,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5249), [sym_preproc_define] = STATE(5249), [sym_preproc_undef] = STATE(5249), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_ref] = ACTIONS(4092), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_readonly] = ACTIONS(7615), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7336), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(6827), + [anon_sym_COMMA] = ACTIONS(6827), + [anon_sym_LPAREN] = ACTIONS(6827), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_where] = ACTIONS(6827), + [anon_sym_QMARK] = ACTIONS(6829), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_switch] = ACTIONS(6827), + [anon_sym_DOT_DOT] = ACTIONS(6827), + [anon_sym_LT_EQ] = ACTIONS(6827), + [anon_sym_GT_EQ] = ACTIONS(6827), + [anon_sym_and] = ACTIONS(6827), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6827), + [anon_sym_BANG_EQ] = ACTIONS(6827), + [anon_sym_AMP_AMP] = ACTIONS(6827), + [anon_sym_PIPE_PIPE] = ACTIONS(6827), + [anon_sym_AMP] = ACTIONS(6829), + [sym_op_bitwise_or] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6827), + [sym_op_left_shift] = ACTIONS(6827), + [sym_op_right_shift] = ACTIONS(6829), + [sym_op_unsigned_right_shift] = ACTIONS(6827), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_DASH] = ACTIONS(6829), + [sym_op_divide] = ACTIONS(6829), + [sym_op_modulo] = ACTIONS(6827), + [sym_op_coalescing] = ACTIONS(6827), + [anon_sym_BANG] = ACTIONS(6829), + [anon_sym_PLUS_PLUS] = ACTIONS(6827), + [anon_sym_DASH_DASH] = ACTIONS(6827), + [anon_sym_from] = ACTIONS(6827), + [anon_sym_into] = ACTIONS(6827), + [anon_sym_join] = ACTIONS(6827), + [anon_sym_let] = ACTIONS(6827), + [anon_sym_orderby] = ACTIONS(6827), + [anon_sym_ascending] = ACTIONS(6827), + [anon_sym_descending] = ACTIONS(6827), + [anon_sym_group] = ACTIONS(6827), + [anon_sym_select] = ACTIONS(6827), + [anon_sym_as] = ACTIONS(6829), + [anon_sym_is] = ACTIONS(6827), + [anon_sym_DASH_GT] = ACTIONS(6827), + [anon_sym_with] = ACTIONS(6827), + [sym_grit_metavariable] = ACTIONS(6827), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -656252,53 +647706,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5250), [sym_preproc_define] = STATE(5250), [sym_preproc_undef] = STATE(5250), - [anon_sym_EQ] = ACTIONS(7617), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7619), - [anon_sym_DASH_EQ] = ACTIONS(7619), - [anon_sym_STAR_EQ] = ACTIONS(7619), - [anon_sym_SLASH_EQ] = ACTIONS(7619), - [anon_sym_PERCENT_EQ] = ACTIONS(7619), - [anon_sym_AMP_EQ] = ACTIONS(7619), - [anon_sym_CARET_EQ] = ACTIONS(7619), - [anon_sym_PIPE_EQ] = ACTIONS(7619), - [anon_sym_LT_LT_EQ] = ACTIONS(7619), - [anon_sym_GT_GT_EQ] = ACTIONS(7619), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7619), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7619), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_by] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(6827), + [anon_sym_COMMA] = ACTIONS(6827), + [anon_sym_LPAREN] = ACTIONS(6827), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_where] = ACTIONS(6827), + [anon_sym_QMARK] = ACTIONS(6829), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_switch] = ACTIONS(6827), + [anon_sym_DOT_DOT] = ACTIONS(6827), + [anon_sym_LT_EQ] = ACTIONS(6827), + [anon_sym_GT_EQ] = ACTIONS(6827), + [anon_sym_and] = ACTIONS(6827), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6827), + [anon_sym_BANG_EQ] = ACTIONS(6827), + [anon_sym_AMP_AMP] = ACTIONS(6827), + [anon_sym_PIPE_PIPE] = ACTIONS(6827), + [anon_sym_AMP] = ACTIONS(6829), + [sym_op_bitwise_or] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6827), + [sym_op_left_shift] = ACTIONS(6827), + [sym_op_right_shift] = ACTIONS(6829), + [sym_op_unsigned_right_shift] = ACTIONS(6827), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_DASH] = ACTIONS(6829), + [sym_op_divide] = ACTIONS(6829), + [sym_op_modulo] = ACTIONS(6827), + [sym_op_coalescing] = ACTIONS(6827), + [anon_sym_BANG] = ACTIONS(6829), + [anon_sym_PLUS_PLUS] = ACTIONS(6827), + [anon_sym_DASH_DASH] = ACTIONS(6827), + [anon_sym_from] = ACTIONS(6827), + [anon_sym_into] = ACTIONS(6827), + [anon_sym_join] = ACTIONS(6827), + [anon_sym_let] = ACTIONS(6827), + [anon_sym_orderby] = ACTIONS(6827), + [anon_sym_ascending] = ACTIONS(6827), + [anon_sym_descending] = ACTIONS(6827), + [anon_sym_group] = ACTIONS(6827), + [anon_sym_select] = ACTIONS(6827), + [anon_sym_as] = ACTIONS(6829), + [anon_sym_is] = ACTIONS(6827), + [anon_sym_DASH_GT] = ACTIONS(6827), + [anon_sym_with] = ACTIONS(6827), + [sym_grit_metavariable] = ACTIONS(6827), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -656320,53 +647774,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5251), [sym_preproc_define] = STATE(5251), [sym_preproc_undef] = STATE(5251), - [anon_sym_LBRACK] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7064), - [anon_sym_LPAREN] = ACTIONS(7064), - [anon_sym_LT] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7066), - [anon_sym_where] = ACTIONS(7064), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_BANG] = ACTIONS(7066), - [anon_sym_PLUS_PLUS] = ACTIONS(7064), - [anon_sym_DASH_DASH] = ACTIONS(7064), - [anon_sym_PLUS] = ACTIONS(7066), - [anon_sym_DASH] = ACTIONS(7066), - [anon_sym_STAR] = ACTIONS(7064), - [anon_sym_SLASH] = ACTIONS(7066), - [anon_sym_PERCENT] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7064), - [anon_sym_PIPE] = ACTIONS(7066), - [anon_sym_AMP] = ACTIONS(7066), - [anon_sym_LT_LT] = ACTIONS(7064), - [anon_sym_GT_GT] = ACTIONS(7066), - [anon_sym_GT_GT_GT] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7064), - [anon_sym_BANG_EQ] = ACTIONS(7064), - [anon_sym_GT_EQ] = ACTIONS(7064), - [anon_sym_LT_EQ] = ACTIONS(7064), - [anon_sym_DOT] = ACTIONS(7066), - [anon_sym_switch] = ACTIONS(7064), - [anon_sym_DOT_DOT] = ACTIONS(7064), - [anon_sym_and] = ACTIONS(7064), - [anon_sym_or] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7064), - [sym_op_coalescing] = ACTIONS(7064), - [anon_sym_from] = ACTIONS(7064), - [anon_sym_into] = ACTIONS(7064), - [anon_sym_join] = ACTIONS(7064), - [anon_sym_let] = ACTIONS(7064), - [anon_sym_orderby] = ACTIONS(7064), - [anon_sym_ascending] = ACTIONS(7064), - [anon_sym_descending] = ACTIONS(7064), - [anon_sym_group] = ACTIONS(7064), - [anon_sym_select] = ACTIONS(7064), - [anon_sym_as] = ACTIONS(7066), - [anon_sym_is] = ACTIONS(7064), - [anon_sym_DASH_GT] = ACTIONS(7064), - [anon_sym_with] = ACTIONS(7064), - [sym_grit_metavariable] = ACTIONS(7064), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_COMMA] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_GT] = ACTIONS(3386), + [anon_sym_where] = ACTIONS(3388), + [anon_sym_QMARK] = ACTIONS(3386), + [anon_sym_DOT] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3388), + [anon_sym_DOT_DOT] = ACTIONS(3388), + [anon_sym_LT_EQ] = ACTIONS(3388), + [anon_sym_GT_EQ] = ACTIONS(3388), + [anon_sym_and] = ACTIONS(3388), + [anon_sym_or] = ACTIONS(3386), + [anon_sym_EQ_EQ] = ACTIONS(3388), + [anon_sym_BANG_EQ] = ACTIONS(3388), + [anon_sym_AMP_AMP] = ACTIONS(3388), + [anon_sym_PIPE_PIPE] = ACTIONS(3388), + [anon_sym_AMP] = ACTIONS(3386), + [sym_op_bitwise_or] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3388), + [sym_op_left_shift] = ACTIONS(3388), + [sym_op_right_shift] = ACTIONS(3386), + [sym_op_unsigned_right_shift] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [sym_op_divide] = ACTIONS(3386), + [sym_op_modulo] = ACTIONS(3388), + [sym_op_coalescing] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_from] = ACTIONS(3388), + [anon_sym_into] = ACTIONS(3388), + [anon_sym_join] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3388), + [anon_sym_orderby] = ACTIONS(3388), + [anon_sym_ascending] = ACTIONS(3388), + [anon_sym_descending] = ACTIONS(3388), + [anon_sym_group] = ACTIONS(3388), + [anon_sym_select] = ACTIONS(3388), + [anon_sym_as] = ACTIONS(3386), + [anon_sym_is] = ACTIONS(3388), + [anon_sym_DASH_GT] = ACTIONS(3388), + [anon_sym_with] = ACTIONS(3388), + [sym_grit_metavariable] = ACTIONS(3388), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -656379,6 +647833,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5252] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6335), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7467), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5252), [sym_preproc_endregion] = STATE(5252), [sym_preproc_line] = STATE(5252), @@ -656388,53 +647861,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5252), [sym_preproc_define] = STATE(5252), [sym_preproc_undef] = STATE(5252), - [anon_sym_LBRACK] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7064), - [anon_sym_LPAREN] = ACTIONS(7064), - [anon_sym_LT] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7066), - [anon_sym_where] = ACTIONS(7064), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_BANG] = ACTIONS(7066), - [anon_sym_PLUS_PLUS] = ACTIONS(7064), - [anon_sym_DASH_DASH] = ACTIONS(7064), - [anon_sym_PLUS] = ACTIONS(7066), - [anon_sym_DASH] = ACTIONS(7066), - [anon_sym_STAR] = ACTIONS(7064), - [anon_sym_SLASH] = ACTIONS(7066), - [anon_sym_PERCENT] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7064), - [anon_sym_PIPE] = ACTIONS(7066), - [anon_sym_AMP] = ACTIONS(7066), - [anon_sym_LT_LT] = ACTIONS(7064), - [anon_sym_GT_GT] = ACTIONS(7066), - [anon_sym_GT_GT_GT] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7064), - [anon_sym_BANG_EQ] = ACTIONS(7064), - [anon_sym_GT_EQ] = ACTIONS(7064), - [anon_sym_LT_EQ] = ACTIONS(7064), - [anon_sym_DOT] = ACTIONS(7066), - [anon_sym_switch] = ACTIONS(7064), - [anon_sym_DOT_DOT] = ACTIONS(7064), - [anon_sym_and] = ACTIONS(7064), - [anon_sym_or] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7064), - [sym_op_coalescing] = ACTIONS(7064), - [anon_sym_from] = ACTIONS(7064), - [anon_sym_into] = ACTIONS(7064), - [anon_sym_join] = ACTIONS(7064), - [anon_sym_let] = ACTIONS(7064), - [anon_sym_orderby] = ACTIONS(7064), - [anon_sym_ascending] = ACTIONS(7064), - [anon_sym_descending] = ACTIONS(7064), - [anon_sym_group] = ACTIONS(7064), - [anon_sym_select] = ACTIONS(7064), - [anon_sym_as] = ACTIONS(7066), - [anon_sym_is] = ACTIONS(7064), - [anon_sym_DASH_GT] = ACTIONS(7064), - [anon_sym_with] = ACTIONS(7064), - [sym_grit_metavariable] = ACTIONS(7064), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3930), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(7995), + [anon_sym_var] = ACTIONS(7997), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -656447,24 +647901,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5253] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4705), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), [sym_preproc_region] = STATE(5253), [sym_preproc_endregion] = STATE(5253), [sym_preproc_line] = STATE(5253), @@ -656474,35 +647910,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5253), [sym_preproc_define] = STATE(5253), [sym_preproc_undef] = STATE(5253), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_ref] = ACTIONS(4382), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_readonly] = ACTIONS(7621), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7392), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(4660), + [anon_sym_COMMA] = ACTIONS(4660), + [anon_sym_LPAREN] = ACTIONS(4660), + [anon_sym_LT] = ACTIONS(4662), + [anon_sym_GT] = ACTIONS(4662), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_QMARK] = ACTIONS(4662), + [anon_sym_DOT] = ACTIONS(4662), + [anon_sym_STAR] = ACTIONS(4660), + [anon_sym_switch] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4660), + [anon_sym_LT_EQ] = ACTIONS(4660), + [anon_sym_GT_EQ] = ACTIONS(4660), + [anon_sym_and] = ACTIONS(4660), + [anon_sym_or] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_AMP_AMP] = ACTIONS(4660), + [anon_sym_PIPE_PIPE] = ACTIONS(4660), + [anon_sym_AMP] = ACTIONS(4662), + [sym_op_bitwise_or] = ACTIONS(4662), + [anon_sym_CARET] = ACTIONS(4660), + [sym_op_left_shift] = ACTIONS(4660), + [sym_op_right_shift] = ACTIONS(4662), + [sym_op_unsigned_right_shift] = ACTIONS(4660), + [anon_sym_PLUS] = ACTIONS(4662), + [anon_sym_DASH] = ACTIONS(4662), + [sym_op_divide] = ACTIONS(4662), + [sym_op_modulo] = ACTIONS(4660), + [sym_op_coalescing] = ACTIONS(4660), + [anon_sym_BANG] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4660), + [anon_sym_DASH_DASH] = ACTIONS(4660), + [anon_sym_from] = ACTIONS(4660), + [anon_sym_into] = ACTIONS(4660), + [anon_sym_join] = ACTIONS(4660), + [anon_sym_let] = ACTIONS(4660), + [anon_sym_orderby] = ACTIONS(4660), + [anon_sym_ascending] = ACTIONS(4660), + [anon_sym_descending] = ACTIONS(4660), + [anon_sym_group] = ACTIONS(4660), + [anon_sym_select] = ACTIONS(4660), + [anon_sym_as] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_DASH_GT] = ACTIONS(4660), + [anon_sym_with] = ACTIONS(4660), + [sym_grit_metavariable] = ACTIONS(4660), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -656515,25 +647969,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5254] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6355), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7497), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5254), [sym_preproc_endregion] = STATE(5254), [sym_preproc_line] = STATE(5254), @@ -656547,15 +648000,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3900), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(7922), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_readonly] = ACTIONS(7924), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7298), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(5690), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -656570,7 +648024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -656583,6 +648037,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5255] = { + [sym_variable_declaration] = STATE(8067), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6216), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5255), [sym_preproc_endregion] = STATE(5255), [sym_preproc_line] = STATE(5255), @@ -656592,53 +648065,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5255), [sym_preproc_define] = STATE(5255), [sym_preproc_undef] = STATE(5255), - [anon_sym_LBRACK] = ACTIONS(6335), - [anon_sym_COMMA] = ACTIONS(6335), - [anon_sym_LPAREN] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_where] = ACTIONS(6335), - [anon_sym_QMARK] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PLUS_PLUS] = ACTIONS(6335), - [anon_sym_DASH_DASH] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6337), - [anon_sym_DASH] = ACTIONS(6337), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6337), - [anon_sym_PERCENT] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_AMP] = ACTIONS(6337), - [anon_sym_LT_LT] = ACTIONS(6335), - [anon_sym_GT_GT] = ACTIONS(6337), - [anon_sym_GT_GT_GT] = ACTIONS(6335), - [anon_sym_EQ_EQ] = ACTIONS(6335), - [anon_sym_BANG_EQ] = ACTIONS(6335), - [anon_sym_GT_EQ] = ACTIONS(6335), - [anon_sym_LT_EQ] = ACTIONS(6335), - [anon_sym_DOT] = ACTIONS(6337), - [anon_sym_switch] = ACTIONS(6335), - [anon_sym_DOT_DOT] = ACTIONS(6335), - [anon_sym_and] = ACTIONS(6335), - [anon_sym_or] = ACTIONS(6337), - [anon_sym_AMP_AMP] = ACTIONS(6335), - [anon_sym_PIPE_PIPE] = ACTIONS(6335), - [sym_op_coalescing] = ACTIONS(6335), - [anon_sym_from] = ACTIONS(6335), - [anon_sym_into] = ACTIONS(6335), - [anon_sym_join] = ACTIONS(6335), - [anon_sym_let] = ACTIONS(6335), - [anon_sym_orderby] = ACTIONS(6335), - [anon_sym_ascending] = ACTIONS(6335), - [anon_sym_descending] = ACTIONS(6335), - [anon_sym_group] = ACTIONS(6335), - [anon_sym_select] = ACTIONS(6335), - [anon_sym_as] = ACTIONS(6337), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(6335), - [anon_sym_with] = ACTIONS(6335), - [sym_grit_metavariable] = ACTIONS(6335), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -656651,6 +648105,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5256] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6335), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7462), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5256), [sym_preproc_endregion] = STATE(5256), [sym_preproc_line] = STATE(5256), @@ -656660,106 +648133,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5256), [sym_preproc_define] = STATE(5256), [sym_preproc_undef] = STATE(5256), - [anon_sym_LBRACK] = ACTIONS(6313), - [anon_sym_COMMA] = ACTIONS(6313), - [anon_sym_LPAREN] = ACTIONS(6313), - [anon_sym_LT] = ACTIONS(6315), - [anon_sym_GT] = ACTIONS(6315), - [anon_sym_where] = ACTIONS(6313), - [anon_sym_QMARK] = ACTIONS(6315), - [anon_sym_BANG] = ACTIONS(6315), - [anon_sym_PLUS_PLUS] = ACTIONS(6313), - [anon_sym_DASH_DASH] = ACTIONS(6313), - [anon_sym_PLUS] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6315), - [anon_sym_STAR] = ACTIONS(6313), - [anon_sym_SLASH] = ACTIONS(6315), - [anon_sym_PERCENT] = ACTIONS(6313), - [anon_sym_CARET] = ACTIONS(6313), - [anon_sym_PIPE] = ACTIONS(6315), - [anon_sym_AMP] = ACTIONS(6315), - [anon_sym_LT_LT] = ACTIONS(6313), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6313), - [anon_sym_EQ_EQ] = ACTIONS(6313), - [anon_sym_BANG_EQ] = ACTIONS(6313), - [anon_sym_GT_EQ] = ACTIONS(6313), - [anon_sym_LT_EQ] = ACTIONS(6313), - [anon_sym_DOT] = ACTIONS(6315), - [anon_sym_switch] = ACTIONS(6313), - [anon_sym_DOT_DOT] = ACTIONS(6313), - [anon_sym_and] = ACTIONS(6313), - [anon_sym_or] = ACTIONS(6315), - [anon_sym_AMP_AMP] = ACTIONS(6313), - [anon_sym_PIPE_PIPE] = ACTIONS(6313), - [sym_op_coalescing] = ACTIONS(6313), - [anon_sym_from] = ACTIONS(6313), - [anon_sym_into] = ACTIONS(6313), - [anon_sym_join] = ACTIONS(6313), - [anon_sym_let] = ACTIONS(6313), - [anon_sym_orderby] = ACTIONS(6313), - [anon_sym_ascending] = ACTIONS(6313), - [anon_sym_descending] = ACTIONS(6313), - [anon_sym_group] = ACTIONS(6313), - [anon_sym_select] = ACTIONS(6313), - [anon_sym_as] = ACTIONS(6315), - [anon_sym_is] = ACTIONS(6313), - [anon_sym_DASH_GT] = ACTIONS(6313), - [anon_sym_with] = ACTIONS(6313), - [sym_grit_metavariable] = ACTIONS(6313), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5257] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5257), - [sym_preproc_endregion] = STATE(5257), - [sym_preproc_line] = STATE(5257), - [sym_preproc_pragma] = STATE(5257), - [sym_preproc_nullable] = STATE(5257), - [sym_preproc_error] = STATE(5257), - [sym_preproc_warning] = STATE(5257), - [sym_preproc_define] = STATE(5257), - [sym_preproc_undef] = STATE(5257), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), - [anon_sym_readonly] = ACTIONS(7623), + [anon_sym_ref] = ACTIONS(3900), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), + [anon_sym_scoped] = ACTIONS(7834), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -656774,7 +648160,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = 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), + }, + [5257] = { + [sym_preproc_region] = STATE(5257), + [sym_preproc_endregion] = STATE(5257), + [sym_preproc_line] = STATE(5257), + [sym_preproc_pragma] = STATE(5257), + [sym_preproc_nullable] = STATE(5257), + [sym_preproc_error] = STATE(5257), + [sym_preproc_warning] = STATE(5257), + [sym_preproc_define] = STATE(5257), + [sym_preproc_undef] = STATE(5257), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_COMMA] = ACTIONS(6835), + [anon_sym_LPAREN] = ACTIONS(6835), + [anon_sym_LT] = ACTIONS(6837), + [anon_sym_GT] = ACTIONS(6837), + [anon_sym_where] = ACTIONS(6835), + [anon_sym_QMARK] = ACTIONS(6837), + [anon_sym_DOT] = ACTIONS(6837), + [anon_sym_STAR] = ACTIONS(6835), + [anon_sym_switch] = ACTIONS(6835), + [anon_sym_DOT_DOT] = ACTIONS(6835), + [anon_sym_LT_EQ] = ACTIONS(6835), + [anon_sym_GT_EQ] = ACTIONS(6835), + [anon_sym_and] = ACTIONS(6835), + [anon_sym_or] = ACTIONS(6837), + [anon_sym_EQ_EQ] = ACTIONS(6835), + [anon_sym_BANG_EQ] = ACTIONS(6835), + [anon_sym_AMP_AMP] = ACTIONS(6835), + [anon_sym_PIPE_PIPE] = ACTIONS(6835), + [anon_sym_AMP] = ACTIONS(6837), + [sym_op_bitwise_or] = ACTIONS(6837), + [anon_sym_CARET] = ACTIONS(6835), + [sym_op_left_shift] = ACTIONS(6835), + [sym_op_right_shift] = ACTIONS(6837), + [sym_op_unsigned_right_shift] = ACTIONS(6835), + [anon_sym_PLUS] = ACTIONS(6837), + [anon_sym_DASH] = ACTIONS(6837), + [sym_op_divide] = ACTIONS(6837), + [sym_op_modulo] = ACTIONS(6835), + [sym_op_coalescing] = ACTIONS(6835), + [anon_sym_BANG] = ACTIONS(6837), + [anon_sym_PLUS_PLUS] = ACTIONS(6835), + [anon_sym_DASH_DASH] = ACTIONS(6835), + [anon_sym_from] = ACTIONS(6835), + [anon_sym_into] = ACTIONS(6835), + [anon_sym_join] = ACTIONS(6835), + [anon_sym_let] = ACTIONS(6835), + [anon_sym_orderby] = ACTIONS(6835), + [anon_sym_ascending] = ACTIONS(6835), + [anon_sym_descending] = ACTIONS(6835), + [anon_sym_group] = ACTIONS(6835), + [anon_sym_select] = ACTIONS(6835), + [anon_sym_as] = ACTIONS(6837), + [anon_sym_is] = ACTIONS(6835), + [anon_sym_DASH_GT] = ACTIONS(6835), + [anon_sym_with] = ACTIONS(6835), + [sym_grit_metavariable] = ACTIONS(6835), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -656787,24 +648241,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5258] = { - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3755), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), [sym_preproc_region] = STATE(5258), [sym_preproc_endregion] = STATE(5258), [sym_preproc_line] = STATE(5258), @@ -656814,35 +648250,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5258), [sym_preproc_define] = STATE(5258), [sym_preproc_undef] = STATE(5258), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4642), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_readonly] = ACTIONS(7625), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7330), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_COMMA] = ACTIONS(6839), + [anon_sym_LPAREN] = ACTIONS(6839), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_where] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6841), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(6839), + [anon_sym_switch] = ACTIONS(6839), + [anon_sym_DOT_DOT] = ACTIONS(6839), + [anon_sym_LT_EQ] = ACTIONS(6839), + [anon_sym_GT_EQ] = ACTIONS(6839), + [anon_sym_and] = ACTIONS(6839), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_EQ_EQ] = ACTIONS(6839), + [anon_sym_BANG_EQ] = ACTIONS(6839), + [anon_sym_AMP_AMP] = ACTIONS(6839), + [anon_sym_PIPE_PIPE] = ACTIONS(6839), + [anon_sym_AMP] = ACTIONS(6841), + [sym_op_bitwise_or] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6839), + [sym_op_left_shift] = ACTIONS(6839), + [sym_op_right_shift] = ACTIONS(6841), + [sym_op_unsigned_right_shift] = ACTIONS(6839), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_DASH] = ACTIONS(6841), + [sym_op_divide] = ACTIONS(6841), + [sym_op_modulo] = ACTIONS(6839), + [sym_op_coalescing] = ACTIONS(6839), + [anon_sym_BANG] = ACTIONS(6841), + [anon_sym_PLUS_PLUS] = ACTIONS(6839), + [anon_sym_DASH_DASH] = ACTIONS(6839), + [anon_sym_from] = ACTIONS(6839), + [anon_sym_into] = ACTIONS(6839), + [anon_sym_join] = ACTIONS(6839), + [anon_sym_let] = ACTIONS(6839), + [anon_sym_orderby] = ACTIONS(6839), + [anon_sym_ascending] = ACTIONS(6839), + [anon_sym_descending] = ACTIONS(6839), + [anon_sym_group] = ACTIONS(6839), + [anon_sym_select] = ACTIONS(6839), + [anon_sym_as] = ACTIONS(6841), + [anon_sym_is] = ACTIONS(6839), + [anon_sym_DASH_GT] = ACTIONS(6839), + [anon_sym_with] = ACTIONS(6839), + [sym_grit_metavariable] = ACTIONS(6839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -656864,53 +648318,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5259), [sym_preproc_define] = STATE(5259), [sym_preproc_undef] = STATE(5259), - [anon_sym_LBRACK] = ACTIONS(6293), - [anon_sym_COMMA] = ACTIONS(6293), - [anon_sym_LPAREN] = ACTIONS(6293), - [anon_sym_LT] = ACTIONS(6295), - [anon_sym_GT] = ACTIONS(6295), - [anon_sym_where] = ACTIONS(6293), - [anon_sym_QMARK] = ACTIONS(6295), - [anon_sym_BANG] = ACTIONS(6295), - [anon_sym_PLUS_PLUS] = ACTIONS(6293), - [anon_sym_DASH_DASH] = ACTIONS(6293), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6293), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_PERCENT] = ACTIONS(6293), - [anon_sym_CARET] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6295), - [anon_sym_AMP] = ACTIONS(6295), - [anon_sym_LT_LT] = ACTIONS(6293), - [anon_sym_GT_GT] = ACTIONS(6295), - [anon_sym_GT_GT_GT] = ACTIONS(6293), - [anon_sym_EQ_EQ] = ACTIONS(6293), - [anon_sym_BANG_EQ] = ACTIONS(6293), - [anon_sym_GT_EQ] = ACTIONS(6293), - [anon_sym_LT_EQ] = ACTIONS(6293), - [anon_sym_DOT] = ACTIONS(6295), - [anon_sym_switch] = ACTIONS(6293), - [anon_sym_DOT_DOT] = ACTIONS(6293), - [anon_sym_and] = ACTIONS(6293), - [anon_sym_or] = ACTIONS(6295), - [anon_sym_AMP_AMP] = ACTIONS(6293), - [anon_sym_PIPE_PIPE] = ACTIONS(6293), - [sym_op_coalescing] = ACTIONS(6293), - [anon_sym_from] = ACTIONS(6293), - [anon_sym_into] = ACTIONS(6293), - [anon_sym_join] = ACTIONS(6293), - [anon_sym_let] = ACTIONS(6293), - [anon_sym_orderby] = ACTIONS(6293), - [anon_sym_ascending] = ACTIONS(6293), - [anon_sym_descending] = ACTIONS(6293), - [anon_sym_group] = ACTIONS(6293), - [anon_sym_select] = ACTIONS(6293), - [anon_sym_as] = ACTIONS(6295), - [anon_sym_is] = ACTIONS(6293), - [anon_sym_DASH_GT] = ACTIONS(6293), - [anon_sym_with] = ACTIONS(6293), - [sym_grit_metavariable] = ACTIONS(6293), + [anon_sym_LBRACK] = ACTIONS(6023), + [anon_sym_COMMA] = ACTIONS(6023), + [anon_sym_LPAREN] = ACTIONS(6023), + [anon_sym_LT] = ACTIONS(6025), + [anon_sym_GT] = ACTIONS(6025), + [anon_sym_where] = ACTIONS(6023), + [anon_sym_QMARK] = ACTIONS(6025), + [anon_sym_DOT] = ACTIONS(6025), + [anon_sym_STAR] = ACTIONS(6023), + [anon_sym_switch] = ACTIONS(6023), + [anon_sym_DOT_DOT] = ACTIONS(6023), + [anon_sym_LT_EQ] = ACTIONS(6023), + [anon_sym_GT_EQ] = ACTIONS(6023), + [anon_sym_and] = ACTIONS(6023), + [anon_sym_or] = ACTIONS(6025), + [anon_sym_EQ_EQ] = ACTIONS(6023), + [anon_sym_BANG_EQ] = ACTIONS(6023), + [anon_sym_AMP_AMP] = ACTIONS(6023), + [anon_sym_PIPE_PIPE] = ACTIONS(6023), + [anon_sym_AMP] = ACTIONS(6025), + [sym_op_bitwise_or] = ACTIONS(6025), + [anon_sym_CARET] = ACTIONS(6023), + [sym_op_left_shift] = ACTIONS(6023), + [sym_op_right_shift] = ACTIONS(6025), + [sym_op_unsigned_right_shift] = ACTIONS(6023), + [anon_sym_PLUS] = ACTIONS(6025), + [anon_sym_DASH] = ACTIONS(6025), + [sym_op_divide] = ACTIONS(6025), + [sym_op_modulo] = ACTIONS(6023), + [sym_op_coalescing] = ACTIONS(6023), + [anon_sym_BANG] = ACTIONS(6025), + [anon_sym_PLUS_PLUS] = ACTIONS(6023), + [anon_sym_DASH_DASH] = ACTIONS(6023), + [anon_sym_from] = ACTIONS(6023), + [anon_sym_into] = ACTIONS(6023), + [anon_sym_join] = ACTIONS(6023), + [anon_sym_let] = ACTIONS(6023), + [anon_sym_orderby] = ACTIONS(6023), + [anon_sym_ascending] = ACTIONS(6023), + [anon_sym_descending] = ACTIONS(6023), + [anon_sym_group] = ACTIONS(6023), + [anon_sym_select] = ACTIONS(6023), + [anon_sym_as] = ACTIONS(6025), + [anon_sym_is] = ACTIONS(6023), + [anon_sym_DASH_GT] = ACTIONS(6023), + [anon_sym_with] = ACTIONS(6023), + [sym_grit_metavariable] = ACTIONS(6023), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -656923,24 +648377,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5260] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6416), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5260), [sym_preproc_endregion] = STATE(5260), [sym_preproc_line] = STATE(5260), @@ -656950,35 +648386,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5260), [sym_preproc_define] = STATE(5260), [sym_preproc_undef] = STATE(5260), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(7202), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN] = ACTIONS(6843), + [anon_sym_LT] = ACTIONS(6845), + [anon_sym_GT] = ACTIONS(6845), + [anon_sym_where] = ACTIONS(6843), + [anon_sym_QMARK] = ACTIONS(6845), + [anon_sym_DOT] = ACTIONS(6845), + [anon_sym_STAR] = ACTIONS(6843), + [anon_sym_switch] = ACTIONS(6843), + [anon_sym_DOT_DOT] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6845), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(6845), + [sym_op_bitwise_or] = ACTIONS(6845), + [anon_sym_CARET] = ACTIONS(6843), + [sym_op_left_shift] = ACTIONS(6843), + [sym_op_right_shift] = ACTIONS(6845), + [sym_op_unsigned_right_shift] = ACTIONS(6843), + [anon_sym_PLUS] = ACTIONS(6845), + [anon_sym_DASH] = ACTIONS(6845), + [sym_op_divide] = ACTIONS(6845), + [sym_op_modulo] = ACTIONS(6843), + [sym_op_coalescing] = ACTIONS(6843), + [anon_sym_BANG] = ACTIONS(6845), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_from] = ACTIONS(6843), + [anon_sym_into] = ACTIONS(6843), + [anon_sym_join] = ACTIONS(6843), + [anon_sym_let] = ACTIONS(6843), + [anon_sym_orderby] = ACTIONS(6843), + [anon_sym_ascending] = ACTIONS(6843), + [anon_sym_descending] = ACTIONS(6843), + [anon_sym_group] = ACTIONS(6843), + [anon_sym_select] = ACTIONS(6843), + [anon_sym_as] = ACTIONS(6845), + [anon_sym_is] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [anon_sym_with] = ACTIONS(6843), + [sym_grit_metavariable] = ACTIONS(6843), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -656991,24 +648445,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5261] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5261), [sym_preproc_endregion] = STATE(5261), [sym_preproc_line] = STATE(5261), @@ -657018,35 +648454,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5261), [sym_preproc_define] = STATE(5261), [sym_preproc_undef] = STATE(5261), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7190), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(7627), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7194), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_EQ] = ACTIONS(8063), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(8065), + [anon_sym_DASH_EQ] = ACTIONS(8065), + [anon_sym_STAR_EQ] = ACTIONS(8065), + [anon_sym_SLASH_EQ] = ACTIONS(8065), + [anon_sym_PERCENT_EQ] = ACTIONS(8065), + [anon_sym_AMP_EQ] = ACTIONS(8065), + [anon_sym_CARET_EQ] = ACTIONS(8065), + [anon_sym_PIPE_EQ] = ACTIONS(8065), + [anon_sym_LT_LT_EQ] = ACTIONS(8065), + [anon_sym_GT_GT_EQ] = ACTIONS(8065), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(8065), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(8065), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_on] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -657068,53 +648522,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5262), [sym_preproc_define] = STATE(5262), [sym_preproc_undef] = STATE(5262), - [anon_sym_LBRACK] = ACTIONS(6281), - [anon_sym_COMMA] = ACTIONS(6281), - [anon_sym_LPAREN] = ACTIONS(6281), - [anon_sym_LT] = ACTIONS(6283), - [anon_sym_GT] = ACTIONS(6283), - [anon_sym_where] = ACTIONS(6281), - [anon_sym_QMARK] = ACTIONS(6283), - [anon_sym_BANG] = ACTIONS(6283), - [anon_sym_PLUS_PLUS] = ACTIONS(6281), - [anon_sym_DASH_DASH] = ACTIONS(6281), - [anon_sym_PLUS] = ACTIONS(6283), - [anon_sym_DASH] = ACTIONS(6283), - [anon_sym_STAR] = ACTIONS(6281), - [anon_sym_SLASH] = ACTIONS(6283), - [anon_sym_PERCENT] = ACTIONS(6281), - [anon_sym_CARET] = ACTIONS(6281), - [anon_sym_PIPE] = ACTIONS(6283), - [anon_sym_AMP] = ACTIONS(6283), - [anon_sym_LT_LT] = ACTIONS(6281), - [anon_sym_GT_GT] = ACTIONS(6283), - [anon_sym_GT_GT_GT] = ACTIONS(6281), - [anon_sym_EQ_EQ] = ACTIONS(6281), - [anon_sym_BANG_EQ] = ACTIONS(6281), - [anon_sym_GT_EQ] = ACTIONS(6281), - [anon_sym_LT_EQ] = ACTIONS(6281), - [anon_sym_DOT] = ACTIONS(6283), - [anon_sym_switch] = ACTIONS(6281), - [anon_sym_DOT_DOT] = ACTIONS(6281), - [anon_sym_and] = ACTIONS(6281), - [anon_sym_or] = ACTIONS(6283), - [anon_sym_AMP_AMP] = ACTIONS(6281), - [anon_sym_PIPE_PIPE] = ACTIONS(6281), - [sym_op_coalescing] = ACTIONS(6281), - [anon_sym_from] = ACTIONS(6281), - [anon_sym_into] = ACTIONS(6281), - [anon_sym_join] = ACTIONS(6281), - [anon_sym_let] = ACTIONS(6281), - [anon_sym_orderby] = ACTIONS(6281), - [anon_sym_ascending] = ACTIONS(6281), - [anon_sym_descending] = ACTIONS(6281), - [anon_sym_group] = ACTIONS(6281), - [anon_sym_select] = ACTIONS(6281), - [anon_sym_as] = ACTIONS(6283), - [anon_sym_is] = ACTIONS(6281), - [anon_sym_DASH_GT] = ACTIONS(6281), - [anon_sym_with] = ACTIONS(6281), - [sym_grit_metavariable] = ACTIONS(6281), + [anon_sym_LBRACK] = ACTIONS(5775), + [anon_sym_COMMA] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5775), + [anon_sym_LT] = ACTIONS(5777), + [anon_sym_GT] = ACTIONS(5777), + [anon_sym_where] = ACTIONS(5775), + [anon_sym_QMARK] = ACTIONS(5777), + [anon_sym_DOT] = ACTIONS(5777), + [anon_sym_STAR] = ACTIONS(5775), + [anon_sym_switch] = ACTIONS(5775), + [anon_sym_DOT_DOT] = ACTIONS(5775), + [anon_sym_LT_EQ] = ACTIONS(5775), + [anon_sym_GT_EQ] = ACTIONS(5775), + [anon_sym_and] = ACTIONS(5775), + [anon_sym_or] = ACTIONS(5777), + [anon_sym_EQ_EQ] = ACTIONS(5775), + [anon_sym_BANG_EQ] = ACTIONS(5775), + [anon_sym_AMP_AMP] = ACTIONS(5775), + [anon_sym_PIPE_PIPE] = ACTIONS(5775), + [anon_sym_AMP] = ACTIONS(5777), + [sym_op_bitwise_or] = ACTIONS(5777), + [anon_sym_CARET] = ACTIONS(5775), + [sym_op_left_shift] = ACTIONS(5775), + [sym_op_right_shift] = ACTIONS(5777), + [sym_op_unsigned_right_shift] = ACTIONS(5775), + [anon_sym_PLUS] = ACTIONS(5777), + [anon_sym_DASH] = ACTIONS(5777), + [sym_op_divide] = ACTIONS(5777), + [sym_op_modulo] = ACTIONS(5775), + [sym_op_coalescing] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_from] = ACTIONS(5775), + [anon_sym_into] = ACTIONS(5775), + [anon_sym_join] = ACTIONS(5775), + [anon_sym_let] = ACTIONS(5775), + [anon_sym_orderby] = ACTIONS(5775), + [anon_sym_ascending] = ACTIONS(5775), + [anon_sym_descending] = ACTIONS(5775), + [anon_sym_group] = ACTIONS(5775), + [anon_sym_select] = ACTIONS(5775), + [anon_sym_as] = ACTIONS(5777), + [anon_sym_is] = ACTIONS(5775), + [anon_sym_DASH_GT] = ACTIONS(5775), + [anon_sym_with] = ACTIONS(5775), + [sym_grit_metavariable] = ACTIONS(5775), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -657136,53 +648590,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5263), [sym_preproc_define] = STATE(5263), [sym_preproc_undef] = STATE(5263), - [anon_sym_LBRACK] = ACTIONS(6170), - [anon_sym_COMMA] = ACTIONS(6170), - [anon_sym_LPAREN] = ACTIONS(6170), - [anon_sym_LT] = ACTIONS(6172), - [anon_sym_GT] = ACTIONS(6172), - [anon_sym_where] = ACTIONS(6170), - [anon_sym_QMARK] = ACTIONS(6172), - [anon_sym_BANG] = ACTIONS(6172), - [anon_sym_PLUS_PLUS] = ACTIONS(6170), - [anon_sym_DASH_DASH] = ACTIONS(6170), - [anon_sym_PLUS] = ACTIONS(6172), - [anon_sym_DASH] = ACTIONS(6172), - [anon_sym_STAR] = ACTIONS(6170), - [anon_sym_SLASH] = ACTIONS(6172), - [anon_sym_PERCENT] = ACTIONS(6170), - [anon_sym_CARET] = ACTIONS(6170), - [anon_sym_PIPE] = ACTIONS(6172), - [anon_sym_AMP] = ACTIONS(6172), - [anon_sym_LT_LT] = ACTIONS(6170), - [anon_sym_GT_GT] = ACTIONS(6172), - [anon_sym_GT_GT_GT] = ACTIONS(6170), - [anon_sym_EQ_EQ] = ACTIONS(6170), - [anon_sym_BANG_EQ] = ACTIONS(6170), - [anon_sym_GT_EQ] = ACTIONS(6170), - [anon_sym_LT_EQ] = ACTIONS(6170), - [anon_sym_DOT] = ACTIONS(6172), - [anon_sym_switch] = ACTIONS(6170), - [anon_sym_DOT_DOT] = ACTIONS(6170), - [anon_sym_and] = ACTIONS(6170), - [anon_sym_or] = ACTIONS(6172), - [anon_sym_AMP_AMP] = ACTIONS(6170), - [anon_sym_PIPE_PIPE] = ACTIONS(6170), - [sym_op_coalescing] = ACTIONS(6170), - [anon_sym_from] = ACTIONS(6170), - [anon_sym_into] = ACTIONS(6170), - [anon_sym_join] = ACTIONS(6170), - [anon_sym_let] = ACTIONS(6170), - [anon_sym_orderby] = ACTIONS(6170), - [anon_sym_ascending] = ACTIONS(6170), - [anon_sym_descending] = ACTIONS(6170), - [anon_sym_group] = ACTIONS(6170), - [anon_sym_select] = ACTIONS(6170), - [anon_sym_as] = ACTIONS(6172), - [anon_sym_is] = ACTIONS(6170), - [anon_sym_DASH_GT] = ACTIONS(6170), - [anon_sym_with] = ACTIONS(6170), - [sym_grit_metavariable] = ACTIONS(6170), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_COMMA] = ACTIONS(6027), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_LT] = ACTIONS(6029), + [anon_sym_GT] = ACTIONS(6029), + [anon_sym_where] = ACTIONS(6027), + [anon_sym_QMARK] = ACTIONS(6029), + [anon_sym_DOT] = ACTIONS(6029), + [anon_sym_STAR] = ACTIONS(6027), + [anon_sym_switch] = ACTIONS(6027), + [anon_sym_DOT_DOT] = ACTIONS(6027), + [anon_sym_LT_EQ] = ACTIONS(6027), + [anon_sym_GT_EQ] = ACTIONS(6027), + [anon_sym_and] = ACTIONS(6027), + [anon_sym_or] = ACTIONS(6029), + [anon_sym_EQ_EQ] = ACTIONS(6027), + [anon_sym_BANG_EQ] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6027), + [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6029), + [sym_op_bitwise_or] = ACTIONS(6029), + [anon_sym_CARET] = ACTIONS(6027), + [sym_op_left_shift] = ACTIONS(6027), + [sym_op_right_shift] = ACTIONS(6029), + [sym_op_unsigned_right_shift] = ACTIONS(6027), + [anon_sym_PLUS] = ACTIONS(6029), + [anon_sym_DASH] = ACTIONS(6029), + [sym_op_divide] = ACTIONS(6029), + [sym_op_modulo] = ACTIONS(6027), + [sym_op_coalescing] = ACTIONS(6027), + [anon_sym_BANG] = ACTIONS(6029), + [anon_sym_PLUS_PLUS] = ACTIONS(6027), + [anon_sym_DASH_DASH] = ACTIONS(6027), + [anon_sym_from] = ACTIONS(6027), + [anon_sym_into] = ACTIONS(6027), + [anon_sym_join] = ACTIONS(6027), + [anon_sym_let] = ACTIONS(6027), + [anon_sym_orderby] = ACTIONS(6027), + [anon_sym_ascending] = ACTIONS(6027), + [anon_sym_descending] = ACTIONS(6027), + [anon_sym_group] = ACTIONS(6027), + [anon_sym_select] = ACTIONS(6027), + [anon_sym_as] = ACTIONS(6029), + [anon_sym_is] = ACTIONS(6027), + [anon_sym_DASH_GT] = ACTIONS(6027), + [anon_sym_with] = ACTIONS(6027), + [sym_grit_metavariable] = ACTIONS(6027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -657195,24 +648649,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5264] = { - [sym__name] = STATE(5853), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(3789), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(5620), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(5264), [sym_preproc_endregion] = STATE(5264), [sym_preproc_line] = STATE(5264), @@ -657222,35 +648658,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5264), [sym_preproc_define] = STATE(5264), [sym_preproc_undef] = STATE(5264), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4384), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_readonly] = ACTIONS(7629), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7332), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(6015), + [anon_sym_COMMA] = ACTIONS(6015), + [anon_sym_LPAREN] = ACTIONS(6015), + [anon_sym_LT] = ACTIONS(6017), + [anon_sym_GT] = ACTIONS(6017), + [anon_sym_where] = ACTIONS(6015), + [anon_sym_QMARK] = ACTIONS(6017), + [anon_sym_DOT] = ACTIONS(6017), + [anon_sym_STAR] = ACTIONS(6015), + [anon_sym_switch] = ACTIONS(6015), + [anon_sym_DOT_DOT] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_and] = ACTIONS(6015), + [anon_sym_or] = ACTIONS(6017), + [anon_sym_EQ_EQ] = ACTIONS(6015), + [anon_sym_BANG_EQ] = ACTIONS(6015), + [anon_sym_AMP_AMP] = ACTIONS(6015), + [anon_sym_PIPE_PIPE] = ACTIONS(6015), + [anon_sym_AMP] = ACTIONS(6017), + [sym_op_bitwise_or] = ACTIONS(6017), + [anon_sym_CARET] = ACTIONS(6015), + [sym_op_left_shift] = ACTIONS(6015), + [sym_op_right_shift] = ACTIONS(6017), + [sym_op_unsigned_right_shift] = ACTIONS(6015), + [anon_sym_PLUS] = ACTIONS(6017), + [anon_sym_DASH] = ACTIONS(6017), + [sym_op_divide] = ACTIONS(6017), + [sym_op_modulo] = ACTIONS(6015), + [sym_op_coalescing] = ACTIONS(6015), + [anon_sym_BANG] = ACTIONS(6017), + [anon_sym_PLUS_PLUS] = ACTIONS(6015), + [anon_sym_DASH_DASH] = ACTIONS(6015), + [anon_sym_from] = ACTIONS(6015), + [anon_sym_into] = ACTIONS(6015), + [anon_sym_join] = ACTIONS(6015), + [anon_sym_let] = ACTIONS(6015), + [anon_sym_orderby] = ACTIONS(6015), + [anon_sym_ascending] = ACTIONS(6015), + [anon_sym_descending] = ACTIONS(6015), + [anon_sym_group] = ACTIONS(6015), + [anon_sym_select] = ACTIONS(6015), + [anon_sym_as] = ACTIONS(6017), + [anon_sym_is] = ACTIONS(6015), + [anon_sym_DASH_GT] = ACTIONS(6015), + [anon_sym_with] = ACTIONS(6015), + [sym_grit_metavariable] = ACTIONS(6015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -657263,25 +648717,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5265] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6355), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_tuple_element] = STATE(7534), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5265), [sym_preproc_endregion] = STATE(5265), [sym_preproc_line] = STATE(5265), @@ -657291,18 +648726,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5265), [sym_preproc_define] = STATE(5265), [sym_preproc_undef] = STATE(5265), + [anon_sym_LBRACK] = ACTIONS(5873), + [anon_sym_COMMA] = ACTIONS(5873), + [anon_sym_LPAREN] = ACTIONS(5873), + [anon_sym_LT] = ACTIONS(5875), + [anon_sym_GT] = ACTIONS(5875), + [anon_sym_where] = ACTIONS(5873), + [anon_sym_QMARK] = ACTIONS(5875), + [anon_sym_DOT] = ACTIONS(5875), + [anon_sym_STAR] = ACTIONS(5873), + [anon_sym_switch] = ACTIONS(5873), + [anon_sym_DOT_DOT] = ACTIONS(5873), + [anon_sym_LT_EQ] = ACTIONS(5873), + [anon_sym_GT_EQ] = ACTIONS(5873), + [anon_sym_and] = ACTIONS(5873), + [anon_sym_or] = ACTIONS(5875), + [anon_sym_EQ_EQ] = ACTIONS(5873), + [anon_sym_BANG_EQ] = ACTIONS(5873), + [anon_sym_AMP_AMP] = ACTIONS(5873), + [anon_sym_PIPE_PIPE] = ACTIONS(5873), + [anon_sym_AMP] = ACTIONS(5875), + [sym_op_bitwise_or] = ACTIONS(5875), + [anon_sym_CARET] = ACTIONS(5873), + [sym_op_left_shift] = ACTIONS(5873), + [sym_op_right_shift] = ACTIONS(5875), + [sym_op_unsigned_right_shift] = ACTIONS(5873), + [anon_sym_PLUS] = ACTIONS(5875), + [anon_sym_DASH] = ACTIONS(5875), + [sym_op_divide] = ACTIONS(5875), + [sym_op_modulo] = ACTIONS(5873), + [sym_op_coalescing] = ACTIONS(5873), + [anon_sym_BANG] = ACTIONS(5875), + [anon_sym_PLUS_PLUS] = ACTIONS(5873), + [anon_sym_DASH_DASH] = ACTIONS(5873), + [anon_sym_from] = ACTIONS(5873), + [anon_sym_into] = ACTIONS(5873), + [anon_sym_join] = ACTIONS(5873), + [anon_sym_let] = ACTIONS(5873), + [anon_sym_orderby] = ACTIONS(5873), + [anon_sym_ascending] = ACTIONS(5873), + [anon_sym_descending] = ACTIONS(5873), + [anon_sym_group] = ACTIONS(5873), + [anon_sym_select] = ACTIONS(5873), + [anon_sym_as] = ACTIONS(5875), + [anon_sym_is] = ACTIONS(5873), + [anon_sym_DASH_GT] = ACTIONS(5873), + [anon_sym_with] = ACTIONS(5873), + [sym_grit_metavariable] = ACTIONS(5873), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5266] = { + [sym__name] = STATE(6582), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6555), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(5266), + [sym_preproc_endregion] = STATE(5266), + [sym_preproc_line] = STATE(5266), + [sym_preproc_pragma] = STATE(5266), + [sym_preproc_nullable] = STATE(5266), + [sym_preproc_error] = STATE(5266), + [sym_preproc_warning] = STATE(5266), + [sym_preproc_define] = STATE(5266), + [sym_preproc_undef] = STATE(5266), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3900), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8067), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(8069), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7298), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(8071), + [anon_sym_var] = ACTIONS(8073), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -657318,75 +648840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [5266] = { - [sym_preproc_region] = STATE(5266), - [sym_preproc_endregion] = STATE(5266), - [sym_preproc_line] = STATE(5266), - [sym_preproc_pragma] = STATE(5266), - [sym_preproc_nullable] = STATE(5266), - [sym_preproc_error] = STATE(5266), - [sym_preproc_warning] = STATE(5266), - [sym_preproc_define] = STATE(5266), - [sym_preproc_undef] = STATE(5266), - [anon_sym_LBRACK] = ACTIONS(6152), - [anon_sym_COMMA] = ACTIONS(6152), - [anon_sym_LPAREN] = ACTIONS(6152), - [anon_sym_LT] = ACTIONS(6154), - [anon_sym_GT] = ACTIONS(6154), - [anon_sym_where] = ACTIONS(6152), - [anon_sym_QMARK] = ACTIONS(6154), - [anon_sym_BANG] = ACTIONS(6154), - [anon_sym_PLUS_PLUS] = ACTIONS(6152), - [anon_sym_DASH_DASH] = ACTIONS(6152), - [anon_sym_PLUS] = ACTIONS(6154), - [anon_sym_DASH] = ACTIONS(6154), - [anon_sym_STAR] = ACTIONS(6152), - [anon_sym_SLASH] = ACTIONS(6154), - [anon_sym_PERCENT] = ACTIONS(6152), - [anon_sym_CARET] = ACTIONS(6152), - [anon_sym_PIPE] = ACTIONS(6154), - [anon_sym_AMP] = ACTIONS(6154), - [anon_sym_LT_LT] = ACTIONS(6152), - [anon_sym_GT_GT] = ACTIONS(6154), - [anon_sym_GT_GT_GT] = ACTIONS(6152), - [anon_sym_EQ_EQ] = ACTIONS(6152), - [anon_sym_BANG_EQ] = ACTIONS(6152), - [anon_sym_GT_EQ] = ACTIONS(6152), - [anon_sym_LT_EQ] = ACTIONS(6152), - [anon_sym_DOT] = ACTIONS(6154), - [anon_sym_switch] = ACTIONS(6152), - [anon_sym_DOT_DOT] = ACTIONS(6152), - [anon_sym_and] = ACTIONS(6152), - [anon_sym_or] = ACTIONS(6154), - [anon_sym_AMP_AMP] = ACTIONS(6152), - [anon_sym_PIPE_PIPE] = ACTIONS(6152), - [sym_op_coalescing] = ACTIONS(6152), - [anon_sym_from] = ACTIONS(6152), - [anon_sym_into] = ACTIONS(6152), - [anon_sym_join] = ACTIONS(6152), - [anon_sym_let] = ACTIONS(6152), - [anon_sym_orderby] = ACTIONS(6152), - [anon_sym_ascending] = ACTIONS(6152), - [anon_sym_descending] = ACTIONS(6152), - [anon_sym_group] = ACTIONS(6152), - [anon_sym_select] = ACTIONS(6152), - [anon_sym_as] = ACTIONS(6154), - [anon_sym_is] = ACTIONS(6152), - [anon_sym_DASH_GT] = ACTIONS(6152), - [anon_sym_with] = ACTIONS(6152), - [sym_grit_metavariable] = ACTIONS(6152), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -657408,53 +648862,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5267), [sym_preproc_define] = STATE(5267), [sym_preproc_undef] = STATE(5267), - [anon_sym_LBRACK] = ACTIONS(6094), - [anon_sym_COMMA] = ACTIONS(6094), - [anon_sym_LPAREN] = ACTIONS(6094), - [anon_sym_LT] = ACTIONS(6096), - [anon_sym_GT] = ACTIONS(6096), - [anon_sym_where] = ACTIONS(6094), - [anon_sym_QMARK] = ACTIONS(6096), - [anon_sym_BANG] = ACTIONS(6096), - [anon_sym_PLUS_PLUS] = ACTIONS(6094), - [anon_sym_DASH_DASH] = ACTIONS(6094), - [anon_sym_PLUS] = ACTIONS(6096), - [anon_sym_DASH] = ACTIONS(6096), - [anon_sym_STAR] = ACTIONS(6094), - [anon_sym_SLASH] = ACTIONS(6096), - [anon_sym_PERCENT] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6094), - [anon_sym_PIPE] = ACTIONS(6096), - [anon_sym_AMP] = ACTIONS(6096), - [anon_sym_LT_LT] = ACTIONS(6094), - [anon_sym_GT_GT] = ACTIONS(6096), - [anon_sym_GT_GT_GT] = ACTIONS(6094), - [anon_sym_EQ_EQ] = ACTIONS(6094), - [anon_sym_BANG_EQ] = ACTIONS(6094), - [anon_sym_GT_EQ] = ACTIONS(6094), - [anon_sym_LT_EQ] = ACTIONS(6094), - [anon_sym_DOT] = ACTIONS(6096), - [anon_sym_switch] = ACTIONS(6094), - [anon_sym_DOT_DOT] = ACTIONS(6094), - [anon_sym_and] = ACTIONS(6094), - [anon_sym_or] = ACTIONS(6096), - [anon_sym_AMP_AMP] = ACTIONS(6094), - [anon_sym_PIPE_PIPE] = ACTIONS(6094), - [sym_op_coalescing] = ACTIONS(6094), - [anon_sym_from] = ACTIONS(6094), - [anon_sym_into] = ACTIONS(6094), - [anon_sym_join] = ACTIONS(6094), - [anon_sym_let] = ACTIONS(6094), - [anon_sym_orderby] = ACTIONS(6094), - [anon_sym_ascending] = ACTIONS(6094), - [anon_sym_descending] = ACTIONS(6094), - [anon_sym_group] = ACTIONS(6094), - [anon_sym_select] = ACTIONS(6094), - [anon_sym_as] = ACTIONS(6096), - [anon_sym_is] = ACTIONS(6094), - [anon_sym_DASH_GT] = ACTIONS(6094), - [anon_sym_with] = ACTIONS(6094), - [sym_grit_metavariable] = ACTIONS(6094), + [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_DOT] = ACTIONS(6005), + [anon_sym_STAR] = ACTIONS(6003), + [anon_sym_switch] = ACTIONS(6003), + [anon_sym_DOT_DOT] = ACTIONS(6003), + [anon_sym_LT_EQ] = ACTIONS(6003), + [anon_sym_GT_EQ] = ACTIONS(6003), + [anon_sym_and] = ACTIONS(6003), + [anon_sym_or] = ACTIONS(6005), + [anon_sym_EQ_EQ] = ACTIONS(6003), + [anon_sym_BANG_EQ] = ACTIONS(6003), + [anon_sym_AMP_AMP] = ACTIONS(6003), + [anon_sym_PIPE_PIPE] = ACTIONS(6003), + [anon_sym_AMP] = ACTIONS(6005), + [sym_op_bitwise_or] = ACTIONS(6005), + [anon_sym_CARET] = ACTIONS(6003), + [sym_op_left_shift] = ACTIONS(6003), + [sym_op_right_shift] = ACTIONS(6005), + [sym_op_unsigned_right_shift] = ACTIONS(6003), + [anon_sym_PLUS] = ACTIONS(6005), + [anon_sym_DASH] = ACTIONS(6005), + [sym_op_divide] = ACTIONS(6005), + [sym_op_modulo] = ACTIONS(6003), + [sym_op_coalescing] = ACTIONS(6003), + [anon_sym_BANG] = ACTIONS(6005), + [anon_sym_PLUS_PLUS] = ACTIONS(6003), + [anon_sym_DASH_DASH] = ACTIONS(6003), + [anon_sym_from] = ACTIONS(6003), + [anon_sym_into] = ACTIONS(6003), + [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), + [sym_grit_metavariable] = ACTIONS(6003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -657467,6 +648921,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5268] = { + [sym_variable_declaration] = STATE(7845), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6013), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5268), [sym_preproc_endregion] = STATE(5268), [sym_preproc_line] = STATE(5268), @@ -657476,53 +648949,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5268), [sym_preproc_define] = STATE(5268), [sym_preproc_undef] = STATE(5268), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2175), - [anon_sym_QMARK] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_switch] = ACTIONS(2175), - [anon_sym_DOT_DOT] = ACTIONS(2175), - [anon_sym_and] = ACTIONS(2175), - [anon_sym_or] = ACTIONS(2177), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [sym_op_coalescing] = ACTIONS(2175), - [anon_sym_from] = ACTIONS(2175), - [anon_sym_into] = ACTIONS(2175), - [anon_sym_join] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_orderby] = ACTIONS(2175), - [anon_sym_ascending] = ACTIONS(2175), - [anon_sym_descending] = ACTIONS(2175), - [anon_sym_group] = ACTIONS(2175), - [anon_sym_select] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_is] = ACTIONS(2175), - [anon_sym_DASH_GT] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [sym_grit_metavariable] = ACTIONS(2175), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -657544,53 +648998,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5269), [sym_preproc_define] = STATE(5269), [sym_preproc_undef] = STATE(5269), - [anon_sym_LBRACK] = ACTIONS(6025), - [anon_sym_COMMA] = ACTIONS(6025), - [anon_sym_LPAREN] = ACTIONS(6025), - [anon_sym_LT] = ACTIONS(6027), - [anon_sym_GT] = ACTIONS(6027), - [anon_sym_where] = ACTIONS(6025), - [anon_sym_QMARK] = ACTIONS(6027), - [anon_sym_BANG] = ACTIONS(6027), - [anon_sym_PLUS_PLUS] = ACTIONS(6025), - [anon_sym_DASH_DASH] = ACTIONS(6025), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6025), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_PERCENT] = ACTIONS(6025), - [anon_sym_CARET] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), - [anon_sym_LT_LT] = ACTIONS(6025), - [anon_sym_GT_GT] = ACTIONS(6027), - [anon_sym_GT_GT_GT] = ACTIONS(6025), - [anon_sym_EQ_EQ] = ACTIONS(6025), - [anon_sym_BANG_EQ] = ACTIONS(6025), - [anon_sym_GT_EQ] = ACTIONS(6025), - [anon_sym_LT_EQ] = ACTIONS(6025), - [anon_sym_DOT] = ACTIONS(6027), - [anon_sym_switch] = ACTIONS(6025), - [anon_sym_DOT_DOT] = ACTIONS(6025), - [anon_sym_and] = ACTIONS(6025), - [anon_sym_or] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [sym_op_coalescing] = ACTIONS(6025), - [anon_sym_from] = ACTIONS(6025), - [anon_sym_into] = ACTIONS(6025), - [anon_sym_join] = ACTIONS(6025), - [anon_sym_let] = ACTIONS(6025), - [anon_sym_orderby] = ACTIONS(6025), - [anon_sym_ascending] = ACTIONS(6025), - [anon_sym_descending] = ACTIONS(6025), - [anon_sym_group] = ACTIONS(6025), - [anon_sym_select] = ACTIONS(6025), - [anon_sym_as] = ACTIONS(6027), - [anon_sym_is] = ACTIONS(6025), - [anon_sym_DASH_GT] = ACTIONS(6025), - [anon_sym_with] = ACTIONS(6025), - [sym_grit_metavariable] = ACTIONS(6025), + [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_DOT] = ACTIONS(5338), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_switch] = ACTIONS(5336), + [anon_sym_DOT_DOT] = ACTIONS(5336), + [anon_sym_LT_EQ] = ACTIONS(5336), + [anon_sym_GT_EQ] = ACTIONS(5336), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_or] = ACTIONS(5338), + [anon_sym_EQ_EQ] = ACTIONS(5336), + [anon_sym_BANG_EQ] = ACTIONS(5336), + [anon_sym_AMP_AMP] = ACTIONS(5336), + [anon_sym_PIPE_PIPE] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(5338), + [sym_op_bitwise_or] = ACTIONS(5338), + [anon_sym_CARET] = ACTIONS(5336), + [sym_op_left_shift] = ACTIONS(5336), + [sym_op_right_shift] = ACTIONS(5338), + [sym_op_unsigned_right_shift] = ACTIONS(5336), + [anon_sym_PLUS] = ACTIONS(5338), + [anon_sym_DASH] = ACTIONS(5338), + [sym_op_divide] = ACTIONS(5338), + [sym_op_modulo] = ACTIONS(5336), + [sym_op_coalescing] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(5338), + [anon_sym_PLUS_PLUS] = ACTIONS(5336), + [anon_sym_DASH_DASH] = 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), + [sym_grit_metavariable] = ACTIONS(5336), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -657612,53 +649066,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5270), [sym_preproc_define] = STATE(5270), [sym_preproc_undef] = STATE(5270), - [anon_sym_LBRACK] = ACTIONS(6156), - [anon_sym_COMMA] = ACTIONS(6156), - [anon_sym_LPAREN] = ACTIONS(6156), - [anon_sym_LT] = ACTIONS(6158), - [anon_sym_GT] = ACTIONS(6158), - [anon_sym_where] = ACTIONS(6156), - [anon_sym_QMARK] = ACTIONS(6158), - [anon_sym_BANG] = ACTIONS(6158), - [anon_sym_PLUS_PLUS] = ACTIONS(6156), - [anon_sym_DASH_DASH] = ACTIONS(6156), - [anon_sym_PLUS] = ACTIONS(6158), - [anon_sym_DASH] = ACTIONS(6158), - [anon_sym_STAR] = ACTIONS(6156), - [anon_sym_SLASH] = ACTIONS(6158), - [anon_sym_PERCENT] = ACTIONS(6156), - [anon_sym_CARET] = ACTIONS(6156), - [anon_sym_PIPE] = ACTIONS(6158), - [anon_sym_AMP] = ACTIONS(6158), - [anon_sym_LT_LT] = ACTIONS(6156), - [anon_sym_GT_GT] = ACTIONS(6158), - [anon_sym_GT_GT_GT] = ACTIONS(6156), - [anon_sym_EQ_EQ] = ACTIONS(6156), - [anon_sym_BANG_EQ] = ACTIONS(6156), - [anon_sym_GT_EQ] = ACTIONS(6156), - [anon_sym_LT_EQ] = ACTIONS(6156), - [anon_sym_DOT] = ACTIONS(6158), - [anon_sym_switch] = ACTIONS(6156), - [anon_sym_DOT_DOT] = ACTIONS(6156), - [anon_sym_and] = ACTIONS(6156), - [anon_sym_or] = ACTIONS(6158), - [anon_sym_AMP_AMP] = ACTIONS(6156), - [anon_sym_PIPE_PIPE] = ACTIONS(6156), - [sym_op_coalescing] = ACTIONS(6156), - [anon_sym_from] = ACTIONS(6156), - [anon_sym_into] = ACTIONS(6156), - [anon_sym_join] = ACTIONS(6156), - [anon_sym_let] = ACTIONS(6156), - [anon_sym_orderby] = ACTIONS(6156), - [anon_sym_ascending] = ACTIONS(6156), - [anon_sym_descending] = ACTIONS(6156), - [anon_sym_group] = ACTIONS(6156), - [anon_sym_select] = ACTIONS(6156), - [anon_sym_as] = ACTIONS(6158), - [anon_sym_is] = ACTIONS(6156), - [anon_sym_DASH_GT] = ACTIONS(6156), - [anon_sym_with] = ACTIONS(6156), - [sym_grit_metavariable] = ACTIONS(6156), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(8075), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -657680,53 +649134,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5271), [sym_preproc_define] = STATE(5271), [sym_preproc_undef] = STATE(5271), - [anon_sym_LBRACK] = ACTIONS(6217), - [anon_sym_COMMA] = ACTIONS(6217), - [anon_sym_LPAREN] = ACTIONS(6217), - [anon_sym_LT] = ACTIONS(6219), - [anon_sym_GT] = ACTIONS(6219), - [anon_sym_where] = ACTIONS(6217), - [anon_sym_QMARK] = ACTIONS(6219), - [anon_sym_BANG] = ACTIONS(6219), - [anon_sym_PLUS_PLUS] = ACTIONS(6217), - [anon_sym_DASH_DASH] = ACTIONS(6217), - [anon_sym_PLUS] = ACTIONS(6219), - [anon_sym_DASH] = ACTIONS(6219), - [anon_sym_STAR] = ACTIONS(6217), - [anon_sym_SLASH] = ACTIONS(6219), - [anon_sym_PERCENT] = ACTIONS(6217), - [anon_sym_CARET] = ACTIONS(6217), - [anon_sym_PIPE] = ACTIONS(6219), - [anon_sym_AMP] = ACTIONS(6219), - [anon_sym_LT_LT] = ACTIONS(6217), - [anon_sym_GT_GT] = ACTIONS(6219), - [anon_sym_GT_GT_GT] = ACTIONS(6217), - [anon_sym_EQ_EQ] = ACTIONS(6217), - [anon_sym_BANG_EQ] = ACTIONS(6217), - [anon_sym_GT_EQ] = ACTIONS(6217), - [anon_sym_LT_EQ] = ACTIONS(6217), - [anon_sym_DOT] = ACTIONS(6219), - [anon_sym_switch] = ACTIONS(6217), - [anon_sym_DOT_DOT] = ACTIONS(6217), - [anon_sym_and] = ACTIONS(6217), - [anon_sym_or] = ACTIONS(6219), - [anon_sym_AMP_AMP] = ACTIONS(6217), - [anon_sym_PIPE_PIPE] = ACTIONS(6217), - [sym_op_coalescing] = ACTIONS(6217), - [anon_sym_from] = ACTIONS(6217), - [anon_sym_into] = ACTIONS(6217), - [anon_sym_join] = ACTIONS(6217), - [anon_sym_let] = ACTIONS(6217), - [anon_sym_orderby] = ACTIONS(6217), - [anon_sym_ascending] = ACTIONS(6217), - [anon_sym_descending] = ACTIONS(6217), - [anon_sym_group] = ACTIONS(6217), - [anon_sym_select] = ACTIONS(6217), - [anon_sym_as] = ACTIONS(6219), - [anon_sym_is] = ACTIONS(6217), - [anon_sym_DASH_GT] = ACTIONS(6217), - [anon_sym_with] = ACTIONS(6217), - [sym_grit_metavariable] = ACTIONS(6217), + [anon_sym_LBRACK] = ACTIONS(6011), + [anon_sym_COMMA] = ACTIONS(6011), + [anon_sym_LPAREN] = ACTIONS(6011), + [anon_sym_LT] = ACTIONS(6013), + [anon_sym_GT] = ACTIONS(6013), + [anon_sym_where] = ACTIONS(6011), + [anon_sym_QMARK] = ACTIONS(6013), + [anon_sym_DOT] = ACTIONS(6013), + [anon_sym_STAR] = ACTIONS(6011), + [anon_sym_switch] = ACTIONS(6011), + [anon_sym_DOT_DOT] = ACTIONS(6011), + [anon_sym_LT_EQ] = ACTIONS(6011), + [anon_sym_GT_EQ] = ACTIONS(6011), + [anon_sym_and] = ACTIONS(6011), + [anon_sym_or] = ACTIONS(6013), + [anon_sym_EQ_EQ] = ACTIONS(6011), + [anon_sym_BANG_EQ] = ACTIONS(6011), + [anon_sym_AMP_AMP] = ACTIONS(6011), + [anon_sym_PIPE_PIPE] = ACTIONS(6011), + [anon_sym_AMP] = ACTIONS(6013), + [sym_op_bitwise_or] = ACTIONS(6013), + [anon_sym_CARET] = ACTIONS(6011), + [sym_op_left_shift] = ACTIONS(6011), + [sym_op_right_shift] = ACTIONS(6013), + [sym_op_unsigned_right_shift] = ACTIONS(6011), + [anon_sym_PLUS] = ACTIONS(6013), + [anon_sym_DASH] = ACTIONS(6013), + [sym_op_divide] = ACTIONS(6013), + [sym_op_modulo] = ACTIONS(6011), + [sym_op_coalescing] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(6013), + [anon_sym_PLUS_PLUS] = ACTIONS(6011), + [anon_sym_DASH_DASH] = ACTIONS(6011), + [anon_sym_from] = ACTIONS(6011), + [anon_sym_into] = ACTIONS(6011), + [anon_sym_join] = ACTIONS(6011), + [anon_sym_let] = ACTIONS(6011), + [anon_sym_orderby] = ACTIONS(6011), + [anon_sym_ascending] = ACTIONS(6011), + [anon_sym_descending] = ACTIONS(6011), + [anon_sym_group] = ACTIONS(6011), + [anon_sym_select] = ACTIONS(6011), + [anon_sym_as] = ACTIONS(6013), + [anon_sym_is] = ACTIONS(6011), + [anon_sym_DASH_GT] = ACTIONS(6011), + [anon_sym_with] = ACTIONS(6011), + [sym_grit_metavariable] = ACTIONS(6011), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -657739,24 +649193,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5272] = { - [sym__name] = STATE(5929), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4753), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(5740), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(5272), [sym_preproc_endregion] = STATE(5272), [sym_preproc_line] = STATE(5272), @@ -657766,35 +649202,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5272), [sym_preproc_define] = STATE(5272), [sym_preproc_undef] = STATE(5272), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4442), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_readonly] = ACTIONS(7631), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7346), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [anon_sym_LBRACK] = ACTIONS(5899), + [anon_sym_COMMA] = ACTIONS(5899), + [anon_sym_LPAREN] = ACTIONS(5899), + [anon_sym_LT] = ACTIONS(5901), + [anon_sym_GT] = ACTIONS(5901), + [anon_sym_where] = ACTIONS(5899), + [anon_sym_QMARK] = ACTIONS(5901), + [anon_sym_DOT] = ACTIONS(5901), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_switch] = ACTIONS(5899), + [anon_sym_DOT_DOT] = ACTIONS(5899), + [anon_sym_LT_EQ] = ACTIONS(5899), + [anon_sym_GT_EQ] = ACTIONS(5899), + [anon_sym_and] = ACTIONS(5899), + [anon_sym_or] = ACTIONS(5901), + [anon_sym_EQ_EQ] = ACTIONS(5899), + [anon_sym_BANG_EQ] = ACTIONS(5899), + [anon_sym_AMP_AMP] = ACTIONS(5899), + [anon_sym_PIPE_PIPE] = ACTIONS(5899), + [anon_sym_AMP] = ACTIONS(5901), + [sym_op_bitwise_or] = ACTIONS(5901), + [anon_sym_CARET] = ACTIONS(5899), + [sym_op_left_shift] = ACTIONS(5899), + [sym_op_right_shift] = ACTIONS(5901), + [sym_op_unsigned_right_shift] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5901), + [anon_sym_DASH] = ACTIONS(5901), + [sym_op_divide] = ACTIONS(5901), + [sym_op_modulo] = ACTIONS(5899), + [sym_op_coalescing] = ACTIONS(5899), + [anon_sym_BANG] = ACTIONS(5901), + [anon_sym_PLUS_PLUS] = ACTIONS(5899), + [anon_sym_DASH_DASH] = ACTIONS(5899), + [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(5901), + [anon_sym_is] = ACTIONS(5899), + [anon_sym_DASH_GT] = ACTIONS(5899), + [anon_sym_with] = ACTIONS(5899), + [sym_grit_metavariable] = ACTIONS(5899), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -657807,6 +649261,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5273] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6335), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7512), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5273), [sym_preproc_endregion] = STATE(5273), [sym_preproc_line] = STATE(5273), @@ -657816,53 +649289,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5273), [sym_preproc_define] = STATE(5273), [sym_preproc_undef] = STATE(5273), - [anon_sym_LBRACK] = ACTIONS(7078), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(7078), - [anon_sym_LT] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7081), - [anon_sym_where] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_BANG] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7078), - [anon_sym_DASH_DASH] = ACTIONS(7078), - [anon_sym_PLUS] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7081), - [anon_sym_STAR] = ACTIONS(7078), - [anon_sym_SLASH] = ACTIONS(7081), - [anon_sym_PERCENT] = ACTIONS(7078), - [anon_sym_CARET] = ACTIONS(7078), - [anon_sym_PIPE] = ACTIONS(7081), - [anon_sym_AMP] = ACTIONS(7081), - [anon_sym_LT_LT] = ACTIONS(7078), - [anon_sym_GT_GT] = ACTIONS(7081), - [anon_sym_GT_GT_GT] = ACTIONS(7078), - [anon_sym_EQ_EQ] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7078), - [anon_sym_LT_EQ] = ACTIONS(7078), - [anon_sym_DOT] = ACTIONS(7081), - [anon_sym_switch] = ACTIONS(7078), - [anon_sym_DOT_DOT] = ACTIONS(7078), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4978), - [anon_sym_AMP_AMP] = ACTIONS(7078), - [anon_sym_PIPE_PIPE] = ACTIONS(7078), - [sym_op_coalescing] = ACTIONS(7078), - [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(7081), - [anon_sym_is] = ACTIONS(7078), - [anon_sym_DASH_GT] = ACTIONS(7078), - [anon_sym_with] = ACTIONS(7078), - [sym_grit_metavariable] = ACTIONS(4970), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3900), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(7834), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -657875,6 +649329,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5274] = { + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5274), [sym_preproc_endregion] = STATE(5274), [sym_preproc_line] = STATE(5274), @@ -657884,53 +649356,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5274), [sym_preproc_define] = STATE(5274), [sym_preproc_undef] = STATE(5274), - [anon_sym_LBRACK] = ACTIONS(7072), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(7072), - [anon_sym_LT] = ACTIONS(7075), - [anon_sym_GT] = ACTIONS(7075), - [anon_sym_where] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(7075), - [anon_sym_BANG] = ACTIONS(7075), - [anon_sym_PLUS_PLUS] = ACTIONS(7072), - [anon_sym_DASH_DASH] = ACTIONS(7072), - [anon_sym_PLUS] = ACTIONS(7075), - [anon_sym_DASH] = ACTIONS(7075), - [anon_sym_STAR] = ACTIONS(7072), - [anon_sym_SLASH] = ACTIONS(7075), - [anon_sym_PERCENT] = ACTIONS(7072), - [anon_sym_CARET] = ACTIONS(7072), - [anon_sym_PIPE] = ACTIONS(7075), - [anon_sym_AMP] = ACTIONS(7075), - [anon_sym_LT_LT] = ACTIONS(7072), - [anon_sym_GT_GT] = ACTIONS(7075), - [anon_sym_GT_GT_GT] = ACTIONS(7072), - [anon_sym_EQ_EQ] = ACTIONS(7072), - [anon_sym_BANG_EQ] = ACTIONS(7072), - [anon_sym_GT_EQ] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7072), - [anon_sym_DOT] = ACTIONS(7075), - [anon_sym_switch] = ACTIONS(7072), - [anon_sym_DOT_DOT] = ACTIONS(7072), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4978), - [anon_sym_AMP_AMP] = ACTIONS(7072), - [anon_sym_PIPE_PIPE] = ACTIONS(7072), - [sym_op_coalescing] = ACTIONS(7072), - [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(7075), - [anon_sym_is] = ACTIONS(7072), - [anon_sym_DASH_GT] = ACTIONS(7072), - [anon_sym_with] = ACTIONS(7072), - [sym_grit_metavariable] = ACTIONS(4970), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_readonly] = ACTIONS(8077), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -657943,6 +649397,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5275] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6335), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7391), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5275), [sym_preproc_endregion] = STATE(5275), [sym_preproc_line] = STATE(5275), @@ -657952,53 +649425,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5275), [sym_preproc_define] = STATE(5275), [sym_preproc_undef] = STATE(5275), - [anon_sym_LBRACK] = ACTIONS(6263), - [anon_sym_COMMA] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6263), - [anon_sym_LT] = ACTIONS(6265), - [anon_sym_GT] = ACTIONS(6265), - [anon_sym_where] = ACTIONS(6263), - [anon_sym_QMARK] = ACTIONS(6265), - [anon_sym_BANG] = ACTIONS(6265), - [anon_sym_PLUS_PLUS] = ACTIONS(6263), - [anon_sym_DASH_DASH] = ACTIONS(6263), - [anon_sym_PLUS] = ACTIONS(6265), - [anon_sym_DASH] = ACTIONS(6265), - [anon_sym_STAR] = ACTIONS(6263), - [anon_sym_SLASH] = ACTIONS(6265), - [anon_sym_PERCENT] = ACTIONS(6263), - [anon_sym_CARET] = ACTIONS(6263), - [anon_sym_PIPE] = ACTIONS(6265), - [anon_sym_AMP] = ACTIONS(6265), - [anon_sym_LT_LT] = ACTIONS(6263), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6263), - [anon_sym_EQ_EQ] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6263), - [anon_sym_LT_EQ] = ACTIONS(6263), - [anon_sym_DOT] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6263), - [anon_sym_DOT_DOT] = ACTIONS(6263), - [anon_sym_and] = ACTIONS(6263), - [anon_sym_or] = ACTIONS(6265), - [anon_sym_AMP_AMP] = ACTIONS(6263), - [anon_sym_PIPE_PIPE] = ACTIONS(6263), - [sym_op_coalescing] = ACTIONS(6263), - [anon_sym_from] = ACTIONS(6263), - [anon_sym_into] = ACTIONS(6263), - [anon_sym_join] = ACTIONS(6263), - [anon_sym_let] = ACTIONS(6263), - [anon_sym_orderby] = ACTIONS(6263), - [anon_sym_ascending] = ACTIONS(6263), - [anon_sym_descending] = ACTIONS(6263), - [anon_sym_group] = ACTIONS(6263), - [anon_sym_select] = ACTIONS(6263), - [anon_sym_as] = ACTIONS(6265), - [anon_sym_is] = ACTIONS(6263), - [anon_sym_DASH_GT] = ACTIONS(6263), - [anon_sym_with] = ACTIONS(6263), - [sym_grit_metavariable] = ACTIONS(6263), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3900), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(7834), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -658020,53 +649474,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5276), [sym_preproc_define] = STATE(5276), [sym_preproc_undef] = STATE(5276), - [anon_sym_LBRACK] = ACTIONS(6361), - [anon_sym_COMMA] = ACTIONS(6361), - [anon_sym_LPAREN] = ACTIONS(6361), - [anon_sym_LT] = ACTIONS(6363), - [anon_sym_GT] = ACTIONS(6363), - [anon_sym_where] = ACTIONS(6361), - [anon_sym_QMARK] = ACTIONS(6363), - [anon_sym_BANG] = ACTIONS(6363), - [anon_sym_PLUS_PLUS] = ACTIONS(6361), - [anon_sym_DASH_DASH] = ACTIONS(6361), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6361), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_PERCENT] = ACTIONS(6361), - [anon_sym_CARET] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6363), - [anon_sym_AMP] = ACTIONS(6363), - [anon_sym_LT_LT] = ACTIONS(6361), - [anon_sym_GT_GT] = ACTIONS(6363), - [anon_sym_GT_GT_GT] = ACTIONS(6361), - [anon_sym_EQ_EQ] = ACTIONS(6361), - [anon_sym_BANG_EQ] = ACTIONS(6361), - [anon_sym_GT_EQ] = ACTIONS(6361), - [anon_sym_LT_EQ] = ACTIONS(6361), - [anon_sym_DOT] = ACTIONS(6363), - [anon_sym_switch] = ACTIONS(6361), - [anon_sym_DOT_DOT] = ACTIONS(6361), - [anon_sym_and] = ACTIONS(6361), - [anon_sym_or] = ACTIONS(6363), - [anon_sym_AMP_AMP] = ACTIONS(6361), - [anon_sym_PIPE_PIPE] = ACTIONS(6361), - [sym_op_coalescing] = ACTIONS(6361), - [anon_sym_from] = ACTIONS(6361), - [anon_sym_into] = ACTIONS(6361), - [anon_sym_join] = ACTIONS(6361), - [anon_sym_let] = ACTIONS(6361), - [anon_sym_orderby] = ACTIONS(6361), - [anon_sym_ascending] = ACTIONS(6361), - [anon_sym_descending] = ACTIONS(6361), - [anon_sym_group] = ACTIONS(6361), - [anon_sym_select] = ACTIONS(6361), - [anon_sym_as] = ACTIONS(6363), - [anon_sym_is] = ACTIONS(6361), - [anon_sym_DASH_GT] = ACTIONS(6361), - [anon_sym_with] = ACTIONS(6361), - [sym_grit_metavariable] = ACTIONS(6361), + [anon_sym_LBRACK] = ACTIONS(6959), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(6959), + [anon_sym_LT] = ACTIONS(6962), + [anon_sym_GT] = ACTIONS(6962), + [anon_sym_where] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(6962), + [anon_sym_DOT] = ACTIONS(6962), + [anon_sym_STAR] = ACTIONS(6959), + [anon_sym_switch] = ACTIONS(6959), + [anon_sym_DOT_DOT] = ACTIONS(6959), + [anon_sym_LT_EQ] = ACTIONS(6959), + [anon_sym_GT_EQ] = ACTIONS(6959), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(6959), + [anon_sym_BANG_EQ] = ACTIONS(6959), + [anon_sym_AMP_AMP] = ACTIONS(6959), + [anon_sym_PIPE_PIPE] = ACTIONS(6959), + [anon_sym_AMP] = ACTIONS(6962), + [sym_op_bitwise_or] = ACTIONS(6962), + [anon_sym_CARET] = ACTIONS(6959), + [sym_op_left_shift] = ACTIONS(6959), + [sym_op_right_shift] = ACTIONS(6962), + [sym_op_unsigned_right_shift] = ACTIONS(6959), + [anon_sym_PLUS] = ACTIONS(6962), + [anon_sym_DASH] = ACTIONS(6962), + [sym_op_divide] = ACTIONS(6962), + [sym_op_modulo] = ACTIONS(6959), + [sym_op_coalescing] = ACTIONS(6959), + [anon_sym_BANG] = ACTIONS(6962), + [anon_sym_PLUS_PLUS] = ACTIONS(6959), + [anon_sym_DASH_DASH] = ACTIONS(6959), + [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(6962), + [anon_sym_is] = ACTIONS(6959), + [anon_sym_DASH_GT] = ACTIONS(6959), + [anon_sym_with] = ACTIONS(6959), + [sym_grit_metavariable] = ACTIONS(5068), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -658088,53 +649542,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5277), [sym_preproc_define] = STATE(5277), [sym_preproc_undef] = STATE(5277), - [anon_sym_LBRACK] = ACTIONS(6369), - [anon_sym_COMMA] = ACTIONS(6369), - [anon_sym_LPAREN] = ACTIONS(6369), - [anon_sym_LT] = ACTIONS(6371), - [anon_sym_GT] = ACTIONS(6371), - [anon_sym_where] = ACTIONS(6369), - [anon_sym_QMARK] = ACTIONS(6371), - [anon_sym_BANG] = ACTIONS(6371), - [anon_sym_PLUS_PLUS] = ACTIONS(6369), - [anon_sym_DASH_DASH] = ACTIONS(6369), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6369), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_PERCENT] = ACTIONS(6369), - [anon_sym_CARET] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6371), - [anon_sym_AMP] = ACTIONS(6371), - [anon_sym_LT_LT] = ACTIONS(6369), - [anon_sym_GT_GT] = ACTIONS(6371), - [anon_sym_GT_GT_GT] = ACTIONS(6369), - [anon_sym_EQ_EQ] = ACTIONS(6369), - [anon_sym_BANG_EQ] = ACTIONS(6369), - [anon_sym_GT_EQ] = ACTIONS(6369), - [anon_sym_LT_EQ] = ACTIONS(6369), - [anon_sym_DOT] = ACTIONS(6371), - [anon_sym_switch] = ACTIONS(6369), - [anon_sym_DOT_DOT] = ACTIONS(6369), - [anon_sym_and] = ACTIONS(6369), - [anon_sym_or] = ACTIONS(6371), - [anon_sym_AMP_AMP] = ACTIONS(6369), - [anon_sym_PIPE_PIPE] = ACTIONS(6369), - [sym_op_coalescing] = ACTIONS(6369), - [anon_sym_from] = ACTIONS(6369), - [anon_sym_into] = ACTIONS(6369), - [anon_sym_join] = ACTIONS(6369), - [anon_sym_let] = ACTIONS(6369), - [anon_sym_orderby] = ACTIONS(6369), - [anon_sym_ascending] = ACTIONS(6369), - [anon_sym_descending] = ACTIONS(6369), - [anon_sym_group] = ACTIONS(6369), - [anon_sym_select] = ACTIONS(6369), - [anon_sym_as] = ACTIONS(6371), - [anon_sym_is] = ACTIONS(6369), - [anon_sym_DASH_GT] = ACTIONS(6369), - [anon_sym_with] = ACTIONS(6369), - [sym_grit_metavariable] = ACTIONS(6369), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(5694), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -658156,81 +649610,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5278), [sym_preproc_define] = STATE(5278), [sym_preproc_undef] = STATE(5278), - [anon_sym_LBRACK] = ACTIONS(7096), - [anon_sym_COMMA] = ACTIONS(7096), - [anon_sym_LPAREN] = ACTIONS(7096), - [anon_sym_LT] = ACTIONS(7098), - [anon_sym_GT] = ACTIONS(7098), - [anon_sym_where] = ACTIONS(7096), - [anon_sym_QMARK] = ACTIONS(7098), - [anon_sym_BANG] = ACTIONS(7098), - [anon_sym_PLUS_PLUS] = ACTIONS(7096), - [anon_sym_DASH_DASH] = ACTIONS(7096), - [anon_sym_PLUS] = ACTIONS(7098), - [anon_sym_DASH] = ACTIONS(7098), - [anon_sym_STAR] = ACTIONS(7096), - [anon_sym_SLASH] = ACTIONS(7098), - [anon_sym_PERCENT] = ACTIONS(7096), - [anon_sym_CARET] = ACTIONS(7096), - [anon_sym_PIPE] = ACTIONS(7098), - [anon_sym_AMP] = ACTIONS(7098), - [anon_sym_LT_LT] = ACTIONS(7096), - [anon_sym_GT_GT] = ACTIONS(7098), - [anon_sym_GT_GT_GT] = ACTIONS(7096), - [anon_sym_EQ_EQ] = ACTIONS(7096), - [anon_sym_BANG_EQ] = ACTIONS(7096), - [anon_sym_GT_EQ] = ACTIONS(7096), - [anon_sym_LT_EQ] = ACTIONS(7096), - [anon_sym_DOT] = ACTIONS(7098), - [anon_sym_switch] = ACTIONS(7096), - [anon_sym_DOT_DOT] = ACTIONS(7096), - [anon_sym_and] = ACTIONS(7096), - [anon_sym_or] = ACTIONS(7098), - [anon_sym_AMP_AMP] = ACTIONS(7096), - [anon_sym_PIPE_PIPE] = ACTIONS(7096), - [sym_op_coalescing] = ACTIONS(7096), - [anon_sym_from] = ACTIONS(7096), - [anon_sym_into] = ACTIONS(7096), - [anon_sym_join] = ACTIONS(7096), - [anon_sym_let] = ACTIONS(7096), - [anon_sym_orderby] = ACTIONS(7096), - [anon_sym_ascending] = ACTIONS(7096), - [anon_sym_descending] = ACTIONS(7096), - [anon_sym_group] = ACTIONS(7096), - [anon_sym_select] = ACTIONS(7096), - [anon_sym_as] = ACTIONS(7098), - [anon_sym_is] = ACTIONS(7096), - [anon_sym_DASH_GT] = ACTIONS(7096), - [anon_sym_with] = ACTIONS(7096), - [sym_grit_metavariable] = ACTIONS(7096), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5279] = { - [sym_preproc_region] = STATE(5279), - [sym_preproc_endregion] = STATE(5279), - [sym_preproc_line] = STATE(5279), - [sym_preproc_pragma] = STATE(5279), - [sym_preproc_nullable] = STATE(5279), - [sym_preproc_error] = STATE(5279), - [sym_preproc_warning] = STATE(5279), - [sym_preproc_define] = STATE(5279), - [sym_preproc_undef] = STATE(5279), [sym__identifier_token] = ACTIONS(3738), [anon_sym_extern] = ACTIONS(3738), [anon_sym_alias] = ACTIONS(3738), [anon_sym_global] = ACTIONS(3738), [anon_sym_unsafe] = ACTIONS(3738), [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(7633), + [anon_sym_LPAREN] = ACTIONS(5694), [anon_sym_ref] = ACTIONS(3738), [anon_sym_delegate] = ACTIONS(3738), [anon_sym_public] = ACTIONS(3738), @@ -658270,7 +649656,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3738), [anon_sym_by] = ACTIONS(3738), [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [sym_grit_metavariable] = ACTIONS(5694), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5279] = { + [sym_preproc_region] = STATE(5279), + [sym_preproc_endregion] = STATE(5279), + [sym_preproc_line] = STATE(5279), + [sym_preproc_pragma] = STATE(5279), + [sym_preproc_nullable] = STATE(5279), + [sym_preproc_error] = STATE(5279), + [sym_preproc_warning] = STATE(5279), + [sym_preproc_define] = STATE(5279), + [sym_preproc_undef] = STATE(5279), + [anon_sym_EQ] = ACTIONS(8079), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(8081), + [anon_sym_DASH_EQ] = ACTIONS(8081), + [anon_sym_STAR_EQ] = ACTIONS(8081), + [anon_sym_SLASH_EQ] = ACTIONS(8081), + [anon_sym_PERCENT_EQ] = ACTIONS(8081), + [anon_sym_AMP_EQ] = ACTIONS(8081), + [anon_sym_CARET_EQ] = ACTIONS(8081), + [anon_sym_PIPE_EQ] = ACTIONS(8081), + [anon_sym_LT_LT_EQ] = ACTIONS(8081), + [anon_sym_GT_GT_EQ] = ACTIONS(8081), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(8081), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(8081), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_equals] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -658283,6 +649737,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5280] = { + [sym_variable_declaration] = STATE(7834), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6007), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5280), [sym_preproc_endregion] = STATE(5280), [sym_preproc_line] = STATE(5280), @@ -658292,53 +649765,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5280), [sym_preproc_define] = STATE(5280), [sym_preproc_undef] = STATE(5280), - [anon_sym_LBRACK] = ACTIONS(7635), - [anon_sym_COMMA] = ACTIONS(7635), - [anon_sym_LPAREN] = ACTIONS(7635), - [anon_sym_LT] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7637), - [anon_sym_where] = ACTIONS(7635), - [anon_sym_QMARK] = ACTIONS(7637), - [anon_sym_BANG] = ACTIONS(7637), - [anon_sym_PLUS_PLUS] = ACTIONS(7635), - [anon_sym_DASH_DASH] = ACTIONS(7635), - [anon_sym_PLUS] = ACTIONS(7637), - [anon_sym_DASH] = ACTIONS(7637), - [anon_sym_STAR] = ACTIONS(7635), - [anon_sym_SLASH] = ACTIONS(7637), - [anon_sym_PERCENT] = ACTIONS(7635), - [anon_sym_CARET] = ACTIONS(7635), - [anon_sym_PIPE] = ACTIONS(7637), - [anon_sym_AMP] = ACTIONS(7637), - [anon_sym_LT_LT] = ACTIONS(7635), - [anon_sym_GT_GT] = ACTIONS(7637), - [anon_sym_GT_GT_GT] = ACTIONS(7635), - [anon_sym_EQ_EQ] = ACTIONS(7635), - [anon_sym_BANG_EQ] = ACTIONS(7635), - [anon_sym_GT_EQ] = ACTIONS(7635), - [anon_sym_LT_EQ] = ACTIONS(7635), - [anon_sym_DOT] = ACTIONS(7637), - [anon_sym_switch] = ACTIONS(7635), - [anon_sym_DOT_DOT] = ACTIONS(7635), - [anon_sym_and] = ACTIONS(7639), - [anon_sym_or] = ACTIONS(7637), - [anon_sym_AMP_AMP] = ACTIONS(7635), - [anon_sym_PIPE_PIPE] = ACTIONS(7635), - [sym_op_coalescing] = ACTIONS(7635), - [anon_sym_from] = ACTIONS(7635), - [anon_sym_into] = ACTIONS(7635), - [anon_sym_join] = ACTIONS(7635), - [anon_sym_let] = ACTIONS(7635), - [anon_sym_orderby] = ACTIONS(7635), - [anon_sym_ascending] = ACTIONS(7635), - [anon_sym_descending] = ACTIONS(7635), - [anon_sym_group] = ACTIONS(7635), - [anon_sym_select] = ACTIONS(7635), - [anon_sym_as] = ACTIONS(7637), - [anon_sym_is] = ACTIONS(7635), - [anon_sym_DASH_GT] = ACTIONS(7635), - [anon_sym_with] = ACTIONS(7635), - [sym_grit_metavariable] = ACTIONS(7635), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -658351,6 +649805,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5281] = { + [sym_variable_declaration] = STATE(8083), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6005), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5281), [sym_preproc_endregion] = STATE(5281), [sym_preproc_line] = STATE(5281), @@ -658360,99 +649833,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5281), [sym_preproc_define] = STATE(5281), [sym_preproc_undef] = STATE(5281), - [anon_sym_EQ] = ACTIONS(7641), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7643), - [anon_sym_DASH_EQ] = ACTIONS(7643), - [anon_sym_STAR_EQ] = ACTIONS(7643), - [anon_sym_SLASH_EQ] = ACTIONS(7643), - [anon_sym_PERCENT_EQ] = ACTIONS(7643), - [anon_sym_AMP_EQ] = ACTIONS(7643), - [anon_sym_CARET_EQ] = ACTIONS(7643), - [anon_sym_PIPE_EQ] = ACTIONS(7643), - [anon_sym_LT_LT_EQ] = ACTIONS(7643), - [anon_sym_GT_GT_EQ] = ACTIONS(7643), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7643), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7643), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_equals] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5282] = { - [sym_variable_declaration] = STATE(8008), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6008), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5282), - [sym_preproc_endregion] = STATE(5282), - [sym_preproc_line] = STATE(5282), - [sym_preproc_pragma] = STATE(5282), - [sym_preproc_nullable] = STATE(5282), - [sym_preproc_error] = STATE(5282), - [sym_preproc_warning] = STATE(5282), - [sym_preproc_define] = STATE(5282), - [sym_preproc_undef] = STATE(5282), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), @@ -658474,7 +649860,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = 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), + }, + [5282] = { + [sym__name] = STATE(5640), + [sym_alias_qualified_name] = STATE(5591), + [sym__simple_name] = STATE(5591), + [sym_qualified_name] = STATE(5591), + [sym_generic_name] = STATE(5632), + [sym_type] = STATE(5602), + [sym_implicit_type] = STATE(5601), + [sym_array_type] = STATE(5638), + [sym__array_base_type] = STATE(7416), + [sym_nullable_type] = STATE(5629), + [sym_pointer_type] = STATE(5629), + [sym__pointer_base_type] = STATE(8041), + [sym_function_pointer_type] = STATE(5629), + [sym_ref_type] = STATE(5601), + [sym_scoped_type] = STATE(5601), + [sym_tuple_type] = STATE(5626), + [sym_identifier] = STATE(5537), + [sym__reserved_identifier] = STATE(5554), + [sym_preproc_region] = STATE(5282), + [sym_preproc_endregion] = STATE(5282), + [sym_preproc_line] = STATE(5282), + [sym_preproc_pragma] = STATE(5282), + [sym_preproc_nullable] = STATE(5282), + [sym_preproc_error] = STATE(5282), + [sym_preproc_warning] = STATE(5282), + [sym_preproc_define] = STATE(5282), + [sym_preproc_undef] = STATE(5282), + [sym__identifier_token] = ACTIONS(4318), + [anon_sym_alias] = ACTIONS(4320), + [anon_sym_global] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(8043), + [anon_sym_ref] = ACTIONS(4322), + [anon_sym_delegate] = ACTIONS(7466), + [anon_sym_readonly] = ACTIONS(8083), + [anon_sym_file] = ACTIONS(4320), + [anon_sym_where] = ACTIONS(4320), + [anon_sym_notnull] = ACTIONS(4320), + [anon_sym_unmanaged] = ACTIONS(4320), + [anon_sym_scoped] = ACTIONS(7468), + [anon_sym_var] = ACTIONS(7470), + [sym_predefined_type] = ACTIONS(7472), + [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), + [sym_grit_metavariable] = ACTIONS(4327), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -658487,24 +649941,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5283] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6379), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5283), [sym_preproc_endregion] = STATE(5283), [sym_preproc_line] = STATE(5283), @@ -658514,35 +649950,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5283), [sym_preproc_define] = STATE(5283), [sym_preproc_undef] = STATE(5283), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(7202), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_EQ] = ACTIONS(8085), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_in] = ACTIONS(5508), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(8087), + [anon_sym_DASH_EQ] = ACTIONS(8087), + [anon_sym_STAR_EQ] = ACTIONS(8087), + [anon_sym_SLASH_EQ] = ACTIONS(8087), + [anon_sym_PERCENT_EQ] = ACTIONS(8087), + [anon_sym_AMP_EQ] = ACTIONS(8087), + [anon_sym_CARET_EQ] = ACTIONS(8087), + [anon_sym_PIPE_EQ] = ACTIONS(8087), + [anon_sym_LT_LT_EQ] = ACTIONS(8087), + [anon_sym_GT_GT_EQ] = ACTIONS(8087), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(8087), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -658555,24 +650009,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5284] = { - [sym__name] = STATE(5593), - [sym_alias_qualified_name] = STATE(5609), - [sym__simple_name] = STATE(5609), - [sym_qualified_name] = STATE(5609), - [sym_generic_name] = STATE(5595), - [sym_type] = STATE(5599), - [sym_implicit_type] = STATE(5606), - [sym_array_type] = STATE(5613), - [sym__array_base_type] = STATE(7386), - [sym_nullable_type] = STATE(5586), - [sym_pointer_type] = STATE(5586), - [sym__pointer_base_type] = STATE(8114), - [sym_function_pointer_type] = STATE(5586), - [sym_ref_type] = STATE(5606), - [sym_scoped_type] = STATE(5606), - [sym_tuple_type] = STATE(5591), - [sym_identifier] = STATE(5549), - [sym__reserved_identifier] = STATE(5566), [sym_preproc_region] = STATE(5284), [sym_preproc_endregion] = STATE(5284), [sym_preproc_line] = STATE(5284), @@ -658582,35 +650018,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5284), [sym_preproc_define] = STATE(5284), [sym_preproc_undef] = STATE(5284), - [sym__identifier_token] = ACTIONS(4318), - [anon_sym_alias] = ACTIONS(4320), - [anon_sym_global] = ACTIONS(4320), - [anon_sym_LPAREN] = ACTIONS(7601), - [anon_sym_ref] = ACTIONS(4322), - [anon_sym_delegate] = ACTIONS(7290), - [anon_sym_readonly] = ACTIONS(7645), - [anon_sym_file] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_notnull] = ACTIONS(4320), - [anon_sym_unmanaged] = ACTIONS(4320), - [anon_sym_scoped] = ACTIONS(7340), - [anon_sym_var] = ACTIONS(7294), - [sym_predefined_type] = ACTIONS(7296), - [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), - [sym_grit_metavariable] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(5757), + [anon_sym_COMMA] = ACTIONS(5757), + [anon_sym_LPAREN] = ACTIONS(5757), + [anon_sym_LT] = ACTIONS(5759), + [anon_sym_GT] = ACTIONS(5759), + [anon_sym_where] = ACTIONS(5757), + [anon_sym_QMARK] = ACTIONS(5759), + [anon_sym_DOT] = ACTIONS(5759), + [anon_sym_STAR] = ACTIONS(5757), + [anon_sym_switch] = ACTIONS(5757), + [anon_sym_DOT_DOT] = ACTIONS(5757), + [anon_sym_LT_EQ] = ACTIONS(5757), + [anon_sym_GT_EQ] = ACTIONS(5757), + [anon_sym_and] = ACTIONS(5757), + [anon_sym_or] = ACTIONS(5759), + [anon_sym_EQ_EQ] = ACTIONS(5757), + [anon_sym_BANG_EQ] = ACTIONS(5757), + [anon_sym_AMP_AMP] = ACTIONS(5757), + [anon_sym_PIPE_PIPE] = ACTIONS(5757), + [anon_sym_AMP] = ACTIONS(5759), + [sym_op_bitwise_or] = ACTIONS(5759), + [anon_sym_CARET] = ACTIONS(5757), + [sym_op_left_shift] = ACTIONS(5757), + [sym_op_right_shift] = ACTIONS(5759), + [sym_op_unsigned_right_shift] = ACTIONS(5757), + [anon_sym_PLUS] = ACTIONS(5759), + [anon_sym_DASH] = ACTIONS(5759), + [sym_op_divide] = ACTIONS(5759), + [sym_op_modulo] = ACTIONS(5757), + [sym_op_coalescing] = ACTIONS(5757), + [anon_sym_BANG] = ACTIONS(5759), + [anon_sym_PLUS_PLUS] = ACTIONS(5757), + [anon_sym_DASH_DASH] = ACTIONS(5757), + [anon_sym_from] = ACTIONS(5757), + [anon_sym_into] = ACTIONS(5757), + [anon_sym_join] = ACTIONS(5757), + [anon_sym_let] = ACTIONS(5757), + [anon_sym_orderby] = ACTIONS(5757), + [anon_sym_ascending] = ACTIONS(5757), + [anon_sym_descending] = ACTIONS(5757), + [anon_sym_group] = ACTIONS(5757), + [anon_sym_select] = ACTIONS(5757), + [anon_sym_as] = ACTIONS(5759), + [anon_sym_is] = ACTIONS(5757), + [anon_sym_DASH_GT] = ACTIONS(5757), + [anon_sym_with] = ACTIONS(5757), + [sym_grit_metavariable] = ACTIONS(5757), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -658623,6 +650077,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5285] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6432), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5285), [sym_preproc_endregion] = STATE(5285), [sym_preproc_line] = STATE(5285), @@ -658632,53 +650104,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5285), [sym_preproc_define] = STATE(5285), [sym_preproc_undef] = STATE(5285), - [anon_sym_LBRACK] = ACTIONS(6098), - [anon_sym_COMMA] = ACTIONS(6098), - [anon_sym_LPAREN] = ACTIONS(6098), - [anon_sym_LT] = ACTIONS(6100), - [anon_sym_GT] = ACTIONS(6100), - [anon_sym_where] = ACTIONS(6098), - [anon_sym_QMARK] = ACTIONS(6100), - [anon_sym_BANG] = ACTIONS(6100), - [anon_sym_PLUS_PLUS] = ACTIONS(6098), - [anon_sym_DASH_DASH] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(6098), - [anon_sym_SLASH] = ACTIONS(6100), - [anon_sym_PERCENT] = ACTIONS(6098), - [anon_sym_CARET] = ACTIONS(6098), - [anon_sym_PIPE] = ACTIONS(6100), - [anon_sym_AMP] = ACTIONS(6100), - [anon_sym_LT_LT] = ACTIONS(6098), - [anon_sym_GT_GT] = ACTIONS(6100), - [anon_sym_GT_GT_GT] = ACTIONS(6098), - [anon_sym_EQ_EQ] = ACTIONS(6098), - [anon_sym_BANG_EQ] = ACTIONS(6098), - [anon_sym_GT_EQ] = ACTIONS(6098), - [anon_sym_LT_EQ] = ACTIONS(6098), - [anon_sym_DOT] = ACTIONS(6100), - [anon_sym_switch] = ACTIONS(6098), - [anon_sym_DOT_DOT] = ACTIONS(6098), - [anon_sym_and] = ACTIONS(6098), - [anon_sym_or] = ACTIONS(6100), - [anon_sym_AMP_AMP] = ACTIONS(6098), - [anon_sym_PIPE_PIPE] = ACTIONS(6098), - [sym_op_coalescing] = ACTIONS(6098), - [anon_sym_from] = ACTIONS(6098), - [anon_sym_into] = ACTIONS(6098), - [anon_sym_join] = ACTIONS(6098), - [anon_sym_let] = ACTIONS(6098), - [anon_sym_orderby] = ACTIONS(6098), - [anon_sym_ascending] = ACTIONS(6098), - [anon_sym_descending] = ACTIONS(6098), - [anon_sym_group] = ACTIONS(6098), - [anon_sym_select] = ACTIONS(6098), - [anon_sym_as] = ACTIONS(6100), - [anon_sym_is] = ACTIONS(6098), - [anon_sym_DASH_GT] = ACTIONS(6098), - [anon_sym_with] = ACTIONS(6098), - [sym_grit_metavariable] = ACTIONS(6098), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [anon_sym_STAR] = ACTIONS(7208), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -658691,24 +650145,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5286] = { - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3755), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3290), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5286), [sym_preproc_endregion] = STATE(5286), [sym_preproc_line] = STATE(5286), @@ -658718,35 +650172,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5286), [sym_preproc_define] = STATE(5286), [sym_preproc_undef] = STATE(5286), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4199), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_readonly] = ACTIONS(7647), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7382), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4616), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_readonly] = ACTIONS(8089), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7332), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -658768,53 +650222,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5287), [sym_preproc_define] = STATE(5287), [sym_preproc_undef] = STATE(5287), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_EQ] = ACTIONS(8091), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_LT] = ACTIONS(5510), + [anon_sym_GT] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_DOT_DOT] = ACTIONS(5508), + [anon_sym_LT_EQ] = ACTIONS(5508), + [anon_sym_GT_EQ] = ACTIONS(5508), + [anon_sym_PLUS_EQ] = ACTIONS(8093), + [anon_sym_DASH_EQ] = ACTIONS(8093), + [anon_sym_STAR_EQ] = ACTIONS(8093), + [anon_sym_SLASH_EQ] = ACTIONS(8093), + [anon_sym_PERCENT_EQ] = ACTIONS(8093), + [anon_sym_AMP_EQ] = ACTIONS(8093), + [anon_sym_CARET_EQ] = ACTIONS(8093), + [anon_sym_PIPE_EQ] = ACTIONS(8093), + [anon_sym_LT_LT_EQ] = ACTIONS(8093), + [anon_sym_GT_GT_EQ] = ACTIONS(8093), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(8093), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(8093), + [anon_sym_EQ_EQ] = ACTIONS(5508), + [anon_sym_BANG_EQ] = ACTIONS(5508), + [anon_sym_AMP_AMP] = ACTIONS(5508), + [anon_sym_PIPE_PIPE] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5510), + [sym_op_bitwise_or] = ACTIONS(5510), + [anon_sym_CARET] = ACTIONS(5510), + [sym_op_left_shift] = ACTIONS(5510), + [sym_op_right_shift] = ACTIONS(5510), + [sym_op_unsigned_right_shift] = ACTIONS(5510), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [sym_op_divide] = ACTIONS(5510), + [sym_op_modulo] = ACTIONS(5510), + [sym_op_coalescing] = ACTIONS(5510), + [anon_sym_BANG] = ACTIONS(5510), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_by] = ACTIONS(5508), + [anon_sym_as] = ACTIONS(5508), + [anon_sym_is] = ACTIONS(5508), + [anon_sym_DASH_GT] = ACTIONS(5508), + [anon_sym_with] = ACTIONS(5508), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -658827,6 +650281,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5288] = { + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3172), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(5288), [sym_preproc_endregion] = STATE(5288), [sym_preproc_line] = STATE(5288), @@ -658836,53 +650308,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5288), [sym_preproc_define] = STATE(5288), [sym_preproc_undef] = STATE(5288), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5855), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4632), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_readonly] = ACTIONS(8095), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7438), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -658895,24 +650349,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5289] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4753), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3926), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(5289), [sym_preproc_endregion] = STATE(5289), [sym_preproc_line] = STATE(5289), @@ -658922,35 +650376,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5289), [sym_preproc_define] = STATE(5289), [sym_preproc_undef] = STATE(5289), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4143), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_readonly] = ACTIONS(7649), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7415), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(8015), + [anon_sym_ref] = ACTIONS(4474), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_readonly] = ACTIONS(8097), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7657), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -658972,53 +650426,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5290), [sym_preproc_define] = STATE(5290), [sym_preproc_undef] = STATE(5290), - [anon_sym_LBRACK] = ACTIONS(7140), - [anon_sym_COMMA] = ACTIONS(7140), - [anon_sym_LPAREN] = ACTIONS(7140), - [anon_sym_LT] = ACTIONS(7142), - [anon_sym_GT] = ACTIONS(7142), - [anon_sym_where] = ACTIONS(7140), - [anon_sym_QMARK] = ACTIONS(7142), - [anon_sym_BANG] = ACTIONS(7142), - [anon_sym_PLUS_PLUS] = ACTIONS(7140), - [anon_sym_DASH_DASH] = ACTIONS(7140), - [anon_sym_PLUS] = ACTIONS(7142), - [anon_sym_DASH] = ACTIONS(7142), - [anon_sym_STAR] = ACTIONS(7140), - [anon_sym_SLASH] = ACTIONS(7142), - [anon_sym_PERCENT] = ACTIONS(7140), - [anon_sym_CARET] = ACTIONS(7140), - [anon_sym_PIPE] = ACTIONS(7142), - [anon_sym_AMP] = ACTIONS(7142), - [anon_sym_LT_LT] = ACTIONS(7140), - [anon_sym_GT_GT] = ACTIONS(7142), - [anon_sym_GT_GT_GT] = ACTIONS(7140), - [anon_sym_EQ_EQ] = ACTIONS(7140), - [anon_sym_BANG_EQ] = ACTIONS(7140), - [anon_sym_GT_EQ] = ACTIONS(7140), - [anon_sym_LT_EQ] = ACTIONS(7140), - [anon_sym_DOT] = ACTIONS(7142), - [anon_sym_switch] = ACTIONS(7140), - [anon_sym_DOT_DOT] = ACTIONS(7140), - [anon_sym_and] = ACTIONS(7140), - [anon_sym_or] = ACTIONS(7142), - [anon_sym_AMP_AMP] = ACTIONS(7140), - [anon_sym_PIPE_PIPE] = ACTIONS(7140), - [sym_op_coalescing] = ACTIONS(7140), - [anon_sym_from] = ACTIONS(7140), - [anon_sym_into] = ACTIONS(7140), - [anon_sym_join] = ACTIONS(7140), - [anon_sym_let] = ACTIONS(7140), - [anon_sym_orderby] = ACTIONS(7140), - [anon_sym_ascending] = ACTIONS(7140), - [anon_sym_descending] = ACTIONS(7140), - [anon_sym_group] = ACTIONS(7140), - [anon_sym_select] = ACTIONS(7140), - [anon_sym_as] = ACTIONS(7142), - [anon_sym_is] = ACTIONS(7140), - [anon_sym_DASH_GT] = ACTIONS(7140), - [anon_sym_with] = ACTIONS(7140), - [sym_grit_metavariable] = ACTIONS(7140), + [anon_sym_LBRACK] = ACTIONS(5959), + [anon_sym_COMMA] = ACTIONS(5959), + [anon_sym_LPAREN] = ACTIONS(5959), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_where] = ACTIONS(5959), + [anon_sym_QMARK] = ACTIONS(5961), + [anon_sym_DOT] = ACTIONS(5961), + [anon_sym_STAR] = ACTIONS(5959), + [anon_sym_switch] = ACTIONS(5959), + [anon_sym_DOT_DOT] = ACTIONS(5959), + [anon_sym_LT_EQ] = ACTIONS(5959), + [anon_sym_GT_EQ] = ACTIONS(5959), + [anon_sym_and] = ACTIONS(5959), + [anon_sym_or] = ACTIONS(5961), + [anon_sym_EQ_EQ] = ACTIONS(5959), + [anon_sym_BANG_EQ] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [anon_sym_AMP] = ACTIONS(5961), + [sym_op_bitwise_or] = ACTIONS(5961), + [anon_sym_CARET] = ACTIONS(5959), + [sym_op_left_shift] = ACTIONS(5959), + [sym_op_right_shift] = ACTIONS(5961), + [sym_op_unsigned_right_shift] = ACTIONS(5959), + [anon_sym_PLUS] = ACTIONS(5961), + [anon_sym_DASH] = ACTIONS(5961), + [sym_op_divide] = ACTIONS(5961), + [sym_op_modulo] = ACTIONS(5959), + [sym_op_coalescing] = ACTIONS(5959), + [anon_sym_BANG] = ACTIONS(5961), + [anon_sym_PLUS_PLUS] = ACTIONS(5959), + [anon_sym_DASH_DASH] = ACTIONS(5959), + [anon_sym_from] = ACTIONS(5959), + [anon_sym_into] = ACTIONS(5959), + [anon_sym_join] = ACTIONS(5959), + [anon_sym_let] = ACTIONS(5959), + [anon_sym_orderby] = ACTIONS(5959), + [anon_sym_ascending] = ACTIONS(5959), + [anon_sym_descending] = ACTIONS(5959), + [anon_sym_group] = ACTIONS(5959), + [anon_sym_select] = ACTIONS(5959), + [anon_sym_as] = ACTIONS(5961), + [anon_sym_is] = ACTIONS(5959), + [anon_sym_DASH_GT] = ACTIONS(5959), + [anon_sym_with] = ACTIONS(5959), + [sym_grit_metavariable] = ACTIONS(5959), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659031,6 +650485,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5291] = { + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3926), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(5291), [sym_preproc_endregion] = STATE(5291), [sym_preproc_line] = STATE(5291), @@ -659040,53 +650512,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5291), [sym_preproc_define] = STATE(5291), [sym_preproc_undef] = STATE(5291), - [anon_sym_LBRACK] = ACTIONS(7136), - [anon_sym_COMMA] = ACTIONS(7136), - [anon_sym_LPAREN] = ACTIONS(7136), - [anon_sym_LT] = ACTIONS(7138), - [anon_sym_GT] = ACTIONS(7138), - [anon_sym_where] = ACTIONS(7136), - [anon_sym_QMARK] = ACTIONS(7138), - [anon_sym_BANG] = ACTIONS(7138), - [anon_sym_PLUS_PLUS] = ACTIONS(7136), - [anon_sym_DASH_DASH] = ACTIONS(7136), - [anon_sym_PLUS] = ACTIONS(7138), - [anon_sym_DASH] = ACTIONS(7138), - [anon_sym_STAR] = ACTIONS(7136), - [anon_sym_SLASH] = ACTIONS(7138), - [anon_sym_PERCENT] = ACTIONS(7136), - [anon_sym_CARET] = ACTIONS(7136), - [anon_sym_PIPE] = ACTIONS(7138), - [anon_sym_AMP] = ACTIONS(7138), - [anon_sym_LT_LT] = ACTIONS(7136), - [anon_sym_GT_GT] = ACTIONS(7138), - [anon_sym_GT_GT_GT] = ACTIONS(7136), - [anon_sym_EQ_EQ] = ACTIONS(7136), - [anon_sym_BANG_EQ] = ACTIONS(7136), - [anon_sym_GT_EQ] = ACTIONS(7136), - [anon_sym_LT_EQ] = ACTIONS(7136), - [anon_sym_DOT] = ACTIONS(7138), - [anon_sym_switch] = ACTIONS(7136), - [anon_sym_DOT_DOT] = ACTIONS(7136), - [anon_sym_and] = ACTIONS(7136), - [anon_sym_or] = ACTIONS(7138), - [anon_sym_AMP_AMP] = ACTIONS(7136), - [anon_sym_PIPE_PIPE] = ACTIONS(7136), - [sym_op_coalescing] = ACTIONS(7136), - [anon_sym_from] = ACTIONS(7136), - [anon_sym_into] = ACTIONS(7136), - [anon_sym_join] = ACTIONS(7136), - [anon_sym_let] = ACTIONS(7136), - [anon_sym_orderby] = ACTIONS(7136), - [anon_sym_ascending] = ACTIONS(7136), - [anon_sym_descending] = ACTIONS(7136), - [anon_sym_group] = ACTIONS(7136), - [anon_sym_select] = ACTIONS(7136), - [anon_sym_as] = ACTIONS(7138), - [anon_sym_is] = ACTIONS(7136), - [anon_sym_DASH_GT] = ACTIONS(7136), - [anon_sym_with] = ACTIONS(7136), - [sym_grit_metavariable] = ACTIONS(7136), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(8015), + [anon_sym_ref] = ACTIONS(4501), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_readonly] = ACTIONS(8099), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7636), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659108,53 +650562,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5292), [sym_preproc_define] = STATE(5292), [sym_preproc_undef] = STATE(5292), - [anon_sym_LBRACK] = ACTIONS(7132), - [anon_sym_COMMA] = ACTIONS(7132), - [anon_sym_LPAREN] = ACTIONS(7132), - [anon_sym_LT] = ACTIONS(7134), - [anon_sym_GT] = ACTIONS(7134), - [anon_sym_where] = ACTIONS(7132), - [anon_sym_QMARK] = ACTIONS(7134), - [anon_sym_BANG] = ACTIONS(7134), - [anon_sym_PLUS_PLUS] = ACTIONS(7132), - [anon_sym_DASH_DASH] = ACTIONS(7132), - [anon_sym_PLUS] = ACTIONS(7134), - [anon_sym_DASH] = ACTIONS(7134), - [anon_sym_STAR] = ACTIONS(7132), - [anon_sym_SLASH] = ACTIONS(7134), - [anon_sym_PERCENT] = ACTIONS(7132), - [anon_sym_CARET] = ACTIONS(7132), - [anon_sym_PIPE] = ACTIONS(7134), - [anon_sym_AMP] = ACTIONS(7134), - [anon_sym_LT_LT] = ACTIONS(7132), - [anon_sym_GT_GT] = ACTIONS(7134), - [anon_sym_GT_GT_GT] = ACTIONS(7132), - [anon_sym_EQ_EQ] = ACTIONS(7132), - [anon_sym_BANG_EQ] = ACTIONS(7132), - [anon_sym_GT_EQ] = ACTIONS(7132), - [anon_sym_LT_EQ] = ACTIONS(7132), - [anon_sym_DOT] = ACTIONS(7134), - [anon_sym_switch] = ACTIONS(7132), - [anon_sym_DOT_DOT] = ACTIONS(7132), - [anon_sym_and] = ACTIONS(7132), - [anon_sym_or] = ACTIONS(7134), - [anon_sym_AMP_AMP] = ACTIONS(7132), - [anon_sym_PIPE_PIPE] = ACTIONS(7132), - [sym_op_coalescing] = ACTIONS(7132), - [anon_sym_from] = ACTIONS(7132), - [anon_sym_into] = ACTIONS(7132), - [anon_sym_join] = ACTIONS(7132), - [anon_sym_let] = ACTIONS(7132), - [anon_sym_orderby] = ACTIONS(7132), - [anon_sym_ascending] = ACTIONS(7132), - [anon_sym_descending] = ACTIONS(7132), - [anon_sym_group] = ACTIONS(7132), - [anon_sym_select] = ACTIONS(7132), - [anon_sym_as] = ACTIONS(7134), - [anon_sym_is] = ACTIONS(7132), - [anon_sym_DASH_GT] = ACTIONS(7132), - [anon_sym_with] = ACTIONS(7132), - [sym_grit_metavariable] = ACTIONS(7132), + [anon_sym_LBRACK] = ACTIONS(5828), + [anon_sym_COMMA] = ACTIONS(5828), + [anon_sym_LPAREN] = ACTIONS(5828), + [anon_sym_LT] = ACTIONS(5830), + [anon_sym_GT] = ACTIONS(5830), + [anon_sym_where] = ACTIONS(5828), + [anon_sym_QMARK] = ACTIONS(5830), + [anon_sym_DOT] = ACTIONS(5830), + [anon_sym_STAR] = ACTIONS(5828), + [anon_sym_switch] = ACTIONS(5828), + [anon_sym_DOT_DOT] = ACTIONS(5828), + [anon_sym_LT_EQ] = ACTIONS(5828), + [anon_sym_GT_EQ] = ACTIONS(5828), + [anon_sym_and] = ACTIONS(5828), + [anon_sym_or] = ACTIONS(5830), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_AMP_AMP] = ACTIONS(5828), + [anon_sym_PIPE_PIPE] = ACTIONS(5828), + [anon_sym_AMP] = ACTIONS(5830), + [sym_op_bitwise_or] = ACTIONS(5830), + [anon_sym_CARET] = ACTIONS(5828), + [sym_op_left_shift] = ACTIONS(5828), + [sym_op_right_shift] = ACTIONS(5830), + [sym_op_unsigned_right_shift] = ACTIONS(5828), + [anon_sym_PLUS] = ACTIONS(5830), + [anon_sym_DASH] = ACTIONS(5830), + [sym_op_divide] = ACTIONS(5830), + [sym_op_modulo] = ACTIONS(5828), + [sym_op_coalescing] = ACTIONS(5828), + [anon_sym_BANG] = ACTIONS(5830), + [anon_sym_PLUS_PLUS] = ACTIONS(5828), + [anon_sym_DASH_DASH] = ACTIONS(5828), + [anon_sym_from] = ACTIONS(5828), + [anon_sym_into] = ACTIONS(5828), + [anon_sym_join] = ACTIONS(5828), + [anon_sym_let] = ACTIONS(5828), + [anon_sym_orderby] = ACTIONS(5828), + [anon_sym_ascending] = ACTIONS(5828), + [anon_sym_descending] = ACTIONS(5828), + [anon_sym_group] = ACTIONS(5828), + [anon_sym_select] = ACTIONS(5828), + [anon_sym_as] = ACTIONS(5830), + [anon_sym_is] = ACTIONS(5828), + [anon_sym_DASH_GT] = ACTIONS(5828), + [anon_sym_with] = ACTIONS(5828), + [sym_grit_metavariable] = ACTIONS(5828), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659167,6 +650621,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5293] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6335), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7508), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5293), [sym_preproc_endregion] = STATE(5293), [sym_preproc_line] = STATE(5293), @@ -659176,53 +650649,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5293), [sym_preproc_define] = STATE(5293), [sym_preproc_undef] = STATE(5293), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_COMMA] = ACTIONS(7128), - [anon_sym_LPAREN] = ACTIONS(7128), - [anon_sym_LT] = ACTIONS(7130), - [anon_sym_GT] = ACTIONS(7130), - [anon_sym_where] = ACTIONS(7128), - [anon_sym_QMARK] = ACTIONS(7130), - [anon_sym_BANG] = ACTIONS(7130), - [anon_sym_PLUS_PLUS] = ACTIONS(7128), - [anon_sym_DASH_DASH] = ACTIONS(7128), - [anon_sym_PLUS] = ACTIONS(7130), - [anon_sym_DASH] = ACTIONS(7130), - [anon_sym_STAR] = ACTIONS(7128), - [anon_sym_SLASH] = ACTIONS(7130), - [anon_sym_PERCENT] = ACTIONS(7128), - [anon_sym_CARET] = ACTIONS(7128), - [anon_sym_PIPE] = ACTIONS(7130), - [anon_sym_AMP] = ACTIONS(7130), - [anon_sym_LT_LT] = ACTIONS(7128), - [anon_sym_GT_GT] = ACTIONS(7130), - [anon_sym_GT_GT_GT] = ACTIONS(7128), - [anon_sym_EQ_EQ] = ACTIONS(7128), - [anon_sym_BANG_EQ] = ACTIONS(7128), - [anon_sym_GT_EQ] = ACTIONS(7128), - [anon_sym_LT_EQ] = ACTIONS(7128), - [anon_sym_DOT] = ACTIONS(7130), - [anon_sym_switch] = ACTIONS(7128), - [anon_sym_DOT_DOT] = ACTIONS(7128), - [anon_sym_and] = ACTIONS(7128), - [anon_sym_or] = ACTIONS(7130), - [anon_sym_AMP_AMP] = ACTIONS(7128), - [anon_sym_PIPE_PIPE] = ACTIONS(7128), - [sym_op_coalescing] = ACTIONS(7128), - [anon_sym_from] = ACTIONS(7128), - [anon_sym_into] = ACTIONS(7128), - [anon_sym_join] = ACTIONS(7128), - [anon_sym_let] = ACTIONS(7128), - [anon_sym_orderby] = ACTIONS(7128), - [anon_sym_ascending] = ACTIONS(7128), - [anon_sym_descending] = ACTIONS(7128), - [anon_sym_group] = ACTIONS(7128), - [anon_sym_select] = ACTIONS(7128), - [anon_sym_as] = ACTIONS(7130), - [anon_sym_is] = ACTIONS(7128), - [anon_sym_DASH_GT] = ACTIONS(7128), - [anon_sym_with] = ACTIONS(7128), - [sym_grit_metavariable] = ACTIONS(7128), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3900), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(7834), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659244,53 +650698,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5294), [sym_preproc_define] = STATE(5294), [sym_preproc_undef] = STATE(5294), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3738), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(7651), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_file] = ACTIONS(3738), - [anon_sym_fixed] = ACTIONS(3738), - [anon_sym_internal] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_partial] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_sealed] = ACTIONS(3738), - [anon_sym_virtual] = ACTIONS(3738), - [anon_sym_volatile] = ACTIONS(3738), - [anon_sym_where] = ACTIONS(3738), - [anon_sym_notnull] = ACTIONS(3738), - [anon_sym_unmanaged] = ACTIONS(3738), - [anon_sym_scoped] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_into] = ACTIONS(3738), - [anon_sym_join] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_equals] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_orderby] = ACTIONS(3738), - [anon_sym_ascending] = ACTIONS(3738), - [anon_sym_descending] = ACTIONS(3738), - [anon_sym_group] = ACTIONS(3738), - [anon_sym_by] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [sym_grit_metavariable] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5907), + [anon_sym_COMMA] = ACTIONS(5907), + [anon_sym_LPAREN] = ACTIONS(5907), + [anon_sym_LT] = ACTIONS(5909), + [anon_sym_GT] = ACTIONS(5909), + [anon_sym_where] = ACTIONS(5907), + [anon_sym_QMARK] = ACTIONS(5909), + [anon_sym_DOT] = ACTIONS(5909), + [anon_sym_STAR] = ACTIONS(5907), + [anon_sym_switch] = ACTIONS(5907), + [anon_sym_DOT_DOT] = ACTIONS(5907), + [anon_sym_LT_EQ] = ACTIONS(5907), + [anon_sym_GT_EQ] = ACTIONS(5907), + [anon_sym_and] = ACTIONS(5907), + [anon_sym_or] = ACTIONS(5909), + [anon_sym_EQ_EQ] = ACTIONS(5907), + [anon_sym_BANG_EQ] = ACTIONS(5907), + [anon_sym_AMP_AMP] = ACTIONS(5907), + [anon_sym_PIPE_PIPE] = ACTIONS(5907), + [anon_sym_AMP] = ACTIONS(5909), + [sym_op_bitwise_or] = ACTIONS(5909), + [anon_sym_CARET] = ACTIONS(5907), + [sym_op_left_shift] = ACTIONS(5907), + [sym_op_right_shift] = ACTIONS(5909), + [sym_op_unsigned_right_shift] = ACTIONS(5907), + [anon_sym_PLUS] = ACTIONS(5909), + [anon_sym_DASH] = ACTIONS(5909), + [sym_op_divide] = ACTIONS(5909), + [sym_op_modulo] = ACTIONS(5907), + [sym_op_coalescing] = ACTIONS(5907), + [anon_sym_BANG] = ACTIONS(5909), + [anon_sym_PLUS_PLUS] = ACTIONS(5907), + [anon_sym_DASH_DASH] = ACTIONS(5907), + [anon_sym_from] = ACTIONS(5907), + [anon_sym_into] = ACTIONS(5907), + [anon_sym_join] = ACTIONS(5907), + [anon_sym_let] = ACTIONS(5907), + [anon_sym_orderby] = ACTIONS(5907), + [anon_sym_ascending] = ACTIONS(5907), + [anon_sym_descending] = ACTIONS(5907), + [anon_sym_group] = ACTIONS(5907), + [anon_sym_select] = ACTIONS(5907), + [anon_sym_as] = ACTIONS(5909), + [anon_sym_is] = ACTIONS(5907), + [anon_sym_DASH_GT] = ACTIONS(5907), + [anon_sym_with] = ACTIONS(5907), + [sym_grit_metavariable] = ACTIONS(5907), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659303,15 +650757,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5295] = { - [sym__name] = STATE(5884), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(5567), - [sym__reserved_identifier] = STATE(2206), [sym_preproc_region] = STATE(5295), [sym_preproc_endregion] = STATE(5295), [sym_preproc_line] = STATE(5295), @@ -659321,44 +650766,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5295), [sym_preproc_define] = STATE(5295), [sym_preproc_undef] = STATE(5295), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3894), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3696), - [anon_sym_notnull] = ACTIONS(3894), - [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_operator] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_this] = ACTIONS(3698), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3894), - [anon_sym_yield] = ACTIONS(3894), - [anon_sym_when] = ACTIONS(3894), - [anon_sym_from] = ACTIONS(3894), - [anon_sym_into] = ACTIONS(3894), - [anon_sym_join] = ACTIONS(3894), - [anon_sym_on] = ACTIONS(3894), - [anon_sym_equals] = ACTIONS(3894), - [anon_sym_let] = ACTIONS(3894), - [anon_sym_orderby] = ACTIONS(3894), - [anon_sym_ascending] = ACTIONS(3894), - [anon_sym_descending] = ACTIONS(3894), - [anon_sym_group] = ACTIONS(3894), - [anon_sym_by] = ACTIONS(3894), - [anon_sym_select] = ACTIONS(3894), - [sym_grit_metavariable] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(5911), + [anon_sym_COMMA] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5913), + [anon_sym_GT] = ACTIONS(5913), + [anon_sym_where] = ACTIONS(5911), + [anon_sym_QMARK] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_switch] = ACTIONS(5911), + [anon_sym_DOT_DOT] = ACTIONS(5911), + [anon_sym_LT_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5911), + [anon_sym_and] = ACTIONS(5911), + [anon_sym_or] = ACTIONS(5913), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_AMP_AMP] = ACTIONS(5911), + [anon_sym_PIPE_PIPE] = ACTIONS(5911), + [anon_sym_AMP] = ACTIONS(5913), + [sym_op_bitwise_or] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(5911), + [sym_op_left_shift] = ACTIONS(5911), + [sym_op_right_shift] = ACTIONS(5913), + [sym_op_unsigned_right_shift] = ACTIONS(5911), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_DASH] = ACTIONS(5913), + [sym_op_divide] = ACTIONS(5913), + [sym_op_modulo] = ACTIONS(5911), + [sym_op_coalescing] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(5913), + [anon_sym_PLUS_PLUS] = ACTIONS(5911), + [anon_sym_DASH_DASH] = ACTIONS(5911), + [anon_sym_from] = ACTIONS(5911), + [anon_sym_into] = ACTIONS(5911), + [anon_sym_join] = 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_select] = ACTIONS(5911), + [anon_sym_as] = ACTIONS(5913), + [anon_sym_is] = ACTIONS(5911), + [anon_sym_DASH_GT] = ACTIONS(5911), + [anon_sym_with] = ACTIONS(5911), + [sym_grit_metavariable] = ACTIONS(5911), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659371,6 +650825,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5296] = { + [sym_variable_declaration] = STATE(7744), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6216), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5296), [sym_preproc_endregion] = STATE(5296), [sym_preproc_line] = STATE(5296), @@ -659380,53 +650853,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5296), [sym_preproc_define] = STATE(5296), [sym_preproc_undef] = STATE(5296), - [anon_sym_LBRACK] = ACTIONS(6136), - [anon_sym_COMMA] = ACTIONS(6136), - [anon_sym_LPAREN] = ACTIONS(6136), - [anon_sym_LT] = ACTIONS(6138), - [anon_sym_GT] = ACTIONS(6138), - [anon_sym_where] = ACTIONS(6136), - [anon_sym_QMARK] = ACTIONS(6138), - [anon_sym_BANG] = ACTIONS(6138), - [anon_sym_PLUS_PLUS] = ACTIONS(6136), - [anon_sym_DASH_DASH] = ACTIONS(6136), - [anon_sym_PLUS] = ACTIONS(6138), - [anon_sym_DASH] = ACTIONS(6138), - [anon_sym_STAR] = ACTIONS(6136), - [anon_sym_SLASH] = ACTIONS(6138), - [anon_sym_PERCENT] = ACTIONS(6136), - [anon_sym_CARET] = ACTIONS(6136), - [anon_sym_PIPE] = ACTIONS(6138), - [anon_sym_AMP] = ACTIONS(6138), - [anon_sym_LT_LT] = ACTIONS(6136), - [anon_sym_GT_GT] = ACTIONS(6138), - [anon_sym_GT_GT_GT] = ACTIONS(6136), - [anon_sym_EQ_EQ] = ACTIONS(6136), - [anon_sym_BANG_EQ] = ACTIONS(6136), - [anon_sym_GT_EQ] = ACTIONS(6136), - [anon_sym_LT_EQ] = ACTIONS(6136), - [anon_sym_DOT] = ACTIONS(6138), - [anon_sym_switch] = ACTIONS(6136), - [anon_sym_DOT_DOT] = ACTIONS(6136), - [anon_sym_and] = ACTIONS(6136), - [anon_sym_or] = ACTIONS(6138), - [anon_sym_AMP_AMP] = ACTIONS(6136), - [anon_sym_PIPE_PIPE] = ACTIONS(6136), - [sym_op_coalescing] = ACTIONS(6136), - [anon_sym_from] = ACTIONS(6136), - [anon_sym_into] = ACTIONS(6136), - [anon_sym_join] = ACTIONS(6136), - [anon_sym_let] = ACTIONS(6136), - [anon_sym_orderby] = ACTIONS(6136), - [anon_sym_ascending] = ACTIONS(6136), - [anon_sym_descending] = ACTIONS(6136), - [anon_sym_group] = ACTIONS(6136), - [anon_sym_select] = ACTIONS(6136), - [anon_sym_as] = ACTIONS(6138), - [anon_sym_is] = ACTIONS(6136), - [anon_sym_DASH_GT] = ACTIONS(6136), - [anon_sym_with] = ACTIONS(6136), - [sym_grit_metavariable] = ACTIONS(6136), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659448,53 +650902,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5297), [sym_preproc_define] = STATE(5297), [sym_preproc_undef] = STATE(5297), - [anon_sym_LBRACK] = ACTIONS(7148), - [anon_sym_COMMA] = ACTIONS(7148), - [anon_sym_LPAREN] = ACTIONS(7148), - [anon_sym_LT] = ACTIONS(7150), - [anon_sym_GT] = ACTIONS(7150), - [anon_sym_where] = ACTIONS(7148), - [anon_sym_QMARK] = ACTIONS(7150), - [anon_sym_BANG] = ACTIONS(7150), - [anon_sym_PLUS_PLUS] = ACTIONS(7148), - [anon_sym_DASH_DASH] = ACTIONS(7148), - [anon_sym_PLUS] = ACTIONS(7150), - [anon_sym_DASH] = ACTIONS(7150), - [anon_sym_STAR] = ACTIONS(7148), - [anon_sym_SLASH] = ACTIONS(7150), - [anon_sym_PERCENT] = ACTIONS(7148), - [anon_sym_CARET] = ACTIONS(7148), - [anon_sym_PIPE] = ACTIONS(7150), - [anon_sym_AMP] = ACTIONS(7150), - [anon_sym_LT_LT] = ACTIONS(7148), - [anon_sym_GT_GT] = ACTIONS(7150), - [anon_sym_GT_GT_GT] = ACTIONS(7148), - [anon_sym_EQ_EQ] = ACTIONS(7148), - [anon_sym_BANG_EQ] = ACTIONS(7148), - [anon_sym_GT_EQ] = ACTIONS(7148), - [anon_sym_LT_EQ] = ACTIONS(7148), - [anon_sym_DOT] = ACTIONS(7150), - [anon_sym_switch] = ACTIONS(7148), - [anon_sym_DOT_DOT] = ACTIONS(7148), - [anon_sym_and] = ACTIONS(7148), - [anon_sym_or] = ACTIONS(7150), - [anon_sym_AMP_AMP] = ACTIONS(7148), - [anon_sym_PIPE_PIPE] = ACTIONS(7148), - [sym_op_coalescing] = ACTIONS(7148), - [anon_sym_from] = ACTIONS(7148), - [anon_sym_into] = ACTIONS(7148), - [anon_sym_join] = ACTIONS(7148), - [anon_sym_let] = ACTIONS(7148), - [anon_sym_orderby] = ACTIONS(7148), - [anon_sym_ascending] = ACTIONS(7148), - [anon_sym_descending] = ACTIONS(7148), - [anon_sym_group] = ACTIONS(7148), - [anon_sym_select] = ACTIONS(7148), - [anon_sym_as] = ACTIONS(7150), - [anon_sym_is] = ACTIONS(7148), - [anon_sym_DASH_GT] = ACTIONS(7148), - [anon_sym_with] = ACTIONS(7148), - [sym_grit_metavariable] = ACTIONS(7148), + [anon_sym_LBRACK] = ACTIONS(5791), + [anon_sym_COMMA] = ACTIONS(5791), + [anon_sym_LPAREN] = ACTIONS(5791), + [anon_sym_LT] = ACTIONS(5793), + [anon_sym_GT] = ACTIONS(5793), + [anon_sym_where] = ACTIONS(5791), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5793), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_switch] = ACTIONS(5791), + [anon_sym_DOT_DOT] = ACTIONS(5791), + [anon_sym_LT_EQ] = ACTIONS(5791), + [anon_sym_GT_EQ] = ACTIONS(5791), + [anon_sym_and] = ACTIONS(5791), + [anon_sym_or] = ACTIONS(5793), + [anon_sym_EQ_EQ] = ACTIONS(5791), + [anon_sym_BANG_EQ] = ACTIONS(5791), + [anon_sym_AMP_AMP] = ACTIONS(5791), + [anon_sym_PIPE_PIPE] = ACTIONS(5791), + [anon_sym_AMP] = ACTIONS(5793), + [sym_op_bitwise_or] = ACTIONS(5793), + [anon_sym_CARET] = ACTIONS(5791), + [sym_op_left_shift] = ACTIONS(5791), + [sym_op_right_shift] = ACTIONS(5793), + [sym_op_unsigned_right_shift] = ACTIONS(5791), + [anon_sym_PLUS] = ACTIONS(5793), + [anon_sym_DASH] = ACTIONS(5793), + [sym_op_divide] = ACTIONS(5793), + [sym_op_modulo] = ACTIONS(5791), + [sym_op_coalescing] = ACTIONS(5791), + [anon_sym_BANG] = ACTIONS(5793), + [anon_sym_PLUS_PLUS] = ACTIONS(5791), + [anon_sym_DASH_DASH] = ACTIONS(5791), + [anon_sym_from] = ACTIONS(5791), + [anon_sym_into] = ACTIONS(5791), + [anon_sym_join] = ACTIONS(5791), + [anon_sym_let] = ACTIONS(5791), + [anon_sym_orderby] = ACTIONS(5791), + [anon_sym_ascending] = ACTIONS(5791), + [anon_sym_descending] = ACTIONS(5791), + [anon_sym_group] = ACTIONS(5791), + [anon_sym_select] = ACTIONS(5791), + [anon_sym_as] = ACTIONS(5793), + [anon_sym_is] = ACTIONS(5791), + [anon_sym_DASH_GT] = ACTIONS(5791), + [anon_sym_with] = ACTIONS(5791), + [sym_grit_metavariable] = ACTIONS(5791), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659516,53 +650970,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5298), [sym_preproc_define] = STATE(5298), [sym_preproc_undef] = STATE(5298), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(7653), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_where] = ACTIONS(2173), - [anon_sym_QMARK] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_PERCENT] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2173), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2173), - [anon_sym_EQ_EQ] = ACTIONS(2173), - [anon_sym_BANG_EQ] = ACTIONS(2173), - [anon_sym_GT_EQ] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2173), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2173), - [anon_sym_and] = ACTIONS(2173), - [anon_sym_or] = ACTIONS(2171), - [anon_sym_AMP_AMP] = ACTIONS(2173), - [anon_sym_PIPE_PIPE] = ACTIONS(2173), - [sym_op_coalescing] = ACTIONS(2173), - [anon_sym_from] = ACTIONS(2173), - [anon_sym_into] = ACTIONS(2173), - [anon_sym_join] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_orderby] = ACTIONS(2173), - [anon_sym_ascending] = ACTIONS(2173), - [anon_sym_descending] = ACTIONS(2173), - [anon_sym_group] = ACTIONS(2173), - [anon_sym_select] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2171), - [anon_sym_is] = ACTIONS(2173), - [anon_sym_DASH_GT] = ACTIONS(2173), - [anon_sym_with] = ACTIONS(2173), - [sym_grit_metavariable] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(5979), + [anon_sym_COMMA] = ACTIONS(5979), + [anon_sym_LPAREN] = ACTIONS(5979), + [anon_sym_LT] = ACTIONS(5981), + [anon_sym_GT] = ACTIONS(5981), + [anon_sym_where] = ACTIONS(5979), + [anon_sym_QMARK] = ACTIONS(5981), + [anon_sym_DOT] = ACTIONS(5981), + [anon_sym_STAR] = ACTIONS(5979), + [anon_sym_switch] = ACTIONS(5979), + [anon_sym_DOT_DOT] = ACTIONS(5979), + [anon_sym_LT_EQ] = ACTIONS(5979), + [anon_sym_GT_EQ] = ACTIONS(5979), + [anon_sym_and] = ACTIONS(5979), + [anon_sym_or] = ACTIONS(5981), + [anon_sym_EQ_EQ] = ACTIONS(5979), + [anon_sym_BANG_EQ] = ACTIONS(5979), + [anon_sym_AMP_AMP] = ACTIONS(5979), + [anon_sym_PIPE_PIPE] = ACTIONS(5979), + [anon_sym_AMP] = ACTIONS(5981), + [sym_op_bitwise_or] = ACTIONS(5981), + [anon_sym_CARET] = ACTIONS(5979), + [sym_op_left_shift] = ACTIONS(5979), + [sym_op_right_shift] = ACTIONS(5981), + [sym_op_unsigned_right_shift] = ACTIONS(5979), + [anon_sym_PLUS] = ACTIONS(5981), + [anon_sym_DASH] = ACTIONS(5981), + [sym_op_divide] = ACTIONS(5981), + [sym_op_modulo] = ACTIONS(5979), + [sym_op_coalescing] = ACTIONS(5979), + [anon_sym_BANG] = ACTIONS(5981), + [anon_sym_PLUS_PLUS] = ACTIONS(5979), + [anon_sym_DASH_DASH] = ACTIONS(5979), + [anon_sym_from] = ACTIONS(5979), + [anon_sym_into] = ACTIONS(5979), + [anon_sym_join] = ACTIONS(5979), + [anon_sym_let] = ACTIONS(5979), + [anon_sym_orderby] = ACTIONS(5979), + [anon_sym_ascending] = ACTIONS(5979), + [anon_sym_descending] = ACTIONS(5979), + [anon_sym_group] = ACTIONS(5979), + [anon_sym_select] = ACTIONS(5979), + [anon_sym_as] = ACTIONS(5981), + [anon_sym_is] = ACTIONS(5979), + [anon_sym_DASH_GT] = ACTIONS(5979), + [anon_sym_with] = ACTIONS(5979), + [sym_grit_metavariable] = ACTIONS(5979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659575,6 +651029,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5299] = { + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3926), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(5299), [sym_preproc_endregion] = STATE(5299), [sym_preproc_line] = STATE(5299), @@ -659584,53 +651056,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5299), [sym_preproc_define] = STATE(5299), [sym_preproc_undef] = STATE(5299), - [anon_sym_LBRACK] = ACTIONS(6237), - [anon_sym_COMMA] = ACTIONS(6237), - [anon_sym_LPAREN] = ACTIONS(6237), - [anon_sym_LT] = ACTIONS(6239), - [anon_sym_GT] = ACTIONS(6239), - [anon_sym_where] = ACTIONS(6237), - [anon_sym_QMARK] = ACTIONS(6239), - [anon_sym_BANG] = ACTIONS(6239), - [anon_sym_PLUS_PLUS] = ACTIONS(6237), - [anon_sym_DASH_DASH] = ACTIONS(6237), - [anon_sym_PLUS] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_PERCENT] = ACTIONS(6237), - [anon_sym_CARET] = ACTIONS(6237), - [anon_sym_PIPE] = ACTIONS(6239), - [anon_sym_AMP] = ACTIONS(6239), - [anon_sym_LT_LT] = ACTIONS(6237), - [anon_sym_GT_GT] = ACTIONS(6239), - [anon_sym_GT_GT_GT] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6237), - [anon_sym_BANG_EQ] = ACTIONS(6237), - [anon_sym_GT_EQ] = ACTIONS(6237), - [anon_sym_LT_EQ] = ACTIONS(6237), - [anon_sym_DOT] = ACTIONS(6239), - [anon_sym_switch] = ACTIONS(6237), - [anon_sym_DOT_DOT] = ACTIONS(6237), - [anon_sym_and] = ACTIONS(6237), - [anon_sym_or] = ACTIONS(6239), - [anon_sym_AMP_AMP] = ACTIONS(6237), - [anon_sym_PIPE_PIPE] = ACTIONS(6237), - [sym_op_coalescing] = ACTIONS(6237), - [anon_sym_from] = ACTIONS(6237), - [anon_sym_into] = ACTIONS(6237), - [anon_sym_join] = ACTIONS(6237), - [anon_sym_let] = ACTIONS(6237), - [anon_sym_orderby] = ACTIONS(6237), - [anon_sym_ascending] = ACTIONS(6237), - [anon_sym_descending] = ACTIONS(6237), - [anon_sym_group] = ACTIONS(6237), - [anon_sym_select] = ACTIONS(6237), - [anon_sym_as] = ACTIONS(6239), - [anon_sym_is] = ACTIONS(6237), - [anon_sym_DASH_GT] = ACTIONS(6237), - [anon_sym_with] = ACTIONS(6237), - [sym_grit_metavariable] = ACTIONS(6237), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(8015), + [anon_sym_ref] = ACTIONS(4375), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_readonly] = ACTIONS(8101), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7532), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659643,6 +651097,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5300] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6335), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7575), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5300), [sym_preproc_endregion] = STATE(5300), [sym_preproc_line] = STATE(5300), @@ -659652,53 +651125,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5300), [sym_preproc_define] = STATE(5300), [sym_preproc_undef] = STATE(5300), - [anon_sym_LBRACK] = ACTIONS(7124), - [anon_sym_COMMA] = ACTIONS(7124), - [anon_sym_LPAREN] = ACTIONS(7124), - [anon_sym_LT] = ACTIONS(7126), - [anon_sym_GT] = ACTIONS(7126), - [anon_sym_where] = ACTIONS(7124), - [anon_sym_QMARK] = ACTIONS(7126), - [anon_sym_BANG] = ACTIONS(7126), - [anon_sym_PLUS_PLUS] = ACTIONS(7124), - [anon_sym_DASH_DASH] = ACTIONS(7124), - [anon_sym_PLUS] = ACTIONS(7126), - [anon_sym_DASH] = ACTIONS(7126), - [anon_sym_STAR] = ACTIONS(7124), - [anon_sym_SLASH] = ACTIONS(7126), - [anon_sym_PERCENT] = ACTIONS(7124), - [anon_sym_CARET] = ACTIONS(7124), - [anon_sym_PIPE] = ACTIONS(7126), - [anon_sym_AMP] = ACTIONS(7126), - [anon_sym_LT_LT] = ACTIONS(7124), - [anon_sym_GT_GT] = ACTIONS(7126), - [anon_sym_GT_GT_GT] = ACTIONS(7124), - [anon_sym_EQ_EQ] = ACTIONS(7124), - [anon_sym_BANG_EQ] = ACTIONS(7124), - [anon_sym_GT_EQ] = ACTIONS(7124), - [anon_sym_LT_EQ] = ACTIONS(7124), - [anon_sym_DOT] = ACTIONS(7126), - [anon_sym_switch] = ACTIONS(7124), - [anon_sym_DOT_DOT] = ACTIONS(7124), - [anon_sym_and] = ACTIONS(7124), - [anon_sym_or] = ACTIONS(7126), - [anon_sym_AMP_AMP] = ACTIONS(7124), - [anon_sym_PIPE_PIPE] = ACTIONS(7124), - [sym_op_coalescing] = ACTIONS(7124), - [anon_sym_from] = ACTIONS(7124), - [anon_sym_into] = ACTIONS(7124), - [anon_sym_join] = ACTIONS(7124), - [anon_sym_let] = ACTIONS(7124), - [anon_sym_orderby] = ACTIONS(7124), - [anon_sym_ascending] = ACTIONS(7124), - [anon_sym_descending] = ACTIONS(7124), - [anon_sym_group] = ACTIONS(7124), - [anon_sym_select] = ACTIONS(7124), - [anon_sym_as] = ACTIONS(7126), - [anon_sym_is] = ACTIONS(7124), - [anon_sym_DASH_GT] = ACTIONS(7124), - [anon_sym_with] = ACTIONS(7124), - [sym_grit_metavariable] = ACTIONS(7124), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3900), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(7834), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659711,6 +651165,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5301] = { + [sym__name] = STATE(2740), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2712), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2713), + [sym_type] = STATE(2786), + [sym_implicit_type] = STATE(2708), + [sym_array_type] = STATE(2704), + [sym__array_base_type] = STATE(7506), + [sym_nullable_type] = STATE(2703), + [sym_pointer_type] = STATE(2703), + [sym__pointer_base_type] = STATE(7811), + [sym_function_pointer_type] = STATE(2703), + [sym_ref_type] = STATE(2708), + [sym_scoped_type] = STATE(2708), + [sym_tuple_type] = STATE(2702), + [sym_identifier] = STATE(2647), + [sym__reserved_identifier] = STATE(2678), [sym_preproc_region] = STATE(5301), [sym_preproc_endregion] = STATE(5301), [sym_preproc_line] = STATE(5301), @@ -659720,53 +651192,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5301), [sym_preproc_define] = STATE(5301), [sym_preproc_undef] = STATE(5301), - [anon_sym_LBRACK] = ACTIONS(7124), - [anon_sym_COMMA] = ACTIONS(7124), - [anon_sym_LPAREN] = ACTIONS(7124), - [anon_sym_LT] = ACTIONS(7126), - [anon_sym_GT] = ACTIONS(7126), - [anon_sym_where] = ACTIONS(7124), - [anon_sym_QMARK] = ACTIONS(7126), - [anon_sym_BANG] = ACTIONS(7126), - [anon_sym_PLUS_PLUS] = ACTIONS(7124), - [anon_sym_DASH_DASH] = ACTIONS(7124), - [anon_sym_PLUS] = ACTIONS(7126), - [anon_sym_DASH] = ACTIONS(7126), - [anon_sym_STAR] = ACTIONS(7124), - [anon_sym_SLASH] = ACTIONS(7126), - [anon_sym_PERCENT] = ACTIONS(7124), - [anon_sym_CARET] = ACTIONS(7124), - [anon_sym_PIPE] = ACTIONS(7126), - [anon_sym_AMP] = ACTIONS(7126), - [anon_sym_LT_LT] = ACTIONS(7124), - [anon_sym_GT_GT] = ACTIONS(7126), - [anon_sym_GT_GT_GT] = ACTIONS(7124), - [anon_sym_EQ_EQ] = ACTIONS(7124), - [anon_sym_BANG_EQ] = ACTIONS(7124), - [anon_sym_GT_EQ] = ACTIONS(7124), - [anon_sym_LT_EQ] = ACTIONS(7124), - [anon_sym_DOT] = ACTIONS(7126), - [anon_sym_switch] = ACTIONS(7124), - [anon_sym_DOT_DOT] = ACTIONS(7124), - [anon_sym_and] = ACTIONS(7124), - [anon_sym_or] = ACTIONS(7126), - [anon_sym_AMP_AMP] = ACTIONS(7124), - [anon_sym_PIPE_PIPE] = ACTIONS(7124), - [sym_op_coalescing] = ACTIONS(7124), - [anon_sym_from] = ACTIONS(7124), - [anon_sym_into] = ACTIONS(7124), - [anon_sym_join] = ACTIONS(7124), - [anon_sym_let] = ACTIONS(7124), - [anon_sym_orderby] = ACTIONS(7124), - [anon_sym_ascending] = ACTIONS(7124), - [anon_sym_descending] = ACTIONS(7124), - [anon_sym_group] = ACTIONS(7124), - [anon_sym_select] = ACTIONS(7124), - [anon_sym_as] = ACTIONS(7126), - [anon_sym_is] = ACTIONS(7124), - [anon_sym_DASH_GT] = ACTIONS(7124), - [anon_sym_with] = ACTIONS(7124), - [sym_grit_metavariable] = ACTIONS(7124), + [sym__identifier_token] = ACTIONS(8103), + [anon_sym_alias] = ACTIONS(8105), + [anon_sym_global] = ACTIONS(8105), + [anon_sym_LPAREN] = ACTIONS(8107), + [anon_sym_ref] = ACTIONS(3938), + [anon_sym_delegate] = ACTIONS(8109), + [anon_sym_readonly] = ACTIONS(3081), + [anon_sym_file] = ACTIONS(8105), + [anon_sym_where] = ACTIONS(8105), + [anon_sym_notnull] = ACTIONS(8105), + [anon_sym_unmanaged] = ACTIONS(8105), + [anon_sym_scoped] = ACTIONS(8111), + [anon_sym_var] = ACTIONS(8113), + [sym_predefined_type] = ACTIONS(8115), + [anon_sym_yield] = ACTIONS(8105), + [anon_sym_when] = ACTIONS(8105), + [anon_sym_from] = ACTIONS(8105), + [anon_sym_into] = ACTIONS(8105), + [anon_sym_join] = ACTIONS(8105), + [anon_sym_on] = ACTIONS(8105), + [anon_sym_equals] = ACTIONS(8105), + [anon_sym_let] = ACTIONS(8105), + [anon_sym_orderby] = ACTIONS(8105), + [anon_sym_ascending] = ACTIONS(8105), + [anon_sym_descending] = ACTIONS(8105), + [anon_sym_group] = ACTIONS(8105), + [anon_sym_by] = ACTIONS(8105), + [anon_sym_select] = ACTIONS(8105), + [sym_grit_metavariable] = ACTIONS(8117), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659788,53 +651242,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5302), [sym_preproc_define] = STATE(5302), [sym_preproc_undef] = STATE(5302), - [anon_sym_LBRACK] = ACTIONS(7120), - [anon_sym_COMMA] = ACTIONS(7120), - [anon_sym_LPAREN] = ACTIONS(7120), - [anon_sym_LT] = ACTIONS(7122), - [anon_sym_GT] = ACTIONS(7122), - [anon_sym_where] = ACTIONS(7120), - [anon_sym_QMARK] = ACTIONS(7122), - [anon_sym_BANG] = ACTIONS(7122), - [anon_sym_PLUS_PLUS] = ACTIONS(7120), - [anon_sym_DASH_DASH] = ACTIONS(7120), - [anon_sym_PLUS] = ACTIONS(7122), - [anon_sym_DASH] = ACTIONS(7122), - [anon_sym_STAR] = ACTIONS(7120), - [anon_sym_SLASH] = ACTIONS(7122), - [anon_sym_PERCENT] = ACTIONS(7120), - [anon_sym_CARET] = ACTIONS(7120), - [anon_sym_PIPE] = ACTIONS(7122), - [anon_sym_AMP] = ACTIONS(7122), - [anon_sym_LT_LT] = ACTIONS(7120), - [anon_sym_GT_GT] = ACTIONS(7122), - [anon_sym_GT_GT_GT] = ACTIONS(7120), - [anon_sym_EQ_EQ] = ACTIONS(7120), - [anon_sym_BANG_EQ] = ACTIONS(7120), - [anon_sym_GT_EQ] = ACTIONS(7120), - [anon_sym_LT_EQ] = ACTIONS(7120), - [anon_sym_DOT] = ACTIONS(7122), - [anon_sym_switch] = ACTIONS(7120), - [anon_sym_DOT_DOT] = ACTIONS(7120), - [anon_sym_and] = ACTIONS(7120), - [anon_sym_or] = ACTIONS(7122), - [anon_sym_AMP_AMP] = ACTIONS(7120), - [anon_sym_PIPE_PIPE] = ACTIONS(7120), - [sym_op_coalescing] = ACTIONS(7120), - [anon_sym_from] = ACTIONS(7120), - [anon_sym_into] = ACTIONS(7120), - [anon_sym_join] = ACTIONS(7120), - [anon_sym_let] = ACTIONS(7120), - [anon_sym_orderby] = ACTIONS(7120), - [anon_sym_ascending] = ACTIONS(7120), - [anon_sym_descending] = ACTIONS(7120), - [anon_sym_group] = ACTIONS(7120), - [anon_sym_select] = ACTIONS(7120), - [anon_sym_as] = ACTIONS(7122), - [anon_sym_is] = ACTIONS(7120), - [anon_sym_DASH_GT] = ACTIONS(7120), - [anon_sym_with] = ACTIONS(7120), - [sym_grit_metavariable] = ACTIONS(7120), + [anon_sym_LBRACK] = ACTIONS(6875), + [anon_sym_COMMA] = ACTIONS(6875), + [anon_sym_LPAREN] = ACTIONS(6875), + [anon_sym_LT] = ACTIONS(6877), + [anon_sym_GT] = ACTIONS(6877), + [anon_sym_where] = ACTIONS(6875), + [anon_sym_QMARK] = ACTIONS(6877), + [anon_sym_DOT] = ACTIONS(6877), + [anon_sym_STAR] = ACTIONS(6875), + [anon_sym_switch] = ACTIONS(6875), + [anon_sym_DOT_DOT] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6875), + [anon_sym_GT_EQ] = ACTIONS(6875), + [anon_sym_and] = ACTIONS(6875), + [anon_sym_or] = ACTIONS(6877), + [anon_sym_EQ_EQ] = ACTIONS(6875), + [anon_sym_BANG_EQ] = ACTIONS(6875), + [anon_sym_AMP_AMP] = ACTIONS(6875), + [anon_sym_PIPE_PIPE] = ACTIONS(6875), + [anon_sym_AMP] = ACTIONS(6877), + [sym_op_bitwise_or] = ACTIONS(6877), + [anon_sym_CARET] = ACTIONS(6875), + [sym_op_left_shift] = ACTIONS(6875), + [sym_op_right_shift] = ACTIONS(6877), + [sym_op_unsigned_right_shift] = ACTIONS(6875), + [anon_sym_PLUS] = ACTIONS(6877), + [anon_sym_DASH] = ACTIONS(6877), + [sym_op_divide] = ACTIONS(6877), + [sym_op_modulo] = ACTIONS(6875), + [sym_op_coalescing] = ACTIONS(6875), + [anon_sym_BANG] = ACTIONS(6877), + [anon_sym_PLUS_PLUS] = ACTIONS(6875), + [anon_sym_DASH_DASH] = ACTIONS(6875), + [anon_sym_from] = ACTIONS(6875), + [anon_sym_into] = ACTIONS(6875), + [anon_sym_join] = ACTIONS(6875), + [anon_sym_let] = ACTIONS(6875), + [anon_sym_orderby] = ACTIONS(6875), + [anon_sym_ascending] = ACTIONS(6875), + [anon_sym_descending] = ACTIONS(6875), + [anon_sym_group] = ACTIONS(6875), + [anon_sym_select] = ACTIONS(6875), + [anon_sym_as] = ACTIONS(6877), + [anon_sym_is] = ACTIONS(6875), + [anon_sym_DASH_GT] = ACTIONS(6875), + [anon_sym_with] = ACTIONS(6875), + [sym_grit_metavariable] = ACTIONS(6875), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659847,6 +651301,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5303] = { + [sym_variable_declaration] = STATE(8151), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6216), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5303), [sym_preproc_endregion] = STATE(5303), [sym_preproc_line] = STATE(5303), @@ -659856,53 +651329,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5303), [sym_preproc_define] = STATE(5303), [sym_preproc_undef] = STATE(5303), - [sym__identifier_token] = ACTIONS(6573), - [anon_sym_extern] = ACTIONS(6573), - [anon_sym_alias] = ACTIONS(6573), - [anon_sym_global] = ACTIONS(6573), - [anon_sym_unsafe] = ACTIONS(6573), - [anon_sym_static] = ACTIONS(6573), - [anon_sym_LPAREN] = ACTIONS(6575), - [anon_sym_ref] = ACTIONS(6573), - [anon_sym_delegate] = ACTIONS(6573), - [anon_sym_public] = ACTIONS(6573), - [anon_sym_private] = ACTIONS(6573), - [anon_sym_readonly] = ACTIONS(6573), - [anon_sym_abstract] = ACTIONS(6573), - [anon_sym_async] = ACTIONS(6573), - [anon_sym_const] = ACTIONS(6573), - [anon_sym_file] = ACTIONS(6573), - [anon_sym_fixed] = ACTIONS(6573), - [anon_sym_internal] = ACTIONS(6573), - [anon_sym_new] = ACTIONS(6573), - [anon_sym_override] = ACTIONS(6573), - [anon_sym_partial] = ACTIONS(6573), - [anon_sym_protected] = ACTIONS(6573), - [anon_sym_required] = ACTIONS(6573), - [anon_sym_sealed] = ACTIONS(6573), - [anon_sym_virtual] = ACTIONS(6573), - [anon_sym_volatile] = ACTIONS(6573), - [anon_sym_where] = ACTIONS(6573), - [anon_sym_notnull] = ACTIONS(6573), - [anon_sym_unmanaged] = ACTIONS(6573), - [anon_sym_scoped] = ACTIONS(6573), - [anon_sym_var] = ACTIONS(6573), - [sym_predefined_type] = ACTIONS(6573), - [anon_sym_yield] = ACTIONS(6573), - [anon_sym_when] = ACTIONS(6573), - [anon_sym_from] = ACTIONS(6573), - [anon_sym_into] = ACTIONS(6573), - [anon_sym_join] = ACTIONS(6573), - [anon_sym_on] = ACTIONS(6573), - [anon_sym_equals] = ACTIONS(6573), - [anon_sym_let] = ACTIONS(6573), - [anon_sym_orderby] = ACTIONS(6573), - [anon_sym_ascending] = ACTIONS(6573), - [anon_sym_descending] = ACTIONS(6573), - [anon_sym_group] = ACTIONS(6573), - [anon_sym_by] = ACTIONS(6573), - [anon_sym_select] = ACTIONS(6573), - [sym_grit_metavariable] = ACTIONS(6575), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659915,24 +651369,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5304] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(3789), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), [sym_preproc_region] = STATE(5304), [sym_preproc_endregion] = STATE(5304), [sym_preproc_line] = STATE(5304), @@ -659942,35 +651378,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5304), [sym_preproc_define] = STATE(5304), [sym_preproc_undef] = STATE(5304), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4511), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_readonly] = ACTIONS(7655), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7423), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_LPAREN] = ACTIONS(5805), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_where] = ACTIONS(5805), + [anon_sym_QMARK] = ACTIONS(5807), + [anon_sym_DOT] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5805), + [anon_sym_switch] = ACTIONS(5805), + [anon_sym_DOT_DOT] = ACTIONS(5805), + [anon_sym_LT_EQ] = ACTIONS(5805), + [anon_sym_GT_EQ] = ACTIONS(5805), + [anon_sym_and] = ACTIONS(5805), + [anon_sym_or] = ACTIONS(5807), + [anon_sym_EQ_EQ] = ACTIONS(5805), + [anon_sym_BANG_EQ] = ACTIONS(5805), + [anon_sym_AMP_AMP] = ACTIONS(5805), + [anon_sym_PIPE_PIPE] = ACTIONS(5805), + [anon_sym_AMP] = ACTIONS(5807), + [sym_op_bitwise_or] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5805), + [sym_op_left_shift] = ACTIONS(5805), + [sym_op_right_shift] = ACTIONS(5807), + [sym_op_unsigned_right_shift] = ACTIONS(5805), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_DASH] = ACTIONS(5807), + [sym_op_divide] = ACTIONS(5807), + [sym_op_modulo] = ACTIONS(5805), + [sym_op_coalescing] = ACTIONS(5805), + [anon_sym_BANG] = ACTIONS(5807), + [anon_sym_PLUS_PLUS] = ACTIONS(5805), + [anon_sym_DASH_DASH] = ACTIONS(5805), + [anon_sym_from] = ACTIONS(5805), + [anon_sym_into] = ACTIONS(5805), + [anon_sym_join] = 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_select] = ACTIONS(5805), + [anon_sym_as] = ACTIONS(5807), + [anon_sym_is] = ACTIONS(5805), + [anon_sym_DASH_GT] = ACTIONS(5805), + [anon_sym_with] = ACTIONS(5805), + [sym_grit_metavariable] = ACTIONS(5805), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -659983,6 +651437,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5305] = { + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4062), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5305), [sym_preproc_endregion] = STATE(5305), [sym_preproc_line] = STATE(5305), @@ -659992,53 +651464,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5305), [sym_preproc_define] = STATE(5305), [sym_preproc_undef] = STATE(5305), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5686), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = 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(5684), - [anon_sym_with] = ACTIONS(5684), - [sym_grit_metavariable] = ACTIONS(5684), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4468), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_readonly] = ACTIONS(8119), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7608), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -660060,53 +651514,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5306), [sym_preproc_define] = STATE(5306), [sym_preproc_undef] = STATE(5306), - [anon_sym_LBRACK] = ACTIONS(6401), - [anon_sym_COMMA] = ACTIONS(6401), - [anon_sym_LPAREN] = ACTIONS(6401), - [anon_sym_LT] = ACTIONS(6403), - [anon_sym_GT] = ACTIONS(6403), - [anon_sym_where] = ACTIONS(6401), - [anon_sym_QMARK] = ACTIONS(6403), - [anon_sym_BANG] = ACTIONS(6403), - [anon_sym_PLUS_PLUS] = ACTIONS(6401), - [anon_sym_DASH_DASH] = ACTIONS(6401), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6401), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_PERCENT] = ACTIONS(6401), - [anon_sym_CARET] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6403), - [anon_sym_AMP] = ACTIONS(6403), - [anon_sym_LT_LT] = ACTIONS(6401), - [anon_sym_GT_GT] = ACTIONS(6403), - [anon_sym_GT_GT_GT] = ACTIONS(6401), - [anon_sym_EQ_EQ] = ACTIONS(6401), - [anon_sym_BANG_EQ] = ACTIONS(6401), - [anon_sym_GT_EQ] = ACTIONS(6401), - [anon_sym_LT_EQ] = ACTIONS(6401), - [anon_sym_DOT] = ACTIONS(6403), - [anon_sym_switch] = ACTIONS(6401), - [anon_sym_DOT_DOT] = ACTIONS(6401), - [anon_sym_and] = ACTIONS(6401), - [anon_sym_or] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(6401), - [anon_sym_PIPE_PIPE] = ACTIONS(6401), - [sym_op_coalescing] = ACTIONS(6401), - [anon_sym_from] = ACTIONS(6401), - [anon_sym_into] = ACTIONS(6401), - [anon_sym_join] = ACTIONS(6401), - [anon_sym_let] = ACTIONS(6401), - [anon_sym_orderby] = ACTIONS(6401), - [anon_sym_ascending] = ACTIONS(6401), - [anon_sym_descending] = ACTIONS(6401), - [anon_sym_group] = ACTIONS(6401), - [anon_sym_select] = ACTIONS(6401), - [anon_sym_as] = ACTIONS(6403), - [anon_sym_is] = ACTIONS(6401), - [anon_sym_DASH_GT] = ACTIONS(6401), - [anon_sym_with] = ACTIONS(6401), - [sym_grit_metavariable] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6875), + [anon_sym_COMMA] = ACTIONS(6875), + [anon_sym_LPAREN] = ACTIONS(6875), + [anon_sym_LT] = ACTIONS(6877), + [anon_sym_GT] = ACTIONS(6877), + [anon_sym_where] = ACTIONS(6875), + [anon_sym_QMARK] = ACTIONS(6877), + [anon_sym_DOT] = ACTIONS(6877), + [anon_sym_STAR] = ACTIONS(6875), + [anon_sym_switch] = ACTIONS(6875), + [anon_sym_DOT_DOT] = ACTIONS(6875), + [anon_sym_LT_EQ] = ACTIONS(6875), + [anon_sym_GT_EQ] = ACTIONS(6875), + [anon_sym_and] = ACTIONS(6875), + [anon_sym_or] = ACTIONS(6877), + [anon_sym_EQ_EQ] = ACTIONS(6875), + [anon_sym_BANG_EQ] = ACTIONS(6875), + [anon_sym_AMP_AMP] = ACTIONS(6875), + [anon_sym_PIPE_PIPE] = ACTIONS(6875), + [anon_sym_AMP] = ACTIONS(6877), + [sym_op_bitwise_or] = ACTIONS(6877), + [anon_sym_CARET] = ACTIONS(6875), + [sym_op_left_shift] = ACTIONS(6875), + [sym_op_right_shift] = ACTIONS(6877), + [sym_op_unsigned_right_shift] = ACTIONS(6875), + [anon_sym_PLUS] = ACTIONS(6877), + [anon_sym_DASH] = ACTIONS(6877), + [sym_op_divide] = ACTIONS(6877), + [sym_op_modulo] = ACTIONS(6875), + [sym_op_coalescing] = ACTIONS(6875), + [anon_sym_BANG] = ACTIONS(6877), + [anon_sym_PLUS_PLUS] = ACTIONS(6875), + [anon_sym_DASH_DASH] = ACTIONS(6875), + [anon_sym_from] = ACTIONS(6875), + [anon_sym_into] = ACTIONS(6875), + [anon_sym_join] = ACTIONS(6875), + [anon_sym_let] = ACTIONS(6875), + [anon_sym_orderby] = ACTIONS(6875), + [anon_sym_ascending] = ACTIONS(6875), + [anon_sym_descending] = ACTIONS(6875), + [anon_sym_group] = ACTIONS(6875), + [anon_sym_select] = ACTIONS(6875), + [anon_sym_as] = ACTIONS(6877), + [anon_sym_is] = ACTIONS(6875), + [anon_sym_DASH_GT] = ACTIONS(6875), + [anon_sym_with] = ACTIONS(6875), + [sym_grit_metavariable] = ACTIONS(6875), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -660119,24 +651573,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5307] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(3789), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym_variable_declaration] = STATE(7770), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6002), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5307), [sym_preproc_endregion] = STATE(5307), [sym_preproc_line] = STATE(5307), @@ -660146,35 +651601,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5307), [sym_preproc_define] = STATE(5307), [sym_preproc_undef] = STATE(5307), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_readonly] = ACTIONS(7657), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(4373), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -660187,6 +651641,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5308] = { + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4062), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5308), [sym_preproc_endregion] = STATE(5308), [sym_preproc_line] = STATE(5308), @@ -660196,53 +651668,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5308), [sym_preproc_define] = STATE(5308), [sym_preproc_undef] = STATE(5308), - [anon_sym_LBRACK] = ACTIONS(6351), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_LPAREN] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_where] = ACTIONS(6351), - [anon_sym_QMARK] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PLUS_PLUS] = ACTIONS(6351), - [anon_sym_DASH_DASH] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6353), - [anon_sym_DASH] = ACTIONS(6353), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6353), - [anon_sym_PERCENT] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_AMP] = ACTIONS(6353), - [anon_sym_LT_LT] = ACTIONS(6351), - [anon_sym_GT_GT] = ACTIONS(6353), - [anon_sym_GT_GT_GT] = ACTIONS(6351), - [anon_sym_EQ_EQ] = ACTIONS(6351), - [anon_sym_BANG_EQ] = ACTIONS(6351), - [anon_sym_GT_EQ] = ACTIONS(6351), - [anon_sym_LT_EQ] = ACTIONS(6351), - [anon_sym_DOT] = ACTIONS(6353), - [anon_sym_switch] = ACTIONS(6351), - [anon_sym_DOT_DOT] = ACTIONS(6351), - [anon_sym_and] = ACTIONS(6351), - [anon_sym_or] = ACTIONS(6353), - [anon_sym_AMP_AMP] = ACTIONS(6351), - [anon_sym_PIPE_PIPE] = ACTIONS(6351), - [sym_op_coalescing] = ACTIONS(6351), - [anon_sym_from] = ACTIONS(6351), - [anon_sym_into] = ACTIONS(6351), - [anon_sym_join] = ACTIONS(6351), - [anon_sym_let] = ACTIONS(6351), - [anon_sym_orderby] = ACTIONS(6351), - [anon_sym_ascending] = ACTIONS(6351), - [anon_sym_descending] = ACTIONS(6351), - [anon_sym_group] = ACTIONS(6351), - [anon_sym_select] = ACTIONS(6351), - [anon_sym_as] = ACTIONS(6353), - [anon_sym_is] = ACTIONS(6351), - [anon_sym_DASH_GT] = ACTIONS(6351), - [anon_sym_with] = ACTIONS(6351), - [sym_grit_metavariable] = ACTIONS(6351), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4516), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_readonly] = ACTIONS(8121), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7600), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -660255,24 +651709,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5309] = { - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3755), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), [sym_preproc_region] = STATE(5309), [sym_preproc_endregion] = STATE(5309), [sym_preproc_line] = STATE(5309), @@ -660282,35 +651718,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5309), [sym_preproc_define] = STATE(5309), [sym_preproc_undef] = STATE(5309), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4660), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_readonly] = ACTIONS(7659), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7386), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(5761), + [anon_sym_COMMA] = ACTIONS(5761), + [anon_sym_LPAREN] = ACTIONS(5761), + [anon_sym_LT] = ACTIONS(5763), + [anon_sym_GT] = ACTIONS(5763), + [anon_sym_where] = ACTIONS(5761), + [anon_sym_QMARK] = ACTIONS(5763), + [anon_sym_DOT] = ACTIONS(5763), + [anon_sym_STAR] = ACTIONS(5761), + [anon_sym_switch] = ACTIONS(5761), + [anon_sym_DOT_DOT] = ACTIONS(5761), + [anon_sym_LT_EQ] = ACTIONS(5761), + [anon_sym_GT_EQ] = ACTIONS(5761), + [anon_sym_and] = ACTIONS(5761), + [anon_sym_or] = ACTIONS(5763), + [anon_sym_EQ_EQ] = ACTIONS(5761), + [anon_sym_BANG_EQ] = ACTIONS(5761), + [anon_sym_AMP_AMP] = ACTIONS(5761), + [anon_sym_PIPE_PIPE] = ACTIONS(5761), + [anon_sym_AMP] = ACTIONS(5763), + [sym_op_bitwise_or] = ACTIONS(5763), + [anon_sym_CARET] = ACTIONS(5761), + [sym_op_left_shift] = ACTIONS(5761), + [sym_op_right_shift] = ACTIONS(5763), + [sym_op_unsigned_right_shift] = ACTIONS(5761), + [anon_sym_PLUS] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5763), + [sym_op_divide] = ACTIONS(5763), + [sym_op_modulo] = ACTIONS(5761), + [sym_op_coalescing] = ACTIONS(5761), + [anon_sym_BANG] = ACTIONS(5763), + [anon_sym_PLUS_PLUS] = ACTIONS(5761), + [anon_sym_DASH_DASH] = ACTIONS(5761), + [anon_sym_from] = ACTIONS(5761), + [anon_sym_into] = ACTIONS(5761), + [anon_sym_join] = ACTIONS(5761), + [anon_sym_let] = ACTIONS(5761), + [anon_sym_orderby] = ACTIONS(5761), + [anon_sym_ascending] = ACTIONS(5761), + [anon_sym_descending] = ACTIONS(5761), + [anon_sym_group] = ACTIONS(5761), + [anon_sym_select] = ACTIONS(5761), + [anon_sym_as] = ACTIONS(5763), + [anon_sym_is] = ACTIONS(5761), + [anon_sym_DASH_GT] = ACTIONS(5761), + [anon_sym_with] = ACTIONS(5761), + [sym_grit_metavariable] = ACTIONS(5761), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -660332,53 +651786,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5310), [sym_preproc_define] = STATE(5310), [sym_preproc_undef] = STATE(5310), - [anon_sym_LBRACK] = ACTIONS(6309), - [anon_sym_COMMA] = ACTIONS(6309), - [anon_sym_LPAREN] = ACTIONS(6309), - [anon_sym_LT] = ACTIONS(6311), - [anon_sym_GT] = ACTIONS(6311), - [anon_sym_where] = ACTIONS(6309), - [anon_sym_QMARK] = ACTIONS(6311), - [anon_sym_BANG] = ACTIONS(6311), - [anon_sym_PLUS_PLUS] = ACTIONS(6309), - [anon_sym_DASH_DASH] = ACTIONS(6309), - [anon_sym_PLUS] = ACTIONS(6311), - [anon_sym_DASH] = ACTIONS(6311), - [anon_sym_STAR] = ACTIONS(6309), - [anon_sym_SLASH] = ACTIONS(6311), - [anon_sym_PERCENT] = ACTIONS(6309), - [anon_sym_CARET] = ACTIONS(6309), - [anon_sym_PIPE] = ACTIONS(6311), - [anon_sym_AMP] = ACTIONS(6311), - [anon_sym_LT_LT] = ACTIONS(6309), - [anon_sym_GT_GT] = ACTIONS(6311), - [anon_sym_GT_GT_GT] = ACTIONS(6309), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_GT_EQ] = ACTIONS(6309), - [anon_sym_LT_EQ] = ACTIONS(6309), - [anon_sym_DOT] = ACTIONS(6311), - [anon_sym_switch] = ACTIONS(6309), - [anon_sym_DOT_DOT] = ACTIONS(6309), - [anon_sym_and] = ACTIONS(6309), - [anon_sym_or] = ACTIONS(6311), - [anon_sym_AMP_AMP] = ACTIONS(6309), - [anon_sym_PIPE_PIPE] = ACTIONS(6309), - [sym_op_coalescing] = ACTIONS(6309), - [anon_sym_from] = ACTIONS(6309), - [anon_sym_into] = ACTIONS(6309), - [anon_sym_join] = ACTIONS(6309), - [anon_sym_let] = ACTIONS(6309), - [anon_sym_orderby] = ACTIONS(6309), - [anon_sym_ascending] = ACTIONS(6309), - [anon_sym_descending] = ACTIONS(6309), - [anon_sym_group] = ACTIONS(6309), - [anon_sym_select] = ACTIONS(6309), - [anon_sym_as] = ACTIONS(6311), - [anon_sym_is] = ACTIONS(6309), - [anon_sym_DASH_GT] = ACTIONS(6309), - [anon_sym_with] = ACTIONS(6309), - [sym_grit_metavariable] = ACTIONS(6309), + [anon_sym_LBRACK] = ACTIONS(6969), + [anon_sym_COMMA] = ACTIONS(6969), + [anon_sym_LPAREN] = ACTIONS(6969), + [anon_sym_LT] = ACTIONS(6971), + [anon_sym_GT] = ACTIONS(6971), + [anon_sym_where] = ACTIONS(6969), + [anon_sym_QMARK] = ACTIONS(6971), + [anon_sym_DOT] = ACTIONS(6971), + [anon_sym_STAR] = ACTIONS(6969), + [anon_sym_switch] = ACTIONS(6969), + [anon_sym_DOT_DOT] = ACTIONS(6969), + [anon_sym_LT_EQ] = ACTIONS(6969), + [anon_sym_GT_EQ] = ACTIONS(6969), + [anon_sym_and] = ACTIONS(6969), + [anon_sym_or] = ACTIONS(6971), + [anon_sym_EQ_EQ] = ACTIONS(6969), + [anon_sym_BANG_EQ] = ACTIONS(6969), + [anon_sym_AMP_AMP] = ACTIONS(6969), + [anon_sym_PIPE_PIPE] = ACTIONS(6969), + [anon_sym_AMP] = ACTIONS(6971), + [sym_op_bitwise_or] = ACTIONS(6971), + [anon_sym_CARET] = ACTIONS(6969), + [sym_op_left_shift] = ACTIONS(6969), + [sym_op_right_shift] = ACTIONS(6971), + [sym_op_unsigned_right_shift] = ACTIONS(6969), + [anon_sym_PLUS] = ACTIONS(6971), + [anon_sym_DASH] = ACTIONS(6971), + [sym_op_divide] = ACTIONS(6971), + [sym_op_modulo] = ACTIONS(6969), + [sym_op_coalescing] = ACTIONS(6969), + [anon_sym_BANG] = ACTIONS(6971), + [anon_sym_PLUS_PLUS] = ACTIONS(6969), + [anon_sym_DASH_DASH] = ACTIONS(6969), + [anon_sym_from] = ACTIONS(6969), + [anon_sym_into] = ACTIONS(6969), + [anon_sym_join] = ACTIONS(6969), + [anon_sym_let] = ACTIONS(6969), + [anon_sym_orderby] = ACTIONS(6969), + [anon_sym_ascending] = ACTIONS(6969), + [anon_sym_descending] = ACTIONS(6969), + [anon_sym_group] = ACTIONS(6969), + [anon_sym_select] = ACTIONS(6969), + [anon_sym_as] = ACTIONS(6971), + [anon_sym_is] = ACTIONS(6969), + [anon_sym_DASH_GT] = ACTIONS(6969), + [anon_sym_with] = ACTIONS(6969), + [sym_grit_metavariable] = ACTIONS(6969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -660391,6 +651845,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5311] = { + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3290), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5311), [sym_preproc_endregion] = STATE(5311), [sym_preproc_line] = STATE(5311), @@ -660400,6 +651872,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5311), [sym_preproc_define] = STATE(5311), [sym_preproc_undef] = STATE(5311), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4566), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_readonly] = ACTIONS(8123), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7378), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5312] = { + [sym_preproc_region] = STATE(5312), + [sym_preproc_endregion] = STATE(5312), + [sym_preproc_line] = STATE(5312), + [sym_preproc_pragma] = STATE(5312), + [sym_preproc_nullable] = STATE(5312), + [sym_preproc_error] = STATE(5312), + [sym_preproc_warning] = STATE(5312), + [sym_preproc_define] = STATE(5312), + [sym_preproc_undef] = STATE(5312), [anon_sym_LBRACK] = ACTIONS(5995), [anon_sym_COMMA] = ACTIONS(5995), [anon_sym_LPAREN] = ACTIONS(5995), @@ -660407,32 +651929,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(5997), [anon_sym_where] = ACTIONS(5995), [anon_sym_QMARK] = ACTIONS(5997), - [anon_sym_BANG] = ACTIONS(5997), - [anon_sym_PLUS_PLUS] = ACTIONS(5995), - [anon_sym_DASH_DASH] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(5997), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5997), - [anon_sym_PERCENT] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), - [anon_sym_LT_LT] = ACTIONS(5995), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_GT_GT_GT] = ACTIONS(5995), - [anon_sym_EQ_EQ] = ACTIONS(5995), - [anon_sym_BANG_EQ] = ACTIONS(5995), - [anon_sym_GT_EQ] = ACTIONS(5995), - [anon_sym_LT_EQ] = ACTIONS(5995), [anon_sym_DOT] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5995), [anon_sym_switch] = ACTIONS(5995), [anon_sym_DOT_DOT] = ACTIONS(5995), + [anon_sym_LT_EQ] = ACTIONS(5995), + [anon_sym_GT_EQ] = ACTIONS(5995), [anon_sym_and] = ACTIONS(5995), [anon_sym_or] = ACTIONS(5997), + [anon_sym_EQ_EQ] = ACTIONS(5995), + [anon_sym_BANG_EQ] = ACTIONS(5995), [anon_sym_AMP_AMP] = ACTIONS(5995), [anon_sym_PIPE_PIPE] = ACTIONS(5995), + [anon_sym_AMP] = ACTIONS(5997), + [sym_op_bitwise_or] = ACTIONS(5997), + [anon_sym_CARET] = ACTIONS(5995), + [sym_op_left_shift] = ACTIONS(5995), + [sym_op_right_shift] = ACTIONS(5997), + [sym_op_unsigned_right_shift] = ACTIONS(5995), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [sym_op_divide] = ACTIONS(5997), + [sym_op_modulo] = ACTIONS(5995), [sym_op_coalescing] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5997), + [anon_sym_PLUS_PLUS] = ACTIONS(5995), + [anon_sym_DASH_DASH] = ACTIONS(5995), [anon_sym_from] = ACTIONS(5995), [anon_sym_into] = ACTIONS(5995), [anon_sym_join] = ACTIONS(5995), @@ -660458,75 +651980,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5312] = { - [sym_preproc_region] = STATE(5312), - [sym_preproc_endregion] = STATE(5312), - [sym_preproc_line] = STATE(5312), - [sym_preproc_pragma] = STATE(5312), - [sym_preproc_nullable] = STATE(5312), - [sym_preproc_error] = STATE(5312), - [sym_preproc_warning] = STATE(5312), - [sym_preproc_define] = STATE(5312), - [sym_preproc_undef] = STATE(5312), - [anon_sym_LBRACK] = ACTIONS(6148), - [anon_sym_COMMA] = ACTIONS(6148), - [anon_sym_LPAREN] = ACTIONS(6148), - [anon_sym_LT] = ACTIONS(6150), - [anon_sym_GT] = ACTIONS(6150), - [anon_sym_where] = ACTIONS(6148), - [anon_sym_QMARK] = ACTIONS(6150), - [anon_sym_BANG] = ACTIONS(6150), - [anon_sym_PLUS_PLUS] = ACTIONS(6148), - [anon_sym_DASH_DASH] = ACTIONS(6148), - [anon_sym_PLUS] = ACTIONS(6150), - [anon_sym_DASH] = ACTIONS(6150), - [anon_sym_STAR] = ACTIONS(6148), - [anon_sym_SLASH] = ACTIONS(6150), - [anon_sym_PERCENT] = ACTIONS(6148), - [anon_sym_CARET] = ACTIONS(6148), - [anon_sym_PIPE] = ACTIONS(6150), - [anon_sym_AMP] = ACTIONS(6150), - [anon_sym_LT_LT] = ACTIONS(6148), - [anon_sym_GT_GT] = ACTIONS(6150), - [anon_sym_GT_GT_GT] = ACTIONS(6148), - [anon_sym_EQ_EQ] = ACTIONS(6148), - [anon_sym_BANG_EQ] = ACTIONS(6148), - [anon_sym_GT_EQ] = ACTIONS(6148), - [anon_sym_LT_EQ] = ACTIONS(6148), - [anon_sym_DOT] = ACTIONS(6150), - [anon_sym_switch] = ACTIONS(6148), - [anon_sym_DOT_DOT] = ACTIONS(6148), - [anon_sym_and] = ACTIONS(6148), - [anon_sym_or] = ACTIONS(6150), - [anon_sym_AMP_AMP] = ACTIONS(6148), - [anon_sym_PIPE_PIPE] = ACTIONS(6148), - [sym_op_coalescing] = ACTIONS(6148), - [anon_sym_from] = ACTIONS(6148), - [anon_sym_into] = ACTIONS(6148), - [anon_sym_join] = ACTIONS(6148), - [anon_sym_let] = ACTIONS(6148), - [anon_sym_orderby] = ACTIONS(6148), - [anon_sym_ascending] = ACTIONS(6148), - [anon_sym_descending] = ACTIONS(6148), - [anon_sym_group] = ACTIONS(6148), - [anon_sym_select] = ACTIONS(6148), - [anon_sym_as] = ACTIONS(6150), - [anon_sym_is] = ACTIONS(6148), - [anon_sym_DASH_GT] = ACTIONS(6148), - [anon_sym_with] = ACTIONS(6148), - [sym_grit_metavariable] = ACTIONS(6148), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [5313] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(5597), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5313), [sym_preproc_endregion] = STATE(5313), [sym_preproc_line] = STATE(5313), @@ -660536,53 +652008,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5313), [sym_preproc_define] = STATE(5313), [sym_preproc_undef] = STATE(5313), - [anon_sym_LBRACK] = ACTIONS(6077), - [anon_sym_COMMA] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_LT] = ACTIONS(6079), - [anon_sym_GT] = ACTIONS(6079), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6079), - [anon_sym_BANG] = ACTIONS(6079), - [anon_sym_PLUS_PLUS] = ACTIONS(6077), - [anon_sym_DASH_DASH] = ACTIONS(6077), - [anon_sym_PLUS] = ACTIONS(6079), - [anon_sym_DASH] = ACTIONS(6079), - [anon_sym_STAR] = ACTIONS(6077), - [anon_sym_SLASH] = ACTIONS(6079), - [anon_sym_PERCENT] = ACTIONS(6077), - [anon_sym_CARET] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6079), - [anon_sym_AMP] = ACTIONS(6079), - [anon_sym_LT_LT] = ACTIONS(6077), - [anon_sym_GT_GT] = ACTIONS(6079), - [anon_sym_GT_GT_GT] = ACTIONS(6077), - [anon_sym_EQ_EQ] = ACTIONS(6077), - [anon_sym_BANG_EQ] = ACTIONS(6077), - [anon_sym_GT_EQ] = ACTIONS(6077), - [anon_sym_LT_EQ] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6079), - [anon_sym_switch] = ACTIONS(6077), - [anon_sym_DOT_DOT] = ACTIONS(6077), - [anon_sym_and] = ACTIONS(6077), - [anon_sym_or] = ACTIONS(6079), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [sym_op_coalescing] = ACTIONS(6077), - [anon_sym_from] = ACTIONS(6077), - [anon_sym_into] = ACTIONS(6077), - [anon_sym_join] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_orderby] = ACTIONS(6077), - [anon_sym_ascending] = ACTIONS(6077), - [anon_sym_descending] = ACTIONS(6077), - [anon_sym_group] = ACTIONS(6077), - [anon_sym_select] = ACTIONS(6077), - [anon_sym_as] = ACTIONS(6079), - [anon_sym_is] = ACTIONS(6077), - [anon_sym_DASH_GT] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [sym_grit_metavariable] = ACTIONS(6077), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(7074), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(8125), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(7078), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -660595,6 +652049,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5314] = { + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4062), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5314), [sym_preproc_endregion] = STATE(5314), [sym_preproc_line] = STATE(5314), @@ -660604,53 +652076,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5314), [sym_preproc_define] = STATE(5314), [sym_preproc_undef] = STATE(5314), - [anon_sym_LBRACK] = ACTIONS(6073), - [anon_sym_COMMA] = ACTIONS(6073), - [anon_sym_LPAREN] = ACTIONS(6073), - [anon_sym_LT] = ACTIONS(6075), - [anon_sym_GT] = ACTIONS(6075), - [anon_sym_where] = ACTIONS(6073), - [anon_sym_QMARK] = ACTIONS(6075), - [anon_sym_BANG] = ACTIONS(6075), - [anon_sym_PLUS_PLUS] = ACTIONS(6073), - [anon_sym_DASH_DASH] = ACTIONS(6073), - [anon_sym_PLUS] = ACTIONS(6075), - [anon_sym_DASH] = ACTIONS(6075), - [anon_sym_STAR] = ACTIONS(6073), - [anon_sym_SLASH] = ACTIONS(6075), - [anon_sym_PERCENT] = ACTIONS(6073), - [anon_sym_CARET] = ACTIONS(6073), - [anon_sym_PIPE] = ACTIONS(6075), - [anon_sym_AMP] = ACTIONS(6075), - [anon_sym_LT_LT] = ACTIONS(6073), - [anon_sym_GT_GT] = ACTIONS(6075), - [anon_sym_GT_GT_GT] = ACTIONS(6073), - [anon_sym_EQ_EQ] = ACTIONS(6073), - [anon_sym_BANG_EQ] = ACTIONS(6073), - [anon_sym_GT_EQ] = ACTIONS(6073), - [anon_sym_LT_EQ] = ACTIONS(6073), - [anon_sym_DOT] = ACTIONS(6075), - [anon_sym_switch] = ACTIONS(6073), - [anon_sym_DOT_DOT] = ACTIONS(6073), - [anon_sym_and] = ACTIONS(6073), - [anon_sym_or] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [sym_op_coalescing] = ACTIONS(6073), - [anon_sym_from] = ACTIONS(6073), - [anon_sym_into] = ACTIONS(6073), - [anon_sym_join] = ACTIONS(6073), - [anon_sym_let] = ACTIONS(6073), - [anon_sym_orderby] = ACTIONS(6073), - [anon_sym_ascending] = ACTIONS(6073), - [anon_sym_descending] = ACTIONS(6073), - [anon_sym_group] = ACTIONS(6073), - [anon_sym_select] = ACTIONS(6073), - [anon_sym_as] = ACTIONS(6075), - [anon_sym_is] = ACTIONS(6073), - [anon_sym_DASH_GT] = ACTIONS(6073), - [anon_sym_with] = ACTIONS(6073), - [sym_grit_metavariable] = ACTIONS(6073), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4365), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_readonly] = ACTIONS(8127), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7610), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -660663,24 +652117,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5315] = { - [sym__name] = STATE(2457), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_type] = STATE(2425), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_identifier] = STATE(2392), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(5315), [sym_preproc_endregion] = STATE(5315), [sym_preproc_line] = STATE(5315), @@ -660690,35 +652126,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5315), [sym_preproc_define] = STATE(5315), [sym_preproc_undef] = STATE(5315), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(7520), - [anon_sym_ref] = ACTIONS(4462), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(7661), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_where] = ACTIONS(4450), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_scoped] = ACTIONS(7427), - [anon_sym_var] = ACTIONS(7270), - [sym_predefined_type] = ACTIONS(7272), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_from] = ACTIONS(4450), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4450), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4450), - [anon_sym_orderby] = ACTIONS(4450), - [anon_sym_ascending] = ACTIONS(4450), - [anon_sym_descending] = ACTIONS(4450), - [anon_sym_group] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [sym_grit_metavariable] = ACTIONS(7274), + [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_DOT] = ACTIONS(6001), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_switch] = ACTIONS(5999), + [anon_sym_DOT_DOT] = ACTIONS(5999), + [anon_sym_LT_EQ] = ACTIONS(5999), + [anon_sym_GT_EQ] = ACTIONS(5999), + [anon_sym_and] = ACTIONS(5999), + [anon_sym_or] = ACTIONS(6001), + [anon_sym_EQ_EQ] = ACTIONS(5999), + [anon_sym_BANG_EQ] = ACTIONS(5999), + [anon_sym_AMP_AMP] = ACTIONS(5999), + [anon_sym_PIPE_PIPE] = ACTIONS(5999), + [anon_sym_AMP] = ACTIONS(6001), + [sym_op_bitwise_or] = ACTIONS(6001), + [anon_sym_CARET] = ACTIONS(5999), + [sym_op_left_shift] = ACTIONS(5999), + [sym_op_right_shift] = ACTIONS(6001), + [sym_op_unsigned_right_shift] = ACTIONS(5999), + [anon_sym_PLUS] = ACTIONS(6001), + [anon_sym_DASH] = ACTIONS(6001), + [sym_op_divide] = ACTIONS(6001), + [sym_op_modulo] = ACTIONS(5999), + [sym_op_coalescing] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(6001), + [anon_sym_PLUS_PLUS] = ACTIONS(5999), + [anon_sym_DASH_DASH] = ACTIONS(5999), + [anon_sym_from] = ACTIONS(5999), + [anon_sym_into] = ACTIONS(5999), + [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), + [sym_grit_metavariable] = ACTIONS(5999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -660731,6 +652185,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5316] = { + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3926), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(5316), [sym_preproc_endregion] = STATE(5316), [sym_preproc_line] = STATE(5316), @@ -660740,53 +652212,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5316), [sym_preproc_define] = STATE(5316), [sym_preproc_undef] = STATE(5316), - [anon_sym_LBRACK] = ACTIONS(6393), - [anon_sym_COMMA] = ACTIONS(6393), - [anon_sym_LPAREN] = ACTIONS(6393), - [anon_sym_LT] = ACTIONS(6395), - [anon_sym_GT] = ACTIONS(6395), - [anon_sym_where] = ACTIONS(6393), - [anon_sym_QMARK] = ACTIONS(6395), - [anon_sym_BANG] = ACTIONS(6395), - [anon_sym_PLUS_PLUS] = ACTIONS(6393), - [anon_sym_DASH_DASH] = ACTIONS(6393), - [anon_sym_PLUS] = ACTIONS(6395), - [anon_sym_DASH] = ACTIONS(6395), - [anon_sym_STAR] = ACTIONS(6393), - [anon_sym_SLASH] = ACTIONS(6395), - [anon_sym_PERCENT] = ACTIONS(6393), - [anon_sym_CARET] = ACTIONS(6393), - [anon_sym_PIPE] = ACTIONS(6395), - [anon_sym_AMP] = ACTIONS(6395), - [anon_sym_LT_LT] = ACTIONS(6393), - [anon_sym_GT_GT] = ACTIONS(6395), - [anon_sym_GT_GT_GT] = ACTIONS(6393), - [anon_sym_EQ_EQ] = ACTIONS(6393), - [anon_sym_BANG_EQ] = ACTIONS(6393), - [anon_sym_GT_EQ] = ACTIONS(6393), - [anon_sym_LT_EQ] = ACTIONS(6393), - [anon_sym_DOT] = ACTIONS(6395), - [anon_sym_switch] = ACTIONS(6393), - [anon_sym_DOT_DOT] = ACTIONS(6393), - [anon_sym_and] = ACTIONS(6393), - [anon_sym_or] = ACTIONS(6395), - [anon_sym_AMP_AMP] = ACTIONS(6393), - [anon_sym_PIPE_PIPE] = ACTIONS(6393), - [sym_op_coalescing] = ACTIONS(6393), - [anon_sym_from] = ACTIONS(6393), - [anon_sym_into] = ACTIONS(6393), - [anon_sym_join] = ACTIONS(6393), - [anon_sym_let] = ACTIONS(6393), - [anon_sym_orderby] = ACTIONS(6393), - [anon_sym_ascending] = ACTIONS(6393), - [anon_sym_descending] = ACTIONS(6393), - [anon_sym_group] = ACTIONS(6393), - [anon_sym_select] = ACTIONS(6393), - [anon_sym_as] = ACTIONS(6395), - [anon_sym_is] = ACTIONS(6393), - [anon_sym_DASH_GT] = ACTIONS(6393), - [anon_sym_with] = ACTIONS(6393), - [sym_grit_metavariable] = ACTIONS(6393), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(8015), + [anon_sym_ref] = ACTIONS(4505), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_readonly] = ACTIONS(8129), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7626), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -660799,6 +652253,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5317] = { + [sym__name] = STATE(5857), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3290), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(5614), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5317), [sym_preproc_endregion] = STATE(5317), [sym_preproc_line] = STATE(5317), @@ -660808,53 +652280,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5317), [sym_preproc_define] = STATE(5317), [sym_preproc_undef] = STATE(5317), - [anon_sym_LBRACK] = ACTIONS(6397), - [anon_sym_COMMA] = ACTIONS(6397), - [anon_sym_LPAREN] = ACTIONS(6397), - [anon_sym_LT] = ACTIONS(6399), - [anon_sym_GT] = ACTIONS(6399), - [anon_sym_where] = ACTIONS(6397), - [anon_sym_QMARK] = ACTIONS(6399), - [anon_sym_BANG] = ACTIONS(6399), - [anon_sym_PLUS_PLUS] = ACTIONS(6397), - [anon_sym_DASH_DASH] = ACTIONS(6397), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_STAR] = ACTIONS(6397), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_PERCENT] = ACTIONS(6397), - [anon_sym_CARET] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(6399), - [anon_sym_AMP] = ACTIONS(6399), - [anon_sym_LT_LT] = ACTIONS(6397), - [anon_sym_GT_GT] = ACTIONS(6399), - [anon_sym_GT_GT_GT] = ACTIONS(6397), - [anon_sym_EQ_EQ] = ACTIONS(6397), - [anon_sym_BANG_EQ] = ACTIONS(6397), - [anon_sym_GT_EQ] = ACTIONS(6397), - [anon_sym_LT_EQ] = ACTIONS(6397), - [anon_sym_DOT] = ACTIONS(6399), - [anon_sym_switch] = ACTIONS(6397), - [anon_sym_DOT_DOT] = ACTIONS(6397), - [anon_sym_and] = ACTIONS(6397), - [anon_sym_or] = ACTIONS(6399), - [anon_sym_AMP_AMP] = ACTIONS(6397), - [anon_sym_PIPE_PIPE] = ACTIONS(6397), - [sym_op_coalescing] = ACTIONS(6397), - [anon_sym_from] = ACTIONS(6397), - [anon_sym_into] = ACTIONS(6397), - [anon_sym_join] = ACTIONS(6397), - [anon_sym_let] = ACTIONS(6397), - [anon_sym_orderby] = ACTIONS(6397), - [anon_sym_ascending] = ACTIONS(6397), - [anon_sym_descending] = ACTIONS(6397), - [anon_sym_group] = ACTIONS(6397), - [anon_sym_select] = ACTIONS(6397), - [anon_sym_as] = ACTIONS(6399), - [anon_sym_is] = ACTIONS(6397), - [anon_sym_DASH_GT] = ACTIONS(6397), - [anon_sym_with] = ACTIONS(6397), - [sym_grit_metavariable] = ACTIONS(6397), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4373), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_readonly] = ACTIONS(8131), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7699), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -660876,53 +652330,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5318), [sym_preproc_define] = STATE(5318), [sym_preproc_undef] = STATE(5318), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_where] = ACTIONS(3205), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3205), - [anon_sym_EQ_EQ] = ACTIONS(3205), - [anon_sym_BANG_EQ] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3205), - [anon_sym_LT_EQ] = ACTIONS(3205), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_switch] = ACTIONS(3205), - [anon_sym_DOT_DOT] = ACTIONS(3205), - [anon_sym_and] = ACTIONS(3205), - [anon_sym_or] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [sym_op_coalescing] = ACTIONS(3205), - [anon_sym_from] = ACTIONS(3205), - [anon_sym_into] = ACTIONS(3205), - [anon_sym_join] = 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_select] = ACTIONS(3205), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3205), - [anon_sym_DASH_GT] = ACTIONS(3205), - [anon_sym_with] = ACTIONS(3205), - [sym_grit_metavariable] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(5991), + [anon_sym_COMMA] = ACTIONS(5991), + [anon_sym_LPAREN] = ACTIONS(5991), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_where] = ACTIONS(5991), + [anon_sym_QMARK] = ACTIONS(5993), + [anon_sym_DOT] = ACTIONS(5993), + [anon_sym_STAR] = ACTIONS(5991), + [anon_sym_switch] = ACTIONS(5991), + [anon_sym_DOT_DOT] = ACTIONS(5991), + [anon_sym_LT_EQ] = ACTIONS(5991), + [anon_sym_GT_EQ] = ACTIONS(5991), + [anon_sym_and] = ACTIONS(5991), + [anon_sym_or] = ACTIONS(5993), + [anon_sym_EQ_EQ] = ACTIONS(5991), + [anon_sym_BANG_EQ] = ACTIONS(5991), + [anon_sym_AMP_AMP] = ACTIONS(5991), + [anon_sym_PIPE_PIPE] = ACTIONS(5991), + [anon_sym_AMP] = ACTIONS(5993), + [sym_op_bitwise_or] = ACTIONS(5993), + [anon_sym_CARET] = ACTIONS(5991), + [sym_op_left_shift] = ACTIONS(5991), + [sym_op_right_shift] = ACTIONS(5993), + [sym_op_unsigned_right_shift] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5993), + [sym_op_divide] = ACTIONS(5993), + [sym_op_modulo] = ACTIONS(5991), + [sym_op_coalescing] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(5993), + [anon_sym_PLUS_PLUS] = ACTIONS(5991), + [anon_sym_DASH_DASH] = ACTIONS(5991), + [anon_sym_from] = ACTIONS(5991), + [anon_sym_into] = ACTIONS(5991), + [anon_sym_join] = ACTIONS(5991), + [anon_sym_let] = ACTIONS(5991), + [anon_sym_orderby] = ACTIONS(5991), + [anon_sym_ascending] = ACTIONS(5991), + [anon_sym_descending] = ACTIONS(5991), + [anon_sym_group] = ACTIONS(5991), + [anon_sym_select] = ACTIONS(5991), + [anon_sym_as] = ACTIONS(5993), + [anon_sym_is] = ACTIONS(5991), + [anon_sym_DASH_GT] = ACTIONS(5991), + [anon_sym_with] = ACTIONS(5991), + [sym_grit_metavariable] = ACTIONS(5991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -660935,6 +652389,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5319] = { + [sym__name] = STATE(2458), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_type] = STATE(2425), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_identifier] = STATE(2392), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(5319), [sym_preproc_endregion] = STATE(5319), [sym_preproc_line] = STATE(5319), @@ -660944,53 +652416,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5319), [sym_preproc_define] = STATE(5319), [sym_preproc_undef] = STATE(5319), - [anon_sym_LBRACK] = ACTIONS(6377), - [anon_sym_COMMA] = ACTIONS(6377), - [anon_sym_LPAREN] = ACTIONS(6377), - [anon_sym_LT] = ACTIONS(6379), - [anon_sym_GT] = ACTIONS(6379), - [anon_sym_where] = ACTIONS(6377), - [anon_sym_QMARK] = ACTIONS(6379), - [anon_sym_BANG] = ACTIONS(6379), - [anon_sym_PLUS_PLUS] = ACTIONS(6377), - [anon_sym_DASH_DASH] = ACTIONS(6377), - [anon_sym_PLUS] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [anon_sym_STAR] = ACTIONS(6377), - [anon_sym_SLASH] = ACTIONS(6379), - [anon_sym_PERCENT] = ACTIONS(6377), - [anon_sym_CARET] = ACTIONS(6377), - [anon_sym_PIPE] = ACTIONS(6379), - [anon_sym_AMP] = ACTIONS(6379), - [anon_sym_LT_LT] = ACTIONS(6377), - [anon_sym_GT_GT] = ACTIONS(6379), - [anon_sym_GT_GT_GT] = ACTIONS(6377), - [anon_sym_EQ_EQ] = ACTIONS(6377), - [anon_sym_BANG_EQ] = ACTIONS(6377), - [anon_sym_GT_EQ] = ACTIONS(6377), - [anon_sym_LT_EQ] = ACTIONS(6377), - [anon_sym_DOT] = ACTIONS(6379), - [anon_sym_switch] = ACTIONS(6377), - [anon_sym_DOT_DOT] = ACTIONS(6377), - [anon_sym_and] = ACTIONS(6377), - [anon_sym_or] = ACTIONS(6379), - [anon_sym_AMP_AMP] = ACTIONS(6377), - [anon_sym_PIPE_PIPE] = ACTIONS(6377), - [sym_op_coalescing] = ACTIONS(6377), - [anon_sym_from] = ACTIONS(6377), - [anon_sym_into] = ACTIONS(6377), - [anon_sym_join] = ACTIONS(6377), - [anon_sym_let] = ACTIONS(6377), - [anon_sym_orderby] = ACTIONS(6377), - [anon_sym_ascending] = ACTIONS(6377), - [anon_sym_descending] = ACTIONS(6377), - [anon_sym_group] = ACTIONS(6377), - [anon_sym_select] = ACTIONS(6377), - [anon_sym_as] = ACTIONS(6379), - [anon_sym_is] = ACTIONS(6377), - [anon_sym_DASH_GT] = ACTIONS(6377), - [anon_sym_with] = ACTIONS(6377), - [sym_grit_metavariable] = ACTIONS(6377), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(7999), + [anon_sym_ref] = ACTIONS(4460), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(8133), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_where] = ACTIONS(4425), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_scoped] = ACTIONS(7256), + [anon_sym_var] = ACTIONS(7258), + [sym_predefined_type] = ACTIONS(7260), + [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), + [sym_grit_metavariable] = ACTIONS(7262), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -661012,53 +652466,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5320), [sym_preproc_define] = STATE(5320), [sym_preproc_undef] = STATE(5320), - [anon_sym_LBRACK] = ACTIONS(7112), - [anon_sym_COMMA] = ACTIONS(7112), - [anon_sym_LPAREN] = ACTIONS(7112), - [anon_sym_LT] = ACTIONS(7114), - [anon_sym_GT] = ACTIONS(7114), - [anon_sym_where] = ACTIONS(7112), - [anon_sym_QMARK] = ACTIONS(7114), - [anon_sym_BANG] = ACTIONS(7114), - [anon_sym_PLUS_PLUS] = ACTIONS(7112), - [anon_sym_DASH_DASH] = ACTIONS(7112), - [anon_sym_PLUS] = ACTIONS(7114), - [anon_sym_DASH] = ACTIONS(7114), - [anon_sym_STAR] = ACTIONS(7112), - [anon_sym_SLASH] = ACTIONS(7114), - [anon_sym_PERCENT] = ACTIONS(7112), - [anon_sym_CARET] = ACTIONS(7112), - [anon_sym_PIPE] = ACTIONS(7114), - [anon_sym_AMP] = ACTIONS(7114), - [anon_sym_LT_LT] = ACTIONS(7112), - [anon_sym_GT_GT] = ACTIONS(7114), - [anon_sym_GT_GT_GT] = ACTIONS(7112), - [anon_sym_EQ_EQ] = ACTIONS(7112), - [anon_sym_BANG_EQ] = ACTIONS(7112), - [anon_sym_GT_EQ] = ACTIONS(7112), - [anon_sym_LT_EQ] = ACTIONS(7112), - [anon_sym_DOT] = ACTIONS(7114), - [anon_sym_switch] = ACTIONS(7112), - [anon_sym_DOT_DOT] = ACTIONS(7112), - [anon_sym_and] = ACTIONS(7112), - [anon_sym_or] = ACTIONS(7114), - [anon_sym_AMP_AMP] = ACTIONS(7112), - [anon_sym_PIPE_PIPE] = ACTIONS(7112), - [sym_op_coalescing] = ACTIONS(7112), - [anon_sym_from] = ACTIONS(7112), - [anon_sym_into] = ACTIONS(7112), - [anon_sym_join] = ACTIONS(7112), - [anon_sym_let] = ACTIONS(7112), - [anon_sym_orderby] = ACTIONS(7112), - [anon_sym_ascending] = ACTIONS(7112), - [anon_sym_descending] = ACTIONS(7112), - [anon_sym_group] = ACTIONS(7112), - [anon_sym_select] = ACTIONS(7112), - [anon_sym_as] = ACTIONS(7114), - [anon_sym_is] = ACTIONS(7112), - [anon_sym_DASH_GT] = ACTIONS(7112), - [anon_sym_with] = ACTIONS(7112), - [sym_grit_metavariable] = ACTIONS(7112), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(6743), + [anon_sym_GT] = ACTIONS(6743), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_QMARK] = ACTIONS(6743), + [anon_sym_DOT] = ACTIONS(6743), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_and] = ACTIONS(4152), + [anon_sym_or] = ACTIONS(6743), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(6743), + [sym_op_bitwise_or] = ACTIONS(6743), + [anon_sym_CARET] = ACTIONS(4152), + [sym_op_left_shift] = ACTIONS(4152), + [sym_op_right_shift] = ACTIONS(6743), + [sym_op_unsigned_right_shift] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(6743), + [anon_sym_DASH] = ACTIONS(6743), + [sym_op_divide] = ACTIONS(6743), + [sym_op_modulo] = ACTIONS(4152), + [sym_op_coalescing] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(6743), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_from] = ACTIONS(4152), + [anon_sym_into] = ACTIONS(4152), + [anon_sym_join] = ACTIONS(4152), + [anon_sym_let] = ACTIONS(4152), + [anon_sym_orderby] = ACTIONS(4152), + [anon_sym_ascending] = ACTIONS(4152), + [anon_sym_descending] = ACTIONS(4152), + [anon_sym_group] = ACTIONS(4152), + [anon_sym_select] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(6743), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [anon_sym_with] = ACTIONS(4152), + [sym_grit_metavariable] = ACTIONS(4152), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -661080,53 +652534,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5321), [sym_preproc_define] = STATE(5321), [sym_preproc_undef] = STATE(5321), - [anon_sym_LBRACK] = ACTIONS(4810), - [anon_sym_COMMA] = ACTIONS(4810), - [anon_sym_LPAREN] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4812), - [anon_sym_GT] = ACTIONS(4812), - [anon_sym_where] = ACTIONS(4810), - [anon_sym_QMARK] = ACTIONS(4812), - [anon_sym_BANG] = ACTIONS(4812), - [anon_sym_PLUS_PLUS] = ACTIONS(4810), - [anon_sym_DASH_DASH] = ACTIONS(4810), - [anon_sym_PLUS] = ACTIONS(4812), - [anon_sym_DASH] = ACTIONS(4812), - [anon_sym_STAR] = ACTIONS(4810), - [anon_sym_SLASH] = ACTIONS(4812), - [anon_sym_PERCENT] = ACTIONS(4810), - [anon_sym_CARET] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4812), - [anon_sym_AMP] = ACTIONS(4812), - [anon_sym_LT_LT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4812), - [anon_sym_GT_GT_GT] = ACTIONS(4810), - [anon_sym_EQ_EQ] = ACTIONS(4810), - [anon_sym_BANG_EQ] = ACTIONS(4810), - [anon_sym_GT_EQ] = ACTIONS(4810), - [anon_sym_LT_EQ] = ACTIONS(4810), - [anon_sym_DOT] = ACTIONS(4812), - [anon_sym_switch] = ACTIONS(4810), - [anon_sym_DOT_DOT] = ACTIONS(4810), - [anon_sym_and] = ACTIONS(4810), - [anon_sym_or] = ACTIONS(4812), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym_op_coalescing] = ACTIONS(4810), - [anon_sym_from] = ACTIONS(4810), - [anon_sym_into] = ACTIONS(4810), - [anon_sym_join] = ACTIONS(4810), - [anon_sym_let] = ACTIONS(4810), - [anon_sym_orderby] = ACTIONS(4810), - [anon_sym_ascending] = ACTIONS(4810), - [anon_sym_descending] = ACTIONS(4810), - [anon_sym_group] = ACTIONS(4810), - [anon_sym_select] = ACTIONS(4810), - [anon_sym_as] = ACTIONS(4812), - [anon_sym_is] = ACTIONS(4810), - [anon_sym_DASH_GT] = ACTIONS(4810), - [anon_sym_with] = ACTIONS(4810), - [sym_grit_metavariable] = ACTIONS(4810), + [anon_sym_LBRACK] = ACTIONS(7020), + [anon_sym_COMMA] = ACTIONS(7020), + [anon_sym_LPAREN] = ACTIONS(7020), + [anon_sym_LT] = ACTIONS(7022), + [anon_sym_GT] = ACTIONS(7022), + [anon_sym_where] = ACTIONS(7020), + [anon_sym_QMARK] = ACTIONS(7022), + [anon_sym_DOT] = ACTIONS(7022), + [anon_sym_STAR] = ACTIONS(7020), + [anon_sym_switch] = ACTIONS(7020), + [anon_sym_DOT_DOT] = ACTIONS(7020), + [anon_sym_LT_EQ] = ACTIONS(7020), + [anon_sym_GT_EQ] = ACTIONS(7020), + [anon_sym_and] = ACTIONS(7020), + [anon_sym_or] = ACTIONS(7022), + [anon_sym_EQ_EQ] = ACTIONS(7020), + [anon_sym_BANG_EQ] = ACTIONS(7020), + [anon_sym_AMP_AMP] = ACTIONS(7020), + [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [anon_sym_AMP] = ACTIONS(7022), + [sym_op_bitwise_or] = ACTIONS(7022), + [anon_sym_CARET] = ACTIONS(7020), + [sym_op_left_shift] = ACTIONS(7020), + [sym_op_right_shift] = ACTIONS(7022), + [sym_op_unsigned_right_shift] = ACTIONS(7020), + [anon_sym_PLUS] = ACTIONS(7022), + [anon_sym_DASH] = ACTIONS(7022), + [sym_op_divide] = ACTIONS(7022), + [sym_op_modulo] = ACTIONS(7020), + [sym_op_coalescing] = ACTIONS(7020), + [anon_sym_BANG] = ACTIONS(7022), + [anon_sym_PLUS_PLUS] = ACTIONS(7020), + [anon_sym_DASH_DASH] = ACTIONS(7020), + [anon_sym_from] = ACTIONS(7020), + [anon_sym_into] = ACTIONS(7020), + [anon_sym_join] = ACTIONS(7020), + [anon_sym_let] = ACTIONS(7020), + [anon_sym_orderby] = ACTIONS(7020), + [anon_sym_ascending] = ACTIONS(7020), + [anon_sym_descending] = ACTIONS(7020), + [anon_sym_group] = ACTIONS(7020), + [anon_sym_select] = ACTIONS(7020), + [anon_sym_as] = ACTIONS(7022), + [anon_sym_is] = ACTIONS(7020), + [anon_sym_DASH_GT] = ACTIONS(7020), + [anon_sym_with] = ACTIONS(7020), + [sym_grit_metavariable] = ACTIONS(7020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -661148,53 +652602,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5322), [sym_preproc_define] = STATE(5322), [sym_preproc_undef] = STATE(5322), - [anon_sym_LBRACK] = ACTIONS(6184), - [anon_sym_COMMA] = ACTIONS(6184), - [anon_sym_LPAREN] = ACTIONS(6184), - [anon_sym_LT] = ACTIONS(6186), - [anon_sym_GT] = ACTIONS(6186), - [anon_sym_where] = ACTIONS(6184), - [anon_sym_QMARK] = ACTIONS(6186), - [anon_sym_BANG] = ACTIONS(6186), - [anon_sym_PLUS_PLUS] = ACTIONS(6184), - [anon_sym_DASH_DASH] = ACTIONS(6184), - [anon_sym_PLUS] = ACTIONS(6186), - [anon_sym_DASH] = ACTIONS(6186), - [anon_sym_STAR] = ACTIONS(6184), - [anon_sym_SLASH] = ACTIONS(6186), - [anon_sym_PERCENT] = ACTIONS(6184), - [anon_sym_CARET] = ACTIONS(6184), - [anon_sym_PIPE] = ACTIONS(6186), - [anon_sym_AMP] = ACTIONS(6186), - [anon_sym_LT_LT] = ACTIONS(6184), - [anon_sym_GT_GT] = ACTIONS(6186), - [anon_sym_GT_GT_GT] = ACTIONS(6184), - [anon_sym_EQ_EQ] = ACTIONS(6184), - [anon_sym_BANG_EQ] = ACTIONS(6184), - [anon_sym_GT_EQ] = ACTIONS(6184), - [anon_sym_LT_EQ] = ACTIONS(6184), - [anon_sym_DOT] = ACTIONS(6186), - [anon_sym_switch] = ACTIONS(6184), - [anon_sym_DOT_DOT] = ACTIONS(6184), - [anon_sym_and] = ACTIONS(6184), - [anon_sym_or] = ACTIONS(6186), - [anon_sym_AMP_AMP] = ACTIONS(6184), - [anon_sym_PIPE_PIPE] = ACTIONS(6184), - [sym_op_coalescing] = ACTIONS(6184), - [anon_sym_from] = ACTIONS(6184), - [anon_sym_into] = ACTIONS(6184), - [anon_sym_join] = ACTIONS(6184), - [anon_sym_let] = ACTIONS(6184), - [anon_sym_orderby] = ACTIONS(6184), - [anon_sym_ascending] = ACTIONS(6184), - [anon_sym_descending] = ACTIONS(6184), - [anon_sym_group] = ACTIONS(6184), - [anon_sym_select] = ACTIONS(6184), - [anon_sym_as] = ACTIONS(6186), - [anon_sym_is] = ACTIONS(6184), - [anon_sym_DASH_GT] = ACTIONS(6184), - [anon_sym_with] = ACTIONS(6184), - [sym_grit_metavariable] = ACTIONS(6184), + [anon_sym_LBRACK] = ACTIONS(7030), + [anon_sym_COMMA] = ACTIONS(7030), + [anon_sym_LPAREN] = ACTIONS(7030), + [anon_sym_LT] = ACTIONS(7032), + [anon_sym_GT] = ACTIONS(7032), + [anon_sym_where] = ACTIONS(7030), + [anon_sym_QMARK] = ACTIONS(7032), + [anon_sym_DOT] = ACTIONS(7032), + [anon_sym_STAR] = ACTIONS(7030), + [anon_sym_switch] = ACTIONS(7030), + [anon_sym_DOT_DOT] = ACTIONS(7030), + [anon_sym_LT_EQ] = ACTIONS(7030), + [anon_sym_GT_EQ] = ACTIONS(7030), + [anon_sym_and] = ACTIONS(7030), + [anon_sym_or] = ACTIONS(7032), + [anon_sym_EQ_EQ] = ACTIONS(7030), + [anon_sym_BANG_EQ] = ACTIONS(7030), + [anon_sym_AMP_AMP] = ACTIONS(7030), + [anon_sym_PIPE_PIPE] = ACTIONS(7030), + [anon_sym_AMP] = ACTIONS(7032), + [sym_op_bitwise_or] = ACTIONS(7032), + [anon_sym_CARET] = ACTIONS(7030), + [sym_op_left_shift] = ACTIONS(7030), + [sym_op_right_shift] = ACTIONS(7032), + [sym_op_unsigned_right_shift] = ACTIONS(7030), + [anon_sym_PLUS] = ACTIONS(7032), + [anon_sym_DASH] = ACTIONS(7032), + [sym_op_divide] = ACTIONS(7032), + [sym_op_modulo] = ACTIONS(7030), + [sym_op_coalescing] = ACTIONS(7030), + [anon_sym_BANG] = ACTIONS(7032), + [anon_sym_PLUS_PLUS] = ACTIONS(7030), + [anon_sym_DASH_DASH] = ACTIONS(7030), + [anon_sym_from] = ACTIONS(7030), + [anon_sym_into] = ACTIONS(7030), + [anon_sym_join] = ACTIONS(7030), + [anon_sym_let] = ACTIONS(7030), + [anon_sym_orderby] = ACTIONS(7030), + [anon_sym_ascending] = ACTIONS(7030), + [anon_sym_descending] = ACTIONS(7030), + [anon_sym_group] = ACTIONS(7030), + [anon_sym_select] = ACTIONS(7030), + [anon_sym_as] = ACTIONS(7032), + [anon_sym_is] = ACTIONS(7030), + [anon_sym_DASH_GT] = ACTIONS(7030), + [anon_sym_with] = ACTIONS(7030), + [sym_grit_metavariable] = ACTIONS(7030), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -661216,53 +652670,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5323), [sym_preproc_define] = STATE(5323), [sym_preproc_undef] = STATE(5323), - [anon_sym_LBRACK] = ACTIONS(6007), - [anon_sym_COMMA] = ACTIONS(6007), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_where] = ACTIONS(6007), - [anon_sym_QMARK] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PLUS_PLUS] = ACTIONS(6007), - [anon_sym_DASH_DASH] = ACTIONS(6007), - [anon_sym_PLUS] = ACTIONS(6009), - [anon_sym_DASH] = ACTIONS(6009), - [anon_sym_STAR] = ACTIONS(6007), - [anon_sym_SLASH] = ACTIONS(6009), - [anon_sym_PERCENT] = ACTIONS(6007), - [anon_sym_CARET] = ACTIONS(6007), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_AMP] = ACTIONS(6009), - [anon_sym_LT_LT] = ACTIONS(6007), - [anon_sym_GT_GT] = ACTIONS(6009), - [anon_sym_GT_GT_GT] = ACTIONS(6007), - [anon_sym_EQ_EQ] = ACTIONS(6007), - [anon_sym_BANG_EQ] = ACTIONS(6007), - [anon_sym_GT_EQ] = ACTIONS(6007), - [anon_sym_LT_EQ] = ACTIONS(6007), - [anon_sym_DOT] = ACTIONS(6009), - [anon_sym_switch] = ACTIONS(6007), - [anon_sym_DOT_DOT] = ACTIONS(6007), - [anon_sym_and] = ACTIONS(6007), - [anon_sym_or] = ACTIONS(6009), - [anon_sym_AMP_AMP] = ACTIONS(6007), - [anon_sym_PIPE_PIPE] = ACTIONS(6007), - [sym_op_coalescing] = ACTIONS(6007), - [anon_sym_from] = ACTIONS(6007), - [anon_sym_into] = ACTIONS(6007), - [anon_sym_join] = ACTIONS(6007), - [anon_sym_let] = ACTIONS(6007), - [anon_sym_orderby] = ACTIONS(6007), - [anon_sym_ascending] = ACTIONS(6007), - [anon_sym_descending] = ACTIONS(6007), - [anon_sym_group] = ACTIONS(6007), - [anon_sym_select] = ACTIONS(6007), - [anon_sym_as] = ACTIONS(6009), - [anon_sym_is] = ACTIONS(6007), - [anon_sym_DASH_GT] = ACTIONS(6007), - [anon_sym_with] = ACTIONS(6007), - [sym_grit_metavariable] = ACTIONS(6007), + [anon_sym_LBRACK] = ACTIONS(7042), + [anon_sym_COMMA] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7042), + [anon_sym_LT] = ACTIONS(7044), + [anon_sym_GT] = ACTIONS(7044), + [anon_sym_where] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [anon_sym_DOT] = ACTIONS(7044), + [anon_sym_STAR] = ACTIONS(7042), + [anon_sym_switch] = ACTIONS(7042), + [anon_sym_DOT_DOT] = ACTIONS(7042), + [anon_sym_LT_EQ] = ACTIONS(7042), + [anon_sym_GT_EQ] = ACTIONS(7042), + [anon_sym_and] = ACTIONS(7042), + [anon_sym_or] = ACTIONS(7044), + [anon_sym_EQ_EQ] = ACTIONS(7042), + [anon_sym_BANG_EQ] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7044), + [sym_op_bitwise_or] = ACTIONS(7044), + [anon_sym_CARET] = ACTIONS(7042), + [sym_op_left_shift] = ACTIONS(7042), + [sym_op_right_shift] = ACTIONS(7044), + [sym_op_unsigned_right_shift] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7044), + [sym_op_divide] = ACTIONS(7044), + [sym_op_modulo] = ACTIONS(7042), + [sym_op_coalescing] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [anon_sym_PLUS_PLUS] = ACTIONS(7042), + [anon_sym_DASH_DASH] = ACTIONS(7042), + [anon_sym_from] = ACTIONS(7042), + [anon_sym_into] = ACTIONS(7042), + [anon_sym_join] = ACTIONS(7042), + [anon_sym_let] = ACTIONS(7042), + [anon_sym_orderby] = ACTIONS(7042), + [anon_sym_ascending] = ACTIONS(7042), + [anon_sym_descending] = ACTIONS(7042), + [anon_sym_group] = ACTIONS(7042), + [anon_sym_select] = ACTIONS(7042), + [anon_sym_as] = ACTIONS(7044), + [anon_sym_is] = ACTIONS(7042), + [anon_sym_DASH_GT] = ACTIONS(7042), + [anon_sym_with] = ACTIONS(7042), + [sym_grit_metavariable] = ACTIONS(7042), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -661275,6 +652729,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5324] = { + [sym__name] = STATE(2671), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_type] = STATE(2425), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_identifier] = STATE(2619), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(5324), [sym_preproc_endregion] = STATE(5324), [sym_preproc_line] = STATE(5324), @@ -661284,53 +652756,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5324), [sym_preproc_define] = STATE(5324), [sym_preproc_undef] = STATE(5324), - [anon_sym_LBRACK] = ACTIONS(6174), - [anon_sym_COMMA] = ACTIONS(6174), - [anon_sym_LPAREN] = ACTIONS(6174), - [anon_sym_LT] = ACTIONS(6176), - [anon_sym_GT] = ACTIONS(6176), - [anon_sym_where] = ACTIONS(6174), - [anon_sym_QMARK] = ACTIONS(6176), - [anon_sym_BANG] = ACTIONS(6176), - [anon_sym_PLUS_PLUS] = ACTIONS(6174), - [anon_sym_DASH_DASH] = ACTIONS(6174), - [anon_sym_PLUS] = ACTIONS(6176), - [anon_sym_DASH] = ACTIONS(6176), - [anon_sym_STAR] = ACTIONS(6174), - [anon_sym_SLASH] = ACTIONS(6176), - [anon_sym_PERCENT] = ACTIONS(6174), - [anon_sym_CARET] = ACTIONS(6174), - [anon_sym_PIPE] = ACTIONS(6176), - [anon_sym_AMP] = ACTIONS(6176), - [anon_sym_LT_LT] = ACTIONS(6174), - [anon_sym_GT_GT] = ACTIONS(6176), - [anon_sym_GT_GT_GT] = ACTIONS(6174), - [anon_sym_EQ_EQ] = ACTIONS(6174), - [anon_sym_BANG_EQ] = ACTIONS(6174), - [anon_sym_GT_EQ] = ACTIONS(6174), - [anon_sym_LT_EQ] = ACTIONS(6174), - [anon_sym_DOT] = ACTIONS(6176), - [anon_sym_switch] = ACTIONS(6174), - [anon_sym_DOT_DOT] = ACTIONS(6174), - [anon_sym_and] = ACTIONS(6174), - [anon_sym_or] = ACTIONS(6176), - [anon_sym_AMP_AMP] = ACTIONS(6174), - [anon_sym_PIPE_PIPE] = ACTIONS(6174), - [sym_op_coalescing] = ACTIONS(6174), - [anon_sym_from] = ACTIONS(6174), - [anon_sym_into] = ACTIONS(6174), - [anon_sym_join] = ACTIONS(6174), - [anon_sym_let] = ACTIONS(6174), - [anon_sym_orderby] = ACTIONS(6174), - [anon_sym_ascending] = ACTIONS(6174), - [anon_sym_descending] = ACTIONS(6174), - [anon_sym_group] = ACTIONS(6174), - [anon_sym_select] = ACTIONS(6174), - [anon_sym_as] = ACTIONS(6176), - [anon_sym_is] = ACTIONS(6174), - [anon_sym_DASH_GT] = ACTIONS(6174), - [anon_sym_with] = ACTIONS(6174), - [sym_grit_metavariable] = ACTIONS(6174), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(7999), + [anon_sym_ref] = ACTIONS(3928), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_readonly] = ACTIONS(3107), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_where] = ACTIONS(4425), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_scoped] = ACTIONS(8135), + [anon_sym_var] = ACTIONS(7258), + [sym_predefined_type] = ACTIONS(7260), + [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), + [sym_grit_metavariable] = ACTIONS(7262), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -661352,53 +652806,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5325), [sym_preproc_define] = STATE(5325), [sym_preproc_undef] = STATE(5325), - [anon_sym_LBRACK] = ACTIONS(6178), - [anon_sym_COMMA] = ACTIONS(6178), - [anon_sym_LPAREN] = ACTIONS(6178), - [anon_sym_LT] = ACTIONS(6180), - [anon_sym_GT] = ACTIONS(6180), - [anon_sym_where] = ACTIONS(6178), - [anon_sym_QMARK] = ACTIONS(6180), - [anon_sym_BANG] = ACTIONS(6180), - [anon_sym_PLUS_PLUS] = ACTIONS(6178), - [anon_sym_DASH_DASH] = ACTIONS(6178), - [anon_sym_PLUS] = ACTIONS(6180), - [anon_sym_DASH] = ACTIONS(6180), - [anon_sym_STAR] = ACTIONS(6178), - [anon_sym_SLASH] = ACTIONS(6180), - [anon_sym_PERCENT] = ACTIONS(6178), - [anon_sym_CARET] = ACTIONS(6178), - [anon_sym_PIPE] = ACTIONS(6180), - [anon_sym_AMP] = ACTIONS(6180), - [anon_sym_LT_LT] = ACTIONS(6178), - [anon_sym_GT_GT] = ACTIONS(6180), - [anon_sym_GT_GT_GT] = ACTIONS(6178), - [anon_sym_EQ_EQ] = ACTIONS(6178), - [anon_sym_BANG_EQ] = ACTIONS(6178), - [anon_sym_GT_EQ] = ACTIONS(6178), - [anon_sym_LT_EQ] = ACTIONS(6178), - [anon_sym_DOT] = ACTIONS(6180), - [anon_sym_switch] = ACTIONS(6178), - [anon_sym_DOT_DOT] = ACTIONS(6178), - [anon_sym_and] = ACTIONS(6178), - [anon_sym_or] = ACTIONS(6180), - [anon_sym_AMP_AMP] = ACTIONS(6178), - [anon_sym_PIPE_PIPE] = ACTIONS(6178), - [sym_op_coalescing] = ACTIONS(6178), - [anon_sym_from] = ACTIONS(6178), - [anon_sym_into] = ACTIONS(6178), - [anon_sym_join] = ACTIONS(6178), - [anon_sym_let] = ACTIONS(6178), - [anon_sym_orderby] = ACTIONS(6178), - [anon_sym_ascending] = ACTIONS(6178), - [anon_sym_descending] = ACTIONS(6178), - [anon_sym_group] = ACTIONS(6178), - [anon_sym_select] = ACTIONS(6178), - [anon_sym_as] = ACTIONS(6180), - [anon_sym_is] = ACTIONS(6178), - [anon_sym_DASH_GT] = ACTIONS(6178), - [anon_sym_with] = ACTIONS(6178), - [sym_grit_metavariable] = ACTIONS(6178), + [anon_sym_LBRACK] = ACTIONS(5879), + [anon_sym_COMMA] = ACTIONS(5879), + [anon_sym_LPAREN] = ACTIONS(5879), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_where] = ACTIONS(5879), + [anon_sym_QMARK] = ACTIONS(5881), + [anon_sym_DOT] = ACTIONS(5881), + [anon_sym_STAR] = ACTIONS(5879), + [anon_sym_switch] = ACTIONS(5879), + [anon_sym_DOT_DOT] = ACTIONS(5879), + [anon_sym_LT_EQ] = ACTIONS(5879), + [anon_sym_GT_EQ] = ACTIONS(5879), + [anon_sym_and] = ACTIONS(5879), + [anon_sym_or] = ACTIONS(5881), + [anon_sym_EQ_EQ] = ACTIONS(5879), + [anon_sym_BANG_EQ] = ACTIONS(5879), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5879), + [anon_sym_AMP] = ACTIONS(5881), + [sym_op_bitwise_or] = ACTIONS(5881), + [anon_sym_CARET] = ACTIONS(5879), + [sym_op_left_shift] = ACTIONS(5879), + [sym_op_right_shift] = ACTIONS(5881), + [sym_op_unsigned_right_shift] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5881), + [sym_op_divide] = ACTIONS(5881), + [sym_op_modulo] = ACTIONS(5879), + [sym_op_coalescing] = ACTIONS(5879), + [anon_sym_BANG] = ACTIONS(5881), + [anon_sym_PLUS_PLUS] = ACTIONS(5879), + [anon_sym_DASH_DASH] = ACTIONS(5879), + [anon_sym_from] = ACTIONS(5879), + [anon_sym_into] = ACTIONS(5879), + [anon_sym_join] = ACTIONS(5879), + [anon_sym_let] = ACTIONS(5879), + [anon_sym_orderby] = ACTIONS(5879), + [anon_sym_ascending] = ACTIONS(5879), + [anon_sym_descending] = ACTIONS(5879), + [anon_sym_group] = ACTIONS(5879), + [anon_sym_select] = ACTIONS(5879), + [anon_sym_as] = ACTIONS(5881), + [anon_sym_is] = ACTIONS(5879), + [anon_sym_DASH_GT] = ACTIONS(5879), + [anon_sym_with] = ACTIONS(5879), + [sym_grit_metavariable] = ACTIONS(5879), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -661420,53 +652874,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5326), [sym_preproc_define] = STATE(5326), [sym_preproc_undef] = STATE(5326), - [anon_sym_LBRACK] = ACTIONS(6321), - [anon_sym_COMMA] = ACTIONS(6321), - [anon_sym_LPAREN] = ACTIONS(6321), - [anon_sym_LT] = ACTIONS(6323), - [anon_sym_GT] = ACTIONS(6323), - [anon_sym_where] = ACTIONS(6321), - [anon_sym_QMARK] = ACTIONS(6323), - [anon_sym_BANG] = ACTIONS(6323), - [anon_sym_PLUS_PLUS] = ACTIONS(6321), - [anon_sym_DASH_DASH] = ACTIONS(6321), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6321), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_PERCENT] = ACTIONS(6321), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_AMP] = ACTIONS(6323), - [anon_sym_LT_LT] = ACTIONS(6321), - [anon_sym_GT_GT] = ACTIONS(6323), - [anon_sym_GT_GT_GT] = ACTIONS(6321), - [anon_sym_EQ_EQ] = ACTIONS(6321), - [anon_sym_BANG_EQ] = ACTIONS(6321), - [anon_sym_GT_EQ] = ACTIONS(6321), - [anon_sym_LT_EQ] = ACTIONS(6321), - [anon_sym_DOT] = ACTIONS(6323), - [anon_sym_switch] = ACTIONS(6321), - [anon_sym_DOT_DOT] = ACTIONS(6321), - [anon_sym_and] = ACTIONS(6321), - [anon_sym_or] = ACTIONS(6323), - [anon_sym_AMP_AMP] = ACTIONS(6321), - [anon_sym_PIPE_PIPE] = ACTIONS(6321), - [sym_op_coalescing] = ACTIONS(6321), - [anon_sym_from] = ACTIONS(6321), - [anon_sym_into] = ACTIONS(6321), - [anon_sym_join] = ACTIONS(6321), - [anon_sym_let] = ACTIONS(6321), - [anon_sym_orderby] = ACTIONS(6321), - [anon_sym_ascending] = ACTIONS(6321), - [anon_sym_descending] = ACTIONS(6321), - [anon_sym_group] = ACTIONS(6321), - [anon_sym_select] = ACTIONS(6321), - [anon_sym_as] = ACTIONS(6323), - [anon_sym_is] = ACTIONS(6321), - [anon_sym_DASH_GT] = ACTIONS(6321), - [anon_sym_with] = ACTIONS(6321), - [sym_grit_metavariable] = ACTIONS(6321), + [anon_sym_LBRACK] = ACTIONS(5983), + [anon_sym_COMMA] = ACTIONS(5983), + [anon_sym_LPAREN] = ACTIONS(5983), + [anon_sym_LT] = ACTIONS(5985), + [anon_sym_GT] = ACTIONS(5985), + [anon_sym_where] = ACTIONS(5983), + [anon_sym_QMARK] = ACTIONS(5985), + [anon_sym_DOT] = ACTIONS(5985), + [anon_sym_STAR] = ACTIONS(5983), + [anon_sym_switch] = ACTIONS(5983), + [anon_sym_DOT_DOT] = ACTIONS(5983), + [anon_sym_LT_EQ] = ACTIONS(5983), + [anon_sym_GT_EQ] = ACTIONS(5983), + [anon_sym_and] = ACTIONS(5983), + [anon_sym_or] = ACTIONS(5985), + [anon_sym_EQ_EQ] = ACTIONS(5983), + [anon_sym_BANG_EQ] = ACTIONS(5983), + [anon_sym_AMP_AMP] = ACTIONS(5983), + [anon_sym_PIPE_PIPE] = ACTIONS(5983), + [anon_sym_AMP] = ACTIONS(5985), + [sym_op_bitwise_or] = ACTIONS(5985), + [anon_sym_CARET] = ACTIONS(5983), + [sym_op_left_shift] = ACTIONS(5983), + [sym_op_right_shift] = ACTIONS(5985), + [sym_op_unsigned_right_shift] = ACTIONS(5983), + [anon_sym_PLUS] = ACTIONS(5985), + [anon_sym_DASH] = ACTIONS(5985), + [sym_op_divide] = ACTIONS(5985), + [sym_op_modulo] = ACTIONS(5983), + [sym_op_coalescing] = ACTIONS(5983), + [anon_sym_BANG] = ACTIONS(5985), + [anon_sym_PLUS_PLUS] = ACTIONS(5983), + [anon_sym_DASH_DASH] = ACTIONS(5983), + [anon_sym_from] = ACTIONS(5983), + [anon_sym_into] = ACTIONS(5983), + [anon_sym_join] = ACTIONS(5983), + [anon_sym_let] = ACTIONS(5983), + [anon_sym_orderby] = ACTIONS(5983), + [anon_sym_ascending] = ACTIONS(5983), + [anon_sym_descending] = ACTIONS(5983), + [anon_sym_group] = ACTIONS(5983), + [anon_sym_select] = ACTIONS(5983), + [anon_sym_as] = ACTIONS(5985), + [anon_sym_is] = ACTIONS(5983), + [anon_sym_DASH_GT] = ACTIONS(5983), + [anon_sym_with] = ACTIONS(5983), + [sym_grit_metavariable] = ACTIONS(5983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -661488,53 +652942,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5327), [sym_preproc_define] = STATE(5327), [sym_preproc_undef] = STATE(5327), - [anon_sym_LBRACK] = ACTIONS(6389), - [anon_sym_COMMA] = ACTIONS(6389), - [anon_sym_LPAREN] = ACTIONS(6389), - [anon_sym_LT] = ACTIONS(6391), - [anon_sym_GT] = ACTIONS(6391), - [anon_sym_where] = ACTIONS(6389), - [anon_sym_QMARK] = ACTIONS(6391), - [anon_sym_BANG] = ACTIONS(6391), - [anon_sym_PLUS_PLUS] = ACTIONS(6389), - [anon_sym_DASH_DASH] = ACTIONS(6389), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6389), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_PERCENT] = ACTIONS(6389), - [anon_sym_CARET] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6391), - [anon_sym_AMP] = ACTIONS(6391), - [anon_sym_LT_LT] = ACTIONS(6389), - [anon_sym_GT_GT] = ACTIONS(6391), - [anon_sym_GT_GT_GT] = ACTIONS(6389), - [anon_sym_EQ_EQ] = ACTIONS(6389), - [anon_sym_BANG_EQ] = ACTIONS(6389), - [anon_sym_GT_EQ] = ACTIONS(6389), - [anon_sym_LT_EQ] = ACTIONS(6389), - [anon_sym_DOT] = ACTIONS(6391), - [anon_sym_switch] = ACTIONS(6389), - [anon_sym_DOT_DOT] = ACTIONS(6389), - [anon_sym_and] = ACTIONS(6389), - [anon_sym_or] = ACTIONS(6391), - [anon_sym_AMP_AMP] = ACTIONS(6389), - [anon_sym_PIPE_PIPE] = ACTIONS(6389), - [sym_op_coalescing] = ACTIONS(6389), - [anon_sym_from] = ACTIONS(6389), - [anon_sym_into] = ACTIONS(6389), - [anon_sym_join] = ACTIONS(6389), - [anon_sym_let] = ACTIONS(6389), - [anon_sym_orderby] = ACTIONS(6389), - [anon_sym_ascending] = ACTIONS(6389), - [anon_sym_descending] = ACTIONS(6389), - [anon_sym_group] = ACTIONS(6389), - [anon_sym_select] = ACTIONS(6389), - [anon_sym_as] = ACTIONS(6391), - [anon_sym_is] = ACTIONS(6389), - [anon_sym_DASH_GT] = ACTIONS(6389), - [anon_sym_with] = ACTIONS(6389), - [sym_grit_metavariable] = ACTIONS(6389), + [anon_sym_LBRACK] = ACTIONS(5817), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_LPAREN] = ACTIONS(5817), + [anon_sym_LT] = ACTIONS(5819), + [anon_sym_GT] = ACTIONS(5819), + [anon_sym_where] = ACTIONS(5817), + [anon_sym_QMARK] = ACTIONS(5819), + [anon_sym_DOT] = ACTIONS(5819), + [anon_sym_STAR] = ACTIONS(5817), + [anon_sym_switch] = ACTIONS(5817), + [anon_sym_DOT_DOT] = ACTIONS(5817), + [anon_sym_LT_EQ] = ACTIONS(5817), + [anon_sym_GT_EQ] = ACTIONS(5817), + [anon_sym_and] = ACTIONS(5817), + [anon_sym_or] = ACTIONS(5819), + [anon_sym_EQ_EQ] = ACTIONS(5817), + [anon_sym_BANG_EQ] = ACTIONS(5817), + [anon_sym_AMP_AMP] = ACTIONS(5817), + [anon_sym_PIPE_PIPE] = ACTIONS(5817), + [anon_sym_AMP] = ACTIONS(5819), + [sym_op_bitwise_or] = ACTIONS(5819), + [anon_sym_CARET] = ACTIONS(5817), + [sym_op_left_shift] = ACTIONS(5817), + [sym_op_right_shift] = ACTIONS(5819), + [sym_op_unsigned_right_shift] = ACTIONS(5817), + [anon_sym_PLUS] = ACTIONS(5819), + [anon_sym_DASH] = ACTIONS(5819), + [sym_op_divide] = ACTIONS(5819), + [sym_op_modulo] = ACTIONS(5817), + [sym_op_coalescing] = ACTIONS(5817), + [anon_sym_BANG] = ACTIONS(5819), + [anon_sym_PLUS_PLUS] = ACTIONS(5817), + [anon_sym_DASH_DASH] = ACTIONS(5817), + [anon_sym_from] = ACTIONS(5817), + [anon_sym_into] = ACTIONS(5817), + [anon_sym_join] = ACTIONS(5817), + [anon_sym_let] = ACTIONS(5817), + [anon_sym_orderby] = ACTIONS(5817), + [anon_sym_ascending] = ACTIONS(5817), + [anon_sym_descending] = ACTIONS(5817), + [anon_sym_group] = ACTIONS(5817), + [anon_sym_select] = ACTIONS(5817), + [anon_sym_as] = ACTIONS(5819), + [anon_sym_is] = ACTIONS(5817), + [anon_sym_DASH_GT] = ACTIONS(5817), + [anon_sym_with] = ACTIONS(5817), + [sym_grit_metavariable] = ACTIONS(5817), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -661556,53 +653010,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5328), [sym_preproc_define] = STATE(5328), [sym_preproc_undef] = STATE(5328), - [anon_sym_LBRACK] = ACTIONS(7663), - [anon_sym_COMMA] = ACTIONS(7663), - [anon_sym_LPAREN] = ACTIONS(7663), - [anon_sym_LT] = ACTIONS(7665), - [anon_sym_GT] = ACTIONS(7665), - [anon_sym_where] = ACTIONS(7663), - [anon_sym_QMARK] = ACTIONS(7665), - [anon_sym_BANG] = ACTIONS(7665), - [anon_sym_PLUS_PLUS] = ACTIONS(7663), - [anon_sym_DASH_DASH] = ACTIONS(7663), - [anon_sym_PLUS] = ACTIONS(7665), - [anon_sym_DASH] = ACTIONS(7665), - [anon_sym_STAR] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7663), - [anon_sym_CARET] = ACTIONS(7663), - [anon_sym_PIPE] = ACTIONS(7665), - [anon_sym_AMP] = ACTIONS(7665), - [anon_sym_LT_LT] = ACTIONS(7663), - [anon_sym_GT_GT] = ACTIONS(7665), - [anon_sym_GT_GT_GT] = ACTIONS(7663), - [anon_sym_EQ_EQ] = ACTIONS(7663), - [anon_sym_BANG_EQ] = ACTIONS(7663), - [anon_sym_GT_EQ] = ACTIONS(7663), - [anon_sym_LT_EQ] = ACTIONS(7663), - [anon_sym_DOT] = ACTIONS(7665), - [anon_sym_switch] = ACTIONS(7663), - [anon_sym_DOT_DOT] = ACTIONS(7663), - [anon_sym_and] = ACTIONS(7639), - [anon_sym_or] = ACTIONS(7667), - [anon_sym_AMP_AMP] = ACTIONS(7663), - [anon_sym_PIPE_PIPE] = ACTIONS(7663), - [sym_op_coalescing] = ACTIONS(7663), - [anon_sym_from] = ACTIONS(7663), - [anon_sym_into] = ACTIONS(7663), - [anon_sym_join] = ACTIONS(7663), - [anon_sym_let] = ACTIONS(7663), - [anon_sym_orderby] = ACTIONS(7663), - [anon_sym_ascending] = ACTIONS(7663), - [anon_sym_descending] = ACTIONS(7663), - [anon_sym_group] = ACTIONS(7663), - [anon_sym_select] = ACTIONS(7663), - [anon_sym_as] = ACTIONS(7665), - [anon_sym_is] = ACTIONS(7663), - [anon_sym_DASH_GT] = ACTIONS(7663), - [anon_sym_with] = ACTIONS(7663), - [sym_grit_metavariable] = ACTIONS(7663), + [anon_sym_LBRACK] = ACTIONS(5723), + [anon_sym_COMMA] = ACTIONS(5723), + [anon_sym_LPAREN] = ACTIONS(5723), + [anon_sym_LT] = ACTIONS(5725), + [anon_sym_GT] = ACTIONS(5725), + [anon_sym_where] = ACTIONS(5723), + [anon_sym_QMARK] = ACTIONS(5725), + [anon_sym_DOT] = ACTIONS(5725), + [anon_sym_STAR] = ACTIONS(5723), + [anon_sym_switch] = ACTIONS(5723), + [anon_sym_DOT_DOT] = ACTIONS(5723), + [anon_sym_LT_EQ] = ACTIONS(5723), + [anon_sym_GT_EQ] = ACTIONS(5723), + [anon_sym_and] = ACTIONS(5723), + [anon_sym_or] = ACTIONS(5725), + [anon_sym_EQ_EQ] = ACTIONS(5723), + [anon_sym_BANG_EQ] = ACTIONS(5723), + [anon_sym_AMP_AMP] = ACTIONS(5723), + [anon_sym_PIPE_PIPE] = ACTIONS(5723), + [anon_sym_AMP] = ACTIONS(5725), + [sym_op_bitwise_or] = ACTIONS(5725), + [anon_sym_CARET] = ACTIONS(5723), + [sym_op_left_shift] = ACTIONS(5723), + [sym_op_right_shift] = ACTIONS(5725), + [sym_op_unsigned_right_shift] = ACTIONS(5723), + [anon_sym_PLUS] = ACTIONS(5725), + [anon_sym_DASH] = ACTIONS(5725), + [sym_op_divide] = ACTIONS(5725), + [sym_op_modulo] = ACTIONS(5723), + [sym_op_coalescing] = ACTIONS(5723), + [anon_sym_BANG] = ACTIONS(5725), + [anon_sym_PLUS_PLUS] = ACTIONS(5723), + [anon_sym_DASH_DASH] = ACTIONS(5723), + [anon_sym_from] = ACTIONS(5723), + [anon_sym_into] = ACTIONS(5723), + [anon_sym_join] = ACTIONS(5723), + [anon_sym_let] = ACTIONS(5723), + [anon_sym_orderby] = ACTIONS(5723), + [anon_sym_ascending] = ACTIONS(5723), + [anon_sym_descending] = ACTIONS(5723), + [anon_sym_group] = ACTIONS(5723), + [anon_sym_select] = ACTIONS(5723), + [anon_sym_as] = ACTIONS(5725), + [anon_sym_is] = ACTIONS(5723), + [anon_sym_DASH_GT] = ACTIONS(5723), + [anon_sym_with] = ACTIONS(5723), + [sym_grit_metavariable] = ACTIONS(5723), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -661615,6 +653069,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5329] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6335), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_tuple_element] = STATE(7545), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5329), [sym_preproc_endregion] = STATE(5329), [sym_preproc_line] = STATE(5329), @@ -661624,53 +653097,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5329), [sym_preproc_define] = STATE(5329), [sym_preproc_undef] = STATE(5329), - [anon_sym_EQ] = ACTIONS(7669), - [anon_sym_LBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5686), - [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(5686), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5684), - [anon_sym_PLUS_EQ] = ACTIONS(7671), - [anon_sym_DASH_EQ] = ACTIONS(7671), - [anon_sym_STAR_EQ] = ACTIONS(7671), - [anon_sym_SLASH_EQ] = ACTIONS(7671), - [anon_sym_PERCENT_EQ] = ACTIONS(7671), - [anon_sym_AMP_EQ] = ACTIONS(7671), - [anon_sym_CARET_EQ] = ACTIONS(7671), - [anon_sym_PIPE_EQ] = ACTIONS(7671), - [anon_sym_LT_LT_EQ] = ACTIONS(7671), - [anon_sym_GT_GT_EQ] = ACTIONS(7671), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7671), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7671), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [sym_op_coalescing] = ACTIONS(5686), - [anon_sym_on] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(5684), - [anon_sym_with] = ACTIONS(5684), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3900), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(7834), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -661683,6 +653137,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5330] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6390), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5330), [sym_preproc_endregion] = STATE(5330), [sym_preproc_line] = STATE(5330), @@ -661692,105 +653164,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5330), [sym_preproc_define] = STATE(5330), [sym_preproc_undef] = STATE(5330), - [anon_sym_LBRACK] = ACTIONS(7100), - [anon_sym_COMMA] = ACTIONS(7100), - [anon_sym_LPAREN] = ACTIONS(7100), - [anon_sym_LT] = ACTIONS(7102), - [anon_sym_GT] = ACTIONS(7102), - [anon_sym_where] = ACTIONS(7100), - [anon_sym_QMARK] = ACTIONS(7102), - [anon_sym_BANG] = ACTIONS(7102), - [anon_sym_PLUS_PLUS] = ACTIONS(7100), - [anon_sym_DASH_DASH] = ACTIONS(7100), - [anon_sym_PLUS] = ACTIONS(7102), - [anon_sym_DASH] = ACTIONS(7102), - [anon_sym_STAR] = ACTIONS(7100), - [anon_sym_SLASH] = ACTIONS(7102), - [anon_sym_PERCENT] = ACTIONS(7100), - [anon_sym_CARET] = ACTIONS(7100), - [anon_sym_PIPE] = ACTIONS(7102), - [anon_sym_AMP] = ACTIONS(7102), - [anon_sym_LT_LT] = ACTIONS(7100), - [anon_sym_GT_GT] = ACTIONS(7102), - [anon_sym_GT_GT_GT] = ACTIONS(7100), - [anon_sym_EQ_EQ] = ACTIONS(7100), - [anon_sym_BANG_EQ] = ACTIONS(7100), - [anon_sym_GT_EQ] = ACTIONS(7100), - [anon_sym_LT_EQ] = ACTIONS(7100), - [anon_sym_DOT] = ACTIONS(7102), - [anon_sym_switch] = ACTIONS(7100), - [anon_sym_DOT_DOT] = ACTIONS(7100), - [anon_sym_and] = ACTIONS(7100), - [anon_sym_or] = ACTIONS(7102), - [anon_sym_AMP_AMP] = ACTIONS(7100), - [anon_sym_PIPE_PIPE] = ACTIONS(7100), - [sym_op_coalescing] = ACTIONS(7100), - [anon_sym_from] = ACTIONS(7100), - [anon_sym_into] = ACTIONS(7100), - [anon_sym_join] = ACTIONS(7100), - [anon_sym_let] = ACTIONS(7100), - [anon_sym_orderby] = ACTIONS(7100), - [anon_sym_ascending] = ACTIONS(7100), - [anon_sym_descending] = ACTIONS(7100), - [anon_sym_group] = ACTIONS(7100), - [anon_sym_select] = ACTIONS(7100), - [anon_sym_as] = ACTIONS(7102), - [anon_sym_is] = ACTIONS(7100), - [anon_sym_DASH_GT] = ACTIONS(7100), - [anon_sym_with] = ACTIONS(7100), - [sym_grit_metavariable] = ACTIONS(7100), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5331] = { - [sym__name] = STATE(6589), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(5580), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6559), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5331), - [sym_preproc_endregion] = STATE(5331), - [sym_preproc_line] = STATE(5331), - [sym_preproc_pragma] = STATE(5331), - [sym_preproc_nullable] = STATE(5331), - [sym_preproc_error] = STATE(5331), - [sym_preproc_warning] = STATE(5331), - [sym_preproc_define] = STATE(5331), - [sym_preproc_undef] = STATE(5331), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7673), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(7675), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7677), - [anon_sym_var] = ACTIONS(7679), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), + [anon_sym_STAR] = ACTIONS(7208), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -661806,7 +653192,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = 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), + }, + [5331] = { + [sym_preproc_region] = STATE(5331), + [sym_preproc_endregion] = STATE(5331), + [sym_preproc_line] = STATE(5331), + [sym_preproc_pragma] = STATE(5331), + [sym_preproc_nullable] = STATE(5331), + [sym_preproc_error] = STATE(5331), + [sym_preproc_warning] = STATE(5331), + [sym_preproc_define] = STATE(5331), + [sym_preproc_undef] = STATE(5331), + [sym__identifier_token] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3738), + [anon_sym_global] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(8137), + [anon_sym_ref] = ACTIONS(3738), + [anon_sym_delegate] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3738), + [anon_sym_private] = ACTIONS(3738), + [anon_sym_readonly] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_async] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_file] = ACTIONS(3738), + [anon_sym_fixed] = ACTIONS(3738), + [anon_sym_internal] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_partial] = ACTIONS(3738), + [anon_sym_protected] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_sealed] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_where] = ACTIONS(3738), + [anon_sym_notnull] = ACTIONS(3738), + [anon_sym_unmanaged] = ACTIONS(3738), + [anon_sym_scoped] = ACTIONS(3738), + [anon_sym_var] = ACTIONS(3738), + [sym_predefined_type] = ACTIONS(3738), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_when] = ACTIONS(3738), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_into] = ACTIONS(3738), + [anon_sym_join] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_equals] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_orderby] = ACTIONS(3738), + [anon_sym_ascending] = ACTIONS(3738), + [anon_sym_descending] = ACTIONS(3738), + [anon_sym_group] = ACTIONS(3738), + [anon_sym_by] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [sym_grit_metavariable] = ACTIONS(5694), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -661819,6 +653273,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5332] = { + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3172), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(5332), [sym_preproc_endregion] = STATE(5332), [sym_preproc_line] = STATE(5332), @@ -661828,53 +653300,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5332), [sym_preproc_define] = STATE(5332), [sym_preproc_undef] = STATE(5332), - [anon_sym_LBRACK] = ACTIONS(7096), - [anon_sym_COMMA] = ACTIONS(7096), - [anon_sym_LPAREN] = ACTIONS(7096), - [anon_sym_LT] = ACTIONS(7098), - [anon_sym_GT] = ACTIONS(7098), - [anon_sym_where] = ACTIONS(7096), - [anon_sym_QMARK] = ACTIONS(7098), - [anon_sym_BANG] = ACTIONS(7098), - [anon_sym_PLUS_PLUS] = ACTIONS(7096), - [anon_sym_DASH_DASH] = ACTIONS(7096), - [anon_sym_PLUS] = ACTIONS(7098), - [anon_sym_DASH] = ACTIONS(7098), - [anon_sym_STAR] = ACTIONS(7096), - [anon_sym_SLASH] = ACTIONS(7098), - [anon_sym_PERCENT] = ACTIONS(7096), - [anon_sym_CARET] = ACTIONS(7096), - [anon_sym_PIPE] = ACTIONS(7098), - [anon_sym_AMP] = ACTIONS(7098), - [anon_sym_LT_LT] = ACTIONS(7096), - [anon_sym_GT_GT] = ACTIONS(7098), - [anon_sym_GT_GT_GT] = ACTIONS(7096), - [anon_sym_EQ_EQ] = ACTIONS(7096), - [anon_sym_BANG_EQ] = ACTIONS(7096), - [anon_sym_GT_EQ] = ACTIONS(7096), - [anon_sym_LT_EQ] = ACTIONS(7096), - [anon_sym_DOT] = ACTIONS(7098), - [anon_sym_switch] = ACTIONS(7096), - [anon_sym_DOT_DOT] = ACTIONS(7096), - [anon_sym_and] = ACTIONS(7096), - [anon_sym_or] = ACTIONS(7098), - [anon_sym_AMP_AMP] = ACTIONS(7096), - [anon_sym_PIPE_PIPE] = ACTIONS(7096), - [sym_op_coalescing] = ACTIONS(7096), - [anon_sym_from] = ACTIONS(7096), - [anon_sym_into] = ACTIONS(7096), - [anon_sym_join] = ACTIONS(7096), - [anon_sym_let] = ACTIONS(7096), - [anon_sym_orderby] = ACTIONS(7096), - [anon_sym_ascending] = ACTIONS(7096), - [anon_sym_descending] = ACTIONS(7096), - [anon_sym_group] = ACTIONS(7096), - [anon_sym_select] = ACTIONS(7096), - [anon_sym_as] = ACTIONS(7098), - [anon_sym_is] = ACTIONS(7096), - [anon_sym_DASH_GT] = ACTIONS(7096), - [anon_sym_with] = ACTIONS(7096), - [sym_grit_metavariable] = ACTIONS(7096), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4596), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_readonly] = ACTIONS(8139), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7584), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -661896,53 +653350,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5333), [sym_preproc_define] = STATE(5333), [sym_preproc_undef] = STATE(5333), - [anon_sym_LBRACK] = ACTIONS(6357), - [anon_sym_COMMA] = ACTIONS(6357), - [anon_sym_LPAREN] = ACTIONS(6357), - [anon_sym_LT] = ACTIONS(6359), - [anon_sym_GT] = ACTIONS(6359), - [anon_sym_where] = ACTIONS(6357), - [anon_sym_QMARK] = ACTIONS(6359), - [anon_sym_BANG] = ACTIONS(6359), - [anon_sym_PLUS_PLUS] = ACTIONS(6357), - [anon_sym_DASH_DASH] = ACTIONS(6357), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6357), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_PERCENT] = ACTIONS(6357), - [anon_sym_CARET] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6359), - [anon_sym_AMP] = ACTIONS(6359), - [anon_sym_LT_LT] = ACTIONS(6357), - [anon_sym_GT_GT] = ACTIONS(6359), - [anon_sym_GT_GT_GT] = ACTIONS(6357), - [anon_sym_EQ_EQ] = ACTIONS(6357), - [anon_sym_BANG_EQ] = ACTIONS(6357), - [anon_sym_GT_EQ] = ACTIONS(6357), - [anon_sym_LT_EQ] = ACTIONS(6357), - [anon_sym_DOT] = ACTIONS(6359), - [anon_sym_switch] = ACTIONS(6357), - [anon_sym_DOT_DOT] = ACTIONS(6357), - [anon_sym_and] = ACTIONS(6357), - [anon_sym_or] = ACTIONS(6359), - [anon_sym_AMP_AMP] = ACTIONS(6357), - [anon_sym_PIPE_PIPE] = ACTIONS(6357), - [sym_op_coalescing] = ACTIONS(6357), - [anon_sym_from] = ACTIONS(6357), - [anon_sym_into] = ACTIONS(6357), - [anon_sym_join] = ACTIONS(6357), - [anon_sym_let] = ACTIONS(6357), - [anon_sym_orderby] = ACTIONS(6357), - [anon_sym_ascending] = ACTIONS(6357), - [anon_sym_descending] = ACTIONS(6357), - [anon_sym_group] = ACTIONS(6357), - [anon_sym_select] = ACTIONS(6357), - [anon_sym_as] = ACTIONS(6359), - [anon_sym_is] = ACTIONS(6357), - [anon_sym_DASH_GT] = ACTIONS(6357), - [anon_sym_with] = ACTIONS(6357), - [sym_grit_metavariable] = ACTIONS(6357), + [anon_sym_LBRACK] = ACTIONS(5745), + [anon_sym_COMMA] = ACTIONS(5745), + [anon_sym_LPAREN] = ACTIONS(5745), + [anon_sym_LT] = ACTIONS(5747), + [anon_sym_GT] = ACTIONS(5747), + [anon_sym_where] = ACTIONS(5745), + [anon_sym_QMARK] = ACTIONS(5747), + [anon_sym_DOT] = ACTIONS(5747), + [anon_sym_STAR] = ACTIONS(5745), + [anon_sym_switch] = ACTIONS(5745), + [anon_sym_DOT_DOT] = ACTIONS(5745), + [anon_sym_LT_EQ] = ACTIONS(5745), + [anon_sym_GT_EQ] = ACTIONS(5745), + [anon_sym_and] = ACTIONS(5745), + [anon_sym_or] = ACTIONS(5747), + [anon_sym_EQ_EQ] = ACTIONS(5745), + [anon_sym_BANG_EQ] = ACTIONS(5745), + [anon_sym_AMP_AMP] = ACTIONS(5745), + [anon_sym_PIPE_PIPE] = ACTIONS(5745), + [anon_sym_AMP] = ACTIONS(5747), + [sym_op_bitwise_or] = ACTIONS(5747), + [anon_sym_CARET] = ACTIONS(5745), + [sym_op_left_shift] = ACTIONS(5745), + [sym_op_right_shift] = ACTIONS(5747), + [sym_op_unsigned_right_shift] = ACTIONS(5745), + [anon_sym_PLUS] = ACTIONS(5747), + [anon_sym_DASH] = ACTIONS(5747), + [sym_op_divide] = ACTIONS(5747), + [sym_op_modulo] = ACTIONS(5745), + [sym_op_coalescing] = ACTIONS(5745), + [anon_sym_BANG] = ACTIONS(5747), + [anon_sym_PLUS_PLUS] = ACTIONS(5745), + [anon_sym_DASH_DASH] = ACTIONS(5745), + [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(5747), + [anon_sym_is] = ACTIONS(5745), + [anon_sym_DASH_GT] = ACTIONS(5745), + [anon_sym_with] = ACTIONS(5745), + [sym_grit_metavariable] = ACTIONS(5745), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -661955,6 +653409,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5334] = { + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3290), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5334), [sym_preproc_endregion] = STATE(5334), [sym_preproc_line] = STATE(5334), @@ -661964,53 +653436,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5334), [sym_preproc_define] = STATE(5334), [sym_preproc_undef] = STATE(5334), - [anon_sym_LBRACK] = ACTIONS(7092), - [anon_sym_COMMA] = ACTIONS(7092), - [anon_sym_LPAREN] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7094), - [anon_sym_GT] = ACTIONS(7094), - [anon_sym_where] = ACTIONS(7092), - [anon_sym_QMARK] = ACTIONS(7094), - [anon_sym_BANG] = ACTIONS(7094), - [anon_sym_PLUS_PLUS] = ACTIONS(7092), - [anon_sym_DASH_DASH] = ACTIONS(7092), - [anon_sym_PLUS] = ACTIONS(7094), - [anon_sym_DASH] = ACTIONS(7094), - [anon_sym_STAR] = ACTIONS(7092), - [anon_sym_SLASH] = ACTIONS(7094), - [anon_sym_PERCENT] = ACTIONS(7092), - [anon_sym_CARET] = ACTIONS(7092), - [anon_sym_PIPE] = ACTIONS(7094), - [anon_sym_AMP] = ACTIONS(7094), - [anon_sym_LT_LT] = ACTIONS(7092), - [anon_sym_GT_GT] = ACTIONS(7094), - [anon_sym_GT_GT_GT] = ACTIONS(7092), - [anon_sym_EQ_EQ] = ACTIONS(7092), - [anon_sym_BANG_EQ] = ACTIONS(7092), - [anon_sym_GT_EQ] = ACTIONS(7092), - [anon_sym_LT_EQ] = ACTIONS(7092), - [anon_sym_DOT] = ACTIONS(7094), - [anon_sym_switch] = ACTIONS(7092), - [anon_sym_DOT_DOT] = ACTIONS(7092), - [anon_sym_and] = ACTIONS(7092), - [anon_sym_or] = ACTIONS(7094), - [anon_sym_AMP_AMP] = ACTIONS(7092), - [anon_sym_PIPE_PIPE] = ACTIONS(7092), - [sym_op_coalescing] = ACTIONS(7092), - [anon_sym_from] = ACTIONS(7092), - [anon_sym_into] = ACTIONS(7092), - [anon_sym_join] = ACTIONS(7092), - [anon_sym_let] = ACTIONS(7092), - [anon_sym_orderby] = ACTIONS(7092), - [anon_sym_ascending] = ACTIONS(7092), - [anon_sym_descending] = ACTIONS(7092), - [anon_sym_group] = ACTIONS(7092), - [anon_sym_select] = ACTIONS(7092), - [anon_sym_as] = ACTIONS(7094), - [anon_sym_is] = ACTIONS(7092), - [anon_sym_DASH_GT] = ACTIONS(7092), - [anon_sym_with] = ACTIONS(7092), - [sym_grit_metavariable] = ACTIONS(7092), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4590), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_readonly] = ACTIONS(8141), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7538), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -662023,6 +653477,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5335] = { + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3172), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(5335), [sym_preproc_endregion] = STATE(5335), [sym_preproc_line] = STATE(5335), @@ -662032,53 +653504,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5335), [sym_preproc_define] = STATE(5335), [sym_preproc_undef] = STATE(5335), - [anon_sym_LBRACK] = ACTIONS(7025), - [anon_sym_COMMA] = ACTIONS(7025), - [anon_sym_LPAREN] = ACTIONS(7025), - [anon_sym_LT] = ACTIONS(7027), - [anon_sym_GT] = ACTIONS(7027), - [anon_sym_where] = ACTIONS(7025), - [anon_sym_QMARK] = ACTIONS(7027), - [anon_sym_BANG] = ACTIONS(7027), - [anon_sym_PLUS_PLUS] = ACTIONS(7025), - [anon_sym_DASH_DASH] = ACTIONS(7025), - [anon_sym_PLUS] = ACTIONS(7027), - [anon_sym_DASH] = ACTIONS(7027), - [anon_sym_STAR] = ACTIONS(7025), - [anon_sym_SLASH] = ACTIONS(7027), - [anon_sym_PERCENT] = ACTIONS(7025), - [anon_sym_CARET] = ACTIONS(7025), - [anon_sym_PIPE] = ACTIONS(7027), - [anon_sym_AMP] = ACTIONS(7027), - [anon_sym_LT_LT] = ACTIONS(7025), - [anon_sym_GT_GT] = ACTIONS(7027), - [anon_sym_GT_GT_GT] = ACTIONS(7025), - [anon_sym_EQ_EQ] = ACTIONS(7025), - [anon_sym_BANG_EQ] = ACTIONS(7025), - [anon_sym_GT_EQ] = ACTIONS(7025), - [anon_sym_LT_EQ] = ACTIONS(7025), - [anon_sym_DOT] = ACTIONS(7027), - [anon_sym_switch] = ACTIONS(7025), - [anon_sym_DOT_DOT] = ACTIONS(7025), - [anon_sym_and] = ACTIONS(7639), - [anon_sym_or] = ACTIONS(7667), - [anon_sym_AMP_AMP] = ACTIONS(7025), - [anon_sym_PIPE_PIPE] = ACTIONS(7025), - [sym_op_coalescing] = ACTIONS(7025), - [anon_sym_from] = ACTIONS(7025), - [anon_sym_into] = ACTIONS(7025), - [anon_sym_join] = ACTIONS(7025), - [anon_sym_let] = ACTIONS(7025), - [anon_sym_orderby] = ACTIONS(7025), - [anon_sym_ascending] = ACTIONS(7025), - [anon_sym_descending] = ACTIONS(7025), - [anon_sym_group] = ACTIONS(7025), - [anon_sym_select] = ACTIONS(7025), - [anon_sym_as] = ACTIONS(7027), - [anon_sym_is] = ACTIONS(7025), - [anon_sym_DASH_GT] = ACTIONS(7025), - [anon_sym_with] = ACTIONS(7025), - [sym_grit_metavariable] = ACTIONS(7025), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4602), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_readonly] = ACTIONS(8143), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7574), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -662091,6 +653545,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5336] = { + [sym__name] = STATE(5847), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(5576), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(5336), [sym_preproc_endregion] = STATE(5336), [sym_preproc_line] = STATE(5336), @@ -662100,53 +653563,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5336), [sym_preproc_define] = STATE(5336), [sym_preproc_undef] = STATE(5336), - [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), - [sym_op_coalescing] = ACTIONS(5999), - [anon_sym_from] = ACTIONS(5999), - [anon_sym_into] = ACTIONS(5999), - [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), - [sym_grit_metavariable] = ACTIONS(5999), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3894), + [anon_sym_global] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3930), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3894), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_where] = ACTIONS(3894), + [anon_sym_QMARK] = ACTIONS(3694), + [anon_sym_notnull] = ACTIONS(3894), + [anon_sym_unmanaged] = ACTIONS(3894), + [anon_sym_DOT] = ACTIONS(3694), + [anon_sym_scoped] = ACTIONS(3894), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3894), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3894), + [anon_sym_when] = ACTIONS(3894), + [sym_discard] = ACTIONS(3696), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3894), + [anon_sym_into] = ACTIONS(3894), + [anon_sym_join] = ACTIONS(3894), + [anon_sym_on] = ACTIONS(3894), + [anon_sym_equals] = ACTIONS(3894), + [anon_sym_let] = ACTIONS(3894), + [anon_sym_orderby] = ACTIONS(3894), + [anon_sym_ascending] = ACTIONS(3894), + [anon_sym_descending] = ACTIONS(3894), + [anon_sym_group] = ACTIONS(3894), + [anon_sym_by] = ACTIONS(3894), + [anon_sym_select] = ACTIONS(3894), + [sym_grit_metavariable] = ACTIONS(3897), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -662159,6 +653613,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5337] = { + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4186), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(5662), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5337), [sym_preproc_endregion] = STATE(5337), [sym_preproc_line] = STATE(5337), @@ -662168,53 +653640,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5337), [sym_preproc_define] = STATE(5337), [sym_preproc_undef] = STATE(5337), - [anon_sym_LBRACK] = ACTIONS(6166), - [anon_sym_COMMA] = ACTIONS(6166), - [anon_sym_LPAREN] = ACTIONS(6166), - [anon_sym_LT] = ACTIONS(6168), - [anon_sym_GT] = ACTIONS(6168), - [anon_sym_where] = ACTIONS(6166), - [anon_sym_QMARK] = ACTIONS(6168), - [anon_sym_BANG] = ACTIONS(6168), - [anon_sym_PLUS_PLUS] = ACTIONS(6166), - [anon_sym_DASH_DASH] = ACTIONS(6166), - [anon_sym_PLUS] = ACTIONS(6168), - [anon_sym_DASH] = ACTIONS(6168), - [anon_sym_STAR] = ACTIONS(6166), - [anon_sym_SLASH] = ACTIONS(6168), - [anon_sym_PERCENT] = ACTIONS(6166), - [anon_sym_CARET] = ACTIONS(6166), - [anon_sym_PIPE] = ACTIONS(6168), - [anon_sym_AMP] = ACTIONS(6168), - [anon_sym_LT_LT] = ACTIONS(6166), - [anon_sym_GT_GT] = ACTIONS(6168), - [anon_sym_GT_GT_GT] = ACTIONS(6166), - [anon_sym_EQ_EQ] = ACTIONS(6166), - [anon_sym_BANG_EQ] = ACTIONS(6166), - [anon_sym_GT_EQ] = ACTIONS(6166), - [anon_sym_LT_EQ] = ACTIONS(6166), - [anon_sym_DOT] = ACTIONS(6168), - [anon_sym_switch] = ACTIONS(6166), - [anon_sym_DOT_DOT] = ACTIONS(6166), - [anon_sym_and] = ACTIONS(6166), - [anon_sym_or] = ACTIONS(6168), - [anon_sym_AMP_AMP] = ACTIONS(6166), - [anon_sym_PIPE_PIPE] = ACTIONS(6166), - [sym_op_coalescing] = ACTIONS(6166), - [anon_sym_from] = ACTIONS(6166), - [anon_sym_into] = ACTIONS(6166), - [anon_sym_join] = ACTIONS(6166), - [anon_sym_let] = ACTIONS(6166), - [anon_sym_orderby] = ACTIONS(6166), - [anon_sym_ascending] = ACTIONS(6166), - [anon_sym_descending] = ACTIONS(6166), - [anon_sym_group] = ACTIONS(6166), - [anon_sym_select] = ACTIONS(6166), - [anon_sym_as] = ACTIONS(6168), - [anon_sym_is] = ACTIONS(6166), - [anon_sym_DASH_GT] = ACTIONS(6166), - [anon_sym_with] = ACTIONS(6166), - [sym_grit_metavariable] = ACTIONS(6166), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4437), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7490), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -662236,53 +653689,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5338), [sym_preproc_define] = STATE(5338), [sym_preproc_undef] = STATE(5338), - [anon_sym_LBRACK] = ACTIONS(7088), - [anon_sym_COMMA] = ACTIONS(7088), - [anon_sym_LPAREN] = ACTIONS(7088), - [anon_sym_LT] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7090), - [anon_sym_where] = ACTIONS(7088), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_BANG] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7088), - [anon_sym_DASH_DASH] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_STAR] = ACTIONS(7088), - [anon_sym_SLASH] = ACTIONS(7090), - [anon_sym_PERCENT] = ACTIONS(7088), - [anon_sym_CARET] = ACTIONS(7088), - [anon_sym_PIPE] = ACTIONS(7090), - [anon_sym_AMP] = ACTIONS(7090), - [anon_sym_LT_LT] = ACTIONS(7088), - [anon_sym_GT_GT] = ACTIONS(7090), - [anon_sym_GT_GT_GT] = ACTIONS(7088), - [anon_sym_EQ_EQ] = ACTIONS(7088), - [anon_sym_BANG_EQ] = ACTIONS(7088), - [anon_sym_GT_EQ] = ACTIONS(7088), - [anon_sym_LT_EQ] = ACTIONS(7088), - [anon_sym_DOT] = ACTIONS(7090), - [anon_sym_switch] = ACTIONS(7088), - [anon_sym_DOT_DOT] = ACTIONS(7088), - [anon_sym_and] = ACTIONS(7088), - [anon_sym_or] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7088), - [anon_sym_PIPE_PIPE] = ACTIONS(7088), - [sym_op_coalescing] = ACTIONS(7088), - [anon_sym_from] = ACTIONS(7088), - [anon_sym_into] = ACTIONS(7088), - [anon_sym_join] = ACTIONS(7088), - [anon_sym_let] = ACTIONS(7088), - [anon_sym_orderby] = ACTIONS(7088), - [anon_sym_ascending] = ACTIONS(7088), - [anon_sym_descending] = ACTIONS(7088), - [anon_sym_group] = ACTIONS(7088), - [anon_sym_select] = ACTIONS(7088), - [anon_sym_as] = ACTIONS(7090), - [anon_sym_is] = ACTIONS(7088), - [anon_sym_DASH_GT] = ACTIONS(7088), - [anon_sym_with] = ACTIONS(7088), - [sym_grit_metavariable] = ACTIONS(7088), + [aux_sym_query_body_repeat2] = STATE(5359), + [anon_sym_LBRACK] = ACTIONS(7903), + [anon_sym_COMMA] = ACTIONS(7903), + [anon_sym_LPAREN] = ACTIONS(7903), + [anon_sym_LT] = ACTIONS(7905), + [anon_sym_GT] = ACTIONS(7905), + [anon_sym_where] = ACTIONS(7903), + [anon_sym_QMARK] = ACTIONS(7905), + [anon_sym_DOT] = ACTIONS(7905), + [anon_sym_STAR] = ACTIONS(7903), + [anon_sym_switch] = ACTIONS(7903), + [anon_sym_DOT_DOT] = ACTIONS(7903), + [anon_sym_LT_EQ] = ACTIONS(7903), + [anon_sym_GT_EQ] = ACTIONS(7903), + [anon_sym_EQ_EQ] = ACTIONS(7903), + [anon_sym_BANG_EQ] = ACTIONS(7903), + [anon_sym_AMP_AMP] = ACTIONS(7903), + [anon_sym_PIPE_PIPE] = ACTIONS(7903), + [anon_sym_AMP] = ACTIONS(7905), + [sym_op_bitwise_or] = ACTIONS(7905), + [anon_sym_CARET] = ACTIONS(7903), + [sym_op_left_shift] = ACTIONS(7903), + [sym_op_right_shift] = ACTIONS(7905), + [sym_op_unsigned_right_shift] = ACTIONS(7903), + [anon_sym_PLUS] = ACTIONS(7905), + [anon_sym_DASH] = ACTIONS(7905), + [sym_op_divide] = ACTIONS(7905), + [sym_op_modulo] = ACTIONS(7903), + [sym_op_coalescing] = ACTIONS(7903), + [anon_sym_BANG] = ACTIONS(7905), + [anon_sym_PLUS_PLUS] = ACTIONS(7903), + [anon_sym_DASH_DASH] = ACTIONS(7903), + [anon_sym_from] = ACTIONS(7903), + [anon_sym_into] = ACTIONS(8145), + [anon_sym_join] = ACTIONS(7903), + [anon_sym_let] = ACTIONS(7903), + [anon_sym_orderby] = ACTIONS(7903), + [anon_sym_ascending] = ACTIONS(7903), + [anon_sym_descending] = ACTIONS(7903), + [anon_sym_group] = ACTIONS(7903), + [anon_sym_select] = ACTIONS(7903), + [anon_sym_as] = ACTIONS(7905), + [anon_sym_is] = ACTIONS(7903), + [anon_sym_DASH_GT] = ACTIONS(7903), + [anon_sym_with] = ACTIONS(7903), + [sym_grit_metavariable] = ACTIONS(7903), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -662295,6 +653747,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5339] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(2371), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5339), [sym_preproc_endregion] = STATE(5339), [sym_preproc_line] = STATE(5339), @@ -662304,53 +653774,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5339), [sym_preproc_define] = STATE(5339), [sym_preproc_undef] = STATE(5339), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_COMMA] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_where] = ACTIONS(6347), - [anon_sym_QMARK] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PLUS_PLUS] = ACTIONS(6347), - [anon_sym_DASH_DASH] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6349), - [anon_sym_DASH] = ACTIONS(6349), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6349), - [anon_sym_PERCENT] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_AMP] = ACTIONS(6349), - [anon_sym_LT_LT] = ACTIONS(6347), - [anon_sym_GT_GT] = ACTIONS(6349), - [anon_sym_GT_GT_GT] = ACTIONS(6347), - [anon_sym_EQ_EQ] = ACTIONS(6347), - [anon_sym_BANG_EQ] = ACTIONS(6347), - [anon_sym_GT_EQ] = ACTIONS(6347), - [anon_sym_LT_EQ] = ACTIONS(6347), - [anon_sym_DOT] = ACTIONS(6349), - [anon_sym_switch] = ACTIONS(6347), - [anon_sym_DOT_DOT] = ACTIONS(6347), - [anon_sym_and] = ACTIONS(6347), - [anon_sym_or] = ACTIONS(6349), - [anon_sym_AMP_AMP] = ACTIONS(6347), - [anon_sym_PIPE_PIPE] = ACTIONS(6347), - [sym_op_coalescing] = ACTIONS(6347), - [anon_sym_from] = ACTIONS(6347), - [anon_sym_into] = ACTIONS(6347), - [anon_sym_join] = ACTIONS(6347), - [anon_sym_let] = ACTIONS(6347), - [anon_sym_orderby] = ACTIONS(6347), - [anon_sym_ascending] = ACTIONS(6347), - [anon_sym_descending] = ACTIONS(6347), - [anon_sym_group] = ACTIONS(6347), - [anon_sym_select] = ACTIONS(6347), - [anon_sym_as] = ACTIONS(6349), - [anon_sym_is] = ACTIONS(6347), - [anon_sym_DASH_GT] = ACTIONS(6347), - [anon_sym_with] = ACTIONS(6347), - [sym_grit_metavariable] = ACTIONS(6347), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8047), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8051), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -662363,6 +653814,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5340] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6831), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5340), [sym_preproc_endregion] = STATE(5340), [sym_preproc_line] = STATE(5340), @@ -662372,53 +653841,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5340), [sym_preproc_define] = STATE(5340), [sym_preproc_undef] = STATE(5340), - [anon_sym_LBRACK] = ACTIONS(4748), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(4748), - [anon_sym_LT] = ACTIONS(4750), - [anon_sym_GT] = ACTIONS(4750), - [anon_sym_where] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(4750), - [anon_sym_BANG] = ACTIONS(4750), - [anon_sym_PLUS_PLUS] = ACTIONS(4748), - [anon_sym_DASH_DASH] = ACTIONS(4748), - [anon_sym_PLUS] = ACTIONS(4750), - [anon_sym_DASH] = ACTIONS(4750), - [anon_sym_STAR] = ACTIONS(4748), - [anon_sym_SLASH] = ACTIONS(4750), - [anon_sym_PERCENT] = ACTIONS(4748), - [anon_sym_CARET] = ACTIONS(4748), - [anon_sym_PIPE] = ACTIONS(4750), - [anon_sym_AMP] = ACTIONS(4750), - [anon_sym_LT_LT] = ACTIONS(4748), - [anon_sym_GT_GT] = ACTIONS(4750), - [anon_sym_GT_GT_GT] = ACTIONS(4748), - [anon_sym_EQ_EQ] = ACTIONS(4748), - [anon_sym_BANG_EQ] = ACTIONS(4748), - [anon_sym_GT_EQ] = ACTIONS(4748), - [anon_sym_LT_EQ] = ACTIONS(4748), - [anon_sym_DOT] = ACTIONS(4750), - [anon_sym_switch] = ACTIONS(4748), - [anon_sym_DOT_DOT] = ACTIONS(4748), - [anon_sym_and] = ACTIONS(4748), - [anon_sym_or] = ACTIONS(4750), - [anon_sym_AMP_AMP] = ACTIONS(4748), - [anon_sym_PIPE_PIPE] = ACTIONS(4748), - [sym_op_coalescing] = ACTIONS(4748), - [anon_sym_from] = ACTIONS(4748), - [anon_sym_into] = ACTIONS(4748), - [anon_sym_join] = ACTIONS(4748), - [anon_sym_let] = ACTIONS(4748), - [anon_sym_orderby] = ACTIONS(4748), - [anon_sym_ascending] = ACTIONS(4748), - [anon_sym_descending] = ACTIONS(4748), - [anon_sym_group] = ACTIONS(4748), - [anon_sym_select] = ACTIONS(4748), - [anon_sym_as] = ACTIONS(4750), - [anon_sym_is] = ACTIONS(4748), - [anon_sym_DASH_GT] = ACTIONS(4748), - [anon_sym_with] = ACTIONS(4748), - [sym_grit_metavariable] = ACTIONS(4748), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8047), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8051), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -662431,6 +653881,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5341] = { + [sym__name] = STATE(5640), + [sym_alias_qualified_name] = STATE(5591), + [sym__simple_name] = STATE(5591), + [sym_qualified_name] = STATE(5591), + [sym_generic_name] = STATE(5632), + [sym_type] = STATE(5757), + [sym_implicit_type] = STATE(5601), + [sym_array_type] = STATE(5638), + [sym__array_base_type] = STATE(7416), + [sym_nullable_type] = STATE(5629), + [sym_pointer_type] = STATE(5629), + [sym__pointer_base_type] = STATE(8041), + [sym_function_pointer_type] = STATE(5629), + [sym_ref_type] = STATE(5601), + [sym_scoped_type] = STATE(5601), + [sym_tuple_type] = STATE(5626), + [sym_identifier] = STATE(5537), + [sym__reserved_identifier] = STATE(5554), [sym_preproc_region] = STATE(5341), [sym_preproc_endregion] = STATE(5341), [sym_preproc_line] = STATE(5341), @@ -662440,53 +653908,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5341), [sym_preproc_define] = STATE(5341), [sym_preproc_undef] = STATE(5341), - [anon_sym_LBRACK] = ACTIONS(6059), - [anon_sym_COMMA] = ACTIONS(6059), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_where] = ACTIONS(6059), - [anon_sym_QMARK] = ACTIONS(6061), - [anon_sym_BANG] = ACTIONS(6061), - [anon_sym_PLUS_PLUS] = ACTIONS(6059), - [anon_sym_DASH_DASH] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6061), - [anon_sym_DASH] = ACTIONS(6061), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6061), - [anon_sym_PERCENT] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - [anon_sym_LT_LT] = ACTIONS(6059), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_GT_GT_GT] = ACTIONS(6059), - [anon_sym_EQ_EQ] = ACTIONS(6059), - [anon_sym_BANG_EQ] = ACTIONS(6059), - [anon_sym_GT_EQ] = ACTIONS(6059), - [anon_sym_LT_EQ] = ACTIONS(6059), - [anon_sym_DOT] = ACTIONS(6061), - [anon_sym_switch] = ACTIONS(6059), - [anon_sym_DOT_DOT] = ACTIONS(6059), - [anon_sym_and] = ACTIONS(6059), - [anon_sym_or] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [sym_op_coalescing] = ACTIONS(6059), - [anon_sym_from] = ACTIONS(6059), - [anon_sym_into] = ACTIONS(6059), - [anon_sym_join] = ACTIONS(6059), - [anon_sym_let] = ACTIONS(6059), - [anon_sym_orderby] = ACTIONS(6059), - [anon_sym_ascending] = ACTIONS(6059), - [anon_sym_descending] = ACTIONS(6059), - [anon_sym_group] = ACTIONS(6059), - [anon_sym_select] = ACTIONS(6059), - [anon_sym_as] = ACTIONS(6061), - [anon_sym_is] = ACTIONS(6059), - [anon_sym_DASH_GT] = ACTIONS(6059), - [anon_sym_with] = ACTIONS(6059), - [sym_grit_metavariable] = ACTIONS(6059), + [sym__identifier_token] = ACTIONS(4318), + [anon_sym_alias] = ACTIONS(4320), + [anon_sym_global] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(8043), + [anon_sym_ref] = ACTIONS(4333), + [anon_sym_delegate] = ACTIONS(7466), + [anon_sym_file] = ACTIONS(4320), + [anon_sym_where] = ACTIONS(4320), + [anon_sym_notnull] = ACTIONS(4320), + [anon_sym_unmanaged] = ACTIONS(4320), + [anon_sym_scoped] = ACTIONS(7859), + [anon_sym_var] = ACTIONS(7470), + [sym_predefined_type] = ACTIONS(7472), + [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), + [sym_grit_metavariable] = ACTIONS(4327), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -662499,6 +653948,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5342] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7825), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5342), [sym_preproc_endregion] = STATE(5342), [sym_preproc_line] = STATE(5342), @@ -662508,104 +653975,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5342), [sym_preproc_define] = STATE(5342), [sym_preproc_undef] = STATE(5342), - [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(6067), - [anon_sym_or] = ACTIONS(6069), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [sym_op_coalescing] = ACTIONS(6067), - [anon_sym_from] = ACTIONS(6067), - [anon_sym_into] = ACTIONS(6067), - [anon_sym_join] = ACTIONS(6067), - [anon_sym_let] = ACTIONS(6067), - [anon_sym_orderby] = ACTIONS(6067), - [anon_sym_ascending] = ACTIONS(6067), - [anon_sym_descending] = ACTIONS(6067), - [anon_sym_group] = ACTIONS(6067), - [anon_sym_select] = ACTIONS(6067), - [anon_sym_as] = ACTIONS(6069), - [anon_sym_is] = ACTIONS(6067), - [anon_sym_DASH_GT] = ACTIONS(6067), - [anon_sym_with] = ACTIONS(6067), - [sym_grit_metavariable] = ACTIONS(6067), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5343] = { - [sym__name] = STATE(6589), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6646), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6559), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5343), - [sym_preproc_endregion] = STATE(5343), - [sym_preproc_line] = STATE(5343), - [sym_preproc_pragma] = STATE(5343), - [sym_preproc_nullable] = STATE(5343), - [sym_preproc_error] = STATE(5343), - [sym_preproc_warning] = STATE(5343), - [sym_preproc_define] = STATE(5343), - [sym_preproc_undef] = STATE(5343), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7673), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7677), - [anon_sym_var] = ACTIONS(7679), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -662621,7 +654002,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = 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), + }, + [5343] = { + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4186), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), + [sym_preproc_region] = STATE(5343), + [sym_preproc_endregion] = STATE(5343), + [sym_preproc_line] = STATE(5343), + [sym_preproc_pragma] = STATE(5343), + [sym_preproc_nullable] = STATE(5343), + [sym_preproc_error] = STATE(5343), + [sym_preproc_warning] = STATE(5343), + [sym_preproc_define] = STATE(5343), + [sym_preproc_undef] = STATE(5343), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4476), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7520), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -662634,24 +654082,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5344] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6383), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6087), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5344), [sym_preproc_endregion] = STATE(5344), [sym_preproc_line] = STATE(5344), @@ -662661,34 +654091,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5344), [sym_preproc_define] = STATE(5344), [sym_preproc_undef] = STATE(5344), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(6885), + [anon_sym_COMMA] = ACTIONS(6885), + [anon_sym_LPAREN] = ACTIONS(6885), + [anon_sym_LT] = ACTIONS(6887), + [anon_sym_GT] = ACTIONS(6887), + [anon_sym_where] = ACTIONS(6885), + [anon_sym_QMARK] = ACTIONS(6887), + [anon_sym_DOT] = ACTIONS(6887), + [anon_sym_STAR] = ACTIONS(6885), + [anon_sym_switch] = ACTIONS(6885), + [anon_sym_DOT_DOT] = ACTIONS(6885), + [anon_sym_LT_EQ] = ACTIONS(6885), + [anon_sym_GT_EQ] = ACTIONS(6885), + [anon_sym_and] = ACTIONS(8147), + [anon_sym_or] = ACTIONS(8149), + [anon_sym_EQ_EQ] = ACTIONS(6885), + [anon_sym_BANG_EQ] = ACTIONS(6885), + [anon_sym_AMP_AMP] = ACTIONS(6885), + [anon_sym_PIPE_PIPE] = ACTIONS(6885), + [anon_sym_AMP] = ACTIONS(6887), + [sym_op_bitwise_or] = ACTIONS(6887), + [anon_sym_CARET] = ACTIONS(6885), + [sym_op_left_shift] = ACTIONS(6885), + [sym_op_right_shift] = ACTIONS(6887), + [sym_op_unsigned_right_shift] = ACTIONS(6885), + [anon_sym_PLUS] = ACTIONS(6887), + [anon_sym_DASH] = ACTIONS(6887), + [sym_op_divide] = ACTIONS(6887), + [sym_op_modulo] = ACTIONS(6885), + [sym_op_coalescing] = ACTIONS(6885), + [anon_sym_BANG] = ACTIONS(6887), + [anon_sym_PLUS_PLUS] = ACTIONS(6885), + [anon_sym_DASH_DASH] = ACTIONS(6885), + [anon_sym_from] = ACTIONS(6885), + [anon_sym_join] = ACTIONS(6885), + [anon_sym_let] = ACTIONS(6885), + [anon_sym_orderby] = ACTIONS(6885), + [anon_sym_ascending] = ACTIONS(6885), + [anon_sym_descending] = ACTIONS(6885), + [anon_sym_group] = ACTIONS(6885), + [anon_sym_select] = ACTIONS(6885), + [anon_sym_as] = ACTIONS(6887), + [anon_sym_is] = ACTIONS(6885), + [anon_sym_DASH_GT] = ACTIONS(6885), + [anon_sym_with] = ACTIONS(6885), + [sym_grit_metavariable] = ACTIONS(6885), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -662701,24 +654149,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5345] = { - [sym__name] = STATE(2457), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_type] = STATE(2376), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_identifier] = STATE(2392), - [sym__reserved_identifier] = STATE(2395), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(2371), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5345), [sym_preproc_endregion] = STATE(5345), [sym_preproc_line] = STATE(5345), @@ -662728,85 +654176,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5345), [sym_preproc_define] = STATE(5345), [sym_preproc_undef] = STATE(5345), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(7520), - [anon_sym_ref] = ACTIONS(4462), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_where] = ACTIONS(4450), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_scoped] = ACTIONS(7427), - [anon_sym_var] = ACTIONS(7270), - [sym_predefined_type] = ACTIONS(7272), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_from] = ACTIONS(4450), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4450), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4450), - [anon_sym_orderby] = ACTIONS(4450), - [anon_sym_ascending] = ACTIONS(4450), - [anon_sym_descending] = ACTIONS(4450), - [anon_sym_group] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [sym_grit_metavariable] = ACTIONS(7274), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5346] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8085), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5346), - [sym_preproc_endregion] = STATE(5346), - [sym_preproc_line] = STATE(5346), - [sym_preproc_pragma] = STATE(5346), - [sym_preproc_nullable] = STATE(5346), - [sym_preproc_error] = STATE(5346), - [sym_preproc_warning] = STATE(5346), - [sym_preproc_define] = STATE(5346), - [sym_preproc_undef] = STATE(5346), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -662822,7 +654203,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = 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), + }, + [5346] = { + [sym_preproc_region] = STATE(5346), + [sym_preproc_endregion] = STATE(5346), + [sym_preproc_line] = STATE(5346), + [sym_preproc_pragma] = STATE(5346), + [sym_preproc_nullable] = STATE(5346), + [sym_preproc_error] = STATE(5346), + [sym_preproc_warning] = STATE(5346), + [sym_preproc_define] = STATE(5346), + [sym_preproc_undef] = STATE(5346), + [aux_sym_query_body_repeat2] = STATE(5338), + [anon_sym_LBRACK] = ACTIONS(7897), + [anon_sym_COMMA] = ACTIONS(7897), + [anon_sym_LPAREN] = ACTIONS(7897), + [anon_sym_LT] = ACTIONS(7899), + [anon_sym_GT] = ACTIONS(7899), + [anon_sym_where] = ACTIONS(7897), + [anon_sym_QMARK] = ACTIONS(7899), + [anon_sym_DOT] = ACTIONS(7899), + [anon_sym_STAR] = ACTIONS(7897), + [anon_sym_switch] = ACTIONS(7897), + [anon_sym_DOT_DOT] = ACTIONS(7897), + [anon_sym_LT_EQ] = ACTIONS(7897), + [anon_sym_GT_EQ] = ACTIONS(7897), + [anon_sym_EQ_EQ] = ACTIONS(7897), + [anon_sym_BANG_EQ] = ACTIONS(7897), + [anon_sym_AMP_AMP] = ACTIONS(7897), + [anon_sym_PIPE_PIPE] = ACTIONS(7897), + [anon_sym_AMP] = ACTIONS(7899), + [sym_op_bitwise_or] = ACTIONS(7899), + [anon_sym_CARET] = ACTIONS(7897), + [sym_op_left_shift] = ACTIONS(7897), + [sym_op_right_shift] = ACTIONS(7899), + [sym_op_unsigned_right_shift] = ACTIONS(7897), + [anon_sym_PLUS] = ACTIONS(7899), + [anon_sym_DASH] = ACTIONS(7899), + [sym_op_divide] = ACTIONS(7899), + [sym_op_modulo] = ACTIONS(7897), + [sym_op_coalescing] = ACTIONS(7897), + [anon_sym_BANG] = ACTIONS(7899), + [anon_sym_PLUS_PLUS] = ACTIONS(7897), + [anon_sym_DASH_DASH] = ACTIONS(7897), + [anon_sym_from] = ACTIONS(7897), + [anon_sym_into] = ACTIONS(8145), + [anon_sym_join] = ACTIONS(7897), + [anon_sym_let] = ACTIONS(7897), + [anon_sym_orderby] = ACTIONS(7897), + [anon_sym_ascending] = ACTIONS(7897), + [anon_sym_descending] = ACTIONS(7897), + [anon_sym_group] = ACTIONS(7897), + [anon_sym_select] = ACTIONS(7897), + [anon_sym_as] = ACTIONS(7899), + [anon_sym_is] = ACTIONS(7897), + [anon_sym_DASH_GT] = ACTIONS(7897), + [anon_sym_with] = ACTIONS(7897), + [sym_grit_metavariable] = ACTIONS(7897), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -662835,24 +654283,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5347] = { - [sym__name] = STATE(6589), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(2376), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6559), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(5857), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3309), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(5614), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5347), [sym_preproc_endregion] = STATE(5347), [sym_preproc_line] = STATE(5347), @@ -662862,18 +654310,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5347), [sym_preproc_define] = STATE(5347), [sym_preproc_undef] = STATE(5347), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4373), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7699), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5348] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7898), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(5348), + [sym_preproc_endregion] = STATE(5348), + [sym_preproc_line] = STATE(5348), + [sym_preproc_pragma] = STATE(5348), + [sym_preproc_nullable] = STATE(5348), + [sym_preproc_error] = STATE(5348), + [sym_preproc_warning] = STATE(5348), + [sym_preproc_define] = STATE(5348), + [sym_preproc_undef] = STATE(5348), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7673), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7677), - [anon_sym_var] = ACTIONS(7679), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -662889,74 +654404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [5348] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(5050), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), - [sym_preproc_region] = STATE(5348), - [sym_preproc_endregion] = STATE(5348), - [sym_preproc_line] = STATE(5348), - [sym_preproc_pragma] = STATE(5348), - [sym_preproc_nullable] = STATE(5348), - [sym_preproc_error] = STATE(5348), - [sym_preproc_warning] = STATE(5348), - [sym_preproc_define] = STATE(5348), - [sym_preproc_undef] = STATE(5348), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4143), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7415), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -662969,24 +654417,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5349] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(2376), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7413), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5349), [sym_preproc_endregion] = STATE(5349), [sym_preproc_line] = STATE(5349), @@ -663000,15 +654448,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3938), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7524), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -663023,7 +654471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -663036,24 +654484,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5350] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6363), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7377), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5350), [sym_preproc_endregion] = STATE(5350), [sym_preproc_line] = STATE(5350), @@ -663067,15 +654515,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3938), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(7922), + [anon_sym_delegate] = ACTIONS(5682), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7524), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), + [anon_sym_scoped] = ACTIONS(6703), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(5690), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -663090,7 +654538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -663103,15 +654551,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5351] = { - [sym__name] = STATE(6149), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(2208), - [sym_ref_type] = STATE(2380), - [sym__scoped_base_type] = STATE(2369), - [sym_identifier] = STATE(6038), - [sym__reserved_identifier] = STATE(2206), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7899), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5351), [sym_preproc_endregion] = STATE(5351), [sym_preproc_line] = STATE(5351), @@ -663121,43 +654578,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5351), [sym_preproc_define] = STATE(5351), [sym_preproc_undef] = STATE(5351), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3894), - [anon_sym_global] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_ref] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3696), - [anon_sym_notnull] = ACTIONS(3894), - [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3894), - [anon_sym_yield] = ACTIONS(3894), - [anon_sym_when] = ACTIONS(3894), - [sym_discard] = ACTIONS(3698), - [anon_sym_and] = ACTIONS(3698), - [anon_sym_or] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3894), - [anon_sym_into] = ACTIONS(3894), - [anon_sym_join] = ACTIONS(3894), - [anon_sym_on] = ACTIONS(3894), - [anon_sym_equals] = ACTIONS(3894), - [anon_sym_let] = ACTIONS(3894), - [anon_sym_orderby] = ACTIONS(3894), - [anon_sym_ascending] = ACTIONS(3894), - [anon_sym_descending] = ACTIONS(3894), - [anon_sym_group] = ACTIONS(3894), - [anon_sym_by] = ACTIONS(3894), - [anon_sym_select] = ACTIONS(3894), - [sym_grit_metavariable] = ACTIONS(3897), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -663170,24 +654618,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5352] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4188), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8131), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5352), [sym_preproc_endregion] = STATE(5352), [sym_preproc_line] = STATE(5352), @@ -663197,85 +654645,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5352), [sym_preproc_define] = STATE(5352), [sym_preproc_undef] = STATE(5352), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(4373), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5353] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6857), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5353), - [sym_preproc_endregion] = STATE(5353), - [sym_preproc_line] = STATE(5353), - [sym_preproc_pragma] = STATE(5353), - [sym_preproc_nullable] = STATE(5353), - [sym_preproc_error] = STATE(5353), - [sym_preproc_warning] = STATE(5353), - [sym_preproc_define] = STATE(5353), - [sym_preproc_undef] = STATE(5353), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7013), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8047), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7021), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(8051), + [anon_sym_var] = ACTIONS(5320), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -663291,7 +654672,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = 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), + }, + [5353] = { + [sym__name] = STATE(5481), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3218), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(5429), + [sym__reserved_identifier] = STATE(3071), + [sym_preproc_region] = STATE(5353), + [sym_preproc_endregion] = STATE(5353), + [sym_preproc_line] = STATE(5353), + [sym_preproc_pragma] = STATE(5353), + [sym_preproc_nullable] = STATE(5353), + [sym_preproc_error] = STATE(5353), + [sym_preproc_warning] = STATE(5353), + [sym_preproc_define] = STATE(5353), + [sym_preproc_undef] = STATE(5353), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4494), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7392), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -663304,24 +654752,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5354] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(3767), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3309), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5354), [sym_preproc_endregion] = STATE(5354), [sym_preproc_line] = STATE(5354), @@ -663331,34 +654779,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5354), [sym_preproc_define] = STATE(5354), [sym_preproc_undef] = STATE(5354), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4604), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7380), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4496), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7742), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -663372,23 +654820,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5355] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(2376), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6406), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6096), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5355), [sym_preproc_endregion] = STATE(5355), [sym_preproc_line] = STATE(5355), @@ -663402,8 +654850,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3703), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), @@ -663425,7 +654873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -663438,24 +654886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5356] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7702), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_type_argument_list] = STATE(5456), [sym_preproc_region] = STATE(5356), [sym_preproc_endregion] = STATE(5356), [sym_preproc_line] = STATE(5356), @@ -663465,34 +654896,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5356), [sym_preproc_define] = STATE(5356), [sym_preproc_undef] = STATE(5356), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(8151), + [anon_sym_GT] = ACTIONS(3957), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3957), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_operator] = ACTIONS(3955), + [anon_sym_this] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [sym_grit_metavariable] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -663505,24 +654953,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5357] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4188), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3371), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5357), [sym_preproc_endregion] = STATE(5357), [sym_preproc_line] = STATE(5357), @@ -663532,34 +654980,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5357), [sym_preproc_define] = STATE(5357), [sym_preproc_undef] = STATE(5357), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4580), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7324), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4212), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4385), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -663572,24 +655020,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5358] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(5050), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(5358), [sym_preproc_endregion] = STATE(5358), [sym_preproc_line] = STATE(5358), @@ -663599,34 +655029,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5358), [sym_preproc_define] = STATE(5358), [sym_preproc_undef] = STATE(5358), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4386), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7276), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [aux_sym_query_body_repeat2] = STATE(5359), + [anon_sym_LBRACK] = ACTIONS(7918), + [anon_sym_COMMA] = ACTIONS(7918), + [anon_sym_LPAREN] = ACTIONS(7918), + [anon_sym_LT] = ACTIONS(7920), + [anon_sym_GT] = ACTIONS(7920), + [anon_sym_where] = ACTIONS(7918), + [anon_sym_QMARK] = ACTIONS(7920), + [anon_sym_DOT] = ACTIONS(7920), + [anon_sym_STAR] = ACTIONS(7918), + [anon_sym_switch] = ACTIONS(7918), + [anon_sym_DOT_DOT] = ACTIONS(7918), + [anon_sym_LT_EQ] = ACTIONS(7918), + [anon_sym_GT_EQ] = ACTIONS(7918), + [anon_sym_EQ_EQ] = ACTIONS(7918), + [anon_sym_BANG_EQ] = ACTIONS(7918), + [anon_sym_AMP_AMP] = ACTIONS(7918), + [anon_sym_PIPE_PIPE] = ACTIONS(7918), + [anon_sym_AMP] = ACTIONS(7920), + [sym_op_bitwise_or] = ACTIONS(7920), + [anon_sym_CARET] = ACTIONS(7918), + [sym_op_left_shift] = ACTIONS(7918), + [sym_op_right_shift] = ACTIONS(7920), + [sym_op_unsigned_right_shift] = ACTIONS(7918), + [anon_sym_PLUS] = ACTIONS(7920), + [anon_sym_DASH] = ACTIONS(7920), + [sym_op_divide] = ACTIONS(7920), + [sym_op_modulo] = ACTIONS(7918), + [sym_op_coalescing] = ACTIONS(7918), + [anon_sym_BANG] = ACTIONS(7920), + [anon_sym_PLUS_PLUS] = ACTIONS(7918), + [anon_sym_DASH_DASH] = ACTIONS(7918), + [anon_sym_from] = ACTIONS(7918), + [anon_sym_into] = ACTIONS(8145), + [anon_sym_join] = ACTIONS(7918), + [anon_sym_let] = ACTIONS(7918), + [anon_sym_orderby] = ACTIONS(7918), + [anon_sym_ascending] = ACTIONS(7918), + [anon_sym_descending] = ACTIONS(7918), + [anon_sym_group] = ACTIONS(7918), + [anon_sym_select] = ACTIONS(7918), + [anon_sym_as] = ACTIONS(7920), + [anon_sym_is] = ACTIONS(7918), + [anon_sym_DASH_GT] = ACTIONS(7918), + [anon_sym_with] = ACTIONS(7918), + [sym_grit_metavariable] = ACTIONS(7918), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -663639,24 +655087,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5359] = { - [sym__name] = STATE(2457), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_type] = STATE(2376), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_identifier] = STATE(2392), - [sym__reserved_identifier] = STATE(2395), [sym_preproc_region] = STATE(5359), [sym_preproc_endregion] = STATE(5359), [sym_preproc_line] = STATE(5359), @@ -663666,34 +655096,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5359), [sym_preproc_define] = STATE(5359), [sym_preproc_undef] = STATE(5359), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(7520), - [anon_sym_ref] = ACTIONS(3886), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_where] = ACTIONS(4450), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_scoped] = ACTIONS(7522), - [anon_sym_var] = ACTIONS(7270), - [sym_predefined_type] = ACTIONS(7272), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_from] = ACTIONS(4450), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4450), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4450), - [anon_sym_orderby] = ACTIONS(4450), - [anon_sym_ascending] = ACTIONS(4450), - [anon_sym_descending] = ACTIONS(4450), - [anon_sym_group] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [sym_grit_metavariable] = ACTIONS(7274), + [aux_sym_query_body_repeat2] = STATE(5359), + [anon_sym_LBRACK] = ACTIONS(7911), + [anon_sym_COMMA] = ACTIONS(7911), + [anon_sym_LPAREN] = ACTIONS(7911), + [anon_sym_LT] = ACTIONS(7913), + [anon_sym_GT] = ACTIONS(7913), + [anon_sym_where] = ACTIONS(7911), + [anon_sym_QMARK] = ACTIONS(7913), + [anon_sym_DOT] = ACTIONS(7913), + [anon_sym_STAR] = ACTIONS(7911), + [anon_sym_switch] = ACTIONS(7911), + [anon_sym_DOT_DOT] = ACTIONS(7911), + [anon_sym_LT_EQ] = ACTIONS(7911), + [anon_sym_GT_EQ] = ACTIONS(7911), + [anon_sym_EQ_EQ] = ACTIONS(7911), + [anon_sym_BANG_EQ] = ACTIONS(7911), + [anon_sym_AMP_AMP] = ACTIONS(7911), + [anon_sym_PIPE_PIPE] = ACTIONS(7911), + [anon_sym_AMP] = ACTIONS(7913), + [sym_op_bitwise_or] = ACTIONS(7913), + [anon_sym_CARET] = ACTIONS(7911), + [sym_op_left_shift] = ACTIONS(7911), + [sym_op_right_shift] = ACTIONS(7913), + [sym_op_unsigned_right_shift] = ACTIONS(7911), + [anon_sym_PLUS] = ACTIONS(7913), + [anon_sym_DASH] = ACTIONS(7913), + [sym_op_divide] = ACTIONS(7913), + [sym_op_modulo] = ACTIONS(7911), + [sym_op_coalescing] = ACTIONS(7911), + [anon_sym_BANG] = ACTIONS(7913), + [anon_sym_PLUS_PLUS] = ACTIONS(7911), + [anon_sym_DASH_DASH] = ACTIONS(7911), + [anon_sym_from] = ACTIONS(7911), + [anon_sym_into] = ACTIONS(8153), + [anon_sym_join] = ACTIONS(7911), + [anon_sym_let] = ACTIONS(7911), + [anon_sym_orderby] = ACTIONS(7911), + [anon_sym_ascending] = ACTIONS(7911), + [anon_sym_descending] = ACTIONS(7911), + [anon_sym_group] = ACTIONS(7911), + [anon_sym_select] = ACTIONS(7911), + [anon_sym_as] = ACTIONS(7913), + [anon_sym_is] = ACTIONS(7911), + [anon_sym_DASH_GT] = ACTIONS(7911), + [anon_sym_with] = ACTIONS(7911), + [sym_grit_metavariable] = ACTIONS(7911), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -663707,23 +655155,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5360] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(2376), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8061), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5360), [sym_preproc_endregion] = STATE(5360), [sym_preproc_line] = STATE(5360), @@ -663737,14 +655185,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7545), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8047), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7549), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(8051), + [anon_sym_var] = ACTIONS(5320), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -663760,7 +655208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -663773,6 +655221,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5361] = { + [sym__name] = STATE(6582), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6640), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6555), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5361), [sym_preproc_endregion] = STATE(5361), [sym_preproc_line] = STATE(5361), @@ -663782,52 +655248,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5361), [sym_preproc_define] = STATE(5361), [sym_preproc_undef] = STATE(5361), - [aux_sym_query_body_repeat2] = STATE(5365), - [anon_sym_LBRACK] = ACTIONS(7514), - [anon_sym_COMMA] = ACTIONS(7514), - [anon_sym_LPAREN] = ACTIONS(7514), - [anon_sym_LT] = ACTIONS(7516), - [anon_sym_GT] = ACTIONS(7516), - [anon_sym_where] = ACTIONS(7514), - [anon_sym_QMARK] = ACTIONS(7516), - [anon_sym_BANG] = ACTIONS(7516), - [anon_sym_PLUS_PLUS] = ACTIONS(7514), - [anon_sym_DASH_DASH] = ACTIONS(7514), - [anon_sym_PLUS] = ACTIONS(7516), - [anon_sym_DASH] = ACTIONS(7516), - [anon_sym_STAR] = ACTIONS(7514), - [anon_sym_SLASH] = ACTIONS(7516), - [anon_sym_PERCENT] = ACTIONS(7514), - [anon_sym_CARET] = ACTIONS(7514), - [anon_sym_PIPE] = ACTIONS(7516), - [anon_sym_AMP] = ACTIONS(7516), - [anon_sym_LT_LT] = ACTIONS(7514), - [anon_sym_GT_GT] = ACTIONS(7516), - [anon_sym_GT_GT_GT] = ACTIONS(7514), - [anon_sym_EQ_EQ] = ACTIONS(7514), - [anon_sym_BANG_EQ] = ACTIONS(7514), - [anon_sym_GT_EQ] = ACTIONS(7514), - [anon_sym_LT_EQ] = ACTIONS(7514), - [anon_sym_DOT] = ACTIONS(7516), - [anon_sym_switch] = ACTIONS(7514), - [anon_sym_DOT_DOT] = ACTIONS(7514), - [anon_sym_AMP_AMP] = ACTIONS(7514), - [anon_sym_PIPE_PIPE] = ACTIONS(7514), - [sym_op_coalescing] = ACTIONS(7514), - [anon_sym_from] = ACTIONS(7514), - [anon_sym_into] = ACTIONS(7681), - [anon_sym_join] = ACTIONS(7514), - [anon_sym_let] = ACTIONS(7514), - [anon_sym_orderby] = ACTIONS(7514), - [anon_sym_ascending] = ACTIONS(7514), - [anon_sym_descending] = ACTIONS(7514), - [anon_sym_group] = ACTIONS(7514), - [anon_sym_select] = ACTIONS(7514), - [anon_sym_as] = ACTIONS(7516), - [anon_sym_is] = ACTIONS(7514), - [anon_sym_DASH_GT] = ACTIONS(7514), - [anon_sym_with] = ACTIONS(7514), - [sym_grit_metavariable] = ACTIONS(7514), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8067), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8071), + [anon_sym_var] = ACTIONS(8073), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -663840,24 +655288,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5362] = { - [sym__name] = STATE(2772), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_type] = STATE(2376), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_identifier] = STATE(2640), - [sym__reserved_identifier] = STATE(2395), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8047), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5362), [sym_preproc_endregion] = STATE(5362), [sym_preproc_line] = STATE(5362), @@ -663867,34 +655315,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5362), [sym_preproc_define] = STATE(5362), [sym_preproc_undef] = STATE(5362), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(7520), - [anon_sym_ref] = ACTIONS(3902), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_where] = ACTIONS(4450), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_scoped] = ACTIONS(7551), - [anon_sym_var] = ACTIONS(7270), - [sym_predefined_type] = ACTIONS(7272), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_from] = ACTIONS(4450), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4450), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4450), - [anon_sym_orderby] = ACTIONS(4450), - [anon_sym_ascending] = ACTIONS(4450), - [anon_sym_descending] = ACTIONS(4450), - [anon_sym_group] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [sym_grit_metavariable] = ACTIONS(7274), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -663907,24 +655355,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5363] = { - [sym__name] = STATE(5593), - [sym_alias_qualified_name] = STATE(5609), - [sym__simple_name] = STATE(5609), - [sym_qualified_name] = STATE(5609), - [sym_generic_name] = STATE(5595), - [sym_type] = STATE(5692), - [sym_implicit_type] = STATE(5606), - [sym_array_type] = STATE(5613), - [sym__array_base_type] = STATE(7386), - [sym_nullable_type] = STATE(5586), - [sym_pointer_type] = STATE(5586), - [sym__pointer_base_type] = STATE(8114), - [sym_function_pointer_type] = STATE(5586), - [sym_ref_type] = STATE(5606), - [sym_scoped_type] = STATE(5606), - [sym_tuple_type] = STATE(5591), - [sym_identifier] = STATE(5549), - [sym__reserved_identifier] = STATE(5566), [sym_preproc_region] = STATE(5363), [sym_preproc_endregion] = STATE(5363), [sym_preproc_line] = STATE(5363), @@ -663934,34 +655364,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5363), [sym_preproc_define] = STATE(5363), [sym_preproc_undef] = STATE(5363), - [sym__identifier_token] = ACTIONS(4318), - [anon_sym_alias] = ACTIONS(4320), - [anon_sym_global] = ACTIONS(4320), - [anon_sym_LPAREN] = ACTIONS(7601), - [anon_sym_ref] = ACTIONS(4359), - [anon_sym_delegate] = ACTIONS(7290), - [anon_sym_file] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_notnull] = ACTIONS(4320), - [anon_sym_unmanaged] = ACTIONS(4320), - [anon_sym_scoped] = ACTIONS(7292), - [anon_sym_var] = ACTIONS(7294), - [sym_predefined_type] = ACTIONS(7296), - [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), - [sym_grit_metavariable] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(8039), + [anon_sym_COMMA] = ACTIONS(8039), + [anon_sym_LPAREN] = ACTIONS(8039), + [anon_sym_LT] = ACTIONS(8041), + [anon_sym_GT] = ACTIONS(8041), + [anon_sym_where] = ACTIONS(8039), + [anon_sym_QMARK] = ACTIONS(8041), + [anon_sym_DOT] = ACTIONS(8041), + [anon_sym_STAR] = ACTIONS(8039), + [anon_sym_switch] = ACTIONS(8039), + [anon_sym_DOT_DOT] = ACTIONS(8039), + [anon_sym_LT_EQ] = ACTIONS(8039), + [anon_sym_GT_EQ] = ACTIONS(8039), + [anon_sym_and] = ACTIONS(8147), + [anon_sym_or] = ACTIONS(8041), + [anon_sym_EQ_EQ] = ACTIONS(8039), + [anon_sym_BANG_EQ] = ACTIONS(8039), + [anon_sym_AMP_AMP] = ACTIONS(8039), + [anon_sym_PIPE_PIPE] = ACTIONS(8039), + [anon_sym_AMP] = ACTIONS(8041), + [sym_op_bitwise_or] = ACTIONS(8041), + [anon_sym_CARET] = ACTIONS(8039), + [sym_op_left_shift] = ACTIONS(8039), + [sym_op_right_shift] = ACTIONS(8041), + [sym_op_unsigned_right_shift] = ACTIONS(8039), + [anon_sym_PLUS] = ACTIONS(8041), + [anon_sym_DASH] = ACTIONS(8041), + [sym_op_divide] = ACTIONS(8041), + [sym_op_modulo] = ACTIONS(8039), + [sym_op_coalescing] = ACTIONS(8039), + [anon_sym_BANG] = ACTIONS(8041), + [anon_sym_PLUS_PLUS] = ACTIONS(8039), + [anon_sym_DASH_DASH] = ACTIONS(8039), + [anon_sym_from] = ACTIONS(8039), + [anon_sym_join] = ACTIONS(8039), + [anon_sym_let] = ACTIONS(8039), + [anon_sym_orderby] = ACTIONS(8039), + [anon_sym_ascending] = ACTIONS(8039), + [anon_sym_descending] = ACTIONS(8039), + [anon_sym_group] = ACTIONS(8039), + [anon_sym_select] = ACTIONS(8039), + [anon_sym_as] = ACTIONS(8041), + [anon_sym_is] = ACTIONS(8039), + [anon_sym_DASH_GT] = ACTIONS(8039), + [anon_sym_with] = ACTIONS(8039), + [sym_grit_metavariable] = ACTIONS(8039), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -663974,24 +655422,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5364] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(3767), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(2371), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5364), [sym_preproc_endregion] = STATE(5364), [sym_preproc_line] = STATE(5364), @@ -664001,34 +655449,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5364), [sym_preproc_define] = STATE(5364), [sym_preproc_undef] = STATE(5364), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4511), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7423), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3900), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(7834), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -664041,6 +655489,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5365] = { + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4499), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(5662), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5365), [sym_preproc_endregion] = STATE(5365), [sym_preproc_line] = STATE(5365), @@ -664050,52 +655516,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5365), [sym_preproc_define] = STATE(5365), [sym_preproc_undef] = STATE(5365), - [aux_sym_query_body_repeat2] = STATE(5425), - [anon_sym_LBRACK] = ACTIONS(7510), - [anon_sym_COMMA] = ACTIONS(7510), - [anon_sym_LPAREN] = ACTIONS(7510), - [anon_sym_LT] = ACTIONS(7512), - [anon_sym_GT] = ACTIONS(7512), - [anon_sym_where] = ACTIONS(7510), - [anon_sym_QMARK] = ACTIONS(7512), - [anon_sym_BANG] = ACTIONS(7512), - [anon_sym_PLUS_PLUS] = ACTIONS(7510), - [anon_sym_DASH_DASH] = ACTIONS(7510), - [anon_sym_PLUS] = ACTIONS(7512), - [anon_sym_DASH] = ACTIONS(7512), - [anon_sym_STAR] = ACTIONS(7510), - [anon_sym_SLASH] = ACTIONS(7512), - [anon_sym_PERCENT] = ACTIONS(7510), - [anon_sym_CARET] = ACTIONS(7510), - [anon_sym_PIPE] = ACTIONS(7512), - [anon_sym_AMP] = ACTIONS(7512), - [anon_sym_LT_LT] = ACTIONS(7510), - [anon_sym_GT_GT] = ACTIONS(7512), - [anon_sym_GT_GT_GT] = ACTIONS(7510), - [anon_sym_EQ_EQ] = ACTIONS(7510), - [anon_sym_BANG_EQ] = ACTIONS(7510), - [anon_sym_GT_EQ] = ACTIONS(7510), - [anon_sym_LT_EQ] = ACTIONS(7510), - [anon_sym_DOT] = ACTIONS(7512), - [anon_sym_switch] = ACTIONS(7510), - [anon_sym_DOT_DOT] = ACTIONS(7510), - [anon_sym_AMP_AMP] = ACTIONS(7510), - [anon_sym_PIPE_PIPE] = ACTIONS(7510), - [sym_op_coalescing] = ACTIONS(7510), - [anon_sym_from] = ACTIONS(7510), - [anon_sym_into] = ACTIONS(7681), - [anon_sym_join] = ACTIONS(7510), - [anon_sym_let] = ACTIONS(7510), - [anon_sym_orderby] = ACTIONS(7510), - [anon_sym_ascending] = ACTIONS(7510), - [anon_sym_descending] = ACTIONS(7510), - [anon_sym_group] = ACTIONS(7510), - [anon_sym_select] = ACTIONS(7510), - [anon_sym_as] = ACTIONS(7512), - [anon_sym_is] = ACTIONS(7510), - [anon_sym_DASH_GT] = ACTIONS(7510), - [anon_sym_with] = ACTIONS(7510), - [sym_grit_metavariable] = ACTIONS(7510), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4437), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7490), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -664108,6 +655556,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5366] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(2371), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5366), [sym_preproc_endregion] = STATE(5366), [sym_preproc_line] = STATE(5366), @@ -664117,102 +655583,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5366), [sym_preproc_define] = STATE(5366), [sym_preproc_undef] = STATE(5366), - [aux_sym_query_body_repeat2] = STATE(5427), - [anon_sym_LBRACK] = ACTIONS(7506), - [anon_sym_COMMA] = ACTIONS(7506), - [anon_sym_LPAREN] = ACTIONS(7506), - [anon_sym_LT] = ACTIONS(7508), - [anon_sym_GT] = ACTIONS(7508), - [anon_sym_where] = ACTIONS(7506), - [anon_sym_QMARK] = ACTIONS(7508), - [anon_sym_BANG] = ACTIONS(7508), - [anon_sym_PLUS_PLUS] = ACTIONS(7506), - [anon_sym_DASH_DASH] = ACTIONS(7506), - [anon_sym_PLUS] = ACTIONS(7508), - [anon_sym_DASH] = ACTIONS(7508), - [anon_sym_STAR] = ACTIONS(7506), - [anon_sym_SLASH] = ACTIONS(7508), - [anon_sym_PERCENT] = ACTIONS(7506), - [anon_sym_CARET] = ACTIONS(7506), - [anon_sym_PIPE] = ACTIONS(7508), - [anon_sym_AMP] = ACTIONS(7508), - [anon_sym_LT_LT] = ACTIONS(7506), - [anon_sym_GT_GT] = ACTIONS(7508), - [anon_sym_GT_GT_GT] = ACTIONS(7506), - [anon_sym_EQ_EQ] = ACTIONS(7506), - [anon_sym_BANG_EQ] = ACTIONS(7506), - [anon_sym_GT_EQ] = ACTIONS(7506), - [anon_sym_LT_EQ] = ACTIONS(7506), - [anon_sym_DOT] = ACTIONS(7508), - [anon_sym_switch] = ACTIONS(7506), - [anon_sym_DOT_DOT] = ACTIONS(7506), - [anon_sym_AMP_AMP] = ACTIONS(7506), - [anon_sym_PIPE_PIPE] = ACTIONS(7506), - [sym_op_coalescing] = ACTIONS(7506), - [anon_sym_from] = ACTIONS(7506), - [anon_sym_into] = ACTIONS(7681), - [anon_sym_join] = ACTIONS(7506), - [anon_sym_let] = ACTIONS(7506), - [anon_sym_orderby] = ACTIONS(7506), - [anon_sym_ascending] = ACTIONS(7506), - [anon_sym_descending] = ACTIONS(7506), - [anon_sym_group] = ACTIONS(7506), - [anon_sym_select] = ACTIONS(7506), - [anon_sym_as] = ACTIONS(7508), - [anon_sym_is] = ACTIONS(7506), - [anon_sym_DASH_GT] = ACTIONS(7506), - [anon_sym_with] = ACTIONS(7506), - [sym_grit_metavariable] = ACTIONS(7506), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5367] = { - [sym__name] = STATE(6041), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(2376), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5903), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5367), - [sym_preproc_endregion] = STATE(5367), - [sym_preproc_line] = STATE(5367), - [sym_preproc_pragma] = STATE(5367), - [sym_preproc_nullable] = STATE(5367), - [sym_preproc_error] = STATE(5367), - [sym_preproc_warning] = STATE(5367), - [sym_preproc_define] = STATE(5367), - [sym_preproc_undef] = STATE(5367), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3982), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(7074), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7543), + [anon_sym_scoped] = ACTIONS(7078), [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), @@ -664229,7 +655610,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = 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), + }, + [5367] = { + [sym__name] = STATE(2740), + [sym_alias_qualified_name] = STATE(2712), + [sym__simple_name] = STATE(2712), + [sym_qualified_name] = STATE(2712), + [sym_generic_name] = STATE(2713), + [sym_type] = STATE(2797), + [sym_implicit_type] = STATE(2708), + [sym_array_type] = STATE(2704), + [sym__array_base_type] = STATE(7506), + [sym_nullable_type] = STATE(2703), + [sym_pointer_type] = STATE(2703), + [sym__pointer_base_type] = STATE(7811), + [sym_function_pointer_type] = STATE(2703), + [sym_ref_type] = STATE(2708), + [sym_scoped_type] = STATE(2708), + [sym_tuple_type] = STATE(2702), + [sym_identifier] = STATE(2647), + [sym__reserved_identifier] = STATE(2678), + [sym_preproc_region] = STATE(5367), + [sym_preproc_endregion] = STATE(5367), + [sym_preproc_line] = STATE(5367), + [sym_preproc_pragma] = STATE(5367), + [sym_preproc_nullable] = STATE(5367), + [sym_preproc_error] = STATE(5367), + [sym_preproc_warning] = STATE(5367), + [sym_preproc_define] = STATE(5367), + [sym_preproc_undef] = STATE(5367), + [sym__identifier_token] = ACTIONS(8103), + [anon_sym_alias] = ACTIONS(8105), + [anon_sym_global] = ACTIONS(8105), + [anon_sym_LPAREN] = ACTIONS(8107), + [anon_sym_ref] = ACTIONS(3938), + [anon_sym_delegate] = ACTIONS(8109), + [anon_sym_file] = ACTIONS(8105), + [anon_sym_where] = ACTIONS(8105), + [anon_sym_notnull] = ACTIONS(8105), + [anon_sym_unmanaged] = ACTIONS(8105), + [anon_sym_scoped] = ACTIONS(8111), + [anon_sym_var] = ACTIONS(8113), + [sym_predefined_type] = ACTIONS(8115), + [anon_sym_yield] = ACTIONS(8105), + [anon_sym_when] = ACTIONS(8105), + [anon_sym_from] = ACTIONS(8105), + [anon_sym_into] = ACTIONS(8105), + [anon_sym_join] = ACTIONS(8105), + [anon_sym_on] = ACTIONS(8105), + [anon_sym_equals] = ACTIONS(8105), + [anon_sym_let] = ACTIONS(8105), + [anon_sym_orderby] = ACTIONS(8105), + [anon_sym_ascending] = ACTIONS(8105), + [anon_sym_descending] = ACTIONS(8105), + [anon_sym_group] = ACTIONS(8105), + [anon_sym_by] = ACTIONS(8105), + [anon_sym_select] = ACTIONS(8105), + [sym_grit_metavariable] = ACTIONS(8117), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -664242,24 +655690,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5368] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4752), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4499), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5368), [sym_preproc_endregion] = STATE(5368), [sym_preproc_line] = STATE(5368), @@ -664269,34 +655717,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5368), [sym_preproc_define] = STATE(5368), [sym_preproc_undef] = STATE(5368), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4386), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7276), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4365), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7610), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -664309,24 +655757,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5369] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(3767), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7907), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5369), [sym_preproc_endregion] = STATE(5369), [sym_preproc_line] = STATE(5369), @@ -664336,34 +655784,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5369), [sym_preproc_define] = STATE(5369), [sym_preproc_undef] = STATE(5369), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(4373), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8047), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8051), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -664376,24 +655824,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5370] = { - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3746), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7777), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5370), [sym_preproc_endregion] = STATE(5370), [sym_preproc_line] = STATE(5370), @@ -664403,85 +655851,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5370), [sym_preproc_define] = STATE(5370), [sym_preproc_undef] = STATE(5370), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4660), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7386), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5371] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(2376), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5371), - [sym_preproc_endregion] = STATE(5371), - [sym_preproc_line] = STATE(5371), - [sym_preproc_pragma] = STATE(5371), - [sym_preproc_nullable] = STATE(5371), - [sym_preproc_error] = STATE(5371), - [sym_preproc_warning] = STATE(5371), - [sym_preproc_define] = STATE(5371), - [sym_preproc_undef] = STATE(5371), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7013), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7021), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -664497,7 +655878,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = 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), + }, + [5371] = { + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3371), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), + [sym_preproc_region] = STATE(5371), + [sym_preproc_endregion] = STATE(5371), + [sym_preproc_line] = STATE(5371), + [sym_preproc_pragma] = STATE(5371), + [sym_preproc_nullable] = STATE(5371), + [sym_preproc_error] = STATE(5371), + [sym_preproc_warning] = STATE(5371), + [sym_preproc_define] = STATE(5371), + [sym_preproc_undef] = STATE(5371), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4616), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7332), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -664510,6 +655958,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5372] = { + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3371), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5372), [sym_preproc_endregion] = STATE(5372), [sym_preproc_line] = STATE(5372), @@ -664519,52 +655985,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5372), [sym_preproc_define] = STATE(5372), [sym_preproc_undef] = STATE(5372), - [sym__identifier_token] = ACTIONS(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_global] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_COLON] = ACTIONS(3915), - [anon_sym_COMMA] = ACTIONS(3696), - [anon_sym_RBRACK] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_file] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_GT] = ACTIONS(3912), - [anon_sym_in] = ACTIONS(3698), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3696), - [anon_sym_notnull] = ACTIONS(3915), - [anon_sym_unmanaged] = ACTIONS(3915), - [anon_sym_operator] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_this] = ACTIONS(3915), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_scoped] = ACTIONS(3915), - [anon_sym_EQ_GT] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3915), - [anon_sym_yield] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3915), - [sym_discard] = ACTIONS(3915), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3915), - [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(3915), - [anon_sym_select] = ACTIONS(3915), - [sym_grit_metavariable] = ACTIONS(3912), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4590), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7538), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -664577,24 +656025,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5373] = { - [sym__name] = STATE(5593), - [sym_alias_qualified_name] = STATE(5609), - [sym__simple_name] = STATE(5609), - [sym_qualified_name] = STATE(5609), - [sym_generic_name] = STATE(5595), - [sym_type] = STATE(5607), - [sym_implicit_type] = STATE(5606), - [sym_array_type] = STATE(5613), - [sym__array_base_type] = STATE(7386), - [sym_nullable_type] = STATE(5586), - [sym_pointer_type] = STATE(5586), - [sym__pointer_base_type] = STATE(8114), - [sym_function_pointer_type] = STATE(5586), - [sym_ref_type] = STATE(5606), - [sym_scoped_type] = STATE(5606), - [sym_tuple_type] = STATE(5591), - [sym_identifier] = STATE(5549), - [sym__reserved_identifier] = STATE(5566), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(2371), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5373), [sym_preproc_endregion] = STATE(5373), [sym_preproc_line] = STATE(5373), @@ -664604,34 +656052,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5373), [sym_preproc_define] = STATE(5373), [sym_preproc_undef] = STATE(5373), - [sym__identifier_token] = ACTIONS(4318), - [anon_sym_alias] = ACTIONS(4320), - [anon_sym_global] = ACTIONS(4320), - [anon_sym_LPAREN] = ACTIONS(7601), - [anon_sym_ref] = ACTIONS(4359), - [anon_sym_delegate] = ACTIONS(7290), - [anon_sym_file] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_notnull] = ACTIONS(4320), - [anon_sym_unmanaged] = ACTIONS(4320), - [anon_sym_scoped] = ACTIONS(7292), - [anon_sym_var] = ACTIONS(7294), - [sym_predefined_type] = ACTIONS(7296), - [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), - [sym_grit_metavariable] = ACTIONS(4327), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(6807), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(6815), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -664644,24 +656092,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5374] = { - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3881), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3309), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5374), [sym_preproc_endregion] = STATE(5374), [sym_preproc_line] = STATE(5374), @@ -664671,34 +656119,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5374), [sym_preproc_define] = STATE(5374), [sym_preproc_undef] = STATE(5374), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4199), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7382), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4616), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7332), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -664711,24 +656159,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5375] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4752), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8088), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5375), [sym_preproc_endregion] = STATE(5375), [sym_preproc_line] = STATE(5375), @@ -664738,34 +656186,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5375), [sym_preproc_define] = STATE(5375), [sym_preproc_undef] = STATE(5375), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4143), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7415), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -664778,24 +656226,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5376] = { - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3746), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8089), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5376), [sym_preproc_endregion] = STATE(5376), [sym_preproc_line] = STATE(5376), @@ -664805,34 +656253,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5376), [sym_preproc_define] = STATE(5376), [sym_preproc_undef] = STATE(5376), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4199), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7382), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -664845,24 +656293,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5377] = { - [sym__name] = STATE(5593), - [sym_alias_qualified_name] = STATE(5609), - [sym__simple_name] = STATE(5609), - [sym_qualified_name] = STATE(5609), - [sym_generic_name] = STATE(5595), - [sym_type] = STATE(5607), - [sym_implicit_type] = STATE(5606), - [sym_array_type] = STATE(5613), - [sym__array_base_type] = STATE(7386), - [sym_nullable_type] = STATE(5586), - [sym_pointer_type] = STATE(5586), - [sym__pointer_base_type] = STATE(8114), - [sym_function_pointer_type] = STATE(5586), - [sym_ref_type] = STATE(5606), - [sym_scoped_type] = STATE(5606), - [sym_tuple_type] = STATE(5591), - [sym_identifier] = STATE(5549), - [sym__reserved_identifier] = STATE(5566), + [sym__name] = STATE(5857), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3371), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(5614), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5377), [sym_preproc_endregion] = STATE(5377), [sym_preproc_line] = STATE(5377), @@ -664872,34 +656320,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5377), [sym_preproc_define] = STATE(5377), [sym_preproc_undef] = STATE(5377), - [sym__identifier_token] = ACTIONS(4318), - [anon_sym_alias] = ACTIONS(4320), - [anon_sym_global] = ACTIONS(4320), - [anon_sym_LPAREN] = ACTIONS(7601), - [anon_sym_ref] = ACTIONS(4322), - [anon_sym_delegate] = ACTIONS(7290), - [anon_sym_file] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_notnull] = ACTIONS(4320), - [anon_sym_unmanaged] = ACTIONS(4320), - [anon_sym_scoped] = ACTIONS(7340), - [anon_sym_var] = ACTIONS(7294), - [sym_predefined_type] = ACTIONS(7296), - [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), - [sym_grit_metavariable] = ACTIONS(4327), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4373), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7699), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -664912,24 +656360,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5378] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8140), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(2458), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_type] = STATE(2371), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_identifier] = STATE(2392), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(5378), [sym_preproc_endregion] = STATE(5378), [sym_preproc_line] = STATE(5378), @@ -664939,34 +656387,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5378), [sym_preproc_define] = STATE(5378), [sym_preproc_undef] = STATE(5378), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(7999), + [anon_sym_ref] = ACTIONS(4460), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_where] = ACTIONS(4425), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_scoped] = ACTIONS(7256), + [anon_sym_var] = ACTIONS(7258), + [sym_predefined_type] = ACTIONS(7260), + [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), + [sym_grit_metavariable] = ACTIONS(7262), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -664980,23 +656428,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5379] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7793), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6364), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5379), [sym_preproc_endregion] = STATE(5379), [sym_preproc_line] = STATE(5379), @@ -665010,14 +656458,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7545), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(3930), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7549), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(7995), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -665033,7 +656481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -665046,24 +656494,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5380] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4876), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3309), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5380), [sym_preproc_endregion] = STATE(5380), [sym_preproc_line] = STATE(5380), @@ -665073,34 +656521,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5380), [sym_preproc_define] = STATE(5380), [sym_preproc_undef] = STATE(5380), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_ref] = ACTIONS(4493), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7278), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4212), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(4385), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -665113,24 +656561,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5381] = { - [sym__name] = STATE(6589), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6679), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(6559), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4186), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5381), [sym_preproc_endregion] = STATE(5381), [sym_preproc_line] = STATE(5381), @@ -665140,34 +656588,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5381), [sym_preproc_define] = STATE(5381), [sym_preproc_undef] = STATE(5381), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7673), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7677), - [anon_sym_var] = ACTIONS(7679), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4365), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7610), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -665180,24 +656628,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5382] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7514), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3309), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5382), [sym_preproc_endregion] = STATE(5382), [sym_preproc_line] = STATE(5382), @@ -665207,19 +656655,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5382), [sym_preproc_define] = STATE(5382), [sym_preproc_undef] = STATE(5382), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4590), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7538), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5383] = { + [sym__name] = STATE(6582), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6673), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6555), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(5383), + [sym_preproc_endregion] = STATE(5383), + [sym_preproc_line] = STATE(5383), + [sym_preproc_pragma] = STATE(5383), + [sym_preproc_nullable] = STATE(5383), + [sym_preproc_error] = STATE(5383), + [sym_preproc_warning] = STATE(5383), + [sym_preproc_define] = STATE(5383), + [sym_preproc_undef] = STATE(5383), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), + [anon_sym_ref] = ACTIONS(8067), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), + [anon_sym_scoped] = ACTIONS(8071), + [anon_sym_var] = ACTIONS(8073), + [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -665234,74 +656749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [5383] = { - [sym_type_argument_list] = STATE(3621), - [sym_preproc_region] = STATE(5383), - [sym_preproc_endregion] = STATE(5383), - [sym_preproc_line] = STATE(5383), - [sym_preproc_pragma] = STATE(5383), - [sym_preproc_nullable] = STATE(5383), - [sym_preproc_error] = STATE(5383), - [sym_preproc_warning] = STATE(5383), - [sym_preproc_define] = STATE(5383), - [sym_preproc_undef] = STATE(5383), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(5761), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_SLASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_CARET] = ACTIONS(3953), - [anon_sym_PIPE] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3953), - [anon_sym_GT_GT] = ACTIONS(3951), - [anon_sym_GT_GT_GT] = ACTIONS(3953), - [anon_sym_EQ_EQ] = ACTIONS(3953), - [anon_sym_BANG_EQ] = ACTIONS(3953), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_COLON_COLON] = ACTIONS(7683), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_DOT_DOT] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(3953), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3953), - [sym_op_coalescing] = ACTIONS(3953), - [anon_sym_from] = ACTIONS(3953), - [anon_sym_into] = ACTIONS(3953), - [anon_sym_join] = ACTIONS(3953), - [anon_sym_let] = ACTIONS(3953), - [anon_sym_orderby] = ACTIONS(3953), - [anon_sym_group] = ACTIONS(3953), - [anon_sym_select] = ACTIONS(3953), - [anon_sym_as] = ACTIONS(3953), - [anon_sym_is] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_with] = ACTIONS(3953), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -665314,24 +656762,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5384] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4876), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3169), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(5384), [sym_preproc_endregion] = STATE(5384), [sym_preproc_line] = STATE(5384), @@ -665341,34 +656789,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5384), [sym_preproc_define] = STATE(5384), [sym_preproc_undef] = STATE(5384), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_ref] = ACTIONS(4518), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7328), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4602), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7574), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -665381,24 +656829,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5385] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4188), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4186), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5385), [sym_preproc_endregion] = STATE(5385), [sym_preproc_line] = STATE(5385), @@ -665408,34 +656856,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5385), [sym_preproc_define] = STATE(5385), [sym_preproc_undef] = STATE(5385), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4590), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7280), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4117), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7718), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -665449,23 +656897,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5386] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6857), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7919), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5386), [sym_preproc_endregion] = STATE(5386), [sym_preproc_line] = STATE(5386), @@ -665479,14 +656927,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7545), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7549), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -665502,7 +656950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -665515,24 +656963,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5387] = { - [sym__name] = STATE(5929), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4752), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(5740), - [sym__reserved_identifier] = STATE(4662), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7894), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5387), [sym_preproc_endregion] = STATE(5387), [sym_preproc_line] = STATE(5387), @@ -665542,34 +656990,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5387), [sym_preproc_define] = STATE(5387), [sym_preproc_undef] = STATE(5387), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4442), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7346), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8047), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8051), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -665583,23 +657031,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5388] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7798), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6831), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5388), [sym_preproc_endregion] = STATE(5388), [sym_preproc_line] = STATE(5388), @@ -665613,14 +657061,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(6807), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), + [anon_sym_scoped] = ACTIONS(6815), + [anon_sym_var] = ACTIONS(5320), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -665636,7 +657084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -665649,24 +657097,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5389] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7558), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7685), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5389), [sym_preproc_endregion] = STATE(5389), [sym_preproc_line] = STATE(5389), @@ -665680,15 +657128,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5981), - [anon_sym_delegate] = ACTIONS(5983), + [anon_sym_ref] = ACTIONS(8047), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5989), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(5991), + [anon_sym_scoped] = ACTIONS(8051), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -665703,7 +657151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -665716,24 +657164,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5390] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7683), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3371), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5390), [sym_preproc_endregion] = STATE(5390), [sym_preproc_line] = STATE(5390), @@ -665743,34 +657191,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5390), [sym_preproc_define] = STATE(5390), [sym_preproc_undef] = STATE(5390), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7545), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7549), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4566), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7378), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -665783,24 +657231,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5391] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8105), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(2458), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_type] = STATE(2371), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_identifier] = STATE(2392), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(5391), [sym_preproc_endregion] = STATE(5391), [sym_preproc_line] = STATE(5391), @@ -665810,18 +657258,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5391), [sym_preproc_define] = STATE(5391), [sym_preproc_undef] = STATE(5391), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(7999), + [anon_sym_ref] = ACTIONS(3871), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_where] = ACTIONS(4425), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_scoped] = ACTIONS(8059), + [anon_sym_var] = ACTIONS(7258), + [sym_predefined_type] = ACTIONS(7260), + [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), + [sym_grit_metavariable] = ACTIONS(7262), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5392] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8111), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(5392), + [sym_preproc_endregion] = STATE(5392), + [sym_preproc_line] = STATE(5392), + [sym_preproc_pragma] = STATE(5392), + [sym_preproc_nullable] = STATE(5392), + [sym_preproc_error] = STATE(5392), + [sym_preproc_warning] = STATE(5392), + [sym_preproc_define] = STATE(5392), + [sym_preproc_undef] = STATE(5392), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -665837,74 +657352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [5392] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4876), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), - [sym_preproc_region] = STATE(5392), - [sym_preproc_endregion] = STATE(5392), - [sym_preproc_line] = STATE(5392), - [sym_preproc_pragma] = STATE(5392), - [sym_preproc_nullable] = STATE(5392), - [sym_preproc_error] = STATE(5392), - [sym_preproc_warning] = STATE(5392), - [sym_preproc_define] = STATE(5392), - [sym_preproc_undef] = STATE(5392), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_ref] = ACTIONS(4522), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7254), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -665917,24 +657365,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5393] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4188), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3169), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(5393), [sym_preproc_endregion] = STATE(5393), [sym_preproc_line] = STATE(5393), @@ -665944,34 +657392,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5393), [sym_preproc_define] = STATE(5393), [sym_preproc_undef] = STATE(5393), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4604), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7380), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4596), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7584), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -665984,24 +657432,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5394] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(2376), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(2458), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_type] = STATE(5162), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_identifier] = STATE(2392), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(5394), [sym_preproc_endregion] = STATE(5394), [sym_preproc_line] = STATE(5394), @@ -666011,34 +657459,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5394), [sym_preproc_define] = STATE(5394), [sym_preproc_undef] = STATE(5394), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7190), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7194), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(7999), + [anon_sym_ref] = ACTIONS(4460), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_where] = ACTIONS(4425), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_scoped] = ACTIONS(7256), + [anon_sym_var] = ACTIONS(7258), + [sym_predefined_type] = ACTIONS(7260), + [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), + [sym_grit_metavariable] = ACTIONS(7262), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -666052,23 +657500,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5395] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8104), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7876), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5395), [sym_preproc_endregion] = STATE(5395), [sym_preproc_line] = STATE(5395), @@ -666082,14 +657530,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -666105,7 +657553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -666119,23 +657567,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5396] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7899), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7823), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5396), [sym_preproc_endregion] = STATE(5396), [sym_preproc_line] = STATE(5396), @@ -666149,14 +657597,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -666172,7 +657620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -666185,24 +657633,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5397] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7868), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4186), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5397), [sym_preproc_endregion] = STATE(5397), [sym_preproc_line] = STATE(5397), @@ -666212,34 +657660,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5397), [sym_preproc_define] = STATE(5397), [sym_preproc_undef] = STATE(5397), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4516), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7600), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -666252,24 +657700,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5398] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7865), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3218), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(5398), [sym_preproc_endregion] = STATE(5398), [sym_preproc_line] = STATE(5398), @@ -666279,34 +657727,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5398), [sym_preproc_define] = STATE(5398), [sym_preproc_undef] = STATE(5398), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4632), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7438), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -666320,23 +657768,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5399] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8051), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(2371), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5399), [sym_preproc_endregion] = STATE(5399), [sym_preproc_line] = STATE(5399), @@ -666350,14 +657798,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(3930), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), + [anon_sym_scoped] = ACTIONS(7995), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -666373,7 +657821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -666386,24 +657834,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5400] = { - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3746), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3922), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(5400), [sym_preproc_endregion] = STATE(5400), [sym_preproc_line] = STATE(5400), @@ -666413,34 +657861,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5400), [sym_preproc_define] = STATE(5400), [sym_preproc_undef] = STATE(5400), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4642), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7330), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(8015), + [anon_sym_ref] = ACTIONS(4092), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7510), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -666453,24 +657901,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5401] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(5050), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7830), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5401), [sym_preproc_endregion] = STATE(5401), [sym_preproc_line] = STATE(5401), @@ -666480,34 +657928,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5401), [sym_preproc_define] = STATE(5401), [sym_preproc_undef] = STATE(5401), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4485), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7260), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -666520,7 +657968,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5402] = { - [sym_type_argument_list] = STATE(5464), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7913), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5402), [sym_preproc_endregion] = STATE(5402), [sym_preproc_line] = STATE(5402), @@ -666530,51 +657995,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5402), [sym_preproc_define] = STATE(5402), [sym_preproc_undef] = STATE(5402), - [sym__identifier_token] = ACTIONS(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(7685), - [anon_sym_GT] = ACTIONS(3953), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3953), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_operator] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3953), - [anon_sym_this] = ACTIONS(3951), - [anon_sym_DOT] = ACTIONS(3953), - [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3953), - [anon_sym_var] = ACTIONS(3951), - [anon_sym_yield] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [sym_discard] = ACTIONS(3951), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = 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_ascending] = ACTIONS(3951), - [anon_sym_descending] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3953), - [sym_grit_metavariable] = ACTIONS(3953), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -666587,24 +658035,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5403] = { - [sym__name] = STATE(2457), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_type] = STATE(5337), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_identifier] = STATE(2392), - [sym__reserved_identifier] = STATE(2395), + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4186), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5403), [sym_preproc_endregion] = STATE(5403), [sym_preproc_line] = STATE(5403), @@ -666614,34 +658062,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5403), [sym_preproc_define] = STATE(5403), [sym_preproc_undef] = STATE(5403), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(7520), - [anon_sym_ref] = ACTIONS(4452), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_where] = ACTIONS(4450), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_scoped] = ACTIONS(7268), - [anon_sym_var] = ACTIONS(7270), - [sym_predefined_type] = ACTIONS(7272), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_from] = ACTIONS(4450), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4450), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4450), - [anon_sym_orderby] = ACTIONS(4450), - [anon_sym_ascending] = ACTIONS(4450), - [anon_sym_descending] = ACTIONS(4450), - [anon_sym_group] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [sym_grit_metavariable] = ACTIONS(7274), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4468), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7608), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -666654,24 +658102,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5404] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7807), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(5640), + [sym_alias_qualified_name] = STATE(5591), + [sym__simple_name] = STATE(5591), + [sym_qualified_name] = STATE(5591), + [sym_generic_name] = STATE(5632), + [sym_type] = STATE(5757), + [sym_implicit_type] = STATE(5601), + [sym_array_type] = STATE(5638), + [sym__array_base_type] = STATE(7416), + [sym_nullable_type] = STATE(5629), + [sym_pointer_type] = STATE(5629), + [sym__pointer_base_type] = STATE(8041), + [sym_function_pointer_type] = STATE(5629), + [sym_ref_type] = STATE(5601), + [sym_scoped_type] = STATE(5601), + [sym_tuple_type] = STATE(5626), + [sym_identifier] = STATE(5537), + [sym__reserved_identifier] = STATE(5554), [sym_preproc_region] = STATE(5404), [sym_preproc_endregion] = STATE(5404), [sym_preproc_line] = STATE(5404), @@ -666681,34 +658129,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5404), [sym_preproc_define] = STATE(5404), [sym_preproc_undef] = STATE(5404), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4318), + [anon_sym_alias] = ACTIONS(4320), + [anon_sym_global] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(8043), + [anon_sym_ref] = ACTIONS(4322), + [anon_sym_delegate] = ACTIONS(7466), + [anon_sym_file] = ACTIONS(4320), + [anon_sym_where] = ACTIONS(4320), + [anon_sym_notnull] = ACTIONS(4320), + [anon_sym_unmanaged] = ACTIONS(4320), + [anon_sym_scoped] = ACTIONS(7468), + [anon_sym_var] = ACTIONS(7470), + [sym_predefined_type] = ACTIONS(7472), + [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), + [sym_grit_metavariable] = ACTIONS(4327), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -666722,23 +658170,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5405] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7808), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7841), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5405), [sym_preproc_endregion] = STATE(5405), [sym_preproc_line] = STATE(5405), @@ -666752,14 +658200,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8047), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), + [anon_sym_scoped] = ACTIONS(8051), + [anon_sym_var] = ACTIONS(5320), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -666775,7 +658223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -666788,24 +658236,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5406] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(5050), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym__name] = STATE(2671), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_type] = STATE(2371), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_identifier] = STATE(2619), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(5406), [sym_preproc_endregion] = STATE(5406), [sym_preproc_line] = STATE(5406), @@ -666815,34 +658263,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5406), [sym_preproc_define] = STATE(5406), [sym_preproc_undef] = STATE(5406), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4472), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7236), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(7999), + [anon_sym_ref] = ACTIONS(3928), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_where] = ACTIONS(4425), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_scoped] = ACTIONS(8135), + [anon_sym_var] = ACTIONS(7258), + [sym_predefined_type] = ACTIONS(7260), + [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), + [sym_grit_metavariable] = ACTIONS(7262), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -666855,24 +658303,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5407] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8097), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), [sym_preproc_region] = STATE(5407), [sym_preproc_endregion] = STATE(5407), [sym_preproc_line] = STATE(5407), @@ -666882,18 +658312,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5407), [sym_preproc_define] = STATE(5407), [sym_preproc_undef] = STATE(5407), + [anon_sym_LBRACK] = ACTIONS(8003), + [anon_sym_COMMA] = ACTIONS(8003), + [anon_sym_LPAREN] = ACTIONS(8003), + [anon_sym_LT] = ACTIONS(8005), + [anon_sym_GT] = ACTIONS(8005), + [anon_sym_where] = ACTIONS(8003), + [anon_sym_QMARK] = ACTIONS(8005), + [anon_sym_DOT] = ACTIONS(8005), + [anon_sym_STAR] = ACTIONS(8003), + [anon_sym_switch] = ACTIONS(8003), + [anon_sym_DOT_DOT] = ACTIONS(8003), + [anon_sym_LT_EQ] = ACTIONS(8003), + [anon_sym_GT_EQ] = ACTIONS(8003), + [anon_sym_and] = ACTIONS(8147), + [anon_sym_or] = ACTIONS(8149), + [anon_sym_EQ_EQ] = ACTIONS(8003), + [anon_sym_BANG_EQ] = ACTIONS(8003), + [anon_sym_AMP_AMP] = ACTIONS(8003), + [anon_sym_PIPE_PIPE] = ACTIONS(8003), + [anon_sym_AMP] = ACTIONS(8005), + [sym_op_bitwise_or] = ACTIONS(8005), + [anon_sym_CARET] = ACTIONS(8003), + [sym_op_left_shift] = ACTIONS(8003), + [sym_op_right_shift] = ACTIONS(8005), + [sym_op_unsigned_right_shift] = ACTIONS(8003), + [anon_sym_PLUS] = ACTIONS(8005), + [anon_sym_DASH] = ACTIONS(8005), + [sym_op_divide] = ACTIONS(8005), + [sym_op_modulo] = ACTIONS(8003), + [sym_op_coalescing] = ACTIONS(8003), + [anon_sym_BANG] = ACTIONS(8005), + [anon_sym_PLUS_PLUS] = ACTIONS(8003), + [anon_sym_DASH_DASH] = ACTIONS(8003), + [anon_sym_from] = ACTIONS(8003), + [anon_sym_join] = ACTIONS(8003), + [anon_sym_let] = ACTIONS(8003), + [anon_sym_orderby] = ACTIONS(8003), + [anon_sym_ascending] = ACTIONS(8003), + [anon_sym_descending] = ACTIONS(8003), + [anon_sym_group] = ACTIONS(8003), + [anon_sym_select] = ACTIONS(8003), + [anon_sym_as] = ACTIONS(8005), + [anon_sym_is] = ACTIONS(8003), + [anon_sym_DASH_GT] = ACTIONS(8003), + [anon_sym_with] = ACTIONS(8003), + [sym_grit_metavariable] = ACTIONS(8003), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5408] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8014), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(5408), + [sym_preproc_endregion] = STATE(5408), + [sym_preproc_line] = STATE(5408), + [sym_preproc_pragma] = STATE(5408), + [sym_preproc_nullable] = STATE(5408), + [sym_preproc_error] = STATE(5408), + [sym_preproc_warning] = STATE(5408), + [sym_preproc_define] = STATE(5408), + [sym_preproc_undef] = STATE(5408), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8047), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), + [anon_sym_scoped] = ACTIONS(8051), + [anon_sym_var] = ACTIONS(5320), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -666909,74 +658424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [5408] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4188), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), - [sym_preproc_region] = STATE(5408), - [sym_preproc_endregion] = STATE(5408), - [sym_preproc_line] = STATE(5408), - [sym_preproc_pragma] = STATE(5408), - [sym_preproc_nullable] = STATE(5408), - [sym_preproc_error] = STATE(5408), - [sym_preproc_warning] = STATE(5408), - [sym_preproc_define] = STATE(5408), - [sym_preproc_undef] = STATE(5408), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4511), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7423), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -666989,24 +658437,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5409] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4710), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), + [sym__name] = STATE(2458), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_type] = STATE(5162), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_identifier] = STATE(2392), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(5409), [sym_preproc_endregion] = STATE(5409), [sym_preproc_line] = STATE(5409), @@ -667016,34 +658464,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5409), [sym_preproc_define] = STATE(5409), [sym_preproc_undef] = STATE(5409), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_ref] = ACTIONS(4382), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7392), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(7999), + [anon_sym_ref] = ACTIONS(4427), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_where] = ACTIONS(4425), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_scoped] = ACTIONS(7691), + [anon_sym_var] = ACTIONS(7258), + [sym_predefined_type] = ACTIONS(7260), + [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), + [sym_grit_metavariable] = ACTIONS(7262), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -667056,24 +658504,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5410] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4752), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8103), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5410), [sym_preproc_endregion] = STATE(5410), [sym_preproc_line] = STATE(5410), @@ -667083,34 +658531,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5410), [sym_preproc_define] = STATE(5410), [sym_preproc_undef] = STATE(5410), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4516), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7338), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -667123,24 +658571,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5411] = { - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3881), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym__name] = STATE(6035), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(2371), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5924), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5411), [sym_preproc_endregion] = STATE(5411), [sym_preproc_line] = STATE(5411), @@ -667150,34 +658598,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5411), [sym_preproc_define] = STATE(5411), [sym_preproc_undef] = STATE(5411), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4642), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7330), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3978), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8035), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -667190,24 +658638,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5412] = { - [sym__name] = STATE(5929), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(5050), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(5740), - [sym__reserved_identifier] = STATE(4662), + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3922), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(5412), [sym_preproc_endregion] = STATE(5412), [sym_preproc_line] = STATE(5412), @@ -667217,34 +658665,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5412), [sym_preproc_define] = STATE(5412), [sym_preproc_undef] = STATE(5412), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4442), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7346), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(8015), + [anon_sym_ref] = ACTIONS(4505), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7626), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -667257,24 +658705,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5413] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4752), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym__name] = STATE(6161), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_ref_type] = STATE(2384), + [sym__scoped_base_type] = STATE(2376), + [sym_identifier] = STATE(6033), + [sym__reserved_identifier] = STATE(2207), [sym_preproc_region] = STATE(5413), [sym_preproc_endregion] = STATE(5413), [sym_preproc_line] = STATE(5413), @@ -667284,34 +658723,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5413), [sym_preproc_define] = STATE(5413), [sym_preproc_undef] = STATE(5413), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4472), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7236), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3894), + [anon_sym_global] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_file] = ACTIONS(3894), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_where] = ACTIONS(3894), + [anon_sym_QMARK] = ACTIONS(3694), + [anon_sym_notnull] = ACTIONS(3894), + [anon_sym_unmanaged] = ACTIONS(3894), + [anon_sym_DOT] = ACTIONS(3694), + [anon_sym_scoped] = ACTIONS(3894), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3894), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3894), + [anon_sym_when] = ACTIONS(3894), + [sym_discard] = ACTIONS(3696), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3894), + [anon_sym_into] = ACTIONS(3894), + [anon_sym_join] = ACTIONS(3894), + [anon_sym_on] = ACTIONS(3894), + [anon_sym_equals] = ACTIONS(3894), + [anon_sym_let] = ACTIONS(3894), + [anon_sym_orderby] = ACTIONS(3894), + [anon_sym_ascending] = ACTIONS(3894), + [anon_sym_descending] = ACTIONS(3894), + [anon_sym_group] = ACTIONS(3894), + [anon_sym_by] = ACTIONS(3894), + [anon_sym_select] = ACTIONS(3894), + [sym_grit_metavariable] = ACTIONS(3897), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -667325,23 +658773,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5414] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6840), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8127), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5414), [sym_preproc_endregion] = STATE(5414), [sym_preproc_line] = STATE(5414), @@ -667355,14 +658803,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7545), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7549), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -667378,7 +658826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -667391,24 +658839,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5415] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(3767), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3169), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(5415), [sym_preproc_endregion] = STATE(5415), [sym_preproc_line] = STATE(5415), @@ -667418,34 +658866,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5415), [sym_preproc_define] = STATE(5415), [sym_preproc_undef] = STATE(5415), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4580), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7324), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4632), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7438), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -667458,24 +658906,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5416] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4710), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8128), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5416), [sym_preproc_endregion] = STATE(5416), [sym_preproc_line] = STATE(5416), @@ -667485,19 +658933,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5416), [sym_preproc_define] = STATE(5416), [sym_preproc_undef] = STATE(5416), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = 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), + }, + [5417] = { + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(4291), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), + [sym_preproc_region] = STATE(5417), + [sym_preproc_endregion] = STATE(5417), + [sym_preproc_line] = STATE(5417), + [sym_preproc_pragma] = STATE(5417), + [sym_preproc_nullable] = STATE(5417), + [sym_preproc_error] = STATE(5417), + [sym_preproc_warning] = STATE(5417), + [sym_preproc_define] = STATE(5417), + [sym_preproc_undef] = STATE(5417), [sym__identifier_token] = ACTIONS(4088), [anon_sym_alias] = ACTIONS(4090), [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), + [anon_sym_LPAREN] = ACTIONS(8015), [anon_sym_ref] = ACTIONS(4092), - [anon_sym_delegate] = ACTIONS(7252), + [anon_sym_delegate] = ACTIONS(7508), [anon_sym_file] = ACTIONS(4090), [anon_sym_where] = ACTIONS(4090), [anon_sym_notnull] = ACTIONS(4090), [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7336), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), + [anon_sym_scoped] = ACTIONS(7510), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), [anon_sym_yield] = ACTIONS(4090), [anon_sym_when] = ACTIONS(4090), [anon_sym_from] = ACTIONS(4090), @@ -667524,46 +659039,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5417] = { + [5418] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7811), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5417), - [sym_preproc_endregion] = STATE(5417), - [sym_preproc_line] = STATE(5417), - [sym_preproc_pragma] = STATE(5417), - [sym_preproc_nullable] = STATE(5417), - [sym_preproc_error] = STATE(5417), - [sym_preproc_warning] = STATE(5417), - [sym_preproc_define] = STATE(5417), - [sym_preproc_undef] = STATE(5417), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(8130), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), + [sym_preproc_region] = STATE(5418), + [sym_preproc_endregion] = STATE(5418), + [sym_preproc_line] = STATE(5418), + [sym_preproc_pragma] = STATE(5418), + [sym_preproc_nullable] = STATE(5418), + [sym_preproc_error] = STATE(5418), + [sym_preproc_warning] = STATE(5418), + [sym_preproc_define] = STATE(5418), + [sym_preproc_undef] = STATE(5418), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7545), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7549), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -667579,74 +659094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [5418] = { - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3881), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), - [sym_preproc_region] = STATE(5418), - [sym_preproc_endregion] = STATE(5418), - [sym_preproc_line] = STATE(5418), - [sym_preproc_pragma] = STATE(5418), - [sym_preproc_nullable] = STATE(5418), - [sym_preproc_error] = STATE(5418), - [sym_preproc_warning] = STATE(5418), - [sym_preproc_define] = STATE(5418), - [sym_preproc_undef] = STATE(5418), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4660), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7386), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -667659,24 +659107,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5419] = { - [sym__name] = STATE(4262), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(3767), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(3463), - [sym__reserved_identifier] = STATE(3510), + [sym__name] = STATE(2458), + [sym_alias_qualified_name] = STATE(2450), + [sym__simple_name] = STATE(2450), + [sym_qualified_name] = STATE(2450), + [sym_generic_name] = STATE(2415), + [sym_type] = STATE(2371), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(2446), + [sym__array_base_type] = STATE(7471), + [sym_nullable_type] = STATE(2445), + [sym_pointer_type] = STATE(2445), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(2445), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(2444), + [sym_identifier] = STATE(2392), + [sym__reserved_identifier] = STATE(2402), [sym_preproc_region] = STATE(5419), [sym_preproc_endregion] = STATE(5419), [sym_preproc_line] = STATE(5419), @@ -667686,34 +659134,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5419), [sym_preproc_define] = STATE(5419), [sym_preproc_undef] = STATE(5419), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4590), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7280), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(7999), + [anon_sym_ref] = ACTIONS(4427), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_where] = ACTIONS(4425), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_scoped] = ACTIONS(7691), + [anon_sym_var] = ACTIONS(7258), + [sym_predefined_type] = ACTIONS(7260), + [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), + [sym_grit_metavariable] = ACTIONS(7262), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -667735,52 +659183,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5420), [sym_preproc_define] = STATE(5420), [sym_preproc_undef] = STATE(5420), - [anon_sym_LBRACK] = ACTIONS(7025), - [anon_sym_COMMA] = ACTIONS(7025), - [anon_sym_LPAREN] = ACTIONS(7025), - [anon_sym_LT] = ACTIONS(7027), - [anon_sym_GT] = ACTIONS(7027), - [anon_sym_where] = ACTIONS(7025), - [anon_sym_QMARK] = ACTIONS(7027), - [anon_sym_BANG] = ACTIONS(7027), - [anon_sym_PLUS_PLUS] = ACTIONS(7025), - [anon_sym_DASH_DASH] = ACTIONS(7025), - [anon_sym_PLUS] = ACTIONS(7027), - [anon_sym_DASH] = ACTIONS(7027), - [anon_sym_STAR] = ACTIONS(7025), - [anon_sym_SLASH] = ACTIONS(7027), - [anon_sym_PERCENT] = ACTIONS(7025), - [anon_sym_CARET] = ACTIONS(7025), - [anon_sym_PIPE] = ACTIONS(7027), - [anon_sym_AMP] = ACTIONS(7027), - [anon_sym_LT_LT] = ACTIONS(7025), - [anon_sym_GT_GT] = ACTIONS(7027), - [anon_sym_GT_GT_GT] = ACTIONS(7025), - [anon_sym_EQ_EQ] = ACTIONS(7025), - [anon_sym_BANG_EQ] = ACTIONS(7025), - [anon_sym_GT_EQ] = ACTIONS(7025), - [anon_sym_LT_EQ] = ACTIONS(7025), - [anon_sym_DOT] = ACTIONS(7027), - [anon_sym_switch] = ACTIONS(7025), - [anon_sym_DOT_DOT] = ACTIONS(7025), - [anon_sym_and] = ACTIONS(7687), - [anon_sym_or] = ACTIONS(7689), - [anon_sym_AMP_AMP] = ACTIONS(7025), - [anon_sym_PIPE_PIPE] = ACTIONS(7025), - [sym_op_coalescing] = ACTIONS(7025), - [anon_sym_from] = ACTIONS(7025), - [anon_sym_join] = ACTIONS(7025), - [anon_sym_let] = ACTIONS(7025), - [anon_sym_orderby] = ACTIONS(7025), - [anon_sym_ascending] = ACTIONS(7025), - [anon_sym_descending] = ACTIONS(7025), - [anon_sym_group] = ACTIONS(7025), - [anon_sym_select] = ACTIONS(7025), - [anon_sym_as] = ACTIONS(7027), - [anon_sym_is] = ACTIONS(7025), - [anon_sym_DASH_GT] = ACTIONS(7025), - [anon_sym_with] = ACTIONS(7025), - [sym_grit_metavariable] = ACTIONS(7025), + [sym__identifier_token] = ACTIONS(3913), + [anon_sym_alias] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_global] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COMMA] = ACTIONS(3694), + [anon_sym_RBRACK] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_file] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_GT] = ACTIONS(3910), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3694), + [anon_sym_notnull] = ACTIONS(3913), + [anon_sym_unmanaged] = ACTIONS(3913), + [anon_sym_operator] = ACTIONS(3913), + [anon_sym_this] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3694), + [anon_sym_scoped] = ACTIONS(3913), + [anon_sym_EQ_GT] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3913), + [anon_sym_when] = ACTIONS(3913), + [sym_discard] = ACTIONS(3913), + [anon_sym_and] = ACTIONS(3913), + [anon_sym_or] = ACTIONS(3913), + [anon_sym_from] = ACTIONS(3913), + [anon_sym_into] = ACTIONS(3913), + [anon_sym_join] = ACTIONS(3913), + [anon_sym_on] = ACTIONS(3913), + [anon_sym_equals] = ACTIONS(3913), + [anon_sym_let] = ACTIONS(3913), + [anon_sym_orderby] = ACTIONS(3913), + [anon_sym_ascending] = ACTIONS(3913), + [anon_sym_descending] = ACTIONS(3913), + [anon_sym_group] = ACTIONS(3913), + [anon_sym_by] = ACTIONS(3913), + [anon_sym_select] = ACTIONS(3913), + [sym_grit_metavariable] = ACTIONS(3910), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -667793,24 +659241,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5421] = { - [sym__name] = STATE(2457), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_type] = STATE(2376), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_identifier] = STATE(2392), - [sym__reserved_identifier] = STATE(2395), + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3169), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(5421), [sym_preproc_endregion] = STATE(5421), [sym_preproc_line] = STATE(5421), @@ -667820,34 +659268,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5421), [sym_preproc_define] = STATE(5421), [sym_preproc_undef] = STATE(5421), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(7520), - [anon_sym_ref] = ACTIONS(4452), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_where] = ACTIONS(4450), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_scoped] = ACTIONS(7268), - [anon_sym_var] = ACTIONS(7270), - [sym_predefined_type] = ACTIONS(7272), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_from] = ACTIONS(4450), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4450), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4450), - [anon_sym_orderby] = ACTIONS(4450), - [anon_sym_ascending] = ACTIONS(4450), - [anon_sym_descending] = ACTIONS(4450), - [anon_sym_group] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [sym_grit_metavariable] = ACTIONS(7274), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4190), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7673), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -667861,23 +659309,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5422] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8081), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7686), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5422), [sym_preproc_endregion] = STATE(5422), [sym_preproc_line] = STATE(5422), @@ -667891,14 +659339,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8047), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), + [anon_sym_scoped] = ACTIONS(8051), + [anon_sym_var] = ACTIONS(5320), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -667914,7 +659362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -667927,24 +659375,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5423] = { - [sym__name] = STATE(5853), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(3767), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(5620), - [sym__reserved_identifier] = STATE(3510), + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3922), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(5423), [sym_preproc_endregion] = STATE(5423), [sym_preproc_line] = STATE(5423), @@ -667954,34 +659402,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5423), [sym_preproc_define] = STATE(5423), [sym_preproc_undef] = STATE(5423), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4384), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7332), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(8015), + [anon_sym_ref] = ACTIONS(4501), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7636), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -667994,24 +659442,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5424] = { - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3881), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7694), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5424), [sym_preproc_endregion] = STATE(5424), [sym_preproc_line] = STATE(5424), @@ -668021,34 +659469,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5424), [sym_preproc_define] = STATE(5424), [sym_preproc_undef] = STATE(5424), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4572), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7314), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8047), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8051), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -668061,6 +659509,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5425] = { + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4499), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5425), [sym_preproc_endregion] = STATE(5425), [sym_preproc_line] = STATE(5425), @@ -668070,52 +659536,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5425), [sym_preproc_define] = STATE(5425), [sym_preproc_undef] = STATE(5425), - [aux_sym_query_body_repeat2] = STATE(5425), - [anon_sym_LBRACK] = ACTIONS(7497), - [anon_sym_COMMA] = ACTIONS(7497), - [anon_sym_LPAREN] = ACTIONS(7497), - [anon_sym_LT] = ACTIONS(7499), - [anon_sym_GT] = ACTIONS(7499), - [anon_sym_where] = ACTIONS(7497), - [anon_sym_QMARK] = ACTIONS(7499), - [anon_sym_BANG] = ACTIONS(7499), - [anon_sym_PLUS_PLUS] = ACTIONS(7497), - [anon_sym_DASH_DASH] = ACTIONS(7497), - [anon_sym_PLUS] = ACTIONS(7499), - [anon_sym_DASH] = ACTIONS(7499), - [anon_sym_STAR] = ACTIONS(7497), - [anon_sym_SLASH] = ACTIONS(7499), - [anon_sym_PERCENT] = ACTIONS(7497), - [anon_sym_CARET] = ACTIONS(7497), - [anon_sym_PIPE] = ACTIONS(7499), - [anon_sym_AMP] = ACTIONS(7499), - [anon_sym_LT_LT] = ACTIONS(7497), - [anon_sym_GT_GT] = ACTIONS(7499), - [anon_sym_GT_GT_GT] = ACTIONS(7497), - [anon_sym_EQ_EQ] = ACTIONS(7497), - [anon_sym_BANG_EQ] = ACTIONS(7497), - [anon_sym_GT_EQ] = ACTIONS(7497), - [anon_sym_LT_EQ] = ACTIONS(7497), - [anon_sym_DOT] = ACTIONS(7499), - [anon_sym_switch] = ACTIONS(7497), - [anon_sym_DOT_DOT] = ACTIONS(7497), - [anon_sym_AMP_AMP] = ACTIONS(7497), - [anon_sym_PIPE_PIPE] = ACTIONS(7497), - [sym_op_coalescing] = ACTIONS(7497), - [anon_sym_from] = ACTIONS(7497), - [anon_sym_into] = ACTIONS(7691), - [anon_sym_join] = ACTIONS(7497), - [anon_sym_let] = ACTIONS(7497), - [anon_sym_orderby] = ACTIONS(7497), - [anon_sym_ascending] = ACTIONS(7497), - [anon_sym_descending] = ACTIONS(7497), - [anon_sym_group] = ACTIONS(7497), - [anon_sym_select] = ACTIONS(7497), - [anon_sym_as] = ACTIONS(7499), - [anon_sym_is] = ACTIONS(7497), - [anon_sym_DASH_GT] = ACTIONS(7497), - [anon_sym_with] = ACTIONS(7497), - [sym_grit_metavariable] = ACTIONS(7497), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4476), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7520), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -668129,23 +659577,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5426] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(2376), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(2371), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5426), [sym_preproc_endregion] = STATE(5426), [sym_preproc_line] = STATE(5426), @@ -668159,14 +659607,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3900), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(3701), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7298), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -668182,7 +659630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -668195,6 +659643,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5427] = { + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3922), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(5427), [sym_preproc_endregion] = STATE(5427), [sym_preproc_line] = STATE(5427), @@ -668204,52 +659670,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5427), [sym_preproc_define] = STATE(5427), [sym_preproc_undef] = STATE(5427), - [aux_sym_query_body_repeat2] = STATE(5425), - [anon_sym_LBRACK] = ACTIONS(7491), - [anon_sym_COMMA] = ACTIONS(7491), - [anon_sym_LPAREN] = ACTIONS(7491), - [anon_sym_LT] = ACTIONS(7493), - [anon_sym_GT] = ACTIONS(7493), - [anon_sym_where] = ACTIONS(7491), - [anon_sym_QMARK] = ACTIONS(7493), - [anon_sym_BANG] = ACTIONS(7493), - [anon_sym_PLUS_PLUS] = ACTIONS(7491), - [anon_sym_DASH_DASH] = ACTIONS(7491), - [anon_sym_PLUS] = ACTIONS(7493), - [anon_sym_DASH] = ACTIONS(7493), - [anon_sym_STAR] = ACTIONS(7491), - [anon_sym_SLASH] = ACTIONS(7493), - [anon_sym_PERCENT] = ACTIONS(7491), - [anon_sym_CARET] = ACTIONS(7491), - [anon_sym_PIPE] = ACTIONS(7493), - [anon_sym_AMP] = ACTIONS(7493), - [anon_sym_LT_LT] = ACTIONS(7491), - [anon_sym_GT_GT] = ACTIONS(7493), - [anon_sym_GT_GT_GT] = ACTIONS(7491), - [anon_sym_EQ_EQ] = ACTIONS(7491), - [anon_sym_BANG_EQ] = ACTIONS(7491), - [anon_sym_GT_EQ] = ACTIONS(7491), - [anon_sym_LT_EQ] = ACTIONS(7491), - [anon_sym_DOT] = ACTIONS(7493), - [anon_sym_switch] = ACTIONS(7491), - [anon_sym_DOT_DOT] = ACTIONS(7491), - [anon_sym_AMP_AMP] = ACTIONS(7491), - [anon_sym_PIPE_PIPE] = ACTIONS(7491), - [sym_op_coalescing] = ACTIONS(7491), - [anon_sym_from] = ACTIONS(7491), - [anon_sym_into] = ACTIONS(7681), - [anon_sym_join] = ACTIONS(7491), - [anon_sym_let] = ACTIONS(7491), - [anon_sym_orderby] = ACTIONS(7491), - [anon_sym_ascending] = ACTIONS(7491), - [anon_sym_descending] = ACTIONS(7491), - [anon_sym_group] = ACTIONS(7491), - [anon_sym_select] = ACTIONS(7491), - [anon_sym_as] = ACTIONS(7493), - [anon_sym_is] = ACTIONS(7491), - [anon_sym_DASH_GT] = ACTIONS(7491), - [anon_sym_with] = ACTIONS(7491), - [sym_grit_metavariable] = ACTIONS(7491), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(8015), + [anon_sym_ref] = ACTIONS(4474), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7657), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -668262,6 +659710,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5428] = { + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6761), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5428), [sym_preproc_endregion] = STATE(5428), [sym_preproc_line] = STATE(5428), @@ -668271,103 +659737,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5428), [sym_preproc_define] = STATE(5428), [sym_preproc_undef] = STATE(5428), - [anon_sym_LBRACK] = ACTIONS(7663), - [anon_sym_COMMA] = ACTIONS(7663), - [anon_sym_LPAREN] = ACTIONS(7663), - [anon_sym_LT] = ACTIONS(7665), - [anon_sym_GT] = ACTIONS(7665), - [anon_sym_where] = ACTIONS(7663), - [anon_sym_QMARK] = ACTIONS(7665), - [anon_sym_BANG] = ACTIONS(7665), - [anon_sym_PLUS_PLUS] = ACTIONS(7663), - [anon_sym_DASH_DASH] = ACTIONS(7663), - [anon_sym_PLUS] = ACTIONS(7665), - [anon_sym_DASH] = ACTIONS(7665), - [anon_sym_STAR] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7665), - [anon_sym_PERCENT] = ACTIONS(7663), - [anon_sym_CARET] = ACTIONS(7663), - [anon_sym_PIPE] = ACTIONS(7665), - [anon_sym_AMP] = ACTIONS(7665), - [anon_sym_LT_LT] = ACTIONS(7663), - [anon_sym_GT_GT] = ACTIONS(7665), - [anon_sym_GT_GT_GT] = ACTIONS(7663), - [anon_sym_EQ_EQ] = ACTIONS(7663), - [anon_sym_BANG_EQ] = ACTIONS(7663), - [anon_sym_GT_EQ] = ACTIONS(7663), - [anon_sym_LT_EQ] = ACTIONS(7663), - [anon_sym_DOT] = ACTIONS(7665), - [anon_sym_switch] = ACTIONS(7663), - [anon_sym_DOT_DOT] = ACTIONS(7663), - [anon_sym_and] = ACTIONS(7687), - [anon_sym_or] = ACTIONS(7689), - [anon_sym_AMP_AMP] = ACTIONS(7663), - [anon_sym_PIPE_PIPE] = ACTIONS(7663), - [sym_op_coalescing] = ACTIONS(7663), - [anon_sym_from] = ACTIONS(7663), - [anon_sym_join] = ACTIONS(7663), - [anon_sym_let] = ACTIONS(7663), - [anon_sym_orderby] = ACTIONS(7663), - [anon_sym_ascending] = ACTIONS(7663), - [anon_sym_descending] = ACTIONS(7663), - [anon_sym_group] = ACTIONS(7663), - [anon_sym_select] = ACTIONS(7663), - [anon_sym_as] = ACTIONS(7665), - [anon_sym_is] = ACTIONS(7663), - [anon_sym_DASH_GT] = ACTIONS(7663), - [anon_sym_with] = ACTIONS(7663), - [sym_grit_metavariable] = ACTIONS(7663), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5429] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(2376), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5429), - [sym_preproc_endregion] = STATE(5429), - [sym_preproc_line] = STATE(5429), - [sym_preproc_pragma] = STATE(5429), - [sym_preproc_nullable] = STATE(5429), - [sym_preproc_error] = STATE(5429), - [sym_preproc_warning] = STATE(5429), - [sym_preproc_define] = STATE(5429), - [sym_preproc_undef] = STATE(5429), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(6807), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), + [anon_sym_scoped] = ACTIONS(6815), + [anon_sym_var] = ACTIONS(5320), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -668383,7 +659764,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = 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), + }, + [5429] = { + [sym_type_argument_list] = STATE(3144), + [sym_preproc_region] = STATE(5429), + [sym_preproc_endregion] = STATE(5429), + [sym_preproc_line] = STATE(5429), + [sym_preproc_pragma] = STATE(5429), + [sym_preproc_nullable] = STATE(5429), + [sym_preproc_error] = STATE(5429), + [sym_preproc_warning] = STATE(5429), + [sym_preproc_define] = STATE(5429), + [sym_preproc_undef] = STATE(5429), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(5581), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_COLON_COLON] = ACTIONS(8156), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3955), + [sym_op_bitwise_or] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3957), + [sym_op_left_shift] = ACTIONS(3957), + [sym_op_right_shift] = ACTIONS(3955), + [sym_op_unsigned_right_shift] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [sym_op_divide] = ACTIONS(3955), + [sym_op_modulo] = ACTIONS(3957), + [sym_op_coalescing] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_join] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_orderby] = ACTIONS(3957), + [anon_sym_group] = ACTIONS(3957), + [anon_sym_select] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -668396,6 +659844,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5430] = { + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(4291), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(5430), [sym_preproc_endregion] = STATE(5430), [sym_preproc_line] = STATE(5430), @@ -668405,52 +659871,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5430), [sym_preproc_define] = STATE(5430), [sym_preproc_undef] = STATE(5430), - [anon_sym_LBRACK] = ACTIONS(7635), - [anon_sym_COMMA] = ACTIONS(7635), - [anon_sym_LPAREN] = ACTIONS(7635), - [anon_sym_LT] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7637), - [anon_sym_where] = ACTIONS(7635), - [anon_sym_QMARK] = ACTIONS(7637), - [anon_sym_BANG] = ACTIONS(7637), - [anon_sym_PLUS_PLUS] = ACTIONS(7635), - [anon_sym_DASH_DASH] = ACTIONS(7635), - [anon_sym_PLUS] = ACTIONS(7637), - [anon_sym_DASH] = ACTIONS(7637), - [anon_sym_STAR] = ACTIONS(7635), - [anon_sym_SLASH] = ACTIONS(7637), - [anon_sym_PERCENT] = ACTIONS(7635), - [anon_sym_CARET] = ACTIONS(7635), - [anon_sym_PIPE] = ACTIONS(7637), - [anon_sym_AMP] = ACTIONS(7637), - [anon_sym_LT_LT] = ACTIONS(7635), - [anon_sym_GT_GT] = ACTIONS(7637), - [anon_sym_GT_GT_GT] = ACTIONS(7635), - [anon_sym_EQ_EQ] = ACTIONS(7635), - [anon_sym_BANG_EQ] = ACTIONS(7635), - [anon_sym_GT_EQ] = ACTIONS(7635), - [anon_sym_LT_EQ] = ACTIONS(7635), - [anon_sym_DOT] = ACTIONS(7637), - [anon_sym_switch] = ACTIONS(7635), - [anon_sym_DOT_DOT] = ACTIONS(7635), - [anon_sym_and] = ACTIONS(7687), - [anon_sym_or] = ACTIONS(7637), - [anon_sym_AMP_AMP] = ACTIONS(7635), - [anon_sym_PIPE_PIPE] = ACTIONS(7635), - [sym_op_coalescing] = ACTIONS(7635), - [anon_sym_from] = ACTIONS(7635), - [anon_sym_join] = ACTIONS(7635), - [anon_sym_let] = ACTIONS(7635), - [anon_sym_orderby] = ACTIONS(7635), - [anon_sym_ascending] = ACTIONS(7635), - [anon_sym_descending] = ACTIONS(7635), - [anon_sym_group] = ACTIONS(7635), - [anon_sym_select] = ACTIONS(7635), - [anon_sym_as] = ACTIONS(7637), - [anon_sym_is] = ACTIONS(7635), - [anon_sym_DASH_GT] = ACTIONS(7635), - [anon_sym_with] = ACTIONS(7635), - [sym_grit_metavariable] = ACTIONS(7635), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(8015), + [anon_sym_ref] = ACTIONS(4375), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7532), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -668463,24 +659911,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5431] = { - [sym__name] = STATE(3024), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(3005), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2821), - [sym_type] = STATE(2839), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7499), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7860), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(3011), - [sym_identifier] = STATE(2700), - [sym__reserved_identifier] = STATE(2781), + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(3922), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(5431), [sym_preproc_endregion] = STATE(5431), [sym_preproc_line] = STATE(5431), @@ -668490,34 +659938,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5431), [sym_preproc_define] = STATE(5431), [sym_preproc_undef] = STATE(5431), - [sym__identifier_token] = ACTIONS(7581), - [anon_sym_alias] = ACTIONS(7583), - [anon_sym_global] = ACTIONS(7583), - [anon_sym_LPAREN] = ACTIONS(7585), - [anon_sym_ref] = ACTIONS(3946), - [anon_sym_delegate] = ACTIONS(7587), - [anon_sym_file] = ACTIONS(7583), - [anon_sym_where] = ACTIONS(7583), - [anon_sym_notnull] = ACTIONS(7583), - [anon_sym_unmanaged] = ACTIONS(7583), - [anon_sym_scoped] = ACTIONS(7589), - [anon_sym_var] = ACTIONS(7591), - [sym_predefined_type] = ACTIONS(7593), - [anon_sym_yield] = ACTIONS(7583), - [anon_sym_when] = ACTIONS(7583), - [anon_sym_from] = ACTIONS(7583), - [anon_sym_into] = ACTIONS(7583), - [anon_sym_join] = ACTIONS(7583), - [anon_sym_on] = ACTIONS(7583), - [anon_sym_equals] = ACTIONS(7583), - [anon_sym_let] = ACTIONS(7583), - [anon_sym_orderby] = ACTIONS(7583), - [anon_sym_ascending] = ACTIONS(7583), - [anon_sym_descending] = ACTIONS(7583), - [anon_sym_group] = ACTIONS(7583), - [anon_sym_by] = ACTIONS(7583), - [anon_sym_select] = ACTIONS(7583), - [sym_grit_metavariable] = ACTIONS(7595), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(8015), + [anon_sym_ref] = ACTIONS(4375), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7532), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -668530,24 +659978,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5432] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8082), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3371), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5432), [sym_preproc_endregion] = STATE(5432), [sym_preproc_line] = STATE(5432), @@ -668557,34 +660005,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5432), [sym_preproc_define] = STATE(5432), [sym_preproc_undef] = STATE(5432), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4496), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7742), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -668597,24 +660045,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5433] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7995), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(5481), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3169), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(5429), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(5433), [sym_preproc_endregion] = STATE(5433), [sym_preproc_line] = STATE(5433), @@ -668624,34 +660072,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5433), [sym_preproc_define] = STATE(5433), [sym_preproc_undef] = STATE(5433), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7545), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7549), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4494), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7392), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -668664,24 +660112,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5434] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7924), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3218), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(5434), [sym_preproc_endregion] = STATE(5434), [sym_preproc_line] = STATE(5434), @@ -668691,34 +660139,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5434), [sym_preproc_define] = STATE(5434), [sym_preproc_undef] = STATE(5434), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4602), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7574), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -668732,23 +660180,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5435] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7838), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(6804), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5435), [sym_preproc_endregion] = STATE(5435), [sym_preproc_line] = STATE(5435), @@ -668762,14 +660210,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7545), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8047), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7549), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(8051), + [anon_sym_var] = ACTIONS(5320), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -668785,7 +660233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -668798,24 +660246,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5436] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4876), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), + [sym__name] = STATE(3392), + [sym_alias_qualified_name] = STATE(3235), + [sym__simple_name] = STATE(3235), + [sym_qualified_name] = STATE(3235), + [sym_generic_name] = STATE(3247), + [sym_type] = STATE(3309), + [sym_implicit_type] = STATE(3236), + [sym_array_type] = STATE(3237), + [sym__array_base_type] = STATE(7491), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7836), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3236), + [sym_scoped_type] = STATE(3236), + [sym_tuple_type] = STATE(3239), + [sym_identifier] = STATE(3199), + [sym__reserved_identifier] = STATE(3148), [sym_preproc_region] = STATE(5436), [sym_preproc_endregion] = STATE(5436), [sym_preproc_line] = STATE(5436), @@ -668825,34 +660273,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5436), [sym_preproc_define] = STATE(5436), [sym_preproc_undef] = STATE(5436), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_ref] = ACTIONS(4382), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7392), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(8029), + [anon_sym_ref] = ACTIONS(4566), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_notnull] = ACTIONS(4210), + [anon_sym_unmanaged] = ACTIONS(4210), + [anon_sym_scoped] = ACTIONS(7378), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(4210), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(4210), + [anon_sym_descending] = ACTIONS(4210), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [sym_grit_metavariable] = ACTIONS(4214), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -668865,24 +660313,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5437] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7914), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3218), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(5437), [sym_preproc_endregion] = STATE(5437), [sym_preproc_line] = STATE(5437), @@ -668892,34 +660340,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5437), [sym_preproc_define] = STATE(5437), [sym_preproc_undef] = STATE(5437), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4596), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7584), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -668932,24 +660380,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5438] = { - [sym__name] = STATE(5487), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3881), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(5383), - [sym__reserved_identifier] = STATE(3398), + [sym__name] = STATE(6729), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7377), + [sym_implicit_type] = STATE(7470), + [sym_array_type] = STATE(6942), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7877), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(7470), + [sym_scoped_type] = STATE(7470), + [sym_tuple_type] = STATE(6889), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5438), [sym_preproc_endregion] = STATE(5438), [sym_preproc_line] = STATE(5438), @@ -668959,86 +660407,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5438), [sym_preproc_define] = STATE(5438), [sym_preproc_undef] = STATE(5438), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4477), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7320), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5439] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7937), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5439), - [sym_preproc_endregion] = STATE(5439), - [sym_preproc_line] = STATE(5439), - [sym_preproc_pragma] = STATE(5439), - [sym_preproc_nullable] = STATE(5439), - [sym_preproc_error] = STATE(5439), - [sym_preproc_warning] = STATE(5439), - [sym_preproc_define] = STATE(5439), - [sym_preproc_undef] = STATE(5439), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), + [anon_sym_scoped] = ACTIONS(5688), + [anon_sym_var] = ACTIONS(5320), + [sym_predefined_type] = ACTIONS(5690), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -669053,7 +660434,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = 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), + }, + [5439] = { + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4499), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), + [sym_preproc_region] = STATE(5439), + [sym_preproc_endregion] = STATE(5439), + [sym_preproc_line] = STATE(5439), + [sym_preproc_pragma] = STATE(5439), + [sym_preproc_nullable] = STATE(5439), + [sym_preproc_error] = STATE(5439), + [sym_preproc_warning] = STATE(5439), + [sym_preproc_define] = STATE(5439), + [sym_preproc_undef] = STATE(5439), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4117), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7718), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -669066,24 +660514,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5440] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7939), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(4291), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), [sym_preproc_region] = STATE(5440), [sym_preproc_endregion] = STATE(5440), [sym_preproc_line] = STATE(5440), @@ -669093,34 +660541,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5440), [sym_preproc_define] = STATE(5440), [sym_preproc_undef] = STATE(5440), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(8015), + [anon_sym_ref] = ACTIONS(4474), + [anon_sym_delegate] = ACTIONS(7508), + [anon_sym_file] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_notnull] = ACTIONS(4090), + [anon_sym_unmanaged] = ACTIONS(4090), + [anon_sym_scoped] = ACTIONS(7657), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), + [anon_sym_yield] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_ascending] = ACTIONS(4090), + [anon_sym_descending] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [sym_grit_metavariable] = ACTIONS(4097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -669133,24 +660581,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5441] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(4752), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), [sym_preproc_region] = STATE(5441), [sym_preproc_endregion] = STATE(5441), [sym_preproc_line] = STATE(5441), @@ -669160,34 +660590,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5441), [sym_preproc_define] = STATE(5441), [sym_preproc_undef] = STATE(5441), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4485), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7260), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [aux_sym_query_body_repeat2] = STATE(5358), + [anon_sym_LBRACK] = ACTIONS(7907), + [anon_sym_COMMA] = ACTIONS(7907), + [anon_sym_LPAREN] = ACTIONS(7907), + [anon_sym_LT] = ACTIONS(7909), + [anon_sym_GT] = ACTIONS(7909), + [anon_sym_where] = ACTIONS(7907), + [anon_sym_QMARK] = ACTIONS(7909), + [anon_sym_DOT] = ACTIONS(7909), + [anon_sym_STAR] = ACTIONS(7907), + [anon_sym_switch] = ACTIONS(7907), + [anon_sym_DOT_DOT] = ACTIONS(7907), + [anon_sym_LT_EQ] = ACTIONS(7907), + [anon_sym_GT_EQ] = ACTIONS(7907), + [anon_sym_EQ_EQ] = ACTIONS(7907), + [anon_sym_BANG_EQ] = ACTIONS(7907), + [anon_sym_AMP_AMP] = ACTIONS(7907), + [anon_sym_PIPE_PIPE] = ACTIONS(7907), + [anon_sym_AMP] = ACTIONS(7909), + [sym_op_bitwise_or] = ACTIONS(7909), + [anon_sym_CARET] = ACTIONS(7907), + [sym_op_left_shift] = ACTIONS(7907), + [sym_op_right_shift] = ACTIONS(7909), + [sym_op_unsigned_right_shift] = ACTIONS(7907), + [anon_sym_PLUS] = ACTIONS(7909), + [anon_sym_DASH] = ACTIONS(7909), + [sym_op_divide] = ACTIONS(7909), + [sym_op_modulo] = ACTIONS(7907), + [sym_op_coalescing] = ACTIONS(7907), + [anon_sym_BANG] = ACTIONS(7909), + [anon_sym_PLUS_PLUS] = ACTIONS(7907), + [anon_sym_DASH_DASH] = ACTIONS(7907), + [anon_sym_from] = ACTIONS(7907), + [anon_sym_into] = ACTIONS(8145), + [anon_sym_join] = ACTIONS(7907), + [anon_sym_let] = ACTIONS(7907), + [anon_sym_orderby] = ACTIONS(7907), + [anon_sym_ascending] = ACTIONS(7907), + [anon_sym_descending] = ACTIONS(7907), + [anon_sym_group] = ACTIONS(7907), + [anon_sym_select] = ACTIONS(7907), + [anon_sym_as] = ACTIONS(7909), + [anon_sym_is] = ACTIONS(7907), + [anon_sym_DASH_GT] = ACTIONS(7907), + [anon_sym_with] = ACTIONS(7907), + [sym_grit_metavariable] = ACTIONS(7907), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -669200,24 +660648,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5442] = { - [sym__name] = STATE(6730), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7558), - [sym_implicit_type] = STATE(7562), - [sym_array_type] = STATE(6933), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7879), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(7562), - [sym_scoped_type] = STATE(7562), - [sym_tuple_type] = STATE(6784), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7749), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5442), [sym_preproc_endregion] = STATE(5442), [sym_preproc_line] = STATE(5442), @@ -669231,15 +660679,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7443), - [anon_sym_delegate] = ACTIONS(5983), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6984), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(5991), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), + [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), [anon_sym_from] = ACTIONS(3211), @@ -669254,7 +660702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -669267,24 +660715,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5443] = { - [sym__name] = STATE(5593), - [sym_alias_qualified_name] = STATE(5609), - [sym__simple_name] = STATE(5609), - [sym_qualified_name] = STATE(5609), - [sym_generic_name] = STATE(5595), - [sym_type] = STATE(5692), - [sym_implicit_type] = STATE(5606), - [sym_array_type] = STATE(5613), - [sym__array_base_type] = STATE(7386), - [sym_nullable_type] = STATE(5586), - [sym_pointer_type] = STATE(5586), - [sym__pointer_base_type] = STATE(8114), - [sym_function_pointer_type] = STATE(5586), - [sym_ref_type] = STATE(5606), - [sym_scoped_type] = STATE(5606), - [sym_tuple_type] = STATE(5591), - [sym_identifier] = STATE(5549), - [sym__reserved_identifier] = STATE(5566), + [sym__name] = STATE(5640), + [sym_alias_qualified_name] = STATE(5591), + [sym__simple_name] = STATE(5591), + [sym_qualified_name] = STATE(5591), + [sym_generic_name] = STATE(5632), + [sym_type] = STATE(5636), + [sym_implicit_type] = STATE(5601), + [sym_array_type] = STATE(5638), + [sym__array_base_type] = STATE(7416), + [sym_nullable_type] = STATE(5629), + [sym_pointer_type] = STATE(5629), + [sym__pointer_base_type] = STATE(8041), + [sym_function_pointer_type] = STATE(5629), + [sym_ref_type] = STATE(5601), + [sym_scoped_type] = STATE(5601), + [sym_tuple_type] = STATE(5626), + [sym_identifier] = STATE(5537), + [sym__reserved_identifier] = STATE(5554), [sym_preproc_region] = STATE(5443), [sym_preproc_endregion] = STATE(5443), [sym_preproc_line] = STATE(5443), @@ -669297,16 +660745,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4318), [anon_sym_alias] = ACTIONS(4320), [anon_sym_global] = ACTIONS(4320), - [anon_sym_LPAREN] = ACTIONS(7601), + [anon_sym_LPAREN] = ACTIONS(8043), [anon_sym_ref] = ACTIONS(4322), - [anon_sym_delegate] = ACTIONS(7290), + [anon_sym_delegate] = ACTIONS(7466), [anon_sym_file] = ACTIONS(4320), [anon_sym_where] = ACTIONS(4320), [anon_sym_notnull] = ACTIONS(4320), [anon_sym_unmanaged] = ACTIONS(4320), - [anon_sym_scoped] = ACTIONS(7340), - [anon_sym_var] = ACTIONS(7294), - [sym_predefined_type] = ACTIONS(7296), + [anon_sym_scoped] = ACTIONS(7468), + [anon_sym_var] = ACTIONS(7470), + [sym_predefined_type] = ACTIONS(7472), [anon_sym_yield] = ACTIONS(4320), [anon_sym_when] = ACTIONS(4320), [anon_sym_from] = ACTIONS(4320), @@ -669335,23 +660783,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5444] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7944), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7755), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5444), [sym_preproc_endregion] = STATE(5444), [sym_preproc_line] = STATE(5444), @@ -669365,14 +660813,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7545), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7549), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -669388,7 +660836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -669401,24 +660849,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5445] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4710), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), + [sym__name] = STATE(5018), + [sym_alias_qualified_name] = STATE(3193), + [sym__simple_name] = STATE(3193), + [sym_qualified_name] = STATE(3193), + [sym_generic_name] = STATE(3145), + [sym_type] = STATE(3218), + [sym_implicit_type] = STATE(3191), + [sym_array_type] = STATE(3190), + [sym__array_base_type] = STATE(7544), + [sym_nullable_type] = STATE(3189), + [sym_pointer_type] = STATE(3189), + [sym__pointer_base_type] = STATE(7684), + [sym_function_pointer_type] = STATE(3189), + [sym_ref_type] = STATE(3191), + [sym_scoped_type] = STATE(3191), + [sym_tuple_type] = STATE(3188), + [sym_identifier] = STATE(4422), + [sym__reserved_identifier] = STATE(3071), [sym_preproc_region] = STATE(5445), [sym_preproc_endregion] = STATE(5445), [sym_preproc_line] = STATE(5445), @@ -669428,19 +660876,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5445), [sym_preproc_define] = STATE(5445), [sym_preproc_undef] = STATE(5445), + [sym__identifier_token] = ACTIONS(4186), + [anon_sym_alias] = ACTIONS(4188), + [anon_sym_global] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7984), + [anon_sym_ref] = ACTIONS(4190), + [anon_sym_delegate] = ACTIONS(7390), + [anon_sym_file] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4188), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_scoped] = ACTIONS(7673), + [anon_sym_var] = ACTIONS(7394), + [sym_predefined_type] = ACTIONS(7396), + [anon_sym_yield] = ACTIONS(4188), + [anon_sym_when] = 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_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4188), + [anon_sym_by] = ACTIONS(4188), + [anon_sym_select] = ACTIONS(4188), + [sym_grit_metavariable] = ACTIONS(4195), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5446] = { + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(4291), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), + [sym_preproc_region] = STATE(5446), + [sym_preproc_endregion] = STATE(5446), + [sym_preproc_line] = STATE(5446), + [sym_preproc_pragma] = STATE(5446), + [sym_preproc_nullable] = STATE(5446), + [sym_preproc_error] = STATE(5446), + [sym_preproc_warning] = STATE(5446), + [sym_preproc_define] = STATE(5446), + [sym_preproc_undef] = STATE(5446), [sym__identifier_token] = ACTIONS(4088), [anon_sym_alias] = ACTIONS(4090), [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_ref] = ACTIONS(4493), - [anon_sym_delegate] = ACTIONS(7252), + [anon_sym_LPAREN] = ACTIONS(8015), + [anon_sym_ref] = ACTIONS(4501), + [anon_sym_delegate] = ACTIONS(7508), [anon_sym_file] = ACTIONS(4090), [anon_sym_where] = ACTIONS(4090), [anon_sym_notnull] = ACTIONS(4090), [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7278), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), + [anon_sym_scoped] = ACTIONS(7636), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), [anon_sym_yield] = ACTIONS(4090), [anon_sym_when] = ACTIONS(4090), [anon_sym_from] = ACTIONS(4090), @@ -669467,92 +660982,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5446] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7987), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5446), - [sym_preproc_endregion] = STATE(5446), - [sym_preproc_line] = STATE(5446), - [sym_preproc_pragma] = STATE(5446), - [sym_preproc_nullable] = STATE(5446), - [sym_preproc_error] = STATE(5446), - [sym_preproc_warning] = STATE(5446), - [sym_preproc_define] = STATE(5446), - [sym_preproc_undef] = STATE(5446), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7545), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7549), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, [5447] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(6729), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4499), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), + [sym__array_base_type] = STATE(7430), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5447), [sym_preproc_endregion] = STATE(5447), [sym_preproc_line] = STATE(5447), @@ -669562,34 +661010,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5447), [sym_preproc_define] = STATE(5447), [sym_preproc_undef] = STATE(5447), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7013), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7021), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4516), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7600), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -669602,24 +661050,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5448] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7788), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), + [sym__name] = STATE(6582), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(2371), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(6555), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5448), [sym_preproc_endregion] = STATE(5448), [sym_preproc_line] = STATE(5448), @@ -669633,14 +661081,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7545), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8067), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7549), - [anon_sym_var] = ACTIONS(5496), + [anon_sym_scoped] = ACTIONS(8071), + [anon_sym_var] = ACTIONS(8073), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -669656,7 +661104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = ACTIONS(4060), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -669669,24 +661117,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5449] = { - [sym__name] = STATE(4938), - [sym_alias_qualified_name] = STATE(4796), - [sym__simple_name] = STATE(4796), - [sym_qualified_name] = STATE(4796), - [sym_generic_name] = STATE(4781), - [sym_type] = STATE(5050), - [sym_implicit_type] = STATE(4795), - [sym_array_type] = STATE(4792), - [sym__array_base_type] = STATE(7448), - [sym_nullable_type] = STATE(4789), - [sym_pointer_type] = STATE(4789), - [sym__pointer_base_type] = STATE(7979), - [sym_function_pointer_type] = STATE(4789), - [sym_ref_type] = STATE(4795), - [sym_scoped_type] = STATE(4795), - [sym_tuple_type] = STATE(4787), - [sym_identifier] = STATE(4660), - [sym__reserved_identifier] = STATE(4662), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7852), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5449), [sym_preproc_endregion] = STATE(5449), [sym_preproc_line] = STATE(5449), @@ -669696,34 +661144,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5449), [sym_preproc_define] = STATE(5449), [sym_preproc_undef] = STATE(5449), - [sym__identifier_token] = ACTIONS(4139), - [anon_sym_alias] = ACTIONS(4141), - [anon_sym_global] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(7559), - [anon_sym_ref] = ACTIONS(4516), - [anon_sym_delegate] = ACTIONS(7234), - [anon_sym_file] = ACTIONS(4141), - [anon_sym_where] = ACTIONS(4141), - [anon_sym_notnull] = ACTIONS(4141), - [anon_sym_unmanaged] = ACTIONS(4141), - [anon_sym_scoped] = ACTIONS(7338), - [anon_sym_var] = ACTIONS(7238), - [sym_predefined_type] = ACTIONS(7240), - [anon_sym_yield] = ACTIONS(4141), - [anon_sym_when] = ACTIONS(4141), - [anon_sym_from] = ACTIONS(4141), - [anon_sym_into] = ACTIONS(4141), - [anon_sym_join] = ACTIONS(4141), - [anon_sym_on] = ACTIONS(4141), - [anon_sym_equals] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_orderby] = ACTIONS(4141), - [anon_sym_ascending] = ACTIONS(4141), - [anon_sym_descending] = ACTIONS(4141), - [anon_sym_group] = ACTIONS(4141), - [anon_sym_by] = ACTIONS(4141), - [anon_sym_select] = ACTIONS(4141), - [sym_grit_metavariable] = ACTIONS(4145), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), + [sym_predefined_type] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -669736,24 +661184,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5450] = { - [sym__name] = STATE(5487), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3746), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), + [sym__name] = STATE(4540), + [sym_alias_qualified_name] = STATE(4372), + [sym__simple_name] = STATE(4372), + [sym_qualified_name] = STATE(4372), + [sym_generic_name] = STATE(4273), + [sym_type] = STATE(4499), + [sym_implicit_type] = STATE(4369), + [sym_array_type] = STATE(4328), [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(5383), - [sym__reserved_identifier] = STATE(3398), + [sym_nullable_type] = STATE(4281), + [sym_pointer_type] = STATE(4281), + [sym__pointer_base_type] = STATE(7997), + [sym_function_pointer_type] = STATE(4281), + [sym_ref_type] = STATE(4369), + [sym_scoped_type] = STATE(4369), + [sym_tuple_type] = STATE(4278), + [sym_identifier] = STATE(3918), + [sym__reserved_identifier] = STATE(3824), [sym_preproc_region] = STATE(5450), [sym_preproc_endregion] = STATE(5450), [sym_preproc_line] = STATE(5450), @@ -669763,34 +661211,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5450), [sym_preproc_define] = STATE(5450), [sym_preproc_undef] = STATE(5450), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4477), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7320), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(4113), + [anon_sym_alias] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(7988), + [anon_sym_ref] = ACTIONS(4468), + [anon_sym_delegate] = ACTIONS(7488), + [anon_sym_file] = ACTIONS(4115), + [anon_sym_where] = ACTIONS(4115), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_scoped] = ACTIONS(7608), + [anon_sym_var] = ACTIONS(7492), + [sym_predefined_type] = ACTIONS(7494), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_when] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_into] = ACTIONS(4115), + [anon_sym_join] = ACTIONS(4115), + [anon_sym_on] = ACTIONS(4115), + [anon_sym_equals] = ACTIONS(4115), + [anon_sym_let] = ACTIONS(4115), + [anon_sym_orderby] = ACTIONS(4115), + [anon_sym_ascending] = ACTIONS(4115), + [anon_sym_descending] = ACTIONS(4115), + [anon_sym_group] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [sym_grit_metavariable] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -669803,24 +661251,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5451] = { - [sym__name] = STATE(5071), - [sym_alias_qualified_name] = STATE(3718), - [sym__simple_name] = STATE(3718), - [sym_qualified_name] = STATE(3718), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3746), - [sym_implicit_type] = STATE(3720), - [sym_array_type] = STATE(3721), - [sym__array_base_type] = STATE(7430), - [sym_nullable_type] = STATE(3722), - [sym_pointer_type] = STATE(3722), - [sym__pointer_base_type] = STATE(8026), - [sym_function_pointer_type] = STATE(3722), - [sym_ref_type] = STATE(3720), - [sym_scoped_type] = STATE(3720), - [sym_tuple_type] = STATE(3724), - [sym_identifier] = STATE(4780), - [sym__reserved_identifier] = STATE(3398), + [sym__name] = STATE(5556), + [sym_alias_qualified_name] = STATE(5457), + [sym__simple_name] = STATE(5457), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(5468), + [sym_type] = STATE(7757), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [sym_function_pointer_type] = STATE(5527), + [sym_ref_type] = STATE(2359), + [sym_scoped_type] = STATE(2359), + [sym_tuple_type] = STATE(5541), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(5149), [sym_preproc_region] = STATE(5451), [sym_preproc_endregion] = STATE(5451), [sym_preproc_line] = STATE(5451), @@ -669830,152 +661278,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5451), [sym_preproc_define] = STATE(5451), [sym_preproc_undef] = STATE(5451), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_ref] = ACTIONS(4572), - [anon_sym_delegate] = ACTIONS(7312), - [anon_sym_file] = ACTIONS(4197), - [anon_sym_where] = ACTIONS(4197), - [anon_sym_notnull] = ACTIONS(4197), - [anon_sym_unmanaged] = ACTIONS(4197), - [anon_sym_scoped] = ACTIONS(7314), - [anon_sym_var] = ACTIONS(7316), - [sym_predefined_type] = ACTIONS(7318), - [anon_sym_yield] = ACTIONS(4197), - [anon_sym_when] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4197), - [anon_sym_into] = ACTIONS(4197), - [anon_sym_join] = ACTIONS(4197), - [anon_sym_on] = ACTIONS(4197), - [anon_sym_equals] = ACTIONS(4197), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_orderby] = ACTIONS(4197), - [anon_sym_ascending] = ACTIONS(4197), - [anon_sym_descending] = ACTIONS(4197), - [anon_sym_group] = ACTIONS(4197), - [anon_sym_by] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [sym_grit_metavariable] = ACTIONS(4204), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5452] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(8011), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5452), - [sym_preproc_endregion] = STATE(5452), - [sym_preproc_line] = STATE(5452), - [sym_preproc_pragma] = STATE(5452), - [sym_preproc_nullable] = STATE(5452), - [sym_preproc_error] = STATE(5452), - [sym_preproc_warning] = STATE(5452), - [sym_preproc_define] = STATE(5452), - [sym_preproc_undef] = STATE(5452), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7545), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7549), - [anon_sym_var] = ACTIONS(5496), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [5453] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7984), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5453), - [sym_preproc_endregion] = STATE(5453), - [sym_preproc_line] = STATE(5453), - [sym_preproc_pragma] = STATE(5453), - [sym_preproc_nullable] = STATE(5453), - [sym_preproc_error] = STATE(5453), - [sym_preproc_warning] = STATE(5453), - [sym_preproc_define] = STATE(5453), - [sym_preproc_undef] = STATE(5453), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), + [anon_sym_ref] = ACTIONS(8021), + [anon_sym_delegate] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3211), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), + [anon_sym_scoped] = ACTIONS(8025), + [anon_sym_var] = ACTIONS(7997), [sym_predefined_type] = ACTIONS(3241), [anon_sym_yield] = ACTIONS(3211), [anon_sym_when] = ACTIONS(3211), @@ -669991,141 +661305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3211), [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [5454] = { - [sym__name] = STATE(2457), - [sym_alias_qualified_name] = STATE(2433), - [sym__simple_name] = STATE(2433), - [sym_qualified_name] = STATE(2433), - [sym_generic_name] = STATE(2408), - [sym_type] = STATE(5337), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(2435), - [sym__array_base_type] = STATE(7489), - [sym_nullable_type] = STATE(2452), - [sym_pointer_type] = STATE(2452), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(2452), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(2451), - [sym_identifier] = STATE(2392), - [sym__reserved_identifier] = STATE(2395), - [sym_preproc_region] = STATE(5454), - [sym_preproc_endregion] = STATE(5454), - [sym_preproc_line] = STATE(5454), - [sym_preproc_pragma] = STATE(5454), - [sym_preproc_nullable] = STATE(5454), - [sym_preproc_error] = STATE(5454), - [sym_preproc_warning] = STATE(5454), - [sym_preproc_define] = STATE(5454), - [sym_preproc_undef] = STATE(5454), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(7520), - [anon_sym_ref] = ACTIONS(4462), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(4450), - [anon_sym_where] = ACTIONS(4450), - [anon_sym_notnull] = ACTIONS(4450), - [anon_sym_unmanaged] = ACTIONS(4450), - [anon_sym_scoped] = ACTIONS(7427), - [anon_sym_var] = ACTIONS(7270), - [sym_predefined_type] = ACTIONS(7272), - [anon_sym_yield] = ACTIONS(4450), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_from] = ACTIONS(4450), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_join] = ACTIONS(4450), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_let] = ACTIONS(4450), - [anon_sym_orderby] = ACTIONS(4450), - [anon_sym_ascending] = ACTIONS(4450), - [anon_sym_descending] = ACTIONS(4450), - [anon_sym_group] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [sym_grit_metavariable] = ACTIONS(7274), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5455] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4710), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), - [sym_preproc_region] = STATE(5455), - [sym_preproc_endregion] = STATE(5455), - [sym_preproc_line] = STATE(5455), - [sym_preproc_pragma] = STATE(5455), - [sym_preproc_nullable] = STATE(5455), - [sym_preproc_error] = STATE(5455), - [sym_preproc_warning] = STATE(5455), - [sym_preproc_define] = STATE(5455), - [sym_preproc_undef] = STATE(5455), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_ref] = ACTIONS(4518), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7328), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [sym_grit_metavariable] = ACTIONS(4080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -670137,47 +661317,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5456] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4710), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), - [sym_preproc_region] = STATE(5456), - [sym_preproc_endregion] = STATE(5456), - [sym_preproc_line] = STATE(5456), - [sym_preproc_pragma] = STATE(5456), - [sym_preproc_nullable] = STATE(5456), - [sym_preproc_error] = STATE(5456), - [sym_preproc_warning] = STATE(5456), - [sym_preproc_define] = STATE(5456), - [sym_preproc_undef] = STATE(5456), + [5452] = { + [sym__name] = STATE(3942), + [sym_alias_qualified_name] = STATE(3963), + [sym__simple_name] = STATE(3963), + [sym_qualified_name] = STATE(3963), + [sym_generic_name] = STATE(3729), + [sym_type] = STATE(4291), + [sym_implicit_type] = STATE(3951), + [sym_array_type] = STATE(3947), + [sym__array_base_type] = STATE(7626), + [sym_nullable_type] = STATE(3946), + [sym_pointer_type] = STATE(3946), + [sym__pointer_base_type] = STATE(7697), + [sym_function_pointer_type] = STATE(3946), + [sym_ref_type] = STATE(3951), + [sym_scoped_type] = STATE(3951), + [sym_tuple_type] = STATE(3945), + [sym_identifier] = STATE(3560), + [sym__reserved_identifier] = STATE(3640), + [sym_preproc_region] = STATE(5452), + [sym_preproc_endregion] = STATE(5452), + [sym_preproc_line] = STATE(5452), + [sym_preproc_pragma] = STATE(5452), + [sym_preproc_nullable] = STATE(5452), + [sym_preproc_error] = STATE(5452), + [sym_preproc_warning] = STATE(5452), + [sym_preproc_define] = STATE(5452), + [sym_preproc_undef] = STATE(5452), [sym__identifier_token] = ACTIONS(4088), [anon_sym_alias] = ACTIONS(4090), [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_ref] = ACTIONS(4522), - [anon_sym_delegate] = ACTIONS(7252), + [anon_sym_LPAREN] = ACTIONS(8015), + [anon_sym_ref] = ACTIONS(4505), + [anon_sym_delegate] = ACTIONS(7508), [anon_sym_file] = ACTIONS(4090), [anon_sym_where] = ACTIONS(4090), [anon_sym_notnull] = ACTIONS(4090), [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7254), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), + [anon_sym_scoped] = ACTIONS(7626), + [anon_sym_var] = ACTIONS(7512), + [sym_predefined_type] = ACTIONS(7514), [anon_sym_yield] = ACTIONS(4090), [anon_sym_when] = ACTIONS(4090), [anon_sym_from] = ACTIONS(4090), @@ -670204,196 +661384,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5457] = { - [sym__name] = STATE(5853), - [sym_alias_qualified_name] = STATE(3838), - [sym__simple_name] = STATE(3838), - [sym_qualified_name] = STATE(3838), - [sym_generic_name] = STATE(3805), - [sym_type] = STATE(4188), - [sym_implicit_type] = STATE(3836), - [sym_array_type] = STATE(3834), - [sym__array_base_type] = STATE(7549), - [sym_nullable_type] = STATE(3833), - [sym_pointer_type] = STATE(3833), - [sym__pointer_base_type] = STATE(7758), - [sym_function_pointer_type] = STATE(3833), - [sym_ref_type] = STATE(3836), - [sym_scoped_type] = STATE(3836), - [sym_tuple_type] = STATE(3832), - [sym_identifier] = STATE(5620), - [sym__reserved_identifier] = STATE(3510), - [sym_preproc_region] = STATE(5457), - [sym_preproc_endregion] = STATE(5457), - [sym_preproc_line] = STATE(5457), - [sym_preproc_pragma] = STATE(5457), - [sym_preproc_nullable] = STATE(5457), - [sym_preproc_error] = STATE(5457), - [sym_preproc_warning] = STATE(5457), - [sym_preproc_define] = STATE(5457), - [sym_preproc_undef] = STATE(5457), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4384), - [anon_sym_delegate] = ACTIONS(4371), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7332), - [anon_sym_var] = ACTIONS(4375), - [sym_predefined_type] = ACTIONS(4377), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_orderby] = ACTIONS(4228), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4228), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [sym_grit_metavariable] = ACTIONS(4232), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5458] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5468), - [sym__simple_name] = STATE(5468), - [sym_qualified_name] = STATE(5468), - [sym_generic_name] = STATE(5467), - [sym_type] = STATE(7841), - [sym_implicit_type] = STATE(2365), - [sym_array_type] = STATE(5569), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5532), - [sym_pointer_type] = STATE(5532), - [sym__pointer_base_type] = STATE(7644), - [sym_function_pointer_type] = STATE(5532), - [sym_ref_type] = STATE(2365), - [sym_scoped_type] = STATE(2365), - [sym_tuple_type] = STATE(5530), - [sym_identifier] = STATE(5466), - [sym__reserved_identifier] = STATE(5136), - [sym_preproc_region] = STATE(5458), - [sym_preproc_endregion] = STATE(5458), - [sym_preproc_line] = STATE(5458), - [sym_preproc_pragma] = STATE(5458), - [sym_preproc_nullable] = STATE(5458), - [sym_preproc_error] = STATE(5458), - [sym_preproc_warning] = STATE(5458), - [sym_preproc_define] = STATE(5458), - [sym_preproc_undef] = STATE(5458), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7607), - [anon_sym_delegate] = ACTIONS(3705), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7611), - [anon_sym_var] = ACTIONS(7526), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3211), - [anon_sym_into] = ACTIONS(3211), - [anon_sym_join] = ACTIONS(3211), - [anon_sym_on] = ACTIONS(3211), - [anon_sym_equals] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_orderby] = ACTIONS(3211), - [anon_sym_ascending] = ACTIONS(3211), - [anon_sym_descending] = ACTIONS(3211), - [anon_sym_group] = ACTIONS(3211), - [anon_sym_by] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [sym_grit_metavariable] = 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), - }, - [5459] = { - [sym__name] = STATE(4693), - [sym_alias_qualified_name] = STATE(4680), - [sym__simple_name] = STATE(4680), - [sym_qualified_name] = STATE(4680), - [sym_generic_name] = STATE(4690), - [sym_type] = STATE(4876), - [sym_implicit_type] = STATE(4686), - [sym_array_type] = STATE(4687), - [sym__array_base_type] = STATE(7536), - [sym_nullable_type] = STATE(4688), - [sym_pointer_type] = STATE(4688), - [sym__pointer_base_type] = STATE(7779), - [sym_function_pointer_type] = STATE(4688), - [sym_ref_type] = STATE(4686), - [sym_scoped_type] = STATE(4686), - [sym_tuple_type] = STATE(4692), - [sym_identifier] = STATE(4617), - [sym__reserved_identifier] = STATE(4652), - [sym_preproc_region] = STATE(5459), - [sym_preproc_endregion] = STATE(5459), - [sym_preproc_line] = STATE(5459), - [sym_preproc_pragma] = STATE(5459), - [sym_preproc_nullable] = STATE(5459), - [sym_preproc_error] = STATE(5459), - [sym_preproc_warning] = STATE(5459), - [sym_preproc_define] = STATE(5459), - [sym_preproc_undef] = STATE(5459), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_ref] = ACTIONS(4092), - [anon_sym_delegate] = ACTIONS(7252), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7336), - [anon_sym_var] = ACTIONS(7256), - [sym_predefined_type] = ACTIONS(7258), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [sym_grit_metavariable] = ACTIONS(4097), + [5453] = { + [sym__name] = STATE(5640), + [sym_alias_qualified_name] = STATE(5591), + [sym__simple_name] = STATE(5591), + [sym_qualified_name] = STATE(5591), + [sym_generic_name] = STATE(5632), + [sym_type] = STATE(5636), + [sym_implicit_type] = STATE(5601), + [sym_array_type] = STATE(5638), + [sym__array_base_type] = STATE(7416), + [sym_nullable_type] = STATE(5629), + [sym_pointer_type] = STATE(5629), + [sym__pointer_base_type] = STATE(8041), + [sym_function_pointer_type] = STATE(5629), + [sym_ref_type] = STATE(5601), + [sym_scoped_type] = STATE(5601), + [sym_tuple_type] = STATE(5626), + [sym_identifier] = STATE(5537), + [sym__reserved_identifier] = STATE(5554), + [sym_preproc_region] = STATE(5453), + [sym_preproc_endregion] = STATE(5453), + [sym_preproc_line] = STATE(5453), + [sym_preproc_pragma] = STATE(5453), + [sym_preproc_nullable] = STATE(5453), + [sym_preproc_error] = STATE(5453), + [sym_preproc_warning] = STATE(5453), + [sym_preproc_define] = STATE(5453), + [sym_preproc_undef] = STATE(5453), + [sym__identifier_token] = ACTIONS(4318), + [anon_sym_alias] = ACTIONS(4320), + [anon_sym_global] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(8043), + [anon_sym_ref] = ACTIONS(4333), + [anon_sym_delegate] = ACTIONS(7466), + [anon_sym_file] = ACTIONS(4320), + [anon_sym_where] = ACTIONS(4320), + [anon_sym_notnull] = ACTIONS(4320), + [anon_sym_unmanaged] = ACTIONS(4320), + [anon_sym_scoped] = ACTIONS(7859), + [anon_sym_var] = ACTIONS(7470), + [sym_predefined_type] = ACTIONS(7472), + [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), + [sym_grit_metavariable] = ACTIONS(4327), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -670408,7 +661454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 13, + [0] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670429,7 +661475,166 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5460), 9, + ACTIONS(8158), 1, + anon_sym_into, + STATE(5454), 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(7913), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [93] = 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(8161), 1, + anon_sym_into, + STATE(5467), 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(7909), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [188] = 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(5456), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670439,7 +661644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3980), 17, + ACTIONS(3976), 17, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, @@ -670452,41 +661657,2510 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_STAR, + anon_sym_DASH_GT, + sym_grit_metavariable, + ACTIONS(3974), 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, + [279] = 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(5457), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3997), 17, + 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_DOT, anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_DASH_GT, sym_grit_metavariable, - ACTIONS(3978), 28, + ACTIONS(3986), 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_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, + [370] = 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(5458), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3953), 17, + 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_DOT, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_grit_metavariable, + ACTIONS(3951), 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, + [461] = 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(8161), 1, + anon_sym_into, + STATE(5464), 1, + aux_sym_query_body_repeat2, + STATE(5459), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7899), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [556] = 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(5624), 1, + anon_sym_LBRACK, + ACTIONS(7163), 1, + anon_sym_LBRACE, + ACTIONS(7166), 1, + anon_sym_QMARK, + STATE(3312), 1, + sym_initializer_expression, + STATE(5460), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5634), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5628), 30, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [655] = 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(5461), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3961), 17, + 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_DOT, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_grit_metavariable, + ACTIONS(3959), 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, + [746] = 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(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + STATE(5456), 1, + sym_type_argument_list, + STATE(5462), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3957), 14, + 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_DOT, + anon_sym_EQ_GT, + anon_sym_STAR, + sym_grit_metavariable, + ACTIONS(3955), 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, + [843] = 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(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, + ACTIONS(4435), 17, + 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_DOT, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_grit_metavariable, + ACTIONS(4433), 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, + [934] = 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(8161), 1, + anon_sym_into, + STATE(5454), 1, + aux_sym_query_body_repeat2, + STATE(5464), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7905), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [1029] = 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(1703), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_LPAREN, + STATE(3171), 1, + sym_argument_list, + STATE(3346), 1, + sym_initializer_expression, + STATE(5465), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5504), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5500), 29, + anon_sym_LBRACK, + anon_sym_where, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [1128] = 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(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(3982), 17, + 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_DOT, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_grit_metavariable, + ACTIONS(3980), 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, + [1219] = 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(8161), 1, + anon_sym_into, + STATE(5454), 1, + aux_sym_query_body_repeat2, + STATE(5467), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7920), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [1314] = 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(5468), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3957), 17, + 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_DOT, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_grit_metavariable, + ACTIONS(3955), 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, + [1405] = 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(5469), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3972), 17, + 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_DOT, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_grit_metavariable, + ACTIONS(3970), 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, + [1496] = 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(1301), 1, + sym_grit_metavariable, + ACTIONS(3894), 1, + anon_sym_where, + ACTIONS(6807), 1, + anon_sym_ref, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(2376), 1, + sym__scoped_base_type, + STATE(2384), 1, + sym_ref_type, + STATE(5576), 1, + sym_identifier, + STATE(5847), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5470), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3694), 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_STAR, + 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, + [1609] = 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(8163), 1, + anon_sym_into, + STATE(5477), 1, + aux_sym_query_body_repeat2, + 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(7920), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [1703] = 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(3966), 1, + anon_sym_EQ_GT, + STATE(5472), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6743), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4152), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [1795] = 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(8165), 1, + anon_sym_and, + ACTIONS(8167), 1, + anon_sym_or, + STATE(5473), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(8005), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 31, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [1889] = 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(8165), 1, + anon_sym_and, + STATE(5474), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(8041), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [1981] = 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(1301), 1, + sym_grit_metavariable, + ACTIONS(3696), 1, + anon_sym_COLON, + ACTIONS(3894), 1, + anon_sym_where, + ACTIONS(8067), 1, + anon_sym_ref, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(2376), 1, + sym__scoped_base_type, + STATE(2384), 1, + sym_ref_type, + STATE(6599), 1, + sym_identifier, + STATE(6655), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(3694), 9, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_STAR, + STATE(5475), 9, + sym_preproc_region, + sym_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), 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, + [2095] = 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(8165), 1, + anon_sym_and, + ACTIONS(8167), 1, + anon_sym_or, + 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(6887), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 31, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [2189] = 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(8169), 1, + anon_sym_into, + STATE(5477), 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(7913), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [2281] = 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(8172), 1, + anon_sym_DOT, + STATE(5478), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4359), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4361), 32, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [2373] = 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(5479), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4015), 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_DOT, + anon_sym_EQ_GT, + anon_sym_STAR, + sym_grit_metavariable, + ACTIONS(4008), 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, + [2463] = 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(8163), 1, + anon_sym_into, + STATE(5471), 1, + aux_sym_query_body_repeat2, + 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, + ACTIONS(7909), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [2557] = 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(4439), 1, + anon_sym_LBRACK, + ACTIONS(4447), 1, + anon_sym_STAR, + ACTIONS(5700), 1, + anon_sym_QMARK, + ACTIONS(8172), 1, + anon_sym_DOT, + STATE(5481), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4329), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4331), 30, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [2655] = 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(8163), 1, + anon_sym_into, + STATE(5477), 1, + aux_sym_query_body_repeat2, + STATE(5482), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7905), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [2749] = 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(8163), 1, + anon_sym_into, + STATE(5482), 1, + aux_sym_query_body_repeat2, + STATE(5483), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7899), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [2843] = 23, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8047), 1, + anon_sym_ref, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(2376), 1, + sym__scoped_base_type, + STATE(2384), 1, + sym_ref_type, + STATE(5576), 1, + sym_identifier, + STATE(5847), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + 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(3694), 10, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_STAR, + 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, + [2953] = 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(8174), 1, + anon_sym_and, + STATE(5485), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(8041), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [3044] = 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(5486), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6923), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6921), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [3133] = 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(5487), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7022), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7020), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, - anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - 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, - [91] = 24, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [3222] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670507,31 +664181,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(3894), 1, - anon_sym_where, - ACTIONS(7013), 1, - anon_sym_ref, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2369), 1, - sym__scoped_base_type, - STATE(2380), 1, - sym_ref_type, - STATE(5567), 1, - sym_identifier, - STATE(5884), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5461), 9, + STATE(5488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670541,41 +664191,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3696), 11, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6883), 12, anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - ACTIONS(29), 21, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6881), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [204] = 17, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [3311] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670596,15 +664257,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_LBRACK, - ACTIONS(7211), 1, - anon_sym_LBRACE, - ACTIONS(7214), 1, - anon_sym_QMARK, - STATE(4020), 1, - sym_initializer_expression, - STATE(5462), 9, + STATE(5489), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670614,38 +664267,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5964), 11, + ACTIONS(6743), 12, 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_QMARK, anon_sym_DOT, anon_sym_or, - ACTIONS(5958), 30, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4152), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, anon_sym_into, anon_sym_join, @@ -670657,7 +664312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [303] = 13, + [3400] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670678,7 +664333,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5463), 9, + ACTIONS(8174), 1, + anon_sym_and, + ACTIONS(8176), 1, + anon_sym_or, + STATE(5490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670688,54 +664347,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4446), 17, - 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(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - sym_grit_metavariable, - ACTIONS(4444), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - 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, - [394] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [3493] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670756,7 +664411,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5464), 9, + STATE(5491), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670766,54 +664421,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3957), 17, - 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(6759), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - sym_grit_metavariable, - ACTIONS(3955), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6757), 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_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, - anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - 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, - [485] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [3582] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670834,11 +664487,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7694), 1, + ACTIONS(8178), 1, anon_sym_into, - STATE(5469), 1, + STATE(5498), 1, aux_sym_query_body_repeat2, - STATE(5465), 9, + STATE(5492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670848,19 +664501,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 11, + ACTIONS(7905), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 32, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -670868,24 +664521,22 @@ static const uint16_t ts_small_parse_table[] = { 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, @@ -670893,7 +664544,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [580] = 16, + [3675] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670914,13 +664565,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3964), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - anon_sym_LT, - STATE(5464), 1, - sym_type_argument_list, - STATE(5466), 9, + ACTIONS(8178), 1, + anon_sym_into, + STATE(5517), 1, + aux_sym_query_body_repeat2, + STATE(5493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670930,51 +664579,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3953), 14, + ACTIONS(7909), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 30, 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, - sym_grit_metavariable, - ACTIONS(3951), 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, - [677] = 13, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [3768] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670995,7 +664643,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5467), 9, + STATE(5494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671005,54 +664653,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3953), 17, - 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(7044), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - sym_grit_metavariable, - ACTIONS(3951), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7042), 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_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, - anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - 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, - [768] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [3857] = 30, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671073,7 +664719,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5468), 9, + ACTIONS(3207), 1, + sym__identifier_token, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3703), 1, + anon_sym_delegate, + ACTIONS(4080), 1, + sym_grit_metavariable, + ACTIONS(5320), 1, + anon_sym_var, + ACTIONS(8180), 1, + sym_predefined_type, + STATE(5149), 1, + sym__reserved_identifier, + STATE(5462), 1, + sym_identifier, + STATE(5468), 1, + sym_generic_name, + STATE(6876), 1, + sym__name, + STATE(6954), 1, + sym_tuple_type, + STATE(7230), 1, + sym_array_type, + STATE(7452), 1, + sym__array_base_type, + STATE(7717), 1, + sym__ref_base_type, + STATE(7722), 1, + sym_implicit_type, + STATE(7930), 1, + sym__pointer_base_type, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(7229), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(5495), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671083,40 +664769,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3997), 17, - 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, - sym_grit_metavariable, - ACTIONS(3986), 28, + ACTIONS(3211), 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, @@ -671129,8 +664791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [859] = 14, + [3980] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671151,9 +664812,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7696), 1, + ACTIONS(8178), 1, anon_sym_into, - STATE(5469), 10, + STATE(5492), 1, + aux_sym_query_body_repeat2, + STATE(5496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671163,20 +664826,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 11, + ACTIONS(7899), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 32, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -671184,24 +664846,22 @@ static const uint16_t ts_small_parse_table[] = { 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, @@ -671209,7 +664869,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [952] = 13, + [4073] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671230,7 +664890,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5470), 9, + ACTIONS(8174), 1, + anon_sym_and, + ACTIONS(8176), 1, + anon_sym_or, + STATE(5497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671240,54 +664904,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3972), 17, - 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(6887), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - sym_grit_metavariable, - ACTIONS(3970), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - 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, - [1043] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [4166] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671308,7 +664968,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5471), 9, + ACTIONS(8182), 1, + anon_sym_into, + STATE(5498), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671318,54 +664980,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3968), 17, + aux_sym_query_body_repeat2, + ACTIONS(7913), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 30, 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_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, anon_sym_DASH_GT, - sym_grit_metavariable, - ACTIONS(3966), 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, - [1134] = 15, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [4257] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671386,11 +665045,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7694), 1, - anon_sym_into, - STATE(5475), 1, - aux_sym_query_body_repeat2, - STATE(5472), 9, + STATE(5499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671400,52 +665055,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, + ACTIONS(6919), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 32, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6917), 31, 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_where, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, - anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, - [1229] = 13, + [4346] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671466,7 +665121,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5473), 9, + STATE(5500), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671476,54 +665131,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3976), 17, - 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(6845), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - sym_grit_metavariable, - ACTIONS(3974), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6843), 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_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, - anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - 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, - [1320] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [4435] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671544,11 +665197,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7694), 1, - anon_sym_into, - STATE(5465), 1, - aux_sym_query_body_repeat2, - STATE(5474), 9, + STATE(5501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671558,52 +665207,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, + ACTIONS(6825), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 32, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6823), 31, 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_where, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, - anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, - [1415] = 15, + [4524] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671624,11 +665273,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7694), 1, - anon_sym_into, - STATE(5469), 1, - aux_sym_query_body_repeat2, - STATE(5475), 9, + STATE(5502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671638,52 +665283,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, + ACTIONS(6927), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 32, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6925), 31, 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_where, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, - anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, - [1510] = 17, + [4613] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671704,15 +665349,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1703), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_LPAREN, - STATE(3472), 1, - sym_argument_list, - STATE(4295), 1, - sym_initializer_expression, - STATE(5476), 9, + STATE(5503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671722,40 +665359,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5692), 12, + ACTIONS(6819), 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(5690), 29, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6817), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -671765,7 +665404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [1609] = 14, + [4702] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671786,9 +665425,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7699), 1, - anon_sym_DOT, - STATE(5477), 9, + STATE(5504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671798,40 +665435,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4355), 11, + ACTIONS(7032), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - ACTIONS(4357), 32, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7030), 31, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, anon_sym_into, anon_sym_join, @@ -671843,7 +665480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [1701] = 13, + [4791] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671864,7 +665501,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5478), 9, + STATE(5505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671874,53 +665511,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4017), 16, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6923), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, - anon_sym_EQ_GT, - sym_grit_metavariable, - ACTIONS(4008), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6921), 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_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, - anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - 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, - [1791] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [4880] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671941,11 +665577,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7701), 1, - anon_sym_into, - STATE(5488), 1, - aux_sym_query_body_repeat2, - STATE(5479), 9, + STATE(5506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671955,51 +665587,130 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 12, + ACTIONS(6829), 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(7491), 30, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6827), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [4969] = 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(3696), 1, + anon_sym_EQ, + ACTIONS(3694), 7, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_STAR, + ACTIONS(3910), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_EQ_GT, + sym_grit_metavariable, + STATE(5507), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3913), 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [1885] = 15, + sym__identifier_token, + [5062] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672020,11 +665731,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7701), 1, - anon_sym_into, - STATE(5484), 1, - aux_sym_query_body_repeat2, - STATE(5480), 9, + STATE(5508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672034,41 +665741,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 12, + ACTIONS(6829), 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(7514), 30, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6827), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -672078,7 +665786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [1979] = 15, + [5151] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672099,11 +665807,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7703), 1, - anon_sym_and, - ACTIONS(7705), 1, - anon_sym_or, - STATE(5481), 9, + STATE(5509), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672113,51 +665817,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(6971), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 31, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6969), 31, 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_where, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, - [2073] = 23, + [5240] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672178,29 +665883,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7545), 1, - anon_sym_ref, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2369), 1, - sym__scoped_base_type, - STATE(2380), 1, - sym_ref_type, - STATE(5567), 1, - sym_identifier, - STATE(5884), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5482), 9, + STATE(5510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672210,41 +665893,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3696), 10, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6877), 12, anon_sym_LT, + anon_sym_GT, 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_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6875), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [2183] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [5329] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672265,11 +665959,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7701), 1, - anon_sym_into, - STATE(5479), 1, - aux_sym_query_body_repeat2, - STATE(5483), 9, + STATE(5511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672279,41 +665969,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 12, + ACTIONS(6887), 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(7506), 30, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -672323,7 +666014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [2277] = 15, + [5418] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672344,11 +666035,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7701), 1, - anon_sym_into, - STATE(5488), 1, - aux_sym_query_body_repeat2, - STATE(5484), 9, + STATE(5512), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672358,41 +666045,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 12, + ACTIONS(7016), 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(7510), 30, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7014), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -672402,7 +666090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [2371] = 15, + [5507] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672423,11 +666111,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7703), 1, - anon_sym_and, - ACTIONS(7705), 1, - anon_sym_or, - STATE(5485), 9, + STATE(5513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672437,51 +666121,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, + ACTIONS(6857), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 31, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6855), 31, 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_where, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, - [2465] = 14, + [5596] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672502,9 +666187,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - STATE(5486), 9, + STATE(5514), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672514,40 +666197,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7042), 12, + ACTIONS(6877), 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(4206), 31, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6875), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, anon_sym_into, anon_sym_join, @@ -672559,7 +666242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [2557] = 17, + [5685] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672580,15 +666263,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4411), 1, - anon_sym_STAR, - ACTIONS(5949), 1, - anon_sym_QMARK, - ACTIONS(7699), 1, - anon_sym_DOT, - STATE(5487), 9, + STATE(5515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672598,37 +666273,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 10, + ACTIONS(6837), 12, anon_sym_LT, anon_sym_GT, - anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - ACTIONS(4331), 30, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6835), 31, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_STAR, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, anon_sym_into, anon_sym_join, @@ -672640,7 +666318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [2655] = 14, + [5774] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672661,9 +666339,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7707), 1, - anon_sym_into, - STATE(5488), 10, + STATE(5516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672673,42 +666349,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 12, + ACTIONS(6857), 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(7497), 30, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6855), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -672718,7 +666394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [2747] = 14, + [5863] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672739,9 +666415,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7703), 1, - anon_sym_and, - STATE(5489), 9, + ACTIONS(8178), 1, + anon_sym_into, + STATE(5498), 1, + aux_sym_query_body_repeat2, + STATE(5517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672751,19 +666429,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(7920), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 32, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -672771,24 +666449,22 @@ static const uint16_t ts_small_parse_table[] = { 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, @@ -672796,7 +666472,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [2839] = 25, + [5956] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672817,43 +666493,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(3698), 1, - anon_sym_COLON, - ACTIONS(3894), 1, - anon_sym_where, - ACTIONS(7673), 1, - anon_sym_ref, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2369), 1, - sym__scoped_base_type, - STATE(2380), 1, - sym_ref_type, - STATE(6636), 1, - sym_identifier, - STATE(6652), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3696), 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(5490), 9, + STATE(5518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672863,16 +666503,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 21, + ACTIONS(4411), 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_EQ_GT, + anon_sym_STAR, + sym_grit_metavariable, + ACTIONS(4409), 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, @@ -672885,7 +666547,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [2953] = 13, + sym__identifier_token, + [6045] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672906,7 +666569,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5491), 9, + ACTIONS(5076), 1, + anon_sym_or, + ACTIONS(5068), 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(5519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672916,52 +666591,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7058), 12, + ACTIONS(6962), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7056), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6959), 22, 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [3042] = 13, + [6138] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672982,7 +666647,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5492), 9, + STATE(5520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672992,40 +666657,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7126), 12, + ACTIONS(6841), 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(7124), 31, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6839), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, anon_sym_into, anon_sym_join, @@ -673037,7 +666702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [3131] = 15, + [6227] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673058,11 +666723,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7710), 1, + ACTIONS(5076), 1, + anon_sym_or, + ACTIONS(5068), 9, + anon_sym_where, + anon_sym_and, + anon_sym_from, anon_sym_into, - STATE(5519), 1, - aux_sym_query_body_repeat2, - STATE(5493), 9, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(5521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673072,50 +666745,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, + ACTIONS(6956), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 30, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6953), 22, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, 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, - [3224] = 15, + [6320] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673136,11 +666801,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7712), 1, - anon_sym_and, - ACTIONS(7714), 1, - anon_sym_or, - STATE(5494), 9, + ACTIONS(8185), 1, + anon_sym_into, + STATE(5540), 1, + aux_sym_query_body_repeat2, + STATE(5522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673150,40 +666815,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, + ACTIONS(7909), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 30, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, - anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -673193,7 +666857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [3317] = 15, + [6412] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673214,19 +666878,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4978), 1, - anon_sym_or, - ACTIONS(4970), 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(5495), 9, + STATE(5523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673236,42 +666888,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7075), 11, + ACTIONS(4403), 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_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7072), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [3410] = 13, + anon_sym_EQ_GT, + sym_grit_metavariable, + ACTIONS(4401), 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, + [6500] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673292,7 +666953,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5496), 9, + ACTIONS(3207), 1, + sym__identifier_token, + ACTIONS(4080), 1, + sym_grit_metavariable, + ACTIONS(5680), 1, + anon_sym_ref, + STATE(5149), 1, + sym__reserved_identifier, + STATE(5462), 1, + sym_identifier, + STATE(5468), 1, + sym_generic_name, + STATE(7246), 1, + sym__name, + STATE(7607), 1, + sym__scoped_base_type, + STATE(7619), 1, + sym_ref_type, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(3694), 8, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_STAR, + STATE(5524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673302,52 +666994,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7142), 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(7140), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(3211), 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, - sym_op_coalescing, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + 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, - [3499] = 13, + [6608] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673368,7 +667038,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5497), 9, + STATE(5525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673378,7 +667048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4393), 15, + ACTIONS(4393), 14, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, @@ -673391,7 +667061,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_EQ_GT, sym_grit_metavariable, ACTIONS(4391), 28, @@ -673423,7 +667092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [3588] = 15, + [6696] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673444,11 +667113,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7710), 1, - anon_sym_into, - STATE(5493), 1, - aux_sym_query_body_repeat2, - STATE(5498), 9, + ACTIONS(8187), 1, + anon_sym_and, + STATE(5526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673458,50 +667125,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, + ACTIONS(8041), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_or, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 30, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 29, 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_where, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, - [3681] = 15, + [6786] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673522,27 +667189,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3698), 1, - anon_sym_EQ, - ACTIONS(3696), 7, + ACTIONS(8189), 1, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_QMARK, + ACTIONS(8191), 1, anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(3912), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_EQ_GT, - sym_grit_metavariable, - STATE(5499), 9, + STATE(5527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673552,13 +667203,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3915), 26, + ACTIONS(4331), 12, + 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, + sym_grit_metavariable, + ACTIONS(4329), 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, @@ -673579,7 +667245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [3774] = 13, + [6878] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673600,7 +667266,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5500), 9, + ACTIONS(8185), 1, + anon_sym_into, + STATE(5534), 1, + aux_sym_query_body_repeat2, + STATE(5528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673610,42 +667280,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7066), 12, + ACTIONS(7899), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7064), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, - anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -673655,7 +667322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [3863] = 13, + [6970] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673676,7 +667343,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5501), 9, + ACTIONS(8187), 1, + anon_sym_and, + ACTIONS(8193), 1, + anon_sym_or, + STATE(5529), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673686,42 +667357,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7066), 12, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7064), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, - anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -673731,7 +667399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [3952] = 15, + [7062] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673752,11 +667420,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7710), 1, - anon_sym_into, - STATE(5523), 1, - aux_sym_query_body_repeat2, - STATE(5502), 9, + ACTIONS(3207), 1, + sym__identifier_token, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3703), 1, + anon_sym_delegate, + ACTIONS(4080), 1, + sym_grit_metavariable, + ACTIONS(8195), 1, + anon_sym_LBRACK, + ACTIONS(8197), 1, + sym_predefined_type, + STATE(3939), 1, + sym_array_type, + STATE(5149), 1, + sym__reserved_identifier, + STATE(5462), 1, + sym_identifier, + STATE(5468), 1, + sym_generic_name, + STATE(6961), 1, + sym__name, + STATE(7240), 1, + sym_tuple_type, + STATE(7430), 1, + sym__array_base_type, + STATE(7930), 1, + sym__pointer_base_type, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(7612), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(5530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673766,50 +667466,120 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3211), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [7180] = 28, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3207), 1, + sym__identifier_token, + ACTIONS(3219), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - 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, - [4045] = 13, + ACTIONS(3703), 1, + anon_sym_delegate, + ACTIONS(4080), 1, + sym_grit_metavariable, + ACTIONS(8197), 1, + sym_predefined_type, + ACTIONS(8199), 1, + anon_sym_LBRACK, + STATE(4993), 1, + sym_array_type, + STATE(5149), 1, + sym__reserved_identifier, + STATE(5462), 1, + sym_identifier, + STATE(5468), 1, + sym_generic_name, + STATE(6961), 1, + sym__name, + STATE(7240), 1, + sym_tuple_type, + STATE(7471), 1, + sym__array_base_type, + STATE(7930), 1, + sym__pointer_base_type, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(7612), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + 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(3211), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [7298] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673830,7 +667600,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5503), 9, + STATE(5532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673840,52 +667610,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7062), 12, + ACTIONS(4431), 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_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(7060), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_EQ_GT, + sym_grit_metavariable, + ACTIONS(4429), 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, - sym_op_coalescing, + 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, - [4134] = 13, + sym__identifier_token, + [7386] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673906,7 +667675,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5504), 9, + ACTIONS(5068), 4, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + ACTIONS(6959), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673916,52 +667695,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7138), 12, + ACTIONS(5841), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7136), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5839), 23, anon_sym_LBRACK, + anon_sym_COLON, 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [4223] = 13, + [7478] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673982,7 +667752,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5505), 9, + ACTIONS(8185), 1, + anon_sym_into, + STATE(5538), 1, + aux_sym_query_body_repeat2, + STATE(5534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673992,42 +667766,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7042), 12, + ACTIONS(7905), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(4206), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, - anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -674037,7 +667808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [4312] = 13, + [7570] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674058,7 +667829,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5506), 9, + ACTIONS(1611), 1, + anon_sym_LBRACE, + ACTIONS(6151), 1, + anon_sym_LPAREN, + STATE(5553), 1, + sym_argument_list, + STATE(5661), 1, + sym_initializer_expression, + STATE(5535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674068,52 +667847,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7034), 12, + ACTIONS(5504), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7032), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5500), 27, + sym_interpolation_close_brace, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, 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, - [4401] = 13, + [7666] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674134,7 +667908,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5507), 9, + ACTIONS(3207), 1, + sym__identifier_token, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3703), 1, + anon_sym_delegate, + ACTIONS(4080), 1, + sym_grit_metavariable, + ACTIONS(8197), 1, + sym_predefined_type, + ACTIONS(8201), 1, + anon_sym_LBRACK, + STATE(5149), 1, + sym__reserved_identifier, + STATE(5462), 1, + sym_identifier, + STATE(5468), 1, + sym_generic_name, + STATE(5552), 1, + sym_array_type, + STATE(6961), 1, + sym__name, + STATE(7240), 1, + sym_tuple_type, + STATE(7416), 1, + sym__array_base_type, + STATE(7930), 1, + sym__pointer_base_type, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(7612), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(5536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674144,52 +667954,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7054), 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(7052), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(3211), 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, - sym_op_coalescing, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + 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, - [4490] = 13, + [7784] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674210,7 +667998,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5508), 9, + ACTIONS(8203), 1, + anon_sym_LT, + ACTIONS(8206), 1, + anon_sym_COLON_COLON, + STATE(5647), 1, + sym_type_argument_list, + STATE(5537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674220,52 +668014,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7050), 12, - anon_sym_LT, + ACTIONS(3955), 11, + anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7048), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3957), 28, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, 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, - [4579] = 13, + [7878] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674286,7 +668076,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5509), 9, + ACTIONS(8208), 1, + anon_sym_into, + STATE(5538), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674296,42 +668088,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7138), 12, + aux_sym_query_body_repeat2, + ACTIONS(7913), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7136), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, - anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -674341,7 +668131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [4668] = 30, + [7968] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674366,43 +668156,39 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(3705), 1, + ACTIONS(3703), 1, anon_sym_delegate, - ACTIONS(4060), 1, + ACTIONS(4080), 1, sym_grit_metavariable, - ACTIONS(5496), 1, - anon_sym_var, - ACTIONS(7716), 1, + ACTIONS(8197), 1, sym_predefined_type, - STATE(5136), 1, + ACTIONS(8211), 1, + anon_sym_LBRACK, + STATE(3078), 1, + sym_array_type, + STATE(5149), 1, sym__reserved_identifier, - STATE(5466), 1, + STATE(5462), 1, sym_identifier, - STATE(5467), 1, + STATE(5468), 1, sym_generic_name, - STATE(6794), 1, + STATE(6961), 1, sym__name, - STATE(6938), 1, + STATE(7240), 1, sym_tuple_type, - STATE(7331), 1, - sym_array_type, - STATE(7639), 1, + STATE(7544), 1, sym__array_base_type, - STATE(7644), 1, + STATE(7930), 1, sym__pointer_base_type, - STATE(7750), 1, - sym_implicit_type, - STATE(7754), 1, - sym__ref_base_type, - STATE(5468), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(7329), 3, + STATE(7612), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(5510), 9, + STATE(5539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674412,7 +668198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 21, + ACTIONS(3211), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -674420,6 +668206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_notnull, anon_sym_unmanaged, anon_sym_scoped, + anon_sym_var, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -674434,7 +668221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [4791] = 15, + [8086] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674455,11 +668242,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7712), 1, - anon_sym_and, - ACTIONS(7714), 1, - anon_sym_or, - STATE(5511), 9, + ACTIONS(8185), 1, + anon_sym_into, + STATE(5538), 1, + aux_sym_query_body_repeat2, + STATE(5540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674469,40 +668256,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(7920), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 30, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, - anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -674512,7 +668298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [4884] = 13, + [8178] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674533,7 +668319,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5512), 9, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + STATE(5541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674543,52 +668335,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7114), 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(7112), 31, - anon_sym_LBRACK, + ACTIONS(4331), 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_EQ_GT, + sym_grit_metavariable, + ACTIONS(4329), 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, - sym_op_coalescing, + 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, - [4973] = 13, + sym__identifier_token, + [8272] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674609,7 +668397,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5513), 9, + ACTIONS(3207), 1, + sym__identifier_token, + ACTIONS(4080), 1, + sym_grit_metavariable, + ACTIONS(7922), 1, + anon_sym_ref, + STATE(5149), 1, + sym__reserved_identifier, + STATE(5462), 1, + sym_identifier, + STATE(5468), 1, + sym_generic_name, + STATE(7246), 1, + sym__name, + STATE(7607), 1, + sym__scoped_base_type, + STATE(7619), 1, + sym_ref_type, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(3694), 8, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_STAR, + STATE(5542), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674619,52 +668438,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 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(7025), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(3211), 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, - sym_op_coalescing, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + 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, - [5062] = 15, + [8380] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674685,19 +668482,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4978), 1, - anon_sym_or, - ACTIONS(4970), 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(5514), 9, + ACTIONS(3207), 1, + sym__identifier_token, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3703), 1, + anon_sym_delegate, + ACTIONS(4080), 1, + sym_grit_metavariable, + ACTIONS(8197), 1, + sym_predefined_type, + ACTIONS(8215), 1, + anon_sym_LBRACK, + STATE(3131), 1, + sym_array_type, + STATE(5149), 1, + sym__reserved_identifier, + STATE(5462), 1, + sym_identifier, + STATE(5468), 1, + sym_generic_name, + STATE(6961), 1, + sym__name, + STATE(7240), 1, + sym_tuple_type, + STATE(7491), 1, + sym__array_base_type, + STATE(7930), 1, + sym__pointer_base_type, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(7612), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(5543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674707,42 +668528,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7081), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7078), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [5155] = 13, + ACTIONS(3211), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [8498] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674763,7 +668572,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5515), 9, + STATE(5544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674773,52 +668582,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7102), 12, + ACTIONS(4458), 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_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(7100), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_EQ_GT, + sym_grit_metavariable, + ACTIONS(4456), 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, - sym_op_coalescing, + 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, - [5244] = 13, + sym__identifier_token, + [8586] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674839,7 +668647,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5516), 9, + ACTIONS(8187), 1, + anon_sym_and, + ACTIONS(8193), 1, + anon_sym_or, + STATE(5545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674849,42 +668661,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7150), 12, + ACTIONS(6887), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7148), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_from, - anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -674894,7 +668703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [5333] = 13, + [8678] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674915,7 +668724,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5517), 9, + ACTIONS(5068), 4, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + ACTIONS(6953), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674925,52 +668744,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7098), 12, + ACTIONS(5917), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7096), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5915), 23, anon_sym_LBRACK, + anon_sym_COLON, 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [5422] = 13, + [8770] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674991,7 +668801,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5518), 9, + ACTIONS(3207), 1, + sym__identifier_token, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3703), 1, + anon_sym_delegate, + ACTIONS(4080), 1, + sym_grit_metavariable, + ACTIONS(8197), 1, + sym_predefined_type, + ACTIONS(8217), 1, + anon_sym_LBRACK, + STATE(3657), 1, + sym_array_type, + STATE(5149), 1, + sym__reserved_identifier, + STATE(5462), 1, + sym_identifier, + STATE(5468), 1, + sym_generic_name, + STATE(6961), 1, + sym__name, + STATE(7240), 1, + sym_tuple_type, + STATE(7626), 1, + sym__array_base_type, + STATE(7930), 1, + sym__pointer_base_type, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(7612), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(5547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675001,52 +668847,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7098), 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(7096), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(3211), 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, - sym_op_coalescing, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + 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, - [5511] = 14, + [8888] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675067,84 +668891,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7718), 1, - anon_sym_into, - STATE(5519), 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(7499), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 30, - anon_sym_SEMI, + ACTIONS(8219), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(8222), 1, + aux_sym_preproc_if_token1, + STATE(5916), 1, + sym__attribute_list, + ACTIONS(5345), 2, 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, - sym_op_coalescing, - 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, - [5602] = 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(5520), 9, + sym_grit_metavariable, + STATE(5920), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(5548), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675154,52 +668913,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7094), 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(7092), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + aux_sym__class_declaration_initializer_repeat1, + ACTIONS(5340), 33, + anon_sym_alias, + anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, + anon_sym_async, + anon_sym_file, + anon_sym_in, + anon_sym_out, 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, - sym_op_coalescing, + 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [5691] = 13, + sym__identifier_token, + [8983] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675220,7 +668969,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5521), 9, + ACTIONS(8225), 1, + anon_sym_into, + STATE(5577), 1, + aux_sym_query_body_repeat2, + STATE(5549), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675230,52 +668983,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7122), 12, + ACTIONS(7905), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7120), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 28, 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_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [5780] = 13, + [9074] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675296,7 +669045,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5522), 9, + ACTIONS(3207), 1, + sym__identifier_token, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3703), 1, + anon_sym_delegate, + ACTIONS(4080), 1, + sym_grit_metavariable, + ACTIONS(8197), 1, + sym_predefined_type, + STATE(5149), 1, + sym__reserved_identifier, + STATE(5462), 1, + sym_identifier, + STATE(5468), 1, + sym_generic_name, + STATE(6237), 1, + sym_nullable_type, + STATE(6240), 1, + sym_array_type, + STATE(6961), 1, + sym__name, + STATE(7240), 1, + sym_tuple_type, + STATE(7452), 1, + sym__array_base_type, + STATE(7930), 1, + sym__pointer_base_type, + STATE(7612), 2, + sym_pointer_type, + sym_function_pointer_type, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675306,52 +669090,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7134), 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(7132), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(3211), 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, - sym_op_coalescing, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + 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, - [5869] = 15, + [9191] = 32, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675372,11 +669134,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7710), 1, - anon_sym_into, - STATE(5519), 1, - aux_sym_query_body_repeat2, - STATE(5523), 9, + ACTIONS(8227), 1, + anon_sym_LT, + ACTIONS(8229), 1, + anon_sym_GT, + ACTIONS(8231), 1, + anon_sym_checked, + ACTIONS(8233), 1, + anon_sym_TILDE, + ACTIONS(8235), 1, + anon_sym_STAR, + ACTIONS(8237), 1, + anon_sym_LT_EQ, + ACTIONS(8239), 1, + anon_sym_GT_EQ, + ACTIONS(8241), 1, + anon_sym_EQ_EQ, + ACTIONS(8243), 1, + anon_sym_BANG_EQ, + ACTIONS(8245), 1, + anon_sym_AMP, + ACTIONS(8249), 1, + anon_sym_CARET, + ACTIONS(8253), 1, + anon_sym_PLUS, + ACTIONS(8255), 1, + anon_sym_DASH, + ACTIONS(8257), 1, + anon_sym_BANG, + ACTIONS(8259), 1, + anon_sym_PLUS_PLUS, + ACTIONS(8261), 1, + anon_sym_DASH_DASH, + ACTIONS(8263), 1, + anon_sym_true, + ACTIONS(8265), 1, + anon_sym_false, + ACTIONS(8251), 2, + sym_op_right_shift, + sym_op_divide, + ACTIONS(8247), 4, + sym_op_bitwise_or, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + STATE(5551), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675385,51 +669187,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_error, sym_preproc_warning, sym_preproc_define, - sym_preproc_undef, - ACTIONS(7493), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 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, - sym_op_coalescing, - 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, - [5962] = 13, + sym_preproc_undef, + STATE(7613), 17, + sym_op_lt, + sym_op_lte, + sym_op_eq, + sym_op_neq, + sym_op_gt, + sym_op_gte, + sym_op_bitwise_and, + sym_op_bitwise_xor, + sym_op_plus, + sym_op_minus, + sym_op_multiply, + sym_op_not, + sym_op_bitwise_not, + sym_op_plus_plus, + sym_op_minus_minus, + sym_op_true, + sym_op_false, + [9316] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675450,7 +669227,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5524), 9, + ACTIONS(1611), 1, + anon_sym_LBRACE, + ACTIONS(5540), 1, + anon_sym_LBRACK, + STATE(5699), 1, + sym_initializer_expression, + STATE(5552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675460,52 +669243,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7126), 12, + ACTIONS(5543), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7124), 31, - anon_sym_LBRACK, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5538), 27, + sym_interpolation_close_brace, + anon_sym_COLON, + 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, 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, - [6051] = 13, + [9409] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675526,7 +669304,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5525), 9, + ACTIONS(1611), 1, + anon_sym_LBRACE, + STATE(5776), 1, + sym_initializer_expression, + STATE(5553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675536,52 +669318,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7130), 12, + ACTIONS(5518), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7128), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5516), 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, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, 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, - [6140] = 13, + [9500] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675602,7 +669380,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5526), 9, + STATE(5554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675612,52 +669390,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7090), 12, + ACTIONS(3187), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7088), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3189), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_COLON_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_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, 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, - [6229] = 14, + [9587] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675678,9 +669454,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7712), 1, - anon_sym_and, - STATE(5527), 9, + ACTIONS(8203), 1, + anon_sym_LT, + STATE(5647), 1, + sym_type_argument_list, + STATE(5555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675690,51 +669468,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 12, - anon_sym_LT, + ACTIONS(3955), 10, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7635), 30, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3957), 29, + 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_LBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, 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, - [6320] = 15, + [9678] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675755,17 +669530,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4970), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - ACTIONS(7072), 4, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8267), 1, + anon_sym_DOT, + ACTIONS(4331), 9, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(5528), 9, + anon_sym_EQ_GT, + sym_grit_metavariable, + STATE(5556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675775,43 +669558,129 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6138), 11, + ACTIONS(4329), 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, + [9773] = 32, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8227), 1, anon_sym_LT, + ACTIONS(8229), 1, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(8233), 1, + anon_sym_TILDE, + ACTIONS(8235), 1, + anon_sym_STAR, + ACTIONS(8237), 1, + anon_sym_LT_EQ, + ACTIONS(8239), 1, + anon_sym_GT_EQ, + ACTIONS(8241), 1, + anon_sym_EQ_EQ, + ACTIONS(8243), 1, + anon_sym_BANG_EQ, + ACTIONS(8245), 1, + anon_sym_AMP, + ACTIONS(8249), 1, + anon_sym_CARET, + ACTIONS(8253), 1, anon_sym_PLUS, + ACTIONS(8255), 1, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6136), 23, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_BANG, + ACTIONS(8259), 1, anon_sym_PLUS_PLUS, + ACTIONS(8261), 1, anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [6412] = 23, + ACTIONS(8263), 1, + anon_sym_true, + ACTIONS(8265), 1, + anon_sym_false, + ACTIONS(8269), 1, + anon_sym_checked, + ACTIONS(8273), 2, + sym_op_right_shift, + sym_op_divide, + ACTIONS(8271), 4, + sym_op_bitwise_or, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + 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, + STATE(7393), 17, + sym_op_lt, + sym_op_lte, + sym_op_eq, + sym_op_neq, + sym_op_gt, + sym_op_gte, + sym_op_bitwise_and, + sym_op_bitwise_xor, + sym_op_plus, + sym_op_minus, + sym_op_multiply, + sym_op_not, + sym_op_bitwise_not, + sym_op_plus_plus, + sym_op_minus_minus, + sym_op_true, + sym_op_false, + [9898] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675832,38 +669701,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4060), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(5981), 1, + ACTIONS(8021), 1, anon_sym_ref, - STATE(5136), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(5466), 1, - sym_identifier, - STATE(5467), 1, + STATE(2210), 1, sym_generic_name, - STATE(7222), 1, - sym__name, - STATE(7559), 1, + STATE(2376), 1, sym__scoped_base_type, - STATE(7560), 1, + STATE(2384), 1, sym_ref_type, - STATE(5468), 3, + STATE(5576), 1, + sym_identifier, + STATE(5847), 1, + sym__name, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - ACTIONS(3696), 8, + ACTIONS(3694), 7, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LT, - anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(5529), 9, + anon_sym_STAR, + STATE(5558), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675873,7 +669741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -675896,7 +669764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6520] = 16, + [10005] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675917,13 +669785,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - STATE(5530), 9, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, + sym_grit_metavariable, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4580), 1, + sym_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(4232), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5559), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675933,34 +669829,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4331), 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_EQ_GT, - sym_grit_metavariable, - ACTIONS(4329), 28, + ACTIONS(8277), 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, @@ -675973,8 +669852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [6614] = 13, + [10120] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675995,7 +669873,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5531), 9, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8213), 1, + anon_sym_QMARK, + STATE(5560), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676005,9 +669887,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4440), 14, + ACTIONS(4331), 11, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -676016,11 +669897,9 @@ 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, sym_grit_metavariable, - ACTIONS(4438), 28, + ACTIONS(4329), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -676049,7 +669928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [6702] = 15, + [10211] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676070,11 +669949,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7725), 1, - anon_sym_STAR, - STATE(5532), 9, + ACTIONS(8283), 1, + anon_sym_LT, + STATE(2214), 1, + sym_type_argument_list, + STATE(5561), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676084,7 +669963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4331), 12, + ACTIONS(3957), 11, anon_sym_SEMI, anon_sym_COLON, anon_sym_COMMA, @@ -676093,11 +669972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, sym_grit_metavariable, - ACTIONS(4329), 28, + ACTIONS(3955), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -676126,7 +670004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [6794] = 15, + [10302] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676147,11 +670025,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7727), 1, - anon_sym_into, - STATE(5551), 1, - aux_sym_query_body_repeat2, - STATE(5533), 9, + STATE(5562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676161,49 +670035,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, + ACTIONS(3187), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3189), 30, + 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_LBRACE, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [6886] = 15, + [10389] = 32, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676224,11 +670099,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7727), 1, - anon_sym_into, - STATE(5552), 1, - aux_sym_query_body_repeat2, - STATE(5534), 9, + ACTIONS(8227), 1, + anon_sym_LT, + ACTIONS(8229), 1, + anon_sym_GT, + ACTIONS(8233), 1, + anon_sym_TILDE, + ACTIONS(8235), 1, + anon_sym_STAR, + ACTIONS(8237), 1, + anon_sym_LT_EQ, + ACTIONS(8239), 1, + anon_sym_GT_EQ, + ACTIONS(8241), 1, + anon_sym_EQ_EQ, + ACTIONS(8243), 1, + anon_sym_BANG_EQ, + ACTIONS(8245), 1, + anon_sym_AMP, + ACTIONS(8249), 1, + anon_sym_CARET, + ACTIONS(8253), 1, + anon_sym_PLUS, + ACTIONS(8255), 1, + anon_sym_DASH, + ACTIONS(8257), 1, + anon_sym_BANG, + ACTIONS(8259), 1, + anon_sym_PLUS_PLUS, + ACTIONS(8261), 1, + anon_sym_DASH_DASH, + ACTIONS(8263), 1, + anon_sym_true, + ACTIONS(8265), 1, + anon_sym_false, + ACTIONS(8285), 1, + anon_sym_checked, + ACTIONS(8289), 2, + sym_op_right_shift, + sym_op_divide, + ACTIONS(8287), 4, + sym_op_bitwise_or, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + STATE(5563), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + STATE(7559), 17, + sym_op_lt, + sym_op_lte, + sym_op_eq, + sym_op_neq, + sym_op_gt, + sym_op_gte, + sym_op_bitwise_and, + sym_op_bitwise_xor, + sym_op_plus, + sym_op_minus, + sym_op_multiply, + sym_op_not, + sym_op_bitwise_not, + sym_op_plus_plus, + sym_op_minus_minus, + sym_op_true, + sym_op_false, + [10514] = 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(5564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676238,49 +670202,236 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 11, + ACTIONS(3696), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3694), 30, + 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_LBRACE, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [6978] = 28, + [10601] = 32, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8227), 1, + anon_sym_LT, + ACTIONS(8229), 1, + anon_sym_GT, + ACTIONS(8233), 1, + anon_sym_TILDE, + ACTIONS(8235), 1, + anon_sym_STAR, + ACTIONS(8237), 1, + anon_sym_LT_EQ, + ACTIONS(8239), 1, + anon_sym_GT_EQ, + ACTIONS(8241), 1, + anon_sym_EQ_EQ, + ACTIONS(8243), 1, + anon_sym_BANG_EQ, + ACTIONS(8245), 1, + anon_sym_AMP, + ACTIONS(8249), 1, + anon_sym_CARET, + ACTIONS(8253), 1, + anon_sym_PLUS, + ACTIONS(8255), 1, + anon_sym_DASH, + ACTIONS(8257), 1, + anon_sym_BANG, + ACTIONS(8259), 1, + anon_sym_PLUS_PLUS, + ACTIONS(8261), 1, + anon_sym_DASH_DASH, + ACTIONS(8263), 1, + anon_sym_true, + ACTIONS(8265), 1, + anon_sym_false, + ACTIONS(8291), 1, + anon_sym_checked, + ACTIONS(8295), 2, + sym_op_right_shift, + sym_op_divide, + ACTIONS(8293), 4, + sym_op_bitwise_or, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + 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, + STATE(7370), 17, + sym_op_lt, + sym_op_lte, + sym_op_eq, + sym_op_neq, + sym_op_gt, + sym_op_gte, + sym_op_bitwise_and, + sym_op_bitwise_xor, + sym_op_plus, + sym_op_minus, + sym_op_multiply, + sym_op_not, + sym_op_bitwise_not, + sym_op_plus_plus, + sym_op_minus_minus, + sym_op_true, + sym_op_false, + [10726] = 32, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8227), 1, + anon_sym_LT, + ACTIONS(8229), 1, + anon_sym_GT, + ACTIONS(8233), 1, + anon_sym_TILDE, + ACTIONS(8235), 1, + anon_sym_STAR, + ACTIONS(8237), 1, + anon_sym_LT_EQ, + ACTIONS(8239), 1, + anon_sym_GT_EQ, + ACTIONS(8241), 1, + anon_sym_EQ_EQ, + ACTIONS(8243), 1, + anon_sym_BANG_EQ, + ACTIONS(8245), 1, + anon_sym_AMP, + ACTIONS(8249), 1, + anon_sym_CARET, + ACTIONS(8253), 1, + anon_sym_PLUS, + ACTIONS(8255), 1, + anon_sym_DASH, + ACTIONS(8257), 1, + anon_sym_BANG, + ACTIONS(8259), 1, + anon_sym_PLUS_PLUS, + ACTIONS(8261), 1, + anon_sym_DASH_DASH, + ACTIONS(8263), 1, + anon_sym_true, + ACTIONS(8265), 1, + anon_sym_false, + ACTIONS(8297), 1, + anon_sym_checked, + ACTIONS(8301), 2, + sym_op_right_shift, + sym_op_divide, + ACTIONS(8299), 4, + sym_op_bitwise_or, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + 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, + STATE(7505), 17, + sym_op_lt, + sym_op_lte, + sym_op_eq, + sym_op_neq, + sym_op_gt, + sym_op_gte, + sym_op_bitwise_and, + sym_op_bitwise_xor, + sym_op_plus, + sym_op_minus, + sym_op_multiply, + sym_op_not, + sym_op_bitwise_not, + sym_op_plus_plus, + sym_op_minus_minus, + sym_op_true, + sym_op_false, + [10851] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676305,39 +670456,38 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(3705), 1, + ACTIONS(3703), 1, anon_sym_delegate, - ACTIONS(4060), 1, + ACTIONS(4080), 1, sym_grit_metavariable, - ACTIONS(7729), 1, - anon_sym_LBRACK, - ACTIONS(7731), 1, + ACTIONS(8197), 1, sym_predefined_type, - STATE(4649), 1, - sym_array_type, - STATE(5136), 1, + STATE(5149), 1, sym__reserved_identifier, - STATE(5466), 1, + STATE(5462), 1, sym_identifier, - STATE(5467), 1, + STATE(5468), 1, sym_generic_name, - STATE(7025), 1, + STATE(6247), 1, + sym_array_type, + STATE(6255), 1, + sym_nullable_type, + STATE(6961), 1, sym__name, - STATE(7131), 1, + STATE(7240), 1, sym_tuple_type, - STATE(7536), 1, + STATE(7452), 1, sym__array_base_type, - STATE(7644), 1, + STATE(7930), 1, sym__pointer_base_type, - STATE(5468), 3, + STATE(7612), 2, + sym_pointer_type, + sym_function_pointer_type, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(7575), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(5535), 9, + STATE(5567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676370,7 +670520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [7096] = 15, + [10968] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676391,11 +670541,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7727), 1, - anon_sym_into, - STATE(5534), 1, - aux_sym_query_body_repeat2, - STATE(5536), 9, + ACTIONS(5624), 1, + anon_sym_LBRACK, + ACTIONS(5631), 1, + anon_sym_LBRACE, + ACTIONS(5637), 1, + anon_sym_QMARK, + STATE(3374), 1, + sym_initializer_expression, + STATE(5568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676405,49 +670559,208 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, + ACTIONS(5634), 10, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 29, - anon_sym_LBRACK, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5628), 27, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [11063] = 23, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(7074), 1, + anon_sym_ref, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(2376), 1, + sym__scoped_base_type, + STATE(2384), 1, + sym_ref_type, + STATE(5576), 1, + sym_identifier, + STATE(5847), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(3694), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_STAR, + STATE(5569), 9, + sym_preproc_region, + sym_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, + [11170] = 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(5624), 1, + anon_sym_LBRACK, + ACTIONS(8303), 1, + anon_sym_LBRACE, + ACTIONS(8306), 1, + anon_sym_QMARK, + STATE(5660), 1, + sym_initializer_expression, + STATE(5570), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5634), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5628), 27, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [7188] = 17, + [11265] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676470,13 +670783,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(1611), 1, anon_sym_LBRACE, - ACTIONS(5656), 1, - anon_sym_LPAREN, - STATE(5562), 1, - sym_argument_list, - STATE(5728), 1, + STATE(5671), 1, sym_initializer_expression, - STATE(5537), 9, + STATE(5571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676486,47 +670795,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5692), 11, + ACTIONS(5592), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5690), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5590), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [7284] = 13, + [11356] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676547,7 +670857,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5538), 9, + STATE(5572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676557,51 +670867,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4424), 14, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(3696), 12, 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, - sym_grit_metavariable, - ACTIONS(4422), 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_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3694), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, - anon_sym_from, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - 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, - [7372] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [11443] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676622,17 +670931,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4970), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - ACTIONS(7078), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5539), 9, + ACTIONS(8225), 1, + anon_sym_into, + STATE(5549), 1, + aux_sym_query_body_repeat2, + STATE(5573), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676642,43 +670945,216 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6403), 11, + ACTIONS(7899), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6401), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 28, anon_sym_LBRACK, anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [11534] = 32, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8227), 1, + anon_sym_LT, + ACTIONS(8229), 1, + anon_sym_GT, + ACTIONS(8233), 1, + anon_sym_TILDE, + ACTIONS(8235), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(8237), 1, + anon_sym_LT_EQ, + ACTIONS(8239), 1, + anon_sym_GT_EQ, + ACTIONS(8241), 1, anon_sym_EQ_EQ, + ACTIONS(8243), 1, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(8245), 1, + anon_sym_AMP, + ACTIONS(8249), 1, + anon_sym_CARET, + ACTIONS(8253), 1, + anon_sym_PLUS, + ACTIONS(8255), 1, + anon_sym_DASH, + ACTIONS(8257), 1, + anon_sym_BANG, + ACTIONS(8259), 1, + anon_sym_PLUS_PLUS, + ACTIONS(8261), 1, + anon_sym_DASH_DASH, + ACTIONS(8263), 1, + anon_sym_true, + ACTIONS(8265), 1, + anon_sym_false, + ACTIONS(8310), 1, + anon_sym_checked, + ACTIONS(8314), 2, + sym_op_right_shift, + sym_op_divide, + ACTIONS(8312), 4, + sym_op_bitwise_or, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + STATE(5574), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + STATE(7546), 17, + sym_op_lt, + sym_op_lte, + sym_op_eq, + sym_op_neq, + sym_op_gt, + sym_op_gte, + sym_op_bitwise_and, + sym_op_bitwise_xor, + sym_op_plus, + sym_op_minus, + sym_op_multiply, + sym_op_not, + sym_op_bitwise_not, + sym_op_plus_plus, + sym_op_minus_minus, + sym_op_true, + sym_op_false, + [11659] = 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(3694), 1, + anon_sym_COLON_COLON, + STATE(5575), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3913), 12, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3910), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [7464] = 13, + [11748] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676699,7 +671175,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5540), 9, + ACTIONS(8283), 1, + anon_sym_LT, + ACTIONS(8316), 1, + anon_sym_COLON_COLON, + STATE(2214), 1, + sym_type_argument_list, + STATE(5576), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676709,22 +671191,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4436), 14, + ACTIONS(3957), 10, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + anon_sym_DOT, anon_sym_EQ_GT, sym_grit_metavariable, - ACTIONS(4434), 28, + ACTIONS(3955), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -676753,7 +671231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [7552] = 28, + [11841] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676774,101 +671252,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, - sym__identifier_token, - ACTIONS(3219), 1, - anon_sym_LPAREN, - ACTIONS(3705), 1, - anon_sym_delegate, - ACTIONS(4060), 1, - sym_grit_metavariable, - ACTIONS(7731), 1, - sym_predefined_type, - ACTIONS(7733), 1, - anon_sym_LBRACK, - STATE(3752), 1, - sym_array_type, - STATE(5136), 1, - sym__reserved_identifier, - STATE(5466), 1, - sym_identifier, - STATE(5467), 1, - sym_generic_name, - STATE(7025), 1, - sym__name, - STATE(7131), 1, - sym_tuple_type, - STATE(7549), 1, - sym__array_base_type, - STATE(7644), 1, - sym__pointer_base_type, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7575), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(5541), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3211), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(8318), 1, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [7670] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7735), 1, - anon_sym_and, - ACTIONS(7737), 1, - anon_sym_or, - STATE(5542), 9, + STATE(5577), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676878,49 +671264,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + aux_sym_query_body_repeat2, + ACTIONS(7913), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 28, 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_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [7762] = 28, + [11930] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676941,97 +671327,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, - sym__identifier_token, - ACTIONS(3219), 1, - anon_sym_LPAREN, - ACTIONS(3705), 1, - anon_sym_delegate, - ACTIONS(4060), 1, - sym_grit_metavariable, - ACTIONS(7731), 1, - sym_predefined_type, - ACTIONS(7739), 1, - anon_sym_LBRACK, - STATE(5136), 1, - sym__reserved_identifier, - STATE(5466), 1, - sym_identifier, - STATE(5467), 1, - sym_generic_name, - STATE(5555), 1, - sym_array_type, - STATE(7025), 1, - sym__name, - STATE(7131), 1, - sym_tuple_type, - STATE(7386), 1, - sym__array_base_type, - STATE(7644), 1, - sym__pointer_base_type, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7575), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(5543), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3211), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(8225), 1, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [7880] = 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(5544), 9, + STATE(5577), 1, + aux_sym_query_body_repeat2, + STATE(5578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677041,51 +671341,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4466), 14, - anon_sym_SEMI, + ACTIONS(7920), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 28, 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, - sym_grit_metavariable, - ACTIONS(4464), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_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, - [7968] = 14, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [12021] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677106,9 +671403,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7735), 1, - anon_sym_and, - STATE(5545), 9, + ACTIONS(8225), 1, + anon_sym_into, + STATE(5578), 1, + aux_sym_query_body_repeat2, + STATE(5579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677118,50 +671417,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 12, + ACTIONS(7909), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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(7635), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 28, 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_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [8058] = 15, + [12112] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677182,11 +671479,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7735), 1, - anon_sym_and, - ACTIONS(7737), 1, - anon_sym_or, - STATE(5546), 9, + ACTIONS(8321), 1, + aux_sym_raw_string_literal_token1, + STATE(5580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677196,49 +671491,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, + ACTIONS(5664), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5662), 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, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [8150] = 28, + [12200] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677259,43 +671553,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, - sym__identifier_token, - ACTIONS(3219), 1, - anon_sym_LPAREN, - ACTIONS(3705), 1, - anon_sym_delegate, - ACTIONS(4060), 1, - sym_grit_metavariable, - ACTIONS(7731), 1, - sym_predefined_type, - ACTIONS(7741), 1, - anon_sym_LBRACK, - STATE(4730), 1, - sym_array_type, - STATE(5136), 1, - sym__reserved_identifier, - STATE(5466), 1, - sym_identifier, - STATE(5467), 1, - sym_generic_name, - STATE(7025), 1, - sym__name, - STATE(7131), 1, - sym_tuple_type, - STATE(7448), 1, - sym__array_base_type, - STATE(7644), 1, - sym__pointer_base_type, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7575), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(5547), 9, + STATE(5581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677305,30 +671563,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(3951), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3953), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [8268] = 28, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [12286] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677349,43 +671626,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, - sym__identifier_token, - ACTIONS(3219), 1, - anon_sym_LPAREN, - ACTIONS(3705), 1, - anon_sym_delegate, - ACTIONS(4060), 1, - sym_grit_metavariable, - ACTIONS(7731), 1, - sym_predefined_type, - ACTIONS(7743), 1, - anon_sym_LBRACK, - STATE(5113), 1, - sym_array_type, - STATE(5136), 1, - sym__reserved_identifier, - STATE(5466), 1, - sym_identifier, - STATE(5467), 1, - sym_generic_name, - STATE(7025), 1, - sym__name, - STATE(7131), 1, - sym_tuple_type, - STATE(7489), 1, - sym__array_base_type, - STATE(7644), 1, - sym__pointer_base_type, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7575), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(5548), 9, + STATE(5582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677395,30 +671636,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(3970), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3972), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [8386] = 16, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [12372] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677439,13 +671699,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7745), 1, - anon_sym_LT, - ACTIONS(7748), 1, - anon_sym_COLON_COLON, - STATE(5630), 1, - sym_type_argument_list, - STATE(5549), 9, + STATE(5583), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677455,48 +671709,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 11, - anon_sym_COLON, + ACTIONS(4314), 11, + anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3953), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4316), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [8480] = 28, + [12458] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677517,43 +671772,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, - sym__identifier_token, - ACTIONS(3219), 1, + ACTIONS(5386), 7, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(3705), 1, - anon_sym_delegate, - ACTIONS(4060), 1, sym_grit_metavariable, - ACTIONS(7731), 1, - sym_predefined_type, - ACTIONS(7750), 1, - anon_sym_LBRACK, - STATE(3360), 1, - sym_array_type, - STATE(5136), 1, - sym__reserved_identifier, - STATE(5466), 1, - sym_identifier, - STATE(5467), 1, - sym_generic_name, - STATE(7025), 1, - sym__name, - STATE(7131), 1, - sym_tuple_type, - STATE(7430), 1, - sym__array_base_type, - STATE(7644), 1, - sym__pointer_base_type, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7575), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(5550), 9, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5584), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677563,15 +671790,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, + ACTIONS(5384), 33, anon_sym_alias, anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, + anon_sym_async, anon_sym_file, + 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, @@ -677586,7 +671823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [8598] = 15, + sym__identifier_token, + [12544] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677607,11 +671845,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7727), 1, + ACTIONS(8323), 1, anon_sym_into, - STATE(5552), 1, - aux_sym_query_body_repeat2, - STATE(5551), 9, + STATE(5585), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677621,49 +671857,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, + aux_sym_query_body_repeat2, + ACTIONS(7913), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 27, + 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, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [8690] = 14, + [12632] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677684,9 +671919,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7752), 1, - anon_sym_into, - STATE(5552), 10, + ACTIONS(8227), 1, + anon_sym_LT, + ACTIONS(8229), 1, + anon_sym_GT, + ACTIONS(8233), 1, + anon_sym_TILDE, + ACTIONS(8235), 1, + anon_sym_STAR, + ACTIONS(8237), 1, + anon_sym_LT_EQ, + ACTIONS(8239), 1, + anon_sym_GT_EQ, + ACTIONS(8241), 1, + anon_sym_EQ_EQ, + ACTIONS(8243), 1, + anon_sym_BANG_EQ, + ACTIONS(8245), 1, + anon_sym_AMP, + ACTIONS(8249), 1, + anon_sym_CARET, + ACTIONS(8253), 1, + anon_sym_PLUS, + ACTIONS(8255), 1, + anon_sym_DASH, + ACTIONS(8257), 1, + anon_sym_BANG, + ACTIONS(8259), 1, + anon_sym_PLUS_PLUS, + ACTIONS(8261), 1, + anon_sym_DASH_DASH, + ACTIONS(8263), 1, + anon_sym_true, + ACTIONS(8265), 1, + anon_sym_false, + ACTIONS(8314), 2, + sym_op_right_shift, + sym_op_divide, + ACTIONS(8312), 4, + sym_op_bitwise_or, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + STATE(5586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677696,50 +671971,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - 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, - [8780] = 23, + STATE(7546), 17, + sym_op_lt, + sym_op_lte, + sym_op_eq, + sym_op_neq, + sym_op_gt, + sym_op_gte, + sym_op_bitwise_and, + sym_op_bitwise_xor, + sym_op_plus, + sym_op_minus, + sym_op_multiply, + sym_op_not, + sym_op_bitwise_not, + sym_op_plus_plus, + sym_op_minus_minus, + sym_op_true, + sym_op_false, + [12754] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677760,38 +672010,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, - sym__identifier_token, - ACTIONS(4060), 1, - sym_grit_metavariable, - ACTIONS(7443), 1, - anon_sym_ref, - STATE(5136), 1, - sym__reserved_identifier, - STATE(5466), 1, - sym_identifier, - STATE(5467), 1, - sym_generic_name, - STATE(7222), 1, - sym__name, - STATE(7559), 1, - sym__scoped_base_type, - STATE(7560), 1, - sym_ref_type, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3696), 8, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(8227), 1, anon_sym_LT, + ACTIONS(8229), 1, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8233), 1, + anon_sym_TILDE, + ACTIONS(8235), 1, anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(5553), 9, + ACTIONS(8237), 1, + anon_sym_LT_EQ, + ACTIONS(8239), 1, + anon_sym_GT_EQ, + ACTIONS(8241), 1, + anon_sym_EQ_EQ, + ACTIONS(8243), 1, + anon_sym_BANG_EQ, + ACTIONS(8245), 1, + anon_sym_AMP, + ACTIONS(8249), 1, + anon_sym_CARET, + ACTIONS(8253), 1, + anon_sym_PLUS, + ACTIONS(8255), 1, + anon_sym_DASH, + ACTIONS(8257), 1, + anon_sym_BANG, + ACTIONS(8259), 1, + anon_sym_PLUS_PLUS, + ACTIONS(8261), 1, + anon_sym_DASH_DASH, + ACTIONS(8263), 1, + anon_sym_true, + ACTIONS(8265), 1, + anon_sym_false, + ACTIONS(8289), 2, + sym_op_right_shift, + sym_op_divide, + ACTIONS(8287), 4, + sym_op_bitwise_or, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + STATE(5587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677801,30 +672062,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [8888] = 15, + STATE(7559), 17, + sym_op_lt, + sym_op_lte, + sym_op_eq, + sym_op_neq, + sym_op_gt, + sym_op_gte, + sym_op_bitwise_and, + sym_op_bitwise_xor, + sym_op_plus, + sym_op_minus, + sym_op_multiply, + sym_op_not, + sym_op_bitwise_not, + sym_op_plus_plus, + sym_op_minus_minus, + sym_op_true, + sym_op_false, + [12876] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677845,11 +672101,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7755), 1, - anon_sym_into, - STATE(5574), 1, - aux_sym_query_body_repeat2, - STATE(5554), 9, + STATE(5588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677859,48 +672111,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, + ACTIONS(4351), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4353), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [8979] = 16, + [12962] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677921,13 +672174,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1611), 1, - anon_sym_LBRACE, - ACTIONS(5736), 1, - anon_sym_LBRACK, - STATE(5718), 1, - sym_initializer_expression, - STATE(5555), 9, + STATE(5589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677937,47 +672184,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5739), 11, + ACTIONS(4347), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5734), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4349), 29, 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_LBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [9072] = 17, + [13048] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677998,25 +672247,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, + ACTIONS(8227), 1, + anon_sym_LT, + ACTIONS(8229), 1, + anon_sym_GT, + ACTIONS(8233), 1, + anon_sym_TILDE, + ACTIONS(8235), 1, anon_sym_STAR, - ACTIONS(7757), 1, - anon_sym_DOT, - ACTIONS(4331), 9, - 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, - sym_grit_metavariable, - STATE(5556), 9, + ACTIONS(8237), 1, + anon_sym_LT_EQ, + ACTIONS(8239), 1, + anon_sym_GT_EQ, + ACTIONS(8241), 1, + anon_sym_EQ_EQ, + ACTIONS(8243), 1, + anon_sym_BANG_EQ, + ACTIONS(8245), 1, + anon_sym_AMP, + ACTIONS(8249), 1, + anon_sym_CARET, + ACTIONS(8253), 1, + anon_sym_PLUS, + ACTIONS(8255), 1, + anon_sym_DASH, + ACTIONS(8257), 1, + anon_sym_BANG, + ACTIONS(8259), 1, + anon_sym_PLUS_PLUS, + ACTIONS(8261), 1, + anon_sym_DASH_DASH, + ACTIONS(8263), 1, + anon_sym_true, + ACTIONS(8265), 1, + anon_sym_false, + ACTIONS(8328), 2, + sym_op_right_shift, + sym_op_divide, + ACTIONS(8326), 4, + sym_op_bitwise_or, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + STATE(5590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678026,36 +672299,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 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, - [9167] = 28, + STATE(7516), 17, + sym_op_lt, + sym_op_lte, + sym_op_eq, + sym_op_neq, + sym_op_gt, + sym_op_gte, + sym_op_bitwise_and, + sym_op_bitwise_xor, + sym_op_plus, + sym_op_minus, + sym_op_multiply, + sym_op_not, + sym_op_bitwise_not, + sym_op_plus_plus, + sym_op_minus_minus, + sym_op_true, + sym_op_false, + [13170] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678076,42 +672338,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, - sym__identifier_token, - ACTIONS(3219), 1, - anon_sym_LPAREN, - ACTIONS(3705), 1, - anon_sym_delegate, - ACTIONS(4060), 1, - sym_grit_metavariable, - ACTIONS(7731), 1, - sym_predefined_type, - STATE(5136), 1, - sym__reserved_identifier, - STATE(5466), 1, - sym_identifier, - STATE(5467), 1, - sym_generic_name, - STATE(6231), 1, - sym_array_type, - STATE(6272), 1, - sym_nullable_type, - STATE(7025), 1, - sym__name, - STATE(7131), 1, - sym_tuple_type, - STATE(7639), 1, - sym__array_base_type, - STATE(7644), 1, - sym__pointer_base_type, - STATE(7575), 2, - sym_pointer_type, - sym_function_pointer_type, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5557), 9, + STATE(5591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678121,30 +672348,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(3986), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3997), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [9284] = 17, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [13256] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678165,15 +672411,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5954), 1, + ACTIONS(5480), 7, anon_sym_LBRACK, - ACTIONS(5961), 1, - anon_sym_LBRACE, - ACTIONS(5967), 1, - anon_sym_QMARK, - STATE(4286), 1, - sym_initializer_expression, - STATE(5558), 9, + anon_sym_LPAREN, + sym_grit_metavariable, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5592), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678183,46 +672429,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5964), 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(5958), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - 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, - [9379] = 23, + ACTIONS(5478), 33, + anon_sym_alias, + anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, + anon_sym_async, + anon_sym_file, + 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, + [13342] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678245,35 +672486,33 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7190), 1, - anon_sym_ref, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2369), 1, - sym__scoped_base_type, - STATE(2380), 1, - sym_ref_type, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(5884), 1, + STATE(6098), 1, + sym_attribute_target_specifier, + STATE(6843), 1, sym__name, - STATE(5468), 3, + STATE(7267), 1, + sym_attribute, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - ACTIONS(3696), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(5559), 9, + ACTIONS(1267), 7, + anon_sym_field, + anon_sym_event, + anon_sym_method, + anon_sym_param, + anon_sym_property, + anon_sym_return, + anon_sym_type, + STATE(5593), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678306,7 +672545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9486] = 27, + [13446] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678327,41 +672566,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(5422), 7, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(7765), 1, sym_grit_metavariable, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4978), 1, - sym_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(4212), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5560), 9, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5594), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678371,15 +672584,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(5420), 33, anon_sym_alias, anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, + anon_sym_async, anon_sym_file, + 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, @@ -678394,7 +672617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9601] = 28, + sym__identifier_token, + [13532] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678415,42 +672639,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, - sym__identifier_token, - ACTIONS(3219), 1, + ACTIONS(5430), 7, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(3705), 1, - anon_sym_delegate, - ACTIONS(4060), 1, sym_grit_metavariable, - ACTIONS(7731), 1, - sym_predefined_type, - STATE(5136), 1, - sym__reserved_identifier, - STATE(5466), 1, - sym_identifier, - STATE(5467), 1, - sym_generic_name, - STATE(6268), 1, - sym_array_type, - STATE(6275), 1, - sym_nullable_type, - STATE(7025), 1, - sym__name, - STATE(7131), 1, - sym_tuple_type, - STATE(7639), 1, - sym__array_base_type, - STATE(7644), 1, - sym__pointer_base_type, - STATE(7575), 2, - sym_pointer_type, - sym_function_pointer_type, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5561), 9, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5595), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678460,15 +672657,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, + ACTIONS(5428), 33, anon_sym_alias, anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, + anon_sym_async, anon_sym_file, + 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, @@ -678483,7 +672690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9718] = 15, + sym__identifier_token, + [13618] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678504,11 +672712,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1611), 1, - anon_sym_LBRACE, - STATE(5679), 1, - sym_initializer_expression, - STATE(5562), 9, + ACTIONS(8330), 1, + anon_sym_into, + STATE(5617), 1, + aux_sym_query_body_repeat2, + STATE(5596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678518,48 +672726,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5778), 11, + ACTIONS(7909), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5776), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 27, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [9809] = 15, + [13708] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678580,11 +672787,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7767), 1, - anon_sym_LT, - STATE(2209), 1, - sym_type_argument_list, - STATE(5563), 9, + STATE(5597), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678594,7 +672797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3953), 11, + ACTIONS(4282), 12, anon_sym_SEMI, anon_sym_COLON, anon_sym_COMMA, @@ -678603,10 +672806,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_GT, sym_grit_metavariable, - ACTIONS(3951), 28, + ACTIONS(4280), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678635,7 +672839,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [9900] = 17, + [13794] = 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(1301), 1, + sym_grit_metavariable, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6097), 1, + sym_attribute_target_specifier, + STATE(6843), 1, + sym__name, + STATE(7184), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(1267), 7, + anon_sym_field, + anon_sym_event, + anon_sym_method, + anon_sym_param, + anon_sym_property, + anon_sym_return, + anon_sym_type, + STATE(5598), 9, + sym_preproc_region, + sym_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, + [13898] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678656,19 +672942,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7769), 1, + ACTIONS(5434), 7, anon_sym_LBRACK, - ACTIONS(7772), 1, - aux_sym_preproc_if_token1, - STATE(5916), 1, - sym__attribute_list, - ACTIONS(5489), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(5927), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(5564), 10, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678678,8 +672960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__class_declaration_initializer_repeat1, - ACTIONS(5484), 33, + ACTIONS(5432), 33, anon_sym_alias, anon_sym_global, anon_sym_static, @@ -678713,7 +672994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [9995] = 13, + [13984] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678734,7 +673015,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5565), 9, + ACTIONS(8330), 1, + anon_sym_into, + STATE(5585), 1, + aux_sym_query_body_repeat2, + STATE(5600), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678744,50 +673029,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3698), 12, - anon_sym_COLON, + ACTIONS(7905), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3696), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 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, - 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [10082] = 13, + [14074] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678808,7 +673090,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5566), 9, + STATE(5601), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678818,50 +673100,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3187), 12, - anon_sym_COLON, + ACTIONS(4329), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3189), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4331), 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_COLON_COLON, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [10169] = 16, + [14160] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678882,13 +673163,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7767), 1, - anon_sym_LT, - ACTIONS(7775), 1, - anon_sym_COLON_COLON, - STATE(2209), 1, - sym_type_argument_list, - STATE(5567), 9, + STATE(5602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678898,47 +673173,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3953), 10, - anon_sym_SEMI, + ACTIONS(4280), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4282), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_EQ_GT, - sym_grit_metavariable, - ACTIONS(3951), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, - anon_sym_from, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - 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, - [10262] = 23, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [14246] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678959,37 +673236,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7607), 1, - anon_sym_ref, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2369), 1, - sym__scoped_base_type, - STATE(2380), 1, - sym_ref_type, - STATE(5567), 1, - sym_identifier, - STATE(5884), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3696), 7, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(5568), 9, + STATE(5603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678999,30 +673246,49 @@ 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(4409), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4411), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [10369] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [14332] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679043,11 +673309,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(5676), 1, anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - STATE(5569), 9, + ACTIONS(5692), 1, + aux_sym_preproc_if_token1, + ACTIONS(8332), 1, + aux_sym_preproc_if_token3, + ACTIONS(8334), 1, + aux_sym_preproc_else_token1, + ACTIONS(8336), 1, + aux_sym_preproc_elif_token1, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6092), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6155), 1, + sym_attribute_list, + STATE(6246), 1, + sym__attribute_list, + STATE(6254), 1, + sym_preproc_if_in_attribute_list, + STATE(6842), 1, + sym_enum_member_declaration, + STATE(7031), 1, + sym_identifier, + STATE(7862), 2, + sym_preproc_else_in_enum_member_declaration, + sym_preproc_elif_in_enum_member_declaration, + STATE(7890), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(5604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679057,34 +673353,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4331), 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_EQ_GT, - sym_grit_metavariable, - ACTIONS(4329), 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, @@ -679097,8 +673376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [10460] = 13, + [14448] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679119,7 +673397,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5570), 9, + ACTIONS(8330), 1, + anon_sym_into, + STATE(5600), 1, + aux_sym_query_body_repeat2, + STATE(5605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679129,50 +673411,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3187), 11, + ACTIONS(7899), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3189), 30, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 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, - 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [10547] = 15, + [14538] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679193,11 +673472,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1611), 1, - anon_sym_LBRACE, - STATE(5729), 1, - sym_initializer_expression, - STATE(5571), 9, + ACTIONS(8338), 1, + sym_string_literal_encoding, + STATE(5606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679207,48 +673484,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5757), 11, + ACTIONS(5647), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5755), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5645), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [10638] = 15, + [14626] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679269,11 +673546,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7755), 1, - anon_sym_into, - STATE(5574), 1, - aux_sym_query_body_repeat2, - STATE(5572), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6090), 1, + sym_attribute_target_specifier, + STATE(6843), 1, + sym__name, + STATE(7330), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(1267), 7, + anon_sym_field, + anon_sym_event, + anon_sym_method, + anon_sym_param, + anon_sym_property, + anon_sym_return, + anon_sym_type, + STATE(5607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679283,48 +673584,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [10729] = 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, + [14730] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679345,7 +673628,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5573), 9, + ACTIONS(8227), 1, + anon_sym_LT, + ACTIONS(8229), 1, + anon_sym_GT, + ACTIONS(8233), 1, + anon_sym_TILDE, + ACTIONS(8235), 1, + anon_sym_STAR, + ACTIONS(8237), 1, + anon_sym_LT_EQ, + ACTIONS(8239), 1, + anon_sym_GT_EQ, + ACTIONS(8241), 1, + anon_sym_EQ_EQ, + ACTIONS(8243), 1, + anon_sym_BANG_EQ, + ACTIONS(8245), 1, + anon_sym_AMP, + ACTIONS(8249), 1, + anon_sym_CARET, + ACTIONS(8253), 1, + anon_sym_PLUS, + ACTIONS(8255), 1, + anon_sym_DASH, + ACTIONS(8257), 1, + anon_sym_BANG, + ACTIONS(8259), 1, + anon_sym_PLUS_PLUS, + ACTIONS(8261), 1, + anon_sym_DASH_DASH, + ACTIONS(8263), 1, + anon_sym_true, + ACTIONS(8265), 1, + anon_sym_false, + ACTIONS(8342), 2, + sym_op_right_shift, + sym_op_divide, + ACTIONS(8340), 4, + sym_op_bitwise_or, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + STATE(5608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679355,50 +673680,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3698), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3696), 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, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_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, - sym_op_coalescing, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [10816] = 14, + STATE(7554), 17, + sym_op_lt, + sym_op_lte, + sym_op_eq, + sym_op_neq, + sym_op_gt, + sym_op_gte, + sym_op_bitwise_and, + sym_op_bitwise_xor, + sym_op_plus, + sym_op_minus, + sym_op_multiply, + sym_op_not, + sym_op_bitwise_not, + sym_op_plus_plus, + sym_op_minus_minus, + sym_op_true, + sym_op_false, + [14852] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679419,9 +673719,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7777), 1, - anon_sym_into, - STATE(5574), 10, + STATE(5609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679431,49 +673729,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 11, + ACTIONS(4401), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4403), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [10905] = 14, + [14938] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679494,9 +673792,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3696), 1, - anon_sym_COLON_COLON, - STATE(5575), 9, + STATE(5610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679506,49 +673802,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3915), 12, - anon_sym_COLON, + ACTIONS(4310), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3912), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4312), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [10994] = 15, + [15024] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679569,11 +673865,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7755), 1, - anon_sym_into, - STATE(5554), 1, - aux_sym_query_body_repeat2, - STATE(5576), 9, + STATE(5611), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679583,48 +673875,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, + ACTIONS(4456), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4458), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [11085] = 15, + [15110] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679645,11 +673938,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7745), 1, - anon_sym_LT, - STATE(5630), 1, - sym_type_argument_list, - STATE(5577), 9, + STATE(5612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679659,48 +673948,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 10, + ACTIONS(4335), 11, + anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3953), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4337), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [11176] = 17, + [15196] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679721,15 +674011,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_LBRACK, - ACTIONS(7780), 1, - anon_sym_LBRACE, - ACTIONS(7783), 1, - anon_sym_QMARK, - STATE(5723), 1, - sym_initializer_expression, - STATE(5578), 9, + STATE(5613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679739,46 +674021,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5964), 10, + ACTIONS(5715), 11, anon_sym_LT, anon_sym_GT, - anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5958), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5713), 29, 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_LBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [11271] = 15, + [15282] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679799,11 +674084,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7755), 1, - anon_sym_into, - STATE(5572), 1, - aux_sym_query_body_repeat2, - STATE(5579), 9, + ACTIONS(5651), 1, + anon_sym_LT, + ACTIONS(8344), 1, + anon_sym_COLON_COLON, + STATE(3245), 1, + sym_type_argument_list, + STATE(5614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679813,48 +674100,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, - anon_sym_LT, + ACTIONS(3955), 11, + anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3957), 26, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [11362] = 13, + [15374] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679875,88 +674160,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5580), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4262), 12, - 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, - sym_grit_metavariable, - ACTIONS(4260), 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, + ACTIONS(25), 1, sym__identifier_token, - [11448] = 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(5610), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5581), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6085), 1, + sym_attribute_target_specifier, + STATE(6843), 1, + sym__name, + STATE(7174), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(1267), 7, + anon_sym_field, + anon_sym_event, + anon_sym_method, + anon_sym_param, + anon_sym_property, + anon_sym_return, + anon_sym_type, + STATE(5615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679966,25 +674198,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5608), 33, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_readonly, - anon_sym_async, anon_sym_file, - 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, @@ -679999,8 +674221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [11534] = 14, + [15478] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680021,60 +674242,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7787), 1, - anon_sym_and, - STATE(5582), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(8227), 1, anon_sym_LT, + ACTIONS(8229), 1, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(8233), 1, + anon_sym_TILDE, + ACTIONS(8235), 1, + anon_sym_STAR, + ACTIONS(8237), 1, + anon_sym_LT_EQ, + ACTIONS(8239), 1, + anon_sym_GT_EQ, + ACTIONS(8241), 1, + anon_sym_EQ_EQ, + ACTIONS(8243), 1, + anon_sym_BANG_EQ, + ACTIONS(8245), 1, + anon_sym_AMP, + ACTIONS(8249), 1, + anon_sym_CARET, + ACTIONS(8253), 1, anon_sym_PLUS, + ACTIONS(8255), 1, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 28, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(8257), 1, + anon_sym_BANG, + ACTIONS(8259), 1, anon_sym_PLUS_PLUS, + ACTIONS(8261), 1, anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [11622] = 13, + ACTIONS(8263), 1, + anon_sym_true, + ACTIONS(8265), 1, + anon_sym_false, + ACTIONS(8348), 2, + sym_op_right_shift, + sym_op_divide, + ACTIONS(8346), 4, + sym_op_bitwise_or, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + STATE(5616), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + STATE(7489), 17, + sym_op_lt, + sym_op_lte, + sym_op_eq, + sym_op_neq, + sym_op_gt, + sym_op_gte, + sym_op_bitwise_and, + sym_op_bitwise_xor, + sym_op_plus, + sym_op_minus, + sym_op_multiply, + sym_op_not, + sym_op_bitwise_not, + sym_op_plus_plus, + sym_op_minus_minus, + sym_op_true, + sym_op_false, + [15600] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680095,7 +674333,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5583), 9, + ACTIONS(8330), 1, + anon_sym_into, + STATE(5585), 1, + aux_sym_query_body_repeat2, + STATE(5617), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680105,49 +674347,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4355), 11, + ACTIONS(7920), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4357), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 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, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [11708] = 13, + [15690] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680168,7 +674408,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5584), 9, + ACTIONS(8350), 1, + anon_sym_and, + ACTIONS(8352), 1, + anon_sym_or, + STATE(5618), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680178,49 +674422,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4339), 11, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4341), 29, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 27, 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_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [11794] = 13, + [15780] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680241,7 +674483,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5585), 9, + STATE(5619), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680251,49 +674493,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4314), 11, + ACTIONS(5660), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4316), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5658), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [11880] = 15, + [15866] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680314,11 +674556,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4405), 1, + ACTIONS(5440), 7, anon_sym_LBRACK, - ACTIONS(4411), 1, - anon_sym_STAR, - STATE(5586), 9, + anon_sym_LPAREN, + sym_grit_metavariable, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680328,47 +674574,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4331), 27, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, + ACTIONS(5438), 33, + anon_sym_alias, + anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, + anon_sym_async, + anon_sym_file, + anon_sym_in, + anon_sym_out, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_this, + anon_sym_scoped, + anon_sym_params, + anon_sym_var, + sym_predefined_type, + anon_sym_yield, + anon_sym_when, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [11970] = 14, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [15952] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680389,9 +674629,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7789), 1, - anon_sym_DOT, - STATE(5587), 9, + ACTIONS(8350), 1, + anon_sym_and, + ACTIONS(8352), 1, + anon_sym_or, + STATE(5621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680401,48 +674643,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4355), 10, + ACTIONS(6887), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4357), 29, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 27, 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_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [12058] = 13, + [16042] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680463,7 +674704,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5588), 9, + ACTIONS(5446), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + sym_grit_metavariable, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680473,49 +674722,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4335), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4337), 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, - sym_op_coalescing, + ACTIONS(5444), 33, + anon_sym_alias, + anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, + anon_sym_async, + anon_sym_file, + anon_sym_in, + anon_sym_out, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_this, + anon_sym_scoped, + anon_sym_params, + anon_sym_var, + sym_predefined_type, + anon_sym_yield, + anon_sym_when, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [12144] = 13, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [16128] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680536,7 +674777,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5589), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6091), 1, + sym_attribute_target_specifier, + STATE(6843), 1, + sym__name, + STATE(7094), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(1267), 7, + anon_sym_field, + anon_sym_event, + anon_sym_method, + anon_sym_param, + anon_sym_property, + anon_sym_return, + anon_sym_type, + STATE(5623), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680546,49 +674815,103 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5933), 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, + [16232] = 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(5624), 9, + sym_preproc_region, + sym_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, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5931), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4015), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [12230] = 15, + [16318] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680609,11 +674932,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7791), 1, - anon_sym_and, - ACTIONS(7793), 1, - anon_sym_or, - STATE(5590), 9, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + STATE(5625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680623,47 +674944,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, + ACTIONS(6743), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4152), 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, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [12320] = 16, + [16406] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680684,13 +675006,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4405), 1, + ACTIONS(4439), 1, anon_sym_LBRACK, - ACTIONS(4411), 1, + ACTIONS(4447), 1, anon_sym_STAR, - ACTIONS(7795), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - STATE(5591), 9, + STATE(5626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680703,43 +675025,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4329), 10, anon_sym_LT, anon_sym_GT, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, + sym_op_divide, + anon_sym_BANG, ACTIONS(4331), 27, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [12412] = 15, + [16498] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680760,11 +675082,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7798), 1, - anon_sym_into, - STATE(5597), 1, - aux_sym_query_body_repeat2, - STATE(5592), 9, + ACTIONS(8357), 1, + sym_string_literal_encoding, + STATE(5627), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680774,47 +675094,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, + ACTIONS(5705), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5703), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [12502] = 17, + [16586] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680835,25 +675156,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4411), 1, - anon_sym_STAR, - ACTIONS(7789), 1, - anon_sym_DOT, - ACTIONS(7795), 1, - anon_sym_QMARK, - ACTIONS(4329), 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(5593), 9, + ACTIONS(8359), 1, + anon_sym_and, + ACTIONS(8361), 1, + anon_sym_or, + STATE(5628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680863,35 +675170,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4331), 27, - sym_interpolation_close_brace, - anon_sym_COLON, + ACTIONS(8005), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 27, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [12596] = 28, + [16676] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680912,41 +675231,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(5977), 1, + ACTIONS(4439), 1, anon_sym_LBRACK, - ACTIONS(5993), 1, - aux_sym_preproc_if_token1, - ACTIONS(7800), 1, - aux_sym_preproc_if_token3, - ACTIONS(7802), 1, - aux_sym_preproc_else_token1, - ACTIONS(7804), 1, - aux_sym_preproc_elif_token1, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6090), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6137), 1, - sym_attribute_list, - STATE(6280), 1, - sym__attribute_list, - STATE(6281), 1, - sym_preproc_if_in_attribute_list, - STATE(6842), 1, - sym_enum_member_declaration, - STATE(6954), 1, - sym_identifier, - STATE(7964), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(8131), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(5594), 9, + ACTIONS(4447), 1, + anon_sym_STAR, + STATE(5629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680956,30 +675245,47 @@ 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(4329), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4331), 27, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [12712] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [16766] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681000,7 +675306,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5595), 9, + STATE(5630), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681010,131 +675316,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 11, + ACTIONS(4359), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3953), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4361), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [12798] = 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(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6088), 1, - sym_attribute_target_specifier, - STATE(6798), 1, - sym__name, - STATE(7184), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1315), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(5596), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - 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, - [12902] = 15, + [16852] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681155,11 +675379,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7798), 1, - anon_sym_into, - STATE(5604), 1, - aux_sym_query_body_repeat2, - STATE(5597), 9, + ACTIONS(8363), 1, + anon_sym_DOT, + STATE(5631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681169,47 +675391,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, + ACTIONS(4359), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4361), 29, 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_LBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [12992] = 14, + [16940] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681230,9 +675453,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7806), 1, - aux_sym_raw_string_literal_token1, - STATE(5598), 9, + STATE(5632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681242,48 +675463,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5881), 11, + ACTIONS(3955), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5879), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3957), 29, 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_LBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [13080] = 13, + [17026] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681304,7 +675526,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5599), 9, + ACTIONS(8350), 1, + anon_sym_and, + STATE(5633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681314,49 +675538,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4260), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4262), 29, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 28, 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_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [13166] = 22, + [17114] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681377,35 +675600,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(1307), 1, + ACTIONS(5450), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6081), 1, - sym_attribute_target_specifier, - STATE(6798), 1, - sym__name, - STATE(7369), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1315), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(5600), 9, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5634), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681415,15 +675618,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5448), 33, anon_sym_alias, anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, + anon_sym_async, anon_sym_file, + 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, @@ -681438,7 +675651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [13270] = 13, + sym__identifier_token, + [17200] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681459,7 +675673,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5601), 9, + STATE(5635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681469,49 +675683,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5947), 11, + ACTIONS(4343), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5945), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4345), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [13356] = 13, + [17286] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681532,7 +675746,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5602), 9, + STATE(5636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681542,49 +675756,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4310), 11, + ACTIONS(4339), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4312), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4341), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [13442] = 15, + [17372] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681605,84 +675819,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7798), 1, - anon_sym_into, - STATE(5615), 1, - aux_sym_query_body_repeat2, - STATE(5603), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7508), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 27, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, + ACTIONS(5068), 6, 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_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [13532] = 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(7808), 1, - anon_sym_into, - STATE(5604), 10, + STATE(5637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681692,48 +675836,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 11, + ACTIONS(5917), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 27, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5915), 23, 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [13620] = 14, + [17460] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681754,9 +675893,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7811), 1, - sym_string_literal_encoding, - STATE(5605), 9, + ACTIONS(4439), 1, + anon_sym_LBRACK, + ACTIONS(8354), 1, + anon_sym_QMARK, + STATE(5638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681766,48 +675907,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5901), 11, + ACTIONS(4329), 10, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5899), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4331), 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_LBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [13708] = 13, + [17550] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681828,7 +675968,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5606), 9, + STATE(5639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681838,49 +675978,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 11, + ACTIONS(3959), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4331), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3961), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [13794] = 13, + [17636] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681901,7 +676041,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5607), 9, + ACTIONS(4439), 1, + anon_sym_LBRACK, + ACTIONS(4447), 1, + anon_sym_STAR, + ACTIONS(8354), 1, + anon_sym_QMARK, + ACTIONS(8363), 1, + anon_sym_DOT, + ACTIONS(4329), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + STATE(5640), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681910,50 +676068,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_error, sym_preproc_warning, sym_preproc_define, - sym_preproc_undef, - ACTIONS(4347), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4349), 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, + sym_preproc_undef, + ACTIONS(4331), 27, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [13880] = 13, + [17730] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681974,7 +676118,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5608), 9, + STATE(5641), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681984,49 +676128,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4422), 11, + ACTIONS(4433), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4424), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4435), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [13966] = 13, + [17816] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682047,7 +676191,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5609), 9, + ACTIONS(8359), 1, + anon_sym_and, + STATE(5642), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682057,49 +676203,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3986), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3997), 29, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 28, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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_LT_EQ, + anon_sym_GT_EQ, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [14052] = 14, + [17904] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682120,9 +676265,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7813), 1, - sym_string_literal_encoding, - STATE(5610), 9, + STATE(5643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682132,121 +676275,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5927), 11, + ACTIONS(5656), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5925), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5654), 29, 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_LBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [14140] = 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(5544), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - sym_grit_metavariable, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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(5542), 33, - anon_sym_alias, - anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_readonly, - anon_sym_async, - anon_sym_file, - 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, - [14226] = 13, + [17990] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682267,7 +676338,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5612), 9, + STATE(5644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682277,49 +676348,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5915), 11, + ACTIONS(4391), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5913), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4393), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [14312] = 15, + [18076] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682340,11 +676411,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(7795), 1, - anon_sym_QMARK, - STATE(5613), 9, + STATE(5645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682354,47 +676421,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 10, + ACTIONS(3980), 11, anon_sym_LT, anon_sym_GT, - anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4331), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3982), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [14402] = 13, + [18162] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682415,7 +676484,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5614), 9, + ACTIONS(5068), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(5646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682425,49 +676501,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4361), 11, + ACTIONS(5841), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4363), 29, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5839), 23, anon_sym_LBRACK, anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [14488] = 15, + [18250] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682488,11 +676558,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7798), 1, - anon_sym_into, - STATE(5604), 1, - aux_sym_query_body_repeat2, - STATE(5615), 9, + STATE(5647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682502,47 +676568,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 11, + ACTIONS(3974), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3976), 29, 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_LBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [14578] = 13, + [18336] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682563,15 +676631,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5638), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(5692), 1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, + ACTIONS(8334), 1, aux_sym_preproc_else_token1, + ACTIONS(8336), 1, aux_sym_preproc_elif_token1, - STATE(5616), 9, + ACTIONS(8365), 1, + aux_sym_preproc_if_token3, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6092), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6162), 1, + sym_attribute_list, + STATE(6246), 1, + sym__attribute_list, + STATE(6254), 1, + sym_preproc_if_in_attribute_list, + STATE(6888), 1, + sym_enum_member_declaration, + STATE(7031), 1, + sym_identifier, + STATE(7809), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(7924), 2, + sym_preproc_else_in_enum_member_declaration, + sym_preproc_elif_in_enum_member_declaration, + STATE(5648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682581,25 +676675,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5636), 33, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_readonly, - anon_sym_async, anon_sym_file, - 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, @@ -682614,8 +676698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [14664] = 13, + [18452] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682636,7 +676719,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5617), 9, + ACTIONS(8359), 1, + anon_sym_and, + ACTIONS(8361), 1, + anon_sym_or, + STATE(5649), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682646,49 +676733,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4464), 11, + ACTIONS(6887), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4466), 29, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 27, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [14750] = 28, + [18542] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682709,41 +676794,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(5977), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(5993), 1, - aux_sym_preproc_if_token1, - ACTIONS(7802), 1, - aux_sym_preproc_else_token1, - ACTIONS(7804), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7815), 1, - aux_sym_preproc_if_token3, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6090), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6094), 1, - sym_attribute_list, - STATE(6280), 1, - sym__attribute_list, - STATE(6281), 1, - sym_preproc_if_in_attribute_list, - STATE(6918), 1, - sym_enum_member_declaration, - STATE(6954), 1, - sym_identifier, - STATE(7741), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(7926), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(5618), 9, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(4450), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4331), 9, + 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, + sym_grit_metavariable, + STATE(5650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682753,7 +676823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -682764,6 +676834,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, @@ -682776,7 +676849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [14866] = 13, + sym__identifier_token, + [18636] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682797,7 +676871,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5619), 9, + STATE(5651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682807,49 +676881,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4444), 11, + ACTIONS(4429), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4446), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4431), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [14952] = 16, + [18722] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682870,13 +676944,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5796), 1, + ACTIONS(8227), 1, anon_sym_LT, - ACTIONS(7817), 1, - anon_sym_COLON_COLON, - STATE(4007), 1, - sym_type_argument_list, - STATE(5620), 9, + ACTIONS(8229), 1, + anon_sym_GT, + ACTIONS(8233), 1, + anon_sym_TILDE, + ACTIONS(8235), 1, + anon_sym_STAR, + ACTIONS(8237), 1, + anon_sym_LT_EQ, + ACTIONS(8239), 1, + anon_sym_GT_EQ, + ACTIONS(8241), 1, + anon_sym_EQ_EQ, + ACTIONS(8243), 1, + anon_sym_BANG_EQ, + ACTIONS(8245), 1, + anon_sym_AMP, + ACTIONS(8249), 1, + anon_sym_CARET, + ACTIONS(8253), 1, + anon_sym_PLUS, + ACTIONS(8255), 1, + anon_sym_DASH, + ACTIONS(8257), 1, + anon_sym_BANG, + ACTIONS(8259), 1, + anon_sym_PLUS_PLUS, + ACTIONS(8261), 1, + anon_sym_DASH_DASH, + ACTIONS(8263), 1, + anon_sym_true, + ACTIONS(8265), 1, + anon_sym_false, + ACTIONS(8273), 2, + sym_op_right_shift, + sym_op_divide, + ACTIONS(8271), 4, + sym_op_bitwise_or, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + STATE(5652), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682886,46 +676996,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 11, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3953), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [15044] = 13, + STATE(7393), 17, + sym_op_lt, + sym_op_lte, + sym_op_eq, + sym_op_neq, + sym_op_gt, + sym_op_gte, + sym_op_bitwise_and, + sym_op_bitwise_xor, + sym_op_plus, + sym_op_minus, + sym_op_multiply, + sym_op_not, + sym_op_bitwise_not, + sym_op_plus_plus, + sym_op_minus_minus, + sym_op_true, + sym_op_false, + [18844] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682946,7 +677035,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5621), 9, + STATE(5653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682956,49 +677045,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3974), 11, + ACTIONS(6927), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3976), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6925), 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, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [15130] = 13, + [18929] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683019,7 +677107,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5622), 9, + STATE(5654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683029,49 +677117,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3978), 11, + ACTIONS(6013), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3980), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6011), 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, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [15216] = 13, + [19014] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683092,7 +677179,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5623), 9, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8370), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + STATE(5655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683102,49 +677222,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3966), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3968), 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, - sym_op_coalescing, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_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, - [15302] = 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, + [19129] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683165,7 +677266,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5624), 9, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8372), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + STATE(5656), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683175,49 +677309,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3970), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3972), 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, - sym_op_coalescing, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_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, - [15388] = 14, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [19244] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683238,14 +677353,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4970), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(5625), 9, + STATE(5657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683255,43 +677363,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6403), 11, + ACTIONS(5929), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6401), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5927), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [15476] = 14, + [19329] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683312,14 +677425,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4970), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(8374), 1, anon_sym_and, + ACTIONS(8376), 1, anon_sym_or, - STATE(5626), 9, + STATE(5658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683329,43 +677439,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6138), 11, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6136), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 26, anon_sym_LBRACK, 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, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [15564] = 14, + [19418] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683386,9 +677499,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7791), 1, - anon_sym_and, - STATE(5627), 9, + ACTIONS(8378), 1, + anon_sym_into, + STATE(5741), 1, + aux_sym_query_body_repeat2, + STATE(5659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683398,48 +677513,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(7909), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 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_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [15652] = 13, + [19507] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683460,7 +677573,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5628), 9, + STATE(5660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683470,49 +677583,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4008), 11, + ACTIONS(5985), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4017), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5983), 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, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [15738] = 13, + [19592] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683533,7 +677645,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5629), 9, + STATE(5661), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683543,49 +677655,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4391), 11, + ACTIONS(5993), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4393), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5991), 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, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [15824] = 13, + [19677] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683606,7 +677717,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5630), 9, + ACTIONS(6508), 1, + anon_sym_LT, + ACTIONS(8380), 1, + anon_sym_COLON_COLON, + STATE(4268), 1, + sym_type_argument_list, + STATE(5662), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683616,131 +677733,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3955), 11, - anon_sym_LT, + ACTIONS(3955), 10, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3957), 29, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3957), 26, 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_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_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [15910] = 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(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6091), 1, - sym_attribute_target_specifier, - STATE(6798), 1, - sym__name, - STATE(7134), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1315), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(5631), 9, - sym_preproc_region, - sym_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, - [16014] = 13, + [19768] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683761,7 +677792,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5632), 9, + STATE(5663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683771,49 +677802,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4351), 11, + ACTIONS(5989), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4353), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5987), 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, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [16100] = 13, + [19853] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683834,15 +677864,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5596), 7, - anon_sym_LBRACK, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, anon_sym_LPAREN, + ACTIONS(8281), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5633), 9, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8382), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + STATE(5664), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683852,25 +677907,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5594), 33, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_readonly, - anon_sym_async, anon_sym_file, - 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, @@ -683885,8 +677930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [16186] = 22, + [19968] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683907,35 +677951,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6080), 1, - sym_attribute_target_specifier, - STATE(6798), 1, - sym__name, - STATE(7340), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1315), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(5634), 9, + ACTIONS(8384), 1, + anon_sym_and, + ACTIONS(8386), 1, + anon_sym_or, + STATE(5665), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683945,30 +677965,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(6887), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 26, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [16290] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [20057] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683989,7 +678025,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5635), 9, + STATE(5666), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683999,49 +678035,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4434), 11, + ACTIONS(3191), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4436), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3193), 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, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [16376] = 13, + [20142] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684062,15 +678097,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5560), 7, - anon_sym_LBRACK, + ACTIONS(8388), 1, anon_sym_LPAREN, - sym_grit_metavariable, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5636), 9, + STATE(5667), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684080,41 +678109,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5558), 33, - anon_sym_alias, - anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_readonly, - anon_sym_async, - anon_sym_file, - anon_sym_in, - anon_sym_out, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_this, - anon_sym_scoped, - anon_sym_params, - anon_sym_var, - sym_predefined_type, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(2281), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(2283), 27, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - 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, - [16462] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [20229] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684135,15 +678170,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5556), 7, - anon_sym_LBRACK, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, anon_sym_LPAREN, + ACTIONS(8281), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5637), 9, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8390), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + STATE(5668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684153,25 +678213,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5554), 33, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_readonly, - anon_sym_async, anon_sym_file, - 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, @@ -684186,8 +678236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [16548] = 13, + [20344] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684208,15 +678257,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5540), 7, - anon_sym_LBRACK, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, anon_sym_LPAREN, + ACTIONS(8281), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5638), 9, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8392), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + STATE(5669), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684226,25 +678300,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5538), 33, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_readonly, - anon_sym_async, anon_sym_file, - 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, @@ -684259,8 +678323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [16634] = 15, + [20459] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684281,11 +678344,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7787), 1, + ACTIONS(8384), 1, anon_sym_and, - ACTIONS(7819), 1, + ACTIONS(8386), 1, anon_sym_or, - STATE(5639), 9, + STATE(5670), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684295,47 +678358,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 27, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 26, + 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, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [16724] = 14, + [20548] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684356,9 +678418,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - STATE(5640), 9, + STATE(5671), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684368,48 +678428,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7042), 11, + ACTIONS(6001), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4206), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5999), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [16812] = 22, + [20633] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684430,35 +678490,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6092), 1, - sym_attribute_target_specifier, - STATE(6798), 1, - sym__name, - STATE(7234), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1315), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(5641), 9, + STATE(5672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684468,30 +678500,48 @@ 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(3191), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3193), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [16916] = 17, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [20718] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684512,26 +678562,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(4428), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4331), 9, - 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, - sym_grit_metavariable, - STATE(5642), 9, + STATE(5673), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684541,34 +678572,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 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, + ACTIONS(5901), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5899), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, - anon_sym_from, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - 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, - [17010] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [20803] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684589,11 +678634,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7791), 1, - anon_sym_and, - ACTIONS(7793), 1, - anon_sym_or, - STATE(5643), 9, + STATE(5674), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684603,47 +678644,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(6837), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6835), 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, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [17100] = 13, + [20888] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684664,7 +678706,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5644), 9, + STATE(5675), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684674,49 +678716,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4438), 11, + ACTIONS(7016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4440), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7014), 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, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [17186] = 15, + [20973] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684737,11 +678778,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7787), 1, + ACTIONS(8394), 1, anon_sym_and, - ACTIONS(7819), 1, - anon_sym_or, - STATE(5645), 9, + STATE(5676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684751,47 +678790,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 27, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [17276] = 13, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [21060] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684812,15 +678851,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5604), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - sym_grit_metavariable, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5646), 9, + STATE(5677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684830,41 +678861,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5602), 33, - anon_sym_alias, - anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_readonly, - anon_sym_async, - anon_sym_file, - anon_sym_in, - anon_sym_out, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_this, - anon_sym_scoped, - anon_sym_params, - anon_sym_var, - sym_predefined_type, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(5997), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5995), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - 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, - [17362] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [21145] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684885,7 +678923,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5647), 9, + ACTIONS(8378), 1, + anon_sym_into, + STATE(5747), 1, + aux_sym_query_body_repeat2, + STATE(5678), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684895,48 +678937,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6009), 11, + ACTIONS(7905), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6007), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 26, 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_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [17447] = 28, + [21234] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684957,40 +678997,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7824), 1, - anon_sym_RPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5648), 9, + STATE(5679), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685000,30 +679007,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(5933), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5931), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [17562] = 14, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [21319] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685044,14 +679069,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4970), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(5649), 9, + STATE(5680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685061,42 +679079,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7075), 11, + ACTIONS(5937), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7072), 22, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5935), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [17649] = 15, + [21404] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685117,11 +679141,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7826), 1, - anon_sym_and, - ACTIONS(7828), 1, - anon_sym_or, - STATE(5650), 9, + ACTIONS(8396), 1, + anon_sym_into, + STATE(5715), 1, + aux_sym_query_body_repeat2, + STATE(5681), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685131,46 +679155,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(7905), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [17738] = 28, + [21493] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685191,40 +679215,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7830), 1, - anon_sym_RPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5651), 9, + STATE(5682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685234,30 +679225,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(5859), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5857), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [17853] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [21578] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685278,7 +679287,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5652), 9, + STATE(5683), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685288,48 +679297,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6375), 11, + ACTIONS(5759), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6373), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5757), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [17938] = 13, + [21663] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685350,7 +679359,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5653), 9, + ACTIONS(8396), 1, + anon_sym_into, + STATE(5717), 1, + aux_sym_query_body_repeat2, + STATE(5684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685360,48 +679373,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7142), 11, + ACTIONS(7909), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7140), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 26, anon_sym_LBRACK, 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, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [18023] = 13, + [21752] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685422,7 +679433,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5654), 9, + STATE(5685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685432,48 +679443,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7138), 11, + ACTIONS(3386), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7136), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3388), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [18108] = 13, + [21837] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685494,7 +679505,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5655), 9, + STATE(5686), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685504,48 +679515,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7138), 11, + ACTIONS(6883), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7136), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6881), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [18193] = 28, + [21922] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685566,40 +679577,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4222), 1, anon_sym_LBRACE, ACTIONS(4234), 1, sym_discard, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7832), 1, + ACTIONS(8398), 1, anon_sym_RPAREN, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4981), 1, + STATE(4581), 1, sym__variable_designation, - STATE(4985), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5863), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5942), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6770), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4216), 2, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - STATE(5656), 9, + STATE(5687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685609,7 +679620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -685620,91 +679631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [18308] = 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(5657), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7134), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7132), 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, - sym_op_coalescing, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [18393] = 15, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [22037] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685725,11 +679664,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7834), 1, + ACTIONS(8400), 1, anon_sym_into, - STATE(5693), 1, + STATE(5698), 1, aux_sym_query_body_repeat2, - STATE(5658), 9, + STATE(5688), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685739,46 +679678,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, + ACTIONS(7899), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 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_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [18482] = 13, + [22126] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685799,7 +679738,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5659), 9, + STATE(5689), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685809,48 +679748,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6349), 11, + ACTIONS(5941), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6347), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5939), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [18567] = 15, + [22211] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685871,11 +679810,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7834), 1, - anon_sym_into, - STATE(5696), 1, - aux_sym_query_body_repeat2, - STATE(5660), 9, + STATE(5690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685885,46 +679820,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, + ACTIONS(5841), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5839), 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, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [18656] = 13, + [22296] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685945,7 +679882,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5661), 9, + STATE(5691), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685955,48 +679892,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7130), 11, + ACTIONS(5961), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7128), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5959), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [18741] = 13, + [22381] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686017,7 +679954,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5662), 9, + STATE(5692), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686027,48 +679964,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7126), 11, + ACTIONS(5945), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7124), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5943), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [18826] = 13, + [22466] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686089,7 +680026,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5663), 9, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8402), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + STATE(5693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686099,48 +680069,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4750), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4748), 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, - sym_op_coalescing, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_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, - [18911] = 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, + [22581] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686161,7 +680113,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5664), 9, + STATE(5694), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686171,48 +680123,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7126), 11, + ACTIONS(4662), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7124), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4660), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [18996] = 13, + [22666] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686233,7 +680185,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5665), 9, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8404), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + STATE(5695), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686243,48 +680228,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7122), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7120), 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, - sym_op_coalescing, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_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, - [19081] = 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, + [22781] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686305,7 +680272,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5666), 9, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8406), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + STATE(5696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686315,48 +680315,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7114), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7112), 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, - sym_op_coalescing, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_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, - [19166] = 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, + [22896] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686377,7 +680359,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5667), 9, + STATE(5697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686387,48 +680369,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6061), 11, + ACTIONS(5863), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6059), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5861), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [19251] = 13, + [22981] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686449,7 +680431,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5668), 9, + ACTIONS(8400), 1, + anon_sym_into, + STATE(5711), 1, + aux_sym_query_body_repeat2, + STATE(5698), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686459,48 +680445,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 11, + ACTIONS(7905), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6067), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 26, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [19336] = 13, + [23070] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686521,7 +680505,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5669), 9, + STATE(5699), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686531,48 +680515,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6083), 11, + ACTIONS(5725), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6081), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5723), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [19421] = 13, + [23155] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686593,7 +680577,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5670), 9, + ACTIONS(8400), 1, + anon_sym_into, + STATE(5722), 1, + aux_sym_query_body_repeat2, + STATE(5700), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686603,48 +680591,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7102), 11, + ACTIONS(7909), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7100), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 26, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [19506] = 13, + [23244] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686665,7 +680651,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5671), 9, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8408), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + STATE(5701), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686675,48 +680694,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6100), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6098), 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, - sym_op_coalescing, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_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, - [19591] = 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, + [23359] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686737,7 +680738,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5672), 9, + STATE(5702), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686747,48 +680748,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7098), 11, + ACTIONS(5949), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7096), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5947), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [19676] = 13, + [23444] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686809,7 +680810,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5673), 9, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8410), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + STATE(5703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686819,48 +680853,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7098), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7096), 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, - sym_op_coalescing, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_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, - [19761] = 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, + [23559] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686881,7 +680897,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5674), 9, + STATE(5704), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686891,48 +680907,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6363), 11, + ACTIONS(5921), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6361), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5919), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [19846] = 13, + [23644] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686953,7 +680969,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5675), 9, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8412), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + STATE(5705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686963,48 +681012,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6265), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6263), 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, - sym_op_coalescing, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_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, - [19931] = 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, + [23759] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687025,7 +681056,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5676), 9, + STATE(5706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687035,48 +681066,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7094), 11, + ACTIONS(5510), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7092), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5508), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [20016] = 13, + [23844] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687097,7 +681128,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5677), 9, + STATE(5707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687107,48 +681138,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7090), 11, + ACTIONS(5917), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7088), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5915), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [20101] = 13, + [23929] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687169,7 +681200,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5678), 9, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8414), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + STATE(5708), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687179,48 +681243,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6219), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6217), 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, - sym_op_coalescing, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_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, - [20186] = 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, + [24044] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687241,7 +681287,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5679), 9, + STATE(5709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687251,48 +681297,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6158), 11, + ACTIONS(5981), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6156), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5979), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [20271] = 28, + [24129] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687313,40 +681359,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7836), 1, - anon_sym_RPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5680), 9, + STATE(5710), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687356,30 +681369,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(5819), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5817), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [20386] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [24214] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687400,7 +681431,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5681), 9, + ACTIONS(8416), 1, + anon_sym_into, + STATE(5711), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687410,48 +681443,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6027), 11, + aux_sym_query_body_repeat2, + ACTIONS(7913), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6025), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 26, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [20471] = 13, + [24301] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687472,7 +681504,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5682), 9, + ACTIONS(8396), 1, + anon_sym_into, + STATE(5681), 1, + aux_sym_query_body_repeat2, + STATE(5712), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687482,48 +681518,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7150), 11, + ACTIONS(7899), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7148), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 26, anon_sym_LBRACK, 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, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [20556] = 15, + [24390] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687544,11 +681578,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7838), 1, - anon_sym_into, - STATE(5779), 1, - aux_sym_query_body_repeat2, - STATE(5683), 9, + STATE(5713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687558,46 +681588,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, + ACTIONS(6829), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6827), 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_switch, - anon_sym_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [20645] = 13, + [24475] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687618,7 +681650,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5684), 9, + STATE(5714), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687628,48 +681660,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2177), 11, + ACTIONS(5793), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2175), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5791), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [20730] = 14, + [24560] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687690,14 +681722,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4970), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, + ACTIONS(8419), 1, anon_sym_into, - STATE(5685), 9, + STATE(5715), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687707,42 +681734,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7081), 11, + aux_sym_query_body_repeat2, + ACTIONS(7913), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7078), 22, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 26, anon_sym_LBRACK, + 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, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [20817] = 28, + [24647] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687763,40 +681795,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4222), 1, anon_sym_LBRACE, ACTIONS(4234), 1, sym_discard, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7840), 1, + ACTIONS(8422), 1, anon_sym_RPAREN, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4981), 1, + STATE(4581), 1, sym__variable_designation, - STATE(4985), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5863), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5942), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6770), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4216), 2, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - STATE(5686), 9, + STATE(5716), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687806,7 +681838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687829,7 +681861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [20932] = 14, + [24762] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687850,9 +681882,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7826), 1, - anon_sym_and, - STATE(5687), 9, + ACTIONS(8396), 1, + anon_sym_into, + STATE(5715), 1, + aux_sym_query_body_repeat2, + STATE(5717), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687862,47 +681896,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(7920), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 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_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [21019] = 28, + [24851] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687923,40 +681956,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4222), 1, anon_sym_LBRACE, ACTIONS(4234), 1, sym_discard, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7842), 1, + ACTIONS(8424), 1, anon_sym_RPAREN, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4981), 1, + STATE(4581), 1, sym__variable_designation, - STATE(4985), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5863), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5942), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6770), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4216), 2, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - STATE(5688), 9, + STATE(5718), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687966,7 +681999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687989,7 +682022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [21134] = 28, + [24966] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688010,40 +682043,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7844), 1, - anon_sym_RPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, + ACTIONS(8394), 1, anon_sym_and, + ACTIONS(8426), 1, anon_sym_or, - STATE(5689), 9, + STATE(5719), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688053,30 +682057,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [21249] = 28, + ACTIONS(8005), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 26, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, + [25055] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688097,40 +682117,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4222), 1, anon_sym_LBRACE, ACTIONS(4234), 1, sym_discard, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7846), 1, + ACTIONS(8428), 1, anon_sym_RPAREN, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4981), 1, + STATE(4581), 1, sym__variable_designation, - STATE(4985), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5863), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5942), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6770), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4216), 2, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - STATE(5690), 9, + STATE(5720), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688140,7 +682160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688163,7 +682183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [21364] = 13, + [25170] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688184,7 +682204,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5691), 9, + STATE(5721), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688194,48 +682214,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6096), 11, + ACTIONS(5913), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6094), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5911), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [21449] = 13, + [25255] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688256,7 +682276,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5692), 9, + ACTIONS(8400), 1, + anon_sym_into, + STATE(5711), 1, + aux_sym_query_body_repeat2, + STATE(5722), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688266,121 +682290,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6168), 11, + ACTIONS(7920), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6166), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 26, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [21534] = 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(7848), 1, - anon_sym_into, - STATE(5693), 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(7499), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 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_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [21621] = 13, + [25344] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688401,7 +682350,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5694), 9, + STATE(5723), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688411,48 +682360,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6154), 11, + ACTIONS(3195), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6152), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3197), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [21706] = 13, + [25429] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688473,7 +682422,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5695), 9, + STATE(5724), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688483,122 +682432,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6172), 11, + ACTIONS(5855), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6170), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5853), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [21791] = 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(7834), 1, - anon_sym_into, - STATE(5693), 1, - aux_sym_query_body_repeat2, - STATE(5696), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7493), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 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_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [21880] = 13, + [25514] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688619,7 +682494,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5697), 9, + STATE(5725), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688629,48 +682504,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7066), 11, + ACTIONS(5889), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7064), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5887), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [21965] = 13, + [25599] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688691,7 +682566,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5698), 9, + STATE(5726), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688701,48 +682576,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7066), 11, + ACTIONS(6841), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7064), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6839), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [22050] = 13, + [25684] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688763,7 +682638,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5699), 9, + STATE(5727), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688773,48 +682648,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6283), 11, + ACTIONS(5769), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6281), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5767), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [22135] = 28, + [25769] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688835,40 +682710,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4222), 1, anon_sym_LBRACE, ACTIONS(4234), 1, sym_discard, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7851), 1, + ACTIONS(8430), 1, anon_sym_RPAREN, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4981), 1, + STATE(4581), 1, sym__variable_designation, - STATE(4985), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5863), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5942), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6770), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4216), 2, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - STATE(5700), 9, + STATE(5728), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688878,7 +682753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688901,7 +682776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [22250] = 13, + [25884] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688922,79 +682797,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5701), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6295), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6293), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8432), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [22335] = 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(5702), 9, + STATE(5729), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689004,48 +682840,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5999), 28, - 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, - sym_op_coalescing, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_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, - [22420] = 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, + [25999] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689066,7 +682884,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5703), 9, + STATE(5730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689076,48 +682894,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6359), 11, + ACTIONS(2269), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6357), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(2267), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [22505] = 13, + [26084] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689138,7 +682956,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5704), 9, + STATE(5731), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689148,48 +682966,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7062), 11, + ACTIONS(5785), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7060), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5783), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [22590] = 13, + [26169] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689210,7 +683028,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5705), 9, + STATE(5732), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689220,48 +683038,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6315), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6313), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6023), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [22675] = 13, + [26254] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689282,7 +683100,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5706), 9, + STATE(5733), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689292,48 +683110,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6337), 11, + ACTIONS(6829), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6335), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6827), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [22760] = 28, + [26339] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689354,94 +683172,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7853), 1, - anon_sym_RPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, + ACTIONS(8374), 1, anon_sym_and, - anon_sym_or, - STATE(5707), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [22875] = 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(5708), 9, + STATE(5734), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689451,120 +683184,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7042), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4206), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 27, anon_sym_LBRACK, 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, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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_LT_EQ, + anon_sym_GT_EQ, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [22960] = 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(5709), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7058), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7056), 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_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [23045] = 13, + [26426] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689585,7 +683245,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5710), 9, + STATE(5735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689595,122 +683255,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7054), 11, + ACTIONS(6819), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7052), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6817), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [23130] = 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(7826), 1, - anon_sym_and, - ACTIONS(7828), 1, - anon_sym_or, - STATE(5711), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7027), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 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_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [23219] = 13, + [26511] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689731,7 +683317,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5712), 9, + STATE(5736), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689741,48 +683327,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7050), 11, + ACTIONS(6919), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7048), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6917), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [23304] = 28, + [26596] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689803,40 +683389,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4222), 1, anon_sym_LBRACE, ACTIONS(4234), 1, sym_discard, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7855), 1, + ACTIONS(8434), 1, anon_sym_RPAREN, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4981), 1, + STATE(4581), 1, sym__variable_designation, - STATE(4985), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5863), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5942), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6770), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4216), 2, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - STATE(5713), 9, + STATE(5737), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689846,7 +683432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689869,7 +683455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [23419] = 13, + [26711] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689890,7 +683476,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5714), 9, + STATE(5738), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689900,48 +683486,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3199), 11, + ACTIONS(5338), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3201), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5336), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [23504] = 14, + [26796] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689962,9 +683548,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7857), 1, - anon_sym_and, - STATE(5715), 9, + STATE(5739), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689974,47 +683558,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(6021), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 27, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6019), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, - [23591] = 13, + [26881] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690035,7 +683620,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5716), 9, + STATE(5740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690045,48 +683630,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3199), 11, + ACTIONS(5909), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3201), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5907), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [23676] = 28, + [26966] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690107,40 +683692,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7859), 1, - anon_sym_RPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5717), 9, + ACTIONS(8378), 1, + anon_sym_into, + STATE(5747), 1, + aux_sym_query_body_repeat2, + STATE(5741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690150,30 +683706,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - 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(7920), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 26, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [23791] = 13, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [27055] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690194,7 +683766,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5718), 9, + STATE(5742), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690204,48 +683776,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6391), 11, + ACTIONS(5830), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6389), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5828), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [23876] = 13, + [27140] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690266,7 +683838,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5719), 9, + ACTIONS(5068), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(5743), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690276,48 +683855,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3371), 11, + ACTIONS(6962), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3373), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6959), 22, 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [23961] = 23, + [27227] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690338,34 +683911,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7861), 1, - sym__identifier_token, - ACTIONS(7867), 1, - anon_sym_LPAREN, - ACTIONS(7874), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6184), 1, - sym_explicit_interface_specifier, - STATE(7981), 1, - sym__name, - ACTIONS(7871), 2, - anon_sym_operator, - anon_sym_checked, - ACTIONS(7869), 3, - anon_sym_ref, - anon_sym_delegate, - sym_predefined_type, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5720), 10, + STATE(5744), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690375,31 +683921,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_conversion_operator_declaration_repeat1, - ACTIONS(7864), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(5773), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5771), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [24066] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [27312] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690420,11 +683983,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7877), 1, - anon_sym_into, - STATE(5727), 1, - aux_sym_query_body_repeat2, - STATE(5721), 9, + STATE(5745), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690434,46 +683993,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 11, + ACTIONS(6009), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6007), 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_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [24155] = 28, + [27397] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690494,40 +684055,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7879), 1, - anon_sym_RPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5722), 9, + STATE(5746), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690537,30 +684065,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(5789), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5787), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [24270] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [27482] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690581,7 +684127,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5723), 9, + ACTIONS(8436), 1, + anon_sym_into, + STATE(5747), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690591,48 +684139,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6323), 11, + aux_sym_query_body_repeat2, + ACTIONS(7913), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6321), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 26, 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_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [24355] = 28, + [27569] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690653,40 +684200,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7881), 1, - anon_sym_RPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5724), 9, + STATE(5748), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690696,30 +684210,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(5763), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5761), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [24470] = 28, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [27654] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690740,40 +684272,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4222), 1, anon_sym_LBRACE, ACTIONS(4234), 1, sym_discard, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7883), 1, + ACTIONS(8439), 1, anon_sym_RPAREN, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4981), 1, + STATE(4581), 1, sym__variable_designation, - STATE(4985), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5863), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5942), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6770), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4216), 2, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - STATE(5725), 9, + STATE(5749), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690783,7 +684315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -690806,7 +684338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [24585] = 13, + [27769] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690827,7 +684359,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5726), 9, + STATE(5750), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690837,48 +684369,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7034), 11, + ACTIONS(5977), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7032), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5975), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [24670] = 14, + [27854] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690899,9 +684431,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7885), 1, - anon_sym_into, - STATE(5727), 10, + STATE(5751), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690911,47 +684441,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 11, + ACTIONS(6877), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6875), 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_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [24757] = 13, + [27939] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690972,7 +684503,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5728), 9, + STATE(5752), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690982,48 +684513,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6180), 11, + ACTIONS(6825), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6178), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6823), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [24842] = 13, + [28024] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691044,7 +684575,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5729), 9, + STATE(5753), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691054,48 +684585,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6176), 11, + ACTIONS(5747), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6174), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5745), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [24927] = 13, + [28109] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691116,7 +684647,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5730), 9, + STATE(5754), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691126,135 +684657,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6202), 11, + ACTIONS(6877), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6200), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6875), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [25012] = 28, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7888), 1, - anon_sym_RPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5731), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [25127] = 13, + [28194] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691275,7 +684719,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5732), 9, + STATE(5755), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691285,48 +684729,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6198), 11, + ACTIONS(5973), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6196), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5971), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [25212] = 13, + [28279] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691347,7 +684791,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5733), 9, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8441), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + STATE(5756), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691357,48 +684834,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6273), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6271), 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, - sym_op_coalescing, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_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, - [25297] = 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, + [28394] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691419,7 +684878,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5734), 9, + STATE(5757), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691429,48 +684888,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6186), 11, + ACTIONS(5781), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6184), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5779), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [25382] = 13, + [28479] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691491,7 +684950,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5735), 9, + STATE(5758), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691501,48 +684960,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4812), 11, + ACTIONS(5815), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4810), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5813), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [25467] = 13, + [28564] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691563,7 +685022,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5736), 9, + STATE(5759), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691573,48 +685032,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6269), 11, + ACTIONS(6971), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6267), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6969), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [25552] = 15, + [28649] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691635,85 +685094,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7877), 1, - anon_sym_into, - STATE(5721), 1, - aux_sym_query_body_repeat2, - STATE(5737), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7508), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 26, - anon_sym_LBRACK, - anon_sym_COLON, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, + ACTIONS(8281), 1, + sym_grit_metavariable, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6835), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [25641] = 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(7877), 1, - anon_sym_into, - STATE(5727), 1, - aux_sym_query_body_repeat2, - STATE(5738), 9, + ACTIONS(4232), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(5760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691723,46 +685136,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 26, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [25730] = 13, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [28762] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691783,7 +685180,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5739), 9, + STATE(5761), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691793,48 +685190,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6257), 11, + ACTIONS(5751), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6255), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5749), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [25815] = 16, + [28847] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691855,13 +685252,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6940), 1, - anon_sym_LT, - ACTIONS(7890), 1, - anon_sym_COLON_COLON, - STATE(4782), 1, - sym_type_argument_list, - STATE(5740), 9, + STATE(5762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691871,45 +685262,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 10, + ACTIONS(5881), 11, + anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3953), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5879), 28, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [25906] = 13, + [28932] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691930,7 +685324,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5741), 9, + STATE(5763), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691940,48 +685334,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6379), 11, + ACTIONS(6845), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6377), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6843), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [25991] = 15, + [29017] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692002,11 +685396,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7877), 1, - anon_sym_into, - STATE(5738), 1, - aux_sym_query_body_repeat2, - STATE(5742), 9, + ACTIONS(8374), 1, + anon_sym_and, + ACTIONS(8376), 1, + anon_sym_or, + STATE(5764), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692016,46 +685410,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, + ACTIONS(6887), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 26, anon_sym_LBRACK, 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, - anon_sym_LT_LT, - anon_sym_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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26080] = 15, + [29106] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692076,11 +685470,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7834), 1, - anon_sym_into, - STATE(5658), 1, - aux_sym_query_body_repeat2, - STATE(5743), 9, + STATE(5765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692090,46 +685480,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, + ACTIONS(6857), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6855), 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, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26169] = 27, + [29191] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692150,39 +685542,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4222), 1, anon_sym_LBRACE, ACTIONS(4234), 1, sym_discard, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2737), 1, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8443), 1, + anon_sym_RPAREN, + STATE(2652), 1, sym__reserved_identifier, - STATE(4981), 1, + STATE(4581), 1, sym__variable_designation, - STATE(4985), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5863), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5942), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6910), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4212), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4216), 2, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - STATE(5744), 9, + STATE(5766), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692192,7 +685585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -692215,7 +685608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [26282] = 13, + [29306] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692236,7 +685629,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5745), 9, + STATE(5767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692246,48 +685639,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6371), 11, + ACTIONS(5755), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6369), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5753), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26367] = 28, + [29391] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692308,40 +685701,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4222), 1, anon_sym_LBRACE, ACTIONS(4234), 1, sym_discard, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7892), 1, + ACTIONS(8445), 1, anon_sym_RPAREN, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4981), 1, + STATE(4581), 1, sym__variable_designation, - STATE(4985), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5863), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5942), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6770), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4216), 2, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - STATE(5746), 9, + STATE(5768), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692351,7 +685744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -692374,7 +685767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [26482] = 13, + [29506] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692395,7 +685788,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5747), 9, + STATE(5769), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692405,48 +685798,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3203), 11, + ACTIONS(5925), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3205), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5923), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26567] = 13, + [29591] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692467,7 +685860,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5748), 9, + ACTIONS(8384), 1, + anon_sym_and, + STATE(5770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692477,48 +685872,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6399), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6397), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 27, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26652] = 13, + [29678] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692539,7 +685933,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5749), 9, + STATE(5771), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692549,48 +685943,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6395), 11, + ACTIONS(5807), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6393), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5805), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26737] = 13, + [29763] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692611,7 +686005,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5750), 9, + ACTIONS(8394), 1, + anon_sym_and, + ACTIONS(8426), 1, + anon_sym_or, + STATE(5772), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692621,48 +686019,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6075), 11, + ACTIONS(6887), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6073), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 26, + anon_sym_SEMI, 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26822] = 13, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [29852] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692683,7 +686079,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5751), 9, + STATE(5773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692693,48 +686089,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6079), 11, + ACTIONS(6923), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6077), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6921), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26907] = 13, + [29937] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692755,7 +686151,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5752), 9, + STATE(5774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692765,48 +686161,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6150), 11, + ACTIONS(6005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6148), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6003), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26992] = 14, + [30022] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692827,9 +686223,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7894), 1, - anon_sym_and, - STATE(5753), 9, + STATE(5775), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692839,47 +686233,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(5905), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5903), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [27079] = 13, + [30107] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692900,7 +686295,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5754), 9, + STATE(5776), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692910,48 +686305,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5997), 11, + ACTIONS(5957), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5995), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5955), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [27164] = 28, + [30192] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692972,40 +686367,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7896), 1, - anon_sym_RPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5755), 9, + STATE(5777), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693015,30 +686377,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(5875), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5873), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [27279] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [30277] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693059,7 +686439,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5756), 9, + STATE(5778), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693069,48 +686449,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6311), 11, + ACTIONS(5777), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6309), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5775), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [27364] = 13, + [30362] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693131,7 +686511,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5757), 9, + STATE(5779), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693141,48 +686521,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6233), 11, + ACTIONS(6857), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6231), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6855), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [27449] = 13, + [30447] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693203,7 +686583,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5758), 9, + STATE(5780), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693213,48 +686593,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6194), 11, + ACTIONS(6759), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6192), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6757), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [27534] = 15, + [30532] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693275,11 +686655,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7838), 1, - anon_sym_into, - STATE(5783), 1, - aux_sym_query_body_repeat2, - STATE(5759), 9, + STATE(5781), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693289,46 +686665,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, + ACTIONS(5965), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5963), 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_switch, - anon_sym_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [27623] = 28, + [30617] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693349,127 +686727,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4222), 1, anon_sym_LBRACE, ACTIONS(4234), 1, sym_discard, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7898), 1, + ACTIONS(8447), 1, anon_sym_RPAREN, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4981), 1, + STATE(4581), 1, sym__variable_designation, - STATE(4985), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5863), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5942), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6770), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5760), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [27738] = 28, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7900), 1, - anon_sym_RPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, - sym_identifier, - STATE(7657), 1, + STATE(7966), 1, sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - STATE(5761), 9, + STATE(5782), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693479,7 +686770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -693502,7 +686793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [27853] = 28, + [30732] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693523,40 +686814,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7902), 1, - anon_sym_RPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5762), 9, + STATE(5783), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693566,117 +686824,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [27968] = 28, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(5867), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5865), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(7904), 1, - anon_sym_RPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, - STATE(5763), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [28083] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [30817] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693697,7 +686886,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5764), 9, + STATE(5784), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693707,48 +686896,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6353), 11, + ACTIONS(5969), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6351), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5967), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [28168] = 13, + [30902] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693769,7 +686958,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5765), 9, + STATE(5785), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693779,48 +686968,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6343), 11, + ACTIONS(6017), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6341), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6015), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [28253] = 13, + [30987] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693841,7 +687030,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5766), 9, + STATE(5786), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693851,48 +687040,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6138), 11, + ACTIONS(5871), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6136), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5869), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [28338] = 13, + [31072] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693913,7 +687102,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5767), 9, + STATE(5787), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693923,48 +687112,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 11, + ACTIONS(6923), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, 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, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6921), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [28423] = 13, + [31157] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693985,7 +687174,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5768), 9, + STATE(5788), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693995,48 +687184,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6367), 11, + ACTIONS(5897), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6365), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5895), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [28508] = 15, + [31242] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694057,11 +687246,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7857), 1, - anon_sym_and, - ACTIONS(7906), 1, - anon_sym_or, - STATE(5769), 9, + ACTIONS(8449), 1, + sym__identifier_token, + ACTIONS(8455), 1, + anon_sym_LPAREN, + ACTIONS(8462), 1, + sym_grit_metavariable, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6211), 1, + sym_explicit_interface_specifier, + STATE(7758), 1, + sym__name, + ACTIONS(8459), 2, + anon_sym_operator, + anon_sym_checked, + ACTIONS(8457), 3, + anon_sym_ref, + anon_sym_delegate, + sym_predefined_type, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5789), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694071,46 +687283,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 26, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - sym_op_coalescing, - 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, - [28597] = 13, + aux_sym_conversion_operator_declaration_repeat1, + ACTIONS(8452), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [31347] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694131,7 +687328,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5770), 9, + STATE(5790), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694141,48 +687338,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, + ACTIONS(6743), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4152), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [28682] = 28, + [31432] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694203,40 +687400,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4222), 1, anon_sym_LBRACE, ACTIONS(4234), 1, sym_discard, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7908), 1, + ACTIONS(8465), 1, anon_sym_RPAREN, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4981), 1, + STATE(4581), 1, sym__variable_designation, - STATE(4985), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5863), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5942), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6770), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4216), 2, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - STATE(5771), 9, + STATE(5791), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694246,7 +687443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -694269,7 +687466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [28797] = 13, + [31547] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694290,7 +687487,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5772), 9, + ACTIONS(5068), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(5792), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694300,48 +687504,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6053), 11, + ACTIONS(6956), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6051), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6953), 22, 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [28882] = 13, + [31634] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694362,7 +687560,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5773), 9, + STATE(5793), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694372,48 +687570,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6120), 11, + ACTIONS(5893), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6118), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5891), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [28967] = 13, + [31719] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694434,7 +687632,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5774), 9, + STATE(5794), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694444,48 +687642,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6239), 11, + ACTIONS(7022), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6237), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7020), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [29052] = 13, + [31804] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694506,7 +687704,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5775), 9, + STATE(5795), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694516,48 +687714,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6319), 11, + ACTIONS(7032), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6317), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7030), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [29137] = 13, + [31889] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694578,7 +687776,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5776), 9, + STATE(5796), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694588,48 +687786,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6387), 11, + ACTIONS(6029), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6385), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6027), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [29222] = 14, + [31974] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694650,9 +687848,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7910), 1, - anon_sym_LPAREN, - STATE(5777), 9, + STATE(5797), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694662,47 +687858,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2171), 11, + ACTIONS(7044), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2173), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7042), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [29309] = 13, + [32059] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694723,7 +687920,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5778), 9, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8467), 1, + anon_sym_RPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5884), 1, + sym_positional_pattern_clause, + STATE(5959), 1, + sym_property_pattern_clause, + STATE(6725), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, + anon_sym_and, + anon_sym_or, + STATE(5798), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [32174] = 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(5799), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694733,48 +688017,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6291), 11, + ACTIONS(6887), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6289), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [29394] = 15, + [32259] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694795,11 +688079,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(8378), 1, anon_sym_into, - STATE(5783), 1, + STATE(5678), 1, aux_sym_query_body_repeat2, - STATE(5779), 9, + STATE(5800), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694809,46 +688093,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 11, + ACTIONS(7899), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 26, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, anon_sym_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [29483] = 15, + [32348] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694869,11 +688153,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7894), 1, - anon_sym_and, - ACTIONS(7912), 1, - anon_sym_or, - STATE(5780), 9, + STATE(5801), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694883,46 +688163,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, + ACTIONS(5953), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5951), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [29572] = 15, + [32433] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694943,11 +688225,171 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7894), 1, - anon_sym_and, - ACTIONS(7912), 1, - anon_sym_or, - STATE(5781), 9, + ACTIONS(8469), 1, + sym__identifier_token, + ACTIONS(8473), 1, + anon_sym_LPAREN, + ACTIONS(8475), 1, + anon_sym_BANG, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, + sym_integer_literal, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, + sym__reserved_identifier, + STATE(6798), 1, + sym__preproc_expression, + ACTIONS(8477), 2, + anon_sym_true, + anon_sym_false, + STATE(6833), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5802), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(8471), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [32535] = 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(8469), 1, + sym__identifier_token, + ACTIONS(8473), 1, + anon_sym_LPAREN, + ACTIONS(8475), 1, + anon_sym_BANG, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, + sym_integer_literal, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, + sym__reserved_identifier, + STATE(6900), 1, + sym__preproc_expression, + ACTIONS(8477), 2, + anon_sym_true, + anon_sym_false, + STATE(6833), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5803), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(8471), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [32637] = 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(8485), 1, + anon_sym_into, + STATE(5820), 1, + aux_sym_query_body_repeat2, + STATE(5804), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694957,46 +688399,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(7909), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 26, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [29661] = 13, + [32725] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695017,7 +688458,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5782), 9, + ACTIONS(8485), 1, + anon_sym_into, + STATE(5809), 1, + aux_sym_query_body_repeat2, + STATE(5805), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695027,48 +688472,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6116), 11, + ACTIONS(7905), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6114), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [29746] = 14, + [32813] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695089,9 +688531,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7914), 1, + ACTIONS(8487), 1, anon_sym_into, - STATE(5783), 10, + STATE(5835), 1, + aux_sym_query_body_repeat2, + STATE(5806), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695101,47 +688545,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 11, + ACTIONS(7920), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 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_STAR, anon_sym_switch, - anon_sym_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [29833] = 13, + [32901] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695162,7 +688604,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5784), 9, + ACTIONS(8489), 1, + anon_sym_and, + STATE(5807), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695172,48 +688616,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6403), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6401), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 26, 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_when, anon_sym_DOT_DOT, - anon_sym_and, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [29918] = 15, + [32987] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695234,11 +688676,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(8487), 1, anon_sym_into, - STATE(5759), 1, + STATE(5806), 1, aux_sym_query_body_repeat2, - STATE(5785), 9, + STATE(5808), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695248,46 +688690,117 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, + ACTIONS(7909), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 25, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, 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_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [33075] = 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(8491), 1, + anon_sym_into, + STATE(5809), 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(7913), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_switch, - anon_sym_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [30007] = 28, + [33161] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695308,40 +688821,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7917), 1, - anon_sym_RPAREN, - STATE(2737), 1, + ACTIONS(8494), 1, + anon_sym_LPAREN, + ACTIONS(8496), 1, + anon_sym_BANG, + ACTIONS(8498), 1, + sym_integer_literal, + STATE(2207), 1, sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, + STATE(6906), 1, + sym__preproc_expression, + ACTIONS(123), 2, + anon_sym_true, + anon_sym_false, + STATE(6855), 6, + sym_character_literal, + sym_boolean_literal, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5786), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5810), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695351,7 +688857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -695374,7 +688880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [30122] = 13, + [33263] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695395,7 +688901,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5787), 9, + ACTIONS(8469), 1, + sym__identifier_token, + ACTIONS(8473), 1, + anon_sym_LPAREN, + ACTIONS(8475), 1, + anon_sym_BANG, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, + sym_integer_literal, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, + sym__reserved_identifier, + STATE(6837), 1, + sym__preproc_expression, + ACTIONS(8477), 2, + anon_sym_true, + anon_sym_false, + STATE(6833), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5811), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695405,48 +688937,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6251), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6249), 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, - sym_op_coalescing, + ACTIONS(8471), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_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, - [30207] = 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, + [33365] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695467,7 +688981,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5788), 9, + ACTIONS(8469), 1, + sym__identifier_token, + ACTIONS(8473), 1, + anon_sym_LPAREN, + ACTIONS(8475), 1, + anon_sym_BANG, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, + sym_integer_literal, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, + sym__reserved_identifier, + STATE(6801), 1, + sym__preproc_expression, + ACTIONS(8477), 2, + anon_sym_true, + anon_sym_false, + STATE(6833), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5812), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695477,48 +689017,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6104), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6102), 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, - sym_op_coalescing, + ACTIONS(8471), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_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, - [30292] = 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, + [33467] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695539,7 +689061,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5789), 9, + ACTIONS(8500), 1, + anon_sym_and, + STATE(5813), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695549,48 +689073,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5686), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5684), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 26, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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_LT_EQ, + anon_sym_GT_EQ, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [30377] = 28, + [33553] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695611,40 +689133,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7765), 1, + ACTIONS(8475), 1, + anon_sym_BANG, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, + sym_integer_literal, + ACTIONS(8483), 1, sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7919), 1, - anon_sym_RPAREN, - STATE(2737), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, + STATE(6780), 1, + sym__preproc_expression, + ACTIONS(8477), 2, + anon_sym_true, + anon_sym_false, + STATE(6833), 6, + sym_character_literal, + sym_boolean_literal, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5790), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5814), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695654,7 +689169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -695677,7 +689192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [30492] = 28, + [33655] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695698,40 +689213,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7765), 1, + ACTIONS(8475), 1, + anon_sym_BANG, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, + sym_integer_literal, + ACTIONS(8483), 1, sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7921), 1, - anon_sym_RPAREN, - STATE(2737), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6770), 1, + STATE(6791), 1, + sym__preproc_expression, + ACTIONS(8477), 2, + anon_sym_true, + anon_sym_false, + STATE(6833), 6, + sym_character_literal, + sym_boolean_literal, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5791), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5815), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695741,7 +689249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -695764,7 +689272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [30607] = 13, + [33757] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695785,7 +689293,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5792), 9, + ACTIONS(8487), 1, + anon_sym_into, + STATE(5835), 1, + aux_sym_query_body_repeat2, + STATE(5816), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695795,48 +689307,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6190), 11, + ACTIONS(7905), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6188), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 25, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [30692] = 15, + [33845] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695857,11 +689366,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7857), 1, - anon_sym_and, - ACTIONS(7906), 1, - anon_sym_or, - STATE(5793), 9, + ACTIONS(8469), 1, + sym__identifier_token, + ACTIONS(8473), 1, + anon_sym_LPAREN, + ACTIONS(8475), 1, + anon_sym_BANG, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, + sym_integer_literal, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, + sym__reserved_identifier, + STATE(6920), 1, + sym__preproc_expression, + ACTIONS(8477), 2, + anon_sym_true, + anon_sym_false, + STATE(6833), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5817), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695871,46 +689402,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 26, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - sym_op_coalescing, - 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, - [30781] = 13, + ACTIONS(8471), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [33947] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695931,7 +689446,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5794), 9, + ACTIONS(8469), 1, + sym__identifier_token, + ACTIONS(8473), 1, + anon_sym_LPAREN, + ACTIONS(8475), 1, + anon_sym_BANG, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, + sym_integer_literal, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, + sym__reserved_identifier, + STATE(6892), 1, + sym__preproc_expression, + ACTIONS(8477), 2, + anon_sym_true, + anon_sym_false, + STATE(6833), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5818), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695941,48 +689482,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6065), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6063), 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, - sym_op_coalescing, + ACTIONS(8471), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_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, - [30866] = 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, + [34049] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696003,7 +689526,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5795), 9, + ACTIONS(8487), 1, + anon_sym_into, + STATE(5816), 1, + aux_sym_query_body_repeat2, + STATE(5819), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696013,48 +689540,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6229), 11, + ACTIONS(7899), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6227), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 25, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [30951] = 15, + [34137] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696075,11 +689599,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7923), 1, + ACTIONS(8485), 1, anon_sym_into, - STATE(5799), 1, + STATE(5809), 1, aux_sym_query_body_repeat2, - STATE(5796), 9, + STATE(5820), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696089,45 +689613,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, + ACTIONS(7920), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [31039] = 15, + [34225] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696148,11 +689672,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7925), 1, + ACTIONS(8502), 1, anon_sym_into, - STATE(5840), 1, + STATE(5833), 1, aux_sym_query_body_repeat2, - STATE(5797), 9, + STATE(5821), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696162,45 +689686,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, + ACTIONS(7920), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 25, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 25, 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [31127] = 22, + [34313] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696221,33 +689745,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6869), 1, + STATE(6775), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5798), 9, + STATE(5822), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696257,7 +689781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696280,7 +689804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [31229] = 14, + [34415] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696301,83 +689825,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7943), 1, - anon_sym_into, - STATE(5799), 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(7499), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 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, + ACTIONS(8504), 1, anon_sym_and, + ACTIONS(8506), 1, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [31315] = 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(7923), 1, - anon_sym_into, - STATE(5799), 1, - aux_sym_query_body_repeat2, - STATE(5800), 9, + STATE(5823), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696387,45 +689839,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 11, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 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_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [31403] = 22, + [34503] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696446,33 +689898,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6862), 1, + STATE(6898), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5801), 9, + STATE(5824), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696482,7 +689934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696505,7 +689957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [31505] = 22, + [34605] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696526,33 +689978,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, - sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8508), 1, + anon_sym_DOT, + ACTIONS(4331), 7, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(7933), 1, - anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, - sym_integer_literal, - ACTIONS(7941), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, sym_grit_metavariable, - STATE(6762), 1, - sym__reserved_identifier, - STATE(6806), 1, - sym__preproc_expression, - ACTIONS(7935), 2, - anon_sym_true, - anon_sym_false, - STATE(6815), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5802), 9, + STATE(5825), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696562,7 +690006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696573,6 +690017,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, @@ -696585,7 +690032,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [31607] = 22, + sym__identifier_token, + [34699] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696606,33 +690054,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7946), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7948), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7950), 1, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, sym_integer_literal, - STATE(2206), 1, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, sym__reserved_identifier, - STATE(6819), 1, + STATE(6864), 1, sym__preproc_expression, - ACTIONS(77), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6905), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5803), 9, + STATE(5826), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696642,7 +690090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696665,7 +690113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [31709] = 22, + [34801] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696686,33 +690134,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7946), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7948), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7950), 1, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, sym_integer_literal, - STATE(2206), 1, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, sym__reserved_identifier, - STATE(6820), 1, + STATE(6870), 1, sym__preproc_expression, - ACTIONS(77), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6905), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5804), 9, + STATE(5827), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696722,7 +690170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696745,7 +690193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [31811] = 14, + [34903] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696766,9 +690214,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7952), 1, - anon_sym_and, - STATE(5805), 9, + ACTIONS(8469), 1, + sym__identifier_token, + ACTIONS(8473), 1, + anon_sym_LPAREN, + ACTIONS(8475), 1, + anon_sym_BANG, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, + sym_integer_literal, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, + sym__reserved_identifier, + STATE(6895), 1, + sym__preproc_expression, + ACTIONS(8477), 2, + anon_sym_true, + anon_sym_false, + STATE(6833), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5828), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696778,46 +690250,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 26, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, + ACTIONS(8471), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, anon_sym_when, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [31897] = 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, + [35005] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696838,33 +690294,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7946), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7948), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7950), 1, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, sym_integer_literal, - STATE(2206), 1, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, sym__reserved_identifier, - STATE(6821), 1, + STATE(6860), 1, sym__preproc_expression, - ACTIONS(77), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6905), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5806), 9, + STATE(5829), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696874,7 +690330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696897,7 +690353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [31999] = 22, + [35107] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696918,33 +690374,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6911), 1, + STATE(6872), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5807), 9, + STATE(5830), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696954,7 +690410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696977,7 +690433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [32101] = 22, + [35209] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696998,33 +690454,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8494), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8496), 1, anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8498), 1, sym_integer_literal, - ACTIONS(7941), 1, - sym_grit_metavariable, - STATE(6762), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6885), 1, + STATE(6881), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(123), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6855), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5808), 9, + STATE(5831), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697034,7 +690490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697057,7 +690513,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [32203] = 22, + [35311] = 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(8510), 1, + anon_sym_into, + STATE(5892), 1, + aux_sym_query_body_repeat2, + STATE(5832), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7899), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 25, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [35399] = 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(8512), 1, + anon_sym_into, + STATE(5833), 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(7913), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_on, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [35485] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697078,33 +690679,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6804), 1, + STATE(6825), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5809), 9, + STATE(5834), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697114,7 +690715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697137,7 +690738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [32305] = 22, + [35587] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697158,33 +690759,180 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8515), 1, + anon_sym_into, + STATE(5835), 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(7913), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [35673] = 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(8502), 1, + anon_sym_into, + STATE(5821), 1, + aux_sym_query_body_repeat2, + STATE(5836), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7909), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_on, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [35761] = 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(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7946), 1, + ACTIONS(8518), 1, anon_sym_LPAREN, - ACTIONS(7948), 1, - anon_sym_BANG, - ACTIONS(7950), 1, - sym_integer_literal, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6867), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6905), 6, - sym_character_literal, - sym_boolean_literal, + STATE(4578), 1, + sym__variable_designation, + STATE(4583), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5810), 9, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5966), 1, + sym_property_pattern_clause, + ACTIONS(4252), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(4250), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5837), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697194,7 +690942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697217,7 +690965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [32407] = 22, + [35867] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697238,33 +690986,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6808), 1, + STATE(6899), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5811), 9, + STATE(5838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697274,7 +691022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697297,7 +691045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [32509] = 15, + [35969] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697318,11 +691066,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7925), 1, + ACTIONS(8502), 1, anon_sym_into, - STATE(5882), 1, + STATE(5833), 1, aux_sym_query_body_repeat2, - STATE(5812), 9, + STATE(5839), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697332,45 +691080,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, + ACTIONS(7905), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 25, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 25, 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [32597] = 22, + [36057] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697391,33 +691139,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8494), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8496), 1, anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8498), 1, sym_integer_literal, - ACTIONS(7941), 1, - sym_grit_metavariable, - STATE(6762), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6800), 1, + STATE(6915), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(123), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6855), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5813), 9, + STATE(5840), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697427,7 +691175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697450,7 +691198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [32699] = 22, + [36159] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697471,33 +691219,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6877), 1, + STATE(6917), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5814), 9, + STATE(5841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697507,7 +691255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697530,7 +691278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [32801] = 14, + [36261] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697551,9 +691299,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7954), 1, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4232), 1, + anon_sym_EQ_GT, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8520), 1, + anon_sym_LPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5845), 1, + sym_identifier, + STATE(5967), 1, + sym_positional_pattern_clause, + STATE(6025), 1, + sym_property_pattern_clause, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 3, + anon_sym_when, anon_sym_and, - STATE(5815), 9, + anon_sym_or, + STATE(5842), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(8277), 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, + [36373] = 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(5624), 1, + anon_sym_LBRACK, + ACTIONS(6676), 1, + anon_sym_LBRACE, + ACTIONS(6679), 1, + anon_sym_QMARK, + STATE(4574), 1, + sym_initializer_expression, + STATE(5843), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697563,46 +691402,187 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(5634), 10, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 26, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5628), 24, anon_sym_LPAREN, + anon_sym_in, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [36465] = 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(8500), 1, + anon_sym_and, + ACTIONS(8522), 1, + anon_sym_or, + STATE(5844), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(8005), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + anon_sym_switch, + anon_sym_when, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, 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_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [36553] = 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(5845), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6743), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4152), 27, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_switch, + anon_sym_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [32887] = 22, + [36637] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697623,33 +691603,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, + sym__reserved_identifier, + STATE(6882), 1, + sym__preproc_expression, + ACTIONS(8477), 2, + anon_sym_true, + anon_sym_false, + STATE(6833), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5846), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(8471), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [36739] = 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(8524), 1, + anon_sym_DOT, + ACTIONS(4361), 9, + 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, sym_grit_metavariable, - STATE(6762), 1, - sym__reserved_identifier, - STATE(6879), 1, - sym__preproc_expression, - ACTIONS(7935), 2, - anon_sym_true, - anon_sym_false, - STATE(6815), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5816), 9, + STATE(5847), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697659,17 +691705,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(4359), 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, @@ -697682,7 +691733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [32989] = 14, + sym__identifier_token, + [36825] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697703,9 +691755,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7956), 1, + ACTIONS(8504), 1, anon_sym_and, - STATE(5817), 9, + STATE(5848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697715,46 +691767,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 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_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [33075] = 15, + [36911] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697775,11 +691827,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7923), 1, - anon_sym_into, - STATE(5796), 1, - aux_sym_query_body_repeat2, - STATE(5818), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8494), 1, + anon_sym_LPAREN, + ACTIONS(8496), 1, + anon_sym_BANG, + ACTIONS(8498), 1, + sym_integer_literal, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6850), 1, + sym__preproc_expression, + ACTIONS(123), 2, + anon_sym_true, + anon_sym_false, + STATE(6855), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5849), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697789,45 +691863,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [33163] = 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, + [37013] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697848,33 +691907,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8494), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8496), 1, anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8498), 1, sym_integer_literal, - ACTIONS(7941), 1, - sym_grit_metavariable, - STATE(6762), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6850), 1, + STATE(6857), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(123), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6855), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5819), 9, + STATE(5850), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697884,7 +691943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697907,7 +691966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [33265] = 14, + [37115] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697928,9 +691987,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7958), 1, - anon_sym_into, - STATE(5820), 10, + ACTIONS(8504), 1, + anon_sym_and, + ACTIONS(8506), 1, + anon_sym_or, + STATE(5851), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697940,46 +692001,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 11, + ACTIONS(6887), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 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_and, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [33351] = 15, + [37203] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698000,11 +692060,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7952), 1, - anon_sym_and, - ACTIONS(7961), 1, - anon_sym_or, - STATE(5821), 9, + ACTIONS(8502), 1, + anon_sym_into, + STATE(5839), 1, + aux_sym_query_body_repeat2, + STATE(5852), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698014,45 +692074,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(7899), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 25, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, - anon_sym_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [33439] = 22, + [37291] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698073,33 +692133,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6791), 1, + STATE(6880), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5822), 9, + STATE(5853), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698109,7 +692169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698132,7 +692192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [33541] = 22, + [37393] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698153,33 +692213,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4232), 1, + anon_sym_COLON, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, - anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, - sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6843), 1, - sym__preproc_expression, - ACTIONS(7935), 2, - anon_sym_true, - anon_sym_false, - STATE(6815), 6, - sym_character_literal, - sym_boolean_literal, + STATE(4580), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5823), 9, + STATE(4581), 1, + sym__variable_designation, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(5967), 1, + sym_positional_pattern_clause, + STATE(6025), 1, + sym_property_pattern_clause, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5854), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698189,7 +692255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8277), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698199,7 +692265,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, @@ -698212,7 +692277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [33643] = 22, + [37505] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698233,33 +692298,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, - sym__identifier_token, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7933), 1, - anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, - sym_integer_literal, - ACTIONS(7941), 1, - sym_grit_metavariable, - STATE(6762), 1, - sym__reserved_identifier, - STATE(6853), 1, - sym__preproc_expression, - ACTIONS(7935), 2, - anon_sym_true, - anon_sym_false, - STATE(6815), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5824), 9, + ACTIONS(8526), 1, + anon_sym_into, + STATE(5862), 1, + aux_sym_query_body_repeat2, + STATE(5855), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698269,30 +692312,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - 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(7920), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [33745] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [37593] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698313,33 +692371,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, - sym__identifier_token, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7933), 1, - anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, - sym_integer_literal, - ACTIONS(7941), 1, - sym_grit_metavariable, - STATE(6762), 1, - sym__reserved_identifier, - STATE(6859), 1, - sym__preproc_expression, - ACTIONS(7935), 2, - anon_sym_true, - anon_sym_false, - STATE(6815), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5825), 9, + ACTIONS(8528), 1, + anon_sym_DOT, + STATE(5856), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698349,30 +692383,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [33847] = 18, + ACTIONS(4359), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4361), 27, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [37679] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698393,25 +692443,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, + ACTIONS(4439), 1, anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, + ACTIONS(4447), 1, anon_sym_STAR, - ACTIONS(7963), 1, + ACTIONS(5832), 1, + anon_sym_QMARK, + ACTIONS(8528), 1, anon_sym_DOT, - ACTIONS(4331), 7, + ACTIONS(4329), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + STATE(5857), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4331), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - sym_grit_metavariable, - STATE(5826), 9, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [37771] = 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(8510), 1, + anon_sym_into, + STATE(5864), 1, + aux_sym_query_body_repeat2, + STATE(5858), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698421,34 +692532,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 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, - [33941] = 22, + ACTIONS(7920), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 25, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [37859] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698469,33 +692591,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6801), 1, + STATE(6816), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5827), 9, + STATE(5859), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698505,7 +692627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698528,7 +692650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [34043] = 22, + [37961] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698549,33 +692671,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8494), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8496), 1, anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8498), 1, sym_integer_literal, - ACTIONS(7941), 1, - sym_grit_metavariable, - STATE(6762), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6856), 1, + STATE(6861), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(123), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6855), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5828), 9, + STATE(5860), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698585,7 +692707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698608,7 +692730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [34145] = 22, + [38063] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698629,33 +692751,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6818), 1, + STATE(6902), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5829), 9, + STATE(5861), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698665,7 +692787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698688,7 +692810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [34247] = 22, + [38165] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698709,33 +692831,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, - sym__identifier_token, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7933), 1, - anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, - sym_integer_literal, - ACTIONS(7941), 1, - sym_grit_metavariable, - STATE(6762), 1, - sym__reserved_identifier, - STATE(6864), 1, - sym__preproc_expression, - ACTIONS(7935), 2, - anon_sym_true, - anon_sym_false, - STATE(6815), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5830), 9, + ACTIONS(8530), 1, + anon_sym_into, + STATE(5862), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698745,30 +692843,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, + aux_sym_query_body_repeat2, + ACTIONS(7913), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [34349] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [38251] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698789,33 +692903,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, - sym__identifier_token, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7933), 1, - anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, - sym_integer_literal, - ACTIONS(7941), 1, - sym_grit_metavariable, - STATE(6762), 1, - sym__reserved_identifier, - STATE(6781), 1, - sym__preproc_expression, - ACTIONS(7935), 2, - anon_sym_true, - anon_sym_false, - STATE(6815), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5831), 9, + ACTIONS(8485), 1, + anon_sym_into, + STATE(5805), 1, + aux_sym_query_body_repeat2, + STATE(5863), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698825,30 +692917,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [34451] = 15, + ACTIONS(7899), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [38339] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698869,11 +692976,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7965), 1, + ACTIONS(8533), 1, anon_sym_into, - STATE(5834), 1, - aux_sym_query_body_repeat2, - STATE(5832), 9, + STATE(5864), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698883,45 +692988,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 11, + aux_sym_query_body_repeat2, + ACTIONS(7913), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 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_and, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_on, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [34539] = 22, + [38425] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698942,33 +693048,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6811), 1, + STATE(6785), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5833), 9, + STATE(5865), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698978,7 +693084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699001,7 +693107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [34641] = 14, + [38527] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699022,9 +693128,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7967), 1, + ACTIONS(8526), 1, anon_sym_into, - STATE(5834), 10, + STATE(5855), 1, + aux_sym_query_body_repeat2, + STATE(5866), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699034,46 +693142,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 11, + ACTIONS(7909), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_on, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [34727] = 15, + [38615] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699094,11 +693201,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7965), 1, + ACTIONS(8526), 1, anon_sym_into, - STATE(5832), 1, + STATE(5862), 1, aux_sym_query_body_repeat2, - STATE(5835), 9, + STATE(5867), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699108,45 +693215,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, + ACTIONS(7905), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_on, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [34815] = 22, + [38703] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699167,117 +693274,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7946), 1, - anon_sym_LPAREN, - ACTIONS(7948), 1, - anon_sym_BANG, - ACTIONS(7950), 1, - sym_integer_literal, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6814), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6905), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5836), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(8526), 1, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [34917] = 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(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(5977), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - aux_sym_preproc_if_token1, - ACTIONS(7815), 1, - aux_sym_preproc_if_token3, - ACTIONS(7970), 1, - aux_sym_preproc_else_token1, - ACTIONS(7972), 1, - aux_sym_preproc_elif_token1, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6090), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6280), 1, - sym__attribute_list, - STATE(6918), 1, - sym_enum_member_declaration, - STATE(6954), 1, - sym_identifier, - STATE(6281), 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(5837), 9, + STATE(5867), 1, + aux_sym_query_body_repeat2, + STATE(5868), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699287,30 +693288,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, + ACTIONS(7899), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [35027] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [38791] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699331,33 +693347,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6901), 1, + STATE(6856), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5838), 9, + STATE(5869), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699367,7 +693383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699390,7 +693406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [35129] = 22, + [38893] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699411,33 +693427,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6785), 1, + STATE(6797), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5839), 9, + STATE(5870), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699447,7 +693463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699470,7 +693486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [35231] = 15, + [38995] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699491,82 +693507,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7925), 1, - anon_sym_into, - STATE(5841), 1, - aux_sym_query_body_repeat2, - STATE(5840), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7493), 11, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, anon_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(8536), 1, anon_sym_DOT, - ACTIONS(7491), 25, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, + ACTIONS(4331), 7, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [35319] = 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(7974), 1, - anon_sym_into, - STATE(5841), 10, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_grit_metavariable, + STATE(5871), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699574,48 +693533,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_nullable, sym_preproc_error, sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [35405] = 22, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4329), 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, + [39089] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699636,33 +693583,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6921), 1, + STATE(6840), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5842), 9, + STATE(5872), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699672,7 +693619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699695,80 +693642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [35507] = 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(7965), 1, - anon_sym_into, - STATE(5834), 1, - aux_sym_query_body_repeat2, - STATE(5843), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7512), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 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, - sym_op_coalescing, - anon_sym_on, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [35595] = 27, + [39191] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699789,39 +693663,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4212), 1, - anon_sym_EQ_GT, - ACTIONS(4214), 1, + ACTIONS(4222), 1, anon_sym_LBRACE, + ACTIONS(4232), 1, + anon_sym_COMMA, ACTIONS(4234), 1, sym_discard, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7977), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - STATE(2737), 1, + ACTIONS(8281), 1, + sym_grit_metavariable, + STATE(2652), 1, sym__reserved_identifier, - STATE(4981), 1, + STATE(4581), 1, sym__variable_designation, - STATE(4985), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5846), 1, - sym_identifier, - STATE(5935), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(6034), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(6758), 1, + sym_identifier, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4216), 3, - anon_sym_when, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - STATE(5844), 9, + STATE(5873), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699831,7 +693704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 21, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699841,6 +693714,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, @@ -699853,7 +693727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [35707] = 22, + [39303] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699874,33 +693748,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6852), 1, + STATE(6790), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5845), 9, + STATE(5874), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699910,7 +693784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699933,7 +693807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [35809] = 13, + [39405] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699954,7 +693828,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5846), 9, + ACTIONS(8469), 1, + sym__identifier_token, + ACTIONS(8473), 1, + anon_sym_LPAREN, + ACTIONS(8475), 1, + anon_sym_BANG, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, + sym_integer_literal, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, + sym__reserved_identifier, + STATE(6802), 1, + sym__preproc_expression, + ACTIONS(8477), 2, + anon_sym_true, + anon_sym_false, + STATE(6833), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5875), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699964,47 +693864,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7042), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4206), 27, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, + ACTIONS(8471), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, anon_sym_when, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [35893] = 15, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [39507] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700025,11 +693908,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7954), 1, - anon_sym_and, - ACTIONS(7979), 1, - anon_sym_or, - STATE(5847), 9, + ACTIONS(8469), 1, + sym__identifier_token, + ACTIONS(8473), 1, + anon_sym_LPAREN, + ACTIONS(8475), 1, + anon_sym_BANG, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, + sym_integer_literal, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, + sym__reserved_identifier, + STATE(6807), 1, + sym__preproc_expression, + ACTIONS(8477), 2, + anon_sym_true, + anon_sym_false, + STATE(6833), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5876), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700039,45 +693944,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [35981] = 14, + ACTIONS(8471), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [39609] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700098,9 +693988,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7981), 1, - anon_sym_DOT, - STATE(5848), 9, + ACTIONS(8469), 1, + sym__identifier_token, + ACTIONS(8473), 1, + anon_sym_LPAREN, + ACTIONS(8475), 1, + anon_sym_BANG, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, + sym_integer_literal, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, + sym__reserved_identifier, + STATE(6815), 1, + sym__preproc_expression, + ACTIONS(8477), 2, + anon_sym_true, + anon_sym_false, + STATE(6833), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5877), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700110,46 +694024,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4355), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4357), 27, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [36067] = 15, + ACTIONS(8471), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [39711] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700170,11 +694068,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7965), 1, - anon_sym_into, - STATE(5843), 1, - aux_sym_query_body_repeat2, - STATE(5849), 9, + ACTIONS(8489), 1, + anon_sym_and, + ACTIONS(8538), 1, + anon_sym_or, + STATE(5878), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700184,45 +694082,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 25, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, + anon_sym_when, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_on, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [36155] = 22, + [39799] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700243,33 +694141,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6871), 1, + STATE(6886), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5850), 9, + STATE(5879), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700279,7 +694177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700302,7 +694200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [36257] = 15, + [39901] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700323,11 +694221,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7983), 1, + ACTIONS(8540), 1, anon_sym_into, - STATE(5852), 1, + STATE(5881), 1, aux_sym_query_body_repeat2, - STATE(5851), 9, + STATE(5880), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700337,45 +694235,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 12, + ACTIONS(7920), 11, anon_sym_LT, anon_sym_GT, - anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [36345] = 14, + [39989] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700396,9 +694294,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7985), 1, + ACTIONS(8542), 1, anon_sym_into, - STATE(5852), 10, + STATE(5881), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700409,120 +694307,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_define, sym_preproc_undef, aux_sym_query_body_repeat2, - ACTIONS(7499), 12, + ACTIONS(7913), 11, anon_sym_LT, anon_sym_GT, - anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [36431] = 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(4405), 1, - anon_sym_LBRACK, - ACTIONS(4411), 1, - anon_sym_STAR, - ACTIONS(6091), 1, - anon_sym_QMARK, - ACTIONS(7981), 1, - anon_sym_DOT, - ACTIONS(4329), 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(5853), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4331), 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, anon_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_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [36523] = 22, + [40075] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700543,33 +694366,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6886), 1, + STATE(6847), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5854), 9, + STATE(5882), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700579,7 +694402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700602,7 +694425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [36625] = 22, + [40177] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700623,33 +694446,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7946), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7948), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7950), 1, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, sym_integer_literal, - STATE(2206), 1, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, sym__reserved_identifier, - STATE(6878), 1, + STATE(6782), 1, sym__preproc_expression, - ACTIONS(77), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6905), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5855), 9, + STATE(5883), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700659,7 +694482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700682,7 +694505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [36727] = 22, + [40279] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700703,33 +694526,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7933), 1, - anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, - sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(6762), 1, + ACTIONS(8518), 1, + anon_sym_LPAREN, + STATE(2652), 1, sym__reserved_identifier, - STATE(6790), 1, - sym__preproc_expression, - ACTIONS(7935), 2, - anon_sym_true, - anon_sym_false, - STATE(6815), 6, - sym_character_literal, - sym_boolean_literal, + STATE(4528), 1, + sym__variable_designation, + STATE(4583), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5856), 9, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(6001), 1, + sym_property_pattern_clause, + ACTIONS(4256), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(4254), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5884), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700739,7 +694564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700762,7 +694587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [36829] = 22, + [40385] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700783,33 +694608,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6792), 1, + STATE(6812), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5857), 9, + STATE(5885), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700819,7 +694644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700842,7 +694667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [36931] = 15, + [40487] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700863,11 +694688,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7983), 1, + ACTIONS(8510), 1, anon_sym_into, - STATE(5851), 1, + STATE(5858), 1, aux_sym_query_body_repeat2, - STATE(5858), 9, + STATE(5886), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700877,45 +694702,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 12, + ACTIONS(7909), 11, anon_sym_LT, anon_sym_GT, - anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 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_and, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [37019] = 17, + [40575] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700936,15 +694761,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_LBRACK, - ACTIONS(6992), 1, - anon_sym_LBRACE, - ACTIONS(6995), 1, - anon_sym_QMARK, - STATE(5055), 1, - sym_initializer_expression, - STATE(5859), 9, + ACTIONS(8469), 1, + sym__identifier_token, + ACTIONS(8473), 1, + anon_sym_LPAREN, + ACTIONS(8475), 1, + anon_sym_BANG, + ACTIONS(8479), 1, + anon_sym_SQUOTE, + ACTIONS(8481), 1, + sym_integer_literal, + ACTIONS(8483), 1, + sym_grit_metavariable, + STATE(6755), 1, + sym__reserved_identifier, + STATE(6912), 1, + sym__preproc_expression, + ACTIONS(8477), 2, + anon_sym_true, + anon_sym_false, + STATE(6833), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5887), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700954,43 +694797,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5964), 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(5958), 24, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [37111] = 22, + ACTIONS(8471), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [40677] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701011,33 +694841,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7939), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6762), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6915), 1, + STATE(6875), 1, sym__preproc_expression, - ACTIONS(7935), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6815), 6, + STATE(6833), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5860), 9, + STATE(5888), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701047,7 +694877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701070,7 +694900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [37213] = 27, + [40779] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701091,38 +694921,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4212), 1, - anon_sym_COMMA, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - sym_grit_metavariable, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5863), 1, - sym_positional_pattern_clause, - STATE(5942), 1, - sym_property_pattern_clause, - STATE(6741), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5861), 9, + ACTIONS(8540), 1, + anon_sym_into, + STATE(5880), 1, + aux_sym_query_body_repeat2, + STATE(5889), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701132,30 +694935,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, + ACTIONS(7909), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_by, - anon_sym_select, - [37325] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [40867] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701176,33 +694994,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7933), 1, - anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, - sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6762), 1, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(5692), 1, + aux_sym_preproc_if_token1, + ACTIONS(8332), 1, + aux_sym_preproc_if_token3, + ACTIONS(8545), 1, + aux_sym_preproc_else_token1, + ACTIONS(8547), 1, + aux_sym_preproc_elif_token1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6786), 1, - sym__preproc_expression, - ACTIONS(7935), 2, - anon_sym_true, - anon_sym_false, - STATE(6815), 6, - sym_character_literal, - sym_boolean_literal, + STATE(6092), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(6842), 1, + sym_enum_member_declaration, + STATE(7031), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5862), 9, + STATE(6254), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(7862), 2, + sym_preproc_else_in_enum_member_declaration, + sym_preproc_elif_in_enum_member_declaration, + STATE(5890), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701212,7 +695034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701235,7 +695057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [37427] = 24, + [40977] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701256,35 +695078,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7988), 1, + ACTIONS(8540), 1, + anon_sym_into, + STATE(5881), 1, + aux_sym_query_body_repeat2, + STATE(5891), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7905), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 25, + anon_sym_LBRACK, anon_sym_LPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4934), 1, - sym__variable_designation, - STATE(4983), 1, - sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5982), 1, - sym_property_pattern_clause, - ACTIONS(4252), 2, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, - ACTIONS(4250), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5863), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [41065] = 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(8510), 1, + anon_sym_into, + STATE(5864), 1, + aux_sym_query_body_repeat2, + STATE(5892), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701294,30 +695165,118 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(7905), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 25, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [41153] = 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(8540), 1, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, + STATE(5891), 1, + aux_sym_query_body_repeat2, + STATE(5893), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7899), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_by, - anon_sym_select, - [37533] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [41241] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701338,33 +695297,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, - sym__identifier_token, - ACTIONS(7931), 1, + ACTIONS(4086), 4, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(7933), 1, - anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, - sym_integer_literal, - ACTIONS(7941), 1, sym_grit_metavariable, - STATE(6762), 1, - sym__reserved_identifier, - STATE(6904), 1, - sym__preproc_expression, - ACTIONS(7935), 2, - anon_sym_true, - anon_sym_false, - STATE(6815), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5864), 9, + aux_sym_preproc_if_token1, + STATE(5894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701374,15 +695312,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(4084), 33, anon_sym_alias, anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, + anon_sym_async, anon_sym_file, + 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, @@ -701397,7 +695345,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [37635] = 15, + sym__identifier_token, + [41324] = 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(6953), 1, + anon_sym_COLON, + ACTIONS(5068), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5895), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5917), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5915), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [41411] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701418,11 +695439,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7990), 1, - anon_sym_into, - STATE(5820), 1, - aux_sym_query_body_repeat2, - STATE(5865), 9, + ACTIONS(8549), 1, + anon_sym_and, + ACTIONS(8551), 1, + anon_sym_or, + STATE(5896), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701432,45 +695453,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 11, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 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_and, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [37723] = 24, + [41498] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701491,35 +695511,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7988), 1, - anon_sym_LPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4968), 1, - sym__variable_designation, - STATE(4983), 1, - sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5946), 1, - sym_property_pattern_clause, - ACTIONS(4244), 2, + ACTIONS(6959), 1, + anon_sym_COLON, + ACTIONS(5068), 3, + anon_sym_when, anon_sym_and, anon_sym_or, - ACTIONS(4242), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5866), 9, + STATE(5897), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701529,30 +695527,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [37829] = 18, + ACTIONS(5841), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5839), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [41585] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701573,25 +695583,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(7992), 1, - anon_sym_DOT, - ACTIONS(4331), 7, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(5867), 9, + ACTIONS(8553), 1, + anon_sym_LPAREN, + ACTIONS(8555), 1, + anon_sym_operator, + ACTIONS(8557), 1, + anon_sym_this, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(6342), 1, + sym_explicit_interface_specifier, + STATE(6550), 1, + sym_identifier, + STATE(6890), 1, + sym_tuple_pattern, + STATE(7262), 1, + sym_variable_declarator, + STATE(7743), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5898), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701601,7 +695621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701612,9 +695632,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, @@ -701627,8 +695644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [37923] = 15, + [41692] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701649,11 +695665,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7994), 1, - anon_sym_into, - STATE(5883), 1, - aux_sym_query_body_repeat2, - STATE(5868), 9, + ACTIONS(5068), 4, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5899), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701663,45 +695680,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 11, + ACTIONS(5917), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5915), 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_and, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_by, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [38011] = 15, + [41777] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701722,11 +695736,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7990), 1, - anon_sym_into, - STATE(5865), 1, - aux_sym_query_body_repeat2, - STATE(5869), 9, + ACTIONS(8549), 1, + anon_sym_and, + STATE(5900), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701736,45 +695748,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 25, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, + anon_sym_when, anon_sym_DOT_DOT, - anon_sym_and, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [38099] = 15, + [41862] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701795,11 +695807,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7954), 1, + ACTIONS(8559), 1, anon_sym_and, - ACTIONS(7979), 1, + ACTIONS(8561), 1, anon_sym_or, - STATE(5870), 9, + STATE(5901), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701809,45 +695821,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(6887), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 25, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [38187] = 15, + [41949] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701868,11 +695879,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7983), 1, - anon_sym_into, - STATE(5852), 1, - aux_sym_query_body_repeat2, - STATE(5871), 9, + ACTIONS(8559), 1, + anon_sym_and, + STATE(5902), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701882,45 +695891,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 12, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, - anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [38275] = 15, + [42034] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701941,11 +695950,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7990), 1, - anon_sym_into, - STATE(5820), 1, - aux_sym_query_body_repeat2, - STATE(5872), 9, + ACTIONS(8563), 1, + anon_sym_and, + ACTIONS(8565), 1, + anon_sym_or, + STATE(5903), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701955,45 +695964,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 24, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [38363] = 15, + [42121] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702014,11 +696022,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7990), 1, - anon_sym_into, - STATE(5872), 1, - aux_sym_query_body_repeat2, - STATE(5873), 9, + ACTIONS(8567), 1, + anon_sym_and, + STATE(5904), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702028,45 +696034,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [38451] = 22, + [42206] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702087,33 +696093,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, - sym__identifier_token, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7933), 1, - anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, - sym_integer_literal, - ACTIONS(7941), 1, - sym_grit_metavariable, - STATE(6762), 1, - sym__reserved_identifier, - STATE(6802), 1, - sym__preproc_expression, - ACTIONS(7935), 2, - anon_sym_true, - anon_sym_false, - STATE(6815), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5874), 9, + STATE(5905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702123,7 +696103,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(3694), 11, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_grit_metavariable, + ACTIONS(3696), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702134,6 +696126,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, @@ -702146,7 +696141,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [38553] = 22, + sym__identifier_token, + [42289] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702167,33 +696163,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, - sym__identifier_token, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7933), 1, + ACTIONS(5068), 4, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5906), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5841), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, - sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(5839), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [42374] = 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(5670), 4, + anon_sym_LBRACK, + anon_sym_LPAREN, sym_grit_metavariable, - STATE(6762), 1, - sym__reserved_identifier, - STATE(6787), 1, - sym__preproc_expression, - ACTIONS(7935), 2, - anon_sym_true, - anon_sym_false, - STATE(6815), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5875), 9, + aux_sym_preproc_if_token1, + STATE(5907), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702203,15 +696249,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(5668), 33, anon_sym_alias, anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, + anon_sym_async, anon_sym_file, + 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, @@ -702226,7 +696282,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [38655] = 27, + sym__identifier_token, + [42457] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702247,39 +696304,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4212), 1, - anon_sym_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7763), 1, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8569), 1, + anon_sym_DOT, + ACTIONS(4331), 6, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(7765), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_grit_metavariable, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4978), 1, - sym_identifier, - STATE(4981), 1, - sym__variable_designation, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5935), 1, - sym_positional_pattern_clause, - STATE(6034), 1, - sym_property_pattern_clause, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4216), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5876), 9, + STATE(5908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702289,7 +696331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 21, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702299,6 +696341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_scoped, anon_sym_var, anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -702311,7 +696357,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [38767] = 15, + sym__identifier_token, + [42550] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702332,11 +696379,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7994), 1, - anon_sym_into, - STATE(5885), 1, - aux_sym_query_body_repeat2, - STATE(5877), 9, + ACTIONS(8571), 1, + anon_sym_and, + ACTIONS(8573), 1, + anon_sym_or, + STATE(5909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702346,45 +696393,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 24, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_by, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [38855] = 15, + [42637] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702405,11 +696451,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7923), 1, - anon_sym_into, - STATE(5800), 1, - aux_sym_query_body_repeat2, - STATE(5878), 9, + ACTIONS(8571), 1, + anon_sym_and, + STATE(5910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702419,45 +696463,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [38943] = 22, + [42722] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702478,33 +696522,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7933), 1, - anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, - sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6762), 1, + ACTIONS(8553), 1, + anon_sym_LPAREN, + ACTIONS(8555), 1, + anon_sym_operator, + ACTIONS(8575), 1, + anon_sym_this, + STATE(2207), 1, sym__reserved_identifier, - STATE(6835), 1, - sym__preproc_expression, - ACTIONS(7935), 2, - anon_sym_true, - anon_sym_false, - STATE(6815), 6, - sym_character_literal, - sym_boolean_literal, + STATE(2210), 1, + sym_generic_name, + STATE(6357), 1, + sym_explicit_interface_specifier, + STATE(6549), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5879), 9, + STATE(6890), 1, + sym_tuple_pattern, + STATE(7262), 1, + sym_variable_declarator, + STATE(7743), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5911), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702514,7 +696560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702537,7 +696583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [39045] = 22, + [42829] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702558,33 +696604,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7933), 1, - anon_sym_BANG, - ACTIONS(7937), 1, - anon_sym_SQUOTE, - ACTIONS(7939), 1, - sym_integer_literal, - ACTIONS(7941), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6762), 1, + ACTIONS(8553), 1, + anon_sym_LPAREN, + ACTIONS(8577), 1, + anon_sym_operator, + ACTIONS(8579), 1, + anon_sym_this, + STATE(2207), 1, sym__reserved_identifier, - STATE(6849), 1, - sym__preproc_expression, - ACTIONS(7935), 2, - anon_sym_true, - anon_sym_false, - STATE(6815), 6, - sym_character_literal, - sym_boolean_literal, + STATE(2210), 1, + sym_generic_name, + STATE(6271), 1, + sym_explicit_interface_specifier, + STATE(6548), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5880), 9, + STATE(6890), 1, + sym_tuple_pattern, + STATE(7262), 1, + sym_variable_declarator, + STATE(7743), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5912), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702594,7 +696642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702617,7 +696665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [39147] = 15, + [42936] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702638,11 +696686,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7956), 1, + ACTIONS(8563), 1, anon_sym_and, - ACTIONS(7996), 1, - anon_sym_or, - STATE(5881), 9, + STATE(5913), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702652,45 +696698,123 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 25, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [39235] = 15, + [43021] = 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(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8536), 1, + anon_sym_DOT, + ACTIONS(8584), 1, + anon_sym_LPAREN, + STATE(7482), 1, + sym_attribute_argument_list, + ACTIONS(4331), 2, + anon_sym_LBRACE, + sym_grit_metavariable, + ACTIONS(8581), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(5914), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4329), 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, + [43120] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702711,11 +696835,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7925), 1, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(8587), 1, + aux_sym_preproc_if_token3, + STATE(8052), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + ACTIONS(5204), 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + sym_grit_metavariable, + aux_sym_preproc_if_token1, + STATE(5915), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5202), 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, - STATE(5841), 1, - aux_sym_query_body_repeat2, - STATE(5882), 9, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [43211] = 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(5698), 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + sym_grit_metavariable, + aux_sym_preproc_if_token1, + STATE(5916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702725,45 +696924,186 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, + ACTIONS(5696), 33, + anon_sym_alias, + anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, + anon_sym_async, + anon_sym_file, + 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, + [43294] = 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(3910), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + sym_grit_metavariable, + ACTIONS(3694), 6, + anon_sym_LBRACK, anon_sym_LT, - anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7510), 25, - sym_interpolation_close_brace, + anon_sym_COLON_COLON, + anon_sym_STAR, + STATE(5917), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3913), 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, + [43379] = 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(4439), 1, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4447), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(6973), 1, + anon_sym_QMARK, + ACTIONS(8589), 1, + anon_sym_DOT, + ACTIONS(4329), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + STATE(5918), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4331), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_in, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [39323] = 14, + [43470] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702784,9 +697124,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, - anon_sym_into, - STATE(5883), 10, + ACTIONS(8567), 1, + anon_sym_and, + ACTIONS(8591), 1, + anon_sym_or, + STATE(5919), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702796,46 +697138,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 11, + ACTIONS(6887), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 24, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [39409] = 14, + [43557] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702856,19 +697196,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8001), 1, - anon_sym_DOT, - ACTIONS(4357), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(5204), 4, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, sym_grit_metavariable, - STATE(5884), 9, + aux_sym_preproc_if_token1, + STATE(5920), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702878,22 +697211,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4355), 28, + ACTIONS(5202), 33, anon_sym_alias, anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, + anon_sym_async, anon_sym_file, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, 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, @@ -702907,7 +697245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [39495] = 15, + [43640] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702928,11 +697266,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7994), 1, - anon_sym_into, - STATE(5883), 1, - aux_sym_query_body_repeat2, - STATE(5885), 9, + ACTIONS(8593), 1, + anon_sym_and, + ACTIONS(8595), 1, + anon_sym_or, + STATE(5921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702942,45 +697280,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 24, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_by, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [39583] = 15, + [43727] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703001,11 +697338,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7994), 1, - anon_sym_into, - STATE(5868), 1, - aux_sym_query_body_repeat2, - STATE(5886), 9, + ACTIONS(8589), 1, + anon_sym_DOT, + STATE(5922), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703015,45 +697350,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, + ACTIONS(4359), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4361), 26, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_LBRACE, + 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_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_and, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_by, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [39671] = 15, + [43812] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703074,11 +697409,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7983), 1, - anon_sym_into, - STATE(5871), 1, - aux_sym_query_body_repeat2, - STATE(5887), 9, + ACTIONS(5674), 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + sym_grit_metavariable, + aux_sym_preproc_if_token1, + STATE(5923), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703088,45 +697424,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 12, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5672), 33, + anon_sym_alias, + anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, + anon_sym_async, + anon_sym_file, 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(7514), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [39759] = 17, + 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, + [43895] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703147,21 +697479,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - ACTIONS(5472), 1, - aux_sym_preproc_if_token3, - STATE(7800), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - ACTIONS(5458), 4, + ACTIONS(4236), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + STATE(5456), 1, + sym_type_argument_list, + ACTIONS(3957), 7, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(5888), 9, + STATE(5924), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703171,22 +697503,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5456), 28, + ACTIONS(3955), 27, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, + anon_sym_COLON, 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, @@ -703200,7 +697531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [39850] = 14, + [43984] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703221,9 +697552,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8003), 1, + ACTIONS(8597), 1, anon_sym_and, - STATE(5889), 9, + ACTIONS(8599), 1, + anon_sym_or, + STATE(5925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703233,45 +697566,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(8005), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 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_when, anon_sym_DOT_DOT, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [39935] = 13, + [44071] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703292,12 +697624,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5923), 4, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(5212), 1, + aux_sym_preproc_if_token3, + STATE(7745), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + ACTIONS(5204), 4, anon_sym_LBRACK, anon_sym_LPAREN, sym_grit_metavariable, aux_sym_preproc_if_token1, - STATE(5890), 9, + STATE(5926), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703307,23 +697648,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5921), 33, + ACTIONS(5202), 28, anon_sym_alias, anon_sym_global, anon_sym_static, anon_sym_ref, anon_sym_delegate, - anon_sym_readonly, anon_sym_async, anon_sym_file, - 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, @@ -703341,7 +697677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [40018] = 13, + [44162] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703362,12 +697698,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5919), 4, - anon_sym_LBRACK, - anon_sym_LPAREN, - sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(5891), 9, + ACTIONS(8593), 1, + anon_sym_and, + ACTIONS(8595), 1, + anon_sym_or, + STATE(5927), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703377,41 +697712,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5917), 33, - anon_sym_alias, - anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_readonly, - anon_sym_async, - anon_sym_file, - anon_sym_in, - anon_sym_out, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_this, - anon_sym_scoped, - anon_sym_params, - anon_sym_var, - sym_predefined_type, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(6887), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, - 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, - [40101] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [44249] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703432,11 +697770,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8005), 1, + ACTIONS(8593), 1, anon_sym_and, - ACTIONS(8007), 1, - anon_sym_or, - STATE(5892), 9, + STATE(5928), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703446,44 +697782,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 25, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [40188] = 14, + [44334] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703504,9 +697841,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8005), 1, + ACTIONS(8567), 1, anon_sym_and, - STATE(5893), 9, + ACTIONS(8591), 1, + anon_sym_or, + STATE(5929), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703516,45 +697855,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 24, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [40273] = 14, + [44421] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703575,20 +697913,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3912), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - sym_grit_metavariable, - ACTIONS(3696), 6, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(5894), 9, + STATE(5930), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703598,7 +697923,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3915), 26, + ACTIONS(3189), 11, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_grit_metavariable, + ACTIONS(3187), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -703625,7 +697962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [40358] = 15, + [44504] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703646,11 +697983,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8009), 1, - anon_sym_and, - ACTIONS(8011), 1, - anon_sym_or, - STATE(5895), 9, + ACTIONS(8601), 1, + anon_sym_SEMI, + STATE(5931), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703660,44 +697995,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(5841), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 24, + sym_op_divide, + anon_sym_BANG, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, - anon_sym_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [40445] = 18, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [44589] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703718,24 +698054,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8013), 1, - anon_sym_DOT, - ACTIONS(4331), 6, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_grit_metavariable, - STATE(5896), 9, + ACTIONS(8559), 1, + anon_sym_and, + ACTIONS(8561), 1, + anon_sym_or, + STATE(5932), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703745,34 +698068,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 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, + ACTIONS(8005), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, - anon_sym_on, 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, - [40538] = 14, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [44676] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703793,9 +698126,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8015), 1, - anon_sym_SEMI, - STATE(5897), 9, + ACTIONS(8597), 1, + anon_sym_and, + ACTIONS(8599), 1, + anon_sym_or, + STATE(5933), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703805,45 +698140,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6138), 11, + ACTIONS(6887), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6136), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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, - [40623] = 13, + [44763] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703864,12 +698198,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5877), 4, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(5898), 9, + ACTIONS(8553), 1, + anon_sym_LPAREN, + ACTIONS(8603), 1, + anon_sym_operator, + ACTIONS(8605), 1, + anon_sym_this, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(6310), 1, + sym_explicit_interface_specifier, + STATE(6547), 1, + sym_identifier, + STATE(6890), 1, + sym_tuple_pattern, + STATE(7262), 1, + sym_variable_declarator, + STATE(7743), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5934), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703879,25 +698236,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5875), 33, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_readonly, - anon_sym_async, anon_sym_file, - 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, @@ -703912,8 +698259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [40706] = 14, + [44870] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703934,9 +698280,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8017), 1, + ACTIONS(8597), 1, anon_sym_and, - STATE(5899), 9, + STATE(5935), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703946,45 +698292,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(8041), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [40791] = 25, + [44955] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704005,35 +698351,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(1307), 1, - sym_grit_metavariable, - ACTIONS(8019), 1, + ACTIONS(5711), 4, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(8021), 1, - anon_sym_operator, - ACTIONS(8023), 1, - anon_sym_this, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(6312), 1, - sym_explicit_interface_specifier, - STATE(6555), 1, - sym_identifier, - STATE(6783), 1, - sym_tuple_pattern, - STATE(7130), 1, - sym_variable_declarator, - STATE(7826), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5900), 9, + sym_grit_metavariable, + aux_sym_preproc_if_token1, + STATE(5936), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704043,15 +698366,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5709), 33, anon_sym_alias, anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, + anon_sym_async, anon_sym_file, + 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, @@ -704066,7 +698399,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [40898] = 13, + sym__identifier_token, + [45038] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704087,7 +698421,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5901), 9, + ACTIONS(8571), 1, + anon_sym_and, + ACTIONS(8573), 1, + anon_sym_or, + STATE(5937), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704097,46 +698435,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3189), 11, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6887), 11, anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, - anon_sym_DASH_GT, - sym_grit_metavariable, - ACTIONS(3187), 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_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, - anon_sym_join, anon_sym_on, - 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, - [40981] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [45125] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704157,7 +698493,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5902), 9, + ACTIONS(8607), 1, + anon_sym_and, + STATE(5938), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704167,46 +698505,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3696), 11, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(8041), 11, anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, - anon_sym_DASH_GT, - sym_grit_metavariable, - ACTIONS(3698), 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_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, 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, - [41064] = 16, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [45209] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704227,21 +698563,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4236), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - anon_sym_LT, - STATE(5464), 1, - sym_type_argument_list, - ACTIONS(3953), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - sym_grit_metavariable, - STATE(5903), 9, + ACTIONS(8609), 1, + anon_sym_and, + ACTIONS(8611), 1, + anon_sym_or, + STATE(5939), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704251,35 +698577,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 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, - [41153] = 15, + ACTIONS(6887), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [45295] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704300,11 +698634,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8017), 1, - anon_sym_and, - ACTIONS(8025), 1, - anon_sym_or, - STATE(5904), 9, + ACTIONS(8613), 1, + anon_sym_into, + STATE(5992), 1, + aux_sym_query_body_repeat2, + STATE(5940), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704314,44 +698648,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(7899), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 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_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [41240] = 13, + [45381] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704372,12 +698705,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4086), 4, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8615), 1, + anon_sym_DOT, + ACTIONS(4331), 5, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(5905), 9, + STATE(5941), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704387,27 +698731,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4084), 33, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_readonly, - anon_sym_async, anon_sym_file, - 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, @@ -704421,7 +698758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [41323] = 25, + [45473] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704442,35 +698779,27 @@ 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(1307), 1, - sym_grit_metavariable, - ACTIONS(8019), 1, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + ACTIONS(8617), 1, + anon_sym_EQ, + STATE(5456), 1, + sym_type_argument_list, + ACTIONS(8619), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3957), 6, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(8027), 1, - anon_sym_operator, - ACTIONS(8029), 1, - anon_sym_this, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(6338), 1, - sym_explicit_interface_specifier, - STATE(6554), 1, - sym_identifier, - STATE(6783), 1, - sym_tuple_pattern, - STATE(7130), 1, - sym_variable_declarator, - STATE(7826), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5906), 9, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + sym_grit_metavariable, + STATE(5942), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704480,7 +698809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3955), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -704503,7 +698832,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [41430] = 14, + sym__identifier_token, + [45567] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704524,9 +698854,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8031), 1, - anon_sym_and, - STATE(5907), 9, + ACTIONS(8621), 1, + anon_sym_into, + STATE(5958), 1, + aux_sym_query_body_repeat2, + STATE(5943), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704536,189 +698868,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 12, + ACTIONS(7899), 12, anon_sym_LT, anon_sym_GT, anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 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_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [41515] = 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(8033), 1, - anon_sym_and, - ACTIONS(8035), 1, - anon_sym_or, - STATE(5908), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7665), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 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_LT_EQ, + anon_sym_GT_EQ, 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_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [41602] = 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(8033), 1, - anon_sym_and, - ACTIONS(8035), 1, - anon_sym_or, - STATE(5909), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7027), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 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, - sym_op_coalescing, - anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [41689] = 14, + [45653] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704739,12 +698925,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4970), 4, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5910), 9, + ACTIONS(8623), 1, + anon_sym_RPAREN, + STATE(5944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704754,42 +698937,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6403), 11, + ACTIONS(5510), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6401), 22, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5508), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [41774] = 14, + [45737] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704810,12 +698995,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4970), 4, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5911), 9, + ACTIONS(8625), 1, + anon_sym_into, + STATE(5948), 1, + aux_sym_query_body_repeat2, + STATE(5945), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704825,42 +699009,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6138), 11, + ACTIONS(7920), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6136), 22, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [41859] = 25, + [45823] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704881,35 +699066,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(8019), 1, + ACTIONS(8518), 1, anon_sym_LPAREN, - ACTIONS(8037), 1, - anon_sym_operator, - ACTIONS(8039), 1, - anon_sym_this, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(6229), 1, - sym_explicit_interface_specifier, - STATE(6556), 1, + STATE(4569), 1, + sym__variable_designation, + STATE(4583), 1, sym_identifier, - STATE(6783), 1, - sym_tuple_pattern, - STATE(7130), 1, - sym_variable_declarator, - STATE(7826), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5912), 9, + STATE(4585), 1, + sym_parenthesized_variable_designation, + ACTIONS(4252), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(4250), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704919,7 +699100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -704942,7 +699123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [41966] = 21, + [45923] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704963,27 +699144,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, + ACTIONS(4450), 1, anon_sym_DASH_GT, - ACTIONS(7721), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7963), 1, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8627), 1, anon_sym_DOT, - ACTIONS(8044), 1, + ACTIONS(4331), 5, + anon_sym_COMMA, anon_sym_LPAREN, - STATE(7379), 1, - sym_attribute_argument_list, - ACTIONS(4331), 2, + anon_sym_RPAREN, anon_sym_LBRACE, sym_grit_metavariable, - ACTIONS(8041), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5913), 9, + STATE(5947), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705020,7 +699197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [42065] = 15, + [46015] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705041,11 +699218,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8009), 1, - anon_sym_and, - ACTIONS(8011), 1, - anon_sym_or, - STATE(5914), 9, + ACTIONS(8629), 1, + anon_sym_into, + STATE(5948), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705055,44 +699230,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, + aux_sym_query_body_repeat2, + ACTIONS(7913), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, - anon_sym_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [42152] = 14, + [46099] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705113,9 +699288,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8009), 1, - anon_sym_and, - STATE(5915), 9, + ACTIONS(8625), 1, + anon_sym_into, + STATE(5945), 1, + aux_sym_query_body_repeat2, + STATE(5949), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705125,45 +699302,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(7909), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 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_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, - anon_sym_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [42237] = 13, + [46185] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705184,12 +699359,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5943), 4, - anon_sym_LBRACK, - anon_sym_LPAREN, - sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(5916), 9, + ACTIONS(8621), 1, + anon_sym_into, + STATE(5951), 1, + aux_sym_query_body_repeat2, + STATE(5950), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705199,41 +699373,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5941), 33, - anon_sym_alias, - anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_readonly, - anon_sym_async, - anon_sym_file, + ACTIONS(7920), 12, + anon_sym_LT, + anon_sym_GT, 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, - [42320] = 15, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [46271] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705254,11 +699430,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8031), 1, - anon_sym_and, - ACTIONS(8047), 1, - anon_sym_or, - STATE(5917), 9, + ACTIONS(8632), 1, + anon_sym_into, + STATE(5951), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705268,44 +699442,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 12, + aux_sym_query_body_repeat2, + ACTIONS(7913), 12, anon_sym_LT, anon_sym_GT, anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [42407] = 15, + [46355] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705326,11 +699500,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8049), 1, - anon_sym_and, - ACTIONS(8051), 1, - anon_sym_or, - STATE(5918), 9, + ACTIONS(8625), 1, + anon_sym_into, + STATE(5948), 1, + aux_sym_query_body_repeat2, + STATE(5952), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705340,44 +699514,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, + ACTIONS(7905), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [42494] = 25, + [46441] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705398,35 +699571,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(1307), 1, - sym_grit_metavariable, - ACTIONS(8019), 1, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8635), 1, + anon_sym_DOT, + ACTIONS(4331), 5, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(8037), 1, - anon_sym_operator, - ACTIONS(8053), 1, - anon_sym_this, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(6336), 1, - sym_explicit_interface_specifier, - STATE(6553), 1, - sym_identifier, - STATE(6783), 1, - sym_tuple_pattern, - STATE(7130), 1, - sym_variable_declarator, - STATE(7826), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5919), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_grit_metavariable, + STATE(5953), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705436,7 +699597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -705447,6 +699608,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, @@ -705459,7 +699623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [42601] = 15, + sym__identifier_token, + [46533] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705480,13 +699645,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7078), 1, - anon_sym_COLON, - ACTIONS(4970), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5920), 9, + ACTIONS(8637), 1, + anon_sym_RPAREN, + STATE(5954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705496,42 +699657,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6403), 11, + ACTIONS(5510), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6401), 22, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5508), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [42688] = 15, + [46617] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705552,13 +699715,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7072), 1, - anon_sym_COLON, - ACTIONS(4970), 3, - anon_sym_when, + ACTIONS(8639), 1, anon_sym_and, + ACTIONS(8641), 1, anon_sym_or, - STATE(5921), 9, + STATE(5955), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705568,42 +699729,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6138), 11, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6136), 22, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [42775] = 14, + [46703] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705624,9 +699786,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8049), 1, - anon_sym_and, - STATE(5922), 9, + ACTIONS(8621), 1, + anon_sym_into, + STATE(5950), 1, + aux_sym_query_body_repeat2, + STATE(5956), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705636,45 +699800,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(7909), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 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_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, - anon_sym_on, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [42860] = 15, + [46789] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705695,11 +699857,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8003), 1, - anon_sym_and, - ACTIONS(8055), 1, - anon_sym_or, - STATE(5923), 9, + ACTIONS(8643), 1, + anon_sym_into, + STATE(5963), 1, + aux_sym_query_body_repeat2, + STATE(5957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705709,44 +699871,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(7905), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 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_STAR, anon_sym_switch, - anon_sym_when, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [42947] = 15, + [46875] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705767,11 +699928,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8031), 1, - anon_sym_and, - ACTIONS(8047), 1, - anon_sym_or, - STATE(5924), 9, + ACTIONS(8621), 1, + anon_sym_into, + STATE(5951), 1, + aux_sym_query_body_repeat2, + STATE(5958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705781,116 +699942,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 12, + ACTIONS(7905), 12, anon_sym_LT, anon_sym_GT, anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 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, - sym_op_coalescing, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [43034] = 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(8049), 1, - anon_sym_and, - ACTIONS(8051), 1, - anon_sym_or, - STATE(5925), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7665), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 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_LT_EQ, + anon_sym_GT_EQ, anon_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_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, - anon_sym_on, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [43121] = 17, + [46961] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705911,86 +699999,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8057), 1, - aux_sym_preproc_if_token3, - STATE(7842), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - ACTIONS(5458), 4, - anon_sym_LBRACK, - anon_sym_LPAREN, - sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(5926), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5456), 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, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, sym__identifier_token, - [43212] = 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(5458), 4, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8281), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(5927), 9, + ACTIONS(8518), 1, + anon_sym_LPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4529), 1, + sym__variable_designation, + STATE(4583), 1, + sym_identifier, + STATE(4585), 1, + sym_parenthesized_variable_designation, + ACTIONS(4256), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(4254), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706000,25 +700033,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5456), 33, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_readonly, - anon_sym_async, anon_sym_file, - 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, @@ -706033,8 +700056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [43295] = 14, + [47061] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706055,9 +700077,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8059), 1, - anon_sym_DOT, - STATE(5928), 9, + ACTIONS(8645), 1, + anon_sym_SEMI, + STATE(5960), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706067,45 +700089,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4355), 10, + ACTIONS(5841), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4357), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5839), 24, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [43380] = 17, + [47145] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706126,25 +700147,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4411), 1, - anon_sym_STAR, - ACTIONS(7029), 1, - anon_sym_QMARK, - ACTIONS(8059), 1, - anon_sym_DOT, - ACTIONS(4329), 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(5929), 9, + ACTIONS(8643), 1, + anon_sym_into, + STATE(5964), 1, + aux_sym_query_body_repeat2, + STATE(5961), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706154,32 +700161,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4331), 24, + ACTIONS(7909), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 23, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [43471] = 14, + [47231] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706200,9 +700218,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8033), 1, + ACTIONS(8639), 1, anon_sym_and, - STATE(5930), 9, + ACTIONS(8641), 1, + anon_sym_or, + STATE(5962), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706212,45 +700232,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(6887), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 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_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [43556] = 15, + [47317] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706271,11 +700289,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8005), 1, - anon_sym_and, - ACTIONS(8007), 1, - anon_sym_or, - STATE(5931), 9, + ACTIONS(8647), 1, + anon_sym_into, + STATE(5963), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706285,44 +700301,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + aux_sym_query_body_repeat2, + ACTIONS(7913), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 23, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_into, - anon_sym_by, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [43643] = 15, + [47401] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706343,11 +700359,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8061), 1, + ACTIONS(8643), 1, anon_sym_into, - STATE(5969), 1, + STATE(5963), 1, aux_sym_query_body_repeat2, - STATE(5932), 9, + STATE(5964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706357,43 +700373,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, + ACTIONS(7920), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 23, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_by, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [43729] = 14, + [47487] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706414,9 +700430,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8063), 1, + ACTIONS(8650), 1, anon_sym_and, - STATE(5933), 9, + STATE(5965), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706426,44 +700442,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [43813] = 14, + [47571] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706484,9 +700500,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8065), 1, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8518), 1, + anon_sym_LPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4532), 1, + sym__variable_designation, + STATE(4583), 1, + sym_identifier, + STATE(4585), 1, + sym_parenthesized_variable_designation, + ACTIONS(4308), 2, anon_sym_and, - STATE(5934), 9, + anon_sym_or, + ACTIONS(4306), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706496,44 +700534,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_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, - [43897] = 24, + anon_sym_select, + [47671] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706554,34 +700578,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4222), 1, anon_sym_LBRACE, ACTIONS(4234), 1, sym_discard, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7988), 1, + ACTIONS(8518), 1, anon_sym_LPAREN, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4934), 1, + STATE(4528), 1, sym__variable_designation, - STATE(4983), 1, + STATE(4583), 1, sym_identifier, - STATE(4985), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(6022), 1, + STATE(6026), 1, sym_property_pattern_clause, - ACTIONS(4250), 2, + ACTIONS(4254), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(4252), 3, + ACTIONS(4256), 3, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(5935), 9, + STATE(5967), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706591,7 +700615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 21, + ACTIONS(8277), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -706613,7 +700637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [44001] = 15, + [47775] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706634,11 +700658,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8067), 1, - anon_sym_and, - ACTIONS(8069), 1, - anon_sym_or, - STATE(5936), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(8652), 1, + anon_sym_COMMA, + ACTIONS(8654), 1, + anon_sym_RBRACE, + ACTIONS(8656), 1, + aux_sym_preproc_if_token1, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6082), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(7357), 1, + sym_identifier, + STATE(6254), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(7360), 2, + sym_enum_member_declaration, + sym_preproc_if_in_enum_member_declaration, + STATE(5968), 9, + sym_preproc_region, + sym_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, + [47879] = 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(8658), 1, + anon_sym_into, + STATE(5979), 1, + aux_sym_query_body_repeat2, + STATE(5969), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706648,43 +700752,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(7899), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 23, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_in, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [44087] = 15, + [47965] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706705,11 +700809,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8071), 1, - anon_sym_into, - STATE(5938), 1, - aux_sym_query_body_repeat2, - STATE(5937), 9, + ACTIONS(8660), 1, + anon_sym_RPAREN, + STATE(5970), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706719,43 +700821,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 11, + ACTIONS(5510), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5508), 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_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [44173] = 14, + [48049] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706776,9 +700879,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8073), 1, - anon_sym_into, - STATE(5938), 10, + ACTIONS(8662), 1, + anon_sym_and, + ACTIONS(8664), 1, + anon_sym_or, + STATE(5971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706788,44 +700893,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 11, + ACTIONS(6887), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [44257] = 18, + [48135] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706844,62 +700948,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_define_token1, ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8076), 1, - anon_sym_DOT, - ACTIONS(4331), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_grit_metavariable, - STATE(5939), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4329), 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, - [44349] = 15, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8666), 1, + anon_sym_and, + ACTIONS(8668), 1, + anon_sym_or, + STATE(5972), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(8005), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 23, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [48221] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706920,11 +701021,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8078), 1, - anon_sym_into, - STATE(5965), 1, - aux_sym_query_body_repeat2, - STATE(5940), 9, + ACTIONS(8609), 1, + anon_sym_and, + STATE(5973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706934,43 +701033,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 24, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [44435] = 15, + [48305] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706991,11 +701091,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8078), 1, - anon_sym_into, - STATE(5965), 1, - aux_sym_query_body_repeat2, - STATE(5941), 9, + ACTIONS(8639), 1, + anon_sym_and, + STATE(5974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707005,43 +701103,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [44521] = 22, + [48389] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707062,31 +701161,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7988), 1, - anon_sym_LPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4935), 1, - sym__variable_designation, - STATE(4983), 1, - sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - ACTIONS(4252), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(4250), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5942), 9, + ACTIONS(8658), 1, + anon_sym_into, + STATE(5976), 1, + aux_sym_query_body_repeat2, + STATE(5975), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707096,30 +701175,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - 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(7920), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [44621] = 14, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [48475] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707140,9 +701232,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8080), 1, - anon_sym_and, - STATE(5943), 9, + ACTIONS(8670), 1, + anon_sym_into, + STATE(5976), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707152,44 +701244,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + aux_sym_query_body_repeat2, + ACTIONS(7913), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 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_or, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [44705] = 15, + [48559] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707210,11 +701302,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8082), 1, - anon_sym_into, - STATE(5951), 1, - aux_sym_query_body_repeat2, - STATE(5944), 9, + ACTIONS(8607), 1, + anon_sym_and, + ACTIONS(8673), 1, + anon_sym_or, + STATE(5977), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707224,43 +701316,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 12, + ACTIONS(6887), 11, anon_sym_LT, anon_sym_GT, - anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 22, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 23, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + 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_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [44791] = 15, + [48645] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707281,11 +701373,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8078), 1, + ACTIONS(8658), 1, anon_sym_into, - STATE(5940), 1, + STATE(5975), 1, aux_sym_query_body_repeat2, - STATE(5945), 9, + STATE(5978), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707295,43 +701387,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, + ACTIONS(7909), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [44877] = 22, + [48731] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707352,31 +701444,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7988), 1, - anon_sym_LPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4983), 1, - sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5041), 1, - sym__variable_designation, - ACTIONS(4308), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(4306), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5946), 9, + ACTIONS(8658), 1, + anon_sym_into, + STATE(5976), 1, + aux_sym_query_body_repeat2, + STATE(5979), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707386,30 +701458,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - 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(7905), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [44977] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [48817] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707430,11 +701515,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8063), 1, + ACTIONS(8609), 1, anon_sym_and, - ACTIONS(8084), 1, + ACTIONS(8611), 1, anon_sym_or, - STATE(5947), 9, + STATE(5980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707444,43 +701529,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 23, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_on, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [45063] = 15, + [48903] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707501,11 +701586,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8071), 1, + ACTIONS(8625), 1, anon_sym_into, - STATE(5938), 1, + STATE(5952), 1, aux_sym_query_body_repeat2, - STATE(5948), 9, + STATE(5981), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707515,43 +701600,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, + ACTIONS(7899), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [45149] = 18, + [48989] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707572,23 +701657,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8086), 1, - anon_sym_DOT, - ACTIONS(4331), 5, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - sym_grit_metavariable, - STATE(5949), 9, + ACTIONS(8613), 1, + anon_sym_into, + STATE(5985), 1, + aux_sym_query_body_repeat2, + STATE(5982), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707598,34 +701671,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 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, + ACTIONS(7920), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_by, - anon_sym_select, - sym__identifier_token, - [45241] = 14, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [49075] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707646,9 +701728,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8067), 1, + ACTIONS(8662), 1, anon_sym_and, - STATE(5950), 9, + STATE(5983), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707658,44 +701740,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 24, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_in, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [45325] = 14, + [49159] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707716,9 +701798,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8088), 1, - anon_sym_into, - STATE(5951), 10, + ACTIONS(8607), 1, + anon_sym_and, + ACTIONS(8673), 1, + anon_sym_or, + STATE(5984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707728,44 +701812,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 12, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, - anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 22, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 23, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + 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_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [45409] = 15, + [49245] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707786,11 +701869,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8082), 1, + ACTIONS(8675), 1, anon_sym_into, - STATE(5944), 1, - aux_sym_query_body_repeat2, - STATE(5952), 9, + STATE(5985), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707800,43 +701881,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 12, + aux_sym_query_body_repeat2, + ACTIONS(7913), 11, anon_sym_LT, anon_sym_GT, - anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 22, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [45495] = 15, + [49329] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707857,11 +701939,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8071), 1, + ACTIONS(8643), 1, anon_sym_into, - STATE(5948), 1, + STATE(5957), 1, aux_sym_query_body_repeat2, - STATE(5953), 9, + STATE(5986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707871,43 +701953,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, + ACTIONS(7899), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 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_STAR, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [45581] = 18, + [49415] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707928,23 +702010,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8091), 1, - anon_sym_DOT, - ACTIONS(4331), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_grit_metavariable, - STATE(5954), 9, + ACTIONS(8650), 1, + anon_sym_and, + ACTIONS(8678), 1, + anon_sym_or, + STATE(5987), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707954,34 +702024,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 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, + ACTIONS(8005), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_on, - 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, - [45673] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [49501] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708002,11 +702081,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8067), 1, + ACTIONS(8666), 1, anon_sym_and, - ACTIONS(8069), 1, - anon_sym_or, - STATE(5955), 9, + STATE(5988), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708016,43 +702093,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, + ACTIONS(8041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 24, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_in, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_or, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [45759] = 24, + [49585] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708073,33 +702151,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(5977), 1, - anon_sym_LBRACK, - ACTIONS(8093), 1, - anon_sym_COMMA, - ACTIONS(8095), 1, - anon_sym_RBRACE, - ACTIONS(8097), 1, - aux_sym_preproc_if_token1, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6086), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6280), 1, - sym__attribute_list, - STATE(7088), 1, + STATE(7014), 1, sym_identifier, - STATE(6281), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7068), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(5956), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4282), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + sym_grit_metavariable, + STATE(5989), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708109,7 +702176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4280), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -708120,6 +702187,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, @@ -708132,7 +702202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [45863] = 19, + sym__identifier_token, + [49675] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708153,27 +702224,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(3964), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - anon_sym_LT, - ACTIONS(8099), 1, - anon_sym_EQ, - STATE(5464), 1, - sym_type_argument_list, - ACTIONS(8101), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3953), 6, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - sym_grit_metavariable, - STATE(5957), 9, + ACTIONS(8613), 1, + anon_sym_into, + STATE(5982), 1, + aux_sym_query_body_repeat2, + STATE(5990), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708183,31 +702238,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 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, + ACTIONS(7909), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_by, - anon_sym_select, - sym__identifier_token, - [45957] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [49761] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708228,11 +702295,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8065), 1, - anon_sym_and, - ACTIONS(8103), 1, - anon_sym_or, - STATE(5958), 9, + ACTIONS(8680), 1, + anon_sym_RPAREN, + STATE(5991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708242,43 +702307,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, + ACTIONS(5510), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5508), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_by, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [46043] = 15, + [49845] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708299,11 +702365,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8082), 1, + ACTIONS(8613), 1, anon_sym_into, - STATE(5951), 1, + STATE(5985), 1, aux_sym_query_body_repeat2, - STATE(5959), 9, + STATE(5992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708313,43 +702379,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 12, + ACTIONS(7905), 11, anon_sym_LT, anon_sym_GT, - anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 22, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [46129] = 14, + [49931] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708370,9 +702436,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8105), 1, - anon_sym_RPAREN, - STATE(5960), 9, + ACTIONS(8662), 1, + anon_sym_and, + ACTIONS(8664), 1, + anon_sym_or, + STATE(5993), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708382,44 +702450,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5686), 11, + ACTIONS(8005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5684), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 23, 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [46213] = 14, + [50017] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708440,9 +702507,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8107), 1, - anon_sym_RPAREN, - STATE(5961), 9, + ACTIONS(8666), 1, + anon_sym_and, + ACTIONS(8668), 1, + anon_sym_or, + STATE(5994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708452,44 +702521,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5686), 11, + ACTIONS(6887), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5684), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 23, 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [46297] = 18, + [50103] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708510,23 +702578,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8109), 1, - anon_sym_DOT, - ACTIONS(4331), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - sym_grit_metavariable, - STATE(5962), 9, + ACTIONS(8650), 1, + anon_sym_and, + ACTIONS(8678), 1, + anon_sym_or, + STATE(5995), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708536,34 +702592,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 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, + ACTIONS(6887), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_on, - 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, - [46389] = 17, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [50189] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708584,22 +702649,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6945), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - ACTIONS(4262), 6, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8682), 1, + anon_sym_DOT, + ACTIONS(4331), 5, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, sym_grit_metavariable, - STATE(5963), 9, + STATE(5996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708609,7 +702675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4260), 26, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -708636,7 +702702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [46479] = 15, + [50281] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708657,11 +702723,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8061), 1, - anon_sym_into, - STATE(5980), 1, - aux_sym_query_body_repeat2, - STATE(5964), 9, + ACTIONS(8684), 1, + anon_sym_RPAREN, + STATE(5997), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708671,43 +702735,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, + ACTIONS(5510), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5508), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_by, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [46565] = 14, + [50365] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708728,9 +702793,23 @@ 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(5965), 10, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8686), 1, + anon_sym_DOT, + ACTIONS(4331), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_grit_metavariable, + STATE(5998), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708740,44 +702819,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 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, - sym_op_coalescing, - anon_sym_equals, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [46649] = 15, + ACTIONS(4329), 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, + [50457] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708798,11 +702867,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8080), 1, - anon_sym_and, - ACTIONS(8114), 1, - anon_sym_or, - STATE(5966), 9, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8688), 1, + anon_sym_DOT, + ACTIONS(4331), 5, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + sym_grit_metavariable, + STATE(5999), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708812,43 +702893,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [46735] = 15, + ACTIONS(4329), 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, + [50549] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708869,11 +702941,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8116), 1, - anon_sym_into, - STATE(5995), 1, - aux_sym_query_body_repeat2, - STATE(5967), 9, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8518), 1, + anon_sym_LPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4578), 1, + sym__variable_designation, + STATE(4583), 1, + sym_identifier, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(6038), 1, + sym_property_pattern_clause, + ACTIONS(4250), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(4252), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(6000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708883,43 +702978,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 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, - sym_op_coalescing, + ACTIONS(8277), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [46821] = 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, + [50653] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708940,11 +703021,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8080), 1, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8518), 1, + anon_sym_LPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4583), 1, + sym_identifier, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(4630), 1, + sym__variable_designation, + ACTIONS(4304), 2, anon_sym_and, - ACTIONS(8114), 1, anon_sym_or, - STATE(5968), 9, + ACTIONS(4302), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(6001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708954,43 +703055,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [46907] = 15, + ACTIONS(8277), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [50753] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709011,11 +703099,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8061), 1, - anon_sym_into, - STATE(5979), 1, - aux_sym_query_body_repeat2, - STATE(5969), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8553), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(6405), 1, + sym_explicit_interface_specifier, + STATE(6572), 1, + sym_identifier, + STATE(6890), 1, + sym_tuple_pattern, + STATE(7262), 1, + sym_variable_declarator, + STATE(7743), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709025,43 +703133,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 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, - sym_op_coalescing, + 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [46993] = 15, + anon_sym_select, + [50854] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709082,11 +703177,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8071), 1, - anon_sym_into, - STATE(5937), 1, - aux_sym_query_body_repeat2, - STATE(5970), 9, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + ACTIONS(8690), 1, + anon_sym_LPAREN, + STATE(5456), 1, + sym_type_argument_list, + STATE(6869), 1, + sym_parameter_list, + ACTIONS(3957), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + sym_grit_metavariable, + STATE(6003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709096,43 +703203,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [47079] = 15, + ACTIONS(3955), 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, + [50945] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709153,11 +703250,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8063), 1, - anon_sym_and, - ACTIONS(8084), 1, - anon_sym_or, - STATE(5971), 9, + ACTIONS(3193), 2, + anon_sym_while, + anon_sym_else, + STATE(6004), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709167,43 +703263,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, + ACTIONS(3195), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(3197), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, sym_op_coalescing, - anon_sym_on, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [47165] = 15, + [51028] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709224,11 +703319,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8118), 1, - anon_sym_and, - ACTIONS(8120), 1, - anon_sym_or, - STATE(5972), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8553), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(6400), 1, + sym_explicit_interface_specifier, + STATE(6581), 1, + sym_identifier, + STATE(6890), 1, + sym_tuple_pattern, + STATE(7262), 1, + sym_variable_declarator, + STATE(7743), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6005), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709238,43 +703353,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [47251] = 14, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [51129] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709295,9 +703397,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8122), 1, - anon_sym_RPAREN, - STATE(5973), 9, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + ACTIONS(8690), 1, + anon_sym_LPAREN, + STATE(5456), 1, + sym_type_argument_list, + STATE(6838), 1, + sym_parameter_list, + ACTIONS(3957), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + sym_grit_metavariable, + STATE(6006), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709307,44 +703423,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5686), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5684), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [47335] = 14, + ACTIONS(3955), 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, + [51220] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709365,9 +703470,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8124), 1, - anon_sym_RPAREN, - STATE(5974), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8553), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(6375), 1, + sym_explicit_interface_specifier, + STATE(6579), 1, + sym_identifier, + STATE(6890), 1, + sym_tuple_pattern, + STATE(7262), 1, + sym_variable_declarator, + STATE(7743), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6007), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709377,44 +703504,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5686), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5684), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [47419] = 14, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [51321] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709435,9 +703548,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8118), 1, - anon_sym_and, - STATE(5975), 9, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + ACTIONS(8693), 1, + anon_sym_EQ, + ACTIONS(8695), 1, + anon_sym_COMMA, + ACTIONS(8698), 1, + anon_sym_RPAREN, + STATE(5456), 1, + sym_type_argument_list, + STATE(7282), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3957), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + sym_grit_metavariable, + STATE(6008), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709447,44 +703578,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 24, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [47503] = 22, + ACTIONS(3955), 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, + [51416] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709505,31 +703623,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7988), 1, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8701), 1, + anon_sym_DOT, + ACTIONS(4331), 4, + anon_sym_COLON, anon_sym_LPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4967), 1, - sym__variable_designation, - STATE(4983), 1, - sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - ACTIONS(4244), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(4242), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5976), 9, + anon_sym_LBRACE, + sym_grit_metavariable, + STATE(6009), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709539,7 +703648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709550,6 +703659,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, @@ -709562,7 +703674,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [47603] = 15, + sym__identifier_token, + [51507] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709583,11 +703696,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8116), 1, - anon_sym_into, - STATE(5995), 1, - aux_sym_query_body_repeat2, - STATE(5977), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(4709), 1, + aux_sym_conversion_operator_declaration_repeat1, + STATE(5576), 1, + sym_identifier, + STATE(6211), 1, + sym_explicit_interface_specifier, + STATE(7758), 1, + sym__name, + ACTIONS(7076), 2, + anon_sym_operator, + anon_sym_checked, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6010), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709597,43 +703729,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7512), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7510), 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, - sym_op_coalescing, + 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_DASH_GT, - anon_sym_with, - [47689] = 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, + [51606] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709654,11 +703773,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8118), 1, - anon_sym_and, - ACTIONS(8120), 1, - anon_sym_or, - STATE(5978), 9, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + ACTIONS(8690), 1, + anon_sym_LPAREN, + STATE(5456), 1, + sym_type_argument_list, + STATE(6776), 1, + sym_parameter_list, + ACTIONS(3957), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + sym_grit_metavariable, + STATE(6011), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709668,43 +703799,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [47775] = 14, + ACTIONS(3955), 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, + [51697] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709725,9 +703846,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8126), 1, - anon_sym_into, - STATE(5979), 10, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + ACTIONS(8690), 1, + anon_sym_LPAREN, + STATE(5456), 1, + sym_type_argument_list, + STATE(6884), 1, + sym_parameter_list, + ACTIONS(3957), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + sym_grit_metavariable, + STATE(6012), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709737,44 +703872,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 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, - sym_op_coalescing, + ACTIONS(3955), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [47859] = 15, + anon_sym_select, + sym__identifier_token, + [51788] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709795,11 +703919,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8061), 1, - anon_sym_into, - STATE(5979), 1, - aux_sym_query_body_repeat2, - STATE(5980), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8553), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(6407), 1, + sym_explicit_interface_specifier, + STATE(6574), 1, + sym_identifier, + STATE(6890), 1, + sym_tuple_pattern, + STATE(7262), 1, + sym_variable_declarator, + STATE(7743), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709809,43 +703953,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7493), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7491), 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, - sym_op_coalescing, + 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [47945] = 15, + anon_sym_select, + [51889] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709866,11 +703997,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8065), 1, - anon_sym_and, - ACTIONS(8103), 1, - anon_sym_or, - STATE(5981), 9, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + ACTIONS(8693), 1, + anon_sym_EQ, + STATE(5456), 1, + sym_type_argument_list, + ACTIONS(8703), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + ACTIONS(3957), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + sym_grit_metavariable, + STATE(6014), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709880,43 +704025,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 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, - sym_op_coalescing, + ACTIONS(3955), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [48031] = 22, + anon_sym_select, + sym__identifier_token, + [51980] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709937,31 +704070,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7765), 1, - sym_grit_metavariable, - ACTIONS(7988), 1, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8705), 1, + anon_sym_DOT, + ACTIONS(4331), 4, anon_sym_LPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4983), 1, - sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5009), 1, - sym__variable_designation, - ACTIONS(4304), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(4302), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5982), 9, + anon_sym_LBRACE, + anon_sym_EQ_GT, + sym_grit_metavariable, + STATE(6015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709971,7 +704095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709982,6 +704106,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, @@ -709994,7 +704121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [48131] = 24, + sym__identifier_token, + [52071] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710015,34 +704143,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8707), 1, + anon_sym_DOT, + ACTIONS(4331), 4, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7765), 1, sym_grit_metavariable, - ACTIONS(7988), 1, - anon_sym_LPAREN, - STATE(2737), 1, - sym__reserved_identifier, - STATE(4968), 1, - sym__variable_designation, - STATE(4983), 1, - sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(6026), 1, - sym_property_pattern_clause, - ACTIONS(4242), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(4244), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5983), 9, + STATE(6016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710052,7 +704168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 21, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710062,6 +704178,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_scoped, anon_sym_var, anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -710074,7 +704194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [48235] = 15, + sym__identifier_token, + [52162] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710095,11 +704216,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8078), 1, - anon_sym_into, - STATE(5941), 1, - aux_sym_query_body_repeat2, - STATE(5984), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(8656), 1, + aux_sym_preproc_if_token1, + ACTIONS(8709), 1, + anon_sym_RBRACE, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6082), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(7357), 1, + sym_identifier, + STATE(6254), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(7415), 2, + sym_enum_member_declaration, + sym_preproc_if_in_enum_member_declaration, + STATE(6017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710109,43 +704250,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 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, - sym_op_coalescing, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, anon_sym_equals, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [48321] = 15, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [52263] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710166,11 +704294,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8129), 1, - anon_sym_and, - ACTIONS(8131), 1, - anon_sym_or, - STATE(5985), 9, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + ACTIONS(8711), 1, + anon_sym_EQ, + STATE(5456), 1, + sym_type_argument_list, + ACTIONS(8619), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + ACTIONS(3957), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + sym_grit_metavariable, + STATE(6018), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710180,43 +704322,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7665), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7663), 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, - sym_op_coalescing, + ACTIONS(3955), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [48407] = 15, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [52354] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710237,11 +704367,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8116), 1, - anon_sym_into, - STATE(5967), 1, - aux_sym_query_body_repeat2, - STATE(5986), 9, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8713), 1, + anon_sym_DOT, + ACTIONS(4331), 4, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + sym_grit_metavariable, + STATE(6019), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710251,43 +704392,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7508), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7506), 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, - sym_op_coalescing, + ACTIONS(4329), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [48493] = 14, + 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, + [52445] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710308,9 +704440,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8129), 1, - anon_sym_and, - STATE(5987), 9, + ACTIONS(3207), 1, + sym__identifier_token, + ACTIONS(4080), 1, + sym_grit_metavariable, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(5692), 1, + aux_sym_preproc_if_token1, + STATE(5149), 1, + sym__reserved_identifier, + STATE(6049), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(7047), 1, + sym_type_parameter, + STATE(7382), 1, + sym_identifier, + ACTIONS(5686), 2, + anon_sym_in, + anon_sym_out, + STATE(6254), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(6020), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710320,44 +704474,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7637), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7635), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, + ACTIONS(3211), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, anon_sym_equals, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [48577] = 15, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [52546] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710378,11 +704518,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8116), 1, - anon_sym_into, - STATE(5977), 1, - aux_sym_query_body_repeat2, - STATE(5988), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(8656), 1, + aux_sym_preproc_if_token1, + ACTIONS(8715), 1, + anon_sym_RBRACE, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6082), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(7357), 1, + sym_identifier, + STATE(6254), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(7415), 2, + sym_enum_member_declaration, + sym_preproc_if_in_enum_member_declaration, + STATE(6021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710392,43 +704552,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7514), 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, - sym_op_coalescing, + 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_DASH_GT, - anon_sym_with, - [48663] = 18, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [52647] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710449,23 +704596,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8133), 1, - anon_sym_DOT, - ACTIONS(4331), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(3207), 1, + sym__identifier_token, + ACTIONS(4080), 1, sym_grit_metavariable, - STATE(5989), 9, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(5692), 1, + aux_sym_preproc_if_token1, + STATE(5149), 1, + sym__reserved_identifier, + STATE(6049), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(7382), 1, + sym_identifier, + STATE(7419), 1, + sym_type_parameter, + ACTIONS(5686), 2, + anon_sym_in, + anon_sym_out, + STATE(6254), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(6022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710475,7 +704630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 26, + ACTIONS(3211), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710486,9 +704641,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, @@ -710501,8 +704653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [48755] = 14, + [52748] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710523,9 +704674,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8135), 1, - anon_sym_SEMI, - STATE(5990), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(4468), 1, + aux_sym_conversion_operator_declaration_repeat1, + STATE(5576), 1, + sym_identifier, + STATE(6211), 1, + sym_explicit_interface_specifier, + STATE(7758), 1, + sym__name, + ACTIONS(7076), 2, + anon_sym_operator, + anon_sym_checked, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710535,44 +704707,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6138), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6136), 24, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [48839] = 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, + [52847] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710593,23 +704751,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8137), 1, - anon_sym_DOT, - ACTIONS(4331), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(5991), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(4634), 1, + aux_sym_conversion_operator_declaration_repeat1, + STATE(5576), 1, + sym_identifier, + STATE(6211), 1, + sym_explicit_interface_specifier, + STATE(7758), 1, + sym__name, + ACTIONS(7076), 2, + anon_sym_operator, + anon_sym_checked, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6024), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710619,7 +704784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710630,9 +704795,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, @@ -710645,8 +704807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [48931] = 14, + [52946] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710667,9 +704828,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8139), 1, - anon_sym_RPAREN, - STATE(5992), 9, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8518), 1, + anon_sym_LPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4529), 1, + sym__variable_designation, + STATE(4583), 1, + sym_identifier, + STATE(4585), 1, + sym_parenthesized_variable_designation, + ACTIONS(4254), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(4256), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(6025), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710679,44 +704861,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5686), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5684), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [49015] = 15, + ACTIONS(8277), 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, + [53044] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710737,11 +704904,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8129), 1, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8518), 1, + anon_sym_LPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4583), 1, + sym_identifier, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(4630), 1, + sym__variable_designation, + ACTIONS(4302), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(4304), 3, + anon_sym_when, anon_sym_and, - ACTIONS(8131), 1, anon_sym_or, - STATE(5993), 9, + STATE(6026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710751,43 +704937,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7027), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7025), 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, - sym_op_coalescing, + ACTIONS(8277), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [49101] = 15, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [53142] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710808,11 +704980,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8082), 1, - anon_sym_into, - STATE(5959), 1, - aux_sym_query_body_repeat2, - STATE(5994), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(5692), 1, + aux_sym_preproc_if_token1, + ACTIONS(8717), 1, + aux_sym_preproc_if_token3, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6092), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(6254), 1, + sym_preproc_if_in_attribute_list, + STATE(6366), 1, + sym_attribute_list, + STATE(7031), 1, + sym_identifier, + STATE(7738), 1, + sym_enum_member_declaration, + STATE(6027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710822,43 +705014,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7516), 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(7514), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [49187] = 14, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [53244] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710879,9 +705058,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8141), 1, - anon_sym_into, - STATE(5995), 10, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8719), 1, + anon_sym_unsafe, + ACTIONS(8721), 1, + anon_sym_static, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(6050), 1, + aux_sym_using_directive_repeat1, + STATE(6762), 1, + sym_identifier, + STATE(7574), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6028), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710891,44 +705090,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat2, - ACTIONS(7499), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7497), 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, - sym_op_coalescing, + 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_DASH_GT, - anon_sym_with, - [49271] = 18, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [53342] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710949,22 +705134,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8144), 1, - anon_sym_DOT, - ACTIONS(4331), 4, + ACTIONS(8723), 1, + sym__identifier_token, + ACTIONS(8729), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(8733), 1, sym_grit_metavariable, - STATE(5996), 9, + STATE(5149), 1, + sym__reserved_identifier, + STATE(5356), 1, + sym_identifier, + STATE(5468), 1, + sym_generic_name, + STATE(5479), 1, + sym__simple_name, + ACTIONS(8731), 5, + anon_sym_ref, + anon_sym_delegate, + anon_sym_operator, + anon_sym_checked, + sym_predefined_type, + STATE(6029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710974,7 +705164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 26, + ACTIONS(8726), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710985,9 +705175,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, @@ -711000,8 +705187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [49362] = 14, + [53436] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711022,10 +705208,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3201), 2, - anon_sym_while, - anon_sym_else, - STATE(5997), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8721), 1, + anon_sym_static, + ACTIONS(8736), 1, + anon_sym_unsafe, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(6042), 1, + aux_sym_using_directive_repeat1, + STATE(6764), 1, + sym_identifier, + STATE(7412), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6030), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711035,42 +705240,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3203), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3205), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [49445] = 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, + [53534] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711093,28 +705286,26 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(4991), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6184), 1, - sym_explicit_interface_specifier, - STATE(7981), 1, + STATE(6363), 1, + aux_sym_using_directive_repeat1, + STATE(7412), 1, sym__name, - ACTIONS(7192), 2, - anon_sym_operator, - anon_sym_checked, - STATE(5468), 3, + ACTIONS(8721), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5998), 9, + STATE(6031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711147,7 +705338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [49544] = 22, + [53630] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711170,28 +705361,26 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(4980), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6184), 1, - sym_explicit_interface_specifier, - STATE(7981), 1, + STATE(6363), 1, + aux_sym_using_directive_repeat1, + STATE(7438), 1, sym__name, - ACTIONS(7192), 2, - anon_sym_operator, - anon_sym_checked, - STATE(5468), 3, + ACTIONS(8721), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5999), 9, + STATE(6032), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711224,7 +705413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [49643] = 23, + [53726] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711245,31 +705434,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, - sym__identifier_token, - ACTIONS(4060), 1, + ACTIONS(8283), 1, + anon_sym_LT, + ACTIONS(8738), 1, + anon_sym_COLON_COLON, + STATE(2214), 1, + sym_type_argument_list, + ACTIONS(3957), 4, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, sym_grit_metavariable, - ACTIONS(5977), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - aux_sym_preproc_if_token1, - STATE(5136), 1, - sym__reserved_identifier, - STATE(6037), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6280), 1, - sym__attribute_list, - STATE(7263), 1, - sym_type_parameter, - STATE(7526), 1, - sym_identifier, - ACTIONS(5987), 2, - anon_sym_in, - anon_sym_out, - STATE(6281), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(6000), 9, + STATE(6033), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711279,9 +705455,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, + ACTIONS(3955), 27, anon_sym_alias, anon_sym_global, + anon_sym_COLON, anon_sym_file, anon_sym_where, anon_sym_notnull, @@ -711290,6 +705467,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, @@ -711302,7 +705482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [49744] = 18, + sym__identifier_token, + [53812] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711323,23 +705504,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3964), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - anon_sym_LT, - ACTIONS(8146), 1, + ACTIONS(8729), 1, anon_sym_LPAREN, - STATE(5464), 1, - sym_type_argument_list, - STATE(6810), 1, - sym_parameter_list, - ACTIONS(3953), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(8740), 1, + sym__identifier_token, + ACTIONS(8746), 1, sym_grit_metavariable, - STATE(6001), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5479), 1, + sym__simple_name, + STATE(5561), 1, + sym_identifier, + ACTIONS(8731), 5, + anon_sym_ref, + anon_sym_delegate, + anon_sym_operator, + anon_sym_checked, + sym_predefined_type, + STATE(6034), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711349,15 +705534,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 25, + ACTIONS(8743), 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, @@ -711374,8 +705557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [49835] = 18, + [53906] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711396,22 +705578,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(8149), 1, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8749), 1, anon_sym_DOT, ACTIONS(4331), 4, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACE, sym_grit_metavariable, - STATE(6002), 9, + STATE(6035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711448,7 +705628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [49926] = 23, + [53994] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711471,29 +705651,26 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8019), 1, - anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(6408), 1, - sym_explicit_interface_specifier, - STATE(6579), 1, + STATE(5576), 1, sym_identifier, - STATE(6783), 1, - sym_tuple_pattern, - STATE(7130), 1, - sym_variable_declarator, - STATE(7826), 1, + STATE(6363), 1, + aux_sym_using_directive_repeat1, + STATE(7621), 1, sym__name, - STATE(5468), 3, + ACTIONS(8721), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6003), 9, + STATE(6036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711526,7 +705703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [50027] = 18, + [54090] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711547,25 +705724,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3964), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - anon_sym_LT, - ACTIONS(8151), 1, - anon_sym_EQ, - STATE(5464), 1, - sym_type_argument_list, - ACTIONS(8101), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(3953), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(6004), 9, + ACTIONS(8518), 1, + anon_sym_LPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4569), 1, + sym__variable_designation, + STATE(4583), 1, + sym_identifier, + STATE(4585), 1, + sym_parenthesized_variable_designation, + ACTIONS(4250), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(4252), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(6037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711575,7 +705757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 23, + ACTIONS(8277), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711585,7 +705767,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, @@ -711598,8 +705779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [50118] = 23, + [54188] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711620,31 +705800,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(5977), 1, - anon_sym_LBRACK, - ACTIONS(8097), 1, - aux_sym_preproc_if_token1, - ACTIONS(8153), 1, - anon_sym_RBRACE, - STATE(2206), 1, + ACTIONS(8518), 1, + anon_sym_LPAREN, + STATE(2652), 1, sym__reserved_identifier, - STATE(6086), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6280), 1, - sym__attribute_list, - STATE(7088), 1, + STATE(4532), 1, + sym__variable_designation, + STATE(4583), 1, sym_identifier, - STATE(6281), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7412), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(6005), 9, + STATE(4585), 1, + sym_parenthesized_variable_designation, + ACTIONS(4306), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(4308), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(6038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711654,7 +705833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711664,7 +705843,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, @@ -711677,7 +705855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [50219] = 18, + [54286] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711698,22 +705876,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8155), 1, - anon_sym_DOT, - ACTIONS(4331), 4, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6006), 9, + ACTIONS(8721), 1, + anon_sym_static, + ACTIONS(8751), 1, + anon_sym_unsafe, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(6032), 1, + aux_sym_using_directive_repeat1, + STATE(6763), 1, + sym_identifier, + STATE(7621), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711723,7 +705908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711734,9 +705919,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, @@ -711749,8 +705931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [50310] = 20, + [54384] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711771,27 +705952,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3964), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - anon_sym_LT, - ACTIONS(8157), 1, - anon_sym_EQ, - ACTIONS(8159), 1, - anon_sym_COMMA, - ACTIONS(8162), 1, - anon_sym_RPAREN, - STATE(5464), 1, - sym_type_argument_list, - STATE(7195), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3953), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - sym_grit_metavariable, - STATE(6007), 9, + ACTIONS(8753), 1, + anon_sym_SEMI, + STATE(6040), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711801,31 +705964,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 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, - [50405] = 23, + ACTIONS(5841), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5839), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [54466] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711846,31 +706020,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(1307), 1, - sym_grit_metavariable, - ACTIONS(8019), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(6410), 1, - sym_explicit_interface_specifier, - STATE(6582), 1, - sym_identifier, - STATE(6783), 1, - sym_tuple_pattern, - STATE(7130), 1, - sym_variable_declarator, - STATE(7826), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6008), 9, + ACTIONS(8755), 1, + anon_sym_SEMI, + STATE(6041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711880,30 +706032,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [50506] = 23, + ACTIONS(5841), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5839), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_op_left_shift, + sym_op_unsigned_right_shift, + sym_op_modulo, + sym_op_coalescing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [54548] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711924,31 +706088,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4060), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(5977), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - aux_sym_preproc_if_token1, - STATE(5136), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6037), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6280), 1, - sym__attribute_list, - STATE(7418), 1, - sym_type_parameter, - STATE(7526), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - ACTIONS(5987), 2, - anon_sym_in, - anon_sym_out, - STATE(6281), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(6009), 9, + STATE(6363), 1, + aux_sym_using_directive_repeat1, + STATE(7615), 1, + sym__name, + ACTIONS(8721), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711958,7 +706119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711981,7 +706142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [50607] = 18, + [54644] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712002,23 +706163,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3964), 1, + ACTIONS(3968), 1, anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(4197), 1, + anon_sym_COMMA, + ACTIONS(8151), 1, anon_sym_LT, - ACTIONS(8146), 1, - anon_sym_LPAREN, - STATE(5464), 1, + ACTIONS(8693), 1, + anon_sym_EQ, + ACTIONS(8703), 1, + anon_sym_RPAREN, + STATE(5456), 1, sym_type_argument_list, - STATE(6903), 1, - sym_parameter_list, - ACTIONS(3953), 5, + ACTIONS(3957), 5, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, + anon_sym_STAR, sym_grit_metavariable, - STATE(6010), 9, + STATE(6043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712028,15 +706191,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 25, + ACTIONS(3955), 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, @@ -712054,7 +706215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [50698] = 18, + [54736] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712075,23 +706236,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3964), 1, + ACTIONS(3968), 1, anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(8151), 1, anon_sym_LT, - ACTIONS(8146), 1, - anon_sym_LPAREN, - STATE(5464), 1, + ACTIONS(8757), 1, + anon_sym_COMMA, + ACTIONS(8760), 1, + anon_sym_RPAREN, + STATE(5456), 1, sym_type_argument_list, - STATE(6922), 1, - sym_parameter_list, - ACTIONS(3953), 5, + STATE(7282), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3957), 5, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, + anon_sym_STAR, sym_grit_metavariable, - STATE(6011), 9, + STATE(6044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712101,15 +706264,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 25, + ACTIONS(3955), 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, @@ -712127,7 +706288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [50789] = 23, + [54828] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712150,29 +706311,27 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8019), 1, - anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(8656), 1, + aux_sym_preproc_if_token1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(6412), 1, - sym_explicit_interface_specifier, - STATE(6581), 1, + STATE(6082), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(7357), 1, sym_identifier, - STATE(6783), 1, - sym_tuple_pattern, - STATE(7130), 1, - sym_variable_declarator, - STATE(7826), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6012), 9, + STATE(6254), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(7415), 2, + sym_enum_member_declaration, + sym_preproc_if_in_enum_member_declaration, + STATE(6045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712205,7 +706364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [50890] = 22, + [54926] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712226,30 +706385,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(1307), 1, + ACTIONS(8762), 1, + anon_sym_using, + ACTIONS(3694), 8, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_STAR, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(4987), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(5567), 1, - sym_identifier, - STATE(6184), 1, - sym_explicit_interface_specifier, - STATE(7981), 1, - sym__name, - ACTIONS(7192), 2, - anon_sym_operator, - anon_sym_checked, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6013), 9, + STATE(6046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712259,13 +706406,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3696), 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, @@ -712282,7 +706431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [50989] = 23, + sym__identifier_token, + [55008] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712303,31 +706453,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(1307), 1, - sym_grit_metavariable, - ACTIONS(5977), 1, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + ACTIONS(8764), 1, + anon_sym_EQ, + STATE(5456), 1, + sym_type_argument_list, + ACTIONS(3957), 7, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(8097), 1, - aux_sym_preproc_if_token1, - ACTIONS(8165), 1, - anon_sym_RBRACE, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6086), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6280), 1, - sym__attribute_list, - STATE(7088), 1, - sym_identifier, - STATE(6281), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7412), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(6014), 9, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + sym_grit_metavariable, + STATE(6047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712337,7 +706479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3955), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712360,7 +706502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [51090] = 18, + sym__identifier_token, + [55096] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712381,23 +706524,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3964), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - anon_sym_LT, - ACTIONS(8146), 1, - anon_sym_LPAREN, - STATE(5464), 1, - sym_type_argument_list, - STATE(6805), 1, - sym_parameter_list, - ACTIONS(3953), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6015), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6363), 1, + aux_sym_using_directive_repeat1, + STATE(7574), 1, + sym__name, + ACTIONS(8721), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6048), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712407,15 +706555,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 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, @@ -712432,8 +706578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [51181] = 23, + [55192] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712454,31 +706599,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3207), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(4080), 1, sym_grit_metavariable, - ACTIONS(8019), 1, - anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(5692), 1, + aux_sym_preproc_if_token1, + STATE(5149), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(6380), 1, - sym_explicit_interface_specifier, - STATE(6578), 1, + STATE(6093), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(7598), 1, sym_identifier, - STATE(6783), 1, - sym_tuple_pattern, - STATE(7130), 1, - sym_variable_declarator, - STATE(7826), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6016), 9, + ACTIONS(8766), 2, + anon_sym_in, + anon_sym_out, + STATE(6254), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(6049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712488,7 +706631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3211), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712511,7 +706654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [51282] = 18, + [55290] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712532,22 +706675,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8167), 1, - anon_sym_DOT, - ACTIONS(4331), 4, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6017), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6363), 1, + aux_sym_using_directive_repeat1, + STATE(7600), 1, + sym__name, + ACTIONS(8721), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6050), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712557,7 +706706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712568,9 +706717,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, @@ -712583,8 +706729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [51373] = 18, + [55386] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712605,25 +706750,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3964), 1, + ACTIONS(3968), 1, anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(8151), 1, anon_sym_LT, - ACTIONS(8157), 1, + ACTIONS(8768), 1, anon_sym_EQ, - STATE(5464), 1, + STATE(5456), 1, sym_type_argument_list, - ACTIONS(8169), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(3953), 5, + ACTIONS(3957), 7, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, + anon_sym_STAR, sym_grit_metavariable, - STATE(6018), 9, + STATE(6051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712633,7 +706776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 23, + ACTIONS(3955), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712657,7 +706800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [51464] = 19, + [55474] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712678,25 +706821,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3964), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - anon_sym_LT, - ACTIONS(8171), 1, - anon_sym_COMMA, - ACTIONS(8174), 1, - anon_sym_RPAREN, - STATE(5464), 1, - sym_type_argument_list, - STATE(7195), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3953), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6019), 9, + ACTIONS(8721), 1, + anon_sym_static, + ACTIONS(8770), 1, + anon_sym_unsafe, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(6031), 1, + aux_sym_using_directive_repeat1, + STATE(6772), 1, + sym_identifier, + STATE(7549), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712706,7 +706853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712729,8 +706876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [51556] = 22, + [55572] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712753,27 +706899,28 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(5977), 1, + ACTIONS(5676), 1, anon_sym_LBRACK, - ACTIONS(8097), 1, + ACTIONS(5692), 1, aux_sym_preproc_if_token1, - STATE(2206), 1, + ACTIONS(8717), 1, + aux_sym_preproc_if_token3, + STATE(2207), 1, sym__reserved_identifier, - STATE(6086), 1, + STATE(6092), 1, aux_sym__class_declaration_initializer_repeat1, - STATE(6280), 1, + STATE(6246), 1, sym__attribute_list, - STATE(7088), 1, + STATE(7031), 1, sym_identifier, - STATE(6281), 2, + STATE(7738), 1, + sym_enum_member_declaration, + STATE(6254), 2, sym_attribute_list, sym_preproc_if_in_attribute_list, - STATE(7412), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(6020), 9, + STATE(6053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712806,7 +706953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [51654] = 22, + [55672] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712827,30 +706974,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7988), 1, - anon_sym_LPAREN, - STATE(2737), 1, + ACTIONS(8772), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(4967), 1, - sym__variable_designation, - STATE(4983), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - ACTIONS(4242), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(4244), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(6021), 9, + STATE(6843), 1, + sym__name, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712860,7 +707004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 21, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712870,6 +707014,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, @@ -712882,7 +707027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [51752] = 22, + [55767] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712903,30 +707048,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7988), 1, - anon_sym_LPAREN, - STATE(2737), 1, + ACTIONS(8774), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(4983), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5009), 1, - sym__variable_designation, - ACTIONS(4302), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(4304), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(6022), 9, + STATE(6843), 1, + sym__name, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712936,7 +707078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 21, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712946,6 +707088,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, @@ -712958,7 +707101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [51850] = 21, + [55862] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712981,26 +707124,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8776), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6357), 1, - aux_sym_using_directive_repeat1, - STATE(7406), 1, + STATE(6843), 1, sym__name, - ACTIONS(8176), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5468), 3, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6023), 9, + STATE(6056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713033,7 +707175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [51946] = 20, + [55957] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713054,27 +707196,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8178), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8184), 1, - anon_sym_LPAREN, - ACTIONS(8188), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8778), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5478), 1, - sym__simple_name, - STATE(5563), 1, + STATE(5576), 1, sym_identifier, - ACTIONS(8186), 5, - anon_sym_ref, - anon_sym_delegate, - anon_sym_operator, - anon_sym_checked, - sym_predefined_type, - STATE(6024), 9, + STATE(6843), 1, + sym__name, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713084,7 +707226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8181), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713107,7 +707249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52040] = 14, + [56052] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713128,9 +707270,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8191), 1, - anon_sym_SEMI, - STATE(6025), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8780), 1, + anon_sym_RBRACK, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6843), 1, + sym__name, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6058), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713140,42 +707300,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6138), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6136), 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [52122] = 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, + [56147] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713196,30 +707344,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7988), 1, - anon_sym_LPAREN, - STATE(2737), 1, + ACTIONS(8782), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(4983), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(5041), 1, - sym__variable_designation, - ACTIONS(4306), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(4308), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(6026), 9, + STATE(6843), 1, + sym__name, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713229,7 +707374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 21, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713239,6 +707384,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, @@ -713251,7 +707397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52220] = 22, + [56242] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713274,27 +707420,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8176), 1, - anon_sym_static, - ACTIONS(8193), 1, - anon_sym_unsafe, - STATE(2206), 1, + ACTIONS(8784), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(6047), 1, - aux_sym_using_directive_repeat1, - STATE(6733), 1, + STATE(5576), 1, sym_identifier, - STATE(7406), 1, + STATE(6843), 1, sym__name, - STATE(5468), 3, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6027), 9, + STATE(6060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713327,7 +707471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52318] = 17, + [56337] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713348,23 +707492,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3964), 1, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(3968), 1, anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(8151), 1, anon_sym_LT, - ACTIONS(8195), 1, - anon_sym_EQ, - STATE(5464), 1, + STATE(5456), 1, sym_type_argument_list, - ACTIONS(3953), 7, - anon_sym_SEMI, + ACTIONS(3957), 6, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, + anon_sym_STAR, sym_grit_metavariable, - STATE(6028), 9, + STATE(6061), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713374,7 +707517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 23, + ACTIONS(3955), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713398,7 +707541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [52406] = 14, + [56424] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713419,97 +707562,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8197), 1, - anon_sym_SEMI, - STATE(6029), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6138), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6136), 22, + ACTIONS(5584), 1, + aux_sym_preproc_if_token3, + ACTIONS(5204), 4, 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, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [52488] = 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(1307), 1, sym_grit_metavariable, - ACTIONS(8176), 1, - anon_sym_static, - ACTIONS(8199), 1, - anon_sym_unsafe, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(6039), 1, - aux_sym_using_directive_repeat1, - STATE(6773), 1, - sym_identifier, - STATE(7477), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6030), 9, + aux_sym_preproc_if_token1, + STATE(6062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713519,15 +707579,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5202), 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, @@ -713542,7 +707607,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52586] = 24, + sym__identifier_token, + [56505] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713565,29 +707631,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(5977), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - aux_sym_preproc_if_token1, - ACTIONS(8201), 1, - aux_sym_preproc_if_token3, - STATE(2206), 1, + ACTIONS(8786), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(6090), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6280), 1, - sym__attribute_list, - STATE(6281), 1, - sym_preproc_if_in_attribute_list, - STATE(6361), 1, - sym_attribute_list, - STATE(6954), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(7805), 1, - sym_enum_member_declaration, - STATE(6031), 9, + STATE(6843), 1, + sym__name, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713620,7 +707682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52688] = 17, + [56600] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713641,23 +707703,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3964), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - anon_sym_LT, - ACTIONS(8203), 1, - anon_sym_EQ, - STATE(5464), 1, - sym_type_argument_list, - ACTIONS(3953), 7, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6032), 9, + ACTIONS(8788), 1, + anon_sym_RBRACK, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6843), 1, + sym__name, + STATE(7425), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713667,7 +707733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713690,8 +707756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [52776] = 21, + [56695] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713712,28 +707777,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, - ACTIONS(1307), 1, + ACTIONS(8792), 2, + anon_sym_LPAREN, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6357), 1, - aux_sym_using_directive_repeat1, - STATE(7477), 1, - sym__name, - ACTIONS(8176), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6033), 9, + ACTIONS(8794), 6, + anon_sym_ref, + anon_sym_readonly, + anon_sym_in, + anon_sym_out, + anon_sym_this, + anon_sym_scoped, + STATE(6065), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713743,15 +707797,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + aux_sym__parameter_type_with_modifiers_repeat1, + ACTIONS(8790), 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, @@ -713766,7 +707822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52872] = 22, + sym__identifier_token, + [56776] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713787,30 +707844,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7988), 1, - anon_sym_LPAREN, - STATE(2737), 1, + ACTIONS(8797), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(4935), 1, - sym__variable_designation, - STATE(4983), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - ACTIONS(4250), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(4252), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(6034), 9, + STATE(6843), 1, + sym__name, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713820,7 +707874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 21, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713830,6 +707884,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, @@ -713842,7 +707897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52970] = 14, + [56871] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713863,18 +707918,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8205), 1, - anon_sym_using, - ACTIONS(3696), 8, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6035), 9, + ACTIONS(8799), 1, + anon_sym_RBRACK, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6843), 1, + sym__name, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6067), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713884,15 +707948,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3698), 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, @@ -713909,8 +707971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [53052] = 19, + [56966] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713931,25 +707992,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3964), 1, - anon_sym_COLON_COLON, - ACTIONS(4184), 1, - anon_sym_COMMA, - ACTIONS(7685), 1, - anon_sym_LT, - ACTIONS(8157), 1, - anon_sym_EQ, - ACTIONS(8169), 1, - anon_sym_RPAREN, - STATE(5464), 1, - sym_type_argument_list, - ACTIONS(3953), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6036), 9, + ACTIONS(8801), 1, + anon_sym_RBRACK, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6843), 1, + sym__name, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713959,7 +708022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713982,8 +708045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [53144] = 22, + [57061] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714004,29 +708066,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4060), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(5977), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - aux_sym_preproc_if_token1, - STATE(5136), 1, + ACTIONS(8803), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(6082), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6280), 1, - sym__attribute_list, - STATE(7545), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - ACTIONS(8207), 2, - anon_sym_in, - anon_sym_out, - STATE(6281), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(6037), 9, + STATE(6843), 1, + sym__name, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6069), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714036,7 +708096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -714059,7 +708119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53242] = 16, + [57156] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714080,18 +708140,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7767), 1, - anon_sym_LT, - ACTIONS(8209), 1, - anon_sym_COLON_COLON, - STATE(2209), 1, - sym_type_argument_list, - ACTIONS(3953), 4, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6038), 9, + ACTIONS(8805), 1, + anon_sym_RBRACK, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6843), 1, + sym__name, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6070), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714101,10 +708170,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 27, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_COLON, anon_sym_file, anon_sym_where, anon_sym_notnull, @@ -714113,9 +708181,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, @@ -714128,8 +708193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [53328] = 21, + [57251] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714152,26 +708216,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8807), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6357), 1, - aux_sym_using_directive_repeat1, - STATE(7460), 1, + STATE(6843), 1, sym__name, - ACTIONS(8176), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5468), 3, + STATE(7425), 1, + sym_attribute, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6039), 9, + STATE(6071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714204,7 +708267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53424] = 20, + [57346] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714225,27 +708288,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8184), 1, - anon_sym_LPAREN, - ACTIONS(8211), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8217), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(5136), 1, + ACTIONS(8809), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(5402), 1, - sym_identifier, - STATE(5467), 1, + STATE(2210), 1, sym_generic_name, - STATE(5478), 1, + STATE(5576), 1, + sym_identifier, + STATE(6843), 1, + sym__name, + STATE(7425), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, sym__simple_name, - ACTIONS(8186), 5, - anon_sym_ref, - anon_sym_delegate, - anon_sym_operator, - anon_sym_checked, - sym_predefined_type, - STATE(6040), 9, + sym_qualified_name, + STATE(6072), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714255,7 +708318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8214), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -714278,7 +708341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53518] = 17, + [57441] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714299,20 +708362,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8220), 1, - anon_sym_DOT, - ACTIONS(4331), 4, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6041), 9, + ACTIONS(8811), 1, + anon_sym_RBRACK, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6843), 1, + sym__name, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714322,7 +708392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -714333,9 +708403,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, @@ -714348,8 +708415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [53606] = 21, + [57536] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714372,26 +708438,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8813), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6357), 1, - aux_sym_using_directive_repeat1, - STATE(7532), 1, + STATE(6843), 1, sym__name, - ACTIONS(8176), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5468), 3, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6042), 9, + STATE(6074), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714424,7 +708489,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53702] = 23, + [57631] = 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(4331), 1, + sym_grit_metavariable, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8536), 1, + anon_sym_DOT, + ACTIONS(8584), 1, + anon_sym_LPAREN, + STATE(7482), 1, + sym_attribute_argument_list, + ACTIONS(8815), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(6075), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4329), 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, + [57726] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714447,28 +708586,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(5977), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - aux_sym_preproc_if_token1, - ACTIONS(8201), 1, - aux_sym_preproc_if_token3, - STATE(2206), 1, + ACTIONS(8817), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(6090), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6280), 1, - sym__attribute_list, - STATE(6954), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(7805), 1, - sym_enum_member_declaration, - STATE(6281), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(6043), 9, + STATE(6843), 1, + sym__name, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714501,7 +708637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53802] = 22, + [57821] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714524,27 +708660,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8176), 1, - anon_sym_static, - ACTIONS(8222), 1, - anon_sym_unsafe, - STATE(2206), 1, + ACTIONS(8819), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(6042), 1, - aux_sym_using_directive_repeat1, - STATE(6769), 1, + STATE(5576), 1, sym_identifier, - STATE(7438), 1, + STATE(6843), 1, sym__name, - STATE(5468), 3, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6044), 9, + STATE(6077), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714577,7 +708711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53900] = 21, + [57916] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714600,26 +708734,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8821), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6357), 1, - aux_sym_using_directive_repeat1, - STATE(7521), 1, + STATE(6843), 1, sym__name, - ACTIONS(8176), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5468), 3, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6045), 9, + STATE(6078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714652,7 +708785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53996] = 22, + [58011] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714675,27 +708808,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8176), 1, - anon_sym_static, - ACTIONS(8224), 1, - anon_sym_unsafe, - STATE(2206), 1, + ACTIONS(8823), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(6045), 1, - aux_sym_using_directive_repeat1, - STATE(6708), 1, + STATE(5576), 1, sym_identifier, - STATE(7532), 1, + STATE(6843), 1, sym__name, - STATE(5468), 3, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6046), 9, + STATE(6079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714728,7 +708859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54094] = 21, + [58106] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714751,26 +708882,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8825), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6357), 1, - aux_sym_using_directive_repeat1, - STATE(7632), 1, + STATE(6843), 1, sym__name, - ACTIONS(8176), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5468), 3, + STATE(7425), 1, + sym_attribute, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6047), 9, + STATE(6080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714803,7 +708933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54190] = 21, + [58201] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714826,25 +708956,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8226), 1, + ACTIONS(8827), 1, anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6798), 1, + STATE(6843), 1, sym__name, - STATE(7581), 1, + STATE(7620), 1, sym_attribute, - STATE(5468), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6048), 9, + STATE(6081), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714877,7 +709007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54285] = 21, + [58296] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714900,25 +709030,24 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8228), 1, - anon_sym_RBRACK, - STATE(2206), 1, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(5692), 1, + aux_sym_preproc_if_token1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(6093), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(7231), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6049), 9, + STATE(6254), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(6082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714951,7 +709080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54380] = 14, + [58390] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714972,14 +709101,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5772), 1, - aux_sym_preproc_if_token3, - ACTIONS(5458), 4, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6050), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6843), 1, + sym__name, + STATE(7244), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6083), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714989,20 +709129,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5456), 28, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, anon_sym_scoped, anon_sym_var, - sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -715017,8 +709152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [54461] = 21, + [58482] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715039,27 +709173,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + ACTIONS(8829), 1, + anon_sym_in, + STATE(5456), 1, + sym_type_argument_list, + ACTIONS(3957), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, sym_grit_metavariable, - ACTIONS(8230), 1, - anon_sym_RBRACK, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6051), 9, + STATE(6084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715069,7 +709197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3955), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715092,7 +709220,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54556] = 21, + sym__identifier_token, + [58568] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715115,25 +709244,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8232), 1, - anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6798), 1, + STATE(6843), 1, sym__name, - STATE(7581), 1, + STATE(7280), 1, sym_attribute, - STATE(5468), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6052), 9, + STATE(6085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715166,7 +709293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54651] = 21, + [58660] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715187,27 +709314,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(4399), 1, + anon_sym_EQ_GT, + ACTIONS(6835), 1, + anon_sym_RPAREN, + ACTIONS(4397), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, sym_grit_metavariable, - ACTIONS(8234), 1, - anon_sym_RBRACK, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6053), 9, + STATE(6086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715217,7 +709333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4395), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715228,6 +709344,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, @@ -715240,7 +709359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54746] = 21, + sym__identifier_token, + [58742] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715263,25 +709383,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8236), 1, - anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6798), 1, + STATE(6843), 1, sym__name, - STATE(7440), 1, + STATE(7620), 1, sym_attribute, - STATE(5468), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6054), 9, + STATE(6087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715314,7 +709432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54841] = 21, + [58834] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715337,25 +709455,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8238), 1, - anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6798), 1, + STATE(6843), 1, sym__name, - STATE(7581), 1, + STATE(7425), 1, sym_attribute, - STATE(5468), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6055), 9, + STATE(6088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715388,7 +709504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54936] = 21, + [58926] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715409,27 +709525,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(2969), 2, + anon_sym_LPAREN, sym_grit_metavariable, - ACTIONS(8240), 1, - anon_sym_RBRACK, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6056), 9, + STATE(6089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715439,15 +709538,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(2919), 30, anon_sym_alias, anon_sym_global, + anon_sym_ref, + anon_sym_delegate, + anon_sym_readonly, anon_sym_file, + 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, @@ -715462,7 +709568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55031] = 21, + sym__identifier_token, + [59004] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715485,25 +709592,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8242), 1, - anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6798), 1, + STATE(6843), 1, sym__name, - STATE(7581), 1, + STATE(7350), 1, sym_attribute, - STATE(5468), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6057), 9, + STATE(6090), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715536,7 +709641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55126] = 21, + [59096] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715559,25 +709664,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8244), 1, - anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6798), 1, + STATE(6843), 1, sym__name, - STATE(7581), 1, + STATE(7053), 1, sym_attribute, - STATE(5468), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6058), 9, + STATE(6091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715610,7 +709713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55221] = 21, + [59188] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715631,26 +709734,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4331), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, + ACTIONS(5676), 1, anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(8044), 1, - anon_sym_LPAREN, - STATE(7379), 1, - sym_attribute_argument_list, - ACTIONS(8246), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6059), 9, + ACTIONS(5692), 1, + aux_sym_preproc_if_token1, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6093), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(7018), 1, + sym_identifier, + STATE(6254), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(6092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715660,7 +709763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715683,8 +709786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [55316] = 21, + [59282] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715705,27 +709807,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(1307), 1, + ACTIONS(5345), 1, sym_grit_metavariable, - ACTIONS(8248), 1, - anon_sym_RBRACK, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6060), 9, + ACTIONS(8831), 1, + anon_sym_LBRACK, + ACTIONS(8834), 1, + aux_sym_preproc_if_token1, + STATE(6246), 1, + sym__attribute_list, + STATE(6254), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(6093), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715735,10 +709828,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + aux_sym__class_declaration_initializer_repeat1, + ACTIONS(5340), 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, @@ -715758,7 +709854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55411] = 21, + sym__identifier_token, + [59368] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715781,25 +709878,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8250), 1, - anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6798), 1, + STATE(6633), 1, sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, + STATE(7002), 1, + sym_primary_constructor_base_type, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6061), 9, + STATE(6094), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715832,7 +709927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55506] = 14, + [59460] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715853,17 +709948,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8254), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8256), 6, - anon_sym_ref, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, - anon_sym_this, - anon_sym_scoped, - STATE(6062), 10, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6843), 1, + sym__name, + STATE(7249), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715873,17 +709976,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(8252), 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, @@ -715898,8 +709999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [55587] = 21, + [59552] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715920,27 +710020,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + ACTIONS(8837), 1, + anon_sym_in, + STATE(5456), 1, + sym_type_argument_list, + ACTIONS(3957), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, sym_grit_metavariable, - ACTIONS(8259), 1, - anon_sym_RBRACK, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6063), 9, + STATE(6096), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715950,7 +710044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3955), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715973,7 +710067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55682] = 21, + sym__identifier_token, + [59638] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715996,25 +710091,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8261), 1, - anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6798), 1, + STATE(6843), 1, sym__name, - STATE(7581), 1, + STATE(7183), 1, sym_attribute, - STATE(5468), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6064), 9, + STATE(6097), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716047,7 +710140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55777] = 21, + [59730] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716070,25 +710163,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8263), 1, - anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6798), 1, + STATE(6843), 1, sym__name, - STATE(7440), 1, + STATE(7225), 1, sym_attribute, - STATE(5468), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6065), 9, + STATE(6098), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716121,7 +710212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55872] = 21, + [59822] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716144,25 +710235,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8265), 1, - anon_sym_RBRACK, - STATE(2206), 1, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8518), 1, + anon_sym_LPAREN, + ACTIONS(8839), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(4583), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6066), 9, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(7194), 1, + sym__variable_designation, + STATE(6099), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716195,7 +710284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55967] = 21, + [59915] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716218,25 +710307,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8267), 1, - anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6798), 1, + STATE(7297), 1, sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6067), 9, + STATE(6100), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716269,7 +710354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56062] = 21, + [60004] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716292,25 +710377,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8269), 1, - anon_sym_RBRACK, - STATE(2206), 1, + ACTIONS(8432), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6068), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6101), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716343,7 +710426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56157] = 21, + [60097] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716366,25 +710449,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8271), 1, - anon_sym_RBRACK, - STATE(2206), 1, + ACTIONS(8467), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6069), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716417,7 +710498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56252] = 21, + [60190] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716438,27 +710519,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(1307), 1, + ACTIONS(8847), 2, + anon_sym_static, + anon_sym_async, + ACTIONS(8850), 2, + anon_sym_LPAREN, sym_grit_metavariable, - ACTIONS(8273), 1, - anon_sym_RBRACK, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7440), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6070), 9, + STATE(6103), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716468,15 +710535,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(8845), 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, @@ -716491,7 +710562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56347] = 21, + sym__identifier_token, + [60269] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716514,25 +710586,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8275), 1, - anon_sym_RBRACK, - STATE(2206), 1, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(8852), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6071), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6104), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716565,7 +710635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56442] = 17, + [60362] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716586,22 +710656,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(3964), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - anon_sym_LT, - STATE(5464), 1, - sym_type_argument_list, - ACTIONS(3953), 6, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6072), 9, + ACTIONS(8382), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7030), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6105), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716611,7 +710684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716634,8 +710707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [56529] = 21, + [60455] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716658,25 +710730,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8277), 1, - anon_sym_RBRACK, - STATE(2206), 1, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(8854), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6073), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716709,7 +710779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56624] = 21, + [60548] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716732,25 +710802,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8279), 1, - anon_sym_RBRACK, - STATE(2206), 1, + ACTIONS(8370), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7440), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6074), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6107), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716783,7 +710851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56719] = 21, + [60641] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716804,27 +710872,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(5440), 6, + anon_sym_LBRACK, sym_grit_metavariable, - ACTIONS(8281), 1, - anon_sym_RBRACK, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6075), 9, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(6108), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716834,10 +710889,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5438), 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, @@ -716857,7 +710914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56814] = 20, + sym__identifier_token, + [60718] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716880,23 +710938,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8856), 1, + anon_sym_LPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(6583), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7211), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6076), 9, + STATE(6890), 1, + sym_tuple_pattern, + STATE(7262), 1, + sym_variable_declarator, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716929,7 +710987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56906] = 20, + [60811] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716952,23 +711010,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8518), 1, + anon_sym_LPAREN, + ACTIONS(8858), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(4583), 1, sym_identifier, - STATE(6650), 1, - sym__name, - STATE(7007), 1, - sym_primary_constructor_base_type, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6077), 9, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(7139), 1, + sym__variable_designation, + STATE(6110), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717001,7 +711059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56998] = 13, + [60904] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717022,10 +711080,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2969), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6078), 9, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(8860), 1, + anon_sym_RPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7030), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6111), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717035,22 +711108,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2919), 30, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_ref, - anon_sym_delegate, - anon_sym_readonly, anon_sym_file, - 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, @@ -717065,8 +711131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [57076] = 20, + [60997] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717089,23 +711154,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(8862), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7350), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6079), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717138,7 +711203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57168] = 20, + [61090] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717161,23 +711226,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8428), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7065), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6080), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6113), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717210,7 +711275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57260] = 20, + [61183] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717233,23 +711298,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(8864), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7286), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6081), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6114), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717282,7 +711347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57352] = 17, + [61276] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717303,18 +711368,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5489), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8283), 1, - anon_sym_LBRACK, - ACTIONS(8286), 1, - aux_sym_preproc_if_token1, - STATE(6280), 1, - sym__attribute_list, - STATE(6281), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(6082), 10, + ACTIONS(8372), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7030), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6115), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717324,13 +711396,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(5484), 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, @@ -717350,8 +711419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [57438] = 20, + [61369] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717374,23 +711442,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(8866), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7440), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6083), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6116), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717423,7 +711491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57530] = 20, + [61462] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717446,23 +711514,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(5567), 1, + STATE(5576), 1, sym_identifier, - STATE(6798), 1, + STATE(6819), 1, sym__name, - STATE(7581), 1, - sym_attribute, - STATE(5468), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6084), 9, + STATE(6117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717495,76 +711561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57622] = 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(3964), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - anon_sym_LT, - ACTIONS(8289), 1, - anon_sym_in, - STATE(5464), 1, - sym_type_argument_list, - ACTIONS(3953), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - sym_grit_metavariable, - 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(3951), 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, - [57708] = 21, + [61551] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717587,24 +711584,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(5977), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - aux_sym_preproc_if_token1, - STATE(2206), 1, + ACTIONS(8398), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6082), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6280), 1, - sym__attribute_list, - STATE(7358), 1, + STATE(7030), 1, sym_identifier, - STATE(6281), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(6086), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717637,7 +711633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57802] = 17, + [61644] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717658,21 +711654,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3964), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - anon_sym_LT, - ACTIONS(8291), 1, - anon_sym_in, - STATE(5464), 1, - sym_type_argument_list, - ACTIONS(3953), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6087), 9, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6983), 1, + sym_identifier, + STATE(7241), 1, + sym_using_variable_declarator, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6119), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717682,7 +711682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717705,8 +711705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [57888] = 20, + [61737] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717729,23 +711728,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(8868), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7316), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6088), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717778,7 +711777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57980] = 15, + [61830] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717799,16 +711798,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4458), 1, - anon_sym_EQ_GT, - ACTIONS(7092), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8434), 1, anon_sym_RPAREN, - ACTIONS(4456), 4, + ACTIONS(8841), 1, anon_sym_COMMA, + ACTIONS(8843), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - sym_grit_metavariable, - STATE(6089), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7030), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6121), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717818,7 +711826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4454), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717829,9 +711837,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, @@ -717844,8 +711849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [58062] = 21, + [61923] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717868,24 +711872,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(5977), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, - aux_sym_preproc_if_token1, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6082), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6280), 1, - sym__attribute_list, - STATE(6935), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(6281), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(6090), 9, + STATE(6738), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6122), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717918,7 +711919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58156] = 20, + [62012] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717941,23 +711942,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(8870), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7201), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6091), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717990,7 +711991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58248] = 20, + [62105] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718013,23 +712014,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8465), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6798), 1, - sym__name, - STATE(7232), 1, - sym_attribute, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6092), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718062,7 +712063,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58340] = 21, + [62198] = 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(5446), 6, + anon_sym_LBRACK, + sym_grit_metavariable, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(6125), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5444), 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, + [62275] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718085,23 +712150,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7824), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8518), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8872), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(4583), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6093), 9, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(7086), 1, + sym__variable_designation, + STATE(6126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718134,7 +712199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58433] = 17, + [62368] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718155,20 +712220,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - ACTIONS(5472), 1, - aux_sym_preproc_if_token3, - STATE(7800), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - ACTIONS(5458), 3, - anon_sym_LBRACK, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6094), 9, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(8874), 1, + anon_sym_RPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7030), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6127), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718178,7 +712248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5456), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718201,8 +712271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [58518] = 21, + [62461] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718225,23 +712294,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8297), 1, + ACTIONS(8445), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6588), 1, + STATE(7030), 1, sym_identifier, - STATE(6783), 1, - sym_tuple_pattern, - STATE(7130), 1, - sym_variable_declarator, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6095), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718274,7 +712343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58611] = 13, + [62554] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718295,14 +712364,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5544), 6, - anon_sym_LBRACK, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(6096), 9, + ACTIONS(8439), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7030), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6129), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718312,12 +712392,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5542), 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, @@ -718337,8 +712415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [58688] = 21, + [62647] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718361,23 +712438,93 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8447), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8299), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6097), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6130), 9, + sym_preproc_region, + sym_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, + [62740] = 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(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6951), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6131), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718410,7 +712557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58781] = 21, + [62829] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718433,23 +712580,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8443), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8301), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6098), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6132), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718482,7 +712629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58874] = 21, + [62922] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718505,23 +712652,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7988), 1, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8303), 1, + ACTIONS(8876), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(4983), 1, + STATE(7030), 1, sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(7096), 1, - sym__variable_designation, - STATE(6099), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6133), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718554,7 +712701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58967] = 21, + [63015] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718577,23 +712724,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8305), 1, + ACTIONS(8878), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6100), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6134), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718626,7 +712773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59060] = 21, + [63108] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718649,23 +712796,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8307), 1, + ACTIONS(8880), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6101), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6135), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718698,7 +712845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59153] = 21, + [63201] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718721,23 +712868,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8410), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6943), 1, + STATE(7030), 1, sym_identifier, - STATE(7147), 1, - sym_using_variable_declarator, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6102), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6136), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718770,7 +712917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59246] = 21, + [63294] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718793,23 +712940,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7898), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8882), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6103), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718842,7 +712989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59339] = 21, + [63387] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718865,23 +713012,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8430), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8309), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6104), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6138), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718914,7 +713061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59432] = 19, + [63480] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718937,21 +713084,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8422), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6724), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6105), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6139), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718984,7 +713133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59521] = 13, + [63573] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719005,14 +713154,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5610), 6, - anon_sym_LBRACK, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(6106), 9, + ACTIONS(8412), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7030), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719022,12 +713182,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5608), 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, @@ -719047,8 +713205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [59598] = 21, + [63666] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719071,23 +713228,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7908), 1, + ACTIONS(8402), 1, anon_sym_RPAREN, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6107), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719120,7 +713277,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59691] = 21, + [63759] = 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(5450), 6, + anon_sym_LBRACK, + sym_grit_metavariable, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(6142), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5448), 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, + [63836] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719143,23 +713364,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8518), 1, anon_sym_LPAREN, - ACTIONS(8311), 1, + ACTIONS(8884), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(4583), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6108), 9, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(7070), 1, + sym__variable_designation, + STATE(6143), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719192,7 +713413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59784] = 21, + [63929] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719215,23 +713436,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8313), 1, + ACTIONS(8886), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6109), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6144), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719264,7 +713485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59877] = 21, + [64022] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719287,23 +713508,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7892), 1, + ACTIONS(8408), 1, anon_sym_RPAREN, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6110), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6145), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719336,7 +713557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59970] = 13, + [64115] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719357,14 +713578,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5638), 6, - anon_sym_LBRACK, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(6111), 9, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(8888), 1, + anon_sym_RPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7030), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6146), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719374,12 +713606,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5636), 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, @@ -719399,8 +713629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [60047] = 21, + [64208] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719423,23 +713652,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7988), 1, + ACTIONS(8856), 1, anon_sym_LPAREN, - ACTIONS(8315), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(4983), 1, + STATE(6722), 1, sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(7272), 1, - sym__variable_designation, - STATE(6112), 9, + STATE(6890), 1, + sym_tuple_pattern, + STATE(7262), 1, + sym_variable_declarator, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6147), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719472,7 +713701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60140] = 21, + [64301] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719493,25 +713722,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(5480), 6, + anon_sym_LBRACK, sym_grit_metavariable, - ACTIONS(7879), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6113), 9, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(6148), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719521,10 +713739,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5478), 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, @@ -719544,7 +713764,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60233] = 21, + sym__identifier_token, + [64378] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719567,23 +713788,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8518), 1, anon_sym_LPAREN, - ACTIONS(8317), 1, + ACTIONS(8890), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(4583), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6114), 9, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(7323), 1, + sym__variable_designation, + STATE(6149), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719616,7 +713837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60326] = 19, + [64471] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719639,21 +713860,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(8892), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6936), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6115), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6150), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719686,7 +713909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60415] = 19, + [64564] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719707,23 +713930,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(5422), 6, + anon_sym_LBRACK, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(6793), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6116), 9, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(6151), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719733,10 +713947,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5420), 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, @@ -719756,7 +713972,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60504] = 21, + sym__identifier_token, + [64641] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719779,23 +713996,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8319), 1, + ACTIONS(8894), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6117), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6152), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719828,7 +714045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60597] = 13, + [64734] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719849,14 +714066,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5560), 6, + ACTIONS(5434), 6, anon_sym_LBRACK, sym_grit_metavariable, aux_sym_preproc_if_token1, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(6118), 9, + STATE(6153), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719866,7 +714083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5558), 25, + ACTIONS(5432), 25, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719892,7 +714109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [60674] = 21, + [64811] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719915,23 +714132,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8404), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8321), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6119), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6154), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719964,7 +714181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60767] = 21, + [64904] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719985,25 +714202,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(5212), 1, + aux_sym_preproc_if_token3, + STATE(7745), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + ACTIONS(5204), 3, + anon_sym_LBRACK, sym_grit_metavariable, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7988), 1, - anon_sym_LPAREN, - ACTIONS(8323), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(4983), 1, - sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(7160), 1, - sym__variable_designation, - STATE(6120), 9, + aux_sym_preproc_if_token1, + STATE(6155), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720013,7 +714225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5202), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720036,7 +714248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60860] = 21, + sym__identifier_token, + [64989] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720059,23 +714272,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7855), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8896), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6121), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6156), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720108,7 +714321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60953] = 13, + [65082] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720129,14 +714342,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5556), 6, - anon_sym_LBRACK, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(6122), 9, + ACTIONS(8392), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7030), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6157), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720146,12 +714370,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5554), 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, @@ -720171,8 +714393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [61030] = 13, + [65175] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720193,14 +714414,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5540), 6, + ACTIONS(5386), 6, anon_sym_LBRACK, sym_grit_metavariable, aux_sym_preproc_if_token1, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(6123), 9, + STATE(6158), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720210,7 +714431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5538), 25, + ACTIONS(5384), 25, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720236,7 +714457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [61107] = 21, + [65252] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720259,23 +714480,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8406), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8325), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6124), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6159), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720308,7 +714529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61200] = 21, + [65345] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720331,23 +714552,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8327), 1, + ACTIONS(8898), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6125), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6160), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720380,7 +714601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61293] = 21, + [65438] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720401,25 +714622,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8900), 1, + anon_sym_DOT, + ACTIONS(4361), 4, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + sym_grit_metavariable, + STATE(6161), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4359), 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, - ACTIONS(1307), 1, + [65517] = 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(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(8902), 1, + aux_sym_preproc_if_token3, + STATE(7853), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + ACTIONS(5204), 3, + anon_sym_LBRACK, sym_grit_metavariable, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8329), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6126), 9, + aux_sym_preproc_if_token1, + STATE(6162), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720429,7 +714710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5202), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720452,7 +714733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61386] = 21, + sym__identifier_token, + [65602] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720475,23 +714757,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7896), 1, + ACTIONS(8390), 1, anon_sym_RPAREN, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6127), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6163), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720524,7 +714806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61479] = 21, + [65695] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720547,23 +714829,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8331), 1, + ACTIONS(8904), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6128), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6164), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720596,7 +714878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61572] = 21, + [65788] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720619,23 +714901,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7846), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8906), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6129), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6165), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720668,7 +714950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61665] = 19, + [65881] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720691,21 +714973,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(8908), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, + STATE(7030), 1, sym_identifier, - STATE(6962), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6130), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6166), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720738,7 +715022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61754] = 21, + [65974] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720761,23 +715045,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6753), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(6783), 1, - sym_tuple_pattern, - STATE(7130), 1, - sym_variable_declarator, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6131), 9, + STATE(6923), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6167), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720810,7 +715092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61847] = 21, + [66063] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720833,23 +715115,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8441), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8333), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6132), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6168), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720882,7 +715164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61940] = 21, + [66156] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720903,25 +715185,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(5430), 6, + anon_sym_LBRACK, sym_grit_metavariable, - ACTIONS(7842), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6133), 9, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(6169), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720931,10 +715202,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5428), 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, @@ -720954,7 +715227,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62033] = 21, + sym__identifier_token, + [66233] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720977,23 +715251,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7836), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8910), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6134), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6170), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721026,7 +715300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62126] = 21, + [66326] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721049,23 +715323,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7988), 1, - anon_sym_LPAREN, - ACTIONS(8335), 1, + ACTIONS(8414), 1, anon_sym_RPAREN, - STATE(2206), 1, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(4983), 1, + STATE(7030), 1, sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(7145), 1, - sym__variable_designation, - STATE(6135), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6171), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721098,7 +715372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62219] = 21, + [66419] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721121,23 +715395,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8424), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8337), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6136), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6172), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721170,7 +715444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62312] = 17, + [66512] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721191,20 +715465,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8339), 1, - aux_sym_preproc_if_token3, - STATE(8143), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - ACTIONS(5458), 3, - anon_sym_LBRACK, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6137), 9, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(8912), 1, + anon_sym_RPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7030), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6173), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721214,7 +715493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5456), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721237,8 +715516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [62397] = 21, + [66605] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721261,23 +715539,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8341), 1, + ACTIONS(8914), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6138), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6174), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721310,7 +715588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62490] = 21, + [66698] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721331,25 +715609,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7853), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8856), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7551), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6139), 9, + STATE(7847), 1, + sym_tuple_pattern, + STATE(7966), 1, + sym_parameter_list, + STATE(6175), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721359,7 +715635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721382,7 +715658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62583] = 13, + [66788] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721403,14 +715679,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5604), 6, + ACTIONS(4743), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8916), 1, + anon_sym_DOT, + ACTIONS(4331), 2, + anon_sym_LPAREN, sym_grit_metavariable, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(6140), 9, + STATE(6176), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721420,12 +715702,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5602), 25, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -721446,7 +715726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [62660] = 21, + [66874] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721467,25 +715747,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(4454), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8918), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - ACTIONS(8343), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6141), 9, + sym_grit_metavariable, + STATE(6177), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721495,7 +715770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721518,7 +715793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62753] = 19, + sym__identifier_token, + [66960] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721539,23 +715815,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(4454), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8920), 1, + anon_sym_DOT, + ACTIONS(4331), 2, + anon_sym_LPAREN, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5567), 1, - sym_identifier, - STATE(7108), 1, - sym__name, - STATE(5468), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6142), 9, + STATE(6178), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721565,7 +715838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721588,7 +715861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62842] = 21, + sym__identifier_token, + [67046] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721609,25 +715883,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(1307), 1, - sym_grit_metavariable, - ACTIONS(7881), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(4331), 2, anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6143), 9, + sym_grit_metavariable, + ACTIONS(5408), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + STATE(6179), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721637,7 +715905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721660,7 +715928,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62935] = 21, + sym__identifier_token, + [67130] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721683,23 +715952,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8345), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7460), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6144), 9, + ACTIONS(8922), 4, + anon_sym_Cdecl, + anon_sym_Stdcall, + anon_sym_Thiscall, + anon_sym_Fastcall, + STATE(6180), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721732,7 +715996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63028] = 21, + [67214] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721753,25 +716017,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8924), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - ACTIONS(8347), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6145), 9, + sym_grit_metavariable, + STATE(6181), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721781,7 +716040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721804,7 +716063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63121] = 21, + sym__identifier_token, + [67300] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721825,25 +716085,87 @@ 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(1307), 1, + ACTIONS(5408), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8926), 1, + anon_sym_DOT, + ACTIONS(4331), 2, + anon_sym_LPAREN, sym_grit_metavariable, - ACTIONS(7888), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + STATE(6182), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4329), 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, + [67386] = 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(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(4331), 2, anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6146), 9, + sym_grit_metavariable, + ACTIONS(5292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + STATE(6183), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721853,7 +716175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721876,7 +716198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63214] = 21, + sym__identifier_token, + [67470] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721899,23 +716222,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8349), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7228), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6147), 9, + ACTIONS(8928), 4, + anon_sym_Cdecl, + anon_sym_Stdcall, + anon_sym_Thiscall, + anon_sym_Fastcall, + STATE(6184), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721948,7 +716266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63307] = 21, + [67554] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721969,25 +716287,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7883), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8930), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6148), 9, + sym_grit_metavariable, + STATE(6185), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721997,7 +716310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722020,7 +716333,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63400] = 14, + sym__identifier_token, + [67640] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722041,14 +716355,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8351), 1, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8932), 1, anon_sym_DOT, - ACTIONS(4357), 4, - anon_sym_COLON, + ACTIONS(4331), 2, anon_sym_LPAREN, - anon_sym_LBRACE, sym_grit_metavariable, - STATE(6149), 9, + STATE(6186), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722058,7 +716378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4355), 26, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722069,9 +716389,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, @@ -722085,7 +716402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [63479] = 21, + [67726] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722108,23 +716425,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7844), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(7319), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6150), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6187), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722157,7 +716472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63572] = 21, + [67816] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722178,97 +716493,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7988), 1, + ACTIONS(5408), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8918), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - ACTIONS(8353), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(4983), 1, - sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(7372), 1, - sym__variable_designation, - STATE(6151), 9, - sym_preproc_region, - sym_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, - [63665] = 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(1307), 1, sym_grit_metavariable, - ACTIONS(7900), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6152), 9, + STATE(6188), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722278,7 +716516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722301,7 +716539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63758] = 21, + sym__identifier_token, + [67902] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722322,25 +716561,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7851), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(5408), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8934), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6153), 9, + sym_grit_metavariable, + STATE(6189), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722350,7 +716584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722373,7 +716607,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63851] = 21, + sym__identifier_token, + [67988] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722394,25 +716629,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(4454), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8936), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - ACTIONS(8355), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6154), 9, + sym_grit_metavariable, + STATE(6190), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722422,7 +716652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722445,7 +716675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63944] = 13, + sym__identifier_token, + [68074] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722466,14 +716697,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5596), 6, + ACTIONS(4454), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8934), 1, + anon_sym_DOT, + ACTIONS(4331), 2, + anon_sym_LPAREN, sym_grit_metavariable, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(6155), 9, + STATE(6191), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722483,12 +716720,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5594), 25, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -722509,7 +716744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [64021] = 21, + [68160] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722532,23 +716767,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7902), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8518), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(4583), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6156), 9, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(7604), 1, + sym__variable_designation, + STATE(6192), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722581,7 +716814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64114] = 21, + [68250] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722602,25 +716835,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7830), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(5408), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8938), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6157), 9, + sym_grit_metavariable, + STATE(6193), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722630,7 +716858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722653,7 +716881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64207] = 21, + sym__identifier_token, + [68336] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722674,25 +716903,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7859), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(5408), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8940), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6158), 9, + sym_grit_metavariable, + STATE(6194), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722702,7 +716926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722725,7 +716949,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64300] = 21, + sym__identifier_token, + [68422] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722746,25 +716971,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(5408), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8936), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - ACTIONS(8357), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6159), 9, + sym_grit_metavariable, + STATE(6195), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722774,7 +716994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722797,7 +717017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64393] = 21, + sym__identifier_token, + [68508] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722818,25 +717039,88 @@ 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(1307), 1, + ACTIONS(4743), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8942), 1, + anon_sym_DOT, + ACTIONS(4331), 2, + anon_sym_LPAREN, sym_grit_metavariable, - ACTIONS(7832), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + STATE(6196), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4329), 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, + [68594] = 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(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8944), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6160), 9, + sym_grit_metavariable, + STATE(6197), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722846,7 +717130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722869,7 +717153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64486] = 14, + sym__identifier_token, + [68680] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722890,13 +717175,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8361), 2, - anon_sym_static, - anon_sym_async, - ACTIONS(8364), 2, + ACTIONS(8948), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6161), 10, + STATE(6198), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722906,13 +717188,14 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__lambda_expression_init_repeat1, - ACTIONS(8359), 26, + ACTIONS(8946), 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, @@ -722934,7 +717217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [64565] = 21, + [68756] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722955,25 +717238,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7919), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(5408), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8920), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6162), 9, + sym_grit_metavariable, + STATE(6199), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722983,7 +717261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723006,7 +717284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64658] = 21, + sym__identifier_token, + [68842] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723027,25 +717306,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(1307), 1, - sym_grit_metavariable, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(4331), 2, anon_sym_LPAREN, - ACTIONS(8366), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6163), 9, + sym_grit_metavariable, + ACTIONS(4743), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + STATE(6200), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723055,7 +717328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723078,7 +717351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64751] = 21, + sym__identifier_token, + [68926] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723099,25 +717373,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7904), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8950), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6164), 9, + sym_grit_metavariable, + STATE(6201), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723127,7 +717396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723150,7 +717419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64844] = 21, + sym__identifier_token, + [69012] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723171,25 +717441,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7921), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8952), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6165), 9, + sym_grit_metavariable, + STATE(6202), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723199,7 +717464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723222,7 +717487,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64937] = 21, + sym__identifier_token, + [69098] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723243,25 +717509,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7840), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(4454), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8926), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6166), 9, + sym_grit_metavariable, + STATE(6203), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723271,7 +717532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723294,7 +717555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65030] = 21, + sym__identifier_token, + [69184] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723315,25 +717577,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8954), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - ACTIONS(8368), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6167), 9, + sym_grit_metavariable, + STATE(6204), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723343,7 +717600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723366,7 +717623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65123] = 21, + sym__identifier_token, + [69270] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723387,25 +717645,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7917), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(4454), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8956), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6978), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6168), 9, + sym_grit_metavariable, + STATE(6205), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723415,7 +717668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723438,7 +717691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65216] = 18, + sym__identifier_token, + [69356] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723459,20 +717713,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7757), 1, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8267), 1, anon_sym_DOT, - ACTIONS(8370), 1, + ACTIONS(8958), 1, anon_sym_SEMI, ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6169), 9, + STATE(6206), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723506,7 +717760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [65302] = 18, + [69442] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723527,20 +717781,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, + ACTIONS(4454), 1, anon_sym_DASH_GT, - ACTIONS(7721), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(8372), 1, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8960), 1, anon_sym_DOT, ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6170), 9, + STATE(6207), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723574,7 +717828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [65388] = 18, + [69528] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723595,20 +717849,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4985), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(8374), 1, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8267), 1, anon_sym_DOT, + ACTIONS(8962), 1, + anon_sym_SEMI, ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6171), 9, + STATE(6208), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723642,7 +717896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [65474] = 18, + [69614] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723663,20 +717917,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7757), 1, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8964), 1, anon_sym_DOT, - ACTIONS(8376), 1, - anon_sym_SEMI, ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6172), 9, + STATE(6209), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723710,7 +717964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [65560] = 18, + [69700] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723731,20 +717985,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(8378), 1, - anon_sym_DOT, + ACTIONS(8213), 1, + anon_sym_QMARK, ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6173), 9, + ACTIONS(4454), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + STATE(6210), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723778,7 +718031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [65646] = 18, + [69784] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723799,20 +718052,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8380), 1, - anon_sym_DOT, - ACTIONS(4331), 2, + ACTIONS(8968), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6174), 9, + STATE(6211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723822,15 +718065,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(8966), 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, @@ -723846,7 +718094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [65732] = 20, + [69860] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723867,23 +718115,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(8297), 1, + ACTIONS(8856), 1, anon_sym_LPAREN, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7407), 1, + STATE(7530), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(8070), 1, + STATE(7794), 1, sym_tuple_pattern, - STATE(6175), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6212), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723893,7 +718141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723916,7 +718164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65822] = 18, + [69950] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723937,20 +718185,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8382), 1, - anon_sym_DOT, - ACTIONS(4331), 2, + ACTIONS(8972), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6176), 9, + STATE(6213), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723960,15 +718198,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(8970), 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, @@ -723984,7 +718227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [65908] = 18, + [70026] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724005,88 +718248,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4416), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8384), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, - sym_grit_metavariable, - STATE(6177), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4329), 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(8740), 1, sym__identifier_token, - [65994] = 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(4416), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8386), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(8746), 1, sym_grit_metavariable, - STATE(6178), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5479), 1, + sym__simple_name, + STATE(5561), 1, + sym_identifier, + ACTIONS(8731), 2, + anon_sym_operator, + anon_sym_this, + STATE(6214), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724096,7 +718273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(8743), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724119,8 +718296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [66080] = 18, + [70114] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724141,88 +718317,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4416), 1, + ACTIONS(4450), 1, anon_sym_DASH_GT, - ACTIONS(7721), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(8388), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, - sym_grit_metavariable, - STATE(6179), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4329), 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, - [66166] = 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(4416), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8390), 1, + ACTIONS(8974), 1, anon_sym_DOT, ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6180), 9, + STATE(6215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724256,7 +718364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [66252] = 13, + [70200] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724277,10 +718385,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8394), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6181), 9, + ACTIONS(8553), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6866), 1, + sym_tuple_pattern, + STATE(6887), 1, + sym_identifier, + STATE(7248), 1, + sym_variable_declarator, + STATE(6216), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724290,20 +718409,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8392), 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, @@ -724318,8 +718432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [66328] = 18, + [70287] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724340,20 +718453,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4954), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8384), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6182), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(8006), 1, + sym_identifier, + STATE(6217), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724363,7 +718477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724386,8 +718500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [66414] = 17, + [70374] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724410,18 +718523,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8553), 1, + anon_sym_LPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(7328), 1, + STATE(6866), 1, + sym_tuple_pattern, + STATE(6887), 1, sym_identifier, - ACTIONS(8396), 4, - anon_sym_Cdecl, - anon_sym_Stdcall, - anon_sym_Thiscall, - anon_sym_Fastcall, - STATE(6183), 9, + STATE(7281), 1, + sym_variable_declarator, + STATE(6218), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724454,7 +718568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [66498] = 13, + [70461] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724475,10 +718589,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8400), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6184), 9, + ACTIONS(5228), 1, + sym_discard, + ACTIONS(8553), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7102), 1, + sym_tuple_pattern, + STATE(7242), 1, + sym_identifier, + STATE(6219), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724488,20 +718613,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8398), 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, @@ -724516,8 +718636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [66574] = 17, + [70548] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724538,19 +718657,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(4985), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(6185), 9, + ACTIONS(8553), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6806), 1, + sym_identifier, + STATE(6890), 1, + sym_tuple_pattern, + STATE(7262), 1, + sym_variable_declarator, + STATE(6220), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724560,7 +718681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724583,8 +718704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [66658] = 18, + [70635] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724605,20 +718725,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4954), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8388), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6186), 9, + ACTIONS(8553), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6612), 1, + sym_identifier, + STATE(6890), 1, + sym_tuple_pattern, + STATE(7262), 1, + sym_variable_declarator, + STATE(6221), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724628,7 +718749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724651,8 +718772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [66744] = 20, + [70722] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724675,21 +718795,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, - anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8553), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8976), 1, + sym_discard, + STATE(2207), 1, sym__reserved_identifier, - STATE(7362), 1, + STATE(7477), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6187), 9, + STATE(7479), 1, + sym_tuple_pattern, + STATE(6222), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724722,7 +718840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [66834] = 18, + [70809] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724743,20 +718861,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4954), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8402), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6188), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6989), 1, + sym_identifier, + STATE(7868), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6223), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724766,7 +718885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724789,8 +718908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [66920] = 18, + [70896] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724811,20 +718929,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8404), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6189), 9, + ACTIONS(8553), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6806), 1, + sym_identifier, + STATE(6890), 1, + sym_tuple_pattern, + STATE(7281), 1, + sym_variable_declarator, + STATE(6224), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724834,7 +718953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724857,8 +718976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [67006] = 18, + [70983] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724879,20 +718997,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4954), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8406), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6190), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7014), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6225), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724902,7 +719021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724925,8 +719044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [67092] = 19, + [71070] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724947,22 +719065,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8178), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8188), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5478), 1, - sym__simple_name, - STATE(5563), 1, + STATE(7868), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(8006), 1, sym_identifier, - ACTIONS(8186), 2, - anon_sym_operator, - anon_sym_this, - STATE(6191), 9, + STATE(6226), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724972,7 +719089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8181), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724995,7 +719112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [67180] = 18, + [71157] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725016,20 +719133,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4416), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8408), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6192), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7673), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(8006), 1, + sym_identifier, + STATE(6227), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725039,7 +719157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725062,8 +719180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [67266] = 20, + [71244] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725086,21 +719203,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(4234), 1, - sym_discard, - ACTIONS(7988), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(4983), 1, + STATE(6808), 1, sym_identifier, - STATE(4985), 1, - sym_parenthesized_variable_designation, - STATE(7519), 1, - sym__variable_designation, - STATE(6193), 9, + STATE(7868), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6228), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725133,7 +719248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [67356] = 18, + [71331] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725154,20 +719269,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4416), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8410), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(4413), 1, + sym__identifier_token, + ACTIONS(4421), 1, sym_grit_metavariable, - STATE(6194), 9, + STATE(5555), 1, + sym_identifier, + STATE(5562), 1, + sym__reserved_identifier, + STATE(5632), 1, + sym_generic_name, + STATE(5641), 1, + sym__simple_name, + STATE(6229), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725177,7 +719291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(4415), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725200,8 +719314,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, + [71415] = 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(4423), 1, sym__identifier_token, - [67442] = 20, + ACTIONS(7262), 1, + sym_grit_metavariable, + STATE(2394), 1, + sym_identifier, + STATE(2402), 1, + sym__reserved_identifier, + STATE(2415), 1, + sym_generic_name, + STATE(2431), 1, + sym__simple_name, + STATE(6230), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4425), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [71499] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725222,23 +719401,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(8978), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(8986), 1, sym_grit_metavariable, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7578), 1, + STATE(7708), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7706), 1, - sym_tuple_pattern, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6195), 9, + ACTIONS(8984), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6231), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725248,7 +719422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8981), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725271,7 +719445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [67532] = 18, + [71581] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725292,20 +719466,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4954), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8410), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(4113), 1, + sym__identifier_token, + ACTIONS(4119), 1, sym_grit_metavariable, - STATE(6196), 9, + STATE(3731), 1, + sym_identifier, + STATE(3824), 1, + sym__reserved_identifier, + STATE(4273), 1, + sym_generic_name, + STATE(4507), 1, + sym__simple_name, + STATE(6232), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725315,7 +719488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(4115), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725338,8 +719511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [67618] = 18, + [71665] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725360,20 +719532,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4954), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8386), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(6197), 9, + STATE(2210), 1, + sym_generic_name, + STATE(2652), 1, + sym__reserved_identifier, + STATE(5479), 1, + sym__simple_name, + STATE(6638), 1, + sym_identifier, + STATE(6233), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725383,7 +719554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725406,8 +719577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [67704] = 18, + [71749] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725428,20 +719598,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4985), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8412), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6198), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, + sym_identifier, + STATE(2356), 1, + sym__simple_name, + STATE(6234), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725451,7 +719620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725474,8 +719643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [67790] = 17, + [71833] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725496,19 +719664,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(4416), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(6199), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, + sym_identifier, + STATE(2391), 1, + sym__simple_name, + STATE(6235), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725518,7 +719686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725541,8 +719709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [67874] = 18, + [71917] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725563,20 +719730,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4704), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8414), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(4216), 1, + sym__identifier_token, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(6200), 9, + STATE(3088), 1, + sym_identifier, + STATE(3145), 1, + sym_generic_name, + STATE(3150), 1, + sym__simple_name, + STATE(3771), 1, + sym__reserved_identifier, + STATE(6236), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725586,7 +719752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725609,8 +719775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [67960] = 13, + [72001] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725631,10 +719796,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8418), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6201), 9, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7294), 1, + sym_identifier, + STATE(6237), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725644,20 +719818,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8416), 28, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, anon_sym_scoped, anon_sym_var, - sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -725672,8 +719841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [68036] = 18, + [72085] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725694,20 +719862,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8420), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(8989), 1, + sym__identifier_token, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(6202), 9, + STATE(2210), 1, + sym_generic_name, + STATE(2277), 1, + sym__reserved_identifier, + STATE(5463), 1, + sym__simple_name, + STATE(5561), 1, + sym_identifier, + STATE(6238), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725717,7 +719884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725740,8 +719907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [68122] = 18, + [72169] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725762,20 +719928,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4954), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8390), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(8995), 1, + sym__identifier_token, + ACTIONS(8999), 1, sym_grit_metavariable, - STATE(6203), 9, + STATE(2666), 1, + sym_identifier, + STATE(2713), 1, + sym_generic_name, + STATE(2787), 1, + sym__simple_name, + STATE(2796), 1, + sym__reserved_identifier, + STATE(6239), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725785,7 +719950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(8997), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725808,8 +719973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [68208] = 17, + [72253] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725832,18 +719996,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8213), 1, + anon_sym_QMARK, + STATE(2207), 1, sym__reserved_identifier, - STATE(7455), 1, + STATE(7294), 1, sym_identifier, - ACTIONS(8422), 4, - anon_sym_Cdecl, - anon_sym_Stdcall, - anon_sym_Thiscall, - anon_sym_Fastcall, - STATE(6204), 9, + STATE(6240), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725876,7 +720039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [68292] = 17, + [72337] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725897,86 +720060,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(4331), 2, - anon_sym_LPAREN, - sym_grit_metavariable, - ACTIONS(4954), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(6205), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4329), 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(4216), 1, sym__identifier_token, - [68376] = 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(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(4230), 1, sym_grit_metavariable, - ACTIONS(4704), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(6206), 9, + STATE(3731), 1, + sym_identifier, + STATE(3771), 1, + sym__reserved_identifier, + STATE(4273), 1, + sym_generic_name, + STATE(4507), 1, + sym__simple_name, + STATE(6241), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725986,7 +720082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726009,8 +720105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [68460] = 18, + [72421] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726031,20 +720126,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4704), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8424), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(8989), 1, + sym__identifier_token, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(6207), 9, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, + sym_identifier, + STATE(2277), 1, + sym__reserved_identifier, + STATE(2292), 1, + sym__simple_name, + STATE(6242), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726054,7 +720148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726077,8 +720171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [68546] = 18, + [72505] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726099,88 +720192,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8426), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, - sym_grit_metavariable, - STATE(6208), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4329), 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, - [68632] = 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(4416), 1, - anon_sym_DASH_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8428), 1, - anon_sym_DOT, - ACTIONS(4331), 2, - anon_sym_LPAREN, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6209), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, + sym_identifier, + STATE(2449), 1, + sym__simple_name, + STATE(6243), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726190,7 +720214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4329), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726213,8 +720237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [68718] = 19, + [72589] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726235,21 +720258,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - ACTIONS(8019), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6783), 1, - sym_tuple_pattern, - STATE(6926), 1, + STATE(3088), 1, sym_identifier, - STATE(7130), 1, - sym_variable_declarator, - STATE(6210), 9, + STATE(3145), 1, + sym_generic_name, + STATE(3151), 1, + sym__simple_name, + STATE(3771), 1, + sym__reserved_identifier, + STATE(6244), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726259,7 +720280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726282,7 +720303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [68805] = 19, + [72673] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726303,21 +720324,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4413), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(4421), 1, sym_grit_metavariable, - ACTIONS(8019), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6783), 1, - sym_tuple_pattern, - STATE(6926), 1, + STATE(5555), 1, sym_identifier, - STATE(7181), 1, - sym_variable_declarator, - STATE(6211), 9, + STATE(5562), 1, + sym__reserved_identifier, + STATE(5624), 1, + sym__simple_name, + STATE(5632), 1, + sym_generic_name, + STATE(6245), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726327,7 +720346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4415), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726350,7 +720369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [68892] = 19, + [72757] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726371,21 +720390,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(5698), 3, + anon_sym_LBRACK, sym_grit_metavariable, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6834), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7736), 1, - sym__lambda_parameters, - STATE(6212), 9, + aux_sym_preproc_if_token1, + STATE(6246), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726395,10 +720404,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5696), 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, @@ -726418,7 +720429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [68979] = 19, + sym__identifier_token, + [72831] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726441,19 +720453,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8213), 1, + anon_sym_QMARK, + STATE(2207), 1, sym__reserved_identifier, - STATE(6945), 1, + STATE(7236), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(6213), 9, + STATE(6247), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726486,7 +720496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69066] = 19, + [72915] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726507,21 +720517,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4208), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(4214), 1, sym_grit_metavariable, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6934), 1, + STATE(3147), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7736), 1, - sym__lambda_parameters, - STATE(6214), 9, + STATE(3148), 1, + sym__reserved_identifier, + STATE(3247), 1, + sym_generic_name, + STATE(3331), 1, + sym__simple_name, + STATE(6248), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726531,7 +720539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4210), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726554,7 +720562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69153] = 19, + [72999] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726577,19 +720585,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8019), 1, - anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(9001), 1, + anon_sym_RBRACE, + STATE(2207), 1, sym__reserved_identifier, - STATE(6841), 1, + STATE(7134), 1, + sym_with_initializer, + STATE(7664), 1, sym_identifier, - STATE(6851), 1, - sym_tuple_pattern, - STATE(7181), 1, - sym_variable_declarator, - STATE(6215), 9, + STATE(6249), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726622,7 +720628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69240] = 19, + [73083] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726645,19 +720651,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8019), 1, - anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(9003), 1, + anon_sym_RBRACE, + STATE(2207), 1, sym__reserved_identifier, - STATE(6841), 1, + STATE(7337), 1, + sym_with_initializer, + STATE(7664), 1, sym_identifier, - STATE(6851), 1, - sym_tuple_pattern, - STATE(7226), 1, - sym_variable_declarator, - STATE(6216), 9, + STATE(6250), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726690,7 +720694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69327] = 19, + [73167] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726711,21 +720715,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - ACTIONS(8019), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6593), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(6783), 1, - sym_tuple_pattern, - STATE(7130), 1, - sym_variable_declarator, - STATE(6217), 9, + STATE(2277), 1, + sym__reserved_identifier, + STATE(2377), 1, + sym__simple_name, + STATE(6251), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726735,7 +720737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726758,7 +720760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69414] = 19, + [73251] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726779,21 +720781,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(9005), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4086), 3, + anon_sym_LBRACK, sym_grit_metavariable, - ACTIONS(5470), 1, - sym_discard, - ACTIONS(8019), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7110), 1, - sym_tuple_pattern, - STATE(7187), 1, - sym_identifier, - STATE(6218), 9, + aux_sym_preproc_if_token1, + STATE(6252), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726803,7 +720798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4084), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726826,7 +720821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69501] = 19, + sym__identifier_token, + [73327] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726849,19 +720845,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8019), 1, - anon_sym_LPAREN, - ACTIONS(8430), 1, - sym_discard, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7564), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(7565), 1, - sym_tuple_pattern, - STATE(6219), 9, + STATE(3049), 1, + sym__simple_name, + STATE(6253), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726894,7 +720888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69588] = 19, + [73411] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726915,21 +720909,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(5204), 3, + anon_sym_LBRACK, sym_grit_metavariable, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7736), 1, - sym__lambda_parameters, - STATE(8086), 1, - sym_identifier, - STATE(6220), 9, + aux_sym_preproc_if_token1, + STATE(6254), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726939,10 +720923,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5202), 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, @@ -726962,7 +720948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69675] = 19, + sym__identifier_token, + [73485] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726985,19 +720972,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + STATE(2207), 1, sym__reserved_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7806), 1, - sym__lambda_parameters, - STATE(8086), 1, + STATE(7236), 1, sym_identifier, - STATE(6221), 9, + STATE(6255), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727030,7 +721015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69762] = 19, + [73569] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727051,21 +721036,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7769), 1, - sym__lambda_parameters, - STATE(8086), 1, + STATE(2746), 1, sym_identifier, - STATE(6222), 9, + STATE(2929), 1, + sym_generic_name, + STATE(2934), 1, + sym__simple_name, + STATE(6256), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727075,7 +721058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727098,7 +721081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69849] = 18, + [73653] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727119,19 +721102,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4448), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(7274), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(2393), 1, + STATE(3147), 1, sym_identifier, - STATE(2395), 1, - sym__reserved_identifier, - STATE(2408), 1, + STATE(3247), 1, sym_generic_name, - STATE(5256), 1, + STATE(3327), 1, sym__simple_name, - STATE(6223), 9, + STATE(3771), 1, + sym__reserved_identifier, + STATE(6257), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727141,7 +721124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4450), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727164,7 +721147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69933] = 18, + [73737] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727187,17 +721170,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2440), 1, + STATE(2321), 1, sym__simple_name, - STATE(6224), 9, + STATE(6258), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727230,7 +721213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70017] = 17, + [73821] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727251,18 +721234,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(9007), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(9011), 1, sym_grit_metavariable, - STATE(2737), 1, - sym__reserved_identifier, - STATE(6571), 1, + STATE(3603), 1, sym_identifier, - ACTIONS(8432), 2, - anon_sym_class, - anon_sym_struct, - STATE(6225), 9, + STATE(3834), 1, + sym__simple_name, + STATE(3873), 1, + sym__reserved_identifier, + STATE(3961), 1, + sym_generic_name, + STATE(6259), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727272,7 +721256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(9009), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727295,7 +721279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70099] = 18, + [73905] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727316,19 +721300,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2226), 1, + STATE(2227), 1, sym__simple_name, - STATE(6226), 9, + STATE(2277), 1, + sym__reserved_identifier, + STATE(6260), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727338,7 +721322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727361,7 +721345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70183] = 18, + [73989] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727384,17 +721368,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8434), 1, - anon_sym_RBRACE, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7216), 1, - sym_with_initializer, - STATE(7857), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(6227), 9, + STATE(2386), 1, + sym__simple_name, + STATE(6261), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727427,7 +721411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70267] = 18, + [74073] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727448,19 +721432,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9013), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(9017), 1, sym_grit_metavariable, - ACTIONS(8436), 1, - anon_sym_RBRACE, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7071), 1, - sym_with_initializer, - STATE(7857), 1, + STATE(2394), 1, sym_identifier, - STATE(6228), 9, + STATE(2409), 1, + sym__simple_name, + STATE(2415), 1, + sym_generic_name, + STATE(2682), 1, + sym__reserved_identifier, + STATE(6262), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727470,7 +721454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9015), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727493,7 +721477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70351] = 18, + [74157] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727516,17 +721500,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8438), 1, - anon_sym_operator, - ACTIONS(8440), 1, - anon_sym_this, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6642), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(6229), 9, + STATE(2345), 1, + sym__simple_name, + STATE(6263), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727559,7 +721543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70435] = 18, + [74241] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727580,19 +721564,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, - sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(5670), 3, + anon_sym_LBRACK, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2281), 1, - sym__reserved_identifier, - STATE(2316), 1, - sym__simple_name, - STATE(6230), 9, + aux_sym_preproc_if_token1, + STATE(6264), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727602,10 +721578,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(5668), 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, @@ -727625,7 +721603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70519] = 18, + sym__identifier_token, + [74315] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727648,17 +721627,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7076), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(6231), 9, + STATE(2432), 1, + sym__simple_name, + STATE(6265), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727691,7 +721670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70603] = 18, + [74399] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727712,19 +721691,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(9019), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(9023), 1, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(2283), 1, sym_identifier, - STATE(2281), 1, - sym__reserved_identifier, - STATE(2387), 1, + STATE(2287), 1, sym__simple_name, - STATE(6232), 9, + STATE(2291), 1, + sym__reserved_identifier, + STATE(2309), 1, + sym_generic_name, + STATE(6266), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727734,7 +721713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(9021), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727757,7 +721736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70687] = 18, + [74483] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727778,19 +721757,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(8448), 1, - anon_sym_RBRACE, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7291), 1, - sym_with_initializer, - STATE(7857), 1, + STATE(6554), 1, sym_identifier, - STATE(6233), 9, + ACTIONS(9025), 2, + anon_sym_class, + anon_sym_struct, + STATE(6267), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727800,7 +721778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727823,7 +721801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70771] = 18, + [74565] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727844,19 +721822,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2272), 1, + STATE(2222), 1, sym__simple_name, - STATE(2281), 1, + STATE(2277), 1, sym__reserved_identifier, - STATE(6234), 9, + STATE(6268), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727866,7 +721844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727889,7 +721867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70855] = 18, + [74649] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727910,19 +721888,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(5674), 3, + anon_sym_LBRACK, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2420), 1, - sym__simple_name, - STATE(6235), 9, + aux_sym_preproc_if_token1, + STATE(6269), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727932,10 +721902,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5672), 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, @@ -727955,7 +721927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70939] = 18, + sym__identifier_token, + [74723] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727976,19 +721949,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2208), 1, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2234), 1, + STATE(2427), 1, sym__simple_name, - STATE(2281), 1, - sym__reserved_identifier, - STATE(6236), 9, + STATE(6270), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727998,7 +721971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728021,7 +721994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71023] = 18, + [74807] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728042,19 +722015,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4226), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4232), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(3510), 1, + ACTIONS(9027), 1, + anon_sym_operator, + ACTIONS(9029), 1, + anon_sym_this, + STATE(2207), 1, sym__reserved_identifier, - STATE(3517), 1, + STATE(6643), 1, sym_identifier, - STATE(3805), 1, - sym_generic_name, - STATE(3999), 1, - sym__simple_name, - STATE(6237), 9, + STATE(6271), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728064,7 +722037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4228), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728087,7 +722060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71107] = 18, + [74891] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728110,17 +722083,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(9031), 1, + anon_sym_RBRACE, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(7268), 1, + sym_with_initializer, + STATE(7664), 1, sym_identifier, - STATE(2310), 1, - sym__simple_name, - STATE(6238), 9, + STATE(6272), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728153,7 +722126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71191] = 18, + [74975] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728176,17 +722149,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2293), 1, + STATE(2267), 1, sym__simple_name, - STATE(6239), 9, + STATE(6273), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728219,7 +722192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71275] = 18, + [75059] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728240,19 +722213,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(4060), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(5136), 1, - sym__reserved_identifier, - STATE(5402), 1, + STATE(3731), 1, sym_identifier, - STATE(5463), 1, + STATE(3771), 1, + sym__reserved_identifier, + STATE(4141), 1, sym__simple_name, - STATE(5467), 1, + STATE(4273), 1, sym_generic_name, - STATE(6240), 9, + STATE(6274), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728262,7 +722235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728285,7 +722258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71359] = 18, + [75143] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728306,19 +722279,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(4423), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(7262), 1, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(2394), 1, sym_identifier, - STATE(2281), 1, + STATE(2402), 1, sym__reserved_identifier, - STATE(2310), 1, + STATE(2409), 1, sym__simple_name, - STATE(6241), 9, + STATE(2415), 1, + sym_generic_name, + STATE(6275), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728328,7 +722301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(4425), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728351,7 +722324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71443] = 18, + [75227] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728372,19 +722345,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8450), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(8454), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2279), 1, - sym_identifier, - STATE(2298), 1, + STATE(2210), 1, sym_generic_name, - STATE(2301), 1, - sym__simple_name, - STATE(2308), 1, + STATE(2217), 1, + sym_identifier, + STATE(2277), 1, sym__reserved_identifier, - STATE(6242), 9, + STATE(2294), 1, + sym__simple_name, + STATE(6276), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728394,7 +722367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8452), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728417,7 +722390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71527] = 18, + [75311] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728438,19 +722411,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8456), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(8460), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(5463), 1, - sym__simple_name, - STATE(5467), 1, + STATE(2210), 1, sym_generic_name, - STATE(5901), 1, - sym__reserved_identifier, - STATE(6587), 1, + STATE(2217), 1, sym_identifier, - STATE(6243), 9, + STATE(2223), 1, + sym__simple_name, + STATE(2277), 1, + sym__reserved_identifier, + STATE(6277), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728460,7 +722433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8458), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728483,7 +722456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71611] = 18, + [75395] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728504,84 +722477,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9019), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(9023), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(2283), 1, sym_identifier, - STATE(2364), 1, - sym__simple_name, - STATE(6244), 9, - sym_preproc_region, - sym_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, - [71695] = 17, - ACTIONS(8462), 1, - sym_integer_literal, - ACTIONS(8464), 1, - aux_sym_preproc_if_token2, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - STATE(6762), 1, + STATE(2291), 1, sym__reserved_identifier, - STATE(7102), 1, - sym_identifier, - ACTIONS(7927), 2, - sym__identifier_token, - sym_grit_metavariable, - STATE(6245), 9, + STATE(2295), 1, + sym__simple_name, + STATE(2309), 1, + sym_generic_name, + STATE(6278), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728591,7 +722499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7929), 22, + ACTIONS(9021), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728614,7 +722522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71777] = 18, + [75479] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728635,19 +722543,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(9013), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(9017), 1, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(2394), 1, sym_identifier, - STATE(2281), 1, - sym__reserved_identifier, - STATE(2326), 1, + STATE(2415), 1, + sym_generic_name, + STATE(2431), 1, sym__simple_name, - STATE(6246), 9, + STATE(2682), 1, + sym__reserved_identifier, + STATE(6279), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728657,7 +722565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(9015), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728680,7 +722588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71861] = 18, + [75563] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728701,19 +722609,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2225), 1, + STATE(2277), 1, + sym__reserved_identifier, + STATE(5479), 1, sym__simple_name, - STATE(6247), 9, + STATE(5561), 1, + sym_identifier, + STATE(6280), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728723,7 +722631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728746,7 +722654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71945] = 17, + [75647] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728767,18 +722675,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(9033), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(9037), 1, sym_grit_metavariable, - STATE(2737), 1, - sym__reserved_identifier, - STATE(6567), 1, + STATE(2468), 1, sym_identifier, - ACTIONS(8486), 2, - anon_sym_class, - anon_sym_struct, - STATE(6248), 9, + STATE(2474), 1, + sym_generic_name, + STATE(2477), 1, + sym__simple_name, + STATE(2506), 1, + sym__reserved_identifier, + STATE(6281), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728788,7 +722697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(9035), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728811,7 +722720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72027] = 18, + [75731] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728832,19 +722741,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(4186), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(4195), 1, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2281), 1, + STATE(3071), 1, sym__reserved_identifier, - STATE(2293), 1, + STATE(3088), 1, + sym_identifier, + STATE(3145), 1, + sym_generic_name, + STATE(3289), 1, sym__simple_name, - STATE(6249), 9, + STATE(6282), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728854,7 +722763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(4188), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728877,7 +722786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72111] = 18, + [75815] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728900,17 +722809,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2389), 1, + STATE(2222), 1, sym__simple_name, - STATE(6250), 9, + STATE(6283), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728943,7 +722852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72195] = 13, + [75899] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728964,72 +722873,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5923), 3, - anon_sym_LBRACK, - sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6251), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5921), 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, + ACTIONS(25), 1, sym__identifier_token, - [72269] = 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(5919), 3, - anon_sym_LBRACK, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6252), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, + sym_identifier, + STATE(2258), 1, + sym__simple_name, + STATE(6284), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729039,12 +722895,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5917), 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, @@ -729064,8 +722918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [72343] = 18, + [75983] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729086,19 +722939,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(4423), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(7262), 1, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(2394), 1, sym_identifier, - STATE(2225), 1, - sym__simple_name, - STATE(2281), 1, + STATE(2402), 1, sym__reserved_identifier, - STATE(6253), 9, + STATE(2415), 1, + sym_generic_name, + STATE(5183), 1, + sym__simple_name, + STATE(6285), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729108,7 +722961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(4425), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729131,7 +722984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72427] = 18, + [76067] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729152,19 +723005,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(4208), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(4214), 1, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(3147), 1, sym_identifier, - STATE(2226), 1, - sym__simple_name, - STATE(2281), 1, + STATE(3148), 1, sym__reserved_identifier, - STATE(6254), 9, + STATE(3247), 1, + sym_generic_name, + STATE(3357), 1, + sym__simple_name, + STATE(6286), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729174,7 +723027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(4210), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729197,7 +723050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72511] = 18, + [76151] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729220,17 +723073,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2234), 1, + STATE(5463), 1, sym__simple_name, - STATE(6255), 9, + STATE(5561), 1, + sym_identifier, + STATE(6287), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729263,7 +723116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72595] = 18, + [76235] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729284,19 +723137,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2221), 1, + STATE(2277), 1, + sym__reserved_identifier, + STATE(2332), 1, sym__simple_name, - STATE(6256), 9, + STATE(6288), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729306,7 +723159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729329,7 +723182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72679] = 18, + [76319] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729350,19 +723203,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(3207), 1, sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(4080), 1, sym_grit_metavariable, - STATE(4670), 1, + STATE(5149), 1, sym__reserved_identifier, - STATE(4684), 1, + STATE(5356), 1, sym_identifier, - STATE(4781), 1, - sym_generic_name, - STATE(5022), 1, + STATE(5463), 1, sym__simple_name, - STATE(6257), 9, + STATE(5468), 1, + sym_generic_name, + STATE(6289), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729372,7 +723225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4210), 22, + ACTIONS(3211), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729395,7 +723248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72763] = 18, + [76403] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729416,19 +723269,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4186), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(4195), 1, sym_grit_metavariable, - ACTIONS(8488), 1, - anon_sym_RBRACE, - STATE(2206), 1, + STATE(3071), 1, sym__reserved_identifier, - STATE(7225), 1, - sym_with_initializer, - STATE(7857), 1, + STATE(3088), 1, sym_identifier, - STATE(6258), 9, + STATE(3145), 1, + sym_generic_name, + STATE(3150), 1, + sym__simple_name, + STATE(6290), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729438,7 +723291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4188), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729461,7 +723314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72847] = 18, + [76487] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729482,19 +723335,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8490), 1, + ACTIONS(8995), 1, sym__identifier_token, - ACTIONS(8494), 1, + ACTIONS(8999), 1, sym_grit_metavariable, - STATE(2393), 1, + STATE(2666), 1, sym_identifier, - STATE(2408), 1, + STATE(2713), 1, sym_generic_name, - STATE(2426), 1, + STATE(2784), 1, sym__simple_name, - STATE(2752), 1, + STATE(2796), 1, sym__reserved_identifier, - STATE(6259), 9, + STATE(6291), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729504,7 +723357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8492), 22, + ACTIONS(8997), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729527,7 +723380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72931] = 18, + [76571] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729548,19 +723401,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2281), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(5478), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5479), 1, sym__simple_name, - STATE(5563), 1, + STATE(5561), 1, sym_identifier, - STATE(6260), 9, + STATE(6292), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729570,7 +723423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729593,7 +723446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73015] = 18, + [76655] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729616,17 +723469,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2316), 1, + STATE(2412), 1, sym__simple_name, - STATE(6261), 9, + STATE(6293), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729659,7 +723512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73099] = 18, + [76739] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729680,19 +723533,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2339), 1, + STATE(2221), 1, sym__simple_name, - STATE(6262), 9, + STATE(2277), 1, + sym__reserved_identifier, + STATE(6294), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729702,7 +723555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729725,7 +723578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73183] = 13, + [76823] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729746,11 +723599,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4086), 3, - anon_sym_LBRACK, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6263), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, + sym_identifier, + STATE(2396), 1, + sym__simple_name, + STATE(6295), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729760,12 +723621,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4084), 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, @@ -729785,8 +723644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [73257] = 18, + [76907] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729807,19 +723665,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, + ACTIONS(4208), 1, sym__identifier_token, - ACTIONS(4060), 1, + ACTIONS(4214), 1, sym_grit_metavariable, - STATE(5136), 1, - sym__reserved_identifier, - STATE(5402), 1, + STATE(3147), 1, sym_identifier, - STATE(5467), 1, + STATE(3148), 1, + sym__reserved_identifier, + STATE(3247), 1, sym_generic_name, - STATE(5478), 1, + STATE(3327), 1, sym__simple_name, - STATE(6264), 9, + STATE(6296), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729829,7 +723687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, + ACTIONS(4210), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729852,7 +723710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73341] = 18, + [76991] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729873,19 +723731,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2387), 1, + STATE(2277), 1, + sym__reserved_identifier, + STATE(2321), 1, sym__simple_name, - STATE(6265), 9, + STATE(6297), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729895,7 +723753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729918,7 +723776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73425] = 18, + [77075] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729939,19 +723797,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, - sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(4086), 3, + anon_sym_LBRACK, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2281), 1, - sym__reserved_identifier, - STATE(2288), 1, - sym__simple_name, - STATE(6266), 9, + aux_sym_preproc_if_token1, + STATE(6298), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729961,10 +723811,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(4084), 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, @@ -729984,7 +723836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73509] = 18, + sym__identifier_token, + [77149] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730005,19 +723858,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2208), 1, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2281), 1, - sym__reserved_identifier, - STATE(2331), 1, + STATE(2404), 1, sym__simple_name, - STATE(6267), 9, + STATE(6299), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730027,7 +723880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730050,7 +723903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73593] = 18, + [77233] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730071,19 +723924,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - STATE(2206), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2652), 1, sym__reserved_identifier, - STATE(7313), 1, + STATE(5463), 1, + sym__simple_name, + STATE(6638), 1, sym_identifier, - STATE(6268), 9, + STATE(6300), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730093,7 +723946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730116,7 +723969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73677] = 13, + [77317] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730137,11 +723990,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5877), 3, - anon_sym_LBRACK, + ACTIONS(8989), 1, + sym__identifier_token, + ACTIONS(8993), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6269), 9, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, + sym_identifier, + STATE(2277), 1, + sym__reserved_identifier, + STATE(2319), 1, + sym__simple_name, + STATE(6301), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730151,12 +724012,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5875), 25, + ACTIONS(8991), 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, @@ -730176,8 +724035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [73751] = 18, + [77401] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730198,19 +724056,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4195), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(4204), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(3398), 1, - sym__reserved_identifier, - STATE(3405), 1, - sym_identifier, - STATE(3618), 1, + STATE(2210), 1, sym_generic_name, - STATE(3628), 1, + STATE(2217), 1, + sym_identifier, + STATE(2267), 1, sym__simple_name, - STATE(6270), 9, + STATE(2277), 1, + sym__reserved_identifier, + STATE(6302), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730220,7 +724078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4197), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730243,7 +724101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73835] = 18, + [77485] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730264,19 +724122,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8450), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(8454), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(2279), 1, + STATE(3602), 1, sym_identifier, - STATE(2298), 1, + STATE(3729), 1, sym_generic_name, - STATE(2302), 1, - sym__simple_name, - STATE(2308), 1, + STATE(3771), 1, sym__reserved_identifier, - STATE(6271), 9, + STATE(3905), 1, + sym__simple_name, + STATE(6303), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730286,7 +724144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8452), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730309,7 +724167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73919] = 18, + [77569] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730330,19 +724188,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7725), 1, - anon_sym_STAR, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7076), 1, + STATE(3602), 1, sym_identifier, - STATE(6272), 9, + STATE(3729), 1, + sym_generic_name, + STATE(3771), 1, + sym__reserved_identifier, + STATE(4221), 1, + sym__simple_name, + STATE(6304), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730352,7 +724210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730375,7 +724233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74003] = 18, + [77653] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730398,17 +724256,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2350), 1, + STATE(2377), 1, sym__simple_name, - STATE(6273), 9, + STATE(6305), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730441,7 +724299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74087] = 18, + [77737] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730462,85 +724320,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(3405), 1, + STATE(3731), 1, sym_identifier, - STATE(3618), 1, - sym_generic_name, - STATE(3628), 1, - sym__simple_name, - STATE(4670), 1, - sym__reserved_identifier, - STATE(6274), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4210), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [74171] = 18, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7725), 1, - anon_sym_STAR, - STATE(2206), 1, + STATE(3771), 1, sym__reserved_identifier, - STATE(7313), 1, - sym_identifier, - STATE(6275), 9, + STATE(4135), 1, + sym__simple_name, + STATE(4273), 1, + sym_generic_name, + STATE(6306), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730550,7 +724342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730573,7 +724365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74255] = 18, + [77821] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730594,19 +724386,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(9039), 1, sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(9043), 1, sym_grit_metavariable, - STATE(4646), 1, + STATE(5356), 1, sym_identifier, - STATE(4657), 1, + STATE(5463), 1, sym__simple_name, - STATE(4670), 1, - sym__reserved_identifier, - STATE(4690), 1, + STATE(5468), 1, sym_generic_name, - STATE(6276), 9, + STATE(5930), 1, + sym__reserved_identifier, + STATE(6307), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730616,7 +724408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4210), 22, + ACTIONS(9041), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730639,7 +724431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74339] = 18, + [77905] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730662,17 +724454,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2406), 1, + STATE(2221), 1, sym__simple_name, - STATE(6277), 9, + STATE(6308), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730705,7 +724497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74423] = 17, + [77989] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730726,18 +724518,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8496), 1, + ACTIONS(9019), 1, sym__identifier_token, - ACTIONS(8504), 1, + ACTIONS(9023), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7709), 1, + STATE(2283), 1, sym_identifier, - ACTIONS(8502), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6278), 9, + STATE(2291), 1, + sym__reserved_identifier, + STATE(2309), 1, + sym_generic_name, + STATE(2346), 1, + sym__simple_name, + STATE(6309), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730747,7 +724540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8499), 22, + ACTIONS(9021), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730770,7 +724563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74505] = 18, + [78073] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730791,19 +724584,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(3405), 1, - sym_identifier, - STATE(3618), 1, - sym_generic_name, - STATE(3761), 1, - sym__simple_name, - STATE(4670), 1, + ACTIONS(9045), 1, + anon_sym_operator, + ACTIONS(9047), 1, + anon_sym_this, + STATE(2207), 1, sym__reserved_identifier, - STATE(6279), 9, + STATE(6637), 1, + sym_identifier, + STATE(6310), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730813,7 +724606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4210), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730836,7 +724629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74589] = 13, + [78157] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730857,11 +724650,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5943), 3, - anon_sym_LBRACK, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8281), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6280), 9, + STATE(2652), 1, + sym__reserved_identifier, + STATE(6566), 1, + sym_identifier, + ACTIONS(9049), 2, + anon_sym_class, + anon_sym_struct, + STATE(6311), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730871,12 +724671,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5941), 25, + ACTIONS(8277), 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, @@ -730896,8 +724694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [74663] = 13, + [78239] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730918,11 +724715,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5458), 3, - anon_sym_LBRACK, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6281), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, + sym_identifier, + STATE(2227), 1, + sym__simple_name, + STATE(6312), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730932,12 +724737,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5456), 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, @@ -730957,8 +724760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [74737] = 18, + [78323] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730979,19 +724781,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4195), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(4204), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(3398), 1, - sym__reserved_identifier, - STATE(3405), 1, + STATE(3602), 1, sym_identifier, - STATE(3618), 1, + STATE(3729), 1, sym_generic_name, - STATE(4012), 1, + STATE(3771), 1, + sym__reserved_identifier, + STATE(3907), 1, sym__simple_name, - STATE(6282), 9, + STATE(6313), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731001,7 +724803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4197), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731024,7 +724826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74821] = 14, + [78407] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731045,14 +724847,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8507), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4086), 3, - anon_sym_LBRACK, + ACTIONS(8989), 1, + sym__identifier_token, + ACTIONS(8993), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6283), 9, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, + sym_identifier, + STATE(2229), 1, + sym__simple_name, + STATE(2277), 1, + sym__reserved_identifier, + STATE(6314), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731062,7 +724869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4084), 23, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731085,8 +724892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [74897] = 17, + [78491] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731107,18 +724913,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8496), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(8504), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7664), 1, + STATE(6556), 1, sym_identifier, - ACTIONS(8502), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6284), 9, + ACTIONS(9051), 2, + anon_sym_class, + anon_sym_struct, + STATE(6315), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731128,7 +724934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8499), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731151,7 +724957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74979] = 18, + [78573] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731174,17 +724980,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2358), 1, + STATE(2233), 1, sym__simple_name, - STATE(6285), 9, + STATE(6316), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731217,7 +725023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75063] = 18, + [78657] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731238,85 +725044,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8456), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(8460), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(5467), 1, + STATE(2210), 1, sym_generic_name, - STATE(5478), 1, - sym__simple_name, - STATE(5901), 1, - sym__reserved_identifier, - STATE(6587), 1, - sym_identifier, - STATE(6286), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(8458), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [75147] = 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(8450), 1, - sym__identifier_token, - ACTIONS(8454), 1, - sym_grit_metavariable, - STATE(2279), 1, + STATE(2217), 1, sym_identifier, - STATE(2286), 1, - sym__simple_name, - STATE(2298), 1, - sym_generic_name, - STATE(2308), 1, + STATE(2277), 1, sym__reserved_identifier, - STATE(6287), 9, + STATE(2360), 1, + sym__simple_name, + STATE(6317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731326,7 +725066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8452), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731349,7 +725089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75231] = 18, + [78741] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731370,19 +725110,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4139), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4145), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(4662), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(4684), 1, - sym_identifier, - STATE(4781), 1, + STATE(2210), 1, sym_generic_name, - STATE(4896), 1, + STATE(2217), 1, + sym_identifier, + STATE(2319), 1, sym__simple_name, - STATE(6288), 9, + STATE(6318), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731392,7 +725132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4141), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731415,7 +725155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75315] = 18, + [78825] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731436,19 +725176,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8450), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8454), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2279), 1, - sym_identifier, - STATE(2298), 1, - sym_generic_name, - STATE(2308), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2349), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, + sym_identifier, + STATE(2229), 1, sym__simple_name, - STATE(6289), 9, + STATE(6319), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731458,7 +725198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8452), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731481,7 +725221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75399] = 18, + [78909] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731502,19 +725242,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4139), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4145), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(4662), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(4684), 1, - sym_identifier, - STATE(4781), 1, + STATE(2210), 1, sym_generic_name, - STATE(4924), 1, + STATE(2217), 1, + sym_identifier, + STATE(2354), 1, sym__simple_name, - STATE(6290), 9, + STATE(6320), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731524,7 +725264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4141), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731547,7 +725287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75483] = 18, + [78993] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731568,19 +725308,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(3405), 1, - sym_identifier, - STATE(3618), 1, - sym_generic_name, - STATE(4012), 1, - sym__simple_name, - STATE(4670), 1, + ACTIONS(9053), 1, + anon_sym_RBRACE, + STATE(2207), 1, sym__reserved_identifier, - STATE(6291), 9, + STATE(7164), 1, + sym_with_initializer, + STATE(7664), 1, + sym_identifier, + STATE(6321), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731590,7 +725330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4210), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731613,7 +725353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75567] = 18, + [79077] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731634,19 +725374,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4395), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4403), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(5570), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(5577), 1, - sym_identifier, - STATE(5595), 1, + STATE(2210), 1, sym_generic_name, - STATE(5628), 1, + STATE(2217), 1, + sym_identifier, + STATE(2353), 1, sym__simple_name, - STATE(6292), 9, + STATE(6322), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731656,7 +725396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4397), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731679,7 +725419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75651] = 18, + [79161] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731700,19 +725440,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(4186), 1, sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(4195), 1, sym_grit_metavariable, - STATE(3517), 1, + STATE(3071), 1, + sym__reserved_identifier, + STATE(3088), 1, sym_identifier, - STATE(3805), 1, + STATE(3145), 1, sym_generic_name, - STATE(3973), 1, + STATE(3151), 1, sym__simple_name, - STATE(4670), 1, - sym__reserved_identifier, - STATE(6293), 9, + STATE(6323), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731722,7 +725462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4210), 22, + ACTIONS(4188), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731745,7 +725485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75735] = 18, + [79245] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731768,17 +725508,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2430), 1, + STATE(2323), 1, sym__simple_name, - STATE(6294), 9, + STATE(6324), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731811,7 +725551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75819] = 18, + [79329] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731832,19 +725572,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2412), 1, + STATE(2277), 1, + sym__reserved_identifier, + STATE(2331), 1, sym__simple_name, - STATE(6295), 9, + STATE(6325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731854,7 +725594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731877,7 +725617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75903] = 18, + [79413] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731898,19 +725638,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4395), 1, + ACTIONS(9055), 1, sym__identifier_token, - ACTIONS(4403), 1, + ACTIONS(9059), 1, sym_grit_metavariable, - STATE(5570), 1, - sym__reserved_identifier, - STATE(5577), 1, + STATE(2688), 1, sym_identifier, - STATE(5595), 1, - sym_generic_name, - STATE(5619), 1, + STATE(2760), 1, sym__simple_name, - STATE(6296), 9, + STATE(2781), 1, + sym__reserved_identifier, + STATE(2807), 1, + sym_generic_name, + STATE(6326), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731920,7 +725660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4397), 22, + ACTIONS(9057), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731943,7 +725683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75987] = 18, + [79497] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731964,19 +725704,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4448), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7274), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2393), 1, - sym_identifier, - STATE(2395), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2408), 1, + STATE(2210), 1, sym_generic_name, - STATE(2426), 1, + STATE(2217), 1, + sym_identifier, + STATE(2379), 1, sym__simple_name, - STATE(6297), 9, + STATE(6327), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731986,7 +725726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4450), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732009,7 +725749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76071] = 18, + [79581] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732030,19 +725770,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(9039), 1, sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(9043), 1, sym_grit_metavariable, - STATE(4646), 1, + STATE(5356), 1, sym_identifier, - STATE(4670), 1, - sym__reserved_identifier, - STATE(4690), 1, + STATE(5468), 1, sym_generic_name, - STATE(4706), 1, + STATE(5479), 1, sym__simple_name, - STATE(6298), 9, + STATE(5930), 1, + sym__reserved_identifier, + STATE(6328), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732052,7 +725792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4210), 22, + ACTIONS(9041), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732075,7 +725815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76155] = 18, + [79665] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732096,19 +725836,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(3147), 1, sym_identifier, - STATE(2248), 1, + STATE(3247), 1, + sym_generic_name, + STATE(3357), 1, sym__simple_name, - STATE(2281), 1, + STATE(3771), 1, sym__reserved_identifier, - STATE(6299), 9, + STATE(6329), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732118,7 +725858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732141,7 +725881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76239] = 17, + [79749] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732162,18 +725902,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8496), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8504), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7697), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - ACTIONS(8502), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6300), 9, + STATE(2327), 1, + sym__simple_name, + STATE(6330), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732183,7 +725924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8499), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732206,7 +725947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76321] = 18, + [79833] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732227,19 +725968,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8456), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(8460), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(5402), 1, + STATE(3088), 1, sym_identifier, - STATE(5467), 1, + STATE(3145), 1, sym_generic_name, - STATE(5478), 1, + STATE(3289), 1, sym__simple_name, - STATE(5901), 1, + STATE(3771), 1, sym__reserved_identifier, - STATE(6301), 9, + STATE(6331), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732249,7 +725990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8458), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732272,7 +726013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76405] = 18, + [79917] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732295,17 +726036,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2355), 1, + STATE(2440), 1, sym__simple_name, - STATE(6302), 9, + STATE(6332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732338,7 +726079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76489] = 18, + [80001] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732359,19 +726100,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4226), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4232), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(3510), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(3517), 1, - sym_identifier, - STATE(3805), 1, + STATE(2210), 1, sym_generic_name, - STATE(3973), 1, + STATE(2217), 1, + sym_identifier, + STATE(2433), 1, sym__simple_name, - STATE(6303), 9, + STATE(6333), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732381,7 +726122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4228), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732404,7 +726145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76573] = 18, + [80085] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732425,19 +726166,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4195), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4204), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(3398), 1, + ACTIONS(9061), 1, + anon_sym_RBRACE, + STATE(2207), 1, sym__reserved_identifier, - STATE(3405), 1, + STATE(7175), 1, + sym_with_initializer, + STATE(7664), 1, sym_identifier, - STATE(3618), 1, - sym_generic_name, - STATE(3761), 1, - sym__simple_name, - STATE(6304), 9, + STATE(6334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732447,7 +726188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4197), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732470,7 +726211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76657] = 18, + [80169] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732491,19 +726232,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(4646), 1, - sym_identifier, - STATE(4670), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(4690), 1, - sym_generic_name, - STATE(4848), 1, - sym__simple_name, - STATE(6305), 9, + STATE(7468), 1, + sym_identifier, + ACTIONS(8841), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6335), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732513,7 +726253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4210), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732536,7 +726276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76741] = 18, + [80251] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732557,19 +726297,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(8978), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(8986), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2960), 1, + STATE(7720), 1, sym_identifier, - STATE(3100), 1, - sym_generic_name, - STATE(3130), 1, - sym__simple_name, - STATE(6306), 9, + ACTIONS(8984), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6336), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732579,7 +726318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8981), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732602,7 +726341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76825] = 18, + [80333] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732623,19 +726362,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3207), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(4080), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(5149), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(5356), 1, sym_identifier, - STATE(2248), 1, + STATE(5468), 1, + sym_generic_name, + STATE(5479), 1, sym__simple_name, - STATE(6307), 9, + STATE(6337), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732645,7 +726384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3211), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732668,7 +726407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76909] = 18, + [80417] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732691,17 +726430,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2418), 1, + STATE(2292), 1, sym__simple_name, - STATE(6308), 9, + STATE(6338), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732734,7 +726473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76993] = 18, + [80501] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732755,19 +726494,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(4670), 1, - sym__reserved_identifier, - STATE(4684), 1, - sym_identifier, - STATE(4781), 1, + STATE(2210), 1, sym_generic_name, - STATE(4896), 1, + STATE(2217), 1, + sym_identifier, + STATE(2258), 1, sym__simple_name, - STATE(6309), 9, + STATE(2277), 1, + sym__reserved_identifier, + STATE(6339), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732777,7 +726516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4210), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732800,7 +726539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77077] = 18, + [80585] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732821,19 +726560,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8456), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8460), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(5402), 1, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(5463), 1, + STATE(2365), 1, sym__simple_name, - STATE(5467), 1, - sym_generic_name, - STATE(5901), 1, - sym__reserved_identifier, - STATE(6310), 9, + STATE(6340), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732843,7 +726582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8458), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732866,7 +726605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77161] = 18, + [80669] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732887,19 +726626,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9019), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(9023), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(2283), 1, sym_identifier, - STATE(2446), 1, + STATE(2290), 1, sym__simple_name, - STATE(6311), 9, + STATE(2291), 1, + sym__reserved_identifier, + STATE(2309), 1, + sym_generic_name, + STATE(6341), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732909,7 +726648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9021), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732932,7 +726671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77245] = 18, + [80753] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732955,17 +726694,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8509), 1, + ACTIONS(9063), 1, anon_sym_operator, - ACTIONS(8511), 1, + ACTIONS(9065), 1, anon_sym_this, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6647), 1, + STATE(6641), 1, sym_identifier, - STATE(6312), 9, + STATE(6342), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732998,7 +726737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77329] = 18, + [80837] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733019,19 +726758,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8450), 1, + ACTIONS(9039), 1, sym__identifier_token, - ACTIONS(8454), 1, + ACTIONS(9043), 1, sym_grit_metavariable, - STATE(2279), 1, - sym_identifier, - STATE(2298), 1, + STATE(5468), 1, sym_generic_name, - STATE(2308), 1, - sym__reserved_identifier, - STATE(2341), 1, + STATE(5479), 1, sym__simple_name, - STATE(6313), 9, + STATE(5930), 1, + sym__reserved_identifier, + STATE(6567), 1, + sym_identifier, + STATE(6343), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733041,7 +726780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8452), 22, + ACTIONS(9041), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733064,7 +726803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77413] = 18, + [80921] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733085,19 +726824,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4448), 1, - sym__identifier_token, - ACTIONS(7274), 1, + ACTIONS(5711), 3, + anon_sym_LBRACK, sym_grit_metavariable, - STATE(2393), 1, - sym_identifier, - STATE(2395), 1, - sym__reserved_identifier, - STATE(2408), 1, - sym_generic_name, - STATE(2411), 1, - sym__simple_name, - STATE(6314), 9, + aux_sym_preproc_if_token1, + STATE(6344), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733107,10 +726838,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4450), 22, + ACTIONS(5709), 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, @@ -733130,7 +726863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77497] = 18, + sym__identifier_token, + [80995] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733153,17 +726887,83 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8513), 1, + ACTIONS(9067), 1, anon_sym_RBRACE, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7139), 1, + STATE(7078), 1, sym_with_initializer, - STATE(7857), 1, + STATE(7664), 1, sym_identifier, - STATE(6315), 9, + STATE(6345), 9, + sym_preproc_region, + sym_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, + [81079] = 18, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, + sym_identifier, + STATE(2441), 1, + sym__simple_name, + STATE(6346), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733196,40 +726996,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77581] = 18, - ACTIONS(3), 1, + [81163] = 17, + ACTIONS(9069), 1, + sym_integer_literal, + ACTIONS(9071), 1, + aux_sym_preproc_if_token2, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(7206), 1, sym_identifier, - STATE(2398), 1, - sym__simple_name, - STATE(6316), 9, + ACTIONS(8469), 2, + sym__identifier_token, + sym_grit_metavariable, + STATE(6347), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733239,7 +727038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733262,7 +727061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77665] = 18, + [81245] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733283,19 +727082,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(3147), 1, sym_identifier, - STATE(2229), 1, + STATE(3247), 1, + sym_generic_name, + STATE(3331), 1, sym__simple_name, - STATE(2281), 1, + STATE(3771), 1, sym__reserved_identifier, - STATE(6317), 9, + STATE(6348), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733305,7 +727104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733328,7 +727127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77749] = 18, + [81329] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733349,19 +727148,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(4413), 1, sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(4421), 1, sym_grit_metavariable, - STATE(3517), 1, + STATE(5555), 1, sym_identifier, - STATE(3805), 1, + STATE(5562), 1, + sym__reserved_identifier, + STATE(5632), 1, sym_generic_name, - STATE(3999), 1, + STATE(5657), 1, sym__simple_name, - STATE(4670), 1, - sym__reserved_identifier, - STATE(6318), 9, + STATE(6349), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733371,7 +727170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4210), 22, + ACTIONS(4415), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733394,7 +727193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77833] = 18, + [81413] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733415,19 +727214,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9039), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(9043), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, + STATE(5463), 1, + sym__simple_name, + STATE(5468), 1, sym_generic_name, - STATE(2219), 1, + STATE(5930), 1, + sym__reserved_identifier, + STATE(6567), 1, sym_identifier, - STATE(2334), 1, - sym__simple_name, - STATE(6319), 9, + STATE(6350), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733437,7 +727236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9041), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733460,7 +727259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77917] = 18, + [81497] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733481,19 +727280,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2222), 1, - sym__simple_name, - STATE(2281), 1, + STATE(2277), 1, sym__reserved_identifier, - STATE(6320), 9, + STATE(2323), 1, + sym__simple_name, + STATE(6351), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733503,7 +727302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733526,7 +727325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78001] = 18, + [81581] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733549,17 +727348,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2384), 1, + STATE(2364), 1, sym__simple_name, - STATE(6321), 9, + STATE(6352), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733592,7 +727391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78085] = 18, + [81665] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733613,19 +727412,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(3517), 1, - sym_identifier, - STATE(3805), 1, + STATE(2210), 1, sym_generic_name, - STATE(4212), 1, + STATE(2217), 1, + sym_identifier, + STATE(2233), 1, sym__simple_name, - STATE(4670), 1, + STATE(2277), 1, sym__reserved_identifier, - STATE(6322), 9, + STATE(6353), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733635,7 +727434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4210), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733658,7 +727457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78169] = 18, + [81749] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733679,19 +727478,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4113), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(4119), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(3731), 1, sym_identifier, - STATE(2352), 1, + STATE(3824), 1, + sym__reserved_identifier, + STATE(4135), 1, sym__simple_name, - STATE(6323), 9, + STATE(4273), 1, + sym_generic_name, + STATE(6354), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733701,7 +727500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4115), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733724,7 +727523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78253] = 18, + [81833] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733745,85 +727544,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4395), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4403), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(5570), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(5577), 1, - sym_identifier, - STATE(5595), 1, + STATE(2210), 1, sym_generic_name, - STATE(5705), 1, - sym__simple_name, - STATE(6324), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4397), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [78337] = 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(8515), 1, - sym__identifier_token, - ACTIONS(8519), 1, - sym_grit_metavariable, - STATE(4651), 1, + STATE(2217), 1, sym_identifier, - STATE(4674), 1, + STATE(2361), 1, sym__simple_name, - STATE(4685), 1, - sym_generic_name, - STATE(4734), 1, - sym__reserved_identifier, - STATE(6325), 9, + STATE(6355), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733833,7 +727566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8517), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733856,7 +727589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78421] = 18, + [81917] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733877,19 +727610,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8521), 1, + ACTIONS(4113), 1, sym__identifier_token, - ACTIONS(8525), 1, + ACTIONS(4119), 1, sym_grit_metavariable, - STATE(2732), 1, + STATE(3731), 1, sym_identifier, - STATE(2821), 1, - sym_generic_name, - STATE(2850), 1, + STATE(3824), 1, sym__reserved_identifier, - STATE(3047), 1, + STATE(4141), 1, sym__simple_name, - STATE(6326), 9, + STATE(4273), 1, + sym_generic_name, + STATE(6356), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733899,7 +727632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8523), 22, + ACTIONS(4115), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733922,7 +727655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78505] = 18, + [82001] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733943,19 +727676,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2281), 1, + ACTIONS(9063), 1, + anon_sym_operator, + ACTIONS(9093), 1, + anon_sym_this, + STATE(2207), 1, sym__reserved_identifier, - STATE(5463), 1, - sym__simple_name, - STATE(5563), 1, + STATE(6639), 1, sym_identifier, - STATE(6327), 9, + STATE(6357), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733965,7 +727698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733988,7 +727721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78589] = 18, + [82085] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734009,19 +727742,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(9019), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(9023), 1, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(2283), 1, sym_identifier, - STATE(2281), 1, + STATE(2291), 1, sym__reserved_identifier, - STATE(2328), 1, + STATE(2309), 1, + sym_generic_name, + STATE(2337), 1, sym__simple_name, - STATE(6328), 9, + STATE(6358), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734031,7 +727764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(9021), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -734054,7 +727787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78673] = 18, + [82169] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734075,19 +727808,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8527), 1, + ACTIONS(8978), 1, sym__identifier_token, - ACTIONS(8531), 1, + ACTIONS(8986), 1, sym_grit_metavariable, - STATE(2756), 1, - sym_identifier, - STATE(2853), 1, - sym_generic_name, - STATE(2905), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(3053), 1, - sym__simple_name, - STATE(6329), 9, + STATE(7746), 1, + sym_identifier, + ACTIONS(8984), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6359), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734097,7 +727829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8529), 22, + ACTIONS(8981), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -734120,7 +727852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78757] = 18, + [82251] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734141,19 +727873,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8533), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8537), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2455), 1, - sym_identifier, - STATE(2479), 1, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, sym_generic_name, - STATE(2506), 1, + STATE(2217), 1, + sym_identifier, + STATE(2223), 1, sym__simple_name, - STATE(2509), 1, - sym__reserved_identifier, - STATE(6330), 9, + STATE(6360), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734163,7 +727895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8535), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -734186,7 +727918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78841] = 18, + [82335] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734209,17 +727941,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2326), 1, + STATE(2360), 1, sym__simple_name, - STATE(6331), 9, + STATE(6361), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734252,7 +727984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78925] = 18, + [82419] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734273,19 +728005,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4139), 1, + ACTIONS(8978), 1, sym__identifier_token, - ACTIONS(4145), 1, + ACTIONS(8986), 1, sym_grit_metavariable, - STATE(4662), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(4684), 1, + STATE(7965), 1, sym_identifier, - STATE(4781), 1, - sym_generic_name, - STATE(5022), 1, - sym__simple_name, - STATE(6332), 9, + ACTIONS(8984), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6362), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734295,7 +728026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4141), 22, + ACTIONS(8981), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -734318,7 +728049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79009] = 18, + [82501] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734339,19 +728070,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(1307), 1, + ACTIONS(9100), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2359), 1, - sym__simple_name, - STATE(6333), 9, + ACTIONS(9097), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6363), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734361,7 +728085,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + aux_sym_using_directive_repeat1, + ACTIONS(9095), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -734384,7 +728109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79093] = 18, + sym__identifier_token, + [82576] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734407,17 +728133,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(9102), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(8082), 1, sym_identifier, - STATE(2229), 1, - sym__simple_name, - STATE(6334), 9, + STATE(6364), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734450,7 +728174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79177] = 18, + [82657] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734473,17 +728197,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(7108), 1, sym_identifier, - STATE(2371), 1, - sym__simple_name, - STATE(6335), 9, + STATE(7426), 1, + sym_using_variable_declarator, + STATE(6365), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734516,7 +728238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79261] = 18, + [82738] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734537,19 +728259,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(1307), 1, + ACTIONS(5584), 1, + aux_sym_preproc_if_token3, + ACTIONS(5204), 3, + anon_sym_LBRACK, sym_grit_metavariable, - ACTIONS(8438), 1, - anon_sym_operator, - ACTIONS(8539), 1, - anon_sym_this, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6648), 1, - sym_identifier, - STATE(6336), 9, + aux_sym_preproc_if_token1, + STATE(6366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734559,7 +728275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5202), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -734582,7 +728298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79345] = 18, + sym__identifier_token, + [82813] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734605,17 +728322,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(7431), 1, + sym_with_initializer, + STATE(7664), 1, sym_identifier, - STATE(2377), 1, - sym__simple_name, - STATE(6337), 9, + STATE(6367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734648,7 +728363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79429] = 18, + [82894] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734669,19 +728384,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - ACTIONS(8541), 1, - anon_sym_operator, - ACTIONS(8543), 1, - anon_sym_this, - STATE(2206), 1, + ACTIONS(9104), 1, + sym_integer_literal, + STATE(6755), 1, sym__reserved_identifier, - STATE(6649), 1, + STATE(7427), 1, sym_identifier, - STATE(6338), 9, + STATE(6368), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734691,7 +728404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -734714,7 +728427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79513] = 18, + [82975] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734737,17 +728450,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8841), 1, + anon_sym_COMMA, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(7344), 1, sym_identifier, - STATE(3349), 1, - sym__simple_name, - STATE(6339), 9, + STATE(6369), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734780,7 +728491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79597] = 18, + [83056] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734803,17 +728514,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(6539), 1, sym_identifier, - STATE(2450), 1, - sym__simple_name, - STATE(6340), 9, + STATE(6370), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734846,7 +728553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79681] = 18, + [83134] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734867,19 +728574,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(6557), 1, sym_identifier, - STATE(2272), 1, - sym__simple_name, - STATE(6341), 9, + STATE(6371), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734889,7 +728592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -734912,7 +728615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79765] = 18, + [83212] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734933,19 +728636,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(1307), 1, + ACTIONS(9106), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5478), 1, - sym__simple_name, - STATE(5563), 1, - sym_identifier, - STATE(6342), 9, + STATE(6372), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734955,9 +728648,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8984), 25, anon_sym_alias, anon_sym_global, + anon_sym_unsafe, + anon_sym_static, anon_sym_file, anon_sym_where, anon_sym_notnull, @@ -734978,7 +728673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79849] = 18, + sym__identifier_token, + [83284] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735001,17 +728697,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, + STATE(6541), 1, sym_identifier, - STATE(2222), 1, - sym__simple_name, - STATE(6343), 9, + STATE(6373), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735044,7 +728736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79933] = 18, + [83362] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735065,85 +728757,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(5478), 1, - sym__simple_name, - STATE(6640), 1, + STATE(7528), 1, sym_identifier, - STATE(6344), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [80017] = 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(8442), 1, - sym__identifier_token, - ACTIONS(8446), 1, - sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2221), 1, - sym__simple_name, - STATE(2281), 1, - sym__reserved_identifier, - STATE(6345), 9, + STATE(6374), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735153,7 +728775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8444), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735176,7 +728798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80101] = 17, + [83440] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735197,18 +728819,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6564), 1, + STATE(7209), 1, sym_identifier, - ACTIONS(8545), 2, - anon_sym_class, - anon_sym_struct, - STATE(6346), 9, + STATE(6375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735218,7 +728837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735241,7 +728860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80183] = 18, + [83518] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735262,85 +728881,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8442), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8446), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2281), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2384), 1, - sym__simple_name, - STATE(6347), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(8444), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [80267] = 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(8521), 1, - sym__identifier_token, - ACTIONS(8525), 1, - sym_grit_metavariable, - STATE(2732), 1, + STATE(6525), 1, sym_identifier, - STATE(2821), 1, - sym_generic_name, - STATE(2850), 1, - sym__reserved_identifier, - STATE(3050), 1, - sym__simple_name, - STATE(6348), 9, + STATE(6376), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735350,7 +728899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8523), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735373,7 +728922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80351] = 18, + [83596] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735394,85 +728943,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(4670), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4684), 1, - sym_identifier, - STATE(4781), 1, - sym_generic_name, - STATE(4924), 1, - sym__simple_name, - STATE(6349), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4210), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [80435] = 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(8490), 1, - sym__identifier_token, - ACTIONS(8494), 1, - sym_grit_metavariable, - STATE(2393), 1, + STATE(6565), 1, sym_identifier, - STATE(2408), 1, - sym_generic_name, - STATE(2411), 1, - sym__simple_name, - STATE(2752), 1, - sym__reserved_identifier, - STATE(6350), 9, + STATE(6377), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735482,7 +728961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8492), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735505,7 +728984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80519] = 18, + [83674] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735526,19 +729005,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2208), 1, - sym_generic_name, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(5463), 1, - sym__simple_name, - STATE(6640), 1, + STATE(6527), 1, sym_identifier, - STATE(6351), 9, + STATE(6378), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735548,7 +729023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735571,7 +729046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80603] = 17, + [83752] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735592,18 +729067,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8496), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(8504), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7954), 1, + STATE(7020), 1, sym_identifier, - ACTIONS(8502), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6352), 9, + STATE(6379), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735613,7 +729085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8499), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735636,7 +729108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80685] = 18, + [83830] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735657,19 +729129,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(8547), 1, - anon_sym_RBRACE, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7310), 1, - sym_with_initializer, - STATE(7857), 1, + STATE(7011), 1, sym_identifier, - STATE(6353), 9, + STATE(6380), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735679,7 +729147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735702,7 +729170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80769] = 18, + [83908] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735723,19 +729191,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3207), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(4080), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(5149), 1, sym__reserved_identifier, - STATE(2208), 1, - sym_generic_name, - STATE(5463), 1, - sym__simple_name, - STATE(5563), 1, + STATE(7417), 1, sym_identifier, - STATE(6354), 9, + STATE(6381), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735745,7 +729209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3211), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735768,7 +729232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80853] = 17, + [83986] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735791,16 +729255,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7416), 1, + STATE(6506), 1, sym_identifier, - ACTIONS(8293), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6355), 9, + STATE(6382), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735833,134 +729294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80935] = 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(4226), 1, - sym__identifier_token, - ACTIONS(4232), 1, - sym_grit_metavariable, - STATE(3510), 1, - sym__reserved_identifier, - STATE(3517), 1, - sym_identifier, - STATE(3805), 1, - sym_generic_name, - STATE(4212), 1, - sym__simple_name, - 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, - ACTIONS(4228), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [81019] = 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(8554), 1, - sym_grit_metavariable, - ACTIONS(8551), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6357), 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(8549), 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, - [81094] = 17, + [84064] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735983,15 +729317,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7197), 1, + STATE(6490), 1, sym_identifier, - STATE(7447), 1, - sym_using_variable_declarator, - STATE(6358), 9, + STATE(6383), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736024,7 +729356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81175] = 17, + [84142] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736047,15 +729379,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7433), 1, - sym_with_initializer, - STATE(7857), 1, + STATE(6497), 1, sym_identifier, - STATE(6359), 9, + STATE(6384), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736088,7 +729418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81256] = 17, + [84220] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736109,77 +729439,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7941), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8556), 1, - sym_integer_literal, - STATE(6762), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7459), 1, + STATE(6523), 1, sym_identifier, - STATE(6360), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7929), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [81337] = 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(5772), 1, - aux_sym_preproc_if_token3, - ACTIONS(5458), 3, - anon_sym_LBRACK, - sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6361), 9, + STATE(6385), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736189,7 +729457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5456), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -736212,8 +729480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [81412] = 17, + [84298] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736236,15 +729503,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, - anon_sym_COMMA, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7070), 1, + STATE(6509), 1, sym_identifier, - STATE(6362), 9, + STATE(6386), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736277,7 +729542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81493] = 17, + [84376] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736298,17 +729563,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(8558), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7991), 1, + STATE(7038), 1, sym_identifier, - STATE(6363), 9, + STATE(6387), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736318,7 +729581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -736341,7 +729604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81574] = 16, + [84454] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736364,13 +729627,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6550), 1, + STATE(6495), 1, sym_identifier, - STATE(6364), 9, + STATE(6388), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736403,7 +729666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81652] = 16, + [84532] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736424,15 +729687,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7004), 1, + STATE(7908), 1, sym_identifier, - STATE(6365), 9, + STATE(6389), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736442,7 +729705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -736465,7 +729728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81730] = 16, + [84610] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736486,15 +729749,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6585), 1, + STATE(7028), 1, sym_identifier, - STATE(6366), 9, + STATE(6390), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736504,7 +729767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -736527,7 +729790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81808] = 16, + [84688] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736548,15 +729811,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7739), 1, + STATE(6636), 1, sym_identifier, - STATE(6367), 9, + STATE(6391), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736566,7 +729829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -736589,7 +729852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81886] = 16, + [84766] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736610,15 +729873,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7039), 1, + STATE(6556), 1, sym_identifier, - STATE(6368), 9, + STATE(6392), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736628,7 +729891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -736651,7 +729914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81964] = 16, + [84844] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736672,15 +729935,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(4060), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(5136), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7545), 1, + STATE(7008), 1, sym_identifier, - STATE(6369), 9, + STATE(6393), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736690,7 +729953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -736713,7 +729976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82042] = 16, + [84922] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736734,15 +729997,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6644), 1, + STATE(6507), 1, sym_identifier, - STATE(6370), 9, + STATE(6394), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736752,7 +730015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -736775,7 +730038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82120] = 16, + [85000] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736798,13 +730061,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6543), 1, + STATE(6534), 1, sym_identifier, - STATE(6371), 9, + STATE(6395), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736837,7 +730100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82198] = 16, + [85078] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736858,15 +730121,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6552), 1, + STATE(6560), 1, sym_identifier, - STATE(6372), 9, + STATE(6396), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736876,7 +730139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -736899,7 +730162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82276] = 16, + [85156] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736920,15 +730183,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7040), 1, + STATE(7754), 1, sym_identifier, - STATE(6373), 9, + STATE(6397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736938,7 +730201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -736961,7 +730224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82354] = 16, + [85234] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736982,15 +730245,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6566), 1, + STATE(8056), 1, sym_identifier, - STATE(6374), 9, + STATE(6398), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737000,7 +730263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737023,7 +730286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82432] = 16, + [85312] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737046,13 +730309,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6541), 1, + STATE(6519), 1, sym_identifier, - STATE(6375), 9, + STATE(6399), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737085,7 +730348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82510] = 16, + [85390] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737108,13 +730371,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6951), 1, + STATE(7300), 1, sym_identifier, - STATE(6376), 9, + STATE(6400), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737147,7 +730410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82588] = 16, + [85468] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737168,15 +730431,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6503), 1, + STATE(6570), 1, sym_identifier, - STATE(6377), 9, + STATE(6401), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737186,7 +730449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737209,7 +730472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82666] = 16, + [85546] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737230,15 +730493,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6525), 1, + STATE(7015), 1, sym_identifier, - STATE(6378), 9, + STATE(6402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737248,7 +730511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737271,7 +730534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82744] = 16, + [85624] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737292,15 +730555,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6964), 1, + STATE(6644), 1, sym_identifier, - STATE(6379), 9, + STATE(6403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737310,7 +730573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737333,7 +730596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82822] = 16, + [85702] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737356,13 +730619,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7101), 1, + STATE(6484), 1, sym_identifier, - STATE(6380), 9, + STATE(6404), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737395,7 +730658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82900] = 16, + [85780] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737416,15 +730679,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4060), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(5136), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7415), 1, + STATE(7089), 1, sym_identifier, - STATE(6381), 9, + STATE(6405), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737434,7 +730697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737457,7 +730720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82978] = 16, + [85858] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737478,15 +730741,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6960), 1, + STATE(8096), 1, sym_identifier, - STATE(6382), 9, + STATE(6406), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737496,7 +730759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737519,7 +730782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83056] = 16, + [85936] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737540,15 +730803,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7869), 1, + STATE(7260), 1, sym_identifier, - STATE(6383), 9, + STATE(6407), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737558,7 +730821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737581,7 +730844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83134] = 16, + [86014] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737602,15 +730865,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6567), 1, + STATE(7021), 1, sym_identifier, - STATE(6384), 9, + STATE(6408), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737620,7 +730883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737643,7 +730906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83212] = 16, + [86092] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737666,13 +730929,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6505), 1, + STATE(7561), 1, sym_identifier, - STATE(6385), 9, + STATE(6409), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737705,7 +730968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83290] = 16, + [86170] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737726,15 +730989,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7021), 1, + STATE(6510), 1, sym_identifier, - STATE(6386), 9, + STATE(6410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737744,7 +731007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737767,7 +731030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83368] = 16, + [86248] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737790,13 +731053,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6502), 1, + STATE(6483), 1, sym_identifier, - STATE(6387), 9, + STATE(6411), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737829,7 +731092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83446] = 16, + [86326] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737850,15 +731113,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7856), 1, + STATE(6642), 1, sym_identifier, - STATE(6388), 9, + STATE(6412), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737868,7 +731131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737891,7 +731154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83524] = 16, + [86404] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737914,13 +731177,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6928), 1, + STATE(6674), 1, sym_identifier, - STATE(6389), 9, + STATE(6413), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737953,7 +731216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83602] = 16, + [86482] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737976,13 +731239,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6540), 1, + STATE(6498), 1, sym_identifier, - STATE(6390), 9, + STATE(6414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738015,7 +731278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83680] = 16, + [86560] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738038,13 +731301,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6970), 1, + STATE(6532), 1, sym_identifier, - STATE(6391), 9, + STATE(6415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738077,7 +731340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83758] = 16, + [86638] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738100,13 +731363,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7614), 1, + STATE(6486), 1, sym_identifier, - STATE(6392), 9, + STATE(6416), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738139,7 +731402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83836] = 16, + [86716] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738160,15 +731423,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6645), 1, + STATE(6962), 1, sym_identifier, - STATE(6393), 9, + STATE(6417), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738178,7 +731441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738201,7 +731464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83914] = 13, + [86794] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738222,9 +731485,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8560), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6394), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6963), 1, + sym_identifier, + STATE(6418), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738234,11 +731503,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8502), 25, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_unsafe, - anon_sym_static, anon_sym_file, anon_sym_where, anon_sym_notnull, @@ -738259,8 +731526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [83986] = 16, + [86872] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738281,15 +731547,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(3207), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(4080), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(5149), 1, sym__reserved_identifier, - STATE(7851), 1, + STATE(7598), 1, sym_identifier, - STATE(6395), 9, + STATE(6419), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738299,7 +731565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(3211), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738322,7 +731588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84064] = 16, + [86950] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738343,15 +731609,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7009), 1, + STATE(6992), 1, sym_identifier, - STATE(6396), 9, + STATE(6420), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738361,7 +731627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738384,7 +731650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84142] = 16, + [87028] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738407,13 +731673,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6531), 1, + STATE(7004), 1, sym_identifier, - STATE(6397), 9, + STATE(6421), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738446,7 +731712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84220] = 16, + [87106] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738469,13 +731735,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6676), 1, + STATE(7494), 1, sym_identifier, - STATE(6398), 9, + STATE(6422), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738508,7 +731774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84298] = 16, + [87184] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738529,15 +731795,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6518), 1, + STATE(6563), 1, sym_identifier, - STATE(6399), 9, + STATE(6423), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738547,7 +731813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738570,7 +731836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84376] = 16, + [87262] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738593,13 +731859,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6526), 1, + STATE(6952), 1, sym_identifier, - STATE(6400), 9, + STATE(6424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738632,7 +731898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84454] = 16, + [87340] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738655,13 +731921,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6488), 1, + STATE(7374), 1, sym_identifier, - STATE(6401), 9, + STATE(6425), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738694,7 +731960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84532] = 16, + [87418] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738715,15 +731981,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6536), 1, + STATE(6569), 1, sym_identifier, - STATE(6402), 9, + STATE(6426), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738733,7 +731999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738756,7 +732022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84610] = 16, + [87496] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738777,15 +732043,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6999), 1, + STATE(6554), 1, sym_identifier, - STATE(6403), 9, + STATE(6427), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738795,7 +732061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738818,7 +732084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84688] = 16, + [87574] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738839,15 +732105,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7785), 1, + STATE(8026), 1, sym_identifier, - STATE(6404), 9, + STATE(6428), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738857,7 +732123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738880,7 +732146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84766] = 16, + [87652] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738901,15 +732167,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6577), 1, + STATE(6929), 1, sym_identifier, - STATE(6405), 9, + STATE(6429), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738919,7 +732185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738942,7 +732208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84844] = 16, + [87730] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738963,15 +732229,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7445), 1, + STATE(7019), 1, sym_identifier, - STATE(6406), 9, + STATE(6430), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738981,7 +732247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -739004,7 +732270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84922] = 16, + [87808] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739025,15 +732291,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6930), 1, + STATE(6536), 1, sym_identifier, - STATE(6407), 9, + STATE(6431), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739043,7 +732309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -739066,7 +732332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85000] = 16, + [87886] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739089,13 +732355,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7055), 1, + STATE(6934), 1, sym_identifier, - STATE(6408), 9, + STATE(6432), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739128,7 +732394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85078] = 16, + [87964] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739149,15 +732415,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6570), 1, + STATE(6580), 1, sym_identifier, - STATE(6409), 9, + STATE(6433), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739167,7 +732433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -739190,7 +732456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85156] = 16, + [88042] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739211,15 +732477,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7347), 1, + STATE(6997), 1, sym_identifier, - STATE(6410), 9, + STATE(6434), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739229,7 +732495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -739252,7 +732518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85234] = 16, + [88120] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739273,15 +732539,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6937), 1, + STATE(7662), 1, sym_identifier, - STATE(6411), 9, + STATE(6435), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739291,7 +732557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -739314,7 +732580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85312] = 16, + [88198] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739337,13 +732603,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7214), 1, + STATE(6543), 1, sym_identifier, - STATE(6412), 9, + STATE(6436), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739376,7 +732642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85390] = 16, + [88276] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739399,13 +732665,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6537), 1, + STATE(7043), 1, sym_identifier, - STATE(6413), 9, + STATE(6437), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739438,7 +732704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85468] = 16, + [88354] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739459,15 +732725,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6560), 1, + STATE(6535), 1, sym_identifier, - STATE(6414), 9, + STATE(6438), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739477,7 +732743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -739500,7 +732766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85546] = 16, + [88432] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739521,15 +732787,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2737), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6575), 1, + STATE(6571), 1, sym_identifier, - STATE(6415), 9, + STATE(6439), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739539,7 +732805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -739562,7 +732828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85624] = 16, + [88510] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739583,15 +732849,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(1307), 1, + ACTIONS(9110), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7022), 1, - sym_identifier, - STATE(6416), 9, + STATE(6440), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739601,7 +732861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9108), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -739624,7 +732884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85702] = 16, + sym__identifier_token, + [88580] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739645,15 +732906,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6513), 1, - sym_identifier, - STATE(6417), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9122), 1, + anon_sym_group, + ACTIONS(9124), 1, + anon_sym_select, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(3390), 1, + sym_query_body, + STATE(5496), 1, + sym__select_or_group_clause, + STATE(6537), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6441), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739663,30 +732948,70 @@ 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, + [88668] = 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(9112), 1, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, + ACTIONS(9114), 1, anon_sym_from, - anon_sym_into, + ACTIONS(9116), 1, anon_sym_join, - anon_sym_on, - anon_sym_equals, + ACTIONS(9118), 1, anon_sym_let, + ACTIONS(9120), 1, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, + ACTIONS(9126), 1, anon_sym_group, - anon_sym_by, + ACTIONS(9128), 1, anon_sym_select, - [85780] = 16, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4405), 1, + sym_query_body, + STATE(5819), 1, + sym__select_or_group_clause, + STATE(6512), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6442), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [88756] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739707,15 +733032,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7765), 1, - sym_grit_metavariable, - STATE(2737), 1, - sym__reserved_identifier, - STATE(6563), 1, - sym_identifier, - STATE(6418), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9130), 1, + anon_sym_group, + ACTIONS(9132), 1, + anon_sym_select, + STATE(5731), 1, + sym_group_clause, + STATE(5746), 1, + sym_select_clause, + STATE(5748), 1, + sym_query_body, + STATE(5832), 1, + sym__select_or_group_clause, + STATE(6491), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6443), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739725,30 +733074,70 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + [88844] = 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(9112), 1, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, + ACTIONS(9114), 1, anon_sym_from, - anon_sym_into, + ACTIONS(9116), 1, anon_sym_join, - anon_sym_on, - anon_sym_equals, + ACTIONS(9118), 1, anon_sym_let, + ACTIONS(9120), 1, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, + ACTIONS(9134), 1, anon_sym_group, - anon_sym_by, + ACTIONS(9136), 1, anon_sym_select, - [85858] = 16, + STATE(3209), 1, + sym_query_body, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(5712), 1, + sym__select_or_group_clause, + STATE(6546), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6444), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [88932] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739769,15 +733158,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7765), 1, - sym_grit_metavariable, - STATE(2737), 1, - sym__reserved_identifier, - STATE(7005), 1, - sym_identifier, - STATE(6419), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9138), 1, + anon_sym_group, + ACTIONS(9140), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4405), 1, + sym_query_body, + STATE(5868), 1, + sym__select_or_group_clause, + STATE(6513), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6445), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739787,30 +733200,70 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + [89020] = 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(9112), 1, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, + ACTIONS(9114), 1, anon_sym_from, - anon_sym_into, + ACTIONS(9116), 1, anon_sym_join, - anon_sym_on, - anon_sym_equals, + ACTIONS(9118), 1, anon_sym_let, + ACTIONS(9120), 1, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, + ACTIONS(9122), 1, anon_sym_group, - anon_sym_by, + ACTIONS(9124), 1, anon_sym_select, - [85936] = 16, + STATE(3209), 1, + sym_query_body, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(5496), 1, + sym__select_or_group_clause, + STATE(6537), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6446), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [89108] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739831,15 +733284,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6545), 1, - sym_identifier, - STATE(6420), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9142), 1, + anon_sym_group, + ACTIONS(9144), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4666), 1, + sym_query_body, + STATE(5893), 1, + sym__select_or_group_clause, + STATE(6544), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6447), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739849,30 +733326,70 @@ 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, + [89196] = 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(9112), 1, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, + ACTIONS(9114), 1, anon_sym_from, - anon_sym_into, + ACTIONS(9116), 1, anon_sym_join, - anon_sym_on, - anon_sym_equals, + ACTIONS(9118), 1, anon_sym_let, + ACTIONS(9120), 1, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, + ACTIONS(9146), 1, anon_sym_group, - anon_sym_by, + ACTIONS(9148), 1, anon_sym_select, - [86014] = 16, + STATE(3209), 1, + sym_query_body, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(5981), 1, + sym__select_or_group_clause, + STATE(6488), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6448), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [89284] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739893,15 +733410,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6532), 1, - sym_identifier, - STATE(6421), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9150), 1, + anon_sym_group, + ACTIONS(9152), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4405), 1, + sym_query_body, + STATE(5688), 1, + sym__select_or_group_clause, + STATE(6501), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6449), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739911,30 +733452,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, - [86092] = 16, + [89372] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739955,15 +733473,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7765), 1, - sym_grit_metavariable, - STATE(2737), 1, - sym__reserved_identifier, - STATE(6641), 1, - sym_identifier, - STATE(6422), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9154), 1, + anon_sym_group, + ACTIONS(9156), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4405), 1, + sym_query_body, + STATE(5800), 1, + sym__select_or_group_clause, + STATE(6514), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6450), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739973,30 +733515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [86170] = 16, + [89460] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740017,15 +733536,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(8120), 1, - sym_identifier, - STATE(6423), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9126), 1, + anon_sym_group, + ACTIONS(9128), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4666), 1, + sym_query_body, + STATE(5819), 1, + sym__select_or_group_clause, + STATE(6512), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6451), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740035,30 +733578,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, - [86248] = 16, + [89548] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740079,15 +733599,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7398), 1, - sym_identifier, - STATE(6424), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9154), 1, + anon_sym_group, + ACTIONS(9156), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4666), 1, + sym_query_body, + STATE(5800), 1, + sym__select_or_group_clause, + STATE(6514), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6452), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740097,30 +733641,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, - [86326] = 16, + [89636] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740141,15 +733662,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7765), 1, - sym_grit_metavariable, - STATE(2737), 1, - sym__reserved_identifier, - STATE(6984), 1, - sym_identifier, - STATE(6425), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9158), 1, + anon_sym_group, + ACTIONS(9160), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4666), 1, + sym_query_body, + STATE(5852), 1, + sym__select_or_group_clause, + STATE(6487), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6453), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740159,30 +733704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [86404] = 16, + [89724] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740203,15 +733725,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6499), 1, - sym_identifier, - STATE(6426), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9150), 1, + anon_sym_group, + ACTIONS(9152), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4666), 1, + sym_query_body, + STATE(5688), 1, + sym__select_or_group_clause, + STATE(6501), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6454), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740221,30 +733767,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, - [86482] = 16, + [89812] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740265,15 +733788,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6495), 1, - sym_identifier, - STATE(6427), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9162), 1, + anon_sym_group, + ACTIONS(9164), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4666), 1, + sym_query_body, + STATE(5459), 1, + sym__select_or_group_clause, + STATE(6542), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6455), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740283,30 +733830,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, - [86560] = 16, + [89900] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740327,15 +733851,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7765), 1, - sym_grit_metavariable, - STATE(2737), 1, - sym__reserved_identifier, - STATE(6583), 1, - sym_identifier, - STATE(6428), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9166), 1, + anon_sym_group, + ACTIONS(9168), 1, + anon_sym_select, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(3390), 1, + sym_query_body, + STATE(5483), 1, + sym__select_or_group_clause, + STATE(6521), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6456), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740345,30 +733893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [86638] = 16, + [89988] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740389,15 +733914,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6504), 1, - sym_identifier, - STATE(6429), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9170), 1, + anon_sym_group, + ACTIONS(9172), 1, + anon_sym_select, + STATE(3209), 1, + sym_query_body, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(5940), 1, + sym__select_or_group_clause, + STATE(6485), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6457), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740407,30 +733956,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, - [86716] = 16, + [90076] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740451,15 +733977,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6535), 1, - sym_identifier, - STATE(6430), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9174), 1, + anon_sym_group, + ACTIONS(9176), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4405), 1, + sym_query_body, + STATE(5863), 1, + sym__select_or_group_clause, + STATE(6494), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6458), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740469,30 +734019,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, - [86794] = 16, + [90164] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740513,15 +734040,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7759), 1, - sym__identifier_token, - ACTIONS(7765), 1, - sym_grit_metavariable, - STATE(2737), 1, - sym__reserved_identifier, - STATE(6571), 1, - sym_identifier, - STATE(6431), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9178), 1, + anon_sym_group, + ACTIONS(9180), 1, + anon_sym_select, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(3390), 1, + sym_query_body, + STATE(5528), 1, + sym__select_or_group_clause, + STATE(6493), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6459), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740531,30 +734082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7761), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [86872] = 16, + [90252] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740575,15 +734103,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7604), 1, - sym_identifier, - STATE(6432), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9166), 1, + anon_sym_group, + ACTIONS(9168), 1, + anon_sym_select, + STATE(3209), 1, + sym_query_body, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(5483), 1, + sym__select_or_group_clause, + STATE(6521), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6460), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740593,30 +734145,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, - [86950] = 16, + [90340] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740637,15 +734166,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7012), 1, - sym_identifier, - STATE(6433), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9146), 1, + anon_sym_group, + ACTIONS(9148), 1, + anon_sym_select, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(3390), 1, + sym_query_body, + STATE(5981), 1, + sym__select_or_group_clause, + STATE(6488), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6461), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740655,30 +734208,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, - [87028] = 13, + [90428] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740699,9 +734229,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8564), 1, - sym_grit_metavariable, - STATE(6434), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9182), 1, + anon_sym_group, + ACTIONS(9184), 1, + anon_sym_select, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(3390), 1, + sym_query_body, + STATE(5943), 1, + sym__select_or_group_clause, + STATE(6499), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6462), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740711,31 +734271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8562), 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, - [87098] = 14, + [90516] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740756,17 +734292,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8568), 1, - anon_sym_checked, - ACTIONS(8566), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6435), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9134), 1, + anon_sym_group, + ACTIONS(9136), 1, + anon_sym_select, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(3390), 1, + sym_query_body, + STATE(5712), 1, + sym__select_or_group_clause, + STATE(6546), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6463), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740776,24 +734334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8570), 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, - [87170] = 14, + [90604] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740814,17 +734355,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8574), 1, - anon_sym_checked, - ACTIONS(8572), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6436), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9186), 1, + anon_sym_group, + ACTIONS(9188), 1, + anon_sym_select, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(3390), 1, + sym_query_body, + STATE(5986), 1, + sym__select_or_group_clause, + STATE(6505), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6464), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740834,24 +734397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8576), 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, - [87242] = 14, + [90692] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740872,17 +734418,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8580), 1, - anon_sym_checked, - ACTIONS(8578), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6437), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9158), 1, + anon_sym_group, + ACTIONS(9160), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4405), 1, + sym_query_body, + STATE(5852), 1, + sym__select_or_group_clause, + STATE(6487), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6465), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740892,24 +734460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8582), 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, - [87314] = 14, + [90780] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740930,17 +734481,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8586), 1, - anon_sym_checked, - ACTIONS(8584), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6438), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9190), 1, + anon_sym_group, + ACTIONS(9192), 1, + anon_sym_select, + STATE(5605), 1, + sym__select_or_group_clause, + STATE(5731), 1, + sym_group_clause, + STATE(5746), 1, + sym_select_clause, + STATE(5748), 1, + sym_query_body, + STATE(6524), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6466), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740950,24 +734523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8588), 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, - [87386] = 14, + [90868] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740988,17 +734544,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_checked, - ACTIONS(8590), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6439), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9194), 1, + anon_sym_group, + ACTIONS(9196), 1, + anon_sym_select, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(3390), 1, + sym_query_body, + STATE(5969), 1, + sym__select_or_group_clause, + STATE(6528), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6467), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741008,24 +734586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8594), 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, - [87458] = 14, + [90956] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741046,17 +734607,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8598), 1, - anon_sym_checked, - ACTIONS(8596), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6440), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9194), 1, + anon_sym_group, + ACTIONS(9196), 1, + anon_sym_select, + STATE(3209), 1, + sym_query_body, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(5969), 1, + sym__select_or_group_clause, + STATE(6528), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6468), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741066,24 +734649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8600), 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, - [87530] = 13, + [91044] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741104,15 +734670,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8602), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6441), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9142), 1, + anon_sym_group, + ACTIONS(9144), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4405), 1, + sym_query_body, + STATE(5893), 1, + sym__select_or_group_clause, + STATE(6544), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6469), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741122,24 +734712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8604), 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, - [87599] = 13, + [91132] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741160,15 +734733,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8606), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6442), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9138), 1, + anon_sym_group, + ACTIONS(9140), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4666), 1, + sym_query_body, + STATE(5868), 1, + sym__select_or_group_clause, + STATE(6513), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741178,24 +734775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8608), 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, - [87668] = 13, + [91220] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741216,15 +734796,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8572), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6443), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9182), 1, + anon_sym_group, + ACTIONS(9184), 1, + anon_sym_select, + STATE(3209), 1, + sym_query_body, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(5943), 1, + sym__select_or_group_clause, + STATE(6499), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6471), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741234,24 +734838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8576), 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, - [87737] = 13, + [91308] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741272,15 +734859,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8610), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6444), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9162), 1, + anon_sym_group, + ACTIONS(9164), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4405), 1, + sym_query_body, + STATE(5459), 1, + sym__select_or_group_clause, + STATE(6542), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6472), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741290,24 +734901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8612), 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, - [87806] = 13, + [91396] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741328,15 +734922,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8578), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6445), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9178), 1, + anon_sym_group, + ACTIONS(9180), 1, + anon_sym_select, + STATE(3209), 1, + sym_query_body, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(5528), 1, + sym__select_or_group_clause, + STATE(6493), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6473), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741346,24 +734964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8582), 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, - [87875] = 13, + [91484] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741384,15 +734985,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8566), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6446), 9, + ACTIONS(9112), 1, + anon_sym_where, + ACTIONS(9114), 1, + anon_sym_from, + ACTIONS(9116), 1, + anon_sym_join, + ACTIONS(9118), 1, + anon_sym_let, + ACTIONS(9120), 1, + anon_sym_orderby, + ACTIONS(9198), 1, + anon_sym_group, + ACTIONS(9200), 1, + anon_sym_select, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, + sym_select_clause, + STATE(4666), 1, + sym_query_body, + STATE(5573), 1, + sym__select_or_group_clause, + STATE(6482), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, + sym__query_clause, + STATE(6646), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6474), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741402,24 +735027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8570), 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, - [87944] = 25, + [91572] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741440,39 +735048,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8624), 1, + ACTIONS(9202), 1, anon_sym_group, - ACTIONS(8626), 1, + ACTIONS(9204), 1, anon_sym_select, - STATE(3822), 1, + STATE(5184), 1, sym_select_clause, - STATE(3823), 1, + STATE(5187), 1, sym_group_clause, - STATE(3868), 1, + STATE(5309), 1, sym_query_body, - STATE(5953), 1, + STATE(5346), 1, sym__select_or_group_clause, - STATE(6509), 1, + STATE(6500), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6447), 9, + STATE(6475), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741482,7 +735090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88032] = 25, + [91660] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741503,39 +735111,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8628), 1, + ACTIONS(9174), 1, anon_sym_group, - ACTIONS(8630), 1, + ACTIONS(9176), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(4031), 1, sym_group_clause, - STATE(4988), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4666), 1, sym_query_body, - STATE(5576), 1, + STATE(5863), 1, sym__select_or_group_clause, - STATE(6539), 1, + STATE(6494), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6448), 9, + STATE(6476), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741545,7 +735153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88120] = 25, + [91748] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741566,39 +735174,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8632), 1, + ACTIONS(9206), 1, anon_sym_group, - ACTIONS(8634), 1, + ACTIONS(9208), 1, anon_sym_select, - STATE(4742), 1, + STATE(5101), 1, + sym__select_or_group_clause, + STATE(5184), 1, sym_select_clause, - STATE(4772), 1, + STATE(5187), 1, sym_group_clause, - STATE(4988), 1, + STATE(5309), 1, sym_query_body, - STATE(5849), 1, - sym__select_or_group_clause, - STATE(6549), 1, + STATE(6538), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6449), 9, + STATE(6477), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741608,7 +735216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88208] = 25, + [91836] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741629,39 +735237,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8636), 1, + ACTIONS(9170), 1, anon_sym_group, - ACTIONS(8638), 1, + ACTIONS(9172), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(3219), 1, sym_group_clause, - STATE(4251), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3390), 1, sym_query_body, - STATE(5932), 1, + STATE(5940), 1, sym__select_or_group_clause, - STATE(6511), 1, + STATE(6485), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6450), 9, + STATE(6478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741671,7 +735279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88296] = 25, + [91924] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741692,39 +735300,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8640), 1, + ACTIONS(9186), 1, anon_sym_group, - ACTIONS(8642), 1, + ACTIONS(9188), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, - sym_group_clause, - STATE(4251), 1, + STATE(3209), 1, sym_query_body, - STATE(5743), 1, + STATE(3219), 1, + sym_group_clause, + STATE(3220), 1, + sym_select_clause, + STATE(5986), 1, sym__select_or_group_clause, - STATE(6515), 1, + STATE(6505), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6451), 9, + STATE(6479), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741734,7 +735342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88384] = 25, + [92012] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741755,39 +735363,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8644), 1, + ACTIONS(9198), 1, anon_sym_group, - ACTIONS(8646), 1, + ACTIONS(9200), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(4031), 1, sym_group_clause, - STATE(4251), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4405), 1, sym_query_body, - STATE(5994), 1, + STATE(5573), 1, sym__select_or_group_clause, - STATE(6492), 1, + STATE(6482), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6452), 9, + STATE(6480), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741797,7 +735405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88472] = 25, + [92100] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741818,39 +735426,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8628), 1, + ACTIONS(9122), 1, anon_sym_group, - ACTIONS(8630), 1, + ACTIONS(9124), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(3219), 1, sym_group_clause, - STATE(4791), 1, - sym_query_body, - STATE(5576), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6539), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6453), 9, + STATE(6481), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741860,7 +735466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88560] = 25, + [92185] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741881,39 +735487,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8648), 1, + ACTIONS(9198), 1, anon_sym_group, - ACTIONS(8650), 1, + ACTIONS(9200), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(4031), 1, sym_group_clause, - STATE(3868), 1, - sym_query_body, - STATE(5988), 1, + STATE(4233), 1, + sym_select_clause, + STATE(5579), 1, sym__select_or_group_clause, - STATE(6516), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6454), 9, + STATE(6482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741923,7 +735527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88648] = 25, + [92270] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741944,39 +735548,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8640), 1, + ACTIONS(9178), 1, anon_sym_group, - ACTIONS(8642), 1, + ACTIONS(9180), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(3219), 1, sym_group_clause, - STATE(3868), 1, - sym_query_body, - STATE(5743), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6515), 1, + STATE(6529), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6455), 9, + STATE(6483), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741986,7 +735588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88736] = 25, + [92355] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742007,39 +735609,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8624), 1, + ACTIONS(9150), 1, anon_sym_group, - ACTIONS(8626), 1, + ACTIONS(9152), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(4031), 1, sym_group_clause, - STATE(4251), 1, - sym_query_body, - STATE(5953), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4384), 1, sym__select_or_group_clause, - STATE(6509), 1, + STATE(6489), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6456), 9, + STATE(6484), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742049,7 +735649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88824] = 25, + [92440] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742070,39 +735670,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8652), 1, + ACTIONS(9170), 1, anon_sym_group, - ACTIONS(8654), 1, + ACTIONS(9172), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(3219), 1, sym_group_clause, - STATE(4791), 1, - sym_query_body, - STATE(5742), 1, + STATE(3220), 1, + sym_select_clause, + STATE(5990), 1, sym__select_or_group_clause, - STATE(6517), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6457), 9, + STATE(6485), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742112,7 +735710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88912] = 25, + [92525] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742133,39 +735731,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8656), 1, + ACTIONS(9174), 1, anon_sym_group, - ACTIONS(8658), 1, + ACTIONS(9176), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(4031), 1, sym_group_clause, - STATE(3868), 1, - sym_query_body, - STATE(5498), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4384), 1, sym__select_or_group_clause, - STATE(6538), 1, + STATE(6522), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6458), 9, + STATE(6486), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742175,7 +735771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89000] = 25, + [92610] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742196,39 +735792,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8656), 1, + ACTIONS(9158), 1, anon_sym_group, - ACTIONS(8658), 1, + ACTIONS(9160), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(4031), 1, sym_group_clause, - STATE(4251), 1, - sym_query_body, - STATE(5498), 1, + STATE(4233), 1, + sym_select_clause, + STATE(5836), 1, sym__select_or_group_clause, - STATE(6538), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6459), 9, + STATE(6487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742238,7 +735832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89088] = 25, + [92695] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742259,39 +735853,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8660), 1, + ACTIONS(9146), 1, anon_sym_group, - ACTIONS(8662), 1, + ACTIONS(9148), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(3219), 1, sym_group_clause, - STATE(3868), 1, - sym_query_body, - STATE(5533), 1, + STATE(3220), 1, + sym_select_clause, + STATE(5949), 1, sym__select_or_group_clause, - STATE(6497), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6460), 9, + STATE(6488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742301,7 +735893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89176] = 25, + [92780] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742322,39 +735914,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8664), 1, + ACTIONS(9150), 1, anon_sym_group, - ACTIONS(8666), 1, + ACTIONS(9152), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(4031), 1, sym_group_clause, - STATE(4791), 1, - sym_query_body, - STATE(5785), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(6522), 1, + STATE(4233), 1, + sym_select_clause, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6461), 9, + STATE(6489), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742364,7 +735954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89264] = 25, + [92865] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742385,39 +735975,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8668), 1, + ACTIONS(9154), 1, anon_sym_group, - ACTIONS(8670), 1, + ACTIONS(9156), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(4031), 1, sym_group_clause, - STATE(3868), 1, - sym_query_body, - STATE(5480), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4384), 1, sym__select_or_group_clause, - STATE(6493), 1, + STATE(6533), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6462), 9, + STATE(6490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742427,7 +736015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89352] = 25, + [92950] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742448,39 +736036,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8672), 1, + ACTIONS(9130), 1, anon_sym_group, - ACTIONS(8674), 1, + ACTIONS(9132), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(5731), 1, sym_group_clause, - STATE(4791), 1, - sym_query_body, - STATE(5472), 1, + STATE(5746), 1, + sym_select_clause, + STATE(5886), 1, sym__select_or_group_clause, - STATE(6498), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6463), 9, + STATE(6491), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742490,7 +736076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89440] = 25, + [93035] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742511,39 +736097,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8636), 1, + ACTIONS(9202), 1, anon_sym_group, - ACTIONS(8638), 1, + ACTIONS(9204), 1, anon_sym_select, - STATE(3822), 1, + STATE(5184), 1, sym_select_clause, - STATE(3823), 1, + STATE(5187), 1, sym_group_clause, - STATE(3868), 1, - sym_query_body, - STATE(5932), 1, + STATE(5298), 1, sym__select_or_group_clause, - STATE(6511), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6464), 9, + STATE(6492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742553,7 +736137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89528] = 25, + [93120] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742574,39 +736158,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8664), 1, + ACTIONS(9178), 1, anon_sym_group, - ACTIONS(8666), 1, + ACTIONS(9180), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(3219), 1, sym_group_clause, - STATE(4988), 1, - sym_query_body, - STATE(5785), 1, + STATE(3220), 1, + sym_select_clause, + STATE(5522), 1, sym__select_or_group_clause, - STATE(6522), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6465), 9, + STATE(6493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742616,7 +736198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89616] = 25, + [93205] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742637,39 +736219,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8676), 1, + ACTIONS(9174), 1, anon_sym_group, - ACTIONS(8678), 1, + ACTIONS(9176), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(4031), 1, sym_group_clause, - STATE(4988), 1, - sym_query_body, - STATE(5887), 1, + STATE(4233), 1, + sym_select_clause, + STATE(5804), 1, sym__select_or_group_clause, - STATE(6523), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6466), 9, + STATE(6494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742679,7 +736259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89704] = 25, + [93290] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742700,102 +736280,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8680), 1, + ACTIONS(9158), 1, anon_sym_group, - ACTIONS(8682), 1, + ACTIONS(9160), 1, anon_sym_select, - STATE(5592), 1, - sym__select_or_group_clause, - STATE(5750), 1, - sym_select_clause, - STATE(5751), 1, + STATE(4031), 1, sym_group_clause, - STATE(5752), 1, - sym_query_body, - STATE(6548), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6467), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [89792] = 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(8614), 1, - anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8644), 1, - anon_sym_group, - ACTIONS(8646), 1, - anon_sym_select, - STATE(3822), 1, + STATE(4233), 1, sym_select_clause, - STATE(3823), 1, - sym_group_clause, - STATE(3868), 1, - sym_query_body, - STATE(5994), 1, + STATE(4384), 1, sym__select_or_group_clause, - STATE(6492), 1, + STATE(6496), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6468), 9, + STATE(6495), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742805,7 +736320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89880] = 25, + [93375] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742826,39 +736341,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8684), 1, + ACTIONS(9158), 1, anon_sym_group, - ACTIONS(8686), 1, + ACTIONS(9160), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(4031), 1, sym_group_clause, - STATE(4988), 1, - sym_query_body, - STATE(5818), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(6491), 1, + STATE(4233), 1, + sym_select_clause, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6469), 9, + STATE(6496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742868,7 +736381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89968] = 25, + [93460] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742889,39 +736402,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8648), 1, + ACTIONS(9182), 1, anon_sym_group, - ACTIONS(8650), 1, + ACTIONS(9184), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(3219), 1, sym_group_clause, - STATE(4251), 1, - sym_query_body, - STATE(5988), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6516), 1, + STATE(6518), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6470), 9, + STATE(6497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742931,7 +736442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90056] = 25, + [93545] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742952,39 +736463,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8676), 1, + ACTIONS(9194), 1, anon_sym_group, - ACTIONS(8678), 1, + ACTIONS(9196), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(3219), 1, sym_group_clause, - STATE(4791), 1, - sym_query_body, - STATE(5887), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6523), 1, + STATE(6503), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6471), 9, + STATE(6498), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742994,7 +736503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90144] = 25, + [93630] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743015,102 +736524,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8688), 1, + ACTIONS(9182), 1, anon_sym_group, - ACTIONS(8690), 1, + ACTIONS(9184), 1, anon_sym_select, - STATE(5163), 1, - sym__select_or_group_clause, - STATE(5312), 1, - sym_query_body, - STATE(5313), 1, + STATE(3219), 1, sym_group_clause, - STATE(5314), 1, + STATE(3220), 1, sym_select_clause, - STATE(6542), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6472), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [90232] = 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(8614), 1, - anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8668), 1, - anon_sym_group, - ACTIONS(8670), 1, - anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, - sym_group_clause, - STATE(4251), 1, - sym_query_body, - STATE(5480), 1, + STATE(5956), 1, sym__select_or_group_clause, - STATE(6493), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6473), 9, + STATE(6499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743120,7 +736564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90320] = 25, + [93715] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743141,39 +736585,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8692), 1, + ACTIONS(9202), 1, anon_sym_group, - ACTIONS(8694), 1, + ACTIONS(9204), 1, anon_sym_select, - STATE(3822), 1, + STATE(5184), 1, sym_select_clause, - STATE(3823), 1, + STATE(5187), 1, sym_group_clause, - STATE(3868), 1, - sym_query_body, - STATE(5984), 1, + STATE(5441), 1, sym__select_or_group_clause, - STATE(6547), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6474), 9, + STATE(6500), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743183,7 +736625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90408] = 25, + [93800] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743204,102 +736646,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8652), 1, + ACTIONS(9150), 1, anon_sym_group, - ACTIONS(8654), 1, + ACTIONS(9152), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(4031), 1, sym_group_clause, - STATE(4988), 1, - sym_query_body, - STATE(5742), 1, - sym__select_or_group_clause, - STATE(6517), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - 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, - [90496] = 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(8614), 1, - anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8684), 1, - anon_sym_group, - ACTIONS(8686), 1, - anon_sym_select, - STATE(4742), 1, + STATE(4233), 1, sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(4791), 1, - sym_query_body, - STATE(5818), 1, + STATE(5700), 1, sym__select_or_group_clause, - STATE(6491), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6476), 9, + STATE(6501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743309,7 +736686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90584] = 25, + [93885] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743330,39 +736707,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8696), 1, + ACTIONS(9138), 1, anon_sym_group, - ACTIONS(8698), 1, + ACTIONS(9140), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(4031), 1, sym_group_clause, - STATE(4988), 1, - sym_query_body, - STATE(5877), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(6521), 1, + STATE(4233), 1, + sym_select_clause, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6477), 9, + STATE(6502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743372,7 +736747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90672] = 25, + [93970] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743393,39 +736768,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8660), 1, + ACTIONS(9194), 1, anon_sym_group, - ACTIONS(8662), 1, + ACTIONS(9196), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(3219), 1, sym_group_clause, - STATE(4251), 1, - sym_query_body, - STATE(5533), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6497), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6478), 9, + STATE(6503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743435,7 +736808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90760] = 25, + [94055] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743456,39 +736829,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8632), 1, + ACTIONS(9166), 1, anon_sym_group, - ACTIONS(8634), 1, + ACTIONS(9168), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(3219), 1, sym_group_clause, - STATE(4791), 1, - sym_query_body, - STATE(5849), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6549), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6479), 9, + STATE(6504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743498,7 +736869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90848] = 25, + [94140] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743519,39 +736890,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8700), 1, + ACTIONS(9186), 1, anon_sym_group, - ACTIONS(8702), 1, + ACTIONS(9188), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(3219), 1, sym_group_clause, - STATE(4791), 1, - sym_query_body, - STATE(5873), 1, + STATE(3220), 1, + sym_select_clause, + STATE(5961), 1, sym__select_or_group_clause, - STATE(6534), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6480), 9, + STATE(6505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743561,7 +736930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90936] = 25, + [94225] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743582,39 +736951,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8704), 1, + ACTIONS(9138), 1, anon_sym_group, - ACTIONS(8706), 1, + ACTIONS(9140), 1, anon_sym_select, - STATE(5312), 1, - sym_query_body, - STATE(5313), 1, + STATE(4031), 1, sym_group_clause, - STATE(5314), 1, + STATE(4233), 1, sym_select_clause, - STATE(5361), 1, + STATE(4384), 1, sym__select_or_group_clause, - STATE(6494), 1, + STATE(6502), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6481), 9, + STATE(6506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743624,7 +736991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91024] = 25, + [94310] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743645,39 +737012,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8692), 1, + ACTIONS(9146), 1, anon_sym_group, - ACTIONS(8694), 1, + ACTIONS(9148), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(3219), 1, sym_group_clause, - STATE(4251), 1, - sym_query_body, - STATE(5984), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6547), 1, + STATE(6526), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6482), 9, + STATE(6507), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743687,7 +737052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91112] = 25, + [94395] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743708,39 +737073,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8700), 1, + ACTIONS(9134), 1, anon_sym_group, - ACTIONS(8702), 1, + ACTIONS(9136), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(3219), 1, sym_group_clause, - STATE(4988), 1, - sym_query_body, - STATE(5873), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6534), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6483), 9, + STATE(6508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743750,7 +737113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91200] = 25, + [94480] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743771,39 +737134,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8696), 1, + ACTIONS(9130), 1, anon_sym_group, - ACTIONS(8698), 1, + ACTIONS(9132), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(5731), 1, sym_group_clause, - STATE(4791), 1, - sym_query_body, - STATE(5877), 1, + STATE(5746), 1, + sym_select_clause, + STATE(5777), 1, sym__select_or_group_clause, - STATE(6521), 1, + STATE(6517), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6484), 9, + STATE(6509), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743813,7 +737174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91288] = 25, + [94565] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743834,39 +737195,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8672), 1, + ACTIONS(9166), 1, anon_sym_group, - ACTIONS(8674), 1, + ACTIONS(9168), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(3219), 1, sym_group_clause, - STATE(4988), 1, - sym_query_body, - STATE(5472), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6498), 1, + STATE(6504), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6485), 9, + STATE(6510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743876,7 +737235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91376] = 25, + [94650] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743897,39 +737256,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8708), 1, + ACTIONS(9198), 1, anon_sym_group, - ACTIONS(8710), 1, + ACTIONS(9200), 1, anon_sym_select, - STATE(5750), 1, - sym_select_clause, - STATE(5751), 1, + STATE(4031), 1, sym_group_clause, - STATE(5752), 1, - sym_query_body, - STATE(5812), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(6529), 1, + STATE(4233), 1, + sym_select_clause, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6486), 9, + STATE(6511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743939,7 +737296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91464] = 24, + [94735] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743960,37 +737317,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8644), 1, + ACTIONS(9126), 1, anon_sym_group, - ACTIONS(8646), 1, + ACTIONS(9128), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(4031), 1, sym_group_clause, - STATE(3851), 1, + STATE(4233), 1, + sym_select_clause, + STATE(5808), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6487), 9, + STATE(6512), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744000,7 +737357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91549] = 24, + [94820] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744021,37 +737378,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8660), 1, + ACTIONS(9138), 1, anon_sym_group, - ACTIONS(8662), 1, + ACTIONS(9140), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(4031), 1, sym_group_clause, - STATE(3849), 1, + STATE(4233), 1, + sym_select_clause, + STATE(5866), 1, sym__select_or_group_clause, - STATE(6512), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6488), 9, + STATE(6513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744061,7 +737418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91634] = 24, + [94905] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744082,37 +737439,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8704), 1, + ACTIONS(9154), 1, anon_sym_group, - ACTIONS(8706), 1, + ACTIONS(9156), 1, anon_sym_select, - STATE(5185), 1, - sym__select_or_group_clause, - STATE(5313), 1, + STATE(4031), 1, sym_group_clause, - STATE(5314), 1, + STATE(4233), 1, sym_select_clause, - STATE(6557), 1, + STATE(5659), 1, + sym__select_or_group_clause, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6489), 9, + STATE(6514), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744122,7 +737479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91719] = 24, + [94990] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744143,37 +737500,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8656), 1, + ACTIONS(9190), 1, anon_sym_group, - ACTIONS(8658), 1, + ACTIONS(9192), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, - sym_group_clause, - STATE(3851), 1, + STATE(5709), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(5731), 1, + sym_group_clause, + STATE(5746), 1, + sym_select_clause, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6490), 9, + STATE(6515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744183,7 +737540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91804] = 24, + [95075] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744204,37 +737561,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8684), 1, + ACTIONS(9162), 1, anon_sym_group, - ACTIONS(8686), 1, + ACTIONS(9164), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(4031), 1, sym_group_clause, - STATE(5878), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(4233), 1, + sym_select_clause, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6491), 9, + STATE(6516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744244,7 +737601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91889] = 24, + [95160] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744265,37 +737622,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8644), 1, + ACTIONS(9130), 1, anon_sym_group, - ACTIONS(8646), 1, + ACTIONS(9132), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, - sym_group_clause, - STATE(5952), 1, + STATE(5709), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(5731), 1, + sym_group_clause, + STATE(5746), 1, + sym_select_clause, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6492), 9, + STATE(6517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744305,7 +737662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91974] = 24, + [95245] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744326,37 +737683,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8668), 1, + ACTIONS(9182), 1, anon_sym_group, - ACTIONS(8670), 1, + ACTIONS(9184), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(3219), 1, sym_group_clause, - STATE(5483), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6493), 9, + STATE(6518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744366,7 +737723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92059] = 24, + [95330] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744387,37 +737744,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8704), 1, + ACTIONS(9126), 1, anon_sym_group, - ACTIONS(8706), 1, + ACTIONS(9128), 1, anon_sym_select, - STATE(5313), 1, + STATE(4031), 1, sym_group_clause, - STATE(5314), 1, + STATE(4233), 1, sym_select_clause, - STATE(5366), 1, + STATE(4384), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6520), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6494), 9, + STATE(6519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744427,7 +737784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92144] = 24, + [95415] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744448,37 +737805,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8708), 1, + ACTIONS(9126), 1, anon_sym_group, - ACTIONS(8710), 1, + ACTIONS(9128), 1, anon_sym_select, - STATE(5750), 1, - sym_select_clause, - STATE(5751), 1, + STATE(4031), 1, sym_group_clause, - STATE(5782), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(6508), 1, + STATE(4233), 1, + sym_select_clause, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6495), 9, + STATE(6520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744488,7 +737845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92229] = 24, + [95500] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744509,37 +737866,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8648), 1, + ACTIONS(9166), 1, anon_sym_group, - ACTIONS(8650), 1, + ACTIONS(9168), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(3219), 1, sym_group_clause, - STATE(3851), 1, + STATE(3220), 1, + sym_select_clause, + STATE(5480), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6496), 9, + STATE(6521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744549,7 +737906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92314] = 24, + [95585] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744570,37 +737927,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8660), 1, + ACTIONS(9174), 1, anon_sym_group, - ACTIONS(8662), 1, + ACTIONS(9176), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(4031), 1, sym_group_clause, - STATE(5536), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(4233), 1, + sym_select_clause, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6497), 9, + STATE(6522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744610,7 +737967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92399] = 24, + [95670] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744631,37 +737988,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8672), 1, + ACTIONS(9190), 1, anon_sym_group, - ACTIONS(8674), 1, + ACTIONS(9192), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(5731), 1, sym_group_clause, - STATE(5474), 1, + STATE(5746), 1, + sym_select_clause, + STATE(5777), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6515), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6498), 9, + STATE(6523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744671,7 +738028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92484] = 24, + [95755] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744692,37 +738049,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8684), 1, + ACTIONS(9190), 1, anon_sym_group, - ACTIONS(8686), 1, + ACTIONS(9192), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(4868), 1, + STATE(5596), 1, sym__select_or_group_clause, - STATE(6500), 1, + STATE(5731), 1, + sym_group_clause, + STATE(5746), 1, + sym_select_clause, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6499), 9, + STATE(6524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744732,7 +738089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92569] = 24, + [95840] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744753,37 +738110,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8684), 1, + ACTIONS(9186), 1, anon_sym_group, - ACTIONS(8686), 1, + ACTIONS(9188), 1, anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(3219), 1, sym_group_clause, - STATE(6557), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3257), 1, + sym__select_or_group_clause, + STATE(6530), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6500), 9, + STATE(6525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744793,7 +738150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92654] = 24, + [95925] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744814,37 +738171,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8636), 1, + ACTIONS(9146), 1, anon_sym_group, - ACTIONS(8638), 1, + ACTIONS(9148), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(3219), 1, sym_group_clause, - STATE(3851), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6501), 9, + STATE(6526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744854,7 +738211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92739] = 24, + [96010] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744875,37 +738232,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8628), 1, + ACTIONS(9162), 1, anon_sym_group, - ACTIONS(8630), 1, + ACTIONS(9164), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(4031), 1, sym_group_clause, - STATE(4868), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4384), 1, sym__select_or_group_clause, - STATE(6510), 1, + STATE(6516), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6502), 9, + STATE(6527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744915,7 +738272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92824] = 24, + [96095] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744936,37 +738293,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8648), 1, + ACTIONS(9194), 1, anon_sym_group, - ACTIONS(8650), 1, + ACTIONS(9196), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(3219), 1, sym_group_clause, - STATE(3849), 1, + STATE(3220), 1, + sym_select_clause, + STATE(5978), 1, sym__select_or_group_clause, - STATE(6496), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6503), 9, + STATE(6528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744976,7 +738333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92909] = 24, + [96180] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744997,37 +738354,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8700), 1, + ACTIONS(9178), 1, anon_sym_group, - ACTIONS(8702), 1, + ACTIONS(9180), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(3219), 1, sym_group_clause, - STATE(4868), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6524), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6504), 9, + STATE(6529), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745037,7 +738394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92994] = 24, + [96265] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745058,37 +738415,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8636), 1, + ACTIONS(9186), 1, anon_sym_group, - ACTIONS(8638), 1, + ACTIONS(9188), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(3219), 1, sym_group_clause, - STATE(3849), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6501), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6505), 9, + STATE(6530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745098,7 +738455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93079] = 24, + [96350] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745119,37 +738476,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8672), 1, + ACTIONS(9142), 1, anon_sym_group, - ACTIONS(8674), 1, + ACTIONS(9144), 1, anon_sym_select, - STATE(4739), 1, + STATE(4031), 1, + sym_group_clause, + STATE(4184), 1, sym__select_or_group_clause, - STATE(4742), 1, + STATE(4233), 1, sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(6557), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6506), 9, + STATE(6531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745159,7 +738516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93164] = 24, + [96435] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745180,37 +738537,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8640), 1, + ACTIONS(9134), 1, anon_sym_group, - ACTIONS(8642), 1, + ACTIONS(9136), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(3219), 1, sym_group_clause, - STATE(3851), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6508), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6507), 9, + STATE(6532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745220,7 +738577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93249] = 24, + [96520] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745241,37 +738598,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8708), 1, + ACTIONS(9154), 1, anon_sym_group, - ACTIONS(8710), 1, + ACTIONS(9156), 1, anon_sym_select, - STATE(5750), 1, - sym_select_clause, - STATE(5751), 1, + STATE(4031), 1, sym_group_clause, - STATE(5773), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(4233), 1, + sym_select_clause, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6508), 9, + STATE(6533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745281,7 +738638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93334] = 24, + [96605] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745302,37 +738659,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8624), 1, + ACTIONS(9170), 1, anon_sym_group, - ACTIONS(8626), 1, + ACTIONS(9172), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(3219), 1, sym_group_clause, - STATE(5970), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6545), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6509), 9, + STATE(6534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745342,7 +738699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93419] = 24, + [96690] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745363,37 +738720,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8628), 1, + ACTIONS(9198), 1, anon_sym_group, - ACTIONS(8630), 1, + ACTIONS(9200), 1, anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(4031), 1, sym_group_clause, - STATE(6557), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4384), 1, + sym__select_or_group_clause, + STATE(6511), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6510), 9, + STATE(6535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745403,7 +738760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93504] = 24, + [96775] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745424,37 +738781,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8636), 1, + ACTIONS(9142), 1, anon_sym_group, - ACTIONS(8638), 1, + ACTIONS(9144), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(4031), 1, sym_group_clause, - STATE(5964), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4384), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6531), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6511), 9, + STATE(6536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745464,7 +738821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93589] = 24, + [96860] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745485,37 +738842,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8660), 1, + ACTIONS(9122), 1, anon_sym_group, - ACTIONS(8662), 1, + ACTIONS(9124), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(3219), 1, sym_group_clause, - STATE(3851), 1, + STATE(3220), 1, + sym_select_clause, + STATE(5493), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6512), 9, + STATE(6537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745525,7 +738882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93674] = 24, + [96945] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745546,37 +738903,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8624), 1, + ACTIONS(9206), 1, anon_sym_group, - ACTIONS(8626), 1, + ACTIONS(9208), 1, anon_sym_select, - STATE(3822), 1, + STATE(5103), 1, + sym__select_or_group_clause, + STATE(5184), 1, sym_select_clause, - STATE(3823), 1, + STATE(5187), 1, sym_group_clause, - STATE(3849), 1, - sym__select_or_group_clause, - STATE(6514), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6513), 9, + STATE(6538), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745586,7 +738943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93759] = 24, + [97030] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745607,37 +738964,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8624), 1, + ACTIONS(9202), 1, anon_sym_group, - ACTIONS(8626), 1, + ACTIONS(9204), 1, anon_sym_select, - STATE(3822), 1, + STATE(5184), 1, sym_select_clause, - STATE(3823), 1, + STATE(5187), 1, sym_group_clause, - STATE(3851), 1, + STATE(5265), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6492), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6514), 9, + STATE(6539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745647,7 +739004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93844] = 24, + [97115] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745668,37 +739025,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8640), 1, + ACTIONS(9206), 1, anon_sym_group, - ACTIONS(8642), 1, + ACTIONS(9208), 1, anon_sym_select, - STATE(3822), 1, + STATE(5184), 1, sym_select_clause, - STATE(3823), 1, + STATE(5187), 1, sym_group_clause, - STATE(5660), 1, + STATE(5298), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6515), 9, + STATE(6540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745708,7 +739065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93929] = 24, + [97200] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745729,37 +739086,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8648), 1, + ACTIONS(9206), 1, anon_sym_group, - ACTIONS(8650), 1, + ACTIONS(9208), 1, anon_sym_select, - STATE(3822), 1, + STATE(5184), 1, sym_select_clause, - STATE(3823), 1, + STATE(5187), 1, sym_group_clause, - STATE(5986), 1, + STATE(5265), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6540), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6516), 9, + STATE(6541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745769,7 +739126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94014] = 24, + [97285] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745790,37 +739147,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8652), 1, + ACTIONS(9162), 1, anon_sym_group, - ACTIONS(8654), 1, + ACTIONS(9164), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(4031), 1, sym_group_clause, - STATE(5737), 1, + STATE(4233), 1, + sym_select_clause, + STATE(5455), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6517), 9, + STATE(6542), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745830,7 +739187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94099] = 24, + [97370] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745851,37 +739208,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8672), 1, + ACTIONS(9122), 1, anon_sym_group, - ACTIONS(8674), 1, + ACTIONS(9124), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(3219), 1, sym_group_clause, - STATE(4868), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6506), 1, + STATE(6481), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6518), 9, + STATE(6543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745891,7 +739248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94184] = 24, + [97455] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745912,37 +739269,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8692), 1, + ACTIONS(9142), 1, anon_sym_group, - ACTIONS(8694), 1, + ACTIONS(9144), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, + STATE(4031), 1, sym_group_clause, - STATE(3851), 1, + STATE(4233), 1, + sym_select_clause, + STATE(5889), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6519), 9, + STATE(6544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745952,7 +739309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94269] = 24, + [97540] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745973,37 +739330,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8680), 1, + ACTIONS(9170), 1, anon_sym_group, - ACTIONS(8682), 1, + ACTIONS(9172), 1, anon_sym_select, - STATE(5750), 1, - sym_select_clause, - STATE(5751), 1, + STATE(3219), 1, sym_group_clause, - STATE(5773), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6520), 9, + STATE(6545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746013,7 +739370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94354] = 24, + [97625] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746034,37 +739391,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9112), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9114), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9116), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9118), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9120), 1, anon_sym_orderby, - ACTIONS(8696), 1, + ACTIONS(9134), 1, anon_sym_group, - ACTIONS(8698), 1, + ACTIONS(9136), 1, anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, + STATE(3219), 1, sym_group_clause, - STATE(5886), 1, + STATE(3220), 1, + sym_select_clause, + STATE(5684), 1, sym__select_or_group_clause, - STATE(6557), 1, + STATE(6551), 1, aux_sym_query_body_repeat1, - STATE(6674), 1, + STATE(6699), 1, sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6521), 9, + STATE(6546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746074,7 +739431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94439] = 24, + [97710] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746095,37 +739452,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8664), 1, - anon_sym_group, - ACTIONS(8666), 1, - anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(5683), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6522), 9, + ACTIONS(3957), 1, + anon_sym_DOT, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(8316), 1, + anon_sym_COLON_COLON, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9212), 1, + anon_sym_EQ, + ACTIONS(9214), 1, + anon_sym_LBRACE, + ACTIONS(9216), 1, + anon_sym_LT, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + STATE(2214), 1, + sym_type_argument_list, + STATE(2686), 1, + sym_accessor_list, + STATE(6620), 1, + sym_parameter_list, + STATE(7109), 1, + sym_bracketed_argument_list, + STATE(7625), 1, + sym_type_parameter_list, + STATE(7658), 1, + sym_arrow_expression_clause, + ACTIONS(9210), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746135,7 +739493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94524] = 24, + [97798] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746156,37 +739514,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8676), 1, - anon_sym_group, - ACTIONS(8678), 1, - anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(5858), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6523), 9, + ACTIONS(3957), 1, + anon_sym_DOT, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(8316), 1, + anon_sym_COLON_COLON, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9212), 1, + anon_sym_EQ, + ACTIONS(9214), 1, + anon_sym_LBRACE, + ACTIONS(9216), 1, + anon_sym_LT, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + STATE(2214), 1, + sym_type_argument_list, + STATE(2689), 1, + sym_accessor_list, + STATE(6604), 1, + sym_parameter_list, + STATE(7109), 1, + sym_bracketed_argument_list, + STATE(7498), 1, + sym_type_parameter_list, + STATE(7831), 1, + sym_arrow_expression_clause, + ACTIONS(9210), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6548), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746196,7 +739555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94609] = 24, + [97886] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746217,37 +739576,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8700), 1, - anon_sym_group, - ACTIONS(8702), 1, - anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6524), 9, + ACTIONS(3957), 1, + anon_sym_DOT, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(8316), 1, + anon_sym_COLON_COLON, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9212), 1, + anon_sym_EQ, + ACTIONS(9214), 1, + anon_sym_LBRACE, + ACTIONS(9216), 1, + anon_sym_LT, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + STATE(2214), 1, + sym_type_argument_list, + STATE(2670), 1, + sym_accessor_list, + STATE(6625), 1, + sym_parameter_list, + STATE(7109), 1, + sym_bracketed_argument_list, + STATE(7632), 1, + sym_type_parameter_list, + STATE(8085), 1, + sym_arrow_expression_clause, + ACTIONS(9210), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6549), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746257,7 +739617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94694] = 24, + [97974] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746278,37 +739638,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8676), 1, - anon_sym_group, - ACTIONS(8678), 1, - anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(4868), 1, - sym__select_or_group_clause, - STATE(6527), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6525), 9, + ACTIONS(3957), 1, + anon_sym_DOT, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(8316), 1, + anon_sym_COLON_COLON, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9212), 1, + anon_sym_EQ, + ACTIONS(9214), 1, + anon_sym_LBRACE, + ACTIONS(9216), 1, + anon_sym_LT, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + STATE(2214), 1, + sym_type_argument_list, + STATE(2658), 1, + sym_accessor_list, + STATE(6610), 1, + sym_parameter_list, + STATE(7109), 1, + sym_bracketed_argument_list, + STATE(7411), 1, + sym_type_parameter_list, + STATE(8030), 1, + sym_arrow_expression_clause, + ACTIONS(9210), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746318,7 +739679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94779] = 24, + [98062] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746339,37 +739700,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9220), 1, anon_sym_where, - ACTIONS(8616), 1, + ACTIONS(9223), 1, anon_sym_from, - ACTIONS(8618), 1, + ACTIONS(9226), 1, anon_sym_join, - ACTIONS(8620), 1, + ACTIONS(9229), 1, anon_sym_let, - ACTIONS(8622), 1, + ACTIONS(9232), 1, anon_sym_orderby, - ACTIONS(8656), 1, + STATE(6699), 1, + sym__query_clause, + ACTIONS(9235), 2, anon_sym_group, - ACTIONS(8658), 1, anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, - sym_group_clause, - STATE(3849), 1, - sym__select_or_group_clause, - STATE(6490), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6526), 9, + STATE(6551), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746379,7 +739731,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94864] = 24, + aux_sym_query_body_repeat1, + [98134] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746400,37 +739753,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9239), 1, + anon_sym_COLON, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8676), 1, - anon_sym_group, - ACTIONS(8678), 1, - anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6527), 9, + STATE(6630), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6809), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6811), 1, + sym_record_base, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9237), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6713), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746440,7 +739785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94949] = 24, + [98208] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746461,37 +739806,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9239), 1, + anon_sym_COLON, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8696), 1, - anon_sym_group, - ACTIONS(8698), 1, - anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6528), 9, + STATE(6630), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6879), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6883), 1, + sym_record_base, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9245), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6713), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746501,7 +739838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95034] = 24, + [98282] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746522,37 +739859,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9239), 1, + anon_sym_COLON, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8708), 1, - anon_sym_group, - ACTIONS(8710), 1, - anon_sym_select, - STATE(5750), 1, - sym_select_clause, - STATE(5751), 1, - sym_group_clause, - STATE(5797), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6529), 9, + STATE(6552), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6841), 1, + sym_record_base, + STATE(6845), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9247), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6713), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746562,7 +739891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95119] = 24, + [98356] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746583,37 +739912,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(3955), 1, + anon_sym_COLON, + ACTIONS(9249), 1, + anon_sym_LT, + ACTIONS(9252), 1, + anon_sym_COLON_COLON, + STATE(5456), 1, + sym_type_argument_list, + ACTIONS(3957), 8, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8652), 1, - anon_sym_group, - ACTIONS(8654), 1, - anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6530), 9, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + STATE(6555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746623,7 +739939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95204] = 24, + [98420] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746644,37 +739960,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9239), 1, + anon_sym_COLON, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8692), 1, - anon_sym_group, - ACTIONS(8694), 1, - anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, - sym_group_clause, - STATE(3849), 1, - sym__select_or_group_clause, - STATE(6519), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6531), 9, + STATE(6553), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6832), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6853), 1, + sym_record_base, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9254), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6713), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746684,7 +739992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95289] = 24, + [98494] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746705,37 +740013,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8696), 1, - anon_sym_group, - ACTIONS(8698), 1, - anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(4868), 1, - sym__select_or_group_clause, - STATE(6528), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6532), 9, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(6562), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6858), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7974), 1, + sym_declaration_list, + STATE(6905), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6557), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746745,7 +740045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95374] = 24, + [98568] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746766,37 +740066,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9239), 1, + anon_sym_COLON, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8632), 1, - anon_sym_group, - ACTIONS(8634), 1, - anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6533), 9, + STATE(6630), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6821), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6822), 1, + sym_record_base, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9260), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6713), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6558), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746806,7 +740098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95459] = 24, + [98642] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746827,37 +740119,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9239), 1, + anon_sym_COLON, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8700), 1, - anon_sym_group, - ACTIONS(8702), 1, - anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(5869), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6534), 9, + STATE(6630), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6896), 1, + sym_record_base, + STATE(6910), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9262), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6713), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6559), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746867,7 +740151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95544] = 24, + [98716] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746888,37 +740172,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8632), 1, - anon_sym_group, - ACTIONS(8634), 1, - anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(4868), 1, - sym__select_or_group_clause, - STATE(6533), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6535), 9, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(6561), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6918), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7906), 1, + sym_declaration_list, + STATE(6905), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6560), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746928,7 +740204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95629] = 24, + [98790] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746949,37 +740225,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8664), 1, - anon_sym_group, - ACTIONS(8666), 1, - anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(4868), 1, - sym__select_or_group_clause, - STATE(6546), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6536), 9, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(6592), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6792), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(8104), 1, + sym_declaration_list, + STATE(6905), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6561), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746989,7 +740257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95714] = 24, + [98864] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747010,37 +740278,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8652), 1, - anon_sym_group, - ACTIONS(8654), 1, - anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(4868), 1, - sym__select_or_group_clause, - STATE(6530), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6537), 9, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(6592), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6800), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7952), 1, + sym_declaration_list, + STATE(6905), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747050,7 +740310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95799] = 24, + [98938] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747071,37 +740331,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9239), 1, + anon_sym_COLON, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8656), 1, - anon_sym_group, - ACTIONS(8658), 1, - anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, - sym_group_clause, - STATE(5502), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6538), 9, + STATE(6559), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6786), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6787), 1, + sym_record_base, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9264), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6713), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6563), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747111,7 +740363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95884] = 24, + [99012] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747132,37 +740384,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8628), 1, - anon_sym_group, - ACTIONS(8630), 1, - anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(5579), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6539), 9, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(6592), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6828), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7967), 1, + sym_declaration_list, + STATE(6905), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747172,7 +740416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95969] = 24, + [99086] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747193,37 +740437,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8704), 1, - anon_sym_group, - ACTIONS(8706), 1, - anon_sym_select, - STATE(5208), 1, - sym__select_or_group_clause, - STATE(5313), 1, - sym_group_clause, - STATE(5314), 1, - sym_select_clause, - STATE(6489), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6540), 9, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(6564), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6865), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7641), 1, + sym_declaration_list, + STATE(6905), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6565), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747233,7 +740469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96054] = 24, + [99160] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747254,37 +740490,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9239), 1, + anon_sym_COLON, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8640), 1, - anon_sym_group, - ACTIONS(8642), 1, - anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, - sym_group_clause, - STATE(3849), 1, - sym__select_or_group_clause, - STATE(6507), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6541), 9, + STATE(6558), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6794), 1, + sym_record_base, + STATE(6796), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9266), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6713), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6566), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747294,7 +740522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96139] = 24, + [99234] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747315,37 +740543,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9249), 1, + anon_sym_LT, + STATE(5456), 1, + sym_type_argument_list, + ACTIONS(3957), 9, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8688), 1, - anon_sym_group, - ACTIONS(8690), 1, - anon_sym_select, - STATE(5160), 1, - sym__select_or_group_clause, - STATE(5313), 1, - sym_group_clause, - STATE(5314), 1, - sym_select_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6542), 9, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + STATE(6567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747355,7 +740567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96224] = 24, + [99293] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747376,37 +740588,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8680), 1, - anon_sym_group, - ACTIONS(8682), 1, - anon_sym_select, - STATE(5750), 1, - sym_select_clause, - STATE(5751), 1, - sym_group_clause, - STATE(5782), 1, - sym__select_or_group_clause, - STATE(6520), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6543), 9, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9268), 1, + anon_sym_LBRACE, + STATE(6592), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6988), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6905), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747416,7 +740618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96309] = 24, + [99364] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747437,37 +740639,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8668), 1, - anon_sym_group, - ACTIONS(8670), 1, - anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, - sym_group_clause, - STATE(3851), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6544), 9, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9270), 1, + anon_sym_LBRACE, + STATE(6578), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7036), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6905), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747477,7 +740669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96394] = 24, + [99435] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747498,37 +740690,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8688), 1, - anon_sym_group, - ACTIONS(8690), 1, - anon_sym_select, - STATE(5208), 1, - sym__select_or_group_clause, - STATE(5313), 1, - sym_group_clause, - STATE(5314), 1, - sym_select_clause, - STATE(6551), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6545), 9, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9272), 1, + anon_sym_LBRACE, + STATE(6577), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6976), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6905), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6570), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747538,7 +740720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96479] = 24, + [99506] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747559,37 +740741,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8664), 1, - anon_sym_group, - ACTIONS(8666), 1, - anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6546), 9, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9274), 1, + anon_sym_LBRACE, + STATE(6576), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7023), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6905), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747599,7 +740771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96564] = 24, + [99577] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747620,37 +740792,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8692), 1, - anon_sym_group, - ACTIONS(8694), 1, - anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, - sym_group_clause, - STATE(5945), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6547), 9, + ACTIONS(3957), 1, + anon_sym_DOT, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(8283), 1, + anon_sym_LT, + ACTIONS(8316), 1, + anon_sym_COLON_COLON, + ACTIONS(9210), 1, + anon_sym_COMMA, + ACTIONS(9214), 1, + anon_sym_LBRACE, + ACTIONS(9276), 1, + anon_sym_SEMI, + ACTIONS(9279), 1, + anon_sym_EQ, + STATE(2214), 1, + sym_type_argument_list, + STATE(2763), 1, + sym_accessor_list, + STATE(7109), 1, + sym_bracketed_argument_list, + STATE(6572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747660,7 +740824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96649] = 24, + [99652] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747681,37 +740845,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(9281), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8680), 1, - anon_sym_group, - ACTIONS(8682), 1, - anon_sym_select, - STATE(5603), 1, - sym__select_or_group_clause, - STATE(5750), 1, - sym_select_clause, - STATE(5751), 1, - sym_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6548), 9, + anon_sym_EQ_GT, + ACTIONS(3694), 6, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_STAR, + STATE(6573), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747721,7 +740868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96734] = 24, + [99709] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747742,37 +740889,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8632), 1, - anon_sym_group, - ACTIONS(8634), 1, - anon_sym_select, - STATE(4742), 1, - sym_select_clause, - STATE(4772), 1, - sym_group_clause, - STATE(5835), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6549), 9, + ACTIONS(3957), 1, + anon_sym_DOT, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(8283), 1, + anon_sym_LT, + ACTIONS(8316), 1, + anon_sym_COLON_COLON, + ACTIONS(9210), 1, + anon_sym_COMMA, + ACTIONS(9214), 1, + anon_sym_LBRACE, + ACTIONS(9279), 1, + anon_sym_EQ, + ACTIONS(9284), 1, + anon_sym_SEMI, + STATE(2214), 1, + sym_type_argument_list, + STATE(2813), 1, + sym_accessor_list, + STATE(7109), 1, + sym_bracketed_argument_list, + STATE(6574), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747782,7 +740921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96819] = 24, + [99784] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747803,37 +740942,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(3913), 1, + anon_sym_COLON, + ACTIONS(3694), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_STAR, + ACTIONS(3910), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8644), 1, - anon_sym_group, - ACTIONS(8646), 1, - anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, - sym_group_clause, - STATE(3849), 1, - sym__select_or_group_clause, - STATE(6487), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6550), 9, + STATE(6575), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747843,7 +740966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96904] = 24, + [99843] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747864,37 +740987,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8688), 1, - anon_sym_group, - ACTIONS(8690), 1, - anon_sym_select, - STATE(5185), 1, - sym__select_or_group_clause, - STATE(5313), 1, - sym_group_clause, - STATE(5314), 1, - sym_select_clause, - STATE(6557), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6551), 9, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9287), 1, + anon_sym_LBRACE, + STATE(6592), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6973), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6905), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6576), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747904,7 +741017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96989] = 24, + [99914] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747925,37 +741038,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8616), 1, - anon_sym_from, - ACTIONS(8618), 1, - anon_sym_join, - ACTIONS(8620), 1, - anon_sym_let, - ACTIONS(8622), 1, - anon_sym_orderby, - ACTIONS(8668), 1, - anon_sym_group, - ACTIONS(8670), 1, - anon_sym_select, - STATE(3822), 1, - sym_select_clause, - STATE(3823), 1, - sym_group_clause, - STATE(3849), 1, - sym__select_or_group_clause, - STATE(6544), 1, - aux_sym_query_body_repeat1, - STATE(6674), 1, - sym__query_clause, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6552), 9, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9289), 1, + anon_sym_LBRACE, + STATE(6592), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7037), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6905), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747965,7 +741068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97074] = 26, + [99985] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747986,38 +741089,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3953), 1, - anon_sym_DOT, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(7775), 1, - anon_sym_COLON_COLON, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8714), 1, - anon_sym_EQ, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8718), 1, + ACTIONS(9241), 1, anon_sym_LT, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - STATE(2209), 1, - sym_type_argument_list, - STATE(2788), 1, - sym_accessor_list, - STATE(6606), 1, - sym_parameter_list, - STATE(7237), 1, - sym_bracketed_argument_list, - STATE(7403), 1, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9291), 1, + anon_sym_LBRACE, + STATE(6592), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7010), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6905), 3, sym_type_parameter_list, - STATE(8089), 1, - sym_arrow_expression_clause, - ACTIONS(8712), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6553), 9, + sym_base_list, + sym_parameter_list, + STATE(6578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748027,7 +741119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97162] = 26, + [100056] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748048,38 +741140,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3953), 1, + ACTIONS(3957), 1, anon_sym_DOT, - ACTIONS(5430), 1, + ACTIONS(5765), 1, anon_sym_LBRACK, - ACTIONS(7775), 1, + ACTIONS(8283), 1, + anon_sym_LT, + ACTIONS(8316), 1, anon_sym_COLON_COLON, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8714), 1, - anon_sym_EQ, - ACTIONS(8716), 1, + ACTIONS(9210), 1, + anon_sym_COMMA, + ACTIONS(9214), 1, anon_sym_LBRACE, - ACTIONS(8718), 1, - anon_sym_LT, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - STATE(2209), 1, + ACTIONS(9279), 1, + anon_sym_EQ, + ACTIONS(9293), 1, + anon_sym_SEMI, + STATE(2214), 1, sym_type_argument_list, - STATE(2791), 1, + STATE(2846), 1, sym_accessor_list, - STATE(6599), 1, - sym_parameter_list, - STATE(7237), 1, + STATE(7109), 1, sym_bracketed_argument_list, - STATE(7513), 1, - sym_type_parameter_list, - STATE(7818), 1, - sym_arrow_expression_clause, - ACTIONS(8712), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6554), 9, + STATE(6579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748089,7 +741172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97250] = 26, + [100131] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748110,38 +741193,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3953), 1, - anon_sym_DOT, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(7775), 1, - anon_sym_COLON_COLON, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8714), 1, - anon_sym_EQ, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8718), 1, + ACTIONS(9241), 1, anon_sym_LT, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - STATE(2209), 1, - sym_type_argument_list, - STATE(2755), 1, - sym_accessor_list, - STATE(6604), 1, - sym_parameter_list, - STATE(7237), 1, - sym_bracketed_argument_list, - STATE(7633), 1, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9296), 1, + anon_sym_LBRACE, + STATE(6568), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6994), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6905), 3, sym_type_parameter_list, - STATE(7649), 1, - sym_arrow_expression_clause, - ACTIONS(8712), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6555), 9, + sym_base_list, + sym_parameter_list, + STATE(6580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748151,7 +741223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97338] = 26, + [100202] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748172,38 +741244,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3953), 1, + ACTIONS(3957), 1, anon_sym_DOT, - ACTIONS(5430), 1, + ACTIONS(5765), 1, anon_sym_LBRACK, - ACTIONS(7775), 1, + ACTIONS(8283), 1, + anon_sym_LT, + ACTIONS(8316), 1, anon_sym_COLON_COLON, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8714), 1, - anon_sym_EQ, - ACTIONS(8716), 1, + ACTIONS(9210), 1, + anon_sym_COMMA, + ACTIONS(9214), 1, anon_sym_LBRACE, - ACTIONS(8718), 1, - anon_sym_LT, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - STATE(2209), 1, + ACTIONS(9279), 1, + anon_sym_EQ, + ACTIONS(9298), 1, + anon_sym_SEMI, + STATE(2214), 1, sym_type_argument_list, - STATE(2775), 1, + STATE(2728), 1, sym_accessor_list, - STATE(6635), 1, - sym_parameter_list, - STATE(7237), 1, + STATE(7109), 1, sym_bracketed_argument_list, - STATE(7414), 1, - sym_type_parameter_list, - STATE(8066), 1, - sym_arrow_expression_clause, - ACTIONS(8712), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6556), 9, + STATE(6581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748213,7 +741276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97426] = 19, + [100277] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748234,28 +741297,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8722), 1, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(9301), 1, + anon_sym_DOT, + ACTIONS(4331), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - ACTIONS(8725), 1, - anon_sym_from, - ACTIONS(8728), 1, - anon_sym_join, - ACTIONS(8731), 1, - anon_sym_let, - ACTIONS(8734), 1, - anon_sym_orderby, - STATE(6674), 1, - sym__query_clause, - ACTIONS(8737), 2, - anon_sym_group, - anon_sym_select, - STATE(6696), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6557), 10, + STATE(6582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748265,8 +741322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_query_body_repeat1, - [97498] = 21, + [100339] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748287,29 +741343,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(8743), 1, + ACTIONS(9212), 1, + anon_sym_EQ, + ACTIONS(9241), 1, anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6631), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6888), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7824), 1, - sym_declaration_list, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, + STATE(6937), 1, sym_parameter_list, - STATE(6558), 9, + STATE(7109), 1, + sym_bracketed_argument_list, + STATE(7424), 1, + sym_type_parameter_list, + ACTIONS(9210), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6583), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748319,7 +741372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97572] = 16, + [100409] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748340,24 +741393,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(8747), 1, - anon_sym_LT, - ACTIONS(8750), 1, - anon_sym_COLON_COLON, - STATE(5464), 1, - sym_type_argument_list, - ACTIONS(3953), 8, - anon_sym_LBRACK, + ACTIONS(9303), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + STATE(6594), 1, + aux_sym_order_by_clause_repeat1, + ACTIONS(9305), 7, anon_sym_where, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(6559), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6584), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748367,7 +741415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97636] = 21, + [100466] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748388,29 +741436,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - STATE(6558), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6868), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2838), 1, + sym__function_body, + STATE(6596), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7831), 1, - sym_declaration_list, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6560), 9, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6585), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748420,7 +741464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97710] = 21, + [100535] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748441,29 +741485,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - STATE(6631), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6833), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2818), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(8102), 1, - sym_declaration_list, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6561), 9, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748473,7 +741513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97784] = 21, + [100604] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748494,29 +741534,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8754), 1, - anon_sym_COLON, - STATE(6601), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6782), 1, - sym_record_base, - STATE(6832), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(8752), 2, + ACTIONS(9307), 1, anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6744), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6562), 9, + STATE(2629), 1, + sym_block, + STATE(2778), 1, + sym__function_body, + STATE(6619), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748526,7 +741562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97858] = 21, + [100673] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748547,29 +741583,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(6234), 1, + anon_sym_LBRACE, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8754), 1, - anon_sym_COLON, - STATE(6572), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6836), 1, - sym_record_base, - STATE(6839), 1, + ACTIONS(9311), 1, + anon_sym_SEMI, + STATE(1977), 1, + sym_block, + STATE(1979), 1, + sym__function_body, + STATE(6606), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(8756), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6744), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6563), 9, + STATE(7654), 1, + sym_arrow_expression_clause, + STATE(6588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748579,7 +741611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97932] = 21, + [100742] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748600,29 +741632,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(6227), 1, + anon_sym_LBRACE, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8754), 1, - anon_sym_COLON, - STATE(6565), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6816), 1, - sym_record_base, - STATE(6823), 1, + ACTIONS(9313), 1, + anon_sym_SEMI, + STATE(2050), 1, + sym_block, + STATE(2065), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(8758), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6744), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6564), 9, + STATE(7643), 1, + sym_arrow_expression_clause, + STATE(6589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748632,7 +741660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98006] = 21, + [100811] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748653,29 +741681,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8754), 1, - anon_sym_COLON, - STATE(6601), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6881), 1, - sym_record_base, - STATE(6884), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(8760), 2, + ACTIONS(9307), 1, anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6744), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6565), 9, + STATE(2629), 1, + sym_block, + STATE(2745), 1, + sym__function_body, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748685,7 +741709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98080] = 21, + [100880] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748706,29 +741730,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - STATE(6568), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6803), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2833), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(8058), 1, - sym_declaration_list, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6566), 9, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748738,7 +741758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98154] = 21, + [100949] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748759,29 +741779,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, + ACTIONS(9315), 1, + anon_sym_COLON, + ACTIONS(9318), 1, anon_sym_LPAREN, - ACTIONS(8743), 1, + ACTIONS(9323), 1, anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8754), 1, - anon_sym_COLON, - STATE(6569), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6845), 1, - sym_record_base, - STATE(6846), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(8762), 2, - anon_sym_SEMI, + ACTIONS(9321), 2, anon_sym_LBRACE, - STATE(6744), 2, + anon_sym_where, + STATE(6905), 3, sym_type_parameter_list, + sym_base_list, sym_parameter_list, - STATE(6567), 9, + STATE(6592), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748791,7 +741802,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98228] = 21, + aux_sym__class_declaration_initializer_repeat3, + [101010] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748812,29 +741824,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - STATE(6631), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6906), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2737), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7782), 1, - sym_declaration_list, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6568), 9, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6593), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748844,7 +741852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98302] = 21, + [101079] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748865,29 +741873,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9326), 1, + anon_sym_COMMA, + ACTIONS(9329), 7, anon_sym_where, - ACTIONS(8754), 1, - anon_sym_COLON, - STATE(6601), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6799), 1, - sym_record_base, - STATE(6809), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(8764), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6744), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6569), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6594), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748897,7 +741893,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98376] = 21, + aux_sym_order_by_clause_repeat1, + [101134] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748918,29 +741915,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - STATE(6561), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6870), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2843), 1, + sym__function_body, + STATE(6591), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7906), 1, - sym_declaration_list, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6570), 9, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6595), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748950,7 +741943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98450] = 21, + [101203] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748971,29 +741964,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8754), 1, - anon_sym_COLON, - STATE(6562), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6874), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6876), 1, - sym_record_base, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(8766), 2, + ACTIONS(9307), 1, anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6744), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6571), 9, + STATE(2629), 1, + sym_block, + STATE(2902), 1, + sym__function_body, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749003,7 +741992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98524] = 21, + [101272] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749024,29 +742013,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8754), 1, - anon_sym_COLON, - STATE(6601), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6899), 1, - sym_record_base, - STATE(6900), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(8768), 2, + ACTIONS(9307), 1, anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6744), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6572), 9, + STATE(2629), 1, + sym_block, + STATE(2795), 1, + sym__function_body, + STATE(6624), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6597), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749056,7 +742041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98598] = 20, + [101341] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749077,27 +742062,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8770), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6631), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6952), 1, + STATE(2629), 1, + sym_block, + STATE(2719), 1, + sym__function_body, + STATE(6608), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6573), 9, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6598), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749107,7 +742090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98669] = 20, + [101410] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749128,27 +742111,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, + ACTIONS(3955), 1, anon_sym_COLON, - ACTIONS(8743), 1, + ACTIONS(9331), 1, anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8772), 1, + ACTIONS(9334), 1, + anon_sym_COLON_COLON, + STATE(2214), 1, + sym_type_argument_list, + ACTIONS(3957), 5, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(6631), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7027), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6574), 9, + anon_sym_where, + anon_sym_DOT, + STATE(6599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749158,7 +742135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98740] = 20, + [101471] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749179,27 +742156,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8774), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6580), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6992), 1, + STATE(2629), 1, + sym_block, + STATE(2803), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6575), 9, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6600), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749209,7 +742184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98811] = 14, + [101540] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749230,21 +742205,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3915), 1, - anon_sym_COLON, - ACTIONS(3696), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(3912), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - STATE(6576), 9, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2844), 1, + sym__function_body, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6601), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749254,7 +742233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98870] = 20, + [101609] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749275,27 +742254,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8743), 1, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8776), 1, - anon_sym_LBRACE, - STATE(6573), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7002), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6577), 9, + STATE(5456), 1, + sym_type_argument_list, + ACTIONS(9336), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(3957), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + STATE(6602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749305,7 +742278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98941] = 22, + [101670] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749326,29 +742299,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3953), 1, - anon_sym_DOT, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(7767), 1, - anon_sym_LT, - ACTIONS(7775), 1, - anon_sym_COLON_COLON, - ACTIONS(8712), 1, - anon_sym_COMMA, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8778), 1, - anon_sym_SEMI, - ACTIONS(8781), 1, - anon_sym_EQ, - STATE(2209), 1, - sym_type_argument_list, - STATE(3028), 1, - sym_accessor_list, - STATE(7237), 1, - sym_bracketed_argument_list, - STATE(6578), 9, + ACTIONS(9341), 1, + anon_sym_into, + STATE(6657), 1, + sym_join_into_clause, + ACTIONS(9339), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749358,7 +742321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99016] = 22, + [101727] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749379,29 +742342,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3953), 1, - anon_sym_DOT, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(7767), 1, - anon_sym_LT, - ACTIONS(7775), 1, - anon_sym_COLON_COLON, - ACTIONS(8712), 1, - anon_sym_COMMA, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8781), 1, - anon_sym_EQ, - ACTIONS(8783), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9307), 1, anon_sym_SEMI, - STATE(2209), 1, - sym_type_argument_list, - STATE(3012), 1, - sym_accessor_list, - STATE(7237), 1, - sym_bracketed_argument_list, - STATE(6579), 9, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2825), 1, + sym__function_body, + STATE(6601), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749411,7 +742370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99091] = 20, + [101796] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749432,27 +742391,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8786), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6631), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7035), 1, + STATE(2629), 1, + sym_block, + STATE(2810), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6580), 9, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749462,7 +742419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99162] = 22, + [101865] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749483,29 +742440,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3953), 1, - anon_sym_DOT, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(7767), 1, - anon_sym_LT, - ACTIONS(7775), 1, - anon_sym_COLON_COLON, - ACTIONS(8712), 1, - anon_sym_COMMA, - ACTIONS(8716), 1, + ACTIONS(6234), 1, anon_sym_LBRACE, - ACTIONS(8781), 1, - anon_sym_EQ, - ACTIONS(8788), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9311), 1, anon_sym_SEMI, - STATE(2209), 1, - sym_type_argument_list, - STATE(2973), 1, - sym_accessor_list, - STATE(7237), 1, - sym_bracketed_argument_list, - STATE(6581), 9, + STATE(1977), 1, + sym_block, + STATE(1982), 1, + sym__function_body, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7654), 1, + sym_arrow_expression_clause, + STATE(6606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749515,7 +742468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99237] = 22, + [101934] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749536,29 +742489,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3953), 1, - anon_sym_DOT, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(7767), 1, - anon_sym_LT, - ACTIONS(7775), 1, - anon_sym_COLON_COLON, - ACTIONS(8712), 1, - anon_sym_COMMA, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8781), 1, - anon_sym_EQ, - ACTIONS(8791), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9307), 1, anon_sym_SEMI, - STATE(2209), 1, - sym_type_argument_list, - STATE(3018), 1, - sym_accessor_list, - STATE(7237), 1, - sym_bracketed_argument_list, - STATE(6582), 9, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2899), 1, + sym__function_body, + STATE(6615), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749568,7 +742517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99312] = 20, + [102003] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749589,27 +742538,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8794), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6584), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7044), 1, + STATE(2629), 1, + sym_block, + STATE(2722), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6583), 9, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749619,7 +742566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99383] = 20, + [102072] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749640,27 +742587,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8796), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6631), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6989), 1, + STATE(2629), 1, + sym_block, + STATE(2706), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6584), 9, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749670,7 +742615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99454] = 20, + [102141] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749691,27 +742636,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8798), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6574), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6944), 1, + STATE(2629), 1, + sym_block, + STATE(2762), 1, + sym__function_body, + STATE(6600), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6585), 9, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749721,7 +742664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99525] = 13, + [102210] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749742,65 +742685,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8800), 5, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7536), 1, anon_sym_LBRACE, - anon_sym_where, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(3696), 6, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(6586), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [99582] = 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(8747), 1, - anon_sym_LT, - STATE(5464), 1, - sym_type_argument_list, - ACTIONS(3953), 9, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(9243), 1, anon_sym_where, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(6587), 9, + ACTIONS(9343), 1, + anon_sym_SEMI, + STATE(2122), 1, + sym__function_body, + STATE(2160), 1, + sym_block, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(8054), 1, + sym_arrow_expression_clause, + STATE(6611), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749810,7 +742713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99641] = 20, + [102279] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749831,26 +742734,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(5430), 1, + ACTIONS(5765), 1, anon_sym_LBRACK, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8714), 1, - anon_sym_EQ, - ACTIONS(8743), 1, + ACTIONS(9241), 1, anon_sym_LT, - STATE(6982), 1, + ACTIONS(9279), 1, + anon_sym_EQ, + STATE(6981), 1, sym_parameter_list, - STATE(7237), 1, + STATE(7109), 1, sym_bracketed_argument_list, - STATE(7520), 1, + STATE(7618), 1, sym_type_parameter_list, - ACTIONS(8712), 2, + ACTIONS(9210), 2, anon_sym_SEMI, anon_sym_COMMA, - STATE(6588), 9, + STATE(6612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749860,7 +742761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99711] = 16, + [102346] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749881,22 +742782,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(8803), 1, - anon_sym_DOT, - ACTIONS(4331), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7206), 1, anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - STATE(6589), 9, + ACTIONS(9307), 1, + anon_sym_SEMI, + STATE(2629), 1, + sym_block, + STATE(6627), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7534), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749906,7 +742810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99773] = 20, + [102415] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749927,25 +742831,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(2943), 1, + STATE(2766), 1, sym__function_body, - STATE(6779), 1, + STATE(6621), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7900), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6590), 9, + STATE(6614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749955,7 +742859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99842] = 20, + [102484] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749976,25 +742880,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(2955), 1, + STATE(2890), 1, sym__function_body, - STATE(6597), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7900), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6591), 9, + STATE(6615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750004,7 +742908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99911] = 20, + [102553] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750025,25 +742929,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(2924), 1, + STATE(2824), 1, sym__function_body, - STATE(6779), 1, + STATE(6586), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7900), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6592), 9, + STATE(6616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750053,7 +742957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99980] = 19, + [102622] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750074,24 +742978,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8781), 1, - anon_sym_EQ, - STATE(6969), 1, - sym_parameter_list, - STATE(7237), 1, - sym_bracketed_argument_list, - STATE(7524), 1, - sym_type_parameter_list, - ACTIONS(8712), 2, + ACTIONS(6227), 1, + anon_sym_LBRACE, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9313), 1, anon_sym_SEMI, - anon_sym_COMMA, - STATE(6593), 9, + STATE(2046), 1, + sym__function_body, + STATE(2050), 1, + sym_block, + STATE(6589), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7643), 1, + sym_arrow_expression_clause, + STATE(6617), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750101,7 +743006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100047] = 20, + [102691] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750122,25 +743027,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6889), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9303), 1, + anon_sym_COMMA, + STATE(6584), 1, + aux_sym_order_by_clause_repeat1, + ACTIONS(9345), 7, anon_sym_where, - ACTIONS(8809), 1, - anon_sym_SEMI, - STATE(1967), 1, - sym__function_body, - STATE(1989), 1, - sym_block, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(8059), 1, - sym_arrow_expression_clause, - STATE(6594), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6618), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750150,7 +743049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100116] = 20, + [102748] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750171,25 +743070,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(2920), 1, + STATE(2863), 1, sym__function_body, - STATE(6779), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7900), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6595), 9, + STATE(6619), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750199,7 +743098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100185] = 20, + [102817] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750220,25 +743119,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(2912), 1, + STATE(2699), 1, sym__function_body, - STATE(6779), 1, + STATE(6629), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7900), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6596), 9, + STATE(6620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750248,7 +743147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100254] = 20, + [102886] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750269,25 +743168,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(2923), 1, + STATE(2764), 1, sym__function_body, - STATE(6779), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7900), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6597), 9, + STATE(6621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750297,7 +743196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100323] = 20, + [102955] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750318,25 +743217,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7425), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8811), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - STATE(2121), 1, - sym__function_body, - STATE(2159), 1, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, sym_block, - STATE(6779), 1, + STATE(2774), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7740), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6598), 9, + STATE(6622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750346,7 +743245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100392] = 20, + [103024] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750367,25 +743266,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(2971), 1, + STATE(2820), 1, sym__function_body, - STATE(6607), 1, + STATE(6609), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7900), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6599), 9, + STATE(6623), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750395,7 +743294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100461] = 20, + [103093] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750416,25 +743315,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(2978), 1, + STATE(2889), 1, sym__function_body, - STATE(6590), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7900), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6600), 9, + STATE(6624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750444,7 +743343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100530] = 15, + [103162] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750465,19 +743364,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8815), 1, - anon_sym_LPAREN, - ACTIONS(8818), 1, - anon_sym_LT, - STATE(6744), 2, - sym_type_parameter_list, - sym_parameter_list, - ACTIONS(8813), 4, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9307), 1, anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(9309), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6601), 10, + STATE(2629), 1, + sym_block, + STATE(2910), 1, + sym__function_body, + STATE(6593), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750487,8 +743392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__record_declaration_initializer_repeat1, - [100589] = 20, + [103231] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750509,25 +743413,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6902), 1, + ACTIONS(7536), 1, anon_sym_LBRACE, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8821), 1, + ACTIONS(9343), 1, anon_sym_SEMI, - STATE(2067), 1, + STATE(2157), 1, sym__function_body, - STATE(2070), 1, + STATE(2160), 1, sym_block, - STATE(6610), 1, + STATE(6611), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7783), 1, + STATE(8054), 1, sym_arrow_expression_clause, - STATE(6602), 9, + STATE(6626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750537,7 +743441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100658] = 20, + [103300] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750558,25 +743462,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(7206), 1, + anon_sym_LBRACE, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(2975), 1, - sym__function_body, - STATE(6779), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7900), 1, + STATE(7595), 1, + sym__function_body, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6603), 9, + STATE(6627), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750586,7 +743490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100727] = 20, + [103369] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750607,25 +743511,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(3046), 1, + STATE(2750), 1, sym__function_body, - STATE(6634), 1, + STATE(6622), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7900), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6604), 9, + STATE(6628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750635,7 +743539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100796] = 13, + [103438] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750656,17 +743560,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8823), 1, - anon_sym_COMMA, - ACTIONS(8826), 7, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6605), 10, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2829), 1, + sym__function_body, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750676,8 +743588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_order_by_clause_repeat1, - [100851] = 20, + [103507] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750698,25 +743609,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9349), 1, + anon_sym_LPAREN, + ACTIONS(9352), 1, + anon_sym_LT, + STATE(6713), 2, + sym_type_parameter_list, + sym_parameter_list, + ACTIONS(9347), 4, anon_sym_SEMI, - ACTIONS(8807), 1, + anon_sym_COLON, anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(3021), 1, - sym__function_body, - STATE(6603), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6606), 9, + anon_sym_where, + STATE(6630), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750726,7 +743631,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100920] = 20, + aux_sym__record_declaration_initializer_repeat1, + [103566] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750747,25 +743653,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(2929), 1, + STATE(2880), 1, sym__function_body, - STATE(6779), 1, + STATE(6590), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7900), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6607), 9, + STATE(6631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750775,7 +743681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100989] = 20, + [103635] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750796,25 +743702,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(2961), 1, + STATE(2891), 1, sym__function_body, - STATE(6592), 1, + STATE(6605), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7900), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6608), 9, + STATE(6632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750824,7 +743730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101058] = 20, + [103704] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750845,25 +743751,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(6063), 1, + anon_sym_LPAREN, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(9357), 1, + anon_sym_COMMA, + STATE(6852), 1, + aux_sym_record_base_repeat1, + STATE(6974), 1, + sym_argument_list, + ACTIONS(9355), 3, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - STATE(2698), 1, - sym_block, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7624), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6609), 9, + STATE(6633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750873,7 +743775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101127] = 20, + [103766] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750894,25 +743796,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6902), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9359), 8, + anon_sym_COMMA, anon_sym_where, - ACTIONS(8821), 1, - anon_sym_SEMI, - STATE(2035), 1, - sym__function_body, - STATE(2070), 1, - sym_block, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7783), 1, - sym_arrow_expression_clause, - STATE(6610), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6634), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750922,7 +743815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101196] = 14, + [103818] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750943,11 +743836,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8828), 1, + ACTIONS(9361), 8, anon_sym_COMMA, - STATE(6616), 1, - aux_sym_order_by_clause_repeat1, - ACTIONS(8830), 7, anon_sym_where, anon_sym_from, anon_sym_join, @@ -750955,7 +743845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(6611), 9, + STATE(6635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750965,7 +743855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101253] = 20, + [103870] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750986,25 +743876,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - STATE(2698), 1, - sym_block, - STATE(6609), 1, + ACTIONS(9363), 1, + anon_sym_COLON, + ACTIONS(9365), 1, + anon_sym_LBRACE, + STATE(6737), 1, + sym_type_parameter_list, + STATE(6925), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6932), 1, + sym_base_list, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7628), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6612), 9, + STATE(6636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751014,7 +743902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101322] = 20, + [103936] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751035,25 +743923,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2945), 1, - sym__function_body, - STATE(6595), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9241), 1, + anon_sym_LT, + STATE(2674), 1, + sym_accessor_list, + STATE(6632), 1, + sym_parameter_list, + STATE(7538), 1, + sym_type_parameter_list, + STATE(7784), 1, sym_arrow_expression_clause, - STATE(6613), 9, + STATE(6637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751063,7 +743949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101391] = 20, + [104002] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751084,25 +743970,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9331), 1, + anon_sym_LT, + STATE(2214), 1, + sym_type_argument_list, + ACTIONS(3957), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2950), 1, - sym__function_body, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6614), 9, + anon_sym_where, + anon_sym_DOT, + STATE(6638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751112,7 +743991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101460] = 20, + [104058] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751133,25 +744012,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6889), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9214), 1, anon_sym_LBRACE, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8809), 1, - anon_sym_SEMI, - STATE(1978), 1, - sym__function_body, - STATE(1989), 1, - sym_block, - STATE(6594), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(8059), 1, + ACTIONS(9241), 1, + anon_sym_LT, + STATE(2654), 1, + sym_accessor_list, + STATE(6597), 1, + sym_parameter_list, + STATE(7599), 1, + sym_type_parameter_list, + STATE(7704), 1, sym_arrow_expression_clause, - STATE(6615), 9, + STATE(6639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751161,7 +744038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101529] = 14, + [104124] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751182,19 +744059,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8828), 1, + ACTIONS(9369), 1, anon_sym_COMMA, - STATE(6605), 1, - aux_sym_order_by_clause_repeat1, - ACTIONS(8832), 7, + ACTIONS(9371), 1, + anon_sym_LPAREN, + STATE(6647), 1, + aux_sym_base_list_repeat1, + STATE(6651), 1, + sym_argument_list, + ACTIONS(9367), 4, + anon_sym_COLON, + 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(6616), 9, + STATE(6640), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751204,7 +744082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101586] = 20, + [104184] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751225,25 +744103,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2990), 1, - sym__function_body, - STATE(6614), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9241), 1, + anon_sym_LT, + STATE(2662), 1, + sym_accessor_list, + STATE(6628), 1, + sym_parameter_list, + STATE(7630), 1, + sym_type_parameter_list, + STATE(7644), 1, sym_arrow_expression_clause, - STATE(6617), 9, + STATE(6641), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751253,7 +744129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101655] = 20, + [104250] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751274,25 +744150,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9363), 1, + anon_sym_COLON, + ACTIONS(9374), 1, anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2942), 1, - sym__function_body, - STATE(6779), 1, + STATE(6759), 1, + sym_type_parameter_list, + STATE(6957), 1, aux_sym__class_declaration_initializer_repeat4, STATE(6958), 1, + sym_base_list, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6618), 9, + STATE(6642), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751302,7 +744176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101724] = 20, + [104316] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751323,25 +744197,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2811), 1, - sym__function_body, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9241), 1, + anon_sym_LT, + STATE(2687), 1, + sym_accessor_list, + STATE(6616), 1, + sym_parameter_list, + STATE(7383), 1, + sym_type_parameter_list, + STATE(8122), 1, sym_arrow_expression_clause, - STATE(6619), 9, + STATE(6643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751351,7 +744223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101793] = 16, + [104382] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751372,21 +744244,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3964), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(9241), 1, anon_sym_LT, - STATE(5464), 1, - sym_type_argument_list, - ACTIONS(8834), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3953), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(6620), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9363), 1, + anon_sym_COLON, + ACTIONS(9376), 1, + anon_sym_LBRACE, + STATE(6702), 1, + sym_type_parameter_list, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7039), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(7040), 1, + sym_base_list, + STATE(6644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751396,46 +744270,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101854] = 20, - ACTIONS(3), 1, + [104448] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(7425), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8811), 1, - anon_sym_SEMI, - STATE(2159), 1, - sym_block, - STATE(2162), 1, - sym__function_body, - STATE(6598), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7740), 1, - sym_arrow_expression_clause, - STATE(6621), 9, + ACTIONS(9378), 1, + anon_sym_DQUOTE, + ACTIONS(9380), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9382), 1, + aux_sym_string_literal_content_token2, + STATE(6667), 1, + aux_sym_string_literal_repeat1, + STATE(6788), 1, + sym_string_literal_content, + ACTIONS(9384), 2, + sym_escape_sequence, + sym_grit_metavariable, + STATE(6645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751445,7 +744314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101923] = 20, + [104509] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751466,25 +744335,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9386), 7, anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2989), 1, - sym__function_body, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6622), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751494,7 +744353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101992] = 20, + [104560] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751515,25 +744374,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9369), 1, + anon_sym_COMMA, + STATE(6689), 1, + aux_sym_base_list_repeat1, + ACTIONS(9388), 5, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(3031), 1, - sym__function_body, - STATE(6630), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6623), 9, + anon_sym_LT, + anon_sym_where, + STATE(6647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751543,7 +744394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102061] = 20, + [104615] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751564,25 +744415,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2908), 1, - sym__function_body, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6624), 9, + ACTIONS(9392), 1, + sym_interpolation_end_quote, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + STATE(6649), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6930), 1, + sym__interpolated_string_content, + STATE(6966), 1, + sym_interpolation, + ACTIONS(9390), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751592,7 +744438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102130] = 20, + [104676] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751613,25 +744459,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2925), 1, - sym__function_body, - STATE(6619), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6625), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9396), 1, + sym_interpolation_end_quote, + STATE(6678), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6930), 1, + sym__interpolated_string_content, + STATE(6966), 1, + sym_interpolation, + ACTIONS(9390), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6649), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751641,7 +744482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102199] = 20, + [104737] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751662,25 +744503,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2953), 1, - sym__function_body, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6626), 9, + ACTIONS(3217), 1, + anon_sym_LBRACK, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9398), 1, + aux_sym_preproc_if_token3, + STATE(6916), 1, + sym_attribute_list, + STATE(7809), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751690,7 +744526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102268] = 20, + [104798] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751711,25 +744547,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9369), 1, + anon_sym_COMMA, + STATE(6690), 1, + aux_sym_base_list_repeat1, + ACTIONS(9400), 5, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2930), 1, - sym__function_body, - STATE(6596), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6627), 9, + anon_sym_LT, + anon_sym_where, + STATE(6651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751739,7 +744567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102337] = 20, + [104853] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751760,25 +744588,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2916), 1, - sym__function_body, - STATE(6624), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6628), 9, + ACTIONS(3217), 1, + anon_sym_LBRACK, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9402), 1, + aux_sym_preproc_if_token3, + STATE(6810), 1, + sym_attribute_list, + STATE(8114), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6652), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751788,7 +744611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102406] = 14, + [104914] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751809,19 +744632,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8839), 1, - anon_sym_into, - STATE(6705), 1, - sym_join_into_clause, - ACTIONS(8837), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6629), 9, + ACTIONS(3217), 1, + anon_sym_LBRACK, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9404), 1, + aux_sym_preproc_if_token3, + STATE(6848), 1, + sym_attribute_list, + STATE(7771), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751831,7 +744655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102463] = 20, + [104975] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751852,25 +744676,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(6234), 1, anon_sym_LBRACE, - STATE(2698), 1, + ACTIONS(9406), 1, + anon_sym_LPAREN, + ACTIONS(9408), 1, + anon_sym_when, + STATE(1945), 1, sym_block, - STATE(2988), 1, - sym__function_body, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6630), 9, + STATE(6708), 1, + aux_sym_catch_clause_repeat1, + STATE(7303), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751880,7 +744699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102532] = 16, + [105036] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751901,20 +744720,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8841), 1, + ACTIONS(9410), 1, + anon_sym_DOT, + ACTIONS(4361), 6, anon_sym_COLON, - ACTIONS(8844), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(8849), 1, - anon_sym_LT, - ACTIONS(8847), 2, anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - STATE(6847), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6631), 10, + STATE(6655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751924,47 +744739,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__class_declaration_initializer_repeat3, - [102593] = 20, - ACTIONS(3), 1, + [105089] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2932), 1, - sym__function_body, - STATE(6638), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6632), 9, + ACTIONS(9380), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9382), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9412), 1, + anon_sym_DQUOTE, + STATE(6667), 1, + aux_sym_string_literal_repeat1, + STATE(6788), 1, + sym_string_literal_content, + ACTIONS(9384), 2, + sym_escape_sequence, + sym_grit_metavariable, + STATE(6656), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751974,7 +744783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102662] = 20, + [105150] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751995,25 +744804,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9414), 7, anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(3033), 1, - sym__function_body, - STATE(6622), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6633), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752023,7 +744822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102731] = 20, + [105201] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752044,25 +744843,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(7206), 1, anon_sym_LBRACE, - STATE(2698), 1, + ACTIONS(9406), 1, + anon_sym_LPAREN, + ACTIONS(9408), 1, + anon_sym_when, + STATE(6708), 1, + aux_sym_catch_clause_repeat1, + STATE(6924), 1, sym_block, - STATE(3030), 1, - sym__function_body, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6634), 9, + STATE(7303), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752072,7 +744866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102800] = 20, + [105262] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752093,25 +744887,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9416), 7, anon_sym_SEMI, - ACTIONS(8807), 1, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2999), 1, - sym__function_body, - STATE(6626), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6635), 9, + anon_sym_LT, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752121,7 +744905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102869] = 16, + [105313] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752142,21 +744926,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(8852), 1, - anon_sym_LT, - ACTIONS(8855), 1, - anon_sym_COLON_COLON, - STATE(2209), 1, - sym_type_argument_list, - ACTIONS(3953), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_DOT, - STATE(6636), 9, + ACTIONS(9418), 1, + anon_sym_catch, + ACTIONS(9420), 1, + anon_sym_finally, + STATE(6753), 1, + aux_sym_try_statement_repeat1, + STATE(6948), 1, + sym_catch_clause, + STATE(7577), 1, + sym_finally_clause, + ACTIONS(3350), 2, + anon_sym_while, + anon_sym_else, + STATE(6660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752166,7 +744949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102930] = 20, + [105374] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752187,25 +744970,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, + ACTIONS(9422), 7, anon_sym_SEMI, - ACTIONS(8807), 1, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2976), 1, - sym__function_body, - STATE(6618), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6637), 9, + anon_sym_LT, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6661), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752215,46 +744988,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102999] = 20, - ACTIONS(3), 1, + [105425] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2914), 1, - sym__function_body, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6638), 9, + ACTIONS(9380), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9382), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9424), 1, + anon_sym_DQUOTE, + STATE(6667), 1, + aux_sym_string_literal_repeat1, + STATE(6788), 1, + sym_string_literal_content, + ACTIONS(9384), 2, + sym_escape_sequence, + sym_grit_metavariable, + STATE(6662), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752264,7 +745032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103068] = 12, + [105486] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752285,16 +745053,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8857), 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(6639), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9426), 1, + sym_interpolation_end_quote, + STATE(6678), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6930), 1, + sym__interpolated_string_content, + STATE(6966), 1, + sym_interpolation, + ACTIONS(9390), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752304,7 +745076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103120] = 14, + [105547] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752325,18 +745097,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8852), 1, - anon_sym_LT, - STATE(2209), 1, - sym_type_argument_list, - ACTIONS(3953), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_DOT, - STATE(6640), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9428), 1, + sym_interpolation_end_quote, + STATE(6678), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6930), 1, + sym__interpolated_string_content, + STATE(6966), 1, + sym_interpolation, + ACTIONS(9390), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6664), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752346,7 +745120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103176] = 19, + [105608] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752367,23 +745141,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8859), 1, - anon_sym_COLON, - ACTIONS(8861), 1, - anon_sym_LBRACE, - STATE(6775), 1, - sym_type_parameter_list, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7013), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7017), 1, - sym_base_list, - STATE(6641), 9, + ACTIONS(9418), 1, + anon_sym_catch, + ACTIONS(9420), 1, + anon_sym_finally, + STATE(6660), 1, + aux_sym_try_statement_repeat1, + STATE(6948), 1, + sym_catch_clause, + STATE(7588), 1, + sym_finally_clause, + ACTIONS(3342), 2, + anon_sym_while, + anon_sym_else, + STATE(6665), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752393,44 +745164,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103242] = 19, - ACTIONS(3), 1, + [105669] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(2786), 1, - sym_accessor_list, - STATE(6608), 1, - sym_parameter_list, - STATE(7517), 1, - sym_type_parameter_list, - STATE(7816), 1, - sym_arrow_expression_clause, - STATE(6642), 9, + ACTIONS(9380), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9382), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9430), 1, + anon_sym_DQUOTE, + STATE(6662), 1, + aux_sym_string_literal_repeat1, + STATE(6788), 1, + sym_string_literal_content, + ACTIONS(9384), 2, + sym_escape_sequence, + sym_grit_metavariable, + STATE(6666), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752440,37 +745208,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103308] = 12, - ACTIONS(3), 1, + [105730] = 16, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8863), 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(6643), 9, + ACTIONS(9432), 1, + anon_sym_DQUOTE, + ACTIONS(9434), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9437), 1, + aux_sym_string_literal_content_token2, + STATE(6788), 1, + sym_string_literal_content, + ACTIONS(9440), 2, + sym_escape_sequence, + sym_grit_metavariable, + STATE(6667), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752480,44 +745250,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103360] = 19, - ACTIONS(3), 1, + aux_sym_string_literal_repeat1, + [105789] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8859), 1, - anon_sym_COLON, - ACTIONS(8865), 1, - anon_sym_LBRACE, - STATE(6763), 1, - sym_type_parameter_list, - STATE(6948), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6961), 1, - sym_base_list, - STATE(6644), 9, + ACTIONS(9380), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9382), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9443), 1, + anon_sym_DQUOTE, + STATE(6697), 1, + aux_sym_string_literal_repeat1, + STATE(6788), 1, + sym_string_literal_content, + ACTIONS(9384), 2, + sym_escape_sequence, + sym_grit_metavariable, + STATE(6668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752527,7 +745295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103426] = 19, + [105850] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752548,23 +745316,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8859), 1, - anon_sym_COLON, - ACTIONS(8867), 1, + ACTIONS(6227), 1, anon_sym_LBRACE, - STATE(6745), 1, - sym_type_parameter_list, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7023), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7026), 1, - sym_base_list, - STATE(6645), 9, + ACTIONS(9406), 1, + anon_sym_LPAREN, + ACTIONS(9408), 1, + anon_sym_when, + STATE(1969), 1, + sym_block, + STATE(6681), 1, + aux_sym_catch_clause_repeat1, + STATE(7303), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6669), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752574,41 +745339,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103492] = 16, - ACTIONS(3), 1, + [105911] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8871), 1, - anon_sym_COMMA, - ACTIONS(8873), 1, - anon_sym_LPAREN, - STATE(6698), 1, - sym_argument_list, - STATE(6699), 1, - aux_sym_base_list_repeat1, - ACTIONS(8869), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6646), 9, + ACTIONS(9380), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9382), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9445), 1, + anon_sym_DQUOTE, + STATE(6667), 1, + aux_sym_string_literal_repeat1, + STATE(6788), 1, + sym_string_literal_content, + ACTIONS(9384), 2, + sym_escape_sequence, + sym_grit_metavariable, + STATE(6670), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752618,7 +745383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103552] = 19, + [105972] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752639,23 +745404,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(2792), 1, - sym_accessor_list, - STATE(6633), 1, - sym_parameter_list, - STATE(7395), 1, - sym_type_parameter_list, - STATE(8098), 1, - sym_arrow_expression_clause, - STATE(6647), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9447), 1, + sym_interpolation_end_quote, + STATE(6663), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6930), 1, + sym__interpolated_string_content, + STATE(6966), 1, + sym_interpolation, + ACTIONS(9390), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6671), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752665,7 +745427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103618] = 19, + [106033] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752686,23 +745448,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8716), 1, + ACTIONS(7536), 1, anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(2798), 1, - sym_accessor_list, - STATE(6600), 1, - sym_parameter_list, - STATE(7501), 1, - sym_type_parameter_list, - STATE(7853), 1, - sym_arrow_expression_clause, - STATE(6648), 9, + ACTIONS(9406), 1, + anon_sym_LPAREN, + ACTIONS(9408), 1, + anon_sym_when, + STATE(2112), 1, + sym_block, + STATE(6679), 1, + aux_sym_catch_clause_repeat1, + STATE(7303), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752712,7 +745471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103684] = 19, + [106094] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752733,23 +745492,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, + ACTIONS(9451), 1, anon_sym_LPAREN, - ACTIONS(8716), 1, + STATE(6700), 1, + sym_argument_list, + ACTIONS(9449), 5, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8743), 1, anon_sym_LT, - STATE(2731), 1, - sym_accessor_list, - STATE(6632), 1, - sym_parameter_list, - STATE(7546), 1, - sym_type_parameter_list, - STATE(7773), 1, - sym_arrow_expression_clause, - STATE(6649), 9, + anon_sym_where, + STATE(6673), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752759,7 +745512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103750] = 17, + [106149] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752780,21 +745533,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_LPAREN, - ACTIONS(8001), 1, - anon_sym_DOT, - ACTIONS(8878), 1, - anon_sym_COMMA, - STATE(6828), 1, - aux_sym_record_base_repeat1, - STATE(6983), 1, - sym_argument_list, - ACTIONS(8876), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(9454), 7, anon_sym_where, - STATE(6650), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6674), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752804,41 +745551,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103812] = 17, - ACTIONS(8466), 1, + [106200] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8880), 1, - anon_sym_DQUOTE, - ACTIONS(8882), 1, + ACTIONS(9380), 1, aux_sym_string_literal_content_token1, - ACTIONS(8884), 1, + ACTIONS(9382), 1, aux_sym_string_literal_content_token2, - STATE(6671), 1, + ACTIONS(9456), 1, + anon_sym_DQUOTE, + STATE(6667), 1, aux_sym_string_literal_repeat1, - STATE(6827), 1, + STATE(6788), 1, sym_string_literal_content, - ACTIONS(8886), 2, + ACTIONS(9384), 2, sym_escape_sequence, sym_grit_metavariable, - STATE(6651), 9, + STATE(6675), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752848,7 +745595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103873] = 13, + [106261] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752869,16 +745616,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8888), 1, - anon_sym_DOT, - ACTIONS(4357), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6652), 9, + ACTIONS(3217), 1, + anon_sym_LBRACK, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9458), 1, + aux_sym_preproc_if_token3, + STATE(6851), 1, + sym_attribute_list, + STATE(7741), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752888,7 +745639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103926] = 17, + [106322] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752909,20 +745660,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(6234), 1, anon_sym_LBRACE, - ACTIONS(8890), 1, + ACTIONS(9406), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(9408), 1, anon_sym_when, - STATE(6660), 1, - aux_sym_catch_clause_repeat1, - STATE(6998), 1, + STATE(1943), 1, sym_block, - STATE(7078), 2, + STATE(6654), 1, + aux_sym_catch_clause_repeat1, + STATE(7303), 2, sym_catch_declaration, sym_catch_filter_clause, - STATE(6653), 9, + STATE(6677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752932,7 +745683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103987] = 13, + [106383] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752953,15 +745704,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8896), 1, - anon_sym_COMMA, - ACTIONS(8894), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6654), 10, + ACTIONS(9463), 1, + sym_interpolation_end_quote, + ACTIONS(9465), 1, + sym_interpolation_open_brace, + STATE(6930), 1, + sym__interpolated_string_content, + STATE(6966), 1, + sym_interpolation, + ACTIONS(9460), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6678), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752971,8 +745725,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_base_list_repeat1, - [104040] = 17, + aux_sym_interpolated_string_expression_repeat1, + [106442] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752993,20 +745747,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8899), 1, - anon_sym_catch, - ACTIONS(8901), 1, - anon_sym_finally, - STATE(6772), 1, - aux_sym_try_statement_repeat1, - STATE(6955), 1, - sym_catch_clause, - STATE(7631), 1, - sym_finally_clause, - ACTIONS(3350), 2, - anon_sym_while, - anon_sym_else, - STATE(6655), 9, + ACTIONS(7536), 1, + anon_sym_LBRACE, + ACTIONS(9406), 1, + anon_sym_LPAREN, + ACTIONS(9408), 1, + anon_sym_when, + STATE(2113), 1, + sym_block, + STATE(6708), 1, + aux_sym_catch_clause_repeat1, + STATE(7303), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6679), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753016,7 +745770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104101] = 17, + [106503] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753037,20 +745791,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3217), 1, - anon_sym_LBRACK, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8903), 1, - aux_sym_preproc_if_token3, - STATE(6838), 1, - sym_attribute_list, - STATE(7823), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6656), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9468), 1, + sym_interpolation_end_quote, + STATE(6692), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6930), 1, + sym__interpolated_string_content, + STATE(6966), 1, + sym_interpolation, + ACTIONS(9390), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753060,41 +745814,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104162] = 17, - ACTIONS(8466), 1, + [106564] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(8882), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8884), 1, - aux_sym_string_literal_content_token2, - ACTIONS(8905), 1, - anon_sym_DQUOTE, - STATE(6669), 1, - aux_sym_string_literal_repeat1, - STATE(6827), 1, - sym_string_literal_content, - ACTIONS(8886), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6657), 9, + ACTIONS(6227), 1, + anon_sym_LBRACE, + ACTIONS(9406), 1, + anon_sym_LPAREN, + ACTIONS(9408), 1, + anon_sym_when, + STATE(1989), 1, + sym_block, + STATE(6708), 1, + aux_sym_catch_clause_repeat1, + STATE(7303), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6681), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753104,7 +745858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104223] = 17, + [106625] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753125,20 +745879,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8899), 1, - anon_sym_catch, - ACTIONS(8901), 1, - anon_sym_finally, - STATE(6655), 1, - aux_sym_try_statement_repeat1, - STATE(6955), 1, - sym_catch_clause, - STATE(7630), 1, - sym_finally_clause, - ACTIONS(3342), 2, - anon_sym_while, - anon_sym_else, - STATE(6658), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9470), 1, + sym_interpolation_end_quote, + STATE(6678), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6930), 1, + sym__interpolated_string_content, + STATE(6966), 1, + sym_interpolation, + ACTIONS(9390), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753148,41 +745902,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104284] = 17, - ACTIONS(8466), 1, + [106686] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8882), 1, + ACTIONS(9380), 1, aux_sym_string_literal_content_token1, - ACTIONS(8884), 1, + ACTIONS(9382), 1, aux_sym_string_literal_content_token2, - ACTIONS(8907), 1, + ACTIONS(9472), 1, anon_sym_DQUOTE, - STATE(6671), 1, + STATE(6675), 1, aux_sym_string_literal_repeat1, - STATE(6827), 1, + STATE(6788), 1, sym_string_literal_content, - ACTIONS(8886), 2, + ACTIONS(9384), 2, sym_escape_sequence, sym_grit_metavariable, - STATE(6659), 9, + STATE(6683), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753192,7 +745946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104345] = 17, + [106747] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753213,20 +745967,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym_LBRACE, - ACTIONS(8890), 1, + ACTIONS(9474), 7, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_when, - STATE(6707), 1, - aux_sym_catch_clause_repeat1, - STATE(7046), 1, - sym_block, - STATE(7078), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6660), 9, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753236,41 +745985,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104406] = 17, - ACTIONS(8466), 1, + [106798] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8882), 1, + ACTIONS(9380), 1, aux_sym_string_literal_content_token1, - ACTIONS(8884), 1, + ACTIONS(9382), 1, aux_sym_string_literal_content_token2, - ACTIONS(8909), 1, + ACTIONS(9476), 1, anon_sym_DQUOTE, - STATE(6671), 1, + STATE(6645), 1, aux_sym_string_literal_repeat1, - STATE(6827), 1, + STATE(6788), 1, sym_string_literal_content, - ACTIONS(8886), 2, + ACTIONS(9384), 2, sym_escape_sequence, sym_grit_metavariable, - STATE(6661), 9, + STATE(6685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753280,41 +746029,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104467] = 17, - ACTIONS(3), 1, + [106859] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(7425), 1, - anon_sym_LBRACE, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_when, - STATE(2112), 1, - sym_block, - STATE(6695), 1, - aux_sym_catch_clause_repeat1, - STATE(7078), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6662), 9, + ACTIONS(9380), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9382), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9478), 1, + anon_sym_DQUOTE, + STATE(6670), 1, + aux_sym_string_literal_repeat1, + STATE(6788), 1, + sym_string_literal_content, + ACTIONS(9384), 2, + sym_escape_sequence, + sym_grit_metavariable, + STATE(6686), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753324,7 +746073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104528] = 17, + [106920] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753345,20 +746094,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6902), 1, - anon_sym_LBRACE, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_when, - STATE(1979), 1, - sym_block, - STATE(6689), 1, - aux_sym_catch_clause_repeat1, - STATE(7078), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6663), 9, + ACTIONS(2867), 1, + aux_sym_preproc_if_token3, + ACTIONS(3217), 1, + anon_sym_LBRACK, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + STATE(6897), 1, + sym_attribute_list, + STATE(7890), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753368,7 +746117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104589] = 14, + [106981] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753389,17 +746138,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8871), 1, - anon_sym_COMMA, - STATE(6654), 1, - aux_sym_base_list_repeat1, - ACTIONS(8911), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6664), 9, + ACTIONS(3217), 1, + anon_sym_LBRACK, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9480), 1, + aux_sym_preproc_if_token3, + STATE(6844), 1, + sym_attribute_list, + STATE(8016), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6688), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753409,41 +746161,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104644] = 17, - ACTIONS(8466), 1, + [107042] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(8882), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8884), 1, - aux_sym_string_literal_content_token2, - ACTIONS(8913), 1, - anon_sym_DQUOTE, - STATE(6671), 1, - aux_sym_string_literal_repeat1, - STATE(6827), 1, - sym_string_literal_content, - ACTIONS(8886), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6665), 9, + ACTIONS(9484), 1, + anon_sym_COMMA, + ACTIONS(9482), 5, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6689), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753453,7 +746200,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104705] = 17, + aux_sym_base_list_repeat1, + [107095] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753474,20 +746222,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8917), 1, - sym_interpolation_end_quote, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - STATE(6697), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6963), 1, - sym_interpolation, - STATE(6971), 1, - sym__interpolated_string_content, - ACTIONS(8915), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6666), 9, + ACTIONS(9369), 1, + anon_sym_COMMA, + STATE(6689), 1, + aux_sym_base_list_repeat1, + ACTIONS(9487), 5, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753497,7 +746242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104766] = 17, + [107150] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753518,20 +746263,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3217), 1, - anon_sym_LBRACK, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8921), 1, - aux_sym_preproc_if_token3, - STATE(6848), 1, - sym_attribute_list, - STATE(8131), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6667), 9, + ACTIONS(7206), 1, + anon_sym_LBRACE, + ACTIONS(9406), 1, + anon_sym_LPAREN, + ACTIONS(9408), 1, + anon_sym_when, + STATE(6658), 1, + aux_sym_catch_clause_repeat1, + STATE(6996), 1, + sym_block, + STATE(7303), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6691), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753541,7 +746286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104827] = 17, + [107211] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753562,20 +746307,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3217), 1, - anon_sym_LBRACK, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8923), 1, - aux_sym_preproc_if_token3, - STATE(6826), 1, - sym_attribute_list, - STATE(8056), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6668), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9489), 1, + sym_interpolation_end_quote, + STATE(6678), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6930), 1, + sym__interpolated_string_content, + STATE(6966), 1, + sym_interpolation, + ACTIONS(9390), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6692), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753585,41 +746330,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104888] = 17, - ACTIONS(8466), 1, + [107272] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(8882), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8884), 1, - aux_sym_string_literal_content_token2, - ACTIONS(8925), 1, - anon_sym_DQUOTE, - STATE(6671), 1, - aux_sym_string_literal_repeat1, - STATE(6827), 1, - sym_string_literal_content, - ACTIONS(8886), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6669), 9, + ACTIONS(9491), 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753629,7 +746369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104949] = 17, + [107323] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753650,20 +746390,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(8927), 1, + ACTIONS(9493), 1, sym_interpolation_end_quote, - STATE(6693), 1, + STATE(6664), 1, aux_sym_interpolated_string_expression_repeat1, - STATE(6963), 1, - sym_interpolation, - STATE(6971), 1, + STATE(6930), 1, sym__interpolated_string_content, - ACTIONS(8915), 2, + STATE(6966), 1, + sym_interpolation, + ACTIONS(9390), 2, sym_interpolation_string_content, sym_escape_sequence, - STATE(6670), 9, + STATE(6694), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753673,39 +746413,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105010] = 16, - ACTIONS(8466), 1, + [107384] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(8929), 1, - anon_sym_DQUOTE, - ACTIONS(8931), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8934), 1, - aux_sym_string_literal_content_token2, - STATE(6827), 1, - sym_string_literal_content, - ACTIONS(8937), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6671), 10, + ACTIONS(4399), 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6695), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753715,8 +746452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_string_literal_repeat1, - [105069] = 17, + [107435] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753737,20 +746473,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(8940), 1, + ACTIONS(9495), 1, sym_interpolation_end_quote, - STATE(6693), 1, + STATE(6682), 1, aux_sym_interpolated_string_expression_repeat1, - STATE(6963), 1, - sym_interpolation, - STATE(6971), 1, + STATE(6930), 1, sym__interpolated_string_content, - ACTIONS(8915), 2, + STATE(6966), 1, + sym_interpolation, + ACTIONS(9390), 2, sym_interpolation_string_content, sym_escape_sequence, - STATE(6672), 9, + STATE(6696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753760,41 +746496,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105130] = 17, - ACTIONS(8466), 1, + [107496] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8882), 1, + ACTIONS(9380), 1, aux_sym_string_literal_content_token1, - ACTIONS(8884), 1, + ACTIONS(9382), 1, aux_sym_string_literal_content_token2, - ACTIONS(8942), 1, + ACTIONS(9497), 1, anon_sym_DQUOTE, - STATE(6671), 1, + STATE(6667), 1, aux_sym_string_literal_repeat1, - STATE(6827), 1, + STATE(6788), 1, sym_string_literal_content, - ACTIONS(8886), 2, + ACTIONS(9384), 2, sym_escape_sequence, sym_grit_metavariable, - STATE(6673), 9, + STATE(6697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753804,36 +746540,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105191] = 12, - ACTIONS(3), 1, + [107557] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8944), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6674), 9, + ACTIONS(9380), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9382), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9499), 1, + anon_sym_DQUOTE, + STATE(6656), 1, + aux_sym_string_literal_repeat1, + STATE(6788), 1, + sym_string_literal_content, + ACTIONS(9384), 2, + sym_escape_sequence, + sym_grit_metavariable, + STATE(6698), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753843,7 +746584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105242] = 17, + [107618] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753864,20 +746605,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3217), 1, - anon_sym_LBRACK, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8946), 1, - aux_sym_preproc_if_token3, - STATE(6882), 1, - sym_attribute_list, - STATE(7959), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6675), 9, + ACTIONS(9501), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6699), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753887,7 +746623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105303] = 12, + [107669] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753908,15 +746644,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8948), 7, + ACTIONS(9503), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6676), 9, + STATE(6700), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753926,41 +746661,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105354] = 17, - ACTIONS(8466), 1, + [107719] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(8882), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8884), 1, - aux_sym_string_literal_content_token2, - ACTIONS(8950), 1, - anon_sym_DQUOTE, - STATE(6651), 1, - aux_sym_string_literal_repeat1, - STATE(6827), 1, - sym_string_literal_content, - ACTIONS(8886), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6677), 9, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9505), 1, + anon_sym_SEMI, + ACTIONS(9507), 1, + anon_sym_LBRACE, + STATE(4029), 1, + sym__function_body, + STATE(4093), 1, + sym_block, + STATE(8070), 1, + sym_arrow_expression_clause, + STATE(6701), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753970,7 +746704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105415] = 17, + [107779] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753991,20 +746725,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(8952), 1, - sym_interpolation_end_quote, - STATE(6681), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6963), 1, - sym_interpolation, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9363), 1, + anon_sym_COLON, + ACTIONS(9509), 1, + anon_sym_LBRACE, + STATE(6922), 1, + sym_base_list, STATE(6971), 1, - sym__interpolated_string_content, - ACTIONS(8915), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6678), 9, + sym_type_parameter_constraints_clause, + STATE(6982), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6702), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754014,7 +746747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105476] = 14, + [107839] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754035,17 +746768,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8956), 1, - anon_sym_LPAREN, - STATE(6767), 1, - sym_argument_list, - ACTIONS(8954), 5, - anon_sym_COLON, + ACTIONS(9513), 1, anon_sym_COMMA, + STATE(6750), 1, + aux_sym_type_parameter_constraints_clause_repeat1, + ACTIONS(9511), 4, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LT, anon_sym_where, - STATE(6679), 9, + anon_sym_EQ_GT, + STATE(6703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754055,41 +746787,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105531] = 17, - ACTIONS(8466), 1, + [107893] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(8882), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8884), 1, - aux_sym_string_literal_content_token2, - ACTIONS(8959), 1, - anon_sym_DQUOTE, - STATE(6659), 1, - aux_sym_string_literal_repeat1, - STATE(6827), 1, - sym_string_literal_content, - ACTIONS(8886), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6680), 9, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2868), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6704), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754099,7 +746830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105592] = 17, + [107953] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754120,20 +746851,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(8961), 1, + ACTIONS(9493), 1, sym_interpolation_end_quote, - STATE(6693), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6963), 1, - sym_interpolation, - STATE(6971), 1, - sym__interpolated_string_content, - ACTIONS(8915), 2, + ACTIONS(9515), 1, sym_interpolation_string_content, - sym_escape_sequence, - STATE(6681), 9, + STATE(6720), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7314), 1, + sym__interpolated_verbatim_string_content, + STATE(7315), 1, + sym_interpolation, + STATE(6705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754143,7 +746873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105653] = 17, + [108013] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754164,20 +746894,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(8963), 1, - sym_interpolation_end_quote, - STATE(6693), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6963), 1, - sym_interpolation, - STATE(6971), 1, - sym__interpolated_string_content, - ACTIONS(8915), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6682), 9, + ACTIONS(9517), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754187,7 +746911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105714] = 17, + [108063] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754208,20 +746932,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(8965), 1, - sym_interpolation_end_quote, - STATE(6672), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6963), 1, - sym_interpolation, - STATE(6971), 1, - sym__interpolated_string_content, - ACTIONS(8915), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6683), 9, + ACTIONS(9519), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754231,41 +746949,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105775] = 17, - ACTIONS(8466), 1, + [108113] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(8882), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8884), 1, - aux_sym_string_literal_content_token2, - ACTIONS(8967), 1, - anon_sym_DQUOTE, - STATE(6665), 1, - aux_sym_string_literal_repeat1, - STATE(6827), 1, - sym_string_literal_content, - ACTIONS(8886), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6684), 9, + ACTIONS(9521), 1, + anon_sym_LPAREN, + ACTIONS(9524), 1, + anon_sym_LBRACE, + ACTIONS(9526), 1, + anon_sym_when, + STATE(7303), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6708), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754275,7 +746989,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105836] = 17, + aux_sym_catch_clause_repeat1, + [108169] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754296,20 +747011,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(8969), 1, + ACTIONS(9489), 1, sym_interpolation_end_quote, - STATE(6670), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6963), 1, - sym_interpolation, - STATE(6971), 1, - sym__interpolated_string_content, - ACTIONS(8915), 2, + ACTIONS(9515), 1, sym_interpolation_string_content, - sym_escape_sequence, - STATE(6685), 9, + STATE(6716), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7314), 1, + sym__interpolated_verbatim_string_content, + STATE(7315), 1, + sym_interpolation, + STATE(6709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754319,7 +747033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105897] = 12, + [108229] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754340,15 +747054,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4458), 7, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6686), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9529), 1, + sym_interpolation_end_quote, + ACTIONS(9531), 1, + sym_interpolation_string_content, + STATE(6757), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7299), 1, + sym__interpolated_raw_string_content, + STATE(7301), 1, + sym_interpolation, + STATE(6710), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754358,7 +747076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105948] = 12, + [108289] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754379,59 +747097,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8971), 7, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6687), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [105999] = 17, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(8882), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8884), 1, - aux_sym_string_literal_content_token2, - ACTIONS(8973), 1, - anon_sym_DQUOTE, - STATE(6673), 1, - aux_sym_string_literal_repeat1, - STATE(6827), 1, - sym_string_literal_content, - ACTIONS(8886), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6688), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9531), 1, + sym_interpolation_string_content, + ACTIONS(9533), 1, + sym_interpolation_end_quote, + STATE(6712), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7299), 1, + sym__interpolated_raw_string_content, + STATE(7301), 1, + sym_interpolation, + STATE(6711), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754441,7 +747119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106060] = 17, + [108349] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754462,20 +747140,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6902), 1, - anon_sym_LBRACE, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_when, - STATE(1982), 1, - sym_block, - STATE(6707), 1, - aux_sym_catch_clause_repeat1, - STATE(7078), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6689), 9, + ACTIONS(9535), 1, + sym_interpolation_end_quote, + ACTIONS(9537), 1, + sym_interpolation_open_brace, + ACTIONS(9540), 1, + sym_interpolation_string_content, + STATE(7299), 1, + sym__interpolated_raw_string_content, + STATE(7301), 1, + sym_interpolation, + STATE(6712), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754485,7 +747160,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106121] = 17, + aux_sym_interpolated_string_expression_repeat3, + [108407] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754506,20 +747182,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6889), 1, - anon_sym_LBRACE, - ACTIONS(8890), 1, + ACTIONS(9543), 6, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_when, - STATE(1945), 1, - sym_block, - STATE(6707), 1, - aux_sym_catch_clause_repeat1, - STATE(7078), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6690), 9, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754529,7 +747199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106182] = 17, + [108457] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754550,20 +747220,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6889), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_when, - STATE(1946), 1, + STATE(2629), 1, sym_block, - STATE(6690), 1, - aux_sym_catch_clause_repeat1, - STATE(7078), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6691), 9, + STATE(2709), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6714), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754573,7 +747242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106243] = 12, + [108517] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754594,15 +747263,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8975), 7, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9505), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9507), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6692), 9, + STATE(4093), 1, + sym_block, + STATE(4117), 1, + sym__function_body, + STATE(8070), 1, + sym_arrow_expression_clause, + STATE(6715), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754612,7 +747285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106294] = 16, + [108577] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754633,18 +747306,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8980), 1, + ACTIONS(9545), 1, sym_interpolation_end_quote, - ACTIONS(8982), 1, + ACTIONS(9547), 1, sym_interpolation_open_brace, - STATE(6963), 1, - sym_interpolation, - STATE(6971), 1, - sym__interpolated_string_content, - ACTIONS(8977), 2, + ACTIONS(9550), 1, sym_interpolation_string_content, - sym_escape_sequence, - STATE(6693), 10, + STATE(7314), 1, + sym__interpolated_verbatim_string_content, + STATE(7315), 1, + sym_interpolation, + STATE(6716), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754654,8 +747326,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat1, - [106353] = 17, + aux_sym_interpolated_string_expression_repeat2, + [108635] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754676,20 +747348,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(8985), 1, - sym_interpolation_end_quote, - STATE(6682), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6963), 1, - sym_interpolation, - STATE(6971), 1, - sym__interpolated_string_content, - ACTIONS(8915), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6694), 9, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2707), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6717), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754699,7 +747370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106414] = 17, + [108695] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754720,20 +747391,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7425), 1, + ACTIONS(9555), 1, + anon_sym_COMMA, + ACTIONS(9553), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_when, - STATE(2113), 1, - sym_block, - STATE(6707), 1, - aux_sym_catch_clause_repeat1, - STATE(7078), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6695), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6718), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754743,7 +747408,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106475] = 12, + aux_sym_type_parameter_constraints_clause_repeat1, + [108747] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754764,15 +747430,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8987), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6696), 9, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9505), 1, + anon_sym_SEMI, + ACTIONS(9507), 1, + anon_sym_LBRACE, + STATE(4093), 1, + sym_block, + STATE(4399), 1, + sym__function_body, + STATE(8070), 1, + sym_arrow_expression_clause, + STATE(6719), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754782,7 +747452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106526] = 17, + [108807] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754803,20 +747473,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(8989), 1, + ACTIONS(9428), 1, sym_interpolation_end_quote, - STATE(6693), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6963), 1, - sym_interpolation, - STATE(6971), 1, - sym__interpolated_string_content, - ACTIONS(8915), 2, + ACTIONS(9515), 1, sym_interpolation_string_content, - sym_escape_sequence, - STATE(6697), 9, + STATE(6716), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7314), 1, + sym__interpolated_verbatim_string_content, + STATE(7315), 1, + sym_interpolation, + STATE(6720), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754826,7 +747495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106587] = 14, + [108867] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754847,17 +747516,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8871), 1, - anon_sym_COMMA, - STATE(6664), 1, - aux_sym_base_list_repeat1, - ACTIONS(8991), 5, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6698), 9, + STATE(2629), 1, + sym_block, + STATE(2882), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6721), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754867,7 +747538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106642] = 14, + [108927] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754888,17 +747559,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8871), 1, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(9212), 1, + anon_sym_EQ, + STATE(7109), 1, + sym_bracketed_argument_list, + ACTIONS(9210), 2, + anon_sym_SEMI, anon_sym_COMMA, - STATE(6654), 1, - aux_sym_base_list_repeat1, - ACTIONS(8993), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6699), 9, + STATE(6722), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754908,7 +747580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106697] = 17, + [108985] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754929,20 +747601,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3217), 1, - anon_sym_LBRACK, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8995), 1, - aux_sym_preproc_if_token3, - STATE(6872), 1, - sym_attribute_list, - STATE(8040), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6700), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9426), 1, + sym_interpolation_end_quote, + ACTIONS(9515), 1, + sym_interpolation_string_content, + STATE(6716), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7314), 1, + sym__interpolated_verbatim_string_content, + STATE(7315), 1, + sym_interpolation, + STATE(6723), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754952,7 +747623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106758] = 12, + [109045] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754973,15 +747644,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8997), 7, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9309), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6701), 9, + STATE(2629), 1, + sym_block, + STATE(2729), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6724), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754991,7 +747666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106809] = 17, + [109105] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755012,20 +747687,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2867), 1, - aux_sym_preproc_if_token3, - ACTIONS(3217), 1, - anon_sym_LBRACK, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - STATE(6902), 1, - sym_attribute_list, - STATE(7926), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6702), 9, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(9558), 1, + anon_sym_EQ, + ACTIONS(4152), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + STATE(6725), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755035,7 +747706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106870] = 12, + [109159] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755056,15 +747727,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8999), 7, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9309), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6703), 9, + STATE(2629), 1, + sym_block, + STATE(2747), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6726), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755074,41 +747749,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106921] = 17, - ACTIONS(8466), 1, + [109219] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(8882), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8884), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9001), 1, - anon_sym_DQUOTE, - STATE(6661), 1, - aux_sym_string_literal_repeat1, - STATE(6827), 1, - sym_string_literal_content, - ACTIONS(8886), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6704), 9, + ACTIONS(9560), 1, + anon_sym_EQ_GT, + ACTIONS(9562), 1, + anon_sym_when, + ACTIONS(9564), 1, + anon_sym_and, + ACTIONS(9566), 1, + anon_sym_or, + STATE(1277), 1, + sym_switch_arrow, + STATE(7472), 1, + sym_when_clause, + STATE(6727), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755118,7 +747792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106982] = 12, + [109279] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755139,15 +747813,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9003), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6705), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9531), 1, + sym_interpolation_string_content, + ACTIONS(9568), 1, + sym_interpolation_end_quote, + STATE(6712), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7299), 1, + sym__interpolated_raw_string_content, + STATE(7301), 1, + sym_interpolation, + STATE(6728), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755157,7 +747835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107033] = 17, + [109339] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755178,19 +747856,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(8965), 1, - sym_interpolation_end_quote, - ACTIONS(9005), 1, - sym_interpolation_string_content, - STATE(6727), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7221), 1, - sym__interpolated_verbatim_string_content, - STATE(7254), 1, - sym_interpolation, - STATE(6706), 9, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8267), 1, + anon_sym_DOT, + ACTIONS(9570), 1, + anon_sym_QMARK, + ACTIONS(4331), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6729), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755200,7 +747877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107093] = 15, + [109397] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755221,16 +747898,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9007), 1, - anon_sym_LPAREN, - ACTIONS(9010), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - ACTIONS(9012), 1, - anon_sym_when, - STATE(7078), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6707), 10, + STATE(2629), 1, + sym_block, + STATE(2815), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755240,8 +747920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_catch_clause_repeat1, - [107149] = 16, + [109457] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755262,18 +747941,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7767), 1, - anon_sym_LT, - ACTIONS(7775), 1, - anon_sym_COLON_COLON, - ACTIONS(9015), 1, - anon_sym_EQ, - STATE(2209), 1, - sym_type_argument_list, - ACTIONS(3953), 2, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, anon_sym_SEMI, - anon_sym_DOT, - STATE(6708), 9, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2794), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6731), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755283,7 +747963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107207] = 17, + [109517] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755304,19 +747984,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(9017), 1, - sym_interpolation_end_quote, - ACTIONS(9019), 1, - sym_interpolation_string_content, - STATE(6740), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7188), 1, - sym__interpolated_raw_string_content, - STATE(7189), 1, - sym_interpolation, - STATE(6709), 9, + ACTIONS(9572), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6732), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755326,7 +748001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107267] = 17, + [109567] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755347,19 +748022,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9021), 1, - sym_interpolation_end_quote, - STATE(6709), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7188), 1, - sym__interpolated_raw_string_content, - STATE(7189), 1, - sym_interpolation, - STATE(6710), 9, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2785), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6733), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755369,7 +748044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107327] = 17, + [109627] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755390,19 +748065,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(8969), 1, - sym_interpolation_end_quote, - ACTIONS(9005), 1, - sym_interpolation_string_content, - STATE(6739), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7221), 1, - sym__interpolated_verbatim_string_content, - STATE(7254), 1, - sym_interpolation, - STATE(6711), 9, + ACTIONS(9574), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6734), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755412,7 +748082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107387] = 17, + [109677] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755433,19 +748103,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8805), 1, + ACTIONS(9505), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9507), 1, anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2918), 1, + STATE(4033), 1, sym__function_body, - STATE(7900), 1, + STATE(4093), 1, + sym_block, + STATE(8070), 1, sym_arrow_expression_clause, - STATE(6712), 9, + STATE(6735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755455,7 +748125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107447] = 17, + [109737] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755476,19 +748146,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9023), 1, - sym_interpolation_end_quote, - STATE(6740), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7188), 1, - sym__interpolated_raw_string_content, - STATE(7189), 1, - sym_interpolation, - STATE(6713), 9, + ACTIONS(4331), 1, + anon_sym_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8267), 1, + anon_sym_DOT, + ACTIONS(9570), 1, + anon_sym_QMARK, + ACTIONS(9576), 1, + anon_sym_COMMA, + STATE(6736), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755498,7 +748168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107507] = 12, + [109797] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755519,14 +748189,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9025), 6, - anon_sym_SEMI, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9363), 1, anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9578), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6714), 9, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6990), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6993), 1, + sym_base_list, + STATE(6737), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755536,7 +748211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107557] = 17, + [109857] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755557,19 +748232,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8805), 1, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(9357), 1, + anon_sym_COMMA, + STATE(6839), 1, + aux_sym_record_base_repeat1, + ACTIONS(9580), 3, anon_sym_SEMI, - ACTIONS(8807), 1, anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(3025), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6715), 9, + anon_sym_where, + STATE(6738), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755579,7 +748252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107617] = 17, + [109913] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755600,19 +748273,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(9019), 1, + ACTIONS(9531), 1, sym_interpolation_string_content, - ACTIONS(9027), 1, + ACTIONS(9582), 1, sym_interpolation_end_quote, - STATE(6740), 1, + STATE(6728), 1, aux_sym_interpolated_string_expression_repeat3, - STATE(7188), 1, + STATE(7299), 1, sym__interpolated_raw_string_content, - STATE(7189), 1, + STATE(7301), 1, sym_interpolation, - STATE(6716), 9, + STATE(6739), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755622,7 +748295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107677] = 17, + [109973] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755643,19 +748316,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(8961), 1, - sym_interpolation_end_quote, - ACTIONS(9005), 1, + ACTIONS(9531), 1, sym_interpolation_string_content, - STATE(6761), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7221), 1, - sym__interpolated_verbatim_string_content, - STATE(7254), 1, + ACTIONS(9584), 1, + sym_interpolation_end_quote, + STATE(6711), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7299), 1, + sym__interpolated_raw_string_content, + STATE(7301), 1, sym_interpolation, - STATE(6717), 9, + STATE(6740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755665,7 +748338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107737] = 17, + [110033] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755686,19 +748359,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9029), 1, + ACTIONS(9468), 1, sym_interpolation_end_quote, - STATE(6740), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7188), 1, - sym__interpolated_raw_string_content, - STATE(7189), 1, + ACTIONS(9515), 1, + sym_interpolation_string_content, + STATE(6709), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7314), 1, + sym__interpolated_verbatim_string_content, + STATE(7315), 1, sym_interpolation, - STATE(6718), 9, + STATE(6741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755708,7 +748381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107797] = 17, + [110093] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755729,19 +748402,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(9031), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(9033), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(4757), 1, + STATE(2629), 1, sym_block, - STATE(4888), 1, + STATE(2909), 1, sym__function_body, - STATE(8106), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6719), 9, + STATE(6742), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755751,7 +748424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107857] = 13, + [110153] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755772,15 +748445,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9037), 1, - anon_sym_QMARK, - ACTIONS(9035), 5, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(9309), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6720), 9, + STATE(2629), 1, + sym_block, + STATE(2767), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6743), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755790,7 +748467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107909] = 17, + [110213] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755811,19 +748488,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4331), 1, - anon_sym_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(7757), 1, - anon_sym_DOT, - ACTIONS(9039), 1, - anon_sym_COMMA, - ACTIONS(9041), 1, - anon_sym_QMARK, - STATE(6721), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9531), 1, + sym_interpolation_string_content, + ACTIONS(9586), 1, + sym_interpolation_end_quote, + STATE(6754), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7299), 1, + sym__interpolated_raw_string_content, + STATE(7301), 1, + sym_interpolation, + STATE(6744), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755833,7 +748510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107969] = 12, + [110273] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755854,14 +748531,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9043), 6, + ACTIONS(9590), 1, + anon_sym_QMARK, + ACTIONS(9588), 5, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6722), 9, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6745), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755871,7 +748549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108019] = 17, + [110325] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755892,19 +748570,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_EQ_GT, - ACTIONS(9047), 1, - anon_sym_when, - ACTIONS(9049), 1, - anon_sym_and, - ACTIONS(9051), 1, - anon_sym_or, - STATE(1277), 1, - sym_switch_arrow, - STATE(7552), 1, - sym_when_clause, - STATE(6723), 9, + ACTIONS(9592), 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6746), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755914,7 +748587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108079] = 15, + [110375] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755935,17 +748608,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8001), 1, - anon_sym_DOT, - ACTIONS(8878), 1, - anon_sym_COMMA, - STATE(6855), 1, - aux_sym_record_base_repeat1, - ACTIONS(9053), 3, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6724), 9, + STATE(2629), 1, + sym_block, + STATE(2721), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6747), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755955,7 +748630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108135] = 17, + [110435] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755976,19 +748651,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(8989), 1, - sym_interpolation_end_quote, - ACTIONS(9005), 1, - sym_interpolation_string_content, - STATE(6761), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7221), 1, - sym__interpolated_verbatim_string_content, - STATE(7254), 1, - sym_interpolation, - STATE(6725), 9, + ACTIONS(9596), 1, + anon_sym_where, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9594), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6748), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755998,7 +748669,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108195] = 17, + aux_sym__class_declaration_initializer_repeat4, + [110489] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756019,19 +748691,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(2937), 1, + STATE(2837), 1, sym__function_body, - STATE(7900), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6726), 9, + STATE(6749), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756041,7 +748713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108255] = 17, + [110549] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756062,19 +748734,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(8940), 1, - sym_interpolation_end_quote, - ACTIONS(9005), 1, - sym_interpolation_string_content, - STATE(6761), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7221), 1, - sym__interpolated_verbatim_string_content, - STATE(7254), 1, - sym_interpolation, - STATE(6727), 9, + ACTIONS(9513), 1, + anon_sym_COMMA, + STATE(6718), 1, + aux_sym_type_parameter_constraints_clause_repeat1, + ACTIONS(9599), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6750), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756084,7 +748753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108315] = 17, + [110603] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756105,19 +748774,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(9031), 1, - anon_sym_SEMI, - ACTIONS(9033), 1, - anon_sym_LBRACE, - STATE(4757), 1, - sym_block, - STATE(4889), 1, - sym__function_body, - STATE(8106), 1, - sym_arrow_expression_clause, - STATE(6728), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9470), 1, + sym_interpolation_end_quote, + ACTIONS(9515), 1, + sym_interpolation_string_content, + STATE(6716), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7314), 1, + sym__interpolated_verbatim_string_content, + STATE(7315), 1, + sym_interpolation, + STATE(6751), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756127,7 +748796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108375] = 16, + [110663] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756148,18 +748817,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_LPAREN, - ACTIONS(9055), 1, - anon_sym_COMMA, - STATE(7045), 1, - aux_sym_base_list_repeat1, - STATE(7047), 1, - sym_argument_list, - ACTIONS(8869), 2, - anon_sym_LBRACE, - anon_sym_where, - STATE(6729), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9495), 1, + sym_interpolation_end_quote, + ACTIONS(9515), 1, + sym_interpolation_string_content, + STATE(6751), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7314), 1, + sym__interpolated_verbatim_string_content, + STATE(7315), 1, + sym_interpolation, + STATE(6752), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756169,7 +748839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108433] = 16, + [110723] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756190,18 +748860,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(7757), 1, - anon_sym_DOT, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(4331), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6730), 9, + ACTIONS(9601), 1, + anon_sym_catch, + STATE(6948), 1, + sym_catch_clause, + ACTIONS(3356), 3, + anon_sym_while, + anon_sym_finally, + anon_sym_else, + STATE(6753), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756211,7 +748878,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108491] = 12, + aux_sym_try_statement_repeat1, + [110777] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756232,14 +748900,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9057), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6731), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9531), 1, + sym_interpolation_string_content, + ACTIONS(9604), 1, + sym_interpolation_end_quote, + STATE(6712), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7299), 1, + sym__interpolated_raw_string_content, + STATE(7301), 1, + sym_interpolation, + STATE(6754), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756249,40 +748922,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108541] = 17, - ACTIONS(3), 1, + [110837] = 13, + ACTIONS(3189), 1, + aux_sym_preproc_if_token2, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2862), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6732), 9, + ACTIONS(3187), 5, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6755), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756292,39 +748961,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108601] = 16, - ACTIONS(3), 1, + [110889] = 13, + ACTIONS(3694), 1, + aux_sym_preproc_if_token2, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(7767), 1, - anon_sym_LT, - ACTIONS(7775), 1, - anon_sym_COLON_COLON, - ACTIONS(9059), 1, - anon_sym_EQ, - STATE(2209), 1, - sym_type_argument_list, - ACTIONS(3953), 2, - anon_sym_SEMI, - anon_sym_DOT, - STATE(6733), 9, + ACTIONS(3696), 5, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6756), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756334,7 +749000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108659] = 12, + [110941] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756355,14 +749021,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9061), 6, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6734), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9531), 1, + sym_interpolation_string_content, + ACTIONS(9606), 1, + sym_interpolation_end_quote, + STATE(6712), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7299), 1, + sym__interpolated_raw_string_content, + STATE(7301), 1, + sym_interpolation, + STATE(6757), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756372,7 +749043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108709] = 14, + [111001] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756393,16 +749064,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9065), 1, - anon_sym_COMMA, - STATE(6742), 1, - aux_sym_type_parameter_constraints_clause_repeat1, - ACTIONS(9063), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, + ACTIONS(3966), 1, anon_sym_EQ_GT, - STATE(6735), 9, + ACTIONS(9558), 1, + anon_sym_EQ, + ACTIONS(9608), 1, + anon_sym_RPAREN, + ACTIONS(4152), 3, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + STATE(6758), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756412,7 +749084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108763] = 12, + [111057] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756433,14 +749105,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9067), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6736), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9363), 1, + anon_sym_COLON, + ACTIONS(9610), 1, + anon_sym_LBRACE, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7025), 1, + sym_base_list, + STATE(7026), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6759), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756450,7 +749127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108813] = 17, + [111117] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756471,19 +749148,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(2921), 1, + STATE(2691), 1, sym__function_body, - STATE(7900), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6737), 9, + STATE(6760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756493,7 +749170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108873] = 17, + [111177] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756514,19 +749191,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(9031), 1, - anon_sym_SEMI, - ACTIONS(9033), 1, + ACTIONS(6063), 1, + anon_sym_LPAREN, + ACTIONS(9612), 1, + anon_sym_COMMA, + STATE(6950), 1, + aux_sym_base_list_repeat1, + STATE(6977), 1, + sym_argument_list, + ACTIONS(9367), 2, anon_sym_LBRACE, - STATE(4757), 1, - sym_block, - STATE(4830), 1, - sym__function_body, - STATE(8106), 1, - sym_arrow_expression_clause, - STATE(6738), 9, + anon_sym_where, + STATE(6761), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756536,7 +749212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108933] = 17, + [111235] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756557,19 +749233,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(8927), 1, - sym_interpolation_end_quote, - ACTIONS(9005), 1, - sym_interpolation_string_content, - STATE(6761), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7221), 1, - sym__interpolated_verbatim_string_content, - STATE(7254), 1, - sym_interpolation, - STATE(6739), 9, + ACTIONS(8283), 1, + anon_sym_LT, + ACTIONS(8316), 1, + anon_sym_COLON_COLON, + ACTIONS(9614), 1, + anon_sym_EQ, + STATE(2214), 1, + sym_type_argument_list, + ACTIONS(3957), 2, + anon_sym_SEMI, + anon_sym_DOT, + STATE(6762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756579,7 +749254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108993] = 16, + [111293] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756600,17 +749275,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9069), 1, - sym_interpolation_end_quote, - ACTIONS(9071), 1, - sym_interpolation_open_brace, - ACTIONS(9074), 1, - sym_interpolation_string_content, - STATE(7188), 1, - sym__interpolated_raw_string_content, - STATE(7189), 1, - sym_interpolation, - STATE(6740), 10, + ACTIONS(8283), 1, + anon_sym_LT, + ACTIONS(8316), 1, + anon_sym_COLON_COLON, + ACTIONS(9616), 1, + anon_sym_EQ, + STATE(2214), 1, + sym_type_argument_list, + ACTIONS(3957), 2, + anon_sym_SEMI, + anon_sym_DOT, + STATE(6763), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756620,8 +749296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat3, - [109051] = 15, + [111351] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756642,17 +749317,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(9077), 1, + ACTIONS(8283), 1, + anon_sym_LT, + ACTIONS(8316), 1, + anon_sym_COLON_COLON, + ACTIONS(9618), 1, anon_sym_EQ, - ACTIONS(9079), 1, - anon_sym_RPAREN, - ACTIONS(4206), 3, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(6741), 9, + STATE(2214), 1, + sym_type_argument_list, + ACTIONS(3957), 2, + anon_sym_SEMI, + anon_sym_DOT, + STATE(6764), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756662,7 +749338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109107] = 13, + [111409] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756683,14 +749359,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9083), 1, - anon_sym_COMMA, - ACTIONS(9081), 4, + ACTIONS(9620), 6, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - anon_sym_EQ_GT, - STATE(6742), 10, + STATE(6765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756700,8 +749376,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, - [109159] = 17, + [111459] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756722,19 +749397,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9086), 1, + ACTIONS(9447), 1, sym_interpolation_end_quote, - STATE(6716), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7188), 1, - sym__interpolated_raw_string_content, - STATE(7189), 1, + ACTIONS(9515), 1, + sym_interpolation_string_content, + STATE(6723), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7314), 1, + sym__interpolated_verbatim_string_content, + STATE(7315), 1, sym_interpolation, - STATE(6743), 9, + STATE(6766), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756744,7 +749419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109219] = 12, + [111519] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756765,14 +749440,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9088), 6, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9309), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6744), 9, + STATE(2629), 1, + sym_block, + STATE(2904), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756782,7 +749462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109269] = 17, + [111579] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756803,19 +749483,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8859), 1, - anon_sym_COLON, - ACTIONS(9090), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6993), 1, - sym_base_list, - STATE(6994), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6745), 9, + STATE(2629), 1, + sym_block, + STATE(2872), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6768), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756825,7 +749505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109329] = 17, + [111639] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756846,19 +749526,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8805), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2629), 1, sym_block, - STATE(3036), 1, + STATE(2897), 1, sym__function_body, - STATE(7900), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6746), 9, + STATE(6769), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756868,7 +749548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109389] = 17, + [111699] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756889,19 +749569,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(3040), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6747), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9531), 1, + sym_interpolation_string_content, + ACTIONS(9622), 1, + sym_interpolation_end_quote, + STATE(6771), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7299), 1, + sym__interpolated_raw_string_content, + STATE(7301), 1, + sym_interpolation, + STATE(6770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756911,7 +749591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109449] = 17, + [111759] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756932,19 +749612,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(9019), 1, + ACTIONS(9531), 1, sym_interpolation_string_content, - ACTIONS(9092), 1, + ACTIONS(9624), 1, sym_interpolation_end_quote, - STATE(6740), 1, + STATE(6712), 1, aux_sym_interpolated_string_expression_repeat3, - STATE(7188), 1, + STATE(7299), 1, sym__interpolated_raw_string_content, - STATE(7189), 1, + STATE(7301), 1, sym_interpolation, - STATE(6748), 9, + STATE(6771), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756954,7 +749634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109509] = 17, + [111819] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756975,19 +749655,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8805), 1, + ACTIONS(8283), 1, + anon_sym_LT, + ACTIONS(8316), 1, + anon_sym_COLON_COLON, + ACTIONS(9626), 1, + anon_sym_EQ, + STATE(2214), 1, + sym_type_argument_list, + ACTIONS(3957), 2, anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2986), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6749), 9, + anon_sym_DOT, + STATE(6772), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756997,7 +749676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109569] = 17, + [111877] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757018,19 +749697,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(3045), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6750), 9, + ACTIONS(9392), 1, + sym_interpolation_end_quote, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9515), 1, + sym_interpolation_string_content, + STATE(6774), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7314), 1, + sym__interpolated_verbatim_string_content, + STATE(7315), 1, + sym_interpolation, + STATE(6773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757040,7 +749719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109629] = 17, + [111937] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757061,19 +749740,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(3019), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6751), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9396), 1, + sym_interpolation_end_quote, + ACTIONS(9515), 1, + sym_interpolation_string_content, + STATE(6716), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7314), 1, + sym__interpolated_verbatim_string_content, + STATE(7315), 1, + sym_interpolation, + STATE(6774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757083,40 +749762,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109689] = 17, - ACTIONS(3), 1, + [111997] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2812), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6752), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9634), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6775), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757126,7 +749802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109749] = 16, + [112052] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757147,18 +749823,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(8714), 1, - anon_sym_EQ, - STATE(7237), 1, - sym_bracketed_argument_list, - ACTIONS(8712), 2, + ACTIONS(9638), 1, + anon_sym_COLON, + STATE(7099), 1, + sym_constructor_initializer, + ACTIONS(9636), 3, anon_sym_SEMI, - anon_sym_COMMA, - STATE(6753), 9, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6776), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757168,7 +749841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109807] = 17, + [112105] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757189,19 +749862,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(8985), 1, - sym_interpolation_end_quote, - ACTIONS(9005), 1, - sym_interpolation_string_content, - STATE(6757), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7221), 1, - sym__interpolated_verbatim_string_content, - STATE(7254), 1, - sym_interpolation, - STATE(6754), 9, + ACTIONS(9640), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6777), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757211,7 +749878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109867] = 17, + [112154] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757232,19 +749899,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2992), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6755), 9, + ACTIONS(9642), 1, + anon_sym_RBRACE, + ACTIONS(9644), 1, + anon_sym_case, + ACTIONS(9646), 1, + anon_sym_default, + STATE(6783), 1, + aux_sym_switch_body_repeat1, + STATE(7309), 1, + sym_switch_section, + STATE(6778), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757254,7 +749919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109927] = 17, + [112211] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757275,19 +749940,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2951), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6756), 9, + ACTIONS(9644), 1, + anon_sym_case, + ACTIONS(9646), 1, + anon_sym_default, + ACTIONS(9648), 1, + anon_sym_RBRACE, + STATE(6783), 1, + aux_sym_switch_body_repeat1, + STATE(7309), 1, + sym_switch_section, + STATE(6779), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757297,40 +749960,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109987] = 17, - ACTIONS(3), 1, + [112268] = 14, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(8963), 1, - sym_interpolation_end_quote, - ACTIONS(9005), 1, - sym_interpolation_string_content, - STATE(6761), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7221), 1, - sym__interpolated_verbatim_string_content, - STATE(7254), 1, - sym_interpolation, - STATE(6757), 9, + ACTIONS(9652), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9650), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6780), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757340,7 +749999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110047] = 17, + [112321] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757361,19 +750020,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(8952), 1, - sym_interpolation_end_quote, - ACTIONS(9005), 1, - sym_interpolation_string_content, - STATE(6717), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7221), 1, - sym__interpolated_verbatim_string_content, - STATE(7254), 1, - sym_interpolation, - STATE(6758), 9, + ACTIONS(9644), 1, + anon_sym_case, + ACTIONS(9646), 1, + anon_sym_default, + ACTIONS(9654), 1, + anon_sym_RBRACE, + STATE(6783), 1, + aux_sym_switch_body_repeat1, + STATE(7309), 1, + sym_switch_section, + STATE(6781), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757383,40 +750040,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110107] = 17, - ACTIONS(3), 1, + [112378] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9094), 1, - sym_interpolation_end_quote, - STATE(6713), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7188), 1, - sym__interpolated_raw_string_content, - STATE(7189), 1, - sym_interpolation, - STATE(6759), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9656), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6782), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757426,7 +750080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110167] = 17, + [112433] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757447,19 +750101,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9096), 1, - sym_interpolation_end_quote, - STATE(6748), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7188), 1, - sym__interpolated_raw_string_content, - STATE(7189), 1, - sym_interpolation, - STATE(6760), 9, + ACTIONS(9658), 1, + anon_sym_RBRACE, + ACTIONS(9660), 1, + anon_sym_case, + ACTIONS(9663), 1, + anon_sym_default, + STATE(7309), 1, + sym_switch_section, + STATE(6783), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757469,7 +750119,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110227] = 16, + aux_sym_switch_body_repeat1, + [112488] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757490,17 +750141,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9098), 1, - sym_interpolation_end_quote, - ACTIONS(9100), 1, - sym_interpolation_open_brace, - ACTIONS(9103), 1, - sym_interpolation_string_content, - STATE(7221), 1, - sym__interpolated_verbatim_string_content, - STATE(7254), 1, - sym_interpolation, - STATE(6761), 10, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9666), 1, + anon_sym_LBRACE, + STATE(4491), 1, + sym_block, + STATE(7380), 1, + sym_parameter_list, + STATE(6784), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757510,37 +750161,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat2, - [110285] = 13, - ACTIONS(3189), 1, - aux_sym_preproc_if_token2, - ACTIONS(8466), 1, + [112545] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(3187), 5, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(9630), 1, anon_sym_AMP_AMP, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - STATE(6762), 9, + ACTIONS(9668), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6785), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757550,7 +750201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110337] = 17, + [112600] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757571,19 +750222,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8859), 1, - anon_sym_COLON, - ACTIONS(9106), 1, - anon_sym_LBRACE, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6959), 1, - sym_base_list, - STATE(6965), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6763), 9, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9670), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6786), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757593,7 +750241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110397] = 17, + [112655] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757614,19 +750262,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8805), 1, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6877), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9670), 2, anon_sym_SEMI, - ACTIONS(8807), 1, anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2982), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6764), 9, + STATE(6787), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [112710] = 12, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(9672), 5, + anon_sym_DQUOTE, + aux_sym_string_literal_content_token1, + aux_sym_string_literal_content_token2, + sym_escape_sequence, + sym_grit_metavariable, + STATE(6788), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757636,7 +750318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110457] = 17, + [112759] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757657,19 +750339,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(9031), 1, - anon_sym_SEMI, - ACTIONS(9033), 1, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9674), 1, anon_sym_LBRACE, - STATE(4757), 1, + STATE(3321), 1, sym_block, - STATE(4919), 1, - sym__function_body, - STATE(8106), 1, - sym_arrow_expression_clause, - STATE(6765), 9, + STATE(7440), 1, + sym_parameter_list, + STATE(6789), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757679,36 +750359,77 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110517] = 13, - ACTIONS(3696), 1, - aux_sym_preproc_if_token2, - ACTIONS(8466), 1, + [112816] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(3698), 5, - anon_sym_COMMA, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9676), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + STATE(6790), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [112871] = 15, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(9630), 1, anon_sym_AMP_AMP, + ACTIONS(9650), 1, anon_sym_PIPE_PIPE, - STATE(6766), 9, + ACTIONS(9652), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6791), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757718,7 +750439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110569] = 12, + [112926] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757739,14 +750460,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9108), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9243), 1, anon_sym_where, - STATE(6767), 9, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7712), 1, + sym_declaration_list, + STATE(6792), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757756,40 +750480,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110619] = 17, - ACTIONS(3), 1, + [112983] = 13, + ACTIONS(5899), 1, + aux_sym_preproc_if_token2, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2948), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6768), 9, + ACTIONS(5901), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6793), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757799,7 +750518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110679] = 16, + [113034] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757820,18 +750539,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7767), 1, - anon_sym_LT, - ACTIONS(7775), 1, - anon_sym_COLON_COLON, - ACTIONS(9110), 1, - anon_sym_EQ, - STATE(2209), 1, - sym_type_argument_list, - ACTIONS(3953), 2, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6823), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9678), 2, anon_sym_SEMI, - anon_sym_DOT, - STATE(6769), 9, + anon_sym_LBRACE, + STATE(6794), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757841,7 +750558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110737] = 14, + [113089] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757862,16 +750579,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(9077), 1, - anon_sym_EQ, - ACTIONS(4206), 4, + ACTIONS(9680), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9682), 1, + anon_sym_RBRACK, + ACTIONS(9684), 1, anon_sym_and, + ACTIONS(9686), 1, anon_sym_or, - STATE(6770), 9, + STATE(7073), 1, + aux_sym_list_pattern_repeat1, + STATE(6795), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757881,7 +750599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110791] = 12, + [113146] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757902,14 +750620,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9112), 6, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9678), 2, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6771), 9, + anon_sym_LBRACE, + STATE(6796), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757919,36 +750639,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110841] = 14, - ACTIONS(3), 1, + [113201] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9114), 1, - anon_sym_catch, - STATE(6955), 1, - sym_catch_clause, - ACTIONS(3354), 3, - anon_sym_while, - anon_sym_finally, - anon_sym_else, - STATE(6772), 10, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9688), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6797), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757958,40 +750679,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_try_statement_repeat1, - [110895] = 16, - ACTIONS(3), 1, + [113256] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(7767), 1, - anon_sym_LT, - ACTIONS(7775), 1, - anon_sym_COLON_COLON, - ACTIONS(9117), 1, - anon_sym_EQ, - STATE(2209), 1, - sym_type_argument_list, - ACTIONS(3953), 2, - anon_sym_SEMI, - anon_sym_DOT, - STATE(6773), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9690), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6798), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758001,7 +750719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110953] = 14, + [113311] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758022,16 +750740,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9065), 1, - anon_sym_COMMA, - STATE(6735), 1, - aux_sym_type_parameter_constraints_clause_repeat1, - ACTIONS(9119), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6774), 9, + ACTIONS(9692), 1, + anon_sym_COLON, + ACTIONS(9694), 1, + anon_sym_when, + ACTIONS(9696), 1, + anon_sym_and, + ACTIONS(9698), 1, + anon_sym_or, + STATE(8068), 1, + sym_when_clause, + STATE(6799), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758041,7 +750760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111007] = 17, + [113368] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758062,19 +750781,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8859), 1, - anon_sym_COLON, - ACTIONS(9121), 1, + ACTIONS(9258), 1, anon_sym_LBRACE, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7036), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7038), 1, - sym_base_list, - STATE(6775), 9, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7707), 1, + sym_declaration_list, + STATE(6800), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758084,40 +750801,77 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111067] = 17, - ACTIONS(3), 1, + [113425] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, - anon_sym_LBRACE, - STATE(2698), 1, - sym_block, - STATE(2939), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6776), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9700), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6801), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [113480] = 15, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9702), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6802), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758127,7 +750881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111127] = 17, + [113535] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758148,19 +750902,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8805), 1, - anon_sym_SEMI, - ACTIONS(8807), 1, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9674), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(3273), 1, sym_block, - STATE(2981), 1, - sym__function_body, - STATE(7900), 1, - sym_arrow_expression_clause, - STATE(6777), 9, + STATE(7499), 1, + sym_parameter_list, + STATE(6803), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758170,7 +750922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111187] = 17, + [113592] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758191,19 +750943,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8917), 1, - sym_interpolation_end_quote, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(9005), 1, - sym_interpolation_string_content, - STATE(6725), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7221), 1, - sym__interpolated_verbatim_string_content, - STATE(7254), 1, - sym_interpolation, - STATE(6778), 9, + ACTIONS(6063), 1, + anon_sym_LPAREN, + ACTIONS(9367), 1, + anon_sym_LBRACE, + ACTIONS(9704), 1, + anon_sym_COMMA, + STATE(7084), 1, + sym_argument_list, + STATE(7112), 1, + aux_sym_base_list_repeat1, + STATE(6804), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758213,7 +750963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111247] = 14, + [113649] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758234,15 +750984,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9125), 1, - anon_sym_where, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9123), 3, + ACTIONS(9553), 5, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_where, anon_sym_EQ_GT, - STATE(6779), 10, + STATE(6805), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758252,8 +751000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__class_declaration_initializer_repeat4, - [111301] = 17, + [113698] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758274,19 +751021,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8919), 1, - sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9128), 1, - sym_interpolation_end_quote, - STATE(6718), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7188), 1, - sym__interpolated_raw_string_content, - STATE(7189), 1, - sym_interpolation, - STATE(6780), 9, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(9279), 1, + anon_sym_EQ, + STATE(7109), 1, + sym_bracketed_argument_list, + ACTIONS(9210), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6806), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758296,37 +751040,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111361] = 15, - ACTIONS(8466), 1, + [113753] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9134), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9136), 1, + ACTIONS(9706), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6781), 9, + STATE(6807), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758336,7 +751080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111416] = 15, + [113808] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758357,16 +751101,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6896), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9138), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6782), 9, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + STATE(6979), 1, + sym_parameter_list, + STATE(7634), 1, + sym_type_parameter_list, + STATE(6808), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758376,7 +751121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111471] = 15, + [113865] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758397,16 +751142,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(9142), 1, - anon_sym_EQ, - STATE(7141), 1, - sym_bracketed_argument_list, - ACTIONS(9140), 2, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9708), 2, anon_sym_SEMI, - anon_sym_COMMA, - STATE(6783), 9, + anon_sym_LBRACE, + STATE(6809), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758416,7 +751161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111526] = 15, + [113920] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758437,56 +751182,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(4331), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6784), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [111581] = 15, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9144), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6785), 9, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9710), 1, + aux_sym_preproc_if_token3, + STATE(8101), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6810), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758496,37 +751201,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111636] = 15, - ACTIONS(8466), 1, + [113975] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9146), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6786), 9, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6849), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9708), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6811), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758536,37 +751241,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111691] = 15, - ACTIONS(8466), 1, + [114030] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9134), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9148), 1, + ACTIONS(9712), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6787), 9, + STATE(6812), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758576,7 +751281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111746] = 16, + [114085] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758597,17 +751302,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_STAR, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(9150), 1, - anon_sym_LBRACE, - STATE(5764), 1, - sym_block, - STATE(7427), 1, - sym_parameter_list, - STATE(6788), 9, + ACTIONS(9644), 1, + anon_sym_case, + ACTIONS(9646), 1, + anon_sym_default, + ACTIONS(9714), 1, + anon_sym_RBRACE, + STATE(6783), 1, + aux_sym_switch_body_repeat1, + STATE(7309), 1, + sym_switch_section, + STATE(6813), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758617,7 +751322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111803] = 13, + [114142] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758638,54 +751343,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9152), 3, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9716), 2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_where, - STATE(6789), 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_record_base_repeat1, - [111854] = 15, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9157), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6790), 9, + STATE(6814), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758695,37 +751362,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111909] = 15, - ACTIONS(8466), 1, + [114197] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9134), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9159), 1, + ACTIONS(9718), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6791), 9, + STATE(6815), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758735,37 +751402,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111964] = 15, - ACTIONS(8466), 1, + [114252] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9134), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9161), 1, + ACTIONS(9720), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6792), 9, + STATE(6816), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758775,7 +751442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112019] = 13, + [114307] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758796,14 +751463,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8001), 1, - anon_sym_DOT, - ACTIONS(9152), 4, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9722), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6793), 9, + STATE(4234), 1, + sym_block, + STATE(7455), 1, + sym_parameter_list, + STATE(6817), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758813,7 +751483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112070] = 16, + [114364] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758834,17 +751504,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(7757), 1, - anon_sym_DOT, - ACTIONS(9039), 1, + ACTIONS(9684), 1, + anon_sym_and, + ACTIONS(9686), 1, + anon_sym_or, + ACTIONS(9724), 1, anon_sym_COMMA, - STATE(6794), 9, + ACTIONS(9726), 1, + anon_sym_RBRACK, + STATE(7146), 1, + aux_sym_list_pattern_repeat1, + STATE(6818), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758854,7 +751524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112127] = 15, + [114421] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758875,16 +751545,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9163), 2, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(9728), 4, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(6795), 9, + anon_sym_where, + STATE(6819), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758894,7 +751562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112182] = 16, + [114472] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758915,17 +751583,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_STAR, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(9165), 1, - anon_sym_LBRACE, - STATE(5308), 1, - sym_block, - STATE(7548), 1, - sym_parameter_list, - STATE(6796), 9, + ACTIONS(9644), 1, + anon_sym_case, + ACTIONS(9646), 1, + anon_sym_default, + ACTIONS(9730), 1, + anon_sym_RBRACE, + STATE(6813), 1, + aux_sym_switch_body_repeat1, + STATE(7309), 1, + sym_switch_section, + STATE(6820), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758935,7 +751603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112239] = 15, + [114529] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758956,16 +751624,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - STATE(6779), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9167), 2, + ACTIONS(9732), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6797), 9, + STATE(6821), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758975,7 +751643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112294] = 15, + [114584] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758996,16 +751664,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8001), 1, - anon_sym_DOT, - ACTIONS(9169), 1, - anon_sym_LPAREN, - STATE(7379), 1, - sym_attribute_argument_list, - ACTIONS(8246), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6798), 9, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6846), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9732), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6822), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759015,7 +751683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112349] = 15, + [114639] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759036,56 +751704,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - STATE(6797), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9171), 2, + ACTIONS(9734), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6799), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [112404] = 15, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9173), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6800), 9, + STATE(6823), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759095,37 +751723,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112459] = 15, - ACTIONS(8466), 1, + [114694] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9175), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6801), 9, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9736), 1, + anon_sym_LBRACE, + STATE(5267), 1, + sym_block, + STATE(7617), 1, + sym_parameter_list, + STATE(6824), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759135,37 +751764,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112514] = 15, - ACTIONS(8466), 1, + [114751] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9134), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9177), 1, + ACTIONS(9738), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6802), 9, + STATE(6825), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759175,7 +751804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112569] = 16, + [114806] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759196,57 +751825,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, + ACTIONS(9740), 5, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(8745), 1, anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7767), 1, - sym_declaration_list, - STATE(6803), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [112626] = 15, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9179), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6804), 9, + anon_sym_EQ_GT, + STATE(6826), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759256,7 +751841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112681] = 14, + [114855] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759277,15 +751862,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9183), 1, - anon_sym_COLON, - STATE(7269), 1, - sym_constructor_initializer, - ACTIONS(9181), 3, - anon_sym_SEMI, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9742), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6805), 9, + STATE(5774), 1, + sym_block, + STATE(7543), 1, + sym_parameter_list, + STATE(6827), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759295,37 +751882,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112734] = 15, - ACTIONS(8466), 1, + [114912] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9185), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6806), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(8069), 1, + sym_declaration_list, + STATE(6828), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759335,7 +751923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112789] = 16, + [114969] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759356,17 +751944,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(7206), 1, + anon_sym_LBRACE, + ACTIONS(7208), 1, anon_sym_STAR, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(9165), 1, - anon_sym_LBRACE, - STATE(5341), 1, + STATE(3421), 1, sym_block, - STATE(7523), 1, + STATE(7553), 1, sym_parameter_list, - STATE(6807), 9, + STATE(6829), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759376,37 +751964,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112846] = 15, - ACTIONS(8466), 1, + [115026] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9187), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6808), 9, + ACTIONS(9644), 1, + anon_sym_case, + ACTIONS(9646), 1, + anon_sym_default, + ACTIONS(9744), 1, + anon_sym_RBRACE, + STATE(6781), 1, + aux_sym_switch_body_repeat1, + STATE(7309), 1, + sym_switch_section, + STATE(6830), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759416,7 +752005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112901] = 15, + [115083] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759437,16 +752026,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9171), 2, - anon_sym_SEMI, + ACTIONS(6063), 1, + anon_sym_LPAREN, + STATE(6700), 1, + sym_argument_list, + ACTIONS(9449), 3, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(6809), 9, + anon_sym_where, + STATE(6831), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759456,7 +752044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112956] = 14, + [115136] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759477,15 +752065,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9183), 1, - anon_sym_COLON, - STATE(7056), 1, - sym_constructor_initializer, - ACTIONS(9189), 3, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9746), 2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6810), 9, + STATE(6832), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759495,37 +752084,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113009] = 15, - ACTIONS(8466), 1, + [115191] = 13, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9191), 1, + ACTIONS(9750), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9748), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6811), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6833), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759535,7 +752122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113064] = 16, + [115242] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759556,17 +752143,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9193), 1, - anon_sym_RBRACE, - ACTIONS(9195), 1, - anon_sym_case, - ACTIONS(9197), 1, - anon_sym_default, - STATE(6861), 1, - aux_sym_switch_body_repeat1, - STATE(7081), 1, - sym_switch_section, - STATE(6812), 9, + ACTIONS(9684), 1, + anon_sym_and, + ACTIONS(9686), 1, + anon_sym_or, + ACTIONS(9752), 1, + anon_sym_COMMA, + ACTIONS(9754), 1, + anon_sym_RBRACK, + STATE(7085), 1, + aux_sym_list_pattern_repeat1, + STATE(6834), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759576,7 +752163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113121] = 12, + [115299] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759597,13 +752184,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9199), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, + ACTIONS(3966), 1, anon_sym_EQ_GT, - STATE(6813), 9, + ACTIONS(4152), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + STATE(6835), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759613,7 +752201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113170] = 15, + [115350] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759634,16 +752222,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9201), 1, - anon_sym_RPAREN, - ACTIONS(9205), 1, - anon_sym_AMP_AMP, - ACTIONS(9207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9203), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6814), 9, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9756), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6836), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759653,35 +752241,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113225] = 13, - ACTIONS(8466), 1, + [115405] = 13, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9211), 1, + ACTIONS(9652), 1, aux_sym_preproc_if_token2, - ACTIONS(9209), 4, + ACTIONS(9650), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(6815), 9, + STATE(6837), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759691,7 +752279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113276] = 15, + [115456] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759712,16 +752300,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6912), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9213), 2, + ACTIONS(9638), 1, + anon_sym_COLON, + STATE(7090), 1, + sym_constructor_initializer, + ACTIONS(9758), 3, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6816), 9, + anon_sym_EQ_GT, + STATE(6838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759731,34 +752318,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113331] = 12, - ACTIONS(8466), 1, + [115509] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9215), 5, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token1, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6817), 9, + ACTIONS(9357), 1, + anon_sym_COMMA, + STATE(6893), 1, + aux_sym_record_base_repeat1, + ACTIONS(9760), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6839), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759768,37 +752357,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113380] = 15, - ACTIONS(8466), 1, + [115562] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9134), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9217), 1, + ACTIONS(9762), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6818), 9, + STATE(6840), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759808,7 +752397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113435] = 14, + [115617] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759829,15 +752418,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9205), 1, - anon_sym_AMP_AMP, - ACTIONS(9203), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9219), 2, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - STATE(6819), 9, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6814), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9764), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759847,7 +752437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113488] = 13, + [115672] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759868,14 +752458,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9203), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9219), 3, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6820), 9, + ACTIONS(8545), 1, + aux_sym_preproc_else_token1, + ACTIONS(8547), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9766), 1, + aux_sym_preproc_if_token3, + STATE(8000), 2, + sym_preproc_else_in_enum_member_declaration, + sym_preproc_elif_in_enum_member_declaration, + STATE(6842), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [115727] = 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_DOT, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(7482), 1, + sym_attribute_argument_list, + ACTIONS(8815), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(6843), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759885,7 +752517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113539] = 12, + [115782] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759906,13 +752538,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9219), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6821), 9, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(5514), 1, + aux_sym_preproc_if_token3, + STATE(7875), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6844), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759922,7 +752557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113588] = 12, + [115837] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759943,13 +752578,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9221), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6822), 9, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9764), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6845), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759959,7 +752597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113637] = 15, + [115892] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759980,16 +752618,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - STATE(6779), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9213), 2, + ACTIONS(9770), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6823), 9, + STATE(6846), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759999,75 +752637,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113692] = 12, - ACTIONS(8466), 1, + [115947] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(9215), 5, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token1, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6824), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [113741] = 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, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym_LBRACE, - ACTIONS(7202), 1, - anon_sym_STAR, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(4104), 1, - sym_block, - STATE(7603), 1, - sym_parameter_list, - STATE(6825), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9772), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6847), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760077,7 +752677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113798] = 15, + [116002] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760098,53 +752698,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5462), 1, + ACTIONS(5206), 1, + aux_sym_preproc_if_token3, + ACTIONS(5208), 1, aux_sym_preproc_else_token1, - ACTIONS(5464), 1, + ACTIONS(5210), 1, aux_sym_preproc_elif_token1, - ACTIONS(9223), 1, - aux_sym_preproc_if_token3, - STATE(8050), 2, + STATE(7790), 2, sym_preproc_else_in_attribute_list, sym_preproc_elif_in_attribute_list, - STATE(6826), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [113853] = 12, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(9225), 5, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token1, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6827), 9, + STATE(6848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760154,7 +752717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113902] = 14, + [116057] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760175,15 +752738,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8878), 1, - anon_sym_COMMA, - STATE(6789), 1, - aux_sym_record_base_repeat1, - ACTIONS(9227), 3, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9774), 2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_where, - STATE(6828), 9, + STATE(6849), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760193,7 +752757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113955] = 15, + [116112] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760214,16 +752778,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9229), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6829), 9, + ACTIONS(9778), 1, + anon_sym_AMP_AMP, + ACTIONS(9652), 2, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + ACTIONS(9776), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6850), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760233,7 +752796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114010] = 15, + [116165] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760254,16 +752817,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9231), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6830), 9, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(8587), 1, + aux_sym_preproc_if_token3, + STATE(8052), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6851), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760273,7 +752836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114065] = 16, + [116220] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760294,17 +752857,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4331), 1, - anon_sym_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(9039), 1, + ACTIONS(9357), 1, anon_sym_COMMA, - ACTIONS(9041), 1, - anon_sym_QMARK, - STATE(6831), 9, + STATE(6893), 1, + aux_sym_record_base_repeat1, + ACTIONS(9780), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6852), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760314,7 +752875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114122] = 15, + [116273] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760335,16 +752896,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - STATE(6779), 1, + STATE(6836), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9138), 2, + ACTIONS(9746), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6832), 9, + STATE(6853), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760354,7 +752915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114177] = 16, + [116328] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760375,17 +752936,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, + ACTIONS(7206), 1, anon_sym_LBRACE, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7872), 1, - sym_declaration_list, - STATE(6833), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9782), 1, + anon_sym_STAR, + STATE(3421), 1, + sym_block, + STATE(7553), 1, + sym_parameter_list, + STATE(6854), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760395,7 +752956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114234] = 16, + [116385] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760416,17 +752977,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(7010), 1, - sym_parameter_list, - STATE(7515), 1, - sym_type_parameter_list, - STATE(6834), 9, + ACTIONS(9750), 5, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6855), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760436,37 +752993,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114291] = 15, - ACTIONS(8466), 1, + [116434] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9134), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9233), 1, + ACTIONS(9784), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6835), 9, + STATE(6856), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760476,7 +753033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114346] = 15, + [116489] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760497,16 +753054,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6898), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9235), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6836), 9, + ACTIONS(9776), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9652), 3, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6857), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760516,7 +753071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114401] = 16, + [116540] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760537,17 +753092,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9237), 1, - anon_sym_COMMA, - ACTIONS(9239), 1, - anon_sym_RBRACK, - ACTIONS(9241), 1, - anon_sym_and, ACTIONS(9243), 1, - anon_sym_or, - STATE(7271), 1, - aux_sym_list_pattern_repeat1, - STATE(6837), 9, + anon_sym_where, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7950), 1, + sym_declaration_list, + STATE(6858), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760557,7 +753112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114458] = 15, + [116597] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760578,16 +753133,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8057), 1, - aux_sym_preproc_if_token3, - STATE(7842), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6838), 9, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9736), 1, + anon_sym_LBRACE, + STATE(5201), 1, + sym_block, + STATE(7434), 1, + sym_parameter_list, + STATE(6859), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760597,37 +753153,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114513] = 15, - ACTIONS(3), 1, + [116654] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9235), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6839), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9786), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6860), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760637,7 +753193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114568] = 16, + [116709] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760658,17 +753214,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_LPAREN, - ACTIONS(8869), 1, - anon_sym_LBRACE, - ACTIONS(9245), 1, - anon_sym_COMMA, - STATE(7111), 1, - aux_sym_base_list_repeat1, - STATE(7113), 1, - sym_argument_list, - STATE(6840), 9, + ACTIONS(9652), 5, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6861), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760678,7 +753230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114625] = 15, + [116758] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760699,16 +753251,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(9247), 1, - anon_sym_EQ, - STATE(7250), 1, - sym_bracketed_argument_list, - ACTIONS(8712), 2, - anon_sym_COMMA, + ACTIONS(9788), 5, anon_sym_RPAREN, - STATE(6841), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6862), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760718,7 +753267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114680] = 15, + [116807] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760739,16 +753288,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7970), 1, - aux_sym_preproc_else_token1, - ACTIONS(7972), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9249), 1, - aux_sym_preproc_if_token3, - STATE(7804), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(6842), 9, + ACTIONS(9684), 1, + anon_sym_and, + ACTIONS(9686), 1, + anon_sym_or, + ACTIONS(9790), 1, + anon_sym_COMMA, + ACTIONS(9792), 1, + anon_sym_RBRACK, + STATE(7324), 1, + aux_sym_list_pattern_repeat1, + STATE(6863), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760758,37 +753308,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114735] = 15, - ACTIONS(8466), 1, + [116864] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9219), 1, - aux_sym_preproc_if_token2, - ACTIONS(9251), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9130), 2, + ACTIONS(9794), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6843), 9, + STATE(6864), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760798,7 +753348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114790] = 16, + [116919] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760819,17 +753369,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9241), 1, - anon_sym_and, ACTIONS(9243), 1, - anon_sym_or, - ACTIONS(9253), 1, - anon_sym_COMMA, - ACTIONS(9255), 1, - anon_sym_RBRACK, - STATE(7252), 1, - aux_sym_list_pattern_repeat1, - STATE(6844), 9, + anon_sym_where, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7968), 1, + sym_declaration_list, + STATE(6865), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760839,7 +753389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114847] = 15, + [116976] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760860,16 +753410,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6795), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9257), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6845), 9, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(9796), 1, + anon_sym_EQ, + STATE(7192), 1, + sym_bracketed_argument_list, + ACTIONS(9798), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6866), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760879,7 +753429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114902] = 15, + [117031] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760900,16 +753450,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9257), 2, + ACTIONS(9588), 5, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(6846), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6867), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760919,7 +753466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114957] = 12, + [117080] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760940,13 +753487,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9259), 5, - anon_sym_COLON, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, anon_sym_LPAREN, + ACTIONS(9722), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6847), 9, + STATE(4429), 1, + sym_block, + STATE(7436), 1, + sym_parameter_list, + STATE(6868), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760956,7 +753507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115006] = 15, + [117137] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760977,16 +753528,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8339), 1, - aux_sym_preproc_if_token3, - STATE(8143), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6848), 9, + ACTIONS(9638), 1, + anon_sym_COLON, + STATE(7178), 1, + sym_constructor_initializer, + ACTIONS(9800), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6869), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760996,37 +753546,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115061] = 15, - ACTIONS(8466), 1, + [117190] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9134), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9261), 1, + ACTIONS(9802), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6849), 9, + STATE(6870), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761036,37 +753586,78 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115116] = 15, - ACTIONS(8466), 1, + [117245] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9644), 1, + anon_sym_case, + ACTIONS(9646), 1, + anon_sym_default, + ACTIONS(9804), 1, + anon_sym_RBRACE, + STATE(6779), 1, + aux_sym_switch_body_repeat1, + STATE(7309), 1, + sym_switch_section, + STATE(6871), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [117302] = 15, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9134), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9263), 1, + ACTIONS(9806), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6850), 9, + STATE(6872), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761076,7 +753667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115171] = 15, + [117357] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761097,16 +753688,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5430), 1, - anon_sym_LBRACK, - ACTIONS(9265), 1, - anon_sym_EQ, - STATE(7227), 1, - sym_bracketed_argument_list, - ACTIONS(9140), 2, + ACTIONS(9684), 1, + anon_sym_and, + ACTIONS(8039), 4, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6851), 9, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_or, + STATE(6873), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761116,37 +753705,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115226] = 15, - ACTIONS(8466), 1, + [117408] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9267), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6852), 9, + ACTIONS(7206), 1, + anon_sym_LBRACE, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(3356), 1, + sym_block, + STATE(7536), 1, + sym_parameter_list, + STATE(6874), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761156,36 +753746,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115281] = 14, - ACTIONS(8466), 1, + [117465] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9219), 1, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9808), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(9251), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6853), 9, + STATE(6875), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761195,7 +753786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115334] = 16, + [117520] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761216,17 +753807,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9195), 1, - anon_sym_case, - ACTIONS(9197), 1, - anon_sym_default, - ACTIONS(9269), 1, - anon_sym_RBRACE, - STATE(6880), 1, - aux_sym_switch_body_repeat1, - STATE(7081), 1, - sym_switch_section, - STATE(6854), 9, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8267), 1, + anon_sym_DOT, + ACTIONS(9576), 1, + anon_sym_COMMA, + STATE(6876), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761236,7 +753827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115391] = 14, + [117577] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761257,15 +753848,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8878), 1, - anon_sym_COMMA, - STATE(6789), 1, - aux_sym_record_base_repeat1, - ACTIONS(9271), 3, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9810), 2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_where, - STATE(6855), 9, + STATE(6877), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761275,37 +753867,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115444] = 15, - ACTIONS(8466), 1, + [117632] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9273), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6856), 9, + ACTIONS(9684), 1, + anon_sym_and, + ACTIONS(9686), 1, + anon_sym_or, + ACTIONS(9812), 1, + anon_sym_COMMA, + ACTIONS(9814), 1, + anon_sym_RBRACK, + STATE(7166), 1, + aux_sym_list_pattern_repeat1, + STATE(6878), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761315,7 +753908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115499] = 14, + [117689] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761336,15 +753929,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_LPAREN, - STATE(6767), 1, - sym_argument_list, - ACTIONS(8954), 3, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(9243), 1, anon_sym_where, - STATE(6857), 9, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9816), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6879), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761354,35 +753948,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115552] = 13, - ACTIONS(6196), 1, - aux_sym_preproc_if_token2, - ACTIONS(8466), 1, + [117744] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(6198), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(9630), 1, anon_sym_AMP_AMP, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - STATE(6858), 9, + ACTIONS(9818), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6880), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761392,35 +753988,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115603] = 13, - ACTIONS(8466), 1, + [117799] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9219), 1, - aux_sym_preproc_if_token2, - ACTIONS(9251), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(9778), 1, anon_sym_AMP_AMP, + ACTIONS(9820), 1, + anon_sym_RPAREN, + ACTIONS(9822), 1, anon_sym_PIPE_PIPE, - STATE(6859), 9, + ACTIONS(9776), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6881), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761430,35 +754028,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115654] = 13, - ACTIONS(8466), 1, + [117854] = 13, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9221), 1, + ACTIONS(9826), 1, aux_sym_preproc_if_token2, - ACTIONS(9275), 4, + ACTIONS(9824), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(6860), 9, + STATE(6882), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761468,7 +754066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115705] = 16, + [117905] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761489,17 +754087,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9195), 1, - anon_sym_case, - ACTIONS(9197), 1, - anon_sym_default, - ACTIONS(9277), 1, - anon_sym_RBRACE, - STATE(6880), 1, - aux_sym_switch_body_repeat1, - STATE(7081), 1, - sym_switch_section, - STATE(6861), 9, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6908), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9816), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6883), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761509,37 +754106,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115762] = 15, - ACTIONS(8466), 1, + [117960] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9279), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6862), 9, + ACTIONS(9638), 1, + anon_sym_COLON, + STATE(7257), 1, + sym_constructor_initializer, + ACTIONS(9828), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6884), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761549,7 +754145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115817] = 14, + [118013] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761570,15 +754166,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9241), 1, - anon_sym_and, - ACTIONS(9243), 1, - anon_sym_or, - ACTIONS(7663), 3, + ACTIONS(4331), 1, + anon_sym_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(9570), 1, + anon_sym_QMARK, + ACTIONS(9576), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6863), 9, + STATE(6885), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761588,37 +754186,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115870] = 15, - ACTIONS(8466), 1, + [118070] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9134), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9281), 1, + ACTIONS(9830), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6864), 9, + STATE(6886), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761628,7 +754226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115925] = 16, + [118125] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761649,17 +754247,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_STAR, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(9150), 1, - anon_sym_LBRACE, - STATE(5667), 1, - sym_block, - STATE(7385), 1, - sym_parameter_list, - STATE(6865), 9, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(9832), 1, + anon_sym_EQ, + STATE(7190), 1, + sym_bracketed_argument_list, + ACTIONS(9210), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6887), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761669,7 +754266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115982] = 16, + [118180] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761690,17 +754287,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9241), 1, - anon_sym_and, - ACTIONS(9243), 1, - anon_sym_or, - ACTIONS(9283), 1, - anon_sym_COMMA, - ACTIONS(9285), 1, - anon_sym_RBRACK, - STATE(7100), 1, - aux_sym_list_pattern_repeat1, - STATE(6866), 9, + ACTIONS(8545), 1, + aux_sym_preproc_else_token1, + ACTIONS(8547), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9834), 1, + aux_sym_preproc_if_token3, + STATE(7739), 2, + sym_preproc_else_in_enum_member_declaration, + sym_preproc_elif_in_enum_member_declaration, + STATE(6888), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761710,7 +754306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116039] = 12, + [118235] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761731,13 +754327,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9287), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6867), 9, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(9570), 1, + anon_sym_QMARK, + ACTIONS(4331), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6889), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761747,7 +754346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116088] = 16, + [118290] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761768,57 +754367,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7849), 1, - sym_declaration_list, - STATE(6868), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [116145] = 15, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9289), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6869), 9, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(9836), 1, + anon_sym_EQ, + STATE(7105), 1, + sym_bracketed_argument_list, + ACTIONS(9798), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6890), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761828,7 +754386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116200] = 16, + [118345] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761849,17 +754407,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - STATE(6779), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(8016), 1, - sym_declaration_list, - STATE(6870), 9, + ACTIONS(9838), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6891), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761869,37 +754426,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116257] = 15, - ACTIONS(8466), 1, + [118400] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9134), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9291), 1, + ACTIONS(9840), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6871), 9, + STATE(6892), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761909,7 +754466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116312] = 15, + [118455] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761930,16 +754487,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5460), 1, - aux_sym_preproc_if_token3, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - STATE(7688), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6872), 9, + ACTIONS(9842), 1, + anon_sym_COMMA, + ACTIONS(9728), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6893), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761949,7 +754503,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116367] = 16, + aux_sym_record_base_repeat1, + [118506] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761970,17 +754525,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9293), 1, - anon_sym_COLON, - ACTIONS(9295), 1, - anon_sym_when, - ACTIONS(9297), 1, + ACTIONS(9684), 1, anon_sym_and, - ACTIONS(9299), 1, + ACTIONS(9686), 1, anon_sym_or, - STATE(8108), 1, - sym_when_clause, - STATE(6873), 9, + ACTIONS(8003), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761990,37 +754543,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116424] = 15, - ACTIONS(3), 1, + [118559] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9301), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6874), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9845), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6895), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762030,7 +754583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116479] = 16, + [118614] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762051,17 +754604,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6891), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9847), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(7202), 1, - anon_sym_STAR, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(4155), 1, - sym_block, - STATE(7567), 1, - sym_parameter_list, - STATE(6875), 9, + STATE(6896), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762071,7 +754623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116536] = 15, + [118669] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762092,16 +754644,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6830), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9301), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6876), 9, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(5212), 1, + aux_sym_preproc_if_token3, + STATE(7745), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6897), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762111,37 +754663,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116591] = 15, - ACTIONS(8466), 1, + [118724] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9134), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9303), 1, + ACTIONS(9849), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6877), 9, + STATE(6898), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762151,37 +754703,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116646] = 15, - ACTIONS(3), 1, + [118779] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9205), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9207), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9305), 1, - anon_sym_RPAREN, - ACTIONS(9203), 2, + ACTIONS(9851), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6878), 9, + STATE(6899), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762191,76 +754743,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116701] = 15, - ACTIONS(8466), 1, + [118834] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9134), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9307), 1, + ACTIONS(9853), 1, aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6879), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [116756] = 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(9309), 1, - anon_sym_RBRACE, - ACTIONS(9311), 1, - anon_sym_case, - ACTIONS(9314), 1, - anon_sym_default, - STATE(7081), 1, - sym_switch_section, - STATE(6880), 10, + STATE(6900), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762270,8 +754783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_switch_body_repeat1, - [116811] = 15, + [118889] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762292,16 +754804,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6829), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9317), 2, - anon_sym_SEMI, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9666), 1, anon_sym_LBRACE, - STATE(6881), 9, + STATE(4719), 1, + sym_block, + STATE(7405), 1, + sym_parameter_list, + STATE(6901), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762311,37 +754824,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116866] = 15, - ACTIONS(3), 1, + [118946] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - ACTIONS(5730), 1, - aux_sym_preproc_if_token3, - STATE(7986), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6882), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9855), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6902), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762351,7 +754864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116921] = 13, + [119001] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762372,14 +754885,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9241), 1, - anon_sym_and, - ACTIONS(7635), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_or, - STATE(6883), 9, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9742), 1, + anon_sym_LBRACE, + STATE(5775), 1, + sym_block, + STATE(7628), 1, + sym_parameter_list, + STATE(6903), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762389,7 +754905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116972] = 15, + [119058] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762410,94 +754926,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9317), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6884), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [117027] = 15, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9319), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6885), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [117082] = 13, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(9287), 1, - aux_sym_preproc_if_token2, - ACTIONS(9321), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6886), 9, + ACTIONS(9644), 1, + anon_sym_case, + ACTIONS(9646), 1, + anon_sym_default, + ACTIONS(9857), 1, + anon_sym_RBRACE, + STATE(6778), 1, + aux_sym_switch_body_repeat1, + STATE(7309), 1, + sym_switch_section, + STATE(6904), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762507,7 +754946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117133] = 16, + [119115] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762528,17 +754967,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_STAR, - ACTIONS(8295), 1, + ACTIONS(9859), 5, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(9323), 1, anon_sym_LBRACE, - STATE(4922), 1, - sym_block, - STATE(7478), 1, - sym_parameter_list, - STATE(6887), 9, + anon_sym_LT, + anon_sym_where, + STATE(6905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762548,7 +754983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117190] = 16, + [119164] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762569,17 +755004,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(8020), 1, - sym_declaration_list, - STATE(6888), 9, + ACTIONS(9778), 1, + anon_sym_AMP_AMP, + ACTIONS(9822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9861), 1, + anon_sym_RPAREN, + ACTIONS(9776), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6906), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762589,7 +755023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117247] = 16, + [119219] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762610,17 +755044,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9195), 1, - anon_sym_case, - ACTIONS(9197), 1, - anon_sym_default, - ACTIONS(9325), 1, - anon_sym_RBRACE, - STATE(6880), 1, - aux_sym_switch_body_repeat1, - STATE(7081), 1, - sym_switch_section, - STATE(6889), 9, + ACTIONS(4331), 1, + anon_sym_LPAREN, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(9863), 1, + anon_sym_DOT, + STATE(6907), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762630,7 +755064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117304] = 16, + [119276] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762651,17 +755085,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9865), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(9327), 1, - anon_sym_STAR, - STATE(4104), 1, - sym_block, - STATE(7603), 1, - sym_parameter_list, - STATE(6890), 9, + STATE(6908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762671,7 +755104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117361] = 16, + [119331] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762692,17 +755125,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_STAR, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(9329), 1, + ACTIONS(9867), 5, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(4976), 1, - sym_block, - STATE(7387), 1, - sym_parameter_list, - STATE(6891), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762712,7 +755141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117418] = 16, + [119380] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762733,17 +755162,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9195), 1, - anon_sym_case, - ACTIONS(9197), 1, - anon_sym_default, - ACTIONS(9331), 1, - anon_sym_RBRACE, - STATE(6880), 1, - aux_sym_switch_body_repeat1, - STATE(7081), 1, - sym_switch_section, - STATE(6892), 9, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9847), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762753,38 +755181,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117475] = 16, - ACTIONS(3), 1, + [119435] = 13, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9241), 1, - anon_sym_and, - ACTIONS(9243), 1, - anon_sym_or, - ACTIONS(9333), 1, - anon_sym_COMMA, - ACTIONS(9335), 1, - anon_sym_RBRACK, - STATE(7053), 1, - aux_sym_list_pattern_repeat1, - STATE(6893), 9, + ACTIONS(9788), 1, + aux_sym_preproc_if_token2, + ACTIONS(9869), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6911), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762794,34 +755219,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117532] = 12, - ACTIONS(3), 1, + [119486] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9337), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6894), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9871), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6912), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762831,34 +755259,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117581] = 12, - ACTIONS(3), 1, + [119541] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9081), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6895), 9, + ACTIONS(9873), 5, + anon_sym_DQUOTE, + aux_sym_string_literal_content_token1, + aux_sym_string_literal_content_token2, + sym_escape_sequence, + sym_grit_metavariable, + STATE(6913), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762868,37 +755296,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117630] = 15, - ACTIONS(3), 1, + [119590] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9339), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6896), 9, + ACTIONS(9873), 5, + anon_sym_DQUOTE, + aux_sym_string_literal_content_token1, + aux_sym_string_literal_content_token2, + sym_escape_sequence, + sym_grit_metavariable, + STATE(6914), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762908,7 +755333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117685] = 16, + [119639] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762929,17 +755354,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_STAR, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(9341), 1, - anon_sym_LBRACE, - STATE(4046), 1, - sym_block, - STATE(7488), 1, - sym_parameter_list, - STATE(6897), 9, + ACTIONS(9826), 5, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6915), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762949,7 +755370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117742] = 15, + [119688] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762970,16 +755391,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9343), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6898), 9, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + ACTIONS(8902), 1, + aux_sym_preproc_if_token3, + STATE(7853), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762989,37 +755410,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117797] = 15, - ACTIONS(3), 1, + [119743] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6913), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9345), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6899), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9875), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6917), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763029,7 +755450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117852] = 15, + [119798] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763050,16 +755471,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - STATE(6779), 1, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9345), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6900), 9, + STATE(8098), 1, + sym_declaration_list, + STATE(6918), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763069,37 +755491,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117907] = 15, - ACTIONS(8466), 1, + [119855] = 13, + ACTIONS(5879), 1, + aux_sym_preproc_if_token2, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9347), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, + ACTIONS(5881), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6901), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6919), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763109,37 +755529,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117962] = 15, - ACTIONS(3), 1, + [119906] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(5462), 1, - aux_sym_preproc_else_token1, - ACTIONS(5464), 1, - aux_sym_preproc_elif_token1, - ACTIONS(5472), 1, - aux_sym_preproc_if_token3, - STATE(7800), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6902), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9877), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6920), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763149,7 +755569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118017] = 14, + [119961] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763170,15 +755590,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9183), 1, - anon_sym_COLON, - STATE(7296), 1, - sym_constructor_initializer, - ACTIONS(9349), 3, + ACTIONS(9879), 4, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_where, anon_sym_EQ_GT, - STATE(6903), 9, + STATE(6921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763188,37 +755605,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118070] = 15, - ACTIONS(8466), 1, + [120009] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9351), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6904), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9881), 1, + anon_sym_LBRACE, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7022), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6922), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763228,7 +755644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118125] = 12, + [120063] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763249,13 +755665,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9211), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6905), 9, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(9258), 1, + anon_sym_LBRACE, + ACTIONS(9883), 1, + anon_sym_SEMI, + STATE(7742), 1, + sym_declaration_list, + STATE(6923), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763265,7 +755683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118174] = 16, + [120117] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763286,17 +755704,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7768), 1, - sym_declaration_list, - STATE(6906), 9, + ACTIONS(3384), 4, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + STATE(6924), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763306,7 +755719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118231] = 12, + [120165] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763327,13 +755740,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9035), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(9243), 1, anon_sym_where, - anon_sym_EQ_GT, - STATE(6907), 9, + ACTIONS(9885), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763343,7 +755758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118280] = 16, + [120219] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763364,17 +755779,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9195), 1, - anon_sym_case, - ACTIONS(9197), 1, - anon_sym_default, - ACTIONS(9353), 1, - anon_sym_RBRACE, - STATE(6889), 1, - aux_sym_switch_body_repeat1, - STATE(7081), 1, - sym_switch_section, - STATE(6908), 9, + ACTIONS(9887), 1, + anon_sym_LT, + ACTIONS(9889), 1, + anon_sym_unmanaged, + ACTIONS(9891), 1, + anon_sym_managed, + STATE(8040), 1, + sym_calling_convention, + STATE(6926), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763384,7 +755797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118337] = 16, + [120273] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763405,17 +755818,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_STAR, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(9341), 1, - anon_sym_LBRACE, - STATE(3816), 1, - sym_block, - STATE(7463), 1, - sym_parameter_list, - STATE(6909), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9893), 1, + anon_sym_SEMI, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6927), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763425,7 +755836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118394] = 13, + [120327] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763446,14 +755857,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(4206), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - STATE(6910), 9, + ACTIONS(9889), 1, + anon_sym_unmanaged, + ACTIONS(9891), 1, + anon_sym_managed, + ACTIONS(9895), 1, + anon_sym_LT, + STATE(7711), 1, + sym_calling_convention, + STATE(6928), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763463,37 +755875,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118445] = 15, - ACTIONS(8466), 1, + [120381] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9355), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6911), 9, + ACTIONS(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, + anon_sym_LBRACE, + STATE(7550), 1, + sym_base_list, + STATE(7917), 1, + sym_enum_member_declaration_list, + STATE(6929), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763503,7 +755914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118500] = 15, + [120435] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763524,16 +755935,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9357), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6912), 9, + ACTIONS(9901), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6930), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763543,7 +755950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118555] = 15, + [120483] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763564,16 +755971,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9359), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6913), 9, + ACTIONS(4312), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(6931), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763583,7 +755986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118610] = 16, + [120531] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763604,17 +756007,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4331), 1, - anon_sym_LPAREN, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(9361), 1, - anon_sym_DOT, - STATE(6914), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9885), 1, + anon_sym_LBRACE, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7016), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6932), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763624,37 +756025,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118667] = 15, - ACTIONS(8466), 1, + [120585] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9363), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6915), 9, + ACTIONS(9889), 1, + anon_sym_unmanaged, + ACTIONS(9891), 1, + anon_sym_managed, + ACTIONS(9903), 1, + anon_sym_LT, + STATE(8053), 1, + sym_calling_convention, + STATE(6933), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763664,7 +756064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118722] = 16, + [120639] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763685,17 +756085,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(8843), 1, + anon_sym_LPAREN, ACTIONS(9241), 1, - anon_sym_and, - ACTIONS(9243), 1, - anon_sym_or, - ACTIONS(9365), 1, - anon_sym_COMMA, - ACTIONS(9367), 1, - anon_sym_RBRACK, - STATE(7123), 1, - aux_sym_list_pattern_repeat1, - STATE(6916), 9, + anon_sym_LT, + STATE(7441), 1, + sym_parameter_list, + STATE(7442), 1, + sym_type_parameter_list, + STATE(6934), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763705,7 +756103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118779] = 16, + [120693] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763726,17 +756124,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9195), 1, - anon_sym_case, - ACTIONS(9197), 1, - anon_sym_default, - ACTIONS(9369), 1, - anon_sym_RBRACE, - STATE(6892), 1, - aux_sym_switch_body_repeat1, - STATE(7081), 1, - sym_switch_section, - STATE(6917), 9, + ACTIONS(9907), 1, + anon_sym_and, + ACTIONS(9909), 1, + anon_sym_or, + ACTIONS(9905), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6935), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763746,7 +756141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118836] = 15, + [120745] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763767,16 +756162,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7970), 1, - aux_sym_preproc_else_token1, - ACTIONS(7972), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9371), 1, - aux_sym_preproc_if_token3, - STATE(7730), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(6918), 9, + ACTIONS(4331), 1, + anon_sym_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(9576), 1, + anon_sym_COMMA, + STATE(6936), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763786,7 +756180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118891] = 12, + [120799] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763807,13 +756201,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9373), 5, + ACTIONS(9911), 4, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ_GT, - STATE(6919), 9, + STATE(6937), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763823,7 +756216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118940] = 16, + [120847] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763844,57 +756237,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_STAR, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(9329), 1, - anon_sym_LBRACE, - STATE(5040), 1, - sym_block, - STATE(7421), 1, - sym_parameter_list, - STATE(6920), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [118997] = 15, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(9132), 1, - anon_sym_AMP_AMP, - ACTIONS(9134), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9375), 1, - aux_sym_preproc_if_token2, - ACTIONS(9130), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6921), 9, + ACTIONS(9684), 1, + anon_sym_and, + ACTIONS(9686), 1, + anon_sym_or, + ACTIONS(2039), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(6938), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763904,7 +756254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119052] = 14, + [120899] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763925,53 +756275,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9183), 1, - anon_sym_COLON, - STATE(7344), 1, - sym_constructor_initializer, - ACTIONS(9377), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6922), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [119105] = 13, - ACTIONS(6341), 1, - aux_sym_preproc_if_token2, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(6343), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6923), 9, + ACTIONS(9889), 1, + anon_sym_unmanaged, + ACTIONS(9891), 1, + anon_sym_managed, + ACTIONS(9913), 1, + anon_sym_LT, + STATE(8023), 1, + sym_calling_convention, + STATE(6939), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763981,7 +756293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119156] = 16, + [120953] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764002,17 +756314,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_STAR, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(9323), 1, - anon_sym_LBRACE, - STATE(4870), 1, - sym_block, - STATE(7467), 1, - sym_parameter_list, - STATE(6924), 9, + ACTIONS(9915), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6940), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764022,7 +756329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119213] = 16, + [121001] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764043,17 +756350,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9195), 1, - anon_sym_case, - ACTIONS(9197), 1, - anon_sym_default, - ACTIONS(9379), 1, - anon_sym_RBRACE, - STATE(6854), 1, - aux_sym_switch_body_repeat1, - STATE(7081), 1, - sym_switch_section, - STATE(6925), 9, + ACTIONS(9214), 1, + anon_sym_LBRACE, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + STATE(2743), 1, + sym_accessor_list, + STATE(7785), 1, + sym_arrow_expression_clause, + STATE(6941), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764063,7 +756368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119270] = 15, + [121055] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764084,16 +756389,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5430), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(8781), 1, - anon_sym_EQ, - STATE(7237), 1, - sym_bracketed_argument_list, - ACTIONS(8712), 2, - anon_sym_SEMI, + ACTIONS(9570), 1, + anon_sym_QMARK, + ACTIONS(4331), 2, anon_sym_COMMA, - STATE(6926), 9, + anon_sym_GT, + STATE(6942), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764103,7 +756406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119325] = 15, + [121107] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764124,15 +756427,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_COMMA, - ACTIONS(9383), 1, - anon_sym_RPAREN, - ACTIONS(9385), 1, - anon_sym_and, - ACTIONS(9387), 1, - anon_sym_or, - STATE(6927), 9, + ACTIONS(9889), 1, + anon_sym_unmanaged, + ACTIONS(9891), 1, + anon_sym_managed, + ACTIONS(9917), 1, + anon_sym_LT, + STATE(8065), 1, + sym_calling_convention, + STATE(6943), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764142,7 +756445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119379] = 13, + [121161] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764163,51 +756466,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9389), 1, - anon_sym_EQ, - ACTIONS(9391), 3, + ACTIONS(9684), 1, + anon_sym_and, + ACTIONS(9686), 1, + anon_sym_or, + ACTIONS(9919), 2, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6928), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [119429] = 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(9393), 1, - anon_sym_LPAREN, - ACTIONS(9397), 1, - sym_integer_literal, - ACTIONS(9395), 2, - anon_sym_default, - anon_sym_hidden, - STATE(6929), 9, + anon_sym_RBRACE, + STATE(6944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764217,7 +756483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119481] = 15, + [121213] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764238,15 +756504,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9399), 1, - anon_sym_COLON, - ACTIONS(9401), 1, + ACTIONS(9921), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(7582), 1, - sym_base_list, - STATE(7848), 1, - sym_enum_member_declaration_list, - STATE(6930), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6945), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764256,7 +756519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119535] = 15, + [121261] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764277,15 +756540,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9403), 1, - anon_sym_LT, - ACTIONS(9405), 1, - anon_sym_unmanaged, - ACTIONS(9407), 1, - anon_sym_managed, - STATE(8014), 1, - sym_calling_convention, - STATE(6931), 9, + ACTIONS(9907), 1, + anon_sym_and, + ACTIONS(8039), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_or, + STATE(6946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764295,7 +756556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119589] = 15, + [121311] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764316,15 +756577,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9409), 1, + ACTIONS(9923), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6932), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6947), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764334,7 +756592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119643] = 14, + [121359] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764355,14 +756613,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(4331), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6933), 9, + ACTIONS(3380), 4, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + STATE(6948), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764372,7 +756628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119695] = 14, + [121407] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764393,14 +756649,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(9411), 1, - anon_sym_EQ, - ACTIONS(9413), 2, + ACTIONS(9925), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6934), 9, + ACTIONS(9928), 2, + anon_sym_RBRACK, + anon_sym_GT, + STATE(6949), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764410,7 +756664,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119747] = 13, + aux_sym_type_argument_list_repeat1, + [121457] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764431,13 +756686,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9415), 1, - anon_sym_EQ, - ACTIONS(9417), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(6935), 9, + ACTIONS(9612), 1, + anon_sym_COMMA, + STATE(6953), 1, + aux_sym_base_list_repeat1, + ACTIONS(9388), 2, + anon_sym_LBRACE, + anon_sym_where, + STATE(6950), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764447,7 +756703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119797] = 15, + [121509] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764468,15 +756724,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8001), 1, + ACTIONS(8524), 1, anon_sym_DOT, - ACTIONS(8741), 1, + ACTIONS(9258), 1, anon_sym_LBRACE, - ACTIONS(9419), 1, + ACTIONS(9930), 1, anon_sym_SEMI, - STATE(7909), 1, + STATE(8019), 1, sym_declaration_list, - STATE(6936), 9, + STATE(6951), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764486,7 +756742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119851] = 13, + [121563] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764507,13 +756763,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9421), 1, - anon_sym_EQ, - ACTIONS(9413), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6937), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + STATE(7450), 1, + sym_type_parameter_list, + STATE(7451), 1, + sym_parameter_list, + STATE(6952), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764523,7 +756781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119901] = 15, + [121617] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764544,54 +756802,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(9039), 1, + ACTIONS(9932), 1, anon_sym_COMMA, - STATE(6938), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [119955] = 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(8745), 1, + ACTIONS(9482), 2, + anon_sym_LBRACE, anon_sym_where, - ACTIONS(9423), 1, - anon_sym_SEMI, - STATE(6949), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6939), 9, + STATE(6953), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764601,7 +756817,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120009] = 15, + aux_sym_base_list_repeat1, + [121667] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764622,15 +756839,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9405), 1, - anon_sym_unmanaged, - ACTIONS(9407), 1, - anon_sym_managed, - ACTIONS(9425), 1, - anon_sym_LT, - STATE(8029), 1, - sym_calling_convention, - STATE(6940), 9, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(9576), 1, + anon_sym_COMMA, + STATE(6954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764640,7 +756857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120063] = 15, + [121721] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764661,15 +756878,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, + ACTIONS(9564), 1, + anon_sym_and, + ACTIONS(9566), 1, + anon_sym_or, + ACTIONS(8003), 2, anon_sym_EQ_GT, - STATE(3034), 1, - sym_accessor_list, - STATE(7916), 1, - sym_arrow_expression_clause, - STATE(6941), 9, + anon_sym_when, + STATE(6955), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764679,7 +756895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120117] = 13, + [121773] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764700,12 +756916,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9427), 1, + ACTIONS(9612), 1, anon_sym_COMMA, - ACTIONS(8894), 2, + STATE(6953), 1, + aux_sym_base_list_repeat1, + ACTIONS(9487), 2, anon_sym_LBRACE, anon_sym_where, - STATE(6942), 10, + STATE(6956), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764715,8 +756933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_base_list_repeat1, - [120167] = 15, + [121825] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764737,15 +756954,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(9430), 1, - anon_sym_EQ, - ACTIONS(9432), 1, - anon_sym_COMMA, - ACTIONS(9435), 1, - anon_sym_RPAREN, - STATE(6943), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9935), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764755,7 +756972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120221] = 15, + [121879] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764776,15 +756993,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8772), 1, + ACTIONS(9935), 1, anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6944), 9, + STATE(7027), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764794,7 +757011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120275] = 13, + [121933] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764815,13 +757032,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(9437), 3, + ACTIONS(9907), 1, + anon_sym_and, + ACTIONS(9909), 1, + anon_sym_or, + ACTIONS(9919), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, - STATE(6945), 9, + STATE(6959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764831,7 +757049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120325] = 15, + [121985] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764852,15 +757070,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4331), 1, - anon_sym_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(9039), 1, - anon_sym_COMMA, - ACTIONS(9041), 1, - anon_sym_QMARK, - STATE(6946), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9937), 1, + anon_sym_SEMI, + STATE(6964), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6960), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764870,7 +757088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120379] = 15, + [122039] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764891,15 +757109,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - STATE(3026), 1, - sym_accessor_list, - STATE(8100), 1, - sym_arrow_expression_clause, - STATE(6947), 9, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8267), 1, + anon_sym_DOT, + STATE(6961), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764909,7 +757127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120433] = 15, + [122093] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764930,15 +757148,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9439), 1, - anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6948), 9, + ACTIONS(9939), 1, + anon_sym_EQ, + ACTIONS(9608), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6962), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764948,7 +757164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120487] = 15, + [122143] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764969,15 +757185,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9441), 1, - anon_sym_SEMI, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6949), 9, + ACTIONS(9941), 1, + anon_sym_EQ, + ACTIONS(9943), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6963), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764987,7 +757201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120541] = 15, + [122193] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765008,15 +757222,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9405), 1, - anon_sym_unmanaged, - ACTIONS(9407), 1, - anon_sym_managed, - ACTIONS(9443), 1, - anon_sym_LT, - STATE(7950), 1, - sym_calling_convention, - STATE(6950), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9945), 1, + anon_sym_SEMI, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765026,7 +757240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120595] = 13, + [122247] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765047,52 +757261,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9445), 1, - anon_sym_EQ, - ACTIONS(9447), 3, + ACTIONS(9905), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(9907), 1, + anon_sym_and, + ACTIONS(9909), 1, + anon_sym_or, + ACTIONS(9947), 1, anon_sym_RPAREN, - STATE(6951), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [120645] = 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(8745), 1, - anon_sym_where, - ACTIONS(9449), 1, - anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6952), 9, + STATE(6965), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765102,7 +757279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120699] = 15, + [122301] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765123,15 +757300,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9405), 1, - anon_sym_unmanaged, - ACTIONS(9407), 1, - anon_sym_managed, - ACTIONS(9451), 1, - anon_sym_LT, - STATE(8042), 1, - sym_calling_convention, - STATE(6953), 9, + ACTIONS(9949), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765141,7 +757315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120753] = 13, + [122349] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765162,13 +757336,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9453), 1, - anon_sym_EQ, - ACTIONS(9455), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(6954), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9951), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6967), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765178,7 +757354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120803] = 12, + [122403] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765199,12 +757375,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3388), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(6955), 9, + ACTIONS(9953), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6968), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765214,7 +757390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120851] = 15, + [122451] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765235,15 +757411,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - STATE(3023), 1, - sym_accessor_list, - STATE(7864), 1, - sym_arrow_expression_clause, - STATE(6956), 9, + ACTIONS(9955), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6969), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765253,7 +757426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120905] = 15, + [122499] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765274,15 +757447,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9457), 1, - anon_sym_SEMI, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6957), 9, + ACTIONS(9889), 1, + anon_sym_unmanaged, + ACTIONS(9891), 1, + anon_sym_managed, + ACTIONS(9957), 1, + anon_sym_LT, + STATE(7996), 1, + sym_calling_convention, + STATE(6970), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765292,7 +757465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120959] = 12, + [122553] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765313,12 +757486,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9459), 4, + ACTIONS(9959), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ_GT, - STATE(6958), 9, + STATE(6971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765328,7 +757501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121007] = 15, + [122601] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765349,15 +757522,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9905), 1, + anon_sym_COMMA, + ACTIONS(9907), 1, + anon_sym_and, + ACTIONS(9909), 1, + anon_sym_or, + ACTIONS(9961), 1, + anon_sym_RPAREN, + STATE(6972), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [122655] = 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(9243), 1, anon_sym_where, - ACTIONS(9461), 1, + ACTIONS(9963), 1, anon_sym_LBRACE, - STATE(6932), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6959), 9, + STATE(6973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765367,7 +757579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121061] = 15, + [122709] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765388,15 +757600,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9399), 1, - anon_sym_COLON, - ACTIONS(9401), 1, + ACTIONS(9965), 4, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(7584), 1, - sym_base_list, - STATE(7830), 1, - sym_enum_member_declaration_list, - STATE(6960), 9, + anon_sym_where, + STATE(6974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765406,7 +757615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121115] = 15, + [122757] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765427,15 +757636,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9439), 1, - anon_sym_LBRACE, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7042), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6961), 9, + ACTIONS(4331), 1, + anon_sym_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_QMARK, + ACTIONS(9576), 1, + anon_sym_COMMA, + STATE(6975), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765445,7 +757654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121169] = 15, + [122811] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765466,15 +757675,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8001), 1, - anon_sym_DOT, - ACTIONS(8741), 1, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9289), 1, anon_sym_LBRACE, - ACTIONS(9463), 1, - anon_sym_SEMI, - STATE(8064), 1, - sym_declaration_list, - STATE(6962), 9, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6976), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765484,7 +757693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121223] = 12, + [122865] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765505,12 +757714,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9465), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6963), 9, + ACTIONS(9612), 1, + anon_sym_COMMA, + STATE(6956), 1, + aux_sym_base_list_repeat1, + ACTIONS(9400), 2, + anon_sym_LBRACE, + anon_sym_where, + STATE(6977), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765520,7 +757731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121271] = 15, + [122917] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765541,15 +757752,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(7380), 1, - sym_type_parameter_list, - STATE(7382), 1, - sym_parameter_list, - STATE(6964), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9967), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6978), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765559,7 +757770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121325] = 15, + [122971] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765580,15 +757791,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9461), 1, + ACTIONS(9969), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6965), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6979), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765598,7 +757806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121379] = 15, + [123019] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765619,15 +757827,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4331), 1, - anon_sym_GT, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(9039), 1, - anon_sym_COMMA, - STATE(6966), 9, + ACTIONS(9696), 1, + anon_sym_and, + ACTIONS(8039), 3, + anon_sym_COLON, + anon_sym_when, + anon_sym_or, + STATE(6980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765637,7 +757843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121433] = 15, + [123069] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765658,15 +757864,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, + ACTIONS(9971), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(8720), 1, + anon_sym_where, anon_sym_EQ_GT, - STATE(3008), 1, - sym_accessor_list, - STATE(7817), 1, - sym_arrow_expression_clause, - STATE(6967), 9, + STATE(6981), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765676,7 +757879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121487] = 12, + [123117] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765697,12 +757900,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9467), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6968), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9881), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6982), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765712,7 +757918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121535] = 12, + [123171] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765733,12 +757939,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9469), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, + ACTIONS(3966), 1, anon_sym_EQ_GT, - STATE(6969), 9, + ACTIONS(9973), 1, + anon_sym_EQ, + ACTIONS(9975), 1, + anon_sym_COMMA, + ACTIONS(9978), 1, + anon_sym_RPAREN, + STATE(6983), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765748,7 +757957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121583] = 15, + [123225] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765769,15 +757978,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(7018), 1, - sym_parameter_list, - STATE(7466), 1, - sym_type_parameter_list, - STATE(6970), 9, + ACTIONS(9214), 1, + anon_sym_LBRACE, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + STATE(2783), 1, + sym_accessor_list, + STATE(7649), 1, + sym_arrow_expression_clause, + STATE(6984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765787,7 +757996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121637] = 12, + [123279] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765808,12 +758017,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9471), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6971), 9, + ACTIONS(9214), 1, + anon_sym_LBRACE, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + STATE(2780), 1, + sym_accessor_list, + STATE(8110), 1, + sym_arrow_expression_clause, + STATE(6985), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765823,7 +758035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121685] = 12, + [123333] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765844,12 +758056,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4363), 4, + ACTIONS(4337), 4, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_GT, anon_sym_STAR, - STATE(6972), 9, + STATE(6986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765859,7 +758071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121733] = 15, + [123381] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765880,15 +758092,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9405), 1, - anon_sym_unmanaged, - ACTIONS(9407), 1, - anon_sym_managed, - ACTIONS(9473), 1, - anon_sym_LT, - STATE(8054), 1, - sym_calling_convention, - STATE(6973), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9980), 1, + anon_sym_SEMI, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7005), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6987), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765898,7 +758110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121787] = 12, + [123435] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765919,12 +758131,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4353), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6974), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9982), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6988), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765934,7 +758149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121835] = 13, + [123489] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765955,13 +758170,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9049), 1, - anon_sym_and, - ACTIONS(7635), 3, + ACTIONS(3966), 1, anon_sym_EQ_GT, - anon_sym_when, - anon_sym_or, - STATE(6975), 9, + ACTIONS(9984), 1, + anon_sym_EQ, + ACTIONS(9943), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6989), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765971,7 +758187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121885] = 14, + [123541] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765992,14 +758208,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9241), 1, - anon_sym_and, ACTIONS(9243), 1, - anon_sym_or, - ACTIONS(2147), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6976), 9, + anon_sym_where, + ACTIONS(9986), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6990), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766009,7 +758226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121937] = 15, + [123595] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766030,15 +758247,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_COMMA, - ACTIONS(9385), 1, + ACTIONS(7014), 2, anon_sym_and, - ACTIONS(9387), 1, anon_sym_or, - ACTIONS(9475), 1, + ACTIONS(7030), 2, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(6977), 9, + STATE(6991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766048,7 +758263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121991] = 15, + [123645] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766069,15 +758284,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(9077), 1, - anon_sym_EQ, - ACTIONS(9079), 1, - anon_sym_RPAREN, - ACTIONS(9477), 1, - anon_sym_COMMA, - STATE(6978), 9, + ACTIONS(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, + anon_sym_LBRACE, + STATE(7488), 1, + sym_base_list, + STATE(7759), 1, + sym_enum_member_declaration_list, + STATE(6992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766087,7 +758302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122045] = 14, + [123699] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766108,14 +758323,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9241), 1, - anon_sym_and, ACTIONS(9243), 1, - anon_sym_or, - ACTIONS(9481), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6979), 9, + anon_sym_where, + ACTIONS(9986), 1, + anon_sym_LBRACE, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7003), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6993), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766125,7 +758341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122097] = 15, + [123753] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766146,15 +758362,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9405), 1, - anon_sym_unmanaged, - ACTIONS(9407), 1, - anon_sym_managed, - ACTIONS(9483), 1, - anon_sym_LT, - STATE(7700), 1, - sym_calling_convention, - STATE(6980), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9268), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766164,7 +758380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122151] = 13, + [123807] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766185,12 +758401,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9485), 1, + ACTIONS(9905), 1, anon_sym_COMMA, - ACTIONS(9488), 2, - anon_sym_RBRACK, - anon_sym_GT, - STATE(6981), 10, + ACTIONS(9907), 1, + anon_sym_and, + ACTIONS(9909), 1, + anon_sym_or, + ACTIONS(9988), 1, + anon_sym_RPAREN, + STATE(6995), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766200,8 +758419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_type_argument_list_repeat1, - [122201] = 12, + [123861] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766222,12 +758440,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9490), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6982), 9, + ACTIONS(3376), 4, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + STATE(6996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766237,7 +758455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122249] = 12, + [123909] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766258,12 +758476,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9492), 4, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6983), 9, + STATE(7555), 1, + sym_base_list, + STATE(7842), 1, + sym_enum_member_declaration_list, + STATE(6997), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766273,7 +758494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122297] = 15, + [123963] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766294,15 +758515,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9399), 1, + ACTIONS(9696), 1, + anon_sym_and, + ACTIONS(9698), 1, + anon_sym_or, + ACTIONS(8003), 2, anon_sym_COLON, - ACTIONS(9401), 1, - anon_sym_LBRACE, - STATE(7507), 1, - sym_base_list, - STATE(7825), 1, - sym_enum_member_declaration_list, - STATE(6984), 9, + anon_sym_when, + STATE(6998), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766312,7 +758532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122351] = 12, + [124015] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766333,12 +758553,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4337), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6985), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9990), 1, + anon_sym_SEMI, + STATE(6927), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6999), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766348,7 +758571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122399] = 12, + [124069] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766369,12 +758592,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4316), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6986), 9, + ACTIONS(9214), 1, + anon_sym_LBRACE, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + STATE(2821), 1, + sym_accessor_list, + STATE(7826), 1, + sym_arrow_expression_clause, + STATE(7000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766384,7 +758610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122447] = 14, + [124123] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766405,14 +758631,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9297), 1, + ACTIONS(9905), 1, + anon_sym_COMMA, + ACTIONS(9907), 1, anon_sym_and, - ACTIONS(9299), 1, + ACTIONS(9909), 1, anon_sym_or, - ACTIONS(7663), 2, - anon_sym_COLON, - anon_sym_when, - STATE(6987), 9, + ACTIONS(9992), 1, + anon_sym_RPAREN, + STATE(7001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766422,7 +758649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122499] = 15, + [124177] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766443,15 +758670,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, + ACTIONS(9994), 1, + anon_sym_COMMA, + ACTIONS(9355), 3, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - STATE(2933), 1, - sym_accessor_list, - STATE(7745), 1, - sym_arrow_expression_clause, - STATE(6988), 9, + anon_sym_where, + STATE(7002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766461,7 +758686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122553] = 15, + [124227] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766482,15 +758707,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(9494), 1, + ACTIONS(9996), 1, anon_sym_LBRACE, - STATE(6779), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6989), 9, + STATE(7003), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [124281] = 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(9998), 1, + anon_sym_EQ, + ACTIONS(10000), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(7004), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766500,7 +758762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122607] = 15, + [124331] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766521,15 +758783,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(9496), 1, - anon_sym_LBRACE, - STATE(6779), 1, + ACTIONS(10002), 1, + anon_sym_SEMI, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6990), 9, + STATE(7005), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766539,7 +758801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122661] = 15, + [124385] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766560,15 +758822,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9405), 1, - anon_sym_unmanaged, - ACTIONS(9407), 1, - anon_sym_managed, - ACTIONS(9498), 1, - anon_sym_LT, - STATE(8012), 1, - sym_calling_convention, - STATE(6991), 9, + ACTIONS(4345), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(7006), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766578,7 +758837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122715] = 15, + [124433] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766599,15 +758858,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8786), 1, + ACTIONS(4349), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(7007), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [124481] = 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(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6992), 9, + STATE(7633), 1, + sym_base_list, + STATE(7640), 1, + sym_enum_member_declaration_list, + STATE(7008), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [124535] = 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(9214), 1, + anon_sym_LBRACE, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + STATE(2875), 1, + sym_accessor_list, + STATE(7764), 1, + sym_arrow_expression_clause, + STATE(7009), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766617,7 +758951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122769] = 15, + [124589] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766638,15 +758972,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(9500), 1, + ACTIONS(10004), 1, anon_sym_LBRACE, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7032), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6993), 9, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7010), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766656,7 +758990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122823] = 15, + [124643] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766677,15 +759011,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9500), 1, + ACTIONS(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6994), 9, + STATE(7435), 1, + sym_base_list, + STATE(7986), 1, + sym_enum_member_declaration_list, + STATE(7011), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766695,7 +759029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122877] = 15, + [124697] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766716,15 +759050,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9381), 1, + ACTIONS(4316), 4, + anon_sym_LBRACK, anon_sym_COMMA, - ACTIONS(9385), 1, + anon_sym_GT, + anon_sym_STAR, + STATE(7012), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [124745] = 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(9905), 1, + anon_sym_COMMA, + ACTIONS(9907), 1, anon_sym_and, - ACTIONS(9387), 1, + ACTIONS(9909), 1, anon_sym_or, - ACTIONS(9502), 1, + ACTIONS(10006), 1, anon_sym_RPAREN, - STATE(6995), 9, + STATE(7013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766734,7 +759104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122931] = 15, + [124799] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766755,15 +759125,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9504), 1, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(10008), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(7014), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [124849] = 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(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6996), 9, + STATE(7388), 1, + sym_base_list, + STATE(8099), 1, + sym_enum_member_declaration_list, + STATE(7015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766773,7 +759180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122985] = 15, + [124903] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766794,15 +759201,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(9506), 1, - anon_sym_SEMI, - STATE(6957), 1, + ACTIONS(10010), 1, + anon_sym_LBRACE, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6997), 9, + STATE(7016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766812,7 +759219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123039] = 12, + [124957] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766833,12 +759240,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3384), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(6998), 9, + ACTIONS(9684), 1, + anon_sym_and, + ACTIONS(9686), 1, + anon_sym_or, + ACTIONS(9905), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766848,7 +759257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123087] = 13, + [125009] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766869,13 +759278,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9508), 1, + ACTIONS(10012), 1, anon_sym_EQ, - ACTIONS(9079), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6999), 9, + ACTIONS(10014), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(7018), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766885,7 +759294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123137] = 15, + [125059] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766906,15 +759315,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_COMMA, - ACTIONS(9385), 1, - anon_sym_and, - ACTIONS(9387), 1, - anon_sym_or, - ACTIONS(9510), 1, - anon_sym_RPAREN, - STATE(7000), 9, + ACTIONS(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, + anon_sym_LBRACE, + STATE(7535), 1, + sym_base_list, + STATE(7956), 1, + sym_enum_member_declaration_list, + STATE(7019), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766924,7 +759333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123191] = 12, + [125113] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766945,12 +759354,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9512), 4, - anon_sym_SEMI, + ACTIONS(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(7001), 9, + STATE(7475), 1, + sym_base_list, + STATE(8124), 1, + sym_enum_member_declaration_list, + STATE(7020), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [125167] = 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(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + STATE(6947), 1, + sym_parameter_list, + STATE(7428), 1, + sym_type_parameter_list, + STATE(7021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766960,7 +759411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123239] = 15, + [125221] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766981,15 +759432,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8770), 1, + ACTIONS(10016), 1, anon_sym_LBRACE, - STATE(6779), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7002), 9, + STATE(7022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766999,7 +759450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123293] = 12, + [125275] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767020,12 +759471,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9514), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(7003), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9287), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767035,7 +759489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123341] = 15, + [125329] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767056,15 +759510,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9399), 1, - anon_sym_COLON, - ACTIONS(9401), 1, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(7473), 1, - sym_base_list, - STATE(8119), 1, - sym_enum_member_declaration_list, - STATE(7004), 9, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + STATE(2724), 1, + sym_accessor_list, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(7024), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767074,7 +759528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123395] = 15, + [125383] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767095,15 +759549,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9399), 1, - anon_sym_COLON, - ACTIONS(9401), 1, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(10018), 1, anon_sym_LBRACE, - STATE(7446), 1, - sym_base_list, - STATE(7994), 1, - sym_enum_member_declaration_list, - STATE(7005), 9, + STATE(6967), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7025), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767113,7 +759567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123449] = 12, + [125437] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767134,12 +759588,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9516), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(7006), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(10018), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767149,7 +759606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123497] = 13, + [125491] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767170,13 +759627,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9518), 1, - anon_sym_COMMA, - ACTIONS(8876), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(9243), 1, anon_sym_where, - STATE(7007), 9, + ACTIONS(10020), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767186,7 +759645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123547] = 13, + [125545] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767207,13 +759666,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9297), 1, - anon_sym_and, - ACTIONS(7635), 3, - anon_sym_COLON, - anon_sym_when, - anon_sym_or, - STATE(7008), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + STATE(7403), 1, + sym_type_parameter_list, + STATE(7469), 1, + sym_parameter_list, + STATE(7028), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767223,7 +759684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123597] = 15, + [125599] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767244,15 +759705,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9399), 1, - anon_sym_COLON, - ACTIONS(9401), 1, - anon_sym_LBRACE, - STATE(7452), 1, - sym_base_list, - STATE(7977), 1, - sym_enum_member_declaration_list, - STATE(7009), 9, + ACTIONS(9889), 1, + anon_sym_unmanaged, + ACTIONS(9891), 1, + anon_sym_managed, + ACTIONS(10022), 1, + anon_sym_LT, + STATE(7961), 1, + sym_calling_convention, + STATE(7029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767262,7 +759723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123651] = 12, + [125653] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767283,51 +759744,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9520), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, + ACTIONS(3966), 1, anon_sym_EQ_GT, - STATE(7010), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [123699] = 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(8745), 1, - anon_sym_where, - ACTIONS(9522), 1, - anon_sym_SEMI, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7011), 9, + ACTIONS(9558), 1, + anon_sym_EQ, + ACTIONS(9608), 1, + anon_sym_RPAREN, + ACTIONS(10024), 1, + anon_sym_COMMA, + STATE(7030), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767337,7 +759762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123753] = 15, + [125707] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767358,15 +759783,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(7485), 1, - sym_parameter_list, - STATE(7498), 1, - sym_type_parameter_list, - STATE(7012), 9, + ACTIONS(10028), 1, + anon_sym_EQ, + ACTIONS(10030), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(7031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767376,7 +759799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123807] = 15, + [125757] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767397,15 +759820,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9524), 1, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7013), 9, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + STATE(2896), 1, + sym_accessor_list, + STATE(7804), 1, + sym_arrow_expression_clause, + STATE(7032), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767415,7 +759838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123861] = 12, + [125811] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767436,12 +759859,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9526), 4, + ACTIONS(10032), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ_GT, - STATE(7014), 9, + STATE(7033), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767451,7 +759874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123909] = 14, + [125859] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767472,14 +759895,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9055), 1, - anon_sym_COMMA, - STATE(6942), 1, - aux_sym_base_list_repeat1, - ACTIONS(8911), 2, - anon_sym_LBRACE, - anon_sym_where, - STATE(7015), 9, + ACTIONS(9889), 1, + anon_sym_unmanaged, + ACTIONS(9891), 1, + anon_sym_managed, + ACTIONS(10034), 1, + anon_sym_LT, + STATE(8137), 1, + sym_calling_convention, + STATE(7034), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767489,7 +759913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123961] = 12, + [125913] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767510,12 +759934,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9528), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, + ACTIONS(9564), 1, + anon_sym_and, + ACTIONS(8039), 3, anon_sym_EQ_GT, - STATE(7016), 9, + anon_sym_when, + anon_sym_or, + STATE(7035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767525,7 +759950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124009] = 15, + [125963] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767546,15 +759971,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(9524), 1, + ACTIONS(9291), 1, anon_sym_LBRACE, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7033), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7017), 9, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767564,7 +759989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124063] = 12, + [126017] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767585,51 +760010,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9530), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(9243), 1, anon_sym_where, - anon_sym_EQ_GT, - STATE(7018), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [124111] = 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(9381), 1, - anon_sym_COMMA, - ACTIONS(9385), 1, - anon_sym_and, - ACTIONS(9387), 1, - anon_sym_or, - ACTIONS(9532), 1, - anon_sym_RPAREN, - STATE(7019), 9, + ACTIONS(10036), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767639,7 +760028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124165] = 14, + [126071] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767660,14 +760049,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9049), 1, - anon_sym_and, - ACTIONS(9051), 1, - anon_sym_or, - ACTIONS(7663), 2, - anon_sym_EQ_GT, - anon_sym_when, - STATE(7020), 9, + ACTIONS(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, + anon_sym_LBRACE, + STATE(7484), 1, + sym_base_list, + STATE(7901), 1, + sym_enum_member_declaration_list, + STATE(7038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767677,7 +760067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124217] = 15, + [126125] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767698,15 +760088,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9399), 1, - anon_sym_COLON, - ACTIONS(9401), 1, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(10038), 1, anon_sym_LBRACE, - STATE(7461), 1, - sym_base_list, - STATE(7910), 1, - sym_enum_member_declaration_list, - STATE(7021), 9, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767716,7 +760106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124271] = 15, + [126179] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767737,15 +760127,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(7442), 1, - sym_type_parameter_list, - STATE(7444), 1, - sym_parameter_list, - STATE(7022), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(10038), 1, + anon_sym_LBRACE, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6978), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(7040), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767755,7 +760145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124325] = 15, + [126233] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767776,15 +760166,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9534), 1, - anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7023), 9, + ACTIONS(10040), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(7041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767794,7 +760181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124379] = 13, + [126281] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767815,13 +760202,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7032), 2, + ACTIONS(9907), 1, anon_sym_and, + ACTIONS(9909), 1, anon_sym_or, - ACTIONS(7052), 2, + ACTIONS(8003), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(7024), 9, + STATE(7042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767831,7 +760219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124429] = 15, + [126333] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767852,15 +760240,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(7757), 1, - anon_sym_DOT, - STATE(7025), 9, + ACTIONS(10042), 1, + anon_sym_EQ, + ACTIONS(10044), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(7043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767870,7 +760256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124483] = 15, + [126383] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767891,15 +760277,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9534), 1, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6996), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7026), 9, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + STATE(2871), 1, + sym_accessor_list, + STATE(7736), 1, + sym_arrow_expression_clause, + STATE(7044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767909,7 +760295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124537] = 15, + [126437] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767930,15 +760316,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9536), 1, - anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7027), 9, + ACTIONS(10046), 1, + anon_sym_LPAREN, + ACTIONS(10050), 1, + sym_integer_literal, + ACTIONS(10048), 2, + anon_sym_default, + anon_sym_hidden, + STATE(7045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767948,7 +760333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124591] = 12, + [126489] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767969,12 +760354,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9538), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(7028), 9, + ACTIONS(2923), 1, + anon_sym_COMMA, + ACTIONS(10052), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767984,7 +760370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124639] = 12, + [126540] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768005,12 +760391,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4312), 4, - anon_sym_LBRACK, + ACTIONS(10054), 1, anon_sym_COMMA, + ACTIONS(10056), 1, anon_sym_GT, - anon_sym_STAR, - STATE(7029), 9, + STATE(7234), 1, + aux_sym_type_parameter_list_repeat1, + STATE(7047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768020,7 +760407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124687] = 13, + [126591] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768041,13 +760428,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9385), 1, - anon_sym_and, - ACTIONS(7635), 3, + ACTIONS(10058), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_or, - STATE(7030), 9, + anon_sym_RBRACK, + anon_sym_GT, + STATE(7048), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768057,7 +760442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124737] = 14, + [126638] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768078,14 +760463,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9385), 1, - anon_sym_and, - ACTIONS(9387), 1, - anon_sym_or, - ACTIONS(9481), 2, + ACTIONS(10060), 1, anon_sym_COMMA, + ACTIONS(10062), 1, anon_sym_RPAREN, - STATE(7031), 9, + STATE(7274), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768095,7 +760479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124789] = 15, + [126689] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768116,15 +760500,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9540), 1, + ACTIONS(9482), 1, anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7032), 9, + ACTIONS(10064), 1, + anon_sym_COMMA, + STATE(7050), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768134,7 +760514,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124843] = 15, + aux_sym_base_list_repeat1, + [126738] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768155,15 +760536,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9542), 1, - anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7033), 9, + ACTIONS(10067), 3, + anon_sym_disable, + anon_sym_restore, + anon_sym_enable, + STATE(7051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768173,7 +760550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124897] = 15, + [126785] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768194,15 +760571,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - STATE(2979), 1, - sym_accessor_list, - STATE(7780), 1, - sym_arrow_expression_clause, - STATE(7034), 9, + ACTIONS(10069), 1, + anon_sym_COMMA, + ACTIONS(10071), 1, + anon_sym_RBRACK, + STATE(7258), 1, + aux_sym_attribute_list_repeat1, + STATE(7052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768212,7 +760587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124951] = 15, + [126836] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768233,15 +760608,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9544), 1, - anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7035), 9, + ACTIONS(10073), 1, + anon_sym_COMMA, + ACTIONS(10075), 1, + anon_sym_RBRACK, + STATE(7064), 1, + aux_sym_attribute_list_repeat1, + STATE(7053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768251,7 +760624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125005] = 15, + [126887] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768272,15 +760645,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9546), 1, - anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7036), 9, + ACTIONS(10077), 1, + anon_sym_COMMA, + ACTIONS(10079), 1, + anon_sym_RBRACK, + STATE(7263), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768290,7 +760661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125059] = 14, + [126938] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768311,92 +760682,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9385), 1, - anon_sym_and, - ACTIONS(9387), 1, - anon_sym_or, - ACTIONS(9381), 2, + ACTIONS(10081), 1, anon_sym_COMMA, + ACTIONS(10083), 1, anon_sym_RPAREN, - STATE(7037), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [125111] = 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(8745), 1, - anon_sym_where, - ACTIONS(9546), 1, - anon_sym_LBRACE, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(6990), 1, - aux_sym__class_declaration_initializer_repeat4, - 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, - [125165] = 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(9399), 1, - anon_sym_COLON, - ACTIONS(9401), 1, - anon_sym_LBRACE, - STATE(7431), 1, - sym_base_list, - STATE(8032), 1, - sym_enum_member_declaration_list, - STATE(7039), 9, + STATE(7321), 1, + aux_sym_tuple_expression_repeat1, + STATE(7055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768406,7 +760698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125219] = 15, + [126989] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768427,15 +760719,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9399), 1, - anon_sym_COLON, - ACTIONS(9401), 1, - anon_sym_LBRACE, - STATE(7588), 1, - sym_base_list, - STATE(7790), 1, - sym_enum_member_declaration_list, - STATE(7040), 9, + ACTIONS(10085), 1, + anon_sym_COMMA, + ACTIONS(10087), 1, + anon_sym_RPAREN, + STATE(7333), 1, + aux_sym_tuple_type_repeat1, + STATE(7056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768445,7 +760735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125273] = 15, + [127040] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768466,15 +760756,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9405), 1, - anon_sym_unmanaged, - ACTIONS(9407), 1, - anon_sym_managed, - ACTIONS(9548), 1, - anon_sym_LT, - STATE(7985), 1, - sym_calling_convention, - STATE(7041), 9, + ACTIONS(3131), 1, + anon_sym_RBRACE, + ACTIONS(10089), 1, + anon_sym_COMMA, + STATE(7355), 1, + aux_sym_initializer_expression_repeat1, + STATE(7057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768484,7 +760772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125327] = 15, + [127091] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768505,15 +760793,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9550), 1, + ACTIONS(9487), 1, anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7042), 9, + ACTIONS(9704), 1, + anon_sym_COMMA, + STATE(7050), 1, + aux_sym_base_list_repeat1, + STATE(7058), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768523,7 +760809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125381] = 14, + [127142] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768544,14 +760830,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9385), 1, - anon_sym_and, - ACTIONS(9387), 1, - anon_sym_or, - ACTIONS(7663), 2, + ACTIONS(10091), 1, anon_sym_COMMA, + ACTIONS(10093), 1, anon_sym_RPAREN, - STATE(7043), 9, + STATE(7065), 1, + aux_sym_argument_list_repeat1, + STATE(7059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768561,7 +760846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125433] = 15, + [127193] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768582,15 +760867,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8796), 1, - anon_sym_LBRACE, - STATE(6779), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7044), 9, + ACTIONS(10095), 1, + anon_sym_COMMA, + ACTIONS(10097), 1, + anon_sym_RBRACE, + STATE(7066), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768600,7 +760883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125487] = 14, + [127244] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768621,14 +760904,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9055), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - STATE(6942), 1, - aux_sym_base_list_repeat1, - ACTIONS(8993), 2, - anon_sym_LBRACE, - anon_sym_where, - STATE(7045), 9, + ACTIONS(6662), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7061), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768638,7 +760920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125539] = 12, + [127295] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768659,12 +760941,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3380), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(7046), 9, + ACTIONS(10099), 1, + anon_sym_COMMA, + ACTIONS(10101), 1, + anon_sym_GT, + STATE(7081), 1, + aux_sym_type_argument_list_repeat2, + STATE(7062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768674,7 +760957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125587] = 14, + [127346] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768695,14 +760978,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9055), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - STATE(7015), 1, - aux_sym_base_list_repeat1, - ACTIONS(8991), 2, - anon_sym_LBRACE, - anon_sym_where, - STATE(7047), 9, + ACTIONS(10103), 1, + anon_sym_GT, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768712,7 +760994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125639] = 15, + [127397] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768733,15 +761015,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(9552), 1, - anon_sym_SEMI, - STATE(6958), 1, - sym_type_parameter_constraints_clause, - STATE(7011), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7048), 9, + ACTIONS(10105), 1, + anon_sym_COMMA, + ACTIONS(10107), 1, + anon_sym_RBRACK, + STATE(7258), 1, + aux_sym_attribute_list_repeat1, + STATE(7064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768751,7 +761031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125693] = 15, + [127448] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768772,15 +761052,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - STATE(2972), 1, - sym_accessor_list, - STATE(7651), 1, - sym_arrow_expression_clause, - STATE(7049), 9, + ACTIONS(10091), 1, + anon_sym_COMMA, + ACTIONS(10109), 1, + anon_sym_RPAREN, + STATE(7221), 1, + aux_sym_argument_list_repeat1, + STATE(7065), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768790,7 +761068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125747] = 14, + [127499] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768811,14 +761089,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9241), 1, - anon_sym_and, - ACTIONS(9243), 1, - anon_sym_or, - ACTIONS(9381), 2, + ACTIONS(10111), 1, anon_sym_COMMA, + ACTIONS(10113), 1, anon_sym_RBRACE, - STATE(7050), 9, + STATE(7213), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768828,7 +761105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125799] = 15, + [127550] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768849,15 +761126,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - STATE(2962), 1, - sym_accessor_list, - STATE(7763), 1, - sym_arrow_expression_clause, - STATE(7051), 9, + ACTIONS(10115), 1, + anon_sym_COMMA, + ACTIONS(10117), 1, + anon_sym_RBRACE, + STATE(7119), 1, + aux_sym__with_body_repeat1, + STATE(7067), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768867,7 +761142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125853] = 14, + [127601] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768888,13 +761163,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10119), 1, anon_sym_COMMA, - ACTIONS(9556), 1, - anon_sym_GT, - STATE(7126), 1, - aux_sym_type_argument_list_repeat2, - STATE(7052), 9, + ACTIONS(10121), 1, + anon_sym_RBRACE, + STATE(7318), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768904,7 +761179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125904] = 14, + [127652] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768925,50 +761200,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9558), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(9560), 1, + ACTIONS(10123), 1, anon_sym_RBRACK, - STATE(7243), 1, - aux_sym_list_pattern_repeat1, - STATE(7053), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [125955] = 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(7200), 1, - anon_sym_LBRACE, - ACTIONS(9562), 1, - anon_sym_LPAREN, - STATE(7613), 1, - sym_block, - STATE(7054), 9, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7069), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768978,7 +761216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126006] = 14, + [127703] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768999,13 +761237,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(9564), 1, - anon_sym_SEMI, - STATE(2965), 1, - sym_accessor_list, - STATE(7055), 9, + ACTIONS(10060), 1, + anon_sym_COMMA, + ACTIONS(10125), 1, + anon_sym_RPAREN, + STATE(7049), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7070), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769015,7 +761253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126057] = 12, + [127754] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769036,11 +761274,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9566), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7056), 9, + ACTIONS(2371), 1, + anon_sym_RBRACE, + ACTIONS(10127), 1, + anon_sym_COMMA, + STATE(7168), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769050,7 +761290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126104] = 14, + [127805] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769071,13 +761311,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, + ACTIONS(10129), 1, anon_sym_COMMA, - ACTIONS(9570), 1, - anon_sym_RBRACE, - STATE(7196), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7057), 9, + ACTIONS(10131), 1, + anon_sym_RPAREN, + STATE(7115), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7072), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769087,7 +761327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126155] = 14, + [127856] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769108,13 +761348,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9572), 1, + ACTIONS(10133), 1, anon_sym_COMMA, - ACTIONS(9574), 1, + ACTIONS(10135), 1, anon_sym_RBRACK, - STATE(7238), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7058), 9, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769124,7 +761364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126206] = 14, + [127907] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769145,13 +761385,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10137), 1, anon_sym_COMMA, - ACTIONS(9576), 1, - anon_sym_GT, - STATE(7126), 1, - aux_sym_type_argument_list_repeat2, - STATE(7059), 9, + ACTIONS(10139), 1, + anon_sym_RBRACK, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7074), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769161,7 +761401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126257] = 14, + [127958] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769182,13 +761422,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9578), 1, + ACTIONS(10141), 1, anon_sym_COMMA, - ACTIONS(9580), 1, + ACTIONS(10143), 1, anon_sym_RBRACE, - STATE(7161), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7060), 9, + STATE(7082), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7075), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769198,7 +761438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126308] = 14, + [128009] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769219,13 +761459,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(2391), 1, + anon_sym_RBRACE, + ACTIONS(10145), 1, anon_sym_COMMA, - ACTIONS(9582), 1, - anon_sym_RBRACK, - STATE(7175), 1, - aux_sym_type_argument_list_repeat1, - STATE(7061), 9, + STATE(7100), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769235,7 +761475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126359] = 14, + [128060] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769256,13 +761496,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10147), 1, anon_sym_COMMA, - ACTIONS(9584), 1, - anon_sym_GT, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7062), 9, + ACTIONS(10149), 1, + anon_sym_RBRACK, + STATE(7176), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(7077), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769272,7 +761512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126410] = 14, + [128111] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769293,13 +761533,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3163), 1, - aux_sym_preproc_if_token3, - ACTIONS(3217), 1, - anon_sym_LBRACK, - STATE(8116), 1, - sym_attribute_list, - STATE(7063), 9, + ACTIONS(10115), 1, + anon_sym_COMMA, + ACTIONS(10151), 1, + anon_sym_RBRACE, + STATE(7087), 1, + aux_sym__with_body_repeat1, + STATE(7078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769309,7 +761549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126461] = 14, + [128162] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769330,13 +761570,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(3141), 1, + anon_sym_RBRACE, + ACTIONS(10153), 1, anon_sym_COMMA, - ACTIONS(9586), 1, - anon_sym_GT, - STATE(7059), 1, - aux_sym_type_argument_list_repeat2, - STATE(7064), 9, + STATE(7355), 1, + aux_sym_initializer_expression_repeat1, + STATE(7079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769346,7 +761586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126512] = 14, + [128213] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769367,13 +761607,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9588), 1, + ACTIONS(10147), 1, anon_sym_COMMA, - ACTIONS(9590), 1, + ACTIONS(10155), 1, anon_sym_RBRACK, - STATE(7157), 1, - aux_sym_attribute_list_repeat1, - STATE(7065), 9, + STATE(7171), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(7080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769383,7 +761623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126563] = 14, + [128264] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769404,50 +761644,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9592), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(9594), 1, - anon_sym_RBRACE, - STATE(7260), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7066), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [126614] = 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(8741), 1, - anon_sym_LBRACE, - ACTIONS(9596), 1, - anon_sym_SEMI, - STATE(7775), 1, - sym_declaration_list, - STATE(7067), 9, + ACTIONS(10157), 1, + anon_sym_GT, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7081), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769457,7 +761660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126665] = 14, + [128315] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769478,50 +761681,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9598), 1, - anon_sym_COMMA, - ACTIONS(9600), 1, + ACTIONS(2427), 1, anon_sym_RBRACE, - STATE(7364), 1, - aux_sym_enum_member_declaration_list_repeat1, - STATE(7068), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [126716] = 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(9602), 1, + ACTIONS(10159), 1, anon_sym_COMMA, - ACTIONS(9604), 1, - anon_sym_RPAREN, - STATE(7191), 1, - aux_sym_argument_list_repeat1, - STATE(7069), 9, + STATE(7100), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769531,7 +761697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126767] = 14, + [128366] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769552,13 +761718,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9079), 1, - anon_sym_RPAREN, - ACTIONS(9508), 1, - anon_sym_EQ, - ACTIONS(9606), 1, + ACTIONS(10161), 1, anon_sym_COMMA, - STATE(7070), 9, + ACTIONS(10163), 1, + anon_sym_RBRACK, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7083), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769568,7 +761734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126818] = 14, + [128417] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769589,13 +761755,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9609), 1, + ACTIONS(9400), 1, + anon_sym_LBRACE, + ACTIONS(9704), 1, anon_sym_COMMA, - ACTIONS(9611), 1, - anon_sym_RBRACE, - STATE(7089), 1, - aux_sym__with_body_repeat1, - STATE(7071), 9, + STATE(7058), 1, + aux_sym_base_list_repeat1, + STATE(7084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769605,7 +761771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126869] = 14, + [128468] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769626,13 +761792,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10165), 1, anon_sym_COMMA, - ACTIONS(6057), 1, + ACTIONS(10167), 1, anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7072), 9, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769642,7 +761808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126920] = 13, + [128519] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769663,49 +761829,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9613), 1, - anon_sym_SEMI, - ACTIONS(9615), 1, - anon_sym_COMMA, - STATE(7073), 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__for_statement_conditions_repeat1, - [126969] = 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(9618), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - ACTIONS(9620), 1, + ACTIONS(10169), 1, anon_sym_RPAREN, - STATE(7293), 1, - aux_sym_parameter_list_repeat1, - STATE(7074), 9, + STATE(7088), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769715,7 +761845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127020] = 14, + [128570] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769736,13 +761866,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9622), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - ACTIONS(9624), 1, - anon_sym_RBRACK, - STATE(7190), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(7075), 9, + ACTIONS(10171), 1, + anon_sym_RBRACE, + STATE(7119), 1, + aux_sym__with_body_repeat1, + STATE(7087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769752,7 +761882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127071] = 12, + [128621] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769773,48 +761903,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9626), 3, + ACTIONS(10060), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(10173), 1, anon_sym_RPAREN, - STATE(7076), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [127118] = 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(5979), 1, - anon_sym_COMMA, - ACTIONS(9628), 1, - anon_sym_GT, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7077), 9, + STATE(7274), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769824,7 +761919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127169] = 12, + [128672] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769845,11 +761940,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9630), 3, - anon_sym_LPAREN, + ACTIONS(9214), 1, anon_sym_LBRACE, - anon_sym_when, - STATE(7078), 9, + ACTIONS(10175), 1, + anon_sym_SEMI, + STATE(2791), 1, + sym_accessor_list, + STATE(7089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769859,7 +761956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127216] = 14, + [128723] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769880,13 +761977,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9632), 1, - anon_sym_COMMA, - ACTIONS(9634), 1, - anon_sym_RPAREN, - STATE(7080), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7079), 9, + ACTIONS(10177), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7090), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769896,7 +761991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127267] = 13, + [128770] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769917,11 +762012,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9636), 1, - anon_sym_COMMA, - ACTIONS(9639), 1, - anon_sym_RPAREN, - STATE(7080), 10, + ACTIONS(6227), 1, + anon_sym_LBRACE, + ACTIONS(10179), 1, + anon_sym_LPAREN, + STATE(2049), 1, + sym_block, + STATE(7091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769931,8 +762028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_parenthesized_variable_designation_repeat1, - [127316] = 12, + [128821] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769953,11 +762049,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9641), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - STATE(7081), 9, + ACTIONS(10181), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_when, + STATE(7092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769967,7 +762063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127363] = 13, + [128868] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769988,49 +762084,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9643), 1, + ACTIONS(10183), 1, anon_sym_COMMA, - ACTIONS(9646), 1, + ACTIONS(10185), 1, anon_sym_RBRACK, - STATE(7082), 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, + STATE(7054), 1, aux_sym_bracketed_argument_list_repeat1, - [127412] = 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(9618), 1, - anon_sym_COMMA, - ACTIONS(9648), 1, - anon_sym_RPAREN, - STATE(7163), 1, - aux_sym_parameter_list_repeat1, - STATE(7083), 9, + STATE(7093), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770040,7 +762100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127463] = 13, + [128919] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770061,47 +762121,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8894), 1, - anon_sym_LBRACE, - ACTIONS(9650), 1, + ACTIONS(10187), 1, anon_sym_COMMA, - STATE(7084), 10, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - aux_sym_base_list_repeat1, - [127512] = 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(6469), 1, + ACTIONS(10189), 1, anon_sym_RBRACK, - ACTIONS(9653), 1, - anon_sym_COMMA, - STATE(7085), 10, + STATE(7052), 1, + aux_sym_attribute_list_repeat1, + STATE(7094), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770111,8 +762137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_array_rank_specifier_repeat1, - [127561] = 14, + [128970] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770133,13 +762158,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10191), 1, anon_sym_COMMA, - ACTIONS(9656), 1, + ACTIONS(10193), 1, anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7086), 9, + STATE(7138), 1, + aux_sym_calling_convention_repeat1, + STATE(7095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770149,7 +762174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127612] = 14, + [129021] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770170,13 +762195,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8911), 1, - anon_sym_LBRACE, - ACTIONS(9245), 1, + ACTIONS(10195), 1, anon_sym_COMMA, - STATE(7084), 1, - aux_sym_base_list_repeat1, - STATE(7087), 9, + ACTIONS(10198), 1, + anon_sym_RBRACE, + STATE(7096), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770186,7 +762209,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127663] = 13, + aux_sym_enum_member_declaration_list_repeat1, + [129070] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770207,12 +762231,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9658), 1, - anon_sym_EQ, - ACTIONS(9455), 2, + ACTIONS(6739), 1, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7088), 9, + ACTIONS(10200), 1, + anon_sym_RPAREN, + STATE(7103), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7097), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770222,7 +762247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127712] = 14, + [129121] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770243,13 +762268,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9609), 1, + ACTIONS(10202), 1, anon_sym_COMMA, - ACTIONS(9660), 1, - anon_sym_RBRACE, - STATE(7233), 1, - aux_sym__with_body_repeat1, - STATE(7089), 9, + ACTIONS(10205), 1, + anon_sym_GT, + STATE(7098), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770259,7 +762282,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127763] = 14, + aux_sym_type_parameter_list_repeat1, + [129170] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770280,13 +762304,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, - anon_sym_COMMA, - ACTIONS(9664), 1, - anon_sym_RPAREN, - STATE(7244), 1, - aux_sym_tuple_type_repeat1, - STATE(7090), 9, + ACTIONS(10207), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7099), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770296,7 +762318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127814] = 14, + [129217] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770317,13 +762339,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10209), 1, anon_sym_COMMA, - ACTIONS(9666), 1, - anon_sym_GT, - STATE(7126), 1, - aux_sym_type_argument_list_repeat2, - STATE(7091), 9, + ACTIONS(10212), 1, + anon_sym_RBRACE, + STATE(7100), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770333,7 +762353,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127865] = 14, + aux_sym__switch_expression_body_repeat1, + [129266] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770354,13 +762375,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10214), 1, anon_sym_COMMA, - ACTIONS(6299), 1, - anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7092), 9, + ACTIONS(10217), 1, + anon_sym_RPAREN, + STATE(7101), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770370,7 +762389,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127916] = 14, + aux_sym_attribute_argument_list_repeat1, + [129315] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770391,13 +762411,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10219), 1, anon_sym_COMMA, - ACTIONS(9668), 1, - anon_sym_GT, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7093), 9, + ACTIONS(10221), 1, + anon_sym_RPAREN, + STATE(7283), 1, + aux_sym_tuple_pattern_repeat1, + STATE(7102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770407,7 +762427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127967] = 14, + [129366] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770428,13 +762448,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10223), 1, anon_sym_COMMA, - ACTIONS(9670), 1, - anon_sym_GT, - STATE(7091), 1, - aux_sym_type_argument_list_repeat2, - STATE(7094), 9, + ACTIONS(10226), 1, + anon_sym_RPAREN, + STATE(7103), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770444,7 +762462,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128018] = 14, + aux_sym__for_statement_conditions_repeat1, + [129415] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770465,13 +762484,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9609), 1, + ACTIONS(10228), 1, anon_sym_COMMA, - ACTIONS(9672), 1, - anon_sym_RBRACE, - STATE(7233), 1, - aux_sym__with_body_repeat1, - STATE(7095), 9, + ACTIONS(10231), 1, + anon_sym_RBRACK, + STATE(7104), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770481,7 +762498,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128069] = 14, + aux_sym_global_attribute_repeat1, + [129464] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770502,13 +762520,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9632), 1, + ACTIONS(10235), 1, + anon_sym_EQ, + ACTIONS(10233), 2, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(9674), 1, - anon_sym_RPAREN, - STATE(7079), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7096), 9, + STATE(7105), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770518,7 +762535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128120] = 14, + [129513] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770539,13 +762556,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2471), 1, - anon_sym_RBRACE, - ACTIONS(9676), 1, + ACTIONS(10237), 1, + anon_sym_SEMI, + ACTIONS(10239), 1, anon_sym_COMMA, - STATE(7341), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7097), 9, + STATE(7279), 1, + aux_sym_variable_declaration_repeat1, + STATE(7106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770555,7 +762572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128171] = 14, + [129564] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770576,13 +762593,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9678), 1, + ACTIONS(10241), 1, anon_sym_COMMA, - ACTIONS(9680), 1, + ACTIONS(10244), 1, anon_sym_RPAREN, - STATE(7240), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7098), 9, + STATE(7107), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770592,44 +762607,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128222] = 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(3099), 1, - anon_sym_RBRACE, - ACTIONS(9682), 1, - anon_sym_COMMA, - STATE(7304), 1, - aux_sym_initializer_expression_repeat1, - STATE(7099), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [128273] = 14, + aux_sym_using_variable_declaration_repeat1, + [129613] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770650,13 +762629,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9684), 1, + ACTIONS(10246), 1, + anon_sym_EQ, + ACTIONS(9978), 2, anon_sym_COMMA, - ACTIONS(9686), 1, - anon_sym_RBRACK, - STATE(7243), 1, - aux_sym_list_pattern_repeat1, - STATE(7100), 9, + anon_sym_RPAREN, + STATE(7108), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770666,7 +762644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128324] = 14, + [129662] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770687,50 +762665,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(9688), 1, + ACTIONS(10250), 1, + anon_sym_EQ, + ACTIONS(10248), 2, anon_sym_SEMI, - STATE(2984), 1, - sym_accessor_list, - STATE(7101), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [128375] = 14, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(9690), 1, anon_sym_COMMA, - ACTIONS(9692), 1, - aux_sym_preproc_if_token2, - STATE(7264), 1, - aux_sym_preproc_pragma_repeat1, - STATE(7102), 9, + STATE(7109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770740,7 +762680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128426] = 14, + [129711] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770761,13 +762701,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9694), 1, + ACTIONS(10252), 1, anon_sym_COMMA, - ACTIONS(9696), 1, + ACTIONS(10255), 1, anon_sym_RBRACK, - STATE(7243), 1, - aux_sym_list_pattern_repeat1, - STATE(7103), 9, + STATE(7110), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770777,7 +762715,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128477] = 14, + aux_sym_list_pattern_repeat1, + [129760] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770798,13 +762737,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2443), 1, - anon_sym_RBRACE, - ACTIONS(9698), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - STATE(7246), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7104), 9, + ACTIONS(7034), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7111), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770814,7 +762753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128528] = 12, + [129811] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770835,11 +762774,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9700), 3, - anon_sym_SEMI, + ACTIONS(9388), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7105), 9, + ACTIONS(9704), 1, + anon_sym_COMMA, + STATE(7050), 1, + aux_sym_base_list_repeat1, + STATE(7112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770849,7 +762790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128575] = 13, + [129862] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770870,11 +762811,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9613), 1, - anon_sym_RPAREN, - ACTIONS(9702), 1, + ACTIONS(10257), 3, anon_sym_COMMA, - STATE(7106), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(7113), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770884,8 +762825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__for_statement_conditions_repeat1, - [128624] = 14, + [129909] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770906,13 +762846,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10091), 1, anon_sym_COMMA, - ACTIONS(9705), 1, - anon_sym_RBRACK, - STATE(7223), 1, - aux_sym_type_argument_list_repeat1, - STATE(7107), 9, + ACTIONS(10259), 1, + anon_sym_RPAREN, + STATE(7320), 1, + aux_sym_argument_list_repeat1, + STATE(7114), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770922,7 +762862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128675] = 14, + [129960] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770943,13 +762883,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8001), 1, - anon_sym_DOT, - ACTIONS(8741), 1, - anon_sym_LBRACE, - STATE(7789), 1, - sym_declaration_list, - STATE(7108), 9, + ACTIONS(10257), 1, + anon_sym_RPAREN, + ACTIONS(10261), 1, + anon_sym_COMMA, + STATE(7115), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770959,34 +762897,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128726] = 14, - ACTIONS(3), 1, + aux_sym_positional_pattern_clause_repeat1, + [130009] = 13, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10264), 1, anon_sym_COMMA, - ACTIONS(9707), 1, - anon_sym_GT, - STATE(7265), 1, - aux_sym_type_argument_list_repeat2, - STATE(7109), 9, + ACTIONS(10267), 1, + aux_sym_preproc_if_token2, + STATE(7116), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770996,7 +762933,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128777] = 14, + aux_sym_preproc_pragma_repeat1, + [130058] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771017,13 +762955,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9709), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - ACTIONS(9711), 1, + ACTIONS(10269), 1, anon_sym_RPAREN, - STATE(7215), 1, - aux_sym_tuple_pattern_repeat1, - STATE(7110), 9, + STATE(7274), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771033,7 +762971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128828] = 14, + [130109] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771054,13 +762992,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8993), 1, - anon_sym_LBRACE, - ACTIONS(9245), 1, + ACTIONS(10271), 1, anon_sym_COMMA, - STATE(7084), 1, - aux_sym_base_list_repeat1, - STATE(7111), 9, + ACTIONS(10273), 1, + anon_sym_RBRACK, + STATE(7122), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771070,7 +763008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128879] = 14, + [130160] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771091,13 +763029,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9713), 1, + ACTIONS(10275), 1, anon_sym_COMMA, - ACTIONS(9715), 1, - anon_sym_RPAREN, - STATE(7168), 1, - aux_sym_tuple_expression_repeat1, - STATE(7112), 9, + ACTIONS(10278), 1, + anon_sym_RBRACE, + STATE(7119), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771107,7 +763043,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128930] = 14, + aux_sym__with_body_repeat1, + [130209] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771128,13 +763065,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8991), 1, + ACTIONS(9258), 1, anon_sym_LBRACE, - ACTIONS(9245), 1, - anon_sym_COMMA, - STATE(7087), 1, - aux_sym_base_list_repeat1, - STATE(7113), 9, + ACTIONS(10280), 1, + anon_sym_SEMI, + STATE(7650), 1, + sym_declaration_list, + STATE(7120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771144,7 +763081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128981] = 14, + [130260] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771165,50 +763102,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - ACTIONS(9717), 1, + ACTIONS(10285), 1, anon_sym_GT, - STATE(7129), 1, - aux_sym_type_argument_list_repeat2, - STATE(7114), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [129032] = 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(6902), 1, - anon_sym_LBRACE, - ACTIONS(9562), 1, - anon_sym_LPAREN, - STATE(2036), 1, - sym_block, - STATE(7115), 9, + STATE(7121), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771218,7 +763116,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129083] = 14, + aux_sym_type_argument_list_repeat2, + [130309] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771239,13 +763138,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10287), 1, anon_sym_COMMA, - ACTIONS(9719), 1, - anon_sym_GT, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7116), 9, + ACTIONS(10289), 1, + anon_sym_RBRACK, + STATE(7263), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7122), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771255,7 +763154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129134] = 12, + [130360] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771276,11 +763175,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6329), 3, + ACTIONS(10085), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(10291), 1, anon_sym_RPAREN, - STATE(7117), 9, + STATE(7333), 1, + aux_sym_tuple_type_repeat1, + STATE(7123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771290,7 +763191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129181] = 14, + [130411] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771311,13 +763212,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(3143), 1, anon_sym_RBRACE, - ACTIONS(9721), 1, + ACTIONS(10293), 1, anon_sym_COMMA, - STATE(7246), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7118), 9, + STATE(7355), 1, + aux_sym_initializer_expression_repeat1, + STATE(7124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771327,7 +763228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129232] = 14, + [130462] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771348,13 +763249,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, + ACTIONS(10295), 1, anon_sym_COMMA, - ACTIONS(9723), 1, - anon_sym_RPAREN, - STATE(7244), 1, - aux_sym_tuple_type_repeat1, - STATE(7119), 9, + ACTIONS(10297), 1, + anon_sym_RBRACE, + STATE(7129), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7125), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771364,7 +763265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129283] = 14, + [130513] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771385,13 +763286,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(9725), 1, - anon_sym_GT, - STATE(7126), 1, - aux_sym_type_argument_list_repeat2, - STATE(7120), 9, + ACTIONS(6660), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771401,7 +763302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129334] = 14, + [130564] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771422,13 +763323,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(9727), 1, - anon_sym_SEMI, - STATE(7897), 1, - sym_declaration_list, - STATE(7121), 9, + ACTIONS(10099), 1, + anon_sym_COMMA, + ACTIONS(10299), 1, + anon_sym_GT, + STATE(7135), 1, + aux_sym_type_argument_list_repeat2, + STATE(7127), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771438,7 +763339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129385] = 14, + [130615] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771459,13 +763360,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9729), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(9731), 1, - anon_sym_RBRACK, - STATE(7243), 1, - aux_sym_list_pattern_repeat1, - STATE(7122), 9, + ACTIONS(10301), 1, + anon_sym_GT, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771475,7 +763376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129436] = 14, + [130666] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771496,13 +763397,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9733), 1, + ACTIONS(10303), 1, anon_sym_COMMA, - ACTIONS(9735), 1, - anon_sym_RBRACK, - STATE(7243), 1, - aux_sym_list_pattern_repeat1, - STATE(7123), 9, + ACTIONS(10305), 1, + anon_sym_RBRACE, + STATE(7213), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7129), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771512,7 +763413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129487] = 14, + [130717] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771533,13 +763434,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(9737), 1, + ACTIONS(10307), 1, anon_sym_RBRACK, - STATE(7085), 1, + STATE(7275), 1, aux_sym_array_rank_specifier_repeat1, - STATE(7124), 9, + STATE(7130), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771549,7 +763450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129538] = 14, + [130768] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771570,13 +763471,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10309), 1, anon_sym_COMMA, - ACTIONS(6253), 1, - anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7125), 9, + ACTIONS(10311), 1, + anon_sym_RBRACE, + STATE(7136), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7131), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [130819] = 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(9258), 1, + anon_sym_LBRACE, + ACTIONS(10313), 1, + anon_sym_SEMI, + STATE(7767), 1, + sym_declaration_list, + STATE(7132), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771586,7 +763524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129589] = 13, + [130870] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771607,11 +763545,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9739), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - ACTIONS(9742), 1, - anon_sym_GT, - STATE(7126), 10, + ACTIONS(10315), 1, + anon_sym_RBRACE, + STATE(7119), 1, + aux_sym__with_body_repeat1, + STATE(7133), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771621,8 +763561,81 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, + [130921] = 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(10115), 1, + anon_sym_COMMA, + ACTIONS(10317), 1, + anon_sym_RBRACE, + STATE(7165), 1, + aux_sym__with_body_repeat1, + STATE(7134), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [130972] = 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(10099), 1, + anon_sym_COMMA, + ACTIONS(10319), 1, + anon_sym_GT, + STATE(7121), 1, aux_sym_type_argument_list_repeat2, - [129638] = 14, + STATE(7135), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [131023] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771643,13 +763656,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8273), 1, + ACTIONS(2349), 1, + anon_sym_RBRACE, + ACTIONS(10321), 1, + anon_sym_COMMA, + STATE(7100), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7136), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [131074] = 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(8825), 1, anon_sym_RBRACK, - ACTIONS(9744), 1, + ACTIONS(10323), 1, anon_sym_COMMA, - STATE(7253), 1, + STATE(7104), 1, aux_sym_global_attribute_repeat1, - STATE(7127), 9, + STATE(7137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771659,7 +763709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129689] = 14, + [131125] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771680,13 +763730,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6277), 1, + ACTIONS(10325), 1, anon_sym_COMMA, - ACTIONS(9746), 1, - anon_sym_RPAREN, - STATE(7106), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7128), 9, + ACTIONS(10328), 1, + anon_sym_RBRACK, + STATE(7138), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771696,7 +763744,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129740] = 14, + aux_sym_calling_convention_repeat1, + [131174] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771717,13 +763766,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - ACTIONS(9748), 1, - anon_sym_GT, - STATE(7126), 1, - aux_sym_type_argument_list_repeat2, - STATE(7129), 9, + ACTIONS(10330), 1, + anon_sym_RPAREN, + STATE(7117), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7139), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771733,7 +763782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129791] = 14, + [131225] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771754,13 +763803,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9750), 1, - anon_sym_SEMI, - ACTIONS(9752), 1, + ACTIONS(6739), 1, anon_sym_COMMA, - STATE(7186), 1, - aux_sym_variable_declaration_repeat1, - STATE(7130), 9, + ACTIONS(10332), 1, + anon_sym_RPAREN, + STATE(7103), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771770,7 +763819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129842] = 14, + [131276] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771791,13 +763840,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(7725), 1, - anon_sym_STAR, - STATE(7131), 9, + ACTIONS(2369), 1, + anon_sym_RBRACE, + ACTIONS(10334), 1, + anon_sym_COMMA, + STATE(7168), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771807,7 +763856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129893] = 14, + [131327] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771828,13 +763877,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - ACTIONS(9754), 1, - anon_sym_GT, - STATE(7126), 1, - aux_sym_type_argument_list_repeat2, - STATE(7132), 9, + ACTIONS(10336), 1, + anon_sym_RPAREN, + STATE(7333), 1, + aux_sym_tuple_type_repeat1, + STATE(7142), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771844,7 +763893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129944] = 14, + [131378] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771865,13 +763914,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9756), 1, - anon_sym_COMMA, - ACTIONS(9758), 1, - anon_sym_RBRACK, - STATE(7082), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7133), 9, + ACTIONS(7206), 1, + anon_sym_LBRACE, + ACTIONS(10179), 1, + anon_sym_LPAREN, + STATE(7509), 1, + sym_block, + STATE(7143), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771881,7 +763930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129995] = 14, + [131429] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771902,13 +763951,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9760), 1, + ACTIONS(10129), 1, anon_sym_COMMA, - ACTIONS(9762), 1, - anon_sym_RBRACK, - STATE(7228), 1, - aux_sym_attribute_list_repeat1, - STATE(7134), 9, + ACTIONS(10338), 1, + anon_sym_RPAREN, + STATE(7115), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7144), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771918,7 +763967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130046] = 14, + [131480] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771939,13 +763988,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9713), 1, + ACTIONS(6739), 1, anon_sym_COMMA, - ACTIONS(9764), 1, + ACTIONS(10340), 1, anon_sym_RPAREN, - STATE(7168), 1, - aux_sym_tuple_expression_repeat1, - STATE(7135), 9, + STATE(7103), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7145), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771955,7 +764004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130097] = 14, + [131531] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771976,13 +764025,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9622), 1, + ACTIONS(10342), 1, anon_sym_COMMA, - ACTIONS(9766), 1, + ACTIONS(10344), 1, anon_sym_RBRACK, - STATE(7190), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(7136), 9, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7146), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771992,7 +764041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130148] = 14, + [131582] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772013,13 +764062,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10346), 1, anon_sym_COMMA, - ACTIONS(9768), 1, - anon_sym_GT, - STATE(7148), 1, - aux_sym_type_argument_list_repeat2, - STATE(7137), 9, + ACTIONS(10348), 1, + anon_sym_RBRACK, + STATE(7258), 1, + aux_sym_attribute_list_repeat1, + STATE(7147), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772029,7 +764078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130199] = 14, + [131633] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772050,13 +764099,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9770), 1, + ACTIONS(6739), 1, anon_sym_COMMA, - ACTIONS(9772), 1, - anon_sym_RBRACK, - STATE(7171), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7138), 9, + ACTIONS(10350), 1, + anon_sym_RPAREN, + STATE(7103), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7148), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772066,7 +764115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130250] = 14, + [131684] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772087,13 +764136,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9609), 1, + ACTIONS(10237), 1, + anon_sym_RPAREN, + ACTIONS(10352), 1, anon_sym_COMMA, - ACTIONS(9774), 1, - anon_sym_RBRACE, - STATE(7095), 1, - aux_sym__with_body_repeat1, - STATE(7139), 9, + STATE(7181), 1, + aux_sym_variable_declaration_repeat1, + STATE(7149), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772103,7 +764152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130301] = 13, + [131735] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772124,11 +764173,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9776), 1, - anon_sym_COMMA, - ACTIONS(9779), 1, - anon_sym_RBRACE, - STATE(7140), 10, + ACTIONS(10354), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_when, + STATE(7150), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772138,8 +764187,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, - [130350] = 13, + [131782] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772160,12 +764208,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9783), 1, - anon_sym_EQ, - ACTIONS(9781), 2, - anon_sym_SEMI, + ACTIONS(10081), 1, anon_sym_COMMA, - STATE(7141), 9, + ACTIONS(10356), 1, + anon_sym_RPAREN, + STATE(7321), 1, + aux_sym_tuple_expression_repeat1, + STATE(7151), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772175,7 +764224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130399] = 14, + [131833] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772196,13 +764245,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10358), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_when, + STATE(7152), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [131880] = 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(10099), 1, anon_sym_COMMA, - ACTIONS(9785), 1, + ACTIONS(10360), 1, anon_sym_GT, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7142), 9, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7153), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772212,7 +764296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130450] = 14, + [131931] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772233,13 +764317,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(9787), 1, + ACTIONS(10362), 1, anon_sym_RBRACK, - STATE(7169), 1, + STATE(7180), 1, aux_sym_type_argument_list_repeat1, - STATE(7143), 9, + STATE(7154), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772249,7 +764333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130501] = 14, + [131982] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772270,13 +764354,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9789), 1, + ACTIONS(10364), 1, anon_sym_COMMA, - ACTIONS(9791), 1, - anon_sym_RBRACE, - STATE(7097), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7144), 9, + ACTIONS(10366), 1, + anon_sym_RPAREN, + STATE(7310), 1, + aux_sym_parameter_list_repeat1, + STATE(7155), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772286,7 +764370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130552] = 14, + [132033] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772307,13 +764391,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9632), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - ACTIONS(9793), 1, + ACTIONS(10368), 1, anon_sym_RPAREN, - STATE(7182), 1, + STATE(7274), 1, aux_sym_parenthesized_variable_designation_repeat1, - STATE(7145), 9, + STATE(7156), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772323,7 +764407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130603] = 14, + [132084] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772344,13 +764428,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10370), 1, anon_sym_COMMA, - ACTIONS(9795), 1, - anon_sym_GT, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7146), 9, + ACTIONS(10372), 1, + anon_sym_RBRACK, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7157), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772360,7 +764444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130654] = 14, + [132135] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772381,13 +764465,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9797), 1, + ACTIONS(10364), 1, anon_sym_COMMA, - ACTIONS(9799), 1, + ACTIONS(10374), 1, anon_sym_RPAREN, - STATE(7278), 1, - aux_sym_using_variable_declaration_repeat1, - STATE(7147), 9, + STATE(7310), 1, + aux_sym_parameter_list_repeat1, + STATE(7158), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772397,7 +764481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130705] = 14, + [132186] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772418,13 +764502,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(2471), 1, + anon_sym_RBRACE, + ACTIONS(10376), 1, anon_sym_COMMA, - ACTIONS(9801), 1, - anon_sym_GT, - STATE(7126), 1, - aux_sym_type_argument_list_repeat2, - STATE(7148), 9, + STATE(7100), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7159), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772434,7 +764518,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130756] = 14, + [132237] = 14, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(10378), 1, + anon_sym_DQUOTE, + ACTIONS(10380), 1, + aux_sym_preproc_if_token2, + STATE(8073), 1, + sym_string_literal, + 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, + [132288] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772455,13 +764576,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9609), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(9803), 1, - anon_sym_RBRACE, - STATE(7233), 1, - aux_sym__with_body_repeat1, - STATE(7149), 9, + ACTIONS(10382), 1, + anon_sym_GT, + STATE(7250), 1, + aux_sym_type_argument_list_repeat2, + STATE(7161), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772471,7 +764592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130807] = 12, + [132339] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772492,11 +764613,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6303), 3, + ACTIONS(5678), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(7150), 9, + ACTIONS(10384), 1, + anon_sym_GT, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7162), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772506,7 +764629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130854] = 14, + [132390] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772527,13 +764650,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9805), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - ACTIONS(9807), 1, + ACTIONS(10386), 1, anon_sym_RBRACE, - STATE(7104), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7151), 9, + STATE(7119), 1, + aux_sym__with_body_repeat1, + STATE(7163), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772543,7 +764666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130905] = 14, + [132441] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772564,13 +764687,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - ACTIONS(9809), 1, - anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7152), 9, + ACTIONS(10388), 1, + anon_sym_RBRACE, + STATE(7067), 1, + aux_sym__with_body_repeat1, + STATE(7164), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772580,7 +764703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130956] = 14, + [132492] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772601,13 +764724,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6277), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - ACTIONS(9811), 1, - anon_sym_RPAREN, - STATE(7106), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7153), 9, + ACTIONS(10390), 1, + anon_sym_RBRACE, + STATE(7119), 1, + aux_sym__with_body_repeat1, + STATE(7165), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772617,7 +764740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131007] = 14, + [132543] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772638,13 +764761,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6277), 1, + ACTIONS(10392), 1, anon_sym_COMMA, - ACTIONS(9813), 1, - anon_sym_RPAREN, - STATE(7106), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7154), 9, + ACTIONS(10394), 1, + anon_sym_RBRACK, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7166), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772654,7 +764777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131058] = 14, + [132594] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772675,13 +764798,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6277), 1, + ACTIONS(10396), 1, anon_sym_COMMA, - ACTIONS(9815), 1, - anon_sym_RPAREN, - STATE(7106), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7155), 9, + ACTIONS(10398), 1, + anon_sym_RBRACK, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7167), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772691,7 +764814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131109] = 12, + [132645] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772712,11 +764835,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6221), 3, + ACTIONS(10257), 1, + anon_sym_RBRACE, + ACTIONS(10400), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(7156), 9, + STATE(7168), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772726,7 +764849,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131156] = 14, + aux_sym_positional_pattern_clause_repeat1, + [132694] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772747,13 +764871,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9817), 1, + ACTIONS(10403), 1, anon_sym_COMMA, - ACTIONS(9819), 1, - anon_sym_RBRACK, - STATE(7224), 1, - aux_sym_attribute_list_repeat1, - STATE(7157), 9, + ACTIONS(10406), 1, + anon_sym_RPAREN, + STATE(7169), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772763,7 +764885,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131207] = 12, + aux_sym_tuple_pattern_repeat1, + [132743] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772784,11 +764907,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9821), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(7158), 9, + ACTIONS(2509), 1, + anon_sym_RBRACE, + ACTIONS(10408), 1, + anon_sym_COMMA, + STATE(7100), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7170), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772798,7 +764923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131254] = 12, + [132794] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772819,11 +764944,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(7159), 9, + ACTIONS(10147), 1, + anon_sym_COMMA, + ACTIONS(10410), 1, + anon_sym_RBRACK, + STATE(7296), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(7171), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772833,7 +764960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131301] = 14, + [132845] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772854,13 +764981,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9632), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(9825), 1, - anon_sym_RPAREN, - STATE(7236), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7160), 9, + ACTIONS(10412), 1, + anon_sym_GT, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7172), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772870,7 +764997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131352] = 14, + [132896] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772891,13 +765018,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2349), 1, - anon_sym_RBRACE, - ACTIONS(9827), 1, + ACTIONS(10414), 1, anon_sym_COMMA, - STATE(7341), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7161), 9, + ACTIONS(10416), 1, + anon_sym_RBRACK, + STATE(7263), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7173), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772907,7 +765034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131403] = 14, + [132947] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772928,13 +765055,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9829), 1, + ACTIONS(10418), 1, anon_sym_COMMA, - ACTIONS(9831), 1, + ACTIONS(10420), 1, anon_sym_RBRACK, - STATE(7320), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7162), 9, + STATE(7278), 1, + aux_sym_attribute_list_repeat1, + STATE(7174), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772944,7 +765071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131454] = 14, + [132998] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772965,13 +765092,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9618), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - ACTIONS(9833), 1, - anon_sym_RPAREN, - STATE(7249), 1, - aux_sym_parameter_list_repeat1, - STATE(7163), 9, + ACTIONS(10422), 1, + anon_sym_RBRACE, + STATE(7163), 1, + aux_sym__with_body_repeat1, + STATE(7175), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772981,7 +765108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131505] = 14, + [133049] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773002,13 +765129,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9835), 1, + ACTIONS(10147), 1, anon_sym_COMMA, - ACTIONS(9837), 1, + ACTIONS(10424), 1, anon_sym_RBRACK, - STATE(7243), 1, - aux_sym_list_pattern_repeat1, - STATE(7164), 9, + STATE(7296), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(7176), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773018,7 +765145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131556] = 14, + [133100] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773039,13 +765166,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9839), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(9841), 1, - anon_sym_RBRACE, - STATE(7179), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7165), 9, + ACTIONS(10428), 1, + anon_sym_RBRACK, + STATE(7276), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7177), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773055,7 +765182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131607] = 14, + [133151] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773076,13 +765203,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, - anon_sym_COMMA, - ACTIONS(9843), 1, - anon_sym_GT, - STATE(7248), 1, - aux_sym_type_argument_list_repeat2, - STATE(7166), 9, + ACTIONS(10430), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7178), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773092,7 +765217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131658] = 14, + [133198] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773113,13 +765238,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9602), 1, + ACTIONS(10432), 1, anon_sym_COMMA, - ACTIONS(9845), 1, - anon_sym_RPAREN, - STATE(7217), 1, - aux_sym_argument_list_repeat1, - STATE(7167), 9, + ACTIONS(10434), 1, + anon_sym_RBRACE, + STATE(7170), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7179), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773129,7 +765254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131709] = 13, + [133249] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773150,11 +765275,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(9850), 1, - anon_sym_RPAREN, - STATE(7168), 10, + ACTIONS(10436), 1, + anon_sym_RBRACK, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7180), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773164,8 +765291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_tuple_expression_repeat1, - [131758] = 14, + [133300] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773186,13 +765312,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10438), 1, anon_sym_COMMA, - ACTIONS(9852), 1, - anon_sym_RBRACK, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7169), 9, + ACTIONS(10441), 1, + anon_sym_RPAREN, + STATE(7181), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773202,7 +765326,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131809] = 14, + aux_sym_variable_declaration_repeat1, + [133349] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773223,13 +765348,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6277), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(9854), 1, - anon_sym_RPAREN, - STATE(7106), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7170), 9, + ACTIONS(10443), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7182), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773239,7 +765364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131860] = 14, + [133400] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773260,13 +765385,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9856), 1, + ACTIONS(10445), 1, anon_sym_COMMA, - ACTIONS(9858), 1, + ACTIONS(10447), 1, anon_sym_RBRACK, - STATE(7082), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7171), 9, + STATE(7259), 1, + aux_sym_attribute_list_repeat1, + STATE(7183), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773276,7 +765401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131911] = 14, + [133451] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773297,13 +765422,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6277), 1, + ACTIONS(10449), 1, anon_sym_COMMA, - ACTIONS(9860), 1, - anon_sym_RPAREN, - STATE(7106), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7172), 9, + ACTIONS(10451), 1, + anon_sym_RBRACK, + STATE(7195), 1, + aux_sym_attribute_list_repeat1, + STATE(7184), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773313,7 +765438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131962] = 14, + [133502] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773334,13 +765459,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10453), 1, anon_sym_COMMA, - ACTIONS(9862), 1, + ACTIONS(10455), 1, anon_sym_RBRACK, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7173), 9, + STATE(7173), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7185), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773350,7 +765475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132013] = 14, + [133553] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773371,13 +765496,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, + ACTIONS(6865), 3, anon_sym_COMMA, - ACTIONS(9864), 1, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(7244), 1, - aux_sym_tuple_type_repeat1, - STATE(7174), 9, + STATE(7186), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773387,7 +765510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132064] = 14, + [133600] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773408,13 +765531,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10364), 1, anon_sym_COMMA, - ACTIONS(9866), 1, - anon_sym_RBRACK, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7175), 9, + ACTIONS(10457), 1, + anon_sym_RPAREN, + STATE(7158), 1, + aux_sym_parameter_list_repeat1, + STATE(7187), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773424,7 +765547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132115] = 13, + [133651] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773445,11 +765568,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9868), 1, + ACTIONS(10364), 1, anon_sym_COMMA, - ACTIONS(9871), 1, - anon_sym_RBRACK, - STATE(7176), 10, + ACTIONS(10459), 1, + anon_sym_RPAREN, + STATE(7155), 1, + aux_sym_parameter_list_repeat1, + STATE(7188), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773459,33 +765584,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_calling_convention_repeat1, - [132164] = 13, - ACTIONS(8466), 1, + [133702] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9873), 1, - anon_sym_COMMA, - ACTIONS(9876), 1, - aux_sym_preproc_if_token2, - STATE(7177), 10, + ACTIONS(3161), 1, + aux_sym_preproc_if_token3, + ACTIONS(3217), 1, + anon_sym_LBRACK, + STATE(8086), 1, + sym_attribute_list, + STATE(7189), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773495,8 +765621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_preproc_pragma_repeat1, - [132213] = 14, + [133753] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773517,13 +765642,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9878), 1, + ACTIONS(10461), 1, + anon_sym_EQ, + ACTIONS(10248), 2, anon_sym_COMMA, - ACTIONS(9880), 1, - anon_sym_RBRACE, - STATE(7140), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7178), 9, + anon_sym_RPAREN, + STATE(7190), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773533,34 +765657,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132264] = 14, - ACTIONS(3), 1, + [133802] = 13, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9882), 1, - anon_sym_COMMA, - ACTIONS(9884), 1, - anon_sym_RBRACE, - STATE(7140), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7179), 9, + ACTIONS(10463), 1, + aux_sym_preproc_if_token2, + ACTIONS(10465), 2, + anon_sym_annotations, + anon_sym_warnings, + STATE(7191), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773570,7 +765693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132315] = 14, + [133851] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773591,13 +765714,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10467), 1, + anon_sym_EQ, + ACTIONS(10233), 2, anon_sym_COMMA, - ACTIONS(9886), 1, - anon_sym_GT, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7180), 9, + anon_sym_RPAREN, + STATE(7192), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773607,7 +765729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132366] = 12, + [133900] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773628,11 +765750,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9888), 3, - anon_sym_SEMI, + ACTIONS(5678), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7181), 9, + ACTIONS(10469), 1, + anon_sym_RBRACK, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7193), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773642,7 +765766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132413] = 14, + [133951] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773663,13 +765787,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9632), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - ACTIONS(9890), 1, + ACTIONS(10471), 1, anon_sym_RPAREN, - STATE(7080), 1, + STATE(7156), 1, aux_sym_parenthesized_variable_designation_repeat1, - STATE(7182), 9, + STATE(7194), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773679,7 +765803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132464] = 14, + [134002] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773700,13 +765824,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9678), 1, + ACTIONS(10473), 1, anon_sym_COMMA, - ACTIONS(9892), 1, - anon_sym_RPAREN, - STATE(7240), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7183), 9, + ACTIONS(10475), 1, + anon_sym_RBRACK, + STATE(7258), 1, + aux_sym_attribute_list_repeat1, + STATE(7195), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773716,7 +765840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132515] = 14, + [134053] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773737,13 +765861,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9894), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - ACTIONS(9896), 1, - anon_sym_RBRACK, - STATE(7311), 1, - aux_sym_attribute_list_repeat1, - STATE(7184), 9, + ACTIONS(10477), 1, + anon_sym_RPAREN, + STATE(7333), 1, + aux_sym_tuple_type_repeat1, + STATE(7196), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773753,7 +765877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132566] = 14, + [134104] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773774,13 +765898,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9898), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(9900), 1, + ACTIONS(7024), 1, anon_sym_RBRACK, - STATE(7224), 1, - aux_sym_attribute_list_repeat1, - STATE(7185), 9, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7197), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773790,7 +765914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132617] = 14, + [134155] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773811,13 +765935,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9752), 1, + ACTIONS(10479), 1, anon_sym_COMMA, - ACTIONS(9902), 1, - anon_sym_SEMI, - STATE(7309), 1, - aux_sym_variable_declaration_repeat1, - STATE(7186), 9, + ACTIONS(10481), 1, + anon_sym_RBRACE, + STATE(7213), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7198), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773827,7 +765951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132668] = 14, + [134206] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773848,13 +765972,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8174), 1, - anon_sym_RPAREN, - ACTIONS(9709), 1, + ACTIONS(10091), 1, anon_sym_COMMA, - STATE(7195), 1, - aux_sym_tuple_pattern_repeat1, - STATE(7187), 9, + ACTIONS(10483), 1, + anon_sym_RPAREN, + STATE(7221), 1, + aux_sym_argument_list_repeat1, + STATE(7199), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773864,7 +765988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132719] = 12, + [134257] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773885,11 +766009,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9904), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(7188), 9, + ACTIONS(5678), 1, + anon_sym_COMMA, + ACTIONS(10485), 1, + anon_sym_GT, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7200), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773899,7 +766025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132766] = 12, + [134308] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773920,11 +766046,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9906), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(7189), 9, + ACTIONS(10487), 1, + anon_sym_COMMA, + ACTIONS(10489), 1, + anon_sym_RBRACE, + STATE(7071), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7201), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773934,7 +766062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132813] = 13, + [134359] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773955,11 +766083,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9908), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(9911), 1, - anon_sym_RBRACK, - STATE(7190), 10, + ACTIONS(10491), 1, + anon_sym_GT, + STATE(7172), 1, + aux_sym_type_argument_list_repeat2, + STATE(7202), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773969,8 +766099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_bracketed_parameter_list_repeat1, - [132862] = 14, + [134410] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773991,13 +766120,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9602), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(9913), 1, - anon_sym_RPAREN, - STATE(7217), 1, - aux_sym_argument_list_repeat1, - STATE(7191), 9, + ACTIONS(10493), 1, + anon_sym_GT, + STATE(7208), 1, + aux_sym_type_argument_list_repeat2, + STATE(7203), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774007,7 +766136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132913] = 14, + [134461] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774028,13 +766157,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9602), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(9915), 1, - anon_sym_RPAREN, - STATE(7217), 1, - aux_sym_argument_list_repeat1, - STATE(7192), 9, + ACTIONS(10495), 1, + anon_sym_GT, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7204), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774044,7 +766173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132964] = 14, + [134512] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774065,13 +766194,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(9917), 1, + ACTIONS(10497), 1, anon_sym_RBRACK, - STATE(7085), 1, + STATE(7275), 1, aux_sym_array_rank_specifier_repeat1, - STATE(7193), 9, + STATE(7205), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774081,34 +766210,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133015] = 14, - ACTIONS(3), 1, + [134563] = 14, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9919), 1, + ACTIONS(10499), 1, anon_sym_COMMA, - ACTIONS(9921), 1, - anon_sym_RBRACE, - STATE(7294), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7194), 9, + ACTIONS(10501), 1, + aux_sym_preproc_if_token2, + STATE(7252), 1, + aux_sym_preproc_pragma_repeat1, + STATE(7206), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774118,7 +766247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133066] = 14, + [134614] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774139,13 +766268,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9709), 1, - anon_sym_COMMA, - ACTIONS(9923), 1, - anon_sym_RPAREN, - STATE(7298), 1, - aux_sym_tuple_pattern_repeat1, - STATE(7195), 9, + ACTIONS(10503), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7207), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774155,7 +766282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133117] = 14, + [134661] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774176,13 +766303,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9925), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(9927), 1, - anon_sym_RBRACE, - STATE(7140), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7196), 9, + ACTIONS(10505), 1, + anon_sym_GT, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7208), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774192,7 +766319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133168] = 13, + [134712] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774213,12 +766340,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9929), 1, - anon_sym_EQ, - ACTIONS(9435), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7197), 9, + ACTIONS(9214), 1, + anon_sym_LBRACE, + ACTIONS(10507), 1, + anon_sym_SEMI, + STATE(2850), 1, + sym_accessor_list, + STATE(7209), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774228,7 +766356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133217] = 14, + [134763] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774249,13 +766377,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10226), 1, + anon_sym_SEMI, + ACTIONS(10509), 1, anon_sym_COMMA, - ACTIONS(9931), 1, - anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7198), 9, + STATE(7210), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774265,7 +766391,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133268] = 14, + aux_sym__for_statement_conditions_repeat1, + [134812] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774286,13 +766413,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9933), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(9935), 1, + ACTIONS(7040), 1, anon_sym_RBRACK, - STATE(7224), 1, - aux_sym_attribute_list_repeat1, - STATE(7199), 9, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774302,7 +766429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133319] = 14, + [134863] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774323,13 +766450,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(9937), 1, + ACTIONS(10512), 1, anon_sym_RBRACK, - STATE(7173), 1, + STATE(7193), 1, aux_sym_type_argument_list_repeat1, - STATE(7200), 9, + STATE(7212), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774339,7 +766466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133370] = 14, + [134914] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774360,13 +766487,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9939), 1, + ACTIONS(10514), 1, anon_sym_COMMA, - ACTIONS(9941), 1, - anon_sym_RBRACK, - STATE(7185), 1, - aux_sym_attribute_list_repeat1, - STATE(7201), 9, + ACTIONS(10517), 1, + anon_sym_RBRACE, + STATE(7213), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774376,7 +766501,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133421] = 14, + aux_sym_anonymous_object_creation_expression_repeat1, + [134963] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774397,13 +766523,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10519), 1, anon_sym_COMMA, - ACTIONS(9943), 1, - anon_sym_GT, - STATE(7126), 1, - aux_sym_type_argument_list_repeat2, - STATE(7202), 9, + ACTIONS(10521), 1, + anon_sym_RBRACE, + STATE(7076), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7214), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774413,7 +766539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133472] = 14, + [135014] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774434,50 +766560,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9945), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(9947), 1, + ACTIONS(10523), 1, anon_sym_RBRACK, - STATE(7224), 1, - aux_sym_attribute_list_repeat1, - STATE(7203), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [133523] = 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(5979), 1, - anon_sym_COMMA, - ACTIONS(9949), 1, - anon_sym_GT, - STATE(6981), 1, + STATE(7270), 1, aux_sym_type_argument_list_repeat1, - STATE(7204), 9, + STATE(7215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774487,7 +766576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133574] = 14, + [135065] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774508,13 +766597,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10525), 1, anon_sym_COMMA, - ACTIONS(9951), 1, - anon_sym_GT, - STATE(7210), 1, - aux_sym_type_argument_list_repeat2, - STATE(7205), 9, + ACTIONS(10527), 1, + anon_sym_RBRACE, + STATE(7198), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7216), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774524,7 +766613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133625] = 13, + [135116] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774545,11 +766634,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9953), 1, + ACTIONS(6749), 3, anon_sym_COMMA, - ACTIONS(9956), 1, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(7206), 10, + STATE(7217), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774559,8 +766648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_using_variable_declaration_repeat1, - [133674] = 14, + [135163] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774581,13 +766669,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10091), 1, anon_sym_COMMA, - ACTIONS(9958), 1, - anon_sym_GT, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7207), 9, + ACTIONS(10529), 1, + anon_sym_RPAREN, + STATE(7199), 1, + aux_sym_argument_list_repeat1, + STATE(7218), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774597,7 +766685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133725] = 14, + [135214] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774618,13 +766706,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(9960), 1, - anon_sym_GT, - STATE(7202), 1, - aux_sym_type_argument_list_repeat2, - STATE(7208), 9, + ACTIONS(10531), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7219), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774634,7 +766722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133776] = 14, + [135265] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774655,13 +766743,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9962), 1, - anon_sym_COMMA, - ACTIONS(9964), 1, + ACTIONS(3121), 1, anon_sym_RBRACE, - STATE(7259), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7209), 9, + ACTIONS(10533), 1, + anon_sym_COMMA, + STATE(7355), 1, + aux_sym_initializer_expression_repeat1, + STATE(7220), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774671,7 +766759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133827] = 14, + [135316] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774692,13 +766780,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10535), 1, anon_sym_COMMA, - ACTIONS(9966), 1, - anon_sym_GT, - STATE(7126), 1, - aux_sym_type_argument_list_repeat2, - STATE(7210), 9, + ACTIONS(10538), 1, + anon_sym_RPAREN, + STATE(7221), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774708,7 +766794,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133878] = 14, + aux_sym_argument_list_repeat1, + [135365] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774729,13 +766816,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9968), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - ACTIONS(9970), 1, - anon_sym_RBRACK, - STATE(7127), 1, - aux_sym_global_attribute_repeat1, - STATE(7211), 9, + ACTIONS(10540), 1, + anon_sym_RPAREN, + STATE(7333), 1, + aux_sym_tuple_type_repeat1, + STATE(7222), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774745,7 +766832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133929] = 12, + [135416] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774766,11 +766853,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9972), 3, + ACTIONS(10081), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_GT, - STATE(7212), 9, + ACTIONS(10542), 1, + anon_sym_RPAREN, + STATE(7321), 1, + aux_sym_tuple_expression_repeat1, + STATE(7223), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774780,7 +766869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133976] = 14, + [135467] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774801,13 +766890,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9974), 1, + ACTIONS(10544), 1, anon_sym_COMMA, - ACTIONS(9976), 1, + ACTIONS(10546), 1, anon_sym_RBRACK, - STATE(7356), 1, + STATE(7263), 1, aux_sym_bracketed_argument_list_repeat1, - STATE(7213), 9, + STATE(7224), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774817,7 +766906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134027] = 14, + [135518] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774838,50 +766927,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(9978), 1, - anon_sym_SEMI, - STATE(2940), 1, - sym_accessor_list, - STATE(7214), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [134078] = 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(9709), 1, + ACTIONS(10548), 1, anon_sym_COMMA, - ACTIONS(9980), 1, - anon_sym_RPAREN, - STATE(7298), 1, - aux_sym_tuple_pattern_repeat1, - STATE(7215), 9, + ACTIONS(10550), 1, + anon_sym_RBRACK, + STATE(7239), 1, + aux_sym_attribute_list_repeat1, + STATE(7225), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774891,7 +766943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134129] = 14, + [135569] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774912,13 +766964,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9609), 1, + ACTIONS(10552), 1, anon_sym_COMMA, - ACTIONS(9982), 1, - anon_sym_RBRACE, - STATE(7149), 1, - aux_sym__with_body_repeat1, - STATE(7216), 9, + ACTIONS(10554), 1, + anon_sym_RBRACK, + STATE(7258), 1, + aux_sym_attribute_list_repeat1, + STATE(7226), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774928,7 +766980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134180] = 13, + [135620] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774949,11 +767001,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9984), 1, - anon_sym_COMMA, - ACTIONS(9987), 1, - anon_sym_RPAREN, - STATE(7217), 10, + ACTIONS(9258), 1, + anon_sym_LBRACE, + ACTIONS(10556), 1, + anon_sym_SEMI, + STATE(8035), 1, + sym_declaration_list, + STATE(7227), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774963,8 +767017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_argument_list_repeat1, - [134229] = 14, + [135671] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774985,13 +767038,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9989), 1, + ACTIONS(10191), 1, anon_sym_COMMA, - ACTIONS(9991), 1, - anon_sym_RBRACE, - STATE(7366), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7218), 9, + ACTIONS(10558), 1, + anon_sym_RBRACK, + STATE(7095), 1, + aux_sym_calling_convention_repeat1, + STATE(7228), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775001,7 +767054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134280] = 14, + [135722] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775022,13 +767075,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(9576), 1, anon_sym_COMMA, - ACTIONS(9993), 1, - anon_sym_GT, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7219), 9, + STATE(7229), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775038,7 +767091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134331] = 14, + [135773] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775059,13 +767112,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(9576), 1, anon_sym_COMMA, - ACTIONS(9995), 1, - anon_sym_GT, - STATE(7132), 1, - aux_sym_type_argument_list_repeat2, - STATE(7220), 9, + STATE(7230), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775075,7 +767128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134382] = 12, + [135824] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775096,11 +767149,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9997), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(7221), 9, + ACTIONS(10560), 1, + anon_sym_EQ, + ACTIONS(10014), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7231), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775110,7 +767164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134429] = 13, + [135873] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775131,12 +767185,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7757), 1, - anon_sym_DOT, - ACTIONS(4357), 2, + ACTIONS(8709), 1, + anon_sym_RBRACE, + ACTIONS(10562), 1, anon_sym_COMMA, - anon_sym_GT, - STATE(7222), 9, + STATE(7096), 1, + aux_sym_enum_member_declaration_list_repeat1, + STATE(7232), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775146,7 +767201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134478] = 14, + [135924] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775167,13 +767222,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10564), 1, anon_sym_COMMA, - ACTIONS(9999), 1, - anon_sym_RBRACK, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7223), 9, + ACTIONS(10566), 1, + anon_sym_RBRACE, + STATE(7213), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7233), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775183,7 +767238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134529] = 13, + [135975] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775204,11 +767259,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10001), 1, + ACTIONS(10054), 1, anon_sym_COMMA, - ACTIONS(10004), 1, - anon_sym_RBRACK, - STATE(7224), 10, + ACTIONS(10568), 1, + anon_sym_GT, + STATE(7098), 1, + aux_sym_type_parameter_list_repeat1, + STATE(7234), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775218,8 +767275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_attribute_list_repeat1, - [134578] = 14, + [136026] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775240,50 +767296,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9609), 1, + ACTIONS(10091), 1, anon_sym_COMMA, - ACTIONS(10006), 1, - anon_sym_RBRACE, - STATE(7284), 1, - aux_sym__with_body_repeat1, - STATE(7225), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [134629] = 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(9750), 1, + ACTIONS(10570), 1, anon_sym_RPAREN, - ACTIONS(10008), 1, - anon_sym_COMMA, - STATE(7247), 1, - aux_sym_variable_declaration_repeat1, - STATE(7226), 9, + STATE(7221), 1, + aux_sym_argument_list_repeat1, + STATE(7235), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775293,7 +767312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134680] = 13, + [136077] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775314,12 +767333,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10010), 1, - anon_sym_EQ, - ACTIONS(9781), 2, + ACTIONS(10572), 3, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(7227), 9, + STATE(7236), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775329,7 +767347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134729] = 14, + [136124] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775350,50 +767368,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10012), 1, + ACTIONS(6967), 3, anon_sym_COMMA, - ACTIONS(10014), 1, anon_sym_RBRACK, - STATE(7224), 1, - aux_sym_attribute_list_repeat1, - STATE(7228), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [134780] = 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(9554), 1, - anon_sym_COMMA, - ACTIONS(10016), 1, - anon_sym_GT, - STATE(7052), 1, - aux_sym_type_argument_list_repeat2, - STATE(7229), 9, + anon_sym_RPAREN, + STATE(7237), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775403,7 +767382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134831] = 14, + [136171] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775424,13 +767403,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9609), 1, + ACTIONS(10574), 1, anon_sym_COMMA, - ACTIONS(10018), 1, - anon_sym_RBRACE, - STATE(7233), 1, - aux_sym__with_body_repeat1, - STATE(7230), 9, + ACTIONS(10576), 1, + anon_sym_RPAREN, + STATE(7101), 1, + aux_sym_attribute_argument_list_repeat1, + STATE(7238), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775440,7 +767419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134882] = 14, + [136222] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775461,13 +767440,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10020), 1, + ACTIONS(10578), 1, anon_sym_COMMA, - ACTIONS(10022), 1, + ACTIONS(10580), 1, anon_sym_RBRACK, - STATE(7243), 1, - aux_sym_list_pattern_repeat1, - STATE(7231), 9, + STATE(7258), 1, + aux_sym_attribute_list_repeat1, + STATE(7239), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775477,7 +767456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134933] = 14, + [136273] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775498,13 +767477,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10024), 1, - anon_sym_COMMA, - ACTIONS(10026), 1, - anon_sym_RBRACK, - STATE(7333), 1, - aux_sym_attribute_list_repeat1, - STATE(7232), 9, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + STATE(7240), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775514,7 +767493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134984] = 13, + [136324] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775535,11 +767514,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10028), 1, + ACTIONS(10582), 1, anon_sym_COMMA, - ACTIONS(10031), 1, - anon_sym_RBRACE, - STATE(7233), 10, + ACTIONS(10584), 1, + anon_sym_RPAREN, + STATE(7247), 1, + aux_sym_using_variable_declaration_repeat1, + STATE(7241), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775549,8 +767530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__with_body_repeat1, - [135033] = 14, + [136375] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775571,13 +767551,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10033), 1, + ACTIONS(8760), 1, + anon_sym_RPAREN, + ACTIONS(10219), 1, anon_sym_COMMA, - ACTIONS(10035), 1, - anon_sym_RBRACK, - STATE(7262), 1, - aux_sym_attribute_list_repeat1, - STATE(7234), 9, + STATE(7282), 1, + aux_sym_tuple_pattern_repeat1, + STATE(7242), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775587,7 +767567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135084] = 14, + [136426] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775608,13 +767588,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(10037), 1, - anon_sym_SEMI, - STATE(7749), 1, - sym_declaration_list, - STATE(7235), 9, + ACTIONS(8807), 1, + anon_sym_RBRACK, + ACTIONS(10586), 1, + anon_sym_COMMA, + STATE(7104), 1, + aux_sym_global_attribute_repeat1, + STATE(7243), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775624,7 +767604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135135] = 14, + [136477] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775645,13 +767625,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9632), 1, + ACTIONS(10588), 1, anon_sym_COMMA, - ACTIONS(10039), 1, - anon_sym_RPAREN, - STATE(7080), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7236), 9, + ACTIONS(10590), 1, + anon_sym_RBRACK, + STATE(7243), 1, + aux_sym_global_attribute_repeat1, + STATE(7244), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775661,7 +767641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135186] = 13, + [136528] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775682,12 +767662,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10043), 1, - anon_sym_EQ, - ACTIONS(10041), 2, - anon_sym_SEMI, + ACTIONS(10592), 1, anon_sym_COMMA, - STATE(7237), 9, + ACTIONS(10594), 1, + anon_sym_RBRACK, + STATE(7263), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7245), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775697,7 +767678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135235] = 14, + [136579] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775718,13 +767699,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10045), 1, + ACTIONS(8267), 1, + anon_sym_DOT, + ACTIONS(4361), 2, anon_sym_COMMA, - ACTIONS(10047), 1, - anon_sym_RBRACK, - STATE(7082), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7238), 9, + anon_sym_GT, + STATE(7246), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775734,7 +767714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135286] = 14, + [136628] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775755,13 +767735,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6383), 1, + ACTIONS(10582), 1, anon_sym_COMMA, - ACTIONS(10049), 1, - anon_sym_SEMI, - STATE(7073), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7239), 9, + ACTIONS(10596), 1, + anon_sym_RPAREN, + STATE(7107), 1, + aux_sym_using_variable_declaration_repeat1, + STATE(7247), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775771,7 +767751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135337] = 13, + [136679] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775792,11 +767772,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10051), 1, + ACTIONS(10352), 1, anon_sym_COMMA, - ACTIONS(10054), 1, + ACTIONS(10598), 1, anon_sym_RPAREN, - STATE(7240), 10, + STATE(7149), 1, + aux_sym_variable_declaration_repeat1, + STATE(7248), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775806,8 +767788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_positional_pattern_clause_repeat1, - [135386] = 12, + [136730] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775828,11 +767809,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10054), 3, + ACTIONS(10600), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(7241), 9, + ACTIONS(10602), 1, + anon_sym_RBRACK, + STATE(7137), 1, + aux_sym_global_attribute_repeat1, + STATE(7249), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775842,7 +767825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135433] = 14, + [136781] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775863,13 +767846,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10056), 1, - anon_sym_RPAREN, - STATE(7244), 1, - aux_sym_tuple_type_repeat1, - STATE(7242), 9, + ACTIONS(10604), 1, + anon_sym_GT, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7250), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775879,7 +767862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135484] = 13, + [136832] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775900,11 +767883,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10058), 1, - anon_sym_COMMA, - ACTIONS(10061), 1, - anon_sym_RBRACK, - STATE(7243), 10, + ACTIONS(6370), 1, + anon_sym_COLON, + ACTIONS(10606), 1, + sym_interpolation_close_brace, + STATE(8009), 1, + sym_interpolation_format_clause, + STATE(7251), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775914,33 +767899,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_list_pattern_repeat1, - [135533] = 13, - ACTIONS(3), 1, + [136883] = 14, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10499), 1, anon_sym_COMMA, - ACTIONS(10066), 1, - anon_sym_RPAREN, - STATE(7244), 10, + ACTIONS(10608), 1, + aux_sym_preproc_if_token2, + STATE(7116), 1, + aux_sym_preproc_pragma_repeat1, + STATE(7252), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775950,8 +767936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_tuple_type_repeat1, - [135582] = 14, + [136934] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775972,13 +767957,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9602), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10068), 1, - anon_sym_RPAREN, - STATE(7346), 1, - aux_sym_argument_list_repeat1, - STATE(7245), 9, + ACTIONS(10610), 1, + anon_sym_GT, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7253), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775988,7 +767973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135633] = 13, + [136985] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776009,11 +767994,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10070), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10073), 1, - anon_sym_RBRACE, - STATE(7246), 10, + ACTIONS(10612), 1, + anon_sym_GT, + STATE(7153), 1, + aux_sym_type_argument_list_repeat2, + STATE(7254), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776023,8 +768010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__switch_expression_body_repeat1, - [135682] = 14, + [137036] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776045,13 +768031,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9902), 1, - anon_sym_RPAREN, - ACTIONS(10008), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - STATE(7327), 1, - aux_sym_variable_declaration_repeat1, - STATE(7247), 9, + ACTIONS(10614), 1, + anon_sym_RPAREN, + STATE(7333), 1, + aux_sym_tuple_type_repeat1, + STATE(7255), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776061,7 +768047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135733] = 14, + [137087] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776082,13 +768068,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(10075), 1, - anon_sym_GT, - STATE(7126), 1, - aux_sym_type_argument_list_repeat2, - STATE(7248), 9, + ACTIONS(6965), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7256), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776098,7 +768084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135784] = 13, + [137138] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776119,11 +768105,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10077), 1, - anon_sym_COMMA, - ACTIONS(10080), 1, - anon_sym_RPAREN, - STATE(7249), 10, + ACTIONS(10616), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7257), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776133,8 +768119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_parameter_list_repeat1, - [135833] = 13, + [137185] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776155,12 +768140,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10082), 1, - anon_sym_EQ, - ACTIONS(10041), 2, + ACTIONS(10618), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7250), 9, + ACTIONS(10621), 1, + anon_sym_RBRACK, + STATE(7258), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776170,7 +768154,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135882] = 14, + aux_sym_attribute_list_repeat1, + [137234] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776191,13 +768176,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3147), 1, - anon_sym_RBRACE, - ACTIONS(10084), 1, + ACTIONS(10623), 1, anon_sym_COMMA, - STATE(7304), 1, - aux_sym_initializer_expression_repeat1, - STATE(7251), 9, + ACTIONS(10625), 1, + anon_sym_RBRACK, + STATE(7258), 1, + aux_sym_attribute_list_repeat1, + STATE(7259), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776207,7 +768192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135933] = 14, + [137285] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776228,13 +768213,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10086), 1, - anon_sym_COMMA, - ACTIONS(10088), 1, - anon_sym_RBRACK, - STATE(7243), 1, - aux_sym_list_pattern_repeat1, - STATE(7252), 9, + ACTIONS(9214), 1, + anon_sym_LBRACE, + ACTIONS(10627), 1, + anon_sym_SEMI, + STATE(2732), 1, + sym_accessor_list, + STATE(7260), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776244,7 +768229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135984] = 13, + [137336] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776265,11 +768250,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10090), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10093), 1, - anon_sym_RBRACK, - STATE(7253), 10, + ACTIONS(10629), 1, + anon_sym_GT, + STATE(7265), 1, + aux_sym_type_argument_list_repeat2, + STATE(7261), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776279,8 +768266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_global_attribute_repeat1, - [136033] = 12, + [137387] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776301,11 +768287,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10095), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(7254), 9, + ACTIONS(10239), 1, + anon_sym_COMMA, + ACTIONS(10598), 1, + anon_sym_SEMI, + STATE(7106), 1, + aux_sym_variable_declaration_repeat1, + STATE(7262), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776315,7 +768303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136080] = 14, + [137438] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776336,13 +768324,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10631), 1, anon_sym_COMMA, - ACTIONS(6339), 1, + ACTIONS(10634), 1, anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7255), 9, + STATE(7263), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776352,7 +768338,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136131] = 13, + aux_sym_bracketed_argument_list_repeat1, + [137487] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776373,11 +768360,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10097), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10100), 1, - anon_sym_RPAREN, - STATE(7256), 10, + ACTIONS(10636), 1, + anon_sym_GT, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7264), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776387,8 +768376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_attribute_argument_list_repeat1, - [136180] = 14, + [137538] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776409,13 +768397,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10102), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10104), 1, - anon_sym_RPAREN, - STATE(7307), 1, - aux_sym_attribute_argument_list_repeat1, - STATE(7257), 9, + ACTIONS(10638), 1, + anon_sym_GT, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7265), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776425,7 +768413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136231] = 14, + [137589] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776446,13 +768434,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9713), 1, + ACTIONS(10640), 1, anon_sym_COMMA, - ACTIONS(10106), 1, - anon_sym_RPAREN, - STATE(7168), 1, - aux_sym_tuple_expression_repeat1, - STATE(7258), 9, + ACTIONS(10642), 1, + anon_sym_RBRACK, + STATE(7224), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7266), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776462,7 +768450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136282] = 14, + [137640] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776483,13 +768471,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_RBRACE, - ACTIONS(10108), 1, + ACTIONS(10644), 1, anon_sym_COMMA, - STATE(7246), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7259), 9, + ACTIONS(10646), 1, + anon_sym_RBRACK, + STATE(7226), 1, + aux_sym_attribute_list_repeat1, + STATE(7267), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776499,7 +768487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136333] = 14, + [137691] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776520,13 +768508,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2509), 1, - anon_sym_RBRACE, - ACTIONS(10110), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - STATE(7246), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7260), 9, + ACTIONS(10648), 1, + anon_sym_RBRACE, + STATE(7133), 1, + aux_sym__with_body_repeat1, + STATE(7268), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776536,7 +768524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136384] = 14, + [137742] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776557,13 +768545,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6277), 1, + ACTIONS(10650), 1, anon_sym_COMMA, - ACTIONS(10112), 1, - anon_sym_RPAREN, - STATE(7106), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7261), 9, + ACTIONS(10652), 1, + anon_sym_RBRACE, + STATE(7141), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7269), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776573,7 +768561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136435] = 14, + [137793] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776594,13 +768582,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10114), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10116), 1, + ACTIONS(10654), 1, anon_sym_RBRACK, - STATE(7224), 1, - aux_sym_attribute_list_repeat1, - STATE(7262), 9, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7270), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776610,7 +768598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136486] = 14, + [137844] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776631,50 +768619,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10118), 1, - anon_sym_COMMA, - ACTIONS(10120), 1, - anon_sym_GT, - STATE(7323), 1, - aux_sym_type_parameter_list_repeat1, - STATE(7263), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [136537] = 14, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(9690), 1, + ACTIONS(10656), 1, anon_sym_COMMA, - ACTIONS(10122), 1, - aux_sym_preproc_if_token2, - STATE(7177), 1, - aux_sym_preproc_pragma_repeat1, - STATE(7264), 9, + ACTIONS(10658), 1, + anon_sym_RBRACE, + STATE(7159), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7271), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776684,7 +768635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136588] = 14, + [137895] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776705,13 +768656,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10574), 1, anon_sym_COMMA, - ACTIONS(10124), 1, - anon_sym_GT, - STATE(7126), 1, - aux_sym_type_argument_list_repeat2, - STATE(7265), 9, + ACTIONS(10660), 1, + anon_sym_RPAREN, + STATE(7238), 1, + aux_sym_attribute_argument_list_repeat1, + STATE(7272), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776721,7 +768672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136639] = 14, + [137946] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776742,13 +768693,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10126), 1, - anon_sym_COMMA, - ACTIONS(10128), 1, - anon_sym_RBRACK, - STATE(7243), 1, - aux_sym_list_pattern_repeat1, - STATE(7266), 9, + ACTIONS(6234), 1, + anon_sym_LBRACE, + ACTIONS(10179), 1, + anon_sym_LPAREN, + STATE(1958), 1, + sym_block, + STATE(7273), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776758,7 +768709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136690] = 14, + [137997] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776779,13 +768730,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2449), 1, - anon_sym_RBRACE, - ACTIONS(10130), 1, + ACTIONS(10662), 1, anon_sym_COMMA, - STATE(7246), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7267), 9, + ACTIONS(10665), 1, + anon_sym_RPAREN, + STATE(7274), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776795,7 +768744,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136741] = 13, + aux_sym_parenthesized_variable_designation_repeat1, + [138046] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776816,47 +768766,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10132), 1, + ACTIONS(7172), 1, + anon_sym_RBRACK, + ACTIONS(10667), 1, anon_sym_COMMA, - ACTIONS(10135), 1, - anon_sym_GT, - STATE(7268), 10, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - aux_sym_type_parameter_list_repeat1, - [136790] = 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(10137), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7269), 9, + STATE(7275), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776866,7 +768780,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136837] = 14, + aux_sym_array_rank_specifier_repeat1, + [138095] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776887,13 +768802,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5780), 1, - anon_sym_COLON, - ACTIONS(10139), 1, - sym_interpolation_close_brace, - STATE(7980), 1, - sym_interpolation_format_clause, - STATE(7270), 9, + ACTIONS(10670), 1, + anon_sym_COMMA, + ACTIONS(10672), 1, + anon_sym_RBRACK, + STATE(7263), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7276), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776903,7 +768818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136888] = 14, + [138146] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776924,13 +768839,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10141), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(10143), 1, + ACTIONS(10674), 1, anon_sym_RBRACK, - STATE(7243), 1, - aux_sym_list_pattern_repeat1, - STATE(7271), 9, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7277), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776940,7 +768855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136939] = 14, + [138197] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776961,13 +768876,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9632), 1, + ACTIONS(10676), 1, anon_sym_COMMA, - ACTIONS(10145), 1, - anon_sym_RPAREN, - STATE(7305), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7272), 9, + ACTIONS(10678), 1, + anon_sym_RBRACK, + STATE(7258), 1, + aux_sym_attribute_list_repeat1, + STATE(7278), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776977,7 +768892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136990] = 14, + [138248] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776998,13 +768913,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10441), 1, + anon_sym_SEMI, + ACTIONS(10680), 1, anon_sym_COMMA, - ACTIONS(10147), 1, - anon_sym_GT, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7273), 9, + STATE(7279), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777014,7 +768927,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137041] = 13, + aux_sym_variable_declaration_repeat1, + [138297] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777035,11 +768949,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10149), 1, + ACTIONS(10683), 1, anon_sym_COMMA, - ACTIONS(10152), 1, - anon_sym_RBRACE, - STATE(7274), 10, + ACTIONS(10685), 1, + anon_sym_RBRACK, + STATE(7366), 1, + aux_sym_attribute_list_repeat1, + STATE(7280), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777049,8 +768965,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, - [137090] = 14, + [138348] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777071,13 +768986,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(10687), 3, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(10156), 1, - anon_sym_RBRACE, - STATE(7178), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7275), 9, + anon_sym_RPAREN, + STATE(7281), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777087,7 +769000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137141] = 14, + [138395] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777108,13 +769021,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9602), 1, + ACTIONS(10219), 1, anon_sym_COMMA, - ACTIONS(10158), 1, + ACTIONS(10689), 1, anon_sym_RPAREN, - STATE(7192), 1, - aux_sym_argument_list_repeat1, - STATE(7276), 9, + STATE(7169), 1, + aux_sym_tuple_pattern_repeat1, + STATE(7282), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777124,7 +769037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137192] = 14, + [138446] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777145,13 +769058,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10219), 1, anon_sym_COMMA, - ACTIONS(10160), 1, - anon_sym_GT, - STATE(7120), 1, - aux_sym_type_argument_list_repeat2, - STATE(7277), 9, + ACTIONS(10691), 1, + anon_sym_RPAREN, + STATE(7169), 1, + aux_sym_tuple_pattern_repeat1, + STATE(7283), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777161,7 +769074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137243] = 14, + [138497] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777182,13 +769095,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9797), 1, - anon_sym_COMMA, - ACTIONS(10162), 1, - anon_sym_RPAREN, - STATE(7206), 1, - aux_sym_using_variable_declaration_repeat1, - STATE(7278), 9, + ACTIONS(10693), 1, + sym_integer_literal, + ACTIONS(10695), 1, + anon_sym_DQUOTE, + STATE(7761), 1, + sym_string_literal, + STATE(7284), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777198,7 +769111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137294] = 14, + [138548] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777219,13 +769132,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(6739), 1, anon_sym_COMMA, - ACTIONS(6160), 1, - anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7279), 9, + ACTIONS(10697), 1, + anon_sym_RPAREN, + STATE(7103), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7285), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777235,7 +769148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137345] = 14, + [138599] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777256,13 +769169,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3113), 1, - anon_sym_RBRACE, - ACTIONS(10164), 1, + ACTIONS(10081), 1, anon_sym_COMMA, - STATE(7304), 1, - aux_sym_initializer_expression_repeat1, - STATE(7280), 9, + ACTIONS(10699), 1, + anon_sym_RPAREN, + STATE(7321), 1, + aux_sym_tuple_expression_repeat1, + STATE(7286), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777272,7 +769185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137396] = 14, + [138650] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777293,13 +769206,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(6739), 1, anon_sym_COMMA, - ACTIONS(10166), 1, - anon_sym_RBRACK, - STATE(7301), 1, - aux_sym_type_argument_list_repeat1, - STATE(7281), 9, + ACTIONS(10701), 1, + anon_sym_RPAREN, + STATE(7103), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7287), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777309,7 +769222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137447] = 14, + [138701] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777330,13 +769243,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8236), 1, - anon_sym_RBRACK, - ACTIONS(10168), 1, + ACTIONS(6739), 1, anon_sym_COMMA, - STATE(7253), 1, - aux_sym_global_attribute_repeat1, - STATE(7282), 9, + ACTIONS(10703), 1, + anon_sym_RPAREN, + STATE(7103), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7288), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777346,7 +769259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137498] = 14, + [138752] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777367,13 +769280,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, + ACTIONS(6889), 3, anon_sym_COMMA, - ACTIONS(10170), 1, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(7244), 1, - aux_sym_tuple_type_repeat1, - STATE(7283), 9, + STATE(7289), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777383,7 +769294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137549] = 14, + [138799] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777404,13 +769315,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9609), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - ACTIONS(10172), 1, - anon_sym_RBRACE, - STATE(7233), 1, - aux_sym__with_body_repeat1, - STATE(7284), 9, + ACTIONS(10705), 1, + anon_sym_RPAREN, + STATE(7333), 1, + aux_sym_tuple_type_repeat1, + STATE(7290), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777420,7 +769331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137600] = 14, + [138850] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777441,13 +769352,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9713), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10174), 1, - anon_sym_RPAREN, - STATE(7168), 1, - aux_sym_tuple_expression_repeat1, - STATE(7285), 9, + ACTIONS(10707), 1, + anon_sym_GT, + STATE(7295), 1, + aux_sym_type_argument_list_repeat2, + STATE(7291), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777457,7 +769368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137651] = 14, + [138901] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777478,13 +769389,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10176), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10178), 1, + ACTIONS(10709), 1, anon_sym_RBRACK, - STATE(7203), 1, - aux_sym_attribute_list_repeat1, - STATE(7286), 9, + STATE(7312), 1, + aux_sym_type_argument_list_repeat1, + STATE(7292), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777494,7 +769405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137702] = 14, + [138952] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777515,13 +769426,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9713), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10180), 1, - anon_sym_RPAREN, - STATE(7168), 1, - aux_sym_tuple_expression_repeat1, - STATE(7287), 9, + ACTIONS(10711), 1, + anon_sym_GT, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7293), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777531,7 +769442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137753] = 14, + [139003] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777552,13 +769463,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10713), 3, anon_sym_COMMA, - ACTIONS(10182), 1, - anon_sym_GT, - STATE(7126), 1, - aux_sym_type_argument_list_repeat2, - STATE(7288), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(7294), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777568,7 +769477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137804] = 14, + [139050] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777589,13 +769498,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10186), 1, - anon_sym_RBRACK, - STATE(7224), 1, - aux_sym_attribute_list_repeat1, - STATE(7289), 9, + ACTIONS(10715), 1, + anon_sym_GT, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7295), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777605,7 +769514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137855] = 14, + [139101] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777626,13 +769535,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9602), 1, + ACTIONS(10717), 1, anon_sym_COMMA, - ACTIONS(10188), 1, - anon_sym_RPAREN, - STATE(7335), 1, - aux_sym_argument_list_repeat1, - STATE(7290), 9, + ACTIONS(10720), 1, + anon_sym_RBRACK, + STATE(7296), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777642,7 +769549,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137906] = 14, + aux_sym_bracketed_parameter_list_repeat1, + [139150] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777663,13 +769571,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9609), 1, - anon_sym_COMMA, - ACTIONS(10190), 1, - anon_sym_RBRACE, - STATE(7230), 1, - aux_sym__with_body_repeat1, - STATE(7291), 9, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(7972), 1, + sym_declaration_list, + STATE(7297), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777679,7 +769587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137957] = 12, + [139201] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777700,11 +769608,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10192), 3, - anon_sym_disable, - anon_sym_restore, - anon_sym_enable, - STATE(7292), 9, + ACTIONS(3113), 1, + anon_sym_RBRACE, + ACTIONS(10722), 1, + anon_sym_COMMA, + STATE(7355), 1, + aux_sym_initializer_expression_repeat1, + STATE(7298), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777714,7 +769624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138004] = 14, + [139252] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777735,13 +769645,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9618), 1, - anon_sym_COMMA, - ACTIONS(10194), 1, - anon_sym_RPAREN, - STATE(7249), 1, - aux_sym_parameter_list_repeat1, - STATE(7293), 9, + ACTIONS(10724), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(7299), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777751,7 +769659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138055] = 14, + [139299] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777772,13 +769680,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2469), 1, - anon_sym_RBRACE, - ACTIONS(10196), 1, - anon_sym_COMMA, - STATE(7246), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7294), 9, + ACTIONS(9214), 1, + anon_sym_LBRACE, + ACTIONS(10726), 1, + anon_sym_SEMI, + STATE(2895), 1, + sym_accessor_list, + STATE(7300), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777788,7 +769696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138106] = 14, + [139350] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777809,13 +769717,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10198), 1, - anon_sym_COMMA, - ACTIONS(10200), 1, - anon_sym_RBRACE, - STATE(7267), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7295), 9, + ACTIONS(10728), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(7301), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777825,7 +769731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138157] = 12, + [139397] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777846,11 +769752,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10202), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7296), 9, + ACTIONS(2923), 1, + anon_sym_COMMA, + ACTIONS(6713), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7302), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777860,7 +769768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138204] = 14, + [139448] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777881,13 +769789,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10204), 1, - anon_sym_COMMA, - ACTIONS(10206), 1, - anon_sym_RBRACK, - STATE(7176), 1, - aux_sym_calling_convention_repeat1, - STATE(7297), 9, + ACTIONS(10730), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_when, + STATE(7303), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777897,7 +769803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138255] = 13, + [139495] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777918,11 +769824,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10208), 1, + ACTIONS(6739), 1, anon_sym_COMMA, - ACTIONS(10211), 1, + ACTIONS(10732), 1, anon_sym_RPAREN, - STATE(7298), 10, + STATE(7103), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7304), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777932,8 +769840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_tuple_pattern_repeat1, - [138304] = 14, + [139546] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777954,13 +769861,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10213), 1, - anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7299), 9, + ACTIONS(10734), 1, + anon_sym_GT, + STATE(7308), 1, + aux_sym_type_argument_list_repeat2, + STATE(7305), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777970,7 +769877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138355] = 14, + [139597] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777991,13 +769898,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10215), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10217), 1, - anon_sym_RBRACE, - STATE(7342), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7300), 9, + ACTIONS(10736), 1, + anon_sym_GT, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7306), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778007,7 +769914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138406] = 14, + [139648] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778028,49 +769935,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10091), 1, anon_sym_COMMA, - ACTIONS(10219), 1, - anon_sym_RBRACK, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7301), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [138457] = 13, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(10221), 1, - aux_sym_preproc_if_token2, - ACTIONS(10223), 2, - anon_sym_annotations, - anon_sym_warnings, - STATE(7302), 9, + ACTIONS(10738), 1, + anon_sym_RPAREN, + STATE(7365), 1, + aux_sym_argument_list_repeat1, + STATE(7307), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778080,7 +769951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138506] = 14, + [139699] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778101,13 +769972,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10225), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10227), 1, - anon_sym_RBRACE, - STATE(7140), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7303), 9, + ACTIONS(10740), 1, + anon_sym_GT, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7308), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778117,7 +769988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138557] = 13, + [139750] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778138,11 +770009,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(10742), 3, anon_sym_RBRACE, - ACTIONS(10229), 1, - anon_sym_COMMA, - STATE(7304), 10, + anon_sym_case, + anon_sym_default, + STATE(7309), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778152,8 +770023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_initializer_expression_repeat1, - [138606] = 14, + [139797] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778174,13 +770044,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9632), 1, + ACTIONS(10744), 1, anon_sym_COMMA, - ACTIONS(10232), 1, + ACTIONS(10747), 1, anon_sym_RPAREN, - STATE(7080), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7305), 9, + STATE(7310), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778190,7 +770058,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138657] = 14, + aux_sym_parameter_list_repeat1, + [139846] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778211,13 +770080,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10234), 1, + ACTIONS(10749), 1, anon_sym_COMMA, - ACTIONS(10236), 1, + ACTIONS(10751), 1, anon_sym_RBRACE, - STATE(7118), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7306), 9, + STATE(7363), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7311), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778227,7 +770096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138708] = 14, + [139897] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778248,13 +770117,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10102), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10238), 1, - anon_sym_RPAREN, - STATE(7256), 1, - aux_sym_attribute_argument_list_repeat1, - STATE(7307), 9, + ACTIONS(10753), 1, + anon_sym_RBRACK, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7312), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778264,7 +770133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138759] = 14, + [139948] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778285,13 +770154,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(6915), 1, anon_sym_COMMA, - ACTIONS(10240), 1, - anon_sym_GT, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7308), 9, + ACTIONS(10755), 1, + anon_sym_SEMI, + STATE(7210), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7313), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778301,7 +770170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138810] = 13, + [139999] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778322,11 +770191,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10242), 1, - anon_sym_SEMI, - ACTIONS(10244), 1, - anon_sym_COMMA, - STATE(7309), 10, + ACTIONS(10757), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(7314), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778336,8 +770205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_variable_declaration_repeat1, - [138859] = 14, + [140046] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778358,13 +770226,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9609), 1, - anon_sym_COMMA, - ACTIONS(10247), 1, - anon_sym_RBRACE, - STATE(7371), 1, - aux_sym__with_body_repeat1, - STATE(7310), 9, + ACTIONS(10759), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(7315), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778374,7 +770240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138910] = 14, + [140093] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778395,13 +770261,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10249), 1, - anon_sym_COMMA, - ACTIONS(10251), 1, - anon_sym_RBRACK, - STATE(7224), 1, - aux_sym_attribute_list_repeat1, - STATE(7311), 9, + ACTIONS(7536), 1, + anon_sym_LBRACE, + ACTIONS(10179), 1, + anon_sym_LPAREN, + STATE(2131), 1, + sym_block, + STATE(7316), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778411,7 +770277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138961] = 14, + [140144] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778432,13 +770298,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - ACTIONS(10253), 1, - anon_sym_GT, - STATE(7288), 1, - aux_sym_type_argument_list_repeat2, - STATE(7312), 9, + ACTIONS(10761), 1, + anon_sym_RPAREN, + STATE(7274), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778448,7 +770314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139012] = 12, + [140195] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778469,11 +770335,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10255), 3, + ACTIONS(10763), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(7313), 9, + ACTIONS(10765), 1, + anon_sym_RBRACE, + STATE(7213), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7318), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778483,7 +770351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139059] = 14, + [140246] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778504,13 +770372,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(10008), 1, + anon_sym_RPAREN, + ACTIONS(10767), 1, anon_sym_COMMA, - ACTIONS(10257), 1, - anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7314), 9, + STATE(7319), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778520,7 +770388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139110] = 14, + [140297] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778541,13 +770409,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10091), 1, anon_sym_COMMA, - ACTIONS(6071), 1, - anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7315), 9, + ACTIONS(10770), 1, + anon_sym_RPAREN, + STATE(7221), 1, + aux_sym_argument_list_repeat1, + STATE(7320), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778557,7 +770425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139161] = 14, + [140348] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778578,13 +770446,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10259), 1, + ACTIONS(10772), 1, anon_sym_COMMA, - ACTIONS(10261), 1, - anon_sym_RBRACK, - STATE(7349), 1, - aux_sym_attribute_list_repeat1, - STATE(7316), 9, + ACTIONS(10775), 1, + anon_sym_RPAREN, + STATE(7321), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778594,34 +770460,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139212] = 14, - ACTIONS(8466), 1, + aux_sym_tuple_expression_repeat1, + [140397] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10263), 1, - anon_sym_DQUOTE, - ACTIONS(10265), 1, - aux_sym_preproc_if_token2, - STATE(8007), 1, - sym_string_literal, - STATE(7317), 9, + ACTIONS(10115), 1, + anon_sym_COMMA, + ACTIONS(10777), 1, + anon_sym_RBRACE, + STATE(7119), 1, + aux_sym__with_body_repeat1, + STATE(7322), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778631,7 +770498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139263] = 14, + [140448] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778652,13 +770519,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - ACTIONS(10267), 1, - anon_sym_GT, - STATE(7353), 1, - aux_sym_type_argument_list_repeat2, - STATE(7318), 9, + ACTIONS(10779), 1, + anon_sym_RPAREN, + STATE(7317), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7323), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778668,7 +770535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139314] = 14, + [140499] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778689,13 +770556,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6889), 1, - anon_sym_LBRACE, - ACTIONS(9562), 1, - anon_sym_LPAREN, - STATE(1956), 1, - sym_block, - STATE(7319), 9, + ACTIONS(10781), 1, + anon_sym_COMMA, + ACTIONS(10783), 1, + anon_sym_RBRACK, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7324), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778705,7 +770572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139365] = 14, + [140550] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778726,13 +770593,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10269), 1, + ACTIONS(10785), 1, anon_sym_COMMA, - ACTIONS(10271), 1, + ACTIONS(10787), 1, anon_sym_RBRACK, - STATE(7082), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7320), 9, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778742,7 +770609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139416] = 14, + [140601] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778763,13 +770630,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(2449), 1, + anon_sym_RBRACE, + ACTIONS(10789), 1, anon_sym_COMMA, - ACTIONS(10273), 1, - anon_sym_GT, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7321), 9, + STATE(7100), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7326), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778779,7 +770646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139467] = 14, + [140652] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778800,13 +770667,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10275), 1, - sym_integer_literal, - ACTIONS(10277), 1, - anon_sym_DQUOTE, - STATE(7728), 1, - sym_string_literal, - STATE(7322), 9, + ACTIONS(5678), 1, + anon_sym_COMMA, + ACTIONS(10791), 1, + anon_sym_RBRACK, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7327), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778816,7 +770683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139518] = 14, + [140703] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778837,13 +770704,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10118), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10279), 1, + ACTIONS(10793), 1, anon_sym_GT, - STATE(7268), 1, - aux_sym_type_parameter_list_repeat1, - STATE(7323), 9, + STATE(7335), 1, + aux_sym_type_argument_list_repeat2, + STATE(7328), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778853,7 +770720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139569] = 14, + [140754] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778874,13 +770741,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3107), 1, - anon_sym_RBRACE, - ACTIONS(10281), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - STATE(7304), 1, - aux_sym_initializer_expression_repeat1, - STATE(7324), 9, + ACTIONS(10795), 1, + anon_sym_GT, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7329), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778890,7 +770757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139620] = 14, + [140805] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778911,13 +770778,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7425), 1, - anon_sym_LBRACE, - ACTIONS(9562), 1, - anon_sym_LPAREN, - STATE(2133), 1, - sym_block, - STATE(7325), 9, + ACTIONS(10797), 1, + anon_sym_COMMA, + ACTIONS(10799), 1, + anon_sym_RBRACK, + STATE(7352), 1, + aux_sym_attribute_list_repeat1, + STATE(7330), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778927,7 +770794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139671] = 12, + [140856] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778948,11 +770815,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6301), 3, + ACTIONS(2923), 1, anon_sym_COMMA, + ACTIONS(6859), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(7326), 9, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7331), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778962,7 +770831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139718] = 13, + [140907] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778983,11 +770852,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10242), 1, - anon_sym_RPAREN, - ACTIONS(10283), 1, + ACTIONS(10801), 1, anon_sym_COMMA, - STATE(7327), 10, + ACTIONS(10803), 1, + anon_sym_RBRACK, + STATE(7245), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778997,8 +770868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_variable_declaration_repeat1, - [139767] = 14, + [140958] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779019,13 +770889,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10204), 1, + ACTIONS(10805), 1, anon_sym_COMMA, - ACTIONS(10286), 1, - anon_sym_RBRACK, - STATE(7297), 1, - aux_sym_calling_convention_repeat1, - STATE(7328), 9, + ACTIONS(10808), 1, + anon_sym_RPAREN, + STATE(7333), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779035,7 +770903,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139818] = 14, + aux_sym_tuple_type_repeat1, + [141007] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779056,13 +770925,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7725), 1, - anon_sym_STAR, - ACTIONS(9039), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - STATE(7329), 9, + ACTIONS(10810), 1, + anon_sym_GT, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779072,7 +770941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139869] = 14, + [141058] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779093,13 +770962,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6277), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10288), 1, - anon_sym_RPAREN, - STATE(7106), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7330), 9, + ACTIONS(10812), 1, + anon_sym_GT, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7335), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779109,7 +770978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139920] = 14, + [141109] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779130,13 +770999,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_LBRACK, - ACTIONS(7723), 1, - anon_sym_QMARK, - ACTIONS(9039), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - STATE(7331), 9, + ACTIONS(10814), 1, + anon_sym_RBRACK, + STATE(7327), 1, + aux_sym_type_argument_list_repeat1, + STATE(7336), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779146,7 +771015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139971] = 14, + [141160] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779167,13 +771036,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - ACTIONS(10290), 1, - anon_sym_RBRACK, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7332), 9, + ACTIONS(10816), 1, + anon_sym_RBRACE, + STATE(7322), 1, + aux_sym__with_body_repeat1, + STATE(7337), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779183,7 +771052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140022] = 14, + [141211] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779204,13 +771073,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10292), 1, + ACTIONS(10818), 1, anon_sym_COMMA, - ACTIONS(10294), 1, - anon_sym_RBRACK, - STATE(7224), 1, - aux_sym_attribute_list_repeat1, - STATE(7333), 9, + ACTIONS(10820), 1, + anon_sym_RBRACE, + STATE(7233), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7338), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779220,7 +771089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140073] = 14, + [141262] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779241,13 +771110,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(6029), 1, - anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7334), 9, + ACTIONS(10822), 1, + anon_sym_GT, + STATE(7342), 1, + aux_sym_type_argument_list_repeat2, + STATE(7339), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779257,7 +771126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140124] = 14, + [141313] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779278,13 +771147,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9602), 1, + ACTIONS(10091), 1, anon_sym_COMMA, - ACTIONS(10296), 1, + ACTIONS(10824), 1, anon_sym_RPAREN, - STATE(7217), 1, + STATE(7235), 1, aux_sym_argument_list_repeat1, - STATE(7335), 9, + STATE(7340), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779294,7 +771163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140175] = 14, + [141364] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779315,13 +771184,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10298), 1, + ACTIONS(10826), 1, anon_sym_GT, - STATE(7126), 1, - aux_sym_type_argument_list_repeat2, - STATE(7336), 9, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7341), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779331,7 +771200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140226] = 14, + [141415] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779352,13 +771221,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10300), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10302), 1, - anon_sym_RBRACK, - STATE(7133), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7337), 9, + ACTIONS(10828), 1, + anon_sym_GT, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7342), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779368,7 +771237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140277] = 14, + [141466] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779389,13 +771258,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9622), 1, + ACTIONS(3101), 1, + anon_sym_RBRACE, + ACTIONS(10830), 1, anon_sym_COMMA, - ACTIONS(10304), 1, - anon_sym_RBRACK, - STATE(7075), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(7338), 9, + STATE(7355), 1, + aux_sym_initializer_expression_repeat1, + STATE(7343), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779405,7 +771274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140328] = 14, + [141517] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779426,13 +771295,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9622), 1, + ACTIONS(9608), 1, + anon_sym_RPAREN, + ACTIONS(9939), 1, + anon_sym_EQ, + ACTIONS(10832), 1, anon_sym_COMMA, - ACTIONS(10306), 1, - anon_sym_RBRACK, - STATE(7136), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(7339), 9, + STATE(7344), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779442,7 +771311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140379] = 14, + [141568] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779463,13 +771332,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10308), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10310), 1, - anon_sym_RBRACK, - STATE(7199), 1, - aux_sym_attribute_list_repeat1, - STATE(7340), 9, + ACTIONS(10835), 1, + anon_sym_GT, + STATE(7334), 1, + aux_sym_type_argument_list_repeat2, + STATE(7345), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779479,7 +771348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140430] = 13, + [141619] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779500,11 +771369,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10054), 1, - anon_sym_RBRACE, - ACTIONS(10312), 1, + ACTIONS(10837), 1, anon_sym_COMMA, - STATE(7341), 10, + ACTIONS(10839), 1, + anon_sym_RBRACE, + STATE(7326), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7346), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779514,8 +771385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_positional_pattern_clause_repeat1, - [140479] = 14, + [141670] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779536,13 +771406,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10315), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - ACTIONS(10317), 1, - anon_sym_RBRACE, - STATE(7140), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7342), 9, + ACTIONS(10841), 1, + anon_sym_RPAREN, + STATE(7333), 1, + aux_sym_tuple_type_repeat1, + STATE(7347), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779552,7 +771422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140530] = 14, + [141721] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779573,13 +771443,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10319), 1, + ACTIONS(10081), 1, anon_sym_COMMA, - ACTIONS(10321), 1, - anon_sym_RBRACE, - STATE(7303), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7343), 9, + ACTIONS(10843), 1, + anon_sym_RPAREN, + STATE(7321), 1, + aux_sym_tuple_expression_repeat1, + STATE(7348), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779589,7 +771459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140581] = 12, + [141772] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779610,11 +771480,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7344), 9, + ACTIONS(5678), 1, + anon_sym_COMMA, + ACTIONS(10845), 1, + anon_sym_GT, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7349), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779624,7 +771496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140628] = 14, + [141823] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779645,13 +771517,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10847), 1, anon_sym_COMMA, - ACTIONS(10325), 1, + ACTIONS(10849), 1, anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7345), 9, + STATE(7147), 1, + aux_sym_attribute_list_repeat1, + STATE(7350), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779661,7 +771533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140679] = 14, + [141874] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779682,13 +771554,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9602), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10327), 1, - anon_sym_RPAREN, - STATE(7217), 1, - aux_sym_argument_list_repeat1, - STATE(7346), 9, + ACTIONS(10851), 1, + anon_sym_GT, + STATE(7354), 1, + aux_sym_type_argument_list_repeat2, + STATE(7351), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779698,7 +771570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140730] = 14, + [141925] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779719,13 +771591,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(10329), 1, - anon_sym_SEMI, - STATE(3042), 1, - sym_accessor_list, - STATE(7347), 9, + ACTIONS(10853), 1, + anon_sym_COMMA, + ACTIONS(10855), 1, + anon_sym_RBRACK, + STATE(7258), 1, + aux_sym_attribute_list_repeat1, + STATE(7352), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779735,7 +771607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140781] = 14, + [141976] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779756,13 +771628,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10331), 1, - anon_sym_RPAREN, - STATE(7244), 1, - aux_sym_tuple_type_repeat1, - STATE(7348), 9, + ACTIONS(10857), 1, + anon_sym_GT, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7353), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779772,7 +771644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140832] = 14, + [142027] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779793,13 +771665,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10333), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10335), 1, - anon_sym_RBRACK, - STATE(7224), 1, - aux_sym_attribute_list_repeat1, - STATE(7349), 9, + ACTIONS(10859), 1, + anon_sym_GT, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7354), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779809,7 +771681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140883] = 14, + [142078] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779830,13 +771702,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10337), 1, + ACTIONS(7238), 1, + anon_sym_RBRACE, + ACTIONS(10861), 1, anon_sym_COMMA, - ACTIONS(10339), 1, - anon_sym_RBRACK, - STATE(7282), 1, - aux_sym_global_attribute_repeat1, - STATE(7350), 9, + STATE(7355), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779846,7 +771716,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140934] = 14, + aux_sym_initializer_expression_repeat1, + [142127] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779867,13 +771738,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3115), 1, - anon_sym_RBRACE, - ACTIONS(10341), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - STATE(7304), 1, - aux_sym_initializer_expression_repeat1, - STATE(7351), 9, + ACTIONS(10864), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7356), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779883,7 +771754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140985] = 14, + [142178] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779904,13 +771775,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(10866), 1, + anon_sym_EQ, + ACTIONS(10030), 2, anon_sym_COMMA, - ACTIONS(10343), 1, - anon_sym_GT, - STATE(6981), 1, - aux_sym_type_argument_list_repeat1, - STATE(7352), 9, + anon_sym_RBRACE, + STATE(7357), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779920,7 +771790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141036] = 14, + [142227] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779941,13 +771811,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10345), 1, + ACTIONS(10868), 1, anon_sym_GT, - STATE(7126), 1, + STATE(7362), 1, aux_sym_type_argument_list_repeat2, - STATE(7353), 9, + STATE(7358), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779957,7 +771827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141087] = 12, + [142278] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779978,11 +771848,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10347), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(7354), 9, + ACTIONS(5678), 1, + anon_sym_COMMA, + ACTIONS(10870), 1, + anon_sym_GT, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7359), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779992,7 +771864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141134] = 14, + [142329] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780013,13 +771885,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10872), 1, anon_sym_COMMA, - ACTIONS(10349), 1, - anon_sym_GT, - STATE(7336), 1, - aux_sym_type_argument_list_repeat2, - STATE(7355), 9, + ACTIONS(10874), 1, + anon_sym_RBRACE, + STATE(7232), 1, + aux_sym_enum_member_declaration_list_repeat1, + STATE(7360), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780029,7 +771901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141185] = 14, + [142380] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780050,13 +771922,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10351), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10353), 1, + ACTIONS(10876), 1, anon_sym_RBRACK, - STATE(7082), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7356), 9, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7361), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780066,7 +771938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141236] = 14, + [142431] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780087,13 +771959,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3073), 1, - anon_sym_RBRACE, - ACTIONS(10355), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - STATE(7304), 1, - aux_sym_initializer_expression_repeat1, - STATE(7357), 9, + ACTIONS(10878), 1, + anon_sym_GT, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7362), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780103,7 +771975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141287] = 13, + [142482] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780124,12 +771996,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10357), 1, - anon_sym_EQ, - ACTIONS(9417), 2, + ACTIONS(10880), 1, anon_sym_COMMA, + ACTIONS(10882), 1, anon_sym_RBRACE, - STATE(7358), 9, + STATE(7213), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7363), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780139,7 +772012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141336] = 14, + [142533] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780160,13 +772033,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9632), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10359), 1, - anon_sym_RPAREN, - STATE(7080), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7359), 9, + ACTIONS(10884), 1, + anon_sym_RBRACK, + STATE(7361), 1, + aux_sym_type_argument_list_repeat1, + STATE(7364), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780176,7 +772049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141387] = 14, + [142584] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780197,13 +772070,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, + ACTIONS(10091), 1, anon_sym_COMMA, - ACTIONS(10361), 1, + ACTIONS(10886), 1, anon_sym_RPAREN, - STATE(7244), 1, - aux_sym_tuple_type_repeat1, - STATE(7360), 9, + STATE(7221), 1, + aux_sym_argument_list_repeat1, + STATE(7365), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780213,7 +772086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141438] = 14, + [142635] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780234,13 +772107,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10363), 1, + ACTIONS(10888), 1, anon_sym_COMMA, - ACTIONS(10365), 1, + ACTIONS(10890), 1, anon_sym_RBRACK, - STATE(7082), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7361), 9, + STATE(7258), 1, + aux_sym_attribute_list_repeat1, + STATE(7366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780250,7 +772123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141489] = 14, + [142686] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780271,13 +772144,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(9437), 1, - anon_sym_RPAREN, - ACTIONS(10367), 1, - anon_sym_COMMA, - STATE(7362), 9, + ACTIONS(6234), 1, + anon_sym_LBRACE, + STATE(1932), 1, + sym_block, + STATE(7367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780287,7 +772158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141540] = 14, + [142734] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780308,13 +772179,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9602), 1, - anon_sym_COMMA, - ACTIONS(10370), 1, - anon_sym_RPAREN, - STATE(7167), 1, - aux_sym_argument_list_repeat1, - STATE(7363), 9, + ACTIONS(10892), 1, + anon_sym_LBRACE, + STATE(4259), 1, + sym__with_body, + STATE(7368), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [142782] = 13, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(10894), 1, + aux_sym_preproc_if_token2, + ACTIONS(10896), 1, + sym_preproc_arg, + STATE(7369), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780324,7 +772228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141591] = 14, + [142830] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780345,13 +772249,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8165), 1, - anon_sym_RBRACE, - ACTIONS(10372), 1, - anon_sym_COMMA, - STATE(7274), 1, - aux_sym_enum_member_declaration_list_repeat1, - STATE(7364), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6721), 1, + sym_parameter_list, + STATE(7370), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780361,7 +772263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141642] = 14, + [142878] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780382,13 +772284,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, - anon_sym_COMMA, - ACTIONS(6211), 1, - anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7365), 9, + ACTIONS(10898), 1, + anon_sym_warning, + ACTIONS(10900), 1, + anon_sym_checksum, + STATE(7371), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780398,7 +772298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141693] = 14, + [142926] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780419,13 +772319,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10374), 1, - anon_sym_COMMA, - ACTIONS(10376), 1, - anon_sym_RBRACE, - STATE(7140), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7366), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6717), 1, + sym_parameter_list, + STATE(7372), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780435,7 +772333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141744] = 14, + [142974] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780456,13 +772354,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5979), 1, - anon_sym_COMMA, - ACTIONS(10378), 1, - anon_sym_RBRACK, - STATE(7332), 1, - aux_sym_type_argument_list_repeat1, - STATE(7367), 9, + ACTIONS(1703), 1, + anon_sym_LBRACE, + STATE(3383), 1, + sym_initializer_expression, + STATE(7373), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780472,7 +772368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141795] = 14, + [143022] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780493,13 +772389,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, - anon_sym_COMMA, - ACTIONS(10380), 1, - anon_sym_RPAREN, - STATE(7244), 1, - aux_sym_tuple_type_repeat1, - STATE(7368), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6749), 1, + sym_parameter_list, + STATE(7374), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780509,7 +772403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141846] = 14, + [143070] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780530,13 +772424,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10382), 1, - anon_sym_COMMA, - ACTIONS(10384), 1, - anon_sym_RBRACK, - STATE(7289), 1, - aux_sym_attribute_list_repeat1, - STATE(7369), 9, + ACTIONS(10695), 1, + anon_sym_DQUOTE, + STATE(8066), 1, + sym_string_literal, + STATE(7375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780546,7 +772438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141897] = 14, + [143118] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780567,13 +772459,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10386), 1, - anon_sym_COMMA, - ACTIONS(10388), 1, - anon_sym_RBRACK, - STATE(7361), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7370), 9, + ACTIONS(6063), 1, + anon_sym_LPAREN, + STATE(7207), 1, + sym_argument_list, + STATE(7376), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780583,7 +772473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141948] = 14, + [143166] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780604,13 +772494,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9609), 1, + ACTIONS(4341), 2, anon_sym_COMMA, - ACTIONS(10390), 1, - anon_sym_RBRACE, - STATE(7233), 1, - aux_sym__with_body_repeat1, - STATE(7371), 9, + anon_sym_GT, + STATE(7377), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780620,7 +772507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141999] = 14, + [143212] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780641,13 +772528,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9632), 1, - anon_sym_COMMA, - ACTIONS(10392), 1, - anon_sym_RPAREN, - STATE(7359), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7372), 9, + ACTIONS(1527), 1, + anon_sym_LBRACE, + STATE(4713), 1, + sym_initializer_expression, + STATE(7378), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780657,7 +772542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142050] = 13, + [143260] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780678,11 +772563,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10394), 1, - anon_sym_LPAREN, - STATE(7547), 1, - sym_tuple_expression, - STATE(7373), 9, + ACTIONS(1527), 1, + anon_sym_LBRACE, + STATE(4536), 1, + sym_initializer_expression, + STATE(7379), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780692,7 +772577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142098] = 12, + [143308] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780713,10 +772598,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_while, - anon_sym_else, - STATE(7374), 9, + ACTIONS(9666), 1, + anon_sym_LBRACE, + STATE(4554), 1, + sym_block, + STATE(7380), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780726,32 +772612,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142144] = 13, - ACTIONS(8466), 1, + [143356] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(10396), 1, - aux_sym_preproc_if_token2, - ACTIONS(10398), 1, - sym_preproc_arg, - STATE(7375), 9, + ACTIONS(10902), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7381), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780761,7 +772646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142192] = 13, + [143402] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780782,11 +772667,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9713), 1, + ACTIONS(10904), 2, anon_sym_COMMA, - STATE(7135), 1, - aux_sym_tuple_expression_repeat1, - STATE(7376), 9, + anon_sym_GT, + STATE(7382), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780796,7 +772680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142240] = 13, + [143448] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780817,11 +772701,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10400), 1, - anon_sym_warning, - ACTIONS(10402), 1, - anon_sym_checksum, - STATE(7377), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6587), 1, + sym_parameter_list, + STATE(7383), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780831,7 +772715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142288] = 13, + [143496] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780852,11 +772736,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, + ACTIONS(10906), 2, anon_sym_COMMA, - STATE(7119), 1, - aux_sym_tuple_type_repeat1, - STATE(7378), 9, + anon_sym_RPAREN, + STATE(7384), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780866,7 +772749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142336] = 12, + [143542] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780887,10 +772770,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10404), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7379), 9, + ACTIONS(1527), 1, + anon_sym_LBRACE, + STATE(4527), 1, + sym_initializer_expression, + STATE(7385), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780900,7 +772784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142382] = 13, + [143590] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780921,11 +772805,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(7556), 1, - sym_parameter_list, - STATE(7380), 9, + ACTIONS(6227), 1, + anon_sym_LBRACE, + STATE(2047), 1, + sym_block, + STATE(7386), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780935,31 +772819,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142430] = 12, - ACTIONS(8466), 1, + [143638] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10406), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7381), 9, + ACTIONS(145), 1, + anon_sym_DQUOTE, + STATE(7552), 1, + sym_string_literal, + STATE(7387), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780969,7 +772854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142476] = 12, + [143686] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780990,10 +772875,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10408), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(7382), 9, + ACTIONS(9899), 1, + anon_sym_LBRACE, + STATE(8036), 1, + sym_enum_member_declaration_list, + STATE(7388), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781003,7 +772889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142522] = 13, + [143734] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781024,11 +772910,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10410), 1, - anon_sym_LBRACE, - STATE(1974), 1, - sym_switch_body, - STATE(7383), 9, + ACTIONS(10081), 1, + anon_sym_COMMA, + STATE(7055), 1, + aux_sym_tuple_expression_repeat1, + STATE(7389), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781038,7 +772924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142570] = 13, + [143782] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781059,11 +772945,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1611), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - STATE(5787), 1, + STATE(3207), 1, sym_initializer_expression, - STATE(7384), 9, + STATE(7390), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781073,7 +772959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142618] = 13, + [143830] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781094,11 +772980,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9150), 1, - anon_sym_LBRACE, - STATE(5736), 1, - sym_block, - STATE(7385), 9, + ACTIONS(10085), 1, + anon_sym_COMMA, + STATE(7056), 1, + aux_sym_tuple_type_repeat1, + STATE(7391), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781108,7 +772994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142666] = 13, + [143878] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781129,11 +773015,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10412), 1, - anon_sym_LBRACK, - STATE(5608), 1, - sym_array_rank_specifier, - STATE(7386), 9, + ACTIONS(10908), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7392), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781143,7 +773028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142714] = 13, + [143924] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781164,11 +773049,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9329), 1, - anon_sym_LBRACE, - STATE(5018), 1, - sym_block, - STATE(7387), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6714), 1, + sym_parameter_list, + STATE(7393), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781178,7 +773063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142762] = 13, + [143972] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781201,9 +773086,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(1703), 1, anon_sym_LBRACE, - STATE(4110), 1, + STATE(3386), 1, sym_initializer_expression, - STATE(7388), 9, + STATE(7394), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781213,7 +773098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142810] = 13, + [144020] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781234,11 +773119,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10414), 1, - anon_sym_LBRACE, - STATE(5051), 1, - sym__switch_expression_body, - STATE(7389), 9, + ACTIONS(3522), 2, + anon_sym_while, + anon_sym_else, + STATE(7395), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781248,7 +773132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142858] = 13, + [144066] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781269,11 +773153,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6755), 1, - sym_parameter_list, - STATE(7390), 9, + ACTIONS(10910), 1, + anon_sym_LBRACE, + STATE(4458), 1, + sym__with_body, + STATE(7396), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781283,7 +773167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142906] = 13, + [144114] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781304,11 +773188,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1611), 1, + ACTIONS(10912), 1, anon_sym_LBRACE, - STATE(5691), 1, - sym_initializer_expression, - STATE(7391), 9, + STATE(5304), 1, + sym__with_body, + STATE(7397), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [144162] = 13, + ACTIONS(5703), 1, + aux_sym_preproc_if_token2, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(10914), 1, + sym_string_literal_encoding, + STATE(7398), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781318,7 +773237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142954] = 13, + [144210] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781339,11 +773258,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10416), 1, + ACTIONS(10916), 1, anon_sym_LBRACE, - STATE(5045), 1, - sym__with_body, - STATE(7392), 9, + STATE(7521), 1, + sym_switch_body, + STATE(7399), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781353,7 +773272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143002] = 12, + [144258] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781374,10 +773293,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10418), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7393), 9, + ACTIONS(10918), 1, + anon_sym_LPAREN, + STATE(75), 1, + sym__for_statement_conditions, + STATE(7400), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [144306] = 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(10920), 1, + anon_sym_LPAREN, + STATE(7589), 1, + sym_tuple_expression, + STATE(7401), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781387,7 +773342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143048] = 13, + [144354] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781408,11 +773363,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6889), 1, + ACTIONS(10922), 1, anon_sym_LBRACE, - STATE(1954), 1, - sym_block, - STATE(7394), 9, + STATE(4544), 1, + sym__switch_expression_body, + STATE(7402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781422,7 +773377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143096] = 13, + [144402] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781443,11 +773398,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(6617), 1, + STATE(7585), 1, sym_parameter_list, - STATE(7395), 9, + STATE(7403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781457,7 +773412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143144] = 13, + [144450] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781478,11 +773433,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1611), 1, - anon_sym_LBRACE, - STATE(5674), 1, - sym_initializer_expression, - STATE(7396), 9, + ACTIONS(10924), 1, + anon_sym_LBRACK, + STATE(7024), 1, + sym_bracketed_parameter_list, + STATE(7404), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781492,7 +773447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143192] = 13, + [144498] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781513,11 +773468,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_LPAREN, - STATE(7105), 1, - sym_argument_list, - STATE(7397), 9, + ACTIONS(9666), 1, + anon_sym_LBRACE, + STATE(4610), 1, + sym_block, + STATE(7405), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781527,7 +773482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143240] = 13, + [144546] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781548,11 +773503,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6749), 1, - sym_parameter_list, - STATE(7398), 9, + ACTIONS(6227), 1, + anon_sym_LBRACE, + STATE(1940), 1, + sym_block, + STATE(7406), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781562,7 +773517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143288] = 13, + [144594] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781583,11 +773538,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1527), 1, - anon_sym_LBRACE, - STATE(5031), 1, - sym_initializer_expression, - STATE(7399), 9, + ACTIONS(10924), 1, + anon_sym_LBRACK, + STATE(7009), 1, + sym_bracketed_parameter_list, + STATE(7407), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781597,7 +773552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143336] = 13, + [144642] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781618,11 +773573,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6764), 1, - sym_parameter_list, - STATE(7400), 9, + ACTIONS(10924), 1, + anon_sym_LBRACK, + STATE(6941), 1, + sym_bracketed_parameter_list, + STATE(7408), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781632,7 +773587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143384] = 13, + [144690] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781653,11 +773608,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6777), 1, - sym_parameter_list, - STATE(7401), 9, + ACTIONS(10926), 1, + anon_sym_LBRACE, + STATE(5333), 1, + sym__switch_expression_body, + STATE(7409), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781667,7 +773622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143432] = 13, + [144738] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781688,11 +773643,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10420), 1, - anon_sym_LBRACK, - STATE(7034), 1, - sym_bracketed_parameter_list, - STATE(7402), 9, + ACTIONS(3185), 2, + anon_sym_while, + anon_sym_else, + STATE(7410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781702,7 +773656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143480] = 13, + [144784] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781723,11 +773677,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(6637), 1, + STATE(6614), 1, sym_parameter_list, - STATE(7403), 9, + STATE(7411), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781737,7 +773691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143528] = 13, + [144832] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781758,11 +773712,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10422), 1, - anon_sym_LBRACE, - STATE(2055), 1, - sym_switch_body, - STATE(7404), 9, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(10928), 1, + anon_sym_SEMI, + STATE(7412), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781772,7 +773726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143576] = 13, + [144880] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781793,11 +773747,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1527), 1, - anon_sym_LBRACE, - STATE(5025), 1, - sym_initializer_expression, - STATE(7405), 9, + ACTIONS(10930), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7413), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781807,32 +773760,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143624] = 13, - ACTIONS(3), 1, + [144926] = 13, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8001), 1, - anon_sym_DOT, - ACTIONS(10424), 1, - anon_sym_SEMI, - STATE(7406), 9, + ACTIONS(10932), 1, + aux_sym_preproc_if_token2, + ACTIONS(10934), 1, + sym_preproc_arg, + STATE(7414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781842,7 +773795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143672] = 13, + [144974] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781863,11 +773816,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(10426), 1, - anon_sym_in, - STATE(7407), 9, + ACTIONS(10198), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781877,7 +773829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143720] = 13, + [145020] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781898,11 +773850,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10420), 1, + ACTIONS(10936), 1, anon_sym_LBRACK, - STATE(7049), 1, - sym_bracketed_parameter_list, - STATE(7408), 9, + STATE(5609), 1, + sym_array_rank_specifier, + STATE(7416), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781912,7 +773864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143768] = 13, + [145068] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781933,11 +773885,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10420), 1, - anon_sym_LBRACK, - STATE(7051), 1, - sym_bracketed_parameter_list, - STATE(7409), 9, + ACTIONS(10938), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7417), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781947,7 +773898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143816] = 13, + [145114] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781968,11 +773919,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, - anon_sym_COMMA, - STATE(7348), 1, - aux_sym_tuple_type_repeat1, - STATE(7410), 9, + ACTIONS(10940), 1, + anon_sym_LBRACK, + ACTIONS(10942), 1, + anon_sym_LT, + STATE(7418), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781982,7 +773933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143864] = 13, + [145162] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782003,11 +773954,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9713), 1, + ACTIONS(10944), 2, anon_sym_COMMA, - STATE(7258), 1, - aux_sym_tuple_expression_repeat1, - STATE(7411), 9, + anon_sym_GT, + STATE(7419), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782017,31 +773967,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143912] = 12, - ACTIONS(3), 1, + [145208] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(10152), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7412), 9, + ACTIONS(10946), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7420), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782051,7 +774001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143958] = 13, + [145254] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782072,11 +774022,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10428), 1, - anon_sym_LBRACE, - STATE(5659), 1, - sym__with_body, - STATE(7413), 9, + ACTIONS(10212), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7421), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782086,7 +774035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144006] = 13, + [145300] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782107,11 +774056,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6591), 1, - sym_parameter_list, - STATE(7414), 9, + ACTIONS(10948), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7422), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782121,7 +774069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144054] = 12, + [145346] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782142,10 +774090,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10430), 2, + ACTIONS(10217), 2, anon_sym_COMMA, - anon_sym_GT, - STATE(7415), 9, + anon_sym_RPAREN, + STATE(7423), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782155,7 +774103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144100] = 12, + [145392] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782176,10 +774124,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10432), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7416), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6968), 1, + sym_parameter_list, + STATE(7424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782189,7 +774138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144146] = 13, + [145440] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782210,11 +774159,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10434), 1, - anon_sym_LBRACE, - STATE(5702), 1, - sym__switch_expression_body, - STATE(7417), 9, + ACTIONS(10231), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7425), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782224,7 +774172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144194] = 12, + [145486] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782245,10 +774193,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10436), 2, + ACTIONS(10950), 2, anon_sym_COMMA, - anon_sym_GT, - STATE(7418), 9, + anon_sym_RPAREN, + STATE(7426), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782258,31 +774206,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144240] = 12, - ACTIONS(8466), 1, + [145532] = 13, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(10438), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7419), 9, + ACTIONS(10267), 1, + aux_sym_preproc_if_token2, + ACTIONS(10952), 1, + anon_sym_COMMA, + STATE(7427), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782292,7 +774241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144286] = 13, + [145580] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782313,11 +774262,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10440), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(7426), 1, - sym_tuple_expression, - STATE(7420), 9, + STATE(7033), 1, + sym_parameter_list, + STATE(7428), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782327,7 +774276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144334] = 13, + [145628] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782348,11 +774297,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9329), 1, + ACTIONS(10954), 1, anon_sym_LBRACE, - STATE(5003), 1, - sym_block, - STATE(7421), 9, + STATE(2147), 1, + sym_switch_body, + STATE(7429), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782362,7 +774311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144382] = 13, + [145676] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782383,11 +774332,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1527), 1, - anon_sym_LBRACE, - STATE(4998), 1, - sym_initializer_expression, - STATE(7422), 9, + ACTIONS(10956), 1, + anon_sym_LBRACK, + STATE(4277), 1, + sym_array_rank_specifier, + STATE(7430), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782397,7 +774346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144430] = 12, + [145724] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782418,45 +774367,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10442), 2, + ACTIONS(10278), 2, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7423), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [144476] = 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(10444), 1, - anon_sym_LPAREN, - STATE(100), 1, - sym__for_statement_conditions, - STATE(7424), 9, + anon_sym_RBRACE, + STATE(7431), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782466,7 +774380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144524] = 12, + [145770] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782487,10 +774401,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10100), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7425), 9, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(7656), 1, + sym_declaration_list, + STATE(7432), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782500,7 +774415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144570] = 13, + [145818] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782521,11 +774436,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10410), 1, + ACTIONS(9258), 1, anon_sym_LBRACE, - STATE(1969), 1, - sym_switch_body, - STATE(7426), 9, + STATE(7655), 1, + sym_declaration_list, + STATE(7433), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782535,7 +774450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144618] = 13, + [145866] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782556,11 +774471,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9150), 1, + ACTIONS(9736), 1, anon_sym_LBRACE, - STATE(5734), 1, + STATE(5290), 1, sym_block, - STATE(7427), 9, + STATE(7434), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782570,32 +774485,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144666] = 13, - ACTIONS(8466), 1, + [145914] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10446), 1, - aux_sym_preproc_if_token2, - ACTIONS(10448), 1, - sym_preproc_arg, - STATE(7428), 9, + ACTIONS(9899), 1, + anon_sym_LBRACE, + STATE(7948), 1, + sym_enum_member_declaration_list, + STATE(7435), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782605,7 +774520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144714] = 13, + [145962] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782626,11 +774541,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4331), 1, - anon_sym_GT, - ACTIONS(9039), 1, - anon_sym_COMMA, - STATE(7429), 9, + ACTIONS(9722), 1, + anon_sym_LBRACE, + STATE(4393), 1, + sym_block, + STATE(7436), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782640,7 +774555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144762] = 13, + [146010] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782661,11 +774576,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10450), 1, - anon_sym_LBRACK, - STATE(3740), 1, - sym_array_rank_specifier, - STATE(7430), 9, + ACTIONS(3486), 2, + anon_sym_while, + anon_sym_else, + STATE(7437), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782675,7 +774589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144810] = 13, + [146056] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782696,11 +774610,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9401), 1, - anon_sym_LBRACE, - STATE(7725), 1, - sym_enum_member_declaration_list, - STATE(7431), 9, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(10958), 1, + anon_sym_SEMI, + STATE(7438), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782710,7 +774624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144858] = 12, + [146104] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782731,10 +774645,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10066), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7432), 9, + ACTIONS(10960), 1, + anon_sym_LBRACE, + STATE(4306), 1, + sym__switch_expression_body, + STATE(7439), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782744,7 +774659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144904] = 12, + [146152] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782765,10 +774680,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10031), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7433), 9, + ACTIONS(9674), 1, + anon_sym_LBRACE, + STATE(3248), 1, + sym_block, + STATE(7440), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782778,7 +774694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144950] = 13, + [146200] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782799,11 +774715,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6889), 1, - anon_sym_LBRACE, - STATE(1932), 1, - sym_block, - STATE(7434), 9, + ACTIONS(10962), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7441), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782813,31 +774728,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144998] = 12, - ACTIONS(8466), 1, + [146246] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10452), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7435), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(7443), 1, + sym_parameter_list, + STATE(7442), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782847,7 +774763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145044] = 12, + [146294] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782868,10 +774784,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10454), 2, + ACTIONS(10964), 2, anon_sym_SEMI, anon_sym_where, - STATE(7436), 9, + STATE(7443), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782881,7 +774797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145090] = 13, + [146340] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782902,11 +774818,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10456), 1, - anon_sym_LBRACK, - ACTIONS(10458), 1, - anon_sym_LT, - STATE(7437), 9, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(4231), 1, + sym_initializer_expression, + STATE(7444), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782916,7 +774832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145138] = 13, + [146388] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782937,11 +774853,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8001), 1, - anon_sym_DOT, - ACTIONS(10460), 1, - anon_sym_SEMI, - STATE(7438), 9, + ACTIONS(10966), 1, + anon_sym_LPAREN, + STATE(7504), 1, + sym_tuple_expression, + STATE(7445), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782951,7 +774867,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145186] = 13, + [146436] = 12, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(10968), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7446), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [146482] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782972,11 +774922,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(7615), 1, - sym_string_literal, - STATE(7439), 9, + ACTIONS(1763), 1, + anon_sym_LBRACE, + STATE(5232), 1, + sym_initializer_expression, + STATE(7447), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782986,7 +774936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145234] = 12, + [146530] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783007,10 +774957,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10093), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7440), 9, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(4226), 1, + sym_initializer_expression, + STATE(7448), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783020,7 +774971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145280] = 13, + [146578] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783041,11 +774992,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1703), 1, - anon_sym_LBRACE, - STATE(4269), 1, - sym_initializer_expression, - STATE(7441), 9, + ACTIONS(4331), 1, + anon_sym_GT, + ACTIONS(9576), 1, + anon_sym_COMMA, + STATE(7449), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783055,7 +775006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145328] = 13, + [146626] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783076,11 +775027,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(7522), 1, + STATE(7591), 1, sym_parameter_list, - STATE(7442), 9, + STATE(7450), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783090,7 +775041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145376] = 13, + [146674] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783111,11 +775062,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, - anon_sym_COMMA, - STATE(7360), 1, - aux_sym_tuple_type_repeat1, - STATE(7443), 9, + ACTIONS(10970), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7451), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783125,7 +775075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145424] = 12, + [146720] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783146,10 +775096,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10462), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(7444), 9, + ACTIONS(10972), 1, + anon_sym_LBRACK, + STATE(5523), 1, + sym_array_rank_specifier, + STATE(7452), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [146768] = 12, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(10974), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7453), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783159,7 +775144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145470] = 13, + [146814] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783180,11 +775165,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6751), 1, - sym_parameter_list, - STATE(7445), 9, + ACTIONS(10085), 1, + anon_sym_COMMA, + STATE(7123), 1, + aux_sym_tuple_type_repeat1, + STATE(7454), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783194,7 +775179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145518] = 13, + [146862] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783215,11 +775200,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9401), 1, + ACTIONS(9722), 1, anon_sym_LBRACE, - STATE(8003), 1, - sym_enum_member_declaration_list, - STATE(7446), 9, + STATE(4109), 1, + sym_block, + STATE(7455), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783229,7 +775214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145566] = 12, + [146910] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783250,10 +775235,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10464), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7447), 9, + ACTIONS(1373), 1, + anon_sym_LBRACE, + STATE(4348), 1, + sym_initializer_expression, + STATE(7456), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783263,7 +775249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145612] = 13, + [146958] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783284,11 +775270,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10466), 1, - anon_sym_LBRACK, - STATE(4775), 1, - sym_array_rank_specifier, - STATE(7448), 9, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(7904), 1, + sym_declaration_list, + STATE(7457), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783298,7 +775284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145660] = 13, + [147006] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783319,11 +775305,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10468), 1, + ACTIONS(9258), 1, anon_sym_LBRACE, - STATE(4878), 1, - sym__switch_expression_body, - STATE(7449), 9, + STATE(7807), 1, + sym_declaration_list, + STATE(7458), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783333,7 +775319,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145708] = 13, + [147054] = 13, + ACTIONS(5645), 1, + aux_sym_preproc_if_token2, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(10976), 1, + sym_string_literal_encoding, + STATE(7459), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [147102] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783354,11 +775375,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10470), 1, - anon_sym_LBRACE, - STATE(4873), 1, - sym__with_body, - STATE(7450), 9, + ACTIONS(10328), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7460), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783368,7 +775388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145756] = 13, + [147148] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783389,11 +775409,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10420), 1, - anon_sym_LBRACK, - STATE(6947), 1, - sym_bracketed_parameter_list, - STATE(7451), 9, + ACTIONS(10978), 1, + anon_sym_on, + STATE(6603), 1, + sym__join_body, + STATE(7461), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783403,7 +775423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145804] = 13, + [147196] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783424,11 +775444,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9401), 1, - anon_sym_LBRACE, - STATE(7993), 1, - sym_enum_member_declaration_list, - STATE(7452), 9, + ACTIONS(10085), 1, + anon_sym_COMMA, + STATE(7290), 1, + aux_sym_tuple_type_repeat1, + STATE(7462), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783438,7 +775458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145852] = 13, + [147244] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783459,11 +775479,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10472), 1, - anon_sym_LBRACE, - STATE(7585), 1, - sym_switch_body, - STATE(7453), 9, + ACTIONS(3570), 2, + anon_sym_while, + anon_sym_else, + STATE(7463), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783473,7 +775492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145900] = 13, + [147290] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783494,11 +775513,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1373), 1, - anon_sym_LBRACE, - STATE(4863), 1, - sym_initializer_expression, - STATE(7454), 9, + ACTIONS(10918), 1, + anon_sym_LPAREN, + STATE(87), 1, + sym__for_statement_conditions, + STATE(7464), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783508,7 +775527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145948] = 12, + [147338] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783529,10 +775548,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9871), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7455), 9, + ACTIONS(7206), 1, + anon_sym_LBRACE, + STATE(6665), 1, + sym_block, + STATE(7465), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783542,7 +775562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145994] = 13, + [147386] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783563,11 +775583,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1373), 1, - anon_sym_LBRACE, - STATE(4858), 1, - sym_initializer_expression, - STATE(7456), 9, + ACTIONS(3566), 2, + anon_sym_while, + anon_sym_else, + STATE(7466), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783577,7 +775596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146042] = 13, + [147432] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783598,11 +775617,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - STATE(3936), 1, - sym_initializer_expression, - STATE(7457), 9, + ACTIONS(10808), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7467), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783612,7 +775630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146090] = 12, + [147478] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783633,45 +775651,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10073), 2, + ACTIONS(10980), 2, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7458), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [146136] = 13, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(9876), 1, - aux_sym_preproc_if_token2, - ACTIONS(10474), 1, - anon_sym_COMMA, - STATE(7459), 9, + anon_sym_RPAREN, + STATE(7468), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783681,7 +775664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146184] = 13, + [147524] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783702,11 +775685,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8001), 1, - anon_sym_DOT, - ACTIONS(10476), 1, + ACTIONS(10982), 2, anon_sym_SEMI, - STATE(7460), 9, + anon_sym_where, + STATE(7469), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783716,7 +775698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146232] = 13, + [147570] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783737,11 +775719,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9401), 1, - anon_sym_LBRACE, - STATE(7945), 1, - sym_enum_member_declaration_list, - STATE(7461), 9, + ACTIONS(4331), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783751,7 +775732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146280] = 12, + [147616] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783772,10 +775753,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9850), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7462), 9, + ACTIONS(10984), 1, + anon_sym_LBRACK, + STATE(2407), 1, + sym_array_rank_specifier, + STATE(7471), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783785,7 +775767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146326] = 13, + [147664] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783806,11 +775788,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9341), 1, - anon_sym_LBRACE, - STATE(3957), 1, - sym_block, - STATE(7463), 9, + ACTIONS(9560), 1, + anon_sym_EQ_GT, + STATE(1530), 1, + sym_switch_arrow, + STATE(7472), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783820,7 +775802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146374] = 13, + [147712] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783841,11 +775823,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - STATE(3840), 1, - sym_initializer_expression, - STATE(7464), 9, + ACTIONS(10986), 2, + anon_sym_disable, + anon_sym_restore, + STATE(7473), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783855,7 +775836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146422] = 13, + [147758] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783876,11 +775857,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym_LBRACE, - STATE(7606), 1, - sym_block, - STATE(7465), 9, + ACTIONS(145), 1, + anon_sym_DQUOTE, + STATE(7387), 1, + sym_string_literal, + STATE(7474), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783890,7 +775871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146470] = 13, + [147806] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783911,11 +775892,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(7001), 1, - sym_parameter_list, - STATE(7466), 9, + ACTIONS(9899), 1, + anon_sym_LBRACE, + STATE(8142), 1, + sym_enum_member_declaration_list, + STATE(7475), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783925,7 +775906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146518] = 13, + [147854] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783946,11 +775927,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9323), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - STATE(4839), 1, - sym_block, - STATE(7467), 9, + STATE(3296), 1, + sym_initializer_expression, + STATE(7476), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783960,7 +775941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146566] = 12, + [147902] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783981,10 +775962,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10478), 2, + ACTIONS(10988), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(7468), 9, + STATE(7477), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783994,7 +775975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146612] = 13, + [147948] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784015,11 +775996,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1373), 1, + ACTIONS(1703), 1, anon_sym_LBRACE, - STATE(4837), 1, + STATE(3368), 1, sym_initializer_expression, - STATE(7469), 9, + STATE(7478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784029,7 +776010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146660] = 12, + [147996] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784050,10 +776031,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10480), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7470), 9, + ACTIONS(10990), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7479), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784063,7 +776044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146706] = 13, + [148042] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784084,11 +776065,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, - anon_sym_COMMA, - STATE(7242), 1, - aux_sym_tuple_type_repeat1, - STATE(7471), 9, + ACTIONS(3542), 2, + anon_sym_while, + anon_sym_else, + STATE(7480), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784098,7 +776078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146754] = 13, + [148088] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784119,11 +776099,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9713), 1, - anon_sym_COMMA, - STATE(7112), 1, - aux_sym_tuple_expression_repeat1, - STATE(7472), 9, + ACTIONS(7536), 1, + anon_sym_LBRACE, + STATE(2117), 1, + sym_block, + STATE(7481), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784133,7 +776113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146802] = 13, + [148136] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784154,11 +776134,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9401), 1, - anon_sym_LBRACE, - STATE(8010), 1, - sym_enum_member_declaration_list, - STATE(7473), 9, + ACTIONS(10992), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784168,7 +776147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146850] = 12, + [148182] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784189,10 +776168,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10482), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7474), 9, + ACTIONS(3534), 2, + anon_sym_while, + anon_sym_else, + STATE(7483), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784202,7 +776181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146896] = 13, + [148228] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784223,11 +776202,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6756), 1, - sym_parameter_list, - STATE(7475), 9, + ACTIONS(9899), 1, + anon_sym_LBRACE, + STATE(8121), 1, + sym_enum_member_declaration_list, + STATE(7484), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784237,7 +776216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146944] = 13, + [148276] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784258,11 +776237,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - STATE(4063), 1, - sym_initializer_expression, - STATE(7476), 9, + ACTIONS(10924), 1, + anon_sym_LBRACK, + STATE(6984), 1, + sym_bracketed_parameter_list, + STATE(7485), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784272,7 +776251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146992] = 13, + [148324] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784293,11 +776272,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8001), 1, - anon_sym_DOT, - ACTIONS(10484), 1, - anon_sym_SEMI, - STATE(7477), 9, + ACTIONS(10994), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7486), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784307,7 +776285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147040] = 13, + [148370] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784328,11 +776306,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9323), 1, - anon_sym_LBRACE, - STATE(4910), 1, - sym_block, - STATE(7478), 9, + ACTIONS(10129), 1, + anon_sym_COMMA, + STATE(7072), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784342,7 +776320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147088] = 13, + [148418] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784363,11 +776341,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, + ACTIONS(9899), 1, anon_sym_LBRACE, - STATE(7895), 1, - sym_declaration_list, - STATE(7479), 9, + STATE(7768), 1, + sym_enum_member_declaration_list, + STATE(7488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784377,7 +776355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147136] = 13, + [148466] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784398,11 +776376,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, - anon_sym_LBRACE, - STATE(7894), 1, - sym_declaration_list, - STATE(7480), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6760), 1, + sym_parameter_list, + STATE(7489), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784412,31 +776390,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147184] = 12, - ACTIONS(8466), 1, + [148514] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10486), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7481), 9, + ACTIONS(10924), 1, + anon_sym_LBRACK, + STATE(7044), 1, + sym_bracketed_parameter_list, + STATE(7490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784446,7 +776425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147230] = 13, + [148562] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784467,11 +776446,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10488), 1, - anon_sym_LPAREN, - STATE(7484), 1, - sym_tuple_expression, - STATE(7482), 9, + ACTIONS(10996), 1, + anon_sym_LBRACK, + STATE(3262), 1, + sym_array_rank_specifier, + STATE(7491), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784481,7 +776460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147278] = 13, + [148610] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784502,11 +776481,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10490), 1, + ACTIONS(7206), 1, anon_sym_LBRACE, - STATE(3769), 1, - sym__switch_expression_body, - STATE(7483), 9, + STATE(7582), 1, + sym_block, + STATE(7492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784516,7 +776495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147326] = 13, + [148658] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784537,11 +776516,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10472), 1, - anon_sym_LBRACE, - STATE(7374), 1, - sym_switch_body, - STATE(7484), 9, + ACTIONS(10775), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784551,7 +776529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147374] = 12, + [148704] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784572,10 +776550,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10492), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(7485), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6704), 1, + sym_parameter_list, + STATE(7494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784585,7 +776564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147420] = 13, + [148752] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784606,11 +776585,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10444), 1, - anon_sym_LPAREN, - STATE(82), 1, - sym__for_statement_conditions, - STATE(7486), 9, + ACTIONS(10081), 1, + anon_sym_COMMA, + STATE(7286), 1, + aux_sym_tuple_expression_repeat1, + STATE(7495), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784620,7 +776599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147468] = 13, + [148800] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784641,11 +776620,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6902), 1, - anon_sym_LBRACE, - STATE(2045), 1, - sym_block, - STATE(7487), 9, + ACTIONS(10998), 2, + anon_sym_this, + anon_sym_base, + STATE(7496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784655,7 +776633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147516] = 13, + [148846] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784676,11 +776654,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9341), 1, + ACTIONS(1763), 1, anon_sym_LBRACE, - STATE(3894), 1, - sym_block, - STATE(7488), 9, + STATE(5167), 1, + sym_initializer_expression, + STATE(7497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784690,7 +776668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147564] = 13, + [148894] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784711,11 +776689,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10494), 1, - anon_sym_LBRACK, - STATE(2414), 1, - sym_array_rank_specifier, - STATE(7489), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6595), 1, + sym_parameter_list, + STATE(7498), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784725,7 +776703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147612] = 13, + [148942] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784746,11 +776724,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10496), 1, - anon_sym_LPAREN, - STATE(7590), 1, - sym_tuple_expression, - STATE(7490), 9, + ACTIONS(9674), 1, + anon_sym_LBRACE, + STATE(3302), 1, + sym_block, + STATE(7499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784760,7 +776738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147660] = 13, + [148990] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784781,11 +776759,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym_LBRACE, - STATE(6658), 1, - sym_block, - STATE(7491), 9, + ACTIONS(3526), 2, + anon_sym_while, + anon_sym_else, + STATE(7500), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784795,7 +776772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147708] = 13, + [149036] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784816,11 +776793,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10444), 1, - anon_sym_LPAREN, - STATE(86), 1, - sym__for_statement_conditions, - STATE(7492), 9, + ACTIONS(10924), 1, + anon_sym_LBRACK, + STATE(7000), 1, + sym_bracketed_parameter_list, + STATE(7501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784830,7 +776807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147756] = 13, + [149084] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784851,11 +776828,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9678), 1, - anon_sym_COMMA, - STATE(7183), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7493), 9, + ACTIONS(11000), 1, + anon_sym_LBRACE, + STATE(2043), 1, + sym_switch_body, + STATE(7502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784865,7 +776842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147804] = 13, + [149132] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784886,11 +776863,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1703), 1, - anon_sym_LBRACE, - STATE(4145), 1, - sym_initializer_expression, - STATE(7494), 9, + ACTIONS(3506), 2, + anon_sym_while, + anon_sym_else, + STATE(7503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784900,7 +776876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147852] = 13, + [149178] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784921,11 +776897,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(7439), 1, - sym_string_literal, - STATE(7495), 9, + ACTIONS(10916), 1, + anon_sym_LBRACE, + STATE(7580), 1, + sym_switch_body, + STATE(7504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784935,7 +776911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147900] = 13, + [149226] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784956,11 +776932,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(6768), 1, + STATE(6730), 1, sym_parameter_list, - STATE(7496), 9, + STATE(7505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784970,7 +776946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147948] = 13, + [149274] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784991,11 +776967,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, - anon_sym_COMMA, - STATE(7090), 1, - aux_sym_tuple_type_repeat1, - STATE(7497), 9, + ACTIONS(11002), 1, + anon_sym_LBRACK, + STATE(2695), 1, + sym_array_rank_specifier, + STATE(7506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785005,7 +776981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147996] = 13, + [149322] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785026,11 +777002,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(7436), 1, - sym_parameter_list, - STATE(7498), 9, + ACTIONS(10081), 1, + anon_sym_COMMA, + STATE(7151), 1, + aux_sym_tuple_expression_repeat1, + STATE(7507), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785040,7 +777016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148044] = 13, + [149370] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785061,11 +777037,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10498), 1, - anon_sym_LBRACK, - STATE(3038), 1, - sym_array_rank_specifier, - STATE(7499), 9, + ACTIONS(10085), 1, + anon_sym_COMMA, + STATE(7196), 1, + aux_sym_tuple_type_repeat1, + STATE(7508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785075,7 +777051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148092] = 13, + [149418] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785096,11 +777072,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10500), 1, - anon_sym_LBRACE, - STATE(4233), 1, - sym__with_body, - STATE(7500), 9, + ACTIONS(3434), 2, + anon_sym_while, + anon_sym_else, + STATE(7509), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785110,7 +777085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148140] = 13, + [149464] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785131,11 +777106,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6613), 1, - sym_parameter_list, - STATE(7501), 9, + ACTIONS(1461), 1, + anon_sym_LBRACE, + STATE(3265), 1, + sym_initializer_expression, + STATE(7510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785145,7 +777120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148188] = 13, + [149512] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785166,11 +777141,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6902), 1, + ACTIONS(7536), 1, anon_sym_LBRACE, - STATE(1941), 1, + STATE(2044), 1, sym_block, - STATE(7502), 9, + STATE(7511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785180,7 +777155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148236] = 13, + [149560] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785201,11 +777176,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10502), 1, - anon_sym_LBRACE, - STATE(4185), 1, - sym__switch_expression_body, - STATE(7503), 9, + ACTIONS(10085), 1, + anon_sym_COMMA, + STATE(7142), 1, + aux_sym_tuple_type_repeat1, + STATE(7512), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785215,7 +777190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148284] = 13, + [149608] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785236,11 +777211,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10504), 1, - anon_sym_LBRACE, - STATE(4043), 1, - sym__with_body, - STATE(7504), 9, + ACTIONS(10918), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym__for_statement_conditions, + STATE(7513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785250,7 +777225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148332] = 13, + [149656] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785271,11 +777246,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9713), 1, - anon_sym_COMMA, - STATE(7287), 1, - aux_sym_tuple_expression_repeat1, - STATE(7505), 9, + ACTIONS(3400), 1, + anon_sym_while, + ACTIONS(11004), 1, + anon_sym_else, + STATE(7514), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785285,7 +777260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148380] = 13, + [149704] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785306,11 +777281,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, - anon_sym_COMMA, - STATE(7174), 1, - aux_sym_tuple_type_repeat1, - STATE(7506), 9, + ACTIONS(3406), 2, + anon_sym_while, + anon_sym_else, + STATE(7515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785320,7 +777294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148428] = 13, + [149750] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785341,11 +777315,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9401), 1, - anon_sym_LBRACE, - STATE(7778), 1, - sym_enum_member_declaration_list, - STATE(7507), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6747), 1, + sym_parameter_list, + STATE(7516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785355,7 +777329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148476] = 13, + [149798] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785376,11 +777350,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(6776), 1, + STATE(6731), 1, sym_parameter_list, - STATE(7508), 9, + STATE(7517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785390,7 +777364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148524] = 13, + [149846] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785411,11 +777385,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6726), 1, - sym_parameter_list, - STATE(7509), 9, + ACTIONS(3410), 2, + anon_sym_while, + anon_sym_else, + STATE(7518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785425,7 +777398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148572] = 13, + [149892] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785446,11 +777419,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10506), 1, - anon_sym_LBRACE, - STATE(2141), 1, - sym_switch_body, - STATE(7510), 9, + ACTIONS(11006), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785460,7 +777432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148620] = 13, + [149938] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785481,11 +777453,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10420), 1, - anon_sym_LBRACK, - STATE(6988), 1, - sym_bracketed_parameter_list, - STATE(7511), 9, + ACTIONS(11008), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785495,7 +777466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148668] = 13, + [149984] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785516,11 +777487,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10420), 1, - anon_sym_LBRACK, - STATE(6941), 1, - sym_bracketed_parameter_list, - STATE(7512), 9, + ACTIONS(3414), 2, + anon_sym_while, + anon_sym_else, + STATE(7521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785530,7 +777500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148716] = 13, + [150030] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785551,11 +777521,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6627), 1, - sym_parameter_list, - STATE(7513), 9, + ACTIONS(11010), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785565,7 +777534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148764] = 12, + [150076] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785586,10 +777555,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10508), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7514), 9, + ACTIONS(3418), 2, + anon_sym_while, + anon_sym_else, + STATE(7523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785599,7 +777568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148810] = 13, + [150122] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785620,11 +777589,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(7028), 1, - sym_parameter_list, - STATE(7515), 9, + ACTIONS(3422), 2, + anon_sym_while, + anon_sym_else, + STATE(7524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785634,7 +777602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148858] = 13, + [150168] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785655,11 +777623,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1747), 1, - anon_sym_LBRACE, - STATE(5227), 1, - sym_initializer_expression, - STATE(7516), 9, + ACTIONS(3438), 2, + anon_sym_while, + anon_sym_else, + STATE(7525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785669,7 +777636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148906] = 13, + [150214] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785690,45 +777657,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6625), 1, - sym_parameter_list, - STATE(7517), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [148954] = 12, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(10510), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7518), 9, + ACTIONS(3442), 2, + anon_sym_while, + anon_sym_else, + STATE(7526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785738,7 +777670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149000] = 12, + [150260] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785759,10 +777691,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10512), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7519), 9, + ACTIONS(3470), 2, + anon_sym_while, + anon_sym_else, + STATE(7527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785772,7 +777704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149046] = 13, + [150306] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785793,11 +777725,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(7014), 1, + STATE(6733), 1, sym_parameter_list, - STATE(7520), 9, + STATE(7528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785807,7 +777739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149094] = 13, + [150354] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785828,11 +777760,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8001), 1, - anon_sym_DOT, - ACTIONS(10514), 1, - anon_sym_SEMI, - STATE(7521), 9, + ACTIONS(3474), 2, + anon_sym_while, + anon_sym_else, + STATE(7529), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785842,7 +777773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149142] = 12, + [150400] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785863,10 +777794,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10516), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(7522), 9, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(11012), 1, + anon_sym_in, + STATE(7530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785876,7 +777808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149188] = 13, + [150448] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785897,11 +777829,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9165), 1, - anon_sym_LBRACE, - STATE(5238), 1, - sym_block, - STATE(7523), 9, + ACTIONS(3478), 2, + anon_sym_while, + anon_sym_else, + STATE(7531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785911,7 +777842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149236] = 13, + [150494] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785932,11 +777863,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(7016), 1, - sym_parameter_list, - STATE(7524), 9, + ACTIONS(3426), 2, + anon_sym_while, + anon_sym_else, + STATE(7532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785946,7 +777876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149284] = 13, + [150540] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785967,11 +777897,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1747), 1, - anon_sym_LBRACE, - STATE(5267), 1, - sym_initializer_expression, - STATE(7525), 9, + ACTIONS(3482), 2, + anon_sym_while, + anon_sym_else, + STATE(7533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785981,7 +777910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149332] = 12, + [150586] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786002,10 +777931,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10518), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7526), 9, + ACTIONS(3510), 2, + anon_sym_while, + anon_sym_else, + STATE(7534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786015,7 +777944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149378] = 12, + [150632] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786036,10 +777965,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10520), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7527), 9, + ACTIONS(9899), 1, + anon_sym_LBRACE, + STATE(7698), 1, + sym_enum_member_declaration_list, + STATE(7535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786049,7 +777979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149424] = 13, + [150680] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786070,11 +778000,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7425), 1, + ACTIONS(7206), 1, anon_sym_LBRACE, - STATE(2153), 1, + STATE(3389), 1, sym_block, - STATE(7528), 9, + STATE(7536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786084,7 +778014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149472] = 12, + [150728] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786105,10 +778035,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10522), 2, - anon_sym_disable, - anon_sym_restore, - STATE(7529), 9, + ACTIONS(11014), 1, + anon_sym_LBRACE, + STATE(1953), 1, + sym_switch_body, + STATE(7537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786118,7 +778049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149518] = 12, + [150776] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786139,10 +778070,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10524), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7530), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6598), 1, + sym_parameter_list, + STATE(7538), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786152,7 +778084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149564] = 13, + [150824] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786173,11 +778105,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1747), 1, + ACTIONS(11016), 2, anon_sym_LBRACE, - STATE(5276), 1, - sym_initializer_expression, - STATE(7531), 9, + anon_sym_EQ_GT, + STATE(7539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786187,7 +778118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149612] = 13, + [150870] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786208,11 +778139,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8001), 1, - anon_sym_DOT, - ACTIONS(10526), 1, - anon_sym_SEMI, - STATE(7532), 9, + ACTIONS(1611), 1, + anon_sym_LBRACE, + STATE(5767), 1, + sym_initializer_expression, + STATE(7540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786222,7 +778153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149660] = 13, + [150918] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786243,11 +778174,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10528), 1, - anon_sym_LBRACE, - STATE(5339), 1, - sym__with_body, - STATE(7533), 9, + ACTIONS(3430), 2, + anon_sym_while, + anon_sym_else, + STATE(7541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786257,7 +778187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149708] = 13, + [150964] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786278,11 +778208,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, - anon_sym_COMMA, - STATE(7368), 1, - aux_sym_tuple_type_repeat1, - STATE(7534), 9, + ACTIONS(3494), 2, + anon_sym_while, + anon_sym_else, + STATE(7542), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786292,7 +778221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149756] = 12, + [151010] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786313,10 +778242,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10530), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7535), 9, + ACTIONS(9742), 1, + anon_sym_LBRACE, + STATE(5724), 1, + sym_block, + STATE(7543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786326,7 +778256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149802] = 13, + [151058] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786347,11 +778277,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10532), 1, + ACTIONS(11018), 1, anon_sym_LBRACK, - STATE(4698), 1, + STATE(3174), 1, sym_array_rank_specifier, - STATE(7536), 9, + STATE(7544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786361,7 +778291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149850] = 12, + [151106] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786382,10 +778312,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10534), 2, + ACTIONS(10085), 1, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7537), 9, + STATE(7255), 1, + aux_sym_tuple_type_repeat1, + STATE(7545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786395,7 +778326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149896] = 12, + [151154] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786416,10 +778347,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10536), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7538), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6724), 1, + sym_parameter_list, + STATE(7546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786429,7 +778361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149942] = 12, + [151202] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786450,10 +778382,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10538), 2, + ACTIONS(11020), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7539), 9, + STATE(3203), 1, + sym__switch_expression_body, + STATE(7547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786463,7 +778396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149988] = 12, + [151250] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786484,10 +778417,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10540), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7540), 9, + ACTIONS(3514), 2, + anon_sym_while, + anon_sym_else, + STATE(7548), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786497,7 +778430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150034] = 13, + [151296] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786518,11 +778451,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6737), 1, - sym_parameter_list, - STATE(7541), 9, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(11022), 1, + anon_sym_SEMI, + STATE(7549), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786532,7 +778465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150082] = 13, + [151344] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786553,11 +778486,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9899), 1, anon_sym_LBRACE, - STATE(5336), 1, - sym__switch_expression_body, - STATE(7542), 9, + STATE(7843), 1, + sym_enum_member_declaration_list, + STATE(7550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786567,7 +778500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150130] = 12, + [151392] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786588,10 +778521,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10544), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7543), 9, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(11024), 1, + anon_sym_in, + STATE(7551), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786601,7 +778535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150176] = 13, + [151440] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786622,11 +778556,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6712), 1, - sym_parameter_list, - STATE(7544), 9, + ACTIONS(10695), 1, + anon_sym_DQUOTE, + STATE(7680), 1, + sym_string_literal, + STATE(7552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786636,7 +778570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150224] = 12, + [151488] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786657,10 +778591,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10546), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7545), 9, + ACTIONS(7206), 1, + anon_sym_LBRACE, + STATE(3358), 1, + sym_block, + STATE(7553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786670,7 +778605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150270] = 13, + [151536] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786691,11 +778626,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(6628), 1, + STATE(6726), 1, sym_parameter_list, - STATE(7546), 9, + STATE(7554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786705,7 +778640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150318] = 13, + [151584] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786726,11 +778661,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10506), 1, + ACTIONS(9899), 1, anon_sym_LBRACE, - STATE(2128), 1, - sym_switch_body, - STATE(7547), 9, + STATE(7824), 1, + sym_enum_member_declaration_list, + STATE(7555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786740,7 +778675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150366] = 13, + [151632] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786761,11 +778696,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9165), 1, - anon_sym_LBRACE, - STATE(5322), 1, - sym_block, - STATE(7548), 9, + ACTIONS(3578), 2, + anon_sym_while, + anon_sym_else, + STATE(7556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786775,7 +778709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150414] = 13, + [151678] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786796,11 +778730,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10548), 1, - anon_sym_LBRACK, - STATE(3796), 1, - sym_array_rank_specifier, - STATE(7549), 9, + ACTIONS(11026), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7557), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786810,7 +778743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150462] = 13, + [151724] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786831,11 +778764,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7425), 1, + ACTIONS(11028), 1, anon_sym_LBRACE, - STATE(2047), 1, - sym_block, - STATE(7550), 9, + STATE(3226), 1, + sym__with_body, + STATE(7558), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786845,7 +778778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150510] = 12, + [151772] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786866,10 +778799,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10550), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7551), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6768), 1, + sym_parameter_list, + STATE(7559), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786879,7 +778813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150556] = 13, + [151820] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786900,11 +778834,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9045), 1, + ACTIONS(11030), 2, + anon_sym_LBRACE, anon_sym_EQ_GT, - STATE(1530), 1, - sym_switch_arrow, - STATE(7552), 9, + STATE(7560), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786914,7 +778847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150604] = 13, + [151866] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786935,11 +778868,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10444), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(70), 1, - sym__for_statement_conditions, - STATE(7553), 9, + STATE(6743), 1, + sym_parameter_list, + STATE(7561), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786949,32 +778882,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150652] = 13, - ACTIONS(5925), 1, - aux_sym_preproc_if_token2, - ACTIONS(8466), 1, + [151914] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10552), 1, - sym_string_literal_encoding, - STATE(7554), 9, + ACTIONS(3574), 2, + anon_sym_while, + anon_sym_else, + STATE(7562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786984,7 +778916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150700] = 13, + [151960] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787005,11 +778937,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6752), 1, - sym_parameter_list, - STATE(7555), 9, + ACTIONS(10924), 1, + anon_sym_LBRACK, + STATE(6985), 1, + sym_bracketed_parameter_list, + STATE(7563), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [152008] = 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(11032), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787019,7 +778985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150748] = 12, + [152054] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787040,10 +779006,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10554), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(7556), 9, + ACTIONS(11034), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7565), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787053,7 +779019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150794] = 13, + [152100] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787074,11 +779040,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10556), 1, - anon_sym_on, - STATE(6629), 1, - sym__join_body, - STATE(7557), 9, + ACTIONS(10085), 1, + anon_sym_COMMA, + STATE(7347), 1, + aux_sym_tuple_type_repeat1, + STATE(7566), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787088,7 +779054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150842] = 12, + [152148] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787109,10 +779075,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4349), 2, + ACTIONS(11036), 2, anon_sym_COMMA, - anon_sym_GT, - STATE(7558), 9, + anon_sym_RBRACE, + STATE(7567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787122,7 +779088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150888] = 12, + [152194] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787143,10 +779109,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4341), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7559), 9, + ACTIONS(1611), 1, + anon_sym_LBRACE, + STATE(5702), 1, + sym_initializer_expression, + STATE(7568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787156,7 +779123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150934] = 12, + [152242] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787177,10 +779144,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4357), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7560), 9, + ACTIONS(6234), 1, + anon_sym_LBRACE, + STATE(1965), 1, + sym_block, + STATE(7569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787190,7 +779158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150980] = 12, + [152290] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787211,10 +779179,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10558), 2, + ACTIONS(10081), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7561), 9, + STATE(7348), 1, + aux_sym_tuple_expression_repeat1, + STATE(7570), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787224,7 +779193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151026] = 12, + [152338] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787245,10 +779214,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4331), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7562), 9, + ACTIONS(1611), 1, + anon_sym_LBRACE, + STATE(5725), 1, + sym_initializer_expression, + STATE(7571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787258,7 +779228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151072] = 12, + [152386] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787279,10 +779249,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10560), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7563), 9, + ACTIONS(3446), 2, + anon_sym_while, + anon_sym_else, + STATE(7572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787292,7 +779262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151118] = 12, + [152432] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787313,10 +779283,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10562), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7564), 9, + ACTIONS(3450), 2, + anon_sym_while, + anon_sym_else, + STATE(7573), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787326,7 +779296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151164] = 12, + [152478] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787347,10 +779317,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10564), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7565), 9, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(11038), 1, + anon_sym_SEMI, + STATE(7574), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787360,7 +779331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151210] = 13, + [152526] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787381,11 +779352,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10277), 1, - anon_sym_DQUOTE, - STATE(7723), 1, - sym_string_literal, - STATE(7566), 9, + ACTIONS(10085), 1, + anon_sym_COMMA, + STATE(7222), 1, + aux_sym_tuple_type_repeat1, + STATE(7575), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787395,7 +779366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151258] = 13, + [152574] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787416,11 +779387,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7200), 1, - anon_sym_LBRACE, - STATE(4208), 1, - sym_block, - STATE(7567), 9, + ACTIONS(11040), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7576), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787430,7 +779400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151306] = 12, + [152620] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787451,10 +779421,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3550), 2, + ACTIONS(3454), 2, anon_sym_while, anon_sym_else, - STATE(7568), 9, + STATE(7577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787464,7 +779434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151352] = 12, + [152666] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787485,10 +779455,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3570), 2, + ACTIONS(3562), 2, anon_sym_while, anon_sym_else, - STATE(7569), 9, + STATE(7578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787498,7 +779468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151398] = 12, + [152712] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787519,10 +779489,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3578), 2, + ACTIONS(3558), 2, anon_sym_while, anon_sym_else, - STATE(7570), 9, + STATE(7579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787532,7 +779502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151444] = 12, + [152758] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787553,79 +779523,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3574), 2, + ACTIONS(3554), 2, anon_sym_while, anon_sym_else, - STATE(7571), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [151490] = 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(10566), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7572), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [151536] = 13, - ACTIONS(5899), 1, - aux_sym_preproc_if_token2, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(10568), 1, - sym_string_literal_encoding, - STATE(7573), 9, + STATE(7580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787635,7 +779536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151584] = 12, + [152804] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787656,45 +779557,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10570), 2, + ACTIONS(11042), 2, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7574), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [151630] = 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(7721), 1, - anon_sym_LBRACK, - ACTIONS(7725), 1, - anon_sym_STAR, - STATE(7575), 9, + anon_sym_RBRACE, + STATE(7581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787704,7 +779570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151678] = 12, + [152850] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787725,10 +779591,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3426), 2, + ACTIONS(3458), 2, anon_sym_while, anon_sym_else, - STATE(7576), 9, + STATE(7582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787738,7 +779604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151724] = 13, + [152896] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787759,11 +779625,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3420), 1, + ACTIONS(3550), 2, anon_sym_while, - ACTIONS(10572), 1, anon_sym_else, - STATE(7577), 9, + STATE(7583), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787773,7 +779638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151772] = 13, + [152942] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787794,11 +779659,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - ACTIONS(10574), 1, - anon_sym_in, - STATE(7578), 9, + ACTIONS(11044), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7584), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787808,7 +779672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151820] = 12, + [152988] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787829,10 +779693,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3392), 2, - anon_sym_while, - anon_sym_else, - STATE(7579), 9, + ACTIONS(11046), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7585), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787842,7 +779706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151866] = 12, + [153034] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787863,10 +779727,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3486), 2, - anon_sym_while, - anon_sym_else, - STATE(7580), 9, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(8021), 1, + sym_declaration_list, + STATE(7586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787876,7 +779741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151912] = 12, + [153082] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787897,10 +779762,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10576), 2, + ACTIONS(10081), 1, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7581), 9, + STATE(7223), 1, + aux_sym_tuple_expression_repeat1, + STATE(7587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787910,7 +779776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151958] = 13, + [153130] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787931,11 +779797,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9401), 1, - anon_sym_LBRACE, - STATE(7852), 1, - sym_enum_member_declaration_list, - STATE(7582), 9, + ACTIONS(3546), 2, + anon_sym_while, + anon_sym_else, + STATE(7588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787945,7 +779810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152006] = 13, + [153176] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787966,11 +779831,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10420), 1, - anon_sym_LBRACK, - STATE(6967), 1, - sym_bracketed_parameter_list, - STATE(7583), 9, + ACTIONS(11000), 1, + anon_sym_LBRACE, + STATE(2038), 1, + sym_switch_body, + STATE(7589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787980,7 +779845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152054] = 13, + [153224] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788001,11 +779866,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9401), 1, + ACTIONS(9258), 1, anon_sym_LBRACE, - STATE(7847), 1, - sym_enum_member_declaration_list, - STATE(7584), 9, + STATE(8020), 1, + sym_declaration_list, + STATE(7590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788015,7 +779880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152102] = 12, + [153272] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788036,10 +779901,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3490), 2, - anon_sym_while, - anon_sym_else, - STATE(7585), 9, + ACTIONS(11048), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788049,7 +779914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152148] = 13, + [153318] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788070,11 +779935,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9678), 1, - anon_sym_COMMA, - STATE(7098), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7586), 9, + ACTIONS(3538), 2, + anon_sym_while, + anon_sym_else, + STATE(7592), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788084,7 +779948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152196] = 12, + [153364] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788105,10 +779969,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3494), 2, + ACTIONS(3462), 2, anon_sym_while, anon_sym_else, - STATE(7587), 9, + STATE(7593), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788118,7 +779982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152242] = 13, + [153410] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788139,11 +780003,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9401), 1, + ACTIONS(10954), 1, anon_sym_LBRACE, - STATE(7814), 1, - sym_enum_member_declaration_list, - STATE(7588), 9, + STATE(2142), 1, + sym_switch_body, + STATE(7594), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788153,7 +780017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152290] = 12, + [153458] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788177,7 +780041,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3518), 2, anon_sym_while, anon_sym_else, - STATE(7589), 9, + STATE(7595), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788187,7 +780051,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152336] = 13, + [153504] = 12, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(11050), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7596), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [153550] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788208,11 +780106,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10422), 1, + ACTIONS(1763), 1, anon_sym_LBRACE, - STATE(2078), 1, - sym_switch_body, - STATE(7590), 9, + STATE(5213), 1, + sym_initializer_expression, + STATE(7597), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788222,7 +780120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152384] = 13, + [153598] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788243,11 +780141,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9662), 1, + ACTIONS(11052), 2, anon_sym_COMMA, - STATE(7283), 1, - aux_sym_tuple_type_repeat1, - STATE(7591), 9, + anon_sym_GT, + STATE(7598), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788257,7 +780154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152432] = 13, + [153644] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788278,11 +780175,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9713), 1, - anon_sym_COMMA, - STATE(7285), 1, - aux_sym_tuple_expression_repeat1, - STATE(7592), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6631), 1, + sym_parameter_list, + STATE(7599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788292,7 +780189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152480] = 13, + [153692] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788313,11 +780210,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, - anon_sym_LBRACE, - STATE(7738), 1, - sym_declaration_list, - STATE(7593), 9, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(11054), 1, + anon_sym_SEMI, + STATE(7600), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [153740] = 12, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(11056), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7601), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788327,7 +780258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152528] = 12, + [153786] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788348,10 +780279,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3554), 2, - anon_sym_while, - anon_sym_else, - STATE(7594), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6769), 1, + sym_parameter_list, + STATE(7602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788361,7 +780293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152574] = 12, + [153834] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788382,10 +780314,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3482), 2, - anon_sym_while, - anon_sym_else, - STATE(7595), 9, + ACTIONS(11058), 1, + anon_sym_LPAREN, + STATE(7627), 1, + sym_tuple_expression, + STATE(7603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788395,7 +780328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152620] = 12, + [153882] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788416,10 +780349,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3566), 2, - anon_sym_while, - anon_sym_else, - STATE(7596), 9, + ACTIONS(11060), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788429,7 +780362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152666] = 13, + [153928] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788450,11 +780383,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, - anon_sym_LBRACE, - STATE(7772), 1, - sym_declaration_list, - STATE(7597), 9, + ACTIONS(11062), 1, + anon_sym_LPAREN, + STATE(7429), 1, + sym_tuple_expression, + STATE(7605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788464,7 +780397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152714] = 13, + [153976] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788485,11 +780418,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, - anon_sym_LBRACE, - STATE(7771), 1, - sym_declaration_list, - STATE(7598), 9, + ACTIONS(11064), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788499,31 +780431,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152762] = 12, - ACTIONS(8466), 1, + [154022] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10578), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7599), 9, + ACTIONS(4353), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788533,7 +780465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152808] = 12, + [154068] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788554,10 +780486,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3442), 2, - anon_sym_while, - anon_sym_else, - STATE(7600), 9, + ACTIONS(10918), 1, + anon_sym_LPAREN, + STATE(86), 1, + sym__for_statement_conditions, + STATE(7608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788567,7 +780500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152854] = 12, + [154116] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788588,10 +780521,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3438), 2, + ACTIONS(3392), 2, anon_sym_while, anon_sym_else, - STATE(7601), 9, + STATE(7609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788601,7 +780534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152900] = 12, + [154162] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788622,10 +780555,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3185), 2, - anon_sym_while, - anon_sym_else, - STATE(7602), 9, + ACTIONS(10129), 1, + anon_sym_COMMA, + STATE(7144), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788635,7 +780569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152946] = 13, + [154210] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788656,11 +780590,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7200), 1, + ACTIONS(11066), 1, anon_sym_LBRACE, - STATE(4165), 1, - sym_block, - STATE(7603), 9, + STATE(5771), 1, + sym__with_body, + STATE(7611), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788670,7 +780604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152994] = 13, + [154258] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788691,11 +780625,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + STATE(7612), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [154306] = 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(8843), 1, anon_sym_LPAREN, - STATE(6750), 1, + STATE(6767), 1, sym_parameter_list, - STATE(7604), 9, + STATE(7613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788705,7 +780674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153042] = 12, + [154354] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788726,10 +780695,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3474), 2, - anon_sym_while, - anon_sym_else, - STATE(7605), 9, + ACTIONS(11068), 1, + anon_sym_LBRACE, + STATE(5753), 1, + sym__switch_expression_body, + STATE(7614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788739,7 +780709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153088] = 12, + [154402] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788760,10 +780730,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3412), 2, - anon_sym_while, - anon_sym_else, - STATE(7606), 9, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(11070), 1, + anon_sym_SEMI, + STATE(7615), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [154450] = 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(11072), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788773,7 +780778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153134] = 13, + [154496] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788794,11 +780799,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, + ACTIONS(9736), 1, anon_sym_LBRACE, - STATE(7729), 1, - sym_declaration_list, - STATE(7607), 9, + STATE(5204), 1, + sym_block, + STATE(7617), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788808,7 +780813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153182] = 12, + [154544] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788829,10 +780834,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3400), 2, - anon_sym_while, - anon_sym_else, - STATE(7608), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6945), 1, + sym_parameter_list, + STATE(7618), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788842,7 +780848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153228] = 12, + [154592] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788863,10 +780869,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3526), 2, - anon_sym_while, - anon_sym_else, - STATE(7609), 9, + ACTIONS(4361), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7619), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788876,7 +780882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153274] = 13, + [154638] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788897,11 +780903,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10420), 1, - anon_sym_LBRACK, - STATE(6956), 1, - sym_bracketed_parameter_list, - STATE(7610), 9, + ACTIONS(11074), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788911,7 +780916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153322] = 12, + [154684] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788932,10 +780937,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3510), 2, - anon_sym_while, - anon_sym_else, - STATE(7611), 9, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(11076), 1, + anon_sym_SEMI, + STATE(7621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788945,7 +780951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153368] = 12, + [154732] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788966,10 +780972,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3466), 2, + ACTIONS(3396), 2, anon_sym_while, anon_sym_else, - STATE(7612), 9, + STATE(7622), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [154778] = 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(10924), 1, + anon_sym_LBRACK, + STATE(7032), 1, + sym_bracketed_parameter_list, + STATE(7623), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788979,7 +781020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153414] = 12, + [154826] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789000,10 +781041,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3416), 2, + ACTIONS(3498), 2, anon_sym_while, anon_sym_else, - STATE(7613), 9, + STATE(7624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789013,7 +781054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153460] = 13, + [154872] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789034,11 +781075,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(6715), 1, + STATE(6585), 1, sym_parameter_list, - STATE(7614), 9, + STATE(7625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789048,7 +781089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153508] = 13, + [154920] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789069,11 +781110,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10277), 1, - anon_sym_DQUOTE, - STATE(7799), 1, - sym_string_literal, - STATE(7615), 9, + ACTIONS(11078), 1, + anon_sym_LBRACK, + STATE(3929), 1, + sym_array_rank_specifier, + STATE(7626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789083,7 +781124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153556] = 12, + [154968] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789104,10 +781145,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3434), 2, - anon_sym_while, - anon_sym_else, - STATE(7616), 9, + ACTIONS(11014), 1, + anon_sym_LBRACE, + STATE(1993), 1, + sym_switch_body, + STATE(7627), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789117,7 +781159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153602] = 12, + [155016] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789138,10 +781180,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3408), 2, - anon_sym_while, - anon_sym_else, - STATE(7617), 9, + ACTIONS(9742), 1, + anon_sym_LBRACE, + STATE(5691), 1, + sym_block, + STATE(7628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789151,7 +781194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153648] = 12, + [155064] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789172,10 +781215,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3558), 2, + ACTIONS(3466), 2, anon_sym_while, anon_sym_else, - STATE(7618), 9, + STATE(7629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789185,7 +781228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153694] = 12, + [155110] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789206,10 +781249,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3446), 2, - anon_sym_while, - anon_sym_else, - STATE(7619), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6623), 1, + sym_parameter_list, + STATE(7630), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789219,7 +781263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153740] = 12, + [155158] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789240,10 +781284,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3458), 2, - anon_sym_while, - anon_sym_else, - STATE(7620), 9, + ACTIONS(11080), 1, + anon_sym_LBRACE, + STATE(3413), 1, + sym__switch_expression_body, + STATE(7631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789253,7 +781298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153786] = 12, + [155206] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789274,10 +781319,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3542), 2, - anon_sym_while, - anon_sym_else, - STATE(7621), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6607), 1, + sym_parameter_list, + STATE(7632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789287,7 +781333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153832] = 12, + [155254] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789308,10 +781354,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3502), 2, - anon_sym_while, - anon_sym_else, - STATE(7622), 9, + ACTIONS(9899), 1, + anon_sym_LBRACE, + STATE(7915), 1, + sym_enum_member_declaration_list, + STATE(7633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789321,7 +781368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153878] = 12, + [155302] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789342,10 +781389,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3514), 2, - anon_sym_while, - anon_sym_else, - STATE(7623), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6921), 1, + sym_parameter_list, + STATE(7634), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789355,7 +781403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153924] = 12, + [155350] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789376,10 +781424,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3462), 2, - anon_sym_while, - anon_sym_else, - STATE(7624), 9, + ACTIONS(11082), 1, + anon_sym_LBRACE, + STATE(3370), 1, + sym__with_body, + STATE(7635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789389,7 +781438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153970] = 13, + [155398] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789410,11 +781459,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6747), 1, - sym_parameter_list, - STATE(7625), 9, + ACTIONS(11084), 1, + anon_sym_EQ_GT, + STATE(7636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789424,7 +781471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154018] = 12, + [155443] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789445,10 +781492,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3454), 2, - anon_sym_while, - anon_sym_else, - STATE(7626), 9, + ACTIONS(11086), 1, + aux_sym_preproc_if_token3, + STATE(7637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789458,7 +781504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154064] = 12, + [155488] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789479,10 +781525,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3522), 2, - anon_sym_while, - anon_sym_else, - STATE(7627), 9, + ACTIONS(11088), 1, + sym_interpolation_start_quote, + STATE(7638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789492,7 +781537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154110] = 12, + [155533] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789513,10 +781558,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3506), 2, - anon_sym_while, - anon_sym_else, - STATE(7628), 9, + ACTIONS(11090), 1, + anon_sym_GT, + STATE(7639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789526,7 +781570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154156] = 12, + [155578] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789547,10 +781591,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10580), 2, - anon_sym_this, - anon_sym_base, - STATE(7629), 9, + ACTIONS(11092), 1, + sym__optional_semi, + STATE(7640), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789560,7 +781603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154202] = 12, + [155623] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789581,10 +781624,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3404), 2, - anon_sym_while, - anon_sym_else, - STATE(7630), 9, + ACTIONS(11094), 1, + sym__optional_semi, + STATE(7641), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789594,7 +781636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154248] = 12, + [155668] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789615,10 +781657,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3430), 2, - anon_sym_while, - anon_sym_else, - STATE(7631), 9, + ACTIONS(11096), 1, + anon_sym_GT, + STATE(7642), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789628,7 +781669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154294] = 13, + [155713] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789649,11 +781690,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8001), 1, - anon_sym_DOT, - ACTIONS(10582), 1, + ACTIONS(11098), 1, anon_sym_SEMI, - STATE(7632), 9, + STATE(7643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789663,7 +781702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154342] = 13, + [155758] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789684,11 +781723,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6623), 1, - sym_parameter_list, - STATE(7633), 9, + ACTIONS(11100), 1, + anon_sym_SEMI, + STATE(7644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789698,7 +781735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154390] = 12, + [155803] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789719,10 +781756,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3562), 2, - anon_sym_while, - anon_sym_else, - STATE(7634), 9, + ACTIONS(11102), 1, + sym_interpolation_start_quote, + STATE(7645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789732,7 +781768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154436] = 13, + [155848] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789753,11 +781789,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_LPAREN, - STATE(6746), 1, - sym_parameter_list, - STATE(7635), 9, + ACTIONS(11104), 1, + anon_sym_EQ_GT, + STATE(7646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789767,7 +781801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154484] = 12, + [155893] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789788,10 +781822,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3450), 2, - anon_sym_while, - anon_sym_else, - STATE(7636), 9, + ACTIONS(11106), 1, + sym_interpolation_start_quote, + STATE(7647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789801,7 +781834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154530] = 12, + [155938] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789822,10 +781855,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3498), 2, - anon_sym_while, - anon_sym_else, - STATE(7637), 9, + ACTIONS(11108), 1, + anon_sym_EQ_GT, + STATE(7648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789835,7 +781867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154576] = 12, + [155983] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789856,10 +781888,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3534), 2, - anon_sym_while, - anon_sym_else, - STATE(7638), 9, + ACTIONS(11110), 1, + anon_sym_SEMI, + STATE(7649), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789869,7 +781900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154622] = 13, + [156028] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789890,11 +781921,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10584), 1, - anon_sym_LBRACK, - STATE(5538), 1, - sym_array_rank_specifier, - STATE(7639), 9, + ACTIONS(11112), 1, + sym__optional_semi, + STATE(7650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789904,7 +781933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154670] = 12, + [156073] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789925,10 +781954,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3478), 2, - anon_sym_while, - anon_sym_else, - STATE(7640), 9, + ACTIONS(11114), 1, + sym__optional_semi, + STATE(7651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789938,7 +781966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154716] = 12, + [156118] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789959,10 +781987,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3530), 2, - anon_sym_while, - anon_sym_else, - STATE(7641), 9, + ACTIONS(11116), 1, + anon_sym_SQUOTE, + STATE(7652), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789972,7 +781999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154762] = 12, + [156163] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789993,9 +782020,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10586), 1, - sym__optional_semi, - STATE(7642), 9, + ACTIONS(11118), 1, + anon_sym_RBRACK, + STATE(7653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790005,7 +782032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154807] = 12, + [156208] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790026,9 +782053,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10588), 1, - sym_interpolation_start_quote, - STATE(7643), 9, + ACTIONS(11120), 1, + anon_sym_SEMI, + STATE(7654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790038,7 +782065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154852] = 12, + [156253] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790059,9 +782086,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10590), 1, - anon_sym_STAR, - STATE(7644), 9, + ACTIONS(11122), 1, + sym__optional_semi, + STATE(7655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790071,7 +782098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154897] = 12, + [156298] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790092,9 +782119,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10592), 1, - anon_sym_EQ_GT, - STATE(7645), 9, + ACTIONS(11124), 1, + sym__optional_semi, + STATE(7656), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790104,7 +782131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154942] = 12, + [156343] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790125,9 +782152,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10594), 1, + ACTIONS(11126), 1, anon_sym_EQ_GT, - STATE(7646), 9, + STATE(7657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790137,7 +782164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154987] = 12, + [156388] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790158,9 +782185,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10596), 1, - anon_sym_EQ_GT, - STATE(7647), 9, + ACTIONS(11128), 1, + anon_sym_SEMI, + STATE(7658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790170,7 +782197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155032] = 12, + [156433] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790191,9 +782218,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10598), 1, - anon_sym_SEMI, - STATE(7648), 9, + ACTIONS(6931), 1, + anon_sym_RBRACE, + STATE(7659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790203,7 +782230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155077] = 12, + [156478] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790224,9 +782251,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10600), 1, - anon_sym_SEMI, - STATE(7649), 9, + ACTIONS(11130), 1, + sym_raw_string_content, + STATE(7660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790236,7 +782263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155122] = 12, + [156523] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790257,9 +782284,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10602), 1, + ACTIONS(11132), 1, anon_sym_EQ_GT, - STATE(7650), 9, + STATE(7661), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790269,7 +782296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155167] = 12, + [156568] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790290,9 +782317,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10604), 1, - anon_sym_SEMI, - STATE(7651), 9, + ACTIONS(11134), 1, + anon_sym_in, + STATE(7662), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790302,7 +782329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155212] = 12, + [156613] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790323,9 +782350,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10606), 1, - anon_sym_EQ_GT, - STATE(7652), 9, + ACTIONS(11136), 1, + anon_sym_SEMI, + STATE(7663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790335,7 +782362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155257] = 12, + [156658] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790356,9 +782383,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10608), 1, - anon_sym_EQ_GT, - STATE(7653), 9, + ACTIONS(11138), 1, + anon_sym_EQ, + STATE(7664), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790368,7 +782395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155302] = 12, + [156703] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790389,9 +782416,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10610), 1, + ACTIONS(11140), 1, anon_sym_LPAREN, - STATE(7654), 9, + STATE(7665), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790401,7 +782428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155347] = 12, + [156748] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790422,9 +782449,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10612), 1, + ACTIONS(11142), 1, anon_sym_LPAREN, - STATE(7655), 9, + STATE(7666), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790434,7 +782461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155392] = 12, + [156793] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790455,9 +782482,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10614), 1, + ACTIONS(11144), 1, anon_sym_LPAREN, - STATE(7656), 9, + STATE(7667), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790467,7 +782494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155437] = 12, + [156838] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790488,9 +782515,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10616), 1, - anon_sym_EQ_GT, - STATE(7657), 9, + ACTIONS(11146), 1, + anon_sym_SEMI, + STATE(7668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790500,7 +782527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155482] = 12, + [156883] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790521,9 +782548,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10618), 1, + ACTIONS(11148), 1, anon_sym_LPAREN, - STATE(7658), 9, + STATE(7669), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790533,7 +782560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155527] = 12, + [156928] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790554,9 +782581,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10620), 1, + ACTIONS(11150), 1, anon_sym_LPAREN, - STATE(7659), 9, + STATE(7670), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790566,7 +782593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155572] = 12, + [156973] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790587,9 +782614,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10622), 1, + ACTIONS(11152), 1, anon_sym_LPAREN, - STATE(7660), 9, + STATE(7671), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790599,7 +782626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155617] = 12, + [157018] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790620,9 +782647,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10624), 1, + ACTIONS(11154), 1, anon_sym_LPAREN, - STATE(7661), 9, + STATE(7672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790632,7 +782659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155662] = 12, + [157063] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790653,9 +782680,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10626), 1, + ACTIONS(11156), 1, anon_sym_EQ_GT, - STATE(7662), 9, + STATE(7673), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790665,7 +782692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155707] = 12, + [157108] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790686,9 +782713,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10628), 1, - anon_sym_EQ_GT, - STATE(7663), 9, + ACTIONS(11158), 1, + sym_raw_string_end, + STATE(7674), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790698,7 +782725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155752] = 12, + [157153] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790719,9 +782746,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10630), 1, - anon_sym_EQ, - STATE(7664), 9, + ACTIONS(11160), 1, + anon_sym_RPAREN, + STATE(7675), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790731,7 +782758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155797] = 12, + [157198] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790752,9 +782779,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10632), 1, + ACTIONS(11162), 1, anon_sym_COLON, - STATE(7665), 9, + STATE(7676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790764,7 +782791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155842] = 12, + [157243] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790785,9 +782812,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10634), 1, - anon_sym_EQ_GT, - STATE(7666), 9, + ACTIONS(11164), 1, + anon_sym_SEMI, + STATE(7677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790797,7 +782824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155887] = 12, + [157288] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790818,9 +782845,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10636), 1, + ACTIONS(11166), 1, anon_sym_LPAREN, - STATE(7667), 9, + STATE(7678), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790830,7 +782857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155932] = 12, + [157333] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790851,9 +782878,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10638), 1, - anon_sym_EQ_GT, - STATE(7668), 9, + ACTIONS(11168), 1, + sym_interpolation_start_quote, + STATE(7679), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790863,30 +782890,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155977] = 12, - ACTIONS(3), 1, + [157378] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(10640), 1, - anon_sym_EQ_GT, - STATE(7669), 9, + ACTIONS(10608), 1, + aux_sym_preproc_if_token2, + STATE(7680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790896,30 +782923,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156022] = 12, - ACTIONS(3), 1, + [157423] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(10642), 1, - anon_sym_EQ_GT, - STATE(7670), 9, + ACTIONS(11170), 1, + aux_sym_interpolation_format_clause_token1, + STATE(7681), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790929,7 +782956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156067] = 12, + [157468] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790950,9 +782977,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10644), 1, - anon_sym_SEMI, - STATE(7671), 9, + ACTIONS(11172), 1, + anon_sym_EQ_GT, + STATE(7682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790962,7 +782989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156112] = 12, + [157513] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790983,9 +783010,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10646), 1, - anon_sym_EQ_GT, - STATE(7672), 9, + ACTIONS(10606), 1, + sym_interpolation_close_brace, + STATE(7683), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790995,7 +783022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156157] = 12, + [157558] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791016,9 +783043,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10648), 1, - anon_sym_EQ_GT, - STATE(7673), 9, + ACTIONS(11174), 1, + anon_sym_STAR, + STATE(7684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791028,7 +783055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156202] = 12, + [157603] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791049,9 +783076,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10650), 1, - anon_sym_EQ_GT, - STATE(7674), 9, + ACTIONS(11176), 1, + anon_sym_SEMI, + STATE(7685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791061,7 +783088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156247] = 12, + [157648] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791082,9 +783109,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10652), 1, - anon_sym_EQ_GT, - STATE(7675), 9, + ACTIONS(11178), 1, + anon_sym_SEMI, + STATE(7686), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791094,7 +783121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156292] = 12, + [157693] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791115,9 +783142,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10654), 1, - sym_interpolation_start_quote, - STATE(7676), 9, + ACTIONS(11180), 1, + anon_sym_SQUOTE, + STATE(7687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791127,7 +783154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156337] = 12, + [157738] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791148,9 +783175,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10656), 1, - anon_sym_EQ_GT, - STATE(7677), 9, + ACTIONS(11182), 1, + sym_interpolation_start_quote, + STATE(7688), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791160,7 +783187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156382] = 12, + [157783] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791181,9 +783208,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10658), 1, - sym_interpolation_start_quote, - STATE(7678), 9, + ACTIONS(11184), 1, + anon_sym_SEMI, + STATE(7689), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791193,7 +783220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156427] = 12, + [157828] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791214,9 +783241,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10660), 1, - sym_interpolation_start_quote, - STATE(7679), 9, + ACTIONS(7665), 1, + anon_sym_RPAREN, + STATE(7690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791226,7 +783253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156472] = 12, + [157873] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791247,9 +783274,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10662), 1, - sym_raw_string_content, - STATE(7680), 9, + ACTIONS(11186), 1, + sym_interpolation_start_quote, + STATE(7691), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791259,7 +783286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156517] = 12, + [157918] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791280,9 +783307,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10664), 1, - sym_interpolation_start_quote, - STATE(7681), 9, + ACTIONS(11188), 1, + sym_raw_string_content, + STATE(7692), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791292,7 +783319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156562] = 12, + [157963] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791313,9 +783340,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10666), 1, - aux_sym_preproc_if_token3, - STATE(7682), 9, + ACTIONS(11190), 1, + anon_sym_RBRACE, + STATE(7693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791325,7 +783352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156607] = 12, + [158008] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791346,9 +783373,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10668), 1, + ACTIONS(11192), 1, anon_sym_SEMI, - STATE(7683), 9, + STATE(7694), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791358,7 +783385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156652] = 12, + [158053] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791379,9 +783406,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10670), 1, - anon_sym_EQ_GT, - STATE(7684), 9, + ACTIONS(11194), 1, + anon_sym_RBRACK, + STATE(7695), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791391,7 +783418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156697] = 12, + [158098] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791412,9 +783439,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10672), 1, - aux_sym_preproc_if_token3, - STATE(7685), 9, + ACTIONS(11196), 1, + anon_sym_EQ_GT, + STATE(7696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791424,7 +783451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156742] = 12, + [158143] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791445,9 +783472,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10674), 1, - anon_sym_while, - STATE(7686), 9, + ACTIONS(11198), 1, + anon_sym_STAR, + STATE(7697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791457,7 +783484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156787] = 12, + [158188] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791478,9 +783505,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9600), 1, - anon_sym_RBRACE, - STATE(7687), 9, + ACTIONS(11200), 1, + sym__optional_semi, + STATE(7698), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791490,7 +783517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156832] = 12, + [158233] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791511,9 +783538,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10676), 1, - aux_sym_preproc_if_token3, - STATE(7688), 9, + ACTIONS(11202), 1, + anon_sym_EQ_GT, + STATE(7699), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791523,7 +783550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156877] = 12, + [158278] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791544,9 +783571,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10678), 1, - anon_sym_EQ_GT, - STATE(7689), 9, + ACTIONS(11204), 1, + anon_sym_SEMI, + STATE(7700), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791556,30 +783583,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156922] = 12, - ACTIONS(8466), 1, + [158323] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10680), 1, - aux_sym_preproc_if_token2, - STATE(7690), 9, + ACTIONS(11206), 1, + anon_sym_SEMI, + STATE(7701), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791589,7 +783616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156967] = 12, + [158368] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791610,9 +783637,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10682), 1, - anon_sym_EQ_GT, - STATE(7691), 9, + ACTIONS(7498), 1, + anon_sym_RPAREN, + STATE(7702), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791622,7 +783649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157012] = 12, + [158413] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791643,9 +783670,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10684), 1, - anon_sym_SEMI, - STATE(7692), 9, + ACTIONS(11208), 1, + anon_sym_EQ_GT, + STATE(7703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791655,7 +783682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157057] = 12, + [158458] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791676,9 +783703,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10686), 1, - anon_sym_EQ_GT, - STATE(7693), 9, + ACTIONS(11210), 1, + anon_sym_SEMI, + STATE(7704), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791688,7 +783715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157102] = 12, + [158503] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791709,9 +783736,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10688), 1, - anon_sym_SEMI, - STATE(7694), 9, + ACTIONS(10658), 1, + anon_sym_RBRACE, + STATE(7705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791721,30 +783748,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157147] = 12, - ACTIONS(8466), 1, + [158548] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10690), 1, - aux_sym_preproc_if_token2, - STATE(7695), 9, + ACTIONS(11212), 1, + anon_sym_GT, + STATE(7706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791754,7 +783781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157192] = 12, + [158593] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791775,9 +783802,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10692), 1, - anon_sym_EQ_GT, - STATE(7696), 9, + ACTIONS(11214), 1, + sym__optional_semi, + STATE(7707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791787,7 +783814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157237] = 12, + [158638] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791808,9 +783835,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9015), 1, + ACTIONS(9618), 1, anon_sym_EQ, - STATE(7697), 9, + STATE(7708), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791820,7 +783847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157282] = 12, + [158683] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791841,9 +783868,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9791), 1, - anon_sym_RBRACE, - STATE(7698), 9, + ACTIONS(11216), 1, + anon_sym_EQ_GT, + STATE(7709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791853,7 +783880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157327] = 12, + [158728] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791874,9 +783901,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10694), 1, - anon_sym_SEMI, - STATE(7699), 9, + ACTIONS(11218), 1, + anon_sym_LPAREN, + STATE(7710), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791886,7 +783913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157372] = 12, + [158773] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791907,9 +783934,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10696), 1, + ACTIONS(11220), 1, anon_sym_LT, - STATE(7700), 9, + STATE(7711), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791919,7 +783946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157417] = 12, + [158818] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791940,9 +783967,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10698), 1, + ACTIONS(11222), 1, sym__optional_semi, - STATE(7701), 9, + STATE(7712), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791952,7 +783979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157462] = 12, + [158863] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791973,9 +784000,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10700), 1, - anon_sym_RPAREN, - STATE(7702), 9, + ACTIONS(11224), 1, + sym__optional_semi, + STATE(7713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791985,7 +784012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157507] = 12, + [158908] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792006,9 +784033,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10702), 1, - sym__optional_semi, - STATE(7703), 9, + ACTIONS(11226), 1, + anon_sym_EQ_GT, + STATE(7714), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792018,30 +784045,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157552] = 12, - ACTIONS(6373), 1, - aux_sym_preproc_if_token2, - ACTIONS(8466), 1, + [158953] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - STATE(7704), 9, + ACTIONS(11228), 1, + anon_sym_SEMI, + STATE(7715), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792051,7 +784078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157597] = 12, + [158998] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792072,9 +784099,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10704), 1, - anon_sym_RBRACK, - STATE(7705), 9, + ACTIONS(11230), 1, + anon_sym_COMMA, + STATE(7716), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792084,7 +784111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157642] = 12, + [159043] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792105,9 +784132,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10574), 1, - anon_sym_in, - STATE(7706), 9, + ACTIONS(11232), 1, + anon_sym_COMMA, + STATE(7717), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792117,7 +784144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157687] = 12, + [159088] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792138,9 +784165,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10706), 1, - anon_sym_EQ_GT, - STATE(7707), 9, + ACTIONS(11234), 1, + anon_sym_RPAREN, + STATE(7718), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792150,7 +784177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157732] = 12, + [159133] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792171,9 +784198,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10708), 1, - anon_sym_EQ_GT, - STATE(7708), 9, + ACTIONS(7750), 1, + anon_sym_RPAREN, + STATE(7719), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792183,7 +784210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157777] = 12, + [159178] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792204,9 +784231,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10710), 1, + ACTIONS(11236), 1, anon_sym_EQ, - STATE(7709), 9, + STATE(7720), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792216,30 +784243,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157822] = 12, - ACTIONS(6200), 1, - aux_sym_preproc_if_token2, - ACTIONS(8466), 1, + [159223] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - STATE(7710), 9, + ACTIONS(11238), 1, + anon_sym_SEMI, + STATE(7721), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792249,7 +784276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157867] = 12, + [159268] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792270,9 +784297,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10712), 1, - anon_sym_LPAREN, - STATE(7711), 9, + ACTIONS(9576), 1, + anon_sym_COMMA, + STATE(7722), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792282,7 +784309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157912] = 12, + [159313] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792303,9 +784330,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5975), 1, - anon_sym_RBRACE, - STATE(7712), 9, + ACTIONS(11240), 1, + anon_sym_EQ_GT, + STATE(7723), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792315,7 +784342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157957] = 12, + [159358] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792336,9 +784363,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10714), 1, - anon_sym_SEMI, - STATE(7713), 9, + ACTIONS(11242), 1, + anon_sym_EQ_GT, + STATE(7724), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792348,7 +784375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158002] = 12, + [159403] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792369,9 +784396,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10716), 1, - sym_integer_literal, - STATE(7714), 9, + ACTIONS(11244), 1, + sym__optional_semi, + STATE(7725), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792381,7 +784408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158047] = 12, + [159448] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792402,9 +784429,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10718), 1, - sym_raw_string_content, - STATE(7715), 9, + ACTIONS(11246), 1, + anon_sym_GT, + STATE(7726), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792414,7 +784441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158092] = 12, + [159493] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792435,9 +784462,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10720), 1, - anon_sym_LPAREN, - STATE(7716), 9, + ACTIONS(11248), 1, + anon_sym_SEMI, + STATE(7727), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792447,7 +784474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158137] = 12, + [159538] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792468,9 +784495,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10722), 1, - anon_sym_LPAREN, - STATE(7717), 9, + ACTIONS(7588), 1, + anon_sym_RPAREN, + STATE(7728), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792480,7 +784507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158182] = 12, + [159583] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792501,9 +784528,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10724), 1, - anon_sym_LPAREN, - STATE(7718), 9, + ACTIONS(11250), 1, + anon_sym_SEMI, + STATE(7729), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792513,7 +784540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158227] = 12, + [159628] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792534,9 +784561,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10726), 1, - anon_sym_GT, - STATE(7719), 9, + ACTIONS(11252), 1, + anon_sym_SEMI, + STATE(7730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792546,7 +784573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158272] = 12, + [159673] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792567,9 +784594,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10728), 1, - anon_sym_while, - STATE(7720), 9, + ACTIONS(11254), 1, + aux_sym_preproc_if_token3, + STATE(7731), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792579,7 +784606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158317] = 12, + [159718] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792600,9 +784627,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10730), 1, - anon_sym_LPAREN, - STATE(7721), 9, + ACTIONS(11256), 1, + anon_sym_while, + STATE(7732), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792612,7 +784639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158362] = 12, + [159763] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792633,9 +784660,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10732), 1, - sym_integer_literal, - STATE(7722), 9, + ACTIONS(11258), 1, + anon_sym_SEMI, + STATE(7733), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792645,30 +784672,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158407] = 12, - ACTIONS(8466), 1, + [159808] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10734), 1, - aux_sym_preproc_if_token2, - STATE(7723), 9, + ACTIONS(11260), 1, + anon_sym_EQ_GT, + STATE(7734), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792678,7 +784705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158452] = 12, + [159853] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792699,9 +784726,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10736), 1, - anon_sym_EQ_GT, - STATE(7724), 9, + ACTIONS(11262), 1, + sym_integer_literal, + STATE(7735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792711,7 +784738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158497] = 12, + [159898] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792732,9 +784759,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10738), 1, - sym__optional_semi, - STATE(7725), 9, + ACTIONS(11264), 1, + anon_sym_SEMI, + STATE(7736), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792744,7 +784771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158542] = 12, + [159943] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792765,9 +784792,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10740), 1, - anon_sym_RBRACK, - STATE(7726), 9, + ACTIONS(11266), 1, + aux_sym_preproc_if_token3, + STATE(7737), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792777,7 +784804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158587] = 12, + [159988] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792798,9 +784825,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10742), 1, - anon_sym_EQ_GT, - STATE(7727), 9, + ACTIONS(11268), 1, + aux_sym_preproc_if_token3, + STATE(7738), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792810,30 +784837,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158632] = 12, - ACTIONS(8466), 1, + [160033] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10744), 1, - aux_sym_preproc_if_token2, - STATE(7728), 9, + ACTIONS(11270), 1, + aux_sym_preproc_if_token3, + STATE(7739), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792843,7 +784870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158677] = 12, + [160078] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792864,9 +784891,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10746), 1, - sym__optional_semi, - STATE(7729), 9, + ACTIONS(11272), 1, + anon_sym_EQ_GT, + STATE(7740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792876,7 +784903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158722] = 12, + [160123] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792897,9 +784924,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10748), 1, + ACTIONS(11274), 1, aux_sym_preproc_if_token3, - STATE(7730), 9, + STATE(7741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792909,7 +784936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158767] = 12, + [160168] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792930,9 +784957,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10750), 1, - anon_sym_EQ_GT, - STATE(7731), 9, + ACTIONS(11276), 1, + sym__optional_semi, + STATE(7742), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792942,7 +784969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158812] = 12, + [160213] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792963,9 +784990,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10752), 1, - anon_sym_SQUOTE, - STATE(7732), 9, + ACTIONS(11278), 1, + anon_sym_DOT, + STATE(7743), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792975,7 +785002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158857] = 12, + [160258] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792996,9 +785023,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10754), 1, + ACTIONS(11280), 1, anon_sym_RPAREN, - STATE(7733), 9, + STATE(7744), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793008,7 +785035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158902] = 12, + [160303] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793029,9 +785056,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10756), 1, + ACTIONS(11282), 1, aux_sym_preproc_if_token3, - STATE(7734), 9, + STATE(7745), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793041,30 +785068,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158947] = 12, - ACTIONS(8466), 1, + [160348] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10265), 1, - aux_sym_preproc_if_token2, - STATE(7735), 9, + ACTIONS(11284), 1, + anon_sym_EQ, + STATE(7746), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793074,7 +785101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158992] = 12, + [160393] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793095,9 +785122,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10758), 1, - anon_sym_EQ_GT, - STATE(7736), 9, + ACTIONS(11286), 1, + anon_sym_RBRACE, + STATE(7747), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793107,7 +785134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159037] = 12, + [160438] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793128,9 +785155,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10760), 1, - anon_sym_EQ_GT, - STATE(7737), 9, + ACTIONS(11288), 1, + aux_sym_preproc_if_token3, + STATE(7748), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793140,7 +785167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159082] = 12, + [160483] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793161,9 +785188,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10762), 1, - sym__optional_semi, - STATE(7738), 9, + ACTIONS(11290), 1, + anon_sym_RPAREN, + STATE(7749), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793173,7 +785200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159127] = 12, + [160528] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793194,9 +785221,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10764), 1, - anon_sym_EQ, - STATE(7739), 9, + ACTIONS(10521), 1, + anon_sym_RBRACE, + STATE(7750), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793206,7 +785233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159172] = 12, + [160573] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793227,9 +785254,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10766), 1, - anon_sym_SEMI, - STATE(7740), 9, + ACTIONS(11292), 1, + aux_sym_preproc_if_token3, + STATE(7751), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793239,7 +785266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159217] = 12, + [160618] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793260,9 +785287,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10768), 1, - aux_sym_preproc_if_token3, - STATE(7741), 9, + ACTIONS(11294), 1, + anon_sym_SEMI, + STATE(7752), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793272,7 +785299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159262] = 12, + [160663] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793293,9 +785320,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10770), 1, - anon_sym_SEMI, - STATE(7742), 9, + ACTIONS(11296), 1, + anon_sym_EQ_GT, + STATE(7753), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793305,7 +785332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159307] = 12, + [160708] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793326,9 +785353,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10772), 1, + ACTIONS(11298), 1, anon_sym_SEMI, - STATE(7743), 9, + STATE(7754), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793338,7 +785365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159352] = 12, + [160753] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793359,9 +785386,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10774), 1, - sym_integer_literal, - STATE(7744), 9, + ACTIONS(11300), 1, + anon_sym_RPAREN, + STATE(7755), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793371,7 +785398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159397] = 12, + [160798] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793392,9 +785419,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10776), 1, + ACTIONS(11302), 1, anon_sym_SEMI, - STATE(7745), 9, + STATE(7756), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793404,7 +785431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159442] = 12, + [160843] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793425,9 +785452,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10778), 1, - anon_sym_GT, - STATE(7746), 9, + ACTIONS(11304), 1, + anon_sym_RPAREN, + STATE(7757), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793437,7 +785464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159487] = 12, + [160888] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793458,9 +785485,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10780), 1, - aux_sym_preproc_if_token3, - STATE(7747), 9, + ACTIONS(11306), 1, + anon_sym_DOT, + STATE(7758), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793470,7 +785497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159532] = 12, + [160933] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793491,9 +785518,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10782), 1, + ACTIONS(11308), 1, sym__optional_semi, - STATE(7748), 9, + STATE(7759), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793503,7 +785530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159577] = 12, + [160978] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793524,9 +785551,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10784), 1, - sym__optional_semi, - STATE(7749), 9, + ACTIONS(11310), 1, + anon_sym_SEMI, + STATE(7760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793536,7 +785563,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159622] = 12, + [161023] = 12, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(11312), 1, + aux_sym_preproc_if_token2, + STATE(7761), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [161068] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793557,9 +785617,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9039), 1, - anon_sym_COMMA, - STATE(7750), 9, + ACTIONS(11314), 1, + anon_sym_GT, + STATE(7762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793569,7 +785629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159667] = 12, + [161113] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793590,9 +785650,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10786), 1, + ACTIONS(11316), 1, anon_sym_GT, - STATE(7751), 9, + STATE(7763), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793602,7 +785662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159712] = 12, + [161158] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793623,9 +785683,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10788), 1, - anon_sym_GT, - STATE(7752), 9, + ACTIONS(11318), 1, + anon_sym_SEMI, + STATE(7764), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793635,7 +785695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159757] = 12, + [161203] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793656,9 +785716,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10790), 1, - sym__optional_semi, - STATE(7753), 9, + ACTIONS(11320), 1, + anon_sym_EQ_GT, + STATE(7765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793668,7 +785728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159802] = 12, + [161248] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793689,9 +785749,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10792), 1, - anon_sym_COMMA, - STATE(7754), 9, + ACTIONS(11322), 1, + anon_sym_RBRACE, + STATE(7766), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793701,7 +785761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159847] = 12, + [161293] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793722,9 +785782,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10794), 1, - anon_sym_SEMI, - STATE(7755), 9, + ACTIONS(11324), 1, + sym__optional_semi, + STATE(7767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793734,7 +785794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159892] = 12, + [161338] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793755,9 +785815,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10796), 1, - anon_sym_GT, - STATE(7756), 9, + ACTIONS(11326), 1, + sym__optional_semi, + STATE(7768), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793767,7 +785827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159937] = 12, + [161383] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793788,9 +785848,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10798), 1, - anon_sym_COMMA, - STATE(7757), 9, + ACTIONS(11328), 1, + anon_sym_GT, + STATE(7769), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793800,7 +785860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159982] = 12, + [161428] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793821,9 +785881,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10800), 1, - anon_sym_STAR, - STATE(7758), 9, + ACTIONS(11330), 1, + anon_sym_SEMI, + STATE(7770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793833,7 +785893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160027] = 12, + [161473] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793854,9 +785914,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10802), 1, - anon_sym_EQ_GT, - STATE(7759), 9, + ACTIONS(11332), 1, + aux_sym_preproc_if_token3, + STATE(7771), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793866,7 +785926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160072] = 12, + [161518] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793887,9 +785947,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10804), 1, - sym_raw_string_end, - STATE(7760), 9, + ACTIONS(11334), 1, + anon_sym_LPAREN, + STATE(7772), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793899,7 +785959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160117] = 12, + [161563] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793920,9 +785980,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10806), 1, + ACTIONS(11336), 1, anon_sym_SEMI, - STATE(7761), 9, + STATE(7773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793932,7 +785992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160162] = 12, + [161608] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793953,9 +786013,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6247), 1, - anon_sym_RBRACE, - STATE(7762), 9, + ACTIONS(11338), 1, + anon_sym_EQ_GT, + STATE(7774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793965,7 +786025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160207] = 12, + [161653] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793986,9 +786046,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(11340), 1, anon_sym_SEMI, - STATE(7763), 9, + STATE(7775), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793998,7 +786058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160252] = 12, + [161698] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794019,9 +786079,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10810), 1, - anon_sym_SEMI, - STATE(7764), 9, + ACTIONS(11342), 1, + anon_sym_GT, + STATE(7776), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794031,7 +786091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160297] = 12, + [161743] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794052,9 +786112,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10812), 1, - sym_interpolation_start_quote, - STATE(7765), 9, + ACTIONS(11344), 1, + anon_sym_RPAREN, + STATE(7777), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794064,7 +786124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160342] = 12, + [161788] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794085,9 +786145,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10814), 1, - ts_builtin_sym_end, - STATE(7766), 9, + ACTIONS(11346), 1, + aux_sym_preproc_if_token3, + STATE(7778), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794097,7 +786157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160387] = 12, + [161833] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794118,9 +786178,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10816), 1, - sym__optional_semi, - STATE(7767), 9, + ACTIONS(6531), 1, + anon_sym_RBRACE, + STATE(7779), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794130,7 +786190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160432] = 12, + [161878] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794151,9 +786211,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10818), 1, - sym__optional_semi, - STATE(7768), 9, + ACTIONS(11348), 1, + aux_sym_preproc_if_token3, + STATE(7780), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794163,7 +786223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160477] = 12, + [161923] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794184,9 +786244,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10820), 1, - anon_sym_EQ_GT, - STATE(7769), 9, + ACTIONS(10489), 1, + anon_sym_RBRACE, + STATE(7781), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794196,7 +786256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160522] = 12, + [161968] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794217,9 +786277,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10822), 1, - anon_sym_SQUOTE, - STATE(7770), 9, + ACTIONS(11350), 1, + anon_sym_EQ_GT, + STATE(7782), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794229,7 +786289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160567] = 12, + [162013] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794250,9 +786310,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10824), 1, - sym__optional_semi, - STATE(7771), 9, + ACTIONS(11352), 1, + sym_integer_literal, + STATE(7783), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794262,7 +786322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160612] = 12, + [162058] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794283,9 +786343,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10826), 1, - sym__optional_semi, - STATE(7772), 9, + ACTIONS(11354), 1, + anon_sym_SEMI, + STATE(7784), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794295,7 +786355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160657] = 12, + [162103] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794316,9 +786376,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10828), 1, + ACTIONS(11356), 1, anon_sym_SEMI, - STATE(7773), 9, + STATE(7785), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794328,7 +786388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160702] = 12, + [162148] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794349,9 +786409,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10830), 1, - sym__optional_semi, - STATE(7774), 9, + ACTIONS(11358), 1, + anon_sym_EQ_GT, + STATE(7786), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794361,7 +786421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160747] = 12, + [162193] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794382,9 +786442,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10832), 1, - sym__optional_semi, - STATE(7775), 9, + ACTIONS(11360), 1, + anon_sym_COMMA, + STATE(7787), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794394,7 +786454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160792] = 12, + [162238] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794415,9 +786475,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10834), 1, - anon_sym_SEMI, - STATE(7776), 9, + ACTIONS(11362), 1, + sym__optional_semi, + STATE(7788), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794427,7 +786487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160837] = 12, + [162283] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794448,9 +786508,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10836), 1, - anon_sym_EQ_GT, - STATE(7777), 9, + ACTIONS(11364), 1, + anon_sym_SEMI, + STATE(7789), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794460,7 +786520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160882] = 12, + [162328] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794481,9 +786541,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10838), 1, - sym__optional_semi, - STATE(7778), 9, + ACTIONS(11366), 1, + aux_sym_preproc_if_token3, + STATE(7790), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794493,7 +786553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160927] = 12, + [162373] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794514,9 +786574,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10840), 1, - anon_sym_STAR, - STATE(7779), 9, + ACTIONS(11368), 1, + aux_sym_preproc_if_token3, + STATE(7791), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794526,7 +786586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160972] = 12, + [162418] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794547,9 +786607,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10842), 1, - anon_sym_SEMI, - STATE(7780), 9, + ACTIONS(11370), 1, + aux_sym_preproc_if_token3, + STATE(7792), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794559,7 +786619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161017] = 12, + [162463] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794580,9 +786640,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10844), 1, + ACTIONS(11372), 1, aux_sym_preproc_if_token3, - STATE(7781), 9, + STATE(7793), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794592,7 +786652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161062] = 12, + [162508] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794613,9 +786673,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10846), 1, - sym__optional_semi, - STATE(7782), 9, + ACTIONS(11012), 1, + anon_sym_in, + STATE(7794), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794625,7 +786685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161107] = 12, + [162553] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794646,9 +786706,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10848), 1, - anon_sym_SEMI, - STATE(7783), 9, + ACTIONS(11374), 1, + aux_sym_preproc_if_token3, + STATE(7795), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794658,7 +786718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161152] = 12, + [162598] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794679,9 +786739,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10850), 1, + ACTIONS(11376), 1, anon_sym_SEMI, - STATE(7784), 9, + STATE(7796), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794691,7 +786751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161197] = 12, + [162643] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794712,9 +786772,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10852), 1, - anon_sym_SEMI, - STATE(7785), 9, + ACTIONS(7346), 1, + anon_sym_RPAREN, + STATE(7797), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794724,7 +786784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161242] = 12, + [162688] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794745,9 +786805,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10854), 1, - aux_sym_preproc_if_token3, - STATE(7786), 9, + ACTIONS(11378), 1, + anon_sym_COMMA, + STATE(7798), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794757,7 +786817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161287] = 12, + [162733] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794778,9 +786838,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6775), 1, - anon_sym_RPAREN, - STATE(7787), 9, + ACTIONS(11380), 1, + aux_sym_preproc_if_token3, + STATE(7799), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794790,7 +786850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161332] = 12, + [162778] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794811,9 +786871,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10856), 1, - anon_sym_SEMI, - STATE(7788), 9, + ACTIONS(11382), 1, + anon_sym_LPAREN, + STATE(7800), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794823,7 +786883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161377] = 12, + [162823] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794844,9 +786904,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10858), 1, - sym__optional_semi, - STATE(7789), 9, + ACTIONS(11384), 1, + anon_sym_SEMI, + STATE(7801), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794856,7 +786916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161422] = 12, + [162868] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794877,9 +786937,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10860), 1, - sym__optional_semi, - STATE(7790), 9, + ACTIONS(11386), 1, + anon_sym_SEMI, + STATE(7802), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794889,7 +786949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161467] = 12, + [162913] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794910,9 +786970,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10862), 1, - anon_sym_SEMI, - STATE(7791), 9, + ACTIONS(11388), 1, + aux_sym_preproc_if_token3, + STATE(7803), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794922,7 +786982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161512] = 12, + [162958] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794943,9 +787003,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10864), 1, - anon_sym_RPAREN, - STATE(7792), 9, + ACTIONS(11390), 1, + anon_sym_SEMI, + STATE(7804), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794955,7 +787015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161557] = 12, + [163003] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794976,9 +787036,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10866), 1, - anon_sym_SEMI, - STATE(7793), 9, + ACTIONS(11392), 1, + anon_sym_LPAREN, + STATE(7805), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794988,7 +787048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161602] = 12, + [163048] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795009,9 +787069,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10868), 1, - anon_sym_EQ_GT, - STATE(7794), 9, + ACTIONS(11394), 1, + anon_sym_RBRACK, + STATE(7806), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795021,7 +787081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161647] = 12, + [163093] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795042,9 +787102,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10139), 1, - sym_interpolation_close_brace, - STATE(7795), 9, + ACTIONS(11396), 1, + sym__optional_semi, + STATE(7807), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795054,7 +787114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161692] = 12, + [163138] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795075,42 +787135,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10870), 1, - anon_sym_RBRACE, - STATE(7796), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [161737] = 12, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(10872), 1, - aux_sym_interpolation_format_clause_token1, - STATE(7797), 9, + ACTIONS(11398), 1, + anon_sym_GT, + STATE(7808), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795120,7 +787147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161782] = 12, + [163183] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795141,42 +787168,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10874), 1, - anon_sym_RPAREN, - STATE(7798), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [161827] = 12, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(10122), 1, - aux_sym_preproc_if_token2, - STATE(7799), 9, + ACTIONS(11400), 1, + aux_sym_preproc_if_token3, + STATE(7809), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795186,7 +787180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161872] = 12, + [163228] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795207,9 +787201,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10876), 1, - aux_sym_preproc_if_token3, - STATE(7800), 9, + ACTIONS(11402), 1, + anon_sym_EQ_GT, + STATE(7810), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795219,7 +787213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161917] = 12, + [163273] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795240,9 +787234,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10878), 1, - anon_sym_while, - STATE(7801), 9, + ACTIONS(11404), 1, + anon_sym_STAR, + STATE(7811), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795252,7 +787246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161962] = 12, + [163318] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795273,9 +787267,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10880), 1, - anon_sym_SEMI, - STATE(7802), 9, + ACTIONS(11406), 1, + anon_sym_RBRACE, + STATE(7812), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795285,7 +787279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162007] = 12, + [163363] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795306,9 +787300,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10882), 1, - anon_sym_RPAREN, - STATE(7803), 9, + ACTIONS(11408), 1, + anon_sym_SQUOTE, + STATE(7813), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795318,7 +787312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162052] = 12, + [163408] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795339,9 +787333,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10884), 1, - aux_sym_preproc_if_token3, - STATE(7804), 9, + ACTIONS(11410), 1, + anon_sym_EQ_GT, + STATE(7814), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795351,7 +787345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162097] = 12, + [163453] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795372,9 +787366,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10886), 1, - aux_sym_preproc_if_token3, - STATE(7805), 9, + ACTIONS(11412), 1, + anon_sym_LPAREN, + STATE(7815), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795384,7 +787378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162142] = 12, + [163498] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795405,9 +787399,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10888), 1, - anon_sym_EQ_GT, - STATE(7806), 9, + ACTIONS(11414), 1, + anon_sym_LPAREN, + STATE(7816), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795417,7 +787411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162187] = 12, + [163543] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795438,9 +787432,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10890), 1, - anon_sym_RPAREN, - STATE(7807), 9, + ACTIONS(11416), 1, + anon_sym_EQ_GT, + STATE(7817), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795450,7 +787444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162232] = 12, + [163588] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795471,9 +787465,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10892), 1, - anon_sym_RPAREN, - STATE(7808), 9, + ACTIONS(11418), 1, + anon_sym_LPAREN, + STATE(7818), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795483,7 +787477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162277] = 12, + [163633] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795504,9 +787498,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10894), 1, - sym_integer_literal, - STATE(7809), 9, + ACTIONS(11420), 1, + anon_sym_SEMI, + STATE(7819), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795516,7 +787510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162322] = 12, + [163678] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795537,9 +787531,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9580), 1, - anon_sym_RBRACE, - STATE(7810), 9, + ACTIONS(11422), 1, + anon_sym_LPAREN, + STATE(7820), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795549,7 +787543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162367] = 12, + [163723] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795570,9 +787564,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10896), 1, - anon_sym_SEMI, - STATE(7811), 9, + ACTIONS(11424), 1, + anon_sym_LPAREN, + STATE(7821), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795582,7 +787576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162412] = 12, + [163768] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795603,9 +787597,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10898), 1, - anon_sym_EQ_GT, - STATE(7812), 9, + ACTIONS(11426), 1, + anon_sym_COLON, + STATE(7822), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795615,7 +787609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162457] = 12, + [163813] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795636,9 +787630,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10900), 1, - anon_sym_EQ_GT, - STATE(7813), 9, + ACTIONS(11428), 1, + anon_sym_RPAREN, + STATE(7823), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795648,7 +787642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162502] = 12, + [163858] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795669,9 +787663,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10902), 1, + ACTIONS(11430), 1, sym__optional_semi, - STATE(7814), 9, + STATE(7824), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795681,7 +787675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162547] = 12, + [163903] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795702,9 +787696,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10904), 1, - anon_sym_GT, - STATE(7815), 9, + ACTIONS(11432), 1, + anon_sym_RPAREN, + STATE(7825), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795714,7 +787708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162592] = 12, + [163948] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795735,9 +787729,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10906), 1, + ACTIONS(11434), 1, anon_sym_SEMI, - STATE(7816), 9, + STATE(7826), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795747,7 +787741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162637] = 12, + [163993] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795768,9 +787762,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10908), 1, - anon_sym_SEMI, - STATE(7817), 9, + ACTIONS(10179), 1, + anon_sym_LPAREN, + STATE(7827), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795780,7 +787774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162682] = 12, + [164038] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795801,9 +787795,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10910), 1, - anon_sym_SEMI, - STATE(7818), 9, + ACTIONS(10434), 1, + anon_sym_RBRACE, + STATE(7828), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795813,7 +787807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162727] = 12, + [164083] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795834,9 +787828,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6721), 1, + ACTIONS(6978), 1, + anon_sym_RBRACE, + STATE(7829), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [164128] = 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(11436), 1, anon_sym_RPAREN, - STATE(7819), 9, + STATE(7830), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795846,7 +787873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162772] = 12, + [164173] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795867,9 +787894,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10912), 1, + ACTIONS(11438), 1, anon_sym_SEMI, - STATE(7820), 9, + STATE(7831), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795879,7 +787906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162817] = 12, + [164218] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795900,9 +787927,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10914), 1, - aux_sym_preproc_if_token3, - STATE(7821), 9, + ACTIONS(11440), 1, + sym_integer_literal, + STATE(7832), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795912,7 +787939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162862] = 12, + [164263] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795933,9 +787960,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10916), 1, - aux_sym_preproc_if_token3, - STATE(7822), 9, + ACTIONS(11442), 1, + anon_sym_SEMI, + STATE(7833), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795945,7 +787972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162907] = 12, + [164308] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795966,9 +787993,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10918), 1, - aux_sym_preproc_if_token3, - STATE(7823), 9, + ACTIONS(11444), 1, + anon_sym_SEMI, + STATE(7834), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795978,7 +788005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162952] = 12, + [164353] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795999,9 +788026,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10920), 1, - sym__optional_semi, - STATE(7824), 9, + ACTIONS(11446), 1, + anon_sym_SEMI, + STATE(7835), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796011,7 +788038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162997] = 12, + [164398] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796032,9 +788059,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10922), 1, - sym__optional_semi, - STATE(7825), 9, + ACTIONS(11448), 1, + anon_sym_STAR, + STATE(7836), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796044,7 +788071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163042] = 12, + [164443] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796065,9 +788092,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10924), 1, - anon_sym_DOT, - STATE(7826), 9, + ACTIONS(11450), 1, + anon_sym_RBRACE, + STATE(7837), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796077,7 +788104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163087] = 12, + [164488] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796098,9 +788125,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9807), 1, - anon_sym_RBRACE, - STATE(7827), 9, + ACTIONS(11452), 1, + anon_sym_SEMI, + STATE(7838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796110,7 +788137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163132] = 12, + [164533] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796131,9 +788158,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10926), 1, - anon_sym_LPAREN, - STATE(7828), 9, + ACTIONS(11454), 1, + anon_sym_COLON, + STATE(7839), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796143,7 +788170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163177] = 12, + [164578] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796164,9 +788191,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10928), 1, - anon_sym_RBRACE, - STATE(7829), 9, + ACTIONS(11456), 1, + anon_sym_GT, + STATE(7840), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796176,7 +788203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163222] = 12, + [164623] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796197,9 +788224,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10930), 1, - sym__optional_semi, - STATE(7830), 9, + ACTIONS(11458), 1, + anon_sym_SEMI, + STATE(7841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796209,7 +788236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163267] = 12, + [164668] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796230,9 +788257,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10932), 1, + ACTIONS(11460), 1, sym__optional_semi, - STATE(7831), 9, + STATE(7842), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796242,7 +788269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163312] = 12, + [164713] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796263,9 +788290,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10934), 1, - anon_sym_GT, - STATE(7832), 9, + ACTIONS(11462), 1, + sym__optional_semi, + STATE(7843), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796275,7 +788302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163357] = 12, + [164758] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796296,9 +788323,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10936), 1, - anon_sym_LPAREN, - STATE(7833), 9, + ACTIONS(11464), 1, + anon_sym_COLON, + STATE(7844), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796308,7 +788335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163402] = 12, + [164803] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796329,9 +788356,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10938), 1, - anon_sym_GT, - STATE(7834), 9, + ACTIONS(11466), 1, + anon_sym_SEMI, + STATE(7845), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796341,7 +788368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163447] = 12, + [164848] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796362,9 +788389,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10940), 1, - anon_sym_LPAREN, - STATE(7835), 9, + ACTIONS(11468), 1, + anon_sym_EQ_GT, + STATE(7846), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796374,7 +788401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163492] = 12, + [164893] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796395,9 +788422,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10942), 1, - anon_sym_LPAREN, - STATE(7836), 9, + ACTIONS(11024), 1, + anon_sym_in, + STATE(7847), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796407,7 +788434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163537] = 12, + [164938] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796428,9 +788455,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10944), 1, - anon_sym_LPAREN, - STATE(7837), 9, + ACTIONS(11470), 1, + anon_sym_EQ_GT, + STATE(7848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796440,7 +788467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163582] = 12, + [164983] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796461,9 +788488,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10946), 1, + ACTIONS(11472), 1, anon_sym_SEMI, - STATE(7838), 9, + STATE(7849), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796473,7 +788500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163627] = 12, + [165028] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796494,9 +788521,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10948), 1, + ACTIONS(11474), 1, anon_sym_GT, - STATE(7839), 9, + STATE(7850), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796506,7 +788533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163672] = 12, + [165073] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796527,9 +788554,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10950), 1, - anon_sym_GT, - STATE(7840), 9, + ACTIONS(11476), 1, + anon_sym_SEMI, + STATE(7851), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796539,7 +788566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163717] = 12, + [165118] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796560,9 +788587,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10952), 1, + ACTIONS(11478), 1, anon_sym_RPAREN, - STATE(7841), 9, + STATE(7852), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796572,7 +788599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163762] = 12, + [165163] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796593,9 +788620,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10954), 1, + ACTIONS(11480), 1, aux_sym_preproc_if_token3, - STATE(7842), 9, + STATE(7853), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796605,7 +788632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163807] = 12, + [165208] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796626,9 +788653,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10956), 1, - aux_sym_preproc_if_token3, - STATE(7843), 9, + ACTIONS(11482), 1, + anon_sym_SEMI, + STATE(7854), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796638,7 +788665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163852] = 12, + [165253] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796659,9 +788686,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10958), 1, - anon_sym_LPAREN, - STATE(7844), 9, + ACTIONS(7208), 1, + anon_sym_STAR, + STATE(7855), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796671,7 +788698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163897] = 12, + [165298] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796692,9 +788719,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10960), 1, + ACTIONS(11484), 1, aux_sym_preproc_if_token3, - STATE(7845), 9, + STATE(7856), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796704,7 +788731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163942] = 12, + [165343] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796725,9 +788752,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10962), 1, - anon_sym_LPAREN, - STATE(7846), 9, + ACTIONS(11486), 1, + aux_sym_preproc_if_token3, + STATE(7857), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796737,7 +788764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163987] = 12, + [165388] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796758,9 +788785,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10964), 1, - sym__optional_semi, - STATE(7847), 9, + ACTIONS(11488), 1, + sym_raw_string_end, + STATE(7858), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796770,7 +788797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164032] = 12, + [165433] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796791,9 +788818,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10966), 1, - sym__optional_semi, - STATE(7848), 9, + ACTIONS(11490), 1, + anon_sym_SEMI, + STATE(7859), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796803,7 +788830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164077] = 12, + [165478] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796824,9 +788851,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10968), 1, - sym__optional_semi, - STATE(7849), 9, + ACTIONS(11492), 1, + anon_sym_LPAREN, + STATE(7860), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796836,7 +788863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164122] = 12, + [165523] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796857,9 +788884,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10970), 1, + ACTIONS(11494), 1, anon_sym_SEMI, - STATE(7850), 9, + STATE(7861), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796869,7 +788896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164167] = 12, + [165568] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796890,9 +788917,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10972), 1, - anon_sym_COLON, - STATE(7851), 9, + ACTIONS(11496), 1, + aux_sym_preproc_if_token3, + STATE(7862), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796902,7 +788929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164212] = 12, + [165613] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796923,9 +788950,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10974), 1, - sym__optional_semi, - STATE(7852), 9, + ACTIONS(11498), 1, + sym_raw_string_end, + STATE(7863), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796935,7 +788962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164257] = 12, + [165658] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796956,9 +788983,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10976), 1, - anon_sym_SEMI, - STATE(7853), 9, + ACTIONS(11500), 1, + aux_sym_preproc_if_token3, + STATE(7864), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796968,7 +788995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164302] = 12, + [165703] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796989,9 +789016,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10978), 1, - sym_raw_string_content, - STATE(7854), 9, + ACTIONS(11502), 1, + sym_raw_string_end, + STATE(7865), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797001,7 +789028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164347] = 12, + [165748] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797022,9 +789049,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10980), 1, - anon_sym_SEMI, - STATE(7855), 9, + ACTIONS(11504), 1, + anon_sym_EQ_GT, + STATE(7866), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797034,7 +789061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164392] = 12, + [165793] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797055,9 +789082,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10982), 1, - anon_sym_in, - STATE(7856), 9, + ACTIONS(11506), 1, + anon_sym_RBRACK, + STATE(7867), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797067,7 +789094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164437] = 12, + [165838] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797088,9 +789115,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10984), 1, - anon_sym_EQ, - STATE(7857), 9, + ACTIONS(11508), 1, + anon_sym_EQ_GT, + STATE(7868), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797100,7 +789127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164482] = 12, + [165883] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797121,9 +789148,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10986), 1, - anon_sym_EQ_GT, - STATE(7858), 9, + ACTIONS(11510), 1, + anon_sym_GT, + STATE(7869), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797133,30 +789160,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164527] = 12, - ACTIONS(3), 1, + [165928] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(10988), 1, - anon_sym_EQ_GT, - STATE(7859), 9, + ACTIONS(11512), 1, + aux_sym_preproc_if_token2, + STATE(7870), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797166,30 +789193,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164572] = 12, - ACTIONS(3), 1, + [165973] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(10990), 1, - anon_sym_STAR, - STATE(7860), 9, + ACTIONS(11514), 1, + aux_sym_preproc_if_token2, + STATE(7871), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797199,30 +789226,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164617] = 12, - ACTIONS(3), 1, + [166018] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(10992), 1, - anon_sym_EQ_GT, - STATE(7861), 9, + ACTIONS(11516), 1, + aux_sym_preproc_if_token2, + STATE(7872), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797232,7 +789259,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164662] = 12, + [166063] = 12, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(11518), 1, + aux_sym_preproc_if_token2, + STATE(7873), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [166108] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797253,9 +789313,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10994), 1, - anon_sym_GT, - STATE(7862), 9, + ACTIONS(11520), 1, + anon_sym_SEMI, + STATE(7874), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797265,7 +789325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164707] = 12, + [166153] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797286,9 +789346,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10996), 1, - sym__optional_semi, - STATE(7863), 9, + ACTIONS(11522), 1, + aux_sym_preproc_if_token3, + STATE(7875), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797298,7 +789358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164752] = 12, + [166198] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797319,9 +789379,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10998), 1, - anon_sym_SEMI, - STATE(7864), 9, + ACTIONS(11524), 1, + anon_sym_RPAREN, + STATE(7876), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797331,7 +789391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164797] = 12, + [166243] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797352,9 +789412,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11000), 1, - anon_sym_RPAREN, - STATE(7865), 9, + ACTIONS(11526), 1, + anon_sym_STAR, + STATE(7877), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797364,7 +789424,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164842] = 12, + [166288] = 12, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(10380), 1, + aux_sym_preproc_if_token2, + STATE(7878), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [166333] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797385,9 +789478,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11002), 1, - anon_sym_RBRACE, - STATE(7866), 9, + ACTIONS(11528), 1, + sym_integer_literal, + STATE(7879), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [166378] = 12, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(11530), 1, + aux_sym_preproc_if_token2, + STATE(7880), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797397,7 +789523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164887] = 12, + [166423] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797418,9 +789544,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11004), 1, - anon_sym_EQ_GT, - STATE(7867), 9, + ACTIONS(11532), 1, + anon_sym_LPAREN, + STATE(7881), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797430,7 +789556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164932] = 12, + [166468] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797451,9 +789577,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11006), 1, - anon_sym_RPAREN, - STATE(7868), 9, + ACTIONS(11534), 1, + aux_sym_preproc_if_token3, + STATE(7882), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797463,7 +789589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164977] = 12, + [166513] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797484,9 +789610,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11008), 1, - anon_sym_in, - STATE(7869), 9, + ACTIONS(11536), 1, + aux_sym_preproc_if_token3, + STATE(7883), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797496,7 +789622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165022] = 12, + [166558] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797517,9 +789643,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11010), 1, - anon_sym_SEMI, - STATE(7870), 9, + ACTIONS(11538), 1, + anon_sym_GT, + STATE(7884), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797529,7 +789655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165067] = 12, + [166603] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797550,9 +789676,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11012), 1, + ACTIONS(11540), 1, anon_sym_SEMI, - STATE(7871), 9, + STATE(7885), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [166648] = 12, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(11542), 1, + aux_sym_preproc_if_token2, + STATE(7886), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797562,7 +789721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165112] = 12, + [166693] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797583,9 +789742,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11014), 1, + ACTIONS(11544), 1, sym__optional_semi, - STATE(7872), 9, + STATE(7887), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797595,7 +789754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165157] = 12, + [166738] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797616,9 +789775,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11016), 1, + ACTIONS(11546), 1, anon_sym_EQ_GT, - STATE(7873), 9, + STATE(7888), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797628,7 +789787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165202] = 12, + [166783] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797649,9 +789808,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11018), 1, - sym__optional_semi, - STATE(7874), 9, + ACTIONS(7851), 1, + anon_sym_RPAREN, + STATE(7889), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797661,7 +789820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165247] = 12, + [166828] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797682,9 +789841,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11020), 1, - sym_interpolation_start_quote, - STATE(7875), 9, + ACTIONS(11548), 1, + aux_sym_preproc_if_token3, + STATE(7890), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797694,7 +789853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165292] = 12, + [166873] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797715,9 +789874,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11022), 1, - anon_sym_SEMI, - STATE(7876), 9, + ACTIONS(11550), 1, + aux_sym_preproc_if_token3, + STATE(7891), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797727,7 +789886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165337] = 12, + [166918] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797748,9 +789907,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11024), 1, + ACTIONS(11552), 1, anon_sym_EQ_GT, - STATE(7877), 9, + STATE(7892), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797760,30 +789919,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165382] = 12, - ACTIONS(8466), 1, + [166963] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11026), 1, - aux_sym_preproc_if_token2, - STATE(7878), 9, + ACTIONS(11554), 1, + anon_sym_while, + STATE(7893), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797793,7 +789952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165427] = 12, + [167008] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797814,9 +789973,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11028), 1, - anon_sym_STAR, - STATE(7879), 9, + ACTIONS(11556), 1, + anon_sym_SEMI, + STATE(7894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797826,7 +789985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165472] = 12, + [167053] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797847,9 +790006,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11030), 1, + ACTIONS(11558), 1, anon_sym_EQ_GT, - STATE(7880), 9, + STATE(7895), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797859,7 +790018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165517] = 12, + [167098] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797880,9 +790039,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9594), 1, - anon_sym_RBRACE, - STATE(7881), 9, + ACTIONS(11560), 1, + aux_sym_preproc_if_token3, + STATE(7896), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797892,7 +790051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165562] = 12, + [167143] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797913,9 +790072,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11032), 1, - sym_raw_string_end, - STATE(7882), 9, + ACTIONS(11562), 1, + anon_sym_EQ_GT, + STATE(7897), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797925,7 +790084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165607] = 12, + [167188] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797946,9 +790105,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11034), 1, - anon_sym_LPAREN, - STATE(7883), 9, + ACTIONS(11564), 1, + anon_sym_RPAREN, + STATE(7898), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797958,7 +790117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165652] = 12, + [167233] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797979,9 +790138,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11036), 1, - anon_sym_SEMI, - STATE(7884), 9, + ACTIONS(11566), 1, + anon_sym_RPAREN, + STATE(7899), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797991,7 +790150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165697] = 12, + [167278] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798012,9 +790171,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11038), 1, - anon_sym_SEMI, - STATE(7885), 9, + ACTIONS(9614), 1, + anon_sym_EQ, + STATE(7900), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798024,7 +790183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165742] = 12, + [167323] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798045,9 +790204,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6243), 1, - anon_sym_RBRACE, - STATE(7886), 9, + ACTIONS(11568), 1, + sym__optional_semi, + STATE(7901), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798057,30 +790216,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165787] = 12, - ACTIONS(8466), 1, + [167368] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11040), 1, - aux_sym_preproc_if_token2, - STATE(7887), 9, + ACTIONS(11570), 1, + anon_sym_EQ_GT, + STATE(7902), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798090,30 +790249,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165832] = 12, - ACTIONS(8466), 1, + [167413] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11042), 1, - aux_sym_preproc_if_token2, - STATE(7888), 9, + ACTIONS(11572), 1, + anon_sym_SEMI, + STATE(7903), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798123,7 +790282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165877] = 12, + [167458] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798144,9 +790303,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11044), 1, - sym_interpolation_start_quote, - STATE(7889), 9, + ACTIONS(11574), 1, + sym__optional_semi, + STATE(7904), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798156,7 +790315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165922] = 12, + [167503] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798177,9 +790336,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11046), 1, + ACTIONS(11576), 1, anon_sym_SEMI, - STATE(7890), 9, + STATE(7905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798189,30 +790348,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165967] = 12, - ACTIONS(8466), 1, + [167548] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11048), 1, - aux_sym_preproc_if_token2, - STATE(7891), 9, + ACTIONS(11578), 1, + sym__optional_semi, + STATE(7906), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798222,7 +790381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166012] = 12, + [167593] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798243,9 +790402,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11050), 1, - anon_sym_SQUOTE, - STATE(7892), 9, + ACTIONS(11580), 1, + anon_sym_SEMI, + STATE(7907), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798255,7 +790414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166057] = 12, + [167638] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798276,9 +790435,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11052), 1, - anon_sym_EQ_GT, - STATE(7893), 9, + ACTIONS(11582), 1, + anon_sym_EQ, + STATE(7908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798288,7 +790447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166102] = 12, + [167683] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798309,9 +790468,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11054), 1, - sym__optional_semi, - STATE(7894), 9, + ACTIONS(11584), 1, + anon_sym_EQ_GT, + STATE(7909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798321,7 +790480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166147] = 12, + [167728] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798342,9 +790501,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11056), 1, - sym__optional_semi, - STATE(7895), 9, + ACTIONS(10652), 1, + anon_sym_RBRACE, + STATE(7910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798354,7 +790513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166192] = 12, + [167773] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798375,9 +790534,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11058), 1, - sym__optional_semi, - STATE(7896), 9, + ACTIONS(11586), 1, + anon_sym_EQ_GT, + STATE(7911), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798387,7 +790546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166237] = 12, + [167818] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798408,9 +790567,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11060), 1, - sym__optional_semi, - STATE(7897), 9, + ACTIONS(11588), 1, + anon_sym_LT, + STATE(7912), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798420,7 +790579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166282] = 12, + [167863] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798441,9 +790600,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11062), 1, - anon_sym_EQ_GT, - STATE(7898), 9, + ACTIONS(11590), 1, + anon_sym_RPAREN, + STATE(7913), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798453,7 +790612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166327] = 12, + [167908] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798474,9 +790633,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11064), 1, - anon_sym_RPAREN, - STATE(7899), 9, + ACTIONS(11592), 1, + anon_sym_GT, + STATE(7914), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798486,7 +790645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166372] = 12, + [167953] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798507,9 +790666,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11066), 1, - anon_sym_SEMI, - STATE(7900), 9, + ACTIONS(11594), 1, + sym__optional_semi, + STATE(7915), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798519,7 +790678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166417] = 12, + [167998] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798540,9 +790699,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11068), 1, - anon_sym_EQ_GT, - STATE(7901), 9, + ACTIONS(11596), 1, + anon_sym_LPAREN, + STATE(7916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798552,7 +790711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166462] = 12, + [168043] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798573,9 +790732,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11070), 1, - anon_sym_SEMI, - STATE(7902), 9, + ACTIONS(11598), 1, + sym__optional_semi, + STATE(7917), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798585,7 +790744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166507] = 12, + [168088] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798606,9 +790765,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11072), 1, - anon_sym_LPAREN, - STATE(7903), 9, + ACTIONS(11600), 1, + aux_sym_preproc_if_token3, + STATE(7918), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798618,7 +790777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166552] = 12, + [168133] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798639,9 +790798,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11074), 1, - anon_sym_SEMI, - STATE(7904), 9, + ACTIONS(11602), 1, + anon_sym_RPAREN, + STATE(7919), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798651,7 +790810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166597] = 12, + [168178] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798672,9 +790831,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11076), 1, - anon_sym_COLON, - STATE(7905), 9, + ACTIONS(11604), 1, + sym__optional_semi, + STATE(7920), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798684,7 +790843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166642] = 12, + [168223] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798705,9 +790864,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11078), 1, - sym__optional_semi, - STATE(7906), 9, + ACTIONS(11606), 1, + anon_sym_GT, + STATE(7921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798717,7 +790876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166687] = 12, + [168268] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798738,9 +790897,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6859), 1, - anon_sym_RPAREN, - STATE(7907), 9, + ACTIONS(11608), 1, + anon_sym_EQ_GT, + STATE(7922), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798750,7 +790909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166732] = 12, + [168313] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798771,9 +790930,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11080), 1, - anon_sym_SEMI, - STATE(7908), 9, + ACTIONS(4570), 1, + anon_sym_LPAREN, + STATE(7923), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798783,7 +790942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166777] = 12, + [168358] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798804,9 +790963,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11082), 1, - sym__optional_semi, - STATE(7909), 9, + ACTIONS(11610), 1, + aux_sym_preproc_if_token3, + STATE(7924), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798816,7 +790975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166822] = 12, + [168403] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798837,9 +790996,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11084), 1, - sym__optional_semi, - STATE(7910), 9, + ACTIONS(4620), 1, + anon_sym_LPAREN, + STATE(7925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798849,7 +791008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166867] = 12, + [168448] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798870,9 +791029,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11086), 1, - anon_sym_GT, - STATE(7911), 9, + ACTIONS(4600), 1, + anon_sym_LPAREN, + STATE(7926), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798882,7 +791041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166912] = 12, + [168493] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798903,9 +791062,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11088), 1, - anon_sym_RPAREN, - STATE(7912), 9, + ACTIONS(10311), 1, + anon_sym_RBRACE, + STATE(7927), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798915,7 +791074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166957] = 12, + [168538] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798936,9 +791095,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11090), 1, - aux_sym_preproc_if_token3, - STATE(7913), 9, + ACTIONS(11612), 1, + anon_sym_LPAREN, + STATE(7928), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798948,7 +791107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167002] = 12, + [168583] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798969,9 +791128,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11092), 1, - anon_sym_RPAREN, - STATE(7914), 9, + ACTIONS(11614), 1, + aux_sym_preproc_if_token3, + STATE(7929), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798981,7 +791140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167047] = 12, + [168628] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799002,9 +791161,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11094), 1, - sym__optional_semi, - STATE(7915), 9, + ACTIONS(11616), 1, + anon_sym_STAR, + STATE(7930), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799014,7 +791173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167092] = 12, + [168673] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799035,9 +791194,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11096), 1, - anon_sym_SEMI, - STATE(7916), 9, + ACTIONS(11618), 1, + anon_sym_while, + STATE(7931), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799047,7 +791206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167137] = 12, + [168718] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799068,9 +791227,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11098), 1, - anon_sym_GT, - STATE(7917), 9, + ACTIONS(11620), 1, + anon_sym_EQ_GT, + STATE(7932), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799080,7 +791239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167182] = 12, + [168763] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799101,9 +791260,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11100), 1, - anon_sym_SEMI, - STATE(7918), 9, + ACTIONS(11622), 1, + anon_sym_GT, + STATE(7933), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799113,7 +791272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167227] = 12, + [168808] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799134,9 +791293,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10200), 1, - anon_sym_RBRACE, - STATE(7919), 9, + ACTIONS(11624), 1, + anon_sym_COMMA, + STATE(7934), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799146,7 +791305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167272] = 12, + [168853] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799167,9 +791326,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11102), 1, - anon_sym_RBRACE, - STATE(7920), 9, + ACTIONS(11626), 1, + anon_sym_EQ_GT, + STATE(7935), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799179,7 +791338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167317] = 12, + [168898] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799200,9 +791359,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11104), 1, - aux_sym_preproc_if_token3, - STATE(7921), 9, + ACTIONS(4580), 1, + anon_sym_LPAREN, + STATE(7936), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799212,7 +791371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167362] = 12, + [168943] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799233,9 +791392,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11106), 1, - anon_sym_EQ_GT, - STATE(7922), 9, + ACTIONS(11628), 1, + anon_sym_LPAREN, + STATE(7937), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799245,7 +791404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167407] = 12, + [168988] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799266,9 +791425,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11108), 1, - anon_sym_GT, - STATE(7923), 9, + ACTIONS(11630), 1, + anon_sym_SEMI, + STATE(7938), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799278,7 +791437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167452] = 12, + [169033] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799299,9 +791458,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11110), 1, - anon_sym_RPAREN, - STATE(7924), 9, + ACTIONS(11632), 1, + anon_sym_RBRACE, + STATE(7939), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799311,7 +791470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167497] = 12, + [169078] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799332,9 +791491,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11112), 1, - aux_sym_preproc_if_token3, - STATE(7925), 9, + ACTIONS(11634), 1, + anon_sym_EQ_GT, + STATE(7940), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799344,7 +791503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167542] = 12, + [169123] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799365,9 +791524,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11114), 1, - aux_sym_preproc_if_token3, - STATE(7926), 9, + ACTIONS(11636), 1, + anon_sym_LPAREN, + STATE(7941), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799377,7 +791536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167587] = 12, + [169168] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799398,9 +791557,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11116), 1, - anon_sym_SEMI, - STATE(7927), 9, + ACTIONS(11638), 1, + anon_sym_LPAREN, + STATE(7942), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799410,7 +791569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167632] = 12, + [169213] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799431,9 +791590,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11118), 1, - anon_sym_SEMI, - STATE(7928), 9, + ACTIONS(11640), 1, + anon_sym_LPAREN, + STATE(7943), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799443,7 +791602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167677] = 12, + [169258] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799464,9 +791623,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11120), 1, - aux_sym_preproc_if_token3, - STATE(7929), 9, + ACTIONS(11642), 1, + anon_sym_LPAREN, + STATE(7944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799476,7 +791635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167722] = 12, + [169303] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799497,9 +791656,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11122), 1, + ACTIONS(11644), 1, anon_sym_LPAREN, - STATE(7930), 9, + STATE(7945), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799509,7 +791668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167767] = 12, + [169348] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799530,9 +791689,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11124), 1, + ACTIONS(11646), 1, anon_sym_LPAREN, - STATE(7931), 9, + STATE(7946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799542,7 +791701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167812] = 12, + [169393] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799563,9 +791722,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11126), 1, + ACTIONS(11648), 1, anon_sym_LPAREN, - STATE(7932), 9, + STATE(7947), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799575,7 +791734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167857] = 12, + [169438] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799596,9 +791755,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11128), 1, - anon_sym_LPAREN, - STATE(7933), 9, + ACTIONS(11650), 1, + sym__optional_semi, + STATE(7948), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799608,7 +791767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167902] = 12, + [169483] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799629,9 +791788,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11130), 1, + ACTIONS(11652), 1, anon_sym_LPAREN, - STATE(7934), 9, + STATE(7949), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799641,7 +791800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167947] = 12, + [169528] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799662,9 +791821,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11132), 1, - anon_sym_LPAREN, - STATE(7935), 9, + ACTIONS(11654), 1, + sym__optional_semi, + STATE(7950), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799674,7 +791833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167992] = 12, + [169573] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799695,9 +791854,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11134), 1, + ACTIONS(4588), 1, anon_sym_LPAREN, - STATE(7936), 9, + STATE(7951), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799707,7 +791866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168037] = 12, + [169618] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799728,9 +791887,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11136), 1, - anon_sym_RPAREN, - STATE(7937), 9, + ACTIONS(11656), 1, + sym__optional_semi, + STATE(7952), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799740,7 +791899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168082] = 12, + [169663] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799761,9 +791920,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11138), 1, - anon_sym_LPAREN, - STATE(7938), 9, + ACTIONS(11658), 1, + anon_sym_GT, + STATE(7953), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799773,7 +791932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168127] = 12, + [169708] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799794,9 +791953,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11140), 1, + ACTIONS(11660), 1, anon_sym_RPAREN, - STATE(7939), 9, + STATE(7954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799806,7 +791965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168172] = 12, + [169753] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799827,9 +791986,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11142), 1, - anon_sym_SEMI, - STATE(7940), 9, + ACTIONS(11662), 1, + anon_sym_RBRACE, + STATE(7955), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799839,7 +791998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168217] = 12, + [169798] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799860,9 +792019,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11144), 1, - anon_sym_LPAREN, - STATE(7941), 9, + ACTIONS(11664), 1, + sym__optional_semi, + STATE(7956), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799872,7 +792031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168262] = 12, + [169843] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799893,9 +792052,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11146), 1, - aux_sym_preproc_if_token3, - STATE(7942), 9, + ACTIONS(4594), 1, + anon_sym_LPAREN, + STATE(7957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799905,7 +792064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168307] = 12, + [169888] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799926,9 +792085,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11148), 1, - anon_sym_RBRACK, - STATE(7943), 9, + ACTIONS(4640), 1, + anon_sym_LPAREN, + STATE(7958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799938,7 +792097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168352] = 12, + [169933] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799959,9 +792118,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11150), 1, - anon_sym_SEMI, - STATE(7944), 9, + ACTIONS(9616), 1, + anon_sym_EQ, + STATE(7959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799971,7 +792130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168397] = 12, + [169978] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799992,9 +792151,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11152), 1, - sym__optional_semi, - STATE(7945), 9, + ACTIONS(4636), 1, + anon_sym_LPAREN, + STATE(7960), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800004,7 +792163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168442] = 12, + [170023] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800025,9 +792184,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11154), 1, - anon_sym_GT, - STATE(7946), 9, + ACTIONS(11666), 1, + anon_sym_LT, + STATE(7961), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800037,7 +792196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168487] = 12, + [170068] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800058,9 +792217,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11156), 1, - anon_sym_DASH, - STATE(7947), 9, + ACTIONS(4614), 1, + anon_sym_LPAREN, + STATE(7962), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800070,7 +792229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168532] = 12, + [170113] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800091,9 +792250,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9117), 1, - anon_sym_EQ, - STATE(7948), 9, + ACTIONS(11668), 1, + anon_sym_SEMI, + STATE(7963), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800103,7 +792262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168577] = 12, + [170158] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800124,9 +792283,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11158), 1, - anon_sym_LPAREN, - STATE(7949), 9, + ACTIONS(11670), 1, + anon_sym_RBRACE, + STATE(7964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800136,7 +792295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168622] = 12, + [170203] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800157,9 +792316,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11160), 1, - anon_sym_LT, - STATE(7950), 9, + ACTIONS(11672), 1, + anon_sym_EQ, + STATE(7965), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800169,7 +792328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168667] = 12, + [170248] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800190,9 +792349,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11162), 1, - anon_sym_RBRACE, - STATE(7951), 9, + ACTIONS(11674), 1, + anon_sym_EQ_GT, + STATE(7966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800202,7 +792361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168712] = 12, + [170293] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800223,9 +792382,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11164), 1, - anon_sym_LT, - STATE(7952), 9, + ACTIONS(11676), 1, + sym__optional_semi, + STATE(7967), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800235,7 +792394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168757] = 12, + [170338] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800256,9 +792415,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11166), 1, + ACTIONS(11678), 1, sym__optional_semi, - STATE(7953), 9, + STATE(7968), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800268,7 +792427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168802] = 12, + [170383] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800289,9 +792448,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11168), 1, - anon_sym_EQ, - STATE(7954), 9, + ACTIONS(11680), 1, + anon_sym_EQ_GT, + STATE(7969), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800301,7 +792460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168847] = 12, + [170428] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800322,9 +792481,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6531), 1, - anon_sym_RPAREN, - STATE(7955), 9, + ACTIONS(11682), 1, + anon_sym_EQ_GT, + STATE(7970), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800334,7 +792493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168892] = 12, + [170473] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800355,9 +792514,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11170), 1, - anon_sym_SEMI, - STATE(7956), 9, + ACTIONS(11684), 1, + anon_sym_EQ_GT, + STATE(7971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800367,7 +792526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168937] = 12, + [170518] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800388,9 +792547,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11172), 1, - aux_sym_preproc_if_token3, - STATE(7957), 9, + ACTIONS(11686), 1, + sym__optional_semi, + STATE(7972), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800400,7 +792559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168982] = 12, + [170563] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800421,9 +792580,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11174), 1, - aux_sym_preproc_if_token3, - STATE(7958), 9, + ACTIONS(10839), 1, + anon_sym_RBRACE, + STATE(7973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800433,7 +792592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169027] = 12, + [170608] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800454,9 +792613,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11176), 1, - aux_sym_preproc_if_token3, - STATE(7959), 9, + ACTIONS(11688), 1, + sym__optional_semi, + STATE(7974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800466,7 +792625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169072] = 12, + [170653] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800487,9 +792646,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10236), 1, - anon_sym_RBRACE, - STATE(7960), 9, + ACTIONS(11690), 1, + anon_sym_SQUOTE, + STATE(7975), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800499,7 +792658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169117] = 12, + [170698] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800520,9 +792679,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11178), 1, + ACTIONS(6853), 1, anon_sym_RBRACE, - STATE(7961), 9, + STATE(7976), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800532,7 +792691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169162] = 12, + [170743] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800553,9 +792712,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11180), 1, - sym_interpolation_close_brace, - STATE(7962), 9, + ACTIONS(6873), 1, + anon_sym_RBRACE, + STATE(7977), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800565,7 +792724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169207] = 12, + [170788] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800586,9 +792745,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11182), 1, - anon_sym_RBRACK, - STATE(7963), 9, + ACTIONS(11692), 1, + anon_sym_SEMI, + STATE(7978), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800598,7 +792757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169252] = 12, + [170833] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800619,9 +792778,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11184), 1, - aux_sym_preproc_if_token3, - STATE(7964), 9, + ACTIONS(11694), 1, + anon_sym_LPAREN, + STATE(7979), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800631,7 +792790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169297] = 12, + [170878] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800652,9 +792811,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11186), 1, - anon_sym_SQUOTE, - STATE(7965), 9, + ACTIONS(11696), 1, + anon_sym_LPAREN, + STATE(7980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800664,7 +792823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169342] = 12, + [170923] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800685,9 +792844,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11188), 1, - anon_sym_EQ_GT, - STATE(7966), 9, + ACTIONS(11698), 1, + anon_sym_LPAREN, + STATE(7981), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800697,7 +792856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169387] = 12, + [170968] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800718,9 +792877,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11190), 1, - anon_sym_EQ_GT, - STATE(7967), 9, + ACTIONS(11700), 1, + anon_sym_LPAREN, + STATE(7982), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800730,7 +792889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169432] = 12, + [171013] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800751,9 +792910,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11192), 1, + ACTIONS(11702), 1, anon_sym_LPAREN, - STATE(7968), 9, + STATE(7983), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800763,7 +792922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169477] = 12, + [171058] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800784,9 +792943,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11194), 1, + ACTIONS(11704), 1, anon_sym_LPAREN, - STATE(7969), 9, + STATE(7984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800796,7 +792955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169522] = 12, + [171103] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800817,9 +792976,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11196), 1, + ACTIONS(11706), 1, anon_sym_LPAREN, - STATE(7970), 9, + STATE(7985), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800829,7 +792988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169567] = 12, + [171148] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800850,9 +793009,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11198), 1, - anon_sym_LPAREN, - STATE(7971), 9, + ACTIONS(11708), 1, + sym__optional_semi, + STATE(7986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800862,7 +793021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169612] = 12, + [171193] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800883,9 +793042,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11200), 1, + ACTIONS(11710), 1, anon_sym_LPAREN, - STATE(7972), 9, + STATE(7987), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800895,7 +793054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169657] = 12, + [171238] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800916,9 +793075,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11202), 1, - anon_sym_LPAREN, - STATE(7973), 9, + ACTIONS(11712), 1, + sym_raw_string_content, + STATE(7988), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800928,7 +793087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169702] = 12, + [171283] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800949,9 +793108,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11204), 1, - anon_sym_LPAREN, - STATE(7974), 9, + ACTIONS(11714), 1, + sym_interpolation_start_quote, + STATE(7989), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800961,7 +793120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169747] = 12, + [171328] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800982,9 +793141,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6134), 1, - anon_sym_RBRACE, - STATE(7975), 9, + ACTIONS(11716), 1, + anon_sym_SEMI, + STATE(7990), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [171373] = 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(11718), 1, + anon_sym_LPAREN, + STATE(7991), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [171418] = 12, + ACTIONS(9073), 1, + aux_sym_preproc_region_token1, + ACTIONS(9075), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9077), 1, + aux_sym_preproc_line_token1, + ACTIONS(9079), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9081), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9083), 1, + aux_sym_preproc_error_token1, + ACTIONS(9085), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9087), 1, + aux_sym_preproc_define_token1, + ACTIONS(9089), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9091), 1, + sym_comment, + ACTIONS(11720), 1, + sym_preproc_arg, + STATE(7992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800994,7 +793219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169792] = 12, + [171463] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801015,9 +793240,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11206), 1, - anon_sym_LPAREN, - STATE(7976), 9, + ACTIONS(11722), 1, + anon_sym_EQ_GT, + STATE(7993), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801027,7 +793252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169837] = 12, + [171508] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801048,9 +793273,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11208), 1, - sym__optional_semi, - STATE(7977), 9, + ACTIONS(11724), 1, + anon_sym_EQ_GT, + STATE(7994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801060,7 +793285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169882] = 12, + [171553] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801081,9 +793306,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11210), 1, - anon_sym_EQ_GT, - STATE(7978), 9, + ACTIONS(11726), 1, + sym_interpolation_start_quote, + STATE(7995), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801093,7 +793318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169927] = 12, + [171598] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801114,9 +793339,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11212), 1, - anon_sym_STAR, - STATE(7979), 9, + ACTIONS(11728), 1, + anon_sym_LT, + STATE(7996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801126,7 +793351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169972] = 12, + [171643] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801147,9 +793372,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11214), 1, - sym_interpolation_close_brace, - STATE(7980), 9, + ACTIONS(11730), 1, + anon_sym_STAR, + STATE(7997), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801159,7 +793384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170017] = 12, + [171688] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801180,9 +793405,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11216), 1, - anon_sym_DOT, - STATE(7981), 9, + ACTIONS(11732), 1, + sym__optional_semi, + STATE(7998), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801192,7 +793417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170062] = 12, + [171733] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801213,9 +793438,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11218), 1, + ACTIONS(11734), 1, anon_sym_SEMI, - STATE(7982), 9, + STATE(7999), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801225,7 +793450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170107] = 12, + [171778] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801246,9 +793471,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11220), 1, - anon_sym_GT, - STATE(7983), 9, + ACTIONS(11736), 1, + aux_sym_preproc_if_token3, + STATE(8000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801258,7 +793483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170152] = 12, + [171823] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801279,9 +793504,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11222), 1, - anon_sym_RPAREN, - STATE(7984), 9, + ACTIONS(11738), 1, + anon_sym_DASH, + STATE(8001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801291,7 +793516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170197] = 12, + [171868] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801312,9 +793537,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11224), 1, - anon_sym_LT, - STATE(7985), 9, + ACTIONS(11740), 1, + anon_sym_SQUOTE, + STATE(8002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801324,7 +793549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170242] = 12, + [171913] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801345,9 +793570,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11226), 1, - aux_sym_preproc_if_token3, - STATE(7986), 9, + ACTIONS(11742), 1, + anon_sym_while, + STATE(8003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801357,7 +793582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170287] = 12, + [171958] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801378,9 +793603,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11228), 1, - anon_sym_SEMI, - STATE(7987), 9, + ACTIONS(11744), 1, + sym_interpolation_start_quote, + STATE(8004), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801390,7 +793615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170332] = 12, + [172003] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801411,9 +793636,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11230), 1, - aux_sym_preproc_if_token3, - STATE(7988), 9, + ACTIONS(11746), 1, + sym_interpolation_close_brace, + STATE(8005), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801423,7 +793648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170377] = 12, + [172048] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801444,9 +793669,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11232), 1, - aux_sym_preproc_if_token3, - STATE(7989), 9, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + STATE(8006), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801456,7 +793681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170422] = 12, + [172093] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801477,9 +793702,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11234), 1, - anon_sym_RBRACE, - STATE(7990), 9, + ACTIONS(4574), 1, + anon_sym_LPAREN, + STATE(8007), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801489,7 +793714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170467] = 12, + [172138] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801510,9 +793735,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11236), 1, - anon_sym_RPAREN, - STATE(7991), 9, + ACTIONS(11748), 1, + anon_sym_EQ_GT, + STATE(8008), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801522,7 +793747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170512] = 12, + [172183] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801543,9 +793768,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11238), 1, - aux_sym_preproc_if_token3, - STATE(7992), 9, + ACTIONS(11750), 1, + sym_interpolation_close_brace, + STATE(8009), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801555,7 +793780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170557] = 12, + [172228] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801576,9 +793801,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11240), 1, - sym__optional_semi, - STATE(7993), 9, + ACTIONS(11752), 1, + anon_sym_LPAREN, + STATE(8010), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801588,7 +793813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170602] = 12, + [172273] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801609,9 +793834,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11242), 1, - sym__optional_semi, - STATE(7994), 9, + ACTIONS(11754), 1, + anon_sym_LPAREN, + STATE(8011), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801621,7 +793846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170647] = 12, + [172318] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801642,9 +793867,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11244), 1, - anon_sym_SEMI, - STATE(7995), 9, + ACTIONS(11756), 1, + anon_sym_LPAREN, + STATE(8012), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801654,7 +793879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170692] = 12, + [172363] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801675,9 +793900,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11246), 1, - anon_sym_GT, - STATE(7996), 9, + ACTIONS(11758), 1, + anon_sym_LPAREN, + STATE(8013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801687,7 +793912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170737] = 12, + [172408] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801708,9 +793933,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11248), 1, + ACTIONS(11760), 1, anon_sym_SEMI, - STATE(7997), 9, + STATE(8014), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801720,7 +793945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170782] = 12, + [172453] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801741,9 +793966,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11250), 1, - anon_sym_COMMA, - STATE(7998), 9, + ACTIONS(11762), 1, + anon_sym_LPAREN, + STATE(8015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801753,7 +793978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170827] = 12, + [172498] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801774,9 +793999,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11252), 1, - anon_sym_LPAREN, - STATE(7999), 9, + ACTIONS(11764), 1, + aux_sym_preproc_if_token3, + STATE(8016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801786,7 +794011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170872] = 12, + [172543] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801807,9 +794032,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11254), 1, - anon_sym_LPAREN, - STATE(8000), 9, + ACTIONS(11766), 1, + anon_sym_EQ_GT, + STATE(8017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801819,7 +794044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170917] = 12, + [172588] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801840,9 +794065,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11256), 1, - anon_sym_LPAREN, - STATE(8001), 9, + ACTIONS(11768), 1, + ts_builtin_sym_end, + STATE(8018), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801852,7 +794077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170962] = 12, + [172633] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801873,9 +794098,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11258), 1, - anon_sym_LPAREN, - STATE(8002), 9, + ACTIONS(11770), 1, + sym__optional_semi, + STATE(8019), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801885,7 +794110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171007] = 12, + [172678] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801906,9 +794131,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11260), 1, + ACTIONS(11772), 1, sym__optional_semi, - STATE(8003), 9, + STATE(8020), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801918,7 +794143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171052] = 12, + [172723] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801939,9 +794164,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11262), 1, - anon_sym_LPAREN, - STATE(8004), 9, + ACTIONS(11774), 1, + sym__optional_semi, + STATE(8021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801951,7 +794176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171097] = 12, + [172768] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801972,9 +794197,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11264), 1, - aux_sym_preproc_if_token3, - STATE(8005), 9, + ACTIONS(11776), 1, + anon_sym_LPAREN, + STATE(8022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801984,7 +794209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171142] = 12, + [172813] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802005,42 +794230,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11266), 1, - anon_sym_LPAREN, - STATE(8006), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [171187] = 12, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(11268), 1, - aux_sym_preproc_if_token2, - STATE(8007), 9, + ACTIONS(11778), 1, + anon_sym_LT, + STATE(8023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802050,7 +794242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171232] = 12, + [172858] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802071,9 +794263,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11270), 1, - anon_sym_SEMI, - STATE(8008), 9, + ACTIONS(11780), 1, + anon_sym_EQ_GT, + STATE(8024), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802083,7 +794275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171277] = 12, + [172903] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802104,9 +794296,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11272), 1, - anon_sym_RPAREN, - STATE(8009), 9, + ACTIONS(11782), 1, + anon_sym_GT, + STATE(8025), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802116,7 +794308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171322] = 12, + [172948] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802137,9 +794329,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11274), 1, - sym__optional_semi, - STATE(8010), 9, + ACTIONS(11784), 1, + anon_sym_COLON, + STATE(8026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802149,7 +794341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171367] = 12, + [172993] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802170,9 +794362,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11276), 1, - anon_sym_SEMI, - STATE(8011), 9, + ACTIONS(11786), 1, + sym__optional_semi, + STATE(8027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802182,7 +794374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171412] = 12, + [173038] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802203,9 +794395,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11278), 1, - anon_sym_LT, - STATE(8012), 9, + ACTIONS(11788), 1, + anon_sym_RPAREN, + STATE(8028), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802215,7 +794407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171457] = 12, + [173083] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802236,9 +794428,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11280), 1, + ACTIONS(11790), 1, anon_sym_EQ_GT, - STATE(8013), 9, + STATE(8029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802248,7 +794440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171502] = 12, + [173128] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802269,9 +794461,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11282), 1, - anon_sym_LT, - STATE(8014), 9, + ACTIONS(11792), 1, + anon_sym_SEMI, + STATE(8030), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802281,7 +794473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171547] = 12, + [173173] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802302,9 +794494,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10458), 1, - anon_sym_LT, - STATE(8015), 9, + ACTIONS(11794), 1, + aux_sym_preproc_if_token3, + STATE(8031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802314,7 +794506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171592] = 12, + [173218] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802335,9 +794527,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11284), 1, - sym__optional_semi, - STATE(8016), 9, + ACTIONS(11796), 1, + anon_sym_LPAREN, + STATE(8032), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802347,7 +794539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171637] = 12, + [173263] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802368,9 +794560,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11286), 1, - anon_sym_SEMI, - STATE(8017), 9, + ACTIONS(11798), 1, + anon_sym_LPAREN, + STATE(8033), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802380,7 +794572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171682] = 12, + [173308] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802401,9 +794593,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11288), 1, - anon_sym_SEMI, - STATE(8018), 9, + ACTIONS(11800), 1, + anon_sym_LPAREN, + STATE(8034), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802413,7 +794605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171727] = 12, + [173353] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802434,9 +794626,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11290), 1, - anon_sym_EQ_GT, - STATE(8019), 9, + ACTIONS(11802), 1, + sym__optional_semi, + STATE(8035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802446,7 +794638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171772] = 12, + [173398] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802467,9 +794659,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11292), 1, + ACTIONS(11804), 1, sym__optional_semi, - STATE(8020), 9, + STATE(8036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802479,30 +794671,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171817] = 12, - ACTIONS(3), 1, + [173443] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(11294), 1, - anon_sym_LPAREN, - STATE(8021), 9, + ACTIONS(11806), 1, + sym_preproc_arg, + STATE(8037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802512,7 +794704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171862] = 12, + [173488] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802533,9 +794725,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11296), 1, + ACTIONS(11808), 1, anon_sym_LPAREN, - STATE(8022), 9, + STATE(8038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802545,7 +794737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171907] = 12, + [173533] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802566,9 +794758,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11298), 1, - anon_sym_LPAREN, - STATE(8023), 9, + ACTIONS(11810), 1, + aux_sym_preproc_if_token3, + STATE(8039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802578,7 +794770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171952] = 12, + [173578] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802599,9 +794791,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11300), 1, - anon_sym_SEMI, - STATE(8024), 9, + ACTIONS(11812), 1, + anon_sym_LT, + STATE(8040), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802611,7 +794803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171997] = 12, + [173623] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802632,9 +794824,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11302), 1, - sym_raw_string_end, - STATE(8025), 9, + ACTIONS(11814), 1, + anon_sym_STAR, + STATE(8041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802644,7 +794836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172042] = 12, + [173668] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802665,9 +794857,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11304), 1, - anon_sym_STAR, - STATE(8026), 9, + ACTIONS(11816), 1, + anon_sym_LPAREN, + STATE(8042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802677,7 +794869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172087] = 12, + [173713] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802698,42 +794890,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN, - STATE(8027), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [172132] = 12, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(11306), 1, - aux_sym_preproc_if_token2, - STATE(8028), 9, + ACTIONS(11818), 1, + anon_sym_SEMI, + STATE(8043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802743,7 +794902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172177] = 12, + [173758] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802764,9 +794923,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11308), 1, - anon_sym_LT, - STATE(8029), 9, + ACTIONS(11820), 1, + sym_raw_string_end, + STATE(8044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802776,7 +794935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172222] = 12, + [173803] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802797,9 +794956,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11310), 1, - anon_sym_while, - STATE(8030), 9, + ACTIONS(11822), 1, + sym__optional_semi, + STATE(8045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802809,7 +794968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172267] = 12, + [173848] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802830,9 +794989,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11312), 1, - anon_sym_LPAREN, - STATE(8031), 9, + ACTIONS(11824), 1, + anon_sym_SEMI, + STATE(8046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802842,7 +795001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172312] = 12, + [173893] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802863,9 +795022,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11314), 1, - sym__optional_semi, - STATE(8032), 9, + ACTIONS(11826), 1, + anon_sym_RPAREN, + STATE(8047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802875,7 +795034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172357] = 12, + [173938] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802896,9 +795055,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11316), 1, - sym_raw_string_end, - STATE(8033), 9, + ACTIONS(7500), 1, + anon_sym_RPAREN, + STATE(8048), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802908,7 +795067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172402] = 12, + [173983] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802929,9 +795088,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11318), 1, - anon_sym_SEMI, - STATE(8034), 9, + ACTIONS(11828), 1, + anon_sym_LT, + STATE(8049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802941,7 +795100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172447] = 12, + [174028] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802962,9 +795121,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9059), 1, - anon_sym_EQ, - STATE(8035), 9, + ACTIONS(11830), 1, + anon_sym_LPAREN, + STATE(8050), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802974,7 +795133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172492] = 12, + [174073] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802995,9 +795154,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6225), 1, - anon_sym_RBRACE, - STATE(8036), 9, + ACTIONS(11832), 1, + anon_sym_LPAREN, + STATE(8051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803007,7 +795166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172537] = 12, + [174118] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803028,9 +795187,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11320), 1, - sym_interpolation_start_quote, - STATE(8037), 9, + ACTIONS(11834), 1, + aux_sym_preproc_if_token3, + STATE(8052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803040,7 +795199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172582] = 12, + [174163] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803061,9 +795220,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11322), 1, - sym_interpolation_start_quote, - STATE(8038), 9, + ACTIONS(11836), 1, + anon_sym_LT, + STATE(8053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803073,7 +795232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172627] = 12, + [174208] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803094,9 +795253,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11324), 1, + ACTIONS(11838), 1, anon_sym_SEMI, - STATE(8039), 9, + STATE(8054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803106,7 +795265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172672] = 12, + [174253] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803127,42 +795286,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11326), 1, - aux_sym_preproc_if_token3, - STATE(8040), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [172717] = 12, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(11328), 1, - sym_preproc_arg, - STATE(8041), 9, + ACTIONS(11840), 1, + anon_sym_GT, + STATE(8055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803172,7 +795298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172762] = 12, + [174298] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803193,9 +795319,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11330), 1, - anon_sym_LT, - STATE(8042), 9, + ACTIONS(11842), 1, + anon_sym_SEMI, + STATE(8056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803205,7 +795331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172807] = 12, + [174343] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803226,9 +795352,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11332), 1, - aux_sym_preproc_if_token3, - STATE(8043), 9, + ACTIONS(7442), 1, + anon_sym_RPAREN, + STATE(8057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803238,7 +795364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172852] = 12, + [174388] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803259,9 +795385,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11334), 1, - sym_interpolation_start_quote, - STATE(8044), 9, + ACTIONS(11844), 1, + aux_sym_preproc_if_token3, + STATE(8058), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803271,30 +795397,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172897] = 12, - ACTIONS(3), 1, + [174433] = 12, + ACTIONS(5857), 1, + aux_sym_preproc_if_token2, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9327), 1, - anon_sym_STAR, - STATE(8045), 9, + STATE(8059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803304,7 +795430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172942] = 12, + [174478] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803325,9 +795451,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11336), 1, - anon_sym_GT, - STATE(8046), 9, + ACTIONS(11846), 1, + anon_sym_SEMI, + STATE(8060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803337,7 +795463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172987] = 12, + [174523] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803358,9 +795484,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11338), 1, - anon_sym_SQUOTE, - STATE(8047), 9, + ACTIONS(11848), 1, + anon_sym_SEMI, + STATE(8061), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803370,7 +795496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173032] = 12, + [174568] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803391,9 +795517,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11340), 1, - aux_sym_preproc_if_token3, - STATE(8048), 9, + ACTIONS(11850), 1, + anon_sym_LPAREN, + STATE(8062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803403,7 +795529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173077] = 12, + [174613] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803424,9 +795550,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11342), 1, - aux_sym_preproc_if_token3, - STATE(8049), 9, + ACTIONS(11852), 1, + anon_sym_LPAREN, + STATE(8063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803436,7 +795562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173122] = 12, + [174658] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803457,9 +795583,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11344), 1, - aux_sym_preproc_if_token3, - STATE(8050), 9, + ACTIONS(6737), 1, + anon_sym_RBRACE, + STATE(8064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803469,7 +795595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173167] = 12, + [174703] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803490,9 +795616,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11346), 1, - anon_sym_RPAREN, - STATE(8051), 9, + ACTIONS(11854), 1, + anon_sym_LT, + STATE(8065), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803502,30 +795628,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173212] = 12, - ACTIONS(3), 1, + [174748] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(11348), 1, - anon_sym_GT, - STATE(8052), 9, + ACTIONS(11856), 1, + aux_sym_preproc_if_token2, + STATE(8066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803535,7 +795661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173257] = 12, + [174793] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803556,9 +795682,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9964), 1, - anon_sym_RBRACE, - STATE(8053), 9, + ACTIONS(11858), 1, + anon_sym_RPAREN, + STATE(8067), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803568,7 +795694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173302] = 12, + [174838] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803589,9 +795715,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11350), 1, - anon_sym_LT, - STATE(8054), 9, + ACTIONS(11860), 1, + anon_sym_COLON, + STATE(8068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803601,7 +795727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173347] = 12, + [174883] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803622,9 +795748,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11352), 1, - sym_interpolation_start_quote, - STATE(8055), 9, + ACTIONS(11862), 1, + sym__optional_semi, + STATE(8069), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803634,7 +795760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173392] = 12, + [174928] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803655,9 +795781,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11354), 1, - aux_sym_preproc_if_token3, - STATE(8056), 9, + ACTIONS(11864), 1, + anon_sym_SEMI, + STATE(8070), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803667,7 +795793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173437] = 12, + [174973] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803688,9 +795814,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11356), 1, - aux_sym_preproc_if_token3, - STATE(8057), 9, + ACTIONS(11866), 1, + sym__optional_semi, + STATE(8071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803700,7 +795826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173482] = 12, + [175018] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803721,9 +795847,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11358), 1, - sym__optional_semi, - STATE(8058), 9, + ACTIONS(9782), 1, + anon_sym_STAR, + STATE(8072), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803733,30 +795859,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173527] = 12, - ACTIONS(3), 1, + [175063] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(11360), 1, - anon_sym_SEMI, - STATE(8059), 9, + ACTIONS(11868), 1, + aux_sym_preproc_if_token2, + STATE(8073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803766,7 +795892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173572] = 12, + [175108] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803787,9 +795913,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11362), 1, - sym_raw_string_content, - STATE(8060), 9, + ACTIONS(11870), 1, + anon_sym_LPAREN, + STATE(8074), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803799,7 +795925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173617] = 12, + [175153] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803820,9 +795946,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11364), 1, - anon_sym_GT, - STATE(8061), 9, + ACTIONS(11872), 1, + anon_sym_EQ_GT, + STATE(8075), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803832,7 +795958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173662] = 12, + [175198] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803853,42 +795979,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11366), 1, - anon_sym_COLON, - STATE(8062), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [173707] = 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(11368), 1, - anon_sym_RPAREN, - STATE(8063), 9, + ACTIONS(11874), 1, + anon_sym_LPAREN, + STATE(8076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803898,7 +795991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173752] = 12, + [175243] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803919,9 +796012,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11370), 1, - sym__optional_semi, - STATE(8064), 9, + ACTIONS(11876), 1, + anon_sym_SEMI, + STATE(8077), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803931,7 +796024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173797] = 12, + [175288] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803952,9 +796045,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11372), 1, - anon_sym_EQ_GT, - STATE(8065), 9, + ACTIONS(11878), 1, + anon_sym_SEMI, + STATE(8078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803964,7 +796057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173842] = 12, + [175333] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803985,9 +796078,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11374), 1, - anon_sym_SEMI, - STATE(8066), 9, + ACTIONS(11880), 1, + anon_sym_SQUOTE, + STATE(8079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803997,7 +796090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173887] = 12, + [175378] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804018,9 +796111,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11376), 1, - sym_raw_string_content, - STATE(8067), 9, + ACTIONS(11882), 1, + anon_sym_RBRACK, + STATE(8080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804030,7 +796123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173932] = 12, + [175423] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804051,9 +796144,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11378), 1, - sym__optional_semi, - STATE(8068), 9, + ACTIONS(11884), 1, + anon_sym_EQ_GT, + STATE(8081), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804063,7 +796156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173977] = 12, + [175468] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804084,9 +796177,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11380), 1, - sym_interpolation_start_quote, - STATE(8069), 9, + ACTIONS(11886), 1, + anon_sym_RPAREN, + STATE(8082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804096,7 +796189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174022] = 12, + [175513] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804117,9 +796210,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10426), 1, - anon_sym_in, - STATE(8070), 9, + ACTIONS(11888), 1, + anon_sym_SEMI, + STATE(8083), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804129,7 +796222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174067] = 12, + [175558] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804150,9 +796243,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11382), 1, - anon_sym_SEMI, - STATE(8071), 9, + ACTIONS(11890), 1, + sym__optional_semi, + STATE(8084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804162,7 +796255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174112] = 12, + [175603] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804183,9 +796276,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11384), 1, + ACTIONS(11892), 1, anon_sym_SEMI, - STATE(8072), 9, + STATE(8085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804195,7 +796288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174157] = 12, + [175648] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804216,9 +796309,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6701), 1, - anon_sym_RPAREN, - STATE(8073), 9, + ACTIONS(5584), 1, + aux_sym_preproc_if_token3, + STATE(8086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804228,7 +796321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174202] = 12, + [175693] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804249,9 +796342,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11386), 1, - anon_sym_STAR, - STATE(8074), 9, + ACTIONS(11894), 1, + anon_sym_EQ_GT, + STATE(8087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804261,7 +796354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174247] = 12, + [175738] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804282,9 +796375,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6797), 1, + ACTIONS(11896), 1, anon_sym_RPAREN, - STATE(8075), 9, + STATE(8088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804294,7 +796387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174292] = 12, + [175783] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804315,9 +796408,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11388), 1, - anon_sym_LPAREN, - STATE(8076), 9, + ACTIONS(11898), 1, + anon_sym_RPAREN, + STATE(8089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804327,7 +796420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174337] = 12, + [175828] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804348,9 +796441,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11390), 1, - sym_interpolation_start_quote, - STATE(8077), 9, + ACTIONS(11900), 1, + anon_sym_RBRACK, + STATE(8090), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804360,7 +796453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174382] = 12, + [175873] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804381,9 +796474,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11392), 1, - anon_sym_SEMI, - STATE(8078), 9, + ACTIONS(11902), 1, + anon_sym_EQ_GT, + STATE(8091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804393,7 +796486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174427] = 12, + [175918] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804414,9 +796507,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11394), 1, - anon_sym_SEMI, - STATE(8079), 9, + ACTIONS(11904), 1, + anon_sym_GT, + STATE(8092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804426,30 +796519,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174472] = 12, - ACTIONS(3), 1, + [175963] = 12, + ACTIONS(5817), 1, + aux_sym_preproc_if_token2, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(11396), 1, - anon_sym_EQ_GT, - STATE(8080), 9, + STATE(8093), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804459,7 +796552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174517] = 12, + [176008] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804480,9 +796573,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11398), 1, - anon_sym_RPAREN, - STATE(8081), 9, + ACTIONS(11906), 1, + anon_sym_STAR, + STATE(8094), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804492,7 +796585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174562] = 12, + [176053] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804513,9 +796606,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11400), 1, - anon_sym_RPAREN, - STATE(8082), 9, + ACTIONS(10874), 1, + anon_sym_RBRACE, + STATE(8095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804525,7 +796618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174607] = 12, + [176098] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804546,9 +796639,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11402), 1, - anon_sym_STAR, - STATE(8083), 9, + ACTIONS(11908), 1, + anon_sym_in, + STATE(8096), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804558,7 +796651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174652] = 12, + [176143] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804579,9 +796672,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11404), 1, - anon_sym_RBRACK, - STATE(8084), 9, + ACTIONS(11910), 1, + anon_sym_EQ_GT, + STATE(8097), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804591,7 +796684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174697] = 12, + [176188] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804612,9 +796705,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11406), 1, - anon_sym_RPAREN, - STATE(8085), 9, + ACTIONS(11912), 1, + sym__optional_semi, + STATE(8098), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804624,7 +796717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174742] = 12, + [176233] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804645,9 +796738,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_EQ_GT, - STATE(8086), 9, + ACTIONS(11914), 1, + sym__optional_semi, + STATE(8099), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804657,7 +796750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174787] = 12, + [176278] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804678,9 +796771,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11408), 1, - anon_sym_RBRACE, - STATE(8087), 9, + ACTIONS(11916), 1, + aux_sym_preproc_if_token3, + STATE(8100), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804690,7 +796783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174832] = 12, + [176323] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804711,9 +796804,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11410), 1, - anon_sym_COLON, - STATE(8088), 9, + ACTIONS(11918), 1, + aux_sym_preproc_if_token3, + STATE(8101), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804723,7 +796816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174877] = 12, + [176368] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804744,9 +796837,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11412), 1, - anon_sym_SEMI, - STATE(8089), 9, + ACTIONS(11920), 1, + anon_sym_LPAREN, + STATE(8102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804756,7 +796849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174922] = 12, + [176413] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804777,9 +796870,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11414), 1, - anon_sym_LT, - STATE(8090), 9, + ACTIONS(11922), 1, + anon_sym_RPAREN, + STATE(8103), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804789,7 +796882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174967] = 12, + [176458] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804810,9 +796903,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11416), 1, - anon_sym_LPAREN, - STATE(8091), 9, + ACTIONS(11924), 1, + sym__optional_semi, + STATE(8104), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804822,7 +796915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175012] = 12, + [176503] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804843,42 +796936,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11418), 1, + ACTIONS(11926), 1, anon_sym_GT, - STATE(8092), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [175057] = 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(11420), 1, - sym_interpolation_start_quote, - STATE(8093), 9, + STATE(8105), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804888,7 +796948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175102] = 12, + [176548] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804909,9 +796969,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11422), 1, - anon_sym_RPAREN, - STATE(8094), 9, + ACTIONS(11928), 1, + anon_sym_SEMI, + STATE(8106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804921,7 +796981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175147] = 12, + [176593] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804942,9 +797002,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11424), 1, - anon_sym_GT, - STATE(8095), 9, + ACTIONS(11930), 1, + anon_sym_EQ_GT, + STATE(8107), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804954,7 +797014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175192] = 12, + [176638] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804975,9 +797035,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11426), 1, - anon_sym_RBRACE, - STATE(8096), 9, + ACTIONS(11932), 1, + aux_sym_preproc_if_token3, + STATE(8108), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804987,7 +797047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175237] = 12, + [176683] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805008,9 +797068,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11428), 1, - anon_sym_RPAREN, - STATE(8097), 9, + ACTIONS(11934), 1, + anon_sym_GT, + STATE(8109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805020,7 +797080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175282] = 12, + [176728] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805041,9 +797101,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11430), 1, + ACTIONS(11936), 1, anon_sym_SEMI, - STATE(8098), 9, + STATE(8110), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805053,7 +797113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175327] = 12, + [176773] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805074,9 +797134,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11432), 1, - anon_sym_SEMI, - STATE(8099), 9, + ACTIONS(11938), 1, + anon_sym_RPAREN, + STATE(8111), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805086,7 +797146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175372] = 12, + [176818] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805107,9 +797167,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11434), 1, - anon_sym_SEMI, - STATE(8100), 9, + ACTIONS(10143), 1, + anon_sym_RBRACE, + STATE(8112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805119,7 +797179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175417] = 12, + [176863] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805140,9 +797200,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6561), 1, - anon_sym_RPAREN, - STATE(8101), 9, + ACTIONS(4606), 1, + anon_sym_LPAREN, + STATE(8113), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805152,7 +797212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175462] = 12, + [176908] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805173,9 +797233,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11436), 1, - sym__optional_semi, - STATE(8102), 9, + ACTIONS(11940), 1, + aux_sym_preproc_if_token3, + STATE(8114), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805185,7 +797245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175507] = 12, + [176953] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805206,9 +797266,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11438), 1, + ACTIONS(11942), 1, aux_sym_preproc_if_token3, - STATE(8103), 9, + STATE(8115), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805218,7 +797278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175552] = 12, + [176998] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805239,9 +797299,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11440), 1, - anon_sym_RPAREN, - STATE(8104), 9, + ACTIONS(11944), 1, + anon_sym_LPAREN, + STATE(8116), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805251,7 +797311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175597] = 12, + [177043] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805272,9 +797332,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11442), 1, - anon_sym_RPAREN, - STATE(8105), 9, + ACTIONS(11946), 1, + anon_sym_RBRACE, + STATE(8117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805284,7 +797344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175642] = 12, + [177088] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805305,9 +797365,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11444), 1, - anon_sym_SEMI, - STATE(8106), 9, + ACTIONS(11948), 1, + anon_sym_EQ_GT, + STATE(8118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805317,7 +797377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175687] = 12, + [177133] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805338,9 +797398,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11446), 1, - anon_sym_SQUOTE, - STATE(8107), 9, + ACTIONS(11950), 1, + anon_sym_GT, + STATE(8119), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805350,7 +797410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175732] = 12, + [177178] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805371,9 +797431,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11448), 1, - anon_sym_COLON, - STATE(8108), 9, + ACTIONS(11952), 1, + sym__optional_semi, + STATE(8120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805383,7 +797443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175777] = 12, + [177223] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805404,9 +797464,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11450), 1, - anon_sym_EQ_GT, - STATE(8109), 9, + ACTIONS(11954), 1, + sym__optional_semi, + STATE(8121), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805416,7 +797476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175822] = 12, + [177268] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805437,9 +797497,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6164), 1, - anon_sym_RBRACE, - STATE(8110), 9, + ACTIONS(11956), 1, + anon_sym_SEMI, + STATE(8122), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805449,7 +797509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175867] = 12, + [177313] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805470,9 +797530,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11452), 1, - anon_sym_SEMI, - STATE(8111), 9, + ACTIONS(11958), 1, + anon_sym_STAR, + STATE(8123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805482,7 +797542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175912] = 12, + [177358] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805503,9 +797563,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11454), 1, - sym_raw_string_end, - STATE(8112), 9, + ACTIONS(11960), 1, + sym__optional_semi, + STATE(8124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805515,7 +797575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175957] = 12, + [177403] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805536,9 +797596,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11456), 1, - anon_sym_EQ_GT, - STATE(8113), 9, + ACTIONS(11962), 1, + anon_sym_SEMI, + STATE(8125), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805548,7 +797608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176002] = 12, + [177448] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805569,9 +797629,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11458), 1, - anon_sym_STAR, - STATE(8114), 9, + ACTIONS(10942), 1, + anon_sym_LT, + STATE(8126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805581,7 +797641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176047] = 12, + [177493] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805602,9 +797662,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11460), 1, - anon_sym_RBRACK, - STATE(8115), 9, + ACTIONS(11964), 1, + anon_sym_RPAREN, + STATE(8127), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805614,7 +797674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176092] = 12, + [177538] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805635,9 +797695,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5772), 1, - aux_sym_preproc_if_token3, - STATE(8116), 9, + ACTIONS(11966), 1, + anon_sym_RPAREN, + STATE(8128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805647,7 +797707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176137] = 12, + [177583] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805668,9 +797728,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11462), 1, - anon_sym_GT, - STATE(8117), 9, + ACTIONS(11968), 1, + sym_raw_string_content, + STATE(8129), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805680,7 +797740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176182] = 12, + [177628] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805701,9 +797761,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11464), 1, - anon_sym_SEMI, - STATE(8118), 9, + ACTIONS(11970), 1, + anon_sym_RPAREN, + STATE(8130), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805713,7 +797773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176227] = 12, + [177673] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805734,9 +797794,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11466), 1, - sym__optional_semi, - STATE(8119), 9, + ACTIONS(11972), 1, + anon_sym_SEMI, + STATE(8131), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805746,7 +797806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176272] = 12, + [177718] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805767,9 +797827,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11468), 1, - anon_sym_SEMI, - STATE(8120), 9, + ACTIONS(11974), 1, + anon_sym_RBRACE, + STATE(8132), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805779,7 +797839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176317] = 12, + [177763] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805800,9 +797860,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6739), 1, - anon_sym_RPAREN, - STATE(8121), 9, + ACTIONS(11976), 1, + anon_sym_EQ_GT, + STATE(8133), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805812,7 +797872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176362] = 12, + [177808] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805833,9 +797893,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11470), 1, - anon_sym_SEMI, - STATE(8122), 9, + ACTIONS(11978), 1, + sym_interpolation_start_quote, + STATE(8134), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805845,7 +797905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176407] = 12, + [177853] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805866,9 +797926,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11472), 1, - aux_sym_preproc_if_token3, - STATE(8123), 9, + ACTIONS(11980), 1, + sym_interpolation_start_quote, + STATE(8135), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805878,7 +797938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176452] = 12, + [177898] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805899,9 +797959,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_STAR, - STATE(8124), 9, + ACTIONS(11982), 1, + sym_interpolation_start_quote, + STATE(8136), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805911,7 +797971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176497] = 12, + [177943] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805932,9 +797992,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11474), 1, - anon_sym_SEMI, - STATE(8125), 9, + ACTIONS(11984), 1, + anon_sym_LT, + STATE(8137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805944,30 +798004,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176542] = 12, - ACTIONS(8466), 1, + [177988] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11476), 1, - sym_preproc_arg, - STATE(8126), 9, + ACTIONS(11986), 1, + sym_raw_string_content, + STATE(8138), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805977,30 +798037,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176587] = 12, - ACTIONS(8466), 1, + [178033] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8468), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8472), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8478), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8482), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(11478), 1, - sym_preproc_arg, - STATE(8127), 9, + ACTIONS(11988), 1, + aux_sym_preproc_if_token2, + STATE(8139), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806010,7 +798070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176632] = 12, + [178078] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806031,42 +798091,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11480), 1, - aux_sym_preproc_if_token3, - STATE(8128), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [176677] = 12, - ACTIONS(8466), 1, - aux_sym_preproc_region_token1, - ACTIONS(8468), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8470), 1, - aux_sym_preproc_line_token1, - ACTIONS(8472), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8474), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8476), 1, - aux_sym_preproc_error_token1, - ACTIONS(8478), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8480), 1, - aux_sym_preproc_define_token1, - ACTIONS(8482), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8484), 1, - sym_comment, - ACTIONS(11482), 1, - sym_preproc_arg, - STATE(8129), 9, + ACTIONS(11990), 1, + sym_interpolation_start_quote, + STATE(8140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806076,7 +798103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176722] = 12, + [178123] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806097,9 +798124,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11484), 1, + ACTIONS(11992), 1, anon_sym_STAR, - STATE(8130), 9, + STATE(8141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806109,7 +798136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176767] = 12, + [178168] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806130,9 +798157,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11486), 1, - aux_sym_preproc_if_token3, - STATE(8131), 9, + ACTIONS(11994), 1, + sym__optional_semi, + STATE(8142), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806142,7 +798169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176812] = 12, + [178213] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806163,9 +798190,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9921), 1, - anon_sym_RBRACE, - STATE(8132), 9, + ACTIONS(11996), 1, + sym_interpolation_start_quote, + STATE(8143), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806175,7 +798202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176857] = 12, + [178258] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806196,9 +798223,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11488), 1, - anon_sym_RBRACE, - STATE(8133), 9, + ACTIONS(11998), 1, + anon_sym_GT, + STATE(8144), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806208,7 +798235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176902] = 12, + [178303] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806229,9 +798256,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11490), 1, + ACTIONS(12000), 1, anon_sym_LPAREN, - STATE(8134), 9, + STATE(8145), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806241,7 +798268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176947] = 12, + [178348] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806262,9 +798289,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11492), 1, + ACTIONS(12002), 1, anon_sym_STAR, - STATE(8135), 9, + STATE(8146), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806274,7 +798301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176992] = 12, + [178393] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806295,9 +798322,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11494), 1, - anon_sym_GT, - STATE(8136), 9, + ACTIONS(12004), 1, + anon_sym_SEMI, + STATE(8147), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806307,7 +798334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177037] = 12, + [178438] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806328,9 +798355,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11496), 1, - anon_sym_COMMA, - STATE(8137), 9, + ACTIONS(12006), 1, + sym_interpolation_start_quote, + STATE(8148), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806340,7 +798367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177082] = 12, + [178483] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806361,9 +798388,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11498), 1, + ACTIONS(12008), 1, anon_sym_LPAREN, - STATE(8138), 9, + STATE(8149), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806373,7 +798400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177127] = 12, + [178528] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806394,9 +798421,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(12010), 1, anon_sym_STAR, - STATE(8139), 9, + STATE(8150), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806406,7 +798433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177172] = 12, + [178573] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806427,9 +798454,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11502), 1, + ACTIONS(12012), 1, anon_sym_RPAREN, - STATE(8140), 9, + STATE(8151), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806439,30 +798466,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177217] = 12, - ACTIONS(3), 1, + [178618] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(11504), 1, - anon_sym_COMMA, - STATE(8141), 9, + ACTIONS(12014), 1, + sym_preproc_arg, + STATE(8152), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806472,7 +798499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177262] = 12, + [178663] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806493,9 +798520,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11506), 1, + ACTIONS(12016), 1, anon_sym_STAR, - STATE(8142), 9, + STATE(8153), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806505,30 +798532,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177307] = 12, - ACTIONS(3), 1, + [178708] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(11508), 1, - aux_sym_preproc_if_token3, - STATE(8143), 9, + ACTIONS(12018), 1, + sym_preproc_arg, + STATE(8154), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806538,4597 +798565,4614 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177352] = 1, - ACTIONS(11510), 1, + [178753] = 1, + ACTIONS(12020), 1, ts_builtin_sym_end, - [177356] = 1, - ACTIONS(11512), 1, + [178757] = 1, + ACTIONS(12022), 1, ts_builtin_sym_end, - [177360] = 1, - ACTIONS(11514), 1, + [178761] = 1, + ACTIONS(12024), 1, ts_builtin_sym_end, - [177364] = 1, - ACTIONS(11516), 1, + [178765] = 1, + ACTIONS(12026), 1, ts_builtin_sym_end, - [177368] = 1, - ACTIONS(11518), 1, + [178769] = 1, + ACTIONS(12028), 1, ts_builtin_sym_end, - [177372] = 1, - ACTIONS(11520), 1, + [178773] = 1, + ACTIONS(12030), 1, ts_builtin_sym_end, - [177376] = 1, - ACTIONS(11522), 1, + [178777] = 1, + ACTIONS(12032), 1, ts_builtin_sym_end, - [177380] = 1, - ACTIONS(11524), 1, + [178781] = 1, + ACTIONS(12034), 1, ts_builtin_sym_end, - [177384] = 1, - ACTIONS(11526), 1, + [178785] = 1, + ACTIONS(12036), 1, ts_builtin_sym_end, - [177388] = 1, - ACTIONS(11528), 1, + [178789] = 1, + ACTIONS(12038), 1, ts_builtin_sym_end, - [177392] = 1, - ACTIONS(11530), 1, + [178793] = 1, + ACTIONS(12040), 1, ts_builtin_sym_end, - [177396] = 1, - ACTIONS(11532), 1, + [178797] = 1, + ACTIONS(12042), 1, ts_builtin_sym_end, - [177400] = 1, - ACTIONS(11534), 1, + [178801] = 1, + ACTIONS(12044), 1, ts_builtin_sym_end, - [177404] = 1, - ACTIONS(11536), 1, + [178805] = 1, + ACTIONS(12046), 1, ts_builtin_sym_end, - [177408] = 1, - ACTIONS(11538), 1, + [178809] = 1, + ACTIONS(12048), 1, ts_builtin_sym_end, - [177412] = 1, - ACTIONS(11540), 1, + [178813] = 1, + ACTIONS(12050), 1, ts_builtin_sym_end, - [177416] = 1, - ACTIONS(11542), 1, + [178817] = 1, + ACTIONS(12052), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(5460)] = 0, - [SMALL_STATE(5461)] = 91, - [SMALL_STATE(5462)] = 204, - [SMALL_STATE(5463)] = 303, - [SMALL_STATE(5464)] = 394, - [SMALL_STATE(5465)] = 485, - [SMALL_STATE(5466)] = 580, - [SMALL_STATE(5467)] = 677, - [SMALL_STATE(5468)] = 768, - [SMALL_STATE(5469)] = 859, - [SMALL_STATE(5470)] = 952, - [SMALL_STATE(5471)] = 1043, - [SMALL_STATE(5472)] = 1134, - [SMALL_STATE(5473)] = 1229, - [SMALL_STATE(5474)] = 1320, - [SMALL_STATE(5475)] = 1415, - [SMALL_STATE(5476)] = 1510, - [SMALL_STATE(5477)] = 1609, - [SMALL_STATE(5478)] = 1701, - [SMALL_STATE(5479)] = 1791, - [SMALL_STATE(5480)] = 1885, - [SMALL_STATE(5481)] = 1979, - [SMALL_STATE(5482)] = 2073, - [SMALL_STATE(5483)] = 2183, - [SMALL_STATE(5484)] = 2277, - [SMALL_STATE(5485)] = 2371, - [SMALL_STATE(5486)] = 2465, - [SMALL_STATE(5487)] = 2557, - [SMALL_STATE(5488)] = 2655, - [SMALL_STATE(5489)] = 2747, - [SMALL_STATE(5490)] = 2839, - [SMALL_STATE(5491)] = 2953, - [SMALL_STATE(5492)] = 3042, - [SMALL_STATE(5493)] = 3131, - [SMALL_STATE(5494)] = 3224, - [SMALL_STATE(5495)] = 3317, - [SMALL_STATE(5496)] = 3410, - [SMALL_STATE(5497)] = 3499, - [SMALL_STATE(5498)] = 3588, - [SMALL_STATE(5499)] = 3681, - [SMALL_STATE(5500)] = 3774, - [SMALL_STATE(5501)] = 3863, - [SMALL_STATE(5502)] = 3952, - [SMALL_STATE(5503)] = 4045, - [SMALL_STATE(5504)] = 4134, - [SMALL_STATE(5505)] = 4223, - [SMALL_STATE(5506)] = 4312, - [SMALL_STATE(5507)] = 4401, - [SMALL_STATE(5508)] = 4490, - [SMALL_STATE(5509)] = 4579, - [SMALL_STATE(5510)] = 4668, - [SMALL_STATE(5511)] = 4791, - [SMALL_STATE(5512)] = 4884, - [SMALL_STATE(5513)] = 4973, - [SMALL_STATE(5514)] = 5062, - [SMALL_STATE(5515)] = 5155, - [SMALL_STATE(5516)] = 5244, - [SMALL_STATE(5517)] = 5333, - [SMALL_STATE(5518)] = 5422, - [SMALL_STATE(5519)] = 5511, - [SMALL_STATE(5520)] = 5602, - [SMALL_STATE(5521)] = 5691, - [SMALL_STATE(5522)] = 5780, - [SMALL_STATE(5523)] = 5869, - [SMALL_STATE(5524)] = 5962, - [SMALL_STATE(5525)] = 6051, - [SMALL_STATE(5526)] = 6140, - [SMALL_STATE(5527)] = 6229, - [SMALL_STATE(5528)] = 6320, - [SMALL_STATE(5529)] = 6412, - [SMALL_STATE(5530)] = 6520, - [SMALL_STATE(5531)] = 6614, - [SMALL_STATE(5532)] = 6702, - [SMALL_STATE(5533)] = 6794, - [SMALL_STATE(5534)] = 6886, - [SMALL_STATE(5535)] = 6978, - [SMALL_STATE(5536)] = 7096, - [SMALL_STATE(5537)] = 7188, - [SMALL_STATE(5538)] = 7284, - [SMALL_STATE(5539)] = 7372, - [SMALL_STATE(5540)] = 7464, - [SMALL_STATE(5541)] = 7552, - [SMALL_STATE(5542)] = 7670, - [SMALL_STATE(5543)] = 7762, - [SMALL_STATE(5544)] = 7880, - [SMALL_STATE(5545)] = 7968, - [SMALL_STATE(5546)] = 8058, - [SMALL_STATE(5547)] = 8150, - [SMALL_STATE(5548)] = 8268, - [SMALL_STATE(5549)] = 8386, - [SMALL_STATE(5550)] = 8480, - [SMALL_STATE(5551)] = 8598, - [SMALL_STATE(5552)] = 8690, - [SMALL_STATE(5553)] = 8780, - [SMALL_STATE(5554)] = 8888, - [SMALL_STATE(5555)] = 8979, - [SMALL_STATE(5556)] = 9072, - [SMALL_STATE(5557)] = 9167, - [SMALL_STATE(5558)] = 9284, - [SMALL_STATE(5559)] = 9379, - [SMALL_STATE(5560)] = 9486, - [SMALL_STATE(5561)] = 9601, - [SMALL_STATE(5562)] = 9718, - [SMALL_STATE(5563)] = 9809, - [SMALL_STATE(5564)] = 9900, - [SMALL_STATE(5565)] = 9995, - [SMALL_STATE(5566)] = 10082, - [SMALL_STATE(5567)] = 10169, - [SMALL_STATE(5568)] = 10262, - [SMALL_STATE(5569)] = 10369, - [SMALL_STATE(5570)] = 10460, - [SMALL_STATE(5571)] = 10547, - [SMALL_STATE(5572)] = 10638, - [SMALL_STATE(5573)] = 10729, - [SMALL_STATE(5574)] = 10816, - [SMALL_STATE(5575)] = 10905, - [SMALL_STATE(5576)] = 10994, - [SMALL_STATE(5577)] = 11085, - [SMALL_STATE(5578)] = 11176, - [SMALL_STATE(5579)] = 11271, - [SMALL_STATE(5580)] = 11362, - [SMALL_STATE(5581)] = 11448, - [SMALL_STATE(5582)] = 11534, - [SMALL_STATE(5583)] = 11622, - [SMALL_STATE(5584)] = 11708, - [SMALL_STATE(5585)] = 11794, - [SMALL_STATE(5586)] = 11880, - [SMALL_STATE(5587)] = 11970, - [SMALL_STATE(5588)] = 12058, - [SMALL_STATE(5589)] = 12144, - [SMALL_STATE(5590)] = 12230, - [SMALL_STATE(5591)] = 12320, - [SMALL_STATE(5592)] = 12412, - [SMALL_STATE(5593)] = 12502, - [SMALL_STATE(5594)] = 12596, - [SMALL_STATE(5595)] = 12712, - [SMALL_STATE(5596)] = 12798, - [SMALL_STATE(5597)] = 12902, - [SMALL_STATE(5598)] = 12992, - [SMALL_STATE(5599)] = 13080, - [SMALL_STATE(5600)] = 13166, - [SMALL_STATE(5601)] = 13270, - [SMALL_STATE(5602)] = 13356, - [SMALL_STATE(5603)] = 13442, - [SMALL_STATE(5604)] = 13532, - [SMALL_STATE(5605)] = 13620, - [SMALL_STATE(5606)] = 13708, - [SMALL_STATE(5607)] = 13794, - [SMALL_STATE(5608)] = 13880, - [SMALL_STATE(5609)] = 13966, - [SMALL_STATE(5610)] = 14052, - [SMALL_STATE(5611)] = 14140, - [SMALL_STATE(5612)] = 14226, - [SMALL_STATE(5613)] = 14312, - [SMALL_STATE(5614)] = 14402, - [SMALL_STATE(5615)] = 14488, - [SMALL_STATE(5616)] = 14578, - [SMALL_STATE(5617)] = 14664, - [SMALL_STATE(5618)] = 14750, - [SMALL_STATE(5619)] = 14866, - [SMALL_STATE(5620)] = 14952, - [SMALL_STATE(5621)] = 15044, - [SMALL_STATE(5622)] = 15130, - [SMALL_STATE(5623)] = 15216, - [SMALL_STATE(5624)] = 15302, - [SMALL_STATE(5625)] = 15388, - [SMALL_STATE(5626)] = 15476, - [SMALL_STATE(5627)] = 15564, - [SMALL_STATE(5628)] = 15652, - [SMALL_STATE(5629)] = 15738, - [SMALL_STATE(5630)] = 15824, - [SMALL_STATE(5631)] = 15910, - [SMALL_STATE(5632)] = 16014, - [SMALL_STATE(5633)] = 16100, - [SMALL_STATE(5634)] = 16186, - [SMALL_STATE(5635)] = 16290, - [SMALL_STATE(5636)] = 16376, - [SMALL_STATE(5637)] = 16462, - [SMALL_STATE(5638)] = 16548, - [SMALL_STATE(5639)] = 16634, - [SMALL_STATE(5640)] = 16724, - [SMALL_STATE(5641)] = 16812, - [SMALL_STATE(5642)] = 16916, - [SMALL_STATE(5643)] = 17010, - [SMALL_STATE(5644)] = 17100, - [SMALL_STATE(5645)] = 17186, - [SMALL_STATE(5646)] = 17276, - [SMALL_STATE(5647)] = 17362, - [SMALL_STATE(5648)] = 17447, - [SMALL_STATE(5649)] = 17562, - [SMALL_STATE(5650)] = 17649, - [SMALL_STATE(5651)] = 17738, - [SMALL_STATE(5652)] = 17853, - [SMALL_STATE(5653)] = 17938, - [SMALL_STATE(5654)] = 18023, - [SMALL_STATE(5655)] = 18108, - [SMALL_STATE(5656)] = 18193, - [SMALL_STATE(5657)] = 18308, - [SMALL_STATE(5658)] = 18393, - [SMALL_STATE(5659)] = 18482, - [SMALL_STATE(5660)] = 18567, - [SMALL_STATE(5661)] = 18656, - [SMALL_STATE(5662)] = 18741, - [SMALL_STATE(5663)] = 18826, - [SMALL_STATE(5664)] = 18911, - [SMALL_STATE(5665)] = 18996, - [SMALL_STATE(5666)] = 19081, - [SMALL_STATE(5667)] = 19166, - [SMALL_STATE(5668)] = 19251, - [SMALL_STATE(5669)] = 19336, - [SMALL_STATE(5670)] = 19421, - [SMALL_STATE(5671)] = 19506, - [SMALL_STATE(5672)] = 19591, - [SMALL_STATE(5673)] = 19676, - [SMALL_STATE(5674)] = 19761, - [SMALL_STATE(5675)] = 19846, - [SMALL_STATE(5676)] = 19931, - [SMALL_STATE(5677)] = 20016, - [SMALL_STATE(5678)] = 20101, - [SMALL_STATE(5679)] = 20186, - [SMALL_STATE(5680)] = 20271, - [SMALL_STATE(5681)] = 20386, - [SMALL_STATE(5682)] = 20471, - [SMALL_STATE(5683)] = 20556, - [SMALL_STATE(5684)] = 20645, - [SMALL_STATE(5685)] = 20730, - [SMALL_STATE(5686)] = 20817, - [SMALL_STATE(5687)] = 20932, - [SMALL_STATE(5688)] = 21019, - [SMALL_STATE(5689)] = 21134, - [SMALL_STATE(5690)] = 21249, - [SMALL_STATE(5691)] = 21364, - [SMALL_STATE(5692)] = 21449, - [SMALL_STATE(5693)] = 21534, - [SMALL_STATE(5694)] = 21621, - [SMALL_STATE(5695)] = 21706, - [SMALL_STATE(5696)] = 21791, - [SMALL_STATE(5697)] = 21880, - [SMALL_STATE(5698)] = 21965, - [SMALL_STATE(5699)] = 22050, - [SMALL_STATE(5700)] = 22135, - [SMALL_STATE(5701)] = 22250, - [SMALL_STATE(5702)] = 22335, - [SMALL_STATE(5703)] = 22420, - [SMALL_STATE(5704)] = 22505, - [SMALL_STATE(5705)] = 22590, - [SMALL_STATE(5706)] = 22675, - [SMALL_STATE(5707)] = 22760, - [SMALL_STATE(5708)] = 22875, - [SMALL_STATE(5709)] = 22960, - [SMALL_STATE(5710)] = 23045, - [SMALL_STATE(5711)] = 23130, - [SMALL_STATE(5712)] = 23219, - [SMALL_STATE(5713)] = 23304, - [SMALL_STATE(5714)] = 23419, - [SMALL_STATE(5715)] = 23504, - [SMALL_STATE(5716)] = 23591, - [SMALL_STATE(5717)] = 23676, - [SMALL_STATE(5718)] = 23791, - [SMALL_STATE(5719)] = 23876, - [SMALL_STATE(5720)] = 23961, - [SMALL_STATE(5721)] = 24066, - [SMALL_STATE(5722)] = 24155, - [SMALL_STATE(5723)] = 24270, - [SMALL_STATE(5724)] = 24355, - [SMALL_STATE(5725)] = 24470, - [SMALL_STATE(5726)] = 24585, - [SMALL_STATE(5727)] = 24670, - [SMALL_STATE(5728)] = 24757, - [SMALL_STATE(5729)] = 24842, - [SMALL_STATE(5730)] = 24927, - [SMALL_STATE(5731)] = 25012, - [SMALL_STATE(5732)] = 25127, - [SMALL_STATE(5733)] = 25212, - [SMALL_STATE(5734)] = 25297, - [SMALL_STATE(5735)] = 25382, - [SMALL_STATE(5736)] = 25467, - [SMALL_STATE(5737)] = 25552, - [SMALL_STATE(5738)] = 25641, - [SMALL_STATE(5739)] = 25730, - [SMALL_STATE(5740)] = 25815, - [SMALL_STATE(5741)] = 25906, - [SMALL_STATE(5742)] = 25991, - [SMALL_STATE(5743)] = 26080, - [SMALL_STATE(5744)] = 26169, - [SMALL_STATE(5745)] = 26282, - [SMALL_STATE(5746)] = 26367, - [SMALL_STATE(5747)] = 26482, - [SMALL_STATE(5748)] = 26567, - [SMALL_STATE(5749)] = 26652, - [SMALL_STATE(5750)] = 26737, - [SMALL_STATE(5751)] = 26822, - [SMALL_STATE(5752)] = 26907, - [SMALL_STATE(5753)] = 26992, - [SMALL_STATE(5754)] = 27079, - [SMALL_STATE(5755)] = 27164, - [SMALL_STATE(5756)] = 27279, - [SMALL_STATE(5757)] = 27364, - [SMALL_STATE(5758)] = 27449, - [SMALL_STATE(5759)] = 27534, - [SMALL_STATE(5760)] = 27623, - [SMALL_STATE(5761)] = 27738, - [SMALL_STATE(5762)] = 27853, - [SMALL_STATE(5763)] = 27968, - [SMALL_STATE(5764)] = 28083, - [SMALL_STATE(5765)] = 28168, - [SMALL_STATE(5766)] = 28253, - [SMALL_STATE(5767)] = 28338, - [SMALL_STATE(5768)] = 28423, - [SMALL_STATE(5769)] = 28508, - [SMALL_STATE(5770)] = 28597, - [SMALL_STATE(5771)] = 28682, - [SMALL_STATE(5772)] = 28797, - [SMALL_STATE(5773)] = 28882, - [SMALL_STATE(5774)] = 28967, - [SMALL_STATE(5775)] = 29052, - [SMALL_STATE(5776)] = 29137, - [SMALL_STATE(5777)] = 29222, - [SMALL_STATE(5778)] = 29309, - [SMALL_STATE(5779)] = 29394, - [SMALL_STATE(5780)] = 29483, - [SMALL_STATE(5781)] = 29572, - [SMALL_STATE(5782)] = 29661, - [SMALL_STATE(5783)] = 29746, - [SMALL_STATE(5784)] = 29833, - [SMALL_STATE(5785)] = 29918, - [SMALL_STATE(5786)] = 30007, - [SMALL_STATE(5787)] = 30122, - [SMALL_STATE(5788)] = 30207, - [SMALL_STATE(5789)] = 30292, - [SMALL_STATE(5790)] = 30377, - [SMALL_STATE(5791)] = 30492, - [SMALL_STATE(5792)] = 30607, - [SMALL_STATE(5793)] = 30692, - [SMALL_STATE(5794)] = 30781, - [SMALL_STATE(5795)] = 30866, - [SMALL_STATE(5796)] = 30951, - [SMALL_STATE(5797)] = 31039, - [SMALL_STATE(5798)] = 31127, - [SMALL_STATE(5799)] = 31229, - [SMALL_STATE(5800)] = 31315, - [SMALL_STATE(5801)] = 31403, - [SMALL_STATE(5802)] = 31505, - [SMALL_STATE(5803)] = 31607, - [SMALL_STATE(5804)] = 31709, - [SMALL_STATE(5805)] = 31811, - [SMALL_STATE(5806)] = 31897, - [SMALL_STATE(5807)] = 31999, - [SMALL_STATE(5808)] = 32101, - [SMALL_STATE(5809)] = 32203, - [SMALL_STATE(5810)] = 32305, - [SMALL_STATE(5811)] = 32407, - [SMALL_STATE(5812)] = 32509, - [SMALL_STATE(5813)] = 32597, - [SMALL_STATE(5814)] = 32699, - [SMALL_STATE(5815)] = 32801, - [SMALL_STATE(5816)] = 32887, - [SMALL_STATE(5817)] = 32989, - [SMALL_STATE(5818)] = 33075, - [SMALL_STATE(5819)] = 33163, - [SMALL_STATE(5820)] = 33265, - [SMALL_STATE(5821)] = 33351, - [SMALL_STATE(5822)] = 33439, - [SMALL_STATE(5823)] = 33541, - [SMALL_STATE(5824)] = 33643, - [SMALL_STATE(5825)] = 33745, - [SMALL_STATE(5826)] = 33847, - [SMALL_STATE(5827)] = 33941, - [SMALL_STATE(5828)] = 34043, - [SMALL_STATE(5829)] = 34145, - [SMALL_STATE(5830)] = 34247, - [SMALL_STATE(5831)] = 34349, - [SMALL_STATE(5832)] = 34451, - [SMALL_STATE(5833)] = 34539, - [SMALL_STATE(5834)] = 34641, - [SMALL_STATE(5835)] = 34727, - [SMALL_STATE(5836)] = 34815, - [SMALL_STATE(5837)] = 34917, - [SMALL_STATE(5838)] = 35027, - [SMALL_STATE(5839)] = 35129, - [SMALL_STATE(5840)] = 35231, - [SMALL_STATE(5841)] = 35319, - [SMALL_STATE(5842)] = 35405, - [SMALL_STATE(5843)] = 35507, - [SMALL_STATE(5844)] = 35595, - [SMALL_STATE(5845)] = 35707, - [SMALL_STATE(5846)] = 35809, - [SMALL_STATE(5847)] = 35893, - [SMALL_STATE(5848)] = 35981, - [SMALL_STATE(5849)] = 36067, - [SMALL_STATE(5850)] = 36155, - [SMALL_STATE(5851)] = 36257, - [SMALL_STATE(5852)] = 36345, - [SMALL_STATE(5853)] = 36431, - [SMALL_STATE(5854)] = 36523, - [SMALL_STATE(5855)] = 36625, - [SMALL_STATE(5856)] = 36727, - [SMALL_STATE(5857)] = 36829, - [SMALL_STATE(5858)] = 36931, - [SMALL_STATE(5859)] = 37019, - [SMALL_STATE(5860)] = 37111, - [SMALL_STATE(5861)] = 37213, - [SMALL_STATE(5862)] = 37325, - [SMALL_STATE(5863)] = 37427, - [SMALL_STATE(5864)] = 37533, - [SMALL_STATE(5865)] = 37635, - [SMALL_STATE(5866)] = 37723, - [SMALL_STATE(5867)] = 37829, - [SMALL_STATE(5868)] = 37923, - [SMALL_STATE(5869)] = 38011, - [SMALL_STATE(5870)] = 38099, - [SMALL_STATE(5871)] = 38187, - [SMALL_STATE(5872)] = 38275, - [SMALL_STATE(5873)] = 38363, - [SMALL_STATE(5874)] = 38451, - [SMALL_STATE(5875)] = 38553, - [SMALL_STATE(5876)] = 38655, - [SMALL_STATE(5877)] = 38767, - [SMALL_STATE(5878)] = 38855, - [SMALL_STATE(5879)] = 38943, - [SMALL_STATE(5880)] = 39045, - [SMALL_STATE(5881)] = 39147, - [SMALL_STATE(5882)] = 39235, - [SMALL_STATE(5883)] = 39323, - [SMALL_STATE(5884)] = 39409, - [SMALL_STATE(5885)] = 39495, - [SMALL_STATE(5886)] = 39583, - [SMALL_STATE(5887)] = 39671, - [SMALL_STATE(5888)] = 39759, - [SMALL_STATE(5889)] = 39850, - [SMALL_STATE(5890)] = 39935, - [SMALL_STATE(5891)] = 40018, - [SMALL_STATE(5892)] = 40101, - [SMALL_STATE(5893)] = 40188, - [SMALL_STATE(5894)] = 40273, - [SMALL_STATE(5895)] = 40358, - [SMALL_STATE(5896)] = 40445, - [SMALL_STATE(5897)] = 40538, - [SMALL_STATE(5898)] = 40623, - [SMALL_STATE(5899)] = 40706, - [SMALL_STATE(5900)] = 40791, - [SMALL_STATE(5901)] = 40898, - [SMALL_STATE(5902)] = 40981, - [SMALL_STATE(5903)] = 41064, - [SMALL_STATE(5904)] = 41153, - [SMALL_STATE(5905)] = 41240, - [SMALL_STATE(5906)] = 41323, - [SMALL_STATE(5907)] = 41430, - [SMALL_STATE(5908)] = 41515, - [SMALL_STATE(5909)] = 41602, - [SMALL_STATE(5910)] = 41689, - [SMALL_STATE(5911)] = 41774, - [SMALL_STATE(5912)] = 41859, - [SMALL_STATE(5913)] = 41966, - [SMALL_STATE(5914)] = 42065, - [SMALL_STATE(5915)] = 42152, - [SMALL_STATE(5916)] = 42237, - [SMALL_STATE(5917)] = 42320, - [SMALL_STATE(5918)] = 42407, - [SMALL_STATE(5919)] = 42494, - [SMALL_STATE(5920)] = 42601, - [SMALL_STATE(5921)] = 42688, - [SMALL_STATE(5922)] = 42775, - [SMALL_STATE(5923)] = 42860, - [SMALL_STATE(5924)] = 42947, - [SMALL_STATE(5925)] = 43034, - [SMALL_STATE(5926)] = 43121, - [SMALL_STATE(5927)] = 43212, - [SMALL_STATE(5928)] = 43295, - [SMALL_STATE(5929)] = 43380, - [SMALL_STATE(5930)] = 43471, - [SMALL_STATE(5931)] = 43556, - [SMALL_STATE(5932)] = 43643, - [SMALL_STATE(5933)] = 43729, - [SMALL_STATE(5934)] = 43813, - [SMALL_STATE(5935)] = 43897, - [SMALL_STATE(5936)] = 44001, - [SMALL_STATE(5937)] = 44087, - [SMALL_STATE(5938)] = 44173, - [SMALL_STATE(5939)] = 44257, - [SMALL_STATE(5940)] = 44349, - [SMALL_STATE(5941)] = 44435, - [SMALL_STATE(5942)] = 44521, - [SMALL_STATE(5943)] = 44621, - [SMALL_STATE(5944)] = 44705, - [SMALL_STATE(5945)] = 44791, - [SMALL_STATE(5946)] = 44877, - [SMALL_STATE(5947)] = 44977, - [SMALL_STATE(5948)] = 45063, - [SMALL_STATE(5949)] = 45149, - [SMALL_STATE(5950)] = 45241, - [SMALL_STATE(5951)] = 45325, - [SMALL_STATE(5952)] = 45409, - [SMALL_STATE(5953)] = 45495, - [SMALL_STATE(5954)] = 45581, - [SMALL_STATE(5955)] = 45673, - [SMALL_STATE(5956)] = 45759, - [SMALL_STATE(5957)] = 45863, - [SMALL_STATE(5958)] = 45957, - [SMALL_STATE(5959)] = 46043, - [SMALL_STATE(5960)] = 46129, - [SMALL_STATE(5961)] = 46213, - [SMALL_STATE(5962)] = 46297, - [SMALL_STATE(5963)] = 46389, - [SMALL_STATE(5964)] = 46479, - [SMALL_STATE(5965)] = 46565, - [SMALL_STATE(5966)] = 46649, - [SMALL_STATE(5967)] = 46735, - [SMALL_STATE(5968)] = 46821, - [SMALL_STATE(5969)] = 46907, - [SMALL_STATE(5970)] = 46993, - [SMALL_STATE(5971)] = 47079, - [SMALL_STATE(5972)] = 47165, - [SMALL_STATE(5973)] = 47251, - [SMALL_STATE(5974)] = 47335, - [SMALL_STATE(5975)] = 47419, - [SMALL_STATE(5976)] = 47503, - [SMALL_STATE(5977)] = 47603, - [SMALL_STATE(5978)] = 47689, - [SMALL_STATE(5979)] = 47775, - [SMALL_STATE(5980)] = 47859, - [SMALL_STATE(5981)] = 47945, - [SMALL_STATE(5982)] = 48031, - [SMALL_STATE(5983)] = 48131, - [SMALL_STATE(5984)] = 48235, - [SMALL_STATE(5985)] = 48321, - [SMALL_STATE(5986)] = 48407, - [SMALL_STATE(5987)] = 48493, - [SMALL_STATE(5988)] = 48577, - [SMALL_STATE(5989)] = 48663, - [SMALL_STATE(5990)] = 48755, - [SMALL_STATE(5991)] = 48839, - [SMALL_STATE(5992)] = 48931, - [SMALL_STATE(5993)] = 49015, - [SMALL_STATE(5994)] = 49101, - [SMALL_STATE(5995)] = 49187, - [SMALL_STATE(5996)] = 49271, - [SMALL_STATE(5997)] = 49362, - [SMALL_STATE(5998)] = 49445, - [SMALL_STATE(5999)] = 49544, - [SMALL_STATE(6000)] = 49643, - [SMALL_STATE(6001)] = 49744, - [SMALL_STATE(6002)] = 49835, - [SMALL_STATE(6003)] = 49926, - [SMALL_STATE(6004)] = 50027, - [SMALL_STATE(6005)] = 50118, - [SMALL_STATE(6006)] = 50219, - [SMALL_STATE(6007)] = 50310, - [SMALL_STATE(6008)] = 50405, - [SMALL_STATE(6009)] = 50506, - [SMALL_STATE(6010)] = 50607, - [SMALL_STATE(6011)] = 50698, - [SMALL_STATE(6012)] = 50789, - [SMALL_STATE(6013)] = 50890, - [SMALL_STATE(6014)] = 50989, - [SMALL_STATE(6015)] = 51090, - [SMALL_STATE(6016)] = 51181, - [SMALL_STATE(6017)] = 51282, - [SMALL_STATE(6018)] = 51373, - [SMALL_STATE(6019)] = 51464, - [SMALL_STATE(6020)] = 51556, - [SMALL_STATE(6021)] = 51654, - [SMALL_STATE(6022)] = 51752, - [SMALL_STATE(6023)] = 51850, - [SMALL_STATE(6024)] = 51946, - [SMALL_STATE(6025)] = 52040, - [SMALL_STATE(6026)] = 52122, - [SMALL_STATE(6027)] = 52220, - [SMALL_STATE(6028)] = 52318, - [SMALL_STATE(6029)] = 52406, - [SMALL_STATE(6030)] = 52488, - [SMALL_STATE(6031)] = 52586, - [SMALL_STATE(6032)] = 52688, - [SMALL_STATE(6033)] = 52776, - [SMALL_STATE(6034)] = 52872, - [SMALL_STATE(6035)] = 52970, - [SMALL_STATE(6036)] = 53052, - [SMALL_STATE(6037)] = 53144, - [SMALL_STATE(6038)] = 53242, - [SMALL_STATE(6039)] = 53328, - [SMALL_STATE(6040)] = 53424, - [SMALL_STATE(6041)] = 53518, - [SMALL_STATE(6042)] = 53606, - [SMALL_STATE(6043)] = 53702, - [SMALL_STATE(6044)] = 53802, - [SMALL_STATE(6045)] = 53900, - [SMALL_STATE(6046)] = 53996, - [SMALL_STATE(6047)] = 54094, - [SMALL_STATE(6048)] = 54190, - [SMALL_STATE(6049)] = 54285, - [SMALL_STATE(6050)] = 54380, - [SMALL_STATE(6051)] = 54461, - [SMALL_STATE(6052)] = 54556, - [SMALL_STATE(6053)] = 54651, - [SMALL_STATE(6054)] = 54746, - [SMALL_STATE(6055)] = 54841, - [SMALL_STATE(6056)] = 54936, - [SMALL_STATE(6057)] = 55031, - [SMALL_STATE(6058)] = 55126, - [SMALL_STATE(6059)] = 55221, - [SMALL_STATE(6060)] = 55316, - [SMALL_STATE(6061)] = 55411, - [SMALL_STATE(6062)] = 55506, - [SMALL_STATE(6063)] = 55587, - [SMALL_STATE(6064)] = 55682, - [SMALL_STATE(6065)] = 55777, - [SMALL_STATE(6066)] = 55872, - [SMALL_STATE(6067)] = 55967, - [SMALL_STATE(6068)] = 56062, - [SMALL_STATE(6069)] = 56157, - [SMALL_STATE(6070)] = 56252, - [SMALL_STATE(6071)] = 56347, - [SMALL_STATE(6072)] = 56442, - [SMALL_STATE(6073)] = 56529, - [SMALL_STATE(6074)] = 56624, - [SMALL_STATE(6075)] = 56719, - [SMALL_STATE(6076)] = 56814, - [SMALL_STATE(6077)] = 56906, - [SMALL_STATE(6078)] = 56998, - [SMALL_STATE(6079)] = 57076, - [SMALL_STATE(6080)] = 57168, - [SMALL_STATE(6081)] = 57260, - [SMALL_STATE(6082)] = 57352, - [SMALL_STATE(6083)] = 57438, - [SMALL_STATE(6084)] = 57530, - [SMALL_STATE(6085)] = 57622, - [SMALL_STATE(6086)] = 57708, - [SMALL_STATE(6087)] = 57802, - [SMALL_STATE(6088)] = 57888, - [SMALL_STATE(6089)] = 57980, - [SMALL_STATE(6090)] = 58062, - [SMALL_STATE(6091)] = 58156, - [SMALL_STATE(6092)] = 58248, - [SMALL_STATE(6093)] = 58340, - [SMALL_STATE(6094)] = 58433, - [SMALL_STATE(6095)] = 58518, - [SMALL_STATE(6096)] = 58611, - [SMALL_STATE(6097)] = 58688, - [SMALL_STATE(6098)] = 58781, - [SMALL_STATE(6099)] = 58874, - [SMALL_STATE(6100)] = 58967, - [SMALL_STATE(6101)] = 59060, - [SMALL_STATE(6102)] = 59153, - [SMALL_STATE(6103)] = 59246, - [SMALL_STATE(6104)] = 59339, - [SMALL_STATE(6105)] = 59432, - [SMALL_STATE(6106)] = 59521, - [SMALL_STATE(6107)] = 59598, - [SMALL_STATE(6108)] = 59691, - [SMALL_STATE(6109)] = 59784, - [SMALL_STATE(6110)] = 59877, - [SMALL_STATE(6111)] = 59970, - [SMALL_STATE(6112)] = 60047, - [SMALL_STATE(6113)] = 60140, - [SMALL_STATE(6114)] = 60233, - [SMALL_STATE(6115)] = 60326, - [SMALL_STATE(6116)] = 60415, - [SMALL_STATE(6117)] = 60504, - [SMALL_STATE(6118)] = 60597, - [SMALL_STATE(6119)] = 60674, - [SMALL_STATE(6120)] = 60767, - [SMALL_STATE(6121)] = 60860, - [SMALL_STATE(6122)] = 60953, - [SMALL_STATE(6123)] = 61030, - [SMALL_STATE(6124)] = 61107, - [SMALL_STATE(6125)] = 61200, - [SMALL_STATE(6126)] = 61293, - [SMALL_STATE(6127)] = 61386, - [SMALL_STATE(6128)] = 61479, - [SMALL_STATE(6129)] = 61572, - [SMALL_STATE(6130)] = 61665, - [SMALL_STATE(6131)] = 61754, - [SMALL_STATE(6132)] = 61847, - [SMALL_STATE(6133)] = 61940, - [SMALL_STATE(6134)] = 62033, - [SMALL_STATE(6135)] = 62126, - [SMALL_STATE(6136)] = 62219, - [SMALL_STATE(6137)] = 62312, - [SMALL_STATE(6138)] = 62397, - [SMALL_STATE(6139)] = 62490, - [SMALL_STATE(6140)] = 62583, - [SMALL_STATE(6141)] = 62660, - [SMALL_STATE(6142)] = 62753, - [SMALL_STATE(6143)] = 62842, - [SMALL_STATE(6144)] = 62935, - [SMALL_STATE(6145)] = 63028, - [SMALL_STATE(6146)] = 63121, - [SMALL_STATE(6147)] = 63214, - [SMALL_STATE(6148)] = 63307, - [SMALL_STATE(6149)] = 63400, - [SMALL_STATE(6150)] = 63479, - [SMALL_STATE(6151)] = 63572, - [SMALL_STATE(6152)] = 63665, - [SMALL_STATE(6153)] = 63758, - [SMALL_STATE(6154)] = 63851, - [SMALL_STATE(6155)] = 63944, - [SMALL_STATE(6156)] = 64021, - [SMALL_STATE(6157)] = 64114, - [SMALL_STATE(6158)] = 64207, - [SMALL_STATE(6159)] = 64300, - [SMALL_STATE(6160)] = 64393, - [SMALL_STATE(6161)] = 64486, - [SMALL_STATE(6162)] = 64565, - [SMALL_STATE(6163)] = 64658, - [SMALL_STATE(6164)] = 64751, - [SMALL_STATE(6165)] = 64844, - [SMALL_STATE(6166)] = 64937, - [SMALL_STATE(6167)] = 65030, - [SMALL_STATE(6168)] = 65123, - [SMALL_STATE(6169)] = 65216, - [SMALL_STATE(6170)] = 65302, - [SMALL_STATE(6171)] = 65388, - [SMALL_STATE(6172)] = 65474, - [SMALL_STATE(6173)] = 65560, - [SMALL_STATE(6174)] = 65646, - [SMALL_STATE(6175)] = 65732, - [SMALL_STATE(6176)] = 65822, - [SMALL_STATE(6177)] = 65908, - [SMALL_STATE(6178)] = 65994, - [SMALL_STATE(6179)] = 66080, - [SMALL_STATE(6180)] = 66166, - [SMALL_STATE(6181)] = 66252, - [SMALL_STATE(6182)] = 66328, - [SMALL_STATE(6183)] = 66414, - [SMALL_STATE(6184)] = 66498, - [SMALL_STATE(6185)] = 66574, - [SMALL_STATE(6186)] = 66658, - [SMALL_STATE(6187)] = 66744, - [SMALL_STATE(6188)] = 66834, - [SMALL_STATE(6189)] = 66920, - [SMALL_STATE(6190)] = 67006, - [SMALL_STATE(6191)] = 67092, - [SMALL_STATE(6192)] = 67180, - [SMALL_STATE(6193)] = 67266, - [SMALL_STATE(6194)] = 67356, - [SMALL_STATE(6195)] = 67442, - [SMALL_STATE(6196)] = 67532, - [SMALL_STATE(6197)] = 67618, - [SMALL_STATE(6198)] = 67704, - [SMALL_STATE(6199)] = 67790, - [SMALL_STATE(6200)] = 67874, - [SMALL_STATE(6201)] = 67960, - [SMALL_STATE(6202)] = 68036, - [SMALL_STATE(6203)] = 68122, - [SMALL_STATE(6204)] = 68208, - [SMALL_STATE(6205)] = 68292, - [SMALL_STATE(6206)] = 68376, - [SMALL_STATE(6207)] = 68460, - [SMALL_STATE(6208)] = 68546, - [SMALL_STATE(6209)] = 68632, - [SMALL_STATE(6210)] = 68718, - [SMALL_STATE(6211)] = 68805, - [SMALL_STATE(6212)] = 68892, - [SMALL_STATE(6213)] = 68979, - [SMALL_STATE(6214)] = 69066, - [SMALL_STATE(6215)] = 69153, - [SMALL_STATE(6216)] = 69240, - [SMALL_STATE(6217)] = 69327, - [SMALL_STATE(6218)] = 69414, - [SMALL_STATE(6219)] = 69501, - [SMALL_STATE(6220)] = 69588, - [SMALL_STATE(6221)] = 69675, - [SMALL_STATE(6222)] = 69762, - [SMALL_STATE(6223)] = 69849, - [SMALL_STATE(6224)] = 69933, - [SMALL_STATE(6225)] = 70017, - [SMALL_STATE(6226)] = 70099, - [SMALL_STATE(6227)] = 70183, - [SMALL_STATE(6228)] = 70267, - [SMALL_STATE(6229)] = 70351, - [SMALL_STATE(6230)] = 70435, - [SMALL_STATE(6231)] = 70519, - [SMALL_STATE(6232)] = 70603, - [SMALL_STATE(6233)] = 70687, - [SMALL_STATE(6234)] = 70771, - [SMALL_STATE(6235)] = 70855, - [SMALL_STATE(6236)] = 70939, - [SMALL_STATE(6237)] = 71023, - [SMALL_STATE(6238)] = 71107, - [SMALL_STATE(6239)] = 71191, - [SMALL_STATE(6240)] = 71275, - [SMALL_STATE(6241)] = 71359, - [SMALL_STATE(6242)] = 71443, - [SMALL_STATE(6243)] = 71527, - [SMALL_STATE(6244)] = 71611, - [SMALL_STATE(6245)] = 71695, - [SMALL_STATE(6246)] = 71777, - [SMALL_STATE(6247)] = 71861, - [SMALL_STATE(6248)] = 71945, - [SMALL_STATE(6249)] = 72027, - [SMALL_STATE(6250)] = 72111, - [SMALL_STATE(6251)] = 72195, - [SMALL_STATE(6252)] = 72269, - [SMALL_STATE(6253)] = 72343, - [SMALL_STATE(6254)] = 72427, - [SMALL_STATE(6255)] = 72511, - [SMALL_STATE(6256)] = 72595, - [SMALL_STATE(6257)] = 72679, - [SMALL_STATE(6258)] = 72763, - [SMALL_STATE(6259)] = 72847, - [SMALL_STATE(6260)] = 72931, - [SMALL_STATE(6261)] = 73015, - [SMALL_STATE(6262)] = 73099, - [SMALL_STATE(6263)] = 73183, - [SMALL_STATE(6264)] = 73257, - [SMALL_STATE(6265)] = 73341, - [SMALL_STATE(6266)] = 73425, - [SMALL_STATE(6267)] = 73509, - [SMALL_STATE(6268)] = 73593, - [SMALL_STATE(6269)] = 73677, - [SMALL_STATE(6270)] = 73751, - [SMALL_STATE(6271)] = 73835, - [SMALL_STATE(6272)] = 73919, - [SMALL_STATE(6273)] = 74003, - [SMALL_STATE(6274)] = 74087, - [SMALL_STATE(6275)] = 74171, - [SMALL_STATE(6276)] = 74255, - [SMALL_STATE(6277)] = 74339, - [SMALL_STATE(6278)] = 74423, - [SMALL_STATE(6279)] = 74505, - [SMALL_STATE(6280)] = 74589, - [SMALL_STATE(6281)] = 74663, - [SMALL_STATE(6282)] = 74737, - [SMALL_STATE(6283)] = 74821, - [SMALL_STATE(6284)] = 74897, - [SMALL_STATE(6285)] = 74979, - [SMALL_STATE(6286)] = 75063, - [SMALL_STATE(6287)] = 75147, - [SMALL_STATE(6288)] = 75231, - [SMALL_STATE(6289)] = 75315, - [SMALL_STATE(6290)] = 75399, - [SMALL_STATE(6291)] = 75483, - [SMALL_STATE(6292)] = 75567, - [SMALL_STATE(6293)] = 75651, - [SMALL_STATE(6294)] = 75735, - [SMALL_STATE(6295)] = 75819, - [SMALL_STATE(6296)] = 75903, - [SMALL_STATE(6297)] = 75987, - [SMALL_STATE(6298)] = 76071, - [SMALL_STATE(6299)] = 76155, - [SMALL_STATE(6300)] = 76239, - [SMALL_STATE(6301)] = 76321, - [SMALL_STATE(6302)] = 76405, - [SMALL_STATE(6303)] = 76489, - [SMALL_STATE(6304)] = 76573, - [SMALL_STATE(6305)] = 76657, - [SMALL_STATE(6306)] = 76741, - [SMALL_STATE(6307)] = 76825, - [SMALL_STATE(6308)] = 76909, - [SMALL_STATE(6309)] = 76993, - [SMALL_STATE(6310)] = 77077, - [SMALL_STATE(6311)] = 77161, - [SMALL_STATE(6312)] = 77245, - [SMALL_STATE(6313)] = 77329, - [SMALL_STATE(6314)] = 77413, - [SMALL_STATE(6315)] = 77497, - [SMALL_STATE(6316)] = 77581, - [SMALL_STATE(6317)] = 77665, - [SMALL_STATE(6318)] = 77749, - [SMALL_STATE(6319)] = 77833, - [SMALL_STATE(6320)] = 77917, - [SMALL_STATE(6321)] = 78001, - [SMALL_STATE(6322)] = 78085, - [SMALL_STATE(6323)] = 78169, - [SMALL_STATE(6324)] = 78253, - [SMALL_STATE(6325)] = 78337, - [SMALL_STATE(6326)] = 78421, - [SMALL_STATE(6327)] = 78505, - [SMALL_STATE(6328)] = 78589, - [SMALL_STATE(6329)] = 78673, - [SMALL_STATE(6330)] = 78757, - [SMALL_STATE(6331)] = 78841, - [SMALL_STATE(6332)] = 78925, - [SMALL_STATE(6333)] = 79009, - [SMALL_STATE(6334)] = 79093, - [SMALL_STATE(6335)] = 79177, - [SMALL_STATE(6336)] = 79261, - [SMALL_STATE(6337)] = 79345, - [SMALL_STATE(6338)] = 79429, - [SMALL_STATE(6339)] = 79513, - [SMALL_STATE(6340)] = 79597, - [SMALL_STATE(6341)] = 79681, - [SMALL_STATE(6342)] = 79765, - [SMALL_STATE(6343)] = 79849, - [SMALL_STATE(6344)] = 79933, - [SMALL_STATE(6345)] = 80017, - [SMALL_STATE(6346)] = 80101, - [SMALL_STATE(6347)] = 80183, - [SMALL_STATE(6348)] = 80267, - [SMALL_STATE(6349)] = 80351, - [SMALL_STATE(6350)] = 80435, - [SMALL_STATE(6351)] = 80519, - [SMALL_STATE(6352)] = 80603, - [SMALL_STATE(6353)] = 80685, - [SMALL_STATE(6354)] = 80769, - [SMALL_STATE(6355)] = 80853, - [SMALL_STATE(6356)] = 80935, - [SMALL_STATE(6357)] = 81019, - [SMALL_STATE(6358)] = 81094, - [SMALL_STATE(6359)] = 81175, - [SMALL_STATE(6360)] = 81256, - [SMALL_STATE(6361)] = 81337, - [SMALL_STATE(6362)] = 81412, - [SMALL_STATE(6363)] = 81493, - [SMALL_STATE(6364)] = 81574, - [SMALL_STATE(6365)] = 81652, - [SMALL_STATE(6366)] = 81730, - [SMALL_STATE(6367)] = 81808, - [SMALL_STATE(6368)] = 81886, - [SMALL_STATE(6369)] = 81964, - [SMALL_STATE(6370)] = 82042, - [SMALL_STATE(6371)] = 82120, - [SMALL_STATE(6372)] = 82198, - [SMALL_STATE(6373)] = 82276, - [SMALL_STATE(6374)] = 82354, - [SMALL_STATE(6375)] = 82432, - [SMALL_STATE(6376)] = 82510, - [SMALL_STATE(6377)] = 82588, - [SMALL_STATE(6378)] = 82666, - [SMALL_STATE(6379)] = 82744, - [SMALL_STATE(6380)] = 82822, - [SMALL_STATE(6381)] = 82900, - [SMALL_STATE(6382)] = 82978, - [SMALL_STATE(6383)] = 83056, - [SMALL_STATE(6384)] = 83134, - [SMALL_STATE(6385)] = 83212, - [SMALL_STATE(6386)] = 83290, - [SMALL_STATE(6387)] = 83368, - [SMALL_STATE(6388)] = 83446, - [SMALL_STATE(6389)] = 83524, - [SMALL_STATE(6390)] = 83602, - [SMALL_STATE(6391)] = 83680, - [SMALL_STATE(6392)] = 83758, - [SMALL_STATE(6393)] = 83836, - [SMALL_STATE(6394)] = 83914, - [SMALL_STATE(6395)] = 83986, - [SMALL_STATE(6396)] = 84064, - [SMALL_STATE(6397)] = 84142, - [SMALL_STATE(6398)] = 84220, - [SMALL_STATE(6399)] = 84298, - [SMALL_STATE(6400)] = 84376, - [SMALL_STATE(6401)] = 84454, - [SMALL_STATE(6402)] = 84532, - [SMALL_STATE(6403)] = 84610, - [SMALL_STATE(6404)] = 84688, - [SMALL_STATE(6405)] = 84766, - [SMALL_STATE(6406)] = 84844, - [SMALL_STATE(6407)] = 84922, - [SMALL_STATE(6408)] = 85000, - [SMALL_STATE(6409)] = 85078, - [SMALL_STATE(6410)] = 85156, - [SMALL_STATE(6411)] = 85234, - [SMALL_STATE(6412)] = 85312, - [SMALL_STATE(6413)] = 85390, - [SMALL_STATE(6414)] = 85468, - [SMALL_STATE(6415)] = 85546, - [SMALL_STATE(6416)] = 85624, - [SMALL_STATE(6417)] = 85702, - [SMALL_STATE(6418)] = 85780, - [SMALL_STATE(6419)] = 85858, - [SMALL_STATE(6420)] = 85936, - [SMALL_STATE(6421)] = 86014, - [SMALL_STATE(6422)] = 86092, - [SMALL_STATE(6423)] = 86170, - [SMALL_STATE(6424)] = 86248, - [SMALL_STATE(6425)] = 86326, - [SMALL_STATE(6426)] = 86404, - [SMALL_STATE(6427)] = 86482, - [SMALL_STATE(6428)] = 86560, - [SMALL_STATE(6429)] = 86638, - [SMALL_STATE(6430)] = 86716, - [SMALL_STATE(6431)] = 86794, - [SMALL_STATE(6432)] = 86872, - [SMALL_STATE(6433)] = 86950, - [SMALL_STATE(6434)] = 87028, - [SMALL_STATE(6435)] = 87098, - [SMALL_STATE(6436)] = 87170, - [SMALL_STATE(6437)] = 87242, - [SMALL_STATE(6438)] = 87314, - [SMALL_STATE(6439)] = 87386, - [SMALL_STATE(6440)] = 87458, - [SMALL_STATE(6441)] = 87530, - [SMALL_STATE(6442)] = 87599, - [SMALL_STATE(6443)] = 87668, - [SMALL_STATE(6444)] = 87737, - [SMALL_STATE(6445)] = 87806, - [SMALL_STATE(6446)] = 87875, - [SMALL_STATE(6447)] = 87944, - [SMALL_STATE(6448)] = 88032, - [SMALL_STATE(6449)] = 88120, - [SMALL_STATE(6450)] = 88208, - [SMALL_STATE(6451)] = 88296, - [SMALL_STATE(6452)] = 88384, - [SMALL_STATE(6453)] = 88472, - [SMALL_STATE(6454)] = 88560, - [SMALL_STATE(6455)] = 88648, - [SMALL_STATE(6456)] = 88736, - [SMALL_STATE(6457)] = 88824, - [SMALL_STATE(6458)] = 88912, - [SMALL_STATE(6459)] = 89000, - [SMALL_STATE(6460)] = 89088, - [SMALL_STATE(6461)] = 89176, - [SMALL_STATE(6462)] = 89264, - [SMALL_STATE(6463)] = 89352, - [SMALL_STATE(6464)] = 89440, - [SMALL_STATE(6465)] = 89528, - [SMALL_STATE(6466)] = 89616, - [SMALL_STATE(6467)] = 89704, - [SMALL_STATE(6468)] = 89792, - [SMALL_STATE(6469)] = 89880, - [SMALL_STATE(6470)] = 89968, - [SMALL_STATE(6471)] = 90056, - [SMALL_STATE(6472)] = 90144, - [SMALL_STATE(6473)] = 90232, - [SMALL_STATE(6474)] = 90320, - [SMALL_STATE(6475)] = 90408, - [SMALL_STATE(6476)] = 90496, - [SMALL_STATE(6477)] = 90584, - [SMALL_STATE(6478)] = 90672, - [SMALL_STATE(6479)] = 90760, - [SMALL_STATE(6480)] = 90848, - [SMALL_STATE(6481)] = 90936, - [SMALL_STATE(6482)] = 91024, - [SMALL_STATE(6483)] = 91112, - [SMALL_STATE(6484)] = 91200, - [SMALL_STATE(6485)] = 91288, - [SMALL_STATE(6486)] = 91376, - [SMALL_STATE(6487)] = 91464, - [SMALL_STATE(6488)] = 91549, - [SMALL_STATE(6489)] = 91634, - [SMALL_STATE(6490)] = 91719, - [SMALL_STATE(6491)] = 91804, - [SMALL_STATE(6492)] = 91889, - [SMALL_STATE(6493)] = 91974, - [SMALL_STATE(6494)] = 92059, - [SMALL_STATE(6495)] = 92144, - [SMALL_STATE(6496)] = 92229, - [SMALL_STATE(6497)] = 92314, - [SMALL_STATE(6498)] = 92399, - [SMALL_STATE(6499)] = 92484, - [SMALL_STATE(6500)] = 92569, - [SMALL_STATE(6501)] = 92654, - [SMALL_STATE(6502)] = 92739, - [SMALL_STATE(6503)] = 92824, - [SMALL_STATE(6504)] = 92909, - [SMALL_STATE(6505)] = 92994, - [SMALL_STATE(6506)] = 93079, - [SMALL_STATE(6507)] = 93164, - [SMALL_STATE(6508)] = 93249, - [SMALL_STATE(6509)] = 93334, - [SMALL_STATE(6510)] = 93419, - [SMALL_STATE(6511)] = 93504, - [SMALL_STATE(6512)] = 93589, - [SMALL_STATE(6513)] = 93674, - [SMALL_STATE(6514)] = 93759, - [SMALL_STATE(6515)] = 93844, - [SMALL_STATE(6516)] = 93929, - [SMALL_STATE(6517)] = 94014, - [SMALL_STATE(6518)] = 94099, - [SMALL_STATE(6519)] = 94184, - [SMALL_STATE(6520)] = 94269, - [SMALL_STATE(6521)] = 94354, - [SMALL_STATE(6522)] = 94439, - [SMALL_STATE(6523)] = 94524, - [SMALL_STATE(6524)] = 94609, - [SMALL_STATE(6525)] = 94694, - [SMALL_STATE(6526)] = 94779, - [SMALL_STATE(6527)] = 94864, - [SMALL_STATE(6528)] = 94949, - [SMALL_STATE(6529)] = 95034, - [SMALL_STATE(6530)] = 95119, - [SMALL_STATE(6531)] = 95204, - [SMALL_STATE(6532)] = 95289, - [SMALL_STATE(6533)] = 95374, - [SMALL_STATE(6534)] = 95459, - [SMALL_STATE(6535)] = 95544, - [SMALL_STATE(6536)] = 95629, - [SMALL_STATE(6537)] = 95714, - [SMALL_STATE(6538)] = 95799, - [SMALL_STATE(6539)] = 95884, - [SMALL_STATE(6540)] = 95969, - [SMALL_STATE(6541)] = 96054, - [SMALL_STATE(6542)] = 96139, - [SMALL_STATE(6543)] = 96224, - [SMALL_STATE(6544)] = 96309, - [SMALL_STATE(6545)] = 96394, - [SMALL_STATE(6546)] = 96479, - [SMALL_STATE(6547)] = 96564, - [SMALL_STATE(6548)] = 96649, - [SMALL_STATE(6549)] = 96734, - [SMALL_STATE(6550)] = 96819, - [SMALL_STATE(6551)] = 96904, - [SMALL_STATE(6552)] = 96989, - [SMALL_STATE(6553)] = 97074, - [SMALL_STATE(6554)] = 97162, - [SMALL_STATE(6555)] = 97250, - [SMALL_STATE(6556)] = 97338, - [SMALL_STATE(6557)] = 97426, - [SMALL_STATE(6558)] = 97498, - [SMALL_STATE(6559)] = 97572, - [SMALL_STATE(6560)] = 97636, - [SMALL_STATE(6561)] = 97710, - [SMALL_STATE(6562)] = 97784, - [SMALL_STATE(6563)] = 97858, - [SMALL_STATE(6564)] = 97932, - [SMALL_STATE(6565)] = 98006, - [SMALL_STATE(6566)] = 98080, - [SMALL_STATE(6567)] = 98154, - [SMALL_STATE(6568)] = 98228, - [SMALL_STATE(6569)] = 98302, - [SMALL_STATE(6570)] = 98376, - [SMALL_STATE(6571)] = 98450, - [SMALL_STATE(6572)] = 98524, - [SMALL_STATE(6573)] = 98598, - [SMALL_STATE(6574)] = 98669, - [SMALL_STATE(6575)] = 98740, - [SMALL_STATE(6576)] = 98811, - [SMALL_STATE(6577)] = 98870, - [SMALL_STATE(6578)] = 98941, - [SMALL_STATE(6579)] = 99016, - [SMALL_STATE(6580)] = 99091, - [SMALL_STATE(6581)] = 99162, - [SMALL_STATE(6582)] = 99237, - [SMALL_STATE(6583)] = 99312, - [SMALL_STATE(6584)] = 99383, - [SMALL_STATE(6585)] = 99454, - [SMALL_STATE(6586)] = 99525, - [SMALL_STATE(6587)] = 99582, - [SMALL_STATE(6588)] = 99641, - [SMALL_STATE(6589)] = 99711, - [SMALL_STATE(6590)] = 99773, - [SMALL_STATE(6591)] = 99842, - [SMALL_STATE(6592)] = 99911, - [SMALL_STATE(6593)] = 99980, - [SMALL_STATE(6594)] = 100047, - [SMALL_STATE(6595)] = 100116, - [SMALL_STATE(6596)] = 100185, - [SMALL_STATE(6597)] = 100254, - [SMALL_STATE(6598)] = 100323, - [SMALL_STATE(6599)] = 100392, - [SMALL_STATE(6600)] = 100461, - [SMALL_STATE(6601)] = 100530, - [SMALL_STATE(6602)] = 100589, - [SMALL_STATE(6603)] = 100658, - [SMALL_STATE(6604)] = 100727, - [SMALL_STATE(6605)] = 100796, - [SMALL_STATE(6606)] = 100851, - [SMALL_STATE(6607)] = 100920, - [SMALL_STATE(6608)] = 100989, - [SMALL_STATE(6609)] = 101058, - [SMALL_STATE(6610)] = 101127, - [SMALL_STATE(6611)] = 101196, - [SMALL_STATE(6612)] = 101253, - [SMALL_STATE(6613)] = 101322, - [SMALL_STATE(6614)] = 101391, - [SMALL_STATE(6615)] = 101460, - [SMALL_STATE(6616)] = 101529, - [SMALL_STATE(6617)] = 101586, - [SMALL_STATE(6618)] = 101655, - [SMALL_STATE(6619)] = 101724, - [SMALL_STATE(6620)] = 101793, - [SMALL_STATE(6621)] = 101854, - [SMALL_STATE(6622)] = 101923, - [SMALL_STATE(6623)] = 101992, - [SMALL_STATE(6624)] = 102061, - [SMALL_STATE(6625)] = 102130, - [SMALL_STATE(6626)] = 102199, - [SMALL_STATE(6627)] = 102268, - [SMALL_STATE(6628)] = 102337, - [SMALL_STATE(6629)] = 102406, - [SMALL_STATE(6630)] = 102463, - [SMALL_STATE(6631)] = 102532, - [SMALL_STATE(6632)] = 102593, - [SMALL_STATE(6633)] = 102662, - [SMALL_STATE(6634)] = 102731, - [SMALL_STATE(6635)] = 102800, - [SMALL_STATE(6636)] = 102869, - [SMALL_STATE(6637)] = 102930, - [SMALL_STATE(6638)] = 102999, - [SMALL_STATE(6639)] = 103068, - [SMALL_STATE(6640)] = 103120, - [SMALL_STATE(6641)] = 103176, - [SMALL_STATE(6642)] = 103242, - [SMALL_STATE(6643)] = 103308, - [SMALL_STATE(6644)] = 103360, - [SMALL_STATE(6645)] = 103426, - [SMALL_STATE(6646)] = 103492, - [SMALL_STATE(6647)] = 103552, - [SMALL_STATE(6648)] = 103618, - [SMALL_STATE(6649)] = 103684, - [SMALL_STATE(6650)] = 103750, - [SMALL_STATE(6651)] = 103812, - [SMALL_STATE(6652)] = 103873, - [SMALL_STATE(6653)] = 103926, - [SMALL_STATE(6654)] = 103987, - [SMALL_STATE(6655)] = 104040, - [SMALL_STATE(6656)] = 104101, - [SMALL_STATE(6657)] = 104162, - [SMALL_STATE(6658)] = 104223, - [SMALL_STATE(6659)] = 104284, - [SMALL_STATE(6660)] = 104345, - [SMALL_STATE(6661)] = 104406, - [SMALL_STATE(6662)] = 104467, - [SMALL_STATE(6663)] = 104528, - [SMALL_STATE(6664)] = 104589, - [SMALL_STATE(6665)] = 104644, - [SMALL_STATE(6666)] = 104705, - [SMALL_STATE(6667)] = 104766, - [SMALL_STATE(6668)] = 104827, - [SMALL_STATE(6669)] = 104888, - [SMALL_STATE(6670)] = 104949, - [SMALL_STATE(6671)] = 105010, - [SMALL_STATE(6672)] = 105069, - [SMALL_STATE(6673)] = 105130, - [SMALL_STATE(6674)] = 105191, - [SMALL_STATE(6675)] = 105242, - [SMALL_STATE(6676)] = 105303, - [SMALL_STATE(6677)] = 105354, - [SMALL_STATE(6678)] = 105415, - [SMALL_STATE(6679)] = 105476, - [SMALL_STATE(6680)] = 105531, - [SMALL_STATE(6681)] = 105592, - [SMALL_STATE(6682)] = 105653, - [SMALL_STATE(6683)] = 105714, - [SMALL_STATE(6684)] = 105775, - [SMALL_STATE(6685)] = 105836, - [SMALL_STATE(6686)] = 105897, - [SMALL_STATE(6687)] = 105948, - [SMALL_STATE(6688)] = 105999, - [SMALL_STATE(6689)] = 106060, - [SMALL_STATE(6690)] = 106121, - [SMALL_STATE(6691)] = 106182, - [SMALL_STATE(6692)] = 106243, - [SMALL_STATE(6693)] = 106294, - [SMALL_STATE(6694)] = 106353, - [SMALL_STATE(6695)] = 106414, - [SMALL_STATE(6696)] = 106475, - [SMALL_STATE(6697)] = 106526, - [SMALL_STATE(6698)] = 106587, - [SMALL_STATE(6699)] = 106642, - [SMALL_STATE(6700)] = 106697, - [SMALL_STATE(6701)] = 106758, - [SMALL_STATE(6702)] = 106809, - [SMALL_STATE(6703)] = 106870, - [SMALL_STATE(6704)] = 106921, - [SMALL_STATE(6705)] = 106982, - [SMALL_STATE(6706)] = 107033, - [SMALL_STATE(6707)] = 107093, - [SMALL_STATE(6708)] = 107149, - [SMALL_STATE(6709)] = 107207, - [SMALL_STATE(6710)] = 107267, - [SMALL_STATE(6711)] = 107327, - [SMALL_STATE(6712)] = 107387, - [SMALL_STATE(6713)] = 107447, - [SMALL_STATE(6714)] = 107507, - [SMALL_STATE(6715)] = 107557, - [SMALL_STATE(6716)] = 107617, - [SMALL_STATE(6717)] = 107677, - [SMALL_STATE(6718)] = 107737, - [SMALL_STATE(6719)] = 107797, - [SMALL_STATE(6720)] = 107857, - [SMALL_STATE(6721)] = 107909, - [SMALL_STATE(6722)] = 107969, - [SMALL_STATE(6723)] = 108019, - [SMALL_STATE(6724)] = 108079, - [SMALL_STATE(6725)] = 108135, - [SMALL_STATE(6726)] = 108195, - [SMALL_STATE(6727)] = 108255, - [SMALL_STATE(6728)] = 108315, - [SMALL_STATE(6729)] = 108375, - [SMALL_STATE(6730)] = 108433, - [SMALL_STATE(6731)] = 108491, - [SMALL_STATE(6732)] = 108541, - [SMALL_STATE(6733)] = 108601, - [SMALL_STATE(6734)] = 108659, - [SMALL_STATE(6735)] = 108709, - [SMALL_STATE(6736)] = 108763, - [SMALL_STATE(6737)] = 108813, - [SMALL_STATE(6738)] = 108873, - [SMALL_STATE(6739)] = 108933, - [SMALL_STATE(6740)] = 108993, - [SMALL_STATE(6741)] = 109051, - [SMALL_STATE(6742)] = 109107, - [SMALL_STATE(6743)] = 109159, - [SMALL_STATE(6744)] = 109219, - [SMALL_STATE(6745)] = 109269, - [SMALL_STATE(6746)] = 109329, - [SMALL_STATE(6747)] = 109389, - [SMALL_STATE(6748)] = 109449, - [SMALL_STATE(6749)] = 109509, - [SMALL_STATE(6750)] = 109569, - [SMALL_STATE(6751)] = 109629, - [SMALL_STATE(6752)] = 109689, - [SMALL_STATE(6753)] = 109749, - [SMALL_STATE(6754)] = 109807, - [SMALL_STATE(6755)] = 109867, - [SMALL_STATE(6756)] = 109927, - [SMALL_STATE(6757)] = 109987, - [SMALL_STATE(6758)] = 110047, - [SMALL_STATE(6759)] = 110107, - [SMALL_STATE(6760)] = 110167, - [SMALL_STATE(6761)] = 110227, - [SMALL_STATE(6762)] = 110285, - [SMALL_STATE(6763)] = 110337, - [SMALL_STATE(6764)] = 110397, - [SMALL_STATE(6765)] = 110457, - [SMALL_STATE(6766)] = 110517, - [SMALL_STATE(6767)] = 110569, - [SMALL_STATE(6768)] = 110619, - [SMALL_STATE(6769)] = 110679, - [SMALL_STATE(6770)] = 110737, - [SMALL_STATE(6771)] = 110791, - [SMALL_STATE(6772)] = 110841, - [SMALL_STATE(6773)] = 110895, - [SMALL_STATE(6774)] = 110953, - [SMALL_STATE(6775)] = 111007, - [SMALL_STATE(6776)] = 111067, - [SMALL_STATE(6777)] = 111127, - [SMALL_STATE(6778)] = 111187, - [SMALL_STATE(6779)] = 111247, - [SMALL_STATE(6780)] = 111301, - [SMALL_STATE(6781)] = 111361, - [SMALL_STATE(6782)] = 111416, - [SMALL_STATE(6783)] = 111471, - [SMALL_STATE(6784)] = 111526, - [SMALL_STATE(6785)] = 111581, - [SMALL_STATE(6786)] = 111636, - [SMALL_STATE(6787)] = 111691, - [SMALL_STATE(6788)] = 111746, - [SMALL_STATE(6789)] = 111803, - [SMALL_STATE(6790)] = 111854, - [SMALL_STATE(6791)] = 111909, - [SMALL_STATE(6792)] = 111964, - [SMALL_STATE(6793)] = 112019, - [SMALL_STATE(6794)] = 112070, - [SMALL_STATE(6795)] = 112127, - [SMALL_STATE(6796)] = 112182, - [SMALL_STATE(6797)] = 112239, - [SMALL_STATE(6798)] = 112294, - [SMALL_STATE(6799)] = 112349, - [SMALL_STATE(6800)] = 112404, - [SMALL_STATE(6801)] = 112459, - [SMALL_STATE(6802)] = 112514, - [SMALL_STATE(6803)] = 112569, - [SMALL_STATE(6804)] = 112626, - [SMALL_STATE(6805)] = 112681, - [SMALL_STATE(6806)] = 112734, - [SMALL_STATE(6807)] = 112789, - [SMALL_STATE(6808)] = 112846, - [SMALL_STATE(6809)] = 112901, - [SMALL_STATE(6810)] = 112956, - [SMALL_STATE(6811)] = 113009, - [SMALL_STATE(6812)] = 113064, - [SMALL_STATE(6813)] = 113121, - [SMALL_STATE(6814)] = 113170, - [SMALL_STATE(6815)] = 113225, - [SMALL_STATE(6816)] = 113276, - [SMALL_STATE(6817)] = 113331, - [SMALL_STATE(6818)] = 113380, - [SMALL_STATE(6819)] = 113435, - [SMALL_STATE(6820)] = 113488, - [SMALL_STATE(6821)] = 113539, - [SMALL_STATE(6822)] = 113588, - [SMALL_STATE(6823)] = 113637, - [SMALL_STATE(6824)] = 113692, - [SMALL_STATE(6825)] = 113741, - [SMALL_STATE(6826)] = 113798, - [SMALL_STATE(6827)] = 113853, - [SMALL_STATE(6828)] = 113902, - [SMALL_STATE(6829)] = 113955, - [SMALL_STATE(6830)] = 114010, - [SMALL_STATE(6831)] = 114065, - [SMALL_STATE(6832)] = 114122, - [SMALL_STATE(6833)] = 114177, - [SMALL_STATE(6834)] = 114234, - [SMALL_STATE(6835)] = 114291, - [SMALL_STATE(6836)] = 114346, - [SMALL_STATE(6837)] = 114401, - [SMALL_STATE(6838)] = 114458, - [SMALL_STATE(6839)] = 114513, - [SMALL_STATE(6840)] = 114568, - [SMALL_STATE(6841)] = 114625, - [SMALL_STATE(6842)] = 114680, - [SMALL_STATE(6843)] = 114735, - [SMALL_STATE(6844)] = 114790, - [SMALL_STATE(6845)] = 114847, - [SMALL_STATE(6846)] = 114902, - [SMALL_STATE(6847)] = 114957, - [SMALL_STATE(6848)] = 115006, - [SMALL_STATE(6849)] = 115061, - [SMALL_STATE(6850)] = 115116, - [SMALL_STATE(6851)] = 115171, - [SMALL_STATE(6852)] = 115226, - [SMALL_STATE(6853)] = 115281, - [SMALL_STATE(6854)] = 115334, - [SMALL_STATE(6855)] = 115391, - [SMALL_STATE(6856)] = 115444, - [SMALL_STATE(6857)] = 115499, - [SMALL_STATE(6858)] = 115552, - [SMALL_STATE(6859)] = 115603, - [SMALL_STATE(6860)] = 115654, - [SMALL_STATE(6861)] = 115705, - [SMALL_STATE(6862)] = 115762, - [SMALL_STATE(6863)] = 115817, - [SMALL_STATE(6864)] = 115870, - [SMALL_STATE(6865)] = 115925, - [SMALL_STATE(6866)] = 115982, - [SMALL_STATE(6867)] = 116039, - [SMALL_STATE(6868)] = 116088, - [SMALL_STATE(6869)] = 116145, - [SMALL_STATE(6870)] = 116200, - [SMALL_STATE(6871)] = 116257, - [SMALL_STATE(6872)] = 116312, - [SMALL_STATE(6873)] = 116367, - [SMALL_STATE(6874)] = 116424, - [SMALL_STATE(6875)] = 116479, - [SMALL_STATE(6876)] = 116536, - [SMALL_STATE(6877)] = 116591, - [SMALL_STATE(6878)] = 116646, - [SMALL_STATE(6879)] = 116701, - [SMALL_STATE(6880)] = 116756, - [SMALL_STATE(6881)] = 116811, - [SMALL_STATE(6882)] = 116866, - [SMALL_STATE(6883)] = 116921, - [SMALL_STATE(6884)] = 116972, - [SMALL_STATE(6885)] = 117027, - [SMALL_STATE(6886)] = 117082, - [SMALL_STATE(6887)] = 117133, - [SMALL_STATE(6888)] = 117190, - [SMALL_STATE(6889)] = 117247, - [SMALL_STATE(6890)] = 117304, - [SMALL_STATE(6891)] = 117361, - [SMALL_STATE(6892)] = 117418, - [SMALL_STATE(6893)] = 117475, - [SMALL_STATE(6894)] = 117532, - [SMALL_STATE(6895)] = 117581, - [SMALL_STATE(6896)] = 117630, - [SMALL_STATE(6897)] = 117685, - [SMALL_STATE(6898)] = 117742, - [SMALL_STATE(6899)] = 117797, - [SMALL_STATE(6900)] = 117852, - [SMALL_STATE(6901)] = 117907, - [SMALL_STATE(6902)] = 117962, - [SMALL_STATE(6903)] = 118017, - [SMALL_STATE(6904)] = 118070, - [SMALL_STATE(6905)] = 118125, - [SMALL_STATE(6906)] = 118174, - [SMALL_STATE(6907)] = 118231, - [SMALL_STATE(6908)] = 118280, - [SMALL_STATE(6909)] = 118337, - [SMALL_STATE(6910)] = 118394, - [SMALL_STATE(6911)] = 118445, - [SMALL_STATE(6912)] = 118500, - [SMALL_STATE(6913)] = 118555, - [SMALL_STATE(6914)] = 118610, - [SMALL_STATE(6915)] = 118667, - [SMALL_STATE(6916)] = 118722, - [SMALL_STATE(6917)] = 118779, - [SMALL_STATE(6918)] = 118836, - [SMALL_STATE(6919)] = 118891, - [SMALL_STATE(6920)] = 118940, - [SMALL_STATE(6921)] = 118997, - [SMALL_STATE(6922)] = 119052, - [SMALL_STATE(6923)] = 119105, - [SMALL_STATE(6924)] = 119156, - [SMALL_STATE(6925)] = 119213, - [SMALL_STATE(6926)] = 119270, - [SMALL_STATE(6927)] = 119325, - [SMALL_STATE(6928)] = 119379, - [SMALL_STATE(6929)] = 119429, - [SMALL_STATE(6930)] = 119481, - [SMALL_STATE(6931)] = 119535, - [SMALL_STATE(6932)] = 119589, - [SMALL_STATE(6933)] = 119643, - [SMALL_STATE(6934)] = 119695, - [SMALL_STATE(6935)] = 119747, - [SMALL_STATE(6936)] = 119797, - [SMALL_STATE(6937)] = 119851, - [SMALL_STATE(6938)] = 119901, - [SMALL_STATE(6939)] = 119955, - [SMALL_STATE(6940)] = 120009, - [SMALL_STATE(6941)] = 120063, - [SMALL_STATE(6942)] = 120117, - [SMALL_STATE(6943)] = 120167, - [SMALL_STATE(6944)] = 120221, - [SMALL_STATE(6945)] = 120275, - [SMALL_STATE(6946)] = 120325, - [SMALL_STATE(6947)] = 120379, - [SMALL_STATE(6948)] = 120433, - [SMALL_STATE(6949)] = 120487, - [SMALL_STATE(6950)] = 120541, - [SMALL_STATE(6951)] = 120595, - [SMALL_STATE(6952)] = 120645, - [SMALL_STATE(6953)] = 120699, - [SMALL_STATE(6954)] = 120753, - [SMALL_STATE(6955)] = 120803, - [SMALL_STATE(6956)] = 120851, - [SMALL_STATE(6957)] = 120905, - [SMALL_STATE(6958)] = 120959, - [SMALL_STATE(6959)] = 121007, - [SMALL_STATE(6960)] = 121061, - [SMALL_STATE(6961)] = 121115, - [SMALL_STATE(6962)] = 121169, - [SMALL_STATE(6963)] = 121223, - [SMALL_STATE(6964)] = 121271, - [SMALL_STATE(6965)] = 121325, - [SMALL_STATE(6966)] = 121379, - [SMALL_STATE(6967)] = 121433, - [SMALL_STATE(6968)] = 121487, - [SMALL_STATE(6969)] = 121535, - [SMALL_STATE(6970)] = 121583, - [SMALL_STATE(6971)] = 121637, - [SMALL_STATE(6972)] = 121685, - [SMALL_STATE(6973)] = 121733, - [SMALL_STATE(6974)] = 121787, - [SMALL_STATE(6975)] = 121835, - [SMALL_STATE(6976)] = 121885, - [SMALL_STATE(6977)] = 121937, - [SMALL_STATE(6978)] = 121991, - [SMALL_STATE(6979)] = 122045, - [SMALL_STATE(6980)] = 122097, - [SMALL_STATE(6981)] = 122151, - [SMALL_STATE(6982)] = 122201, - [SMALL_STATE(6983)] = 122249, - [SMALL_STATE(6984)] = 122297, - [SMALL_STATE(6985)] = 122351, - [SMALL_STATE(6986)] = 122399, - [SMALL_STATE(6987)] = 122447, - [SMALL_STATE(6988)] = 122499, - [SMALL_STATE(6989)] = 122553, - [SMALL_STATE(6990)] = 122607, - [SMALL_STATE(6991)] = 122661, - [SMALL_STATE(6992)] = 122715, - [SMALL_STATE(6993)] = 122769, - [SMALL_STATE(6994)] = 122823, - [SMALL_STATE(6995)] = 122877, - [SMALL_STATE(6996)] = 122931, - [SMALL_STATE(6997)] = 122985, - [SMALL_STATE(6998)] = 123039, - [SMALL_STATE(6999)] = 123087, - [SMALL_STATE(7000)] = 123137, - [SMALL_STATE(7001)] = 123191, - [SMALL_STATE(7002)] = 123239, - [SMALL_STATE(7003)] = 123293, - [SMALL_STATE(7004)] = 123341, - [SMALL_STATE(7005)] = 123395, - [SMALL_STATE(7006)] = 123449, - [SMALL_STATE(7007)] = 123497, - [SMALL_STATE(7008)] = 123547, - [SMALL_STATE(7009)] = 123597, - [SMALL_STATE(7010)] = 123651, - [SMALL_STATE(7011)] = 123699, - [SMALL_STATE(7012)] = 123753, - [SMALL_STATE(7013)] = 123807, - [SMALL_STATE(7014)] = 123861, - [SMALL_STATE(7015)] = 123909, - [SMALL_STATE(7016)] = 123961, - [SMALL_STATE(7017)] = 124009, - [SMALL_STATE(7018)] = 124063, - [SMALL_STATE(7019)] = 124111, - [SMALL_STATE(7020)] = 124165, - [SMALL_STATE(7021)] = 124217, - [SMALL_STATE(7022)] = 124271, - [SMALL_STATE(7023)] = 124325, - [SMALL_STATE(7024)] = 124379, - [SMALL_STATE(7025)] = 124429, - [SMALL_STATE(7026)] = 124483, - [SMALL_STATE(7027)] = 124537, - [SMALL_STATE(7028)] = 124591, - [SMALL_STATE(7029)] = 124639, - [SMALL_STATE(7030)] = 124687, - [SMALL_STATE(7031)] = 124737, - [SMALL_STATE(7032)] = 124789, - [SMALL_STATE(7033)] = 124843, - [SMALL_STATE(7034)] = 124897, - [SMALL_STATE(7035)] = 124951, - [SMALL_STATE(7036)] = 125005, - [SMALL_STATE(7037)] = 125059, - [SMALL_STATE(7038)] = 125111, - [SMALL_STATE(7039)] = 125165, - [SMALL_STATE(7040)] = 125219, - [SMALL_STATE(7041)] = 125273, - [SMALL_STATE(7042)] = 125327, - [SMALL_STATE(7043)] = 125381, - [SMALL_STATE(7044)] = 125433, - [SMALL_STATE(7045)] = 125487, - [SMALL_STATE(7046)] = 125539, - [SMALL_STATE(7047)] = 125587, - [SMALL_STATE(7048)] = 125639, - [SMALL_STATE(7049)] = 125693, - [SMALL_STATE(7050)] = 125747, - [SMALL_STATE(7051)] = 125799, - [SMALL_STATE(7052)] = 125853, - [SMALL_STATE(7053)] = 125904, - [SMALL_STATE(7054)] = 125955, - [SMALL_STATE(7055)] = 126006, - [SMALL_STATE(7056)] = 126057, - [SMALL_STATE(7057)] = 126104, - [SMALL_STATE(7058)] = 126155, - [SMALL_STATE(7059)] = 126206, - [SMALL_STATE(7060)] = 126257, - [SMALL_STATE(7061)] = 126308, - [SMALL_STATE(7062)] = 126359, - [SMALL_STATE(7063)] = 126410, - [SMALL_STATE(7064)] = 126461, - [SMALL_STATE(7065)] = 126512, - [SMALL_STATE(7066)] = 126563, - [SMALL_STATE(7067)] = 126614, - [SMALL_STATE(7068)] = 126665, - [SMALL_STATE(7069)] = 126716, - [SMALL_STATE(7070)] = 126767, - [SMALL_STATE(7071)] = 126818, - [SMALL_STATE(7072)] = 126869, - [SMALL_STATE(7073)] = 126920, - [SMALL_STATE(7074)] = 126969, - [SMALL_STATE(7075)] = 127020, - [SMALL_STATE(7076)] = 127071, - [SMALL_STATE(7077)] = 127118, - [SMALL_STATE(7078)] = 127169, - [SMALL_STATE(7079)] = 127216, - [SMALL_STATE(7080)] = 127267, - [SMALL_STATE(7081)] = 127316, - [SMALL_STATE(7082)] = 127363, - [SMALL_STATE(7083)] = 127412, - [SMALL_STATE(7084)] = 127463, - [SMALL_STATE(7085)] = 127512, - [SMALL_STATE(7086)] = 127561, - [SMALL_STATE(7087)] = 127612, - [SMALL_STATE(7088)] = 127663, - [SMALL_STATE(7089)] = 127712, - [SMALL_STATE(7090)] = 127763, - [SMALL_STATE(7091)] = 127814, - [SMALL_STATE(7092)] = 127865, - [SMALL_STATE(7093)] = 127916, - [SMALL_STATE(7094)] = 127967, - [SMALL_STATE(7095)] = 128018, - [SMALL_STATE(7096)] = 128069, - [SMALL_STATE(7097)] = 128120, - [SMALL_STATE(7098)] = 128171, - [SMALL_STATE(7099)] = 128222, - [SMALL_STATE(7100)] = 128273, - [SMALL_STATE(7101)] = 128324, - [SMALL_STATE(7102)] = 128375, - [SMALL_STATE(7103)] = 128426, - [SMALL_STATE(7104)] = 128477, - [SMALL_STATE(7105)] = 128528, - [SMALL_STATE(7106)] = 128575, - [SMALL_STATE(7107)] = 128624, - [SMALL_STATE(7108)] = 128675, - [SMALL_STATE(7109)] = 128726, - [SMALL_STATE(7110)] = 128777, - [SMALL_STATE(7111)] = 128828, - [SMALL_STATE(7112)] = 128879, - [SMALL_STATE(7113)] = 128930, - [SMALL_STATE(7114)] = 128981, - [SMALL_STATE(7115)] = 129032, - [SMALL_STATE(7116)] = 129083, - [SMALL_STATE(7117)] = 129134, - [SMALL_STATE(7118)] = 129181, - [SMALL_STATE(7119)] = 129232, - [SMALL_STATE(7120)] = 129283, - [SMALL_STATE(7121)] = 129334, - [SMALL_STATE(7122)] = 129385, - [SMALL_STATE(7123)] = 129436, - [SMALL_STATE(7124)] = 129487, - [SMALL_STATE(7125)] = 129538, - [SMALL_STATE(7126)] = 129589, - [SMALL_STATE(7127)] = 129638, - [SMALL_STATE(7128)] = 129689, - [SMALL_STATE(7129)] = 129740, - [SMALL_STATE(7130)] = 129791, - [SMALL_STATE(7131)] = 129842, - [SMALL_STATE(7132)] = 129893, - [SMALL_STATE(7133)] = 129944, - [SMALL_STATE(7134)] = 129995, - [SMALL_STATE(7135)] = 130046, - [SMALL_STATE(7136)] = 130097, - [SMALL_STATE(7137)] = 130148, - [SMALL_STATE(7138)] = 130199, - [SMALL_STATE(7139)] = 130250, - [SMALL_STATE(7140)] = 130301, - [SMALL_STATE(7141)] = 130350, - [SMALL_STATE(7142)] = 130399, - [SMALL_STATE(7143)] = 130450, - [SMALL_STATE(7144)] = 130501, - [SMALL_STATE(7145)] = 130552, - [SMALL_STATE(7146)] = 130603, - [SMALL_STATE(7147)] = 130654, - [SMALL_STATE(7148)] = 130705, - [SMALL_STATE(7149)] = 130756, - [SMALL_STATE(7150)] = 130807, - [SMALL_STATE(7151)] = 130854, - [SMALL_STATE(7152)] = 130905, - [SMALL_STATE(7153)] = 130956, - [SMALL_STATE(7154)] = 131007, - [SMALL_STATE(7155)] = 131058, - [SMALL_STATE(7156)] = 131109, - [SMALL_STATE(7157)] = 131156, - [SMALL_STATE(7158)] = 131207, - [SMALL_STATE(7159)] = 131254, - [SMALL_STATE(7160)] = 131301, - [SMALL_STATE(7161)] = 131352, - [SMALL_STATE(7162)] = 131403, - [SMALL_STATE(7163)] = 131454, - [SMALL_STATE(7164)] = 131505, - [SMALL_STATE(7165)] = 131556, - [SMALL_STATE(7166)] = 131607, - [SMALL_STATE(7167)] = 131658, - [SMALL_STATE(7168)] = 131709, - [SMALL_STATE(7169)] = 131758, - [SMALL_STATE(7170)] = 131809, - [SMALL_STATE(7171)] = 131860, - [SMALL_STATE(7172)] = 131911, - [SMALL_STATE(7173)] = 131962, - [SMALL_STATE(7174)] = 132013, - [SMALL_STATE(7175)] = 132064, - [SMALL_STATE(7176)] = 132115, - [SMALL_STATE(7177)] = 132164, - [SMALL_STATE(7178)] = 132213, - [SMALL_STATE(7179)] = 132264, - [SMALL_STATE(7180)] = 132315, - [SMALL_STATE(7181)] = 132366, - [SMALL_STATE(7182)] = 132413, - [SMALL_STATE(7183)] = 132464, - [SMALL_STATE(7184)] = 132515, - [SMALL_STATE(7185)] = 132566, - [SMALL_STATE(7186)] = 132617, - [SMALL_STATE(7187)] = 132668, - [SMALL_STATE(7188)] = 132719, - [SMALL_STATE(7189)] = 132766, - [SMALL_STATE(7190)] = 132813, - [SMALL_STATE(7191)] = 132862, - [SMALL_STATE(7192)] = 132913, - [SMALL_STATE(7193)] = 132964, - [SMALL_STATE(7194)] = 133015, - [SMALL_STATE(7195)] = 133066, - [SMALL_STATE(7196)] = 133117, - [SMALL_STATE(7197)] = 133168, - [SMALL_STATE(7198)] = 133217, - [SMALL_STATE(7199)] = 133268, - [SMALL_STATE(7200)] = 133319, - [SMALL_STATE(7201)] = 133370, - [SMALL_STATE(7202)] = 133421, - [SMALL_STATE(7203)] = 133472, - [SMALL_STATE(7204)] = 133523, - [SMALL_STATE(7205)] = 133574, - [SMALL_STATE(7206)] = 133625, - [SMALL_STATE(7207)] = 133674, - [SMALL_STATE(7208)] = 133725, - [SMALL_STATE(7209)] = 133776, - [SMALL_STATE(7210)] = 133827, - [SMALL_STATE(7211)] = 133878, - [SMALL_STATE(7212)] = 133929, - [SMALL_STATE(7213)] = 133976, - [SMALL_STATE(7214)] = 134027, - [SMALL_STATE(7215)] = 134078, - [SMALL_STATE(7216)] = 134129, - [SMALL_STATE(7217)] = 134180, - [SMALL_STATE(7218)] = 134229, - [SMALL_STATE(7219)] = 134280, - [SMALL_STATE(7220)] = 134331, - [SMALL_STATE(7221)] = 134382, - [SMALL_STATE(7222)] = 134429, - [SMALL_STATE(7223)] = 134478, - [SMALL_STATE(7224)] = 134529, - [SMALL_STATE(7225)] = 134578, - [SMALL_STATE(7226)] = 134629, - [SMALL_STATE(7227)] = 134680, - [SMALL_STATE(7228)] = 134729, - [SMALL_STATE(7229)] = 134780, - [SMALL_STATE(7230)] = 134831, - [SMALL_STATE(7231)] = 134882, - [SMALL_STATE(7232)] = 134933, - [SMALL_STATE(7233)] = 134984, - [SMALL_STATE(7234)] = 135033, - [SMALL_STATE(7235)] = 135084, - [SMALL_STATE(7236)] = 135135, - [SMALL_STATE(7237)] = 135186, - [SMALL_STATE(7238)] = 135235, - [SMALL_STATE(7239)] = 135286, - [SMALL_STATE(7240)] = 135337, - [SMALL_STATE(7241)] = 135386, - [SMALL_STATE(7242)] = 135433, - [SMALL_STATE(7243)] = 135484, - [SMALL_STATE(7244)] = 135533, - [SMALL_STATE(7245)] = 135582, - [SMALL_STATE(7246)] = 135633, - [SMALL_STATE(7247)] = 135682, - [SMALL_STATE(7248)] = 135733, - [SMALL_STATE(7249)] = 135784, - [SMALL_STATE(7250)] = 135833, - [SMALL_STATE(7251)] = 135882, - [SMALL_STATE(7252)] = 135933, - [SMALL_STATE(7253)] = 135984, - [SMALL_STATE(7254)] = 136033, - [SMALL_STATE(7255)] = 136080, - [SMALL_STATE(7256)] = 136131, - [SMALL_STATE(7257)] = 136180, - [SMALL_STATE(7258)] = 136231, - [SMALL_STATE(7259)] = 136282, - [SMALL_STATE(7260)] = 136333, - [SMALL_STATE(7261)] = 136384, - [SMALL_STATE(7262)] = 136435, - [SMALL_STATE(7263)] = 136486, - [SMALL_STATE(7264)] = 136537, - [SMALL_STATE(7265)] = 136588, - [SMALL_STATE(7266)] = 136639, - [SMALL_STATE(7267)] = 136690, - [SMALL_STATE(7268)] = 136741, - [SMALL_STATE(7269)] = 136790, - [SMALL_STATE(7270)] = 136837, - [SMALL_STATE(7271)] = 136888, - [SMALL_STATE(7272)] = 136939, - [SMALL_STATE(7273)] = 136990, - [SMALL_STATE(7274)] = 137041, - [SMALL_STATE(7275)] = 137090, - [SMALL_STATE(7276)] = 137141, - [SMALL_STATE(7277)] = 137192, - [SMALL_STATE(7278)] = 137243, - [SMALL_STATE(7279)] = 137294, - [SMALL_STATE(7280)] = 137345, - [SMALL_STATE(7281)] = 137396, - [SMALL_STATE(7282)] = 137447, - [SMALL_STATE(7283)] = 137498, - [SMALL_STATE(7284)] = 137549, - [SMALL_STATE(7285)] = 137600, - [SMALL_STATE(7286)] = 137651, - [SMALL_STATE(7287)] = 137702, - [SMALL_STATE(7288)] = 137753, - [SMALL_STATE(7289)] = 137804, - [SMALL_STATE(7290)] = 137855, - [SMALL_STATE(7291)] = 137906, - [SMALL_STATE(7292)] = 137957, - [SMALL_STATE(7293)] = 138004, - [SMALL_STATE(7294)] = 138055, - [SMALL_STATE(7295)] = 138106, - [SMALL_STATE(7296)] = 138157, - [SMALL_STATE(7297)] = 138204, - [SMALL_STATE(7298)] = 138255, - [SMALL_STATE(7299)] = 138304, - [SMALL_STATE(7300)] = 138355, - [SMALL_STATE(7301)] = 138406, - [SMALL_STATE(7302)] = 138457, - [SMALL_STATE(7303)] = 138506, - [SMALL_STATE(7304)] = 138557, - [SMALL_STATE(7305)] = 138606, - [SMALL_STATE(7306)] = 138657, - [SMALL_STATE(7307)] = 138708, - [SMALL_STATE(7308)] = 138759, - [SMALL_STATE(7309)] = 138810, - [SMALL_STATE(7310)] = 138859, - [SMALL_STATE(7311)] = 138910, - [SMALL_STATE(7312)] = 138961, - [SMALL_STATE(7313)] = 139012, - [SMALL_STATE(7314)] = 139059, - [SMALL_STATE(7315)] = 139110, - [SMALL_STATE(7316)] = 139161, - [SMALL_STATE(7317)] = 139212, - [SMALL_STATE(7318)] = 139263, - [SMALL_STATE(7319)] = 139314, - [SMALL_STATE(7320)] = 139365, - [SMALL_STATE(7321)] = 139416, - [SMALL_STATE(7322)] = 139467, - [SMALL_STATE(7323)] = 139518, - [SMALL_STATE(7324)] = 139569, - [SMALL_STATE(7325)] = 139620, - [SMALL_STATE(7326)] = 139671, - [SMALL_STATE(7327)] = 139718, - [SMALL_STATE(7328)] = 139767, - [SMALL_STATE(7329)] = 139818, - [SMALL_STATE(7330)] = 139869, - [SMALL_STATE(7331)] = 139920, - [SMALL_STATE(7332)] = 139971, - [SMALL_STATE(7333)] = 140022, - [SMALL_STATE(7334)] = 140073, - [SMALL_STATE(7335)] = 140124, - [SMALL_STATE(7336)] = 140175, - [SMALL_STATE(7337)] = 140226, - [SMALL_STATE(7338)] = 140277, - [SMALL_STATE(7339)] = 140328, - [SMALL_STATE(7340)] = 140379, - [SMALL_STATE(7341)] = 140430, - [SMALL_STATE(7342)] = 140479, - [SMALL_STATE(7343)] = 140530, - [SMALL_STATE(7344)] = 140581, - [SMALL_STATE(7345)] = 140628, - [SMALL_STATE(7346)] = 140679, - [SMALL_STATE(7347)] = 140730, - [SMALL_STATE(7348)] = 140781, - [SMALL_STATE(7349)] = 140832, - [SMALL_STATE(7350)] = 140883, - [SMALL_STATE(7351)] = 140934, - [SMALL_STATE(7352)] = 140985, - [SMALL_STATE(7353)] = 141036, - [SMALL_STATE(7354)] = 141087, - [SMALL_STATE(7355)] = 141134, - [SMALL_STATE(7356)] = 141185, - [SMALL_STATE(7357)] = 141236, - [SMALL_STATE(7358)] = 141287, - [SMALL_STATE(7359)] = 141336, - [SMALL_STATE(7360)] = 141387, - [SMALL_STATE(7361)] = 141438, - [SMALL_STATE(7362)] = 141489, - [SMALL_STATE(7363)] = 141540, - [SMALL_STATE(7364)] = 141591, - [SMALL_STATE(7365)] = 141642, - [SMALL_STATE(7366)] = 141693, - [SMALL_STATE(7367)] = 141744, - [SMALL_STATE(7368)] = 141795, - [SMALL_STATE(7369)] = 141846, - [SMALL_STATE(7370)] = 141897, - [SMALL_STATE(7371)] = 141948, - [SMALL_STATE(7372)] = 141999, - [SMALL_STATE(7373)] = 142050, - [SMALL_STATE(7374)] = 142098, - [SMALL_STATE(7375)] = 142144, - [SMALL_STATE(7376)] = 142192, - [SMALL_STATE(7377)] = 142240, - [SMALL_STATE(7378)] = 142288, - [SMALL_STATE(7379)] = 142336, - [SMALL_STATE(7380)] = 142382, - [SMALL_STATE(7381)] = 142430, - [SMALL_STATE(7382)] = 142476, - [SMALL_STATE(7383)] = 142522, - [SMALL_STATE(7384)] = 142570, - [SMALL_STATE(7385)] = 142618, - [SMALL_STATE(7386)] = 142666, - [SMALL_STATE(7387)] = 142714, - [SMALL_STATE(7388)] = 142762, - [SMALL_STATE(7389)] = 142810, - [SMALL_STATE(7390)] = 142858, - [SMALL_STATE(7391)] = 142906, - [SMALL_STATE(7392)] = 142954, - [SMALL_STATE(7393)] = 143002, - [SMALL_STATE(7394)] = 143048, - [SMALL_STATE(7395)] = 143096, - [SMALL_STATE(7396)] = 143144, - [SMALL_STATE(7397)] = 143192, - [SMALL_STATE(7398)] = 143240, - [SMALL_STATE(7399)] = 143288, - [SMALL_STATE(7400)] = 143336, - [SMALL_STATE(7401)] = 143384, - [SMALL_STATE(7402)] = 143432, - [SMALL_STATE(7403)] = 143480, - [SMALL_STATE(7404)] = 143528, - [SMALL_STATE(7405)] = 143576, - [SMALL_STATE(7406)] = 143624, - [SMALL_STATE(7407)] = 143672, - [SMALL_STATE(7408)] = 143720, - [SMALL_STATE(7409)] = 143768, - [SMALL_STATE(7410)] = 143816, - [SMALL_STATE(7411)] = 143864, - [SMALL_STATE(7412)] = 143912, - [SMALL_STATE(7413)] = 143958, - [SMALL_STATE(7414)] = 144006, - [SMALL_STATE(7415)] = 144054, - [SMALL_STATE(7416)] = 144100, - [SMALL_STATE(7417)] = 144146, - [SMALL_STATE(7418)] = 144194, - [SMALL_STATE(7419)] = 144240, - [SMALL_STATE(7420)] = 144286, - [SMALL_STATE(7421)] = 144334, - [SMALL_STATE(7422)] = 144382, - [SMALL_STATE(7423)] = 144430, - [SMALL_STATE(7424)] = 144476, - [SMALL_STATE(7425)] = 144524, - [SMALL_STATE(7426)] = 144570, - [SMALL_STATE(7427)] = 144618, - [SMALL_STATE(7428)] = 144666, - [SMALL_STATE(7429)] = 144714, - [SMALL_STATE(7430)] = 144762, - [SMALL_STATE(7431)] = 144810, - [SMALL_STATE(7432)] = 144858, - [SMALL_STATE(7433)] = 144904, - [SMALL_STATE(7434)] = 144950, - [SMALL_STATE(7435)] = 144998, - [SMALL_STATE(7436)] = 145044, - [SMALL_STATE(7437)] = 145090, - [SMALL_STATE(7438)] = 145138, - [SMALL_STATE(7439)] = 145186, - [SMALL_STATE(7440)] = 145234, - [SMALL_STATE(7441)] = 145280, - [SMALL_STATE(7442)] = 145328, - [SMALL_STATE(7443)] = 145376, - [SMALL_STATE(7444)] = 145424, - [SMALL_STATE(7445)] = 145470, - [SMALL_STATE(7446)] = 145518, - [SMALL_STATE(7447)] = 145566, - [SMALL_STATE(7448)] = 145612, - [SMALL_STATE(7449)] = 145660, - [SMALL_STATE(7450)] = 145708, - [SMALL_STATE(7451)] = 145756, - [SMALL_STATE(7452)] = 145804, - [SMALL_STATE(7453)] = 145852, - [SMALL_STATE(7454)] = 145900, - [SMALL_STATE(7455)] = 145948, - [SMALL_STATE(7456)] = 145994, - [SMALL_STATE(7457)] = 146042, - [SMALL_STATE(7458)] = 146090, - [SMALL_STATE(7459)] = 146136, - [SMALL_STATE(7460)] = 146184, - [SMALL_STATE(7461)] = 146232, - [SMALL_STATE(7462)] = 146280, - [SMALL_STATE(7463)] = 146326, - [SMALL_STATE(7464)] = 146374, - [SMALL_STATE(7465)] = 146422, - [SMALL_STATE(7466)] = 146470, - [SMALL_STATE(7467)] = 146518, - [SMALL_STATE(7468)] = 146566, - [SMALL_STATE(7469)] = 146612, - [SMALL_STATE(7470)] = 146660, - [SMALL_STATE(7471)] = 146706, - [SMALL_STATE(7472)] = 146754, - [SMALL_STATE(7473)] = 146802, - [SMALL_STATE(7474)] = 146850, - [SMALL_STATE(7475)] = 146896, - [SMALL_STATE(7476)] = 146944, - [SMALL_STATE(7477)] = 146992, - [SMALL_STATE(7478)] = 147040, - [SMALL_STATE(7479)] = 147088, - [SMALL_STATE(7480)] = 147136, - [SMALL_STATE(7481)] = 147184, - [SMALL_STATE(7482)] = 147230, - [SMALL_STATE(7483)] = 147278, - [SMALL_STATE(7484)] = 147326, - [SMALL_STATE(7485)] = 147374, - [SMALL_STATE(7486)] = 147420, - [SMALL_STATE(7487)] = 147468, - [SMALL_STATE(7488)] = 147516, - [SMALL_STATE(7489)] = 147564, - [SMALL_STATE(7490)] = 147612, - [SMALL_STATE(7491)] = 147660, - [SMALL_STATE(7492)] = 147708, - [SMALL_STATE(7493)] = 147756, - [SMALL_STATE(7494)] = 147804, - [SMALL_STATE(7495)] = 147852, - [SMALL_STATE(7496)] = 147900, - [SMALL_STATE(7497)] = 147948, - [SMALL_STATE(7498)] = 147996, - [SMALL_STATE(7499)] = 148044, - [SMALL_STATE(7500)] = 148092, - [SMALL_STATE(7501)] = 148140, - [SMALL_STATE(7502)] = 148188, - [SMALL_STATE(7503)] = 148236, - [SMALL_STATE(7504)] = 148284, - [SMALL_STATE(7505)] = 148332, - [SMALL_STATE(7506)] = 148380, - [SMALL_STATE(7507)] = 148428, - [SMALL_STATE(7508)] = 148476, - [SMALL_STATE(7509)] = 148524, - [SMALL_STATE(7510)] = 148572, - [SMALL_STATE(7511)] = 148620, - [SMALL_STATE(7512)] = 148668, - [SMALL_STATE(7513)] = 148716, - [SMALL_STATE(7514)] = 148764, - [SMALL_STATE(7515)] = 148810, - [SMALL_STATE(7516)] = 148858, - [SMALL_STATE(7517)] = 148906, - [SMALL_STATE(7518)] = 148954, - [SMALL_STATE(7519)] = 149000, - [SMALL_STATE(7520)] = 149046, - [SMALL_STATE(7521)] = 149094, - [SMALL_STATE(7522)] = 149142, - [SMALL_STATE(7523)] = 149188, - [SMALL_STATE(7524)] = 149236, - [SMALL_STATE(7525)] = 149284, - [SMALL_STATE(7526)] = 149332, - [SMALL_STATE(7527)] = 149378, - [SMALL_STATE(7528)] = 149424, - [SMALL_STATE(7529)] = 149472, - [SMALL_STATE(7530)] = 149518, - [SMALL_STATE(7531)] = 149564, - [SMALL_STATE(7532)] = 149612, - [SMALL_STATE(7533)] = 149660, - [SMALL_STATE(7534)] = 149708, - [SMALL_STATE(7535)] = 149756, - [SMALL_STATE(7536)] = 149802, - [SMALL_STATE(7537)] = 149850, - [SMALL_STATE(7538)] = 149896, - [SMALL_STATE(7539)] = 149942, - [SMALL_STATE(7540)] = 149988, - [SMALL_STATE(7541)] = 150034, - [SMALL_STATE(7542)] = 150082, - [SMALL_STATE(7543)] = 150130, - [SMALL_STATE(7544)] = 150176, - [SMALL_STATE(7545)] = 150224, - [SMALL_STATE(7546)] = 150270, - [SMALL_STATE(7547)] = 150318, - [SMALL_STATE(7548)] = 150366, - [SMALL_STATE(7549)] = 150414, - [SMALL_STATE(7550)] = 150462, - [SMALL_STATE(7551)] = 150510, - [SMALL_STATE(7552)] = 150556, - [SMALL_STATE(7553)] = 150604, - [SMALL_STATE(7554)] = 150652, - [SMALL_STATE(7555)] = 150700, - [SMALL_STATE(7556)] = 150748, - [SMALL_STATE(7557)] = 150794, - [SMALL_STATE(7558)] = 150842, - [SMALL_STATE(7559)] = 150888, - [SMALL_STATE(7560)] = 150934, - [SMALL_STATE(7561)] = 150980, - [SMALL_STATE(7562)] = 151026, - [SMALL_STATE(7563)] = 151072, - [SMALL_STATE(7564)] = 151118, - [SMALL_STATE(7565)] = 151164, - [SMALL_STATE(7566)] = 151210, - [SMALL_STATE(7567)] = 151258, - [SMALL_STATE(7568)] = 151306, - [SMALL_STATE(7569)] = 151352, - [SMALL_STATE(7570)] = 151398, - [SMALL_STATE(7571)] = 151444, - [SMALL_STATE(7572)] = 151490, - [SMALL_STATE(7573)] = 151536, - [SMALL_STATE(7574)] = 151584, - [SMALL_STATE(7575)] = 151630, - [SMALL_STATE(7576)] = 151678, - [SMALL_STATE(7577)] = 151724, - [SMALL_STATE(7578)] = 151772, - [SMALL_STATE(7579)] = 151820, - [SMALL_STATE(7580)] = 151866, - [SMALL_STATE(7581)] = 151912, - [SMALL_STATE(7582)] = 151958, - [SMALL_STATE(7583)] = 152006, - [SMALL_STATE(7584)] = 152054, - [SMALL_STATE(7585)] = 152102, - [SMALL_STATE(7586)] = 152148, - [SMALL_STATE(7587)] = 152196, - [SMALL_STATE(7588)] = 152242, - [SMALL_STATE(7589)] = 152290, - [SMALL_STATE(7590)] = 152336, - [SMALL_STATE(7591)] = 152384, - [SMALL_STATE(7592)] = 152432, - [SMALL_STATE(7593)] = 152480, - [SMALL_STATE(7594)] = 152528, - [SMALL_STATE(7595)] = 152574, - [SMALL_STATE(7596)] = 152620, - [SMALL_STATE(7597)] = 152666, - [SMALL_STATE(7598)] = 152714, - [SMALL_STATE(7599)] = 152762, - [SMALL_STATE(7600)] = 152808, - [SMALL_STATE(7601)] = 152854, - [SMALL_STATE(7602)] = 152900, - [SMALL_STATE(7603)] = 152946, - [SMALL_STATE(7604)] = 152994, - [SMALL_STATE(7605)] = 153042, - [SMALL_STATE(7606)] = 153088, - [SMALL_STATE(7607)] = 153134, - [SMALL_STATE(7608)] = 153182, - [SMALL_STATE(7609)] = 153228, - [SMALL_STATE(7610)] = 153274, - [SMALL_STATE(7611)] = 153322, - [SMALL_STATE(7612)] = 153368, - [SMALL_STATE(7613)] = 153414, - [SMALL_STATE(7614)] = 153460, - [SMALL_STATE(7615)] = 153508, - [SMALL_STATE(7616)] = 153556, - [SMALL_STATE(7617)] = 153602, - [SMALL_STATE(7618)] = 153648, - [SMALL_STATE(7619)] = 153694, - [SMALL_STATE(7620)] = 153740, - [SMALL_STATE(7621)] = 153786, - [SMALL_STATE(7622)] = 153832, - [SMALL_STATE(7623)] = 153878, - [SMALL_STATE(7624)] = 153924, - [SMALL_STATE(7625)] = 153970, - [SMALL_STATE(7626)] = 154018, - [SMALL_STATE(7627)] = 154064, - [SMALL_STATE(7628)] = 154110, - [SMALL_STATE(7629)] = 154156, - [SMALL_STATE(7630)] = 154202, - [SMALL_STATE(7631)] = 154248, - [SMALL_STATE(7632)] = 154294, - [SMALL_STATE(7633)] = 154342, - [SMALL_STATE(7634)] = 154390, - [SMALL_STATE(7635)] = 154436, - [SMALL_STATE(7636)] = 154484, - [SMALL_STATE(7637)] = 154530, - [SMALL_STATE(7638)] = 154576, - [SMALL_STATE(7639)] = 154622, - [SMALL_STATE(7640)] = 154670, - [SMALL_STATE(7641)] = 154716, - [SMALL_STATE(7642)] = 154762, - [SMALL_STATE(7643)] = 154807, - [SMALL_STATE(7644)] = 154852, - [SMALL_STATE(7645)] = 154897, - [SMALL_STATE(7646)] = 154942, - [SMALL_STATE(7647)] = 154987, - [SMALL_STATE(7648)] = 155032, - [SMALL_STATE(7649)] = 155077, - [SMALL_STATE(7650)] = 155122, - [SMALL_STATE(7651)] = 155167, - [SMALL_STATE(7652)] = 155212, - [SMALL_STATE(7653)] = 155257, - [SMALL_STATE(7654)] = 155302, - [SMALL_STATE(7655)] = 155347, - [SMALL_STATE(7656)] = 155392, - [SMALL_STATE(7657)] = 155437, - [SMALL_STATE(7658)] = 155482, - [SMALL_STATE(7659)] = 155527, - [SMALL_STATE(7660)] = 155572, - [SMALL_STATE(7661)] = 155617, - [SMALL_STATE(7662)] = 155662, - [SMALL_STATE(7663)] = 155707, - [SMALL_STATE(7664)] = 155752, - [SMALL_STATE(7665)] = 155797, - [SMALL_STATE(7666)] = 155842, - [SMALL_STATE(7667)] = 155887, - [SMALL_STATE(7668)] = 155932, - [SMALL_STATE(7669)] = 155977, - [SMALL_STATE(7670)] = 156022, - [SMALL_STATE(7671)] = 156067, - [SMALL_STATE(7672)] = 156112, - [SMALL_STATE(7673)] = 156157, - [SMALL_STATE(7674)] = 156202, - [SMALL_STATE(7675)] = 156247, - [SMALL_STATE(7676)] = 156292, - [SMALL_STATE(7677)] = 156337, - [SMALL_STATE(7678)] = 156382, - [SMALL_STATE(7679)] = 156427, - [SMALL_STATE(7680)] = 156472, - [SMALL_STATE(7681)] = 156517, - [SMALL_STATE(7682)] = 156562, - [SMALL_STATE(7683)] = 156607, - [SMALL_STATE(7684)] = 156652, - [SMALL_STATE(7685)] = 156697, - [SMALL_STATE(7686)] = 156742, - [SMALL_STATE(7687)] = 156787, - [SMALL_STATE(7688)] = 156832, - [SMALL_STATE(7689)] = 156877, - [SMALL_STATE(7690)] = 156922, - [SMALL_STATE(7691)] = 156967, - [SMALL_STATE(7692)] = 157012, - [SMALL_STATE(7693)] = 157057, - [SMALL_STATE(7694)] = 157102, - [SMALL_STATE(7695)] = 157147, - [SMALL_STATE(7696)] = 157192, - [SMALL_STATE(7697)] = 157237, - [SMALL_STATE(7698)] = 157282, - [SMALL_STATE(7699)] = 157327, - [SMALL_STATE(7700)] = 157372, - [SMALL_STATE(7701)] = 157417, - [SMALL_STATE(7702)] = 157462, - [SMALL_STATE(7703)] = 157507, - [SMALL_STATE(7704)] = 157552, - [SMALL_STATE(7705)] = 157597, - [SMALL_STATE(7706)] = 157642, - [SMALL_STATE(7707)] = 157687, - [SMALL_STATE(7708)] = 157732, - [SMALL_STATE(7709)] = 157777, - [SMALL_STATE(7710)] = 157822, - [SMALL_STATE(7711)] = 157867, - [SMALL_STATE(7712)] = 157912, - [SMALL_STATE(7713)] = 157957, - [SMALL_STATE(7714)] = 158002, - [SMALL_STATE(7715)] = 158047, - [SMALL_STATE(7716)] = 158092, - [SMALL_STATE(7717)] = 158137, - [SMALL_STATE(7718)] = 158182, - [SMALL_STATE(7719)] = 158227, - [SMALL_STATE(7720)] = 158272, - [SMALL_STATE(7721)] = 158317, - [SMALL_STATE(7722)] = 158362, - [SMALL_STATE(7723)] = 158407, - [SMALL_STATE(7724)] = 158452, - [SMALL_STATE(7725)] = 158497, - [SMALL_STATE(7726)] = 158542, - [SMALL_STATE(7727)] = 158587, - [SMALL_STATE(7728)] = 158632, - [SMALL_STATE(7729)] = 158677, - [SMALL_STATE(7730)] = 158722, - [SMALL_STATE(7731)] = 158767, - [SMALL_STATE(7732)] = 158812, - [SMALL_STATE(7733)] = 158857, - [SMALL_STATE(7734)] = 158902, - [SMALL_STATE(7735)] = 158947, - [SMALL_STATE(7736)] = 158992, - [SMALL_STATE(7737)] = 159037, - [SMALL_STATE(7738)] = 159082, - [SMALL_STATE(7739)] = 159127, - [SMALL_STATE(7740)] = 159172, - [SMALL_STATE(7741)] = 159217, - [SMALL_STATE(7742)] = 159262, - [SMALL_STATE(7743)] = 159307, - [SMALL_STATE(7744)] = 159352, - [SMALL_STATE(7745)] = 159397, - [SMALL_STATE(7746)] = 159442, - [SMALL_STATE(7747)] = 159487, - [SMALL_STATE(7748)] = 159532, - [SMALL_STATE(7749)] = 159577, - [SMALL_STATE(7750)] = 159622, - [SMALL_STATE(7751)] = 159667, - [SMALL_STATE(7752)] = 159712, - [SMALL_STATE(7753)] = 159757, - [SMALL_STATE(7754)] = 159802, - [SMALL_STATE(7755)] = 159847, - [SMALL_STATE(7756)] = 159892, - [SMALL_STATE(7757)] = 159937, - [SMALL_STATE(7758)] = 159982, - [SMALL_STATE(7759)] = 160027, - [SMALL_STATE(7760)] = 160072, - [SMALL_STATE(7761)] = 160117, - [SMALL_STATE(7762)] = 160162, - [SMALL_STATE(7763)] = 160207, - [SMALL_STATE(7764)] = 160252, - [SMALL_STATE(7765)] = 160297, - [SMALL_STATE(7766)] = 160342, - [SMALL_STATE(7767)] = 160387, - [SMALL_STATE(7768)] = 160432, - [SMALL_STATE(7769)] = 160477, - [SMALL_STATE(7770)] = 160522, - [SMALL_STATE(7771)] = 160567, - [SMALL_STATE(7772)] = 160612, - [SMALL_STATE(7773)] = 160657, - [SMALL_STATE(7774)] = 160702, - [SMALL_STATE(7775)] = 160747, - [SMALL_STATE(7776)] = 160792, - [SMALL_STATE(7777)] = 160837, - [SMALL_STATE(7778)] = 160882, - [SMALL_STATE(7779)] = 160927, - [SMALL_STATE(7780)] = 160972, - [SMALL_STATE(7781)] = 161017, - [SMALL_STATE(7782)] = 161062, - [SMALL_STATE(7783)] = 161107, - [SMALL_STATE(7784)] = 161152, - [SMALL_STATE(7785)] = 161197, - [SMALL_STATE(7786)] = 161242, - [SMALL_STATE(7787)] = 161287, - [SMALL_STATE(7788)] = 161332, - [SMALL_STATE(7789)] = 161377, - [SMALL_STATE(7790)] = 161422, - [SMALL_STATE(7791)] = 161467, - [SMALL_STATE(7792)] = 161512, - [SMALL_STATE(7793)] = 161557, - [SMALL_STATE(7794)] = 161602, - [SMALL_STATE(7795)] = 161647, - [SMALL_STATE(7796)] = 161692, - [SMALL_STATE(7797)] = 161737, - [SMALL_STATE(7798)] = 161782, - [SMALL_STATE(7799)] = 161827, - [SMALL_STATE(7800)] = 161872, - [SMALL_STATE(7801)] = 161917, - [SMALL_STATE(7802)] = 161962, - [SMALL_STATE(7803)] = 162007, - [SMALL_STATE(7804)] = 162052, - [SMALL_STATE(7805)] = 162097, - [SMALL_STATE(7806)] = 162142, - [SMALL_STATE(7807)] = 162187, - [SMALL_STATE(7808)] = 162232, - [SMALL_STATE(7809)] = 162277, - [SMALL_STATE(7810)] = 162322, - [SMALL_STATE(7811)] = 162367, - [SMALL_STATE(7812)] = 162412, - [SMALL_STATE(7813)] = 162457, - [SMALL_STATE(7814)] = 162502, - [SMALL_STATE(7815)] = 162547, - [SMALL_STATE(7816)] = 162592, - [SMALL_STATE(7817)] = 162637, - [SMALL_STATE(7818)] = 162682, - [SMALL_STATE(7819)] = 162727, - [SMALL_STATE(7820)] = 162772, - [SMALL_STATE(7821)] = 162817, - [SMALL_STATE(7822)] = 162862, - [SMALL_STATE(7823)] = 162907, - [SMALL_STATE(7824)] = 162952, - [SMALL_STATE(7825)] = 162997, - [SMALL_STATE(7826)] = 163042, - [SMALL_STATE(7827)] = 163087, - [SMALL_STATE(7828)] = 163132, - [SMALL_STATE(7829)] = 163177, - [SMALL_STATE(7830)] = 163222, - [SMALL_STATE(7831)] = 163267, - [SMALL_STATE(7832)] = 163312, - [SMALL_STATE(7833)] = 163357, - [SMALL_STATE(7834)] = 163402, - [SMALL_STATE(7835)] = 163447, - [SMALL_STATE(7836)] = 163492, - [SMALL_STATE(7837)] = 163537, - [SMALL_STATE(7838)] = 163582, - [SMALL_STATE(7839)] = 163627, - [SMALL_STATE(7840)] = 163672, - [SMALL_STATE(7841)] = 163717, - [SMALL_STATE(7842)] = 163762, - [SMALL_STATE(7843)] = 163807, - [SMALL_STATE(7844)] = 163852, - [SMALL_STATE(7845)] = 163897, - [SMALL_STATE(7846)] = 163942, - [SMALL_STATE(7847)] = 163987, - [SMALL_STATE(7848)] = 164032, - [SMALL_STATE(7849)] = 164077, - [SMALL_STATE(7850)] = 164122, - [SMALL_STATE(7851)] = 164167, - [SMALL_STATE(7852)] = 164212, - [SMALL_STATE(7853)] = 164257, - [SMALL_STATE(7854)] = 164302, - [SMALL_STATE(7855)] = 164347, - [SMALL_STATE(7856)] = 164392, - [SMALL_STATE(7857)] = 164437, - [SMALL_STATE(7858)] = 164482, - [SMALL_STATE(7859)] = 164527, - [SMALL_STATE(7860)] = 164572, - [SMALL_STATE(7861)] = 164617, - [SMALL_STATE(7862)] = 164662, - [SMALL_STATE(7863)] = 164707, - [SMALL_STATE(7864)] = 164752, - [SMALL_STATE(7865)] = 164797, - [SMALL_STATE(7866)] = 164842, - [SMALL_STATE(7867)] = 164887, - [SMALL_STATE(7868)] = 164932, - [SMALL_STATE(7869)] = 164977, - [SMALL_STATE(7870)] = 165022, - [SMALL_STATE(7871)] = 165067, - [SMALL_STATE(7872)] = 165112, - [SMALL_STATE(7873)] = 165157, - [SMALL_STATE(7874)] = 165202, - [SMALL_STATE(7875)] = 165247, - [SMALL_STATE(7876)] = 165292, - [SMALL_STATE(7877)] = 165337, - [SMALL_STATE(7878)] = 165382, - [SMALL_STATE(7879)] = 165427, - [SMALL_STATE(7880)] = 165472, - [SMALL_STATE(7881)] = 165517, - [SMALL_STATE(7882)] = 165562, - [SMALL_STATE(7883)] = 165607, - [SMALL_STATE(7884)] = 165652, - [SMALL_STATE(7885)] = 165697, - [SMALL_STATE(7886)] = 165742, - [SMALL_STATE(7887)] = 165787, - [SMALL_STATE(7888)] = 165832, - [SMALL_STATE(7889)] = 165877, - [SMALL_STATE(7890)] = 165922, - [SMALL_STATE(7891)] = 165967, - [SMALL_STATE(7892)] = 166012, - [SMALL_STATE(7893)] = 166057, - [SMALL_STATE(7894)] = 166102, - [SMALL_STATE(7895)] = 166147, - [SMALL_STATE(7896)] = 166192, - [SMALL_STATE(7897)] = 166237, - [SMALL_STATE(7898)] = 166282, - [SMALL_STATE(7899)] = 166327, - [SMALL_STATE(7900)] = 166372, - [SMALL_STATE(7901)] = 166417, - [SMALL_STATE(7902)] = 166462, - [SMALL_STATE(7903)] = 166507, - [SMALL_STATE(7904)] = 166552, - [SMALL_STATE(7905)] = 166597, - [SMALL_STATE(7906)] = 166642, - [SMALL_STATE(7907)] = 166687, - [SMALL_STATE(7908)] = 166732, - [SMALL_STATE(7909)] = 166777, - [SMALL_STATE(7910)] = 166822, - [SMALL_STATE(7911)] = 166867, - [SMALL_STATE(7912)] = 166912, - [SMALL_STATE(7913)] = 166957, - [SMALL_STATE(7914)] = 167002, - [SMALL_STATE(7915)] = 167047, - [SMALL_STATE(7916)] = 167092, - [SMALL_STATE(7917)] = 167137, - [SMALL_STATE(7918)] = 167182, - [SMALL_STATE(7919)] = 167227, - [SMALL_STATE(7920)] = 167272, - [SMALL_STATE(7921)] = 167317, - [SMALL_STATE(7922)] = 167362, - [SMALL_STATE(7923)] = 167407, - [SMALL_STATE(7924)] = 167452, - [SMALL_STATE(7925)] = 167497, - [SMALL_STATE(7926)] = 167542, - [SMALL_STATE(7927)] = 167587, - [SMALL_STATE(7928)] = 167632, - [SMALL_STATE(7929)] = 167677, - [SMALL_STATE(7930)] = 167722, - [SMALL_STATE(7931)] = 167767, - [SMALL_STATE(7932)] = 167812, - [SMALL_STATE(7933)] = 167857, - [SMALL_STATE(7934)] = 167902, - [SMALL_STATE(7935)] = 167947, - [SMALL_STATE(7936)] = 167992, - [SMALL_STATE(7937)] = 168037, - [SMALL_STATE(7938)] = 168082, - [SMALL_STATE(7939)] = 168127, - [SMALL_STATE(7940)] = 168172, - [SMALL_STATE(7941)] = 168217, - [SMALL_STATE(7942)] = 168262, - [SMALL_STATE(7943)] = 168307, - [SMALL_STATE(7944)] = 168352, - [SMALL_STATE(7945)] = 168397, - [SMALL_STATE(7946)] = 168442, - [SMALL_STATE(7947)] = 168487, - [SMALL_STATE(7948)] = 168532, - [SMALL_STATE(7949)] = 168577, - [SMALL_STATE(7950)] = 168622, - [SMALL_STATE(7951)] = 168667, - [SMALL_STATE(7952)] = 168712, - [SMALL_STATE(7953)] = 168757, - [SMALL_STATE(7954)] = 168802, - [SMALL_STATE(7955)] = 168847, - [SMALL_STATE(7956)] = 168892, - [SMALL_STATE(7957)] = 168937, - [SMALL_STATE(7958)] = 168982, - [SMALL_STATE(7959)] = 169027, - [SMALL_STATE(7960)] = 169072, - [SMALL_STATE(7961)] = 169117, - [SMALL_STATE(7962)] = 169162, - [SMALL_STATE(7963)] = 169207, - [SMALL_STATE(7964)] = 169252, - [SMALL_STATE(7965)] = 169297, - [SMALL_STATE(7966)] = 169342, - [SMALL_STATE(7967)] = 169387, - [SMALL_STATE(7968)] = 169432, - [SMALL_STATE(7969)] = 169477, - [SMALL_STATE(7970)] = 169522, - [SMALL_STATE(7971)] = 169567, - [SMALL_STATE(7972)] = 169612, - [SMALL_STATE(7973)] = 169657, - [SMALL_STATE(7974)] = 169702, - [SMALL_STATE(7975)] = 169747, - [SMALL_STATE(7976)] = 169792, - [SMALL_STATE(7977)] = 169837, - [SMALL_STATE(7978)] = 169882, - [SMALL_STATE(7979)] = 169927, - [SMALL_STATE(7980)] = 169972, - [SMALL_STATE(7981)] = 170017, - [SMALL_STATE(7982)] = 170062, - [SMALL_STATE(7983)] = 170107, - [SMALL_STATE(7984)] = 170152, - [SMALL_STATE(7985)] = 170197, - [SMALL_STATE(7986)] = 170242, - [SMALL_STATE(7987)] = 170287, - [SMALL_STATE(7988)] = 170332, - [SMALL_STATE(7989)] = 170377, - [SMALL_STATE(7990)] = 170422, - [SMALL_STATE(7991)] = 170467, - [SMALL_STATE(7992)] = 170512, - [SMALL_STATE(7993)] = 170557, - [SMALL_STATE(7994)] = 170602, - [SMALL_STATE(7995)] = 170647, - [SMALL_STATE(7996)] = 170692, - [SMALL_STATE(7997)] = 170737, - [SMALL_STATE(7998)] = 170782, - [SMALL_STATE(7999)] = 170827, - [SMALL_STATE(8000)] = 170872, - [SMALL_STATE(8001)] = 170917, - [SMALL_STATE(8002)] = 170962, - [SMALL_STATE(8003)] = 171007, - [SMALL_STATE(8004)] = 171052, - [SMALL_STATE(8005)] = 171097, - [SMALL_STATE(8006)] = 171142, - [SMALL_STATE(8007)] = 171187, - [SMALL_STATE(8008)] = 171232, - [SMALL_STATE(8009)] = 171277, - [SMALL_STATE(8010)] = 171322, - [SMALL_STATE(8011)] = 171367, - [SMALL_STATE(8012)] = 171412, - [SMALL_STATE(8013)] = 171457, - [SMALL_STATE(8014)] = 171502, - [SMALL_STATE(8015)] = 171547, - [SMALL_STATE(8016)] = 171592, - [SMALL_STATE(8017)] = 171637, - [SMALL_STATE(8018)] = 171682, - [SMALL_STATE(8019)] = 171727, - [SMALL_STATE(8020)] = 171772, - [SMALL_STATE(8021)] = 171817, - [SMALL_STATE(8022)] = 171862, - [SMALL_STATE(8023)] = 171907, - [SMALL_STATE(8024)] = 171952, - [SMALL_STATE(8025)] = 171997, - [SMALL_STATE(8026)] = 172042, - [SMALL_STATE(8027)] = 172087, - [SMALL_STATE(8028)] = 172132, - [SMALL_STATE(8029)] = 172177, - [SMALL_STATE(8030)] = 172222, - [SMALL_STATE(8031)] = 172267, - [SMALL_STATE(8032)] = 172312, - [SMALL_STATE(8033)] = 172357, - [SMALL_STATE(8034)] = 172402, - [SMALL_STATE(8035)] = 172447, - [SMALL_STATE(8036)] = 172492, - [SMALL_STATE(8037)] = 172537, - [SMALL_STATE(8038)] = 172582, - [SMALL_STATE(8039)] = 172627, - [SMALL_STATE(8040)] = 172672, - [SMALL_STATE(8041)] = 172717, - [SMALL_STATE(8042)] = 172762, - [SMALL_STATE(8043)] = 172807, - [SMALL_STATE(8044)] = 172852, - [SMALL_STATE(8045)] = 172897, - [SMALL_STATE(8046)] = 172942, - [SMALL_STATE(8047)] = 172987, - [SMALL_STATE(8048)] = 173032, - [SMALL_STATE(8049)] = 173077, - [SMALL_STATE(8050)] = 173122, - [SMALL_STATE(8051)] = 173167, - [SMALL_STATE(8052)] = 173212, - [SMALL_STATE(8053)] = 173257, - [SMALL_STATE(8054)] = 173302, - [SMALL_STATE(8055)] = 173347, - [SMALL_STATE(8056)] = 173392, - [SMALL_STATE(8057)] = 173437, - [SMALL_STATE(8058)] = 173482, - [SMALL_STATE(8059)] = 173527, - [SMALL_STATE(8060)] = 173572, - [SMALL_STATE(8061)] = 173617, - [SMALL_STATE(8062)] = 173662, - [SMALL_STATE(8063)] = 173707, - [SMALL_STATE(8064)] = 173752, - [SMALL_STATE(8065)] = 173797, - [SMALL_STATE(8066)] = 173842, - [SMALL_STATE(8067)] = 173887, - [SMALL_STATE(8068)] = 173932, - [SMALL_STATE(8069)] = 173977, - [SMALL_STATE(8070)] = 174022, - [SMALL_STATE(8071)] = 174067, - [SMALL_STATE(8072)] = 174112, - [SMALL_STATE(8073)] = 174157, - [SMALL_STATE(8074)] = 174202, - [SMALL_STATE(8075)] = 174247, - [SMALL_STATE(8076)] = 174292, - [SMALL_STATE(8077)] = 174337, - [SMALL_STATE(8078)] = 174382, - [SMALL_STATE(8079)] = 174427, - [SMALL_STATE(8080)] = 174472, - [SMALL_STATE(8081)] = 174517, - [SMALL_STATE(8082)] = 174562, - [SMALL_STATE(8083)] = 174607, - [SMALL_STATE(8084)] = 174652, - [SMALL_STATE(8085)] = 174697, - [SMALL_STATE(8086)] = 174742, - [SMALL_STATE(8087)] = 174787, - [SMALL_STATE(8088)] = 174832, - [SMALL_STATE(8089)] = 174877, - [SMALL_STATE(8090)] = 174922, - [SMALL_STATE(8091)] = 174967, - [SMALL_STATE(8092)] = 175012, - [SMALL_STATE(8093)] = 175057, - [SMALL_STATE(8094)] = 175102, - [SMALL_STATE(8095)] = 175147, - [SMALL_STATE(8096)] = 175192, - [SMALL_STATE(8097)] = 175237, - [SMALL_STATE(8098)] = 175282, - [SMALL_STATE(8099)] = 175327, - [SMALL_STATE(8100)] = 175372, - [SMALL_STATE(8101)] = 175417, - [SMALL_STATE(8102)] = 175462, - [SMALL_STATE(8103)] = 175507, - [SMALL_STATE(8104)] = 175552, - [SMALL_STATE(8105)] = 175597, - [SMALL_STATE(8106)] = 175642, - [SMALL_STATE(8107)] = 175687, - [SMALL_STATE(8108)] = 175732, - [SMALL_STATE(8109)] = 175777, - [SMALL_STATE(8110)] = 175822, - [SMALL_STATE(8111)] = 175867, - [SMALL_STATE(8112)] = 175912, - [SMALL_STATE(8113)] = 175957, - [SMALL_STATE(8114)] = 176002, - [SMALL_STATE(8115)] = 176047, - [SMALL_STATE(8116)] = 176092, - [SMALL_STATE(8117)] = 176137, - [SMALL_STATE(8118)] = 176182, - [SMALL_STATE(8119)] = 176227, - [SMALL_STATE(8120)] = 176272, - [SMALL_STATE(8121)] = 176317, - [SMALL_STATE(8122)] = 176362, - [SMALL_STATE(8123)] = 176407, - [SMALL_STATE(8124)] = 176452, - [SMALL_STATE(8125)] = 176497, - [SMALL_STATE(8126)] = 176542, - [SMALL_STATE(8127)] = 176587, - [SMALL_STATE(8128)] = 176632, - [SMALL_STATE(8129)] = 176677, - [SMALL_STATE(8130)] = 176722, - [SMALL_STATE(8131)] = 176767, - [SMALL_STATE(8132)] = 176812, - [SMALL_STATE(8133)] = 176857, - [SMALL_STATE(8134)] = 176902, - [SMALL_STATE(8135)] = 176947, - [SMALL_STATE(8136)] = 176992, - [SMALL_STATE(8137)] = 177037, - [SMALL_STATE(8138)] = 177082, - [SMALL_STATE(8139)] = 177127, - [SMALL_STATE(8140)] = 177172, - [SMALL_STATE(8141)] = 177217, - [SMALL_STATE(8142)] = 177262, - [SMALL_STATE(8143)] = 177307, - [SMALL_STATE(8144)] = 177352, - [SMALL_STATE(8145)] = 177356, - [SMALL_STATE(8146)] = 177360, - [SMALL_STATE(8147)] = 177364, - [SMALL_STATE(8148)] = 177368, - [SMALL_STATE(8149)] = 177372, - [SMALL_STATE(8150)] = 177376, - [SMALL_STATE(8151)] = 177380, - [SMALL_STATE(8152)] = 177384, - [SMALL_STATE(8153)] = 177388, - [SMALL_STATE(8154)] = 177392, - [SMALL_STATE(8155)] = 177396, - [SMALL_STATE(8156)] = 177400, - [SMALL_STATE(8157)] = 177404, - [SMALL_STATE(8158)] = 177408, - [SMALL_STATE(8159)] = 177412, - [SMALL_STATE(8160)] = 177416, + [SMALL_STATE(5454)] = 0, + [SMALL_STATE(5455)] = 93, + [SMALL_STATE(5456)] = 188, + [SMALL_STATE(5457)] = 279, + [SMALL_STATE(5458)] = 370, + [SMALL_STATE(5459)] = 461, + [SMALL_STATE(5460)] = 556, + [SMALL_STATE(5461)] = 655, + [SMALL_STATE(5462)] = 746, + [SMALL_STATE(5463)] = 843, + [SMALL_STATE(5464)] = 934, + [SMALL_STATE(5465)] = 1029, + [SMALL_STATE(5466)] = 1128, + [SMALL_STATE(5467)] = 1219, + [SMALL_STATE(5468)] = 1314, + [SMALL_STATE(5469)] = 1405, + [SMALL_STATE(5470)] = 1496, + [SMALL_STATE(5471)] = 1609, + [SMALL_STATE(5472)] = 1703, + [SMALL_STATE(5473)] = 1795, + [SMALL_STATE(5474)] = 1889, + [SMALL_STATE(5475)] = 1981, + [SMALL_STATE(5476)] = 2095, + [SMALL_STATE(5477)] = 2189, + [SMALL_STATE(5478)] = 2281, + [SMALL_STATE(5479)] = 2373, + [SMALL_STATE(5480)] = 2463, + [SMALL_STATE(5481)] = 2557, + [SMALL_STATE(5482)] = 2655, + [SMALL_STATE(5483)] = 2749, + [SMALL_STATE(5484)] = 2843, + [SMALL_STATE(5485)] = 2953, + [SMALL_STATE(5486)] = 3044, + [SMALL_STATE(5487)] = 3133, + [SMALL_STATE(5488)] = 3222, + [SMALL_STATE(5489)] = 3311, + [SMALL_STATE(5490)] = 3400, + [SMALL_STATE(5491)] = 3493, + [SMALL_STATE(5492)] = 3582, + [SMALL_STATE(5493)] = 3675, + [SMALL_STATE(5494)] = 3768, + [SMALL_STATE(5495)] = 3857, + [SMALL_STATE(5496)] = 3980, + [SMALL_STATE(5497)] = 4073, + [SMALL_STATE(5498)] = 4166, + [SMALL_STATE(5499)] = 4257, + [SMALL_STATE(5500)] = 4346, + [SMALL_STATE(5501)] = 4435, + [SMALL_STATE(5502)] = 4524, + [SMALL_STATE(5503)] = 4613, + [SMALL_STATE(5504)] = 4702, + [SMALL_STATE(5505)] = 4791, + [SMALL_STATE(5506)] = 4880, + [SMALL_STATE(5507)] = 4969, + [SMALL_STATE(5508)] = 5062, + [SMALL_STATE(5509)] = 5151, + [SMALL_STATE(5510)] = 5240, + [SMALL_STATE(5511)] = 5329, + [SMALL_STATE(5512)] = 5418, + [SMALL_STATE(5513)] = 5507, + [SMALL_STATE(5514)] = 5596, + [SMALL_STATE(5515)] = 5685, + [SMALL_STATE(5516)] = 5774, + [SMALL_STATE(5517)] = 5863, + [SMALL_STATE(5518)] = 5956, + [SMALL_STATE(5519)] = 6045, + [SMALL_STATE(5520)] = 6138, + [SMALL_STATE(5521)] = 6227, + [SMALL_STATE(5522)] = 6320, + [SMALL_STATE(5523)] = 6412, + [SMALL_STATE(5524)] = 6500, + [SMALL_STATE(5525)] = 6608, + [SMALL_STATE(5526)] = 6696, + [SMALL_STATE(5527)] = 6786, + [SMALL_STATE(5528)] = 6878, + [SMALL_STATE(5529)] = 6970, + [SMALL_STATE(5530)] = 7062, + [SMALL_STATE(5531)] = 7180, + [SMALL_STATE(5532)] = 7298, + [SMALL_STATE(5533)] = 7386, + [SMALL_STATE(5534)] = 7478, + [SMALL_STATE(5535)] = 7570, + [SMALL_STATE(5536)] = 7666, + [SMALL_STATE(5537)] = 7784, + [SMALL_STATE(5538)] = 7878, + [SMALL_STATE(5539)] = 7968, + [SMALL_STATE(5540)] = 8086, + [SMALL_STATE(5541)] = 8178, + [SMALL_STATE(5542)] = 8272, + [SMALL_STATE(5543)] = 8380, + [SMALL_STATE(5544)] = 8498, + [SMALL_STATE(5545)] = 8586, + [SMALL_STATE(5546)] = 8678, + [SMALL_STATE(5547)] = 8770, + [SMALL_STATE(5548)] = 8888, + [SMALL_STATE(5549)] = 8983, + [SMALL_STATE(5550)] = 9074, + [SMALL_STATE(5551)] = 9191, + [SMALL_STATE(5552)] = 9316, + [SMALL_STATE(5553)] = 9409, + [SMALL_STATE(5554)] = 9500, + [SMALL_STATE(5555)] = 9587, + [SMALL_STATE(5556)] = 9678, + [SMALL_STATE(5557)] = 9773, + [SMALL_STATE(5558)] = 9898, + [SMALL_STATE(5559)] = 10005, + [SMALL_STATE(5560)] = 10120, + [SMALL_STATE(5561)] = 10211, + [SMALL_STATE(5562)] = 10302, + [SMALL_STATE(5563)] = 10389, + [SMALL_STATE(5564)] = 10514, + [SMALL_STATE(5565)] = 10601, + [SMALL_STATE(5566)] = 10726, + [SMALL_STATE(5567)] = 10851, + [SMALL_STATE(5568)] = 10968, + [SMALL_STATE(5569)] = 11063, + [SMALL_STATE(5570)] = 11170, + [SMALL_STATE(5571)] = 11265, + [SMALL_STATE(5572)] = 11356, + [SMALL_STATE(5573)] = 11443, + [SMALL_STATE(5574)] = 11534, + [SMALL_STATE(5575)] = 11659, + [SMALL_STATE(5576)] = 11748, + [SMALL_STATE(5577)] = 11841, + [SMALL_STATE(5578)] = 11930, + [SMALL_STATE(5579)] = 12021, + [SMALL_STATE(5580)] = 12112, + [SMALL_STATE(5581)] = 12200, + [SMALL_STATE(5582)] = 12286, + [SMALL_STATE(5583)] = 12372, + [SMALL_STATE(5584)] = 12458, + [SMALL_STATE(5585)] = 12544, + [SMALL_STATE(5586)] = 12632, + [SMALL_STATE(5587)] = 12754, + [SMALL_STATE(5588)] = 12876, + [SMALL_STATE(5589)] = 12962, + [SMALL_STATE(5590)] = 13048, + [SMALL_STATE(5591)] = 13170, + [SMALL_STATE(5592)] = 13256, + [SMALL_STATE(5593)] = 13342, + [SMALL_STATE(5594)] = 13446, + [SMALL_STATE(5595)] = 13532, + [SMALL_STATE(5596)] = 13618, + [SMALL_STATE(5597)] = 13708, + [SMALL_STATE(5598)] = 13794, + [SMALL_STATE(5599)] = 13898, + [SMALL_STATE(5600)] = 13984, + [SMALL_STATE(5601)] = 14074, + [SMALL_STATE(5602)] = 14160, + [SMALL_STATE(5603)] = 14246, + [SMALL_STATE(5604)] = 14332, + [SMALL_STATE(5605)] = 14448, + [SMALL_STATE(5606)] = 14538, + [SMALL_STATE(5607)] = 14626, + [SMALL_STATE(5608)] = 14730, + [SMALL_STATE(5609)] = 14852, + [SMALL_STATE(5610)] = 14938, + [SMALL_STATE(5611)] = 15024, + [SMALL_STATE(5612)] = 15110, + [SMALL_STATE(5613)] = 15196, + [SMALL_STATE(5614)] = 15282, + [SMALL_STATE(5615)] = 15374, + [SMALL_STATE(5616)] = 15478, + [SMALL_STATE(5617)] = 15600, + [SMALL_STATE(5618)] = 15690, + [SMALL_STATE(5619)] = 15780, + [SMALL_STATE(5620)] = 15866, + [SMALL_STATE(5621)] = 15952, + [SMALL_STATE(5622)] = 16042, + [SMALL_STATE(5623)] = 16128, + [SMALL_STATE(5624)] = 16232, + [SMALL_STATE(5625)] = 16318, + [SMALL_STATE(5626)] = 16406, + [SMALL_STATE(5627)] = 16498, + [SMALL_STATE(5628)] = 16586, + [SMALL_STATE(5629)] = 16676, + [SMALL_STATE(5630)] = 16766, + [SMALL_STATE(5631)] = 16852, + [SMALL_STATE(5632)] = 16940, + [SMALL_STATE(5633)] = 17026, + [SMALL_STATE(5634)] = 17114, + [SMALL_STATE(5635)] = 17200, + [SMALL_STATE(5636)] = 17286, + [SMALL_STATE(5637)] = 17372, + [SMALL_STATE(5638)] = 17460, + [SMALL_STATE(5639)] = 17550, + [SMALL_STATE(5640)] = 17636, + [SMALL_STATE(5641)] = 17730, + [SMALL_STATE(5642)] = 17816, + [SMALL_STATE(5643)] = 17904, + [SMALL_STATE(5644)] = 17990, + [SMALL_STATE(5645)] = 18076, + [SMALL_STATE(5646)] = 18162, + [SMALL_STATE(5647)] = 18250, + [SMALL_STATE(5648)] = 18336, + [SMALL_STATE(5649)] = 18452, + [SMALL_STATE(5650)] = 18542, + [SMALL_STATE(5651)] = 18636, + [SMALL_STATE(5652)] = 18722, + [SMALL_STATE(5653)] = 18844, + [SMALL_STATE(5654)] = 18929, + [SMALL_STATE(5655)] = 19014, + [SMALL_STATE(5656)] = 19129, + [SMALL_STATE(5657)] = 19244, + [SMALL_STATE(5658)] = 19329, + [SMALL_STATE(5659)] = 19418, + [SMALL_STATE(5660)] = 19507, + [SMALL_STATE(5661)] = 19592, + [SMALL_STATE(5662)] = 19677, + [SMALL_STATE(5663)] = 19768, + [SMALL_STATE(5664)] = 19853, + [SMALL_STATE(5665)] = 19968, + [SMALL_STATE(5666)] = 20057, + [SMALL_STATE(5667)] = 20142, + [SMALL_STATE(5668)] = 20229, + [SMALL_STATE(5669)] = 20344, + [SMALL_STATE(5670)] = 20459, + [SMALL_STATE(5671)] = 20548, + [SMALL_STATE(5672)] = 20633, + [SMALL_STATE(5673)] = 20718, + [SMALL_STATE(5674)] = 20803, + [SMALL_STATE(5675)] = 20888, + [SMALL_STATE(5676)] = 20973, + [SMALL_STATE(5677)] = 21060, + [SMALL_STATE(5678)] = 21145, + [SMALL_STATE(5679)] = 21234, + [SMALL_STATE(5680)] = 21319, + [SMALL_STATE(5681)] = 21404, + [SMALL_STATE(5682)] = 21493, + [SMALL_STATE(5683)] = 21578, + [SMALL_STATE(5684)] = 21663, + [SMALL_STATE(5685)] = 21752, + [SMALL_STATE(5686)] = 21837, + [SMALL_STATE(5687)] = 21922, + [SMALL_STATE(5688)] = 22037, + [SMALL_STATE(5689)] = 22126, + [SMALL_STATE(5690)] = 22211, + [SMALL_STATE(5691)] = 22296, + [SMALL_STATE(5692)] = 22381, + [SMALL_STATE(5693)] = 22466, + [SMALL_STATE(5694)] = 22581, + [SMALL_STATE(5695)] = 22666, + [SMALL_STATE(5696)] = 22781, + [SMALL_STATE(5697)] = 22896, + [SMALL_STATE(5698)] = 22981, + [SMALL_STATE(5699)] = 23070, + [SMALL_STATE(5700)] = 23155, + [SMALL_STATE(5701)] = 23244, + [SMALL_STATE(5702)] = 23359, + [SMALL_STATE(5703)] = 23444, + [SMALL_STATE(5704)] = 23559, + [SMALL_STATE(5705)] = 23644, + [SMALL_STATE(5706)] = 23759, + [SMALL_STATE(5707)] = 23844, + [SMALL_STATE(5708)] = 23929, + [SMALL_STATE(5709)] = 24044, + [SMALL_STATE(5710)] = 24129, + [SMALL_STATE(5711)] = 24214, + [SMALL_STATE(5712)] = 24301, + [SMALL_STATE(5713)] = 24390, + [SMALL_STATE(5714)] = 24475, + [SMALL_STATE(5715)] = 24560, + [SMALL_STATE(5716)] = 24647, + [SMALL_STATE(5717)] = 24762, + [SMALL_STATE(5718)] = 24851, + [SMALL_STATE(5719)] = 24966, + [SMALL_STATE(5720)] = 25055, + [SMALL_STATE(5721)] = 25170, + [SMALL_STATE(5722)] = 25255, + [SMALL_STATE(5723)] = 25344, + [SMALL_STATE(5724)] = 25429, + [SMALL_STATE(5725)] = 25514, + [SMALL_STATE(5726)] = 25599, + [SMALL_STATE(5727)] = 25684, + [SMALL_STATE(5728)] = 25769, + [SMALL_STATE(5729)] = 25884, + [SMALL_STATE(5730)] = 25999, + [SMALL_STATE(5731)] = 26084, + [SMALL_STATE(5732)] = 26169, + [SMALL_STATE(5733)] = 26254, + [SMALL_STATE(5734)] = 26339, + [SMALL_STATE(5735)] = 26426, + [SMALL_STATE(5736)] = 26511, + [SMALL_STATE(5737)] = 26596, + [SMALL_STATE(5738)] = 26711, + [SMALL_STATE(5739)] = 26796, + [SMALL_STATE(5740)] = 26881, + [SMALL_STATE(5741)] = 26966, + [SMALL_STATE(5742)] = 27055, + [SMALL_STATE(5743)] = 27140, + [SMALL_STATE(5744)] = 27227, + [SMALL_STATE(5745)] = 27312, + [SMALL_STATE(5746)] = 27397, + [SMALL_STATE(5747)] = 27482, + [SMALL_STATE(5748)] = 27569, + [SMALL_STATE(5749)] = 27654, + [SMALL_STATE(5750)] = 27769, + [SMALL_STATE(5751)] = 27854, + [SMALL_STATE(5752)] = 27939, + [SMALL_STATE(5753)] = 28024, + [SMALL_STATE(5754)] = 28109, + [SMALL_STATE(5755)] = 28194, + [SMALL_STATE(5756)] = 28279, + [SMALL_STATE(5757)] = 28394, + [SMALL_STATE(5758)] = 28479, + [SMALL_STATE(5759)] = 28564, + [SMALL_STATE(5760)] = 28649, + [SMALL_STATE(5761)] = 28762, + [SMALL_STATE(5762)] = 28847, + [SMALL_STATE(5763)] = 28932, + [SMALL_STATE(5764)] = 29017, + [SMALL_STATE(5765)] = 29106, + [SMALL_STATE(5766)] = 29191, + [SMALL_STATE(5767)] = 29306, + [SMALL_STATE(5768)] = 29391, + [SMALL_STATE(5769)] = 29506, + [SMALL_STATE(5770)] = 29591, + [SMALL_STATE(5771)] = 29678, + [SMALL_STATE(5772)] = 29763, + [SMALL_STATE(5773)] = 29852, + [SMALL_STATE(5774)] = 29937, + [SMALL_STATE(5775)] = 30022, + [SMALL_STATE(5776)] = 30107, + [SMALL_STATE(5777)] = 30192, + [SMALL_STATE(5778)] = 30277, + [SMALL_STATE(5779)] = 30362, + [SMALL_STATE(5780)] = 30447, + [SMALL_STATE(5781)] = 30532, + [SMALL_STATE(5782)] = 30617, + [SMALL_STATE(5783)] = 30732, + [SMALL_STATE(5784)] = 30817, + [SMALL_STATE(5785)] = 30902, + [SMALL_STATE(5786)] = 30987, + [SMALL_STATE(5787)] = 31072, + [SMALL_STATE(5788)] = 31157, + [SMALL_STATE(5789)] = 31242, + [SMALL_STATE(5790)] = 31347, + [SMALL_STATE(5791)] = 31432, + [SMALL_STATE(5792)] = 31547, + [SMALL_STATE(5793)] = 31634, + [SMALL_STATE(5794)] = 31719, + [SMALL_STATE(5795)] = 31804, + [SMALL_STATE(5796)] = 31889, + [SMALL_STATE(5797)] = 31974, + [SMALL_STATE(5798)] = 32059, + [SMALL_STATE(5799)] = 32174, + [SMALL_STATE(5800)] = 32259, + [SMALL_STATE(5801)] = 32348, + [SMALL_STATE(5802)] = 32433, + [SMALL_STATE(5803)] = 32535, + [SMALL_STATE(5804)] = 32637, + [SMALL_STATE(5805)] = 32725, + [SMALL_STATE(5806)] = 32813, + [SMALL_STATE(5807)] = 32901, + [SMALL_STATE(5808)] = 32987, + [SMALL_STATE(5809)] = 33075, + [SMALL_STATE(5810)] = 33161, + [SMALL_STATE(5811)] = 33263, + [SMALL_STATE(5812)] = 33365, + [SMALL_STATE(5813)] = 33467, + [SMALL_STATE(5814)] = 33553, + [SMALL_STATE(5815)] = 33655, + [SMALL_STATE(5816)] = 33757, + [SMALL_STATE(5817)] = 33845, + [SMALL_STATE(5818)] = 33947, + [SMALL_STATE(5819)] = 34049, + [SMALL_STATE(5820)] = 34137, + [SMALL_STATE(5821)] = 34225, + [SMALL_STATE(5822)] = 34313, + [SMALL_STATE(5823)] = 34415, + [SMALL_STATE(5824)] = 34503, + [SMALL_STATE(5825)] = 34605, + [SMALL_STATE(5826)] = 34699, + [SMALL_STATE(5827)] = 34801, + [SMALL_STATE(5828)] = 34903, + [SMALL_STATE(5829)] = 35005, + [SMALL_STATE(5830)] = 35107, + [SMALL_STATE(5831)] = 35209, + [SMALL_STATE(5832)] = 35311, + [SMALL_STATE(5833)] = 35399, + [SMALL_STATE(5834)] = 35485, + [SMALL_STATE(5835)] = 35587, + [SMALL_STATE(5836)] = 35673, + [SMALL_STATE(5837)] = 35761, + [SMALL_STATE(5838)] = 35867, + [SMALL_STATE(5839)] = 35969, + [SMALL_STATE(5840)] = 36057, + [SMALL_STATE(5841)] = 36159, + [SMALL_STATE(5842)] = 36261, + [SMALL_STATE(5843)] = 36373, + [SMALL_STATE(5844)] = 36465, + [SMALL_STATE(5845)] = 36553, + [SMALL_STATE(5846)] = 36637, + [SMALL_STATE(5847)] = 36739, + [SMALL_STATE(5848)] = 36825, + [SMALL_STATE(5849)] = 36911, + [SMALL_STATE(5850)] = 37013, + [SMALL_STATE(5851)] = 37115, + [SMALL_STATE(5852)] = 37203, + [SMALL_STATE(5853)] = 37291, + [SMALL_STATE(5854)] = 37393, + [SMALL_STATE(5855)] = 37505, + [SMALL_STATE(5856)] = 37593, + [SMALL_STATE(5857)] = 37679, + [SMALL_STATE(5858)] = 37771, + [SMALL_STATE(5859)] = 37859, + [SMALL_STATE(5860)] = 37961, + [SMALL_STATE(5861)] = 38063, + [SMALL_STATE(5862)] = 38165, + [SMALL_STATE(5863)] = 38251, + [SMALL_STATE(5864)] = 38339, + [SMALL_STATE(5865)] = 38425, + [SMALL_STATE(5866)] = 38527, + [SMALL_STATE(5867)] = 38615, + [SMALL_STATE(5868)] = 38703, + [SMALL_STATE(5869)] = 38791, + [SMALL_STATE(5870)] = 38893, + [SMALL_STATE(5871)] = 38995, + [SMALL_STATE(5872)] = 39089, + [SMALL_STATE(5873)] = 39191, + [SMALL_STATE(5874)] = 39303, + [SMALL_STATE(5875)] = 39405, + [SMALL_STATE(5876)] = 39507, + [SMALL_STATE(5877)] = 39609, + [SMALL_STATE(5878)] = 39711, + [SMALL_STATE(5879)] = 39799, + [SMALL_STATE(5880)] = 39901, + [SMALL_STATE(5881)] = 39989, + [SMALL_STATE(5882)] = 40075, + [SMALL_STATE(5883)] = 40177, + [SMALL_STATE(5884)] = 40279, + [SMALL_STATE(5885)] = 40385, + [SMALL_STATE(5886)] = 40487, + [SMALL_STATE(5887)] = 40575, + [SMALL_STATE(5888)] = 40677, + [SMALL_STATE(5889)] = 40779, + [SMALL_STATE(5890)] = 40867, + [SMALL_STATE(5891)] = 40977, + [SMALL_STATE(5892)] = 41065, + [SMALL_STATE(5893)] = 41153, + [SMALL_STATE(5894)] = 41241, + [SMALL_STATE(5895)] = 41324, + [SMALL_STATE(5896)] = 41411, + [SMALL_STATE(5897)] = 41498, + [SMALL_STATE(5898)] = 41585, + [SMALL_STATE(5899)] = 41692, + [SMALL_STATE(5900)] = 41777, + [SMALL_STATE(5901)] = 41862, + [SMALL_STATE(5902)] = 41949, + [SMALL_STATE(5903)] = 42034, + [SMALL_STATE(5904)] = 42121, + [SMALL_STATE(5905)] = 42206, + [SMALL_STATE(5906)] = 42289, + [SMALL_STATE(5907)] = 42374, + [SMALL_STATE(5908)] = 42457, + [SMALL_STATE(5909)] = 42550, + [SMALL_STATE(5910)] = 42637, + [SMALL_STATE(5911)] = 42722, + [SMALL_STATE(5912)] = 42829, + [SMALL_STATE(5913)] = 42936, + [SMALL_STATE(5914)] = 43021, + [SMALL_STATE(5915)] = 43120, + [SMALL_STATE(5916)] = 43211, + [SMALL_STATE(5917)] = 43294, + [SMALL_STATE(5918)] = 43379, + [SMALL_STATE(5919)] = 43470, + [SMALL_STATE(5920)] = 43557, + [SMALL_STATE(5921)] = 43640, + [SMALL_STATE(5922)] = 43727, + [SMALL_STATE(5923)] = 43812, + [SMALL_STATE(5924)] = 43895, + [SMALL_STATE(5925)] = 43984, + [SMALL_STATE(5926)] = 44071, + [SMALL_STATE(5927)] = 44162, + [SMALL_STATE(5928)] = 44249, + [SMALL_STATE(5929)] = 44334, + [SMALL_STATE(5930)] = 44421, + [SMALL_STATE(5931)] = 44504, + [SMALL_STATE(5932)] = 44589, + [SMALL_STATE(5933)] = 44676, + [SMALL_STATE(5934)] = 44763, + [SMALL_STATE(5935)] = 44870, + [SMALL_STATE(5936)] = 44955, + [SMALL_STATE(5937)] = 45038, + [SMALL_STATE(5938)] = 45125, + [SMALL_STATE(5939)] = 45209, + [SMALL_STATE(5940)] = 45295, + [SMALL_STATE(5941)] = 45381, + [SMALL_STATE(5942)] = 45473, + [SMALL_STATE(5943)] = 45567, + [SMALL_STATE(5944)] = 45653, + [SMALL_STATE(5945)] = 45737, + [SMALL_STATE(5946)] = 45823, + [SMALL_STATE(5947)] = 45923, + [SMALL_STATE(5948)] = 46015, + [SMALL_STATE(5949)] = 46099, + [SMALL_STATE(5950)] = 46185, + [SMALL_STATE(5951)] = 46271, + [SMALL_STATE(5952)] = 46355, + [SMALL_STATE(5953)] = 46441, + [SMALL_STATE(5954)] = 46533, + [SMALL_STATE(5955)] = 46617, + [SMALL_STATE(5956)] = 46703, + [SMALL_STATE(5957)] = 46789, + [SMALL_STATE(5958)] = 46875, + [SMALL_STATE(5959)] = 46961, + [SMALL_STATE(5960)] = 47061, + [SMALL_STATE(5961)] = 47145, + [SMALL_STATE(5962)] = 47231, + [SMALL_STATE(5963)] = 47317, + [SMALL_STATE(5964)] = 47401, + [SMALL_STATE(5965)] = 47487, + [SMALL_STATE(5966)] = 47571, + [SMALL_STATE(5967)] = 47671, + [SMALL_STATE(5968)] = 47775, + [SMALL_STATE(5969)] = 47879, + [SMALL_STATE(5970)] = 47965, + [SMALL_STATE(5971)] = 48049, + [SMALL_STATE(5972)] = 48135, + [SMALL_STATE(5973)] = 48221, + [SMALL_STATE(5974)] = 48305, + [SMALL_STATE(5975)] = 48389, + [SMALL_STATE(5976)] = 48475, + [SMALL_STATE(5977)] = 48559, + [SMALL_STATE(5978)] = 48645, + [SMALL_STATE(5979)] = 48731, + [SMALL_STATE(5980)] = 48817, + [SMALL_STATE(5981)] = 48903, + [SMALL_STATE(5982)] = 48989, + [SMALL_STATE(5983)] = 49075, + [SMALL_STATE(5984)] = 49159, + [SMALL_STATE(5985)] = 49245, + [SMALL_STATE(5986)] = 49329, + [SMALL_STATE(5987)] = 49415, + [SMALL_STATE(5988)] = 49501, + [SMALL_STATE(5989)] = 49585, + [SMALL_STATE(5990)] = 49675, + [SMALL_STATE(5991)] = 49761, + [SMALL_STATE(5992)] = 49845, + [SMALL_STATE(5993)] = 49931, + [SMALL_STATE(5994)] = 50017, + [SMALL_STATE(5995)] = 50103, + [SMALL_STATE(5996)] = 50189, + [SMALL_STATE(5997)] = 50281, + [SMALL_STATE(5998)] = 50365, + [SMALL_STATE(5999)] = 50457, + [SMALL_STATE(6000)] = 50549, + [SMALL_STATE(6001)] = 50653, + [SMALL_STATE(6002)] = 50753, + [SMALL_STATE(6003)] = 50854, + [SMALL_STATE(6004)] = 50945, + [SMALL_STATE(6005)] = 51028, + [SMALL_STATE(6006)] = 51129, + [SMALL_STATE(6007)] = 51220, + [SMALL_STATE(6008)] = 51321, + [SMALL_STATE(6009)] = 51416, + [SMALL_STATE(6010)] = 51507, + [SMALL_STATE(6011)] = 51606, + [SMALL_STATE(6012)] = 51697, + [SMALL_STATE(6013)] = 51788, + [SMALL_STATE(6014)] = 51889, + [SMALL_STATE(6015)] = 51980, + [SMALL_STATE(6016)] = 52071, + [SMALL_STATE(6017)] = 52162, + [SMALL_STATE(6018)] = 52263, + [SMALL_STATE(6019)] = 52354, + [SMALL_STATE(6020)] = 52445, + [SMALL_STATE(6021)] = 52546, + [SMALL_STATE(6022)] = 52647, + [SMALL_STATE(6023)] = 52748, + [SMALL_STATE(6024)] = 52847, + [SMALL_STATE(6025)] = 52946, + [SMALL_STATE(6026)] = 53044, + [SMALL_STATE(6027)] = 53142, + [SMALL_STATE(6028)] = 53244, + [SMALL_STATE(6029)] = 53342, + [SMALL_STATE(6030)] = 53436, + [SMALL_STATE(6031)] = 53534, + [SMALL_STATE(6032)] = 53630, + [SMALL_STATE(6033)] = 53726, + [SMALL_STATE(6034)] = 53812, + [SMALL_STATE(6035)] = 53906, + [SMALL_STATE(6036)] = 53994, + [SMALL_STATE(6037)] = 54090, + [SMALL_STATE(6038)] = 54188, + [SMALL_STATE(6039)] = 54286, + [SMALL_STATE(6040)] = 54384, + [SMALL_STATE(6041)] = 54466, + [SMALL_STATE(6042)] = 54548, + [SMALL_STATE(6043)] = 54644, + [SMALL_STATE(6044)] = 54736, + [SMALL_STATE(6045)] = 54828, + [SMALL_STATE(6046)] = 54926, + [SMALL_STATE(6047)] = 55008, + [SMALL_STATE(6048)] = 55096, + [SMALL_STATE(6049)] = 55192, + [SMALL_STATE(6050)] = 55290, + [SMALL_STATE(6051)] = 55386, + [SMALL_STATE(6052)] = 55474, + [SMALL_STATE(6053)] = 55572, + [SMALL_STATE(6054)] = 55672, + [SMALL_STATE(6055)] = 55767, + [SMALL_STATE(6056)] = 55862, + [SMALL_STATE(6057)] = 55957, + [SMALL_STATE(6058)] = 56052, + [SMALL_STATE(6059)] = 56147, + [SMALL_STATE(6060)] = 56242, + [SMALL_STATE(6061)] = 56337, + [SMALL_STATE(6062)] = 56424, + [SMALL_STATE(6063)] = 56505, + [SMALL_STATE(6064)] = 56600, + [SMALL_STATE(6065)] = 56695, + [SMALL_STATE(6066)] = 56776, + [SMALL_STATE(6067)] = 56871, + [SMALL_STATE(6068)] = 56966, + [SMALL_STATE(6069)] = 57061, + [SMALL_STATE(6070)] = 57156, + [SMALL_STATE(6071)] = 57251, + [SMALL_STATE(6072)] = 57346, + [SMALL_STATE(6073)] = 57441, + [SMALL_STATE(6074)] = 57536, + [SMALL_STATE(6075)] = 57631, + [SMALL_STATE(6076)] = 57726, + [SMALL_STATE(6077)] = 57821, + [SMALL_STATE(6078)] = 57916, + [SMALL_STATE(6079)] = 58011, + [SMALL_STATE(6080)] = 58106, + [SMALL_STATE(6081)] = 58201, + [SMALL_STATE(6082)] = 58296, + [SMALL_STATE(6083)] = 58390, + [SMALL_STATE(6084)] = 58482, + [SMALL_STATE(6085)] = 58568, + [SMALL_STATE(6086)] = 58660, + [SMALL_STATE(6087)] = 58742, + [SMALL_STATE(6088)] = 58834, + [SMALL_STATE(6089)] = 58926, + [SMALL_STATE(6090)] = 59004, + [SMALL_STATE(6091)] = 59096, + [SMALL_STATE(6092)] = 59188, + [SMALL_STATE(6093)] = 59282, + [SMALL_STATE(6094)] = 59368, + [SMALL_STATE(6095)] = 59460, + [SMALL_STATE(6096)] = 59552, + [SMALL_STATE(6097)] = 59638, + [SMALL_STATE(6098)] = 59730, + [SMALL_STATE(6099)] = 59822, + [SMALL_STATE(6100)] = 59915, + [SMALL_STATE(6101)] = 60004, + [SMALL_STATE(6102)] = 60097, + [SMALL_STATE(6103)] = 60190, + [SMALL_STATE(6104)] = 60269, + [SMALL_STATE(6105)] = 60362, + [SMALL_STATE(6106)] = 60455, + [SMALL_STATE(6107)] = 60548, + [SMALL_STATE(6108)] = 60641, + [SMALL_STATE(6109)] = 60718, + [SMALL_STATE(6110)] = 60811, + [SMALL_STATE(6111)] = 60904, + [SMALL_STATE(6112)] = 60997, + [SMALL_STATE(6113)] = 61090, + [SMALL_STATE(6114)] = 61183, + [SMALL_STATE(6115)] = 61276, + [SMALL_STATE(6116)] = 61369, + [SMALL_STATE(6117)] = 61462, + [SMALL_STATE(6118)] = 61551, + [SMALL_STATE(6119)] = 61644, + [SMALL_STATE(6120)] = 61737, + [SMALL_STATE(6121)] = 61830, + [SMALL_STATE(6122)] = 61923, + [SMALL_STATE(6123)] = 62012, + [SMALL_STATE(6124)] = 62105, + [SMALL_STATE(6125)] = 62198, + [SMALL_STATE(6126)] = 62275, + [SMALL_STATE(6127)] = 62368, + [SMALL_STATE(6128)] = 62461, + [SMALL_STATE(6129)] = 62554, + [SMALL_STATE(6130)] = 62647, + [SMALL_STATE(6131)] = 62740, + [SMALL_STATE(6132)] = 62829, + [SMALL_STATE(6133)] = 62922, + [SMALL_STATE(6134)] = 63015, + [SMALL_STATE(6135)] = 63108, + [SMALL_STATE(6136)] = 63201, + [SMALL_STATE(6137)] = 63294, + [SMALL_STATE(6138)] = 63387, + [SMALL_STATE(6139)] = 63480, + [SMALL_STATE(6140)] = 63573, + [SMALL_STATE(6141)] = 63666, + [SMALL_STATE(6142)] = 63759, + [SMALL_STATE(6143)] = 63836, + [SMALL_STATE(6144)] = 63929, + [SMALL_STATE(6145)] = 64022, + [SMALL_STATE(6146)] = 64115, + [SMALL_STATE(6147)] = 64208, + [SMALL_STATE(6148)] = 64301, + [SMALL_STATE(6149)] = 64378, + [SMALL_STATE(6150)] = 64471, + [SMALL_STATE(6151)] = 64564, + [SMALL_STATE(6152)] = 64641, + [SMALL_STATE(6153)] = 64734, + [SMALL_STATE(6154)] = 64811, + [SMALL_STATE(6155)] = 64904, + [SMALL_STATE(6156)] = 64989, + [SMALL_STATE(6157)] = 65082, + [SMALL_STATE(6158)] = 65175, + [SMALL_STATE(6159)] = 65252, + [SMALL_STATE(6160)] = 65345, + [SMALL_STATE(6161)] = 65438, + [SMALL_STATE(6162)] = 65517, + [SMALL_STATE(6163)] = 65602, + [SMALL_STATE(6164)] = 65695, + [SMALL_STATE(6165)] = 65788, + [SMALL_STATE(6166)] = 65881, + [SMALL_STATE(6167)] = 65974, + [SMALL_STATE(6168)] = 66063, + [SMALL_STATE(6169)] = 66156, + [SMALL_STATE(6170)] = 66233, + [SMALL_STATE(6171)] = 66326, + [SMALL_STATE(6172)] = 66419, + [SMALL_STATE(6173)] = 66512, + [SMALL_STATE(6174)] = 66605, + [SMALL_STATE(6175)] = 66698, + [SMALL_STATE(6176)] = 66788, + [SMALL_STATE(6177)] = 66874, + [SMALL_STATE(6178)] = 66960, + [SMALL_STATE(6179)] = 67046, + [SMALL_STATE(6180)] = 67130, + [SMALL_STATE(6181)] = 67214, + [SMALL_STATE(6182)] = 67300, + [SMALL_STATE(6183)] = 67386, + [SMALL_STATE(6184)] = 67470, + [SMALL_STATE(6185)] = 67554, + [SMALL_STATE(6186)] = 67640, + [SMALL_STATE(6187)] = 67726, + [SMALL_STATE(6188)] = 67816, + [SMALL_STATE(6189)] = 67902, + [SMALL_STATE(6190)] = 67988, + [SMALL_STATE(6191)] = 68074, + [SMALL_STATE(6192)] = 68160, + [SMALL_STATE(6193)] = 68250, + [SMALL_STATE(6194)] = 68336, + [SMALL_STATE(6195)] = 68422, + [SMALL_STATE(6196)] = 68508, + [SMALL_STATE(6197)] = 68594, + [SMALL_STATE(6198)] = 68680, + [SMALL_STATE(6199)] = 68756, + [SMALL_STATE(6200)] = 68842, + [SMALL_STATE(6201)] = 68926, + [SMALL_STATE(6202)] = 69012, + [SMALL_STATE(6203)] = 69098, + [SMALL_STATE(6204)] = 69184, + [SMALL_STATE(6205)] = 69270, + [SMALL_STATE(6206)] = 69356, + [SMALL_STATE(6207)] = 69442, + [SMALL_STATE(6208)] = 69528, + [SMALL_STATE(6209)] = 69614, + [SMALL_STATE(6210)] = 69700, + [SMALL_STATE(6211)] = 69784, + [SMALL_STATE(6212)] = 69860, + [SMALL_STATE(6213)] = 69950, + [SMALL_STATE(6214)] = 70026, + [SMALL_STATE(6215)] = 70114, + [SMALL_STATE(6216)] = 70200, + [SMALL_STATE(6217)] = 70287, + [SMALL_STATE(6218)] = 70374, + [SMALL_STATE(6219)] = 70461, + [SMALL_STATE(6220)] = 70548, + [SMALL_STATE(6221)] = 70635, + [SMALL_STATE(6222)] = 70722, + [SMALL_STATE(6223)] = 70809, + [SMALL_STATE(6224)] = 70896, + [SMALL_STATE(6225)] = 70983, + [SMALL_STATE(6226)] = 71070, + [SMALL_STATE(6227)] = 71157, + [SMALL_STATE(6228)] = 71244, + [SMALL_STATE(6229)] = 71331, + [SMALL_STATE(6230)] = 71415, + [SMALL_STATE(6231)] = 71499, + [SMALL_STATE(6232)] = 71581, + [SMALL_STATE(6233)] = 71665, + [SMALL_STATE(6234)] = 71749, + [SMALL_STATE(6235)] = 71833, + [SMALL_STATE(6236)] = 71917, + [SMALL_STATE(6237)] = 72001, + [SMALL_STATE(6238)] = 72085, + [SMALL_STATE(6239)] = 72169, + [SMALL_STATE(6240)] = 72253, + [SMALL_STATE(6241)] = 72337, + [SMALL_STATE(6242)] = 72421, + [SMALL_STATE(6243)] = 72505, + [SMALL_STATE(6244)] = 72589, + [SMALL_STATE(6245)] = 72673, + [SMALL_STATE(6246)] = 72757, + [SMALL_STATE(6247)] = 72831, + [SMALL_STATE(6248)] = 72915, + [SMALL_STATE(6249)] = 72999, + [SMALL_STATE(6250)] = 73083, + [SMALL_STATE(6251)] = 73167, + [SMALL_STATE(6252)] = 73251, + [SMALL_STATE(6253)] = 73327, + [SMALL_STATE(6254)] = 73411, + [SMALL_STATE(6255)] = 73485, + [SMALL_STATE(6256)] = 73569, + [SMALL_STATE(6257)] = 73653, + [SMALL_STATE(6258)] = 73737, + [SMALL_STATE(6259)] = 73821, + [SMALL_STATE(6260)] = 73905, + [SMALL_STATE(6261)] = 73989, + [SMALL_STATE(6262)] = 74073, + [SMALL_STATE(6263)] = 74157, + [SMALL_STATE(6264)] = 74241, + [SMALL_STATE(6265)] = 74315, + [SMALL_STATE(6266)] = 74399, + [SMALL_STATE(6267)] = 74483, + [SMALL_STATE(6268)] = 74565, + [SMALL_STATE(6269)] = 74649, + [SMALL_STATE(6270)] = 74723, + [SMALL_STATE(6271)] = 74807, + [SMALL_STATE(6272)] = 74891, + [SMALL_STATE(6273)] = 74975, + [SMALL_STATE(6274)] = 75059, + [SMALL_STATE(6275)] = 75143, + [SMALL_STATE(6276)] = 75227, + [SMALL_STATE(6277)] = 75311, + [SMALL_STATE(6278)] = 75395, + [SMALL_STATE(6279)] = 75479, + [SMALL_STATE(6280)] = 75563, + [SMALL_STATE(6281)] = 75647, + [SMALL_STATE(6282)] = 75731, + [SMALL_STATE(6283)] = 75815, + [SMALL_STATE(6284)] = 75899, + [SMALL_STATE(6285)] = 75983, + [SMALL_STATE(6286)] = 76067, + [SMALL_STATE(6287)] = 76151, + [SMALL_STATE(6288)] = 76235, + [SMALL_STATE(6289)] = 76319, + [SMALL_STATE(6290)] = 76403, + [SMALL_STATE(6291)] = 76487, + [SMALL_STATE(6292)] = 76571, + [SMALL_STATE(6293)] = 76655, + [SMALL_STATE(6294)] = 76739, + [SMALL_STATE(6295)] = 76823, + [SMALL_STATE(6296)] = 76907, + [SMALL_STATE(6297)] = 76991, + [SMALL_STATE(6298)] = 77075, + [SMALL_STATE(6299)] = 77149, + [SMALL_STATE(6300)] = 77233, + [SMALL_STATE(6301)] = 77317, + [SMALL_STATE(6302)] = 77401, + [SMALL_STATE(6303)] = 77485, + [SMALL_STATE(6304)] = 77569, + [SMALL_STATE(6305)] = 77653, + [SMALL_STATE(6306)] = 77737, + [SMALL_STATE(6307)] = 77821, + [SMALL_STATE(6308)] = 77905, + [SMALL_STATE(6309)] = 77989, + [SMALL_STATE(6310)] = 78073, + [SMALL_STATE(6311)] = 78157, + [SMALL_STATE(6312)] = 78239, + [SMALL_STATE(6313)] = 78323, + [SMALL_STATE(6314)] = 78407, + [SMALL_STATE(6315)] = 78491, + [SMALL_STATE(6316)] = 78573, + [SMALL_STATE(6317)] = 78657, + [SMALL_STATE(6318)] = 78741, + [SMALL_STATE(6319)] = 78825, + [SMALL_STATE(6320)] = 78909, + [SMALL_STATE(6321)] = 78993, + [SMALL_STATE(6322)] = 79077, + [SMALL_STATE(6323)] = 79161, + [SMALL_STATE(6324)] = 79245, + [SMALL_STATE(6325)] = 79329, + [SMALL_STATE(6326)] = 79413, + [SMALL_STATE(6327)] = 79497, + [SMALL_STATE(6328)] = 79581, + [SMALL_STATE(6329)] = 79665, + [SMALL_STATE(6330)] = 79749, + [SMALL_STATE(6331)] = 79833, + [SMALL_STATE(6332)] = 79917, + [SMALL_STATE(6333)] = 80001, + [SMALL_STATE(6334)] = 80085, + [SMALL_STATE(6335)] = 80169, + [SMALL_STATE(6336)] = 80251, + [SMALL_STATE(6337)] = 80333, + [SMALL_STATE(6338)] = 80417, + [SMALL_STATE(6339)] = 80501, + [SMALL_STATE(6340)] = 80585, + [SMALL_STATE(6341)] = 80669, + [SMALL_STATE(6342)] = 80753, + [SMALL_STATE(6343)] = 80837, + [SMALL_STATE(6344)] = 80921, + [SMALL_STATE(6345)] = 80995, + [SMALL_STATE(6346)] = 81079, + [SMALL_STATE(6347)] = 81163, + [SMALL_STATE(6348)] = 81245, + [SMALL_STATE(6349)] = 81329, + [SMALL_STATE(6350)] = 81413, + [SMALL_STATE(6351)] = 81497, + [SMALL_STATE(6352)] = 81581, + [SMALL_STATE(6353)] = 81665, + [SMALL_STATE(6354)] = 81749, + [SMALL_STATE(6355)] = 81833, + [SMALL_STATE(6356)] = 81917, + [SMALL_STATE(6357)] = 82001, + [SMALL_STATE(6358)] = 82085, + [SMALL_STATE(6359)] = 82169, + [SMALL_STATE(6360)] = 82251, + [SMALL_STATE(6361)] = 82335, + [SMALL_STATE(6362)] = 82419, + [SMALL_STATE(6363)] = 82501, + [SMALL_STATE(6364)] = 82576, + [SMALL_STATE(6365)] = 82657, + [SMALL_STATE(6366)] = 82738, + [SMALL_STATE(6367)] = 82813, + [SMALL_STATE(6368)] = 82894, + [SMALL_STATE(6369)] = 82975, + [SMALL_STATE(6370)] = 83056, + [SMALL_STATE(6371)] = 83134, + [SMALL_STATE(6372)] = 83212, + [SMALL_STATE(6373)] = 83284, + [SMALL_STATE(6374)] = 83362, + [SMALL_STATE(6375)] = 83440, + [SMALL_STATE(6376)] = 83518, + [SMALL_STATE(6377)] = 83596, + [SMALL_STATE(6378)] = 83674, + [SMALL_STATE(6379)] = 83752, + [SMALL_STATE(6380)] = 83830, + [SMALL_STATE(6381)] = 83908, + [SMALL_STATE(6382)] = 83986, + [SMALL_STATE(6383)] = 84064, + [SMALL_STATE(6384)] = 84142, + [SMALL_STATE(6385)] = 84220, + [SMALL_STATE(6386)] = 84298, + [SMALL_STATE(6387)] = 84376, + [SMALL_STATE(6388)] = 84454, + [SMALL_STATE(6389)] = 84532, + [SMALL_STATE(6390)] = 84610, + [SMALL_STATE(6391)] = 84688, + [SMALL_STATE(6392)] = 84766, + [SMALL_STATE(6393)] = 84844, + [SMALL_STATE(6394)] = 84922, + [SMALL_STATE(6395)] = 85000, + [SMALL_STATE(6396)] = 85078, + [SMALL_STATE(6397)] = 85156, + [SMALL_STATE(6398)] = 85234, + [SMALL_STATE(6399)] = 85312, + [SMALL_STATE(6400)] = 85390, + [SMALL_STATE(6401)] = 85468, + [SMALL_STATE(6402)] = 85546, + [SMALL_STATE(6403)] = 85624, + [SMALL_STATE(6404)] = 85702, + [SMALL_STATE(6405)] = 85780, + [SMALL_STATE(6406)] = 85858, + [SMALL_STATE(6407)] = 85936, + [SMALL_STATE(6408)] = 86014, + [SMALL_STATE(6409)] = 86092, + [SMALL_STATE(6410)] = 86170, + [SMALL_STATE(6411)] = 86248, + [SMALL_STATE(6412)] = 86326, + [SMALL_STATE(6413)] = 86404, + [SMALL_STATE(6414)] = 86482, + [SMALL_STATE(6415)] = 86560, + [SMALL_STATE(6416)] = 86638, + [SMALL_STATE(6417)] = 86716, + [SMALL_STATE(6418)] = 86794, + [SMALL_STATE(6419)] = 86872, + [SMALL_STATE(6420)] = 86950, + [SMALL_STATE(6421)] = 87028, + [SMALL_STATE(6422)] = 87106, + [SMALL_STATE(6423)] = 87184, + [SMALL_STATE(6424)] = 87262, + [SMALL_STATE(6425)] = 87340, + [SMALL_STATE(6426)] = 87418, + [SMALL_STATE(6427)] = 87496, + [SMALL_STATE(6428)] = 87574, + [SMALL_STATE(6429)] = 87652, + [SMALL_STATE(6430)] = 87730, + [SMALL_STATE(6431)] = 87808, + [SMALL_STATE(6432)] = 87886, + [SMALL_STATE(6433)] = 87964, + [SMALL_STATE(6434)] = 88042, + [SMALL_STATE(6435)] = 88120, + [SMALL_STATE(6436)] = 88198, + [SMALL_STATE(6437)] = 88276, + [SMALL_STATE(6438)] = 88354, + [SMALL_STATE(6439)] = 88432, + [SMALL_STATE(6440)] = 88510, + [SMALL_STATE(6441)] = 88580, + [SMALL_STATE(6442)] = 88668, + [SMALL_STATE(6443)] = 88756, + [SMALL_STATE(6444)] = 88844, + [SMALL_STATE(6445)] = 88932, + [SMALL_STATE(6446)] = 89020, + [SMALL_STATE(6447)] = 89108, + [SMALL_STATE(6448)] = 89196, + [SMALL_STATE(6449)] = 89284, + [SMALL_STATE(6450)] = 89372, + [SMALL_STATE(6451)] = 89460, + [SMALL_STATE(6452)] = 89548, + [SMALL_STATE(6453)] = 89636, + [SMALL_STATE(6454)] = 89724, + [SMALL_STATE(6455)] = 89812, + [SMALL_STATE(6456)] = 89900, + [SMALL_STATE(6457)] = 89988, + [SMALL_STATE(6458)] = 90076, + [SMALL_STATE(6459)] = 90164, + [SMALL_STATE(6460)] = 90252, + [SMALL_STATE(6461)] = 90340, + [SMALL_STATE(6462)] = 90428, + [SMALL_STATE(6463)] = 90516, + [SMALL_STATE(6464)] = 90604, + [SMALL_STATE(6465)] = 90692, + [SMALL_STATE(6466)] = 90780, + [SMALL_STATE(6467)] = 90868, + [SMALL_STATE(6468)] = 90956, + [SMALL_STATE(6469)] = 91044, + [SMALL_STATE(6470)] = 91132, + [SMALL_STATE(6471)] = 91220, + [SMALL_STATE(6472)] = 91308, + [SMALL_STATE(6473)] = 91396, + [SMALL_STATE(6474)] = 91484, + [SMALL_STATE(6475)] = 91572, + [SMALL_STATE(6476)] = 91660, + [SMALL_STATE(6477)] = 91748, + [SMALL_STATE(6478)] = 91836, + [SMALL_STATE(6479)] = 91924, + [SMALL_STATE(6480)] = 92012, + [SMALL_STATE(6481)] = 92100, + [SMALL_STATE(6482)] = 92185, + [SMALL_STATE(6483)] = 92270, + [SMALL_STATE(6484)] = 92355, + [SMALL_STATE(6485)] = 92440, + [SMALL_STATE(6486)] = 92525, + [SMALL_STATE(6487)] = 92610, + [SMALL_STATE(6488)] = 92695, + [SMALL_STATE(6489)] = 92780, + [SMALL_STATE(6490)] = 92865, + [SMALL_STATE(6491)] = 92950, + [SMALL_STATE(6492)] = 93035, + [SMALL_STATE(6493)] = 93120, + [SMALL_STATE(6494)] = 93205, + [SMALL_STATE(6495)] = 93290, + [SMALL_STATE(6496)] = 93375, + [SMALL_STATE(6497)] = 93460, + [SMALL_STATE(6498)] = 93545, + [SMALL_STATE(6499)] = 93630, + [SMALL_STATE(6500)] = 93715, + [SMALL_STATE(6501)] = 93800, + [SMALL_STATE(6502)] = 93885, + [SMALL_STATE(6503)] = 93970, + [SMALL_STATE(6504)] = 94055, + [SMALL_STATE(6505)] = 94140, + [SMALL_STATE(6506)] = 94225, + [SMALL_STATE(6507)] = 94310, + [SMALL_STATE(6508)] = 94395, + [SMALL_STATE(6509)] = 94480, + [SMALL_STATE(6510)] = 94565, + [SMALL_STATE(6511)] = 94650, + [SMALL_STATE(6512)] = 94735, + [SMALL_STATE(6513)] = 94820, + [SMALL_STATE(6514)] = 94905, + [SMALL_STATE(6515)] = 94990, + [SMALL_STATE(6516)] = 95075, + [SMALL_STATE(6517)] = 95160, + [SMALL_STATE(6518)] = 95245, + [SMALL_STATE(6519)] = 95330, + [SMALL_STATE(6520)] = 95415, + [SMALL_STATE(6521)] = 95500, + [SMALL_STATE(6522)] = 95585, + [SMALL_STATE(6523)] = 95670, + [SMALL_STATE(6524)] = 95755, + [SMALL_STATE(6525)] = 95840, + [SMALL_STATE(6526)] = 95925, + [SMALL_STATE(6527)] = 96010, + [SMALL_STATE(6528)] = 96095, + [SMALL_STATE(6529)] = 96180, + [SMALL_STATE(6530)] = 96265, + [SMALL_STATE(6531)] = 96350, + [SMALL_STATE(6532)] = 96435, + [SMALL_STATE(6533)] = 96520, + [SMALL_STATE(6534)] = 96605, + [SMALL_STATE(6535)] = 96690, + [SMALL_STATE(6536)] = 96775, + [SMALL_STATE(6537)] = 96860, + [SMALL_STATE(6538)] = 96945, + [SMALL_STATE(6539)] = 97030, + [SMALL_STATE(6540)] = 97115, + [SMALL_STATE(6541)] = 97200, + [SMALL_STATE(6542)] = 97285, + [SMALL_STATE(6543)] = 97370, + [SMALL_STATE(6544)] = 97455, + [SMALL_STATE(6545)] = 97540, + [SMALL_STATE(6546)] = 97625, + [SMALL_STATE(6547)] = 97710, + [SMALL_STATE(6548)] = 97798, + [SMALL_STATE(6549)] = 97886, + [SMALL_STATE(6550)] = 97974, + [SMALL_STATE(6551)] = 98062, + [SMALL_STATE(6552)] = 98134, + [SMALL_STATE(6553)] = 98208, + [SMALL_STATE(6554)] = 98282, + [SMALL_STATE(6555)] = 98356, + [SMALL_STATE(6556)] = 98420, + [SMALL_STATE(6557)] = 98494, + [SMALL_STATE(6558)] = 98568, + [SMALL_STATE(6559)] = 98642, + [SMALL_STATE(6560)] = 98716, + [SMALL_STATE(6561)] = 98790, + [SMALL_STATE(6562)] = 98864, + [SMALL_STATE(6563)] = 98938, + [SMALL_STATE(6564)] = 99012, + [SMALL_STATE(6565)] = 99086, + [SMALL_STATE(6566)] = 99160, + [SMALL_STATE(6567)] = 99234, + [SMALL_STATE(6568)] = 99293, + [SMALL_STATE(6569)] = 99364, + [SMALL_STATE(6570)] = 99435, + [SMALL_STATE(6571)] = 99506, + [SMALL_STATE(6572)] = 99577, + [SMALL_STATE(6573)] = 99652, + [SMALL_STATE(6574)] = 99709, + [SMALL_STATE(6575)] = 99784, + [SMALL_STATE(6576)] = 99843, + [SMALL_STATE(6577)] = 99914, + [SMALL_STATE(6578)] = 99985, + [SMALL_STATE(6579)] = 100056, + [SMALL_STATE(6580)] = 100131, + [SMALL_STATE(6581)] = 100202, + [SMALL_STATE(6582)] = 100277, + [SMALL_STATE(6583)] = 100339, + [SMALL_STATE(6584)] = 100409, + [SMALL_STATE(6585)] = 100466, + [SMALL_STATE(6586)] = 100535, + [SMALL_STATE(6587)] = 100604, + [SMALL_STATE(6588)] = 100673, + [SMALL_STATE(6589)] = 100742, + [SMALL_STATE(6590)] = 100811, + [SMALL_STATE(6591)] = 100880, + [SMALL_STATE(6592)] = 100949, + [SMALL_STATE(6593)] = 101010, + [SMALL_STATE(6594)] = 101079, + [SMALL_STATE(6595)] = 101134, + [SMALL_STATE(6596)] = 101203, + [SMALL_STATE(6597)] = 101272, + [SMALL_STATE(6598)] = 101341, + [SMALL_STATE(6599)] = 101410, + [SMALL_STATE(6600)] = 101471, + [SMALL_STATE(6601)] = 101540, + [SMALL_STATE(6602)] = 101609, + [SMALL_STATE(6603)] = 101670, + [SMALL_STATE(6604)] = 101727, + [SMALL_STATE(6605)] = 101796, + [SMALL_STATE(6606)] = 101865, + [SMALL_STATE(6607)] = 101934, + [SMALL_STATE(6608)] = 102003, + [SMALL_STATE(6609)] = 102072, + [SMALL_STATE(6610)] = 102141, + [SMALL_STATE(6611)] = 102210, + [SMALL_STATE(6612)] = 102279, + [SMALL_STATE(6613)] = 102346, + [SMALL_STATE(6614)] = 102415, + [SMALL_STATE(6615)] = 102484, + [SMALL_STATE(6616)] = 102553, + [SMALL_STATE(6617)] = 102622, + [SMALL_STATE(6618)] = 102691, + [SMALL_STATE(6619)] = 102748, + [SMALL_STATE(6620)] = 102817, + [SMALL_STATE(6621)] = 102886, + [SMALL_STATE(6622)] = 102955, + [SMALL_STATE(6623)] = 103024, + [SMALL_STATE(6624)] = 103093, + [SMALL_STATE(6625)] = 103162, + [SMALL_STATE(6626)] = 103231, + [SMALL_STATE(6627)] = 103300, + [SMALL_STATE(6628)] = 103369, + [SMALL_STATE(6629)] = 103438, + [SMALL_STATE(6630)] = 103507, + [SMALL_STATE(6631)] = 103566, + [SMALL_STATE(6632)] = 103635, + [SMALL_STATE(6633)] = 103704, + [SMALL_STATE(6634)] = 103766, + [SMALL_STATE(6635)] = 103818, + [SMALL_STATE(6636)] = 103870, + [SMALL_STATE(6637)] = 103936, + [SMALL_STATE(6638)] = 104002, + [SMALL_STATE(6639)] = 104058, + [SMALL_STATE(6640)] = 104124, + [SMALL_STATE(6641)] = 104184, + [SMALL_STATE(6642)] = 104250, + [SMALL_STATE(6643)] = 104316, + [SMALL_STATE(6644)] = 104382, + [SMALL_STATE(6645)] = 104448, + [SMALL_STATE(6646)] = 104509, + [SMALL_STATE(6647)] = 104560, + [SMALL_STATE(6648)] = 104615, + [SMALL_STATE(6649)] = 104676, + [SMALL_STATE(6650)] = 104737, + [SMALL_STATE(6651)] = 104798, + [SMALL_STATE(6652)] = 104853, + [SMALL_STATE(6653)] = 104914, + [SMALL_STATE(6654)] = 104975, + [SMALL_STATE(6655)] = 105036, + [SMALL_STATE(6656)] = 105089, + [SMALL_STATE(6657)] = 105150, + [SMALL_STATE(6658)] = 105201, + [SMALL_STATE(6659)] = 105262, + [SMALL_STATE(6660)] = 105313, + [SMALL_STATE(6661)] = 105374, + [SMALL_STATE(6662)] = 105425, + [SMALL_STATE(6663)] = 105486, + [SMALL_STATE(6664)] = 105547, + [SMALL_STATE(6665)] = 105608, + [SMALL_STATE(6666)] = 105669, + [SMALL_STATE(6667)] = 105730, + [SMALL_STATE(6668)] = 105789, + [SMALL_STATE(6669)] = 105850, + [SMALL_STATE(6670)] = 105911, + [SMALL_STATE(6671)] = 105972, + [SMALL_STATE(6672)] = 106033, + [SMALL_STATE(6673)] = 106094, + [SMALL_STATE(6674)] = 106149, + [SMALL_STATE(6675)] = 106200, + [SMALL_STATE(6676)] = 106261, + [SMALL_STATE(6677)] = 106322, + [SMALL_STATE(6678)] = 106383, + [SMALL_STATE(6679)] = 106442, + [SMALL_STATE(6680)] = 106503, + [SMALL_STATE(6681)] = 106564, + [SMALL_STATE(6682)] = 106625, + [SMALL_STATE(6683)] = 106686, + [SMALL_STATE(6684)] = 106747, + [SMALL_STATE(6685)] = 106798, + [SMALL_STATE(6686)] = 106859, + [SMALL_STATE(6687)] = 106920, + [SMALL_STATE(6688)] = 106981, + [SMALL_STATE(6689)] = 107042, + [SMALL_STATE(6690)] = 107095, + [SMALL_STATE(6691)] = 107150, + [SMALL_STATE(6692)] = 107211, + [SMALL_STATE(6693)] = 107272, + [SMALL_STATE(6694)] = 107323, + [SMALL_STATE(6695)] = 107384, + [SMALL_STATE(6696)] = 107435, + [SMALL_STATE(6697)] = 107496, + [SMALL_STATE(6698)] = 107557, + [SMALL_STATE(6699)] = 107618, + [SMALL_STATE(6700)] = 107669, + [SMALL_STATE(6701)] = 107719, + [SMALL_STATE(6702)] = 107779, + [SMALL_STATE(6703)] = 107839, + [SMALL_STATE(6704)] = 107893, + [SMALL_STATE(6705)] = 107953, + [SMALL_STATE(6706)] = 108013, + [SMALL_STATE(6707)] = 108063, + [SMALL_STATE(6708)] = 108113, + [SMALL_STATE(6709)] = 108169, + [SMALL_STATE(6710)] = 108229, + [SMALL_STATE(6711)] = 108289, + [SMALL_STATE(6712)] = 108349, + [SMALL_STATE(6713)] = 108407, + [SMALL_STATE(6714)] = 108457, + [SMALL_STATE(6715)] = 108517, + [SMALL_STATE(6716)] = 108577, + [SMALL_STATE(6717)] = 108635, + [SMALL_STATE(6718)] = 108695, + [SMALL_STATE(6719)] = 108747, + [SMALL_STATE(6720)] = 108807, + [SMALL_STATE(6721)] = 108867, + [SMALL_STATE(6722)] = 108927, + [SMALL_STATE(6723)] = 108985, + [SMALL_STATE(6724)] = 109045, + [SMALL_STATE(6725)] = 109105, + [SMALL_STATE(6726)] = 109159, + [SMALL_STATE(6727)] = 109219, + [SMALL_STATE(6728)] = 109279, + [SMALL_STATE(6729)] = 109339, + [SMALL_STATE(6730)] = 109397, + [SMALL_STATE(6731)] = 109457, + [SMALL_STATE(6732)] = 109517, + [SMALL_STATE(6733)] = 109567, + [SMALL_STATE(6734)] = 109627, + [SMALL_STATE(6735)] = 109677, + [SMALL_STATE(6736)] = 109737, + [SMALL_STATE(6737)] = 109797, + [SMALL_STATE(6738)] = 109857, + [SMALL_STATE(6739)] = 109913, + [SMALL_STATE(6740)] = 109973, + [SMALL_STATE(6741)] = 110033, + [SMALL_STATE(6742)] = 110093, + [SMALL_STATE(6743)] = 110153, + [SMALL_STATE(6744)] = 110213, + [SMALL_STATE(6745)] = 110273, + [SMALL_STATE(6746)] = 110325, + [SMALL_STATE(6747)] = 110375, + [SMALL_STATE(6748)] = 110435, + [SMALL_STATE(6749)] = 110489, + [SMALL_STATE(6750)] = 110549, + [SMALL_STATE(6751)] = 110603, + [SMALL_STATE(6752)] = 110663, + [SMALL_STATE(6753)] = 110723, + [SMALL_STATE(6754)] = 110777, + [SMALL_STATE(6755)] = 110837, + [SMALL_STATE(6756)] = 110889, + [SMALL_STATE(6757)] = 110941, + [SMALL_STATE(6758)] = 111001, + [SMALL_STATE(6759)] = 111057, + [SMALL_STATE(6760)] = 111117, + [SMALL_STATE(6761)] = 111177, + [SMALL_STATE(6762)] = 111235, + [SMALL_STATE(6763)] = 111293, + [SMALL_STATE(6764)] = 111351, + [SMALL_STATE(6765)] = 111409, + [SMALL_STATE(6766)] = 111459, + [SMALL_STATE(6767)] = 111519, + [SMALL_STATE(6768)] = 111579, + [SMALL_STATE(6769)] = 111639, + [SMALL_STATE(6770)] = 111699, + [SMALL_STATE(6771)] = 111759, + [SMALL_STATE(6772)] = 111819, + [SMALL_STATE(6773)] = 111877, + [SMALL_STATE(6774)] = 111937, + [SMALL_STATE(6775)] = 111997, + [SMALL_STATE(6776)] = 112052, + [SMALL_STATE(6777)] = 112105, + [SMALL_STATE(6778)] = 112154, + [SMALL_STATE(6779)] = 112211, + [SMALL_STATE(6780)] = 112268, + [SMALL_STATE(6781)] = 112321, + [SMALL_STATE(6782)] = 112378, + [SMALL_STATE(6783)] = 112433, + [SMALL_STATE(6784)] = 112488, + [SMALL_STATE(6785)] = 112545, + [SMALL_STATE(6786)] = 112600, + [SMALL_STATE(6787)] = 112655, + [SMALL_STATE(6788)] = 112710, + [SMALL_STATE(6789)] = 112759, + [SMALL_STATE(6790)] = 112816, + [SMALL_STATE(6791)] = 112871, + [SMALL_STATE(6792)] = 112926, + [SMALL_STATE(6793)] = 112983, + [SMALL_STATE(6794)] = 113034, + [SMALL_STATE(6795)] = 113089, + [SMALL_STATE(6796)] = 113146, + [SMALL_STATE(6797)] = 113201, + [SMALL_STATE(6798)] = 113256, + [SMALL_STATE(6799)] = 113311, + [SMALL_STATE(6800)] = 113368, + [SMALL_STATE(6801)] = 113425, + [SMALL_STATE(6802)] = 113480, + [SMALL_STATE(6803)] = 113535, + [SMALL_STATE(6804)] = 113592, + [SMALL_STATE(6805)] = 113649, + [SMALL_STATE(6806)] = 113698, + [SMALL_STATE(6807)] = 113753, + [SMALL_STATE(6808)] = 113808, + [SMALL_STATE(6809)] = 113865, + [SMALL_STATE(6810)] = 113920, + [SMALL_STATE(6811)] = 113975, + [SMALL_STATE(6812)] = 114030, + [SMALL_STATE(6813)] = 114085, + [SMALL_STATE(6814)] = 114142, + [SMALL_STATE(6815)] = 114197, + [SMALL_STATE(6816)] = 114252, + [SMALL_STATE(6817)] = 114307, + [SMALL_STATE(6818)] = 114364, + [SMALL_STATE(6819)] = 114421, + [SMALL_STATE(6820)] = 114472, + [SMALL_STATE(6821)] = 114529, + [SMALL_STATE(6822)] = 114584, + [SMALL_STATE(6823)] = 114639, + [SMALL_STATE(6824)] = 114694, + [SMALL_STATE(6825)] = 114751, + [SMALL_STATE(6826)] = 114806, + [SMALL_STATE(6827)] = 114855, + [SMALL_STATE(6828)] = 114912, + [SMALL_STATE(6829)] = 114969, + [SMALL_STATE(6830)] = 115026, + [SMALL_STATE(6831)] = 115083, + [SMALL_STATE(6832)] = 115136, + [SMALL_STATE(6833)] = 115191, + [SMALL_STATE(6834)] = 115242, + [SMALL_STATE(6835)] = 115299, + [SMALL_STATE(6836)] = 115350, + [SMALL_STATE(6837)] = 115405, + [SMALL_STATE(6838)] = 115456, + [SMALL_STATE(6839)] = 115509, + [SMALL_STATE(6840)] = 115562, + [SMALL_STATE(6841)] = 115617, + [SMALL_STATE(6842)] = 115672, + [SMALL_STATE(6843)] = 115727, + [SMALL_STATE(6844)] = 115782, + [SMALL_STATE(6845)] = 115837, + [SMALL_STATE(6846)] = 115892, + [SMALL_STATE(6847)] = 115947, + [SMALL_STATE(6848)] = 116002, + [SMALL_STATE(6849)] = 116057, + [SMALL_STATE(6850)] = 116112, + [SMALL_STATE(6851)] = 116165, + [SMALL_STATE(6852)] = 116220, + [SMALL_STATE(6853)] = 116273, + [SMALL_STATE(6854)] = 116328, + [SMALL_STATE(6855)] = 116385, + [SMALL_STATE(6856)] = 116434, + [SMALL_STATE(6857)] = 116489, + [SMALL_STATE(6858)] = 116540, + [SMALL_STATE(6859)] = 116597, + [SMALL_STATE(6860)] = 116654, + [SMALL_STATE(6861)] = 116709, + [SMALL_STATE(6862)] = 116758, + [SMALL_STATE(6863)] = 116807, + [SMALL_STATE(6864)] = 116864, + [SMALL_STATE(6865)] = 116919, + [SMALL_STATE(6866)] = 116976, + [SMALL_STATE(6867)] = 117031, + [SMALL_STATE(6868)] = 117080, + [SMALL_STATE(6869)] = 117137, + [SMALL_STATE(6870)] = 117190, + [SMALL_STATE(6871)] = 117245, + [SMALL_STATE(6872)] = 117302, + [SMALL_STATE(6873)] = 117357, + [SMALL_STATE(6874)] = 117408, + [SMALL_STATE(6875)] = 117465, + [SMALL_STATE(6876)] = 117520, + [SMALL_STATE(6877)] = 117577, + [SMALL_STATE(6878)] = 117632, + [SMALL_STATE(6879)] = 117689, + [SMALL_STATE(6880)] = 117744, + [SMALL_STATE(6881)] = 117799, + [SMALL_STATE(6882)] = 117854, + [SMALL_STATE(6883)] = 117905, + [SMALL_STATE(6884)] = 117960, + [SMALL_STATE(6885)] = 118013, + [SMALL_STATE(6886)] = 118070, + [SMALL_STATE(6887)] = 118125, + [SMALL_STATE(6888)] = 118180, + [SMALL_STATE(6889)] = 118235, + [SMALL_STATE(6890)] = 118290, + [SMALL_STATE(6891)] = 118345, + [SMALL_STATE(6892)] = 118400, + [SMALL_STATE(6893)] = 118455, + [SMALL_STATE(6894)] = 118506, + [SMALL_STATE(6895)] = 118559, + [SMALL_STATE(6896)] = 118614, + [SMALL_STATE(6897)] = 118669, + [SMALL_STATE(6898)] = 118724, + [SMALL_STATE(6899)] = 118779, + [SMALL_STATE(6900)] = 118834, + [SMALL_STATE(6901)] = 118889, + [SMALL_STATE(6902)] = 118946, + [SMALL_STATE(6903)] = 119001, + [SMALL_STATE(6904)] = 119058, + [SMALL_STATE(6905)] = 119115, + [SMALL_STATE(6906)] = 119164, + [SMALL_STATE(6907)] = 119219, + [SMALL_STATE(6908)] = 119276, + [SMALL_STATE(6909)] = 119331, + [SMALL_STATE(6910)] = 119380, + [SMALL_STATE(6911)] = 119435, + [SMALL_STATE(6912)] = 119486, + [SMALL_STATE(6913)] = 119541, + [SMALL_STATE(6914)] = 119590, + [SMALL_STATE(6915)] = 119639, + [SMALL_STATE(6916)] = 119688, + [SMALL_STATE(6917)] = 119743, + [SMALL_STATE(6918)] = 119798, + [SMALL_STATE(6919)] = 119855, + [SMALL_STATE(6920)] = 119906, + [SMALL_STATE(6921)] = 119961, + [SMALL_STATE(6922)] = 120009, + [SMALL_STATE(6923)] = 120063, + [SMALL_STATE(6924)] = 120117, + [SMALL_STATE(6925)] = 120165, + [SMALL_STATE(6926)] = 120219, + [SMALL_STATE(6927)] = 120273, + [SMALL_STATE(6928)] = 120327, + [SMALL_STATE(6929)] = 120381, + [SMALL_STATE(6930)] = 120435, + [SMALL_STATE(6931)] = 120483, + [SMALL_STATE(6932)] = 120531, + [SMALL_STATE(6933)] = 120585, + [SMALL_STATE(6934)] = 120639, + [SMALL_STATE(6935)] = 120693, + [SMALL_STATE(6936)] = 120745, + [SMALL_STATE(6937)] = 120799, + [SMALL_STATE(6938)] = 120847, + [SMALL_STATE(6939)] = 120899, + [SMALL_STATE(6940)] = 120953, + [SMALL_STATE(6941)] = 121001, + [SMALL_STATE(6942)] = 121055, + [SMALL_STATE(6943)] = 121107, + [SMALL_STATE(6944)] = 121161, + [SMALL_STATE(6945)] = 121213, + [SMALL_STATE(6946)] = 121261, + [SMALL_STATE(6947)] = 121311, + [SMALL_STATE(6948)] = 121359, + [SMALL_STATE(6949)] = 121407, + [SMALL_STATE(6950)] = 121457, + [SMALL_STATE(6951)] = 121509, + [SMALL_STATE(6952)] = 121563, + [SMALL_STATE(6953)] = 121617, + [SMALL_STATE(6954)] = 121667, + [SMALL_STATE(6955)] = 121721, + [SMALL_STATE(6956)] = 121773, + [SMALL_STATE(6957)] = 121825, + [SMALL_STATE(6958)] = 121879, + [SMALL_STATE(6959)] = 121933, + [SMALL_STATE(6960)] = 121985, + [SMALL_STATE(6961)] = 122039, + [SMALL_STATE(6962)] = 122093, + [SMALL_STATE(6963)] = 122143, + [SMALL_STATE(6964)] = 122193, + [SMALL_STATE(6965)] = 122247, + [SMALL_STATE(6966)] = 122301, + [SMALL_STATE(6967)] = 122349, + [SMALL_STATE(6968)] = 122403, + [SMALL_STATE(6969)] = 122451, + [SMALL_STATE(6970)] = 122499, + [SMALL_STATE(6971)] = 122553, + [SMALL_STATE(6972)] = 122601, + [SMALL_STATE(6973)] = 122655, + [SMALL_STATE(6974)] = 122709, + [SMALL_STATE(6975)] = 122757, + [SMALL_STATE(6976)] = 122811, + [SMALL_STATE(6977)] = 122865, + [SMALL_STATE(6978)] = 122917, + [SMALL_STATE(6979)] = 122971, + [SMALL_STATE(6980)] = 123019, + [SMALL_STATE(6981)] = 123069, + [SMALL_STATE(6982)] = 123117, + [SMALL_STATE(6983)] = 123171, + [SMALL_STATE(6984)] = 123225, + [SMALL_STATE(6985)] = 123279, + [SMALL_STATE(6986)] = 123333, + [SMALL_STATE(6987)] = 123381, + [SMALL_STATE(6988)] = 123435, + [SMALL_STATE(6989)] = 123489, + [SMALL_STATE(6990)] = 123541, + [SMALL_STATE(6991)] = 123595, + [SMALL_STATE(6992)] = 123645, + [SMALL_STATE(6993)] = 123699, + [SMALL_STATE(6994)] = 123753, + [SMALL_STATE(6995)] = 123807, + [SMALL_STATE(6996)] = 123861, + [SMALL_STATE(6997)] = 123909, + [SMALL_STATE(6998)] = 123963, + [SMALL_STATE(6999)] = 124015, + [SMALL_STATE(7000)] = 124069, + [SMALL_STATE(7001)] = 124123, + [SMALL_STATE(7002)] = 124177, + [SMALL_STATE(7003)] = 124227, + [SMALL_STATE(7004)] = 124281, + [SMALL_STATE(7005)] = 124331, + [SMALL_STATE(7006)] = 124385, + [SMALL_STATE(7007)] = 124433, + [SMALL_STATE(7008)] = 124481, + [SMALL_STATE(7009)] = 124535, + [SMALL_STATE(7010)] = 124589, + [SMALL_STATE(7011)] = 124643, + [SMALL_STATE(7012)] = 124697, + [SMALL_STATE(7013)] = 124745, + [SMALL_STATE(7014)] = 124799, + [SMALL_STATE(7015)] = 124849, + [SMALL_STATE(7016)] = 124903, + [SMALL_STATE(7017)] = 124957, + [SMALL_STATE(7018)] = 125009, + [SMALL_STATE(7019)] = 125059, + [SMALL_STATE(7020)] = 125113, + [SMALL_STATE(7021)] = 125167, + [SMALL_STATE(7022)] = 125221, + [SMALL_STATE(7023)] = 125275, + [SMALL_STATE(7024)] = 125329, + [SMALL_STATE(7025)] = 125383, + [SMALL_STATE(7026)] = 125437, + [SMALL_STATE(7027)] = 125491, + [SMALL_STATE(7028)] = 125545, + [SMALL_STATE(7029)] = 125599, + [SMALL_STATE(7030)] = 125653, + [SMALL_STATE(7031)] = 125707, + [SMALL_STATE(7032)] = 125757, + [SMALL_STATE(7033)] = 125811, + [SMALL_STATE(7034)] = 125859, + [SMALL_STATE(7035)] = 125913, + [SMALL_STATE(7036)] = 125963, + [SMALL_STATE(7037)] = 126017, + [SMALL_STATE(7038)] = 126071, + [SMALL_STATE(7039)] = 126125, + [SMALL_STATE(7040)] = 126179, + [SMALL_STATE(7041)] = 126233, + [SMALL_STATE(7042)] = 126281, + [SMALL_STATE(7043)] = 126333, + [SMALL_STATE(7044)] = 126383, + [SMALL_STATE(7045)] = 126437, + [SMALL_STATE(7046)] = 126489, + [SMALL_STATE(7047)] = 126540, + [SMALL_STATE(7048)] = 126591, + [SMALL_STATE(7049)] = 126638, + [SMALL_STATE(7050)] = 126689, + [SMALL_STATE(7051)] = 126738, + [SMALL_STATE(7052)] = 126785, + [SMALL_STATE(7053)] = 126836, + [SMALL_STATE(7054)] = 126887, + [SMALL_STATE(7055)] = 126938, + [SMALL_STATE(7056)] = 126989, + [SMALL_STATE(7057)] = 127040, + [SMALL_STATE(7058)] = 127091, + [SMALL_STATE(7059)] = 127142, + [SMALL_STATE(7060)] = 127193, + [SMALL_STATE(7061)] = 127244, + [SMALL_STATE(7062)] = 127295, + [SMALL_STATE(7063)] = 127346, + [SMALL_STATE(7064)] = 127397, + [SMALL_STATE(7065)] = 127448, + [SMALL_STATE(7066)] = 127499, + [SMALL_STATE(7067)] = 127550, + [SMALL_STATE(7068)] = 127601, + [SMALL_STATE(7069)] = 127652, + [SMALL_STATE(7070)] = 127703, + [SMALL_STATE(7071)] = 127754, + [SMALL_STATE(7072)] = 127805, + [SMALL_STATE(7073)] = 127856, + [SMALL_STATE(7074)] = 127907, + [SMALL_STATE(7075)] = 127958, + [SMALL_STATE(7076)] = 128009, + [SMALL_STATE(7077)] = 128060, + [SMALL_STATE(7078)] = 128111, + [SMALL_STATE(7079)] = 128162, + [SMALL_STATE(7080)] = 128213, + [SMALL_STATE(7081)] = 128264, + [SMALL_STATE(7082)] = 128315, + [SMALL_STATE(7083)] = 128366, + [SMALL_STATE(7084)] = 128417, + [SMALL_STATE(7085)] = 128468, + [SMALL_STATE(7086)] = 128519, + [SMALL_STATE(7087)] = 128570, + [SMALL_STATE(7088)] = 128621, + [SMALL_STATE(7089)] = 128672, + [SMALL_STATE(7090)] = 128723, + [SMALL_STATE(7091)] = 128770, + [SMALL_STATE(7092)] = 128821, + [SMALL_STATE(7093)] = 128868, + [SMALL_STATE(7094)] = 128919, + [SMALL_STATE(7095)] = 128970, + [SMALL_STATE(7096)] = 129021, + [SMALL_STATE(7097)] = 129070, + [SMALL_STATE(7098)] = 129121, + [SMALL_STATE(7099)] = 129170, + [SMALL_STATE(7100)] = 129217, + [SMALL_STATE(7101)] = 129266, + [SMALL_STATE(7102)] = 129315, + [SMALL_STATE(7103)] = 129366, + [SMALL_STATE(7104)] = 129415, + [SMALL_STATE(7105)] = 129464, + [SMALL_STATE(7106)] = 129513, + [SMALL_STATE(7107)] = 129564, + [SMALL_STATE(7108)] = 129613, + [SMALL_STATE(7109)] = 129662, + [SMALL_STATE(7110)] = 129711, + [SMALL_STATE(7111)] = 129760, + [SMALL_STATE(7112)] = 129811, + [SMALL_STATE(7113)] = 129862, + [SMALL_STATE(7114)] = 129909, + [SMALL_STATE(7115)] = 129960, + [SMALL_STATE(7116)] = 130009, + [SMALL_STATE(7117)] = 130058, + [SMALL_STATE(7118)] = 130109, + [SMALL_STATE(7119)] = 130160, + [SMALL_STATE(7120)] = 130209, + [SMALL_STATE(7121)] = 130260, + [SMALL_STATE(7122)] = 130309, + [SMALL_STATE(7123)] = 130360, + [SMALL_STATE(7124)] = 130411, + [SMALL_STATE(7125)] = 130462, + [SMALL_STATE(7126)] = 130513, + [SMALL_STATE(7127)] = 130564, + [SMALL_STATE(7128)] = 130615, + [SMALL_STATE(7129)] = 130666, + [SMALL_STATE(7130)] = 130717, + [SMALL_STATE(7131)] = 130768, + [SMALL_STATE(7132)] = 130819, + [SMALL_STATE(7133)] = 130870, + [SMALL_STATE(7134)] = 130921, + [SMALL_STATE(7135)] = 130972, + [SMALL_STATE(7136)] = 131023, + [SMALL_STATE(7137)] = 131074, + [SMALL_STATE(7138)] = 131125, + [SMALL_STATE(7139)] = 131174, + [SMALL_STATE(7140)] = 131225, + [SMALL_STATE(7141)] = 131276, + [SMALL_STATE(7142)] = 131327, + [SMALL_STATE(7143)] = 131378, + [SMALL_STATE(7144)] = 131429, + [SMALL_STATE(7145)] = 131480, + [SMALL_STATE(7146)] = 131531, + [SMALL_STATE(7147)] = 131582, + [SMALL_STATE(7148)] = 131633, + [SMALL_STATE(7149)] = 131684, + [SMALL_STATE(7150)] = 131735, + [SMALL_STATE(7151)] = 131782, + [SMALL_STATE(7152)] = 131833, + [SMALL_STATE(7153)] = 131880, + [SMALL_STATE(7154)] = 131931, + [SMALL_STATE(7155)] = 131982, + [SMALL_STATE(7156)] = 132033, + [SMALL_STATE(7157)] = 132084, + [SMALL_STATE(7158)] = 132135, + [SMALL_STATE(7159)] = 132186, + [SMALL_STATE(7160)] = 132237, + [SMALL_STATE(7161)] = 132288, + [SMALL_STATE(7162)] = 132339, + [SMALL_STATE(7163)] = 132390, + [SMALL_STATE(7164)] = 132441, + [SMALL_STATE(7165)] = 132492, + [SMALL_STATE(7166)] = 132543, + [SMALL_STATE(7167)] = 132594, + [SMALL_STATE(7168)] = 132645, + [SMALL_STATE(7169)] = 132694, + [SMALL_STATE(7170)] = 132743, + [SMALL_STATE(7171)] = 132794, + [SMALL_STATE(7172)] = 132845, + [SMALL_STATE(7173)] = 132896, + [SMALL_STATE(7174)] = 132947, + [SMALL_STATE(7175)] = 132998, + [SMALL_STATE(7176)] = 133049, + [SMALL_STATE(7177)] = 133100, + [SMALL_STATE(7178)] = 133151, + [SMALL_STATE(7179)] = 133198, + [SMALL_STATE(7180)] = 133249, + [SMALL_STATE(7181)] = 133300, + [SMALL_STATE(7182)] = 133349, + [SMALL_STATE(7183)] = 133400, + [SMALL_STATE(7184)] = 133451, + [SMALL_STATE(7185)] = 133502, + [SMALL_STATE(7186)] = 133553, + [SMALL_STATE(7187)] = 133600, + [SMALL_STATE(7188)] = 133651, + [SMALL_STATE(7189)] = 133702, + [SMALL_STATE(7190)] = 133753, + [SMALL_STATE(7191)] = 133802, + [SMALL_STATE(7192)] = 133851, + [SMALL_STATE(7193)] = 133900, + [SMALL_STATE(7194)] = 133951, + [SMALL_STATE(7195)] = 134002, + [SMALL_STATE(7196)] = 134053, + [SMALL_STATE(7197)] = 134104, + [SMALL_STATE(7198)] = 134155, + [SMALL_STATE(7199)] = 134206, + [SMALL_STATE(7200)] = 134257, + [SMALL_STATE(7201)] = 134308, + [SMALL_STATE(7202)] = 134359, + [SMALL_STATE(7203)] = 134410, + [SMALL_STATE(7204)] = 134461, + [SMALL_STATE(7205)] = 134512, + [SMALL_STATE(7206)] = 134563, + [SMALL_STATE(7207)] = 134614, + [SMALL_STATE(7208)] = 134661, + [SMALL_STATE(7209)] = 134712, + [SMALL_STATE(7210)] = 134763, + [SMALL_STATE(7211)] = 134812, + [SMALL_STATE(7212)] = 134863, + [SMALL_STATE(7213)] = 134914, + [SMALL_STATE(7214)] = 134963, + [SMALL_STATE(7215)] = 135014, + [SMALL_STATE(7216)] = 135065, + [SMALL_STATE(7217)] = 135116, + [SMALL_STATE(7218)] = 135163, + [SMALL_STATE(7219)] = 135214, + [SMALL_STATE(7220)] = 135265, + [SMALL_STATE(7221)] = 135316, + [SMALL_STATE(7222)] = 135365, + [SMALL_STATE(7223)] = 135416, + [SMALL_STATE(7224)] = 135467, + [SMALL_STATE(7225)] = 135518, + [SMALL_STATE(7226)] = 135569, + [SMALL_STATE(7227)] = 135620, + [SMALL_STATE(7228)] = 135671, + [SMALL_STATE(7229)] = 135722, + [SMALL_STATE(7230)] = 135773, + [SMALL_STATE(7231)] = 135824, + [SMALL_STATE(7232)] = 135873, + [SMALL_STATE(7233)] = 135924, + [SMALL_STATE(7234)] = 135975, + [SMALL_STATE(7235)] = 136026, + [SMALL_STATE(7236)] = 136077, + [SMALL_STATE(7237)] = 136124, + [SMALL_STATE(7238)] = 136171, + [SMALL_STATE(7239)] = 136222, + [SMALL_STATE(7240)] = 136273, + [SMALL_STATE(7241)] = 136324, + [SMALL_STATE(7242)] = 136375, + [SMALL_STATE(7243)] = 136426, + [SMALL_STATE(7244)] = 136477, + [SMALL_STATE(7245)] = 136528, + [SMALL_STATE(7246)] = 136579, + [SMALL_STATE(7247)] = 136628, + [SMALL_STATE(7248)] = 136679, + [SMALL_STATE(7249)] = 136730, + [SMALL_STATE(7250)] = 136781, + [SMALL_STATE(7251)] = 136832, + [SMALL_STATE(7252)] = 136883, + [SMALL_STATE(7253)] = 136934, + [SMALL_STATE(7254)] = 136985, + [SMALL_STATE(7255)] = 137036, + [SMALL_STATE(7256)] = 137087, + [SMALL_STATE(7257)] = 137138, + [SMALL_STATE(7258)] = 137185, + [SMALL_STATE(7259)] = 137234, + [SMALL_STATE(7260)] = 137285, + [SMALL_STATE(7261)] = 137336, + [SMALL_STATE(7262)] = 137387, + [SMALL_STATE(7263)] = 137438, + [SMALL_STATE(7264)] = 137487, + [SMALL_STATE(7265)] = 137538, + [SMALL_STATE(7266)] = 137589, + [SMALL_STATE(7267)] = 137640, + [SMALL_STATE(7268)] = 137691, + [SMALL_STATE(7269)] = 137742, + [SMALL_STATE(7270)] = 137793, + [SMALL_STATE(7271)] = 137844, + [SMALL_STATE(7272)] = 137895, + [SMALL_STATE(7273)] = 137946, + [SMALL_STATE(7274)] = 137997, + [SMALL_STATE(7275)] = 138046, + [SMALL_STATE(7276)] = 138095, + [SMALL_STATE(7277)] = 138146, + [SMALL_STATE(7278)] = 138197, + [SMALL_STATE(7279)] = 138248, + [SMALL_STATE(7280)] = 138297, + [SMALL_STATE(7281)] = 138348, + [SMALL_STATE(7282)] = 138395, + [SMALL_STATE(7283)] = 138446, + [SMALL_STATE(7284)] = 138497, + [SMALL_STATE(7285)] = 138548, + [SMALL_STATE(7286)] = 138599, + [SMALL_STATE(7287)] = 138650, + [SMALL_STATE(7288)] = 138701, + [SMALL_STATE(7289)] = 138752, + [SMALL_STATE(7290)] = 138799, + [SMALL_STATE(7291)] = 138850, + [SMALL_STATE(7292)] = 138901, + [SMALL_STATE(7293)] = 138952, + [SMALL_STATE(7294)] = 139003, + [SMALL_STATE(7295)] = 139050, + [SMALL_STATE(7296)] = 139101, + [SMALL_STATE(7297)] = 139150, + [SMALL_STATE(7298)] = 139201, + [SMALL_STATE(7299)] = 139252, + [SMALL_STATE(7300)] = 139299, + [SMALL_STATE(7301)] = 139350, + [SMALL_STATE(7302)] = 139397, + [SMALL_STATE(7303)] = 139448, + [SMALL_STATE(7304)] = 139495, + [SMALL_STATE(7305)] = 139546, + [SMALL_STATE(7306)] = 139597, + [SMALL_STATE(7307)] = 139648, + [SMALL_STATE(7308)] = 139699, + [SMALL_STATE(7309)] = 139750, + [SMALL_STATE(7310)] = 139797, + [SMALL_STATE(7311)] = 139846, + [SMALL_STATE(7312)] = 139897, + [SMALL_STATE(7313)] = 139948, + [SMALL_STATE(7314)] = 139999, + [SMALL_STATE(7315)] = 140046, + [SMALL_STATE(7316)] = 140093, + [SMALL_STATE(7317)] = 140144, + [SMALL_STATE(7318)] = 140195, + [SMALL_STATE(7319)] = 140246, + [SMALL_STATE(7320)] = 140297, + [SMALL_STATE(7321)] = 140348, + [SMALL_STATE(7322)] = 140397, + [SMALL_STATE(7323)] = 140448, + [SMALL_STATE(7324)] = 140499, + [SMALL_STATE(7325)] = 140550, + [SMALL_STATE(7326)] = 140601, + [SMALL_STATE(7327)] = 140652, + [SMALL_STATE(7328)] = 140703, + [SMALL_STATE(7329)] = 140754, + [SMALL_STATE(7330)] = 140805, + [SMALL_STATE(7331)] = 140856, + [SMALL_STATE(7332)] = 140907, + [SMALL_STATE(7333)] = 140958, + [SMALL_STATE(7334)] = 141007, + [SMALL_STATE(7335)] = 141058, + [SMALL_STATE(7336)] = 141109, + [SMALL_STATE(7337)] = 141160, + [SMALL_STATE(7338)] = 141211, + [SMALL_STATE(7339)] = 141262, + [SMALL_STATE(7340)] = 141313, + [SMALL_STATE(7341)] = 141364, + [SMALL_STATE(7342)] = 141415, + [SMALL_STATE(7343)] = 141466, + [SMALL_STATE(7344)] = 141517, + [SMALL_STATE(7345)] = 141568, + [SMALL_STATE(7346)] = 141619, + [SMALL_STATE(7347)] = 141670, + [SMALL_STATE(7348)] = 141721, + [SMALL_STATE(7349)] = 141772, + [SMALL_STATE(7350)] = 141823, + [SMALL_STATE(7351)] = 141874, + [SMALL_STATE(7352)] = 141925, + [SMALL_STATE(7353)] = 141976, + [SMALL_STATE(7354)] = 142027, + [SMALL_STATE(7355)] = 142078, + [SMALL_STATE(7356)] = 142127, + [SMALL_STATE(7357)] = 142178, + [SMALL_STATE(7358)] = 142227, + [SMALL_STATE(7359)] = 142278, + [SMALL_STATE(7360)] = 142329, + [SMALL_STATE(7361)] = 142380, + [SMALL_STATE(7362)] = 142431, + [SMALL_STATE(7363)] = 142482, + [SMALL_STATE(7364)] = 142533, + [SMALL_STATE(7365)] = 142584, + [SMALL_STATE(7366)] = 142635, + [SMALL_STATE(7367)] = 142686, + [SMALL_STATE(7368)] = 142734, + [SMALL_STATE(7369)] = 142782, + [SMALL_STATE(7370)] = 142830, + [SMALL_STATE(7371)] = 142878, + [SMALL_STATE(7372)] = 142926, + [SMALL_STATE(7373)] = 142974, + [SMALL_STATE(7374)] = 143022, + [SMALL_STATE(7375)] = 143070, + [SMALL_STATE(7376)] = 143118, + [SMALL_STATE(7377)] = 143166, + [SMALL_STATE(7378)] = 143212, + [SMALL_STATE(7379)] = 143260, + [SMALL_STATE(7380)] = 143308, + [SMALL_STATE(7381)] = 143356, + [SMALL_STATE(7382)] = 143402, + [SMALL_STATE(7383)] = 143448, + [SMALL_STATE(7384)] = 143496, + [SMALL_STATE(7385)] = 143542, + [SMALL_STATE(7386)] = 143590, + [SMALL_STATE(7387)] = 143638, + [SMALL_STATE(7388)] = 143686, + [SMALL_STATE(7389)] = 143734, + [SMALL_STATE(7390)] = 143782, + [SMALL_STATE(7391)] = 143830, + [SMALL_STATE(7392)] = 143878, + [SMALL_STATE(7393)] = 143924, + [SMALL_STATE(7394)] = 143972, + [SMALL_STATE(7395)] = 144020, + [SMALL_STATE(7396)] = 144066, + [SMALL_STATE(7397)] = 144114, + [SMALL_STATE(7398)] = 144162, + [SMALL_STATE(7399)] = 144210, + [SMALL_STATE(7400)] = 144258, + [SMALL_STATE(7401)] = 144306, + [SMALL_STATE(7402)] = 144354, + [SMALL_STATE(7403)] = 144402, + [SMALL_STATE(7404)] = 144450, + [SMALL_STATE(7405)] = 144498, + [SMALL_STATE(7406)] = 144546, + [SMALL_STATE(7407)] = 144594, + [SMALL_STATE(7408)] = 144642, + [SMALL_STATE(7409)] = 144690, + [SMALL_STATE(7410)] = 144738, + [SMALL_STATE(7411)] = 144784, + [SMALL_STATE(7412)] = 144832, + [SMALL_STATE(7413)] = 144880, + [SMALL_STATE(7414)] = 144926, + [SMALL_STATE(7415)] = 144974, + [SMALL_STATE(7416)] = 145020, + [SMALL_STATE(7417)] = 145068, + [SMALL_STATE(7418)] = 145114, + [SMALL_STATE(7419)] = 145162, + [SMALL_STATE(7420)] = 145208, + [SMALL_STATE(7421)] = 145254, + [SMALL_STATE(7422)] = 145300, + [SMALL_STATE(7423)] = 145346, + [SMALL_STATE(7424)] = 145392, + [SMALL_STATE(7425)] = 145440, + [SMALL_STATE(7426)] = 145486, + [SMALL_STATE(7427)] = 145532, + [SMALL_STATE(7428)] = 145580, + [SMALL_STATE(7429)] = 145628, + [SMALL_STATE(7430)] = 145676, + [SMALL_STATE(7431)] = 145724, + [SMALL_STATE(7432)] = 145770, + [SMALL_STATE(7433)] = 145818, + [SMALL_STATE(7434)] = 145866, + [SMALL_STATE(7435)] = 145914, + [SMALL_STATE(7436)] = 145962, + [SMALL_STATE(7437)] = 146010, + [SMALL_STATE(7438)] = 146056, + [SMALL_STATE(7439)] = 146104, + [SMALL_STATE(7440)] = 146152, + [SMALL_STATE(7441)] = 146200, + [SMALL_STATE(7442)] = 146246, + [SMALL_STATE(7443)] = 146294, + [SMALL_STATE(7444)] = 146340, + [SMALL_STATE(7445)] = 146388, + [SMALL_STATE(7446)] = 146436, + [SMALL_STATE(7447)] = 146482, + [SMALL_STATE(7448)] = 146530, + [SMALL_STATE(7449)] = 146578, + [SMALL_STATE(7450)] = 146626, + [SMALL_STATE(7451)] = 146674, + [SMALL_STATE(7452)] = 146720, + [SMALL_STATE(7453)] = 146768, + [SMALL_STATE(7454)] = 146814, + [SMALL_STATE(7455)] = 146862, + [SMALL_STATE(7456)] = 146910, + [SMALL_STATE(7457)] = 146958, + [SMALL_STATE(7458)] = 147006, + [SMALL_STATE(7459)] = 147054, + [SMALL_STATE(7460)] = 147102, + [SMALL_STATE(7461)] = 147148, + [SMALL_STATE(7462)] = 147196, + [SMALL_STATE(7463)] = 147244, + [SMALL_STATE(7464)] = 147290, + [SMALL_STATE(7465)] = 147338, + [SMALL_STATE(7466)] = 147386, + [SMALL_STATE(7467)] = 147432, + [SMALL_STATE(7468)] = 147478, + [SMALL_STATE(7469)] = 147524, + [SMALL_STATE(7470)] = 147570, + [SMALL_STATE(7471)] = 147616, + [SMALL_STATE(7472)] = 147664, + [SMALL_STATE(7473)] = 147712, + [SMALL_STATE(7474)] = 147758, + [SMALL_STATE(7475)] = 147806, + [SMALL_STATE(7476)] = 147854, + [SMALL_STATE(7477)] = 147902, + [SMALL_STATE(7478)] = 147948, + [SMALL_STATE(7479)] = 147996, + [SMALL_STATE(7480)] = 148042, + [SMALL_STATE(7481)] = 148088, + [SMALL_STATE(7482)] = 148136, + [SMALL_STATE(7483)] = 148182, + [SMALL_STATE(7484)] = 148228, + [SMALL_STATE(7485)] = 148276, + [SMALL_STATE(7486)] = 148324, + [SMALL_STATE(7487)] = 148370, + [SMALL_STATE(7488)] = 148418, + [SMALL_STATE(7489)] = 148466, + [SMALL_STATE(7490)] = 148514, + [SMALL_STATE(7491)] = 148562, + [SMALL_STATE(7492)] = 148610, + [SMALL_STATE(7493)] = 148658, + [SMALL_STATE(7494)] = 148704, + [SMALL_STATE(7495)] = 148752, + [SMALL_STATE(7496)] = 148800, + [SMALL_STATE(7497)] = 148846, + [SMALL_STATE(7498)] = 148894, + [SMALL_STATE(7499)] = 148942, + [SMALL_STATE(7500)] = 148990, + [SMALL_STATE(7501)] = 149036, + [SMALL_STATE(7502)] = 149084, + [SMALL_STATE(7503)] = 149132, + [SMALL_STATE(7504)] = 149178, + [SMALL_STATE(7505)] = 149226, + [SMALL_STATE(7506)] = 149274, + [SMALL_STATE(7507)] = 149322, + [SMALL_STATE(7508)] = 149370, + [SMALL_STATE(7509)] = 149418, + [SMALL_STATE(7510)] = 149464, + [SMALL_STATE(7511)] = 149512, + [SMALL_STATE(7512)] = 149560, + [SMALL_STATE(7513)] = 149608, + [SMALL_STATE(7514)] = 149656, + [SMALL_STATE(7515)] = 149704, + [SMALL_STATE(7516)] = 149750, + [SMALL_STATE(7517)] = 149798, + [SMALL_STATE(7518)] = 149846, + [SMALL_STATE(7519)] = 149892, + [SMALL_STATE(7520)] = 149938, + [SMALL_STATE(7521)] = 149984, + [SMALL_STATE(7522)] = 150030, + [SMALL_STATE(7523)] = 150076, + [SMALL_STATE(7524)] = 150122, + [SMALL_STATE(7525)] = 150168, + [SMALL_STATE(7526)] = 150214, + [SMALL_STATE(7527)] = 150260, + [SMALL_STATE(7528)] = 150306, + [SMALL_STATE(7529)] = 150354, + [SMALL_STATE(7530)] = 150400, + [SMALL_STATE(7531)] = 150448, + [SMALL_STATE(7532)] = 150494, + [SMALL_STATE(7533)] = 150540, + [SMALL_STATE(7534)] = 150586, + [SMALL_STATE(7535)] = 150632, + [SMALL_STATE(7536)] = 150680, + [SMALL_STATE(7537)] = 150728, + [SMALL_STATE(7538)] = 150776, + [SMALL_STATE(7539)] = 150824, + [SMALL_STATE(7540)] = 150870, + [SMALL_STATE(7541)] = 150918, + [SMALL_STATE(7542)] = 150964, + [SMALL_STATE(7543)] = 151010, + [SMALL_STATE(7544)] = 151058, + [SMALL_STATE(7545)] = 151106, + [SMALL_STATE(7546)] = 151154, + [SMALL_STATE(7547)] = 151202, + [SMALL_STATE(7548)] = 151250, + [SMALL_STATE(7549)] = 151296, + [SMALL_STATE(7550)] = 151344, + [SMALL_STATE(7551)] = 151392, + [SMALL_STATE(7552)] = 151440, + [SMALL_STATE(7553)] = 151488, + [SMALL_STATE(7554)] = 151536, + [SMALL_STATE(7555)] = 151584, + [SMALL_STATE(7556)] = 151632, + [SMALL_STATE(7557)] = 151678, + [SMALL_STATE(7558)] = 151724, + [SMALL_STATE(7559)] = 151772, + [SMALL_STATE(7560)] = 151820, + [SMALL_STATE(7561)] = 151866, + [SMALL_STATE(7562)] = 151914, + [SMALL_STATE(7563)] = 151960, + [SMALL_STATE(7564)] = 152008, + [SMALL_STATE(7565)] = 152054, + [SMALL_STATE(7566)] = 152100, + [SMALL_STATE(7567)] = 152148, + [SMALL_STATE(7568)] = 152194, + [SMALL_STATE(7569)] = 152242, + [SMALL_STATE(7570)] = 152290, + [SMALL_STATE(7571)] = 152338, + [SMALL_STATE(7572)] = 152386, + [SMALL_STATE(7573)] = 152432, + [SMALL_STATE(7574)] = 152478, + [SMALL_STATE(7575)] = 152526, + [SMALL_STATE(7576)] = 152574, + [SMALL_STATE(7577)] = 152620, + [SMALL_STATE(7578)] = 152666, + [SMALL_STATE(7579)] = 152712, + [SMALL_STATE(7580)] = 152758, + [SMALL_STATE(7581)] = 152804, + [SMALL_STATE(7582)] = 152850, + [SMALL_STATE(7583)] = 152896, + [SMALL_STATE(7584)] = 152942, + [SMALL_STATE(7585)] = 152988, + [SMALL_STATE(7586)] = 153034, + [SMALL_STATE(7587)] = 153082, + [SMALL_STATE(7588)] = 153130, + [SMALL_STATE(7589)] = 153176, + [SMALL_STATE(7590)] = 153224, + [SMALL_STATE(7591)] = 153272, + [SMALL_STATE(7592)] = 153318, + [SMALL_STATE(7593)] = 153364, + [SMALL_STATE(7594)] = 153410, + [SMALL_STATE(7595)] = 153458, + [SMALL_STATE(7596)] = 153504, + [SMALL_STATE(7597)] = 153550, + [SMALL_STATE(7598)] = 153598, + [SMALL_STATE(7599)] = 153644, + [SMALL_STATE(7600)] = 153692, + [SMALL_STATE(7601)] = 153740, + [SMALL_STATE(7602)] = 153786, + [SMALL_STATE(7603)] = 153834, + [SMALL_STATE(7604)] = 153882, + [SMALL_STATE(7605)] = 153928, + [SMALL_STATE(7606)] = 153976, + [SMALL_STATE(7607)] = 154022, + [SMALL_STATE(7608)] = 154068, + [SMALL_STATE(7609)] = 154116, + [SMALL_STATE(7610)] = 154162, + [SMALL_STATE(7611)] = 154210, + [SMALL_STATE(7612)] = 154258, + [SMALL_STATE(7613)] = 154306, + [SMALL_STATE(7614)] = 154354, + [SMALL_STATE(7615)] = 154402, + [SMALL_STATE(7616)] = 154450, + [SMALL_STATE(7617)] = 154496, + [SMALL_STATE(7618)] = 154544, + [SMALL_STATE(7619)] = 154592, + [SMALL_STATE(7620)] = 154638, + [SMALL_STATE(7621)] = 154684, + [SMALL_STATE(7622)] = 154732, + [SMALL_STATE(7623)] = 154778, + [SMALL_STATE(7624)] = 154826, + [SMALL_STATE(7625)] = 154872, + [SMALL_STATE(7626)] = 154920, + [SMALL_STATE(7627)] = 154968, + [SMALL_STATE(7628)] = 155016, + [SMALL_STATE(7629)] = 155064, + [SMALL_STATE(7630)] = 155110, + [SMALL_STATE(7631)] = 155158, + [SMALL_STATE(7632)] = 155206, + [SMALL_STATE(7633)] = 155254, + [SMALL_STATE(7634)] = 155302, + [SMALL_STATE(7635)] = 155350, + [SMALL_STATE(7636)] = 155398, + [SMALL_STATE(7637)] = 155443, + [SMALL_STATE(7638)] = 155488, + [SMALL_STATE(7639)] = 155533, + [SMALL_STATE(7640)] = 155578, + [SMALL_STATE(7641)] = 155623, + [SMALL_STATE(7642)] = 155668, + [SMALL_STATE(7643)] = 155713, + [SMALL_STATE(7644)] = 155758, + [SMALL_STATE(7645)] = 155803, + [SMALL_STATE(7646)] = 155848, + [SMALL_STATE(7647)] = 155893, + [SMALL_STATE(7648)] = 155938, + [SMALL_STATE(7649)] = 155983, + [SMALL_STATE(7650)] = 156028, + [SMALL_STATE(7651)] = 156073, + [SMALL_STATE(7652)] = 156118, + [SMALL_STATE(7653)] = 156163, + [SMALL_STATE(7654)] = 156208, + [SMALL_STATE(7655)] = 156253, + [SMALL_STATE(7656)] = 156298, + [SMALL_STATE(7657)] = 156343, + [SMALL_STATE(7658)] = 156388, + [SMALL_STATE(7659)] = 156433, + [SMALL_STATE(7660)] = 156478, + [SMALL_STATE(7661)] = 156523, + [SMALL_STATE(7662)] = 156568, + [SMALL_STATE(7663)] = 156613, + [SMALL_STATE(7664)] = 156658, + [SMALL_STATE(7665)] = 156703, + [SMALL_STATE(7666)] = 156748, + [SMALL_STATE(7667)] = 156793, + [SMALL_STATE(7668)] = 156838, + [SMALL_STATE(7669)] = 156883, + [SMALL_STATE(7670)] = 156928, + [SMALL_STATE(7671)] = 156973, + [SMALL_STATE(7672)] = 157018, + [SMALL_STATE(7673)] = 157063, + [SMALL_STATE(7674)] = 157108, + [SMALL_STATE(7675)] = 157153, + [SMALL_STATE(7676)] = 157198, + [SMALL_STATE(7677)] = 157243, + [SMALL_STATE(7678)] = 157288, + [SMALL_STATE(7679)] = 157333, + [SMALL_STATE(7680)] = 157378, + [SMALL_STATE(7681)] = 157423, + [SMALL_STATE(7682)] = 157468, + [SMALL_STATE(7683)] = 157513, + [SMALL_STATE(7684)] = 157558, + [SMALL_STATE(7685)] = 157603, + [SMALL_STATE(7686)] = 157648, + [SMALL_STATE(7687)] = 157693, + [SMALL_STATE(7688)] = 157738, + [SMALL_STATE(7689)] = 157783, + [SMALL_STATE(7690)] = 157828, + [SMALL_STATE(7691)] = 157873, + [SMALL_STATE(7692)] = 157918, + [SMALL_STATE(7693)] = 157963, + [SMALL_STATE(7694)] = 158008, + [SMALL_STATE(7695)] = 158053, + [SMALL_STATE(7696)] = 158098, + [SMALL_STATE(7697)] = 158143, + [SMALL_STATE(7698)] = 158188, + [SMALL_STATE(7699)] = 158233, + [SMALL_STATE(7700)] = 158278, + [SMALL_STATE(7701)] = 158323, + [SMALL_STATE(7702)] = 158368, + [SMALL_STATE(7703)] = 158413, + [SMALL_STATE(7704)] = 158458, + [SMALL_STATE(7705)] = 158503, + [SMALL_STATE(7706)] = 158548, + [SMALL_STATE(7707)] = 158593, + [SMALL_STATE(7708)] = 158638, + [SMALL_STATE(7709)] = 158683, + [SMALL_STATE(7710)] = 158728, + [SMALL_STATE(7711)] = 158773, + [SMALL_STATE(7712)] = 158818, + [SMALL_STATE(7713)] = 158863, + [SMALL_STATE(7714)] = 158908, + [SMALL_STATE(7715)] = 158953, + [SMALL_STATE(7716)] = 158998, + [SMALL_STATE(7717)] = 159043, + [SMALL_STATE(7718)] = 159088, + [SMALL_STATE(7719)] = 159133, + [SMALL_STATE(7720)] = 159178, + [SMALL_STATE(7721)] = 159223, + [SMALL_STATE(7722)] = 159268, + [SMALL_STATE(7723)] = 159313, + [SMALL_STATE(7724)] = 159358, + [SMALL_STATE(7725)] = 159403, + [SMALL_STATE(7726)] = 159448, + [SMALL_STATE(7727)] = 159493, + [SMALL_STATE(7728)] = 159538, + [SMALL_STATE(7729)] = 159583, + [SMALL_STATE(7730)] = 159628, + [SMALL_STATE(7731)] = 159673, + [SMALL_STATE(7732)] = 159718, + [SMALL_STATE(7733)] = 159763, + [SMALL_STATE(7734)] = 159808, + [SMALL_STATE(7735)] = 159853, + [SMALL_STATE(7736)] = 159898, + [SMALL_STATE(7737)] = 159943, + [SMALL_STATE(7738)] = 159988, + [SMALL_STATE(7739)] = 160033, + [SMALL_STATE(7740)] = 160078, + [SMALL_STATE(7741)] = 160123, + [SMALL_STATE(7742)] = 160168, + [SMALL_STATE(7743)] = 160213, + [SMALL_STATE(7744)] = 160258, + [SMALL_STATE(7745)] = 160303, + [SMALL_STATE(7746)] = 160348, + [SMALL_STATE(7747)] = 160393, + [SMALL_STATE(7748)] = 160438, + [SMALL_STATE(7749)] = 160483, + [SMALL_STATE(7750)] = 160528, + [SMALL_STATE(7751)] = 160573, + [SMALL_STATE(7752)] = 160618, + [SMALL_STATE(7753)] = 160663, + [SMALL_STATE(7754)] = 160708, + [SMALL_STATE(7755)] = 160753, + [SMALL_STATE(7756)] = 160798, + [SMALL_STATE(7757)] = 160843, + [SMALL_STATE(7758)] = 160888, + [SMALL_STATE(7759)] = 160933, + [SMALL_STATE(7760)] = 160978, + [SMALL_STATE(7761)] = 161023, + [SMALL_STATE(7762)] = 161068, + [SMALL_STATE(7763)] = 161113, + [SMALL_STATE(7764)] = 161158, + [SMALL_STATE(7765)] = 161203, + [SMALL_STATE(7766)] = 161248, + [SMALL_STATE(7767)] = 161293, + [SMALL_STATE(7768)] = 161338, + [SMALL_STATE(7769)] = 161383, + [SMALL_STATE(7770)] = 161428, + [SMALL_STATE(7771)] = 161473, + [SMALL_STATE(7772)] = 161518, + [SMALL_STATE(7773)] = 161563, + [SMALL_STATE(7774)] = 161608, + [SMALL_STATE(7775)] = 161653, + [SMALL_STATE(7776)] = 161698, + [SMALL_STATE(7777)] = 161743, + [SMALL_STATE(7778)] = 161788, + [SMALL_STATE(7779)] = 161833, + [SMALL_STATE(7780)] = 161878, + [SMALL_STATE(7781)] = 161923, + [SMALL_STATE(7782)] = 161968, + [SMALL_STATE(7783)] = 162013, + [SMALL_STATE(7784)] = 162058, + [SMALL_STATE(7785)] = 162103, + [SMALL_STATE(7786)] = 162148, + [SMALL_STATE(7787)] = 162193, + [SMALL_STATE(7788)] = 162238, + [SMALL_STATE(7789)] = 162283, + [SMALL_STATE(7790)] = 162328, + [SMALL_STATE(7791)] = 162373, + [SMALL_STATE(7792)] = 162418, + [SMALL_STATE(7793)] = 162463, + [SMALL_STATE(7794)] = 162508, + [SMALL_STATE(7795)] = 162553, + [SMALL_STATE(7796)] = 162598, + [SMALL_STATE(7797)] = 162643, + [SMALL_STATE(7798)] = 162688, + [SMALL_STATE(7799)] = 162733, + [SMALL_STATE(7800)] = 162778, + [SMALL_STATE(7801)] = 162823, + [SMALL_STATE(7802)] = 162868, + [SMALL_STATE(7803)] = 162913, + [SMALL_STATE(7804)] = 162958, + [SMALL_STATE(7805)] = 163003, + [SMALL_STATE(7806)] = 163048, + [SMALL_STATE(7807)] = 163093, + [SMALL_STATE(7808)] = 163138, + [SMALL_STATE(7809)] = 163183, + [SMALL_STATE(7810)] = 163228, + [SMALL_STATE(7811)] = 163273, + [SMALL_STATE(7812)] = 163318, + [SMALL_STATE(7813)] = 163363, + [SMALL_STATE(7814)] = 163408, + [SMALL_STATE(7815)] = 163453, + [SMALL_STATE(7816)] = 163498, + [SMALL_STATE(7817)] = 163543, + [SMALL_STATE(7818)] = 163588, + [SMALL_STATE(7819)] = 163633, + [SMALL_STATE(7820)] = 163678, + [SMALL_STATE(7821)] = 163723, + [SMALL_STATE(7822)] = 163768, + [SMALL_STATE(7823)] = 163813, + [SMALL_STATE(7824)] = 163858, + [SMALL_STATE(7825)] = 163903, + [SMALL_STATE(7826)] = 163948, + [SMALL_STATE(7827)] = 163993, + [SMALL_STATE(7828)] = 164038, + [SMALL_STATE(7829)] = 164083, + [SMALL_STATE(7830)] = 164128, + [SMALL_STATE(7831)] = 164173, + [SMALL_STATE(7832)] = 164218, + [SMALL_STATE(7833)] = 164263, + [SMALL_STATE(7834)] = 164308, + [SMALL_STATE(7835)] = 164353, + [SMALL_STATE(7836)] = 164398, + [SMALL_STATE(7837)] = 164443, + [SMALL_STATE(7838)] = 164488, + [SMALL_STATE(7839)] = 164533, + [SMALL_STATE(7840)] = 164578, + [SMALL_STATE(7841)] = 164623, + [SMALL_STATE(7842)] = 164668, + [SMALL_STATE(7843)] = 164713, + [SMALL_STATE(7844)] = 164758, + [SMALL_STATE(7845)] = 164803, + [SMALL_STATE(7846)] = 164848, + [SMALL_STATE(7847)] = 164893, + [SMALL_STATE(7848)] = 164938, + [SMALL_STATE(7849)] = 164983, + [SMALL_STATE(7850)] = 165028, + [SMALL_STATE(7851)] = 165073, + [SMALL_STATE(7852)] = 165118, + [SMALL_STATE(7853)] = 165163, + [SMALL_STATE(7854)] = 165208, + [SMALL_STATE(7855)] = 165253, + [SMALL_STATE(7856)] = 165298, + [SMALL_STATE(7857)] = 165343, + [SMALL_STATE(7858)] = 165388, + [SMALL_STATE(7859)] = 165433, + [SMALL_STATE(7860)] = 165478, + [SMALL_STATE(7861)] = 165523, + [SMALL_STATE(7862)] = 165568, + [SMALL_STATE(7863)] = 165613, + [SMALL_STATE(7864)] = 165658, + [SMALL_STATE(7865)] = 165703, + [SMALL_STATE(7866)] = 165748, + [SMALL_STATE(7867)] = 165793, + [SMALL_STATE(7868)] = 165838, + [SMALL_STATE(7869)] = 165883, + [SMALL_STATE(7870)] = 165928, + [SMALL_STATE(7871)] = 165973, + [SMALL_STATE(7872)] = 166018, + [SMALL_STATE(7873)] = 166063, + [SMALL_STATE(7874)] = 166108, + [SMALL_STATE(7875)] = 166153, + [SMALL_STATE(7876)] = 166198, + [SMALL_STATE(7877)] = 166243, + [SMALL_STATE(7878)] = 166288, + [SMALL_STATE(7879)] = 166333, + [SMALL_STATE(7880)] = 166378, + [SMALL_STATE(7881)] = 166423, + [SMALL_STATE(7882)] = 166468, + [SMALL_STATE(7883)] = 166513, + [SMALL_STATE(7884)] = 166558, + [SMALL_STATE(7885)] = 166603, + [SMALL_STATE(7886)] = 166648, + [SMALL_STATE(7887)] = 166693, + [SMALL_STATE(7888)] = 166738, + [SMALL_STATE(7889)] = 166783, + [SMALL_STATE(7890)] = 166828, + [SMALL_STATE(7891)] = 166873, + [SMALL_STATE(7892)] = 166918, + [SMALL_STATE(7893)] = 166963, + [SMALL_STATE(7894)] = 167008, + [SMALL_STATE(7895)] = 167053, + [SMALL_STATE(7896)] = 167098, + [SMALL_STATE(7897)] = 167143, + [SMALL_STATE(7898)] = 167188, + [SMALL_STATE(7899)] = 167233, + [SMALL_STATE(7900)] = 167278, + [SMALL_STATE(7901)] = 167323, + [SMALL_STATE(7902)] = 167368, + [SMALL_STATE(7903)] = 167413, + [SMALL_STATE(7904)] = 167458, + [SMALL_STATE(7905)] = 167503, + [SMALL_STATE(7906)] = 167548, + [SMALL_STATE(7907)] = 167593, + [SMALL_STATE(7908)] = 167638, + [SMALL_STATE(7909)] = 167683, + [SMALL_STATE(7910)] = 167728, + [SMALL_STATE(7911)] = 167773, + [SMALL_STATE(7912)] = 167818, + [SMALL_STATE(7913)] = 167863, + [SMALL_STATE(7914)] = 167908, + [SMALL_STATE(7915)] = 167953, + [SMALL_STATE(7916)] = 167998, + [SMALL_STATE(7917)] = 168043, + [SMALL_STATE(7918)] = 168088, + [SMALL_STATE(7919)] = 168133, + [SMALL_STATE(7920)] = 168178, + [SMALL_STATE(7921)] = 168223, + [SMALL_STATE(7922)] = 168268, + [SMALL_STATE(7923)] = 168313, + [SMALL_STATE(7924)] = 168358, + [SMALL_STATE(7925)] = 168403, + [SMALL_STATE(7926)] = 168448, + [SMALL_STATE(7927)] = 168493, + [SMALL_STATE(7928)] = 168538, + [SMALL_STATE(7929)] = 168583, + [SMALL_STATE(7930)] = 168628, + [SMALL_STATE(7931)] = 168673, + [SMALL_STATE(7932)] = 168718, + [SMALL_STATE(7933)] = 168763, + [SMALL_STATE(7934)] = 168808, + [SMALL_STATE(7935)] = 168853, + [SMALL_STATE(7936)] = 168898, + [SMALL_STATE(7937)] = 168943, + [SMALL_STATE(7938)] = 168988, + [SMALL_STATE(7939)] = 169033, + [SMALL_STATE(7940)] = 169078, + [SMALL_STATE(7941)] = 169123, + [SMALL_STATE(7942)] = 169168, + [SMALL_STATE(7943)] = 169213, + [SMALL_STATE(7944)] = 169258, + [SMALL_STATE(7945)] = 169303, + [SMALL_STATE(7946)] = 169348, + [SMALL_STATE(7947)] = 169393, + [SMALL_STATE(7948)] = 169438, + [SMALL_STATE(7949)] = 169483, + [SMALL_STATE(7950)] = 169528, + [SMALL_STATE(7951)] = 169573, + [SMALL_STATE(7952)] = 169618, + [SMALL_STATE(7953)] = 169663, + [SMALL_STATE(7954)] = 169708, + [SMALL_STATE(7955)] = 169753, + [SMALL_STATE(7956)] = 169798, + [SMALL_STATE(7957)] = 169843, + [SMALL_STATE(7958)] = 169888, + [SMALL_STATE(7959)] = 169933, + [SMALL_STATE(7960)] = 169978, + [SMALL_STATE(7961)] = 170023, + [SMALL_STATE(7962)] = 170068, + [SMALL_STATE(7963)] = 170113, + [SMALL_STATE(7964)] = 170158, + [SMALL_STATE(7965)] = 170203, + [SMALL_STATE(7966)] = 170248, + [SMALL_STATE(7967)] = 170293, + [SMALL_STATE(7968)] = 170338, + [SMALL_STATE(7969)] = 170383, + [SMALL_STATE(7970)] = 170428, + [SMALL_STATE(7971)] = 170473, + [SMALL_STATE(7972)] = 170518, + [SMALL_STATE(7973)] = 170563, + [SMALL_STATE(7974)] = 170608, + [SMALL_STATE(7975)] = 170653, + [SMALL_STATE(7976)] = 170698, + [SMALL_STATE(7977)] = 170743, + [SMALL_STATE(7978)] = 170788, + [SMALL_STATE(7979)] = 170833, + [SMALL_STATE(7980)] = 170878, + [SMALL_STATE(7981)] = 170923, + [SMALL_STATE(7982)] = 170968, + [SMALL_STATE(7983)] = 171013, + [SMALL_STATE(7984)] = 171058, + [SMALL_STATE(7985)] = 171103, + [SMALL_STATE(7986)] = 171148, + [SMALL_STATE(7987)] = 171193, + [SMALL_STATE(7988)] = 171238, + [SMALL_STATE(7989)] = 171283, + [SMALL_STATE(7990)] = 171328, + [SMALL_STATE(7991)] = 171373, + [SMALL_STATE(7992)] = 171418, + [SMALL_STATE(7993)] = 171463, + [SMALL_STATE(7994)] = 171508, + [SMALL_STATE(7995)] = 171553, + [SMALL_STATE(7996)] = 171598, + [SMALL_STATE(7997)] = 171643, + [SMALL_STATE(7998)] = 171688, + [SMALL_STATE(7999)] = 171733, + [SMALL_STATE(8000)] = 171778, + [SMALL_STATE(8001)] = 171823, + [SMALL_STATE(8002)] = 171868, + [SMALL_STATE(8003)] = 171913, + [SMALL_STATE(8004)] = 171958, + [SMALL_STATE(8005)] = 172003, + [SMALL_STATE(8006)] = 172048, + [SMALL_STATE(8007)] = 172093, + [SMALL_STATE(8008)] = 172138, + [SMALL_STATE(8009)] = 172183, + [SMALL_STATE(8010)] = 172228, + [SMALL_STATE(8011)] = 172273, + [SMALL_STATE(8012)] = 172318, + [SMALL_STATE(8013)] = 172363, + [SMALL_STATE(8014)] = 172408, + [SMALL_STATE(8015)] = 172453, + [SMALL_STATE(8016)] = 172498, + [SMALL_STATE(8017)] = 172543, + [SMALL_STATE(8018)] = 172588, + [SMALL_STATE(8019)] = 172633, + [SMALL_STATE(8020)] = 172678, + [SMALL_STATE(8021)] = 172723, + [SMALL_STATE(8022)] = 172768, + [SMALL_STATE(8023)] = 172813, + [SMALL_STATE(8024)] = 172858, + [SMALL_STATE(8025)] = 172903, + [SMALL_STATE(8026)] = 172948, + [SMALL_STATE(8027)] = 172993, + [SMALL_STATE(8028)] = 173038, + [SMALL_STATE(8029)] = 173083, + [SMALL_STATE(8030)] = 173128, + [SMALL_STATE(8031)] = 173173, + [SMALL_STATE(8032)] = 173218, + [SMALL_STATE(8033)] = 173263, + [SMALL_STATE(8034)] = 173308, + [SMALL_STATE(8035)] = 173353, + [SMALL_STATE(8036)] = 173398, + [SMALL_STATE(8037)] = 173443, + [SMALL_STATE(8038)] = 173488, + [SMALL_STATE(8039)] = 173533, + [SMALL_STATE(8040)] = 173578, + [SMALL_STATE(8041)] = 173623, + [SMALL_STATE(8042)] = 173668, + [SMALL_STATE(8043)] = 173713, + [SMALL_STATE(8044)] = 173758, + [SMALL_STATE(8045)] = 173803, + [SMALL_STATE(8046)] = 173848, + [SMALL_STATE(8047)] = 173893, + [SMALL_STATE(8048)] = 173938, + [SMALL_STATE(8049)] = 173983, + [SMALL_STATE(8050)] = 174028, + [SMALL_STATE(8051)] = 174073, + [SMALL_STATE(8052)] = 174118, + [SMALL_STATE(8053)] = 174163, + [SMALL_STATE(8054)] = 174208, + [SMALL_STATE(8055)] = 174253, + [SMALL_STATE(8056)] = 174298, + [SMALL_STATE(8057)] = 174343, + [SMALL_STATE(8058)] = 174388, + [SMALL_STATE(8059)] = 174433, + [SMALL_STATE(8060)] = 174478, + [SMALL_STATE(8061)] = 174523, + [SMALL_STATE(8062)] = 174568, + [SMALL_STATE(8063)] = 174613, + [SMALL_STATE(8064)] = 174658, + [SMALL_STATE(8065)] = 174703, + [SMALL_STATE(8066)] = 174748, + [SMALL_STATE(8067)] = 174793, + [SMALL_STATE(8068)] = 174838, + [SMALL_STATE(8069)] = 174883, + [SMALL_STATE(8070)] = 174928, + [SMALL_STATE(8071)] = 174973, + [SMALL_STATE(8072)] = 175018, + [SMALL_STATE(8073)] = 175063, + [SMALL_STATE(8074)] = 175108, + [SMALL_STATE(8075)] = 175153, + [SMALL_STATE(8076)] = 175198, + [SMALL_STATE(8077)] = 175243, + [SMALL_STATE(8078)] = 175288, + [SMALL_STATE(8079)] = 175333, + [SMALL_STATE(8080)] = 175378, + [SMALL_STATE(8081)] = 175423, + [SMALL_STATE(8082)] = 175468, + [SMALL_STATE(8083)] = 175513, + [SMALL_STATE(8084)] = 175558, + [SMALL_STATE(8085)] = 175603, + [SMALL_STATE(8086)] = 175648, + [SMALL_STATE(8087)] = 175693, + [SMALL_STATE(8088)] = 175738, + [SMALL_STATE(8089)] = 175783, + [SMALL_STATE(8090)] = 175828, + [SMALL_STATE(8091)] = 175873, + [SMALL_STATE(8092)] = 175918, + [SMALL_STATE(8093)] = 175963, + [SMALL_STATE(8094)] = 176008, + [SMALL_STATE(8095)] = 176053, + [SMALL_STATE(8096)] = 176098, + [SMALL_STATE(8097)] = 176143, + [SMALL_STATE(8098)] = 176188, + [SMALL_STATE(8099)] = 176233, + [SMALL_STATE(8100)] = 176278, + [SMALL_STATE(8101)] = 176323, + [SMALL_STATE(8102)] = 176368, + [SMALL_STATE(8103)] = 176413, + [SMALL_STATE(8104)] = 176458, + [SMALL_STATE(8105)] = 176503, + [SMALL_STATE(8106)] = 176548, + [SMALL_STATE(8107)] = 176593, + [SMALL_STATE(8108)] = 176638, + [SMALL_STATE(8109)] = 176683, + [SMALL_STATE(8110)] = 176728, + [SMALL_STATE(8111)] = 176773, + [SMALL_STATE(8112)] = 176818, + [SMALL_STATE(8113)] = 176863, + [SMALL_STATE(8114)] = 176908, + [SMALL_STATE(8115)] = 176953, + [SMALL_STATE(8116)] = 176998, + [SMALL_STATE(8117)] = 177043, + [SMALL_STATE(8118)] = 177088, + [SMALL_STATE(8119)] = 177133, + [SMALL_STATE(8120)] = 177178, + [SMALL_STATE(8121)] = 177223, + [SMALL_STATE(8122)] = 177268, + [SMALL_STATE(8123)] = 177313, + [SMALL_STATE(8124)] = 177358, + [SMALL_STATE(8125)] = 177403, + [SMALL_STATE(8126)] = 177448, + [SMALL_STATE(8127)] = 177493, + [SMALL_STATE(8128)] = 177538, + [SMALL_STATE(8129)] = 177583, + [SMALL_STATE(8130)] = 177628, + [SMALL_STATE(8131)] = 177673, + [SMALL_STATE(8132)] = 177718, + [SMALL_STATE(8133)] = 177763, + [SMALL_STATE(8134)] = 177808, + [SMALL_STATE(8135)] = 177853, + [SMALL_STATE(8136)] = 177898, + [SMALL_STATE(8137)] = 177943, + [SMALL_STATE(8138)] = 177988, + [SMALL_STATE(8139)] = 178033, + [SMALL_STATE(8140)] = 178078, + [SMALL_STATE(8141)] = 178123, + [SMALL_STATE(8142)] = 178168, + [SMALL_STATE(8143)] = 178213, + [SMALL_STATE(8144)] = 178258, + [SMALL_STATE(8145)] = 178303, + [SMALL_STATE(8146)] = 178348, + [SMALL_STATE(8147)] = 178393, + [SMALL_STATE(8148)] = 178438, + [SMALL_STATE(8149)] = 178483, + [SMALL_STATE(8150)] = 178528, + [SMALL_STATE(8151)] = 178573, + [SMALL_STATE(8152)] = 178618, + [SMALL_STATE(8153)] = 178663, + [SMALL_STATE(8154)] = 178708, + [SMALL_STATE(8155)] = 178753, + [SMALL_STATE(8156)] = 178757, + [SMALL_STATE(8157)] = 178761, + [SMALL_STATE(8158)] = 178765, + [SMALL_STATE(8159)] = 178769, + [SMALL_STATE(8160)] = 178773, + [SMALL_STATE(8161)] = 178777, + [SMALL_STATE(8162)] = 178781, + [SMALL_STATE(8163)] = 178785, + [SMALL_STATE(8164)] = 178789, + [SMALL_STATE(8165)] = 178793, + [SMALL_STATE(8166)] = 178797, + [SMALL_STATE(8167)] = 178801, + [SMALL_STATE(8168)] = 178805, + [SMALL_STATE(8169)] = 178809, + [SMALL_STATE(8170)] = 178813, + [SMALL_STATE(8171)] = 178817, }; 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(7428), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [23] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 0), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7791), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7904), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7903), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7883), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7502), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7846), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7844), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7833), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8078), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8077), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8076), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8063), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8062), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8051), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8050), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7916), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8042), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8038), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8017), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8018), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7424), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7969), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7420), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7434), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7970), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7979), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7608), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7603), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 3, .production_id = 105), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 3, .production_id = 105), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 4, .production_id = 105), - [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2206), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4724), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2207), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2031), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2367), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2518), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4628), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4733), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(453), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(511), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(805), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6130), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6374), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(599), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6366), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6368), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(30), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6370), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(5020), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6346), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4401), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2116), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4707), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2388), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7115), - [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(940), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(5054), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(940), - [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(946), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2562), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2199), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4108), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2228), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(5642), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7791), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7904), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(91), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7903), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7486), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7883), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2335), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7490), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4957), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(775), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7502), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(289), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7846), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(588), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7844), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(198), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2037), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(5541), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7837), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7836), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7835), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7833), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7828), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4952), - [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7518), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4952), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6680), - [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(1918), - [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(5833), - [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8093), - [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8077), - [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8069), - [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8067), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2206), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4714), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2207), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(1972), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2305), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2555), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4602), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4733), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(452), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(511), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(740), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6115), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6374), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(599), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6366), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6386), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(36), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6370), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(5020), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6346), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4401), + [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), + [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2207), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4024), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2206), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2077), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2382), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2576), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(3550), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(3890), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(452), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(465), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(681), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6131), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6396), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(671), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6401), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6402), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(30), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6403), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4649), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6311), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(3440), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2116), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(3874), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2400), + [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7091), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(1075), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2568), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2199), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(3417), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2228), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(1164), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(5650), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8078), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8077), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(94), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8076), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7400), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8074), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2336), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7401), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4647), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(688), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7406), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(309), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8063), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(659), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8062), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(198), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(1075), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4593), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2036), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(5543), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8051), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8050), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7916), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8042), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8038), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4615), + [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7420), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4615), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6698), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(1918), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(5872), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8148), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8143), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8140), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8138), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2207), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(3782), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2206), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(1983), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2286), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2564), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(3572), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(3890), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(453), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(465), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(742), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6167), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6396), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(671), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6401), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6420), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(29), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6403), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4649), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6311), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(3440), [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2116), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4735), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2388), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7319), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(940), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(5054), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(940), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(946), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2562), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2199), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4108), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2228), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(5642), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8017), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8018), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(67), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7968), - [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7424), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7969), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2283), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7420), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4957), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(833), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7434), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(292), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7846), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(653), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7970), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(198), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2037), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(5541), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7837), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7836), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7835), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7833), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7828), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4952), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7518), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4952), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6680), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(3779), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2400), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7273), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(1075), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2568), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2199), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(3417), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2228), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(1164), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(5650), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7701), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7700), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(68), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7979), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7608), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7980), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2276), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7603), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4647), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(759), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7367), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(308), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8063), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(625), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7981), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(198), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(1075), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4593), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2036), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(5543), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8051), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8050), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7916), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8042), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8038), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4615), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7420), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4615), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6698), [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(1917), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(5802), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(5828), [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), - [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8093), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8077), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8069), - [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8067), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8148), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8143), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8140), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(8138), [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_top_level, 1), [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_top_level, 2), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7742), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7743), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7553), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7655), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7801), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7665), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7605), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7667), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 4, .production_id = 229), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 4, .production_id = 229), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 4, .production_id = 230), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 4, .production_id = 230), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 2), - [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 2), - [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 3, .production_id = 161), - [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 3, .production_id = 161), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 3, .production_id = 39), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 3, .production_id = 39), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 3, .production_id = 189), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 3, .production_id = 189), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 4, .production_id = 231), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 4, .production_id = 231), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 5, .production_id = 276), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 5, .production_id = 276), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2206), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(5288), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2207), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2119), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2596), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(5133), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(5287), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(454), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(511), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(680), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(703), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(24), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(6825), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2165), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(5294), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2603), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7325), - [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(940), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(5054), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(940), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(946), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2562), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2199), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(4108), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2228), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(5642), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7742), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7743), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(80), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7654), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7553), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7655), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2292), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7373), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(4957), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(721), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7550), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(301), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7846), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(670), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7656), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(198), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2037), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(5541), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7837), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7836), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7835), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7833), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7828), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(4952), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7518), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(4952), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(6680), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(1919), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(5845), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(8093), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(8077), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(8069), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(8067), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2207), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(5277), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2206), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2138), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2591), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(4833), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(5278), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(460), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(465), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(694), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(698), + [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(25), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(6829), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2166), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(5270), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2600), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7316), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(1075), + [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2568), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2199), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(3417), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2228), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(1164), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(5650), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7801), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7802), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(103), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7665), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7513), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7666), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2296), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7605), + [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(4647), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(743), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7511), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(290), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(8063), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(639), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7667), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(198), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(1075), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(4593), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(2036), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(5543), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(8051), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(8050), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7916), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(8042), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(8038), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(4615), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(7420), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(4615), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(6698), + [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(1919), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(5826), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(8148), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(8143), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(8140), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 232), SHIFT_REPEAT(8138), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 4, .production_id = 229), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 4, .production_id = 229), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 3, .production_id = 189), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 3, .production_id = 189), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 4, .production_id = 230), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 4, .production_id = 230), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 3, .production_id = 39), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 3, .production_id = 39), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 4, .production_id = 231), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 4, .production_id = 231), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 3, .production_id = 161), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 3, .production_id = 161), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 5, .production_id = 276), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 5, .production_id = 276), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 2), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 2), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2206), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5288), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2207), - [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2119), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2596), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5133), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5287), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(454), - [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(511), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(680), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(703), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(24), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(6825), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2165), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5294), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2603), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7325), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(940), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5054), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(940), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(946), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2562), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2199), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4108), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2228), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5642), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7742), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7743), - [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(80), - [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7654), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7553), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7655), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2292), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7373), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4957), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(721), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7550), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(301), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7846), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(670), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7656), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(198), - [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2037), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5541), - [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7837), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7836), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7835), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7833), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7828), - [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4952), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7518), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4952), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(6680), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1919), - [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5845), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8093), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8077), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8069), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8067), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7870), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7871), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7930), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7492), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7905), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8023), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7999), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8000), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8021), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8022), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7716), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2207), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5277), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2206), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2138), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2591), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4833), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5278), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(460), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(465), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(694), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(698), + [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(25), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(6829), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2166), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5270), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2600), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7316), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1075), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2568), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2199), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(3417), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2228), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1164), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5650), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7801), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7802), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(103), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7665), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7513), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7666), + [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2296), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7605), + [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4647), + [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(743), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7511), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(290), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8063), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(639), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7667), + [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(198), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1075), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4593), + [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2036), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5543), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8051), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8050), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7916), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8042), + [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8038), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4615), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7420), + [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4615), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(6698), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1919), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5826), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8148), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8143), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8140), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8138), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7905), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7464), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7942), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7943), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7839), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8034), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8011), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8032), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8033), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7772), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7938), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7659), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7935), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7936), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7949), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7949), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7670), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7946), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7947), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7991), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8015), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8001), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8012), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8013), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7881), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7971), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7973), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7974), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7721), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7987), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7982), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7983), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7985), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7928), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7667), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7934), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7660), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7661), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8031), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, .production_id = 161), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_expression, 1), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_expression, 1), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_expression, 4, .production_id = 42), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_expression, 4, .production_id = 42), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7665), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8062), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7945), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8022), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, .production_id = 161), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_expression, 4, .production_id = 42), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_expression, 4, .production_id = 42), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_expression, 1), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_expression, 1), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7844), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 3, .production_id = 105), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 3, .production_id = 105), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 3, .production_id = 105), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, .production_id = 1), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, .production_id = 1), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 1), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 1), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 1), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_attribute_list, 1), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_attribute_list, 1), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 4, .production_id = 105), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 4, .production_id = 105), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 4, .production_id = 105), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 4, .production_id = 105), - [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 2), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 2), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 2), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 2), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 4, .production_id = 105), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 4, .production_id = 105), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 4, .production_id = 105), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 4, .production_id = 105), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 3, .production_id = 105), [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 105), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5136), - [3266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(4206), - [3269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5135), - [3272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6035), - [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6044), - [3278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(4401), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5596), - [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5229), - [3287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5282), - [3290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6142), - [3293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6374), - [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5144), - [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6366), - [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6373), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 105), + [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5149), + [3266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3402), + [3269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5119), + [3272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6046), + [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6052), + [3278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3440), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5598), + [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5273), + [3287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5307), + [3290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6100), + [3293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6396), + [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5098), + [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6401), + [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6430), [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [3307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6370), - [3310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5283), - [3313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6346), - [3316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2958), - [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6406), - [3322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5998), - [3325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5295), - [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5372), - [3331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5530), - [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2466), - [3337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5816), + [3307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6403), + [3310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5330), + [3313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6311), + [3316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2715), + [3319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6024), + [3322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6409), + [3325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5246), + [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5420), + [3331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5541), + [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2459), + [3337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5869), [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 10), [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 10), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6691), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6677), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7569), [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 54), [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 54), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [3356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6691), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 1), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 2), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7487), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, .production_id = 43), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, .production_id = 43), - [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6663), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 147), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 147), - [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 10), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 10), - [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 5, .production_id = 148), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 5, .production_id = 148), - [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 2, .production_id = 18), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 2, .production_id = 18), - [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 53), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 53), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_statement, 2), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_statement, 2), - [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 149), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 149), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, .production_id = 151), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, .production_id = 151), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 102), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 102), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 4, .production_id = 79), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 4, .production_id = 79), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 4, .production_id = 103), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 4, .production_id = 103), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 4), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 4), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), - [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 3, .production_id = 64), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 3, .production_id = 64), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [3358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6677), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 2), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 1), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), + [3371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6669), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 10), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 10), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 147), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 147), + [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, .production_id = 43), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, .production_id = 43), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 4, .production_id = 79), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 4, .production_id = 79), + [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 3, .production_id = 77), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 3, .production_id = 77), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 149), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 149), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 5, .production_id = 148), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 5, .production_id = 148), + [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, .production_id = 145), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, .production_id = 145), + [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, .production_id = 144), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, .production_id = 144), + [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_statement, 5), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_statement, 5), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 142), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 142), + [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_statement, 5), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_statement, 5), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5, .production_id = 126), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5, .production_id = 126), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_statement, 2), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_statement, 2), + [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 4), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 4), + [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 4, .production_id = 103), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 4, .production_id = 103), + [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 102), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 102), + [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), + [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4), [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4), - [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 52), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 52), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, .production_id = 105), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, .production_id = 105), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), - [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, .production_id = 145), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, .production_id = 145), - [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, .production_id = 144), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, .production_id = 144), - [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_statement, 5), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_statement, 5), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 51), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 51), - [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 2, .production_id = 19), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 2, .production_id = 19), - [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 2, .production_id = 13), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 2, .production_id = 13), - [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 142), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 142), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 2, .production_id = 17), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 2, .production_id = 17), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_statement, 2), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_statement, 2), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, .production_id = 39), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, .production_id = 39), - [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 3, .production_id = 31), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 3, .production_id = 31), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 1, .production_id = 18), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, .production_id = 18), - [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), - [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 1), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1), - [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 235), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 235), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_statement, 5), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_statement, 5), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 3, .production_id = 77), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 3, .production_id = 77), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, .production_id = 22), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, .production_id = 22), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5, .production_id = 126), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5, .production_id = 126), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7, .production_id = 221), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7, .production_id = 221), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 6, .production_id = 190), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 6, .production_id = 190), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 6, .production_id = 193), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 6, .production_id = 193), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 7, .production_id = 121), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 7, .production_id = 121), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, .production_id = 11), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, .production_id = 11), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 5), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 5), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 57), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 57), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), + [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), + [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 2, .production_id = 13), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 2, .production_id = 13), + [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 2, .production_id = 17), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 2, .production_id = 17), + [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 1), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1), + [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, .production_id = 22), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, .production_id = 22), + [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), + [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 1, .production_id = 18), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, .production_id = 18), + [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, .production_id = 151), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, .production_id = 151), + [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 2, .production_id = 19), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 2, .production_id = 19), + [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_statement, 2), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_statement, 2), + [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 3, .production_id = 64), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 3, .production_id = 64), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, .production_id = 105), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, .production_id = 105), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 2, .production_id = 18), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 2, .production_id = 18), + [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 6, .production_id = 190), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 6, .production_id = 190), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 6, .production_id = 193), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 6, .production_id = 193), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 53), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 53), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 52), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 52), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 51), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 51), + [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7, .production_id = 221), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7, .production_id = 221), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 235), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 235), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, .production_id = 39), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, .production_id = 39), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 3, .production_id = 31), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 3, .production_id = 31), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 57), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 57), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5, .production_id = 9), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5, .production_id = 9), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 120), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 120), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 7), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 7), [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 6, .production_id = 41), [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 6, .production_id = 41), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 3, .production_id = 12), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 3, .production_id = 12), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 3, .production_id = 59), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 3, .production_id = 59), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 3, .production_id = 60), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 3, .production_id = 60), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 93), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 93), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 174), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 174), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 6), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 6), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 120), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 120), - [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5, .production_id = 9), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5, .production_id = 9), - [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 170), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 170), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 4), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 4), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 215), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 215), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 7), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 7), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 1), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 1), - [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 3), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 3), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_scoped_namespace_declaration, 3, .production_id = 9), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_scoped_namespace_declaration, 3, .production_id = 9), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 58), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 58), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 2, .production_id = 12), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 2, .production_id = 12), - [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 40), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 40), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_alias_directive, 4, .production_id = 41), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_alias_directive, 4, .production_id = 41), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 4, .production_id = 40), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 4, .production_id = 40), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [3690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5136), - [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5135), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), - [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5229), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8124), - [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5295), - [3710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5372), - [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5136), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7528), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 1), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 1), - [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6662), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 1), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_statement, 1), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 170), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 170), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 174), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 174), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 93), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 93), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 7, .production_id = 121), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 7, .production_id = 121), + [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 215), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 215), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_scoped_namespace_declaration, 3, .production_id = 9), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_scoped_namespace_declaration, 3, .production_id = 9), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, .production_id = 11), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, .production_id = 11), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 6), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 6), + [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 40), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 40), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 4, .production_id = 40), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 4, .production_id = 40), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 4), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 4), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 3, .production_id = 60), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 3, .production_id = 60), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_alias_directive, 4, .production_id = 41), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_alias_directive, 4, .production_id = 41), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 5), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 5), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 3, .production_id = 59), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 3, .production_id = 59), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 3, .production_id = 12), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 3, .production_id = 12), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 58), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 58), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 2, .production_id = 12), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 2, .production_id = 12), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 3), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 3), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 1), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 1), + [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5149), + [3691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5119), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), + [3698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5273), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7855), + [3705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5246), + [3708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5420), + [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5149), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7481), + [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6672), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 1), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_statement, 1), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 1), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 1), [3735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_modifier, 1), REDUCE(sym__reserved_identifier, 1), [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier, 1), [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_modifier, 1), REDUCE(sym__reserved_identifier, 1), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 1, .production_id = 188), [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 1, .production_id = 188), [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 1), [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 1), - [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 273), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 273), - [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 39), - [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 39), - [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 9, .production_id = 343), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 9, .production_id = 343), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 8, .production_id = 277), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 8, .production_id = 277), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 275), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 275), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 269), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 269), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 6, .production_id = 191), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 6, .production_id = 191), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 222), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 222), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 223), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 223), - [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 224), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 224), - [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 187), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 187), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 225), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 225), - [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 226), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 226), - [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 274), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 274), - [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 186), - [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 186), - [3813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 227), - [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 227), - [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 4), - [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 4), - [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, .production_id = 234), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, .production_id = 234), - [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, .production_id = 233), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, .production_id = 233), - [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 270), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 270), + [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 315), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 315), + [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 316), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 316), + [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 272), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 272), + [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 186), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 186), + [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 222), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 222), + [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 223), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 223), + [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 224), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 224), + [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 225), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 225), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 226), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 226), + [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 227), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 227), + [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 228), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 228), + [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 273), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 273), + [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 269), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 269), + [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 8, .production_id = 277), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 8, .production_id = 277), + [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 4), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 4), + [3813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 317), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 317), + [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 275), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 275), + [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 271), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 271), + [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 270), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 270), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, .production_id = 233), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, .production_id = 233), [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 185), [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 185), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 317), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 317), - [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 315), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 315), - [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 271), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 271), - [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 228), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 228), - [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 316), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 316), - [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 272), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 272), - [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 314), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 314), - [3865] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, .production_id = 1), SHIFT(2206), - [3869] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, .production_id = 1), SHIFT(2207), - [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, .production_id = 1), - [3876] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, .production_id = 1), SHIFT(2206), - [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2395), - [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2397), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2395), - [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2206), - [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2207), - [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2206), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [3904] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4670), - [3908] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4671), - [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), - [3915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), - [3918] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(6151), - [3922] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4847), - [3926] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4670), - [3930] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(6120), - [3934] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4985), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [3940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2781), - [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2782), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2781), - [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_name, 1), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_name, 1), - [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_name, 2, .production_id = 27), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_name, 2, .production_id = 27), - [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5083), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1, .production_id = 4), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [3966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 3, .production_id = 119), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 3, .production_id = 119), - [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 2), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 2), - [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 4, .production_id = 167), - [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 4, .production_id = 167), - [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 3), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 3), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 6, .production_id = 191), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 6, .production_id = 191), + [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 9, .production_id = 343), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 9, .production_id = 343), + [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, .production_id = 234), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, .production_id = 234), + [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 274), + [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 274), + [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 39), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 39), + [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 314), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 314), + [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 187), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 187), + [3865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2402), + [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2399), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2402), + [3876] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, .production_id = 1), SHIFT(2207), + [3880] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, .production_id = 1), SHIFT(2206), + [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, .production_id = 1), + [3887] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, .production_id = 1), SHIFT(2207), + [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2207), + [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2206), + [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2207), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [3902] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3771), + [3906] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3768), + [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), + [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), + [3916] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(6099), + [3920] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4402), + [3924] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3771), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [3932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2678), + [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2673), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2678), + [3943] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(6110), + [3947] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4585), + [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 3), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 3), + [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_name, 1), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_name, 1), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 2), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 2), + [3963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5083), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1, .production_id = 4), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 4, .production_id = 167), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 4, .production_id = 167), + [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_name, 2, .production_id = 27), + [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_name, 2, .production_id = 27), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 3, .production_id = 119), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 3, .production_id = 119), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym_constant_pattern, 1), [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lvalue_expression, 1), @@ -811138,3638 +803182,3893 @@ static const TSParseActionEntry ts_parse_actions[] = { [4003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__name, 1), REDUCE(sym_constant_pattern, 1), [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue_expression, 1), [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 3, .production_id = 61), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 50), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 50), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_name, 3, .production_id = 61), REDUCE(sym_member_access_expression, 3, .production_id = 50), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 3, .production_id = 61), - [4019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_name, 3, .production_id = 61), REDUCE(sym_member_access_expression, 3, .production_id = 50), - [4022] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2737), - [4026] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2740), - [4030] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2737), + [4010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_name, 3, .production_id = 61), REDUCE(sym_member_access_expression, 3, .production_id = 50), + [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 50), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 3, .production_id = 61), + [4017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_name, 3, .production_id = 61), REDUCE(sym_member_access_expression, 3, .production_id = 50), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 50), + [4022] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2652), + [4026] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2655), + [4030] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2652), [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym_lvalue_expression, 1), [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__name, 1), REDUCE(sym_lvalue_expression, 1), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [4064] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5570), - [4068] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5573), - [4072] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(6112), - [4076] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5710), - [4080] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5570), + [4040] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5562), + [4044] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5564), + [4048] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(6126), + [4052] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5795), + [4056] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5562), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 4, .production_id = 105), [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 4, .production_id = 105), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), - [4094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(4654), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), - [4105] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2395), - [4109] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2397), - [4113] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(6135), - [4117] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5236), - [4121] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2395), - [4125] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4662), - [4129] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4663), - [4133] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4662), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), - [4149] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3510), - [4153] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3509), - [4157] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(6099), - [4161] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5507), - [4165] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3510), - [4169] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3398), - [4173] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3394), - [4177] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3398), - [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(960), - [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 5), REDUCE(sym__simple_name, 1), - [4187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5108), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), - [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_lvalue_expression, 1), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, .production_id = 1), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), - [4201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(3394), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1, .production_id = 5), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_pattern, 1, .production_id = 7), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_pattern, 1, .production_id = 7), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .production_id = 68), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [4094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(3641), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [4101] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3824), + [4105] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3821), + [4109] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3824), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [4121] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2402), + [4125] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2399), + [4129] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(6149), + [4133] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5322), + [4137] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2402), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(1431), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1, .production_id = 5), + [4154] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3148), + [4158] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3146), + [4162] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(6143), + [4166] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5504), + [4170] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3148), + [4174] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3071), + [4178] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3069), + [4182] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3071), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [4192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(3069), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 5), REDUCE(sym__simple_name, 1), + [4200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(4758), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_lvalue_expression, 1), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, .production_id = 1), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .production_id = 68), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .production_id = 68), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8039), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 1), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 1), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, .production_id = 7), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, .production_id = 7), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 2, .production_id = 8), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 2, .production_id = 8), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7713), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7890), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_pattern, 1, .production_id = 7), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_pattern, 1, .production_id = 7), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7903), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7999), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 1), + [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 1), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, .production_id = 7), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, .production_id = 7), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 2, .production_id = 8), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 2, .production_id = 8), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7819), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7727), [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, .production_id = 7), [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, .production_id = 7), [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2), [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2), - [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, .production_id = 133), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, .production_id = 133), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, .production_id = 7), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, .production_id = 7), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), - [4324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5565), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, .production_id = 7), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, .production_id = 7), + [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 6, .production_id = 184), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 6, .production_id = 184), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [4324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5572), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), - [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, .production_id = 7), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, .production_id = 7), - [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type, 2, .production_id = 8), - [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type, 2, .production_id = 8), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 3, .production_id = 42), - [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 3, .production_id = 42), - [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 6, .production_id = 184), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 6, .production_id = 184), - [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scoped_base_type, 1), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scoped_base_type, 1), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 7, .production_id = 220), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 7, .production_id = 220), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8083), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [4379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5059), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [4388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(4663), - [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [4405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), REDUCE(sym__array_base_type, 1), - [4408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(2356), - [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), REDUCE(sym__pointer_base_type, 1), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 16), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 16), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 4), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 4), - [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 3), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 3), - [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 4), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 4), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_qualified_name, 3, .production_id = 74), - [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_qualified_name, 3, .production_id = 74), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 2), - [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 2), - [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 2), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 2), - [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 2), - [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 2), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), - [4474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5127), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), - [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 5), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 5), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), - [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 3), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 3), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [4497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declaration, 1), REDUCE(sym_identifier, 1), - [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_declaration, 1), REDUCE(sym_identifier, 1), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 4), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 4), - [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [4513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(3509), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, .production_id = 65), - [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lvalue_expression, 1, .production_id = 2), - [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, .production_id = 2), - [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, .production_id = 65), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 5, .production_id = 83), - [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 5, .production_id = 83), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_indirection_expression, 2), - [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pointer_indirection_expression, 2), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 4, .production_id = 83), - [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 4, .production_id = 83), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, .production_id = 7), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, .production_id = 7), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 3, .production_id = 42), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 3, .production_id = 42), + [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 7, .production_id = 220), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 7, .production_id = 220), + [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, .production_id = 133), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, .production_id = 133), + [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type, 2, .production_id = 8), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type, 2, .production_id = 8), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scoped_base_type, 1), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scoped_base_type, 1), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [4367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(3821), + [4370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(4937), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8094), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 3), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 3), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 2), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 2), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 16), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 16), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 2), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 2), + [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_qualified_name, 3, .production_id = 74), + [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_qualified_name, 3, .production_id = 74), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), REDUCE(sym__array_base_type, 1), + [4442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(2370), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), + [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), REDUCE(sym__pointer_base_type, 1), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 4), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 4), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), + [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 4), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 4), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 3), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 3), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 2), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 2), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), + [4484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declaration, 1), REDUCE(sym_identifier, 1), + [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [4489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_declaration, 1), REDUCE(sym_identifier, 1), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [4498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(3146), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [4509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(4764), + [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 4), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 4), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [4518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 5), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 5), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_access_expression, 2, .production_id = 21), + [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element_access_expression, 2, .production_id = 21), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, .production_id = 65), + [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lvalue_expression, 1, .production_id = 2), + [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, .production_id = 2), + [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, .production_id = 65), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_indirection_expression, 2), + [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pointer_indirection_expression, 2), + [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 5, .production_id = 83), + [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 5, .production_id = 83), [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 4, .production_id = 34), [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 4, .production_id = 34), - [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_lvalue_expression, 3), - [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_lvalue_expression, 3), - [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 3, .production_id = 34), - [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 3, .production_id = 34), - [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_access_expression, 2, .production_id = 21), - [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element_access_expression, 2, .production_id = 21), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [4574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_left_shift, 1), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_left_shift, 1), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_bitwise_or, 1), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_bitwise_or, 1), - [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_bitwise_xor, 1), - [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_bitwise_xor, 1), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_modulo, 1), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_modulo, 1), - [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_divide, 1), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_divide, 1), - [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_multiply, 1), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_multiply, 1), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [4606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_or, 1), - [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_or, 1), - [4610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_minus, 1), - [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_minus, 1), - [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_and, 1), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_and, 1), - [4618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_lte, 1), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_lte, 1), - [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_gt, 1), - [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_gt, 1), - [4626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_gte, 1), - [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_gte, 1), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_neq, 1), - [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_neq, 1), - [4638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_eq, 1), - [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_eq, 1), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_bitwise_and, 1), - [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_bitwise_and, 1), - [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_right_shift, 1), - [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_right_shift, 1), - [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_arrow, 1), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_arrow, 1), - [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_lt, 1), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_lt, 1), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), - [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_plus, 1), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_plus, 1), - [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_unsigned_right_shift, 1), - [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_unsigned_right_shift, 1), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 68), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 68), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 160), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 160), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 73), - [4750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 73), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_clause, 2, .production_id = 39), - [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_clause, 2, .production_id = 39), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_clause, 4, .production_id = 165), - [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_group_clause, 4, .production_id = 165), - [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .dynamic_precedence = 1, .production_id = 90), - [4776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .dynamic_precedence = 1, .production_id = 90), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), - [4780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_expression, 2), - [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 68), - [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 68), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_pattern, 2), - [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_pattern, 2), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_expression, 2), - [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_expression, 2), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_unary_expression, 2), - [4796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 3), - [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 3), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5060), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 303), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 303), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, .production_id = 152), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, .production_id = 152), - [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5087), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 3, .production_id = 248), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 3, .production_id = 248), - [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 205), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 205), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), - [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 262), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 262), - [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 201), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 201), - [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 258), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 258), - [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 197), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 197), - [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 2), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 2), - [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 254), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 254), - [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 1, .production_id = 47), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), - [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 353), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 353), - [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 9, .production_id = 355), - [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 9, .production_id = 355), - [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 106), - [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 106), - [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 107), - [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 107), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_pattern, 1), - [4972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym_lvalue_expression, 1), - [4975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym_lvalue_expression, 1), - [4978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_pattern, 1), - [4980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(2879), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, .production_id = 328), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, .production_id = 328), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 357), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 357), - [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 9, .production_id = 356), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 9, .production_id = 356), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 354), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 354), - [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 352), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 352), - [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 351), - [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 351), - [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 350), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 350), - [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 349), - [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 349), - [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 8, .production_id = 348), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 8, .production_id = 348), - [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, .production_id = 347), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, .production_id = 347), - [5027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 346), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 346), - [5031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 345), - [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 345), - [5035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, .production_id = 344), - [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, .production_id = 344), - [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 342), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 342), - [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 341), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 341), - [5047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 340), - [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 340), - [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 339), - [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 339), - [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, .production_id = 338), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, .production_id = 338), - [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 337), - [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 337), - [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 336), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 336), - [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 335), - [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 335), - [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 334), - [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 334), - [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, .production_id = 333), - [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, .production_id = 333), - [5079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 3, .dynamic_precedence = 1), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 3, .dynamic_precedence = 1), - [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, .production_id = 332), - [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, .production_id = 332), - [5087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, .production_id = 331), - [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, .production_id = 331), - [5091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 7, .production_id = 330), - [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 7, .production_id = 330), - [5095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, .production_id = 329), - [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, .production_id = 329), - [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 327), - [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 327), - [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 326), - [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 326), - [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 325), - [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 325), - [5111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 153), - [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 153), - [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 324), - [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 324), - [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 155), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 155), - [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, .production_id = 323), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, .production_id = 323), - [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, .production_id = 322), - [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, .production_id = 322), - [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 320), - [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 320), - [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 319), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 319), - [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, .production_id = 318), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, .production_id = 318), - [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 313), - [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 313), - [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 312), - [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 312), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), - [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 311), - [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 311), - [5157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5122), - [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 310), - [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 310), - [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 309), - [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 309), - [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 308), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 308), - [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 307), - [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 307), - [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 306), - [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 306), - [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 305), - [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 305), - [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 304), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 304), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 302), - [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 302), - [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 301), - [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 301), - [5196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 300), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 300), - [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 299), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 299), - [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 298), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 298), - [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 297), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 297), - [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 296), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 296), - [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 295), - [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 295), - [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 294), - [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 294), - [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, .production_id = 293), - [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, .production_id = 293), - [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 6, .production_id = 292), - [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 6, .production_id = 292), - [5232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 291), - [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 291), - [5236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 290), - [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 290), - [5240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 6, .production_id = 289), - [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 6, .production_id = 289), - [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 288), - [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 288), - [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 287), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 287), - [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 284), - [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 284), - [5256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 283), - [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 283), - [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 282), - [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 282), - [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, .production_id = 278), - [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, .production_id = 278), - [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 193), - [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 193), - [5272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 264), - [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 264), - [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 263), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 263), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, .production_id = 261), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, .production_id = 261), - [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 260), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 260), - [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 259), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 259), - [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 5, .dynamic_precedence = 1, .production_id = 257), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 5, .dynamic_precedence = 1, .production_id = 257), - [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, .production_id = 86), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, .production_id = 86), - [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, .production_id = 194), - [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, .production_id = 194), - [5306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 4, .production_id = 195), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 4, .production_id = 195), - [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 256), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 256), - [5314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 255), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 255), - [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 105), - [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 105), - [5322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, .production_id = 253), - [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, .production_id = 253), - [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 5, .production_id = 252), - [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 5, .production_id = 252), - [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 4, .production_id = 196), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 4, .production_id = 196), - [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 251), - [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 251), - [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 129), - [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 129), - [5342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 250), - [5344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 250), - [5346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 249), - [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 249), - [5350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 246), - [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 246), - [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 245), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 245), - [5358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, .production_id = 244), - [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, .production_id = 244), - [5362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, .production_id = 243), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, .production_id = 243), - [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 5, .production_id = 240), - [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 5, .production_id = 240), - [5370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 105), - [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 105), - [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 151), - [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 151), - [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 5, .production_id = 239), - [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 5, .production_id = 239), - [5382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 238), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 238), - [5386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 237), - [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 237), - [5390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 5, .production_id = 236), - [5392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 5, .production_id = 236), - [5394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 198), - [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 198), - [5398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 4, .dynamic_precedence = 1, .production_id = 200), - [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 4, .dynamic_precedence = 1, .production_id = 200), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), - [5404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [5408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 202), - [5410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 202), - [5412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 4, .dynamic_precedence = 1, .production_id = 204), - [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 4, .dynamic_precedence = 1, .production_id = 204), - [5416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 199), - [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 199), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [5456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_list, 1), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_list, 1), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 4, .production_id = 105), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), - [5486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5596), - [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), - [5491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5801), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6246), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_body, 4, .production_id = 165), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, .production_id = 127), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, .production_id = 127), - [5542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, .production_id = 82), - [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, .production_id = 82), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [5554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, .production_id = 82), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, .production_id = 82), - [5558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, .production_id = 80), - [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, .production_id = 80), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), - [5566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(2206), - [5569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(5162), - [5572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(2207), - [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(5631), - [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2), - [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(4801), - [5583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(6738), - [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(2206), - [5589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(5874), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), - [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 6, .production_id = 127), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 6, .production_id = 127), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), - [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 3, .production_id = 33), - [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 3, .production_id = 33), - [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_clause, 4), - [5608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, .production_id = 80), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, .production_id = 80), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), - [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 4, .production_id = 104), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), - [5636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, .production_id = 33), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, .production_id = 33), - [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, .production_id = 39), - [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 5, .production_id = 150), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [5686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2, .production_id = 8), - [5692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2, .production_id = 8), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 2, .production_id = 8), - [5736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_base_type, 1), REDUCE(sym_stackalloc_expression, 2, .production_id = 8), - [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 2, .production_id = 8), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 2), - [5757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 2), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [5761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5067), - [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, .production_id = 105), - [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_attribute_list, 2), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 48), - [5778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 48), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5112), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier, 1), - [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 6, .production_id = 193), - [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 6, .production_id = 193), - [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), - [5881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [5901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), - [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 5, .production_id = 151), - [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 5, .production_id = 151), - [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 5, .production_id = 105), - [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 5, .production_id = 105), - [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, .production_id = 55), - [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, .production_id = 55), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [5931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 136), - [5933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 136), - [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [5941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1), - [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1), - [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 98), - [5947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 98), - [5949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(3737), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5954] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type, 1), REDUCE(sym__array_base_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), - [5958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), - [5961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(597), - [5964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), - [5967] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(3807), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), - [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8130), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invocation_expression, 2, .production_id = 20), - [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invocation_expression, 2, .production_id = 20), - [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 67), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 67), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 105), - [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 105), - [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 3), - [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 3), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [6025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_expression, 4), - [6027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_expression, 4), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 151), - [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 151), - [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 5), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3), - [6061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3), - [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 3), - [6065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 3), - [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4), - [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_or_group_clause, 1, .production_id = 26), - [6075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__select_or_group_clause, 1, .production_id = 26), - [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_or_group_clause, 1, .production_id = 25), - [6079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__select_or_group_clause, 1, .production_id = 25), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4, .production_id = 78), - [6083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4, .production_id = 78), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [6091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(3807), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_stackalloc_expression, 4), - [6096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_stackalloc_expression, 4), - [6098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 4), - [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 4), - [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 6, .production_id = 139), - [6104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 6, .production_id = 139), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 3, .production_id = 166), - [6116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_body_repeat2, 3, .production_id = 166), - [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 4, .production_id = 211), - [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_body_repeat2, 4, .production_id = 211), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_lvalue_expression, 1), - [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_lvalue_expression, 1), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_expression, 2, .production_id = 23), - [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_expression, 2, .production_id = 23), - [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 42), - [6154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 42), - [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 100), - [6158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 100), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 68), - [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 68), - [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof_expression, 4, .production_id = 42), - [6172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof_expression, 4, .production_id = 42), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 3), - [6176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 3), - [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 49), - [6180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 49), - [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 38), - [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3, .production_id = 28), - [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3, .production_id = 28), - [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_refvalue_expression, 6, .production_id = 192), - [6190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_refvalue_expression, 6, .production_id = 192), - [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 5, .production_id = 139), - [6194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 5, .production_id = 139), - [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3), - [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3), - [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [6202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), - [6206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), SHIFT_REPEAT(4401), - [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 4, .production_id = 99), - [6219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 4, .production_id = 99), - [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 32), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 6, .production_id = 193), - [6229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 6, .production_id = 193), - [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 5, .production_id = 99), - [6233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 5, .production_id = 99), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), - [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 5, .production_id = 135), - [6251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 5, .production_id = 135), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 5), - [6257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 5), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 129), - [6263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 4), - [6265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 4), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 4, .production_id = 76), - [6269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 4, .production_id = 76), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 2), - [6273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 2), - [6275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 4, .production_id = 219), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_makeref_expression, 4), - [6283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_makeref_expression, 4), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 4), - [6291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 4), - [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reftype_expression, 4), - [6295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reftype_expression, 4), - [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 3, .production_id = 183), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 4, .production_id = 128), - [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 85), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 35), - [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_unary_expression, 2), - [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_unary_expression, 2), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_binding_expression, 2, .production_id = 9), - [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_binding_expression, 2, .production_id = 9), - [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 3), - [6319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 3), - [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .dynamic_precedence = 17, .production_id = 8), - [6323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .dynamic_precedence = 17, .production_id = 8), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 6), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 91), - [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 2), - [6337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 2), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [6341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [6343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 86), - [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expression, 3), - [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_expression, 3), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 2), - [6353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 2), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, .production_id = 66), - [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, .production_id = 66), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 4, .production_id = 97), - [6363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 4, .production_id = 97), - [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 5), - [6367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 5), - [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 4), - [6371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 4), - [6373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 4, .production_id = 55), - [6375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 4, .production_id = 55), - [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [6379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 4), - [6387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 4), - [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 3, .production_id = 8), - [6391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 3, .production_id = 8), - [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3), - [6395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3, .production_id = 30), - [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3, .production_id = 30), - [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement_expression, 1), - [6403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement_expression, 1), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 3, .production_id = 141), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 4, .production_id = 265), - [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 3), - [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), - [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4, .production_id = 5), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [6463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, .production_id = 39), - [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2), - [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 3, .production_id = 5), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), - [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_alignment_clause, 2), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 5), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), - [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 1, .production_id = 47), - [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_initializer, 3), - [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 1), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), - [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 3, .production_id = 206), - [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_expression_repeat1, 2), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_clause, 2), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [6573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1), - [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 4, .production_id = 210), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 2), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_expression_clause, 2, .production_id = 39), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 3, .production_id = 141), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [6891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5631), - [6894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5874), - [6897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5056), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [6908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(647), - [6911] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(4697), - [6915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5641), - [6918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5819), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5101), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [6940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5110), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), - [6953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(4697), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6298), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), - [6992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(662), - [6995] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(4777), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), - [7005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 1), - [7007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 1), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [7025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_pattern_expression, 3, .production_id = 69), - [7027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_pattern_expression, 3, .production_id = 69), - [7029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(4777), - [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [7034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), - [7038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 2, .production_id = 247), - [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 2, .production_id = 247), - [7042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1, .production_id = 5), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [7050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [7052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1), - [7054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1), - [7056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_pattern, 2, .production_id = 113), - [7058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_pattern, 2, .production_id = 113), - [7060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_pattern, 2, .production_id = 114), - [7062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_pattern, 2, .production_id = 114), - [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, .production_id = 113), - [7066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, .production_id = 113), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [7072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym_non_lvalue_expression, 1), - [7075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym_non_lvalue_expression, 1), - [7078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym__expression_statement_expression, 1), - [7081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym__expression_statement_expression, 1), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [7088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_pattern, 3), - [7090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_pattern, 3), - [7092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 2), - [7094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 2), - [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, .production_id = 162), - [7098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, .production_id = 162), - [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and_pattern, 3, .production_id = 68), - [7102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and_pattern, 3, .production_id = 68), - [7104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 3, .production_id = 285), - [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 3, .production_id = 285), - [7108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 3, .production_id = 286), - [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 3, .production_id = 286), - [7112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, .production_id = 157), - [7114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, .production_id = 157), - [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [7120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 161), - [7122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, .production_id = 161), - [7124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 207), - [7126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, .production_id = 207), - [7128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 3, .production_id = 113), - [7130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 3, .production_id = 113), - [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 4, .production_id = 209), - [7134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 4, .production_id = 209), - [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 207), - [7138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5, .production_id = 207), - [7140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 4, .production_id = 266), - [7142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 4, .production_id = 266), - [7144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 4, .production_id = 321), - [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 4, .production_id = 321), - [7148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 161), - [7150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, .production_id = 161), - [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), - [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), - [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), - [7204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), SHIFT_REPEAT(5162), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [7211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(669), - [7214] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(3737), - [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8142), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), - [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), - [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), - [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8135), - [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [7352] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2206), - [7356] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2207), - [7360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), - [7363] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2206), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [7377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), SHIFT_REPEAT(5288), - [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [7398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(666), - [7401] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(2356), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [7465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5136), - [7468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5135), - [7471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5229), - [7474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5510), - [7477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(8124), - [7480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5499), - [7483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(6938), - [7486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5136), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_body, 3, .production_id = 118), - [7493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_body, 3, .production_id = 118), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), - [7499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), - [7501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6420), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_body, 2, .production_id = 72), - [7508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_body, 2, .production_id = 72), - [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_body, 2, .production_id = 71), - [7512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_body, 2, .production_id = 71), - [7514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_body, 1, .production_id = 24), - [7516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_body, 1, .production_id = 24), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [7528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), - [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8045), - [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), - [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), - [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), - [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [7635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, .production_id = 68), - [7637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3, .production_id = 68), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), - [7663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_pattern, 2), - [7665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_pattern, 2), - [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), - [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [7691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6390), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [7696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6399), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [7707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6372), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), - [7718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6400), - [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_base_type, 1), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_base_type, 1), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7963), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), - [7745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5076), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), - [7752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6401), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [7769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5600), - [7772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5827), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), - [7777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6387), - [7780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(658), - [7783] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(5585), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [7795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(5585), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [7808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6371), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 3, .production_id = 105), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [7821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 1, .production_id = 7), REDUCE(sym_type_pattern, 1, .production_id = 7), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6375), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [7861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), SHIFT_REPEAT(2206), - [7864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), SHIFT_REPEAT(2207), - [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), - [7869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), - [7871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), SHIFT_REPEAT(6184), - [7874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), SHIFT_REPEAT(2206), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [7885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6413), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [7914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6402), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), - [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [7943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6426), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [7958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6429), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [7967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6430), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [7974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6427), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [7985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6378), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [7998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6421), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), - [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), - [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), - [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), - [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7583), - [8041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), REDUCE(sym_type, 1), - [8044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(673), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7610), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [8073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6417), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [8088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6364), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [8101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 38), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [8111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6397), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [8126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6385), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [8141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6377), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [8146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1), SHIFT(3193), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [8159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 5), SHIFT(6219), - [8162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 5), SHIFT(6771), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), - [8169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 5), - [8171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1), SHIFT(6219), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), - [8178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(2206), - [8181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(2207), - [8184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_interface_specifier, 2), - [8186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), - [8188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(2206), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), - [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), - [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 1), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [8207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), - [8211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(5136), - [8214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(5135), - [8217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(5136), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6300), - [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [8252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2), - [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2), - [8256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2), SHIFT_REPEAT(6078), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [8283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5634), - [8286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5813), - [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [8293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 1, .production_id = 7), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [8359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2), - [8361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2), SHIFT_REPEAT(6201), - [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [8392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), - [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), - [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), - [8398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1), - [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [8416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, .production_id = 1), - [8418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, .production_id = 1), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7455), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), - [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7565), - [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), - [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), - [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8155), - [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), - [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), - [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), - [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), - [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), - [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), - [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8129), - [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8127), - [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8126), - [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [8496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2206), - [8499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2207), - [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1), - [8504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2206), - [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 4, .production_id = 105), - [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), - [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7512), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), - [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), - [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), - [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [8549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 2), - [8551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 2), SHIFT_REPEAT(6394), - [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_directive_repeat1, 2), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [8560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_directive_repeat1, 1), - [8562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_target_specifier, 2), - [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_target_specifier, 2), - [8566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7544), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), - [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), - [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7635), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [8596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7509), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [8602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), - [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), - [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7555), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [8712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [8722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat1, 2), SHIFT_REPEAT(1351), - [8725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat1, 2), SHIFT_REPEAT(5344), - [8728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat1, 2), SHIFT_REPEAT(5223), - [8731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat1, 2), SHIFT_REPEAT(6367), - [8734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat1, 2), SHIFT_REPEAT(762), - [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_body_repeat1, 2), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [8747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1), SHIFT(5120), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [8752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 172), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [8756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 175), - [8758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 2, .production_id = 9), - [8760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, .production_id = 46), - [8762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, .production_id = 41), - [8764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 95), - [8766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 121), - [8768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 217), - [8770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, .production_id = 41), - [8772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, .production_id = 9), - [8774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, .production_id = 175), - [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, .production_id = 41), - [8778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), SHIFT(3029), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [8783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), SHIFT(3013), - [8786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, .production_id = 175), - [8788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), SHIFT(2974), - [8791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), SHIFT(3017), - [8794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, .production_id = 121), - [8796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, .production_id = 121), - [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 2, .production_id = 9), - [8800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1), REDUCE(sym__reserved_identifier, 1), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, .production_id = 96), - [8815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, .production_id = 96), SHIFT_REPEAT(3193), - [8818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, .production_id = 96), SHIFT_REPEAT(6000), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [8823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, .production_id = 164), SHIFT_REPEAT(821), - [8826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, .production_id = 164), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [8830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 2, .production_id = 70), - [8832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 3, .production_id = 116), - [8834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 5), REDUCE(sym__simple_name, 1), - [8837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 3, .production_id = 115), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [8841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2), SHIFT_REPEAT(5343), - [8844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2), SHIFT_REPEAT(3193), - [8847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2), - [8849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2), SHIFT_REPEAT(6000), - [8852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1), SHIFT(5083), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [8857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 2, .production_id = 47), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [8861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, .production_id = 41), - [8863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, .production_id = 70), - [8865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 2, .production_id = 9), - [8867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 121), - [8869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 2, .production_id = 8), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [8873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_base_list, 2, .production_id = 8), SHIFT(541), - [8876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 2), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), - [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), - [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), - [8894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 180), - [8896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 180), SHIFT_REPEAT(5381), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7573), - [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), - [8911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 4, .production_id = 179), - [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7554), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [8929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [8931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(6824), - [8934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(6817), - [8937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(6827), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [8944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_body_repeat1, 1), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [8948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_into_clause, 2), - [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [8954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 8), - [8956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 8), SHIFT_REPEAT(541), - [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [8971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, .production_id = 36), - [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, .production_id = 37), - [8977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2), SHIFT_REPEAT(6963), - [8980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2), - [8982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2), SHIFT_REPEAT(1045), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [8987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_clause, 1), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [8991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 3, .production_id = 8), - [8993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 3, .production_id = 130), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [8997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, .production_id = 89), - [8999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, .production_id = 87), - [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [9003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 4, .production_id = 163), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), - [9007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2), SHIFT_REPEAT(5350), - [9010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2), - [9012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2), SHIFT_REPEAT(8076), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [9025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3, .production_id = 131), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [9035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), - [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ref_base_type, 1), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), - [9043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 4), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [9057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 159), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [9061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4, .production_id = 181), - [9063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 5), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [9067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 157), - [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2), - [9071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2), SHIFT_REPEAT(1045), - [9074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2), SHIFT_REPEAT(7189), - [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 35), - [9081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2), - [9083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2), SHIFT_REPEAT(4766), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [9088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 1, .production_id = 45), - [9090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 176), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [9098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2), - [9100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2), SHIFT_REPEAT(1045), - [9103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2), SHIFT_REPEAT(7254), - [9106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, .production_id = 44), - [9108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 3, .production_id = 8), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [9112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 9), - [9114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6653), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 4), - [9121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 122), - [9123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2), - [9125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2), SHIFT_REPEAT(6395), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [9132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [9138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 172), - [9140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [9152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2), - [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2), SHIFT_REPEAT(6116), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [9163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 41), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 95), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [9171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 95), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [9181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, .production_id = 156), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [9189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, .production_id = 203), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), - [9199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 2), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [9209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [9211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [9213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, .production_id = 9), - [9215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_content, 1), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [9219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 68), - [9221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [9225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1), - [9227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 3), - [9229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 46), - [9231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 121), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [9235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 175), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), - [9251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 68), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [9257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 41), - [9259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 1), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [9271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 5), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [9275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 56), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [9301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 121), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [9309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, .production_id = 146), - [9311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, .production_id = 146), SHIFT_REPEAT(312), - [9314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, .production_id = 146), SHIFT_REPEAT(8088), - [9317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 46), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [9321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 56), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [9337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_constraint, 3), - [9339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, .production_id = 172), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [9343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, .production_id = 175), - [9345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, .production_id = 217), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [9349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, .production_id = 154), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [9357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 9), - [9359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 8, .production_id = 217), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [9371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, .production_id = 105), - [9373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, .production_id = 7), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [9377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 2, .production_id = 108), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [9381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 1), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [9391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 86), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), - [9409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 44), - [9411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [9413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 91), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [9417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 2, .production_id = 9), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [9427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 180), SHIFT_REPEAT(5353), - [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [9432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, .production_id = 5), REDUCE(sym_tuple_element, 2, .production_id = 35), - [9435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, .production_id = 5), - [9437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 2, .dynamic_precedence = 1, .production_id = 35), - [9439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, .production_id = 9), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 129), - [9449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, .production_id = 41), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [9455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 1, .production_id = 5), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [9459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 1), - [9461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 44), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [9465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_string_content, 1), - [9467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), - [9469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, .production_id = 125), - [9471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 1), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [9477] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 35), REDUCE(sym_tuple_element, 2, .production_id = 35), REDUCE(sym_declaration_expression, 2, .dynamic_precedence = 1, .production_id = 35), - [9481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 3), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [9485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2), SHIFT_REPEAT(7212), - [9488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2), - [9490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 3, .production_id = 63), - [9492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor_base_type, 2, .production_id = 7), - [9494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, .production_id = 121), - [9496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, .production_id = 122), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [9500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, .production_id = 176), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [9504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, .production_id = 121), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [9512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 6, .production_id = 218), - [9514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5), - [9516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [9520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, .production_id = 123), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [9524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 41), - [9526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, .production_id = 112), - [9528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, .production_id = 178), - [9530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, .production_id = 177), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [9534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 121), - [9536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, .production_id = 9), - [9538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, .production_id = 173), - [9540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 7, .production_id = 176), - [9542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 41), - [9544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 7, .production_id = 175), - [9546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 122), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [9550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 9), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [9566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 5, .production_id = 203), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [9606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 35), REDUCE(sym_tuple_element, 2, .production_id = 35), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [9613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, .production_id = 143), - [9615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, .production_id = 143), SHIFT_REPEAT(873), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [9626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 3, .production_id = 86), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [9630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 1), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [9636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, .production_id = 158), SHIFT_REPEAT(6193), - [9639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, .production_id = 158), - [9641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, .production_id = 101), - [9643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bracketed_argument_list_repeat1, 2, .production_id = 84), SHIFT_REPEAT(569), - [9646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_argument_list_repeat1, 2, .production_id = 84), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), - [9650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 180), SHIFT_REPEAT(5386), - [9653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2), SHIFT_REPEAT(640), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [9700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_initializer, 3), - [9702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, .production_id = 143), SHIFT_REPEAT(1700), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [9739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, .production_id = 168), SHIFT_REPEAT(5382), - [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, .production_id = 168), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [9750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, .production_id = 14), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [9776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, .production_id = 140), SHIFT_REPEAT(797), - [9779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, .production_id = 140), - [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [9799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 2, .production_id = 14), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [9821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_filter_clause, 4), - [9823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 4, .production_id = 86), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [9847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(570), - [9850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), - [9868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2), SHIFT_REPEAT(6204), - [9871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2), - [9873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2), SHIFT_REPEAT(6360), - [9876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [9888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 110), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, .production_id = 62), - [9904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 1), - [9906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_raw_string_content, 1), - [9908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, .production_id = 280), SHIFT_REPEAT(3309), - [9911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, .production_id = 280), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [9953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, .production_id = 111), SHIFT_REPEAT(6358), - [9956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, .production_id = 111), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [9972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 1), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [9984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 137), SHIFT_REPEAT(559), - [9987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 137), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [9997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 1), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), - [10001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, .production_id = 81), SHIFT_REPEAT(6084), - [10004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, .production_id = 81), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [10028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2), SHIFT_REPEAT(6359), - [10031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [10041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 5), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [10051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2), SHIFT_REPEAT(295), - [10054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [10058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, .production_id = 208), SHIFT_REPEAT(357), - [10061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, .production_id = 208), - [10063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(5219), - [10066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [10070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2), SHIFT_REPEAT(309), - [10073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [10077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, .production_id = 88), SHIFT_REPEAT(3303), - [10080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, .production_id = 88), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [10090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2), SHIFT_REPEAT(6083), - [10093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2), - [10095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_verbatim_string_content, 1), - [10097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2), SHIFT_REPEAT(817), - [10100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [10132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, .production_id = 182), SHIFT_REPEAT(6009), - [10135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, .production_id = 182), - [10137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, .production_id = 156), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [10149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2), SHIFT_REPEAT(6020), - [10152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [10162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 3, .production_id = 62), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [10202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, .production_id = 154), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), - [10208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, .production_id = 158), SHIFT_REPEAT(6219), - [10211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, .production_id = 158), - [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), - [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), - [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8028), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [10229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_expression_repeat1, 2), SHIFT_REPEAT(1122), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [10242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 111), - [10244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 111), SHIFT_REPEAT(6211), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [10255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 4, .production_id = 129), - [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), - [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), - [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [10283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 111), SHIFT_REPEAT(6215), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [10312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2), SHIFT_REPEAT(306), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [10323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, .production_id = 108), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [10347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 3, .production_id = 8), - [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [10367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 2, .production_id = 35), REDUCE(sym_declaration_expression, 2, .dynamic_precedence = 1, .production_id = 35), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8159), - [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), - [10404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), - [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), - [10408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 4, .production_id = 94), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), - [10418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 2), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [10430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 41), - [10432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 2, .production_id = 35), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [10436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, .production_id = 131), - [10438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8047), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [10442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 4), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8160), - [10448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7690), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [10452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7965), - [10454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, .production_id = 213), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [10458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 1), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [10462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, .production_id = 216), - [10464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, .production_id = 110), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), - [10474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [10478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, .production_id = 37), - [10480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, .production_id = 241), - [10482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, .production_id = 242), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7892), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [10492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, .production_id = 171), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), - [10508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, .production_id = 119), - [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7732), - [10512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, .production_id = 113), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [10516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 7, .production_id = 268), - [10518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 5), - [10520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, .production_id = 105), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [10524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, .production_id = 151), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [10530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 3), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [10534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2), - [10536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, .production_id = 37), - [10538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, .production_id = 279), - [10540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, .production_id = 281), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [10544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, .production_id = 36), - [10546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 9), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [10550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 6, .production_id = 193), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), - [10554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, .production_id = 134), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [10558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 98), - [10560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, .production_id = 138), - [10562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, .production_id = 9), - [10564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [10566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 2), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), - [10570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_argument_list_repeat1, 2, .production_id = 34), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [10576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, .production_id = 33), - [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7770), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [10586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 3), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [10616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [10640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 1, .production_id = 3), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), - [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [10698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 2), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), - [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), - [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), - [10736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, .production_id = 76), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [10748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 5, .production_id = 193), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [10756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 193), - [10758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, .production_id = 75), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [10768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, .production_id = 151), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [10780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 151), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [10792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 2, .production_id = 8), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [10814] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [10816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, .production_id = 93), - [10818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, .production_id = 132), - [10820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, .production_id = 15), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [10844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 5, .production_id = 193), - [10846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, .production_id = 92), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [10854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 5, .production_id = 193), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7962), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [10876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 5, .production_id = 193), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [10886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 2), - [10888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 4, .production_id = 124), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [10920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, .production_id = 169), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [10932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, .production_id = 120), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [10968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, .production_id = 170), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [10996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), - [11014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 7, .production_id = 267), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), - [11078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, .production_id = 174), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [11094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, .production_id = 109), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [11114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 4, .production_id = 151), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [11120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, .production_id = 151), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [11146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 4, .production_id = 151), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [11164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 5), - [11166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 5), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [11180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_format_clause, 2), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [11190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, .production_id = 28), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [11284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, .production_id = 215), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [11292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, .production_id = 212), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7878), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [11358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 3, .production_id = 40), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), - [11378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 4), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [11414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 4), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [11436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, .production_id = 214), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [11476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7891), - [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7888), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [11482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7887), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [11496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 1, .production_id = 7), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [11510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 3), - [11512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_undef, 3), - [11514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_define, 3), - [11516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_warning, 3), - [11518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_error, 3), - [11520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 3), - [11522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 3, .production_id = 29), - [11524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 3, .production_id = 29), - [11526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 6), - [11528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 5), - [11530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4), - [11532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 4), - [11534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 14), - [11536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 15), - [11538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 4), - [11540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 2), - [11542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 2), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 4, .production_id = 83), + [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 4, .production_id = 83), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_lvalue_expression, 3), + [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_lvalue_expression, 3), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 3, .production_id = 34), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 3, .production_id = 34), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_lt, 1), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_lt, 1), + [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_multiply, 1), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_multiply, 1), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_gte, 1), + [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_gte, 1), + [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_arrow, 1), + [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_arrow, 1), + [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_eq, 1), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_eq, 1), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_neq, 1), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_neq, 1), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_lte, 1), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_lte, 1), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_minus, 1), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_minus, 1), + [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_and, 1), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_and, 1), + [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_plus, 1), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_plus, 1), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [4618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_gt, 1), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_gt, 1), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_or, 1), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_or, 1), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [4634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_bitwise_xor, 1), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_bitwise_xor, 1), + [4638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_bitwise_and, 1), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_bitwise_and, 1), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 3), + [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 3), + [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(4776), + [4667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 3, .production_id = 248), + [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 3, .production_id = 248), + [4671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 254), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 254), + [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 205), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 205), + [4683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 2), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 2), + [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 262), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 262), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 201), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 201), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 303), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 303), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 258), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 258), + [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 197), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 197), + [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(4792), + [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, .production_id = 152), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, .production_id = 152), + [4734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, .production_id = 318), + [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, .production_id = 318), + [4738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(2738), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 304), + [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 304), + [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 352), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 352), + [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 155), + [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 155), + [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 353), + [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 353), + [4761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 6, .production_id = 292), + [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 6, .production_id = 292), + [4765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, .production_id = 278), + [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, .production_id = 278), + [4769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 153), + [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 153), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 4, .dynamic_precedence = 1, .production_id = 200), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 4, .dynamic_precedence = 1, .production_id = 200), + [4779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 305), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 305), + [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 354), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 354), + [4787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 349), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 349), + [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 8, .production_id = 348), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 8, .production_id = 348), + [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 9, .production_id = 355), + [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 9, .production_id = 355), + [4799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 9, .production_id = 356), + [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 9, .production_id = 356), + [4803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 302), + [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 302), + [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 306), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 306), + [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 357), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 357), + [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 301), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 301), + [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, .production_id = 347), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, .production_id = 347), + [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 300), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 300), + [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 307), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 307), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), + [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 299), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 299), + [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 308), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 308), + [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 346), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 346), + [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 282), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 282), + [4849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 309), + [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 309), + [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, .production_id = 86), + [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, .production_id = 86), + [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 345), + [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 345), + [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(4978), + [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, .production_id = 344), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, .production_id = 344), + [4868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 310), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 310), + [4872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 264), + [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 264), + [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 3, .dynamic_precedence = 1), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 3, .dynamic_precedence = 1), + [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 342), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 342), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 311), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 311), + [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 263), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 263), + [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, .production_id = 194), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, .production_id = 194), + [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 341), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 341), + [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 202), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 202), + [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 312), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 312), + [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 4, .production_id = 195), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 4, .production_id = 195), + [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 105), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 105), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 340), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 340), + [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 297), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 297), + [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 283), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 283), + [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 4, .production_id = 196), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 4, .production_id = 196), + [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, .production_id = 261), + [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, .production_id = 261), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 5, .production_id = 236), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 5, .production_id = 236), + [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 237), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 237), + [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 238), + [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 238), + [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 5, .production_id = 239), + [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 5, .production_id = 239), + [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 296), + [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 296), + [4956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 151), + [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 151), + [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 313), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 313), + [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 105), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 105), + [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 350), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 350), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 260), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 260), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 5, .production_id = 240), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 5, .production_id = 240), + [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, .production_id = 243), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, .production_id = 243), + [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 284), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 284), + [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 339), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 339), + [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, .production_id = 244), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, .production_id = 244), + [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, .production_id = 338), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, .production_id = 338), + [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 259), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 259), + [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 245), + [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 245), + [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 198), + [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 198), + [5012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 337), + [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 337), + [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 246), + [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 246), + [5020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 287), + [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 287), + [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 288), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 288), + [5028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 6, .production_id = 289), + [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 6, .production_id = 289), + [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 336), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 336), + [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 290), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 290), + [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 249), + [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 249), + [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 250), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 250), + [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 129), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 129), + [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 251), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 251), + [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 291), + [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 291), + [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 4, .dynamic_precedence = 1, .production_id = 204), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 4, .dynamic_precedence = 1, .production_id = 204), + [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 319), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 319), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_pattern, 1), + [5070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym_lvalue_expression, 1), + [5073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym_lvalue_expression, 1), + [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_pattern, 1), + [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 199), + [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 199), + [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 5, .production_id = 252), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 5, .production_id = 252), + [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 320), + [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 320), + [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, .production_id = 253), + [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, .production_id = 253), + [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, .production_id = 322), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, .production_id = 322), + [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 335), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 335), + [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 295), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 295), + [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 294), + [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 294), + [5110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, .production_id = 323), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, .production_id = 323), + [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 5, .dynamic_precedence = 1, .production_id = 257), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 5, .dynamic_precedence = 1, .production_id = 257), + [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 324), + [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 324), + [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, .production_id = 293), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, .production_id = 293), + [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 256), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 256), + [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 325), + [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 325), + [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 326), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 326), + [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 334), + [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 334), + [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 327), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 327), + [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, .production_id = 328), + [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, .production_id = 328), + [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, .production_id = 329), + [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, .production_id = 329), + [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, .production_id = 333), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, .production_id = 333), + [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 7, .production_id = 330), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 7, .production_id = 330), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 193), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 193), + [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 298), + [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 298), + [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 351), + [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 351), + [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1), + [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), + [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, .production_id = 331), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, .production_id = 331), + [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, .production_id = 332), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, .production_id = 332), + [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 107), + [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 107), + [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 106), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 106), + [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 255), + [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 255), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_list, 1), + [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_list, 1), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 4, .production_id = 105), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_clause, 4, .production_id = 165), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_group_clause, 4, .production_id = 165), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 160), + [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 160), + [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 68), + [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 68), + [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_clause, 2, .production_id = 39), + [5306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_clause, 2, .production_id = 39), + [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_unary_expression, 2), + [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .dynamic_precedence = 1, .production_id = 90), + [5316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .dynamic_precedence = 1, .production_id = 90), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), + [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_pattern, 2), + [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_pattern, 2), + [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_expression, 2), + [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_expression, 2), + [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 73), + [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 73), + [5340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), + [5342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5598), + [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), + [5347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5885), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 68), + [5358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 68), + [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [5362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), + [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_expression, 2), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 3, .production_id = 33), + [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 3, .production_id = 33), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [5420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, .production_id = 80), + [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, .production_id = 80), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), + [5428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 6, .production_id = 127), + [5430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 6, .production_id = 127), + [5432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, .production_id = 82), + [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, .production_id = 82), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [5438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, .production_id = 127), + [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, .production_id = 127), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [5444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, .production_id = 82), + [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, .production_id = 82), + [5448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, .production_id = 80), + [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, .production_id = 80), + [5452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(2207), + [5455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(5120), + [5458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(2206), + [5461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(5623), + [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2), + [5466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(4439), + [5469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(6719), + [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(2207), + [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(5876), + [5478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, .production_id = 33), + [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, .production_id = 33), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2, .production_id = 8), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2, .production_id = 8), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 48), + [5518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 48), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 2, .production_id = 8), + [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_base_type, 1), REDUCE(sym_stackalloc_expression, 2, .production_id = 8), + [5543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 2, .production_id = 8), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [5581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(4801), + [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_attribute_list, 2), + [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 1, .production_id = 47), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 2), + [5592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 2), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [5624] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type, 1), REDUCE(sym__array_base_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), + [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), + [5631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(617), + [5634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), + [5637] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(3254), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [5651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(4920), + [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [5656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [5658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 98), + [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 98), + [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), + [5664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [5668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 5, .production_id = 105), + [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 5, .production_id = 105), + [5672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 5, .production_id = 151), + [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 5, .production_id = 151), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8141), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier, 1), + [5696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1), + [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1), + [5700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(3176), + [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, .production_id = 55), + [5705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, .production_id = 55), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [5709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 6, .production_id = 193), + [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 6, .production_id = 193), + [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 136), + [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 136), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 3, .production_id = 8), + [5725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 3, .production_id = 8), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 67), + [5747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 67), + [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invocation_expression, 2, .production_id = 20), + [5751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invocation_expression, 2, .production_id = 20), + [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 5, .production_id = 135), + [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 5, .production_id = 135), + [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 5), + [5759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 5), + [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_expression, 2, .production_id = 23), + [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_expression, 2, .production_id = 23), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 5), + [5769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 5), + [5771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3, .production_id = 30), + [5773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3, .production_id = 30), + [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 3), + [5777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 3), + [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 68), + [5781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 68), + [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_or_group_clause, 1, .production_id = 25), + [5785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__select_or_group_clause, 1, .production_id = 25), + [5787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_or_group_clause, 1, .production_id = 26), + [5789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__select_or_group_clause, 1, .production_id = 26), + [5791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 4), + [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 4), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expression, 3), + [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_expression, 3), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 6, .production_id = 139), + [5815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 6, .production_id = 139), + [5817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 4, .production_id = 55), + [5819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 4, .production_id = 55), + [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), + [5823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), SHIFT_REPEAT(3440), + [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), + [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_refvalue_expression, 6, .production_id = 192), + [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_refvalue_expression, 6, .production_id = 192), + [5832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(3254), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_lvalue_expression, 1), + [5841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_lvalue_expression, 1), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 4, .production_id = 76), + [5855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 4, .production_id = 76), + [5857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [5859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 2), + [5863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 2), + [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 5, .production_id = 99), + [5867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 5, .production_id = 99), + [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 5, .production_id = 139), + [5871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 5, .production_id = 139), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 3, .production_id = 166), + [5875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_body_repeat2, 3, .production_id = 166), + [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3), + [5881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 4, .production_id = 97), + [5889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 4, .production_id = 97), + [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 105), + [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 105), + [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 151), + [5897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 151), + [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [5901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 2), + [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 2), + [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 6, .production_id = 193), + [5909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 6, .production_id = 193), + [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 4), + [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 4), + [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement_expression, 1), + [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement_expression, 1), + [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 2), + [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 2), + [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_binding_expression, 2, .production_id = 9), + [5929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_binding_expression, 2, .production_id = 9), + [5931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reftype_expression, 4), + [5933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reftype_expression, 4), + [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_makeref_expression, 4), + [5937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_makeref_expression, 4), + [5939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof_expression, 4, .production_id = 42), + [5941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof_expression, 4, .production_id = 42), + [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 42), + [5945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 42), + [5947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_stackalloc_expression, 4), + [5949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_stackalloc_expression, 4), + [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_expression, 4), + [5953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_expression, 4), + [5955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 100), + [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 100), + [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3, .production_id = 28), + [5961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3, .production_id = 28), + [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_unary_expression, 2), + [5965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_unary_expression, 2), + [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 3), + [5969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 3), + [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 4, .production_id = 99), + [5973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 4, .production_id = 99), + [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 4), + [5977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 4), + [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 4, .production_id = 211), + [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_body_repeat2, 4, .production_id = 211), + [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .dynamic_precedence = 17, .production_id = 8), + [5985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .dynamic_precedence = 17, .production_id = 8), + [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), + [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), + [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 49), + [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 49), + [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 3), + [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 3), + [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 3), + [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 3), + [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3), + [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3), + [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3), + [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 4), + [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 4), + [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4), + [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4), + [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, .production_id = 66), + [6021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, .production_id = 66), + [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 4), + [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 4), + [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4, .production_id = 78), + [6029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4, .production_id = 78), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_body, 4, .production_id = 165), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1), + [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_clause, 4), + [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 5, .production_id = 150), + [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 4, .production_id = 104), + [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, .production_id = 39), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [6221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5623), + [6224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5876), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [6229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(4785), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [6318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5031), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, .production_id = 105), + [6347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(609), + [6350] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(3935), + [6354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5615), + [6357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5861), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [6508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(4865), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6701), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), + [6631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(3935), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 4, .production_id = 321), + [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 4, .production_id = 321), + [6672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 1), + [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 1), + [6676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(666), + [6679] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(4274), + [6683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 3, .production_id = 285), + [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 3, .production_id = 285), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [6743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1, .production_id = 5), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 32), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), + [6757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 161), + [6759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, .production_id = 161), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 3, .production_id = 286), + [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 3, .production_id = 286), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7860), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), + [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, .production_id = 157), + [6819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, .production_id = 157), + [6821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 86), + [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and_pattern, 3, .production_id = 68), + [6825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and_pattern, 3, .production_id = 68), + [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, .production_id = 162), + [6829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, .production_id = 162), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), + [6833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 91), + [6835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 2), + [6837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 2), + [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_pattern, 3), + [6841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_pattern, 3), + [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 161), + [6845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, .production_id = 161), + [6847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 5), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [6855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 207), + [6857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, .production_id = 207), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 6), + [6867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 3, .production_id = 183), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, .production_id = 113), + [6877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, .production_id = 113), + [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 4, .production_id = 219), + [6881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 3, .production_id = 113), + [6883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 3, .production_id = 113), + [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_pattern_expression, 3, .production_id = 69), + [6887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_pattern_expression, 3, .production_id = 69), + [6889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 85), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 4, .production_id = 209), + [6919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 4, .production_id = 209), + [6921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 207), + [6923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5, .production_id = 207), + [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 4, .production_id = 266), + [6927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 4, .production_id = 266), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [6951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 129), + [6953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym__expression_statement_expression, 1), + [6956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym__expression_statement_expression, 1), + [6959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym_non_lvalue_expression, 1), + [6962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym_non_lvalue_expression, 1), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [6967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 4, .production_id = 128), + [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_pattern, 2, .production_id = 114), + [6971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_pattern, 2, .production_id = 114), + [6973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(4274), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [6980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 35), + [6982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 38), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [7014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [7016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [7020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_pattern, 2, .production_id = 113), + [7022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_pattern, 2, .production_id = 113), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [7026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 2, .production_id = 247), + [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 2, .production_id = 247), + [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1), + [7032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [7042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [7044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [7070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, .production_id = 39), + [7072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 3, .production_id = 141), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [7106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), SHIFT_REPEAT(5120), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [7119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4), + [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4, .production_id = 5), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 5), + [7129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [7159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 4, .production_id = 265), + [7161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 1, .production_id = 47), + [7163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(607), + [7166] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(3176), + [7170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 1), + [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_initializer, 3), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_alignment_clause, 2), + [7202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 3, .production_id = 5), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 3), + [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 3, .production_id = 206), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [7238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_expression_repeat1, 2), + [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8146), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8150), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8153), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), + [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 2), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_clause, 2), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [7638] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2207), + [7642] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2206), + [7646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), + [7649] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2207), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [7681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 4, .production_id = 210), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [7709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), SHIFT_REPEAT(5277), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 3, .production_id = 141), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_expression_clause, 2, .production_id = 39), + [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(636), + [7845] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(2370), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [7893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_body, 1, .production_id = 24), + [7899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_body, 1, .production_id = 24), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_body, 2, .production_id = 71), + [7905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_body, 2, .production_id = 71), + [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_body, 2, .production_id = 72), + [7909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_body, 2, .production_id = 72), + [7911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), + [7913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), + [7915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6373), + [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_body, 3, .production_id = 118), + [7920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_body, 3, .production_id = 118), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [7960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5149), + [7963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5119), + [7966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5273), + [7969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5495), + [7972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(7855), + [7975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5507), + [7978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(6954), + [7981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5149), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [7992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), + [7995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_pattern, 2), + [8005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_pattern, 2), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, .production_id = 68), + [8041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3, .production_id = 68), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), + [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8072), + [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), + [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [8153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6370), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), + [8158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6378), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [8169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6410), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [8182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6436), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_base_type, 1), + [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_base_type, 1), + [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [8203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(4962), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [8208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6411), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [8219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5607), + [8222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5883), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7923), + [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7925), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7958), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), + [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7613), + [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7962), + [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8113), + [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7393), + [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7505), + [8303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(630), + [8306] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(5612), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7546), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [8318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6438), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [8323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6385), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 3, .production_id = 105), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7554), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [8354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(5612), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [8367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 1, .production_id = 7), REDUCE(sym_type_pattern, 1, .production_id = 7), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [8416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6404), + [8419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6415), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [8436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6383), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [8449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), SHIFT_REPEAT(2207), + [8452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), SHIFT_REPEAT(2206), + [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), + [8457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), + [8459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), SHIFT_REPEAT(6211), + [8462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), SHIFT_REPEAT(2207), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6793), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [8491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6416), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [8512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6388), + [8515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6399), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [8530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6382), + [8533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6386), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [8542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6431), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7485), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), + [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7563), + [8581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), REDUCE(sym_type, 1), + [8584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(596), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [8619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 38), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [8629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6394), + [8632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6384), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [8647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6376), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [8670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6414), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [8675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat2, 2, .production_id = 117), SHIFT_REPEAT(6395), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [8690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1), SHIFT(3021), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 5), SHIFT(6222), + [8698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 5), SHIFT(6732), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [8703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 5), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), + [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 1), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), + [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), + [8723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(5149), + [8726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(5119), + [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_interface_specifier, 2), + [8731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), + [8733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(5149), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [8740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(2207), + [8743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(2206), + [8746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(2207), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [8757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1), SHIFT(6222), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [8790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2), + [8792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2), + [8794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2), SHIFT_REPEAT(6089), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [8831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5593), + [8834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5817), + [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 1, .production_id = 7), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [8845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2), + [8847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2), SHIFT_REPEAT(6213), + [8850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7460), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [8946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), + [8948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [8966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1), + [8968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1), + [8970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, .production_id = 1), + [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, .production_id = 1), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), + [8978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2207), + [8981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2206), + [8984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1), + [8986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2207), + [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [8997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [9005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 4, .production_id = 105), + [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7501), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), + [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), + [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), + [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8169), + [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), + [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7369), + [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), + [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), + [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7992), + [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8037), + [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8154), + [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8152), + [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), + [9095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 2), + [9097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 2), SHIFT_REPEAT(6372), + [9100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_directive_repeat1, 2), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [9106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_directive_repeat1, 1), + [9108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_target_specifier, 2), + [9110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_target_specifier, 2), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [9210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), + [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [9220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat1, 2), SHIFT_REPEAT(1659), + [9223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat1, 2), SHIFT_REPEAT(5355), + [9226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat1, 2), SHIFT_REPEAT(5206), + [9229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat1, 2), SHIFT_REPEAT(6389), + [9232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_body_repeat1, 2), SHIFT_REPEAT(749), + [9235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_body_repeat1, 2), + [9237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 172), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [9245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 95), + [9247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 121), + [9249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1), SHIFT(4816), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [9254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, .production_id = 41), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [9260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, .production_id = 46), + [9262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 217), + [9264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 175), + [9266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 2, .production_id = 9), + [9268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, .production_id = 121), + [9270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, .production_id = 41), + [9272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 2, .production_id = 9), + [9274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, .production_id = 175), + [9276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), SHIFT(2744), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [9281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1), REDUCE(sym__reserved_identifier, 1), + [9284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), SHIFT(2823), + [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, .production_id = 175), + [9289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, .production_id = 9), + [9291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, .production_id = 41), + [9293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), SHIFT(2845), + [9296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, .production_id = 121), + [9298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), SHIFT(2730), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [9305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 3, .production_id = 116), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [9315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2), SHIFT_REPEAT(5361), + [9318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2), SHIFT_REPEAT(3021), + [9321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2), + [9323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2), SHIFT_REPEAT(6020), + [9326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, .production_id = 164), SHIFT_REPEAT(817), + [9329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, .production_id = 164), + [9331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1), SHIFT(5083), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [9336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 5), REDUCE(sym__simple_name, 1), + [9339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 3, .production_id = 115), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [9345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 2, .production_id = 70), + [9347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, .production_id = 96), + [9349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, .production_id = 96), SHIFT_REPEAT(3021), + [9352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, .production_id = 96), SHIFT_REPEAT(6020), + [9355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 2), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [9359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 2, .production_id = 47), + [9361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, .production_id = 70), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [9365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, .production_id = 41), + [9367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 2, .production_id = 8), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [9371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_base_list, 2, .production_id = 8), SHIFT(546), + [9374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 121), + [9376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 2, .production_id = 9), + [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), + [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), + [9386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_clause, 1), + [9388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 3, .production_id = 130), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [9400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 3, .production_id = 8), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [9414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 4, .production_id = 163), + [9416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, .production_id = 36), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [9422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, .production_id = 37), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [9432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [9434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(6914), + [9437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(6913), + [9440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(6788), + [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7459), + [9445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [9449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 8), + [9451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 8), SHIFT_REPEAT(546), + [9454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_into_clause, 2), + [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [9460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2), SHIFT_REPEAT(6966), + [9463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2), + [9465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2), SHIFT_REPEAT(1568), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, .production_id = 87), + [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 180), + [9484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 180), SHIFT_REPEAT(5383), + [9487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 4, .production_id = 179), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [9491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, .production_id = 89), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), + [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [9501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_body_repeat1, 1), + [9503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 3, .production_id = 8), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [9509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, .production_id = 44), + [9511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 4), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [9517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 157), + [9519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 159), + [9521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2), SHIFT_REPEAT(5379), + [9524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2), + [9526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2), SHIFT_REPEAT(7800), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [9535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2), + [9537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2), SHIFT_REPEAT(1568), + [9540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2), SHIFT_REPEAT(7301), + [9543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 1, .production_id = 45), + [9545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2), + [9547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2), SHIFT_REPEAT(1568), + [9550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2), SHIFT_REPEAT(7315), + [9553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2), + [9555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2), SHIFT_REPEAT(4129), + [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), + [9572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 9), + [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [9576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ref_base_type, 1), + [9578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 122), + [9580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 4), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [9588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [9592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4, .production_id = 181), + [9594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2), + [9596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2), SHIFT_REPEAT(6428), + [9599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 5), + [9601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6691), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [9608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 35), + [9610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 176), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [9620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3, .production_id = 131), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [9636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, .production_id = 156), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [9640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, .production_id = 7), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [9650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 68), + [9652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 68), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [9658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, .production_id = 146), + [9660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, .production_id = 146), SHIFT_REPEAT(447), + [9663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, .production_id = 146), SHIFT_REPEAT(7822), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [9670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 175), + [9672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [9678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, .production_id = 9), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [9708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 172), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [9716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 121), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [9728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [9732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 46), + [9734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 9), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_constraint, 3), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [9746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 41), + [9748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [9750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [9756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 41), + [9758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, .production_id = 154), + [9760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 5), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [9764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 121), + [9766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, .production_id = 105), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 46), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [9774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, .production_id = 172), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [9780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 3), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [9788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [9798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1), + [9800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 2, .production_id = 108), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [9810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, .production_id = 175), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [9816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 95), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [9824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 56), + [9826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 56), + [9828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, .production_id = 203), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [9838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 8, .production_id = 217), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [9842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2), SHIFT_REPEAT(6117), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [9847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, .production_id = 217), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [9859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 1), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [9865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 95), + [9867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 2), + [9869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [9873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_content, 1), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [9879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, .production_id = 173), + [9881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 44), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [9885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 41), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [9901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 1), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [9905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 1), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [9911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 3, .production_id = 63), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [9915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [9919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 3), + [9921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, .production_id = 178), + [9923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, .production_id = 177), + [9925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2), SHIFT_REPEAT(7048), + [9928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [9932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 180), SHIFT_REPEAT(5388), + [9935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 121), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [9943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 91), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [9949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_string_content, 1), + [9951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 7, .production_id = 176), + [9953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, .production_id = 112), + [9955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [9959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 1), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [9963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 7, .production_id = 175), + [9965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor_base_type, 2, .production_id = 7), + [9967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 9), + [9969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, .production_id = 123), + [9971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, .production_id = 125), + [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [9975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, .production_id = 5), REDUCE(sym_tuple_element, 2, .production_id = 35), + [9978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, .production_id = 5), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [9982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, .production_id = 121), + [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [9986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 122), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [9996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, .production_id = 122), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [10000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 86), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [10004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, .production_id = 41), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [10008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 2, .dynamic_precedence = 1, .production_id = 35), + [10010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 41), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [10014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 2, .production_id = 9), + [10016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 44), + [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, .production_id = 176), + [10020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, .production_id = 121), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [10024] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 35), REDUCE(sym_tuple_element, 2, .production_id = 35), REDUCE(sym_declaration_expression, 2, .dynamic_precedence = 1, .production_id = 35), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [10030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 1, .production_id = 5), + [10032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 6, .production_id = 218), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [10036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, .production_id = 9), + [10038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, .production_id = 9), + [10040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [10044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 129), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [10058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 1), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [10064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 180), SHIFT_REPEAT(5340), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [10177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, .production_id = 154), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [10181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 3, .production_id = 8), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [10195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2), SHIFT_REPEAT(6045), + [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [10202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, .production_id = 182), SHIFT_REPEAT(6022), + [10205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, .production_id = 182), + [10207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, .production_id = 156), + [10209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2), SHIFT_REPEAT(298), + [10212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2), + [10214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2), SHIFT_REPEAT(808), + [10217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [10223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, .production_id = 143), SHIFT_REPEAT(1541), + [10226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, .production_id = 143), + [10228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2), SHIFT_REPEAT(6088), + [10231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2), + [10233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [10237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, .production_id = 62), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [10241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, .production_id = 111), SHIFT_REPEAT(6365), + [10244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, .production_id = 111), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [10248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 5), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [10252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, .production_id = 208), SHIFT_REPEAT(322), + [10255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, .production_id = 208), + [10257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [10261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2), SHIFT_REPEAT(304), + [10264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2), SHIFT_REPEAT(6368), + [10267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2), + [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [10275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2), SHIFT_REPEAT(6367), + [10278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [10282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, .production_id = 168), SHIFT_REPEAT(5349), + [10285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, .production_id = 168), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [10325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2), SHIFT_REPEAT(6180), + [10328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [10354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 4, .production_id = 86), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [10358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_filter_clause, 4), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6668), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [10400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2), SHIFT_REPEAT(299), + [10403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, .production_id = 158), SHIFT_REPEAT(6222), + [10406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, .production_id = 158), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [10430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, .production_id = 108), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [10438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 111), SHIFT_REPEAT(6218), + [10441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 111), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [10503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_initializer, 3), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [10509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, .production_id = 143), SHIFT_REPEAT(870), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [10514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, .production_id = 140), SHIFT_REPEAT(768), + [10517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, .production_id = 140), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [10535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 137), SHIFT_REPEAT(563), + [10538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 137), + [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [10572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 4, .production_id = 129), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [10584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 2, .production_id = 14), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [10596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 3, .production_id = 62), + [10598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, .production_id = 14), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [10616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 5, .production_id = 203), + [10618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, .production_id = 81), SHIFT_REPEAT(6087), + [10621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, .production_id = 81), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [10631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bracketed_argument_list_repeat1, 2, .production_id = 84), SHIFT_REPEAT(569), + [10634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_argument_list_repeat1, 2, .production_id = 84), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [10662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, .production_id = 158), SHIFT_REPEAT(6192), + [10665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, .production_id = 158), + [10667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2), SHIFT_REPEAT(634), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [10680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 111), SHIFT_REPEAT(6224), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [10687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 110), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [10713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 3, .production_id = 86), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [10717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, .production_id = 280), SHIFT_REPEAT(3036), + [10720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, .production_id = 280), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [10724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 1), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [10728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_raw_string_content, 1), + [10730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 1), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [10742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, .production_id = 101), + [10744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, .production_id = 88), SHIFT_REPEAT(3064), + [10747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, .production_id = 88), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [10757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 1), + [10759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_verbatim_string_content, 1), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [10767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 2, .production_id = 35), REDUCE(sym_declaration_expression, 2, .dynamic_precedence = 1, .production_id = 35), + [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [10772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(561), + [10775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [10805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(5252), + [10808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [10832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 35), REDUCE(sym_tuple_element, 2, .production_id = 35), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [10861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_expression_repeat1, 2), SHIFT_REPEAT(1116), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), + [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7880), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), + [10904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 5), + [10906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, .production_id = 37), + [10908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 2), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [10930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, .production_id = 119), + [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8166), + [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7886), + [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [10938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 41), + [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [10942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 1), + [10944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, .production_id = 131), + [10946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), + [10948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 4), + [10950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, .production_id = 110), + [10952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [10962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, .production_id = 171), + [10964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, .production_id = 213), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7975), + [10970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, .production_id = 216), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [10980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 2, .production_id = 35), + [10982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 4, .production_id = 94), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [10988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, .production_id = 9), + [10990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [10992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), + [10994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, .production_id = 242), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [11006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 2), + [11008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 6, .production_id = 193), + [11010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_argument_list_repeat1, 2, .production_id = 34), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [11016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, .production_id = 241), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [11026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, .production_id = 281), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [11030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, .production_id = 279), + [11032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, .production_id = 37), + [11034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, .production_id = 36), + [11036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, .production_id = 138), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [11040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, .production_id = 151), + [11042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, .production_id = 105), + [11044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 98), + [11046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, .production_id = 134), + [11048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 7, .production_id = 268), + [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), + [11052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 9), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7652), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [11060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, .production_id = 113), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [11064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 3), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [11072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2), + [11074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, .production_id = 33), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [11094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, .production_id = 120), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [11104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, .production_id = 15), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [11156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 4, .production_id = 124), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8005), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [11214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 7, .production_id = 267), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [11222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, .production_id = 132), + [11224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 3), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [11232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 2, .production_id = 8), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [11244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, .production_id = 109), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [11268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 2), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [11282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 5, .production_id = 193), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [11288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 5, .production_id = 193), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [11292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 5, .production_id = 193), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [11358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, .production_id = 76), + [11360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 1, .production_id = 7), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [11380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 151), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [11392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_bitwise_not, 1), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [11412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_not, 1), + [11414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_plus_plus, 1), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [11418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_minus_minus, 1), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), + [11422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_true, 1), + [11424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_false, 1), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [11496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, .production_id = 151), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [11508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, .production_id = 75), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [11536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 193), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [11548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 4, .production_id = 151), + [11550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, .production_id = 151), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [11558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 1, .production_id = 3), + [11560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 4, .production_id = 151), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [11578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 3, .production_id = 40), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [11588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 5), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [11604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 5), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [11654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, .production_id = 215), + [11656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, .production_id = 214), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [11674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1), + [11676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, .production_id = 169), + [11678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, .production_id = 170), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [11688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, .production_id = 174), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [11720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7873), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [11736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 5, .production_id = 193), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [11746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_format_clause, 2), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [11768] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [11806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7872), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [11822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 4), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [11828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 4), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [11862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, .production_id = 212), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [11866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 2), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [11884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, .production_id = 28), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [11890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [11912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, .production_id = 93), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [11924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, .production_id = 92), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [12014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7870), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [12018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7871), + [12020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 3), + [12022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 3), + [12024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 3, .production_id = 29), + [12026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 3, .production_id = 29), + [12028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 6), + [12030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_define, 3), + [12032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_error, 3), + [12034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_warning, 3), + [12036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_undef, 3), + [12038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 14), + [12040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 15), + [12042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 2), + [12044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 2), + [12046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4), + [12048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 4), + [12050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 4), + [12052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 5), }; enum ts_external_scanner_symbol_identifiers { @@ -814839,10 +807138,10 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_interpolation_string_content] = true, }, [6] = { - [ts_external_token__optional_semi] = true, + [ts_external_token_interpolation_start_quote] = true, }, [7] = { - [ts_external_token_interpolation_start_quote] = true, + [ts_external_token__optional_semi] = true, }, [8] = { [ts_external_token_raw_string_content] = true, diff --git a/resources/language-metavariables/tree-sitter-c-sharp/tree-sitter-c_sharp.wasm b/resources/language-metavariables/tree-sitter-c-sharp/tree-sitter-c_sharp.wasm index fed28d188..439365a10 100755 Binary files a/resources/language-metavariables/tree-sitter-c-sharp/tree-sitter-c_sharp.wasm and b/resources/language-metavariables/tree-sitter-c-sharp/tree-sitter-c_sharp.wasm differ diff --git a/resources/metavariable-grammars/c-sharp-metavariable-grammar.js b/resources/metavariable-grammars/c-sharp-metavariable-grammar.js index 9cfc567e8..6f6ebf9da 100644 --- a/resources/metavariable-grammars/c-sharp-metavariable-grammar.js +++ b/resources/metavariable-grammars/c-sharp-metavariable-grammar.js @@ -457,29 +457,29 @@ module.exports = grammar({ field( "operator", choice( - "!", - "~", - "++", - "--", - "true", - "false", - "+", - "-", - "*", - "/", - "%", - "^", - "|", - "&", - "<<", - ">>", - ">>>", - "==", - "!=", - ">", - "<", - ">=", - "<=", + $.op_not, + $.op_bitwise_not, + $.op_plus_plus, + $.op_minus_minus, + $.op_true, + $.op_false, + $.op_plus, + $.op_minus, + $.op_multiply, + $.op_divide, + $.op_modulo, + $.op_bitwise_xor, + $.op_bitwise_or, + $.op_bitwise_and, + $.op_left_shift, + $.op_right_shift, + $.op_unsigned_right_shift, + $.op_eq, + $.op_neq, + $.op_gt, + $.op_lt, + $.op_gte, + $.op_lte, ), ), field("parameters", $.parameter_list), @@ -1328,26 +1328,32 @@ module.exports = grammar({ field("right", $.expression), ), - op_lt: ($) => "<", - op_lte: ($) => "<=", - op_eq: ($) => "==", - op_neq: ($) => "!=", - op_gt: ($) => ">", - op_gte: ($) => ">=", - op_and: ($) => "&&", - op_or: ($) => "||", - op_bitwise_and: ($) => "&", - op_bitwise_or: ($) => "|", - op_bitwise_xor: ($) => "^", - op_left_shift: ($) => "<<", - op_right_shift: ($) => ">>", - op_unsigned_right_shift: ($) => ">>>", - op_plus: ($) => "+", - op_minus: ($) => "-", - op_multiply: ($) => "*", - op_divide: ($) => "/", - op_modulo: ($) => "%", - op_coalescing: ($) => "??", + op_lt: _ => "<", + op_lte: _ => "<=", + op_eq: _ => "==", + op_neq: _ => "!=", + op_gt: _ => ">", + op_gte: _ => ">=", + op_and: _ => "&&", + op_or: _ => "||", + op_bitwise_and: _ => "&", + op_bitwise_or: _ => "|", + op_bitwise_xor: _ => "^", + op_left_shift: _ => "<<", + op_right_shift: _ => ">>", + op_unsigned_right_shift: _ => ">>>", + op_plus: _ => "+", + op_minus: _ => "-", + op_multiply: _ => "*", + op_divide: _ => "/", + op_modulo: _ => "%", + op_coalescing: _ => "??", + op_not: _ => "!", + op_bitwise_not: _ => "~", + op_plus_plus: _ => "++", + op_minus_minus: _ => "--", + op_true: _ => "true", + op_false: _ => "false", binary_expression: ($) => choice( diff --git a/resources/node-types/c-sharp-node-types.json b/resources/node-types/c-sharp-node-types.json index 0d8bb1df6..b273ed085 100644 --- a/resources/node-types/c-sharp-node-types.json +++ b/resources/node-types/c-sharp-node-types.json @@ -4310,7 +4310,7 @@ "fields": {} }, { - "type": "op_bitwise_or", + "type": "op_bitwise_not", "named": true, "fields": {} }, @@ -4320,12 +4320,12 @@ "fields": {} }, { - "type": "op_divide", + "type": "op_eq", "named": true, "fields": {} }, { - "type": "op_eq", + "type": "op_false", "named": true, "fields": {} }, @@ -4339,11 +4339,6 @@ "named": true, "fields": {} }, - { - "type": "op_left_shift", - "named": true, - "fields": {} - }, { "type": "op_lt", "named": true, @@ -4360,7 +4355,7 @@ "fields": {} }, { - "type": "op_modulo", + "type": "op_minus_minus", "named": true, "fields": {} }, @@ -4374,6 +4369,11 @@ "named": true, "fields": {} }, + { + "type": "op_not", + "named": true, + "fields": {} + }, { "type": "op_or", "named": true, @@ -4385,12 +4385,12 @@ "fields": {} }, { - "type": "op_right_shift", + "type": "op_plus_plus", "named": true, "fields": {} }, { - "type": "op_unsigned_right_shift", + "type": "op_true", "named": true, "fields": {} }, @@ -4417,96 +4417,96 @@ "required": true, "types": [ { - "type": "!", - "named": false + "type": "op_bitwise_and", + "named": true }, { - "type": "!=", - "named": false + "type": "op_bitwise_not", + "named": true }, { - "type": "%", - "named": false + "type": "op_bitwise_or", + "named": true }, { - "type": "&", - "named": false + "type": "op_bitwise_xor", + "named": true }, { - "type": "*", - "named": false + "type": "op_divide", + "named": true }, { - "type": "+", - "named": false + "type": "op_eq", + "named": true }, { - "type": "++", - "named": false + "type": "op_false", + "named": true }, { - "type": "-", - "named": false + "type": "op_gt", + "named": true }, { - "type": "--", - "named": false + "type": "op_gte", + "named": true }, { - "type": "/", - "named": false + "type": "op_left_shift", + "named": true }, { - "type": "<", - "named": false + "type": "op_lt", + "named": true }, { - "type": "<<", - "named": false + "type": "op_lte", + "named": true }, { - "type": "<=", - "named": false + "type": "op_minus", + "named": true }, { - "type": "==", - "named": false + "type": "op_minus_minus", + "named": true }, { - "type": ">", - "named": false + "type": "op_modulo", + "named": true }, { - "type": ">=", - "named": false + "type": "op_multiply", + "named": true }, { - "type": ">>", - "named": false + "type": "op_neq", + "named": true }, { - "type": ">>>", - "named": false + "type": "op_not", + "named": true }, { - "type": "^", - "named": false + "type": "op_plus", + "named": true }, { - "type": "false", - "named": false + "type": "op_plus_plus", + "named": true }, { - "type": "true", - "named": false + "type": "op_right_shift", + "named": true }, { - "type": "|", - "named": false + "type": "op_true", + "named": true }, { - "type": "~", - "named": false + "type": "op_unsigned_right_shift", + "named": true } ] }, @@ -6942,10 +6942,6 @@ "type": "#warning", "named": false }, - { - "type": "%", - "named": false - }, { "type": "%=", "named": false @@ -7022,10 +7018,6 @@ "type": "..", "named": false }, - { - "type": "/", - "named": false - }, { "type": "/=", "named": false @@ -7046,10 +7038,6 @@ "type": "<", "named": false }, - { - "type": "<<", - "named": false - }, { "type": "<<=", "named": false @@ -7078,18 +7066,10 @@ "type": ">=", "named": false }, - { - "type": ">>", - "named": false - }, { "type": ">>=", "named": false }, - { - "type": ">>>", - "named": false - }, { "type": ">>>=", "named": false @@ -7450,10 +7430,34 @@ "type": "on", "named": false }, + { + "type": "op_bitwise_or", + "named": true + }, { "type": "op_coalescing", "named": true }, + { + "type": "op_divide", + "named": true + }, + { + "type": "op_left_shift", + "named": true + }, + { + "type": "op_modulo", + "named": true + }, + { + "type": "op_right_shift", + "named": true + }, + { + "type": "op_unsigned_right_shift", + "named": true + }, { "type": "operator", "named": false @@ -7682,10 +7686,6 @@ "type": "{", "named": false }, - { - "type": "|", - "named": false - }, { "type": "|=", "named": false